diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4e7c421 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +.venv +volumes/ +blog_data_and_embeddings* \ No newline at end of file diff --git a/ollama_pgvector_helloworld/.env b/ollama_pgvector_helloworld/.env new file mode 100644 index 0000000..1d8a16a --- /dev/null +++ b/ollama_pgvector_helloworld/.env @@ -0,0 +1,12 @@ +OLLAMA_HOST=192.168.51.13 + +POSTGRES_HOST=192.168.51.12 +POSTGRES_PORT=5432 +POSTGRES_USER=admin +POSTGRES_PASSWORD=crock-handling9-abdominal-fax-pavestone-exemplary-distrust +POSTGRES_DB=rust_sqlx + +DATABASE_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${POSTGRES_HOST}:${POSTGRES_PORT}/${POSTGRES_DB} + +PGADMIN_DEFAULT_EMAIL=admin@admin.com +PGADMIN_DEFAULT_PASSWORD=crock-handling9-abdominal-fax-pavestone-exemplary-distrust \ No newline at end of file diff --git a/ollama_pgvector_helloworld/blog_posts_data.csv b/ollama_pgvector_helloworld/blog_posts_data.csv new file mode 100644 index 0000000..edc4a6b --- /dev/null +++ b/ollama_pgvector_helloworld/blog_posts_data.csv @@ -0,0 +1,427 @@ +title,content,url +"How to Build a Weather Station With Elixir, Nerves, and TimescaleDB","This is an installment of our “Community Member Spotlight” series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition,Alexander Koutmos, author of the Build a Weather Station with Elixir and Nerves book, joins us to share how he uses Grafana and TimescaleDB to store and visualize weather data collected from IoT sensors.About the teamThe bookBuild a Weather Station with Elixir and Nerveswas a joint effort between Bruce Tate, Frank Hunleth, and me.I have been writing software professionally for almost a decade and have been working primarily with Elixir since 2016. I currently maintain a few Elixir libraries onHexand also runStagira, a software consultancy company.Bruce Tateis a kayaker, programmer, and father of two from Chattanooga, Tennessee. He is the author of more than ten books and has been around Elixir from the beginning. He is the founder ofGroxio, a company that trains Elixir developers.Frank Hunlethis an embedded systems programmer, OSS maintainer, and Nerves core team member. When not in front of a computer, he loves running and spending time with his family.About the projectIn the Pragmatic Bookshelf book,Build a Weather Station with Elixir and Nerves, we take a project-based approach and guide the reader to create a Nerves-powered IoT weather station.For those unfamiliar with the Elixir ecosystem,Nervesis an IoT framework that allows you to build and deploy IoT applications on a wide array of embedded devices. At a high level, Nerves allows you to focus on building your project and takes care of a lot of the boilerplate associated with running Elixir on embedded devices.The goal of the book is to guide the reader through the process of building an end-to-end IoT solution for capturing, persisting, and visualizing weather data.Assembled weather station hooked up to development machine.One of the motivating factors for this book was to create a real-world project where readers could get hands-on experience with hardware without worrying too much about the nitty-gritty of soldering components together. Experimenting with hardware can often feel intimidating and confusing, but with Elixir and Nerves, we feel confident that even beginners get comfortable and productive quickly. As a result, in the book, we leverage a Raspberry Pi Zero W along with a few I2C enabled sensors to capture weather and environmental data. In all, the reader will capture and persist into TimescaleDB the current: altitude, atmospheric pressure, temperature, CO2 levels,TVOClevels, and the ambient light.Once the environmental data is captured on the Nerves device, it is published to a backend REST API and stored in TimescaleDB for later analytics/visualization. Luckily, TimescaleDB is an extension on top of PostgreSQL, allowing Elixir developers to use existing database tooling likeEctoto interface with time-series enabled tables.After the time-series weather data is stored in TimescaleDB, we walk the reader through how to visualize this data using the popular open-source visualization toolGrafana.Using Grafana for visualizing the weather was an easy choice given that Grafana natively supports TimescaleDB and is able to easily plot time-series data stored in TimescaleDB hypertables.✨Editor’s Note:Check outGrafana 101 video seriesandGrafana tutorialsto learn everything from building awesome, interactive visualizations to setting up custom alerts, sharing dashboards with teammates, and solving common issues.The diagram shows all of the various components of the weather station system and how they interact with one another.By the end of the book, readers have a fully-featured IoT application and API backend that can power a live Grafana dashboard in order to plot their TimescaleDB data published from their Nerves weather station.Screenshot of Grafana dashboard, showing various graphs for various weather data📖If you are interested in learning about how to build an end-to-end IoT weather monitoring solution, be sure tocheck out the book and the accompanying code. If you are interested in learning more about Nerves and Elixir,check out the Nerves documentation.Choosing (and using!) TimescaleDBFrom the onset of the book, we knew that we wanted to use a purpose-built time-series database to persist the weather station data. We wanted the project to be as realistic as possible and something that could possibly be expanded for use in the real world.With that goal in mind, TimescaleDB was an obvious choice given that PostgreSQL has become a ubiquitous database and it has great support in the Elixir community. In addition,leveraging TimescaleDB on top of PostgreSQL does not add a tremendous amount of overhead or complexity and allows new users to easily leverage the benefits of a time-series database without having to learn any new query languages or databases. Specifically, all it took for readers to start leveraging TimescaleDB was to run a single SQL command in their database migration:SELECT create_hypertable('weather_conditions', 'timestamp').""It’s this kind of pragmatism and ease of use that makes TimescaleDB a great time-series database for projects both small and large. ""-Alexander KoutmousAll in all, leveraging TimescaleDB as the time-series database for the project worked out great and allowed us to show readers how they can set up a production-ready IoT project in a relatively short amount of time.✨Editor’s Note:To start with TimescaleDB today,sign up for a free 30-day trialorinstall TimescaleDB on your own server.Getting started advice & resourcesAny time we had questions about the inner workings of TimescaleDB, how to set it up, or what the various configuration options are, we turned to the official TimescaleDB docs. Some of the articles that helped us get started included:•Using TimescaleDB via Docker• Understanding some ofthe fundamental TimescaleDB concepts• Getting an overview of some of theTimescaleDB best practicesWe’d like to thank Alex, Bruce, and Frank for sharing their story, as well as for writing a book that makes building full-stack IoT solutions accessible for complete beginners. We congratulate them and the entire Nerves community on their success, and we cannot wait to read the final version of their book that will be released in January 2022 🎊We’re always keen to feature new community projects and stories on our blog. If you have a story or project you’d like to share, reach out on Slack (@Lucie Šimečková), and we’ll go from there.Additionally, if you’re looking for more ways to get involved and show your expertise, check out theTimescaleHeroes program.The open-source relational database for time-series and analytics.Try Timescale for free",https://www.timescale.com/blog/how-to-build-a-weather-station-with-elixir-nerves-and-timescaledb/ +CloudQuery on Using PostgreSQL for Cloud Assets Visibility,"This is an installment of our “Community Member Spotlight” series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition,Ron Eliahu, CTO and co-founder at CloudQuery, joins us to share how they transform data about cloud assets into PostgreSQL tables to give developers visibility into the health of cloud infrastructure. Thanks toTimescaleDB, CloudQuery users manage their data more transparently while maintaining scalability.CloudQueryis an open-source cloud asset inventory powered by SQL. CloudQuery extracts, transforms, and loads cloud assets intonormalizedPostgreSQL tables, enabling developers to assess, audit, and monitor the configurations of their cloud assets.Cloud asset inventory is a key component to solve various challenges in the cloud:Cloud Infrastructure Monitoring, Visibility, and Search: Give developers, SREs, DevOps, and security engineers a streamlined way to gain visibility and perform a wide range of tasks. These tasks include security analytics, fleet management auditing, governance, and cost.Security & Compliance: Turn security and compliance tasks to data problems and solve them with the best tools and practices in DataOps. UseCloudQuery Policiesto codify, version control, and automate security and compliance rules with SQL.Infrastructure as Code (IaC) Drift Detection: CloudQuery leverages its asset inventory to quickly detect drift against IaC (Terraform, more to come) which you can run both in the CI and locally.📖Read CloudQuery´sannouncement blogabout releasing CloudQuery History in Alpha and adding support for TimescaleDB.About the teamWe started CloudQuery a year ago, to solve the cloud asset visibility problem, and quickly gained traction. We are currently a small but mighty team of open-source and cloud security enthusiasts, spread all around the world!A little about myselfRon Eliahu, I am the CTO and co-founder at CloudQuery, I am an engineer at heart, I love building open source projects and working with anything database-related.About the projectQueryable cloud asset inventory is key in solving a lot of core challenges in the cloud such as security, compliance, search, cost, and IaC drift detection. That is why we started CloudQuery and followed a few key decisions:PostgreSQL- The most used database in the world with a huge ecosystem of business intelligence and visualization tools.Open-source- To cover a huge amount of API and cloud providers we decided to make this open-source where everyone can contribute without being blocked by a vendor.Pluggable Architecture with CloudQuery SDK- Writing plugins, extracting configuration data, transforming it, and loading it to PostgreSQL requires a lot of boilerplate code. To scale this and improve the developer’s experience both internally and externally we releasedCloudQuery SDK.Normalized PostgreSQL tables inDataGripcontaining data about cloud assets from Microsoft AzureAnother key observation and requirement that we saw early on for a cloud asset inventory is the ability to not only query the current state but also go back in time. This is super useful for tasks such as forensics, post-mortems, compliance, and more.This feature required us to maintain historical snapshots in PostgreSQL and we started to look out for a solution, which was quite a journey for us.Choosing (and using!) TimescaleDBFirst attempt: PostgreSQL PartitioningWith some good experience ofPostgreSQLunder our belt, the first thing we tried isPostgreSQL partitioningPretty quickly it turned out to be not as easy as expected, hard to maintain and manage, lacking easily creatable retention policies, and bucketing queries. Given our philosophy is to integrate with best-in-class tools and focus our development efforts on our core business use-cases we started looking for an alternative solution.✨Editor’s Note:For more comparisons and benchmarks, seehow TimescaleDB compares to InfluxDB, MongoDB, AWS Timestream, vanilla PostgreSQL, and other time-series database alternativeson various vectors, from performance and ecosystem to query language and beyond.Second attempt: TimescaleDBGiven CloudQuery uses PostgreSQL under the hood, supporting historical snapshots in a scalable way usually involves using partitioning. TimescaleDB´screate_hyperfunctionsfeature allows us to do just that in a simple and effective way giving our users a transparent and automated way to manage their data while still maintaining scalability.Current CloudQuery architecture diagramCloudQuery transforms cloud resources into tables, some of these resources have a complex data structure, and are split into multiple relational tables, some of which are hypertables. In order to retain data integrity, we use foreign key relationships (withON DELETE CASCADE) to the root resource table. With these foreign keys in place, if a reference to a cloud resource is deleted (for instance a S3 bucket), the downstream data is removed.While TimescaleDB hypertablesdosupport using foreign keys that reference a regular PostgreSQL table, hypertable cannot be thesource reference of a foreign keyIn our case, some of our ""root"" reference tables are hypertables which meant that we had to come up with another way to do the cascading deletes to retain data integrity.A common alternative is to create trigger functions that will cause a delete on the relation table if a row is deleted in the parent table, the issue here is that some resources in CloudQuery can have three or more levels of relations and we didn’t want to create many queries to solve this, so we came up with the following functions to easily create the deletion cascade.First, we wanted a trigger function that will delete our relational table. We used trigger arguments to pass the relation table name its foreign key name so we can delete the data in the relation table. Full code is availablehere.CREATE OR REPLACE FUNCTION history.cascade_delete() + RETURNS trigger + LANGUAGE 'plpgsql' + COST 100 + VOLATILE NOT LEAKPROOF + AS $BODY$ + BEGIN + BEGIN + IF (TG_OP = 'DELETE') THEN + EXECUTE format('DELETE FROM history.%I where %I = %L AND cq_fetch_date = %L', TG_ARGV[0], TG_ARGV[1], OLD.cq_id, OLD.cq_fetch_date); + RETURN OLD; + END IF; + RETURN NULL; -- result is ignored since this is an AFTER trigger + END; + END; + $BODY$;Then, we call the create trigger function on the root table and pass these arguments to the child. Full code is availablehere.CREATE OR REPLACE FUNCTION history.build_trigger(_table_name text, _child_table_name text, _parent_id text) + RETURNS integer + LANGUAGE 'plpgsql' + COST 100 + VOLATILE PARALLEL UNSAFE + AS $BODY$ + BEGIN + IF NOT EXISTS ( SELECT 1 FROM pg_trigger WHERE tgname = _child_table_name ) then + EXECUTE format( + 'CREATE TRIGGER %I BEFORE DELETE ON history.%I FOR EACH ROW EXECUTE PROCEDURE history.cascade_delete(%s, %s)'::text, + _child_table_name, _table_name, _child_table_name, _parent_id); + return 0; + ELSE + return 1; + END IF; + END; + $BODY$;To sum it all up, we built two generic SQL functions to make sure all our hypertables and relational hypertables data get deleted if the root table has any data removed.Future plansCompliance overtime is a common request so we are working on integrating the results ofCloudQuery Policieswith TimescaleDB so you can monitor and visualize compliance with TimescaleDB and Grafana.Getting started advice & resourcesBefore you jump into implementing your own partition strategy, definitely give TimescaleDB a try. It can save you a lot of development time and make your product more robust.The Timescale documentationis a great place to start.🗞️Subscribe to our newsletter atcloudquery.ioand join ourDiscordto hear about our upcoming and latest features.We’d like to thank Ron and all folks at the CloudQuery team for sharing their story, as well as for their work to transform complex and scattered cloud assets data into structured and easily accessible tables enabling developers to monitor their cloud inventory.We’re always keen to feature new community projects and stories on our blog. If you have a story or project you’d like to share, reach out on Slack (@Lucie Šimečková), and we’ll go from there.The open-source relational database for time-series and analytics.Try Timescale for free",https://www.timescale.com/blog/cloudquery-on-using-postgresql-for-cloud-assets-visibility/ +How a Data Scientist Is Building a Time-Series Forecasting Pipeline Using TimescaleDB,"This is an installment of our “Community Member Spotlight” series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition, Andrew Engel, chief data scientist atRasgo,explains how he has been using TimescaleDB to build a time-series forecasting side project. He’s working on proofs of concept of machine learning pipelines to pull relevant data— from sports statistics to betting odds and finance pricing data—to make predictions for better decision-making or bets.About the UserI am currently the chief data scientist at Rasgo. Before joining Rasgo, I worked as a data scientist and data science leader for over 10 years across various fields. I received my Ph.D. in Systems and Industrial Engineering with a focus on decision-making under uncertainty and probability modeling from the University of Arizona. After my Ph.D., I was an assistant professor of Applied Mathematics at Towson University, where I began working on data science problems.As my career progressed, I found myself doing less and less technical work in data science and more time spent on team building, interacting with management and customers, and basically talking about data science instead of doing data science. This culminated in 2016 when I took a role withDataRobotto help their prospects and customers use DataRobot’s machine learning platform to implement their data science initiatives successfully.While this was, and still is, fulfilling work, I missed the technical work that originally drew me into data science. DataRobot encouraged us to do this (and leverage their product). In short, I became the DataRobot Marketing team's go-to content writer about sports analytics and betting. As part of this, I would build machine learning models to predict the outcome of sporting events. I regularly wrote blogs on my predictions for Grand Slam tennis, the Super Bowl (and NFL playoffs), the Champions League knockout stage, and the Premier League.Because of this and contacts developed over the years as a data scientist, multiple people have asked me to advise and even build proofs of concept of machine learning pipelines to automate both sports betting predictions and market models (from financial markets to sports betting markets in aid of monetizing these sports predictions).About the ProjectAndrew’setu package on GitLabIn my spare time, I have been building proofs of concept of machine learning pipelines to pull relevant data (this could be sports statistics, historical sports betting odds, or financial market pricing data), use machine learning to make predictions, and share those predictions back to the organization to help them make decisions or bets.Initially, all of this was written in Python, usingAirflowto orchestrate the entire pipeline. I always used PostgreSQL as my database and have been a long-time user for several reasons. While I was a graduate student, I supported myself as a web programmer during the first web boom, and we used Oracle as our database. During this job, I learned SQL and saw the power of enterprise-ready databases. For personal projects, I could afford neither Oracle itself nor the hardware to run it. Evaluating the open-source SQL databases, PostgreSQL was by far the most feature-complete (and similar to what I already knew). This is still true today.But, back to my project. Using PostgreSQL, I would write the original data, the engineered features for modeling, and the final predictions into the database for model monitoring and future model development.In all of these cases, the underlying data is event data and has time-series characteristics. This means that as a data scientist, I was interested in capturing how the data changed over time. For example, when modeling a sports betting market, I was interested in how the betting line or odds would change over time. Was it rising, falling, oscillating, etc.? Capturing this information as machine learning features was key to my models performing well. I typically used a Python library calledtsfreshto build these features.✨Editor's Note:Do you know what time-series data is?The answer is in this blog post.As the amount of data grew, I spent most of the time in the pipeline pulling data from the database, building the features, and pushing the results back to the database.Choosing (and Using!) TimescaleDBAs I was first working on these sorts of problems in my spare time, DataRobot asked me to lead their go-to-market efforts in the sports and entertainment space. In this new role, I began talking with several Formula 1 teams about possibly using DataRobot in their workflows.“During the investigation of TimescaleDB, I realized I could use PostgreSQL’s support of custom extensions built in Python to allow me to call tsfresh functions directly within the database without the expense of moving the data out or pulling it back in”As part of these conversations, I learned aboutKdb+ from KX Systems. This is a high-performance columnar time-series database used by F1 teams to store and process sensor data collected from their cars (and simulations). Financial institutions also use it to store and process market data. More intriguing from my point of view was that Kdb+ included a reimplementation of tsfresh within the database.I understood the power of Kdb+, but its price was well out of my budget for these proofs of concept. Still, I liked the idea of a database that supported time-series data and could process it efficiently.I have been using PostgreSQL for years and including it in the technology stack I used in these proofs of concept. While other databases supported time series, TimescaleDB combined the familiarity of PostgreSQL, making it the clear choice.During the investigation of TimescaleDB, I realized I could use PostgreSQL’s support of custom extensions built in Python to allow me to call tsfresh functions directly within the database without the expense of moving the data out or pulling it back in.In addition, TimescaleDB’s time_bucket() function would allow me to perform my time-series aggregations for arbitrary time intervals (eg., on a daily or weekly basis) as opposed to estimating the time period from a set number of rows. This was a huge improvement over using either tsfresh in Python (where it worked at a set number of rows) or a window function in PostgreSQL.✨Editor's Note:Read our docs to learn how you can best use TimescaleDB’s time_bucket() hyperfunction.I then implemented all of the tsfresh functions as custom extensions in Python and built custom types to pass the necessary information into the function and custom aggregations to perform the aggregations to get the data ready for the time-series feature.As expected, there were significant benefits to moving this processing into the database. In addition to eliminating the time to extract and insert the data, the database handled running these calculations in parallel much more simply than trying to manage them within Python.“By releasing this as open source, I hope to help anyone [...] working on any sort of time-series problem to be able to fully leverage the power of TimescaleDB to manage their time-series data”It was not without its drawbacks, however. First, PL/Python is untrusted in PostgreSQL and limits the types of users that could use these functions. More importantly, each time the function was called, the Python interpreter was started, and the tsfresh library and its dependencies were loaded. This meant that most of the processing time was spent on getting ready to perform the calculations instead of the actual calculations. The speedup was significantly less than expected.At this point, I saw promise in this approach but needed to make it faster. This led me to reimplement the tsfresh functions in C and create custom C extensions for PostgreSQL and TimescaleDB. With these C extensions, I was able to generate a performance improvement between 10-100 times faster than the corresponding performance of the PL/Python version.✨Editor's Note:If you want to extend aggregate functions in PostgreSQL but find it daunting to create and maintain them in C,check out this video where we explain how PGX can help create, test, and deploy aggregates using Rust.Current Deployment & Future PlansWhen I saw this performance, I felt I needed to clean up my code and make it available to the community as open source. This led to two packages:etu, which contains the reimplementation of tsfresh feature calculators in C, andpgetu, which includes the C extension that wraps etu and makes it available as functions in PostgreSQL and TimescaleDB.As an example, these functions can be called in a SELECT statement in TimescaleDB as:SELECT + time_bucket(interval '1 months', date) AS month, + absolute_sum_of_changes(amount, date) AS amount_asoc, + approximate_entropy(amount, date, 1, 0.1) AS amount_ae, + fft_aggregated(amount, date, ARRAY['centroid', 'variance', 'skew', 'kurtosis']) as ammount_fft_agg, + median(amount) as median_amount, + mode(amount) as mode_amount +FROM transactions +GROUP BY month +ORDER BY month;Here’s another example: this is looking at the power output of a windmill based on wind speed.SELECT TIME_BUCKET(interval '1 hour, time) AS hour, +autocorrelation(windspeed, time, 1) AS windspeed_autocorrelation_1, +autocorrelation(output, time, 1) AS output_autocorrelation_1, +count_above_mean(output) AS output_cam, +count_below_mean(output) AS output_cbm, +energy(windspeed, time) AS windspeed_energy, +fft_coefficient(windspeed, time, ARRAY[1, 1, 2, 2], ARRAY['real', 'imag', 'real', 'imag'] AS windspeed_fft_coeff_json, +number_cwt_peaks(windspeed, time, 5) AS windspeed_number_wavelet_peaks_5, +number_cwt_peaks(output, time, 5) AS output_number_wavelet_peaks_5 +FROM sensor_data +GROUP BY hour +ORDER BY hour;This makes it really easy to perform time-series feature engineering directly in the database.By releasing this as open source, I hope to help anyone working as a data scientist on time-series-like problems quickly generate features directly within their database and anyone else working on any sort of time-series problem to be able to fully leverage the power of TimescaleDB to manage their time-series data.As an open-source project, I hope to see people benefit from this in their personal projects and hopefully find enough value to be interested in helping improve both of these libraries going forward.RoadmapThis project is the culmination of about one year of part-time development work. I spent the first third building a version using Python, the following third understanding how to build C extensions, writing proof of concept versions of some of the functions, and testing them to determine if the speedup was worthwhile (it was a 10x to 100x in extreme cases).Regarding feedback, I have just released it and received a small amount of positive press on thePostgreSQL subredditbut limited feedback from others. I have also shared it with a number of the data scientists in my network, and the feedback has been overwhelmingly positive.Currently, etu and pgetu support most of the feature calculators in tsfresh. My next step is to implement the approximately 15 calculations that I have not yet finished. Once that is done, I would like to increase the functions these libraries support.If you need more information about this project or want to discuss it, I can be reached and followed onLinkedInandTwitter.We’d like to thank Andrew for sharing his story on how he is creating proofs of concept of machine learning pipelines for time-series forecasting using TimescaleDB.We’re always keen to feature new community projects and stories on our blog. If you have a project you’d like to share, reach out on Slack (@Ana Tavares), and we’ll go from there.The open-source relational database for time-series and analytics.Try Timescale for free",https://www.timescale.com/blog/how-a-data-scientist-is-building-a-time-series-forecasting-pipeline-using-timescaledb-and-helping-others-perform-time-series-engineering-directly-in-the-database/ +How Conserv Safeguards History: Building an Environmental Monitoring and Preventive Conservation IoT Platform,"This is an installment of our “Community Member Spotlight” series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition,Nathan McMinn, CTO and co-founder at Conserv, joins us to share how they’re helping collections care professionals around the world understand their collections’ environments, make decisions to optimize conditions, and better protect historical artifacts - no IT department required.Think for a moment about your favorite museum. All of the objects it houses exist to tell the stories of the people who created them - and of whose lives they were a part - and to help us understand more about the past, how systems work, and more. Without proper care, which starts with the correct environment, those artifacts are doomed to deteriorate and will eventually be lost forever (read more about the factors that cause deterioration).Conservstarted in early 2019 with a mission to bring better preventive care to the world’s collections. We serve anyone charged with the long-term preservation of physical objects, from paintings and sculptures to books, architecture, and more. (You’ll often hear our market segment described as “GLAM”: galleries, libraries, archives, and museums.) At the core, all collections curators need to understand the environment in which their collections live, so they can develop plans to care for those objects in the short, mid, and long-term.While damagecancome in the form of unforeseen and catastrophic events, like fire, theft, vandalism, or flooding, there aremanyissues that proactive monitoring and planning can prevent, such as: mold growth, color fading associated with light exposure, and mechanical damage caused by fluctuating temperature and relative humidity.At Consev, we’ve built a platform to help collections gather the data required to understand and predict long-term risks, get insights into their data, and plan for how to mitigate and improve the preservation environment. Today, we’re the only company with an end-to-end solution - sensors to screen - focused on preventive conservation.  Collections like theAlabama Department of Archives and Historyand various others rely on us to develop a deep understanding of their environments.About the teamWe’re a small team where every member makes a big impact. Currently, we’re at 6 people, and each person plays a key role in our business:Austin Senseman, our co-founder and CEO, often describes his background as “helping people make good decisions with data.” He has extensive experience in analytics and decision support – and a history of using data to guide organizations to their desired outcomes.Nathan McMinn(this is me!), our other co-founder and CTO, comes from the development world. I’ve spent my career leading engineering teams and building products people love, most notably in the enterprise content management sector.Ellen Orr, a museum preparator turned fantastic collections consultant.Cheyenne Mangum, our talented frontend developer.Melissa King, a preventative conservator who recently joined to help us build better relationships with more collections.Bhuwan Bashel, who is joining in a senior engineering role (oh yeah, he’ll get some TimescaleDB experience quickly!).About the projectWe collect several types of data, but the overwhelming majority of the data we collect and store in TimescaleDB is IoT sensor readings and related metrics. Our solution consists of fleets of LoRaWAN sensors taking detailed environmental readings on a schedule, as well as event-driven data (seethis articlefor an overview of LoRaWAN sensors, use cases, and other details).So, what ends up in our database is a mix of things like environmental metrics (e.g., temperature, relative humidity, illuminance, and UV exposure), sensor health data (e.g., battery statistics), and data from events (e.g., leak detection or vibration triggers).We also capture information about our customers’ locations - such as which rooms are being monitored -  and data from human observations - such as building or artifact damage and pest sightings - to give our sensor data more context and some additional “texture.” It’s one thing to collect data from sensors, but when you pair that with human observations, a lot of interesting things can happen.Our UI makes it simple to add a human observation to any data point, collection, or date.See our docsfor more details.For us, it is all about scale and performance.We collect tens of thousands of data points each day, and our users think about their metrics and their trends over years, not days.Also, like anybody else, our users want things to feel fast. So far, we’re getting both from TimescaleDB.With those criteria met, our next challenge is how to use that data to (1) provide actionable insights to our customers, allowing them to ask and answer questions like “what percentage of time is my collection within our defined environmental ranges?” and (2) offer in-depth analysis and predictions, like possible mold and mechanical damage risks.This iswhere we’ve gotten the most value out of TimescaleDB: the combination of a performant, scalable repository for our time-series data, the core SQL features we know and trust, and the built-in time-series functionalityprovided by TimescaleDB let us build new analysis features much faster.Example of our Collections focused analytics dashboard -see our docsfor more details.✨Editor's Note:To learn how we’ve architected TimescaleDB to support joining time-series data with other relational data,check out our data model documentationandfollow our Hello, Timescale! tutorialto try it out for yourself.Using (and choosing) TimescaleDBI first found out about TimescaleDB at anAll Things Open conferencea few years ago; it was good timing, since we were just starting to build out our platform. Our first PoC used ElasticSearch to store readings, which we knew wouldn’t be a permanent solution. We also looked at InfluxDB, and, while Amazon’s Timestream looked promising, it wasn’t released yet.Our database criteria was straightforward; we wanted scale, performance, and the ability to tap into the SQL ecosystem. After evaluating TimescaleDB’s design, we were confident that it would meet our needs in the first two categories, but so would many other technologies.What ultimately won me over was the fact that it’s PostgreSQL.I’ve used it for years in projects of all sizes; it works with everything, and it’s a proven, trustworthy technology – one less thing for me to worry about.✨Editor’s Note:To see how TimescaleDB stacks up to alternatives, read ourInfluxDB vs. TimescaleDBandAmazon Timestream vs. TimescaleDBbenchmark posts (included in-depth performance, scale, and developer experience comparisons) andexplore our at-a-glance comparisons.Current deployment & use casesOur stack is fairly simple, standard stuff for anyone that has a UI → API → database pattern in their application. Our secret sauce is in how well we understand our users and their problems, not our architecture :).Some of our future plans will require us to get more complex, but for now we’re keeping it as simple and reliable as possible:Node.js services running in Docker containers on AWS ECS, with TimescaleDB on the database tierReact.js frontendMobile app built with FlutterIn the near future, I’d like to move over toTimescaleDB’s hosted cloud offering. As we get bigger, that will be something we evaluate.In line with the above, our queries themselves aren’t that clever, nor do they need to be. We make heavy use of PostgreSQL window functions, and the biggest features we benefit from, in terms of developer ergonomics, are TimescaleDB’s built-in time-series capabilities:time_bucket,time_bucket_gapfill,histograms,last observation carried forward, and a handful of others. Almost every API call to get sensor data uses one of those.We haven’t usedcontinuous aggregatesorcompressionyet, but they’re on my to-do list!✨Editor’s Note:In addition to the documentation links above,check out our continuous aggregates tutorialfor step-by-step instructions and best practices, andread our compression engineering blogto learn more about compression, get benchmarks, and more.Getting started advice & resourcesTimescaleDB gives you more time to focus on end-user value, and less time focusing on things like “Can I connect tool x to my store?” or “How am I going to scale this thing?”If you’re considering TimescaleDB or databases in general, and are comfortable with Postgres already, try it. If you want the biggest ecosystem of tools to use with your time-series data, try it.  If you think SQL databases are antiquated and don’t work for these sorts of use cases, try it anyway - you might be surprised.For anybody out there thinking about an IoT project or company, as a technologist, it’s really tempting to focus on everything before data gets to the screen. That’s great, and you have to get those things right, but that’s just table stakes.Anybody can collect data points and put a line graph on a screen. That’s a solved problem.Yourchallenge is to develop all the context around the data, analyze it in that context, and present it to your users in the language and concepts they already know.TimescaleDB can help you do that, by giving you more time to focus on end-user value, and less time focusing on things like “Can I connect tool x to my store?” or “How am I going to scale this thing?”Other than those words of advice, there’s nothing that hasn’t already been covered in-depth by people in the PostgreSQL community that are FAR smarter than I am :).We’d like to give a big thank you to Nathan and the Conserv team for sharing their story and,more importantly, for their commitment to helping collections’ keep history alive. As big museum fans, we’re honored to play a part in the tech stack that powers their intuitive, easy-to-use UI and robust analytics 💛We’re always keen to feature new community projects and stories on our blog. If you have a story or project you’d like to share, reach out on Slack (@lacey butler), and we’ll go from there.Additionally, if you’re looking for more ways to get involved and show your expertise, check out theTimescale Heroesprogram.The open-source relational database for time-series and analytics.Try Timescale for free",https://www.timescale.com/blog/how-conserv-safeguards-history-building-an-environmental-monitoring-and-preventative-analytics-iot-platform/ +How Messari Uses Data to Open the Cryptoeconomy to Everyone,"This is an installment of our “Community Member Spotlight” series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition,Adam Inoue, Software Engineer at Messari, joins us to share how they bring transparency to the cryptoeconomy, combining tons of data about crypto assets with real-time alerting mechanisms to give investors a holistic view of the market and ensure they never miss an important event.Messariis a data analytics and research company on a mission to organize and contextualize information for crypto professionals. Using Messari, analysts and enterprises can analyze, research, and stay on the cutting edge of the crypto world – all while trusting the integrity of the underlying data.This gives professionals the power to make informed decisions and take timely action. We are uniquely positioned to provide an experience that combines automated data collection (such as our quantitativeasset metricsandcharting tools) withqualitative researchandmarket intelligencefrom a global team of analysts.Our users range from some of the most prominent analysts, investors, and individuals in the crypto industry to top platforms like Coinbase, BitGo, Anchorage, 0x, Chainanalysis, Ledger, Compound, MakerDAO, andmany more.About the teamI have over five years of experience as a back-end developer, in roles where I’ve primarily focused on high-throughput financial systems, financial reporting, and relational databases to support those systems.After some COVID-related career disruptions, I started at Messari as a software engineer this past April (2021). I absolutely love it. The team is small, but growing quickly, and everyone is specialized, highly informed, and at the top of their game. (Speaking of growing quickly,we’re hiring!)We’re still small enough to function mostly as one team. We are split into front-end and back-end development. The core of our back-end is a suite of microservices written in Golang and managed by Kubernetes, and I - along with two other engineers - “own” managing the cluster and associated services. (As an aside, another reason I love Messari: we’re a fully remote team: I’m in Hawaii, and those two colleagues are in New York and London. Culturally, we also minimize meetings, which is great because we’re so distributed,andwe end up with lots of time for deep work.)From a site reliability standpoint, my team is responsible for all of the back-end APIs that serve the live site, ourpublic API, our real-time data ingestion, the ingestion and calculation of asset metrics, and more.So far, I’ve mostly specialized in the ingestion of real-time market data – and that’s where TimescaleDB comes in!About the projectMuch of our website is completely free to use, but we haveProandEnterprisetiers that provide enhanced functionality. For example, our Enterprise version includesIntel, a real-time alerting mechanism that notifies users about important events in the crypto space (e.g., forks, hacks, protocol changes, etc.) as they occur.We collect and calculate a huge catalog ofcrypto-asset metrics, like price, volume, all-time cycle highs and lows, and detailed information about each currency. Handling these metrics uses a relatively low proportion of our compute resources, while real-time trade ingestion is a much more resource-intensive operation.Our crypto price data is currently calculated based on several thousand trades per second (ingested from partners, such asKaikoandGemini), as well as our own on-chain integrations withThe Graph. We also keep exhaustive historical data that goes as far back as the dawn of Bitcoin. (You can read more about the history of Bitcoinhere.)Messari dashboard, with data available atmessari.iofor freeOur data pipelines are the core of the quantitative portion of our product – and are therefore mission-critical.For our site to be visibly alive, the most important metric is our real-time volume-weighted average price (VWAP), although we calculate hundreds of other metrics on an hourly or daily basis. We power our real-time view through WebSocket connections to our back-end, and we keep the latest price data in memory to avoid having to make constant repeated database calls.Everything “historical” - i.e., even as recently as five minutes ago - makes a call to our time-series endpoint.Any cache misses there will hit the database, so it’s critical that the database is highly available.We use the price data to power the quantitative views that we display on our live site, and we also directly serve our data to API users. Much of what we display on our live site is regularly retrieved and cached by a backend-for-frontend GraphQL server, but some of it is also retrieved by HTTP calls or WebSocket connections from one or more Go microservices.The asset view of Messari dashboard, showing various price stats for a specific currency.The accuracy of our data is extremely important because it’s public-facing and used to help our users make decisions. And, just like the rest of the crypto space, we are also scaling quickly, both in terms of our business and the amount of data we ingest.Choosing (and using!) TimescaleDBWe’re wrapping up a complete transition to TimescaleDB fromInfluxDB. It would be reasonable to say that we used InfluxDB until it fell over; we asked it to do a huge amount of ingestion and continuous aggregation, not to mention queries around the clock, to support the myriad requests our users can make.Over time, we pushed it enough that it became less stable, so eventually, it became clear that InfluxDB wasn’t going to scale with us. Thus,Kevin Pyc(who served as the entire back-end “team” until earlier this year) became interested in TimescaleDB as a possible alternative.The pure PostgreSQL interface and impressive performance characteristics sold him on TimescaleDB as a good option for us.From there, the entire tech group convened and agreed to try TimescaleDB. We were aware of its performance claims but needed to test it out for ourselves, for our exact use case. I began by reimplementing our real-time trade ingestion database adapter on TimescaleDB – and on every test, TimescaleDB blew my expectations out of the water.The most significant aspects of our system are INSERT and SELECT performance.INSERTs of real-time trade data are constant, 24/7, and rarely dip below 2,000 rows per second. At peak times, they can exceed 4,500—and, of course, we expect this number to continually increase as the industry continues to grow and we see more and more trades.SELECT performance impacts our APIs’ response time for anything we haven’t cached; we briefly cache many of the queries needed for the live site, but less common queries end up hitting the database.When we tested these with TimescaleDB, both of our SELECT and INSERT performance results flatly outperformed InfluxDB. In testing, even thoughTimescale Cloudis currently only located in us-east-1 and most of our infrastructure is in an us-west region, we saw an average of ~40ms improvement in both types of queries. Plus, we could batch-insert 500 rows of data, instead of 100, with no discernible drop in execution time relative to InfluxDB.These impressive performance benchmarks, combined with the fact that we can use Postgres with foreign key relationships to derive new datasets from our existing ones (which we weren’t able to do with InfluxDB) are key differentiators for TimescaleDB.✨Editor’s Note:For more comparisons and benchmarks, seehow TimescaleDB compares to InfluxDB, MongoDB, AWS Timestream, and other time-series database alternativeson various vectors, from performance and ecosystem to query language and beyond. For tips on optimizing your database insert rate, see our13 ways to improve PostgreSQL insert performanceblog post.We are also really excited about continuous aggregates. We store our data at minute-level granularity, so any granularity of data above one minute is powered by continuous queries that feed a rollup table.In InfluxDB-world, we had a few problems with continuous queries: they tended to lag a few minutes behind real-time ingestion, and, in our experience, continuous queries would occasionally fail to pick up a trade ingested out of order—for instance, one that’s half an hour old—and it wouldn’t be correctly accounted for in our rollup queries.Switching these rollups to TimescaleDB continuous aggregates has been great; they’re never out of date, and we can gracefully refresh the proper time range whenever we receive an out-of-order batch of trades or are back-filling data.At the time of writing, I’m still finalizing our continuous aggregate views—we had to refresh them all the way back to 2010! — but all of the other parts of our implementation are complete and have been stable for some time.✨Editor’s Note:Check out thecontinuous aggregates documentationand followthe step-by-step tutorialto learn how to utilize continuous aggregates for analyzing the NFL dataset.Current deployment & future plansAs I mentioned earlier, all of the core services in our back-end are currently written in Go, and we have some projects on the periphery written in Node or Java. We don't currently need to expose TimescaleDB to any project that isn't written in Go. We useGORMfor most database operations, so we connect to TimescaleDB with agorm.DBobject.We try to use GORM conventions as much as possible; for TimescaleDB-specific operations likemanaging compression policiesor thecreate_hypertablestepwhere no GORM method exists, we write out queries literally.For instance, we initialize our tables usingrepo.PrimaryDB.AutoMigrate(repo.Schema.Model), which is a GORM-specific feature, but we create new hypertables as follows:res := repo.PrimaryDB.Table(tableName).Exec( + fmt.Sprintf(""SELECT create_hypertable('%s', 'time', chunk_time_interval => INTERVAL '%s');"", + tableName, getChunkSize(repo.Schema.MinimumInterval)))Currently, our architecture that touches TimescaleDB looks like this:The current architecture diagram.We use Prometheus for a subset of our monitoring, but, for our real-time ingestion engine, we’re in an advantageous position: the system’s performance is obvious just by looking at our logs.Whenever our database upsert backlog is longer than a few thousand rows, we log that with a timestamp to easily see how large the backlog is and how quickly we can catch up.Our backlog tends to be shorter and more stable with TimescaleDB than it was previously – and opur developer experience has improved as well.Speaking for myself, I didn’t understand much about our InfluxDB implementation’s inner workings, but talking it through with my teammates, it seems highly customized and hard to explain from scratch. The hosted TimescaleDB implementation with Timescale Cloud is much easier to understand, particularly because we can easily view the live database dashboard, complete with all our table definitions, chunks, policies, and the like.Looking ahead, we have a lot of projects that we’re excited about! One of the big ones is that, with TimescaleDB, we’ll have a much easier time deriving metrics from multiple existing data sets.In the past, because InfluxDB is NoSQL, linking time-series together to generate new, derived, or aggregated metrics was challenging.Now, we can use simple JOINs in one query to easily return all the data we need to derive a new metric.Many other projects have to remain under wraps for now, but we think TimescaleDB will be a crucial part of our infrastructure for years to come, and we’re excited to scale with it.Getting started advice & resourcesTimescaleDB is complex, and it's important to understand the implementation of hypertables quickly. To best benefit from TimescaleDB’s features, you need to think about how to chunk your hypertables, what retention and compression policies to set, and whether/how to set up continuous aggregates. (Particularly with regard to your hypertable chunk size, because it's hard to change that decision later.)In our case, the “answers” to three of these questions were addressed from our previous InfluxDB setup: compress after 48 hours (the maximum time in the past we expect to ingest a trade); retain everything; and rollup all of our price and volume data into our particular set of intervals (5m, 15m, 30m, 1h, 6h, 1d, and 1w).The most difficult part was understanding how long our chunks should be (i.e., setting ourchunk_time_intervalon each hypertable). We settled on one day, mostly by default, with some particularly small metrics chunked after a year instead.I’m not sure these decisions would be as obvious for other use cases.✨Editor’s Note:We’ve put togethera hypertable best practices guideto help you get started (including tips on how to size your chunks andcheck your chunk size).Explore the roadmap on GitHubfor future plans on compression.In summary, the strongest advantages of TimescaleDB are its performance and pure Postgres interface. Both of these make us comfortable recommending it across a wide range of use cases. Still, the decision shouldn’t be cavalier; we tested Timescale for several weeks before committing to the idea and finishing our implementation.We’d like to thank Adam and all of the folks at Messari for sharing their story, as well as for their effort to lower the barriers to investing in crypto assets by offering a massive amount of crypto-assets metrics and a real-time alerting mechanism.We’re always keen to feature new community projects and stories on our blog. If you have a story or project you’d like to share, reach out on Slack (@Lucie Šimečková), and we’ll go from there.Additionally, if you’re looking for more ways to get involved and show your expertise, check out theTimescale Heroesprogram.The open-source relational database for time-series and analytics.Try Timescale for free",https://www.timescale.com/blog/how-messari-uses-data-to-open-the-cryptoeconomy-to-everyone/ +How WsprDaemon Combines TimescaleDB and Grafana to Measure and Analyze Radio Transmissions,"This is an installment of our “Community Member Spotlight” series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition, Rob Robinett and Gwyn Griffiths, the creators of WsprDaemon, join us to share the work they’re doing to allow amateur radio enthusiasts to analyze transmission data and understand trends, be it their own personal noise levels or much larger space weather patterns.Amateur radio is a hobby for some three million people worldwide (see “What is Amateur Radio?” to learn more) and its technical scope is vast, examples include: designing and building satellites, devising bandwidth-efficient data communications protocols, and creating novel, low noise antennas for use in urban locations.Our project,WsprDaemon, focuses on amateurs who use the (amateur-developed!) open-sourceWeak Signal Propagation Reporter(WSPR): a protocol that uses low-power radio transmissions that probe the earth’s ionosphere to identify radio propagation paths and provide insights onspace weather. On a typical day, 2,500 amateurs may report 2.7 million WSPR “spots” to thewsprnetdatabase, whose webpage interface allows simple queries on data collected in the last two weeks.Image of radio antennae, with mountains in the background. Photo of theNorthern Utah WebSDRantenna (photo courtesy of Clint Turner)Radio signals that end up in the WsprDaemon TimescaleDB database may be received on a wide variety of antennas, from the 94-foot tower-supported multiband array in Northern Utah pictured above, to more modest 3-foot installations that you may see in many suburban or urban locations.About the TeamWe have a small, two-member volunteer core team, and we’re supported by a dozen or so beta testers and radio specialists (we typically have people from six countries on a weekly Zoom meeting). Rob Robinett, based in Berkeley California, is CEO of TV equipment manufacturerMystic Videoand he’s founded a series of Silicon Valley startups. He recently “rediscovered” amateur radio - after an absence of more than 40 years - and he's applying his software expertise to developing systems that measure short wave radio transmission conditions.Gwyn (left) & Rob (right), WsprDaemon's core volunteer team membersGwyn Griffiths, based in Southampton, UK, returned to amateur radio after retiring from a career as anocean technologist, where he worked with sensors and data from ships, undersea moorings, and robotics underwater vehicles. Gwyn focuses on the TimescaleDB components, devises Grafana dashboards to help inspire WsprDaemon users to create their own, and writes our step-by-step guides (check them outhere).About the projectWsprDaemon ingests data from the wsprnet database into TimescaleDB, allowing users to access historical data (remember, the wsprnet database shows online data from the last two weeks, and our project allows users to use older data for more robust analysis) and enabling a rich range of SQL queries.Additionally, TimescaleDB facilitates our Grafana dashboards; seeing a month of “spots” gives users a far deeper understanding about their own data, enables comparisons with other datasets, and provides a platform for further experimentation and creative graphics.Our TimescaleDB application caters to a wide spectrum of radio amateurs, from casual hobbyists to third-party developers:Some hobbyists simply want to see lists of who’s heard their transmissions in the last hour, or whotheyheard, at what strength, and where the transmissions originated.Other users want to display transmission metrics as time-series graphs, while there’s another class of users for whom ability to use aggregate functions, apply defined time buckets, derive statistics, and create heat maps and other visualizations is essential (such as the internationalHam Radio Science Citizen Investigation community).Last, third-party app developers, like theVK7JJlisting,WSPR watch, and other mapping and graphing apps, also access our WSPR data, appreciating the fast query response.The key measurement for a WSPR receiver is the signal-to-noise ratio (SNR): how strong an incoming signal is compared with the background noise. But, there is alsovital metadata, including the location of the receiver and transmitter, the operating radio frequency, and most critically - time. On average, our database takes in about 4,000 “sets” of this data from a given transmitter, typically 400kB, every two minutes.This below shows an example of SNR from three transmitters, in New York State, Italy, and Virginia.Signal-to-noise (SNR) Grafana dashboard exampleThe seven-day time-series data shown in this dashboard example provides rich information for its receiver, station KD2OM in New York State:They consistently hear N2AJX, just 16km distant, whose radio waves will have travelled over the ground, at much the same SNR throughout the day.They hear WA4KFZ in Virginia throughout most days – but with a dramatic variation in SNR. It’s at a minimum in the hours before sunrise (all times are UTC), and with peaks above the local station. This is the ionosphere at work, providing a path with less loss over 1000km than 16km for over-the-ground waves.The time-series view also allows us to see day-to-day variations, such as the shorter period of high SNR on 23rd June compared to prior days.They hear IU0ICC from Italy via the ionosphere from early evening to about 0300 local time each day, with a consistent shape to the rise and fall of SNR.While SNR is the main measurement, our users are also interested in aggregate metadata functions, which provide an overview of daily changes in the ionosphere.Our project allows them to run these more complex queries, and we bring in complementary public domain data, such as the case below where we pull in data from theUS Space Weather Prediction Center.WsprDaemon also runs complex transmission data queries and visualizationsIn this example, the top panel of the Grafana dashboard uses the WsprDaemon dataset to display a simple count of the “spots” in each 10 minute time bucket with, on the second y-axis,  a measure of the planetary geomagnetic disturbance index (kp) from the US Space Weather Prediction Center. In 2020, we’re at the minimum of the11-year sunspot cycle, so our current space weather is generally very quiet, but we’re anticipating disturbances - as well as more WSPR spots - as the sun becomes more active over the next four years.The second panel is a heat map that shows the variation in distance between the receiver in Belgium and the transmitters it’s heard over time.The third panel shows the direction of arrival at the receiver, while the bottom panel helps the user interpret all of this data, showing the local noise level and instances of overload.Editor’s note: see ourGrafana Series Overrideblog post to learn how (and why) to use two y-axes to more accurately plot your data and understand trends.Using TimescaleDBAs evidenced above, a big advantage for our users is our ability to bring disparate datasets together into one database, with one graphical visualisation tool.Our initial need was for a database and visualisation tool for radio noise measurements from a handful of stations. A colleague suggestedInfluxandGrafana, and kindly set up a prototype for us. We were hooked.We sought to expand to cover a larger range of data sets from several thousand sources. The Influx documentation was great, and we had an extended application running quickly. Initially,our query time performance was excellent, but, as we accumulated weeks of data we hit thecardinalityissue.Query times became unacceptably long, and we looked for an alternative time-series database solution.We quickly came across an objectivearticleon how to solve the cardinality problem that led us to adopt TimescaleDB.The biggest factor in choosing TimescaleDB was that it solved our cardinality problem, but there were also “nice to have” features, such as the easy-to-usetool to migrate our data from Influxand the underlying use of PostgreSQL. But, we did miss Influx’s comprehensive single-source documentation.Editor’s Note: Because we think it’s important to remain balanced and let our community members’ voice shine through, we don’t edit mentions of alternative technologies (favorable or unfavorable🙂).Current deployment & future plansOur initial TimescaleDB implementation is on a DigitalOcean Droplet (2 cores, 4GB memory 100GB SSD disk), but we are moving to our own 16 core, 192GB memory Dell server and a back-up (we’re evaluating query performance as our user base grows).As noted above,the way TimescaleDB has solved the issue of cardinality was a big selling point for us, and it’s what makes the WsprDaemon site performant for our users.When we wereusing Influx, a typical query that returned 1,000 results from a table of 12 million records and a cardinality of about 400,000 took 15-25 seconds.Now,running TimescaleDB on the same Digital Ocean Droplet(albeit with 4GB rather than the previous 2GB of memory),those same queries overwhelmingly return results in under 2s*.*as long as the data requested is within the chunk that is in memory. That’s why we’ve recently increased our Dell server memory from 24 to 192GB, to handle one-month chunks, and why it will become our primary machine.We use bash Linux shell scripts with Python to gather the data that populates our database tables. We find that batch upload usingpsycopg2.extras.execute_batchworks well for us, and our users use a variety of methods to access WsprDaemon, including Node.js andpsqlvia its command line interface.Simplified WsprDaemon architecture, showing data routes fromwsprnetand 3rd party interfacesWe already make extensive use of Grafana dashboards, and we expect to expand our capabilities - adding global map panels is just one example. But, even after extensive searching, it’s not always straightforward or obvious how to obtain the best, streamlined end result.For example, creating an animation that shows the global geographic distribution of receivers and transmitters by hour requires us to export data to CSV using psql, import the file intoOctave, generate maps on anazimuthal equidistantprojection, save these map files as PNG, and then import intoImageJto generate an AVI file.Editor’s Note: To learn more about building Grafana visualizations with TimescaleDB, check out ourstep-by-step tutorials,blogs, and “Guide to Grafana” webinar series.Our future path includes collaboration, both with others in the global amateur radio community and more data sources. We continually learn about people who have neat solutions for handling and visualising data, and, by sharing knowledge and experience, we can collectively grow and improve the tools we offer this great community. We’re keen to expand our connections to other third party data sources, such as space weather, to help our users better interpret their results.Getting started advice & resourcesWe’re non-professional database users, so we only feel qualified to speak to others with a similar minimal level of prior familiarity.As you evaluate time-series database options, of course, readindependent comparisonsand the links they provide, but also look carefully at insightful, fair-minded comparisons from TimescaleDB, e.g., onSQL vs Flux. Try to assess the advantages of different approaches foryourapplication, current and future skill sets, and requirements.Parting thoughtsWe believe that data analytics for radio amateurs is in its infancy. We’re detailing our approach and experience with TimescaleDB and Grafana in a paper at the 39th gathering of theDigital Communications Conferencein September 2020 (for the first time, the Conference will be completely virtual, which is likely to enable a larger-than-usual participation from around the world). We’ll feature some nice examples of how self inner joins help pull out features and trends from comparisons, as well as many other capabilities of interest to our users.We’d like to thank Rob & Gwyn for sharing their story, as well as for their work to create open-source, widely distributed queries, graphs, and tools. Their dedication to making transmission data accessible and consumable for the global amateur radio community is yet another testament to how technology and creativity combine to breed amazing solutions.We’re always keen to feature new community projects and stories on our blog. If you have a story or project you’d like to share, reach out on Slack (@lacey butler), and we’ll go from there.Additionally, if you’re looking for more ways to get involved and show your expertise, check out theTimescale Heroesprogram.The open-source relational database for time-series and analytics.Try Timescale for free",https://www.timescale.com/blog/wsprdaemon-combines-timescaledb-grafana-analyze-radio/ +How Ndustrial Is Providing Fast Real-Time Queries and Safely Storing Client Data With 97 % Compression,"This is an installment of our “Community Member Spotlight” series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition, Michael Gagliardo, technical lead and software architect at Ndustrial, shares how Ndustrial is helping clients save energy and money by collecting several types of data and offering on-demand analytics quickly and seamlessly using TimescaleDB. And the best part is that they don’t need to worry about keeping vast amounts of raw data—TimescaleDB handles that, too.About the CompanyNdustrialis based out of Raleigh, North Carolina, in the United States. Our company has been around since 2011, and we work exclusively in the industrial sector.We aim to help our customers—who are large industrial energy users—save energy. And by doing so also save money and improve sustainability. A lot of that is collecting data from very disparate devices, such as industrial IoT equipment, utility meters, utility bills, and even external data, and ultimately trying to use and combine that data to give our customers a better view of what we would call production-normalized KPIs.The company’s high-level data architectureThese KPIs are essentially metrics that we try to get down to the point of the single unit that our customers are producing, and that changes based on their manufacturing process, what sector they're in, and what their actual product is. But if we can get it down to that point, we can understand how much energy consumption is required for a single product or unit. And then help them find and even completely automate these opportunities to save energy.We’re talking about customers that might have multiple facilities, even in the hundreds across the US and the world, so our goal in this space is to be able to aggregate all that data into a single view, understand what’s happening, and where you may have a lack of efficiencies in order to find those opportunities and save energy and money.About the TeamThe Ndustrial team building more than data applicationsWe currently have around 18 engineers working at the company, split into two main teams. We have an Integrations team that's more focused on different types of ingestion and where we get that data from (which sometimes gets very specific with our customers). The other team is focused on building our platform's more generalized extensibility aspect and a front end,our energy intensity user interface (UI), called Nsight.I am the technical lead and software architect for the Platform team. We focus on building the functionality to turn the customers’ data into meaningful metrics based on their organization as well as building out features for Nsight, making that easier to consume as a customer.From a background perspective, most of our engineers come from a mix of experiences. Some of them have actually been in the energy world, whereas others come from the B2B SaaS world, such as myself. So it's a nice foundation to build on where you have both perspectives and merge them toward one scalable product.About the ProjectMore than 80 percent of our data is time series across the board. Now the facets of where it comes from could be standard IoT devices just setting up their data points. It could be a time series of line items on a utility bill associated with a statement per day, per month, or per year. But it always comes down to data points associated with a timestamp that we can aggregate together to give a perspective of what’s happening.✨Editor’s Note:Learn more about the features of the best database for time-series data.Then, we have the other side: non-time series, to give a digital perspective of the client’s organization so you can start associating different elements by those groupings or categories to provide even more focused metrics in our UI.The company’s UI, NsightI joined Ndustrial in June 2020, and we already had some applications to store and manage time-series data. This data is very unique, frequent, and needs to be retrieved quickly. But as far as leaning on databases specific to time-series data, that wasn’t really a factor in the beginning. It was more focused on, “How can we store this and at least get to it quickly?”“Compression was a game-changer from our perspective: not having to worry about getting databases on the order of 5, 10, or 15 TB to store this information was a massive factor for us”But then you start considering other aspects: now, I want to aggregate that data in unique ways or across arbitrary windows. That's where the drive to “We need something more powerful, something that can handle this data and not just store it efficiently but query it efficiently” comes in. And along with it came Timescale.Compression was a game-changer from our perspective as a company: not having to worry about getting databases on the order of 5, 10, or 15 TB to store this information was a massive factor for us. But then we want the dashboarding that we have, Nsight, which is our energy intensity platform, to be very dynamic.We don’t always know ahead of time what our customers want to visualize. We’re not trying to hard code a bunch of metrics we can report on quickly. We tried to build a much more dynamic platform, and most of our querying is actually on demand. There is some downsampling in between to make things more efficient, but the queries we are providing in our dashboard and arbitrary metrics are all things our customers are creating, and they happen on demand.Getting data back efficiently without feeling like the UI is slow was a major win for us in using TimescaleDB. Before, we had a lot more pre-aggregation. That was the biggest power I've seen from it, along with not having to deal with having an entire team of database administrators (DBAs) to go through and make sure that's possible [Ndustrial uses Managed Service for TimescaleDB]. It’s also one of the more valuable benefits for our customers, whether or not they realize this is even happening.Choosing (and Using!) TimescaleDBWhen I joined the company, Ndustrial had a proof-of-concept (PoC) running for TimescaleDB, so I think the company as a whole was moving in that direction. I had some experience with TimescaleDB and other time-series databases. This was only three years ago, but even then, Timescale was very prominent in the world of “Hey, we need a time-series database to be stored somewhere.”“For one of our larger customers, we normally store about 64 GB of uncompressed data per day. With compression, we’ve seen, on average, a 97 percent reduction”Other alternatives we researched were InfluxDB and Prometheus for storing this data. But what brought it home for us is that PostgreSQL is a foundation in our company. It is a standard of what we expect from developers and, ultimately, the main reason the PoC started to test out how we could work with time-series data without changing and bringing up new technologies and languages to learn.We knew we would be collecting many times-series points per day—across all the different types of data we’re collecting, above a hundred million points per day. It gets massive, and we want to store and query that efficiently. It’s not just about how we store this and how we ensure we’re not spending mass quantities of money to store it, but also how we get that back out, ask questions, and query data without having to do a lot of work in between to get it into a shape where we can do that efficiently.So the compression aspect of TimescaleDB was something we leaned on immediately. Honestly, that was probably what sold it out of the PoC: when we tested compression with our chunks and started seeing the percentage by which we could reduce the storage size with minor degradation in query performance.✨Editor’s Note:Read how TimescaleDB expands the PostgreSQL functionality with faster queries and reduces storage utilization by 90 percent.For one of our larger customers, which would take a big chunk of the time series, we normally store about 64 GB of uncompressed data per day. With compression, we’ve seen, on average, a 97 percent reduction. So down to less than 2 GB a day. And that goes from a record count of two million records to just a couple hundred thousand, which is pretty significant. It would take a larger and more performant database to hold that type of weight.CREATE FUNCTION public.show_all_chunks_detailed_size() + RETURNS TABLE( + hypertable text, + chunk text, + time_range tstzrange, + total_bytes bigint, + total_size text, + table_size text, + index_size text, + toast_size text, + compression_savings numeric + ) AS +$func$ +BEGIN + RETURN QUERY EXECUTE ( + SELECT string_agg(format(' + SELECT + %L AS hypertable, + s.chunk_schema || ''.'' || s.chunk_name AS chunk, + tstzrange(c.range_start, c.range_end) AS time_range, + s.total_bytes, + pg_size_pretty(s.total_bytes) AS total_size, + pg_size_pretty(s.table_bytes) AS table_size, + pg_size_pretty(s.index_bytes) AS index_size, + pg_size_pretty(s.toast_bytes) AS toast_size, + round(100 * (1 - p.after_compression_total_bytes::numeric / p.before_compression_total_bytes::numeric), 2) AS compression_savings + FROM + chunks_detailed_size(%L) s + LEFT JOIN chunk_compression_stats(%L) p USING (chunk_name) + LEFT JOIN timescaledb_information.chunks c USING (chunk_name) + ', tbl, tbl, tbl + ), ' UNION ALL ') + FROM ( + SELECT hypertable_schema || '.' || hypertable_name AS tbl + FROM timescaledb_information.hypertables + ORDER BY 1 + ) sub + ); +END +$func$ LANGUAGE plpgsql;The query that the Ndustrial team usesto monitor their chunk sizes across hypertables, including the compression stats they are seeingMost companies believe this, but data is critical to us. We keep raw data: we never know how we will go back and reuse it. It's not something we can downsample, throw away, and hope one day we don't need it. So being able to store it and not having to focus too much on complex retention strategies to put things in a much slower, cold storage (versus hot storage) because we're able to compress it and still query it without worrying too much about going over limits is very significant for us.As far as query performance, I don't have an exact metric. Still, being able to make arbitrary queries, arbitrary roll-ups, on-demand unit conversion, and currency conversion at the time of querying and get responses back in the same amount of time that we got from doing pre-aggregates and without the difficulty of changing the questions’ format to roll up this data is a massive benefit.Before TimescaleDB, we were using Cassandra, and a fair amount of mixed data could also have been in a standard PostgreSQL database. But most of our high-frequency IoT data was in Cassandra, primarily for the benefit of being able to use partitioning for fast retrieval. However, it took a lot more effort to get that data out. So as efficient as it could be to store it, we had difficulty on the other side of getting it back out in the way that we wanted it.We also tried InfluxDB but didn’t go with it. It wasn’t just about learning a new language (InfluxQL); storing most of our relational data inside PostgreSQL was a significant factor. The platform we've been working with for the last two years has been a shift in usingGraphQLas our main layer for that service, our tenancy.TimescaleDB provides the time-series metrics, but the rest of our relational graph that builds out an organization are just entities and our PostgreSQL database. So, being able to use time-series metrics as they relate to relational entities, groupings, and various ways of querying those types of data without going outside PostgreSQL, was a significant aspect for us.With InfluxDB, we would deal with more latency: the amount of time it would take to query on one side, query on the other side, and correlate them together. Not to mention that you’re dealing with a new language. With TimescaleDB, it’s just a SQL query.I’ve had experience with InfluxDB, which is one of the reasons we made sure we tested that out as well. And that's probably a direction I would go back to if TimescaleDB didn’t exist. Luckily, we don’t have to. I mean, it's also a powerful database, but for the other factors I just mentioned, TimescaleDB made more sense at the time.Current Deployment & Future PlansFrom a more architectural perspective, I'm focused on ensuring the technologies we bring in aren't going to hinder our developers by having to make them learn something new every time we bring in a new engineer. If there's too much of a learning curve and it's not something they're already used to, you're going to slow down.The Ndustrial data architectureAs a small startup, we must balance the technologies we can benefit from without having 10 developers purely stationed for managing them, which is why we chose Managed Service for TimescaleDB. You don't want to have every developer spend all their time managing it or being aware of it and worrying about what happens if you don’t apply those maintenance updates or backups correctly.“Getting all these updates and zero downtime for deployments and replicas is significant for us because we need to assure our customers that we are as reliable as the data we're storing”Time series is the main portion of the type of data we collect, so it’s a very significant aspect of our platform. We wouldn’t be able to do much without it. Putting that in the hands of the same developers that are also having to focus on integrations, customers, and future work would have been too much of a risk. On the other hand, getting all these updates and zero downtime for deployments and replicas is significant for us because we need to assure our customers that we are as reliable as the data we're storing.As for deployment, on the ingestion side, we useKotlinas our foundation for building out stream-processing pipelines on a technology calledPulsaras our messaging layer. It's very similar toKafkaPTP-style (point-to-point) message queuing. Essentially, all of the ingestion that we do, whether it's IoT data or other types of integrations that we're either pulling from or getting pushed to, flows through these stream processing pipelines, ultimately landing into our TimescaleDB database. So that is our main input into TimescaleDB.Then, on the other side of the house, we have our GraphQL platform. The platform exposes a GraphQL API that can query TimescaleDB for arbitrary queries, metrics, and results based on what the consumer is asking. And then, in our front end, which is our dashboarding, there’s a full-featured single-page app in React.We also use other technologies, such asGrafana, for a more ad hoc view of the data, especially because we also do implementations at facilities for installing meters and devices if the customers don't already have those available. Hooking those up and having a view into our TimescaleDB database of that specific feed of data gives us a lot more visibility and speeds up the installation time without worrying about whether or not it's set up correctly.Our data is very disparate and unpredictable in terms of how it gets sent. Some customers will have devices sending data every second to minutes or every hour. Devices might go down, come back up, and send their last days’ worth of data all at once. We could have other systems sending it at their own regular rates.It's not normalized, so to be able to lean on TimescaleDB hyperfunctions liketime_bucket_ gapfilland bucketing, andlocftype of functions to turn those results into something more meaningful because we can fill the gap or understand what should happen in the case where that data point didn't exist is really powerful for us.✨Editor’s Note:Learn more about hyperfunctions and how they can help you save time and analyze time-series data better.Obviously, compression was a big thing for us in terms of getting that in place in the beginning. And since then, we have used continuous aggregates. We are still at a point where we're building out the process of what that will look like in our platform because this data is unique—I mean, we're storing arbitrary data. We don't even know sometimes what that feed is sending us.We’re still building a more automated process to be able to make smarter decisions about what becomes continuous aggregates, what becomes something we physically want to store, and the intervals at which we want to store it and throw away the rest. And so, I hope to lean on continuous aggregates a bit more in the future.But, ultimately, just being able to query and use TimescaleDB features to roll up and aggregate that data is significant for us. I love following theTimescale experimental repositoryand seeing what people come out with each release. I basically have a list on my computer of things I intend to add to our platform soon. Just to expose those capabilities, too. Because if we can do it, why not turn that into something we can create in our app? And create it as another view, metric, or perspective in the UI. So it's always exciting to see what you guys are coming up with.RoadmapOver the last few years, we've been building this new platform and leaning pretty heavily on it. There are a few pieces left that we're getting to really make it where we want it to be. Part of that is exposing many of these self-made dynamic metrics to our customers to the degree where they can just generate whatever they want that meets the needs of their system based on their use case or personas.We have various individuals using our platform that come from different disciplines within an organization, so being able to cater metrics and analytics to them directly is really powerful, and exposing a platform in a way where they can do that without having to rely on us to do it for them is also very powerful.To achieve this, we're building more of these ad hoc type views, which will lean on the functionality we get from an in-house metrics engine that uses TimescaleDB to query this data. Beyond that, we're entering into more of an automated controls world within our platform.Up to this point, we've primarily been focused on getting this data visible and exposing it to our customers, showing them how they can become more efficient, and working with them more closely to help them get there. But we're moving toward the direction of taking these opportunities and automating the process that allows them to save energy and money or participate in these opportunities.This requires us to analyze this data to predict outcomes that could happen in the near future so that we can prepare customers and get them set up and make them more valuable than others who don't have that information. It’s not really a competition, but at the same time, we want to show clients that they can get value out of their data. So having all of our time-series data in a common place that we can query in a common way is going to really make that successful in the future.Advice & ResourcesMy advice is always to start with the type of data you’re storing. In the beginning, you obviously don't want to break things out too early. You never know what could shift. Wait for that next use case before you start extracting or breaking things out: you never know if you’ll end up doing it, and then you might just have more complexity on your hands for no reason.But as a whole, data is different across the board. It's okay to store it in different places that are meant to store that data. So, having a time-series database versus storing a relational database over here and maybe search indexes over here. That's okay. I mean, is your product going to be piecing those together and really leaning on the type of data I'm storing? What is the size and frequency of this data?And then selecting the right technologies specific to that data or maybe multiple technologies to handle that data. You should do that ahead of time because it gets more difficult the longer you wait to do so because it becomes the process of migrating all of that and doing it without downtime. But ultimately, that's just the best way to start: understand what you're storing and figure it out from there.Regarding resources, I think that theTimescale Docsare great. Especially dealing with other technologies and being a developer, there are many times you’ll go to the documentation for some technology, and you’ll be as confused as you were before you got there. I think Timescale has done a wonderful job with their docs and how they break it out into use cases and some examples.I also lean pretty heavily onCommunity Slack, whether or not I'm asking a question. It's just nice to monitor it and see what other people are asking. It might raise questions or give me ideas about issues we ran into in the past. And so having that as a resource as well, or knowing that if I have an issue, I can ask and get pretty quick and immediate feedback. It's really great.Between the Docs and the Community, it shouldn’t be difficult to get up with what you need to meet your system’s needs.Want more insider tips?Sign up for our newsletterfor more Developer Q&As, technical articles, and tutorials to help you do more with your data. We deliver it straight to your inbox twice a month.We’d like to thank Michael and the folks at Ndustrial for sharing their story on how they speeded up their client-facing dashboards, even for real-time queries, while carefully storing all their customers’ data by making the most of TimescaleDB’s compression powers.We’re always keen to feature new community projects and stories on our blog. If you have a story or project you’d like to share, reach out on Slack (@Ana Tavares), and we’ll go from there.The open-source relational database for time-series and analytics.Try Timescale for free",https://www.timescale.com/blog/how-ndustrial-is-providing-fast-real-time-queries-and-safely-storing-client-data-with-97-compression/ +How I Power a (Successful) Crypto Trading Bot With TimescaleDB,"This is an installment of our “Community Member Spotlight” series, where we invite TimescaleDB community members to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition,Felipe Queis, a senior full-stack engineer for a Brazilian government traffic institution, joins us to share how he uses TimescaleDB to power his crypto trading bot – and how his side project influenced his team’s decision to adopt TimescaleDB for their work.My first experience with crypto wasn’t under very good circumstances: a friend who takes care of several servers at his job was infected with ransomware – and this malware was demanding he pay the ransom amount in a cryptocurrency called Monero (XMR).After this not-so-friendly introduction, I started to study how the technology behind cryptocurrencies works, and I fell in love with it. I was already interested in the stock market, so I joined the familiar (stock market) with the novel (crypto). To test the knowledge I’d learned from my stock market books, I started creating a simpleMoving Average Convergence Divergence (MACD)crossover bot.This worked for a while, but I quickly realized that I should - and could - make the bot a lot better.Now, the project that I started as a hobby has a capital management system, a combination of technical indicators, and sentiment analysis powered by machine learning. Between 10 March 2020 and 10 July 2020, my bot resulted in asuccess rateof 61.5%,profit factorof 1.89, and cumulative gross result of approximately 487% (you can see a copy of all of my trades during this period inthis Google Sheet report).About meI'm 29 years old, and I’ve worked in a traffic governmental institution in São Paulo, Brazil (where I live too) as an senior full-stack developer since 2012.In my day job, my main task at the moment is processing and storing the stream of information from Object Character Recognition (OCR)-equipped speed cameras that capture data from thousands of vehicles as they travel our state highways. Our data stack uses technologies like Java, Node.js, Kafka, and TimescaleDB.(For reference, I started using TimescaleDB for my hobby project, and, after experiencing its performance and scale with my bot, I proposed we use it at my organization. We’ve found that it brings together the best of both worlds: time-series in a SQL databaseandopen source).I started to develop my crypto trading bot in mid- 2017, about six months after my first encounter with the crypto ecosystem – and I’ve continued working on it in my spare time for the last two and a half years.Editor’s Note: Felipe recently hosted aReddit AMA (Ask Me Anything)to share how he’s finally “perfected” his model, plus his experiences and advice for aspiring crypto developers and traders.About the projectI needed a bot that gave me a high-performance, scalable way to calculate technical indicators and process sentiment data in real-time.To do everything I need in terms of my technical indicators calculation, I collectcandlestick chartdata and market depth via an always-up websocket connection that tracks every Bitcoin market on theBinance exchange(~215 in total, 182 being tradeable, at this moment).The machine learning sentiment analysis started as a simple experiment to see if external news affected the market. For example: if a famous person in the crypto ecosystem tweeted that a big exchange was hacked, the price will probably fall and affect the whole market. Likewise, very good news should impact the price in a positive way. I calculated sentiment analysis scores in real-time, as soon as new data was ingested from sources like Twitter, Reddit, RSS feeds, and etc. Then, using these scores, I could determine market conditions at the moment.Now, I combine these two components with a weighted average, 60% technical indicators and 40% sentiment analysis.Felipe's TradingBot dashboard, where he tracks all ongoing trades and resultsQuick breakdown of Felipe’s results and success rates week-over-week (for the period of 10 March 2020 - 10 July 2020)Using TimescaleDBAt the beginning, I tried to save the collected data in simple files, but quickly realized that wasn’t a good way to store and process this data. I started looking for an alternative: a performant database.I went through several databases, and all of them always lacked something I wound up needing to continue my project. I tried MongoDB, InfluxDB, and Druid, but none of them 100% met my needs.Of the databases I tried,InfluxDB was a good option; however, every query that I tried to run was painful, due to their own query language (InfluxQL).As soon as my series started to grow exponentially to higher levels, the server didn't have enough memory to handle them all in real-time. This is because the currentInfluxDB TSMstorage engine requires more and more allocated memory for each series. I have a large number of unique metrics, so the process ran out of available memory quickly.I handle somewhat large amounts of data every day, especially on days with many market movements.On average, I’m ingesting around 20k records/market, or 3.6 million total records, per day (20k*182 markets).This is where TimescaleDB started to shine for me. It gave me fast real-time aggregations, built-in time-series functions, high ingestion rates – and it didn’t require elevated memory usage to do all of this.Editor’s Note:For more about how Flux compares to SQL and deciding which one is right for you,see our blog post exploring the strengths and weaknesses of each.To learn more about how TimescaleDB real-time aggregations work (as well as how they compare to vanilla PostgreSQL), seethis blog post and mini-tutorial.In addition to this raw market data, a common use case for me is to analyze the data in different time frames (e.g., 1min, 5min, 1hr, etc.). I maintain these records in a pre-computed aggregate to increase my query performance and allow me to make faster decisions about whether or not to enter a position.For example, here’s a simple query that I use a lot to follow the performance of my trades on a daily or weekly basis (daily in this case):SELECT time_group, total_trades, positive_trades, + negative_trades, + ROUND(100 * (positive_trades / total_trades), 2) AS success_rate, profit as gross_profit, + ROUND((profit - (total_trades * 0.15)), 2) AS net_profit +FROM ( + SELECT time_bucket('1 day', buy_at::TIMESTAMP)::DATE AS time_group, COUNT(*) AS total_trades, + SUM(CASE WHEN profit > 0 THEN 1 ELSE 0 END)::NUMERIC AS positive_trades, + SUM(CASE WHEN profit <= 0 THEN 1 ELSE 0 END)::NUMERIC AS negative_trades, + ROUND(SUM(profit), 2) AS profit + FROM trade + GROUP BY time_group ORDER BY time_group +) T ORDER BY time_groupAnd, I often use this function tomeasure market volatility, decomposing the range of a market pair in a period:CREATE OR REPLACE FUNCTION tr(_symbol TEXT, _till INTERVAL) + RETURNS TABLE(date TIMESTAMP WITHOUT TIME ZONE, result NUMERIC(9,8), percent NUMERIC(9,8)) LANGUAGE plpgsql AS $$ DECLARE BEGIN + +RETURN QUERY + WITH candlestick AS ( SELECT * FROM candlestick c WHERE c.symbol = _symbol AND c.time > NOW() - _till ) + SELECT d.time, (GREATEST(a, b, c)) :: NUMERIC(9,8) as result, (GREATEST(a, b, c) / d.close) :: NUMERIC(9,8) as percent FROM ( + SELECT today.time, today.close, today.high - today.low as a, + COALESCE(ABS(today.high - yesterday.close), 0) b, + COALESCE(ABS(today.low - yesterday.close), 0) c FROM candlestick today + LEFT JOIN LATERAL ( + SELECT yesterday.close FROM candlestick yesterday WHERE yesterday.time < today.time ORDER BY yesterday.time DESC LIMIT 1 + ) yesterday ON TRUE + WHERE today.time > NOW() - _till) d; +END; $$; + +CREATE OR REPLACE FUNCTION atr(_interval INT, _symbol TEXT, _till INTERVAL) + RETURNS TABLE(date TIMESTAMP WITHOUT TIME ZONE, result NUMERIC(9,8), percent NUMERIC(9,8)) LANGUAGE plpgsql AS $$ DECLARE BEGIN + +RETURN QUERY + WITH true_range AS ( SELECT * FROM tr(_symbol, _till) ) + SELECT tr.date, avg.sma result, avg.sma_percent percent FROM true_range tr + INNER JOIN LATERAL ( SELECT avg(lat.result) sma, avg(lat.percent) sma_percent + FROM ( + SELECT * FROM true_range inr + WHERE inr.date <= tr.date + ORDER BY inr.date DESC + LIMIT _interval + ) lat + ) avg ON TRUE + WHERE tr.date > NOW() - _till ORDER BY tr.date; +END; $$; + +SELECT * FROM atr(14, 'BNBBTC', '4 HOURS') ORDER BY dateWith TimescaleDB, my query response time is in the milliseconds, even with this huge amount of data.Editor’s Note: To learn more about how TimescaleDB works with cryptocurrency and practice running your own analysis,check out our step-by-step tutorial. We used these instructions toanalyze 4100+ cryptocurrencies, see historical trends, and answer questions.Current Deployment & Future PlansTo develop my bot and all its capabilities, I used Node.js as my main programming language and various libraries:Coteto communicate between all my modules without overengineering,TensorFlowto train and deploy all my machine learning models, andtulindfor technical indicator calculation, as well as various others.I modified some to meet my needs and created some from scratch, including a candlestick recognition pattern, a level calculator for support/resistance, and Fibonacci retracement.Current TradingBot architecture + breakdown of various Node.js librariesToday, I have a total of 55 markets (which are re-evaluated every month, based on trade simulation performance) that trade simultaneously 24/7; when all my strategy conditions are met, a trade is automatically opened. The bot respects my capital management system, which is basically to limit myself to 10 opened positions and only use 10% of the available capital at a given time. To keep track of the results of an open trade, I use dynamicTrailing Stop LossandTrailing Take Profit.The process of re-evaluating a market requires a second instance of my bot that runs in the background and uses my main strategy to simulate trades in all Bitcoin markets. When it detects that a market is doing well, based on the metrics I track, that market enters the main bot instance and starts live trading. The same applies to those that are performing poorly; as soon as the main instance of my bot detects things are going badly, the market is removed from the main instance and the second instance begins tracking it. If it improves, it's added back in.As every developer likely knows all too well, the process of building a software is to always improve it. Right now, I’m trying to improve my capital management system usingKelly Criterion, assuggested by a userin my Reddit post (thanks, btw :)).Getting started advice & resourcesFor my use case, I’ve found TimescaleDB is a powerful and solid choice: it’s fast with reliable ingest rates, efficiently stores and compresses a huge dataset in a way that’s manageable and cost-effective, and gives me real-time aggregation functionality.TheTimescale website,""using TimescaleDB"" core documentation, andthis blog post about about managing and processing huge time-series datasetsis all pretty easy to understand and follow – and the TimescaleDB team is responsive and helpful (and they always show up in community discussions, likemine on Reddit).It’s been easy and straightforward to scale, without adding any new technologies to the stack. And, as an SQL user, TimescaleDB adds very little maintenance overhead, especially compared to learning or maintaining a new database or language.We’d like to thank Felipe for sharing his story, as well as for his work to evangelize the power of time-series data to developers everywhere. His success with this project is an amazing example of how we can use data to fuel real-world decisions – and we congratulate him on his success 🎉.We’re always keen to feature new community projects and stories on our blog. If you have a story or project you’d like to share, reach out on Slack (@lacey butler), and we’ll go from there.Additionally, if you’re looking for more ways to get involved and show your expertise, check out theTimescale Heroesprogram.The open-source relational database for time-series and analytics.Try Timescale for free",https://www.timescale.com/blog/how-i-power-a-successful-crypto-trading-bot-with-timescaledb/ +"Using IoT Sensors, TimescaleDB, and Grafana to Control the Temperature of the Nuclear Fusion Experiment at the Max Planck Institute","This is an installment of our “Community Member Spotlight” series, where we invite our customers or users to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition, David Bailey, an intern at the Wendelstein 7-X fusion reactor experiment at theMax Planck Institute for Plasma Physics, explains how he’s using TimescaleDB and Grafana to monitor the reliability of the reactor’s heating system. Currently working on the designs of the sensor boards that measure the microwaves feeding the reactor, David needs a tight grasp on his systems and data to prevent the experiment from being aborted due to excessive heating—and is successfully achieving it with a little help from TimescaleDB.About the UserI am David Bailey, and I am currently completing an internship at the Wendelstein 7-X fusion reactor experiment, which is operated by the Max Planck Institute for Plasma Physics in Greifswald, Germany. The experiment aims to help us understand, and someday utilize, the power of fusion for further scientific endeavors and power generation. It does this by using a novel way of containing the hot gasses needed for the experiments and tweaking its design to reach longer and longer experiment runs.David BaileyThe end goal is to reach 30 minutes of uninterrupted containment of plasma heated to millions of degrees. To be able to do this, there is a lot of data to collect and process and a number of problems left to solve—one of which I can help with!About the ProjectMy specific task at the internship is to help with the heating system. Because the experiment is not set up for self-sustaining fusion, where the gasses would heat themselves, we constantly have to feed in energy to keep it hot: 10 megawatts, to be precise!We do this with various microwave sources—similar to scaled-up versions of household microwaves—and a big array of mirrors to guide the energy to the reactor vessel.Schematic of the W7-X microwave heating system and mirror assembly. Credit: Torsten Stange, David Bailey; Max Planck Institute GreifswaldThere are dangers in using these highly powerful microwaves: if dust or a fine droplet of water gets in the way of the energy, an arc can form—a lightning bolt of sorts. If the energy is not turned off fast enough, this arc can do a lot of damage, and it also means that we need to abort the experiment to wait for things to cool off again—not good if you want to run everything reliably for long periods of time!Image of a forming microwave arc, taken at the Max Planck IPP Greifswald experiment siteMy task is to design sensor boards to precisely track the amount of energy coming out of the microwave array. The ultimate goal is to detect changes in the power output on the microsecond scale, so the power can be turned off before the arc fully forms. If done right, we can turn the heating back on without a pause and continue the experiment!One of the key aspects of what I am designing is that it needs to be reliable. If it's not sensitive enough, or too sensitive, or if there are issues with the communication with the rest of the system, it can severely impact the rest of the experiment in a negative way.One of the sensors that David is working onThe only way to ensure something is reliable is through data—a lot of it. A problem might present itself only after hundreds of hours or in subtle ways that are only apparent across days of data, but it can still be relevant and important to know about.​Writing a program to handle this amount of data myself would've been an unnecessary effort. It needs a tool that has the necessary functionality in it already, such as statistical operators, compression, etc., and you can get all of this in time-series databases, such as TimescaleDB!To track that the sensors and system are working as expected, I collect and handle several types of data using TimescaleDB:I am recording the general health metrics of the board in question: temperature, voltage levels, etc. These shouldn't change, but the harsh environment close to the reactor might cause issues, which would be very important to know about!Log messages of the boards themselves to understand what the software was doing.And finally, detection events: every time the board sees something suspicious, it sends a measurement series of this event, about 1,000 samples taken over a millisecond. We can use this during the initial development phase to ensure everything is working correctly. I can use a function generator to send a predetermined reference signal and compare that to what the board tells me it saw. If there are discrepancies, those might point to errors in the soft- or hardware and help me fix them.When the system is deployed, we can use these measurements to refine the detection system, to be able to set it as fast as possible without too many false positives, and gather data about how the actual physical events look to the board.Choosing (and Using!) TimescaleDB✨Editor's Note:See how you can get started with Grafana and TimescaleDB with ourdocsorvideos.I started using Timescale to track data formy self-built smart homeas a small playground for me—that's still running! Aside from that, I only use it for the monitoring system mentioned above, though I hope to motivate others at my research institute to use it! It is also my go-to for other projects, should I need a way to store measurements efficiently.The top factors in my decision to use TimescaleDB were, first, the open-source nature of it. Open-source software can be much more beneficial to a wider range of people, mature faster, generally has more flexible features, and isn't so locked into a specific environment. It's also much more approachable to individuals because of no fussy licensing/digital rights management.Then, the documentation. You can read up on a lot of things that TimescaleDB can do, complete with great examples! It doesn't feel like you're alone and have to figure it out all by yourself—there's rich, easy-to-understand documentation available, and if that doesn't have what you need, the community has been very helpful, too.✨Editor's Note:Need help with TimescaleDB? Join ourSlack CommunityorForumand ask away!And lastly,it's still all just SQL! You don't need to learn another database-specific format, but you can start using it immediately if you've worked with any standard database before! That was helpful because I already knew the basics of SQL, giving me a great starting point. Plus, you can use PostgreSQL's rich relational database system to easily store non-time-series data alongside your measurements.Because the Wendelstein is fairly old, database tools didn’t exist when it started. As such, they decided to write their own tool,called ArchiveDB, and never quite brought it to the modern age. It can only store time-series data in a particular format and has no relational or statistical tools aside from minimum/maximum aggregates, no continuous aggregates, and probably no compression.“In the future, I want to motivate my research institute to install a proper multi-node TimescaleDB cluster. It could bring many much-needed modern features to the table, and distributed hypertables and the matching distributed computing of statistics could be incredibly useful”Storing all my measurement data in it would have been possible, but I would have had to write all of the statistical processing myself. Using Timescale was a major time-saver! I tried other tools, but none of them quite fit what I needed. I didn't want to spend too much time on an unfamiliar tool with sparse documentation.First, I tried the company’s standard database, ArchiveDB, but it didn’t offer much more functionality than simply saving a CSV file. I also tried another PostgreSQL extension,Citus. It didn’t lend itself nicely to my use case because the documentation was not as clear and easy, and it seemed much more tailored to a distributed setup from the start, making trying it out on my local machine a bit tricky. I believe I gaveInfluxDBa try, but writing in PostgreSQL felt more natural. Additionally, it was helpful to have the regular relational database from PostgreSQL and the rich set of aggregate functions.I might have used PostgreSQL without TimescaleDB,or perhaps InfluxDB had it not been for Timescale.The Grafana panels observing the sample measurements. A single event is plotted above for inspection using a scatter plot, while the accuracy of the individual measurements is plotted in a time-series belowOne of the things I am verifying right now is the measurements’ consistency. This means running thousands of known reference signals into the boards I am testing to see if they behave as expected. I could automate this using a query that JOINs a regular table containing the reference data with aTimescaleDB hypertablecontaining the measurements.With a bit of clever indexing, I was able to use the corr(x, y) function to check if things lined up. Thanks to the rich data types of PostgreSQL, I can cache metadata such as this correlation in a JSONB field. This speeds up later analysis of the data and allows me to store all sorts of extra values for individual events.The resulting data I then downsampled usingminto find the worst offenders.WITH missing_bursts AS ( + SELECT burst_id FROM adc_burst_meta WHERE NOT metadata ? 'correlation' AND $__timeFilter(time)), +raw_correlations AS ( + SELECT + burst_id, + corr(value, reference_value) AS ""correlation"" + FROM adc_burst_data + INNER JOIN missing_bursts USING(burst_id) + INNER JOIN adc_burst_reference USING(burst_offset) + GROUP BY burst_id +) +update_statement AS ( + UPDATE adc_burst_meta + SET metadata = jsonb_set(metadata, '{correlation}', correlation::text::jsonb) FROM raw_correlations WHERE adc_burst_meta.burst_id = raw_correlations.burst_id +) + +SELECT $__timeGroup(time, $__interval) AS “time”, + min((metadata->>’correlation’)::numeric) +FROM adc_burst_meta +WHERE $__timeFilter(time) +GROUP BY “time”That made even small outliers very easy to spot across hundreds of thousands of samples and made analyzing and tagging data a breeze! This insight is incredibly useful when you want to ensure your system works as intended. I could easily find the worst measurements in my sample set, which allowed me to quickly see if, how, and in what way my system was having issues.Current Deployment and Future Plans​Right now, I deploy TimescaleDB on a small, local computer.Running the Docker image has been very useful in getting a fast and easy setup, too!In the future, I want to motivate my research institute to install a proper multi-node TimescaleDB cluster. It could bring many much-needed modern features to the table, and distributed hypertables and the matching distributed computing of statistics could be incredibly useful! My queries could work orders of magnitude faster than my local machine with little extra effort.For the most part, I interact with TimescaleDB through a simple Ruby script, which acts as an adapter between the hardware itself and the database. I also used Jupyter notebooks and theJupyter IRuby Kernelto do more in-depth data analysis.✨Editor's Note:Check out this videoto learn how to wrap TimescaleDB functions for the Ruby ecosystem.“Grafana and Timescale really go hand in hand, and both of them are excellent open-source tools with rich documentation”I do use Grafana extensively! Grafana and Timescale really go hand in hand, and both of them are excellent open-source tools with rich documentation. Both have Docker images and can be set up quickly and easily. It is great to plot the measurements with just a few SQL queries.​Without Grafana, I would have had to write a lot of the plots myself, and correlating different time-series events with each other would have been much harder. Either I would have had to spend more time implementing that myself, or I wouldn't have gotten this level of information from my measurements.​The main benefit of using TimescaleDB is that you get a well-balanced mixture. Being built on top of PostgreSQL and still giving you access to all regular relational database features, you can use TimescaleDB for a much larger variety of tasks.​You can also dive right in, even with minimal SQL knowledge—and if you ever do get stuck, theTimescaleandPostgreSQL documentationare well written and extensive, so you can almost always find a solution!​Lastly, there is no ""too small"" for TimescaleDB either. Being open source, quick to set up, and easy to use while performing well even on a spare laptop or PC, it can be a valuable tool for any sort of data acquisition—even if it feels like a ""small"" task!​I learned a lot about my system already by using TimescaleDB and can be much more confident in how to proceed thanks to it. In a way, it has even changed my developer experience. I have the data acquisition and TimescaleDB running continuously while working on new software features or modifying the hardware. If I were to introduce a bug that could mess up the measurements, I might see those much sooner in the data. I can then react appropriately and quickly while still developing.​I can worry less about ensuring everything works and focus more on adding new features!Advice and ResourcesGive TimescaleDB a try whenever you need to record any kind of time-series data. It's much easier to use than writing your own script or dumping it into a CSV file. The built-in functionality can take care of a lot of number crunching very efficiently, allowing you to benefit from years of finely developed functions. It's well worth the trouble, and there's no such thing as ""too small"" a use case for it!​TimescaleDB has helped me be more confident in developing my hardware, and I want to motivate others in my field to try it out themselves. A lot can be gained from a few days or months of data, even if at first you don't think so—some insights only pop out at larger scales, no matter what you're working on.I am very excited to share my use case of TimescaleDB. Whenever I think of databases, I am drawn to these larger web services and big tech companies—but that doesn't have to be the case! That can also be helpful advice for others looking for the right database for their use case.We’d like to thank David and all of the folks at the Max Planck Institute for Plasma Physics for sharing their story on how they’re monitoring the Wendelstein 7-X fusion reactor’s heating system using TimescaleDB.We’re always keen to feature new community projects and stories on our blog. If you have a story or project you’d like to share, reach out on Slack (@Ana Tavares), and we’ll go from there.The open-source relational database for time-series and analytics.Try Timescale for free",https://www.timescale.com/blog/using-iot-sensors-timescaledb-and-grafana-to-control-the-temperature-of-the-nuclear-fusion-experiment-in-the-max-planck-institute/ +How Trading Strategy Built a Data Stack for Crypto Quant Trading,"This is an installment of our “Community Member Spotlight” series, where we invite TimescaleDB community members to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition, Mikko Ohtamaa, CEO at Trading Strategy, joins us to share how they give traders and investors direct access to high-quality trading strategies and real-time control over their assets by integrating market data about thousands of crypto assets, algorithms, profitability simulation, and more into one solution. Thanks to TimescaleDB, they can focus on solving business problems without a need to build the infrastructure layer.Trading Strategyis a protocol for algorithmic trading of crypto-assets in decentralized markets. Cryptocurrency traders and strategy developers can utilize the protocol to easily access and trade on next-generation markets with sophisticated tools that have been traditionally available only for hedge funds.Users don’t need to have a deep understanding of blockchain technology, as the Trading Strategy protocol is designed to make a complex topic easier to understand and approach. This is accomplished by integrating market data feeds for thousands of crypto assets, algorithm development, profitability simulation, trade execution, and smart contract-based treasury management tools into one vertically integrated package.About the teamMy name isMikko Ohtamaa. I am the CEO of Trading Strategy. I have been a software developer for 25 years. For the last decade, I have been CTO of various cryptocurrency and fintech companies. I am also one of the firstEthereum Dappdevelopers and Solidity smart contract auditors.Trading Strategy is a remote-first company with five people. We have offices in London and Gibraltar. We use a combination of remote working tools (Discord, Github, Google Workspace) and more intense get-together sprint weeks to manage the software development.As our work is highly technical, all team members have backgrounds in software development, quantitative finance, or blockchain technologies.About the projectTrading Strategy operates on market data feeds, for which raw data is collected directly from the blockchains. Most market data is heavily time-series, though there are also elements of product catalog features like different trading pairs, tokens, and exchanges.Because of the powerful combination of PostgreSQL and TimescaleDB, we can store the data in a single database,making it simple for software developers to build on top of this and this, in turn, saves us a lot of software development costs.We have two kinds of workloads:historical datasets, that are challenging sizewise, andreal-time data feedsfor algorithms that are challenging latency-wise. TimescaleDB offers vertical scaling as a data lake,  but also offers continuous real-time aggregations for time-series data, making it a good fit for real-time needs.✨Editor’s Note:We’ve put together resources about TimescaleDB’scontinuous aggregatesto help you get started.Data from TimescaleDB is feeding bothon our market information websiteand feeds, but also on the trading algorithms themselves, which make the trading decisions based on the data input. Our applications include OHLCV, or so-called candle charts, market summaries information like daily top trades and liquidity, and risk information for technical trade analysis.Collage of charts from Trading Strategy websiteChoosing (and using!) TimescaleDBPostgreSQL has been the open-source workhorse of databases for the last three decades and offers the most well-known, solid, foundation to build your business on.We chose TimescaleDB over other time-series databases because of its solid PostgreSQL foundation, easy, out-of-the-box functionality, and true open-source nature with an active TimescaleDB community.Moreover, TimescaleDB comes with well-documented code examples on how to use it for stock-market chart data, allowing us to take these examples and build our first MVP based on TimescaleDB example code.✨Editor’s Note:Check out ourthree-step tutorialto learn how to collect, store, and analyze intraday stock data.For example, we heavily utilize the continuous aggregate view feature of TimescaleDB, to upsample our 1-minute candle data to 15 minutes, 1 hour, and daily candles.We can fully offload this work to TimescaleDB, with only a minimal 10-20 lines of SQL code describing how to upsample different columns.Current deployment & future plansBesides TimescaleDB, our other major components in the software development stack are Svelte/SvelteKitweb frontend framework and Python, Pyramid, andSQLAlchemybackend.I invite everyone evaluating TimescaleDB toread our blog post about our software architecture.The current architecture diagramAt the moment, we have trading data from 1000 decentralised exchanges (aka dexes), from three blockchains (Ethereum, Polygon and Binance Smart Chain), featuring 800k trading pairs. For reference,NASDAQhas only 3000 trading pairs, giving a reference point for the massive diversity of blockchain and cryptocurrency markets! Currently, we are fitting everything on one 1 TB database, but we are still early on what kind of data points we collect. We expect the database to grow dozens of terabytes over the next year.Architecture diagram of trading data sourcesTrading Strategy is completing its seed round. So far, the team has been lean. We expect to start growing as a business now, as our business is finding a product-market fit. We are looking to launch user-accessible trading strategies later this year, as soon as we are confident the software stack is well-behaving and related smart contracts are secure.We are at the bleeding edge of blockchain technology. Many of the components we built and many of the problems we solve we do as the first in the world.TimescaleDB allows us to focus on solving these business problems without us needing to build the infrastructure layer ourselves.🗯️If you are interested in crypto trading strategies, please come to ask any questions in ourpublic Discord chat.Advice & resourcesIf you are generally interested in algorithmic trading and machine-based solutions on financial markets, pleaseread our announcement blog postto learn about our vision for decentralised finance and decentralised protocol.To see TimescaleDB in action, youcan explore our public real-time API endpoints, view ourreal-time market data charts, ordownload historical market datasets generatedout from TimescaleDB.Trading Strategy contributes heavily to open source. You canstudy our Trading Strategy Python clientand our100% open source SvelteKit frontend.If you have software development questions or questions about trading strategies, please come to ask any questions inour public Discord chat.We also love coffee brewing tips shared by the TimescaleDB. Due to increased brewing activity, our team is now 150% caffeinated.It matters, and is one of the major reasons I came to Timescale to work in#DevRel.And for the record, I'm totally up for answering any coffee questions you want to throw our way. ☕️😉https://t.co/f74kT9eHWF— Ryan Booz (@ryanbooz)January 19, 2022We’d like to thank Mikko and the entire Trading Strategy team for sharing their story! We applaud your effort to give access to high-quality trading strategies to users around the world.We’re always keen to feature new community projects and stories on our blog. If you have a story or project you’d like to share, reach out on Slack (@Lucie Šimečková), and we’ll go from there.The open-source relational database for time-series and analytics.Try Timescale for free",https://www.timescale.com/blog/how-trading-strategy-built-a-data-stack-for-crypto-quant-trading/ +Automated Mocking Using API Traffic: Speedscale's Story,"This is an installment of our “Community Member Spotlight” series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition, Ken Ahrens, co-founder and CEO of Speedscale, joins us to share how they modernize and automate testing practices for cloud infrastructure by providing API traffic data going into and out various microservices. Thanks to TimescaleDB, Speedscale´s UI loads quickly and provides the ability to drill deep down into high-fidelity data.Speedscaleis one of the first commercial technologies utilizingactual API trafficin order to generate tests and mocks. Speedscale helps Kubernetes engineering teams validate how new code will perform under production-like workload conditions.Speedscale service mapSpeedscale provides unparalleled visibility, collects and replays API traffic, introduces chaos, and measures the golden signals of latency, throughput, saturation, and errors before the code is released.Screenshot of Speedscale UISpeedscale Traffic Replayis a modern load, integration, and chaos testing framework -- an alternative to legacy scripting tools that can take days or weeks to run and do not scale well for modern architectures.If your organization provides a SaaS product that is critical for revenue, or your team is responsible for performant infrastructure, Speedscale is for you. Speedscale enables engineering leaders to generate quality automation quickly without the need for manual scripting. Since actual API calls (not scripts) are the primary ingredient, tests and mocks can be built and regenerated quickly to keep pace with the speed of changing business requirements.As microservices become more separated logically, they are highly dependent on each other to deliver the expected functionality. This means performance problems become distributed across multiple services and can be difficult to trace.  Multiple contributing factors affect the state of an application in microservices and Kubernetes environments. A testing harness that closely mirrors the production setup and incoming traffic has become a requirement for highly distributed and containerized environments.By leveraging traffic to automatically generate sophisticated mocks, engineers and testers are granted the ability to isolate and contract/performance test smaller components in the context of a tightly coupled architecture.  This superpower enables rapid testing iterations. Moreover, without the need for scripting, testing can finally move as fast as development.About the foundersSpeedscale’s leadership team comes from companies like New Relic, Observe Inc, Wily Introscope (bought by CA Technologies), and iTKO (bought by CA Technologies).My name isKen Ahrens. I am co-founder and CEO of Speedcale. Much of my career has been focused on helping companies develop and manage complex web applications. I previously ran North America teams for New Relic and CA/Broadcom. Previous startups included Pentaho (acquired by Hitachi), ITKO (acquired by CA/Broadcom), and ILC (acquired by General Dynamics). My first foray into programming started with a brand new language called Java at Georgia Tech and has grown into a lifetime interest.Matthew LeRay, co-founder and CTO at Speedscale, has invested the past 20 years in improving the performance of applications across multiple generations of technology. Previously, he was head of product at Observe, SVP at CA Technologies (acquired by Broadcom), and engineering leader at ILC (acquired by General Dynamics). He is an alumnus of Georgia Tech in both Computer Engineering and Business. His first love is debugging Golang code but he occasionally takes a break to craft hand-carved guitars.Nate Lee, co-founder and VP of Sales & Marketing, has served a variety of roles within the software industry. Most recently, he was in enterprise sales for the digital transformation consultancy Contino (acquired by Cognizant). Prior to Contino, he served as Product Manager at CA Technologies, by way of iTKO where he was a Presales Engineer for 6 years. Before iTKO, he spent time as a support leader at IBM Internet Security Systems, and engineer at ILC (acquired by General Dynamics). He graduated from Georgia Tech with an MBA in Technology, and a BS in Computer Science.  You’ll most likely find him outdoors on 2 wheels when he’s not innovating with his Speedscale buddies.As a small, nimble startup, our normal workweek is comprised mostly of helping customers scope their use cases and deciding where to start with our testing framework (recording traffic, generating traffic replay “scenarios” comprised of tests and mocks of auto-identified dependencies). We are an engineering startup with a heavy emphasis on Kubernetes and Golang. We also are improving the protocol and version support of both our Enterprise Kubernetes version and Desktop version called theSpeedscale CLI.About the projectWe noticed the application of outdated testing practices to modern cloud infrastructure (eg. UI testing, manual testing, API test tools with no mocking). As the number of connections in distributed, containerized applications grew, the need for quality automation increases exponentially. As a result, the popularity ofcanary releases and blue green deploymentshave risen, but we believe this is due to a lack of robust quality automation alternatives.Speedscale uses a transparent proxy to capture API transaction data from which to model robust API tests and realistic mocks of backend dependencies. Our traffic replay framework iscapable of showing engineering teamscomplex headers, authentication tokens, message bodies, and associated metadata (with sensitive data redaction when necessary). In addition, the platform is able toautomatically identify backend dependenciesthat are needed to operate your service, allowing new developers on old services to get up to speed quickly. This data is streamed to AWS S3 and filtered for test and mock scenario creation. These scenarios can then be replayed as part of validation test suites and integrated into CI or GitOps workflows.Our customers need to be able to understand the API traffic going into and out of their various microservices over time. They want to see the sequence of API calls as well as the trend of the overall volume of calls.Data is ingested by our platform into our cloud data warehouse. As new data arrives, we determine the index where that API call can be found and write the index to TimescaleDB. Then we can use the data from TimescaleDB to find the original value. Because the indexes are much smaller than the original data, we are able to calculate aggregates on the fly and plot them in our user interface. The Traffic Viewer graph shows inbound and outbound calls, backend dependencies, and an “infinite scroll” list of traffic. All of these components are powered by TimescaleDB queries.Speedscale Traffic ViewerChoosing (and using!) TimescaleDBWe knew right from the start that we have a time-series problem. There was always new data flowing in, and users wanted to focus on data from certain periods of time, they didn't just want all the data presented to them. We decided to use a time-series database to store the data.We wanted a technology that could run inside Kubernetes, is easy to operate (we are a startup after all) and scale for our needs. We initially implementedElasticsearchand exposed the data throughKibana. It let us quickly prototype the use cases and worked great for lower volumes of data. But it scaled poorly for our use case and we had very little control over the look and feel of the UI. Then we evaluated TimescaleDB, Influx, Prometheus and Graphite.We selected TimescaleDB because we were already using PostgreSQL as part of our technology stack, and also the paper evaluation looked like TimescaleDB would scale well at our load ranges.✨Editor’s Note:For more comparisons and benchmarks, seehow TimescaleDB compares to InfluxDB, MongoDB, AWS Timestream, vanilla PostgreSQL, and other time-series database alternativeson various vectors, from performance and ecosystem to query language and beyond.We useSQiurreLto issue SQL queries like this one that powers the inbound throughput graph.rrPairsQuery := sq.Select( + fmt.Sprintf(""time_bucket(INTERVAL '%s', time) AS bucket"", durationToSQLInterval(interval)), + ""is_inbound"", + ""COUNT(id)""). + From(rrPairsTableName). + GroupBy(""is_inbound"", ""bucket""). + OrderBy(""bucket"")We deploy TimescaleDB on theKubernetes operatorviaFlux. Our core services are currently written in Golang which we use to connect TimescaleDB with microservices inside Kubernetes as well as AWS Lambda.Currently, our architecture that touches TimescaleDB looks like this:Current Speedscale architecture diagramAfter implementing TimescaleDB, our AWS cloud costs went down about 35% because it is cheaper to run than the AWS OpenSearch we used before. In addition, the query performance improved dramatically, a majority of queries take under 100ms to complete.Advice & resourcesHaving aKubernetes operatorwas a big help for us because it was proof that this was built for our architecture.We’ve made a version of our traffic capture capability available as a free CLI which you can find here:https://github.com/speedscale/speedscale-cliWe’d like to thank Ken and all folks from Speedscale for sharing their story. We applaud your efforts to modernize and automate testing practices for modern cloud infrastructure.🙌We’re always keen to feature new community projects and stories on our blog. If you have a story or project you’d like to share, reach out on Slack (@Lucie Šimečková), and we’ll go from there.The open-source relational database for time-series and analytics.Try Timescale for free",https://www.timescale.com/blog/automated-mocking-using-api-traffic-speedscales-story/ +How NLP Cloud Monitors Their Language AI API,"This is an installment of our “Community Member Spotlight” series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition, Julien Salinas, full-stack developer, founder, and chief technology officer (CTO) at NLP Cloud, talks about how his team is building an advanced API to perform natural language processing (NLP) tasks while taking care of the complexity of AI infrastructures for developers.About the CompanyNLP Cloudis an advanced API for text understanding and generation in production. The most recent AI models are easy to use on NLP Cloud (GPT-NeoX 20B, GPT-J, Bart Large, among others). Thanks to the API, you can perform all kinds of natural processing language processing tasks: text summarization, paraphrasing, automatic blog post generation, text classification, intent detection, entity extraction, chatbots, question answering, and much more!Several API clients are available, so you can easily add language AI to your application in Python, Go, JavaScript, Ruby, and PHP. You can also train or fine-tune your own AI model on NLP Cloud or deploy your in-house models.Today, more than 20,000 developers and data scientists use NLP Cloud successfully in production! They love NLP Cloud because they don’t want to deal with MLOps (DevOps for machine learning) by themselves. NLP Cloud takes care of the complex infrastructure challenges related to AI (GPU reliability, redundancy, high availability, scaling, etc.).About the TeamMy name is Julien Salinas, and I’m a full-stack developer, founder, and CTO of NLP Cloud. Our company has a team of six high-level engineers skilled in NLP, DevOps,  and low-level optimization for machine learning.The team works hard to provision state-of-the-art NLP models like GPT-NeoX (equivalent to OpenAI’s GPT-3) and make sure that these models run reliably in production and at an affordable cost.About the ProjectA summarization task performed by the NLP Cloud APIWe realized we needed a time-series database when our users asked us for a pay-as-you-go planfor GPT-J, one of our open-source NLP models. They wanted to be charged based on the number of words they’re generating, the same way OpenAI does with their GPT-3 API. Our users also wanted to monitor their usage through their NLP Cloud dashboard.So, we started implementing TimescaleDB to log the following:The number of API calls per user and API endpointThe number of words sent and generated per user by GPT-J and GPT-NeoXThe number of characters sent and received by our multilingual add-onWe had two main requirements:Writing the data had to be very fast in order not to slow down the APIQuerying the data had to be easy for our admins to quickly inspect the data when needed and easily show the data to our customers on their dashboardChoosing (and Using!) TimescaleDB✨Editor’s Note:Not that you really need them, but here are nine reasons to choose TimescaleDB vs. InfluxDB or AWS Timestream.I found out about Timescale by looking for InfluxDB alternatives. I found the Telegraf, Influx, and Grafana (TIG) stack quite complex, so I was looking for something simpler.“TimescaleDB is a cornerstone of our pay-as-you-go plans”The top factors in my decision for Timescale were the following:Easy data downsampling thanks to continuous aggregatesPostgreSQL ecosystem: no need to learn something new, and we were all already skilled in SQL and PostgreSQL, so it saved us a lot of time and energyWe use TimescaleDB behind ournatural language processing APIto track API usage. Based on that, we can do analytics on our API and charge customers depending on their consumption. TimescaleDB is a cornerstone of our pay-as-you-go plans. Most of our users select such plans.If you want to see how we do it, I detailedhow we use TimescaleDB to track our API analyticsin a previous blog post.“The greatest TimescaleDB feature for us is the ability to automatically downsample data thanks to continuous aggregates”Before using TimescaleDB, we did very naive analytics by simply logging every API call into our main PostgreSQL database. Of course, it had tons of drawbacks. We had always known it would be a temporary solution as long as the volume of API calls remained reasonably low (right after launching the API publicly), and we quickly switched to TimescaleDB as soon as possible.We also evaluated a TIG solution (InfluxDB) but found that the complexity was not worth it. If TimescaleDB did not exist, we would maybe stick to a pure log-based solution backed by Elasticsearch.Current Deployment and Future PlansWe use TimescaleDB as a Docker container automatically deployed by our container orchestrator. Two kinds of applications insert data into TimescaleDB: Go and Python microservices. To visualize the data, we’re using Grafana.The greatest TimescaleDB feature for us is the ability to automatically downsample datathanks to continuous aggregates. We’re writing a lot of data within TimescaleDB, so we can’t afford to keep everything forever, but some high-level data should be kept forever. Before that, we had to develop our own auto-cleaning routines on PostgreSQL: it was highly inefficient, and some of our read queries were lagging. It’s not the case anymore.✨Editor’s Note:Learn how you can proactively manage long-term data storage with downsamplingorread our docs on downsampling.The NLP Cloud API is evolving very fast. We are currently working hard on multi-account capabilities: soon, our customers will be able to invite other persons from their team and manage multiple API tokens.In the future, we also plan to integrate severalnew AI modelsand optimize the speed of our Transformer-based models.Advice and ResourcesWe recommend Timescale to any development team looking for a time-series solution that is both robust and easy to deal with. Understandably, most developers don’t want to spend too much time implementing an analytics solution. We found that TimescaleDB was simple to install and manage for API analytics, and it scales very well.TheTimescaleDB docsare a very good resource. We didn’t use anything else.My advice for programmers trying to implement a scalable database strategy? Don’t mix your business database or online transaction processing (OLTP) with your online analytical processing or analytics database (OLAP).It’s quite hard to efficiently use the same database for both day-to-day business (user registration and login, for example) and data analytics. The first one (OLTP) should be very responsive if you don’t want your user-facing application to lag, so you want to avoid heavy tasks related to data analytics (OLAP), as they are likely to put too much strain on your application.Ideally, you want to handle data analytics in a second database that is optimized for writes (like TimescaleDB) and is perfectly decoupled from your OLTP database. The trick then is to find a way to properly move some data from your OLTP database to your OLAP database. You can do this through asynchronous extract, transform, and load (ELT) batch jobs, for example.We’d like to thank Julien and his team at NLP Cloud for sharing their story and writing a blog post on how the NLP Cloud Team uses TimescaleDB to track their API analytics.We’re always keen to feature new community projects and stories on our blog. If you have a story or project you’d like to share, reach out on Slack (@Ana Tavares), and we’ll go from there.The open-source relational database for time-series and analytics.Try Timescale for free",https://www.timescale.com/blog/how-nlp-cloud-monitors-their-language-ai-api/ +Visualizing IoT Data at Scale With Hopara and TimescaleDB,"IntroductionI have been involved in building DBMSs for 50 years. During that time, I have been the main architect behind PostgreSQL (the foundation of Timescale), Vertica, VoltDB, and Paradigm4. Recently, I have been studying user-facing problems, most notably, “How do users derive information from the massive amount of data we are collecting?”Sometimes users know exactly what they are interested in, and a conventional dashboard (such as Tableau or Spotfire) can help them find it. Often, however, the real question behind a query a user wants to run is, “Tell me something interesting?” I.e., “Show me an actionable insight.” To provide these meaningful data insights, a sophisticated visualization system is needed to complement more traditional analytics systems.I have long been a fan of Google Maps, which allows you to go from a picture of the Earth to the plot map on your street in 21 clicks. This is an exemplar of a “detail on demand” system, often called a “pan-zoom” interface. A big advantage of such systems is that no user manual is required since the interface is so intuitive. Unfortunately, Google Maps only works for geographic data. So what to do if you have floor plans, 3D models, scatter plots, or the myriad of other representations that users want to see?Hoparacan be thought of as “Google Maps on steroids.” It will produce pan-zoom displays for any kind of data. It is especially applicable for real-time monitoring applications, often from IoT data collection or asset tracking of sensor-tagged devices.Hopara is almost three years old, headquartered in Boston, and employs 12 people.Figure 1. Example of a Hopara app in the lab space (powered by Timescale)In this post, I will walk you through a Hopara monitoring application powered by TimescaleDB. It shows the benefit of Hopara visualization aided by a traditional analytics dashboard. This application reports vibration issues in sensor-tagged machines, and the real-time vibration data is stored in a Timescale database for effective real-time querying.The Problem: Monitoring (Lots of) Sensor Data in Real TimeLet’s consider a French company that operates 58 factories in Brazil, manufacturing construction materials (think pipes, glue, and nails). This company is referred to as FC in the rest of this post.FC is in the process of installing about 50K sensors from a Brazilian vendor, IBBX. These sensors primarily report vibration, typically at 100 msec intervals. Excessive vibration is often an early warning of machine failure or the need for urgent service. Hence, real-time monitoring is required for 50K time series of vibration data.Unlike some applications that can aggregate data in the network from sensor to server, FC requires that details be available on all sensors so abnormal events can be reported on individual machines.These abnormal events can include the following:Latest reading over a thresholdFive sequential readings over five minutes above a second thresholdOne reading per minute over a third threshold for 10 minutesA reading over a fourth threshold more than once a day for a monthIn addition, FC wants to filter machines by location (e.g., only those plants in São Paulo) and by time (e.g., report only weekend vibrations).A time-series database is the optimal solution for storing the 50K time-series sensor data for a long period of time. Although this database is likely measured in GB, it is easy to imagine much larger applications.In the rest of this blog post, I first talk about the FC reporting architecture and their future requirements. Then, I discuss the requirements for the database, and why Hopara ended up using Timescale.From Data to Insights: Building Actionable VisualizationsFC runs a sophisticated analytics application provided by IBBX. It monitors vibrations and employs machine learning-based predictive analytics to forecast needed repair events. The IBBX dashboard for FC is shown in Figure 2. It shows “the details” using typical dashboard technology.  This is very useful for initiating corrective action when required.Figure 2. FC/IBBX dashboard using time-series sensor data in real timeHowever, this dashboard does not show “the big picture” desired by the FC personnel. Hence, IBBX recently partnered with Hopara to produce a “detail-on-demand” system for the same data. Figure 3 shows FC factories on a map of Brazil color-coded with their facility health.Figure 3. The Big Picture: FC factories on a map of Brazil color-coded with their facility healthNotice that there are two factories with a yellow status. If an FC user wants to “drill into” one of them, the user will see Figure 4. Figures 4 and 5 shows greater detail about one yellow sensor in Figure 3, while Figure 6 shows the time series of sensor readings for the sensor in question over five days. Notice that, in a few clicks, a user can move from an overview to the actual time-series data.FC users appreciate both the analytics dashboard and the Hopara drill-down system. As a result, IBBX and Hopara combined their software into a single system. The takeaway from this example is that there is a need for predictive analytics and insightful visualization. IoT customers should have both kinds of tools in their arsenal.✨Editor's Note:If you want to learn more abouttime-series forecasting, its applications, and popular techniques, check out this blog post.Figure 4. The factory in questionWe now turn our attention to response time. It is accepted pragma that the response time for a command to a visualization system must be less than 500 msec. Since it takes some time to render the screen, the actual time to fetch the data from a storage engine must be less than this number. The next section discusses DBMS performance considerations in more detail.Behind The Scenes: Powering Real-Time Visualizations Using TimescaleFigure 5. More real-time detailsFigure 6. The actual dataAs mentioned previously, these real-time views are powered by TimescaleDB. TimescaleDB is built on top of PostgreSQL and extends it with a series of extremely useful capabilities for this use case, such asautomatic partitioning by time,boosted performance for frequently-run queries, andcontinuous aggregates for real-time aggregations.To guarantee a real-time display, Hopara fetches live data from the database for every user command. Otherwise, stale data will be rendered on the screen. The screenshots above come from a real Hopara application interacting with a database. We note in Figure 2 that the alerting condition is the first one mentioned in a previous section (the latest reading over a threshold).In other words, the display is showing a computation based on the most recent values from the various sensors. Specifically, Hopara uses a database with the schema shown in Figure 7, with a Readings table with all the raw data. This is connected to a Sensor table with the characteristics of each individual sensor.Figure 7. The database schemaThen, the display in Figure 2 requires fetching the most recent reading for each sensor. This can be produced by running the following two-step PostgreSQL query:–— get the latest reading timestamp + sensor_id +SELECT max(timestamp) as timestamp, sensor_id +FROM readings +GROUP BY sensor_id + + +—— get the reading value +SELECT l.timestamp, l.sensor_id, r.value FROM latest l +INNER JOIN readings r ON r.sensor_id = l.sensor_id AND r.timestamp = l.timestampThis query, while easy to understand, is not efficient. The following representation leverages PostgreSQLdistinct onand Timescaleskip scanto perform the query faster, so it is a preferred alternative.SELECT DISTINCT ON (sensor_id) * +FROM readings +WHERE timestamp > now() - INTERVAL '24 hours' +ORDER BY sensor_id, timestamp DESC;Note that condition one can be triggered inadvertently, for example, by a worker brushing against the machine. Hence, some combination of conditions 2-4 is a more robust alerting criterion. Unfortunately, these require complex real-time aggregation, which is not present in PostgreSQL. As a result, Hopara switched to TimescaleDB, which extends PostgreSQL with these capabilities (through its continuous aggregate capabilities).Turn now to Figure 6, which displays five days of data for three sensors. Since each sensor is reporting every 100 msec, there are around 4.5M observations in a five-day window. Obviously, this level of granularity is inappropriate for the display presented. In addition, there is no way to produce the display within the required response time. Hence, Hopara aggregates the raw data into two-minute averages using Timescale’scontinuous aggregates(Figure 5 displays these averages).Timescale’shypertablesautomatically partition big tables, so it’s easier for the query planner to localize time-series data. This greatly accelerates queries such as the one required to produce Figure 5, another reason for the switch from PostgreSQL to TimescaleDB.As a result, Hopara and TimescaleDB are powerful tools for IoT applications of the sort discussed in this blog post.We want to thank Professor Michael Stonebraker and the team at Hopara for sharing their story on how they are providing meaningful visualization solutions for their customers’ sensor data. As PostgreSQL lovers and enthusiasts, we are incredibly grateful and proud to see Professor Stonebraker using TimescaleDB to provide real-time insights to Hopara’s customers.If you want to learn more about Timescale and see how we handle time-series data, events, and analytics,read our Developer Q&As. These are real stories from real developers working in the real world. And if you want to try our cloud solution, sign up for a 30-day free trial. You will have access to all its unique features, from continuous aggregations to advanced analytical functions (and you don’t even need a credit card!).About the AuthorMichael Stonebrakeris a pioneer of database research and technology. He joined the University of California, Berkeley, as an assistant professor in 1971 and taught in the computer science and EECS departments for 29 years.While at Berkeley, he developed prototypes for the INGRES relational data management system, the object-relational DBMS, POSTGRES, and the federated system, Mariposa. He is the founder of three successful Silicon Valley startups whose objective was to commercialize these prototypes.Mike is the author of scores of research papers on database technology, operating systems, and the architecture of system software services. He was awarded the ACM System Software Award in 1992 (for INGRES) and the Turing Award in 2015.He was elected to the National Academy of Engineering and is presently an adjunct professor of computer science at MIT’s Computer Science and AI Laboratory (CSAIL.)The open-source relational database for time-series and analytics.Try Timescale for free",https://www.timescale.com/blog/visualizing-iot-data-at-scale-with-hopara-and-timescaledb/ +How Octave Achieves a High Compression Ratio and Speedy Queries on Historical Data While Revolutionizing the Battery Market,"This is an installment of our “Community Member Spotlight” series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition, Nicolas Quintin, head of Data atOctave, shares how the company migrated from AWS Timestream to Timescale in search of a more mature and scalable database and is revolutionizing the battery market by improving the battery systems’ safety and predicting maintenance needs.To do so, the Octave team collects and analyzes millions of data points daily while dramatically saving disk space (their compression ratio is 26.06!) and delivering speedy queries on historical data on client-facing applications. How do they do it? With a little help from Timescale's compression capabilities and continuous aggregates.About the CompanyOctaveis a cleantech company based in Belgium that gives electric vehicle (EVs) batteries a second life. We develop energy storage systems by repurposing usedlithium-ion (Li-ion) batteriesand transforming them into smart, sustainable assets to store the excess wind and solar energy.Batteries from an electric vehicle are typically retired when their usable capacity has decreased to roughly 80 percent. Octave gives these batteries a new life through smart solutions for stationary energy storage, for which demand is rapidly growing. This way, we can save resources and raw materials that would be traditionally used to produce new batteries.The company repurposes batteries from electric vehicles to create these battery cabinetsOctave’s batteries are suitable technologies for small and medium-sized enterprises or industrial sites looking to optimize their energy management or decrease their electricity bill amid the record-high energy prices in Europe.More specifically, Octave’s sustainable energy storage system allows customers to increase their self-consumption and cope with the intermittency of renewable energy sources. It also enables customers to participate actively in the energy markets, becoming more independent from energy suppliers, fossil fuels, and grid operators.About the TeamWe’re currently a team of around 10 people working on everything related to electrical and mechanical design engineering, embedded and software engineering, and business development. We’re growing fast!As the head of data, my role at Octave is to collect data from the edge devices, store them in our databases, develop data pipelines, improve and optimize the battery state algorithms through big data analytics, and present actionable insights in dashboards. Finally, I also ensure that this entire process happens seamlessly.About the ProjectOctave distinguishes itself from traditional battery suppliers by leveraging the plethora of data and measurements from the battery system and building up an extensive history of each battery cell.We handle large streams of battery measurements with clear time-series characteristics: each data point is composed of a timestamp and a value. These data are collected from the battery systems (our IoT edge devices) and sent back to our cloud for further analysis.Among the information we collect, the most basic yet crucial data points are undoubtedly the voltage and temperature measurements from each battery cell in operation.One of Octave’s dashboards made with Grafana and Timescale""We initially used AWS Timestream in the early days of Octave, which at first seemed a natural choice to handle our time-series data since our cloud infrastructure was entirely built in AWS. However, we quickly realized we would need a more widely used, mature, and scalable database solution""The data are streamed back to ourBattery Cloud(our in-house developed cloud platform, hosted on AWS and relying on Timescale databases), where they are crunched and further processed. This allows us the following:Analyze the battery cells’ behavior and degradation based on their history and how they are cycled (the temperature, current levels, and depth of discharge significantly impact the lifetime of batteries!).Improve the safety of the system by immediately detecting anomalies.Implement a data-driven predictive maintenance process. The ultimate goal is to predict when to replace a used battery module, and by doing so, we can extend the lifetime of the entire system. This is a true game-changer for second-life battery systems.✨Editor's Note:Learn what time-series forecasting is, its applications, and its main techniques in this blog post.A diagram of Octave’s Battery CloudChoosing (and Using!) TimescaleDBI have been using PostgreSQL for some time, and we were keen to use tools and stacks we were familiar with for the sake of efficiency. So inevitably, I was immediately interested when I heard about an interesting PostgreSQL extension called TimescaleDB, specifically built to handle time-series data, which we knew we needed since we were dealing with a typical IoT use case.""Timescale has proven to be a key enabler of Octave’s data-driven Battery Cloud technology""We initially used AWS Timestream in the early days of Octave, which at first seemed a natural choice to handle our time-series data since our cloud infrastructure was entirely built in AWS. However, we quickly realized we would need a more widely used, mature, and scalable database solution if we ever wanted to scale our operations and deploy several dozen or hundred second-life battery systems in the field. So, we went looking for alternatives.After some research, Timescale quickly became our preferred option, given itsimpressive compression ratios, lightning-fast queries,unmissable continuous aggregates, friendlycommunityandextensive documentation, and most importantly, its plain PostgreSQL syntax.The cherry on the cake is Timescale's ease of use and user-friendly interface.We went immediately for Timescale because we were looking for a managed service, and Timescale seemed the recommended option and was nicely compatible with our preferred AWS region.✨Editor’s Note:Timescale’s user interface now offers an even friendlier and user-centered experience.The Timescale Team shared their redesign journey and lessons in this blog post.We have found TimescaleDB’s compression ratio to be absolutely phenomenal! We’re currently at a compression ratio of over26, drastically reducing the disk space required to store all our data.A narrow table modelOctave’s compression ratio with TimescaleThe power of continuous aggregates is hard to overstate:they are basically materialized views that are continuously and incrementally refreshedand allow for lightning-fast queries on large historical datasets.I have found thedocumentationto be very clear and abundant. Every feature is very well explained. So it’s very easy toget started with TimescaleDB. And if we have more precise questions specifically related to our use case, we can always rely on our customer success manager or the very reactive Support Team. 🙂✨Editor’s Note:Read how our Support Team raises the bar on hosted database support.Current Deployment & Future PlansMost of our backend software is currently written in Python. We leverage AWS IoT to manage our battery fleet and circulate the data between our edge devices and our battery cloud viaMQTT.We rely on some ETL (extract, transform, load) pipelines interacting with Timescale that extract battery measurements and insert the processed data back into the database. We also use some dashboarding tools, such asGrafanaandStreamlit, as well as API endpoints connected to our Timescale database.It’s no secret that time-series data can grow very fast. We currently store close to one million data points per battery system daily. As we have already sold our first 28 battery cabinets, the size of our database is expected to increase quickly. This is only the start, as we expect to triple or quadruple sales by the end of 2023.So far, we have found Timescale to be powerful, scalable, and pretty well-suited for our application. Timescale has proven to be a key enabler of Octave’s data-driven Battery Cloud technology.We have started to leverage the power of continuous aggregates. For example, continuous aggregates are queried behind the scenes of our customer-facing applications. They enable our clients to quickly and seamlessly inspect and download historical data of their second-life battery systems.SELECT time_bucket(INTERVAL '15 min', time) AS bucket, + bms.iot_thing, + bms.iot_device, + bms.name, + bms.string, + bms.module, + bms.cell, + avg(bms.value_real) AS value_real, + last(bms.value_str, time) AS value_str +FROM public.bms +GROUP BY bucket, iot_thing, iot_device, name, string, module, cell;✨Editor’s Note:Here are three reasons you should upgrade to the new version of continuous aggregates.RoadmapWe are very proud and honored to recently have won the competitive call from theEIC Accelerator, led by the European Innovation Council! We’re now working towards industrializing and scaling our battery cloud technology.Advice & ResourcesI believe that getting started with a hands-on example is always a good way to evaluate something. You can try Timescale for free with a demo dataset to get acquainted with the service.So I recommend quickly spinning up a first TimescaleDBinstance and having fun playing around with the service.Also,there is very extensive documentation and tons of examples and tutorialsavailable on the website, which helps you quickly master Timescale! So make sure to have a look at the website.Anything else you'd like to add?Thanks to Timescale for this opportunity to share our story and our mission at Octave!Want to read more developer success stories?Sign up for our newsletterfor more Developer Q&As, technical articles, tips, and tutorials to do more with your data—delivered straight to your inbox twice a month.We’d like to thank Nicolas and all the folks at Octave for sharing how they’re leveraging continuous aggregates and Timescale’s compression powers to handle their millions of battery cell data points daily.We’re always keen to feature new community projects and stories on our blog. If you have a story or project you’d like to share, reach out on Slack (@Ana Tavares), and we’ll go from there.The open-source relational database for time-series and analytics.Try Timescale for free",https://www.timescale.com/blog/high-compression-ratio-and-speedy-queries-on-historical-data-while-revolutionizing-the-battery-market/ +How Density Manages Large Real Estate Portfolios Using TimescaleDB,"This is an installment of our “Community Member Spotlight” series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition, part of the team atDensity—Shane Steidley, director of software, andBrock Friedrich, software engineer—explain how they are using TimescaleDB to query data from IoT devices to help companies with substantial real estate footprints make data-driven decisions to optimize their real estate usage while reducing carbon emissions.About the CompanyShane:Density builds technology that helps companies understand how people use physical space. Founded in 2014, our platform provides workplace analytics enabled by custom-built sensors which capture the complexities of how people move through and use space without invading privacy. These sensors feed raw data to Density’s analytics platform—a fast, data-rich system that provides comprehensive insights into how spaces are used, allowing companies to easily compare a space's performance against its intended purpose, another space, or portfolio benchmarks.The platform can reveal if employees are choosing focus space or collaborative space, which floors are the most popular (and why), and how one office’s occupancy rate compares to others in a portfolio or against industry benchmarks. Today, our technology is helping inform decisions for the workplaces of some of the largest companies in the world, spanning 32 countries, with more than 1.25 billion square feet under management. Our growing list of customers ranges from Fortune 100 to high-growth tech companies that see the value in understanding the performance of their office spaces to lower operational costs, improve employee experience, and reduce their carbon footprint.Our ultimate mission is to measure and improve humanity’s footprint on the world—optimizing commercial real estate portfolios is just the first step. Thirty-nine percent of CO2  emissions are directly or indirectly linked to real estate construction, so if we can help companies measure and optimize their use of real estate, we can have an outsized impact on the different issues that are impacting climate.A tweet from the Density Team on Earth DayWith Density, customers can understand how their space is used and right-size it. When we started, we needed to sell the problem and then sell our solution. Post-COVID, everybody understands the problem and the data that they could have access to, and how Density can provide value.Brock: Density also provides that value while maintaining the anonymity of each person that walks underneath our sensors.Shane: Privacy is very important to us; it’s one of our core tenets. And because of this, we don’t use cameras—we use other sensor types, namely infrared and radar, that don’t capture any personally identifiable information (PII).About the TeamShane: Density was born out of a web development consultancy. The consultancy founders got tired of walking to their favorite coffee shop during the cold, harsh winter in upstate New York only to find a long line. This unpleasant experience gave them the idea to create an occupancy sensor.As you might expect, given the company’s origin, the Density engineering team started with 4-5 engineers with a heavy web development background. We have since grown our engineering team into a team capable of performing what I call true full-stack development. We have an electrical engineering team that designs our hardware and lays out the boards, and our devices are manufactured in Syracuse, NY, where we also have an R&D lab. Our team includes experts in mechanical design and embedded software, and we now have a backend system with multiple pipelines (whose data typically ends up in TimescaleDB) and multiple React-based frontend applications.Brock: As a team, there are many different daily routines. It’s a mix of running production systems like Shane mentioned, live data pipelines, running historical analysis, or writing new features.Shane:And we’re hiring! If you are interested in joining the Density Team,please check out our jobs page!About the ProjectShane: We use different types of data at different stages. Our entry sensors generate infrared data that is very dense. It’s not feasible to send this dense data to the cloud,  so we have to do all processing and machine learning at the edge (on the device).  The results of this edge processing are +1/-1 counts that can be aggregated in our pipelines and TimescaleDB.Our radar-based sensors generate sparse data, so we do less processing at the edge and more processing in the backend. That data has to go through a pipeline and get transformed before it makes sense to insert it into TimescaleDB and perform any aggregations. TimescaleDB really provides value when it comes to querying the data, allowing customers to slice the data up in multiple dimensions. That is something that just wasn’t easy before we started using TimescaleDB.Brock:Yeah, to tack onto that, in TimescaleDB we store counts of people in spaces over time, and a wealth of derivative metrics off of those people counts, things like how long were people in spaces, not specific people, but how long was what we call dwell time?How long was this space used continuously, or what was its usage compared to similar space types throughout the day?One of the parts I think Shane was trying to highlight is that there's a real dynamism to how those queries can take shape in that they can be sliced and diced and composed in a more or less arbitrary number of ways. And TimescaleDB’s flexibility—it is built on a relational model at the end of the day—and its ability to do the partitioning under the covers and thehypertablesto let us access all of the data back in time very quickly is the magic combination that we were looking for in a time-series database to meet our use case.Choosing (and Using!) TimescaleDBBrock: I found out about Timescale back in a previous life, circa early 2019. I worked for an oil and gas firm and was doing a lot of research into time-series storage and the options available in that space because we were developing a data software solution for supervisory control and data acquisition. Essentially, it boiled down to real-time remote sensing and monitoring for industrial controls.During that research, I happened across TimescaleDB, which was still pretty early on. It was right about the timecontinuous aggregatescame out, which was one of the big selling points for me. So when I came to Density, they were just beginning to evaluate options for time-series databases for our applications. I was able to contribute my previous experience with TimescaleDB to that process. As we evaluated the options, TimescaleDB came out as the clear winner, and the rest is history.✨Editor’s Note:Read our documentationto learn more about continuous aggregates.Shane:As an IoT company, we’ve had sensors since the very beginning. And when we started, a lot of the engineering staff came from a web consultancy, so I don’t think we did realize from the beginning thatwe needed a time-series database or even quite knew what a time-series database was.“I think moving forward, TimescaleDB, at least in my opinion, is just going to be the default time-series database”Shane SteidleyWhat seems obvious to us now wasn’t obvious back in 2017, when we built an entire time-series database using stored procedures and vanilla PostgreSQL. It was pretty cool when we finally brought over TimescaleDB. We were like: “Oh, it just does all this for us! Look, there’s a bucket function, and it’s going to return the right size buckets that you need. And it handles all of the weirdness of time zones and daylight savings time.” And you can ingest all this data, whereas before, because of how we were using PostgreSQL, we would struggle with ingesting the amount of data we needed to ingest.I think moving forward, TimescaleDB, at least in my opinion, is just going to be the default time-series database. I think you're just going to have to have a reason not to use TimescaleDB because it's so simple and fits in with PostgreSQL.Brock:The top factors that led us to TimescaleDB specifically were its tolerance for high insert rates. It's just blown away all of our expectations, even based on benchmarks that we were able to see online at the time. It's built on top of PostgreSQL, as Shane talked about earlier. There's very little in the way of a special TimescaleDB domain-specific language, and it's operationally very familiar to operating vanilla PostgreSQL.Both of those were huge wins, just both operationally and development-wise. We always have the ability to fall back on core PostgreSQL principles or relational data models as we need to, but we also have the capability to dive deeper into TimescaleDB’s specific functionality to meet those big time-series use cases.“I get the most pride in doing plain SQL against TimescaleDB, getting time-series results at scale, and not having to do a bunch of backflips”Brock FriedrichShane:We use TimescaleDB like a time-series database should be used. We use it not just for the continuous aggregates of count data and other metrics that Brock's touched on, but the bucketing, the things that are so complicated if you push them to application code. When handled in TimescaleDB, it just gives you the right data the way that you want it. There are obviously some edge cases, but 99 % of the time, TimescaleDB just does what you want it to do.Brock: What would we use if TimescaleDB didn't exist is one of those topics that I like not to think about because it gives me anxiety. There are plenty of other time-series database options, but none fit the cross-section of requirements that at least Density has in quite the manner that TimescaleDB does. So whenever somebody else asks me that question, like in passing, I just say, “Let's just pretend like that's not possible and go about our business.”I get really proud of querying against TimescaleDB whenever we run really simple queries, like selecting the data from one of our sensors for a day from six years ago, and we run that at scale, and it runs like it would run in a much smaller scale like we only had a few months of data. And that goes back to one of the things I was appreciating earlier, which is that chunk exclusion –– that ability to operate what would be these really large query plans for vanilla PostgreSQL, and trim them down to something that’s predictable and reasonable, and operates at relatively low latencies. So all that’s to say, I get the most pride in doing plain SQL against TimescaleDB, getting time-series results at scale, and not having to do a bunch of backflips./* This query yields space count aggregates at 10-minute resolution for a given set of spaces over a three-day period, + where each 10-minute bucket is represented in the output, even if that bucket contains no data.The query first + selects data from a sparse one-minute cagg and unions that data to a set of empty records, generated with the Postgres + generate_series function, then rolls up the unioned records into 10-minute aggregates. + The union against the set of empty records ensures that all 10-minute intervals are represented in the final results. + This step is necessary as the one-minute data is sparse, meaning a given 10-minute interval could contain no data, and + the time_bucket_gapfill function does not register that a bucket needs to be injected if no records exist within + an interval. + */ + +select und.space_id, + time_bucket('10m', und.inner_bucket) as bucket, + min(und.occupancy_min) as occupancy_min, + max(und.occupancy_max) as occupancy_max, + first(und.first_occupancy, und.inner_bucket) filter (where und.first_occupancy is not null) as first_occupancy, + last(und.last_occupancy, und.inner_bucket) filter (where und.last_occupancy is not null) as last_occupancy +from (select c1m.bucket as inner_bucket, + c1m.space_id as space_id, + c1m.occupancy_min as occupancy_min, + c1m.occupancy_max as occupancy_max, + c1m.first_occupancy as first_occupancy, + c1m.last_occupancy as last_occupancy + from cav_space_counts_1m c1m + where c1m.bucket between '2022-05-22 13:00:00+0000' and '2022-05-25 13:00:00+0000' + and c1m.space_id in (997969122178368367, 997969123637986180) + union + select time_bucket_gapfill('10m', generate_series, + '2022-05-22 13:00:00+0000', + '2022-05-25 13:00:00+0000') as inner_bucket, + space_id, + null as occupancy_min, + null as occupancy_max, + null as first_occupancy, + null as last_occupancy + from generate_series('2022-05-22 13:00:00+0000'::timestamptz, + '2022-05-25 13:00:00+0000'::timestamptz, + '10m') + join unnest(array [997969122178368367, 997969123637986180]) as space_id on true) as und +group by und.space_id, bucket +order by bucket;✨Editor’s Note:Learn more about chunk exclusionin this blog post about how we fixed long-running now ( ) queries (and made them lightning fast), orread our docs for more info on hypertables and chunks.Current Deployment and Future PlansBrock:For data visualization, we useTableauandGrafana.The primary languages we use that interact with TimescaleDB are Rust and Python. Bonus: big shout out to JetBrains for their database IDE,DataGrip. It is the best on the market by a wide margin.✨Editor’s Note:Slow Grafana performance?Learn how to fix using downsampling in one of our recent blog posts.We find TimescaleDB to be very simple to use, just flat-out, dead simple. Any TimescaleDB-specific semantics, all of the defaults always take you a long way toward meeting whatever use case you're setting out to achieve. The narrative and API documentation online is first class, in my opinion.But maybe the most telling point is that there’s very little shock value whenever you’re discovering new feature value or features within TimescaleDB. And by shock value, I mean whenever I discover something like a continuous aggregate, for example, it operates conceptually almost identically to how vanilla PostgreSQL materialized view operates, but there’s extra pizazz on top that TimescaleDB does to meet the real-time component of the materialized view, refresh in the background, and all that.So I don't really want to undersell whatTimescaleDB is doing under the covers to make the magic happen. But, from an end perspective, coming from a PostgreSQL background, many of the features align conceptually with what I would expect if I was just writing something against the vanilla PostgreSQL.RoadmapShane:When we started, we threw everything at TimescaleDB, and now we’re being more responsible users of TimescaleDB. We’re at that sweet spot within TimescaleDB where it’s found product-market fit within Density.Brock:It’s hard to name my favorite TimescaleDB feature, but continuous aggregates have been a game-changer in a variety of different ways. Early on, whenever we first onboarded to TimescaleDB and deployed, it made development significantly faster, and we could just offload a lot of decision logic and complexity around time zone handling and bucketing (that’s a big one) to TimescaleDB and let it handle that complexity for us.Continuous aggregates come into play in that we were able to roll up multiple resolutions of our sensor account data, our people count data, and make that available in a much more efficient way with little-to-no effort so far as the code that we actually had to write to deliver those efficiencies.Continuous aggregates are becoming less important for us now than they were in our previous usage, just because as Shane was talking about earlier on, we're growing to such a size, and our use cases are becoming so complex that we're wanting to move to more the ETL (extract, transform, load) type of processing out of the database. So we're not monopolizing database resources to do some of those computations and move them upstream of the database into processing pipelines and still take advantage of continuous aggregates but to a lesser degree. We're doing less of the mathematical stuff in the database, but we're still using continuous aggregates to roll up high-resolution data to lower resolutions.Advice & ResourcesBrock:If I had to recommend resources, the first would probably be theTimescale blog. It’s been historically pretty informative over the years about the internals, like what’s happening in TimescaleDB underpinning a specific feature. One that I remember specifically is explaining thevarious compression algorithms in play for different data types within PostgreSQL. Being able to distill that knowledge down to a blog article that I could consume and then assimilate into my mental model of what was going on under the covers of the technology I was using has been helpful repeatedly.The advice that I would give for building a scalable database or a strategy around that is that when designing for an analytic workload specifically, don't direct any read load to the master or in standby notes. Always use a read replica for enough reasons that we probably don't have enough time to talk about here.The primary determinant of how efficient and scalable your solutions are going to be boils down to how many rows your queries have to touch for any given type of query you submit. Touching in that context includes both the scanning of index tuples and heap access for the rows, the end of the indexed contents of the rows, so be smart with your indexes and only index what you need and design towards the end of needing as few indexes as possible, because those are how you reduce that overhead that your database has to work through to fulfill a particular request or query.Shane: So my advice, at least for an IoT company, is to consider your real-time use cases and your historical use cases and consider them separately. What we found out is we treated everything the same. Everything went through the same pipeline, and it was just queries that were different. When you're using TimescaleDB—and really any architecture—it's extremely useful to consider those use cases separately and architect them separately. They have different requirements. If you try to shoehorn all data, in real time, into any time-series database, whether it's something awesome like TimescaleDB or something else, it's going to cause problems and it's not going to scale very well. You can do a lot more by separating historical and real-time use cases.We’d like to thank Shane, Brock, and all the folks at Density for sharing their experience with TimescaleDB in measuring and optimizing real estate usage.We’re always keen to feature new community projects and stories on our blog. If you have a story or project you’d like to share, reach out on Slack (@Ana Tavares), and we’ll go from there.The open-source relational database for time-series and analytics.Try Timescale for free",https://www.timescale.com/blog/density-measures-large-real-estate-portfolios-using-timescaledb/ +How METER Group Brings a Data-Driven Approach to the Cannabis Production Industry,"This is an installment of our “Community Member Spotlight” series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition,Paolo Bergantino, Director of Software for the Horticulture business unit at METER Group, joins us to share how they make data accessible to their customers so that they can maximize their cannabis yield and increase efficiency and consistency between grows.AROYAis the leading cannabis production platform servicing the U.S. market today. AROYA is part ofMETER Group, a scientific instrumentation company with 30+ years of expertise in developing sensors for the agriculture and food industries. We have taken this technical expertise and applied it to the cannabis market, developing a platform that allows growers to grow more efficiently and increase their yields – and to do so consistently and at scale.About the teamMy name isPaolo Bergantino. I have about 15 years of experience developing web applications in various stacks, and I have spent the last four here at METER Group. Currently, I am the Director of Software for the Horticulture business unit, which is in charge of the development and infrastructure of the AROYA software platform. My direct team consists of about ten engineers, 3 QA engineers, and a UI/UX Designer. (We’re also hiring!)About the projectAROYA is built as a React Single-Page App (SPA) that communicates with a Django/DRF back-end. In addition to usingTimescale Cloudfor our database, we use AWS services such as EC2+ELB for our app and workers,ElastiCache for Redis,S3for various tasks,AWS IoT/SQSfor handling packets from our sensors, and some other services here and there.✨Editor’s Note:""Timescale Cloud"" is known as ""Managed Service for TimescaleDB"" as of September 2021.As I previously mentioned, AROYA was born out of our desire to build a system that leveraged our superior sensor technology in an industry that needed such a system. Cannabis worked out great in this respect, as the current legalization movement throughout the U.S. has resulted in a lot of disruption in the space.The more we spoke to growers, the more we were struck by how much mythology there was in growing cannabis and by how little science was being applied by relatively large operations. As a company with deeply scientific roots, we found it to be a perfect match and an area where we could bring some of our knowledge to the forefront.We ultimately believe the only survivors in the space are those who can use data-driven approaches to their cultivation to maximize their yield and increase efficiency and consistency between grows.As part of the AROYA platform, we developed a wireless module (called a “nose”) that could be attached to our sensors. Using Bluetooth Low Energy (BLE) for low power consumption and attaching a solar panel to take advantage of the lights in a grow room, the module can run indefinitely without charging.The AROYA nose in its natural habitat (aroya.ioInstagram)The most critical sensor we attach to this nose is called the TEROS 12, the three-pronged sensor pictured below. It can be installed into any growing medium (like rockwool, coconut coir, soil, or mixes like perlite, pumice, or peat moss) and give insights into the temperature, water content (WC), and electrical conductivity (EC) of the medium. Without getting too into the weeds (pardon the pun), WC and EC, in particular, are crucial in helping growers make informed irrigation decisions that will steer the plants into the right state and ultimately maximize their yield potential.The AROYA nose with a connected TEROS 12 sensor (aroya.ioInstagram)We also have an ATMOS 14 sensor for measuring the climate in the rooms anda whole suite of sensorsfor other use cases.An AROYA repeater with an ATMOS 14 sensor for measuring the climate (aroya.ioInstagram)AROYA’s core competency is collecting this data - e.g., EC, WC, soil temp, air temperature, etc. - and serving it to our clients in real-time (or, at least “real-time” for our purposes, as our typical sampling interval is 3 minutes).Growers typically split their growing rooms into irrigation zones. We encourage them to install statistically significant amounts of sensors into each room and its zones, so that AROYA gives them good and actionable feedback on the state of their room.  For example, there’s a concept in cultivation called ""crop steering"" that basically says that if you stress the plant in just the right way,  you can ""steer"" it into generative or vegetative states at will and drive it to squeeze every last bit of flower. How and when you do this is crucial to doing it properly.Our data allows growers to dial in their irrigation strategy, so they can hit their target ""dryback"" for the plant (this is more or less the difference between the water content at the end of irrigation until the next irrigation event). Optimizing dryback is one of the biggest factors in making crop steering work, and it's basically impossible to do well without good data. (We provide lots of other data that helps growers make decisions, but this is one of the most important ones.)Graph showing electrical conductivity (EC) and water content (WC) data related to a room in AROYA.This can be even more important when multiple cultivars (“strains”) of cannabis are grown in the same room, as the differences between two cultivars regarding their needs and expectations can be pretty dramatic. For those unfamiliar with the field, an example might be that different cultivars ""drink"" water differently, and thus must be irrigated differently to achieve maximum yields. There are also ""stretchy"" cultivars that grow taller faster than ""stocky"" ones, and this also affects how they interact with the environment. AROYA not only helps in terms of sensing, but in documenting and helping understand these differences to improve future runs.The most important thing from collecting all this data is making it accessible to users via graphs and visualizations in an intuitive, reliable, and accurate way, so they can make informed decisions about their cultivation.We also have alerts and other logic that we apply to incoming data. These visualizations and business logic can happen at the sensor level, at the zone level, at the room level, or sometimes even at the facility level.A typical use case with AROYA might be that a user logs in to their dashboard to view sensor data for a room. Initially, they view charts aggregated to the zone level, but they may decide to dig deeper into a particular zone and view the individual sensors that make up that zone. Or, vice versa, they may want to pull out and view data averaged all the way up to the room. So, as we designed our solution, we needed to ensure we could get to (and provide) the data at the right aggregation level quickly.Choosing and using TimescaleDBThe initial solutionDuring the days of our closed alpha and beta of AROYA with early trial accounts (late 2017 through our official launch December 2019), the amount of data coming into the system was not significant. Our nose was still being developed (and hardware development is nice and slow), so we had to make due with some legacy data loggers that METER also produces. These data loggers only sampled every 5 minutes and, at best, reported every 15 minutes. We usedAWS’ RDS Aurora PostgreSQLservice and cobbled together a set of triggers and functions that partitioned our main readings table by each client facility – but no more. Because we have so many sensor models and data types we can collect, I chose to use anarrow data modelfor our main readings table.This overall setup worked well enough at first, but as we progressed from alpha to beta and our customer base grew, it became increasingly clear that it was not a long-term solution for our time series data needs. I could have expanded my self-managed system of triggers and functions and cobbled together additional partitions within a facility, but this did not seem ideal. There had to be a better way!I started looking into specific time-series solutions. I am a bit of a home automation aficionado, and I was already familiar with InfluxDB – butI didn’t wish to split my relational data and readings data or teach my team a new query language.TimescaleDB, being built on top of PostgreSQL, initially drew my attention: it “just worked” in every respect, I could expect it to, and I could use the same tools I was used to for it.At this point, however, I had a few reservations about some non-technical aspects of hosting TimescaleDB that prevented me from going full steam ahead with it.✨Editor’s Note:For more comparisons and benchmarks, seehow TimescaleDB compares to InfluxDB, MongoDB, AWS Timestream, and other time-series database alternativeson various vectors, from performance and ecosystem to query language and beyond.Applying a band-aid and setting a goalBefore this point, if I am perfectly truthful, I did not have any serious requirements or standards about what I considered to be the adequate quality of service for our application. I had a bit of an “I know it when I see it” attitude towards the whole thing.When we had a potential client walk away during a demo due to a particularly slow loading graph, I knew that we had a problem on our hands and that we needed something really solid for the long term.Still, at the time, we also needed something to get us by until we could perform a thorough evaluation of the available solutions and build something around that. At this point, I decided to stand aRedis clusterbetween RDS and our application which stored the last 30 days of sensor data (at all the aggregation levels required) as a Pandas dataframe. Any chart request coming in for data within the first 30 days - which accounted for something like 90% of our requests - would simply hit Redis. Anything longer would cobble together the answer using both Redis and querying the database.Performance for the 90% use case was adequate, but it was getting increasingly dreadful as more and more historical data piled up for anything that hit the database.At this point, I set the goalposts for what our new solution would need to meet:Any chart request, which is an integral part of AROYA, needs to take less than one second for the API to serve.The research and the first solutionWe looked at other databases at this point, InfluxDB was looked at again, we got in a beta of Timestream for AWS and looked at that. We even considered going NoSQL for the whole thing. We ran tests and benchmarks, created matrices of pros and cons, estimated costs, the whole shebang.Nothing compared favorably to what we were able to achieve with TimescaleDB.Ultimately,the feature that really caught our attention wascontinuous aggregatesin TimescaleDB. The way our logic works, more or less, we see the timeframe that the user is requesting and sample our data accordingly. In other words, if a user fetches three months worth of data, we would not send three months worth of raw data to be graphed to the front-end. Instead, we would bucket our data into appropriately sized buckets that would give us the right amount of data we want to display in the interface.Although it would require quite a few views, if we created continuous aggregates for every aggregation level and bucket size we cared about, and then directly queried the right aggregation/bucket combination (depending on the parameters requested), that should do it, right? The answer was a resoundingyes.The performance we were able to achieve using these views shattered the competition.Although I admit we were kind of “cheating” by precalculating the data, the point is that we could easily do it. Not only this, but when we ran load tests on our proposed infrastructure, we were blown away by how much more traffic we could support without any service degradation. We could also eliminate all the complicated infrastructure that our Redis layer required, which was quite a load off (literally and figuratively).Grafana dashboard for the internal team showing app server load average before and after deployment of initial TimescaleDB implementation.The Achilles’ heel of this solution, an astute reader may already notice, is that we were paying for this performance in disk space.I initially brushed this off as fair trade and moved on with my life.We foundTimescaleDB’s compressionto be as good as advertised, which gave us 90%+ space savings in our underlying hypertable,but our sizable collection of uncompressed continuous aggregates grew by the day (keep reading to learn why this is a “but”...).✨Editor’s Note: We’ve put together resources aboutcontinuous aggregatesandcompressionto help you get started.The “final” solutionAROYA has been on an amazing trajectory since launch, and our growth was evident in the months before and after we deployed our initial TimescaleDB implementation. Thousands upon thousands of sensors hitting the field was great for business – but bad for our disk space.Our monitoring told a good story of how long our chart requests were taking, as 95%+ of them were under 1 second, and virtually all were under 2 seconds. Still, within a few months of deployment, we needed to upgrade tiers in Timescale Cloud solely to keep up with our disk usage.✨Editor’s Note:""Timescale Cloud"" is known as ""Managed Service for TimescaleDB"" as of September 2021.We had adequate computing resources for our load, but 1 TB was no longer enough, so we doubled our total instance size to get another 1 TB. While everything was running smoothly, I felt a dark cloud overhead as our continuous aggregates grew and grew in size.The clock was ticking, and before we knew it, we were coming up on 2 TB of readings. So, we had to take action.We had attended a webinar hosted by Timescale and heard someone make a relatively off-hand comment about rolling their own compression for continuous aggregates. This planted a seed that was all we needed to get going.The plan was thus: first, after consulting with Timescale staff, we were alerted we had way too many bucket sizes. We could useTimescaleDB’s time_bucket functionsto do some of this on the fly without affecting performance or keeping as many continuous aggregates. That was an easy win.Next, we split each of our current continuous aggregates into three separate components:First, we kept the original continuous aggregate.Then, we leveraged theTimescaleDB job schedulerto move and compress chunks from the original continuous aggregate into ahypertablefor that specific bucket/aggregation view.Finally, we created a plain old view that UNIONed the two and made it a transparent change for our application.This allowed us to compress everything but the last week of all of our continuous aggregates, and the results were as good as we could have hoped for.The 1.83TB database was compressed into 700 GB.We were able to take our ~1.83 TB database and compress it down to 700 GB. Not only that, about 300 GB of that is log data that’s unrelated to our main reading pipeline.We will be migrating out this data soon, which gives us a vast amount of room to grow. (We think we can even move back the 1TB plan at this point, but have to test to ensure that compute doesn’t become an issue.) The rate of incrementation in disk usage was also massively slowed, which bodes well for this solution in the long term. What’s more, there was virtually no penalty for doing this in terms of performance for any of the metrics we monitor.Our monitoring shows how long sampling of chart requests takes to serve.Ultimately TimescaleDB had wins across the board for my team.Performance was going to be the driving force behind whatever we went with, and TimescaleDB has delivered that in spades.Current deployment & future plansWe currently ingest billions of readings every month using TimescaleDB and couldn’t be happier.Our data ingest and charting capabilities are two of the essential aspects of AROYA’s infrastructure.While the road to get here has been a huge learning experience, our current infrastructure is straightforward and performant, and we’ve been able to rely on it to work as expected and to do the right thing. I am not sure I can pay a bigger compliment than that.The current architecture diagramWe’ve recently gone live with our AROYA Analytics release, which is building upon what we’ve done to deliver deeper insights into the environment and the operations at the facilities using our service. Every step of the way, it’s been straightforward (and performant!) to calculate the metrics we need with our TimescaleDB setup.Getting started advice & resourcesI think it’s worth mentioning that there were many trade-offs and requirements that guided me to where AROYA is today with our use of TimescaleDB. Ultimately, my story is simply the set of decisions that led me to where we are now and people’s mileage may vary depending on their requirements.I am sure that the set of functionality offered means that, with a little bit of creativity, TimescaleDB can work for just about any time-series use case I can think of.The exercise we went through when iterating from our initial non-Timescale solution to Timescale was crucial to get me to be comfortable with that migration. Moving such a critical part of my infrastructure was scary, and it isstillscary.Monitoring everything you can, having redundancies, and being vigilant about any unexpected activity - even if it’s not something that may trigger an error - has helped us stay out of trouble.We have a bigGrafanadashboard on a TV in our office that displays various metrics and multiple times we’ve seen something odd and uncovered an issue that could have festered into something much more if we hadn’t dug into it right away. Finally, diligent load testing of the infrastructure and staging runs of any significant modifications have made our deployments a lot less stressful, since they instill quite a bit of confidence.✨ Editor’s Note:Check outGrafana 101 video seriesandGrafana tutorialsto learn everything from building awesome, interactive visualizations to setting up custom alerts, sharing dashboards with teammates, and solving common issues.I would like to give a big shout-out to Neil Parker, who is my right-hand man in anything relating to AROYA infrastructure and did virtually all of the actual work in getting many of these things set up and running. I would also like to thankMike FreedmanandPriscila Fletcherfrom Timescale, who have given us a great bit of time and information and helped us in our journey with TimescaleDB.We’d like to give a big thank you to Paolo and everyone at AROYA for sharing their story, as well as for their efforts to help transform the cannabis production industry, equipping growers with the data they need to improve their crops, make informed decisions, and beyond.We’re always keen to feature new community projects and stories on our blog. If you have a story or project you’d like to share, reach out on Slack (@Lucie Šimečková), and we’ll go from there.Additionally, if you’re looking for more ways to get involved and show your expertise, check out theTimescale Heroesprogram.The open-source relational database for time-series and analytics.Try Timescale for free",https://www.timescale.com/blog/how-meter-group-brings-a-data-driven-approach-to-the-cannabis-production-industry/ +How Flowkey Scaled Its AWS Redshift Data Warehouse With Timescale,"This is an installment of our “Community Member Spotlight” series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition, Nikola Chochkov, lead data scientist atflowkey, shares how his team migrated from Amazon Redshift to TimescaleDB and is driving rapid growth and experimentation by analyzing the users’ behavioral data using TimescaleDB along with Metabase or Jupyter/Rmarkedown Notebooks.About the CompanyFlowkeyis a leading app for learning to play the piano, with over 10 million registered users in more than 100 countries. The company was launched in 2015 and quickly became one of the global leaders in its category.Here is a video from our founder, Jonas Gößling, explaining how it all started.About the TeamWe are a team of around 40 people, with more than 10 of us working in Data and Engineering.We have a Marketing team (responsible for user acquisition, customer relationship management, collaborations, etc.), a Creative team (building all of our visual content, our design, and advertising), Course and Song teams (creating our in-app learning content—e.g., the courses series and the piano renditions of the songs in our library). We also have Customer Support, Product, Engineering, Data, and Operations teams.Many of us take on more than one role, and for many of us, flowkey has been the first significant career step. Not for me personally, though, but still.🙂About the ProjectThe flowkey appWe are a business that depends heavily on analytics for business decision-making. Our experimentation—a major driver of our growth—is powered by the data analysis of user behavioral data (app usage). This data consists of user events, which we track from our product.“We realized we needed to scale our previous Amazon Redshift data warehouse model into a more suitable solution for categorical, time-series data analysis. We found out about TimescaleDB from being part of the PostgreSQL community”For example, a Learn Session starts at a given timestamp for a user, and we record this event.✨Editor’s Note:Time-series data is a sequence of data points collected over time intervals, allowing us to track changes over time. To learn more, readWhat Is Time-Series Data (With Examples).When we launch a new feature, we typically A/B test it and evaluate its impact based on measuring key performance indicators (KPIs), which are predefined for the test. Every day, we receive millions of incoming events, tracked around our product, in the format:(user_id, event, timestamp, properties)Thepropertiesfield is a schemaless object that depends on the particular event type that we track from the app. For example, a Learn Session event would have asongIdand alearnMode, while a Subscription Offer interaction event would have aproductId, etc.Choosing (and Using!) TimescaleDBWith time, we realized we needed to scale our previous Amazon Redshift data warehouse model into a more suitable solution for categorical, time-series data analysis.We found out about TimescaleDB from being part of the PostgreSQL community, and when we were faced with the problem at hand, it was a natural way forward for us.After doing our research, we realized that TimescaleDB suited our needs perfectly. Here's a list of our arguments:Our data analysts are well-versed in SQL and PostgreSQL.The events’ raw data is available in a PostgreSQL schema alongside all our other business intelligence data.TimescaleDB is an actively developed, open-source solution. It allowed us to deploy it on our self-hosted PostgreSQL data warehouse.A TimescaleDB hypertable model would allow us to accommodate the schemaless JSON structure of our events.select event, platform, time, jsonb_pretty(data) from events_today limit 5; + event | platform | time | jsonb_pretty +------------------------------+----------+-------------------------+--------------------------------------------------------- + SONG_OPEN_UI_ELEMENT_CLICKED | ios | 2022-11-03 00:00:00.034 | { + + | | | ""songId"": ""E2kCpqHCwB2xYf7LL"", + + | | | ""context"": ""song-cover"", + + | | | ""listIndex"": 6, + + | | | ""routeName"": ""Songs"", + + | | | ""currentTab"": ""SongsTab"" + + | | | } + ONBOARDING_QUESTION_VIEWED | web | 2022-11-03 00:00:00.145 | { + + | | | ""context"": ""preferredCategories"" + + | | | } + SONG_PLAYER_SCROLLED | ios | 2022-11-03 00:00:00.157 | { + + | | | ""level"": 1, + + | | | ""songId"": ""Lui27TDJ4vZBevxzc"", + + | | | ""direction"": ""backwards"", + + | | | ""songGroupId"": ""vhisAJBkPwvn6tdoq"", + + | | | ""loopBoundsMs"": null, + + | | | ""finalPositionMs"": 0, + + | | | ""initialPositionMs"": 24751 + + | | | } + AB_TEST_VARIANT_ASSIGNED | ios | 2022-11-03 00:00:00.249 | { + + | | | ""variant"": ""CONTROL"", + + | | | ""experimentName"": ""player_onboarding_video_09_2022""+ + | | | } + ONBOARDING_ANSWER_SUBMITTED | web | 2022-11-03 00:00:00.314 | { + + | | | ""answers"": [ + + | | | ""dont-know"" + + | | | ], + + | | | ""context"": ""learningGoals"" + + | | | }TimescaleDB offers a great set of SQL analytical functions.TimescaleDB offers continuous aggregates, which integrate very well with how we do analytics and real-time data monitoring.Data migration and update (e.g., renaming of events or JSON properties) are available.✨Editor’s Note:Faster queries, reduced storage costs, and greater flexibility. Learn more abouthierarchical continuous aggregates.“We use compression, which has cut our disk space usage by 28 percent”Current Deployment & Future PlansOur data warehouse is deployed on self-hosted machines and works well for us. We employ other PostgreSQL extensions that aren't currently supported by the Timescale cloud offering, which was important to us when we launched. These includeMongo FDWandAdjust’siStore extensionfor cohort analysis data storage.✨Editor's Note:We're working on expanding the catalog of PostgreSQL extensions offered in Timescale's cloud offering. Stay tuned!We employ TimescaleDB's awesome data retention (automated through a user action), and thanks to that, our most recent (and more relevant to our analytics) data is available to us on SSD chunks, while historical data is kept on HDDs.Furthermore, we use compression, which has cut our disk space usage by 28 percent. Our data contains JSONB fields, which are difficult to be compressed. We are pretty happy with it, though, so it's a win. 🙂When we do business analytics, we employMetabaseorJupyter/Rmarkdown Notebooksto derive insights. We established a workflow of writing custom continuous aggregates for the duration of experiments, which are then easy to keep and fully deploy or discard, depending on the decision made for the experiment.✨Editor's Note:Learn how toconnect to Timescale from a Jupyter notebookfor better data querying, cleaning, and analysis.This allows us to iterate our experiments quickly and increase the bandwidth of change, which we can successfully bring to the product.RoadmapWe just finished migrating our setup to a more powerful cluster of machines, which allowed us to benefit from the data tiering options mentioned above. Right now, our system is scalable, and we don't expect any major upgrades to this system to come up soon.Advice & ResourcesWe recommend theTimescale documentationas well as theSlack Community.Want more insider tips?Sign up for our newsletterfor more Developer Q&As, technical articles, and tutorials to help you do more with your data. We deliver it straight to your inbox twice a month.We’d like to thank Nikola and all of the folks at flowkey for sharing their story on how they’re improving their online piano lessons by analyzing millions of user events daily using TimescaleDB.We’re always keen to feature new community projects and stories on our blog. If you have a story or project you’d like to share, reach out on Slack (@Ana Tavares), and we’ll go from there.The open-source relational database for time-series and analytics.Try Timescale for free",https://www.timescale.com/blog/how-flowkey-solved-its-time-series-data-problem-by-migrating-from-aws-redshift-to-timescale/ +How United Manufacturing Hub Is Introducing Open Source to Manufacturing and Using Time-Series Data for Predictive Maintenance,"This is an installment of our “Community Member Spotlight” series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition, we speak with Jeremy Theocharis, co-founder and CTO ofUnited Manufacturing Hub, about how they are bringing open source to the world of manufacturing by combining information and operational tools and technologies in an open-source Helm chart for Kubernetes.The team uses TimescaleDB to store both relational and time-series data coming fromMQTTandKafkaand then visualizes it usingGrafanaand their own REST API. With the data, they can prevent and predict maintenance issues, analyze and optimize production losses such as changeovers or micro-stops and reduce resource consumption, and much more.About the CompanyWe believe that open source is the future: we live in a world where 100 percent of all supercomputers useLinux, 95 percent of all public cloud providers useKubernetes, and the Mars Helicopter, Ingenuity, usesf-prime.We are confident that open source will also find its place in manufacturing, and we were among the first to use it in this field, making us the experts.Our story goes back to 2016, when we had the pain of integrating and maintaining various costly Industrial IoT solutions (IIoT). Existing vendors focused only on the end result, which resulted in large-scale IIoT projects failing because they did not address the real challenges.After suffering for years, in 2021, we were fed up and decided to do something about it. Since then, all our products and services have been focused on efficiently integrating and operating large-scale IIoT infrastructures.About the TeamWe are a team of 11 people with different backgrounds, from mechanical engineering to business administration to cybersecurity.Me, personally? I am an IT nerd that learned programming at 14 and then studied Mechanical Engineering and Business Administration atRWTH Aachenin Germany. I did my internship first as a technical project manager in theDigital Capability Center Aachen, where I was responsible for the technical integration of various Industrial IoT solutions. I later did another internship at McKinsey & Company in Singapore and decided I needed a solid technical part in my future profession.I started my own business as a system integrator in the Industrial IoT sector, metChristianandAlex, and founded theUMH Systems GmbHtogether in 2021.About the ProjectUnited Manufacturing Hub's architectureTheUnited Manufacturing Hub(UMH) is an open-source Helm chart for Kubernetes. It combines state-of-the-art information and operational tools (IT/OT) and technologies, bringing them into the engineer's hands.I assume most of the readers here will come from traditional IT, so let me explain the world of manufacturing, especially OT,  first, as it will help you understand our usage of TimescaleDB.OT means Operational Technology. OT is the hardware and software to manage, monitor, and control industrial operations like production machines. Due to different requirements, OT has its own ecosystems.OT comes originally from the field of electronics, and this background is still evident today. For example, the computer that controls the production machine is called aPLC (Programmable Logic Controller). It runs some peculiar flavors of Windows and Linux, which are completely hidden from the system's programmer. The programmer of the PLC will use programming languages likeladder logic, which is like drawing electrical schematics.Because OT is an entirely different world, it is pretty hard to integrate it with the traditional IT world. During system integration, we felt all these pains and decided to develop a tool that allows an easy combination between both fields—the United Manufacturing Hub (UMH).With UMH, one can now easily extract data from the shopfloor, from the PLC tovarious IO-link compatible or analog (4-20mA / 0-10V) sensorstobarcodereaderand different manufacturing execution or enterprise resource planning systems. Using aUnified Namespacebased onMQTTandKafka, the data is aggregated and can then be contextualized through tools likeNode-RED.From there on, the processed data is stored automatically in a TimescaleDB running either in the cloud or on-premise. To visualize the data, we useGrafanawith our ownREST APIfor manufacturing specific logics (also calledfactoryinsight) and our own Grafana data source.Choosing (and Using!) TimescaleDBManufacturing data is mainly relational: orders, products, production plans, and shifts are good examples of this. However, due to the growth of analytics, time-series data gets more and more important, e.g., for preventive or predictive maintenance.✨Editor's Note:Want to learn more about time-series forecasting?Check out this blog post.During one of those earlier system integrator projects, I realized that we needed a time-series database and a relational one.Due to the strong marketing, we chose InfluxDB at first. We did not scan vendors; we just started with whatever we knew from home automation. It sounded perfect: a beautiful user interface, continuous queries to process data, etc.We wanted to process raw sensor data, e.g., converting the distance of a light barrier into the machine status (running/not running). We also needed to store shifts, orders, and products and model the data. We did that via InfluxDB as well.The project was a nightmare. To be fair, InfluxDB was not its main driver, but it definitely was in the top five. Modeling relational data into a time-series database is a bad idea. The continuous queries were failing too often without even throwing error messages. The system could not handle the data buffered somewhere in the system and arrived late.“The stability of TimescaleDB allows us to focus on developing our microservices instead of running around fixing breaking API changes”Additionally, Flux as a query language is comparatively new and not as easy to work with as SQL. It quickly reached the point where we had to implement Python scripts to process data because Flux had reached its limits in use cases that would work seamlessly using SQL. So we felt like InfluxDB was putting unnecessary obstacles in our way.We even wrote a blog article aboutwhy we chose TimescaleDB over InfluxDB for the field of Industrial IoT.One of the main factors for us to use TimescaleDB as our database is the reliability and fault tolerance [the ability of a system to continue operating properly in case of failure] it offers to our stack. Since PostgreSQL has been in development for over 25 years, it is already very robust.“The reliability also manifests in the ease of horizontal scaling across multiple servers, which we are very interested in”The stability of TimescaleDB allows us to focus on developing our microservices instead of running around fixing breaking API changes, which newer, less stable databases like InfluxDB have shown to bring forth.The reliability also manifests in the ease of horizontal scaling across multiple servers, which we are very interested in.Being based on SQL was also a factor for us as SQL is the most well-known query language for relational databases—making working with it much easier. Almost any possible problem is already documented and solved somewhere on the Internet.Now, TimescaleDB is used in our stack as our main database to store the data coming in via MQTT/Kafka. We are storing (among others) machine states, product states, orders, worker shifts, and sensor data. Some are relational; some are time-series.If TimescaleDB didn’t exist, we probably would have to employ a PostgreSQL-based relational database system in addition to InfluxDB for time-series data. That would mean a lot of additional effort as we would have to manage two separate databases and the creation of datasets that span the two. This would also make the system more prone to errors as we would have to employ multiple querying languages.Current Deployment & Future PlansAs I mentioned, the United Manufacturing Hub is an open-source Helm chart for Kubernetes, which combines state-of-the-art IT/OT tools and technologies and brings them into the hands of the engineer.This allows us to standardize the IT/OT infrastructure across customers and makes the entire infrastructure easy to integrate and maintain.We typically deploy it on the edge and on-premise usingk3sas light Kubernetes. In the cloud,  we use managed Kubernetes services likeAKS. If the customer is scaling out and okay with using the cloud, we recommend services likeTimescale.We are using TimescaleDB with MQTT, Kafka, and Grafana. We have microservices to subscribe to the messages from the message brokers MQTT and Kafka and insert the data into TimescaleDB, as well as a microservice that reads out data and processes it before sending it to a Grafana plugin, which then allows for visualization.✨Editor’s Note:Learn how you can improve your Grafana performance using downsampling in TimescaleDB.RoadmapWe are currently positioning the United Manufacturing Hub with TimescaleDB as an open-source Historian. To achieve this, we are currently developing a user interface on top of the UMH so that OT engineers can use it and IT can still maintain it.We can recommend our blog articlefor a good comparison between Historians and Open-Source databases.Furthermore, we are developing a Management Console on top of the Helm chart, which makes a lot of the typical operation tasks (monitoring, logging, changing the configuration, etc.) easily accessible for the OT engineer, reducing the workload of maintaining all the edge devices, servers, and so on for the IT person.Advice & ResourcesFor manufacturing, we recommend the previously mentioned blog articles and the official TimescaleDB documentation. For data models and data ingestions from MQTT and Kafka into TimescaleDB, we can also recommend looking at the United Manufacturing Hub source code (or using it directly).One last piece of advice: I can strongly recommend the bookDesigning Data-Intensive Applicationsby Martin Kleppmann. It really helped me understand the fundamental principles in designing large-scale architectures so you can join discussions on the technical level. It explains the fundamental choices behind databases (from log-based approaches over WAL to binary trees) and the problems and solutions for distributed systems.We’d like to thank Jeremy Theocharis and the folks and United Manufacturing Hub for sharing their story on how they are using TimescaleDB to store their data, and why they chose us over other databases.We’re always keen to feature new community projects and stories on our blog. If you have a story or project you’d like to share, reach out on Slack (@Ana Tavares), and we’ll go from there.The open-source relational database for time-series and analytics.Try Timescale for free",https://www.timescale.com/blog/how-united-manufacturing-hub-is-introducing-open-source-to-manufacturing-and-using-time-series-data-for-predictive-maintenance/ +How Edeva Uses Continuous Aggregations and IoT to Build Smarter Cities,"This is an installment of our “Community Member Spotlight” series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition, John Eskilsson, software architect at Edeva, shares how his team collects huge amounts of data (mainly) from IoT devices to help build safer, smarter cities and leverages continuous aggregations for lightning-fast dashboards.Founded in 2009 in Linköping,Edevais a Swedish company that creates powerful solutions for smart cities. It offers managed services and complete systems, including hardware and software platforms.As the creators of the dynamic speed bumpActibumpand the smart city platformEdevaLive, the Edeva team works mainly for municipal, regional, and national road administrations, toll stations, environmental agencies, and law enforcement agencies.The team also solves many other problems, from obtaining large amounts of environmental data for decision-making to developing a screening scale to help law enforcement agencies assess vehicle overloading. The latter, for instance, decreased the amount of time needed to control each vehicle, speeding up traffic checks and allowing law enforcement agencies to control more vehicles.About the TeamTheteam at Edevais a small but impactful group of 11 working on everything from creating hardware IoT devices to analyzing time-series data and making it accessible to customers—and, sometimes—the public.As a software architect, I am in charge of building the best possible solution to receive, store, analyze, visualize, and share the customers’ event data. Our team then comes together to create solutions that work and that the customer actually wants.About the ProjectEdeva has created a dynamic speed bump calledActibumpand the smart city platformEdevaLive.The Actibump has been used in Sweden since 2010. Speeding vehicles activate a hatch in the road that lowers a few centimeters, creating an inverted speed bump. Providing good accessibility for public transportation, such as buses and emergency vehicles, the Actibump still ensures a safe speed for pedestrians and other vulnerable road users. It is also an environmentally friendly solution, helping decrease noise and emissions.The Actibump can be combined with the EdevaLive system, delivering valuable remote monitoring services and statistics to Edeva’s customers.Most of the data we collect is based on IoT devices:Traffic flow data: The Actibump measures the speed of oncoming traffic to decide if it needs to activate the speed bump or not. We capture radar data, among others, and send an event to our smart city platform EdevaLive. The data treats the oncoming traffic as a flow rather than a single vehicle to create the smoothest possible traffic flow.Vehicle classification data (weigh-in-motion): Actibump can be configured with weigh-in-motion. This means that the lid of the speed bump is equipped with a very sensitive high sampling scale. The scale records several weight measurements when the vehicle passes over the speed bump. This way, it can detect how many axles a vehicle has and classify the type of vehicle. At the same time, it fires off one event for each axle with the scale fingerprint so we can analyze if the weight measurements are correct.Vehicle classification data (radar): If we want to classify vehicles in places where we do not yet have an Actibump installed, we can introduce a radar that can classify vehicle types. A roadside server controls the radar, gathers its data, and pushes it to EdevaLive.Bike and pedestrian data: We use cameras installed above a pedestrian and cycle path. The camera can detect and count pedestrians and bicycles passing in both directions. We push this data to EdevaLive for analysis.Number plate data:We can use a camera to detect the number plate of a vehicle. This way, we can control devices like gates to open automatically. It can also be used to look up the amount of electric vs. petrol or diesel vehicles passing the camera or determine if a specific vehicle exceeds the cargo weight limit.Gyroscopic data: We offer a gyroscopic sensor that can gather data for acceleration in all different planes. This device generates a lot of data that can be uploaded to EdevaLive in batches or as a stream (if the vehicle has an Internet connection). This data is GPS-tagged and can be used to calculate jerk to provide indications on working conditions to a bus driver, for instance. The data can also be used to calculate the wear and tear of vehicles and many other things.Environmental data: It is important to monitor environmental data in a smart city platform. This is why we use small portable devices that can measure the occurrence of different particle sizes in the air. It can also measure CO2 and other gasses. On top of that, it measures the usual things like temperature, wind speed, etc. All this data is pushed to EdevaLive.Alarm data: Our IoT devices and roadside servers can send alarm information if a sensor or other parts malfunction. All this data comes to EdevaLive in the same way as a regular IoT event, but these events are only used internally so that we can react as quickly as possible if there is a problem.Status data: If the alarm data detects anomalies, the status data just reports on the status of the server or IoT device. The devices run self-checks and report statistical data, like disk utilization, temperature, and load. This is also just for internal use to spot trends or troubleshoot in case any problems arise. For instance, it is incredibly useful to correlate CPU load with the version number of firmware or other software versions.Administrative data: This is where the power of SQL and time-series data really shines. Let’s say we added a new device, and it has a configuration object that is persistent in a regular table in Timescale. This object keeps some metadata, such as the date it was added to the system or the device's display name. This way, we can use a join easily to pick up metadata about the device and, at the same time, get time-series data for the events that are coming in. There is only one database connection to handle and one query to run.Choosing (and Using!) TimescaleDBWe realized we needed a time-series database a few years ago when we started storing our data in MySQL. At the time, we made a move to MongoDB, and it worked well for us but required quite a bit of administration and was harder to onboard other developers.I looked at InfluxDB but never considered it in the end because it was yet another system to learn, and we had learned that lesson with MongoDB.✨Editor’s Note:For more comparisons and benchmarks,see how TimescaleDB compares to InfluxDB, MongoDB, AWS Timestream, vanilla PostgreSQL, and other time-series database alternatives on various vectors, from performance and ecosystem to query language and beyond.Learning from this journey,  I looked for a solution that plugged the gaps the previous systems couldn’t. That is when I found Timescale and discovered that there was a hosted solution.We are a small team that creates software with a big impact, and this means that we don’t really have time to put a lot of effort into tweaking and administering every single tool we use, but we still like to have control.""With Timescale, our developers immediately knew how to use the product because most of them already knew SQL""Also, since TimescaleDB is basically PostgreSQL with time-series functionality on steroids, it is much easier to onboard new developers if needed. With Timescale, our developers immediately knew how to use the product because most of them already knew SQL.Edeva uses TimescaleDB as the main database in our smart city system. Our clients can control their IoT devices (like the Actibump from EdevaLive) and—as part of that system—see the data that has been captured and quickly get an overview of trends and historical data. We offer many graphs that show data in different time spans, like day, week, month, and years. To get this to render really fast, we use continuous aggregations.""Timescale is basically PostgreSQL with time-series functionality on steroids, it is much easier to onboard new developers if needed""✨Editor’s Note:Learn how you can use continuous aggregates for distributed hypertables.Current Deployment and Future PlansOne of the TimescaleDB features that has had the most impact on our work is continuous aggregations. It changed our dashboards from sluggish to lightning fast. If we are building functionality to make data available for customers, we always aggregate it first to speed up the queries and take the load off the database. It used to take minutes to run some long-term data queries. Now, almost all queries for long-term data are subsecond.For example, we always struggled with showing the 85th percentile of speed over time. To get accurate percentile data, you had to calculate it based on the raw data instead of aggregating it. If you had 200 million events in a hypertable and wanted several years’ data for a specific sensor, it could take you a long time to deliver—users don’t want to wait that long.""It changed our dashboards from sluggish to lightning fast""Now that Timescale introducedpercentile_aggandapprox_percentile, we can actually query continuous aggregations andget reasonably accurate percentile valueswithout querying raw data.✨Editor’s Note:Percentile approximations can be more useful for large time-series data sets than averages. Read how their work in this blog post.Note that “vehicles” is a hypertable where actibump_id is the ID of the dynamic speed bump containing several hundred million records.This is how we build the continuous aggregate:CREATE MATERIALIZED VIEW view1 + WITH (timescaledb.continuous) AS + SELECT actibump_id, + timescaledb_experimental.time_bucket_ng(INTERVAL '1 month', time, 'UTC') AS bucket, + percentile_agg(vehicle_speed_initial) AS percentile_agg +FROM vehicles +GROUP BY actibump_id, bucketAnd this is the query that fetches the data for the graph:SELECT TIMESCALEDB_EXPERIMENTAL.TIME_BUCKET_NG(INTERVAL '1 month', bucket) AS date, +actibump_id, +APPROX_PERCENTILE(0.85, ROLLUP(PERCENTILE_AGG)) AS p85, +MAX(signpost_speed_max) +FROM vehicles_summary_1_month +WHERE actibump_id in ('16060022') +AND bucket >= '2021-01-30 23:00:00' +AND bucket <= '2022-04-08 21:59:59' +GROUP BY date, actibump_id +ORDER BY date ASCHere is an example of the graph:At the moment, we use PHP and Yii 2 to deploy TimescaleDB. We connect to TimescaleDB with Qlik Sense for business analytics. In Qlik Sense, you can easily connect to TimescaleDB using the PostgreSQL integration.It is especially convenient to be able to connect to the continuous aggregations for long-term data without overloading the system with too much raw data. We often use Qlik Sense to rapidly prototype graphs that we later add to EdevaLive.Advice and ResourcesThe next step for us is to come up with a good way of reducing the amount of raw data we store in TimescaleDB. We are looking at how we can integrate it with a data lake. Apart from that, we are really excited to start building even more graphs and map applications.If you are planning to store time-series data, Timescale is the way to go. It makes it easy to get started because it is “just” SQL, and at the same time, you get the important features needed to work with time-series data. I recommend you have a look, especially at continuous aggregations.Think about the whole lifecycle when you start. Will your use cases allow you to use features like compression, or do you need to think about how to store long-term data outside of TimescaleDB to make it affordable right from the start? You can always work around things as you go along, but it is good to have a plan for this before you go live.💻If you want to learn more about how Edeva handles time-series data with Actibump and EdevaLive, the team hostsvirtual biweekly webinars, or you can alsorequest a demo.We’d like to thank John and all the folks from Edeva for sharing their story. We are amazed to see how their work truly impacts the way people live and enjoy their city with a little help from time-series data.🙌We’re always keen to feature new community projects and stories on our blog. If you have a story or project you’d like to share, reach out on Slack (@Ana Tavares), and we’ll go from there.The open-source relational database for time-series and analytics.Try Timescale for free",https://www.timescale.com/blog/how-edeva-uses-continuous-aggregations-and-iot-to-build-smarter-cities/ +How Everactive Powers a Dense Sensor Network With Virtually No Power at All,"📬This blog post was originally published in February 2021 and updated in February 2023 to reflect Everactive's data stack and business evolution.This is an installment of our “Community Member Spotlight” series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition,Carlos Olmos,Dan Wright, andClayton Yochumfrom Everactive join us to share how they’re bringing analytics and real-time device monitoring to scenarios and places never before possible. Learn how they’ve set up their data stack (moving from six to only three instances), their database evaluation criteria, their advice for fellow developers, and more.About the CompanyEveractivecombines battery-free, self-powered sensors and powerful cloud analytics to provide “end-to-end” hyperscale IoT solutions to our customers. Our company is undergoing a huge transformation from focusing only on industrial monitoring services (read more about Industrial IoT) to opening our platform to developers that can leverage our technology to create their own solutions and services.It is not easy to build a platform, less to build an open platform. Flexibility and stability are key factors. We have found so far that with Timescale (and PostgreSQL underneath), we have been able to bend our data models and data serving needs to implement the new use cases for the platform without pain.We design and build our sensors in-house (down to the chip), and they’re ruggedized for harsh settings and can operate indefinitely from low levels of energy harvested from heat or light. This means our customers’ devices can continuously stream asset health data, despite radio interference and physical obstacles—like equipment, ducts, and pipes—common in industrial settings.Since they charge themselves, these sensors stay operational well beyond what’s possible with traditional, battery-powered Industrial IoT devices. We ingest data from thousands of sensorsinto Timescale, then surface it to our customers through dashboards, charts, and automated alerts.Ourinitial productsare designed to monitor steam systems, which are used in various industries and applications, like process manufacturing, chemical processing, and district energy, as well as a range of rotating equipment, such as motors, pumps, fans, and compressors. Currently, we serve large, Fortune 500 manufacturers in many sectors, including Food & Beverage, Consumer Packaged Goods, Chemical Process Industries, Pharmaceuticals, Pulp & Paper, and Facilities Management.We show customers their data through a web-based dashboard, and we also have internal applications to help our in-house domain experts review and label customer data to improve our automated failure detection.About the TeamWe’re a small team of software and data engineers, spanning the Cloud and Data Science teams at Everactive.Between us, we’ve got several decades of experience managing databases, pipelines, APIs, and various other bits of backend infrastructure.About the ProjectOur key differentiator is that our sensors are batteryless: the custom low-power silicon means that they can be put in more places, without requiring servicing for well over a decade.In turn, this means that we can monitor factory devices that were formerly cost-prohibitive to put sensors on, due to the difficulty or cost associated with charging batteries; being able to collect dataeconomicallyfrom more equipment also means that our industrial data streams are more detailed and cover more equipment than our competitors’.Today, customers place our sensors on steam traps and motors, and we capture a range of metrics – from simple ones, like temperature, to more complex ones, like 3D vibrational data. (You can learn more about steam trap systems and the need for batteryless systems inthis overview video.)Everactive’s new generation of sensors in the wild, including a sensor on a hydraulic arm with a shipping container and, below, a sensor on a shipping container clasp closer upWe then use this data to inform our customers about the health of their industrial systems, so they can take action when and where required. “Action” in this sense could mean replacing a steam trap, replacing a bad bearing in a machine, or various other solutions to problems.For example, we’ll automatically alert customers if their monitored equipment has failed or if machines are off when they should be on, so customers can send a crew to fix the failure, or power on the machine remotely.In addition to receiving alerts from us, customers can use our dashboards to check the latest data and current status of their equipment at any time.One of Everactive’s dashboards, tracking the overall vibration levelAs mentioned earlier, our team’s responsible for delivering these intuitive visualizations to our customers and in-house domain experts –  as well as for feeding sensor metrics into our custom analytics to automate failure detection and improve our algorithms.Using (and Choosing!) TimescaleDBBefore TimescaleDB, we stored metadata in PostgreSQL and our sensor data in OpenTSDB. Over time, OpenTSDB became an increasingly slow and brittle system.Our data is very well-suited to traditional relational database models: we collect dozens of metrics in one packet of data, so it makes sense to store those together. Other time-series databases would force us to either bundle metrics into JSON blobs (making it hard to work with in-database) or to store every metric separately (forcing heavy, slow joins for most queries of interest).TimescaleDB was an easy choice because it let us double down on PostgreSQL, which we already loved using for metadata about our packet streams.We looked briefly at competitors like Influx but stopped considering them once it was clear TimescaleDB would exceed our needs.Our evaluation criteria were pretty simple: will it handle our load requirements, and can we understand how to use it? The former was easy to test empirically, and the latter was essentially “free” as TimescaleDB is “just” a PostgreSQL extension.This “just PostgreSQL” concept also lets us carefully manage our schema as code, testing and automating changes through CI/CD pipelines. We usesqitch, but popular alternatives includeFlywayandLiquibase. We like sqitch because it encourages us to write tests for each migration and is lightweight (no JVM).We previously usedAlembic, the migration component of the popularSQLALchemy Python ORM, but as our TimescaleDB database grew to support many clients, it made less sense to tie our schema management to any one of them.We maintain a layer of abstraction within TimescaleDB by separating internal and external schemas.“The capacity of Timescale to support both traditional schemas and time-series data in the same database allowed us to consolidate into one storage solution”Our data is stored as (hyper)tables in internal schemas like “packets” and “metadata,” but we expose them to clients through an “API” schema only containing views, functions, and procedures. This allows us to refactor our data layout while minimizing interruption in downstream systems by maintaining an API contract. This is a well-known pattern in the relational database world—yet another advantage of TimescaleDB being “simply” a PostgreSQL extension.Current Deployment & Future PlansAnother example of an Everactive dashboardWe useTimescaleand love it. We already used PostgreSQL on Amazon RDS and didn’t want to have to manage our own database (OpenTSDB convinced us of that!).It had become normal for OpenTSDB to crashmultiple times per weekfrom users asking for slightly too much data at once.TimescaleDB is clearly much faster than our previous OpenTSDB system. More importantly, nobody has ever crashed it.One not-very-carefully-benchmarked but huge performance increase we’ve seen?We have a frontend view that requires the last data point from all sensors: in OpenTSDB, it required nearly 10minutesto load (due to hard-to-fix tail latencies in HBase), and our first TimescaleDB deployment brought that down to around 7seconds. Further improvements to our schema and access patterns have brought these queries into the sub-second range.""We moved those schemas from Amazon RDS for PostgreSQL to Timescale. The migration was very simple: moving among PostgreSQL schemas was straightforward""We have been able to maintain sub-second responses even with the growth of data volume: that's very good for us. Also, thanks to compression andcontinuous aggregates, we have been keeping our table sizes in check and with great performance.✨Editor’s Note:For more comparisons and benchmarks, seehow Timescale compares to Amazon RDS for PostgreSQL. To learn more and try Timescale yourself, see ourstep-by-step Timescale tutorial.Timescale has been so good for us that it’s triggered a wave of transitions to managed solutions for other parts of our stack.We’ve recently moved our Amazon RDS data into Timescale to further simplify our data infrastructure and make it easier and faster to work with our data.About 20 % of our data is metadata kept in a relational database. We moved those schemas from Amazon RDS for PostgreSQL to Timescale. The migration was very simple: moving among PostgreSQL schemas was straightforward.We chose RDS from the beginning for simplicity. Eventually, once we had Timescale up and running, it became evident that we didn't need two separate PostgreSQL vendors when we were having such good results with Timescale.The capacity of Timescale to support both traditional schemas and time-series data in the same database allowed us to consolidate into one storage solution. The instances multiply because we keep three environments (development, staging, and production) for each database, so we went from six (three RDS plus three Timescale) to only three Timescale instances.As you’ll see in the below diagram, our sensors don’t talk directly to TimescaleDB; they pass packets of measurements to gateways via our proprietary wireless protocol. From there, we useMQTTto send those packets to our cloud.From our cloud data brokers,Kafkaprocesses and routes packets into TimescaleDB (and Timescale), and our TimescaleDB database powers our dashboard and analytics tools. We also added a third component: outbound channels for our platform users.Everactive architecture diagramCompared to Amazon RDS for PostgreSQL, Timescale also consolidates a lot of the costs associated with operating our instance in AWS—we now have a simpler bill that makes it easier to forecast costs.From the operation point of view, dealing with fewer instances and relying more on the Timescale Support Team for infrastructure maintenance has reduced our database maintenance workload significantly. Our security operations also benefited from the migration, again thanks to the consolidation and the transfer of certain responsibilities to Timescale.✨Editor’s Note:Read how our Support Team is raising the baron hosted database support.We’ll continue to innovate on our technology platform and increase Everactive’s product offerings, including improving our sensors’ wireless range, lowering power requirements to increase energy harvesting efficiency, integrating with additional sensors, and shrinking device form factor. These successive chip platform enhancements will allow us to monitor the condition of more and more assets, and we’re also developing a localization feature to identifywhereassets are deployed.Ultimately, Everactive’s mission is to generate new, massive datasets from a wealth of currently un-digitized physical-world assets. Transforming that data into meaningful insights has the potential to fundamentally improve the way that we live our lives—impacting how we manage our workplaces, care for our environment, interact with our communities, and manage our own personal health.Advice & ResourcesIf you’re evaluating your database options, here are two recommendations based on our experiences. First, if you have enough time-series data that a general database won’t cut it (millions of rows), TimescaleDB should be your first choice. It’s easy to try out,the docs are great, and thecommunityis very helpful.Second, don’t underestimate the importance of using solutions that leverage a wide knowledge base shared by many/most backend developers. The increase in team throughput and decrease in onboarding time afforded by TimescaleDB—everyone knows at leastsomeSQL—in contrast to OpenTSDB—an esoteric thing built on HBase—has been a huge advantage. We expected this to some degree, but actually experiencing it firsthand has confirmed its value.Additionally, the use of schema-as-code tools and an internal/external schema separation discussed above have also been cornerstones of our success. We hadn’t been using these tools and patterns at Everactive previously but have since seen them catch on in other projects and teams.Want to read more developer success stories?Sign up for our newsletterfor more Developer Q&As, technical articles, tips, and tutorials to do more with your data—delivered straight to your inbox twice a month.We’d like to thank Carlos, Dan, Clayton, and all of the folks at Team Everactive for sharing their story (special shoutout to Brian, Joe, Carlos, Greg, and Elise for your contributions to this piece!). We applaud your efforts to bring sustainable, cost-effective sensors and easily actionable data to organizations around the world 🙌.We’re always keen to feature new community projects and stories on our blog. If you have a story or project you’d like to share, reach out on Slack (@Ana Tavares), and we’ll go from there.The open-source relational database for time-series and analytics.Try Timescale for free",https://www.timescale.com/blog/how-everactive-powers-a-dense-sensor-network-with-virtually-no-power-at-all/ +How to Reduce Query Cost With a Wide Table Layout in TimescaleDB,"This is an installment of our “Community Member Spotlight” series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition, Florian Herrengt, co-founder ofNocodelytics,shares how he tracks, records, and monitors millions of user interactions per day to build dazzling analytics dashboards for website building and hosting platformWebflow. And the best part? The team is making queries up to six times less costly by using a wide table layout.About the CompanyA Nocodelytics dashboardNocodelyticsis an analytics product built specifically for the website building and hosting companyWebflow. We are processing millions of events from various websites and turning them into insightful dashboards.We’re a close-knit team of three based in London. We are two co-founders,Sarwechand myself (Florian), and the team recently expanded whenAlexjoined us as a frontend developer. You can find us on theWebflow Marketplace.As our company is growing fast, we found that a quick, reliable database is vital for our company to grow and thrive.About the ProjectOur goal is to build the number one analytics platform for Webflow.Like other analytics tools, we provide users with a tracking script that they add to their Webflow site. However, because of the nature of Webflow’s audience, we have to do things quite differently from other analytics tools—which presents challenges that no other analytics tool faces.First, one of the things that we do that adds complexity is that we automatically track every event a user does. Whether it’s clicking on a button or link, interacting with a form, or viewing a page, we need to be able to track all of this information with minimal impact on accuracy.Adding a new metric to the Nocodelytics dashboardWe also track events tied to the Webflow Content Management System (CMS) and other third-party tools likeJetboost,Wized,Memberstack, andOutseta, which we automatically integrate with and track.So, we tap into the power of the CMS and the Webflow ecosystem to record how users interact. We then output these interactions into valuable insights for our analytics customers. This means we need to be able to record and ingest millions of events into our database per day without it crashing down. Some of our customers will get publicity and see huge spikes in traffic, so we need to be able to handle this too.Second, we provide our customers with a simple-to-use and customizable dashboard. This allows them to create metrics that go deep and answer almost any question (What are the most popular jobs on my site? How many signups came from Google? Which contact button is most effective?).To do this, we’re building a metric creator that is simple to use on the frontend but complex on the backend, with some advanced SQL being done to return the right answers depending on the question asked. So it’s important that we have the right tool to help us with this.Third, when our customers view their dashboard and look at the metrics, even a few seconds’ wait can cause frustration. As our customers can have several metrics on the dashboard at any time—some with fairly complex queries—there’s a lot of pressure on our database to read the data, crunch the numbers, and return the result quickly.On top of that, we also allow our customers to share and embed their dashboard onto a site, which means the number of users viewing the metrics goes up, and the number of read requests can increase at any time.Choosing (and Using!) TimescaleDBFirst, let’s talk about the previous setup we had and what problems this resulted in.Like many other companies,Nocodelyticsstarted with PostgreSQL. In the beginning, it worked. But the size of the database grew very, very fast. Eventually, with millions of rows, our dashboards became sluggish. Queries for customers with a lot of traffic would take several minutes or even time-out.As we needed a solution as quickly as possible, I had three things in mind when looking for an alternative to PostgreSQL:It had to be quick to learn.The change needed to involve a minimal amount of code.The migration path had to be simple.My first choice wasClickHouse, which seems to have better performance than Timescale for our use case—but keep reading as there's more to it.Not everything was great about ClickHouse: It does a lot, which can get confusing, and I’d rather stick with PostgreSQL, which I’ve used for years and know works.Amazon Athenawas another good option. It's serverless and queries compressed data directly from S3 (which Timescale is now offering in private beta too). It did have some weird limitations (e.g., a maximum of 20 concurrent queries, no way to update data, and dynamic partition columns must always be included in queries), which I found out the hard way. At that point, I was worried about the next issue I’d find, and I lost confidence in the product.Finally,InfluxDB. I spent a few hours with it, but it’s too different from what we already had. The migration would take forever.Also, I must stress that I had never heard about those tools before. I either worked on large projects with big money, where we used Redshift/BigQuery or specialized, small-scale projects, where the smallest PostgreSQL instance would be enough.I was about to use ClickHouse before I came across Timescale by chance while browsing databases.It’s just PostgreSQLThere you have it. The best feature of TimescaleDB: it's all PostgreSQL, always has been. All your tools, all the existing libraries, and your code already work with it. I’m using TimescaleDB because it’s the same as PostgreSQL but magically faster.Whatever technology is behind TimescaleDB, it’s truly impressive. Since theWebflow Conf, we have been inserting more than a million rows per day (without optimizations) in our tiny 8 GB memory instance. Sometimes, we have 3 K/IOPS. PostgreSQL would struggle. It’s like pulling an elastic until it snaps—but it never does, and we barely scratched the surface of what it can do. Also, the community is really nice.“I’m using TimescaleDB because it’s the same as PostgreSQL but magically faster""So, in sum, Timescale was a drop-in replacement that solved most of our issues. I installed the extension,created a hypertable, and everything became magically fast.✨Editor’s Note: Want to get started with TimescaleDB?Check out our documentation.But as I was reading the Timescale documentation, I realized it could be faster. A lot faster.Relational vs. Wide Table LayoutWhen you first learn about relational databases, you learn how to normalize your data with multiple tables and foreign key references. That’s a good, flexible way to store your data. However, it can be an issue when dealing with a large amount of data.That’s where the wide table layout becomes useful.Normalized data vs. Wide tableThe idea is to trade storage and schema flexibility for query performance by reducing the number ofJOINs. But this doesn’t stop you from combining both. You can still add foreign keys to a wide table.You will end up using more storage, but you can mitigate it with TimescaleDB’s compression.✨Editor’s Note:Learn how to save space using compression.Show time: Setting Up the SchemaLet’s create the above schema with relationships and insert dummy data:-- Sequence and defined type +CREATE SEQUENCE IF NOT EXISTS events_id_seq; +CREATE SEQUENCE IF NOT EXISTS countries_id_seq; +CREATE SEQUENCE IF NOT EXISTS browsers_id_seq; +CREATE SEQUENCE IF NOT EXISTS devices_id_seq; + +-- Table Definition +CREATE TABLE ""public"".""countries"" ( + ""id"" int4 NOT NULL DEFAULT nextval('countries_id_seq'::regclass), + ""name"" varchar, + PRIMARY KEY (""id"") +); + +CREATE TABLE ""public"".""browsers"" ( + ""id"" int4 NOT NULL DEFAULT nextval('browsers_id_seq'::regclass), + ""name"" varchar, + PRIMARY KEY (""id"") +); + +CREATE TABLE ""public"".""devices"" ( + ""id"" int4 NOT NULL DEFAULT nextval('devices_id_seq'::regclass), + ""name"" varchar, + PRIMARY KEY (""id"") +); + +CREATE TABLE ""public"".""events"" ( + ""id"" int4 NOT NULL DEFAULT nextval('events_id_seq'::regclass), + ""name"" varchar, + ""value"" int, + ""country_id"" int, + ""browser_id"" int, + + ""device_id"" int, + PRIMARY KEY (""id"") +); +create index events_country_id on events(country_id); +create index events_browser_id on events(browser_id); +create index events_device_id on events(device_id); +create index countries_name on countries(name); +create index browsers_name on browsers(name); +create index devices_name on devices(name);Then create our new wide table:create table events_wide as + select + events.id as id, + events.name as name, + events.value as value, + countries.name as country, + browsers.name as browser, + devices.name as device + from events + join countries on events.country_id = countries.id + join browsers on events.browser_id = browsers.id + join devices on events.device_id = devices.id + +create index events_wide_country on events_wide(country); +create index events_wide_browser on events_wide(browser); +create index events_wide_device on events_wide(device);ResultsNeat. But was it worth it? Well, yes. It would be a lot less interesting to read otherwise. Now that we have our wide table, let’s have a look at the query cost.-- cost=12406.82 +explain select devices.name, count(devices.name) +from events +join countries on events.country_id = countries.id +join browsers on events.browser_id = browsers.id +join devices on events.device_id = devices.id +where browsers.name = 'Firefox' and countries.name = 'United Kingdom' +group by devices.name order by count desc; + +-- cost=2030.21 +explain select device, count(device) +from events_wide +where browser = 'Firefox' and country = 'United Kingdom' +group by device order by count desc;This is a significant improvement. The same query is six times less costly. For a dashboard with dozens of metrics, it makes amassivedifference.You can find the full SQLhere.Future PlansTimescale is packed with amazing features we want to start using. Things liketime_bucket_gapfill()orhistogram().I didn't dive into it yet, but theTimescale Toolkitseems to have a lot of valuable functionality, such asapproximate count distinctsorfunction pipelines, which we can’t wait to try out.We also want to see howcontinuous aggregatescould help us relieve some pressure on the database.Our goal is to keep growing and scaling the number of events we store. We will soon leveragetablespacesanddata tiering to save on storage space. We’re keen to further optimize and use TimescaleDB to help as we grow towards handling billions of rows!June 2023 update:We’re now dealing with more than 500 GB of data, and those wide tables just aren’t efficient anymore.So, we’ve gone ahead and separated the table again. We’re executing a count query first, retrieving the ids, then running another query for the labels. Essentially, it’s a two-query process.TimescaleDB is row-based and our wide table is heavy on strings. As a result, we’re hitting I/O limits. This wasn’t a problem before because we’re using a fast SSD and had fewer rows per site, but now with the data volume, it’s a different story.In retrospect, choosing the wide table structure at that time was good. It accelerated our development pace significantly. We centralized all the events, simplifying our queries for quite some time. Plus, it enabled us to compress all our data without effort. Looking back, it was a beneficial strategy for that stage of our project.We’d like to thank Florian and the folks at Nocodelytics for sharing their story on tracking millions of user events while reducing their query cost using TimescaleDB. Stay tuned for an upcoming dev-to-dev conversation between Florian and Timescale’s developer advocate,Chris Englebert, where they will expand on these topics.We’re always keen to feature new community projects and stories on our blog. If you have a story or project you’d like to share, reach out on Slack (@Ana Tavares), and we’ll go from there.The open-source relational database for time-series and analytics.Try Timescale for free",https://www.timescale.com/blog/how-to-use-wide-table-model-to-reduce-query-cost-in-timescaledb/ +Processing and Protecting Hundreds of Terabytes of Blockchain Data: Zondax’s Story,"This is an installment of our “Community Member Spotlight” series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition, Ezequiel Raynaudo, data team leader at Zondax, explains how the software company consumes and analyzes hundreds of terabytes of blockchain data using TimescaleDB to create complete backend tech solutions.About the CompanyZondaxis a growing international team of more than 30 experienced professionals united by a passion for technology and innovation. Our end-to-end software solutions are widely used by many exchanges, hardware wallets, privacy coins, and decentralized finance (DeFi) protocols. Security is one of the highest priorities in our work, and we aim to provide the safest and most efficient solutions for our clients.Founded in 2018, Zondax has been consideredthe leader in the industry for Ledger apps development, with more than 45 applications built to date and more near production. Since its inception, our team has been building and delivering high-quality backend tech solutions for leading blockchain projects of prominent clients, such as Cosmos, Tezos, Zcash, Filecoin, Polkadot, ICP, Centrifuge, and more.“The database is a critical part of the foundation that supports our software services for leading blockchain projects, financial services, and prominent ecosystems in the blockchain space”We put a lot of emphasis on providing maximum safety and efficiency for the ecosystem. Our services can be categorized into security, data indexing,  integration, and protocol engineering. Each category has designated project leaders that take the initiative in managing the projects with well-experienced engineers.About the TeamMy team (which currently has two people but is looking to grow by the end of the year) manages the blockchain data in various projects and ensures the tools needed for the projects are well-maintained. For example, we pay close attention to the dynamic sets of different blockchains and create advanced mathematical models for discovering insightful information via data analytics.The database is a critical part of the foundation that supports our software services for leading blockchain projects, financial services, and prominent ecosystems in the blockchain space. In conclusion, we take serious steps to ensure the work of processing blockchain data remains effective, and that the quality of the results meets Zondax's high standards.We welcome professionals from different cultures, backgrounds, fields of experience, and mindsets. New ideas are always encouraged, and the diversity within the team has been helping us to identify various potential advancements we can make in leading blockchain projects.At the same time, our efforts in experimenting and searching for creative and efficient solutions led us to pay close attention to the latest technologies and innovations that we immediately incorporate into our work. We never get bored at Zondax!Since the Covid-19 pandemic, many companies and teams have switched to remote work temporarily or permanently, and for Zondax this is familiar ground. We adopted a culture of remote work from the start, which has been rewarding and encouraging as team members from around the globe often spark fun and constructive discussions despite nuanced cultural differences. And in terms of quality of work, the tools and platforms we have been using accommodate the needs for smooth communication and effective collaboration within different teams.About the ProjectZondax provides software services to various customers, including leading projects in the blockchain ecosystem and financial services. We consume and analyze blockchain data in numerous different ways and for multiple purposes:As input for other services and ecosystems provided by Zondax and for other third partiesTo apply data science and get value in the form of insights by using mathematical models for different blockchain dynamic sets of variablesFinancial servicesBlockchain data backupsThe minimal unit of division of a blockchain, a.k.a. a “block” on most networks, contains a timestamp field among several other sub-structures. It allows you to define blocks at a specific point in time throughout the blockchain history. So having a database engine that can leverage that property is a go-to option.Choosing (and Using!) TimescaleDB✨Editor’s Note:Want to know more about optimizing queries on hypertables with thousands of partitions using TimescaleDB?Check out this blog post.Our first encounter with TimescaleDB was througha blog post about database optimizations. We decided to go ahead and install it on our infrastructure since it’s built on top of PostgreSQL, and our main code and queries didn’t require to be updated. After installing the corresponding helm chart on our infrastructure, we decided to try it.The first tests denoted a substantial increase in performance when writing or querying the database, with no optimizations at all and without using hypertables. Those results encouraged us to keep digging into TimescaleDB’s configurations and optimizations, such as usingtimescaledb-tuneand converting critical tables to hypertables.“If Timescale didn’t exist, we would have a problem and might need to wait a couple of weeks to process a few dozens of terabytes rather than waiting only 1-2 days”Long story short, we went from having to wait a couple of weeks to process a few dozens of terabytes to only 1-2 days. Among the top benefits of TimescaleDB, I would highlight having the best possible write and read performance. It is a critical part of our ecosystem because it helps us provide fast and responsive services in real time. Using TimescaleDB also allows our software to stay synced with the blockchain's nodes, which is one of the most significant acknowledged advantages of our software and services. Last but not least, we also use TimescaleDB for blockchain data backups to protect data integrity.Before finding out about TimescaleDB, we first used custom PostgreSQL modifications like indexing strategies and high-availability setups. Also, our team did some benchmarking using NoSQL databases like MongoDB, but with no substantial improvements on the write/read speeds that we needed.If Timescale didn’t exist, we would have a problem and might need to wait a couple of weeks to process a few dozens of terabytes rather than waiting only 1-2 days.We are glad that we chose Timescale and proud of the work that has been expedited and achieved. For example, despite many challenges, we didn't give up on experimenting with new approaches to process a tremendous amount of blockchain data. Instead, we continued exploring new ideas and tools until we eventually started using TimescaleDB, which drastically shortened the time to process data and accelerated our progress in delivering quality results for the projects.Current Deployment & Future Plans✨Editor’s Note:Read how you canadd TimescaleDB to your Kubernetes deployment strategyquickly and easily.We deploy TimescaleDB using a custom helm chart that fits our infrastructure needs. As far as programming languages, we mainly use Golang to interact with TimescaleDB; and Hasura as the main query engine for external users.Advice & Resources✨Editor’s Note:Want to learn how to create a hypertable using TimescaleDB?Check out our documentation on hypertables and chunks.I’d recommend reading the blog postson how to get a working deployment,hypertables, andTimescale vs. vanilla Postgres's performance using the same queries.A wise man (Yoda) once said, ""You must unlearn what you have learned."" It is inevitable to encounter countless challenges when developing a scalable database strategy, but staying curious and willing to explore new solutions with caution can sometimes be rewarding.We’d like to thank Ezequiel and all of the folks at Zondax for sharing their story and efforts in finding a solution to process enormous amounts of data to build backend solutions for blockchain projects.We’re always keen to feature new community projects and stories on our blog. If you have a story or project you’d like to share, reach out on Slack (@Ana Tavares), and we’ll go from there.The open-source relational database for time-series and analytics.Try Timescale for free",https://www.timescale.com/blog/processing-and-protecting-hundreds-of-terabytes-of-blockchain-data-zondaxs-story/ +How FlightAware Fuels Flight Prediction Models for Global Travelers With TimescaleDB and Grafana,"This is an installment of our “Community Member Spotlight” series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition,Caroline Rodewig, Senior Software Engineer and Predict Crew Lead at FlightAware,  joins us to share how they’ve architected a monitoring system that allows them to power real-time flight predictions, analyze prediction performance, and continuously improve their models.FlightAwareis the world's largestflight tracking and data platform; we fuse hundreds of global data sources to produce an accurate, consistent view of flights around the world. We make this data available to users through web and mobile applications, as well as different APIs.Our customers cover a number of different segments, including:Travelers / aviation enthusiastswho use our website and mobile apps to track flights (e.g., using our “where’s my flight?” program).Business aviation providers(such asFixed Base Operatorsoraircraft operators) who use flight-tracking data and custom reporting to support their businesses.Airlinesthat use flight-tracking data or our predictive applications to operate more efficiently.Editor’s Note: for more information about FlightAware’s products (and ways to harness its data infrastructure), check outthis overview. Want to build your own flight tracking receiver and ground station? SeeFlightAware’s PiAware tutorial.About the teamThe Predictive Technologiescrewis responsible for FlightAware's predictive applications, which as a whole are called ""FlightAware Foresight."" At the moment, our small-but-mighty team is made up of only three people: our project managerJames Parkman, software engineer Andrew Brooks, and myself. We each wear many different hats; a day's work can cover anything from Tier 2 customer support to R&D, and everything in between.A former crew member, Diorge Tavares, wrote acool articleabout his experience as a site reliability engineer embedded in the Predict crew. He helped us design infrastructure and led our foray into cloud computing; now that our team is more established, he’s moved back to the FlightAware Systems team full-time.About the projectOur team's chief project is predicting flight arrival times, or ETAs; we predict both landing (EON) and gate arrival (EIN) times. And, ultimately, we need to monitor, visualize, and alarm on thequalityof those predictions. This is where TimescaleDB fits in.Not only should we track how our prediction error changes over the course of each flight, we also need to track how our error changes over months - or years! - to ensure we're continually improving our predictions. Our predictive models can have short bursts of inaccuracy - like failing to anticipate the impact of a huge storm - but they can also drift slowly over time as real-life behaviors change.As an example of the type of data we extract, the below is our ""Worst Flights"" dashboard, which we use for QA. (Looking through outliers is an easy way to spot bugs.) The rightmost column compares our error to third-parties', so we can see how we're doing relative to the rest of the industry.Our Grafana dashboard for tracking ""Worst Flights"" and our prediction quality vs. other data sourcesBut, we also go deep into specific flights, like the below ""Single Flight"" dashboard view.This is useful for debugging, as it gives a detailed picture of how our predictions changed over the course of asingleflight.Our Grafana dashboard for debugging and assessing our prediction quality at the individual flight levelChoosing (and using) TimescaleDBWe tested out several different monitoring setups before settling on TimescaleDB and Grafana. We recently published ablog postdetailing our quest for a monitoring system, which I’ve summarized below.First, we considered usingZabbix; it's widely used at FlightAware, where most software reports into Zabbix in one way or another. However, we quickly realized that Zabbix was not the tool for the job – our Systems crew had serious doubts that Zabbix would be able to handle the load of all the metrics we wanted to track:We make predictions for around 75,000 flights per day; if we only stored two error values per flight (much fewer than we wanted), it would require making 100 inserts per minute.After ruling out Zabbix, I started looking atGrafanaas a visualization and alerting tool, and it seemed to have all the capabilities we needed. For my database backend, I first pickedPrometheus, because it was near the top of Grafana's ""supported databases"" list and its built-in visualization capabilities seemed promising for rapid development.I didn't know much about time-series databases, and, while Prometheus is a good fit for some data, it really didn't fit mine well:No JOINs. My only prior database experience was with PostgreSQL, and it didn't occur to me that some databases just wouldn't support JOINs. While wecouldhave worked around this issue by inserting specific, already-joined error metrics, this would have limited the flexibility and ""query-a-bility"" of the data.Number of labels to store. At the bare minimum, we wanted to store EON and EIN predictions for 600 airports, at least 10 times throughout each flight. This works out to 12,000 different label combinations, each stored as a time series – whichPrometheus is not currently designed to handle.And, that’s when I found TimescaleDB. A number of factors went into our decision to use TimescaleDB, but here are the top four:Excellent performance.This article comparing TimescaleDB vs. PostgreSQL performancereally impressed me. Getting consistent performance, despite the number of rows in the table, was critical to our goal of storing performance data over several years.Institutional knowledge.FlightAware uses PostgreSQL in a vast number of applications, so there was already a lot of institutional knowledge and comfort with SQL.Impressive documentation.I have yet to have an issue or question that wasn't discussed and answered in the docs. Plus, it was trivial to test out – I love one-line docker start-up commands (seeTimescaleDB Docker Installation instructions).Grafana support.I was pretty confident that I wanted to use Grafana to visualize our data and power our dashboards, so this was a potential dealbreaker.We use several Grafana dashboards, like this one, to view detailed performance over time (average error trends over one or more airports)Editor’s Note: To learn more about TimescaleDB and Grafana,see our Grafana tutorials(5 step-by-step guides for building visualizations, using variables, setting up alerts, and more) andGrafana how-to blog posts.To see how to use TimescaleDB to perform time-series forecasting and analysis,check out our time-series forecasting tutorial(includes two forecasting methods, best practices, and sample queries).Current deployment & use casesOur architecture is pretty simple (see diagram below). We run a copy of this setup in several environments: production, production hot-standby, staging, and test. Each environment has its own predictions database, which allows us to compare our predictions in staging to those in production and validate changesbeforethey get released.⭐Pro tip:we periodically sync Grafana configurations from production to each of the other environments, which reduces the manual work involved in updating dashboards across instances.FlightAware Predict team's system architecture, which uses custom Python programs, Docker, Grafana, and TimescaleDBAfter some trial and error, we’ve set up our TimescaleDB schema as follows:(1) Short term (1 week) tables for arrivals, our own predictions, and third-party predictions.The predict-assessor program reads our flight data feed, extracts ETA predictions and arrival times, and inserts them into the database. For scale, the arrivals table typically contains 500k rows, and the predictions tables each contain 5M rows.Each table is chunked: arrivals by arrival time and predictions by the time the prediction was made.We use archiving functions to copy some data into long-term storage, andadrop_chunkspolicyto ensure that rows older than one week are dropped to prevent unlimited table growth.(2) Long term (permanent) table for prediction and prediction-error data.Archiving functions move data to the long term table by joining the short terms tables together. They also ""threshold"" the data to reduce verbosity, by only storing predictions at predetermined intervals; i.e., predictions that were present 1 and 2 hours before arrival are migrated to long-term tables, but intermediate predictions (i.e., at 1.5 hours before arrival) are not kept.Between the join and the threshold, the archiving process reduces the average number rows per flight from25(across 3 short-term tables) to6!We haven’t enabled adrop_chunkspolicy on this table as of now; after ~9 months of running this setup, our database file is pretty manageable at 54GB. If we start having space issues, we'd opt to store fewer predictions per flight rather than lose any year-over-year historical data.Biggest ""Aha!"" momentContinuous aggregates are what well and truly sold me on TimescaleDB. We went from 6.4 seconds to execute a query to 30ms.Yes, milliseconds.I was embarrassingly late to the party when it comes to continuous aggregates. When I first set up our database, every query was fast because the database was small. However, as we added data over time, some queries slowed down significantly.The biggest offender was a query on our KPIs dashboard, visualized in Grafana below. This graph gives us a birds-eye view of error over time. The blue line represents the average error for all airports at a certain time before arrival; the red line shows the number of flights per day. (You can see the huge traffic drop when airlines stopped flights in March, due to the COVID-19 pandemic.)Our KPI dashboard includes various metrics, including our average error rate and total flights per day across all airportsBeforelearning about continuous aggregates, the query to extract this data looked like this:SELECT + time_bucket('1 day', arr_time) AS ""time"", + AVG(get_error(prediction_fa, arr_time)) AS on_error, + count(*) AS on_count +FROM prediction_history +WHERE + time_out = '02:00:00' AND + arr_time BETWEEN '2020-03-01' AND '2020-09-05' +GROUP BY 1 +ORDER BY 1It took 6.4 seconds and aggregated 1.6M rows, from a table of 147M rows.For what the query was doing, this runtime wasn't too bad – the table was chunked byarr_time, which the query planner could take advantage of.I considered adding indexes to make the query faster, but wasn't convinced they would help much and was concerned about the resulting performance penalties for inserts.I also considered creating a materialized view to aggregate the data and writing a cron job to regularly refresh it...but that seemed like a hassle, and after all, I could wait 10 seconds for something to load 🤷‍♀️.Then, I discovered TimescaleDB's continuous aggregations! For the unfamiliar, they basically implement that regularly-refreshing materialized view idea, but in a far smarter way and with a bunch of cool extra features.Here's the view for the continuous aggregate:CREATE VIEW error_by_time_out +WITH (timescaledb.continuous) AS + SELECT + time_out, + time_bucket(INTERVAL '1 hour', arr_time) AS bucket, + AVG(get_error(prediction_fa, arr_time)) AS avg_error, + COUNT(*) AS count + FROM prediction_history + GROUP BY time_out, bucket;The new data extraction query is a little bit harder to parse, because the error needs to be aggregated across continuous aggregate buckets:SELECT + time_bucket('1 day', bucket) AS ""time"", + SUM(avg_error * count) / SUM(count) AS error, + SUM(count) AS count +FROM error_by_time_out +WHERE + time_out = '02:00:00' AND + bucket BETWEEN '2020-03-01' AND '2020-09-05' +GROUP BY 1 +ORDER BY 1...and I'll let you guess how long it takes....30ms.Yes, milliseconds. We went from 6.4 seconds to execute the query to 30ms.On top of that, unlike in a classic materialized view, the whole view doesn't have to be recalculated every time it needs to be updated -just the parts that have changed.This means refreshes are lightning fast too.Continuous aggregates are what well and truly sold me on TimescaleDB.The amazing developers at Timescale recently made continuous aggregates even better through ""real-time"" aggregates. These will automatically fill in data between the last view refresh and real-time when they're queried, so you always get the most up-to-date data possible. Unfortunately, our database is a few versions behind so we're not using real-time aggregates yet, but I can't wait to upgrade and start using them.Editor’s Note: To learn more about real-time aggregates and how they work, see our“Ensuring up-to-date results with Real-Time Aggregations” blog and mini-tutorial(includes benchmarks, example scenarios, and resources to get started).Getting started advice & resourcesIn addition to the documentation I’ve linked throughout this post, I'd recommend doing what I did: readingthe TimescaleDB docs, spinning up a test database, and going to town.And, after a few months of use, make sure to go back and read the docs again – you'll discover all sorts of new things to try to make your database even faster (looking at youtimescaledb-tune)!Editor’s Note: If you’d like to follow Caroline’s advice and start testing TimescaleDB for yourself,Timescale Cloudis the fastest way to get up and running - 100% free for 30 days, no credit card required. You can see self-managed and other hosted optionshere.To learn more about timescale-tune,see our Configuring TimescaleDB documentation.We’d like to thank Caroline and the FlightAware team for sharing their story, as well as for their work to make accurate, reliable flight data available to travelers, aviation enthusiasts, and operators everywhere. We’re big fans of FlightAware at Team Timescale, and we’re honored to have them as members of our community!We’re always keen to feature new community projects and stories on our blog. If you have a story or project you’d like to share, reach out on Slack (@lacey butler), and we’ll go from there.Additionally, if you’re looking for more ways to get involved and show your expertise, check out theTimescale Heroesprogram.The open-source relational database for time-series and analytics.Try Timescale for free",https://www.timescale.com/blog/how-flightaware-fuels-flight-prediction-models-with-timescaledb-and-grafana/ +How Newtrax Is Using TimescaleDB and Hypertables to Save Lives in Mines While Optimizing Profitability,"This is an installment of our “Community Member Spotlight” series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition, Jean-François Lambert, lead data engineer atNewtrax, shares how using TimescaleDB has helped the IoT leader for underground mines to optimize their clients’ profitability and save lives by using time-series data in hypertables to prevent human and machine collisions.About the CompanyNewtrax believes the future of mining is underground, not only because metals and minerals close to the surface are increasingly rare but because underground mines have a significantly lower environmental footprint. To accelerate the transition to a future where 100 percent of mining is underground, we eliminate the current digital divide between surface and underground mines.To achieve this goal, Newtrax integrates the latest IoT and analytics technologies to monitor and provide real-time insights on underground operations, including people, machines, and the environment. Newtrax customers are the largest producers of metals in the world, and their underground mines rely on our systems to save lives, reduce maintenance costs, and increase productivity. Even an increase of 5 percent in overall equipment effectiveness can translate to millions in profits.We collect data directly from the working face by filling the gaps in existing communications infrastructures with a simple and easy-to-deploy network extension. With that, we enable underground hard rock mines to measure key performance indicators they could not measure in real time to enable short-interval control of operations during the shift.Our headquarters are based in Montreal, Canada, and we have regional offices around the globe, totaling 150 employees, including some of the most experienced engineers and product managers specializing in underground hard rock mining. Our solutions have been deployed to over 100 mine sites around the world.About the TeamThe Newtrax Optimine Mining Data Platform (MDP) is the first AI-powered data aggregation platform enabling the underground hard rock mining industry to connect all IoT devices into a single data repository. Our team consists of software developers, data scientists, application specialists, and mining process experts, ensuring our customers get the exact solutions they require.As the lead data engineer, it is my responsibility to define, enhance and stabilize our data pipeline, from mobile equipment telemetry and worker positioning to PowerBI-driven data warehousing via RabbitMQ, Kafka, Hasura, and of course, TimescaleDB.About the ProjectA diagram of the Newtrax solutions and how they bring together people, machines, and the environment in their mine intelligence operationsOur Mining Data Platform (MDP) platform incorporates proprietary and third-party software and hardware solutions that focus on acquiring, persisting, and analyzing production, safety, and telemetry data at more than one hundred underground mine sites across the world.From the onset, we have had to deal with varying degrees of data bursts at completely random intervals. Our original equipment manufacturer-agnostic hardware and software solutions can acquire mobile equipment telemetry, worker positioning, and environmental monitoring across various open platforms and proprietary backbones. WiFi, Bluetooth, radio-frequency identification (RFID), long-term evolution (LTE), leaky feeder, Controller Area Network (CAN) bus, Modbus—if we can decode it, we can integrate it.“We have saved lives using TimescaleDB”Regardless of skill sets, programming languages, and transportation mechanisms, all of this incoming data eventually makes it to PostgreSQL, which we have been using since version 8.4 (eventually 15, whenever TimescaleDB supports it!). For the past 10 years, we have accumulated considerable experience with this world-class open-source relational database management system.✨Editor’s Note:Stay tuned as we’ll announce support for PostgreSQL 15 very soon, in early 2023.While we are incredibly familiar with the database engine itself and its rich extension ecosystem, partitioning data-heavy tables was never really an option because native support left to be desired, and third-party solutions didn’t meet all of our needs.Choosing (and Using!) TimescaleDBI have been using PostgreSQL since I can remember. I played around with Oracle and MSSQL, but PostgreSQL has always been my go-to database. I joined Newtrax over 12 years ago, and we’ve used it ever since.In 2019, we found out about TimescaleDB (1.2.0 at the time) and started closely following and evaluating the extension, which promised to alleviate many of our growing pains, such as partitioning and data retention policies.Not only did TimescaleDB resolve some of our long-standing issues, but itsdocumentation,blog posts, and community outlets (Slack,GitHub,Stack Overflow) also helped us make sense of this “time-series database” world we were unknowingly part of.“One of our first tech debt reductions came via the use of thetime_bucket_gapfillandlocffunctions, which allowed us to dynamically interpolate mobile equipment telemetry data points that could be temporarily or permanently missing”A tipping point for choosing TimescaleDB was theNYC TLC tutorialwhich we used as a baseline. After comparing with and without TimescaleDB, it became clear that we would stand to gain much from a switch: not only from the partitioning/hypertable perspective but also with regards to the added business intelligence API functionality, background jobs,continuous aggregates, and variouscompressionandretention policies.Beyond that, we only ran basic before/after query analysis, because we know that a time-based query will perform better on a hypertable than a regular table, just by virtue of scanning fewer chunks. Continuous aggregates and hyperfunctions easily saved us months of development time which is equally, if not more important, than performance gains.More importantly, in order for our solutions (such as predictive maintenance and collision avoidance) to provide contextualized and accurate results, we must gather and process hundreds of millions of data points per machine or worker, per week or month, depending on various circumstances. We usehypertablesto handle these large datasets and act upon them. We have saved lives using TimescaleDB.Beyond the native benefits ofusing hypertablesand data compression/retention policies, one of our first tech debt reductions came via the use of thetime_bucket_gapfillandlocffunctions (see an example later), which allowed us to dynamically interpolate mobile equipment telemetry data points that could be temporarily or permanently missing. Since then, we have been acutely following any and all changes to the hyperfunction API.✨Editor’s Note:Read how you can write better queries for time-series analysis using just SQL and hyperfunctions.Current Deployment & Future PlansAs far as deployment is concerned, the mining industry is incredibly conservative and frequently happens to be located in the most remote areas of the world, so we mostly deploy TimescaleDB on-premises throughKubernetes. The main languages we use to communicate with TimescaleDB are C#, Golang, and Python, but we also have an incredible amount of business logic written as pure SQL in triggers, background jobs, and procedures.While all of our microservices are typicallyrestricted to their own data domains, we have enabled cross-database queries and mutations throughHasura. It sits nicely on top of TimescaleDB and allows us to expose our multiple data sources as a unified API, complete with remote relationships, REST/GraphQL API support, authentication, and permission control.Our use of TimescaleDB consists of the following:We greatly appreciatetimescaledb-tuneautomatically tweaking the configuration file based on the amount of memory and number of CPUs available. In fact, Newtrax has contributed to this tool a few times.We deploy thetimescaledb-haimage (which we also contributed to) because it adds multiple extensions other than TimescaleDB (for example,pg_stat_statements,hypopg,  andpostgis), and it comes with useful command-line tools likepgtop.Our developers are then free to use hypertables or plain tables. Still, when it becomes obvious that we’ll want to configure data retention or create continuous aggregates over a given data set,hypertables are a no-brainer.Even if hypertables are not present in a database, we may still use background jobs to automate various operations instead of installing another extension likepg_cron.Hypertables can be exposed as-is through Hasura, but we may also want to provide alternative viewpoints through continuous aggregates or custom views and functions.✨Editor’s Note:The TimescaleDB tuning tool helps make configuring TimescaleDB a bit easier. Read our documentation to learn how.As mentioned earlier, incoming data can be erratic and incomplete. We might be missing some data points or values. Using a combination of the following code will create a functionmine_data_gapfill, which can be tracked with Hasura and enable consumers to retrieve consistent data series based on their own needs. And you could easily useinterpolateinstead oflocfto provide interpolated values instead of the last one received.CREATE TABLE mine_data +( + serial TEXT, + timestamp TIMESTAMPTZ, + values JSONB NOT NULL DEFAULT '{}', + PRIMARY KEY (serial, timestamp) +); +SELECT CREATE_HYPERTABLE('mine_data', 'timestamp'); + +INSERT INTO mine_data (serial, timestamp, values) VALUES +('123', '2020-01-01', '{""a"": 1, ""b"": 1, ""c"": 1}'), +('123', '2020-01-02', '{ ""b"": 2, ""c"": 2}'), +('123', '2020-01-03', '{""a"": 3, ""c"": 3}'), +('123', '2020-01-04', '{""a"": 4, ""b"": 4 }'), +('123', '2020-01-06', '{""a"": 6, ""b"": 6, ""c"": 6}'); + + +CREATE FUNCTION mine_data_gapfill(serial TEXT, start_date TIMESTAMPTZ, end_date TIMESTAMPTZ, time_bucket INTERVAL = '1 DAY', locf_prev INTERVAL = '1 DAY') +RETURNS SETOF mine_data AS $$ + SELECT $1, ts, JSONB_OBJECT_AGG(key_name, gapfilled) + FROM ( + SELECT + serial, + TIME_BUCKET_GAPFILL(time_bucket, MT.timestamp) AS ts, + jsondata.key AS key_name, + LOCF(AVG((jsondata.value)::REAL)::REAL, treat_null_as_missing:=TRUE, prev:=( + SELECT (values->>jsondata.key)::REAL + FROM mine_data + WHERE values->>jsondata.key IS NOT NULL AND serial = $1 + AND timestamp < start_date AND timestamp >= start_date - locf_prev + ORDER BY timestamp DESC LIMIT 1 + )) AS gapfilled + FROM mine_data MT, JSONB_EACH(MT.values) AS jsondata + WHERE MT.serial = $1 AND MT.timestamp >= start_date AND MT.timestamp <= end_date + GROUP BY ts, jsondata.key, serial + ORDER BY ts ASC, jsondata.key ASC + ) sourcedata + GROUP BY ts, serial + ORDER BY ts ASC; +$$ LANGUAGE SQL STABLE; + +SELECT * FROM mine_data_gapfill('123', '2020-01-01', '2020-01-06', '1 DAY');You can find this code snippet on GitHub too.RoadmapWe need to start looking into thetimescaledb-toolkitextension, which is bundled in thetimescaledb-haDocker image. It promises to “ease all things analytics when using TimescaleDB, with a particular focus on developer ergonomics and performance,” which is music to our ears.“Honestly, theTimescaleDocshad most of the resources we needed to make a decision between switching to TimescaleDB or continuing to use plain PostgreSQL (this article in particular)”Another thing on our backlog is to investigate using Hasura’s streaming subscriptions as a Kafka alternative for specific workloads, such as new data being added to a hypertable.Advice & ResourcesHonestly, theTimescaleDocshad most of the resources we needed to make a decision between switching to TimescaleDB or continuing to use plain PostgreSQL (this article in particular). But don’t get too swayed or caught up in all the articles claiming outstanding performance improvements: run your own tests and draw your own conclusions.We started by converting some of our existing fact tables and got improvements ranging from modest to outstanding. It all depends on your use cases, implementations, and expectations. Some of your existing structures may not be compatible right out of the box, and not everything needs to become a hypertable either! Make sure to consider TimescaleDB’s rich API ecosystem in your decision matrix.Sign up for our newsletterfor more Developer Q&As, technical articles, tips, and tutorials to do more with your data—delivered straight to your inbox twice a month.We’d like to thank Jean-François and all of the folks at Newtrax for sharing their story on how they’re bringing digital transformation to a conservative industry—all while saving lives along the way, thanks to TimescaleDB and hypertables.We’re always keen to feature new community projects and stories on our blog. If you have a story or project you’d like to share, reach out on Slack (@Ana Tavares), and we’ll go from there.The open-source relational database for time-series and analytics.Try Timescale for free",https://www.timescale.com/blog/how-newtrax-is-using-timescaledb-and-hypertables-to-save-lives/ diff --git a/ollama_pgvector_helloworld/docker-compose.yaml b/ollama_pgvector_helloworld/docker-compose.yaml new file mode 100644 index 0000000..7962fc2 --- /dev/null +++ b/ollama_pgvector_helloworld/docker-compose.yaml @@ -0,0 +1,44 @@ +version: "3" +services: + pg_vector_postgres_dev: + image: timescale/timescaledb-ha:pg16 + restart: unless-stopped + container_name: pgvector + # ports: + # - "5442:5442" + volumes: + - ./volumes/postgres:/var/lib/postgresql/data + env_file: + - .env + networks: + pg_vector_dev: + ipv4_address: 192.168.51.12 + + ollama: + image: ollama/ollama + container_name: ollama + # ports: + # - "11434:11434" + volumes: + # - ./volumes/ollama/:/root/.ollama/ + - /usr/share/ollama/.ollama/:/root/.ollama/ + restart: always + deploy: + resources: + reservations: + devices: + - driver: nvidia + device_ids: ['0'] + capabilities: [gpu] + networks: + pg_vector_dev: + ipv4_address: 192.168.51.13 + +networks: + pg_vector_dev: + driver: bridge + ipam: + driver: default + config: + - + subnet: 192.168.51.0/24 diff --git a/ollama_pgvector_helloworld/ollama_pgvector_helloworld.ipynb b/ollama_pgvector_helloworld/ollama_pgvector_helloworld.ipynb new file mode 100644 index 0000000..489809e --- /dev/null +++ b/ollama_pgvector_helloworld/ollama_pgvector_helloworld.ipynb @@ -0,0 +1,1201 @@ +{ + "cells": [ + { + "attachments": {}, + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Hello pgvector: Create, store and query Ollama embeddings in PostgreSQL using pgvector\n", + "\n", + "This notebook will teach you:\n", + "- How to create embeddings from content using a Local Ollama server.\n", + "- How to use PostgreSQL as a vector database and store embeddings data in it using pgvector.\n", + "- How to use embeddings retrieved from a vector database to augment LLM generation. \n", + "\n", + "We'll be using the example of creating a chatbot to answer questions about Timescale use cases, referencing content from the Timescale Developer Q+A blog posts. \n", + "\n", + "This is a great first step to building something like chatbot that can reference a company knowledge base or developer docs.\n", + "\n", + "Let's get started!" + ] + }, + { + "attachments": {}, + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Note: This notebook uses a PostgreSQL database with pgvector installed that's hosted on Timescale. You can create your own cloud PostgreSQL database in minutes [at this link](https://console.cloud.timescale.com/signup) to follow along. You can also use a local PostgreSQL database if you prefer.\n", + "\n" + ] + }, + { + "attachments": {}, + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Configuration\n", + "- Setup Ollama \n", + " - `docker compose up -d`\n", + " - `docker exec ollama ollama pull nomic-embed-text`\n", + " - `docker exec ollama ollama pull llama3.2`\n", + "- Install Python\n", + "- Install and configure a python virtual environment. We recommend [Pyenv](https://github.com/pyenv/pyenv)\n", + "- Install the requirements for this notebook using the following command:" + ] + }, + { + "cell_type": "code", + "execution_count": 108, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: pandas in /home/daniel/git/vector-cookbook/.venv/lib/python3.12/site-packages (from -r requirements.txt (line 1)) (2.2.3)\n", + "Requirement already satisfied: numpy in /home/daniel/git/vector-cookbook/.venv/lib/python3.12/site-packages (from -r requirements.txt (line 2)) (2.1.2)\n", + "Requirement already satisfied: tiktoken in /home/daniel/git/vector-cookbook/.venv/lib/python3.12/site-packages (from -r requirements.txt (line 3)) (0.8.0)\n", + "Requirement already satisfied: psycopg2-binary in /home/daniel/git/vector-cookbook/.venv/lib/python3.12/site-packages (from -r requirements.txt (line 4)) (2.9.10)\n", + "Requirement already satisfied: pgvector in /home/daniel/git/vector-cookbook/.venv/lib/python3.12/site-packages (from -r requirements.txt (line 5)) (0.3.5)\n", + "Requirement already satisfied: python-dotenv in /home/daniel/git/vector-cookbook/.venv/lib/python3.12/site-packages (from -r requirements.txt (line 6)) (1.0.1)\n", + "Requirement already satisfied: python-dateutil>=2.8.2 in /home/daniel/git/vector-cookbook/.venv/lib/python3.12/site-packages (from pandas->-r requirements.txt (line 1)) (2.9.0.post0)\n", + "Requirement already satisfied: pytz>=2020.1 in /home/daniel/git/vector-cookbook/.venv/lib/python3.12/site-packages (from pandas->-r requirements.txt (line 1)) (2024.2)\n", + "Requirement already satisfied: tzdata>=2022.7 in /home/daniel/git/vector-cookbook/.venv/lib/python3.12/site-packages (from pandas->-r requirements.txt (line 1)) (2024.2)\n", + "Requirement already satisfied: regex>=2022.1.18 in /home/daniel/git/vector-cookbook/.venv/lib/python3.12/site-packages (from tiktoken->-r requirements.txt (line 3)) (2024.9.11)\n", + "Requirement already satisfied: requests>=2.26.0 in /home/daniel/git/vector-cookbook/.venv/lib/python3.12/site-packages (from tiktoken->-r requirements.txt (line 3)) (2.32.3)\n", + "Requirement already satisfied: six>=1.5 in /home/daniel/git/vector-cookbook/.venv/lib/python3.12/site-packages (from python-dateutil>=2.8.2->pandas->-r requirements.txt (line 1)) (1.16.0)\n", + "Requirement already satisfied: charset-normalizer<4,>=2 in /home/daniel/git/vector-cookbook/.venv/lib/python3.12/site-packages (from requests>=2.26.0->tiktoken->-r requirements.txt (line 3)) (3.4.0)\n", + "Requirement already satisfied: idna<4,>=2.5 in /home/daniel/git/vector-cookbook/.venv/lib/python3.12/site-packages (from requests>=2.26.0->tiktoken->-r requirements.txt (line 3)) (3.10)\n", + "Requirement already satisfied: urllib3<3,>=1.21.1 in /home/daniel/git/vector-cookbook/.venv/lib/python3.12/site-packages (from requests>=2.26.0->tiktoken->-r requirements.txt (line 3)) (2.2.3)\n", + "Requirement already satisfied: certifi>=2017.4.17 in /home/daniel/git/vector-cookbook/.venv/lib/python3.12/site-packages (from requests>=2.26.0->tiktoken->-r requirements.txt (line 3)) (2024.8.30)\n", + "Note: you may need to restart the kernel to use updated packages.\n" + ] + } + ], + "source": [ + "%pip install -r requirements.txt" + ] + }, + { + "cell_type": "code", + "execution_count": 109, + "metadata": {}, + "outputs": [], + "source": [ + "import os\n", + "from dotenv import load_dotenv\n", + "import pandas as pd\n", + "import numpy as np\n", + "import json\n", + "import tiktoken\n", + "import psycopg2\n", + "import ast\n", + "import pgvector\n", + "import math\n", + "from psycopg2.extras import execute_values\n", + "from pgvector.psycopg2 import register_vector\n" + ] + }, + { + "cell_type": "code", + "execution_count": 110, + "metadata": {}, + "outputs": [], + "source": [ + "from dotenv import dotenv_values\n", + "\n", + "load_dotenv()\n", + "\n", + "OLLAMA_HOST = os.getenv(\"OLLAMA_HOST\").strip(\"'\\\"\")\n", + "DATABASE_URL = os.getenv(\"DATABASE_URL\").strip(\"'\\\"\")\n" + ] + }, + { + "attachments": {}, + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Part 1: Create Embeddings\n", + "First, we'll create embeddings using a Local Ollama server API on some text we want to augment our LLM with.\n", + "In this example, we'll use content from the Timescale blog about real world use cases." + ] + }, + { + "cell_type": "code", + "execution_count": 111, + "metadata": {}, + "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", + "
titlecontenturl
0How to Build a Weather Station With Elixir, Ne...This is an installment of our “Community Membe...https://www.timescale.com/blog/how-to-build-a-...
1CloudQuery on Using PostgreSQL for Cloud Asset...This is an installment of our “Community Membe...https://www.timescale.com/blog/cloudquery-on-u...
2How a Data Scientist Is Building a Time-Series...This is an installment of our “Community Membe...https://www.timescale.com/blog/how-a-data-scie...
3How Conserv Safeguards History: Building an En...This is an installment of our “Community Membe...https://www.timescale.com/blog/how-conserv-saf...
4How Messari Uses Data to Open the Cryptoeconom...This is an installment of our “Community Membe...https://www.timescale.com/blog/how-messari-use...
\n", + "
" + ], + "text/plain": [ + " title \\\n", + "0 How to Build a Weather Station With Elixir, Ne... \n", + "1 CloudQuery on Using PostgreSQL for Cloud Asset... \n", + "2 How a Data Scientist Is Building a Time-Series... \n", + "3 How Conserv Safeguards History: Building an En... \n", + "4 How Messari Uses Data to Open the Cryptoeconom... \n", + "\n", + " content \\\n", + "0 This is an installment of our “Community Membe... \n", + "1 This is an installment of our “Community Membe... \n", + "2 This is an installment of our “Community Membe... \n", + "3 This is an installment of our “Community Membe... \n", + "4 This is an installment of our “Community Membe... \n", + "\n", + " url \n", + "0 https://www.timescale.com/blog/how-to-build-a-... \n", + "1 https://www.timescale.com/blog/cloudquery-on-u... \n", + "2 https://www.timescale.com/blog/how-a-data-scie... \n", + "3 https://www.timescale.com/blog/how-conserv-saf... \n", + "4 https://www.timescale.com/blog/how-messari-use... " + ] + }, + "execution_count": 111, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Load your CSV file into a pandas DataFrame\n", + "df = pd.read_csv('blog_posts_data.csv')\n", + "df.head()" + ] + }, + { + "attachments": {}, + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 1.1 Calculate cost of embedding data\n", + "It's usually a good idea to calculate how much creating embeddings for your selected content will cost.\n", + "We use a number of helper functions to calculate a cost estimate before creating the embeddings to help us avoid surprises.\n", + "\n", + "For this toy example, since we're using a small dataset, the total cost will be less than $0.01." + ] + }, + { + "cell_type": "code", + "execution_count": 112, + "metadata": {}, + "outputs": [], + "source": [ + "# Helper functions to help us create the embeddings\n", + "\n", + "# Helper func: calculate number of tokens\n", + "def num_tokens_from_string(string: str, encoding_name = \"cl100k_base\") -> int:\n", + " if not string:\n", + " return 0\n", + " # Returns the number of tokens in a text string\n", + " encoding = tiktoken.get_encoding(encoding_name)\n", + " num_tokens = len(encoding.encode(string))\n", + " return num_tokens\n", + "\n", + "# Helper function: calculate length of essay\n", + "def get_essay_length(essay):\n", + " word_list = essay.split()\n", + " num_words = len(word_list)\n", + " return num_words\n", + "\n", + "# Helper function: calculate cost of embedding num_tokens\n", + "# Just to check how much money we are saving!\n", + "# Assumes we're using the text-embedding-ada-002 model\n", + "def get_embedding_cost(num_tokens):\n", + " return num_tokens/1000*0.00002\n", + "\n", + "# Helper function: calculate total cost of embedding all content in the dataframe\n", + "def get_total_embeddings_cost():\n", + " total_tokens = 0\n", + " for i in range(len(df.index)):\n", + " text = df['content'][i]\n", + " token_len = num_tokens_from_string(text)\n", + " total_tokens = total_tokens + token_len\n", + " total_cost = get_embedding_cost(total_tokens)\n", + " return total_cost" + ] + }, + { + "cell_type": "code", + "execution_count": 113, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "estimated price to embed this content = $0.00120356\n" + ] + } + ], + "source": [ + "# quick check on total token amount for price estimation\n", + "total_cost = get_total_embeddings_cost()\n", + "print(\"estimated price to embed this content = $\" + str(total_cost))" + ] + }, + { + "attachments": {}, + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 1.2 Create smaller chunks of content\n", + "A Local Ollama server API has a limit to the maximum amount of tokens it create create an embedding for in a single request. To get around this limit we'll break up our text into smaller chunks. In general its a best practice to create embeddings of a certain size in order to get better retrieval. For our purposes, we'll aim for chunks of around 512 tokens each." + ] + }, + { + "attachments": {}, + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Note: If you prefer to skip this step, you can use use the provided file: blog_data_and_embeddings.csv which contains the data and embeddings that you'll generate in this step." + ] + }, + { + "cell_type": "code", + "execution_count": 114, + "metadata": {}, + "outputs": [], + "source": [ + "# list for chunked content and embeddings\n", + "new_list = []\n", + "# Split up the text into token sizes of around 512 tokens\n", + "for i in range(len(df.index)):\n", + " text = df['content'][i]\n", + " token_len = num_tokens_from_string(text)\n", + " if token_len <= 512:\n", + " new_list.append([df['title'][i], df['content'][i], df['url'][i], token_len])\n", + " else:\n", + " # add content to the new list in chunks\n", + " start = 0\n", + " ideal_token_size = 512\n", + " # 1 token ~ 3/4 of a word\n", + " ideal_size = int(ideal_token_size // (4/3))\n", + " end = ideal_size\n", + " #split text by spaces into words\n", + " words = text.split()\n", + "\n", + " #remove empty spaces\n", + " words = [x for x in words if x != ' ']\n", + "\n", + " total_words = len(words)\n", + " \n", + " #calculate iterations\n", + " chunks = total_words // ideal_size\n", + " if total_words % ideal_size != 0:\n", + " chunks += 1\n", + " \n", + " new_content = []\n", + " for j in range(chunks):\n", + " if end > total_words:\n", + " end = total_words\n", + " new_content = words[start:end]\n", + " new_content_string = ' '.join(new_content)\n", + " new_content_token_len = num_tokens_from_string(new_content_string)\n", + " if new_content_token_len > 0:\n", + " new_list.append([df['title'][i], new_content_string, df['url'][i], new_content_token_len])\n", + " start += ideal_size\n", + " end += ideal_size" + ] + }, + { + "cell_type": "code", + "execution_count": 115, + "metadata": {}, + "outputs": [], + "source": [ + "# Helper function: get embeddings for a text\n", + "import requests\n", + "\n", + "\n", + "def get_embeddings(text):\n", + "\n", + " url = f\"http://{OLLAMA_HOST}:11434/api/embeddings\"\n", + " \n", + " payload = {\n", + " \"model\": \"nomic-embed-text\",\n", + " \"prompt\": text.replace(\"\\n\", \" \")\n", + " }\n", + " \n", + " headers = {\n", + " \"Content-Type\": \"application/json\"\n", + " }\n", + " \n", + " response = requests.post(url, data=json.dumps(payload), headers=headers)\n", + " \n", + " if response.status_code == 200:\n", + " return response.json()[\"embedding\"]\n", + " else:\n", + " raise Exception(f\"Error: {response.status_code}, {response.text}\")\n" + ] + }, + { + "cell_type": "code", + "execution_count": 116, + "metadata": {}, + "outputs": [ + { + "ename": "ConnectionError", + "evalue": "HTTPConnectionPool(host='192.168.51.12', port=11434): Max retries exceeded with url: /api/embeddings (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mConnectionRefusedError\u001b[0m Traceback (most recent call last)", + "File \u001b[0;32m~/git/vector-cookbook/.venv/lib/python3.12/site-packages/urllib3/connection.py:199\u001b[0m, in \u001b[0;36mHTTPConnection._new_conn\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 198\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m--> 199\u001b[0m sock \u001b[38;5;241m=\u001b[39m \u001b[43mconnection\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mcreate_connection\u001b[49m\u001b[43m(\u001b[49m\n\u001b[1;32m 200\u001b[0m \u001b[43m \u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_dns_host\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mport\u001b[49m\u001b[43m)\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 201\u001b[0m \u001b[43m \u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mtimeout\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 202\u001b[0m \u001b[43m \u001b[49m\u001b[43msource_address\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43msource_address\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 203\u001b[0m \u001b[43m \u001b[49m\u001b[43msocket_options\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43msocket_options\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 204\u001b[0m \u001b[43m \u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 205\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m socket\u001b[38;5;241m.\u001b[39mgaierror \u001b[38;5;28;01mas\u001b[39;00m e:\n", + "File \u001b[0;32m~/git/vector-cookbook/.venv/lib/python3.12/site-packages/urllib3/util/connection.py:85\u001b[0m, in \u001b[0;36mcreate_connection\u001b[0;34m(address, timeout, source_address, socket_options)\u001b[0m\n\u001b[1;32m 84\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m---> 85\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m err\n\u001b[1;32m 86\u001b[0m \u001b[38;5;28;01mfinally\u001b[39;00m:\n\u001b[1;32m 87\u001b[0m \u001b[38;5;66;03m# Break explicitly a reference cycle\u001b[39;00m\n", + "File \u001b[0;32m~/git/vector-cookbook/.venv/lib/python3.12/site-packages/urllib3/util/connection.py:73\u001b[0m, in \u001b[0;36mcreate_connection\u001b[0;34m(address, timeout, source_address, socket_options)\u001b[0m\n\u001b[1;32m 72\u001b[0m sock\u001b[38;5;241m.\u001b[39mbind(source_address)\n\u001b[0;32m---> 73\u001b[0m \u001b[43msock\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mconnect\u001b[49m\u001b[43m(\u001b[49m\u001b[43msa\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 74\u001b[0m \u001b[38;5;66;03m# Break explicitly a reference cycle\u001b[39;00m\n", + "\u001b[0;31mConnectionRefusedError\u001b[0m: [Errno 111] Connection refused", + "\nThe above exception was the direct cause of the following exception:\n", + "\u001b[0;31mNewConnectionError\u001b[0m Traceback (most recent call last)", + "File \u001b[0;32m~/git/vector-cookbook/.venv/lib/python3.12/site-packages/urllib3/connectionpool.py:789\u001b[0m, in \u001b[0;36mHTTPConnectionPool.urlopen\u001b[0;34m(self, method, url, body, headers, retries, redirect, assert_same_host, timeout, pool_timeout, release_conn, chunked, body_pos, preload_content, decode_content, **response_kw)\u001b[0m\n\u001b[1;32m 788\u001b[0m \u001b[38;5;66;03m# Make the request on the HTTPConnection object\u001b[39;00m\n\u001b[0;32m--> 789\u001b[0m response \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_make_request\u001b[49m\u001b[43m(\u001b[49m\n\u001b[1;32m 790\u001b[0m \u001b[43m \u001b[49m\u001b[43mconn\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 791\u001b[0m \u001b[43m \u001b[49m\u001b[43mmethod\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 792\u001b[0m \u001b[43m \u001b[49m\u001b[43murl\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 793\u001b[0m \u001b[43m \u001b[49m\u001b[43mtimeout\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mtimeout_obj\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 794\u001b[0m \u001b[43m \u001b[49m\u001b[43mbody\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mbody\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 795\u001b[0m \u001b[43m \u001b[49m\u001b[43mheaders\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mheaders\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 796\u001b[0m \u001b[43m \u001b[49m\u001b[43mchunked\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mchunked\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 797\u001b[0m \u001b[43m \u001b[49m\u001b[43mretries\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mretries\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 798\u001b[0m \u001b[43m \u001b[49m\u001b[43mresponse_conn\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mresponse_conn\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 799\u001b[0m \u001b[43m \u001b[49m\u001b[43mpreload_content\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mpreload_content\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 800\u001b[0m \u001b[43m \u001b[49m\u001b[43mdecode_content\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mdecode_content\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 801\u001b[0m \u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mresponse_kw\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 802\u001b[0m \u001b[43m\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 804\u001b[0m \u001b[38;5;66;03m# Everything went great!\u001b[39;00m\n", + "File \u001b[0;32m~/git/vector-cookbook/.venv/lib/python3.12/site-packages/urllib3/connectionpool.py:495\u001b[0m, in \u001b[0;36mHTTPConnectionPool._make_request\u001b[0;34m(self, conn, method, url, body, headers, retries, timeout, chunked, response_conn, preload_content, decode_content, enforce_content_length)\u001b[0m\n\u001b[1;32m 494\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m--> 495\u001b[0m \u001b[43mconn\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mrequest\u001b[49m\u001b[43m(\u001b[49m\n\u001b[1;32m 496\u001b[0m \u001b[43m \u001b[49m\u001b[43mmethod\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 497\u001b[0m \u001b[43m \u001b[49m\u001b[43murl\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 498\u001b[0m \u001b[43m \u001b[49m\u001b[43mbody\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mbody\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 499\u001b[0m \u001b[43m \u001b[49m\u001b[43mheaders\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mheaders\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 500\u001b[0m \u001b[43m \u001b[49m\u001b[43mchunked\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mchunked\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 501\u001b[0m \u001b[43m \u001b[49m\u001b[43mpreload_content\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mpreload_content\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 502\u001b[0m \u001b[43m \u001b[49m\u001b[43mdecode_content\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mdecode_content\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 503\u001b[0m \u001b[43m \u001b[49m\u001b[43menforce_content_length\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43menforce_content_length\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 504\u001b[0m \u001b[43m \u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 506\u001b[0m \u001b[38;5;66;03m# We are swallowing BrokenPipeError (errno.EPIPE) since the server is\u001b[39;00m\n\u001b[1;32m 507\u001b[0m \u001b[38;5;66;03m# legitimately able to close the connection after sending a valid response.\u001b[39;00m\n\u001b[1;32m 508\u001b[0m \u001b[38;5;66;03m# With this behaviour, the received response is still readable.\u001b[39;00m\n", + "File \u001b[0;32m~/git/vector-cookbook/.venv/lib/python3.12/site-packages/urllib3/connection.py:441\u001b[0m, in \u001b[0;36mHTTPConnection.request\u001b[0;34m(self, method, url, body, headers, chunked, preload_content, decode_content, enforce_content_length)\u001b[0m\n\u001b[1;32m 440\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mputheader(header, value)\n\u001b[0;32m--> 441\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mendheaders\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 443\u001b[0m \u001b[38;5;66;03m# If we're given a body we start sending that in chunks.\u001b[39;00m\n", + "File \u001b[0;32m/usr/lib/python3.12/http/client.py:1331\u001b[0m, in \u001b[0;36mHTTPConnection.endheaders\u001b[0;34m(self, message_body, encode_chunked)\u001b[0m\n\u001b[1;32m 1330\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m CannotSendHeader()\n\u001b[0;32m-> 1331\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_send_output\u001b[49m\u001b[43m(\u001b[49m\u001b[43mmessage_body\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mencode_chunked\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mencode_chunked\u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m/usr/lib/python3.12/http/client.py:1091\u001b[0m, in \u001b[0;36mHTTPConnection._send_output\u001b[0;34m(self, message_body, encode_chunked)\u001b[0m\n\u001b[1;32m 1090\u001b[0m \u001b[38;5;28;01mdel\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_buffer[:]\n\u001b[0;32m-> 1091\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43msend\u001b[49m\u001b[43m(\u001b[49m\u001b[43mmsg\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1093\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m message_body \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[1;32m 1094\u001b[0m \n\u001b[1;32m 1095\u001b[0m \u001b[38;5;66;03m# create a consistent interface to message_body\u001b[39;00m\n", + "File \u001b[0;32m/usr/lib/python3.12/http/client.py:1035\u001b[0m, in \u001b[0;36mHTTPConnection.send\u001b[0;34m(self, data)\u001b[0m\n\u001b[1;32m 1034\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mauto_open:\n\u001b[0;32m-> 1035\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mconnect\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 1036\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n", + "File \u001b[0;32m~/git/vector-cookbook/.venv/lib/python3.12/site-packages/urllib3/connection.py:279\u001b[0m, in \u001b[0;36mHTTPConnection.connect\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 278\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21mconnect\u001b[39m(\u001b[38;5;28mself\u001b[39m) \u001b[38;5;241m-\u001b[39m\u001b[38;5;241m>\u001b[39m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[0;32m--> 279\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39msock \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_new_conn\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 280\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_tunnel_host:\n\u001b[1;32m 281\u001b[0m \u001b[38;5;66;03m# If we're tunneling it means we're connected to our proxy.\u001b[39;00m\n", + "File \u001b[0;32m~/git/vector-cookbook/.venv/lib/python3.12/site-packages/urllib3/connection.py:214\u001b[0m, in \u001b[0;36mHTTPConnection._new_conn\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 213\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mOSError\u001b[39;00m \u001b[38;5;28;01mas\u001b[39;00m e:\n\u001b[0;32m--> 214\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m NewConnectionError(\n\u001b[1;32m 215\u001b[0m \u001b[38;5;28mself\u001b[39m, \u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mFailed to establish a new connection: \u001b[39m\u001b[38;5;132;01m{\u001b[39;00me\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 216\u001b[0m ) \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;21;01me\u001b[39;00m\n\u001b[1;32m 218\u001b[0m \u001b[38;5;66;03m# Audit hooks are only available in Python 3.8+\u001b[39;00m\n", + "\u001b[0;31mNewConnectionError\u001b[0m: : Failed to establish a new connection: [Errno 111] Connection refused", + "\nThe above exception was the direct cause of the following exception:\n", + "\u001b[0;31mMaxRetryError\u001b[0m Traceback (most recent call last)", + "File \u001b[0;32m~/git/vector-cookbook/.venv/lib/python3.12/site-packages/requests/adapters.py:667\u001b[0m, in \u001b[0;36mHTTPAdapter.send\u001b[0;34m(self, request, stream, timeout, verify, cert, proxies)\u001b[0m\n\u001b[1;32m 666\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m--> 667\u001b[0m resp \u001b[38;5;241m=\u001b[39m \u001b[43mconn\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43murlopen\u001b[49m\u001b[43m(\u001b[49m\n\u001b[1;32m 668\u001b[0m \u001b[43m \u001b[49m\u001b[43mmethod\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mrequest\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mmethod\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 669\u001b[0m \u001b[43m \u001b[49m\u001b[43murl\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43murl\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 670\u001b[0m \u001b[43m \u001b[49m\u001b[43mbody\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mrequest\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mbody\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 671\u001b[0m \u001b[43m \u001b[49m\u001b[43mheaders\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mrequest\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mheaders\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 672\u001b[0m \u001b[43m \u001b[49m\u001b[43mredirect\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43;01mFalse\u001b[39;49;00m\u001b[43m,\u001b[49m\n\u001b[1;32m 673\u001b[0m \u001b[43m \u001b[49m\u001b[43massert_same_host\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43;01mFalse\u001b[39;49;00m\u001b[43m,\u001b[49m\n\u001b[1;32m 674\u001b[0m \u001b[43m \u001b[49m\u001b[43mpreload_content\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43;01mFalse\u001b[39;49;00m\u001b[43m,\u001b[49m\n\u001b[1;32m 675\u001b[0m \u001b[43m \u001b[49m\u001b[43mdecode_content\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43;01mFalse\u001b[39;49;00m\u001b[43m,\u001b[49m\n\u001b[1;32m 676\u001b[0m \u001b[43m \u001b[49m\u001b[43mretries\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mmax_retries\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 677\u001b[0m \u001b[43m \u001b[49m\u001b[43mtimeout\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mtimeout\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 678\u001b[0m \u001b[43m \u001b[49m\u001b[43mchunked\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mchunked\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 679\u001b[0m \u001b[43m \u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 681\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m (ProtocolError, \u001b[38;5;167;01mOSError\u001b[39;00m) \u001b[38;5;28;01mas\u001b[39;00m err:\n", + "File \u001b[0;32m~/git/vector-cookbook/.venv/lib/python3.12/site-packages/urllib3/connectionpool.py:843\u001b[0m, in \u001b[0;36mHTTPConnectionPool.urlopen\u001b[0;34m(self, method, url, body, headers, retries, redirect, assert_same_host, timeout, pool_timeout, release_conn, chunked, body_pos, preload_content, decode_content, **response_kw)\u001b[0m\n\u001b[1;32m 841\u001b[0m new_e \u001b[38;5;241m=\u001b[39m ProtocolError(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mConnection aborted.\u001b[39m\u001b[38;5;124m\"\u001b[39m, new_e)\n\u001b[0;32m--> 843\u001b[0m retries \u001b[38;5;241m=\u001b[39m \u001b[43mretries\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mincrement\u001b[49m\u001b[43m(\u001b[49m\n\u001b[1;32m 844\u001b[0m \u001b[43m \u001b[49m\u001b[43mmethod\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43murl\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43merror\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mnew_e\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43m_pool\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43m_stacktrace\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43msys\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mexc_info\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\u001b[43m[\u001b[49m\u001b[38;5;241;43m2\u001b[39;49m\u001b[43m]\u001b[49m\n\u001b[1;32m 845\u001b[0m \u001b[43m\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 846\u001b[0m retries\u001b[38;5;241m.\u001b[39msleep()\n", + "File \u001b[0;32m~/git/vector-cookbook/.venv/lib/python3.12/site-packages/urllib3/util/retry.py:519\u001b[0m, in \u001b[0;36mRetry.increment\u001b[0;34m(self, method, url, response, error, _pool, _stacktrace)\u001b[0m\n\u001b[1;32m 518\u001b[0m reason \u001b[38;5;241m=\u001b[39m error \u001b[38;5;129;01mor\u001b[39;00m ResponseError(cause)\n\u001b[0;32m--> 519\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m MaxRetryError(_pool, url, reason) \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;21;01mreason\u001b[39;00m \u001b[38;5;66;03m# type: ignore[arg-type]\u001b[39;00m\n\u001b[1;32m 521\u001b[0m log\u001b[38;5;241m.\u001b[39mdebug(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mIncremented Retry for (url=\u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;132;01m%s\u001b[39;00m\u001b[38;5;124m'\u001b[39m\u001b[38;5;124m): \u001b[39m\u001b[38;5;132;01m%r\u001b[39;00m\u001b[38;5;124m\"\u001b[39m, url, new_retry)\n", + "\u001b[0;31mMaxRetryError\u001b[0m: HTTPConnectionPool(host='192.168.51.12', port=11434): Max retries exceeded with url: /api/embeddings (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))", + "\nDuring handling of the above exception, another exception occurred:\n", + "\u001b[0;31mConnectionError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[116], line 4\u001b[0m\n\u001b[1;32m 2\u001b[0m \u001b[38;5;28;01mfor\u001b[39;00m i \u001b[38;5;129;01min\u001b[39;00m \u001b[38;5;28mrange\u001b[39m(\u001b[38;5;28mlen\u001b[39m(new_list)):\n\u001b[1;32m 3\u001b[0m text \u001b[38;5;241m=\u001b[39m new_list[i][\u001b[38;5;241m1\u001b[39m]\n\u001b[0;32m----> 4\u001b[0m embedding \u001b[38;5;241m=\u001b[39m \u001b[43mget_embeddings\u001b[49m\u001b[43m(\u001b[49m\u001b[43mtext\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 5\u001b[0m new_list[i]\u001b[38;5;241m.\u001b[39mappend(embedding)\n\u001b[1;32m 7\u001b[0m \u001b[38;5;66;03m# Create a new dataframe from the list\u001b[39;00m\n", + "Cell \u001b[0;32mIn[115], line 18\u001b[0m, in \u001b[0;36mget_embeddings\u001b[0;34m(text)\u001b[0m\n\u001b[1;32m 9\u001b[0m payload \u001b[38;5;241m=\u001b[39m {\n\u001b[1;32m 10\u001b[0m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mmodel\u001b[39m\u001b[38;5;124m\"\u001b[39m: \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mnomic-embed-text\u001b[39m\u001b[38;5;124m\"\u001b[39m,\n\u001b[1;32m 11\u001b[0m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mprompt\u001b[39m\u001b[38;5;124m\"\u001b[39m: text\u001b[38;5;241m.\u001b[39mreplace(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;130;01m\\n\u001b[39;00m\u001b[38;5;124m\"\u001b[39m, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124m \u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[1;32m 12\u001b[0m }\n\u001b[1;32m 14\u001b[0m headers \u001b[38;5;241m=\u001b[39m {\n\u001b[1;32m 15\u001b[0m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mContent-Type\u001b[39m\u001b[38;5;124m\"\u001b[39m: \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mapplication/json\u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[1;32m 16\u001b[0m }\n\u001b[0;32m---> 18\u001b[0m response \u001b[38;5;241m=\u001b[39m \u001b[43mrequests\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mpost\u001b[49m\u001b[43m(\u001b[49m\u001b[43murl\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mdata\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mjson\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mdumps\u001b[49m\u001b[43m(\u001b[49m\u001b[43mpayload\u001b[49m\u001b[43m)\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mheaders\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mheaders\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 20\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m response\u001b[38;5;241m.\u001b[39mstatus_code \u001b[38;5;241m==\u001b[39m \u001b[38;5;241m200\u001b[39m:\n\u001b[1;32m 21\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m response\u001b[38;5;241m.\u001b[39mjson()[\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124membedding\u001b[39m\u001b[38;5;124m\"\u001b[39m]\n", + "File \u001b[0;32m~/git/vector-cookbook/.venv/lib/python3.12/site-packages/requests/api.py:115\u001b[0m, in \u001b[0;36mpost\u001b[0;34m(url, data, json, **kwargs)\u001b[0m\n\u001b[1;32m 103\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21mpost\u001b[39m(url, data\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mNone\u001b[39;00m, json\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mNone\u001b[39;00m, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs):\n\u001b[1;32m 104\u001b[0m \u001b[38;5;250m \u001b[39m\u001b[38;5;124mr\u001b[39m\u001b[38;5;124;03m\"\"\"Sends a POST request.\u001b[39;00m\n\u001b[1;32m 105\u001b[0m \n\u001b[1;32m 106\u001b[0m \u001b[38;5;124;03m :param url: URL for the new :class:`Request` object.\u001b[39;00m\n\u001b[0;32m (...)\u001b[0m\n\u001b[1;32m 112\u001b[0m \u001b[38;5;124;03m :rtype: requests.Response\u001b[39;00m\n\u001b[1;32m 113\u001b[0m \u001b[38;5;124;03m \"\"\"\u001b[39;00m\n\u001b[0;32m--> 115\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mrequest\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mpost\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43murl\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mdata\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mdata\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mjson\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mjson\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m~/git/vector-cookbook/.venv/lib/python3.12/site-packages/requests/api.py:59\u001b[0m, in \u001b[0;36mrequest\u001b[0;34m(method, url, **kwargs)\u001b[0m\n\u001b[1;32m 55\u001b[0m \u001b[38;5;66;03m# By using the 'with' statement we are sure the session is closed, thus we\u001b[39;00m\n\u001b[1;32m 56\u001b[0m \u001b[38;5;66;03m# avoid leaving sockets open which can trigger a ResourceWarning in some\u001b[39;00m\n\u001b[1;32m 57\u001b[0m \u001b[38;5;66;03m# cases, and look like a memory leak in others.\u001b[39;00m\n\u001b[1;32m 58\u001b[0m \u001b[38;5;28;01mwith\u001b[39;00m sessions\u001b[38;5;241m.\u001b[39mSession() \u001b[38;5;28;01mas\u001b[39;00m session:\n\u001b[0;32m---> 59\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43msession\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mrequest\u001b[49m\u001b[43m(\u001b[49m\u001b[43mmethod\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mmethod\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43murl\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43murl\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m~/git/vector-cookbook/.venv/lib/python3.12/site-packages/requests/sessions.py:589\u001b[0m, in \u001b[0;36mSession.request\u001b[0;34m(self, method, url, params, data, headers, cookies, files, auth, timeout, allow_redirects, proxies, hooks, stream, verify, cert, json)\u001b[0m\n\u001b[1;32m 584\u001b[0m send_kwargs \u001b[38;5;241m=\u001b[39m {\n\u001b[1;32m 585\u001b[0m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mtimeout\u001b[39m\u001b[38;5;124m\"\u001b[39m: timeout,\n\u001b[1;32m 586\u001b[0m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mallow_redirects\u001b[39m\u001b[38;5;124m\"\u001b[39m: allow_redirects,\n\u001b[1;32m 587\u001b[0m }\n\u001b[1;32m 588\u001b[0m send_kwargs\u001b[38;5;241m.\u001b[39mupdate(settings)\n\u001b[0;32m--> 589\u001b[0m resp \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43msend\u001b[49m\u001b[43m(\u001b[49m\u001b[43mprep\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43msend_kwargs\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 591\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m resp\n", + "File \u001b[0;32m~/git/vector-cookbook/.venv/lib/python3.12/site-packages/requests/sessions.py:703\u001b[0m, in \u001b[0;36mSession.send\u001b[0;34m(self, request, **kwargs)\u001b[0m\n\u001b[1;32m 700\u001b[0m start \u001b[38;5;241m=\u001b[39m preferred_clock()\n\u001b[1;32m 702\u001b[0m \u001b[38;5;66;03m# Send the request\u001b[39;00m\n\u001b[0;32m--> 703\u001b[0m r \u001b[38;5;241m=\u001b[39m \u001b[43madapter\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43msend\u001b[49m\u001b[43m(\u001b[49m\u001b[43mrequest\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 705\u001b[0m \u001b[38;5;66;03m# Total elapsed time of the request (approximately)\u001b[39;00m\n\u001b[1;32m 706\u001b[0m elapsed \u001b[38;5;241m=\u001b[39m preferred_clock() \u001b[38;5;241m-\u001b[39m start\n", + "File \u001b[0;32m~/git/vector-cookbook/.venv/lib/python3.12/site-packages/requests/adapters.py:700\u001b[0m, in \u001b[0;36mHTTPAdapter.send\u001b[0;34m(self, request, stream, timeout, verify, cert, proxies)\u001b[0m\n\u001b[1;32m 696\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(e\u001b[38;5;241m.\u001b[39mreason, _SSLError):\n\u001b[1;32m 697\u001b[0m \u001b[38;5;66;03m# This branch is for urllib3 v1.22 and later.\u001b[39;00m\n\u001b[1;32m 698\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m SSLError(e, request\u001b[38;5;241m=\u001b[39mrequest)\n\u001b[0;32m--> 700\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mConnectionError\u001b[39;00m(e, request\u001b[38;5;241m=\u001b[39mrequest)\n\u001b[1;32m 702\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m ClosedPoolError \u001b[38;5;28;01mas\u001b[39;00m e:\n\u001b[1;32m 703\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mConnectionError\u001b[39;00m(e, request\u001b[38;5;241m=\u001b[39mrequest)\n", + "\u001b[0;31mConnectionError\u001b[0m: HTTPConnectionPool(host='192.168.51.12', port=11434): Max retries exceeded with url: /api/embeddings (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused'))" + ] + } + ], + "source": [ + "# Create embeddings for each piece of content\n", + "for i in range(len(new_list)):\n", + " text = new_list[i][1]\n", + " embedding = get_embeddings(text)\n", + " new_list[i].append(embedding)\n", + "\n", + "# Create a new dataframe from the list\n", + "df_new = pd.DataFrame(new_list, columns=['title', 'content', 'url', 'tokens', 'embeddings'])\n", + "df_new.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 59, + "metadata": {}, + "outputs": [], + "source": [ + "# Save the dataframe with embeddings as a CSV file\n", + "df_new.to_csv('blog_data_and_embeddings.csv', index=False)\n", + "# It may also be useful to save as a json file, but we won't use this in the tutorial\n", + "df_new.to_json('blog_data_and_embeddings.json') " + ] + }, + { + "attachments": {}, + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Part 2: Store embeddings with pgvector\n", + "In this section, we'll store our embeddings and associated metadata. \n", + "\n", + "We'll use PostgreSQL as a vector database, with the pgvector extension. \n", + "\n", + "You can create a cloud PostgreSQL database for free on [Timescale](https://console.cloud.timescale.com/signup) or use a local PostgreSQL database for this step." + ] + }, + { + "attachments": {}, + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 2.2 Connect to and configure your vector database\n" + ] + }, + { + "cell_type": "code", + "execution_count": 61, + "metadata": {}, + "outputs": [], + "source": [ + "# Connect to PostgreSQL database in Timescale using connection string\n", + "conn = psycopg2.connect(DATABASE_URL)\n", + "cur = conn.cursor()\n", + "\n", + "#install pgvector \n", + "cur.execute(\"CREATE EXTENSION IF NOT EXISTS vector;\")\n", + "conn.commit()\n", + "\n", + "#install pgvectorscale \n", + "cur.execute(\"CREATE EXTENSION IF NOT EXISTS vectorscale CASCADE;\")\n", + "conn.commit()\n", + "\n", + "# Register the vector type with psycopg2\n", + "register_vector(conn)\n", + "\n", + "# Create table to store embeddings and metadata\n", + "table_create_command = \"\"\"\n", + "CREATE TABLE IF NOT EXISTS embeddings (\n", + " id bigserial primary key, \n", + " title text,\n", + " url text,\n", + " content text,\n", + " tokens integer,\n", + " embedding vector(768)\n", + " );\n", + " \"\"\"\n", + "\n", + "cur.execute(table_create_command)\n", + "cur.close()\n", + "conn.commit()" + ] + }, + { + "attachments": {}, + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Optional: Uncomment and execute the following code only if you need to read the embeddings and metadata from the provided CSV file" + ] + }, + { + "cell_type": "code", + "execution_count": 62, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "\"\\ndf = pd.read_csv('blog_data_and_embeddings.csv')\\ntitles = df['title']\\nurls = df['url']\\ncontents = df['content']\\ntokens = df['tokens']\\nembeds = [list(map(float, ast.literal_eval(embed_str))) for embed_str in df['embeddings']]\\n\\ndf_new = pd.DataFrame({\\n 'title': titles,\\n 'url': urls,\\n 'content': contents,\\n 'tokens': tokens,\\n 'embeddings': embeds\\n})\\n\"" + ] + }, + "execution_count": 62, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Uncomment and execute this cell only if you need to read the blog data and embeddings from the provided CSV file\n", + "# Otherwise, skip to next cell\n", + "'''\n", + "df = pd.read_csv('blog_data_and_embeddings.csv')\n", + "titles = df['title']\n", + "urls = df['url']\n", + "contents = df['content']\n", + "tokens = df['tokens']\n", + "embeds = [list(map(float, ast.literal_eval(embed_str))) for embed_str in df['embeddings']]\n", + "\n", + "df_new = pd.DataFrame({\n", + " 'title': titles,\n", + " 'url': urls,\n", + " 'content': contents,\n", + " 'tokens': tokens,\n", + " 'embeddings': embeds\n", + "})\n", + "'''" + ] + }, + { + "attachments": {}, + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 2.3 Ingest and store vector data into PostgreSQL using pgvector\n", + "In this section, we'll batch insert our embeddings and metadata into PostgreSQL and also create an index to help speed up search." + ] + }, + { + "cell_type": "code", + "execution_count": 63, + "metadata": {}, + "outputs": [], + "source": [ + "register_vector(conn)\n", + "cur = conn.cursor()" + ] + }, + { + "cell_type": "code", + "execution_count": 64, + "metadata": {}, + "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", + "
titlecontenturltokensembeddings
0How to Build a Weather Station With Elixir, Ne...This is an installment of our “Community Membe...https://www.timescale.com/blog/how-to-build-a-...501[0.3103351891040802, 0.2868889272212982, -2.38...
1How to Build a Weather Station With Elixir, Ne...capture weather and environmental data. In all...https://www.timescale.com/blog/how-to-build-a-...512[0.4867981970310211, 1.2176804542541504, -3.53...
2How to Build a Weather Station With Elixir, Ne...command in their database migration:SELECT cre...https://www.timescale.com/blog/how-to-build-a-...374[0.6124968528747559, 1.4722315073013306, -3.97...
3CloudQuery on Using PostgreSQL for Cloud Asset...This is an installment of our “Community Membe...https://www.timescale.com/blog/cloudquery-on-u...519[-0.25388479232788086, 1.5728431940078735, -1....
4CloudQuery on Using PostgreSQL for Cloud Asset...Architecture with CloudQuery SDK- Writing plug...https://www.timescale.com/blog/cloudquery-on-u...511[1.7953698635101318, 2.0240869522094727, -2.54...
\n", + "
" + ], + "text/plain": [ + " title \\\n", + "0 How to Build a Weather Station With Elixir, Ne... \n", + "1 How to Build a Weather Station With Elixir, Ne... \n", + "2 How to Build a Weather Station With Elixir, Ne... \n", + "3 CloudQuery on Using PostgreSQL for Cloud Asset... \n", + "4 CloudQuery on Using PostgreSQL for Cloud Asset... \n", + "\n", + " content \\\n", + "0 This is an installment of our “Community Membe... \n", + "1 capture weather and environmental data. In all... \n", + "2 command in their database migration:SELECT cre... \n", + "3 This is an installment of our “Community Membe... \n", + "4 Architecture with CloudQuery SDK- Writing plug... \n", + "\n", + " url tokens \\\n", + "0 https://www.timescale.com/blog/how-to-build-a-... 501 \n", + "1 https://www.timescale.com/blog/how-to-build-a-... 512 \n", + "2 https://www.timescale.com/blog/how-to-build-a-... 374 \n", + "3 https://www.timescale.com/blog/cloudquery-on-u... 519 \n", + "4 https://www.timescale.com/blog/cloudquery-on-u... 511 \n", + "\n", + " embeddings \n", + "0 [0.3103351891040802, 0.2868889272212982, -2.38... \n", + "1 [0.4867981970310211, 1.2176804542541504, -3.53... \n", + "2 [0.6124968528747559, 1.4722315073013306, -3.97... \n", + "3 [-0.25388479232788086, 1.5728431940078735, -1.... \n", + "4 [1.7953698635101318, 2.0240869522094727, -2.54... " + ] + }, + "execution_count": 64, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Remind ourselves of the dataframe structure\n", + "df_new.head()" + ] + }, + { + "attachments": {}, + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Batch insert embeddings using psycopg2's ```execute_values()```" + ] + }, + { + "cell_type": "code", + "execution_count": 65, + "metadata": {}, + "outputs": [], + "source": [ + "#Batch insert embeddings and metadata from dataframe into PostgreSQL database\n", + "\n", + "# Prepare the list of tuples to insert\n", + "data_list = [(row['title'], row['url'], row['content'], int(row['tokens']), np.array(row['embeddings'])) for index, row in df_new.iterrows()]\n", + "# Use execute_values to perform batch insertion\n", + "execute_values(cur, \"INSERT INTO embeddings (title, url, content, tokens, embedding) VALUES %s\", data_list)\n", + "# Commit after we insert all embeddings\n", + "conn.commit()" + ] + }, + { + "attachments": {}, + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Sanity check by running some simple queries against the embeddings table" + ] + }, + { + "cell_type": "code", + "execution_count": 66, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Number of vector records in table: 129 \n", + "\n" + ] + } + ], + "source": [ + "cur.execute(\"SELECT COUNT(*) as cnt FROM embeddings;\")\n", + "num_records = cur.fetchone()[0]\n", + "print(\"Number of vector records in table: \", num_records,\"\\n\")\n", + "# Correct output should be 129" + ] + }, + { + "cell_type": "code", + "execution_count": 67, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "First record in table: [(1, 'How to Build a Weather Station With Elixir, Nerves, and TimescaleDB', 'https://www.timescale.com/blog/how-to-build-a-weather-station-with-elixir-nerves-and-timescaledb/', 'This is an installment of our “Community Member Spotlight” series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition,Alexander Koutmos, author of the Build a Weather Station with Elixir and Nerves book, joins us to share how he uses Grafana and TimescaleDB to store and visualize weather data collected from IoT sensors.About the teamThe bookBuild a Weather Station with Elixir and Nerveswas a joint effort between Bruce Tate, Frank Hunleth, and me.I have been writing software professionally for almost a decade and have been working primarily with Elixir since 2016. I currently maintain a few Elixir libraries onHexand also runStagira, a software consultancy company.Bruce Tateis a kayaker, programmer, and father of two from Chattanooga, Tennessee. He is the author of more than ten books and has been around Elixir from the beginning. He is the founder ofGroxio, a company that trains Elixir developers.Frank Hunlethis an embedded systems programmer, OSS maintainer, and Nerves core team member. When not in front of a computer, he loves running and spending time with his family.About the projectIn the Pragmatic Bookshelf book,Build a Weather Station with Elixir and Nerves, we take a project-based approach and guide the reader to create a Nerves-powered IoT weather station.For those unfamiliar with the Elixir ecosystem,Nervesis an IoT framework that allows you to build and deploy IoT applications on a wide array of embedded devices. At a high level, Nerves allows you to focus on building your project and takes care of a lot of the boilerplate associated with running Elixir on embedded devices.The goal of the book is to guide the reader through the process of building an end-to-end IoT solution for capturing, persisting, and visualizing weather data.Assembled weather station hooked up to development machine.One of the motivating factors for this book was to create a real-world project where readers could get hands-on experience with hardware without worrying too much about the nitty-gritty of soldering components together. Experimenting with hardware can often feel intimidating and confusing, but with Elixir and Nerves, we feel confident that even beginners get comfortable and productive quickly. As a result, in the book, we leverage a Raspberry Pi Zero W along with a few I2C enabled sensors to', 501, array([ 3.10335189e-01, 2.86888927e-01, -2.38160372e+00, -4.50779218e-03,\n", + " 1.96933270e+00, -3.56094033e-01, 2.79940218e-01, -1.28163248e-01,\n", + " -7.79648066e-01, -1.59093249e+00, -5.24521649e-01, 1.33137894e+00,\n", + " 6.13298535e-01, 1.46138459e-01, -3.82987857e-02, 1.36529237e-01,\n", + " -8.27261358e-02, -5.68086326e-01, 1.02249300e+00, 1.50810689e-01,\n", + " 9.85979795e-01, -2.09111357e+00, -4.80267256e-01, 6.41276598e-01,\n", + " 5.26054144e-01, 3.21726710e-01, 1.19966662e+00, -2.30505273e-01,\n", + " -3.66922230e-01, 3.96322638e-01, -4.22138870e-01, -1.17845452e+00,\n", + " -6.27008200e-01, -3.01867761e-02, 5.71757928e-02, -7.24135995e-01,\n", + " -4.00583386e-01, 1.52970254e-01, -2.40308300e-01, 1.30933022e+00,\n", + " -1.11114049e+00, -3.03874344e-01, 9.83213067e-01, -1.18521595e+00,\n", + " 1.20546341e+00, 7.66579866e-01, 7.99399376e-01, 6.03655614e-02,\n", + " 4.48943734e-01, -2.99085736e-01, 2.00556085e-01, -8.40371668e-01,\n", + " -1.39734328e-01, 3.06100138e-02, 7.96138585e-01, -1.10022092e+00,\n", + " -1.10506535e+00, 1.30507529e-01, 1.64814472e-01, 1.27240717e-02,\n", + " 1.77571744e-01, 1.84153950e+00, -6.78436875e-01, -2.37907261e-01,\n", + " 4.18409795e-01, 8.48712146e-01, 3.81365836e-01, 6.34592772e-01,\n", + " -1.67750120e-01, -7.43594319e-02, 8.55343580e-01, -3.65671128e-01,\n", + " 4.86021459e-01, 5.99527121e-01, 1.28006404e-02, -3.25632721e-01,\n", + " -1.12529323e-01, -7.61360154e-02, 2.77223855e-01, 6.74715757e-01,\n", + " 2.31945947e-01, -1.15036964e-01, 9.11555409e-01, 3.95815253e-01,\n", + " 1.52654743e+00, 7.09218442e-01, -2.53510885e-02, 2.83004671e-01,\n", + " -6.41325474e-01, 1.58174157e+00, -9.41791683e-02, 4.62243676e-01,\n", + " 7.79030442e-01, 1.75130934e-01, -3.40507440e-02, 7.11247325e-01,\n", + " 3.89957339e-01, 1.08917964e+00, -9.76933002e-01, 4.85767424e-01,\n", + " -7.32540786e-01, -1.57659844e-01, -3.78145367e-01, -4.97442842e-01,\n", + " 7.50279546e-01, 2.19950885e-01, 4.11778301e-01, -4.10197005e-02,\n", + " 7.97373950e-01, -5.66694081e-01, 3.65609258e-01, 3.65960211e-01,\n", + " -3.63130838e-01, 6.35785013e-02, 2.90678650e-01, 6.41998649e-02,\n", + " 4.63806123e-01, -8.69385153e-02, 3.48624587e-01, 2.55984575e-01,\n", + " 1.76465303e-01, 4.09976989e-01, -9.60043907e-01, 1.09961390e+00,\n", + " 3.25251609e-01, -2.60356307e-01, -7.73860455e-01, -1.25092044e-01,\n", + " -1.61986724e-02, 1.94995344e-01, 5.45538843e-01, -6.60703659e-01,\n", + " -1.06204057e+00, 1.97739601e-01, -7.62251377e-01, 1.10090685e+00,\n", + " -1.35776234e+00, -1.18879247e+00, 4.48228180e-01, 3.45890164e-01,\n", + " -4.51022476e-01, 2.20819101e-01, -8.72695684e-01, -3.96177381e-01,\n", + " 2.77553380e-01, -6.68819666e-01, -5.98688960e-01, -2.97592491e-01,\n", + " -4.41993177e-02, 1.97729841e-03, 3.59713472e-02, -8.00879747e-02,\n", + " -1.78385898e-01, 6.53947771e-01, 1.18442082e+00, -6.85015082e-01,\n", + " -5.38838133e-02, -2.14062288e-01, 7.03666985e-01, 2.36931846e-01,\n", + " 9.61912990e-01, 9.68585834e-02, -6.65174127e-01, 5.61143219e-01,\n", + " -1.34664214e+00, -9.54786718e-01, -6.19234622e-01, 9.76108551e-01,\n", + " 7.11102843e-01, 1.21922088e+00, -1.26760352e+00, -3.61058921e-01,\n", + " -5.91879487e-01, -2.91142225e-01, 1.89998984e-01, -7.88912773e-01,\n", + " -4.66928899e-01, 1.03852585e-01, 1.19264972e+00, -6.43402517e-01,\n", + " -1.50188329e-02, 1.14014216e-01, -1.10000521e-01, 1.25694484e-01,\n", + " -7.57576942e-01, -3.26162100e-01, 5.63926399e-01, 2.48949528e-01,\n", + " -7.04322338e-01, -2.60889977e-01, -3.37255508e-01, 1.64950043e-01,\n", + " -1.27309227e+00, -4.63620096e-01, -1.18839860e-01, 8.74208808e-02,\n", + " -1.21965080e-01, 4.71131325e-01, 8.24810505e-01, -2.16221064e-01,\n", + " 6.98446870e-01, -8.74199748e-01, -7.36498058e-01, 1.48032933e-01,\n", + " -4.54250842e-01, 8.97819400e-02, 4.55132842e-01, -2.79605031e-01,\n", + " 6.98236078e-02, -3.70857060e-01, 9.06013966e-01, 3.23112160e-01,\n", + " -6.53161108e-01, -1.03827441e+00, 4.18119073e-01, -1.91379488e-01,\n", + " 4.05120969e-01, -9.08538699e-01, -7.03997910e-03, 2.06402555e-01,\n", + " 3.17134649e-01, -2.00568765e-01, 1.26469457e+00, 3.73573720e-01,\n", + " 8.58528197e-01, 1.15314245e-01, -1.20087075e+00, -4.32054222e-01,\n", + " -1.17040843e-01, 4.54423040e-01, 6.89556599e-01, -1.81115299e-01,\n", + " 1.49729824e+00, -1.30256742e-01, 1.19222477e-01, 7.14553714e-01,\n", + " -4.81294990e-01, 4.96902354e-02, -6.68332577e-01, -2.94778734e-01,\n", + " -5.69536328e-01, 3.76868397e-01, 4.78841811e-02, -1.67694449e-01,\n", + " -1.01514864e+00, -4.70893800e-01, 2.79599428e-01, 3.13738227e-01,\n", + " 4.08200681e-01, 4.15253699e-01, -2.03206748e-01, 1.96845643e-02,\n", + " -3.20451230e-01, 1.82095742e+00, -5.31483829e-01, -8.42210174e-01,\n", + " 2.70094365e-01, 5.69509268e-01, -3.07506323e-01, -1.19304621e+00,\n", + " 4.41898018e-01, -1.08807397e+00, -3.07746083e-01, 1.86654091e-01,\n", + " 4.31878626e-01, 3.05666029e-01, -2.48096690e-01, 4.98393595e-01,\n", + " -1.16379574e-01, -9.13677156e-01, 3.16327691e-01, 2.06450507e-01,\n", + " 2.20945925e-02, 8.35008621e-01, 9.96142328e-02, 1.70422614e-01,\n", + " 1.28232205e+00, 4.71352667e-01, 3.89367901e-03, -2.02015802e-01,\n", + " 3.85281682e-01, 4.31773812e-02, -8.15514803e-01, 4.50724602e-01,\n", + " -2.78738916e-01, 6.18175030e-01, -5.65993115e-02, -1.25050557e+00,\n", + " 7.41178811e-01, -3.95379782e-01, 2.10460097e-01, -2.62759864e-01,\n", + " -1.20818466e-01, -3.22102249e-01, 5.38493276e-01, -3.13780993e-01,\n", + " 3.68338972e-01, -4.87277135e-02, 1.23689497e+00, 4.94575202e-01,\n", + " 1.11196041e+00, 5.89561939e-01, 1.50077558e+00, 2.32153803e-01,\n", + " -6.34172633e-02, -1.56791449e+00, 1.38448834e-01, -1.01343431e-01,\n", + " -2.12953031e-01, 5.25598824e-01, -3.66659790e-01, -5.25116503e-01,\n", + " -6.05430245e-01, 8.98575008e-01, -8.99078310e-01, 3.11793029e-01,\n", + " -3.75210010e-02, 2.31952351e-02, 5.21154031e-02, 5.17837524e-01,\n", + " 6.39241219e-01, -7.17691839e-01, 1.78207949e-01, -1.14785707e+00,\n", + " 7.21884489e-01, 1.23385549e+00, 7.58623481e-02, 2.72313338e-02,\n", + " -9.05289292e-01, -7.15678036e-02, 7.74061382e-02, 7.14361429e-01,\n", + " 6.16500556e-01, -2.41999090e-01, -1.37480807e+00, -5.11068225e-01,\n", + " -1.09548295e+00, 4.41604972e-01, -5.06253839e-01, 1.53323710e+00,\n", + " 1.20221329e+00, -3.99587095e-01, 2.69109905e-01, -7.70281732e-01,\n", + " -2.47197688e-01, -3.19218785e-01, -5.98318458e-01, 3.75390589e-01,\n", + " -1.20621234e-01, -1.20104277e+00, -9.53517854e-02, -2.01365009e-01,\n", + " -4.91601288e-01, 1.87625103e-02, 7.20174670e-01, -5.34375489e-01,\n", + " -1.84993982e+00, 5.95543742e-01, -4.76394832e-01, 1.88531876e-01,\n", + " -1.39092833e-01, 5.11111736e-01, 1.10421073e+00, -3.44119877e-01,\n", + " 5.92197478e-01, -5.26170194e-01, -4.78286371e-02, 6.40788078e-01,\n", + " 9.43916917e-01, -3.63890111e-01, -4.26196247e-01, 4.62253124e-01,\n", + " -7.56551504e-01, 9.33934867e-01, 3.20896387e-01, 3.73984575e-01,\n", + " -7.62197495e-01, -1.12228572e+00, -8.42434585e-01, 1.62219965e+00,\n", + " -3.70888293e-01, -8.50254953e-01, 2.97582507e-01, 1.53985590e-01,\n", + " 3.89778882e-01, -1.02309012e+00, 3.29171419e-01, -1.97730362e-02,\n", + " 1.87389869e-02, 3.43855113e-01, -3.21866989e-01, -8.17336142e-01,\n", + " -3.27856869e-01, -4.97308224e-01, -2.38891855e-01, -5.36770225e-01,\n", + " 4.16845500e-01, -5.72186470e-01, -3.07100832e-01, 6.92688107e-01,\n", + " -6.08661175e-01, -8.38025212e-01, 1.17105627e+00, -5.37166633e-02,\n", + " -3.03540319e-01, 6.73330665e-01, 2.05549255e-01, 7.53829718e-01,\n", + " 1.26448166e+00, 5.29081285e-01, -5.13344407e-01, 1.07116961e+00,\n", + " -5.00329018e-01, -7.16763437e-01, 4.57891196e-01, 1.51049376e-01,\n", + " 8.86803627e-01, -4.00881261e-01, -5.15151083e-01, 1.34010911e-01,\n", + " -4.58311230e-01, 1.08393049e+00, 2.58070529e-01, -4.94472384e-01,\n", + " -8.09985816e-01, 1.27305090e-02, 2.76493877e-01, 4.53080356e-01,\n", + " 1.31680220e-01, -5.42292893e-01, -1.32262662e-01, -2.94546098e-01,\n", + " 1.46406388e+00, 1.59912512e-01, -1.75457180e-01, -2.72031948e-02,\n", + " 8.43105733e-01, 6.32843435e-01, -9.53816116e-01, 2.55033135e-01,\n", + " 3.92590016e-01, -1.06156938e-01, -2.48218179e-01, -2.73586303e-01,\n", + " -2.55842268e-01, 1.25309813e+00, 5.94766557e-01, -2.35340353e-02,\n", + " 1.24871105e-01, 3.50286156e-01, 6.98212087e-01, -2.28488535e-01,\n", + " 4.79110003e-01, 1.32224932e-01, 9.25992966e-01, -3.80152911e-01,\n", + " 1.78722933e-01, 4.51548308e-01, 6.77823901e-01, 3.58199745e-01,\n", + " 9.20640156e-02, -1.78591087e-01, -6.35410547e-01, -2.83833593e-01,\n", + " 3.43546778e-01, 4.50709432e-01, -3.65184456e-01, 1.34167597e-01,\n", + " 4.77789760e-01, -1.83592811e-02, -9.95114326e-01, -1.42555863e-01,\n", + " 6.01534247e-01, 1.52604401e+00, -7.17158020e-01, -2.86818087e-01,\n", + " -1.34130165e-01, 1.50991932e-01, -1.98646665e-01, 6.24604106e-01,\n", + " -6.75190538e-02, 1.34500638e-01, -1.05990934e+00, -7.97726929e-01,\n", + " 1.41772175e+00, -5.62025309e-01, -7.29325652e-01, 4.79858443e-02,\n", + " -9.29928124e-02, -3.98656487e-01, 1.48524964e+00, 1.20971346e+00,\n", + " 5.79425693e-01, -2.91417181e-01, -2.79930204e-01, 3.13729972e-01,\n", + " -5.43156385e-01, -1.68345869e-03, 1.33509085e-01, 9.42026734e-01,\n", + " 3.95865411e-01, 9.63648021e-01, 4.28700030e-01, 7.39268243e-01,\n", + " 4.52517658e-01, -1.51308322e+00, -4.76183504e-01, -8.92344594e-01,\n", + " -4.66098636e-01, 4.95790452e-01, -1.60235095e+00, 2.01353773e-01,\n", + " 1.38676375e-01, 2.42718756e-01, 2.18252480e-01, 5.19568250e-02,\n", + " 2.13902265e-01, -1.44065470e-01, -1.41938198e+00, 9.75011349e-01,\n", + " -4.38945204e-01, -1.46105444e+00, 5.02974093e-01, -3.29941392e-01,\n", + " -1.49422944e+00, 9.98552799e-01, -1.31522310e+00, -8.02987814e-01,\n", + " 1.07840228e+00, -9.16137621e-02, 5.69501042e-01, 3.69019471e-02,\n", + " -6.50289416e-01, -1.22978902e+00, -2.26431176e-01, 4.98921931e-01,\n", + " -4.72680241e-01, -4.49007392e-01, 1.16538155e+00, 9.39943850e-01,\n", + " 2.63445139e-01, -5.24768978e-02, 8.45893994e-02, 1.09709024e+00,\n", + " 4.74105403e-03, -2.56085187e-01, 6.99932396e-01, 1.09001303e+00,\n", + " -6.74272835e-01, -1.65475595e+00, 1.08505535e+00, -1.61359876e-01,\n", + " 3.97569120e-01, -9.45682749e-02, -2.18481377e-01, -8.56479168e-01,\n", + " -6.29908204e-01, -5.16598284e-01, -8.08531269e-02, -6.83460712e-01,\n", + " 2.59983599e-01, 9.35496092e-01, 2.77893752e-01, 5.90947449e-01,\n", + " 1.40849382e-01, 3.99411976e-01, 4.00690109e-01, 2.82584429e-01,\n", + " -3.86723578e-02, 2.29845285e-01, 3.70993644e-01, -6.01439953e-01,\n", + " -4.01297025e-02, -4.58258808e-01, 2.67780989e-01, -6.22844100e-01,\n", + " 4.29608077e-01, 1.01443458e+00, 1.10868633e-01, -6.31690979e-01,\n", + " -1.04645081e-01, 9.68089223e-01, 2.63617784e-02, -9.86678079e-02,\n", + " 8.65777969e-01, 4.65649933e-01, -3.15937400e-01, 3.25555414e-01,\n", + " 4.64801878e-01, -8.15103352e-01, -4.81384397e-01, -7.72686422e-01,\n", + " -5.51546693e-01, -2.02877685e-01, -4.61912781e-01, -4.00119841e-01,\n", + " -7.53123045e-01, -1.46291769e+00, -1.06945431e+00, 2.13709980e-01,\n", + " 4.81040105e-02, -4.98874128e-01, 2.25305796e-01, -8.23138773e-01,\n", + " -3.73526692e-01, -4.14451584e-03, 4.23361778e-01, 1.14345208e-01,\n", + " -1.35967538e-01, -9.43628192e-01, 3.35873336e-01, -2.97540784e-01,\n", + " -6.24651134e-01, -1.51367164e+00, 8.69238377e-01, -9.93542150e-02,\n", + " 1.06757545e+00, -1.26669383e+00, -1.63202539e-01, -1.06341660e+00,\n", + " 2.15132922e-01, -5.55318594e-01, -2.13240564e-01, -2.11268291e-01,\n", + " 7.08531976e-01, 7.31981024e-02, 1.43801093e-01, 6.74532950e-02,\n", + " 5.31775832e-01, 9.52447534e-01, -6.45368516e-01, 4.23786700e-01,\n", + " -3.50460768e-01, -5.97222596e-02, -2.00091124e-01, -5.92729390e-01,\n", + " 9.55543697e-01, -1.20405272e-01, 6.44138634e-01, 1.46284509e+00,\n", + " 1.29249215e+00, -2.13457018e-01, -1.02447724e+00, 5.89765370e-01,\n", + " -1.86796814e-01, 4.63388264e-01, 5.00490665e-01, 9.49362040e-01,\n", + " 7.03515485e-04, -5.74647486e-01, 6.80427790e-01, 9.81938958e-01,\n", + " 1.07482207e+00, -1.17012553e-01, -5.15637159e-01, -2.32291609e-01,\n", + " -2.41061047e-01, -9.04393435e-01, -8.25333655e-01, -7.21423447e-01,\n", + " 1.40486360e-01, -5.71629941e-01, -5.67999661e-01, -8.80608559e-02,\n", + " -4.37998176e-01, 6.00544393e-01, 9.76056755e-02, -1.14796728e-01,\n", + " -1.10525715e+00, -9.71842855e-02, -3.95480633e-01, 2.79468030e-01,\n", + " -5.92318714e-01, -3.38696986e-01, 2.47762010e-01, 1.68340281e-01,\n", + " 4.61049110e-01, -3.76068890e-01, -7.61016130e-01, -4.50395286e-01,\n", + " 1.28811926e-01, -7.69393623e-01, 7.30106950e-01, 9.93878394e-02,\n", + " -8.90489280e-01, 4.44472373e-01, 1.21365380e+00, -1.74561128e-01,\n", + " -7.77498662e-01, -8.90356481e-01, -4.29177612e-01, -3.54896545e-01,\n", + " 3.50621164e-01, -3.98617297e-01, 5.24519086e-02, 7.45636746e-02,\n", + " -2.07432672e-01, 3.05551946e-01, -5.57172537e-01, -4.24011983e-03,\n", + " 6.08812809e-01, -2.43026704e-01, 8.58951807e-01, 6.78091764e-01,\n", + " -6.56070054e-01, -9.37965810e-02, -7.12474287e-02, -4.07844514e-01,\n", + " 2.89482296e-01, 2.39613771e-01, 1.48295015e-02, 8.62273812e-01,\n", + " -2.12103844e-01, -1.77193016e-01, -8.08268964e-01, 6.99492693e-01,\n", + " -1.00516605e+00, 3.40545952e-01, -3.61189485e-01, 8.45536768e-01,\n", + " -2.12521389e-01, -3.68092477e-01, -1.27232814e+00, 3.62938829e-02,\n", + " 7.63842762e-02, -2.49973595e-01, 5.65190852e-01, -5.90284348e-01,\n", + " 9.02926207e-01, -4.23730135e-01, 7.88666159e-02, 5.08683145e-01,\n", + " -4.08416301e-01, 6.98823214e-01, -1.22634411e+00, 3.59098554e-01,\n", + " 7.08903611e-01, -2.28493735e-01, -1.45619047e+00, 7.00731650e-02,\n", + " -7.95781910e-01, 6.26435280e-02, -1.17999125e+00, 2.08505839e-01,\n", + " -1.25759184e-01, 4.91518140e-01, 9.50848684e-02, 6.30941451e-01,\n", + " 5.09109855e-01, -3.80457520e-01, 2.95254350e-01, 3.04597348e-01,\n", + " -1.05674338e+00, 1.36853203e-01, 6.11732721e-01, -3.36436272e-01,\n", + " -2.25000903e-01, 5.88680983e-01, 1.02135861e+00, -5.79367653e-02,\n", + " 1.47468781e+00, -1.87312469e-01, -4.29295748e-01, 6.69702828e-01,\n", + " -4.72641468e-01, -9.50408220e-01, -7.57978439e-01, 3.86666805e-02],\n", + " dtype=float32))]\n" + ] + } + ], + "source": [ + "# print the first record in the table, for sanity-checking\n", + "cur.execute(\"SELECT * FROM embeddings LIMIT 1;\")\n", + "records = cur.fetchall()\n", + "print(\"First record in table: \", records)" + ] + }, + { + "attachments": {}, + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Create index on embedding column for faster cosine similarity comparison" + ] + }, + { + "cell_type": "code", + "execution_count": 68, + "metadata": {}, + "outputs": [], + "source": [ + "# Create an index on the data for faster retrieval\n", + "# this isn't really needed for 129 vectors, but it shows the usage for larger datasets\n", + "# Note: always create this type of index after you have data already inserted into the DB\n", + "\n", + "# for different tuning suggestions check this: https://github.com/timescale/pgvectorscale?tab=readme-ov-file#tuning\n", + "cur.execute('CREATE INDEX embedding_idx ON embeddings USING diskann (embedding);')\n", + "conn.commit()" + ] + }, + { + "attachments": {}, + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Part 3: Nearest Neighbor Search using pgvector\n", + "\n", + "In this final part of the tutorial, we will query our embeddings table. \n", + "\n", + "We'll showcase an example of RAG: Retrieval Augmented Generation, where we'll retrieve relevant data from our vector database and give it to the LLM as context to use when it generates a response to a prompt." + ] + }, + { + "cell_type": "code", + "execution_count": 69, + "metadata": {}, + "outputs": [], + "source": [ + "import requests\n", + "import json\n", + "\n", + "def get_completion_from_messages(messages, model=\"llama3.2:latest\", temperature=0, max_tokens=1000):\n", + " # Ollama API endpoint\n", + " url = f\"http://{OLLAMA_HOST}:11434/api/generate\"\n", + " \n", + " # Prepare the prompt\n", + " prompt = \"\"\n", + " for message in messages:\n", + " role = message[\"role\"]\n", + " content = message[\"content\"]\n", + " prompt += f\"{role.capitalize()}: {content}\\n\"\n", + " \n", + " # Prepare the request payload\n", + " payload = {\n", + " \"model\": model,\n", + " \"prompt\": prompt,\n", + " \"stream\": False,\n", + " \"temperature\": temperature,\n", + " \"max_tokens\": max_tokens\n", + " }\n", + " \n", + " # Send the request to Ollama\n", + " response = requests.post(url, json=payload)\n", + " \n", + " if response.status_code == 200:\n", + " result = json.loads(response.text)\n", + " return result[\"response\"]\n", + " else:\n", + " raise Exception(f\"Error: {response.status_code}, {response.text}\")\n" + ] + }, + { + "cell_type": "code", + "execution_count": 70, + "metadata": {}, + "outputs": [], + "source": [ + "# Helper function: Get top 3 most similar documents from the database\n", + "def get_top3_similar_docs(query_embedding, conn):\n", + " embedding_array = np.array(query_embedding)\n", + " # Register pgvector extension\n", + " register_vector(conn)\n", + " cur = conn.cursor()\n", + " # Get the top 3 most similar documents using the KNN <=> operator\n", + " cur.execute(\"SELECT content FROM embeddings ORDER BY embedding <=> %s LIMIT 3\", (embedding_array,))\n", + " top3_docs = cur.fetchall()\n", + " return top3_docs" + ] + }, + { + "attachments": {}, + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 3.1 Define a prompt for the LLM\n", + "Here we'll define the prompt we want the LLM to provide a reponse to.\n", + "\n", + "We've picked an example relevant to the blog post data stored in the database." + ] + }, + { + "cell_type": "code", + "execution_count": 71, + "metadata": {}, + "outputs": [], + "source": [ + "# Question about Timescale we want the model to answer\n", + "input = \"How is Timescale used in IoT?\"" + ] + }, + { + "cell_type": "code", + "execution_count": 72, + "metadata": {}, + "outputs": [], + "source": [ + "# Function to process input with retrieval of most similar documents from the database\n", + "def process_input_with_retrieval(user_input):\n", + " delimiter = \"```\"\n", + "\n", + " #Step 1: Get documents related to the user input from database\n", + " related_docs = get_top3_similar_docs(get_embeddings(user_input), conn)\n", + "\n", + " # Step 2: Get completion from Ollama API\n", + " # Set system message to help set appropriate tone and context for model\n", + " system_message = f\"\"\"\n", + " You are a friendly chatbot. \\\n", + " You can answer questions about timescaledb, its features and its use cases. \\\n", + " You respond in a concise, technically credible tone. \\\n", + " \"\"\"\n", + "\n", + " # Prepare messages to pass to model\n", + " # We use a delimiter to help the model understand the where the user_input starts and ends\n", + " messages = [\n", + " {\"role\": \"system\", \"content\": system_message},\n", + " {\"role\": \"user\", \"content\": f\"{delimiter}{user_input}{delimiter}\"},\n", + " {\"role\": \"assistant\", \"content\": f\"Relevant Timescale case studies information: \\n {related_docs[0][0]} \\n {related_docs[1][0]} {related_docs[2][0]}\"} \n", + " ]\n", + "\n", + " final_response = get_completion_from_messages(messages)\n", + " return final_response" + ] + }, + { + "cell_type": "code", + "execution_count": 73, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "How is Timescale used in IoT?\n", + "TimescaleDB is particularly well-suited for IoT projects due to its ability to efficiently handle large amounts of time-stamped sensor data. By leveraging TimescaleDB's performance capabilities, you can reduce latency in queries and improve overall system responsiveness.\n", + "\n", + "In the context of IoT, TimescaleDB can be used to store and analyze sensor data from various sources, such as temperature, humidity, pressure, or other environmental factors. The database's ability to compress and aggregate data helps keep table sizes in check, ensuring optimal performance even with growing data volumes.\n", + "\n", + "Some potential use cases for TimescaleDB in IoT include:\n", + "\n", + "1. Real-time monitoring of environmental conditions\n", + "2. Predictive maintenance for industrial equipment\n", + "3. Analyzing sensor data from smart cities or buildings\n", + "\n", + "By utilizing TimescaleDB's features and capabilities, you can build efficient and scalable solutions that cater to the unique demands of IoT applications.\n", + "\n", + "Would you like to know more about TimescaleDB's performance characteristics or how it compares to other time-series databases?\n" + ] + } + ], + "source": [ + "response = process_input_with_retrieval(input)\n", + "print(input)\n", + "print(response)" + ] + }, + { + "cell_type": "code", + "execution_count": 74, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Tell me about Edeva and Hopara. How do they use Timescale?\n", + "Edeva and Hopara are two companies that have successfully implemented TimescaleDB to manage their time-series data. Here's a brief overview of how they use Timescale:\n", + "\n", + "**Edeva**\n", + "\n", + "Edeva uses TimescaleDB to store and analyze traffic data from their dynamic speed bumps, which contain hundreds of millions of records. They create a materialized view using continuous aggregations, which allows them to efficiently query and visualize their data.\n", + "\n", + "The materialized view uses the `timescaledb_experimental.time_bucket_ng` function to bucket time-series data by month, and then applies aggregation functions to calculate percentiles of vehicle speed. This allows Edeva to quickly fetch data for graphs and maps in their analytics platform, EdevaLive.\n", + "\n", + "**Hopara**\n", + "\n", + "Hopara uses TimescaleDB as the backend database for their IoT project, which involves monitoring temperature and humidity sensors. They connect to TimescaleDB using PHP and Yii 2, and use Qlik Sense for business analytics.\n", + "\n", + "Hopara has implemented a data lake integration with TimescaleDB, which allows them to reduce the amount of raw data stored in the database. This integration enables them to efficiently query and analyze their time-series data without overloading the system with too much data.\n", + "\n", + "Both Edeva and Hopara have found that using TimescaleDB has greatly improved their ability to work with time-series data, and they are excited to continue building more graphs and map applications using the platform.\n" + ] + } + ], + "source": [ + "# We can also ask the model questions about specific documents in the database\n", + "input_2 = \"Tell me about Edeva and Hopara. How do they use Timescale?\"\n", + "response_2 = process_input_with_retrieval(input_2)\n", + "print(input_2)\n", + "print(response_2)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": ".venv", + "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.12.3" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/ollama_pgvector_helloworld/requirements.txt b/ollama_pgvector_helloworld/requirements.txt new file mode 100644 index 0000000..e250531 --- /dev/null +++ b/ollama_pgvector_helloworld/requirements.txt @@ -0,0 +1,6 @@ +pandas +numpy +tiktoken +psycopg2-binary +pgvector +python-dotenv diff --git a/openai_pgvector_helloworld/blog_data_and_embeddings.csv b/openai_pgvector_helloworld/blog_data_and_embeddings.csv deleted file mode 100644 index c21fa3a..0000000 --- a/openai_pgvector_helloworld/blog_data_and_embeddings.csv +++ /dev/null @@ -1,130 +0,0 @@ -title,content,url,tokens,embeddings -"How to Build a Weather Station With Elixir, Nerves, and TimescaleDB","This is an installment of our “Community Member Spotlight” series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition,Alexander Koutmos, author of the Build a Weather Station with Elixir and Nerves book, joins us to share how he uses Grafana and TimescaleDB to store and visualize weather data collected from IoT sensors.About the teamThe bookBuild a Weather Station with Elixir and Nerveswas a joint effort between Bruce Tate, Frank Hunleth, and me.I have been writing software professionally for almost a decade and have been working primarily with Elixir since 2016. I currently maintain a few Elixir libraries onHexand also runStagira, a software consultancy company.Bruce Tateis a kayaker, programmer, and father of two from Chattanooga, Tennessee. He is the author of more than ten books and has been around Elixir from the beginning. He is the founder ofGroxio, a company that trains Elixir developers.Frank Hunlethis an embedded systems programmer, OSS maintainer, and Nerves core team member. When not in front of a computer, he loves running and spending time with his family.About the projectIn the Pragmatic Bookshelf book,Build a Weather Station with Elixir and Nerves, we take a project-based approach and guide the reader to create a Nerves-powered IoT weather station.For those unfamiliar with the Elixir ecosystem,Nervesis an IoT framework that allows you to build and deploy IoT applications on a wide array of embedded devices. At a high level, Nerves allows you to focus on building your project and takes care of a lot of the boilerplate associated with running Elixir on embedded devices.The goal of the book is to guide the reader through the process of building an end-to-end IoT solution for capturing, persisting, and visualizing weather data.Assembled weather station hooked up to development machine.One of the motivating factors for this book was to create a real-world project where readers could get hands-on experience with hardware without worrying too much about the nitty-gritty of soldering components together. Experimenting with hardware can often feel intimidating and confusing, but with Elixir and Nerves, we feel confident that even beginners get comfortable and productive quickly. As a result, in the book, we leverage a Raspberry Pi Zero W along with a few I2C enabled sensors to",https://www.timescale.com/blog/how-to-build-a-weather-station-with-elixir-nerves-and-timescaledb/,501,"[-0.015646429732441902, 0.00886395014822483, 0.008715273812413216, -0.026379454880952835, 0.04576403647661209, 0.0017416387563571334, -0.010010883212089539, 0.014811009168624878, -0.05593067780137062, -0.0042337398044764996, 0.04627378284931183, 0.0006354149663820863, -0.032935380935668945, -0.027937019243836403, 0.04703840613365173, 0.04400824010372162, 0.009635651484131813, -0.019455378875136375, -0.04344185069203377, 0.0310946237295866, -0.02814941294491291, -0.017671260982751846, 0.043810002505779266, -0.04114798456430435, -0.001835446571931243, -0.024113908410072327, -0.029622018337249756, 0.06796639412641525, 0.045933954417705536, -0.032340675592422485, -0.002100940328091383, -0.024623656645417213, -0.016057059168815613, 0.006676281802356243, 0.020913824439048767, 0.010180799290537834, 0.03995857387781143, -0.04964378476142883, 0.0008544472511857748, 0.03831605240702629, -0.015419875271618366, -0.04686849191784859, -0.012418026104569435, 0.036730170249938965, -0.013515399768948555, 0.00013639740063808858, -0.016991598531603813, 0.02006424590945244, 0.03763638809323311, 0.05338193476200104, -0.028871556743979454, 0.02136693336069584, -0.006194853223860264, -0.03503100946545601, -0.009975483641028404, -0.028177732601761818, -0.056242190301418304, 0.03828773275017738, -0.00852411799132824, 0.00238236365839839, 0.061792775988578796, -0.040751516819000244, 0.014018068090081215, 0.035682354122400284, 3.5011984437005594e-05, -0.00505500053986907, -0.007299307268112898, -0.004796586465090513, -0.008927668444812298, 0.020800547674298286, 0.07153462618589401, 0.025926345959305763, 0.024666136130690575, -0.027937019243836403, 0.01016663946211338, -0.031632691621780396, -0.03876916319131851, 0.009940085001289845, -0.010973740369081497, -0.03316193446516991, -0.029537061229348183, -0.02211739681661129, -0.038146138191223145, 0.007055053021758795, -0.014556135050952435, -0.07872773706912994, -0.03168933093547821, -0.03794790059328079, -0.011752521619200706, -0.0022850160021334887, 0.02036159858107567, 0.047123365104198456, 0.022244833409786224, 0.004081523511558771, 0.04964378476142883, 0.03375663980841637, -0.015306597575545311, -0.010584349744021893, -0.009593172930181026, -0.017968615517020226, 0.04114798456430435, -0.018634118139743805, -0.03287874162197113, -0.042422354221343994, 0.03721160069108009, 0.009033866226673126, 0.03185924515128136, 0.05856437236070633, -0.006807258818298578, -0.008028529584407806, -0.11780840903520584, 0.01876155659556389, -0.02271210215985775, -0.019228825345635414, -0.009472815319895744, 0.014641093090176582, -0.018888993188738823, -0.06082991883158684, 0.020871346816420555, -0.03236899524927139, 0.005585987586528063, 0.03607882559299469, -0.0053558931685984135, -0.008276323787868023, 0.0023788237012922764, -0.03721160069108009, -0.03157605230808258, -0.024637816473841667, -0.003932846710085869, -0.011993235908448696, 0.054118238389492035, -0.023448405787348747, 0.04624546691775322, -0.013515399768948555, -0.01360743772238493, -0.01574554666876793, -0.024581179022789, -0.04907739907503128, 0.01791197620332241, 0.010244517587125301, -0.0214094128459692, -0.0014531356282532215, 0.03075479157269001, 0.001260210177861154, -0.0013487080577760935, -0.006534685380756855, -0.011844559572637081, 0.03420975059270859, -0.01042859349399805, 0.014796849340200424, 0.0028195432387292385, 0.0036319540813565254, -0.024751093238592148, 0.015759706497192383, 0.05930067598819733, 0.02554403617978096, 0.04885084182024002, 0.030131766572594643, -0.014952605590224266, -0.03749479353427887, 0.031009666621685028, 0.019228825345635414, 0.03027336299419403, -0.02022000215947628, -0.05986706167459488, 0.010067521594464779, -0.023462563753128052, -0.015802185982465744, -0.027016639709472656, 0.033983197063207626, -0.04621714726090431, -0.027880379930138588, -0.007440903689712286, 0.04885084182024002, 0.016708403825759888, -0.006690441630780697, 0.04364008828997612, -0.024297984316945076, 0.03432302922010422, -0.015320757403969765, -0.07278067618608475, -0.011511807329952717, -0.014435778371989727, 0.03154773265123367, -0.01524995919317007, 0.015533152036368847, -0.013133089058101177, -0.012255189940333366, -0.004640830215066671, -0.00016880975454114377, -0.05799798667430878, 0.051965970546007156, -0.01040735375136137, 0.028007816523313522, 0.042280759662389755, -0.03721160069108009, 0.0413179025053978, 0.021805884316563606, -0.01734558865427971, 0.024666136130690575, 0.019186345860362053, 0.061792775988578796, 0.0785578191280365, -0.04627378284931183, 0.060263533145189285, 0.005759443622082472, 0.011887039057910442, -0.005724044516682625, -0.032482270151376724, 0.005164737813174725, 0.038259413093328476, 0.015802185982465744, 0.020913824439048767, -0.01734558865427971, -0.042025886476039886, 0.01727479137480259, -0.05193765088915825, -0.008991386741399765, -0.04720832407474518, 0.04635874181985855, -0.013586197979748249, 0.060150254517793655, 0.029055632650852203, -0.026294497773051262, 0.012743698433041573, 0.0005544393789023161, 0.008311723358929157, -0.05479790270328522, 0.055166054517030716, -0.015646429732441902, 0.01962529495358467, -0.021536849439144135, 0.00025996260228566825, -0.040270086377859116, 0.0020301418844610453, 0.0312645398080349, 0.00147349014878273, -0.0069346958771348, -0.0077240969985723495, 0.012538382783532143, -0.012219790369272232, 0.01519332081079483, -0.023887354880571365, 0.017543824389576912, -0.011540126986801624, 0.005798382684588432, -0.06020689383149147, -0.060036979615688324, 0.06281227618455887, 0.017076555639505386, 0.061566222459077835, 0.03769302740693092, 0.01202863547950983, -0.013989748433232307, -0.025699792429804802, -0.02449622005224228, -0.032000843435525894, -0.013352563604712486, -0.006343530025333166, -0.0472932793200016, 0.018265968188643456, -0.03891075775027275, -0.016099538654088974, -0.01226934976875782, -0.015306597575545311, -0.016326094046235085, -0.02707327902317047, -0.006959475111216307, 0.0007504622335545719, -0.009168382734060287, 0.01935626193881035, 0.01413134578615427, 0.01946953870356083, -0.03004680946469307, -0.02680424600839615, -0.020942144095897675, -0.007844454608857632, 0.038146138191223145, -0.01727479137480259, -0.016297774389386177, -0.014046387746930122, -0.015448193997144699, -0.047264959663152695, -0.007370105478912592, -0.009918845258653164, 0.03296370059251785, 0.0118233198300004, 0.029622018337249756, 0.030301682651042938, -0.04270555078983307, 0.021027103066444397, 0.00986928679049015, 0.01914386637508869, 0.01903058961033821, 0.03443630412220955, -0.015009244903922081, 0.024991808459162712, 0.020616471767425537, 0.022740421816706657, -0.007532941643148661, 0.015759706497192383, 0.004605431109666824, 0.01738806813955307, 0.007561260834336281, 0.014825168997049332, 0.00506207998842001, 0.02680424600839615, 0.015051723457872868, -0.024623656645417213, -0.022966977208852768, 0.03214243799448013, -0.011894118040800095, 0.007370105478912592, -0.008913508616387844, 0.024071430787444115, -0.009281660430133343, 0.03392655774950981, -0.0013796823332086205, 0.01638273149728775, -0.04117630422115326, -0.00016394237172789872, -0.026676809415221214, 0.019611135125160217, -0.0023204151075333357, -0.01905890926718712, -0.006308130454272032, 0.03820277750492096, -0.004053203854709864, -0.025529876351356506, -0.013225127011537552, 0.0056780255399644375, -0.025883866474032402, -0.006506366189569235, 0.03052823804318905, 0.03622042387723923, -0.04117630422115326, -4.928226917400025e-05, -0.025600673630833626, 0.012148992158472538, 0.02174924500286579, -0.0017425237456336617, -0.04635874181985855, -0.05420319736003876, 0.0032390232663601637, 0.034238070249557495, 0.0058267018757760525, -0.0038443489465862513, -0.04174269363284111, -0.004984201863408089, 0.0323973149061203, -0.026832565665245056, 0.03469117730855942, 0.009140064008533955, -0.04970042407512665, -0.042648911476135254, -0.031745970249176025, 0.011370210908353329, 0.02033327892422676, -0.03740983456373215, -0.01932794228196144, -0.009614412672817707, 0.05581739917397499, 0.051852691918611526, 0.01626945473253727, 0.00748338270932436, 0.007823214866220951, -0.018591640517115593, 0.022400589659810066, -0.06575748324394226, -0.060376811772584915, 0.011511807329952717, 0.031151263043284416, -0.008099328726530075, -0.018903153017163277, -0.036616891622543335, 0.014492416754364967, 0.05332529917359352, -0.008134727366268635, -0.002369973808526993, 0.07028857618570328, 0.034379664808511734, 0.03596554696559906, -0.0055647483095526695, -0.018265968188643456, 0.04140286147594452, 0.015518992207944393, 0.013033971190452576, -0.008878109976649284, -0.034011516720056534, 0.0034779675770550966, 0.014980925247073174, -0.06649378687143326, -0.04576403647661209, -0.005168277770280838, -0.010357795283198357, 0.02367495931684971, 0.004131081979721785, 0.044517986476421356, 0.07748168706893921, -0.017529664561152458, 0.021140379831194878, 0.030301682651042938, -0.008389601483941078, 0.03845765069127083, 0.0214094128459692, 0.01416674442589283, -0.028914036229252815, 0.015872985124588013, -0.044631265103816986, -0.05074824020266533, -0.0461605079472065, -0.03384159877896309, 0.030811430886387825, -0.002785914111882448, -0.005090399645268917, -0.04414983466267586, -0.011780841276049614, 0.019299622625112534, -0.015235799364745617, 0.058847565203905106, -0.06836286187171936, -0.0350026898086071, 0.02006424590945244, -0.04836941510438919, -0.03415311127901077, 0.01743054762482643, 0.020120883360505104, -0.049020759761333466, 0.04794462397694588, -0.06694689393043518, -0.05179605260491371, -0.010400273837149143, 0.02092798426747322, -0.002759364666417241, 0.0036531935911625624, -0.01118613500148058, 0.013154328800737858, 0.016510169953107834, 0.03562571853399277, 0.008715273812413216, 0.01360743772238493, -0.016000421717762947, -0.032340675592422485, 0.034379664808511734, 0.0006885136826895177, -0.01563226990401745, -0.0071470909751951694, -0.05403327941894531, -0.03016008622944355, -0.012595022097229958, 0.004506313242018223, -0.03310529515147209, -0.027568867430090904, 0.03395487740635872, -0.016920799389481544, 0.0009274580515921116, 0.06943899393081665, 0.03381327912211418, 0.03075479157269001, -0.010216197930276394, -0.05644042417407036, 0.04703840613365173, -0.07606571912765503, 0.00426205899566412, -0.016071218997240067, -0.004927563481032848, 0.017642943188548088, 0.026563530787825584, 0.09147143363952637, -0.03817445784807205, 0.01935626193881035, -0.00936661846935749, -0.016439370810985565, 0.002214217558503151, -0.0685327798128128, 0.021791724488139153, -0.040270086377859116, 0.030584875494241714, -0.01951201818883419, -0.021494371816515923, -0.012354307807981968, 0.006598403677344322, -0.035908911377191544, -0.006580704357475042, 0.02577058970928192, 0.008290483616292477, 0.006488666404038668, 0.002164658857509494, 0.00886395014822483, 0.024142228066921234, -0.018265968188643456, 0.01910138875246048, -0.008878109976649284, -0.017288951203227043, 0.025076765567064285, -0.03027336299419403, -0.020092563703656197, -0.017331428825855255, 0.007603739853948355, -0.015773866325616837, 0.019611135125160217, -0.027653824537992477, 0.020050086081027985, 0.05403327941894531, -0.01816684938967228, 0.04400824010372162, -0.007646218873560429, -0.013147248886525631, -0.018888993188738823, -0.0008854215266183019, 0.023151051253080368, -0.0036390337627381086, 0.014202143996953964, 0.024043111130595207, -0.020644791424274445, 0.011157816275954247, 0.004846145398914814, 0.01843588426709175, -0.0009309979504905641, 0.012184391729533672, -0.029168909415602684, -0.014195064082741737, -0.05799798667430878, 0.037324875593185425, 0.021919161081314087, 0.031519412994384766, -0.050918154418468475, 0.001969963312149048, -0.008694034069776535, 0.014018068090081215, 0.013713635504245758, -0.00321601377800107, 0.005801922641694546, 0.014740210957825184, -0.04661361500620842, -0.0035487660206854343, -0.04270555078983307, -0.05675193667411804, -0.015235799364745617, 0.010343635454773903, 0.0008358627092093229, 0.03228403627872467, 0.005001901648938656, 0.05420319736003876, -0.04010017216205597, 0.0019363341853022575, -0.003502747043967247, -0.020786387845873833, -0.015915462747216225, 0.024935169145464897, 0.03316193446516991, -0.04984201863408089, 0.045112691819667816, -0.020389918237924576, 0.004892164375633001, 0.04044000431895256, 0.01046399213373661, -0.025076765567064285, 0.005437311250716448, 0.007759496103972197, -0.0032390232663601637, -0.0011336581083014607, 0.020135043188929558, 0.0017991623608395457, -0.010060441680252552, 0.05420319736003876, 0.006941775791347027, 0.009982563555240631, -0.02099878340959549, 0.023363446816802025, 0.029961850494146347, -0.0053912922739982605, -0.02759718708693981, 0.003837269265204668, 0.021012943238019943, -0.021975800395011902, -0.027016639709472656, -0.027979496866464615, -0.021310295909643173, 0.027087438851594925, -0.02725735493004322, -0.023590002208948135, -0.024963488802313805, 0.029622018337249756, -0.06717345118522644, 0.013239286839962006, 0.04083647206425667, -0.012389706447720528, 0.013996828347444534, -0.0312645398080349, 0.010895862244069576, -0.010867542587220669, -0.0013318934943526983, 0.032000843435525894, -0.0035133669152855873, 0.0420825220644474, 0.011851639486849308, -0.014825168997049332, -0.039562102407217026, 0.020092563703656197, 3.443121750024147e-05, 0.004573571961373091, -0.00960733275860548, 0.014287102036178112, 0.01955449767410755, -0.0031062765046954155, 0.047378238290548325, 0.007561260834336281, -0.020758068189024925, -0.03225571662187576, -0.015051723457872868, -0.014881807379424572, -0.0420825220644474, -0.03701336309313774, -0.031009666621685028, 0.0076532987877726555, 0.046415381133556366, -0.009593172930181026, 0.01543403510004282, -0.0064603472128510475, -0.014251702465116978, -0.011674643494188786, -0.016241135075688362, -0.020871346816420555, 0.02833348885178566, -0.007603739853948355, 0.010563110001385212, -0.015306597575545311, -0.0009646271937526762, -0.003509826958179474, 0.007005494087934494, -0.01232598815113306, 0.01955449767410755, -0.015136681497097015, -0.03149109333753586, -0.010570189915597439, 0.008382521569728851, 0.00722496910020709, -0.02230147272348404, -0.01903058961033821, 0.03086807020008564, -0.010244517587125301, 0.01585882529616356, 0.012573782354593277, 0.009317059069871902, 0.0022584665566682816, -0.016949119046330452, 0.060263533145189285, 0.022839538753032684, -0.0026531671173870564, -0.009253340773284435, 0.0040496643632650375, 0.034464623779058456, 0.03857092559337616, 0.017855336889624596, -0.013579118996858597, -0.026152901351451874, -0.0017531435005366802, -0.03664521127939224, 0.00908342469483614, -0.04516933113336563, 0.023632479831576347, -0.04349849000573158, 0.0033735402394086123, -0.011915357783436775, 0.022882018238306046, 0.03987361490726471, 0.0032036241609603167, 0.008594916202127934, 0.03539916127920151, 0.000812410784419626, 0.011773761361837387, 0.030811430886387825, 0.0273706316947937, 0.04344185069203377, 0.023915674537420273, -0.00212217983789742, -0.011511807329952717, 0.020729748532176018, 0.01962529495358467, 0.007497542537748814, 0.03605050593614578, -0.026308657601475716, -0.008148887194693089, 0.003451418364420533, -0.001352248014882207, -0.000921263184864074, -0.004431975074112415, 0.012460504658520222, 0.0031983142253011465, 0.02092798426747322, 0.010782584547996521, 0.01786949671804905, -0.005231996066868305, -0.012524223886430264, -0.021763404831290245, -0.0022425369825214148, 0.019526178017258644, -0.007249748334288597, -0.10342219471931458, -0.00187084567733109, 0.016354413703083992, -0.05309874191880226, 0.005745283793658018, -0.018223488703370094, -0.025076765567064285, -0.013678235933184624, 0.003460268024355173, 0.02982025407254696, -0.005582447629421949, -0.04650034010410309, 0.007348866201937199, -0.01312600914388895, 0.0206589512526989, -0.029367145150899887, -0.007610819768160582, 0.0040956828743219376, 0.04732159897685051, 0.005578908137977123, -0.007674538530409336, -0.07612235844135284, 0.07011865824460983, -0.02077222801744938, -0.036022186279296875, 0.03783462569117546, -0.021536849439144135, -0.03038664162158966, 0.032227396965026855, -0.006740000564604998, -0.03219907730817795, 0.0073913452215492725, -0.0004261174181010574, 0.03783462569117546, -0.004017804749310017, 0.015688909217715263, -0.0002652724797371775, -0.036503616720438004, -0.003773550735786557, -0.01254546269774437, -0.03420975059270859, -0.034832775592803955, -0.023179370909929276, -0.01040735375136137, 0.026676809415221214, 0.03225571662187576, -0.02870164066553116, -0.02330680750310421, 0.032000843435525894, -0.0064709666185081005, 0.010152479633688927, -0.04151613637804985, 0.01342336181551218, -0.01278617698699236, 0.027229035273194313, -0.015349077060818672, 0.0053523532114923, -0.01543403510004282, 3.799878686550073e-05, -0.0007075407775118947, 0.024694455787539482, -0.01094542071223259, 0.017062395811080933, -0.0071577103808522224, 0.017218152061104774, 0.01946953870356083, 0.02826269157230854, 0.0065382253378629684, -0.015660589560866356, -0.016241135075688362, -0.013274685479700565, 0.025218363851308823, -0.037919580936431885, 0.016963278874754906, -0.003819569479674101, 0.03763638809323311, -0.034577902406454086, -0.011639244854450226, 0.018011093139648438, 0.003292122157290578, 0.02584138885140419, 0.0327654629945755, -0.013111849315464497, -0.03217075765132904, -0.013749034143984318, 0.02889987640082836, -0.019866010174155235, 0.006170073989778757, -0.004594811238348484, -0.034011516720056534, -0.07249748706817627, -0.028616681694984436, -0.020531514659523964, -0.034577902406454086, -0.03976034000515938, 0.041827648878097534, 0.024326303973793983, -0.020262479782104492, -0.06909916549921036, -0.008425000123679638, 0.004410735797137022, -0.007221429143100977, -0.03185924515128136, 0.003947006538510323, -0.008970147930085659, -0.0041629415936768055, 0.019412901252508163, -0.004315157886594534, 0.0243829432874918, -0.011639244854450226, -0.009217942133545876, 0.01440745871514082, -0.005649706348776817, 0.008637395687401295, 0.028956513851881027, 0.028914036229252815, 0.013274685479700565, 0.03927890956401825, -0.018789874389767647, -0.002109789988026023, -0.004364716820418835, 0.022400589659810066, 0.013996828347444534, -0.01642521098256111, -0.016184497624635696, 0.007894013077020645, 0.03134949877858162, -0.00942325685173273, -0.004131081979721785, -0.005008981563150883, 0.0010168409207835793, 0.0074692233465611935, -0.044886138290166855, 0.03622042387723923, 0.012644580565392971, 0.012573782354593277, 0.001989432843402028, -0.02435462363064289, -0.0029522900003939867, -0.014768530614674091, -0.007886933162808418, -0.05573244020342827, 0.04012849181890488, 0.03667353093624115, 0.00319654424674809, 0.0387125238776207, 0.009989643469452858, 0.008587836287915707, 0.001969963312149048, -0.017260631546378136, -0.019837690517306328, 0.003773550735786557, -0.021097900345921516, -0.012779097072780132, -0.06009361892938614, 0.03514428809285164, -0.032595548778772354, 0.014152584597468376, -0.007610819768160582, 0.0033912397921085358, 0.02129613608121872, -0.06009361892938614, -0.01802525296807289, 0.020970463752746582, 0.0036248741671442986, -0.007005494087934494, -0.004120462574064732, -0.017331428825855255, -0.0027363551780581474, 0.021720925346016884, 0.016510169953107834, -0.04474454000592232, 0.004000105429440737, 0.010046281851828098, 0.02837596833705902, -0.023179370909929276, -0.029508741572499275, -0.017104875296354294, -0.023320967331528664, 0.024000631645321846, -0.004286838695406914, 0.009147143922746181, 0.008212605491280556, -0.025331640616059303, -0.006948855705559254, -0.0031434455886483192, -0.0069665550254285336, 0.02342008613049984, 0.015349077060818672, 0.006315210368484259, 7.959280628710985e-05, -0.03701336309313774, 0.04024176672101021, 0.016028741374611855, 0.004679769277572632, 0.011476408690214157, 0.014499496668577194, 0.006417868193238974, 0.02234395034611225, 0.04644370079040527, 0.005724044516682625, 0.017543824389576912, -0.035540759563446045, 0.03214243799448013, 0.026606010273098946, -0.014414538629353046, -0.0052072168327867985, -0.008368361741304398, -0.026634329929947853, 0.007462143432348967, -0.008432080037891865, -0.029480421915650368, -0.011320652440190315, 0.03987361490726471, 0.004899243824183941, -0.011044538579881191, -0.008120567537844181, -0.017062395811080933, 0.05678025633096695, -0.01884651370346546, -0.010548950172960758, 0.027866220101714134, 0.019158026203513145, 0.012984412722289562, 0.031774286180734634, -0.009005546569824219, 0.0034124793019145727, -0.020545674487948418, 0.028418447822332382, 0.04007185250520706, 0.0006270076846703887, 0.02367495931684971, 0.016765043139457703, -0.04768975079059601, 0.0044602942653000355, 0.00972060952335596, -0.005040840711444616, 0.03265218809247017, 0.01615617796778679, 0.03171765059232712, -0.0048426054418087006, 0.008205525577068329, 0.021352775394916534, -0.004056743811815977, 0.003138135652989149, 0.029537061229348183, 0.0009956014109775424, 0.030245043337345123, 0.03075479157269001, -0.00936661846935749, -0.017926136031746864, 0.008913508616387844, 0.011872879229485989, 0.06281227618455887, -0.034832775592803955, -0.027229035273194313, -0.05462798848748207, -0.032482270151376724, 4.352990799816325e-05, 0.0041629415936768055, 0.0046691494062542915, 0.007178950123488903, 0.02460949681699276, -0.044064875692129135, -0.024113908410072327, -0.03936386853456497, 0.0012168461689725518, 0.02111206017434597, 0.014513656497001648, -0.019016429781913757, 0.0037558511830866337, 0.03440798446536064, 0.023844875395298004, 0.014584454707801342, 0.01440745871514082, 0.0026036084163933992, 0.008134727366268635, 0.0026089183520525694, -0.03740983456373215, 0.014782690443098545, 0.029763614758849144, 0.04817118123173714, 0.04225244000554085, -0.022358110174536705, -0.0047470275312662125, -0.013833992183208466, -0.02554403617978096, 0.005550588481128216, -0.02851756475865841, -0.013911870308220387, 0.03146277368068695, -0.01310476940125227, -1.1200515928067034e-06, 0.005058540031313896, -0.008573677390813828, 0.019313782453536987, -0.030471598729491234, 0.004899243824183941, -0.012354307807981968, 0.011717122979462147, 0.02684672363102436, -0.02337760664522648, 0.00017555772501509637, 0.00908342469483614, -0.03607882559299469, -0.03418143093585968, -0.013883551582694054, 0.04995529726147652, 0.006846197880804539, 0.0012584401993080974, -0.00721434922888875, 0.005430231336504221, 0.0041275424882769585, 0.02639361470937729, -0.0044496748596429825, 0.052702274173498154, -0.0038124897982925177, -0.03605050593614578, -0.01910138875246048, -0.02323601022362709, -0.000871704367455095, 0.010301155969500542, -0.030471598729491234, 0.009812647476792336, -0.018973950296640396, -0.021579328924417496, -0.0037912502884864807, 0.0372399166226387, 0.009933005087077618, 0.008028529584407806, -0.0028460926841944456, -0.015306597575545311, 0.046302102506160736, -0.015575631521642208, -0.0005650591338053346, 0.0023080252576619387, 0.022655462846159935, -0.004106302745640278, -0.03656025603413582, 0.021551009267568588, 0.0346345417201519, -0.02349088340997696, -0.014287102036178112, -0.008432080037891865, 0.06660706549882889, 0.030131766572594643, -0.0076532987877726555, -0.02472277544438839, -0.003166455077007413, 0.012212710455060005, 0.03522924706339836, 0.016439370810985565, 0.01062682829797268, 0.03959042206406593, -0.021579328924417496, 0.024482060223817825, -0.02148021198809147, 0.00040509915561415255, -0.01757214404642582, 0.005947059020400047, 0.01062682829797268, -0.021720925346016884, 0.012410946190357208, -0.015561471693217754, 0.00348150753416121, -0.024864371865987778, 0.015773866325616837, 0.030358321964740753, -0.013798593543469906, 0.007547101471573114, -0.0069665550254285336, 0.008347121998667717, -0.012460504658520222, 0.024807732552289963, -0.03268050774931908, -0.004145241808146238, -0.017926136031746864, -0.005486870184540749, 0.0016903099603950977, 0.011044538579881191, 0.002669096924364567, 0.0006367424502968788, 0.01832260563969612, -0.01738806813955307, -0.05049336329102516, 0.0076178996823728085, 0.009444496594369411, -0.006736460607498884, 0.01608537882566452, -0.02129613608121872, -0.03149109333753586, -0.024524539709091187, 0.004400115925818682, -0.01072594616562128, -0.01052063051611185, 0.018265968188643456, 0.013005652464926243, -0.0255015566945076, 0.025997145101428032, -0.009359538555145264, -0.006938235834240913, 0.0383443720638752, 0.015235799364745617, -0.0002458029193803668, -0.01543403510004282, -0.039448827505111694, -0.004584191367030144, 0.028772439807653427, -0.0030177785083651543, 0.010173719376325607, -0.001243395614437759, 0.03381327912211418, -0.010541870258748531, 0.004385956097394228, 0.03214243799448013, 0.01697743870317936, 0.01649601012468338, -7.964811811689287e-05, 0.026167061179876328, 0.03336017206311226, -0.0032390232663601637, 0.03236899524927139, -0.012071114033460617, -0.0073913452215492725, -0.002920430852100253, -0.014138425700366497, -0.012021555565297604, 0.009756009094417095, -0.0036319540813565254, -0.026648489758372307, 0.005978918634355068, 0.020828867331147194, -0.013232206925749779, -0.01040735375136137, -0.01008876133710146, 0.007497542537748814, 0.018223488703370094, 0.009989643469452858, -0.005224916152656078, -0.007476302795112133, 0.01619865745306015, -0.0005827586865052581, 0.010810904204845428, -0.0018584560602903366, 0.01887483336031437, 0.0010956040350720286, -0.011667563579976559, 0.00942325685173273, 0.06445479393005371, 0.01631193421781063, 0.008099328726530075, 0.005005441606044769, 0.018110211938619614, 0.009274580515921116, -0.005270935129374266, 0.037438154220581055, -0.007051513064652681, 0.009274580515921116, -0.015009244903922081, 0.0004889509291388094, -0.012212710455060005, -0.02327848970890045, 0.005465630441904068, -0.011901197955012321, -0.03064151480793953, 0.011306492611765862, -0.015349077060818672, -0.006796638946980238, 0.021919161081314087, 0.026931682601571083, -0.009203782305121422, -0.015448193997144699, -0.007370105478912592, 0.003237253287807107, 0.0076886978931725025, 0.0020336818415671587, -0.02271210215985775, 0.03752311319112778, -0.0027929937932640314, -0.012212710455060005, 0.011759601533412933, 0.03925058990716934, -0.00267617660574615, 0.015915462747216225, -0.018421724438667297, -0.025756429880857468, -0.006226712837815285, 0.0002247846859972924, -0.027752943336963654, -0.003794790245592594, -0.0006575394072569907, -0.009635651484131813, -0.01839340478181839, 0.0062514920718967915, 0.011462248861789703, 0.011943677440285683, -0.01491012703627348, -0.03656025603413582, -0.004778886679559946, -0.010789664462208748, 0.015533152036368847, -0.02375991828739643, -0.013713635504245758, 0.0014903047122061253, 0.04553748294711113, 0.04148781672120094, 0.008240925148129463, 0.05049336329102516, -0.01102329883724451, 0.006063876673579216, 0.0035487660206854343, 0.00477534718811512, -0.036843448877334595, 0.003175304736942053, 0.033190254122018814, 0.003872668370604515, -0.0007495772442780435, -0.055166054517030716, -0.014046387746930122, 0.008814391680061817, 0.00028695445507764816, 0.00692407600581646, 0.026606010273098946, 0.037183281034231186, 0.009748929180204868, 0.026124581694602966, 0.04658529907464981, 0.011681723408401012, -0.013954349793493748, 7.73803549236618e-05, -0.041827648878097534, -0.007568340748548508, -0.014570294879376888, 0.013855231925845146, -0.008963068015873432, 0.022570505738258362, 0.002978839445859194, 0.005621387157589197, 0.006063876673579216, 0.025444917380809784, -0.025388279929757118, -0.012764938175678253, 0.0019628836307674646, -0.003495667362585664, -0.01612785831093788, 0.0076178996823728085, -0.021848361939191818, -0.033869918435811996, -0.010825064033269882, 0.014301261864602566, -0.020050086081027985, 0.014980925247073174, 0.01310476940125227, -0.0057134246453642845, 0.01064806804060936, -0.00798605103045702, -0.00120799639262259, 0.025558194145560265, -0.015235799364745617, -0.015759706497192383, 0.024623656645417213, -0.008835630491375923, 0.005695725325495005, -0.012849896214902401, 0.003794790245592594, -0.024411262944340706, -0.010987900197505951, 0.0009699370129965246, 0.0016487159300595522, 0.0004469144332688302, -0.018294287845492363, 0.0007619669777341187, 0.01524995919317007, 0.02390151470899582, 0.022995295003056526, -0.01091002207249403, 0.022032437846064568, -0.0014575604582205415, 0.03641865774989128, 0.027724623680114746, 0.009196702390909195, -0.021551009267568588, 0.024864371865987778, -0.011051618494093418, 0.01310476940125227, -0.019526178017258644, -0.029848573729395866, 0.016949119046330452, -0.03027336299419403, -0.006874517071992159, -0.027044959366321564, 0.024213027209043503, 0.05491118133068085, -0.005423151422291994, -0.0008885189890861511, 0.014655252918601036, -0.007816134952008724, 0.03522924706339836, 0.0009478125721216202, 0.01701991632580757, 0.024071430787444115, 0.029253868386149406, -0.012956093065440655, -0.010740105994045734, 0.0009053335525095463, -0.011731281876564026, 0.007922332733869553, -0.005001901648938656, -0.008573677390813828, 4.405536310514435e-05, 0.016099538654088974, -0.03228403627872467, 0.02360416203737259, -0.0009380778064951301, 0.04494277760386467, 0.021027103066444397, -0.0016283614095300436, 0.014152584597468376, 0.025699792429804802, 0.00240183318965137, -0.0031788446940481663, 0.002977069467306137, 0.0019504937808960676, 0.0002153817767975852, 0.004984201863408089, 0.0026425474788993597, 0.01064806804060936, 0.011511807329952717, 0.014386219903826714, 0.0030230884440243244, 0.02189084142446518, 0.029027312994003296, -0.026421934366226196, 0.0031345956958830357, -0.03185924515128136, -0.025869708508253098, 0.008332963101565838, -0.013118929229676723, 0.00641432823613286, 0.003536376403644681, -0.008814391680061817, 0.033898238092660904, -0.006078036036342382, 0.014145505614578724, 0.03749479353427887, -0.02814941294491291, -0.012127753347158432, 0.03973202034831047, 0.0007761266315355897, -0.010655147954821587, 0.002359354170039296, -0.021763404831290245, 0.00836128182709217, 0.016892479732632637, 0.003908067476004362, 0.01543403510004282, 0.01248882431536913, 0.019611135125160217, -0.025388279929757118, -0.009748929180204868, 0.002704496029764414, 0.0011814470635727048, 0.028645001351833344, -0.014265862293541431, 0.0050691599026322365, 0.023816555738449097, 0.02312273345887661, -0.03808949887752533, -0.004570032004266977, 0.004768267273902893, 0.010527710430324078, -0.02993353083729744, 0.02408559061586857, 0.016510169953107834, 0.04446134716272354, -0.04516933113336563, 0.02051735483109951, -0.011547206901013851, 0.01876155659556389, 0.02509092539548874, -0.0007947111735120416, 0.0026036084163933992, -0.0040956828743219376, -0.016694243997335434, 0.005660326220095158, -0.07425328344106674, 0.03800453990697861, -0.023335127159953117, 0.0075046224519610405, -0.006534685380756855, 0.007957731373608112, 0.021097900345921516, -0.0020566913299262524, 0.008453319780528545, -0.010173719376325607, -0.011731281876564026, -0.002444312209263444, -0.011908277869224548, -0.022499706596136093, 0.0046337503008544445, 0.0030071588698774576, -0.028064455837011337, -0.02826269157230854, 0.005621387157589197, -0.01679336279630661, 0.008099328726530075, -0.0066444226540625095, -0.007886933162808418, -0.0009460425935685635, -0.017586303874850273, 0.019667774438858032, 0.006587784271687269, -0.000907103531062603, 0.005954138934612274, 0.014655252918601036, -0.010194959118962288, -0.02577058970928192, 0.015419875271618366, -0.03808949887752533, 0.005837321747094393, 0.007971891202032566, -0.018888993188738823, -0.0060709561221301556, 0.0004677114193327725, -0.021466052159667015, 0.009614412672817707, -0.024439580738544464, -0.021664287894964218, -0.015363235957920551, -0.014895967207849026, -0.040270086377859116, -0.017855336889624596, 0.02017752267420292, 0.022244833409786224, -0.036956723779439926, -0.018124371767044067, 0.003915147390216589, 0.004389496054500341, 0.009798487648367882, 0.01958281733095646, 0.013642837293446064, 0.019781051203608513, 0.004761187359690666, 0.01914386637508869, -0.013883551582694054, 0.0310946237295866, 0.014209223911166191, -3.354623549967073e-05, -0.029055632650852203, 0.008977227844297886, -0.015915462747216225, -0.03675848990678787, 0.021876681596040726, 0.03905235603451729, 0.027200715616345406, 0.001030115643516183, -0.02446790039539337, 0.02744143083691597, 0.028503404930233955, -0.012906534597277641, 0.024779412895441055, -0.026535211130976677, 0.017812859266996384, 0.0210412610322237, 0.001624821568839252, 0.04400824010372162, 0.006502826232463121, 0.013402123004198074, 0.030584875494241714, 0.004693929105997086, 0.0003672663006000221, 0.00020708510419353843, 0.028248531743884087, 0.0038691284134984016, -0.030669834464788437, -0.0335017666220665, 0.016651766374707222, -0.002474401379004121, 0.03675848990678787, 0.026974162086844444, 0.03432302922010422, -0.010336555540561676, 0.044433027505874634, 0.008453319780528545, 0.017260631546378136, 0.04420647397637367, 0.00372753175906837, -0.006913456134498119, -0.009387858211994171, -0.0030301683582365513, 0.005221376195549965, -0.0030850369948893785, -0.04213916137814522, 0.0510031133890152, 0.02115453965961933, -0.0316610112786293, -0.0035399161279201508, -0.008963068015873432, 0.01357203908264637, 0.01413134578615427, 0.018223488703370094, -0.02095630392432213, -0.011957837268710136, 0.007950651459395885, -0.01258794218301773, 0.011320652440190315, -0.012524223886430264, 0.016071218997240067, 0.004743487574160099, 0.017529664561152458, 0.03534252196550369, 0.006601943634450436, -0.07555597275495529, 0.005731124430894852, 0.0228961780667305, 0.016807522624731064, 0.039448827505111694, -0.023335127159953117, 0.00018064635514747351, 0.001603582059033215, -0.025487396866083145, 0.007632059510797262, -0.05491118133068085, -0.03786294534802437, -0.013805673457682133, -0.012573782354593277, -0.03132117912173271, 0.003315131412819028, 0.03134949877858162, -0.013267605565488338, 0.006778939627110958, -0.002423072699457407, 0.019979286938905716, 0.0035045170225203037, -0.018450044095516205, -0.008233845233917236, -0.0004531092708930373]" -"How to Build a Weather Station With Elixir, Nerves, and TimescaleDB","capture weather and environmental data. In all, the reader will capture and persist into TimescaleDB the current: altitude, atmospheric pressure, temperature, CO2 levels,TVOClevels, and the ambient light.Once the environmental data is captured on the Nerves device, it is published to a backend REST API and stored in TimescaleDB for later analytics/visualization. Luckily, TimescaleDB is an extension on top of PostgreSQL, allowing Elixir developers to use existing database tooling likeEctoto interface with time-series enabled tables.After the time-series weather data is stored in TimescaleDB, we walk the reader through how to visualize this data using the popular open-source visualization toolGrafana.Using Grafana for visualizing the weather was an easy choice given that Grafana natively supports TimescaleDB and is able to easily plot time-series data stored in TimescaleDB hypertables.✨Editor’s Note:Check outGrafana 101 video seriesandGrafana tutorialsto learn everything from building awesome, interactive visualizations to setting up custom alerts, sharing dashboards with teammates, and solving common issues.The diagram shows all of the various components of the weather station system and how they interact with one another.By the end of the book, readers have a fully-featured IoT application and API backend that can power a live Grafana dashboard in order to plot their TimescaleDB data published from their Nerves weather station.Screenshot of Grafana dashboard, showing various graphs for various weather data📖If you are interested in learning about how to build an end-to-end IoT weather monitoring solution, be sure tocheck out the book and the accompanying code. If you are interested in learning more about Nerves and Elixir,check out the Nerves documentation.Choosing (and using!) TimescaleDBFrom the onset of the book, we knew that we wanted to use a purpose-built time-series database to persist the weather station data. We wanted the project to be as realistic as possible and something that could possibly be expanded for use in the real world.With that goal in mind, TimescaleDB was an obvious choice given that PostgreSQL has become a ubiquitous database and it has great support in the Elixir community. In addition,leveraging TimescaleDB on top of PostgreSQL does not add a tremendous amount of overhead or complexity and allows new users to easily leverage the benefits of a time-series database without having to learn any new query languages or databases. Specifically, all it took for readers to start leveraging TimescaleDB was to run a single SQL",https://www.timescale.com/blog/how-to-build-a-weather-station-with-elixir-nerves-and-timescaledb/,512,"[-0.017861494794487953, -0.0019201774848625064, 0.025669213384389877, -0.032567813992500305, 0.03363736346364021, 0.019519297406077385, 0.004057607613503933, -0.013890787959098816, -0.03735405206680298, 0.009031017310917377, 0.028663955628871918, 0.013636769726872444, -0.002934579271823168, -0.03917228803038597, 0.026925934478640556, 0.01025431603193283, 0.01442556269466877, -0.0009926765924319625, -0.02601681649684906, 0.014733059331774712, -0.025575628504157066, 0.028262874111533165, 0.018128881230950356, -0.020882975310087204, 0.004468715749680996, -0.01014067605137825, -0.002065569395199418, 0.07748893648386002, 0.06187349930405617, -0.010942839086055756, -0.0019235197687521577, -0.028423305600881577, -0.025455303490161896, 0.009191449731588364, 0.036765798926353455, 0.018249206244945526, 0.05179298669099808, -0.02775483764708042, -0.0036130754742771387, 0.011704893782734871, 0.008750260807573795, -0.0021173758432269096, -0.013944265432655811, 0.013376066461205482, -0.018128881230950356, -0.0050001488998532295, -0.013449598103761673, 0.0008084297878667712, 0.021136993542313576, 0.0658843144774437, -0.02048189379274845, 0.005819023586809635, -0.019652990624308586, -0.004251463338732719, -0.009091179817914963, -0.026899196207523346, -0.030669361352920532, 0.044065482914447784, 0.03288868069648743, -0.01514750998467207, 0.02588312327861786, -0.036899495869874954, 0.019251909106969833, 0.032541073858737946, 0.00020618093549273908, 0.006627871189266443, -0.008315755985677242, 0.028423305600881577, -0.02581627666950226, 0.04500133916735649, 0.05684661120176315, 0.005859131459146738, 0.025228023529052734, -0.058611370623111725, 0.021110253408551216, -0.04034879431128502, -0.024372383952140808, -0.0018265917897224426, 0.022166434675455093, -0.05345078930258751, -0.0020923083648085594, -0.0036899494007229805, -0.061445679515600204, 0.049867793917655945, -0.00426817499101162, -0.07112511247396469, -0.01565554551780224, -0.006196708418428898, -0.0005042763659730554, 0.006307005882263184, 0.02193915657699108, 0.03647167235612869, 0.006330402567982674, 0.0291452519595623, 0.04518851265311241, 0.05187320336699486, -0.01159125380218029, -0.05304970592260361, -0.030669361352920532, -0.022580886259675026, 0.004682626109570265, -0.0244124922901392, -0.06593779474496841, -0.025080960243940353, 0.06636561453342438, 0.0095524238422513, -0.0024917186237871647, 0.02160492166876793, -0.013422859832644463, 0.02917199209332466, -0.10069818794727325, 0.014826644212007523, -0.025669213384389877, -0.0043651033192873, -0.005668617784976959, -0.01585608720779419, -0.023396417498588562, -0.028155919164419174, 0.021030038595199585, 0.003317277878522873, -0.016979115083813667, 0.03577646613121033, -0.012433525174856186, 0.02155144326388836, 0.028396567329764366, -0.005257509648799896, 0.004284887108951807, -0.05823702737689018, -0.014385455287992954, 0.004498797003179789, 0.05083039030432701, -0.013556553050875664, 0.04323657974600792, -0.024853680282831192, -0.017808016389608383, -0.020789388567209244, -0.039600107818841934, -0.02608366496860981, 0.03195282444357872, -0.006611159536987543, -0.013783833011984825, -0.010314478538930416, 0.035241689532995224, -0.011069848202168941, -0.03930598124861717, 0.01613684371113777, -0.012085921131074429, 0.05026887729763985, -0.007460115011781454, 0.021377641707658768, 0.009913397021591663, 0.025669213384389877, -0.0003628533740993589, -0.002010420896112919, 0.05599097162485123, 0.017032593488693237, 0.029760243371129036, 0.010601920075714588, -0.014626103453338146, -0.051311686635017395, -0.021979263052344322, 0.015200987458229065, 0.06337086856365204, -0.03195282444357872, -0.00946552213281393, 0.005357780028134584, -0.04080335423350334, -0.026979412883520126, -0.06636561453342438, 0.01160462386906147, -0.04476068913936615, -0.01711280830204487, -0.007854511961340904, 0.03746100887656212, 0.023463265970349312, -0.0037367423065006733, 0.011464244686067104, -0.035722989588975906, 0.05919962376356125, -0.038396865129470825, -0.06085742637515068, -0.0013987715356051922, -0.001849988242611289, 0.01906473934650421, -0.022674471139907837, 0.03914555162191391, -0.038477081805467606, 0.005317671690136194, 0.012139398604631424, 0.015441636554896832, -0.0848153606057167, 0.03179239109158516, 0.003810273949056864, 0.02453281544148922, 0.01077572163194418, -0.046819575130939484, 0.038316648453474045, 0.03484060987830162, -0.03497430309653282, 0.014639473520219326, 0.06620518118143082, 0.04053596779704094, 0.055616628378629684, -0.012466948479413986, 0.025228023529052734, 0.004535562824457884, 0.035535816103219986, -0.0004900714266113937, -0.033904753625392914, -0.04045575112104416, 0.018329422920942307, 0.0033523724414408207, -0.013703616335988045, -0.02029472216963768, -0.0554027184844017, 0.022153066471219063, -0.058771803975105286, -0.04601741209626198, -0.026859087869524956, 0.031016966328024864, 0.003947310149669647, 0.03347693383693695, 0.009458838030695915, -0.04320984333753586, -0.011791794560849667, -0.011330551467835903, 0.01901126094162464, -0.032701507210731506, 0.0489586777985096, -0.03278172388672829, 0.0035562554839998484, -0.024011410772800446, 0.011758371256291866, -0.036952972412109375, 0.008890639059245586, 0.012286461889743805, -0.008369233459234238, -0.0033406743314117193, -0.0070991418324410915, -0.013509760610759258, -0.02308892272412777, 0.021030038595199585, -0.03746100887656212, 0.024158474057912827, -0.021979263052344322, 0.02754092589020729, -0.0577557310461998, -0.06288957595825195, 0.05770225077867508, 0.04449330270290375, 0.05625835806131363, 0.004121112171560526, 0.03716688230633736, -0.0320330373942852, -0.035642772912979126, -0.06224784255027771, -0.02770135924220085, 0.02471998706459999, 0.0023663805332034826, -0.028262874111533165, 0.02607029490172863, -0.0464719720184803, 0.0012717624194920063, -0.005087049677968025, -0.022634362801909447, -0.0174604132771492, 0.0018215782474726439, -0.06791646033525467, -0.014773166738450527, -0.008248908445239067, 0.05232775956392288, 0.027861792594194412, 0.020682433620095253, -0.05695356801152229, -0.03705992549657822, -0.006614501588046551, 0.008268962614238262, 0.01738019660115242, -0.014051220379769802, 0.011043109931051731, 0.007426691707223654, -0.0230354443192482, -0.002658835845068097, -0.009258297272026539, -7.918486517155543e-06, 0.011511038057506084, 0.0016753507079556584, 0.045509375631809235, 0.04216703027486801, -0.04877150431275368, 0.01717965491116047, -0.0019268621690571308, 0.012293146923184395, -0.009652693755924702, 0.006126519292593002, 0.006320375483483076, 0.01613684371113777, 0.0273671243339777, -0.004338364582508802, -0.029760243371129036, -0.0012884741881862283, 0.01578924059867859, -0.014773166738450527, -0.003863751422613859, -0.007252889685332775, 0.03652515262365341, 0.023717284202575684, -0.021257316693663597, -0.030642623081803322, 0.014225021935999393, 0.016511186957359314, -0.03318280726671219, 0.01712617836892605, -0.024947267025709152, 0.006343771703541279, -0.005986140575259924, 0.04746130481362343, -0.015321311540901661, 0.019586144015192986, -0.04663240537047386, -0.01871713437139988, -0.06272914260625839, 7.656060188310221e-05, 0.017714431509375572, 0.004993464332073927, -0.02576279826462269, -0.02045515365898609, 0.024118365719914436, -0.010588550940155983, 0.00029600647394545376, -0.010481595061719418, -0.0204150453209877, 0.00538786081597209, 0.07428028434515, 0.022861642763018608, -0.08272973448038101, -0.00188842520583421, -0.013971003703773022, -0.014866752550005913, 0.03657862916588783, 0.00022143038222566247, -0.03152500092983246, -0.06075047329068184, 0.025401825085282326, 0.0029379217885434628, 0.019733207300305367, -0.018423007801175117, -0.023904453963041306, 0.013115364126861095, 0.02193915657699108, -0.027072997763752937, 0.004194643348455429, 0.0033206201624125242, -0.004605751950293779, -0.015575329773128033, 0.008984224870800972, 0.016457708552479744, 0.001407127478159964, -0.04246115684509277, -0.01156451553106308, -0.004445319529622793, 0.017019223421812057, 0.0486912876367569, 0.028075702488422394, 0.007493538782000542, -0.0043985266238451, -0.055937495082616806, 0.008215485140681267, -0.07727503031492233, -0.05069669708609581, 0.016257168725132942, -0.011985651217401028, -0.01898452267050743, 0.008529665879905224, -0.03288868069648743, -0.002234357874840498, 0.04812977463006973, 0.01720639504492283, -0.023570220917463303, 0.04189964383840561, 0.01576250046491623, 0.005020203068852425, -0.003796904580667615, -0.01879735104739666, 0.05962744355201721, 0.04206007719039917, 0.0005368642159737647, 0.016163581982254982, -0.019759945571422577, -0.008830476552248001, 0.01010056771337986, -0.023623697459697723, -0.036872755736112595, -0.02149796672165394, -0.011477614752948284, 0.013208949007093906, -0.01736682653427124, 0.03759470209479332, 0.06545649468898773, 0.0059995101764798164, -0.006444042082875967, 0.01371698547154665, -0.009378621354699135, 0.019599514082074165, 0.021096885204315186, -0.0022076191380620003, 0.010474910959601402, 0.008389286696910858, -0.02911851368844509, -0.07946760952472687, -0.041231174021959305, -0.024078257381916046, 0.02449270710349083, 0.004194643348455429, 0.04005466774106026, -0.03278172388672829, -0.06182002276182175, 0.048343684524297714, -0.0016076681204140186, 0.05457381531596184, -0.05395882576704025, -0.03141804784536362, -0.008944116532802582, -0.0023847634438425303, -0.04772869497537613, 0.03508125990629196, 0.04008140787482262, -0.039947714656591415, 0.020829496905207634, -0.05091060698032379, 0.0004875646554864943, -0.005173950921744108, 0.03050892986357212, -0.010755667462944984, 0.00018612686835695058, 0.0012851317878812551, 0.01294156163930893, -0.021070145070552826, 0.02320924773812294, 0.019131585955619812, -0.0021223893854767084, 0.006835096515715122, -0.012567219324409962, 0.020548740401864052, 0.012787814252078533, -0.03053566813468933, -0.023690544068813324, -0.044386349618434906, -0.03310259059071541, -0.0017914972268044949, 0.024813571944832802, 0.0038336701691150665, -0.03775513544678688, 0.02159155160188675, -0.0061666276305913925, -0.010568496771156788, 0.04783564805984497, 0.034279096871614456, 0.01874387264251709, -0.02173861488699913, -0.03042871318757534, 0.02459966205060482, -0.05163255333900452, 0.004147850908339024, -0.011123325675725937, -0.019078107550740242, 0.07978846877813339, 0.03211325407028198, 0.06502867490053177, -0.027019521221518517, 0.0072462051175534725, 0.029439378529787064, -0.014652842655777931, -0.00289112888276577, -0.014037851244211197, 0.04762173816561699, -0.015535221435129642, 0.009585847146809101, -0.0059961676597595215, -0.02445259876549244, 0.02466651052236557, -0.009137972258031368, -0.025722689926624298, 0.011731632985174656, -0.004164562560617924, 0.033878013491630554, 0.03160521760582924, -0.02300870604813099, 0.02919873036444187, 0.01442556269466877, -0.020013965666294098, -0.003943967632949352, -0.0002510937047190964, -0.015241095796227455, -0.015120770782232285, -0.0015057265991345048, -0.08219496160745621, 0.006561024114489555, 0.03238064423203468, -0.005153896752744913, 0.026591701433062553, -0.005240797530859709, 0.01862354949116707, 0.054145995527505875, -0.023543480783700943, 0.05476098880171776, 0.008195430971682072, 0.011738317087292671, -0.009906711988151073, -0.006380537524819374, -0.013429543934762478, 0.009158026427030563, 0.008402656763792038, 0.03328976035118103, -0.022620994597673416, -0.01383731048554182, -0.0014656184939667583, 0.03895837813615799, -0.007734187413007021, -0.00027741468511521816, -0.015348050743341446, -0.03366410359740257, -0.038289908319711685, 0.03304911032319069, -0.0013737039407715201, 0.030081110075116158, -0.06775602698326111, -0.012700912542641163, -0.022286759689450264, -0.02163165993988514, 0.012112660333514214, -0.04246115684509277, -0.0013895800802856684, -0.0018349476158618927, -0.060001786798238754, 0.010715560056269169, -0.03636471927165985, -0.042782023549079895, -0.025321610271930695, 0.019853532314300537, 0.01014736108481884, 0.030027631670236588, -0.011263703927397728, 0.03184586763381958, -0.007179358042776585, 0.005638536997139454, -0.01454588770866394, -0.010829199105501175, -0.01862354949116707, 0.005504842847585678, 0.025722689926624298, -0.028316350653767586, 0.03366410359740257, 0.008208800107240677, 0.003287196857854724, 0.0672212541103363, 0.0008949129842221737, 0.0007190220640040934, 0.01171157881617546, 0.01223298441618681, -0.012921507470309734, 0.010829199105501175, 0.013503075577318668, -0.006283609662204981, 0.003054903820157051, 0.032460860908031464, 0.017687691375613213, -0.01755399815738201, -0.03743426874279976, 0.034091923385858536, 0.02044178545475006, 0.0014522491255775094, -0.014077959582209587, -0.005377833731472492, 0.0012116002617403865, 0.004923274740576744, -0.03050892986357212, -0.03599037602543831, -0.022246651351451874, 0.02045515365898609, -0.03139130771160126, -0.002347997622564435, -0.008362548425793648, 0.021136993542313576, -0.043958526104688644, 0.02898482047021389, 0.025201285257935524, 0.0016795286210253835, 0.011831902898848057, -0.043905049562454224, 0.014679580926895142, 5.04224153701216e-05, -0.02613714151084423, 0.010133991949260235, -0.004642517771571875, 0.03930598124861717, 0.0070389797911047935, 0.0016293934313580394, -0.05481446534395218, 0.022500669583678246, -0.006106465123593807, 0.006611159536987543, -0.014813275076448917, 0.01223298441618681, 0.010842569172382355, 0.005591744091361761, 0.04366439953446388, 0.0047929235734045506, 0.02603018656373024, -0.03521495312452316, 0.01152440719306469, -0.01859680935740471, -0.019773315638303757, -0.04187290370464325, -0.031070442870259285, 0.00013849843526259065, 0.01716628670692444, -0.016631511971354485, 0.0017530601471662521, -0.03061588481068611, -0.028075702488422394, 0.006179996766149998, -0.008315755985677242, -0.036952972412109375, 0.01569565385580063, 0.004281544592231512, -0.010996316559612751, -0.03053566813468933, -0.019813423976302147, 0.005287590436637402, 0.0018900963477790356, -0.0061699696816504, 0.029760243371129036, 0.017019223421812057, -0.011016370728611946, 0.017045961692929268, 0.04476068913936615, 0.026578331366181374, -0.02581627666950226, -0.04206007719039917, 0.022647732868790627, 0.022567516192793846, 0.0006977146258577704, 0.025401825085282326, 0.017941711470484734, -0.007854511961340904, -0.022313497960567474, 0.05476098880171776, 0.006674664095044136, 0.008489557541906834, -0.013456283137202263, 2.4192837372538634e-05, 0.0551353320479393, 0.040027931332588196, 0.023516742512583733, -0.014946969226002693, -0.005167265888303518, -0.006126519292593002, -0.027126476168632507, 0.020963190123438835, -0.045589592307806015, -0.02048189379274845, -0.05235449969768524, 0.004281544592231512, -0.035535816103219986, 0.0291452519595623, 0.04441308602690697, -0.0007549523143097758, 0.0017647583736106753, 0.021003298461437225, 0.004665914457291365, 0.02167176827788353, 0.02044178545475006, 0.03304911032319069, 0.06871861964464188, 0.0007708284538239241, 0.009311774745583534, -0.037113405764102936, 0.010461540892720222, 0.05887875705957413, -0.004184616729617119, 0.02323598600924015, -0.035455599427223206, 0.0039205714128911495, 0.012754390016198158, 0.006393907126039267, -0.009752963669598103, 0.01895778439939022, 0.01566891558468342, 0.018342791125178337, 0.015080662444233894, 0.014626103453338146, 0.007720818277448416, -0.005909266881644726, -0.02439912222325802, -0.0005857460200786591, -0.006042960565537214, 0.05398556590080261, 0.006029591429978609, -0.04676609858870506, 0.016537925228476524, 0.010281054303050041, -0.04240768030285835, -0.02315576933324337, -0.0052107167430222034, -0.022086219862103462, -0.0017781277419999242, -0.002486705081537366, 0.03288868069648743, -0.029439378529787064, -0.03617754578590393, 0.00161853083409369, -0.031230876222252846, 0.016618141904473305, -0.02473335713148117, 0.011043109931051731, -0.02144448831677437, 0.048637811094522476, -0.00471270689740777, -0.00430828332901001, -0.093211330473423, 0.055937495082616806, -0.023637067526578903, -0.0431831032037735, 0.025575628504157066, -0.004836373962461948, -0.007025610189884901, 0.026351051405072212, 0.005655248649418354, -0.025147806853055954, 0.014719689264893532, -0.03152500092983246, 0.027942007407546043, 0.01521435659378767, 0.02152470499277115, 0.007119196001440287, -0.025348348543047905, -0.009178080596029758, -0.010020351968705654, -0.012092606164515018, -0.018489854410290718, 0.019612884148955345, -0.017995188012719154, -0.013636769726872444, 0.032407380640506744, -0.03032175824046135, 0.005511527881026268, 0.024038149043917656, -0.025455303490161896, 0.0014606049517169595, -0.04206007719039917, 0.011303812265396118, -0.02770135924220085, 0.002276137238368392, -0.007694079075008631, -0.012634065933525562, -0.026778871193528175, 0.0028844440821558237, -0.014946969226002693, 0.02445259876549244, -0.014853383414447308, -0.008522980846464634, -0.031150659546256065, 0.007580439560115337, -0.0043818149715662, 0.01597641222178936, -0.014372085221111774, 0.014251761138439178, -0.022460561245679855, -0.04342375323176384, -0.013302534818649292, -0.02159155160188675, 0.013529814779758453, -0.013823941349983215, 0.06481476128101349, -0.0047695268876850605, -0.010301108472049236, 0.017808016389608383, 0.020936451852321625, 0.00036932918010279536, 0.020588848739862442, -0.03160521760582924, -0.04353070631623268, -0.011952226981520653, 0.02300870604813099, -0.004799608141183853, 0.003223692299798131, 0.026618439704179764, -0.013509760610759258, -0.05369143933057785, -0.03307585045695305, -0.03882468491792679, -0.022661102935671806, 0.004495454486459494, 0.04494786262512207, 0.013262426480650902, -0.01576250046491623, -0.08583143353462219, -0.005541608668863773, 0.014759797602891922, -0.0005009340238757432, -0.021043406799435616, -0.004151192959398031, -0.03144478797912598, 0.0075135924853384495, 0.0434504896402359, -0.01727324165403843, 0.0005030229804106057, -0.03219347074627876, -0.030963487923145294, -0.013971003703773022, -0.014011112041771412, 0.015455005690455437, 0.025441933423280716, 0.020735912024974823, 0.011724947951734066, 0.029519595205783844, -0.026364421471953392, 0.0022828220389783382, -0.024907158687710762, 0.044252652674913406, -0.003699976485222578, -0.021297425031661987, -0.013997742906212807, 0.023810869082808495, -0.011250334791839123, -0.015388158150017262, -0.018369531258940697, -0.018423007801175117, 0.017928341403603554, 0.012507056817412376, -0.016511186957359314, 0.035375382751226425, -0.0025986735709011555, 0.011785110458731651, -0.016484448686242104, -0.005808996502310038, -0.0032504310365766287, -0.02318250760436058, 0.021364271640777588, -0.0519801564514637, 0.034172140061855316, 0.01290813833475113, -0.0007595479837618768, 0.0431831032037735, -0.038182955235242844, -0.005277563352137804, 0.005511527881026268, -0.010581865906715393, 0.0007499387720599771, -0.004766184836626053, 0.004986779298633337, -0.0011681497562676668, -0.048744767904281616, 0.006353798788040876, -0.02728690765798092, 0.012159452773630619, -0.02149796672165394, -0.011952226981520653, 0.02476009540259838, -0.07636591047048569, -0.028530260547995567, -0.006076383870095015, 0.008897324092686176, 0.01092278491705656, 0.005692014470696449, -0.028476784005761147, -0.005885870195925236, 0.023850977420806885, 0.027206692844629288, -0.035722989588975906, -0.007292998023331165, 0.02016102708876133, 0.014331977814435959, -0.018342791125178337, -0.03021480329334736, -0.0029446063563227654, 0.0095524238422513, 0.022219913080334663, -0.04465373605489731, 0.005915951449424028, 0.0078077190555632114, -0.004726076498627663, -0.00951231550425291, -0.016257168725132942, -0.006985501851886511, -0.00033778577926568687, 0.01457262597978115, 0.008883954025804996, 0.01613684371113777, -0.010515019297599792, 0.03457322344183922, 0.016203690320253372, 0.041231174021959305, -0.0046224636025726795, -0.003857066622003913, -0.02288838103413582, 0.02903829701244831, 0.026270834729075432, 0.010200838558375835, 0.01590956375002861, -0.03355714678764343, 0.012179506942629814, 0.0026688629295676947, 0.005618482828140259, 0.005508185364305973, -0.0019118216587230563, -0.02042841538786888, -0.006768249440938234, -0.004251463338732719, -0.027126476168632507, 0.016858790069818497, 6.235563341761008e-05, 0.04037553444504738, 0.0247467253357172, 0.0008957486134022474, -0.020722541958093643, 0.03377106040716171, -0.014960338361561298, -0.030963487923145294, 0.04818325117230415, 0.007647286634892225, -0.0005314329173415899, 0.03331650048494339, -0.0013035146985203028, -0.0160165186971426, -0.022407084703445435, -0.001538314507342875, 0.04374461621046066, 0.009378621354699135, 0.023717284202575684, 0.007032294757664204, -0.05363795906305313, 0.016524555161595345, 0.022875012829899788, 0.01573576219379902, 0.03529516980051994, 0.0061398884281516075, 0.022647732868790627, -0.012253038585186005, 0.01580260880291462, 0.019292017444968224, -0.0054379962384700775, 0.019973857328295708, 0.022046111524105072, 0.0015867785550653934, 0.02890460379421711, 0.03053566813468933, -0.03946641460061073, -0.02181883156299591, 0.0305891465395689, 0.018262576311826706, 0.0955643430352211, -0.03342345356941223, -0.00861656665802002, -0.043985266238451004, -0.04101726412773132, 0.02156481333076954, -0.004893193952739239, 0.014077959582209587, 0.01724650338292122, 0.022540777921676636, -0.02331620268523693, -0.026658548042178154, -0.00575886107981205, -0.0035428861156105995, 0.0031301064882427454, 0.012834606692194939, 0.014064589515328407, 0.023744022473692894, 0.028316350653767586, 0.02738049440085888, 0.03336997702717781, 0.014305238611996174, 0.02037493884563446, 0.022447193041443825, -0.02590986154973507, -0.04524198919534683, 0.03224695101380348, 0.025669213384389877, 0.063798688352108, 0.06727472692728043, -0.016979115083813667, -0.009625954553484917, -0.008476188406348228, -0.022219913080334663, 0.031899344176054, -0.02620398811995983, -0.006985501851886511, 0.023436525836586952, 0.011196857318282127, -0.009839865379035473, 0.004933301825076342, 0.009906711988151073, -0.0011581226717680693, 0.00200540735386312, 0.006116492208093405, -0.026845719665288925, 0.007165988907217979, 0.015267834067344666, -0.03032175824046135, -0.008188746869564056, 0.04032205417752266, -0.025241393595933914, -0.030696101486682892, 0.0025819619186222553, 0.054145995527505875, 0.012868029996752739, 0.0065175737254321575, -0.035455599427223206, 6.183339428389445e-05, -0.023637067526578903, 0.021136993542313576, -0.0006241830415092409, 0.017714431509375572, 0.00291619636118412, -0.047167178243398666, -0.04478742927312851, -0.014652842655777931, 0.006046303082257509, -0.012092606164515018, -0.038316648453474045, 0.03743426874279976, 0.026524852961301804, -0.011029739864170551, 0.0158159788697958, 0.035375382751226425, 0.016671618446707726, 0.004886508919298649, 0.0064340149983763695, -0.0078745661303401, 0.0305891465395689, 0.022273389622569084, 0.0027373810298740864, 0.020842866972088814, 0.015521852299571037, -0.0031217506621032953, 0.001938560395501554, 0.01144419051706791, 0.007212781347334385, -0.01893104426562786, -0.012747705914080143, -0.011283758096396923, 0.061606112867593765, 0.030722839757800102, 0.02314239926636219, -0.007139250170439482, 0.02898482047021389, 0.005374491680413485, 0.0347871333360672, 0.018396269530057907, 0.035455599427223206, 0.03181912750005722, -0.018262576311826706, 0.01875724270939827, -0.026578331366181374, -0.012667489238083363, -0.007413322106003761, 0.01144419051706791, -0.015561960637569427, -0.0070389797911047935, 0.002942935097962618, -0.00434170663356781, -0.01711280830204487, -0.013890787959098816, 0.04449330270290375, 0.014746428467333317, -0.01891767606139183, 0.02726016938686371, -0.0025936600286513567, -0.005608455743640661, -0.008984224870800972, 0.03901185467839241, -0.06240827590227127, -0.007085772231221199, -0.009211503900587559, -0.008830476552248001, 0.006036275997757912, -0.01231320109218359, -0.011136694811284542, -0.023476634174585342, 0.05168602988123894, 0.0011138366535305977, -0.019238540902733803, -0.023957932367920876, 0.002170853316783905, -0.010381325148046017, -0.014251761138439178, -0.009692802093923092, -0.015468374826014042, 0.0038537243381142616, -0.018249206244945526, -0.010388010181486607, -0.002814254956319928, 0.025749430060386658, -0.004903221037238836, -0.028396567329764366, 0.040562704205513, -0.006945393979549408, 0.004351733718067408, 0.03748774528503418, 0.023503374308347702, 0.026578331366181374, -0.036872755736112595, -0.021457858383655548, -0.018102142959833145, 0.029920676723122597, -0.012393416836857796, -0.0006977146258577704, -0.004154535476118326, 0.03304911032319069, -0.011825217865407467, 0.005698699038475752, 0.029760243371129036, 0.038316648453474045, 0.0204150453209877, 0.022580886259675026, 0.020013965666294098, 0.014612734317779541, 0.0029997550882399082, 0.0459371954202652, -0.010167415253818035, -0.0022911778651177883, 0.015508483164012432, -0.00682841194793582, -0.019933748990297318, 0.01604325883090496, -0.01144419051706791, -8.71098818606697e-05, 0.00015061444719322026, 0.018115513026714325, -0.012112660333514214, -0.032327163964509964, -0.009719540365040302, -0.002473335713148117, 0.007887935265898705, 0.019572775810956955, -0.011551146395504475, 0.00798152107745409, 0.026605069637298584, -0.00621007801964879, 0.02463977038860321, -0.005986140575259924, 0.026404529809951782, 0.014946969226002693, -0.026859087869524956, 0.016965745016932487, 0.055723585188388824, 0.014679580926895142, -0.03724709898233414, -0.0020171054638922215, 0.005665275733917952, 0.002169182291254401, -0.007727502845227718, 0.017767908051609993, -0.008603197522461414, 0.01525446493178606, -0.014799905940890312, 0.004425265360623598, -0.03310259059071541, -0.028129179030656815, 0.015548591502010822, -0.023690544068813324, -0.005097076762467623, 0.02163165993988514, 0.0004328337381593883, -0.006825069431215525, 0.021417750045657158, 0.025695951655507088, -0.014024481177330017, -0.013001724146306515, 0.013456283137202263, -0.0011489312164485455, -0.002154141664505005, -0.015575329773128033, -0.010347901843488216, 0.01167815551161766, -0.0011865326669067144, -0.025642475113272667, 0.01223298441618681, 0.051365166902542114, -0.009779702872037888, 0.0036264448426663876, -0.022875012829899788, -0.01159793883562088, -0.014118066988885403, 0.013890787959098816, -0.02314239926636219, -0.024813571944832802, -0.018102142959833145, -0.005030230153352022, -0.016725096851587296, 0.016484448686242104, 0.011785110458731651, -0.0030666019301861525, -0.017848124727606773, -0.020882975310087204, 0.008850530721247196, -0.003950652200728655, 0.02611040323972702, -0.025268131867051125, -0.012032443657517433, -0.012834606692194939, 0.03441279008984566, 0.013529814779758453, 0.02621735818684101, 0.038396865129470825, -0.014799905940890312, 0.012854660861194134, -0.01565554551780224, 0.009879972785711288, -0.0408300906419754, -0.012166137807071209, 0.035589296370744705, -0.0012341610854491591, -0.008302385918796062, -0.0577557310461998, 0.005321014206856489, 0.011584569700062275, -0.004692653194069862, -0.025615734979510307, 0.02163165993988514, 0.029573073610663414, 0.016390861943364143, 0.032487597316503525, 0.03895837813615799, -0.010842569172382355, -0.011651416309177876, 0.02584301494061947, -0.029760243371129036, 0.005401230417191982, -0.010240946896374226, 0.014733059331774712, -0.0014873436884954572, 0.015227725729346275, -0.004472058266401291, 0.009799757041037083, 0.011089902371168137, -0.004411896225064993, -0.015307942405343056, 0.0033222914207726717, -0.008776999078691006, -0.010555126704275608, -0.04518851265311241, 0.018342791125178337, 0.0032922104001045227, -0.03874446824193001, -0.015535221435129642, 0.019091477617621422, -0.023864347487688065, 0.04024184122681618, 0.023663805797696114, 0.008870584890246391, 0.013984373770654202, -0.030054369941353798, -3.8671980291837826e-05, 0.004050922580063343, -0.013616715557873249, -0.002794200787320733, 0.021243948489427567, -0.02168513834476471, -0.0034359311684966087, 0.012961615808308125, -0.004000787623226643, -0.024933896958827972, -0.0023747363593429327, -0.007299682591110468, 0.02029472216963768, -0.007259574253112078, -0.01898452267050743, -0.009545738808810711, 0.022661102935671806, 0.015642177313566208, 0.012493687681853771, -0.01096957828849554, 0.01584271714091301, -0.011330551467835903, 0.03604385256767273, 0.034172140061855316, 0.016364123672246933, -0.0054145995527505875, 0.014906860888004303, -0.0033941518049687147, 0.00027135666459798813, -0.02767462097108364, 0.0044787428341805935, -0.004441977012902498, -0.033904753625392914, 0.006500862073153257, -0.017981817945837975, 0.014559256844222546, 0.04641849547624588, -0.004261490423232317, -0.008355863392353058, 0.002877759514376521, -0.003810273949056864, 0.031230876222252846, 0.004759499803185463, 0.03056240640580654, 0.02874417044222355, 0.013222319073975086, 0.022594256326556206, -0.012480317614972591, 0.0057922848500311375, -0.02584301494061947, -0.0015984767815098166, -0.011504353024065495, -0.021417750045657158, 0.02917199209332466, -0.0016360781155526638, -0.019452450796961784, 0.019091477617621422, -0.01014067605137825, 0.02312903106212616, 0.009806442074477673, 0.019372234120965004, 0.01609673537313938, 0.002805899130180478, -0.010120621882379055, 0.011277073994278908, -0.0009199805790558457, 0.009599216282367706, 0.025588996708393097, -0.00853634998202324, 0.0175272598862648, -0.009565792977809906, 0.009666062891483307, 0.0437178798019886, -0.00871683657169342, 0.03858403488993645, 0.024372383952140808, -0.012761075049638748, -0.001112165511585772, -0.026270834729075432, -0.008282331749796867, -0.013289165683090687, 0.004716049414128065, 0.005448023322969675, -0.011096587404608727, -0.0027908585034310818, 0.032728247344493866, 0.0009617598843760788, 0.012961615808308125, 0.04315636307001114, -0.02160492166876793, -0.013890787959098816, 0.009719540365040302, -0.014492410235106945, -0.000602875545155257, -0.002406488638371229, -0.021163731813430786, -0.001268420135602355, 0.03147152438759804, -0.018222467973828316, 0.01152440719306469, -0.007780980318784714, 0.0015099046286195517, 0.0008665030472911894, -0.029680028557777405, -0.009218188934028149, 0.02322261594235897, 0.02879764884710312, 0.015374789014458656, 0.0078745661303401, 0.027193322777748108, -0.005334383342415094, -0.06609822064638138, -0.007760926149785519, 0.003029836108908057, 0.02177872322499752, -0.01720639504492283, 0.022099588066339493, 0.003964021801948547, 0.047220658510923386, -0.014559256844222546, 0.04337027668952942, -0.013315903954207897, -0.0016235442599281669, -0.006470780819654465, 0.018048666417598724, 0.005217401310801506, -0.01867702603340149, -0.02335631102323532, -0.0017162944423034787, -0.04486764594912529, 0.0517127700150013, -0.015013815835118294, -0.005865816492587328, -0.0061432309448719025, 0.011290443129837513, -0.0001269046770175919, 0.002515115076676011, 0.019037999212741852, -0.01293487660586834, -0.0030030973721295595, -0.0008965841843746603, 0.02151133492588997, -0.04366439953446388, -0.005187320057302713, 0.012620696797966957, -0.02013428881764412, -0.02442586049437523, -0.001563382102176547, -0.006253528408706188, 0.025254761800169945, -0.009839865379035473, -0.007727502845227718, 0.006818384863436222, -0.02762114256620407, 0.0004299091815482825, -0.0010127306450158358, 0.025187915191054344, -0.01017409935593605, 0.017634214833378792, -0.02439912222325802, -0.036819279193878174, 0.03061588481068611, -0.01878398098051548, 0.032674770802259445, 0.009966874495148659, 0.0009266652632504702, -0.016243798658251762, 0.009458838030695915, 0.009752963669598103, 0.028396567329764366, -0.006691375747323036, -0.01879735104739666, -0.012741020880639553, -0.018423007801175117, -0.04104400426149368, -0.042514633387327194, 0.023784130811691284, 0.016444340348243713, -0.016939006745815277, -0.02342315763235092, 0.0016845421632751822, -0.005394545383751392, 0.024131733924150467, 0.026952674612402916, 0.0122062461450696, 0.00434170663356781, 0.00853634998202324, 0.011464244686067104, 0.0007557878852821887, 0.035348646342754364, 0.024987375363707542, 0.007206096779555082, -0.019599514082074165, 0.01897115260362625, -0.024158474057912827, -0.017741169780492783, 0.011651416309177876, 0.009793072007596493, -0.0020288038067519665, 0.0035462286323308945, -0.019385604187846184, 0.0012082578614354134, 0.027995485812425613, -0.007359844632446766, 0.01740693487226963, -0.014853383414447308, 0.018316052854061127, 0.0016778574790805578, -0.0043651033192873, 0.04794260486960411, 0.010548442602157593, -0.0010804132325574756, 0.019398972392082214, -0.0055616628378629684, -0.006200050935149193, -0.0041044000536203384, 0.04443982616066933, -0.010367956012487411, -0.0006964612402953207, -0.019318757578730583, 0.001707102986983955, 0.0015500127337872982, 0.045803502202034, 0.0323004275560379, 0.010902730748057365, -0.01731334999203682, 0.028289612382650375, -0.000244409020524472, 0.019893640652298927, 0.031016966328024864, -0.00680501526221633, -0.008509611710906029, -0.0068718623369932175, 0.02604355663061142, -0.019733207300305367, -0.00036431566695682704, -0.025147806853055954, 0.04288897663354874, 0.007633917033672333, -0.01604325883090496, -0.019305387511849403, -0.009712856262922287, -0.008041683584451675, -0.0006459082360379398, -0.008776999078691006, -0.052862536162137985, -0.005391203332692385, -0.005695356521755457, 0.0009642666555009782, 0.02762114256620407, -0.018021926283836365, 0.015200987458229065, 0.0488249845802784, 0.032353904098272324, 0.03213999420404434, -0.0027607774827629328, -0.0522475428879261, 0.02463977038860321, 0.010281054303050041, -0.004619121551513672, 0.00762723246589303, -0.009565792977809906, 0.0016569677973166108, -0.007734187413007021, -0.008275647647678852, -0.009031017310917377, -0.011978966183960438, -0.032434120774269104, -0.00289112888276577, 0.004505481570959091, -0.036765798926353455, 0.005631851963698864, 0.007466799579560757, 0.00024670688435435295, -0.007339790463447571, -0.013289165683090687, 0.02909177541732788, -0.005986140575259924, -0.0033005662262439728, 0.03965358808636665, 0.004963383078575134]" -"How to Build a Weather Station With Elixir, Nerves, and TimescaleDB","command in their database migration:SELECT create_hypertable('weather_conditions', 'timestamp').""It’s this kind of pragmatism and ease of use that makes TimescaleDB a great time-series database for projects both small and large. ""-Alexander KoutmousAll in all, leveraging TimescaleDB as the time-series database for the project worked out great and allowed us to show readers how they can set up a production-ready IoT project in a relatively short amount of time.✨Editor’s Note:To start with TimescaleDB today,sign up for a free 30-day trialorinstall TimescaleDB on your own server.Getting started advice & resourcesAny time we had questions about the inner workings of TimescaleDB, how to set it up, or what the various configuration options are, we turned to the official TimescaleDB docs. Some of the articles that helped us get started included:•Using TimescaleDB via Docker• Understanding some ofthe fundamental TimescaleDB concepts• Getting an overview of some of theTimescaleDB best practicesWe’d like to thank Alex, Bruce, and Frank for sharing their story, as well as for writing a book that makes building full-stack IoT solutions accessible for complete beginners. We congratulate them and the entire Nerves community on their success, and we cannot wait to read the final version of their book that will be released in January 2022 🎊We’re always keen to feature new community projects and stories on our blog. If you have a story or project you’d like to share, reach out on Slack (@Lucie Šimečková), and we’ll go from there.Additionally, if you’re looking for more ways to get involved and show your expertise, check out theTimescaleHeroes program.The open-source relational database for time-series and analytics.Try Timescale for free",https://www.timescale.com/blog/how-to-build-a-weather-station-with-elixir-nerves-and-timescaledb/,374,"[0.0011837596539407969, -0.0051201689057052135, 0.045665442943573, -0.007441266439855099, 0.07460522651672363, 0.00011884878040291369, -0.015102607198059559, 0.02995762974023819, -0.02295651286840439, -0.010405393317341805, 0.028279563412070274, -0.008851118385791779, 0.012647401541471481, -0.04170410335063934, 0.044014882296323776, 0.05014945939183235, -0.01202156487852335, 0.003933830186724663, 0.0033440995030105114, 0.04313458502292633, -0.0007844449719414115, 0.0018224912928417325, 0.015432718209922314, 0.01390595268458128, -0.030012648552656174, -0.010763014666736126, -0.05097473785281181, 0.0754305049777031, 0.036339789628982544, -0.0491316132247448, -0.007018310949206352, -0.037852801382541656, -0.05196507275104523, 0.03867807984352112, 0.031113021075725555, 0.02094833366572857, 0.04365726187825203, -0.03023272380232811, 0.044289976358413696, -0.00513736205175519, -0.03320372849702835, -0.008239036425948143, 0.010281601920723915, 0.027069153264164925, -0.02497844584286213, -0.022200006991624832, -0.03061785362660885, -0.009800189174711704, 0.024249449372291565, 0.04530782252550125, -0.029655028134584427, -0.009394426830112934, -0.019050192087888718, -0.04943421483039856, 0.006055484991520643, -0.012152234092354774, -0.005862920079380274, 0.031250566244125366, -0.004625001456588507, -0.02661525085568428, 0.017248332500457764, -0.031388115137815475, 0.0553487166762352, 0.04838886111974716, -0.009593869559466839, 0.008775467053055763, 0.0040851314552128315, 0.017550934106111526, -0.008637920953333378, 0.030067667365074158, 0.04583049938082695, 0.0040301126427948475, 0.0025583652313798666, -0.019930489361286163, 0.011313200928270817, -0.08038218319416046, -0.0427219457924366, 0.053945742547512054, 0.0030414971988648176, -0.060685522854328156, -0.017000749707221985, -0.030947964638471603, -0.030040157958865166, 0.01438736543059349, 0.005054834298789501, -0.054110798984766006, -0.019696660339832306, -0.016945730894804, -0.0009078069706447423, -0.006829184480011463, 0.0089955423027277, 0.05969518795609474, 0.029324917122721672, 0.025060974061489105, 0.011574539355933666, 0.019160229712724686, -0.02284647524356842, -0.009848330169916153, -0.010728628374636173, -0.0005622213939204812, 0.01759219914674759, -0.008094612509012222, -0.011533275246620178, -0.00018396845553070307, 0.018458742648363113, 0.00762695400044322, 0.03372640535235405, -0.019682906568050385, 0.019559113308787346, 0.011058739386498928, -0.1231316402554512, 0.014896287582814693, -0.028719712048768997, -0.0017829466378316283, -0.01101747527718544, -0.0068463776260614395, 0.007633831351995468, -0.027234209701418877, 0.0004891497665084898, -0.02056320384144783, -0.020233092829585075, 0.007420634385198355, -0.03587213158607483, -0.0013599911471828818, -0.0016935414168983698, -0.010020263493061066, -0.026422685012221336, -0.037577707320451736, -0.007124909199774265, 0.0015190292615443468, 0.04203421249985695, -0.002921144012361765, 0.03771525248885155, -0.01127881370484829, -0.02592751756310463, -0.02420818619430065, -0.04624313861131668, -0.03468922898173332, 0.03037026897072792, -0.002785316901281476, 0.013286992907524109, -0.05196507275104523, 0.03248848766088486, -0.007393124978989363, -0.012874353677034378, 0.02134721912443638, -0.013520821928977966, 0.060135334730148315, -0.035542018711566925, 0.001555994967930019, 0.012131602503359318, -0.03105800226330757, -0.0359821692109108, -0.0075650583021342754, 0.060135334730148315, -0.00017805825336836278, 0.03444164618849754, 0.03812789171934128, -0.00887862779200077, -0.044152431190013885, 0.0245658066123724, 0.05870485305786133, 0.015281417407095432, 0.015308926813304424, -0.02068699523806572, 0.002759526949375868, -0.03171822428703308, -0.04027361795306206, -0.08566396683454514, 0.0059248157776892185, -0.024882163852453232, -0.05975020304322243, -0.0038788116071373224, 0.0518825426697731, 0.03812789171934128, -0.008459110744297504, 0.02365799993276596, -0.04519778490066528, 0.015240153297781944, -0.030397778376936913, -0.04693086817860603, -0.025308558717370033, -0.019806697964668274, 0.009298143908381462, -0.018334949389100075, -0.00926375761628151, -0.04486767202615738, -0.0012499538715928793, -0.001580065581947565, 0.018252423033118248, -0.054771021008491516, 0.03375391289591789, 0.002217937493696809, -0.002946933964267373, 0.040768787264823914, -0.04585800692439079, 0.04371228069067001, 0.011395728215575218, -0.018623797222971916, 0.05177250877022743, 0.04057621955871582, 0.04313458502292633, 0.027055399492383003, -0.016285507008433342, 0.011244427412748337, -0.0025102237705141306, 0.004614685662090778, 0.0035486998967826366, -0.06596730649471283, -0.01558401994407177, -0.003299396950751543, -0.005639406852424145, 0.011608925648033619, -0.006309946067631245, -0.03334127366542816, -0.011540152132511139, -0.042942021042108536, -0.011870264075696468, -0.031910791993141174, -0.01008215919137001, 0.000695039692800492, 0.06140076369047165, 0.014208554290235043, -0.0354594923555851, -0.015336436219513416, 0.006523143500089645, 0.013623981736600399, -0.017262088134884834, 0.04164908453822136, 0.013445171527564526, 0.012943127192556858, -0.031223058700561523, 0.01261989213526249, -0.050589606165885925, -0.0017554373480379581, 0.01021970622241497, 0.022873984649777412, -0.04690336063504219, -0.008060225285589695, -0.018252423033118248, -0.006189593113958836, 0.020466921851038933, -0.0006692497408948839, -0.00527834752574563, -0.010240337811410427, 0.020480675622820854, -0.03471674025058746, -0.08846991509199142, 0.019820451736450195, 0.027578076347708702, 0.02420818619430065, 0.005474351346492767, 0.027234209701418877, -0.021030861884355545, -0.0029263021424412727, -0.0384029857814312, -0.016189225018024445, -0.007448143791407347, 0.0288847666233778, -0.016313016414642334, 0.00892676878720522, -0.050176966935396194, -0.012784948572516441, 0.0032684491015970707, -0.018211157992482185, 0.019449077546596527, 0.020631976425647736, -0.034084025770425797, 0.027756886556744576, -0.013706509955227375, 0.022227516397833824, 0.011932159774005413, 0.03471674025058746, -0.05997027829289436, -0.04285949468612671, -0.034744247794151306, -0.042776964604854584, 0.026161346584558487, -0.021526029333472252, 0.020893314853310585, 0.020384393632411957, -0.025844989344477654, -0.0030621292535215616, -0.01869257166981697, 0.037577707320451736, 0.02364424616098404, 0.0007805764325894415, 0.06404165923595428, 0.02175985835492611, -0.06904835253953934, -0.004989499691873789, 0.018197404220700264, 0.027990715578198433, -0.022543873637914658, 0.01518513448536396, -0.004803812131285667, 0.0034592947922647, 0.0032168689649552107, -0.026904096826910973, -0.028307072818279266, 0.033671386539936066, -0.008837363682687283, 0.030287742614746094, -0.008005207404494286, 0.006134574301540852, 0.012723051942884922, 2.251249497930985e-05, -0.03224090114235878, 0.008307809010148048, 0.004886339884251356, 0.020453166216611862, -0.018169894814491272, 0.009250002913177013, -0.022942759096622467, 0.003438662737607956, -0.023162832483649254, 0.03565205633640289, -0.013108182698488235, -0.025171011686325073, -0.02631264738738537, -0.056779198348522186, -0.06585726886987686, 0.014084762893617153, 0.03694499284029007, 0.020645732060074806, -0.008871749974787235, 0.023052794858813286, -0.0032684491015970707, 0.010329742915928364, -0.004277696367353201, -0.028279563412070274, -0.044675108045339584, 0.027495548129081726, 0.030315252020955086, -0.007166173309087753, -0.049104105681180954, 0.040768787264823914, -0.018761344254016876, -0.025762461125850677, 0.029049823060631752, 0.0021474449895322323, 0.008239036425948143, -0.08005207031965256, 0.033506330102682114, 0.022392572835087776, -0.0034335048403590918, 0.009222493506968021, -0.03933830186724663, -0.012324167415499687, 0.021264690905809402, -0.0567241832613945, -0.022255025804042816, -0.007496284786611795, -0.011320077814161777, -0.006746656261384487, 0.00344210141338408, 0.01015093270689249, 0.009917103685438633, -0.01499256957322359, 0.0012963758781552315, -0.01999926194548607, 0.027646848931908607, 0.03867807984352112, -0.009057438001036644, 0.0011141267605125904, 0.01596914976835251, -0.036229752004146576, 0.007867660373449326, -0.045060236006975174, -0.026821570470929146, 0.028664693236351013, -0.01369963213801384, -0.007530671544373035, -0.006505949888378382, -0.06838812679052353, 0.0034145922400057316, 0.0529278963804245, 0.041979193687438965, 0.014978814870119095, 0.07185430079698563, 0.04464759677648544, -0.004772863816469908, -0.004569982644170523, -0.006168961059302092, 0.04660075902938843, 0.027069153264164925, -0.010171564295887947, 0.020356884226202965, 0.0008931926568038762, 0.0019445638172328472, 0.04907659441232681, 0.006949537433683872, 0.0059935892932116985, -0.007317474577575922, 0.015020078979432583, 0.018334949389100075, -0.005869797430932522, 0.030837928876280785, 0.08571898937225342, -0.010797400958836079, 0.02792194113135338, 0.010061527602374554, -0.030067667365074158, 0.0012903582537546754, 0.025171011686325073, 0.0023572032805532217, -0.019820451736450195, 0.012117847800254822, -0.05347808450460434, -0.013190710917115211, -0.039723433554172516, -0.032323431223630905, 0.028719712048768997, -0.03169071674346924, 0.01297751348465681, -0.03942083194851875, -0.05842975899577141, 0.05025949701666832, -0.0015078536234796047, 0.0475635826587677, -0.06448180228471756, 0.005405577830970287, 0.006309946067631245, -0.045885518193244934, -0.04164908453822136, 0.06464686244726181, 0.03658737242221832, -0.02162231132388115, -0.005739128217101097, -0.053670648485422134, -0.05149741470813751, -0.022997776046395302, 0.017784763127565384, -0.01585911214351654, 0.015006324276328087, 0.025074729695916176, 0.026422685012221336, -0.00632026232779026, 0.07559556514024734, -0.004628439899533987, -0.001044493867084384, 0.022653911262750626, 0.009800189174711704, 0.007537548895925283, 0.025171011686325073, -0.05177250877022743, -0.029214879497885704, -0.02284647524356842, -0.027605585753917694, -0.0075856903567910194, 0.028829749673604965, -0.04673830419778824, -0.02122342586517334, -0.00018353862105868757, -0.010474166832864285, -0.0048966556787490845, 0.05727436766028404, 0.00013206613948568702, 0.030150195583701134, -0.018073610961437225, -0.08428850024938583, 0.03295614570379257, -0.058264702558517456, -0.04263941943645477, -0.006193031556904316, -0.05009444057941437, 0.0556788295507431, 0.024166923016309738, 0.03677993640303612, -0.03265354037284851, 0.016175469383597374, 0.043327152729034424, -0.027468038722872734, -0.005213012918829918, -0.06481191515922546, 0.012331045232713223, 0.03144313395023346, -0.0020150563213974237, -0.003127463860437274, -0.0363122783601284, 0.02968253754079342, -0.004353347234427929, 0.007004556246101856, 0.06063050404191017, 0.011409482918679714, 0.026408929377794266, 0.00033591437386348844, -0.0066366191022098064, -0.011340710334479809, 0.021553538739681244, -0.01584535837173462, -0.0011631277156993747, 0.0288847666233778, -0.016147959977388382, -0.020356884226202965, -0.012028442695736885, -0.042666926980018616, -0.017440898343920708, -0.013231974095106125, 0.005309295374900103, 0.01988922618329525, -0.016560599207878113, 0.013108182698488235, 0.07779631018638611, -0.020865805447101593, 0.035542018711566925, -0.018720081076025963, -0.008342196233570576, -0.020370637997984886, -0.02325911447405815, -0.024785881862044334, -0.009772679768502712, 0.03719257563352585, 0.02445576898753643, -0.016299260780215263, 0.02071450464427471, -0.021140899509191513, 0.018995173275470734, -0.011773981153964996, 0.0025205397978425026, -0.03435911983251572, 0.0016325052129104733, -0.038788117468357086, 0.0122829033061862, -0.012888108380138874, 0.021443501114845276, -0.04968180134892464, -0.006189593113958836, -0.01869257166981697, 0.009360040538012981, 0.004453068133443594, -0.030727891251444817, 0.02418067678809166, -0.007269333116710186, -0.054220836609601974, 0.008156508207321167, -0.015556510537862778, -0.047646112740039825, -0.043327152729034424, 0.028802240267395973, -0.0025583652313798666, 0.04035614803433418, 0.022131234407424927, 0.050039421766996384, -0.018334949389100075, -0.01896766386926174, -0.02646394819021225, -0.012984390370547771, -0.015473982319235802, 0.03202082961797714, 0.04098885878920555, -0.027743130922317505, 0.031773243099451065, 0.016505582258105278, 0.0009894751710817218, 0.03722008690237999, 0.035019341856241226, -0.011210041120648384, 0.029077332466840744, 0.010914315469563007, -0.012179743498563766, 0.004690336063504219, -0.009628255851566792, 0.011698330752551556, 0.007372492924332619, 0.016464317217469215, -0.0002235130814369768, -0.010377883911132812, -0.038760606199502945, 0.02525353990495205, 0.02204870618879795, -0.009373795241117477, -0.012062828987836838, 0.02068699523806572, 0.005477789789438248, -0.011980300769209862, -0.05036953091621399, -0.04153904691338539, -0.003485084744170308, 0.03961339592933655, -0.010969334281980991, -0.018637552857398987, -0.026436438784003258, 0.0359821692109108, -0.04613310098648071, 0.013582717627286911, 0.03292863443493843, 0.01000650878995657, 0.038237929344177246, -0.043739791959524155, 0.0022127795964479446, 0.006220540963113308, -0.019449077546596527, 0.006904834881424904, 0.02877473086118698, 0.0075719356536865234, 0.03064536303281784, 0.011189408600330353, -0.03848551586270332, 0.01759219914674759, -0.001034177839756012, -0.024813391268253326, -0.007681972812861204, -0.012509855441749096, -0.00018901898874901235, 0.01788104698061943, -0.003631227882578969, -0.011265059001743793, 0.024084394797682762, -0.02281896583735943, 0.030342761427164078, 0.0021130582317709923, 0.006523143500089645, -0.04016358032822609, -0.009944613091647625, -0.0032031144946813583, 0.013603350147604942, -0.005374629981815815, 0.028307072818279266, -0.02929740771651268, -0.043739791959524155, -0.02444201521575451, -0.02030186541378498, -0.052762843668460846, 0.022777702659368515, 0.005484667140990496, -0.029902610927820206, -0.04580298811197281, 0.0013367801439017057, 0.021979931741952896, 0.03397398814558983, -0.01182212308049202, 0.031002983450889587, 0.009112456813454628, -0.015198889188468456, 0.030562834814190865, 0.03829294815659523, 0.04693086817860603, -0.007049258798360825, -0.016739411279559135, 0.025047220289707184, 0.00658503919839859, 0.0019858276937156916, 0.006729463115334511, 0.022475099191069603, -0.021952424198389053, -0.00021115539129823446, 0.044152431190013885, -0.005216451361775398, -0.0058319722302258015, -0.0008364547393284738, -0.017275841906666756, 0.053533103317022324, 0.046683285385370255, 0.038898155093193054, -0.01295688096433878, -0.019173983484506607, -0.017702236771583557, -0.01256487425416708, 0.008541638031601906, -0.037852801382541656, -0.024015620350837708, -0.03479926660656929, 0.004177975468337536, -0.02297026664018631, 0.010102791711688042, -0.0051476783119142056, 0.016478072851896286, 0.013527699746191502, 0.025226030498743057, -0.00483819842338562, 0.024895919486880302, 0.00955260545015335, 0.03171822428703308, 0.03848551586270332, 0.00173050700686872, 0.018197404220700264, -0.0023520453833043575, 0.025501122698187828, 0.039448339492082596, -0.016147959977388382, 0.019572868943214417, -0.007193682715296745, 0.005381507333368063, 0.009827698580920696, 0.00137718440964818, -0.010921193286776543, 0.031223058700561523, 0.014112272299826145, 0.018307439982891083, 0.011739594861865044, -0.022777702659368515, -0.025294803082942963, -0.02312156930565834, -0.0008914733189158142, -0.0397784523665905, 0.010439780540764332, 0.022117478772997856, -0.02137472853064537, -0.02349294349551201, 0.0033406608272343874, -0.0006408807821571827, -0.0556788295507431, -0.01123067270964384, -0.0037756517995148897, -0.0029091087635606527, 0.01596914976835251, -0.005697864107787609, 0.03865056857466698, -0.012530487030744553, -0.06338143348693848, 0.0007758482825011015, -0.021044615656137466, 0.030150195583701134, -0.022640155628323555, -0.008018962107598782, 0.0007406019722111523, 0.036752428859472275, -0.03793532773852348, -0.0037618970964103937, -0.06855317950248718, -0.003827231703326106, -0.007283087819814682, -0.019132720306515694, 0.032983653247356415, -0.005721935071051121, 0.03856804221868515, 0.01946283131837845, -0.0019755116663873196, -0.013479557819664478, 0.007743868511170149, -0.003961339592933655, 0.0048003732226789, 0.007702604867517948, 0.03243346884846687, -0.0051270462572574615, -0.04349220544099808, 0.007434389088302851, -0.027908187359571457, -0.009580114856362343, -0.02539108693599701, 0.01570781134068966, -0.00023082023835740983, 0.013562086038291454, 0.03628477081656456, -0.030150195583701134, 0.005316172726452351, 0.0416765920817852, 0.021539783105254173, -0.0034266274888068438, -0.006334017030894756, 0.012392940931022167, -0.008032715879380703, -0.017234578728675842, -0.007014872040599585, -0.005450280383229256, -0.020618222653865814, 0.015212643891572952, -0.007826396264135838, 0.047233473509550095, 0.0057563213631510735, 0.022929003462195396, -0.024882163852453232, 0.03061785362660885, -0.00550529919564724, 0.03639480844140053, -0.004356785677373409, 0.0025772778317332268, -0.029655028134584427, -0.039008188992738724, -0.015680301934480667, -0.019847961142659187, -0.010095913894474506, 0.007867660373449326, 0.05078217387199402, -0.006117381155490875, -0.020907070487737656, 0.022200006991624832, 0.011849631555378437, -0.018747590482234955, 0.0213609728962183, -0.008397214114665985, -0.05141488462686539, -0.012661156244575977, 0.023616736754775047, -0.024001866579055786, -0.014978814870119095, -0.0075856903567910194, -0.017660971730947495, -0.03746766969561577, -0.017014503479003906, -0.00940818153321743, -0.014291082508862019, 0.017152050510048866, 0.03221339359879494, -0.004284573718905449, -0.013383275829255581, -0.07080894708633423, -0.03958588466048241, 0.014291082508862019, 0.0009189826087094843, -0.011292568407952785, -0.024001866579055786, -0.0015267663402482867, 0.0359821692109108, 0.03829294815659523, -0.02270892821252346, 0.03061785362660885, -0.023561717942357063, -0.0075650583021342754, 0.0017743499483913183, -0.01665688306093216, 0.01189777348190546, 0.030397778376936913, 0.0011321797501295805, 0.022213760763406754, 0.03589963912963867, -0.007812641561031342, 0.017110785469412804, -0.023190341889858246, 0.025363577529788017, 0.002582435728982091, -0.03801785409450531, -0.023699263110756874, 0.04431748762726784, 0.007386247627437115, -0.014483647421002388, 0.0026701216120272875, 0.01627175323665142, 0.012544241733849049, -0.013933462090790272, -0.019669150933623314, 0.03345131129026413, -0.011939037591218948, 0.007248701062053442, -0.012585505843162537, -0.030177704989910126, -0.041594065725803375, -0.05499109625816345, 0.028582165017724037, -0.03463421016931534, 0.04406990110874176, -0.011168777011334896, 0.009889594279229641, 0.02445576898753643, 0.00011745182564482093, 0.003466172143816948, 0.018500005826354027, 0.024359486997127533, 0.007111154496669769, -0.009064314886927605, -0.029655028134584427, 0.009573237039148808, -0.04473012685775757, -0.016230488196015358, 0.014112272299826145, 0.008974909782409668, -0.00953197292983532, -0.0009911945089697838, 0.0033355029299855232, -0.06838812679052353, -0.030342761427164078, 0.009910225868225098, 0.0003791125782299787, 0.0475635826587677, -0.005605020560324192, -0.005006692837923765, 0.017248332500457764, 0.063986636698246, 0.033946480602025986, -0.025446103885769844, 0.026120083406567574, 0.0060348534025251865, 0.013830301351845264, -0.017550934106111526, 0.01122379582375288, -0.035019341856241226, -0.010068404488265514, -0.010405393317341805, -0.02109963446855545, 0.009435690939426422, -0.005274908617138863, -0.02284647524356842, 0.0009611062705516815, 0.011464501731097698, 0.008521006442606449, 0.02111339010298252, 0.053560610860586166, 0.013465803116559982, -0.016464317217469215, -0.01572156697511673, 0.020673241466283798, 0.027234209701418877, 0.011959669180214405, 0.007193682715296745, -0.005690986756235361, -0.01081803347915411, 0.007489407435059547, 0.0058250948786735535, 0.01894015446305275, 0.02689034305512905, 0.017262088134884834, 0.015694057568907738, 0.017110785469412804, -0.01323885191231966, -0.004611246753484011, 0.011168777011334896, -0.03559703752398491, -0.0029125474393367767, 0.01749591715633869, -0.02082454226911068, -0.011602047830820084, 0.0201505646109581, 0.011443870142102242, 0.018252423033118248, 0.003473049495369196, -0.016753165051341057, 0.036614879965782166, -0.012991268187761307, -0.029379934072494507, 0.03320372849702835, 0.003249536268413067, 0.018472496420145035, 0.03625725954771042, -0.02514350228011608, 0.003479926846921444, -0.013857810758054256, 0.010267847217619419, 0.058374740183353424, -0.0020013018511235714, 0.038347966969013214, 0.01551524642854929, -0.04035614803433418, -0.009855207987129688, 0.006949537433683872, 0.007688850164413452, 0.01933903992176056, -0.00517174880951643, 0.016326770186424255, -0.027344247326254845, -0.020398147404193878, 0.030342761427164078, -0.00833531841635704, -0.024937182664871216, 0.009050560183823109, 0.010625467635691166, 0.026147592812776566, 0.04310707747936249, -0.04478514567017555, -0.027646848931908607, 0.0548260398209095, 0.008514128625392914, 0.08357325941324234, -0.045362841337919235, -0.032571014016866684, -0.027316737920045853, -0.015694057568907738, 0.004680020269006491, 0.008479742333292961, 0.02526729367673397, 0.00907119270414114, 0.03452417626976967, -0.016491826623678207, -0.04384982958436012, -0.002943495288491249, 0.0034059954341500998, 0.009779556654393673, 0.015130116604268551, 0.019655397161841393, 0.0004205914447084069, 0.02779814973473549, 0.040493693202733994, 0.014965060167014599, -0.00017870300507638603, 0.006045169197022915, 0.01001338567584753, -0.006265243515372276, -0.01775725558400154, 0.005704741459339857, 0.01424981839954853, 0.05036953091621399, 0.015611529350280762, -0.03584462031722069, -0.04569295048713684, -0.006148329004645348, -0.03818291053175926, 0.011890895664691925, 0.012331045232713223, -0.012124724686145782, 0.014593685045838356, 0.02232379838824272, 0.0024414504878222942, 0.008032715879380703, 0.03719257563352585, 0.020521938800811768, -0.014538666233420372, 0.018610043451189995, -0.03694499284029007, -0.0005480368854478002, 0.01760595291852951, -0.018747590482234955, 0.018197404220700264, 0.03777027130126953, 0.0020993035286664963, -0.003957900684326887, -0.026945361867547035, 0.02164982073009014, 0.02071450464427471, 0.016450563445687294, 0.0067191473208367825, 0.0048003732226789, 0.01015093270689249, 0.02537733130156994, 0.02151227369904518, 0.0036965624894946814, -0.011691453866660595, -0.045087747275829315, -0.026821570470929146, -0.01909145526587963, -0.030150195583701134, 0.00859665684401989, -0.03345131129026413, 0.04731599986553192, -0.003634666558355093, 0.0027113857213407755, -0.0036002800334244967, 0.013190710917115211, 0.014538666233420372, -0.01283996645361185, 0.021250935271382332, -0.0025325750466436148, 0.037687744945287704, 0.02298402227461338, 0.023080304265022278, 0.001392658450640738, -0.016340525820851326, 0.005990150384604931, -0.0026855955366045237, 0.02407063916325569, 0.022103725001215935, -0.014222308993339539, -0.026711532846093178, -0.005715057719498873, 0.07053384929895401, 0.02847212739288807, 0.019407812505960464, -0.02982008457183838, -0.0015121519099920988, 0.018596287816762924, 0.006935782730579376, 0.013850933872163296, 0.013369521126151085, 0.042254287749528885, 0.030342761427164078, 0.006334017030894756, -0.010996843688189983, 0.007303719874471426, 0.00349540077149868, 0.023162832483649254, 0.018513759598135948, -0.01812862977385521, -0.001204391592182219, -0.008913014084100723, 0.0035762093029916286, -0.0035727706272155046, 0.022227516397833824, 0.018183648586273193, -0.04676581546664238, 0.02847212739288807, 0.001543099875561893, -0.010054649785161018, -0.0051820650696754456, 0.021993687376379967, -0.0440974123775959, -0.002271236851811409, -0.010020263493061066, -0.008720449171960354, -0.0076957275159657, 0.01840372383594513, -0.017110785469412804, -0.012310412712395191, 0.03287361562252045, -0.010563571937382221, -0.007056136149913073, -0.015927886590361595, 0.005849165376275778, -0.022144988179206848, -0.00655065244063735, 0.0005063430871814489, -0.020453166216611862, 0.006082994397729635, -0.011533275246620178, -0.004411804489791393, -0.019146474078297615, 0.028967294842004776, -0.02353420853614807, -0.01706952229142189, 0.019985508173704147, -0.009057438001036644, 0.009690151549875736, 0.01748216152191162, 0.0037447037175297737, 0.003909759689122438, -0.010618590749800205, -0.040246110409498215, -0.012551119551062584, 0.020370637997984886, -0.038623061031103134, -0.007448143791407347, 0.013672123663127422, 0.0335613489151001, -0.007826396264135838, -0.0017812272999435663, 0.012186621315777302, 0.04327213391661644, 0.01706952229142189, 0.02525353990495205, 0.013713386841118336, 0.02057695761322975, 0.021292200312018394, 0.055541280657052994, -0.03169071674346924, -0.0001554920308990404, 0.00243457336910069, 0.007970820181071758, -0.021402237936854362, 0.02431822381913662, -0.0012396379606798291, -0.0181561391800642, 0.001378903747536242, 0.021333463490009308, -0.013919707387685776, 0.006058923900127411, 0.009607624262571335, -0.004741915967315435, 0.017440898343920708, -0.001566310878843069, -0.004845075774937868, 0.002597909653559327, 0.013328257016837597, 0.020631976425647736, 0.01610669679939747, 0.0048966556787490845, 0.04109889641404152, 0.037577707320451736, -0.011705208569765091, 0.029379934072494507, 0.05942009389400482, 0.0068670096807181835, -0.02943495288491249, 0.004398049786686897, 0.0007156716892495751, 0.0025463297497481108, -0.009985877200961113, 0.009910225868225098, 0.0019600377418100834, 0.02043941244482994, -0.023988110944628716, -0.019311530515551567, -0.018912645056843758, 0.005642845761030912, 0.007798887323588133, -0.01852751523256302, -0.002463801996782422, 0.020109299570322037, 0.013947215862572193, -0.00665381271392107, 0.047893695533275604, 0.052212655544281006, -0.016202978789806366, -0.020095545798540115, -0.002087268279865384, -0.03314870968461037, 0.010831788182258606, -0.0186788160353899, -0.006227418314665556, 0.020989596843719482, -0.0034025567583739758, -0.026147592812776566, 0.01558401994407177, 0.040906332433223724, 0.004312083125114441, -0.004484016448259354, -0.015501491725444794, 0.005536247044801712, -0.012970635667443275, 0.017165804281830788, -0.01424981839954853, -0.010398516431450844, -0.01894015446305275, -0.003988848999142647, -0.01055669505149126, 0.018761344254016876, -0.019394058734178543, -0.009862084873020649, 0.0002422108082100749, -0.024909673258662224, -0.013053163886070251, -0.003834109054878354, 0.010460412129759789, -0.02434573322534561, -0.0032203076407313347, 0.031085511669516563, 0.07267957925796509, 0.0023812740109860897, 0.02902231365442276, 0.03911822661757469, -0.018238667398691177, 0.005384945776313543, -0.004700651858001947, -0.005329927429556847, -0.03570707514882088, -0.014236063696444035, 0.027220454066991806, -0.01896766386926174, -0.022777702659368515, -0.03237845003604889, 0.013589595444500446, 0.017826028168201447, 0.011203163303434849, 0.018334949389100075, 0.051112283021211624, 0.009435690939426422, 0.007310597226023674, 0.030067667365074158, 0.03265354037284851, -0.0363122783601284, -0.0281970351934433, 0.036229752004146576, -0.044565070420503616, 0.024675844237208366, -0.009717660956084728, -0.027853168547153473, -0.012743684463202953, 0.026849079877138138, 0.004473700188100338, -0.004415242932736874, 0.019696660339832306, 0.027371756732463837, -0.018513759598135948, 0.0022953073494136333, -0.029242388904094696, 0.007014872040599585, -0.0392557755112648, -0.01838996820151806, -0.00921561662107706, -0.01896766386926174, 0.019641641527414322, 0.017894800752401352, -0.02595502696931362, 0.04530782252550125, 0.0096007464453578, -0.017674727365374565, 0.007963943295180798, -0.023864319548010826, -0.018926400691270828, 0.02094833366572857, -0.035679563879966736, 0.0035762093029916286, 0.029187370091676712, 0.007482530083507299, 0.0035280680749565363, 0.02310781367123127, 0.0025291366036981344, -0.014634949155151844, -0.0017691920511424541, -0.010900560766458511, 0.01680818386375904, -0.0013703071745112538, -0.004026674199849367, 0.0016531371511518955, -0.0003853451635222882, 0.025322312489151955, 0.028018224984407425, -0.024373242631554604, 0.034854285418987274, -0.018568778410553932, 0.036724917590618134, 0.00892676878720522, 0.018995173275470734, -0.003096515778452158, 0.008541638031601906, 0.021691085770726204, -0.020920824259519577, -0.025556141510605812, 0.01906394585967064, 0.002594470977783203, -0.04781116917729378, -0.007420634385198355, -0.01470372173935175, 0.01735837012529373, 0.03953086584806442, -0.006144890561699867, 0.010281601920723915, 0.028527146205306053, 0.008156508207321167, -0.014483647421002388, -0.029600009322166443, 0.017550934106111526, 0.051800016313791275, 0.029132351279258728, -0.005047956947237253, -0.02094833366572857, 0.021594801917672157, -0.017000749707221985, -0.005828533321619034, -0.010797400958836079, 0.003627789206802845, 0.007083645556122065, -0.008486620150506496, -0.026642760261893272, 0.008060225285589695, -0.007063013501465321, 0.016216734424233437, -0.0026993502397090197, -0.005298979580402374, 0.012331045232713223, 0.012262271717190742, -0.008232158608734608, 0.013720264658331871, 0.005178626161068678, 0.026766551658511162, 0.0018723518587648869, -0.0075581809505820274, 0.016147959977388382, 0.008087734691798687, -0.013115059584379196, 0.017385879531502724, -0.008761712349951267, 0.009855207987129688, 0.02552863210439682, -0.010474166832864285, -0.0037000011652708054, -0.020453166216611862, -0.011182531714439392, 0.005935132037848234, 0.0038581795524805784, -0.004817566368728876, 0.02726171910762787, 0.00453559635207057, 0.03920075669884682, 0.010996843688189983, -0.005096098408102989, 0.022241270169615746, -0.010040895082056522, -0.039173245429992676, -0.003056971123442054, -0.004666265565901995, -0.01841747760772705, -0.01757844351232052, -0.013727141544222832, 0.0036037187092006207, 0.021663576364517212, 0.0020202144514769316, 0.006822307128459215, 0.005302418023347855, 0.012860598973929882, -0.004786618519574404, -0.01745465211570263, -0.029765065759420395, 0.009690151549875736, 0.02647770382463932, -0.006031414493918419, 0.008864873088896275, 0.03609220311045647, 0.0276743583381176, -0.054083287715911865, 0.009875839576125145, -0.0075581809505820274, -0.007038942538201809, -0.014304837211966515, -0.0004680879646912217, 0.001918773865327239, 0.008699816651642323, -0.029875101521611214, 0.010123423300683498, -0.006605671253055334, -0.01409851759672165, -0.015102607198059559, 0.033396292477846146, 0.010322866030037403, -0.022791456431150436, -0.010989965870976448, 0.004611246753484011, -0.04605057090520859, 0.0475635826587677, -0.03400149941444397, -0.020659485831856728, -0.022475099191069603, 0.01041227113455534, 0.011698330752551556, 0.02915986068546772, 0.006915150675922632, 0.01612045057117939, -0.0021955862175673246, -0.013933462090790272, -0.005653161555528641, -0.005856042727828026, -0.003803160972893238, -0.0015190292615443468, -0.005250838119536638, -0.026271384209394455, 0.005735689774155617, -6.726884021190926e-05, 0.009648887440562248, -0.007826396264135838, 0.0050720274448394775, -0.015267662703990936, -0.029352426528930664, 0.006444054190069437, -0.007764500565826893, 0.00140297447796911, 0.009201861917972565, 0.019572868943214417, -0.0382104218006134, -0.03292863443493843, 0.04794871434569359, 0.0024689598940312862, 0.002599629107862711, 0.008108367212116718, -0.012750561349093914, -0.028142016381025314, 0.005044518504291773, 0.012069706805050373, 0.011698330752551556, -0.022887740284204483, -0.018114876002073288, -0.03435911983251572, -0.028444617986679077, -0.03793532773852348, -0.02609257400035858, 0.0037000011652708054, 0.0049104103818535805, -0.01896766386926174, -0.0059592025354504585, -0.008514128625392914, 0.016739411279559135, 0.017633462324738503, 0.024662090465426445, -0.007124909199774265, -0.013156323693692684, 0.0057700760662555695, 0.02004052698612213, 0.008273422718048096, 0.04712343588471413, 0.00140383408870548, 0.009105578996241093, -0.009057438001036644, 0.0001367943041259423, -0.013424539938569069, -0.019022682681679726, 0.03711004927754402, 0.021718593314290047, 0.002974443370476365, 0.014112272299826145, -0.009504463523626328, 0.01640929840505123, 0.021938668563961983, 0.007386247627437115, 0.014126027002930641, 0.0041195182129740715, -0.011100003495812416, 0.007881415076553822, 0.010109668597579002, 0.0562015064060688, 0.0018001400167122483, 0.006010782439261675, 0.02698662504553795, 0.004865707829594612, 0.003091357881203294, 0.004879462532699108, 0.03980595991015434, 0.005728812422603369, -0.018513759598135948, -0.0033991180825978518, 0.018775098025798798, -0.010804278776049614, 0.03801785409450531, 0.033396292477846146, 0.026147592812776566, -0.028444617986679077, 0.03975094109773636, -0.02297026664018631, 0.01008215919137001, 0.006203347817063332, 0.01922900229692459, -0.007248701062053442, -0.023589227348566055, 0.031910791993141174, -0.0034145922400057316, -0.009346285834908485, -0.004456507042050362, 0.049654290080070496, 0.01841747760772705, 0.01678067445755005, -0.0019480024930089712, -0.01317007839679718, -0.015405209735035896, 0.03988848999142647, -0.006863570772111416, -0.01431859191507101, -0.019696660339832306, 0.004680020269006491, 0.006172399502247572, 0.014497402124106884, -0.020260600373148918, 0.0068119908683001995, 0.04329964146018028, 0.005739128217101097, 0.006217102520167828, 0.0001738673890940845, -0.03680744767189026, 0.038100384175777435, 0.0373576320707798, -0.003505716798827052, 0.017097031697630882, -0.028692202642560005, 0.007840150967240334, -0.001036756788380444, 0.0067122699692845345, -0.016340525820851326, -0.017248332500457764, -0.045472875237464905, 0.0033337834756821394, 0.007145541254431009, -0.04596804454922676, 0.018032347783446312, 0.004597492050379515, 0.02528104931116104, 0.003056971123442054, 0.010047772899270058, 0.03092045523226261, 0.019173983484506607, 0.004191730171442032, 0.002396747935563326, 0.0024827145971357822]" -CloudQuery on Using PostgreSQL for Cloud Assets Visibility,"This is an installment of our “Community Member Spotlight” series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition,Ron Eliahu, CTO and co-founder at CloudQuery, joins us to share how they transform data about cloud assets into PostgreSQL tables to give developers visibility into the health of cloud infrastructure. Thanks toTimescaleDB, CloudQuery users manage their data more transparently while maintaining scalability.CloudQueryis an open-source cloud asset inventory powered by SQL. CloudQuery extracts, transforms, and loads cloud assets intonormalizedPostgreSQL tables, enabling developers to assess, audit, and monitor the configurations of their cloud assets.Cloud asset inventory is a key component to solve various challenges in the cloud:Cloud Infrastructure Monitoring, Visibility, and Search: Give developers, SREs, DevOps, and security engineers a streamlined way to gain visibility and perform a wide range of tasks. These tasks include security analytics, fleet management auditing, governance, and cost.Security & Compliance: Turn security and compliance tasks to data problems and solve them with the best tools and practices in DataOps. UseCloudQuery Policiesto codify, version control, and automate security and compliance rules with SQL.Infrastructure as Code (IaC) Drift Detection: CloudQuery leverages its asset inventory to quickly detect drift against IaC (Terraform, more to come) which you can run both in the CI and locally.📖Read CloudQuery´sannouncement blogabout releasing CloudQuery History in Alpha and adding support for TimescaleDB.About the teamWe started CloudQuery a year ago, to solve the cloud asset visibility problem, and quickly gained traction. We are currently a small but mighty team of open-source and cloud security enthusiasts, spread all around the world!A little about myselfRon Eliahu, I am the CTO and co-founder at CloudQuery, I am an engineer at heart, I love building open source projects and working with anything database-related.About the projectQueryable cloud asset inventory is key in solving a lot of core challenges in the cloud such as security, compliance, search, cost, and IaC drift detection. That is why we started CloudQuery and followed a few key decisions:PostgreSQL- The most used database in the world with a huge ecosystem of business intelligence and visualization tools.Open-source- To cover a huge amount of API and cloud providers we decided to make this open-source where everyone can contribute without being blocked by a vendor.Pluggable",https://www.timescale.com/blog/cloudquery-on-using-postgresql-for-cloud-assets-visibility/,519,"[0.00983363389968872, 0.013287304900586605, 0.04509708657860756, 0.01903698965907097, 0.04067227244377136, -0.01110705453902483, -0.03249151259660721, 0.04273032397031784, -0.05013931542634964, -0.005141916684806347, 0.014483547769486904, -0.016683092340826988, 0.02086351253092289, -0.028992820531129837, 0.017210468649864197, 0.05335502326488495, -0.018895499408245087, -0.012071766890585423, -0.03588729724287987, 0.040620818734169006, 0.008257937617599964, -0.006836594548076391, -0.009981556795537472, 0.006791574880480766, -0.024439379572868347, -0.002138445619493723, -0.045688774436712265, 0.03990050032734871, 0.013814680278301239, -0.0830424353480339, 0.00959567166864872, -0.048029810190200806, -0.037945352494716644, 0.021262260153889656, 0.061329979449510574, 0.00037603682721965015, 0.02925007790327072, -0.015782693400979042, -0.009544220753014088, 0.008669547736644745, -0.021982578560709953, -0.022291285917162895, 0.04941899701952934, 0.039668969810009, -0.011582979001104832, -0.025326915085315704, -0.023757649585604668, -0.024529417976737022, 0.0068816146813333035, 0.02001456543803215, -0.008103583939373493, 0.02739783003926277, -0.010566815733909607, -0.030227653682231903, 0.013531697914004326, -0.029687413945794106, -0.02088923752307892, 0.07841181755065918, -0.025609897449612617, -0.021622419357299805, 0.00265295896679163, -0.064056895673275, 0.03719930723309517, 0.051914386451244354, 0.004260812886059284, 0.023937728255987167, 0.00559533154591918, -0.016258617863059044, -0.026162998750805855, -0.02488957904279232, 0.020323272794485092, 0.05839725211262703, 0.016541600227355957, 0.0017413058085367084, 0.051219794899225235, -0.03905155509710312, -0.025365503504872322, 0.02100500278174877, -0.020066017284989357, -0.047386668622493744, 0.02169959619641304, -0.0029648826457560062, -0.0076212272979319096, -0.014020485803484917, 0.01346738450229168, -0.01751917600631714, -0.06920202821493149, 0.006177374627441168, -0.017210468649864197, 0.025159697979688644, 0.007929935120046139, 0.057985641062259674, 0.0002273103455081582, 0.027835166081786156, 0.04756674915552139, 0.006630789488554001, 0.04893020913004875, -0.00408394867554307, -0.001490480499342084, -0.0031385307665914297, 0.004807482939213514, 0.004125752951949835, -0.014110526069998741, -0.044016607105731964, 0.01059254165738821, 0.00799424946308136, 0.014843706972897053, -0.006100197788327932, 0.04067227244377136, -0.00656325975432992, -0.07830891758203506, 0.030382007360458374, -0.050216492265462875, -0.010586109943687916, -0.044170960783958435, 0.013583149760961533, -0.014972335658967495, -0.030047573149204254, 0.028221052139997482, -0.011827372945845127, -0.027294928207993507, -0.01799510046839714, -0.0029938239604234695, -0.0346524678170681, 0.03532133251428604, -0.04977915808558464, -0.010283833369612694, -0.05582468584179878, -0.04260169714689255, -0.0047463844530284405, 0.0677613914012909, -0.0048299930058419704, 0.05618484690785408, -0.02154524251818657, -0.0012404592707753181, -0.017802158370614052, -0.046537723392248154, -0.0689447745680809, -0.017390547320246696, -0.03197699785232544, -0.0022847603540867567, 0.006849457509815693, 0.0010024969233199954, 0.0012629692209884524, -0.054950013756752014, -0.015499711036682129, -0.005376663524657488, 0.006010157987475395, -0.034086503088474274, 0.002374800154939294, 0.004855718929320574, -0.05479566007852554, -0.06271916627883911, 0.01750631257891655, 0.0366847924888134, -0.008238643407821655, 0.048544324934482574, 0.06683526933193207, -0.043141935020685196, -0.0183423962444067, 0.0006178178591653705, 0.03804825246334076, -0.01479225605726242, -0.05034511908888817, -0.04239588975906372, -0.012425494380295277, -0.05034511908888817, -0.03539850935339928, -0.08813612163066864, -0.03200272470712662, -0.04440249130129814, -0.044351041316986084, -0.0038106136489659548, 0.009563514962792397, 0.007035968825221062, -0.015268180519342422, 0.021583830937743187, -0.01818804256618023, 0.015113826841115952, -0.06266771256923676, -0.04929037019610405, -0.0003794535296037793, -0.02894137054681778, -0.008791744709014893, -0.008991118520498276, -0.006418552715331316, -0.08422581851482391, 0.0346524678170681, -0.007106713950634003, 0.04033783823251724, -0.021583830937743187, 0.07218620926141739, -0.004514853935688734, 0.0437336266040802, 0.019255658611655235, -0.023075919598340988, 0.05029366910457611, 0.031025148928165436, -0.005981216672807932, 0.01802082546055317, 0.02289583906531334, 0.02909572422504425, 0.06457141041755676, -0.024002043530344963, 0.022278422489762306, 0.009100452996790409, 0.04628046602010727, 0.0011166544863954186, -0.09245803207159042, -0.030922245234251022, 0.037096403539180756, 0.026960493996739388, -0.01580842025578022, -0.004836424253880978, -0.03617028146982193, -0.006183805875480175, -0.048878759145736694, 0.020927825942635536, 0.010045871138572693, -0.01178878452628851, -0.011248545721173286, 0.06313077360391617, 0.02389913983643055, -0.02020750753581524, 0.018638242036104202, 0.021648144349455833, 0.007891346700489521, -0.029018547385931015, 0.044145237654447556, -0.0025082521606236696, -0.0050486610271036625, -0.03936026245355606, -0.01800796389579773, -0.046177562326192856, 0.021159356459975243, 0.00013395432324614376, 0.02675468847155571, 0.016747405752539635, -0.023989180102944374, -0.026626059785485268, -0.002101465128362179, 0.01701752468943596, -0.003312178887426853, 0.005186936818063259, 0.020567666739225388, 0.011589410714805126, -0.009524926543235779, -0.03637608513236046, 0.04831279441714287, 0.014805118553340435, 0.012136081233620644, 0.012766359373927116, 0.012174669653177261, -0.02236846275627613, -0.008836764842271805, -0.05356082692742348, -0.013904720544815063, 0.00342794437892735, 0.00040618408820591867, -0.0171461533755064, 0.01934569701552391, -0.03146248310804367, -0.048364244401454926, 0.012264708988368511, -0.035424236208200455, 0.05433259904384613, 0.008064995519816875, -0.037585191428661346, -0.01969299465417862, 0.024272162467241287, 0.03146248310804367, 0.01970585808157921, 0.04507135972380638, -0.032054174691438675, 0.005106544122099876, -0.013004322536289692, -0.01618144102394581, -0.007659815717488527, 0.022921564057469368, -0.003791319439187646, -0.0005832489696331322, -0.003476180136203766, -0.02236846275627613, 0.015949910506606102, 0.009962262585759163, 0.016554463654756546, 0.023461803793907166, 0.008039269596338272, 0.007055263034999371, -0.040775176137685776, 0.028169600293040276, -0.026368804275989532, 0.019564365968108177, 0.03148820996284485, -0.01717188023030758, 0.013274441473186016, 0.012747065164148808, -0.006830163300037384, -0.017416274175047874, 0.017905060201883316, 0.002453584922477603, 0.01498519815504551, 0.012612005695700645, -0.018779734149575233, 0.011177800595760345, 0.025802839547395706, 0.026986218988895416, 0.000566366536077112, -0.015023786574602127, -0.01764780469238758, 0.015705516561865807, 0.006199884694069624, 0.0026481354143470526, -0.038717120885849, -0.028709838166832924, -0.038099706172943115, 0.01067615021020174, -0.009441317990422249, 0.001968013122677803, -0.036247458308935165, 0.0064925141632556915, -0.06951073557138443, -0.009003981947898865, 0.028864193707704544, -0.015255318023264408, -0.016284344717860222, 0.03249151259660721, -0.033726342022418976, 0.019718719646334648, -0.024104945361614227, 0.02069629542529583, -0.03784244880080223, 0.01679885759949684, -0.025828564539551735, -0.01151223387569189, -0.06395399570465088, 0.01093983743339777, 0.018445299938321114, 0.014534998685121536, -0.008013543672859669, -0.01270847674459219, -0.007003811653703451, -0.043502096086740494, -0.02069629542529583, 0.05942627787590027, 0.01937142387032509, -0.01304934173822403, 0.009666417725384235, 0.025777112692594528, 0.009987988509237766, -0.018110865727066994, 0.004826777148991823, 0.03207990154623985, -0.018754007294774055, -0.0033443360589444637, -0.02001456543803215, -0.014123388566076756, -0.03815115615725517, -0.011145642958581448, 0.019770171493291855, -0.028066696599125862, 0.04257597029209137, -0.007138871122151613, -0.014059074223041534, -0.01167945098131895, 0.005547096021473408, -0.019088441506028175, 0.024027768522500992, -0.007479736115783453, -0.024465104565024376, -0.006765848957002163, -0.009383435361087322, 0.003255904186517, -0.025468405336141586, -0.08247647434473038, -0.02521114982664585, 0.0017606000183150172, 0.04867295175790787, 0.005405604839324951, 0.07048831135034561, 0.03840841352939606, 0.013917583040893078, 0.0008401036611758173, 0.025481268763542175, 0.03583584725856781, 0.017737844958901405, 0.018573928624391556, 0.006971654482185841, -0.04311620816588402, -0.006187021732330322, 0.035552866756916046, -0.0427817776799202, 0.010888386517763138, 0.0010676149977371097, -0.036942049860954285, 0.02409208193421364, 0.03146248310804367, 0.022973015904426575, 0.06122707575559616, -0.019564365968108177, 0.04756674915552139, -0.011087760329246521, -0.03532133251428604, -0.02122367173433304, -0.005614625755697489, 0.0026288412045687437, 0.0016014224383980036, 0.021969715133309364, -0.04514853656291962, -0.04460829868912697, -0.025545582175254822, 0.008528056554496288, 0.0407494492828846, -0.004997209645807743, 0.0030259808991104364, -0.039283085614442825, -0.020902100950479507, 0.0313081294298172, 0.01884404756128788, 0.052248820662498474, 0.022934427484869957, -0.020619118586182594, -0.007646953221410513, -0.014843706972897053, -0.013152244500815868, 0.04188137874007225, 0.05217164382338524, -0.011981727555394173, 0.019307108595967293, -0.03418940678238869, 0.014252017252147198, -0.04880158230662346, 0.03779099881649017, -0.027809441089630127, -0.016361521556973457, 4.6024815674172714e-05, 0.024941029027104378, -0.011563684791326523, 0.04159839451313019, 0.004347636830061674, -0.03218280151486397, -0.026330215856432915, -0.005080818198621273, 0.004379794001579285, -0.029044272378087044, -0.024336475878953934, -0.0002019866369664669, -0.033571988344192505, -0.013596012257039547, 0.005116191226989031, 0.03434376046061516, 0.01934569701552391, 0.0036852010525763035, 0.0029053918551653624, -0.030150476843118668, -0.03346908465027809, 0.03681342303752899, -0.01008445955812931, 0.02760363556444645, -0.03382924571633339, -0.021776773035526276, 0.01835525967180729, -0.03398359939455986, 0.03815115615725517, 0.01870255544781685, -0.05013931542634964, 0.034729644656181335, -0.0031642564572393894, 0.02678041346371174, -0.029713138937950134, -0.014277742244303226, 0.047669652849435806, -0.014252017252147198, 0.004042144864797592, -0.027011945843696594, -0.0002944382431451231, 0.04674352705478668, 0.007344676647335291, -0.01618144102394581, -0.020323272794485092, 0.04460829868912697, 0.01556402537971735, -0.005248035304248333, 0.03732793405652046, 0.0002892127085942775, -0.0019776602275669575, -0.0122775724157691, 0.044170960783958435, 0.032208528369665146, 0.033366184681653976, -0.02104359120130539, 0.010785483755171299, 0.045328617095947266, -0.013956171460449696, -0.0014084799913689494, 0.004463402554392815, -0.04360499605536461, -0.05052519962191582, -0.011222819797694683, -0.014174839481711388, 0.022792937234044075, -0.010798346251249313, 0.0019937388133257627, 0.07023105770349503, -0.02167387120425701, 0.020812060683965683, -0.007640521507710218, -0.03434376046061516, 0.014496410265564919, -0.04833851754665375, 0.016374383121728897, 0.012727770954370499, 0.011898119002580643, 0.0359644740819931, -0.011808078736066818, 0.01629720628261566, -0.023011604323983192, 0.004318695515394211, 0.015782693400979042, -0.02508252114057541, -0.007466873619705439, -0.0467178039252758, -0.013235853053629398, -0.019654406234622, 0.017879335209727287, 0.028143875300884247, -0.06374818831682205, 0.017081839963793755, -0.009158335626125336, -0.028040971606969833, 0.012637731619179249, -0.01717188023030758, -0.0007999073131941259, 0.011647293344140053, -0.06853316724300385, -0.0023538980167359114, -0.007357539143413305, -0.04761819913983345, -0.03411222621798515, 0.029918944463133812, -0.0008754764567129314, 0.04285895451903343, -0.004849287215620279, 0.05469275638461113, 0.022471366450190544, 0.004865366034209728, 0.02122367173433304, -0.05850015580654144, -0.009036138653755188, 0.03300602361559868, 0.05016504228115082, -0.002953627612441778, -0.0043315584771335125, 0.0030533145181834698, 0.04931609332561493, 0.0003794535296037793, 0.0008923588902689517, -0.017068976536393166, 0.027320653200149536, 0.028735565021634102, 0.00991724245250225, -0.010579678229987621, -0.03884575143456459, -0.0008770842687226832, -0.011415762826800346, 0.050550926476716995, 0.02824677713215351, -0.04589458182454109, -0.02004029043018818, 0.03627318516373634, -0.020078878849744797, 0.02927580289542675, -0.0050872499123215675, 0.04594603180885315, 0.03244005888700485, 0.012747065164148808, -0.012393337674438953, -0.014419233426451683, 0.010753327049314976, 0.00601980509236455, -0.03388069570064545, -0.03179691731929779, -0.027655087411403656, 0.03802252933382988, -0.03213135153055191, 0.014419233426451683, 0.014702215790748596, -0.0010861052433028817, 0.0491102896630764, -0.006701535079628229, -0.025867152959108353, 0.012354749254882336, -0.017467724159359932, -0.001490480499342084, 0.020464764907956123, -0.012849967926740646, 0.03331473097205162, -0.0037044952623546124, -0.03915445879101753, 0.035064078867435455, 0.020760608837008476, 0.021738184615969658, 0.02221410907804966, -0.010232382453978062, -0.0008947706664912403, 0.020053153857588768, 0.033237554132938385, -0.0032478647772222757, 0.03295457363128662, -0.02004029043018818, 0.014033348299562931, -0.005444193258881569, -0.022934427484869957, -0.014676489867269993, -0.014084800146520138, -0.004122537560760975, -0.0203747246414423, -0.015088100917637348, -0.002948804059997201, -0.017557764425873756, -0.02302446775138378, -0.04844142124056816, -0.02054194174706936, -0.016258617863059044, 0.028555484488606453, 0.018638242036104202, -0.014329194091260433, -0.03578439727425575, -0.01632293313741684, 0.022149795666337013, -0.030742166563868523, 0.008753156289458275, 0.014226291328668594, -0.015769829973578453, 0.010065165348351002, 0.020477626472711563, 0.04460829868912697, 0.029069997370243073, 0.03753374144434929, 0.008328682743012905, 0.04844142124056816, 0.029044272378087044, -0.01948718912899494, 0.006843026261776686, 0.02576425112783909, -0.037919625639915466, -0.02607295848429203, 0.03478109464049339, -0.010618266649544239, -0.0164901502430439, -0.002519506961107254, -0.04926464334130287, 0.047052234411239624, 0.009987988509237766, 0.009241944178938866, -0.005662861280143261, -0.036401811987161636, 0.01161513663828373, 0.018303807824850082, 0.04172702506184578, -0.08252792060375214, -0.012560554780066013, -0.0033829244785010815, 0.016232892870903015, -0.03030483052134514, 0.019783034920692444, 0.03601592779159546, 0.024272162467241287, 0.03151393681764603, 0.012599143199622631, -0.017622077837586403, 0.0005245623178780079, 0.03655616566538811, 0.011287134140729904, 0.004305832553654909, 0.007421853486448526, 0.016914622858166695, -0.050731007009744644, 0.030922245234251022, 0.057985641062259674, -0.02169959619641304, 0.0018522476311773062, -0.014869432896375656, -0.013866132125258446, 0.012335455045104027, 0.008212917484343052, -0.01219396386295557, -0.00325751188211143, 0.03503835201263428, 0.013403070159256458, 0.008553782477974892, 0.001792757073417306, 0.004910385701805353, -0.03637608513236046, -0.02490244060754776, 0.0008376918849535286, -0.0021223670337349176, 0.0008127701585181057, -0.019435737282037735, -0.05049947649240494, -0.006367101334035397, -0.009711437858641148, -0.05294341221451759, -0.03280021995306015, 0.00399712473154068, 0.016245756298303604, -0.017223330214619637, -0.027475006878376007, 0.027629360556602478, -0.03045918419957161, -0.04378507658839226, -0.0017911492614075541, -0.019795896485447884, -0.006843026261776686, -0.023924866691231728, -0.0035630043130367994, -0.026548882946372032, 0.02423357404768467, -0.0206705704331398, -0.008155034855008125, -0.042318712919950485, -0.01650301180779934, -0.016284344717860222, -0.04689788073301315, 0.05500146746635437, -0.02387341484427452, 0.01631006971001625, 0.048544324934482574, 0.0021947205532342196, -0.01345452107489109, 0.009306258521974087, 0.006505376659333706, 0.007325382437556982, 0.004942542873322964, 0.006547180935740471, -0.015319631434977055, -0.041289687156677246, 0.03403504937887192, -0.034086503088474274, -0.019963113591074944, -0.02626590058207512, -0.006415336858481169, 0.005177289713174105, -0.012579848989844322, -0.0029407646507024765, -0.031719740480184555, 0.003318610368296504, 0.07640521973371506, 0.02374478615820408, 0.010669718496501446, 0.0028346464969217777, 0.009981556795537472, -0.002918254816904664, -0.022136932238936424, -0.02287011407315731, -0.021596692502498627, -0.007769150193780661, -0.0026320568285882473, -0.0009124570642597973, 0.02018178254365921, -0.014380645006895065, 0.004035713151097298, -0.011865961365401745, 0.026986218988895416, -0.0024069573264569044, 0.03388069570064545, -0.004132184665650129, -0.01310722529888153, -0.005161210894584656, -0.054744210094213486, -0.0008698489400558174, -0.00673369225114584, -0.005032582674175501, -0.014419233426451683, -0.001738090068101883, 0.00959567166864872, -0.006582553964108229, 0.02791234292089939, 0.009003981947898865, -0.00668224086984992, 0.05242890119552612, 0.02487671561539173, -0.03768809512257576, -0.037276484072208405, -0.010701875202357769, -0.016245756298303604, 0.002106288680806756, -0.014277742244303226, 0.0015427358448505402, -0.023461803793907166, -0.03382924571633339, 0.018715418875217438, -0.007929935120046139, -0.004122537560760975, 0.02319168485701084, -0.006669377908110619, -0.007679109927266836, -0.06205029785633087, -0.009614965878427029, 0.005315565038472414, 0.017956512048840523, -0.020413313060998917, 0.044351041316986084, 0.006254551466554403, 0.010090891271829605, 0.04239588975906372, -0.026471706107258797, 0.022998742759227753, -0.058139994740486145, 0.009055432863533497, 0.011499371379613876, 0.0071838912554085255, 0.008257937617599964, 0.008296526037156582, 0.014367782510817051, 0.01447068527340889, 0.025995781645178795, -0.007177459541708231, -0.02137802541255951, -0.0007725738105364144, 0.05994079262018204, 0.014419233426451683, 0.022638583555817604, -0.03141103312373161, 0.030716439709067345, 0.017737844958901405, -0.01868969388306141, -0.009942968375980854, 0.004810698796063662, -0.013583149760961533, 0.021249396726489067, -0.03159111365675926, 0.007981386967003345, 0.019255658611655235, 0.010148773901164532, -0.021789636462926865, -0.05204301327466965, 0.0012557338923215866, -0.03696777671575546, 0.03671051934361458, -0.037122130393981934, 0.029533060267567635, -0.014805118553340435, 0.01715901680290699, 0.014522136189043522, -0.01160227321088314, 0.015937047079205513, 0.005881529301404953, 0.004032497759908438, -0.002379623707383871, -0.0008754764567129314, 0.006836594548076391, 0.0003334287030156702, -0.02925007790327072, -0.013325893320143223, -0.017789294943213463, -0.008688841946423054, -0.03856276720762253, 0.014252017252147198, 0.01059254165738821, -0.05685371160507202, -0.028555484488606453, -0.010772621259093285, -0.005932980682700872, 0.039823323488235474, -0.009563514962792397, 0.02541695348918438, 0.03671051934361458, 0.03467819094657898, 0.013647464103996754, 0.010907680727541447, 0.006778711918741465, -0.026626059785485268, 0.028298228979110718, -0.017544900998473167, -0.002591860480606556, -0.0363246351480484, -0.0026417039334774017, 0.02051621489226818, -0.018406711518764496, 0.027372105047106743, -0.025108246132731438, -0.014342056587338448, -0.012689182534813881, -0.005624272860586643, 0.030690714716911316, -0.022677171975374222, 0.012933576479554176, -0.010476775467395782, 0.001865110476501286, 0.007865620777010918, 0.02555844560265541, 0.009151903912425041, 0.007010242901742458, -0.0026979788672178984, 0.0039617521688342094, -0.01498519815504551, 0.012148943729698658, 0.0077498555183410645, 0.01852247677743435, 0.00256774271838367, -0.010669718496501446, -0.023834826424717903, 0.01818804256618023, -0.0056114098988473415, -0.007659815717488527, -0.011486507952213287, -0.0208506491035223, -0.0009285355918109417, 0.012457652017474174, 0.0028475092258304358, 0.00651502376422286, 0.008643822744488716, 0.003051706589758396, -0.03789389878511429, 0.002513075713068247, -0.029816042631864548, 0.0830424353480339, 0.014020485803484917, -0.01036101020872593, 0.05968353524804115, -0.00891394168138504, 0.0007556913187727332, 0.0379968024790287, -0.0006415336974896491, 0.004489128012210131, 0.007357539143413305, 0.0164901502430439, 0.04221581295132637, 0.000748054007999599, 0.06282206624746323, 0.014007623307406902, -0.02222697250545025, 0.023127369582653046, 0.010393167845904827, 0.01304934173822403, 0.030510636046528816, -0.012168237939476967, 0.030819343402981758, 0.006759417708963156, 0.026124410331249237, 0.01934569701552391, -0.008727431297302246, -0.01615571603178978, 0.02878701500594616, -0.008811038918793201, 0.04723231494426727, 0.04291040450334549, -0.034601014107465744, 0.004569520708173513, 0.06832735985517502, -0.04159839451313019, 0.04676925390958786, -0.024477967992424965, -0.05163140222430229, -0.004389441106468439, 0.01430346816778183, 0.013075067661702633, 0.02456800825893879, 0.011158506385982037, 0.010907680727541447, -0.0037559466436505318, -0.024439379572868347, -0.02726920135319233, 0.0077498555183410645, -0.014509273692965508, -0.0007970935548655689, 0.010058733634650707, 0.007010242901742458, 0.045534420758485794, 0.048544324934482574, -0.00040919880848377943, 0.020220370963215828, 0.020091742277145386, 0.020812060683965683, 0.02474808692932129, 0.02051621489226818, -0.01987307332456112, 0.013531697914004326, 0.0038749277591705322, 0.031874094158411026, 0.03452383726835251, -0.002980960998684168, -0.02693476900458336, -0.028401130810379982, 0.009351277723908424, -0.005691802594810724, 0.015615477226674557, -0.007151734083890915, 0.010502501390874386, 0.00823221169412136, 0.0032366099767386913, 0.018548201769590378, 0.023950591683387756, -0.0017815021565183997, -0.040646545588970184, 0.02150665409862995, -0.04041501507163048, 0.01193670742213726, -0.016605915501713753, 0.004556657746434212, -0.014367782510817051, 0.02083778567612171, -0.0006539945607073605, -0.020567666739225388, -0.038254059851169586, 0.013415932655334473, 0.003546925727277994, -0.040440741926431656, 0.009865791536867619, -0.025352640077471733, -0.019783034920692444, 0.014599313028156757, 0.007582638878375292, 0.011718039400875568, -0.03012474998831749, -0.02002742886543274, -0.029404431581497192, -0.025957193225622177, -0.013840406201779842, 0.02391200326383114, -0.02573852427303791, 0.021596692502498627, 0.03833123669028282, -0.028143875300884247, -0.023950591683387756, 0.021776773035526276, 0.004241518676280975, 0.019152754917740822, 0.010804777964949608, -0.0012629692209884524, 0.007987817749381065, 0.022587131708860397, 0.004559873603284359, -0.05685371160507202, -0.021763909608125687, 0.027552183717489243, 0.016117127612233162, 0.046537723392248154, 0.04710368812084198, -0.0011841843370348215, -0.023075919598340988, -0.0038588494062423706, 0.06698962301015854, 0.006116276141256094, 0.03210562467575073, -0.0183423962444067, -0.002911823336035013, 0.005810783710330725, -0.004302617162466049, 0.01870255544781685, 0.019114166498184204, 0.0016576973721385002, 0.01952577754855156, 0.02105645462870598, -0.0016657366650179029, -0.01781502179801464, -0.015165277756750584, 0.025159697979688644, -0.01583414524793625, 0.0019953467417508364, -0.005010072607547045, -0.017030388116836548, 0.0009494377300143242, -0.008540919981896877, 0.0042897542007267475, 0.018239494413137436, -0.018985537812113762, 0.008894647471606731, 0.014946609735488892, -0.025005344301462173, -0.011267839930951595, 0.020760608837008476, -0.05618484690785408, -0.003402218921110034, 0.013441658578813076, -0.020914962515234947, -0.05350937694311142, 0.016232892870903015, -0.004691717680543661, 0.0009590848349034786, 0.013994759880006313, 0.01167945098131895, -0.00983363389968872, 0.011441487818956375, 3.7985548260621727e-05, -0.02943015657365322, -0.01204604096710682, -0.0018024041783064604, -0.02072202041745186, 0.0063445912674069405, -0.023616157472133636, -0.003045275341719389, -0.0020966415759176016, 0.014226291328668594, 0.006334944162517786, -0.024593733251094818, 0.019294247031211853, -0.002196328481659293, 0.01984734833240509, 0.04116106033325195, 0.017596352845430374, -0.01168588176369667, -0.028298228979110718, -0.0050229355692863464, 0.0012308121658861637, 0.025789976119995117, -0.006370317190885544, 0.03380351886153221, 5.8988138334825635e-05, 0.02690904214978218, -0.008624528534710407, 0.02793806977570057, 0.02606009505689144, 0.0376366451382637, -0.005945843644440174, 0.0350126251578331, -0.006119491998106241, 0.03568149358034134, 0.01850961335003376, 0.020451901480555534, -0.005656430032104254, 0.004495559260249138, 0.013840406201779842, 0.005878313910216093, -0.0050872499123215675, -0.013763229362666607, 0.008868922479450703, -0.009061864577233791, 0.019410012289881706, 0.00993653666228056, -0.022149795666337013, 0.007273931056261063, 0.008952530100941658, 0.002665821695700288, 0.022844387218356133, 0.01336448173969984, 0.0012139297323301435, -0.02033613622188568, -9.240135113941506e-05, -0.013686052523553371, 0.018561065196990967, 0.004553442355245352, 0.019422875717282295, 0.006862320471554995, 0.019924525171518326, 0.01304291095584631, 0.05958063527941704, -0.012470514513552189, -0.012058904394507408, -0.012727770954370499, 0.013403070159256458, -0.01618144102394581, -0.005469918716698885, -0.004469833802431822, 0.020091742277145386, 0.007518324535340071, -0.024941029027104378, -0.022973015904426575, -0.047875456511974335, 0.02708912268280983, 0.0028201756067574024, -0.036093104630708694, -0.015911322087049484, 0.03856276720762253, 0.0007701620343141258, 0.00865668524056673, 0.018779734149575233, 0.018252357840538025, -0.02150665409862995, -0.029198626056313515, -0.013055773451924324, 0.007286794018000364, 0.00858594011515379, -0.0110234459862113, -0.01598849892616272, 0.03359771519899368, 0.0034182972740381956, -0.029198626056313515, 0.00731251947581768, 0.03431803360581398, 0.01866396702826023, -0.00993010587990284, -0.0400291308760643, -0.005662861280143261, 0.00850233156234026, -0.001834561233408749, -0.010148773901164532, -0.014856569468975067, -0.012489808723330498, -0.01295930240303278, -0.015525436960160732, 0.0032912769820541143, -0.003312178887426853, 0.0027349593583494425, -0.007807738613337278, -0.005807568319141865, -0.023616157472133636, -0.035064078867435455, 0.006933066062629223, -0.021609555929899216, 0.008528056554496288, -0.008958961814641953, 0.06055820733308792, 0.02205975539982319, 0.021159356459975243, 0.05266043171286583, -0.007794875651597977, -0.011062034405767918, -0.021480927243828773, 0.026047233492136, -0.03470391780138016, -0.02287011407315731, 0.02441365271806717, -0.009280532598495483, 0.012309729121625423, -0.019654406234622, 0.0036498282570391893, 0.03418940678238869, 0.015949910506606102, 0.0058043524622917175, 0.03364916518330574, 0.028015246614813805, 0.027963794767856598, 0.055773235857486725, 0.02253567986190319, -0.026986218988895416, 0.0018699340289458632, 0.023165958002209663, -0.016052812337875366, 0.04270460084080696, -0.019075578078627586, -0.011100622825324535, -0.0017107565654441714, 0.0001834963186411187, -0.006997379940003157, 0.031539659947156906, 0.010785483755171299, -0.017030388116836548, 0.019975977018475533, 0.002331388182938099, -0.01339020673185587, -0.005231956485658884, -0.0693049356341362, -0.03097369708120823, -0.002390878740698099, -0.005685371346771717, 0.018033688887953758, 0.02150665409862995, -0.007724130060523748, 0.018625378608703613, 0.009795045480132103, -0.004669207613915205, 0.00025424189516343176, -0.03671051934361458, 0.027886617928743362, -0.00191334611736238, -0.012322592549026012, 0.0073189507238566875, 0.005730391014367342, 0.02488957904279232, 0.013930446468293667, 0.025944329798221588, -0.006273845676332712, -0.011692313477396965, -0.03233715891838074, -0.034549564123153687, 0.016438698396086693, -0.01766066625714302, -0.029507335275411606, 0.020734883844852448, 0.023654745891690254, -0.00993010587990284, 0.029841767624020576, -0.012354749254882336, 0.01513955183327198, -0.008122878149151802, 0.005463487468659878, -0.009840065613389015, 0.047052234411239624, -0.00739612802863121, 0.01682458259165287, -0.006122707389295101, 0.009094021283090115, -0.010373873636126518, 0.022934427484869957, 0.026883317157626152, -0.07053976505994797, 0.03714785724878311, -0.02303733117878437, 0.01000085100531578, 0.026986218988895416, -0.021120768040418625, 0.028040971606969833, -0.01751917600631714, 0.009293395094573498, -0.00702310586348176, -0.023590432479977608, 0.0045920307748019695, 0.03043345920741558, 0.019410012289881706, 0.0390772819519043, -0.021262260153889656, 0.031874094158411026, -0.01471507828682661, -0.008868922479450703, -0.016245756298303604, -0.0015346965519711375, 0.019628679379820824, -0.003971399273723364, -0.022612856701016426, 0.02625303901731968, -0.02172532118856907, 0.011454351246356964, 0.006209531798958778, -0.008283663541078568, 0.005180505104362965, 0.005881529301404953, -0.02303733117878437, 0.010560384020209312, 0.001744521432556212, 0.010817641392350197, -0.004752816166728735, -0.02894137054681778, 0.017724981531500816, -0.01782788336277008, 0.0015049512730911374, -0.006206315942108631, 0.0023844472598284483, 0.0043733627535402775, 0.02541695348918438, -0.021596692502498627, -0.0063445912674069405, 0.0011632823152467608, 0.004074301570653915, -0.006048746407032013, 0.012798517011106014, -0.0024986048229038715, -5.833495015394874e-05, 0.011164937168359756, 0.03552713990211487, 0.013287304900586605, 0.007769150193780661, 0.015679791569709778, -0.008064995519816875, -0.009229081682860851, 0.016091400757431984, 0.006373532582074404, -0.006849457509815693, -0.004987562540918589, -0.01903698965907097, 0.003003471065312624, 0.02320454642176628, -0.017210468649864197, 0.02757791057229042, -0.006576122250407934, 0.035758670419454575, 4.969273504684679e-05, 0.013313029892742634, -0.026986218988895416, 0.06446851044893265, -0.0029455882031470537, -0.021622419357299805, -0.00027715382748283446, 0.03732793405652046, 0.016271481290459633, -0.015847008675336838, 0.0019036990124732256, -0.01933283545076847, 0.02054194174706936, -0.02441365271806717, 0.021802498027682304, 0.045663051307201385, 0.023796238005161285, -0.029172901064157486, 0.0007271519280038774, -0.007203185465186834, -0.019924525171518326, -0.003839554963633418, 0.016618777066469193, -0.0027848028112202883, -0.018766870722174644, 0.01902412623167038, 0.0232431348413229, -0.05453840270638466, 0.0137117775157094, -0.006357454229146242, -0.017454862594604492, -0.01916561834514141, 0.02509538270533085, 0.019127029925584793, 0.03434376046061516, 0.01311365608125925, 0.028504034504294395, 0.01646442338824272, 0.010206656530499458, -0.008347976952791214, 0.030253378674387932, 0.027680812403559685, 0.010798346251249313, -0.017056113108992577, -0.0420614592730999, 0.011994590051472187, -0.004318695515394211, -0.014149114489555359, 0.0006978085730224848, -0.018098004162311554, -0.006810869090259075, 0.02016891911625862, 0.013981897383928299, 0.006502161268144846, 0.007608364801853895, 0.02571279928088188, -0.012759928591549397, -0.025828564539551735, -0.019075578078627586, 0.018393848091363907, -0.013634600676596165, -0.00205805292353034, 0.014020485803484917, -0.007261068094521761, -0.0357329435646534, 0.020747747272253036, 0.016708817332983017, 0.013493109494447708, -0.015924185514450073, 0.0015821282286196947, 0.012824242934584618, -0.009132609702646732, 0.00559533154591918, -0.021236533299088478, -0.006675809156149626, 0.02744928188621998, -0.018393848091363907, -0.01920420676469803, -0.009705006144940853, -0.0016191088361665606, 0.004444108344614506, 0.03544996306300163, -0.011402899399399757, 0.03079361841082573, -0.008257937617599964, -0.04563732445240021, -0.020914962515234947, 0.021828224882483482, -0.025519857183098793, -0.01481798104941845, -0.016232892870903015, -0.00010234994988422841, 0.007286794018000364, -0.008663116954267025, 0.03588729724287987, 0.020760608837008476, -0.01766066625714302, -0.03012474998831749, -0.012329023331403732, -0.018548201769590378, 0.048209890723228455, -0.010515364818274975, -0.009975125081837177, -0.039823323488235474, 0.003305747639387846, 0.017454862594604492, 0.003325041849166155, 0.04589458182454109, -0.02221410907804966, -0.011119917035102844, 0.011460782028734684, 0.01285639964044094, -0.0008232211694121361, -0.0076212272979319096, 0.025661347433924675, 0.01899840123951435, 9.325552673544735e-05, -0.006293139886111021, 0.00040638507925905287, -0.02909572422504425, -0.012213258072733879, -0.02894137054681778, 0.020914962515234947, -0.029198626056313515, 0.019075578078627586, 0.009145473130047321, 0.015178140252828598, 0.037765271961688995, 0.012599143199622631, -0.00596835371106863, 0.006122707389295101, 0.03485827147960663, -0.037585191428661346, 0.024503692984580994, 0.0019583660177886486, 0.029018547385931015, -0.019615817815065384, 0.015229592099785805, 0.018445299938321114, 0.005945843644440174, -0.0005000425735488534, 0.019410012289881706, -0.03179691731929779, 0.02118508331477642, -0.017802158370614052, 0.0051965839229524136, 0.01313295029103756, 0.006675809156149626, 0.0017204036703333259, 0.018085140734910965, 0.026806140318512917, 0.019294247031211853, -0.02374478615820408, -0.002664214000105858, -0.021249396726489067, 0.026806140318512917, 0.0017750706756487489, -0.010315990075469017, -0.021236533299088478, -0.02068343199789524, 0.01447068527340889, -0.009659986011683941, -0.00010742474114522338, 0.005280192010104656, -0.022612856701016426, -0.054435502737760544, 0.02374478615820408, 0.009274100884795189, -0.0166702289134264, -0.021609555929899216, 0.024670910090208054, 0.023680472746491432, 0.029687413945794106, 0.031153777614235878, 0.02639452926814556, 0.003045275341719389, 0.0033700617495924234, 0.02454228140413761, -0.020156055688858032]" -CloudQuery on Using PostgreSQL for Cloud Assets Visibility,"Architecture with CloudQuery SDK- Writing plugins, extracting configuration data, transforming it, and loading it to PostgreSQL requires a lot of boilerplate code. To scale this and improve the developer’s experience both internally and externally we releasedCloudQuery SDK.Normalized PostgreSQL tables inDataGripcontaining data about cloud assets from Microsoft AzureAnother key observation and requirement that we saw early on for a cloud asset inventory is the ability to not only query the current state but also go back in time. This is super useful for tasks such as forensics, post-mortems, compliance, and more.This feature required us to maintain historical snapshots in PostgreSQL and we started to look out for a solution, which was quite a journey for us.Choosing (and using!) TimescaleDBFirst attempt: PostgreSQL PartitioningWith some good experience ofPostgreSQLunder our belt, the first thing we tried isPostgreSQL partitioningPretty quickly it turned out to be not as easy as expected, hard to maintain and manage, lacking easily creatable retention policies, and bucketing queries. Given our philosophy is to integrate with best-in-class tools and focus our development efforts on our core business use-cases we started looking for an alternative solution.✨Editor’s Note:For more comparisons and benchmarks, seehow TimescaleDB compares to InfluxDB, MongoDB, AWS Timestream, vanilla PostgreSQL, and other time-series database alternativeson various vectors, from performance and ecosystem to query language and beyond.Second attempt: TimescaleDBGiven CloudQuery uses PostgreSQL under the hood, supporting historical snapshots in a scalable way usually involves using partitioning. TimescaleDB´screate_hyperfunctionsfeature allows us to do just that in a simple and effective way giving our users a transparent and automated way to manage their data while still maintaining scalability.Current CloudQuery architecture diagramCloudQuery transforms cloud resources into tables, some of these resources have a complex data structure, and are split into multiple relational tables, some of which are hypertables. In order to retain data integrity, we use foreign key relationships (withON DELETE CASCADE) to the root resource table. With these foreign keys in place, if a reference to a cloud resource is deleted (for instance a S3 bucket), the downstream data is removed.While TimescaleDB hypertablesdosupport using foreign keys that reference a regular PostgreSQL table, hypertable cannot be thesource reference of a foreign keyIn our case, some of our ""root"" reference tables are hypertables which meant that we had to come up with another way to do the cascading deletes to retain",https://www.timescale.com/blog/cloudquery-on-using-postgresql-for-cloud-assets-visibility/,511,"[-0.006330333184450865, 0.0187095794826746, 0.05791430175304413, -0.0007694573723711073, 0.050720300525426865, 0.026912812143564224, 0.01298413798213005, 0.00670232530683279, -0.030173402279615402, 0.019925832748413086, 0.02206074260175228, -0.033822160214185715, 0.02459675818681717, -0.01009877398610115, -0.002225482603535056, 0.05879414454102516, -0.019045989960432053, -0.028284329921007156, -0.012880627065896988, 0.04833954945206642, 0.01810145378112793, -0.0019084806554019451, 0.010642205365002155, 0.017092224210500717, -0.0195376668125391, 0.00842319242656231, -0.0028756598476320505, 0.013521100394427776, 0.013844572007656097, -0.07126719504594803, 0.016794629395008087, -0.048857104033231735, -0.01935652270913124, 0.028646618127822876, 0.06277930736541748, 0.009218932129442692, 0.026175297796726227, 0.01780386082828045, -0.005948637146502733, 0.013753999955952168, -0.00880488846451044, 0.009613567031919956, 0.012039601802825928, 0.034236203879117966, 0.01247305329889059, 0.027792654931545258, -0.024971984326839447, -0.0182179044932127, -0.03747091442346573, 0.050720300525426865, -0.021452616900205612, 0.04132669419050217, 0.00850729551166296, -0.02002934366464615, 0.0025570406578481197, -0.024506185203790665, -0.03320109471678734, 0.025101372972130775, 0.0035355412401258945, 0.016522914171218872, 0.012583033181726933, -0.06779958307743073, 0.05765552446246147, 0.055947594344615936, -0.013702244497835636, 0.02706807851791382, -0.029241805896162987, 0.0056251659989356995, -0.020650407299399376, 0.018450802192091942, 0.02627880871295929, 0.054860733449459076, -0.01181964110583067, -0.01548780594021082, 0.03620290756225586, -0.046398721635341644, 0.012790055014193058, 0.031130878254771233, 0.023885121569037437, -0.022642990574240685, 0.012531277723610401, -0.0048035490326583385, -0.02639525756239891, 0.0011515577789396048, 0.015371356159448624, -0.016277076676487923, -0.029992258176207542, 0.0028966853860765696, -0.012699482962489128, 0.0027139242738485336, 0.026382319629192352, 0.04287935420870781, -0.004324811510741711, 0.013831633143126965, 0.05263524875044823, 0.018437864258885384, 0.02303115651011467, -0.0037069811951369047, -0.02453206293284893, 0.02121971733868122, 0.022138375788927078, -0.006482365075498819, -0.04730444401502609, -0.0445096492767334, 0.032735295593738556, -0.040369220077991486, -0.007899168878793716, 0.013119995594024658, 0.012078418396413326, 0.020301058888435364, -0.07401023060083389, 0.013611672446131706, -0.06567761301994324, -0.0037328586913645267, -0.03201071918010712, 0.006343272048979998, -0.014478575438261032, 0.007278104312717915, 0.0179720651358366, -0.0032799988985061646, -0.032269496470689774, -0.004059564787894487, 0.0017014590557664633, -0.025282517075538635, 0.042672332376241684, -0.026447013020515442, 0.01683344691991806, -0.03245064243674278, -0.038324881345033646, -0.0032088353764265776, 0.07794364541769028, 0.008371436968445778, 0.04818428307771683, -0.04425087198615074, -0.0013052066788077354, 9.517132275504991e-05, -0.055947594344615936, -0.021918416023254395, 0.0007912916480563581, -0.04388858750462532, 0.009665322490036488, -0.022992340847849846, 0.026550523936748505, -0.00043223853572271764, -0.05455020070075989, 0.034003302454948425, 0.0077568418346345425, 0.0700768232345581, -0.03806610405445099, 0.0360993966460228, 0.009717077948153019, -0.029293561354279518, -0.01266066636890173, 0.0037716752849519253, 0.022474786266684532, -0.017454510554671288, 0.03239888697862625, 0.05920818820595741, -0.029785238206386566, -0.030458057299256325, -0.020249303430318832, 0.03278705105185509, 0.0004860156332142651, -0.036228787153959274, -0.05320455878973007, -0.031182633712887764, -0.06609165668487549, -0.007278104312717915, -0.06293457746505737, -0.0333046056330204, -0.03224362060427666, -0.057707279920578, 0.0026120308320969343, -0.002544101793318987, 0.0069352248683571815, -0.01009877398610115, -0.028827762231230736, -0.05079793184995651, 0.02784441038966179, -0.05392913520336151, -0.027404488995671272, 0.011528517119586468, -0.02092212438583374, 0.01991289295256138, -0.0180496983230114, 0.007278104312717915, -0.07168123871088028, 0.03757442533969879, -0.007355737499892712, 0.06158893555402756, -0.031596675515174866, 0.018204964697360992, -0.016626425087451935, 0.02957821637392044, 0.025153128430247307, -0.028594862669706345, 0.04520834982395172, 0.03565947711467743, -0.021607883274555206, 0.023794548586010933, 0.04378507658839226, -0.009516526013612747, 0.0684206485748291, -0.03488314524292946, 0.01889072358608246, 0.017583899199962616, 0.03170018643140793, -0.00019944027008023113, -0.05211769416928291, -0.044639039784669876, 0.016031237319111824, -0.009011910296976566, -0.043034620583057404, -0.00500410096719861, -0.02050808072090149, -0.009096013382077217, -0.06272755563259125, -0.0022691511549055576, 0.0019149500876665115, -0.02675754576921463, 0.004227770026773214, 0.03211423009634018, 0.007937985472381115, -0.018903663381934166, 0.00800267979502678, 0.01755802147090435, 0.006255934946238995, -0.04989221319556236, 0.03201071918010712, -0.019628237932920456, -0.02634350210428238, -0.019162440672516823, -0.009872344322502613, -0.06526356935501099, -0.0057027991861104965, -0.0031473757699131966, 0.01635470800101757, -0.012712421827018261, -0.049038249999284744, -0.03734152764081955, -0.055895838886499405, 0.00031316064996644855, -0.026783423498272896, 0.0008345559472218156, -0.0033042593859136105, 0.024014510214328766, -0.019887015223503113, -0.05066854506731033, 0.04575178027153015, 0.036228787153959274, 0.013521100394427776, 0.002869190415367484, 0.005059090908616781, -0.009063665755093098, -0.03516779839992523, -0.06262404471635818, 0.007258696015924215, 0.010512817651033401, -0.006362680345773697, 0.005741615779697895, 0.025347210466861725, -0.017583899199962616, -0.018114393576979637, 0.024402674287557602, 0.004596527200192213, 0.06459075212478638, 0.00586130004376173, -0.023898059502243996, -0.03617703169584274, 0.0007286191103048623, 0.016212381422519684, 0.031467288732528687, 0.04952992498874664, -0.04541537165641785, 0.012110765092074871, -0.035504210740327835, -0.0195376668125391, -0.010913921520113945, 0.012531277723610401, -0.004987927619367838, 0.005372858140617609, -0.0346243679523468, -0.0021834312938153744, 0.009613567031919956, 0.02880188450217247, 0.017221612855792046, 0.010202284902334213, 0.03982578590512276, -0.0015114196576178074, -0.030639201402664185, 0.012479523196816444, -0.0316484309732914, -0.00586130004376173, -0.001777474768459797, -0.016807569190859795, 0.02501079998910427, -0.04016219824552536, -0.005304929334670305, -0.019874077290296555, 0.002482642186805606, 0.004751793574541807, 0.004308637697249651, -0.0062235877849161625, -0.010894513688981533, -0.00874666403979063, -0.004502720665186644, -0.0033867445308715105, 0.011056249029934406, -0.01353403925895691, 0.011418537236750126, 0.018179086968302727, -0.022862952202558517, -0.01027991808950901, -0.05170365422964096, -0.03674633800983429, -0.005194948986172676, 0.03452085703611374, -0.03998105227947235, 0.0014823072124272585, -0.04388858750462532, 0.0014790724962949753, -0.07639098167419434, -0.020469263195991516, 0.01410334836691618, -0.008216170594096184, -0.01564307138323784, 0.0005369623540900648, -0.02838784083724022, 0.016341770067811012, 0.014349186792969704, 0.03811785951256752, -0.019162440672516823, 0.016678180545568466, 0.011936090886592865, -0.012460114434361458, -0.06971453130245209, 0.007608044892549515, 0.05765552446246147, -0.0006283430266194046, -0.01283534150570631, -0.02609766460955143, 0.012479523196816444, -0.011696722358465195, -0.002144614700227976, 0.012104296125471592, 0.014776169322431087, -0.027042200788855553, 0.026434075087308884, 0.02458381839096546, -0.009878813289105892, -0.04857245087623596, -0.015513683669269085, 0.014413881115615368, 0.008022088557481766, 0.04298286512494087, -0.007420431822538376, 0.0018809855682775378, -0.03263178467750549, -0.030044013634324074, 0.002185048535466194, -0.003422326408326626, 0.029422949999570847, 0.016367647796869278, -0.035090167075395584, -0.025567172095179558, -0.0035678884014487267, -0.028957150876522064, 0.02357458882033825, -0.02820669673383236, -0.005330807063728571, 0.0058451262302696705, 0.005974514875560999, -0.020288119092583656, -0.012621849775314331, -0.06516005843877792, -0.009697669185698032, -0.00483913067728281, 0.042051270604133606, 0.0021171197295188904, 0.03860953450202942, 0.024182714521884918, -0.015901848673820496, 0.004182484000921249, -0.01232425682246685, 0.03721213713288307, 0.03480551019310951, -0.0031797229312360287, 0.03221774101257324, -0.06769607216119766, -0.012427767738699913, 0.030018135905265808, -0.019472971558570862, 0.025761254131793976, -0.014323309063911438, -0.04657986760139465, -0.010331673547625542, 0.033097583800554276, -0.0029694666154682636, 0.04189600422978401, 0.013217037543654442, 0.03265766426920891, -0.019045989960432053, -0.04469079524278641, -0.01798500493168831, 0.002070216229185462, 0.009102482348680496, 0.030276913195848465, 0.022565357387065887, -0.028491351753473282, -0.04787375405430794, -0.0006360254483297467, 0.03868716582655907, 0.034779634326696396, -0.013339956291019917, 0.02260417491197586, -0.03672046214342117, -0.010260509327054024, 0.030742712318897247, 0.03188133239746094, 0.0684206485748291, 0.0086560919880867, -0.019692933186888695, -0.01755802147090435, -0.003441734705120325, -0.008953685872256756, 0.055895838886499405, 0.04282759875059128, 0.006980510428547859, 0.010577511042356491, -0.04370744153857231, 0.013339956291019917, -0.031984843313694, 0.06428021937608719, -0.016147688031196594, -0.0144268199801445, 0.017402755096554756, -0.001945679890923202, -0.03475375473499298, 0.02550247684121132, 0.007375145796686411, -0.03666870668530464, -0.019395338371396065, 0.019253011792898178, 0.02970760501921177, -0.05884589999914169, -0.00940654519945383, -0.008397314697504044, -0.03465024381875992, -0.012809463776648045, -0.01786855421960354, 0.037367403507232666, 0.02590358257293701, 0.00739455409348011, 0.0034287958405911922, 0.012388951145112514, -0.03276117146015167, 0.027507999911904335, -0.0209350623190403, 0.04557063803076744, -0.031907208263874054, 0.001414378290064633, 0.03397742658853531, -0.052583493292331696, 0.012667136266827583, 0.023859243839979172, -0.032140109688043594, 0.068575918674469, 0.018722519278526306, 0.006139485165476799, -0.04285347834229469, -0.0004880373307969421, 0.03498665615916252, 0.0246485136449337, -0.002671872964128852, 0.0038072571624070406, 0.019227134063839912, 0.03728977218270302, 0.008953685872256756, -0.005036448128521442, -0.0035970008466392756, 0.04492369294166565, 0.005566941108554602, -0.0031781054567545652, 0.01798500493168831, -0.00331558077596128, 0.053722113370895386, -0.003956053871661425, 0.01960236020386219, 0.017596838995814323, 0.03998105227947235, -0.0502803772687912, 0.020301058888435364, 0.04011044278740883, -0.013741061091423035, -0.0009971002582460642, -0.003768440568819642, -0.06779958307743073, -0.04924527183175087, 0.019615299999713898, 0.0029791707638651133, 0.036461684852838516, 0.0031603146344423294, 0.011205045506358147, 0.06283106654882431, 0.0044250874780118465, 0.017765043303370476, -0.012951791286468506, -0.010577511042356491, 0.007595106028020382, -0.06816187500953674, 0.03066507913172245, 0.021297350525856018, 0.013715183362364769, 0.032812926918268204, -0.014323309063911438, 0.018916601315140724, -0.01623825915157795, 0.011735538952052593, -0.004062799736857414, -0.011754946783185005, -0.02711983397603035, -0.05465371161699295, -0.03669458255171776, -0.009975855238735676, -0.011742007918655872, 0.028051430359482765, -0.05543004348874092, -0.01205254066735506, -0.018269658088684082, -0.054860733449459076, 0.024545002728700638, -0.03371864929795265, 0.010583980940282345, -0.027585633099079132, -0.07457954436540604, -0.0122401537373662, -0.01316528208553791, -0.04021395370364189, -0.041093792766332626, 0.0333046056330204, 0.0011289148824289441, 0.020482202991843224, -0.0026168827898800373, 0.03979991003870964, 0.017428632825613022, -0.002238421468064189, 0.0259682759642601, -0.021297350525856018, -0.012874158099293709, 0.028827762231230736, 0.04707154259085655, -0.006188006140291691, -0.008630214259028435, 0.002275620587170124, 0.05247998237609863, 0.0032832336146384478, 0.005566941108554602, 0.04973694682121277, 0.012298379093408585, 0.029319439083337784, 0.010913921520113945, 0.012020193040370941, -0.024881413206458092, -0.028413718566298485, -0.02952646091580391, 0.04629521071910858, 0.027740899473428726, -0.0382472462952137, -0.03172606602311134, 0.04246531054377556, -0.020521018654108047, 0.025347210466861725, -0.0023112024646252394, 0.03648756444454193, 0.01238248124718666, 0.021866660565137863, -0.028336085379123688, -0.033097583800554276, 0.0260459091514349, -0.025386027991771698, -0.04619169980287552, -0.04334515333175659, -0.02441561408340931, 0.023833366110920906, -0.041274938732385635, 0.01298413798213005, 0.023652222007513046, -0.006035974249243736, 0.02350989356637001, -0.024519124999642372, -0.046321090310811996, 0.008552581071853638, -0.0069999187253415585, -0.017894431948661804, 0.03084622323513031, 0.0016804334009066224, 0.039230599999427795, 0.010486939921975136, -0.031130878254771233, 0.03276117146015167, 0.01989995501935482, 0.0032767641823738813, -0.0039010639302432537, 0.00118713965639472, -0.03498665615916252, 0.019524727016687393, 0.010241101495921612, -0.0076339226216077805, 0.031596675515174866, -0.004577118903398514, 0.0390753336250782, 0.0031312021892517805, -0.024221530184149742, -0.014491514302790165, -0.023134667426347733, -0.014142164960503578, -0.035995885729789734, 0.0035970008466392756, 0.014996129088103771, -0.03979991003870964, 0.007388084661215544, -0.023846304044127464, -0.02416977472603321, 0.003457908285781741, 0.016018299385905266, 0.037962593138217926, -0.022591235116124153, -0.011347373016178608, -0.03798846900463104, 0.020042281597852707, -0.02002934366464615, 0.006259169429540634, 0.02862074039876461, 0.013158812187612057, 0.006307690404355526, 0.03126026690006256, 0.041637226939201355, 0.033589258790016174, 0.027973797172307968, -0.018476679921150208, -0.001538106007501483, 0.033097583800554276, 0.0018890723586082458, -0.003871951485052705, 0.019265949726104736, -0.023484015837311745, -0.01587597094476223, 0.03615115210413933, 0.005143193528056145, -0.020313996821641922, 0.029655849561095238, -0.04096440598368645, 0.08570695668458939, 0.016134748235344887, 0.01678169146180153, -0.01437506452202797, -0.04937465861439705, 0.001487968023866415, 0.0065567633137106895, 0.044173240661621094, -0.06536708027124405, -0.021620821207761765, -0.004218065645545721, 0.01451739203184843, -0.021983109414577484, 0.01308117900043726, 0.016755813732743263, 0.0195376668125391, 0.01097214687615633, 0.0056251659989356995, 0.01790737174451351, 0.036591071635484695, 0.04246531054377556, -0.004130728542804718, 0.005586349405348301, 0.007718025241047144, 0.010765125043690205, -0.049866337329149246, 0.019084807485342026, 0.07152597606182098, -0.027792654931545258, 0.016626425087451935, -0.02410508133471012, -0.014840863645076752, 0.0403950959444046, -0.012874158099293709, -0.01683344691991806, -0.010021140798926353, 0.03188133239746094, 0.0031781054567545652, 0.029190050438046455, -0.004059564787894487, -0.0038848903495818377, -0.036280542612075806, -0.006986979860812426, 0.022099560126662254, -0.00875313300639391, 0.04893473908305168, -0.0073233903385698795, 0.016445280984044075, -0.007019327022135258, -0.008132068440318108, -0.04300874471664429, -0.027197467163205147, -0.00373609340749681, 0.0001993391924770549, -0.014620902948081493, -0.03258002921938896, 0.01767447218298912, -0.0613301582634449, -0.024143896996974945, 0.00399810541421175, -0.0018486385233700275, 0.010771594010293484, -0.020521018654108047, 0.01112094335258007, -0.03982578590512276, 0.03578886389732361, -0.007950924336910248, -0.014025715179741383, -0.03837663680315018, -0.027611510828137398, -0.013779877685010433, -0.052531737834215164, 0.03879067674279213, -0.03449498116970062, 0.017997942864894867, 0.03537482023239136, 0.0017985004233196378, -0.00169822433963418, -0.01088804379105568, 0.0033058766275644302, 0.013016484677791595, 0.0166523028165102, 0.020533958449959755, -0.001137810293585062, -0.041093792766332626, 0.029966380447149277, -0.03162255510687828, 0.007950924336910248, -0.02008109912276268, 0.009730016812682152, -0.006818775087594986, -0.03664282709360123, 0.015332539565861225, -0.022992340847849846, 0.012602441944181919, 0.05460195615887642, 0.03620290756225586, -0.0052758171223104, -0.00502027478069067, 0.010053488425910473, -0.010629266500473022, -0.02164669893682003, -0.02875012904405594, -0.02301821857690811, -0.025230761617422104, -0.00025635099154897034, -0.005408440250903368, -0.004907059483230114, 0.013883388601243496, 0.023716915398836136, -0.025774193927645683, 0.011709661222994328, -0.0027721489313989878, 0.011237393133342266, -0.02657640166580677, -0.01070043072104454, 0.008397314697504044, -0.0351160429418087, -0.013702244497835636, -0.017363939434289932, 0.011069187894463539, -0.004282759968191385, 0.04852069541811943, -0.0017693879781290889, 0.015112578868865967, -0.0021365280263125896, -0.0009550490067340434, 0.006527650635689497, 0.026550523936748505, 0.0036002355627715588, -0.02717158943414688, -0.029785238206386566, -0.03638405352830887, -0.0144656365737319, 0.007750372402369976, -0.00023653838434256613, 0.00023492102627642453, -0.03263178467750549, -0.008106190711259842, 0.021866660565137863, 0.0028708078898489475, 0.01816614903509617, 0.006006862036883831, -0.01437506452202797, -0.008397314697504044, -0.10511523485183716, -0.02014579251408577, 0.012531277723610401, 0.015138456597924232, -0.009141298942267895, 0.04111967235803604, -0.014180981554090977, 0.02400157041847706, 0.06101962551474571, -0.03157079964876175, 0.0017904136329889297, -0.06252053380012512, -0.011153290048241615, -0.006779958494007587, 0.017726227641105652, 0.01658760756254196, 0.019408278167247772, 0.025282517075538635, 0.0012599207693710923, -0.004787375219166279, 0.011625558137893677, -0.00082889519399032, -0.018256720155477524, 0.03915296494960785, 0.011172698810696602, 0.01004701852798462, 0.0008952068164944649, 0.02153025008738041, 0.0034190916921943426, -0.006889938842505217, -0.002065364271402359, 0.0035970008466392756, -0.01834729127585888, 0.0035031940788030624, -0.026304686442017555, 0.002608796115964651, 0.011036841198801994, 0.01678169146180153, 0.0026314391288906336, -0.05206593871116638, -0.0057901362888514996, -0.038635410368442535, 0.046683378517627716, -0.05641339346766472, 0.0342879593372345, 0.009231870993971825, 0.025282517075538635, 0.007006388157606125, -0.02616235800087452, 0.007452778518199921, 0.008073844015598297, 0.00046701167593710124, -0.002230334561318159, -0.008248518221080303, 0.027585633099079132, 0.008157946169376373, -0.016574669629335403, -0.04769260808825493, -0.024376796558499336, 0.01079747173935175, -0.03356338292360306, 0.011146821081638336, 0.028543107211589813, -0.0586906336247921, -0.028724251314997673, -0.03889418765902519, 0.005596053320914507, 0.0195376668125391, 0.005644574295729399, 0.020495140925049782, 0.0351160429418087, 0.02603296935558319, 0.03270941600203514, 0.006974040996283293, 0.0008984415326267481, -0.013922205194830894, -0.0008620510343462229, 0.0048682428896427155, -0.026434075087308884, -0.004635343793779612, 0.011877866461873055, 0.015901848673820496, -0.009632974863052368, -0.012440706603229046, -0.018657824024558067, 0.0003626921970862895, 0.0010520904324948788, -0.01139912847429514, 0.022332457825541496, -0.003933411091566086, 0.010900982655584812, 0.003668164601549506, 0.005427848547697067, -0.001426508417353034, 0.016380585730075836, 0.0007391319377347827, 0.004208361729979515, -0.015345478430390358, -0.002400157041847706, 0.0030988550279289484, 0.014685597270727158, -0.002536014886572957, 0.009335381910204887, -0.006149189546704292, -0.01130855642259121, -0.022772379219532013, 0.02121971733868122, -0.003668164601549506, 0.016613485291600227, 0.0026233522221446037, -0.027378611266613007, -0.007685678079724312, 0.009413015097379684, -0.00934832077473402, 0.011198576539754868, -0.00880488846451044, 0.019679993391036987, -0.017118101939558983, 0.0049005900509655476, -0.036901604384183884, 0.04971107095479965, -0.00191333272960037, -0.018683701753616333, 0.06640218943357468, -0.024273285642266273, 0.0030244565568864346, 0.04575178027153015, -0.003318815492093563, 0.006563232745975256, 0.03061332367360592, 0.007329859770834446, 0.06122664734721184, 0.000808273907750845, 0.07768486440181732, 0.023057034239172935, -0.02616235800087452, 0.01046753115952015, 0.0369274839758873, 0.030328668653964996, 0.054808977991342545, 0.0031603146344423294, 0.030639201402664185, -0.0021041808649897575, 0.029190050438046455, -0.004415383096784353, -0.017363939434289932, 0.020003465935587883, 0.003813726594671607, -0.022151313722133636, 0.030147524550557137, 0.039774030447006226, -0.012376012280583382, -0.012693013995885849, 0.04865008220076561, -0.020611591637134552, 0.05361860245466232, -0.03348574787378311, -0.060346804559230804, -0.0032557386439293623, -0.010364020243287086, -0.0125700943171978, 0.0006465382757596672, 0.02169845439493656, -0.005000866483896971, -0.002165640238672495, 0.006779958494007587, -0.005401970818638802, 0.01660054735839367, -0.016691118478775024, 0.0011386190308257937, 0.017363939434289932, 0.013948081992566586, 0.03452085703611374, 0.06091611459851265, 0.027378611266613007, 0.04544124752283096, 0.023406382650136948, 0.02013285458087921, 0.011864927597343922, 0.027145711705088615, -0.02706807851791382, 0.002502050483599305, 0.00024320998636540025, 0.02675754576921463, 0.03783320263028145, -0.004095146432518959, -0.03245064243674278, -0.014051592908799648, 0.017842676490545273, 0.01744157262146473, 0.001578539959155023, 0.02309584990143776, 0.008080312982201576, 0.007937985472381115, -0.03278705105185509, 0.03071683458983898, 0.01671699620783329, -0.005127020180225372, -0.018489619717001915, 0.02098681777715683, -0.031829576939344406, 0.008617275394499302, -0.0266281571239233, -0.0021996048744767904, 0.01779092103242874, 0.017350999638438225, 0.0005349406856112182, 0.018256720155477524, -0.04647635668516159, 0.03612527623772621, -0.0010245953453704715, -0.01779092103242874, -0.0013124848483130336, -0.02512725070118904, -0.02128441073000431, 0.02326405607163906, -0.0004771201638504863, 0.000977691961452365, -0.02068922482430935, -0.029138294979929924, -0.03788495808839798, -0.02411801926791668, 0.006294751539826393, 0.002206074306741357, -0.029914624989032745, 0.0017920309910550714, 0.031130878254771233, -0.00491352891549468, -0.001377179054543376, 0.025334272533655167, -0.006194475572556257, 0.015888910740613937, -0.00082889519399032, 0.010389897972345352, -0.011010963469743729, 0.010364020243287086, -0.01755802147090435, -0.039049454033374786, -0.0180496983230114, 0.0037781447172164917, 0.019524727016687393, 0.01308117900043726, 0.0377555713057518, -0.02983699180185795, -0.03542657569050789, -0.007802127860486507, 0.03656519576907158, 0.024609696120023727, 0.055844083428382874, -0.011554394848644733, 0.015267845243215561, 0.007420431822538376, -0.00602950481697917, -0.003875186201184988, 0.02652464620769024, -0.0013666662853211164, 0.025347210466861725, 0.021685516461730003, 0.008436131291091442, -0.023768670856952667, -0.00390753336250782, 0.011179167777299881, -0.017389817163348198, 0.00765333091840148, 0.0002547336625866592, -0.007342798635363579, -0.008973093703389168, 0.016328832134604454, 0.010241101495921612, -0.003603470278903842, -0.014543269760906696, 0.017829738557338715, 0.022811196744441986, -0.01966705545783043, -0.016639363020658493, 0.025813009589910507, -0.06459075212478638, -0.0034902552142739296, 0.010066427290439606, -0.038454268127679825, -0.0253083948045969, 0.005644574295729399, -0.012130173854529858, -0.00925774872303009, 0.04678688943386078, -0.016070054844021797, 0.0012057392159476876, -0.022694746032357216, -0.0023856009356677532, -0.015086701139807701, -0.014388003386557102, -0.005366388708353043, -0.014866741374135017, 0.021517310291528702, -0.023729855194687843, 0.0014944374561309814, -0.0013003546046093106, 0.01935652270913124, -0.004632108844816685, -0.03353750333189964, -0.015565439127385616, -0.017286306247115135, 0.02362634427845478, 0.04745971038937569, 0.01966705545783043, 0.0033673362340778112, -0.012667136266827583, -0.022694746032357216, 0.017583899199962616, 0.02688693441450596, -0.00018175043805968016, 0.03361513838171959, 0.0031150286085903645, 0.0400586873292923, -0.006909347139298916, 0.033589258790016174, 0.004454199690371752, 0.0302510354667902, -0.006986979860812426, 0.013870449736714363, -0.014970251359045506, 0.030147524550557137, 0.012505399994552135, 0.01912362314760685, 0.017415694892406464, -0.03325285017490387, 0.03289056196808815, 0.004955580458045006, -0.009658852592110634, 0.01385751087218523, -0.0006287473370321095, -0.0002058086101897061, 0.007478656247258186, 0.001673963968642056, -0.020896246656775475, 0.009180115535855293, -0.018567252904176712, -0.001537297386676073, -0.005971280392259359, -0.0032670600339770317, -0.0166523028165102, -0.019447093829512596, -0.008876052685081959, -0.01410334836691618, -0.00033054722007364035, -0.00544402189552784, 0.03529718890786171, 0.021387921646237373, -0.000952622969634831, 0.022293642163276672, 0.04161134734749794, -0.0010569425066933036, -0.02446736954152584, -0.01229190919548273, -0.016911080107092857, -0.00782153569161892, -0.005249939393252134, -0.032269496470689774, -0.0015656010946258903, 0.003013135166838765, -0.027559755370020866, -0.015229028649628162, -0.06267579644918442, 0.025036677718162537, 0.015798337757587433, -0.02502373978495598, -0.034727878868579865, 0.032140109688043594, 0.030354546383023262, -0.01647115871310234, 0.00986587442457676, 0.022461846470832825, -0.019938770681619644, -0.025153128430247307, -0.028853639960289, 0.010454592294991016, 0.01575952209532261, -0.012951791286468506, -0.013909266330301762, 0.017182795330882072, -0.01858019083738327, -0.031363777816295624, -0.006084495224058628, 0.04249119013547897, 0.0048585389740765095, -0.006023035384714603, -0.03402918204665184, 0.006236526649445295, 0.002927415305748582, 0.013663427904248238, 0.009645913727581501, -0.01973174884915352, 0.0028562515508383512, -0.008681969717144966, -0.0040466259233653545, 0.0046029966324567795, -0.015177273191511631, -0.007413962390273809, -0.0040822080336511135, -0.003529071807861328, -0.01455620862543583, -0.01451739203184843, 0.0063917930237948895, -0.02921592816710472, -0.0001650714548304677, -0.0033220502082258463, 0.020119914785027504, -0.0009882048470899463, 0.02916417270898819, 0.036409929394721985, -0.005469899624586105, 0.0005871003959327936, -0.015668949112296104, 0.003713450627401471, -0.054394934326410294, -0.025424843654036522, 0.022888829931616783, 0.0028513995930552483, 0.00637238472700119, -0.006246231030672789, 0.009762363508343697, 0.037548549473285675, 0.007064613047987223, 0.004033687058836222, 0.027016323059797287, 0.021685516461730003, 0.0311567559838295, 0.04228416830301285, 0.011677313596010208, -0.019861137494444847, -0.008177354000508785, 0.0012114000273868442, -0.030458057299256325, 0.03811785951256752, -0.0011839049402624369, 0.007206940557807684, 0.00917364563792944, 0.009794711135327816, -0.013456406071782112, 0.027042200788855553, 0.04342278838157654, -0.0280255526304245, -0.004590057767927647, 0.01148323155939579, -0.018981296569108963, -0.01966705545783043, -0.04029158502817154, -0.013896327465772629, 0.0026848118286579847, -0.004360393155366182, 0.003377040382474661, 0.01917537860572338, -0.0026686382479965687, 0.02255241945385933, 0.028879517689347267, 0.007828005589544773, -0.018968356773257256, -0.0036455215886235237, 0.027507999911904335, 0.0008677117875777185, -0.021142084151506424, 0.01732512190937996, 0.003529071807861328, 0.02087036892771721, 0.030923856422305107, 0.03897182270884514, 0.001673963968642056, 0.013831633143126965, -0.022630052641034126, -0.024997862055897713, 0.02862074039876461, -0.007194001693278551, -0.04425087198615074, 0.002419565338641405, 0.031105000525712967, 0.0038557779043912888, 0.0208574291318655, -0.021905476227402687, 0.0030568037182092667, -0.011696722358465195, 0.016820507124066353, 0.002206074306741357, 0.0266281571239233, -0.0006586684612557292, 0.01846374198794365, -0.007381615228950977, 0.01112741231918335, -0.016251198947429657, 0.021918416023254395, -0.0016691118944436312, -0.0550677552819252, 0.041274938732385635, 0.0030276912730187178, -1.2319707821006887e-05, 0.04287935420870781, -0.010558103211224079, 0.01792030967772007, -0.019162440672516823, 0.017583899199962616, 0.00045488151954486966, -0.00833262037485838, -0.003095620311796665, 0.024739084765315056, -0.013741061091423035, 0.025347210466861725, -0.0164840966463089, 0.0302510354667902, 0.010344612412154675, 0.009704139083623886, -0.031105000525712967, -0.0044703735038638115, 0.03589237481355667, 0.009212462231516838, -0.016522914171218872, 0.029862869530916214, -0.024752024561166763, -0.0037166853435337543, -0.027093956246972084, -0.004635343793779612, -0.011955499649047852, 0.007045204751193523, 0.00458682281896472, 0.015384295023977757, 0.00884370505809784, -0.015190212056040764, 0.01061632763594389, 0.005408440250903368, 0.017221612855792046, -0.008261457085609436, -0.008248518221080303, -0.024790840223431587, -0.014776169322431087, 0.020119914785027504, 0.021387921646237373, -0.04057623818516731, -0.02212543599307537, -0.01762271672487259, 0.01917537860572338, 0.00467739487066865, 0.0031360541470348835, -0.006728203035891056, 0.0074657173827290535, 0.0115414559841156, 0.027016323059797287, 0.026602279394865036, 0.018619008362293243, 0.022811196744441986, 0.03263178467750549, -0.011269739829003811, 0.011289148591458797, -0.018230842426419258, -0.021569065749645233, 0.005599288269877434, -0.008947215974330902, -0.014310370199382305, 0.016070054844021797, -0.046631623059511185, 0.023341689258813858, -0.011425006203353405, 0.02255241945385933, 0.010027610696852207, -0.017842676490545273, -0.01918831840157509, 0.05646514892578125, -0.003648756304755807, -0.02446736954152584, 0.006133015733212233, 0.03687572851777077, -0.020883306860923767, -0.032812926918268204, -0.013663427904248238, -0.011599680408835411, 0.028698373585939407, -0.0314931645989418, 0.019291827455163002, 0.03144140914082527, 0.02784441038966179, 0.001410334836691618, 0.019214196130633354, 0.017997942864894867, -0.03433971479535103, -0.026964567601680756, 0.015060823410749435, -0.01503494568169117, -0.002469703322276473, 0.0015526622300967574, 0.011703191325068474, -0.020417507737874985, 0.005314633250236511, -0.022021926939487457, 0.03201071918010712, -0.010985085740685463, 0.03172606602311134, 0.004315107129514217, 0.04916763678193092, 0.0023597232066094875, 0.031984843313694, 0.02482965774834156, -0.0011426623677834868, -0.002660551341250539, 0.010823349468410015, 0.039955176413059235, 0.028646618127822876, -0.0009631357970647514, -0.042232412844896317, 0.011974907480180264, -0.0028174349572509527, -0.024363858625292778, 0.005346980411559343, -0.002589387819170952, -0.011437945067882538, 0.014931434765458107, 0.00331558077596128, 0.0042245350778102875, 0.024143896996974945, -0.004185718484222889, 0.0017952657071873546, -0.017726227641105652, -0.021801965311169624, 0.012065479531884193, 0.004305403213948011, 0.0038978292141109705, 0.03672046214342117, -0.00621064892038703, -0.03242476284503937, 0.002498815767467022, 0.027016323059797287, 0.04919351637363434, -0.01344346720725298, -0.008772541768848896, 0.03144140914082527, -0.011651435866951942, -0.020715102553367615, -0.04406972974538803, 0.008947215974330902, 0.019679993391036987, -0.01706634648144245, -0.03333048149943352, -0.01881309039890766, 0.0036584604531526566, 0.02014579251408577, 0.01539723388850689, -0.036823973059654236, 0.030147524550557137, 0.008798419497907162, -0.04779611900448799, 0.0025198415387421846, 0.02988874725997448, 0.0027980266604572535, -0.003380275098606944, -0.01660054735839367, 0.020184610038995743, 0.004066034220159054, -0.010816880501806736, 0.02717158943414688, 0.01839904673397541, -0.0217631496489048, -0.019460033625364304, -0.010273448191583157, -0.025761254131793976, 0.026175297796726227, -0.0044800774194300175, 0.008766071870923042, -0.011522048152983189, -0.014077470637857914, 0.012505399994552135, -0.013288200832903385, 0.06490128487348557, -0.02087036892771721, -0.005524890031665564, -0.008196762762963772, -0.001092524267733097, -0.008863113820552826, 0.0034352652728557587, 0.03369276970624924, 0.04192188009619713, 0.005851595662534237, 0.005139959044754505, -0.01924007199704647, -0.009891752153635025, -0.0006263212999328971, -0.011140351183712482, 0.014827924780547619, -0.022811196744441986, 0.004182484000921249, 0.010674552991986275, 0.03216598555445671, 0.025269577279686928, 0.009044257923960686, -0.013572855852544308, 0.008429662324488163, 0.011088595725595951, -0.041999515146017075, 0.016755813732743263, 0.0072004711255431175, 0.03289056196808815, -0.015707766637206078, 0.020948002114892006, -0.017997942864894867, -0.002493963809683919, -0.028129063546657562, 0.002272385871037841, -0.03157079964876175, -0.005072029773145914, 0.003859012620523572, 0.004835895728319883, -0.009762363508343697, 0.01610887050628662, -0.013327017426490784, 0.00814500730484724, 0.039644643664360046, 0.011412067338824272, -0.013048832304775715, 0.00790563877671957, -0.029733482748270035, 0.005961576011031866, 0.024907290935516357, -0.001504950225353241, -0.040860895067453384, -0.02344520017504692, 0.005683390889316797, 0.011567333713173866, 0.017816798761487007, -0.007886230014264584, -0.001376370433717966, -0.04637284576892853, 0.004780905786901712, 0.022293642163276672, -0.012712421827018261, 0.02260417491197586, 0.01971881091594696, 0.02199604921042919, 0.00449301628395915, 0.005780431907624006, -0.00391076784580946, 0.005725441966205835, 0.0011798616033047438, 0.03446910157799721, -0.01535841729491949]" -CloudQuery on Using PostgreSQL for Cloud Assets Visibility,"data integrity.A common alternative is to create trigger functions that will cause a delete on the relation table if a row is deleted in the parent table, the issue here is that some resources in CloudQuery can have three or more levels of relations and we didn’t want to create many queries to solve this, so we came up with the following functions to easily create the deletion cascade.First, we wanted a trigger function that will delete our relational table. We used trigger arguments to pass the relation table name its foreign key name so we can delete the data in the relation table. Full code is availablehere.CREATE OR REPLACE FUNCTION history.cascade_delete() RETURNS trigger LANGUAGE 'plpgsql' COST 100 VOLATILE NOT LEAKPROOF AS $BODY$ BEGIN BEGIN IF (TG_OP = 'DELETE') THEN EXECUTE format('DELETE FROM history.%I where %I = %L AND cq_fetch_date = %L', TG_ARGV[0], TG_ARGV[1], OLD.cq_id, OLD.cq_fetch_date); RETURN OLD; END IF; RETURN NULL; -- result is ignored since this is an AFTER trigger END; END; $BODY$;Then, we call the create trigger function on the root table and pass these arguments to the child. Full code is availablehere.CREATE OR REPLACE FUNCTION history.build_trigger(_table_name text, _child_table_name text, _parent_id text) RETURNS integer LANGUAGE 'plpgsql' COST 100 VOLATILE PARALLEL UNSAFE AS $BODY$ BEGIN IF NOT EXISTS ( SELECT 1 FROM pg_trigger WHERE tgname = _child_table_name ) then EXECUTE format( 'CREATE TRIGGER %I BEFORE DELETE ON history.%I FOR EACH ROW EXECUTE PROCEDURE history.cascade_delete(%s, %s)'::text, _child_table_name, _table_name, _child_table_name, _parent_id); return 0; ELSE return 1; END IF; END; $BODY$;To sum it all up, we built two generic SQL functions to make sure all our hypertables and relational hypertables data get deleted if the root table has any data removed.Future plansCompliance overtime is a common request so we are working on integrating the results ofCloudQuery Policieswith TimescaleDB so you can monitor and visualize compliance with TimescaleDB and Grafana.Getting started advice & resourcesBefore you jump into implementing your own partition strategy, definitely give TimescaleDB a try. It can save you a lot of development time and make your product more robust.The Timescale documentationis a great place to start.🗞️Subscribe to our newsletter atcloudquery.ioand join ourDiscordto hear about our upcoming and latest features.We’d like to thank Ron and all folks at the CloudQuery team for sharing their story, as well as for their work to transform complex",https://www.timescale.com/blog/cloudquery-on-using-postgresql-for-cloud-assets-visibility/,571,"[0.033696118742227554, 0.055786099284887314, 0.05978255346417427, 0.0061794463545084, 0.028413135558366776, 0.028550000861287117, 0.014535043388605118, 0.026893936097621918, -0.009423142299056053, 0.010737044736742973, 0.024307191371917725, 0.0022257640957832336, 0.022144727408885956, -0.01565733551979065, 0.024142954498529434, 0.030767209827899933, 0.05044837296009064, 0.013289573602378368, 0.018832597881555557, 0.0708412304520607, 0.021036121994256973, 0.027441395446658134, 0.022199472412467003, -0.012365736067295074, 0.007253835443407297, -0.04710886999964714, 0.02173413336277008, 0.05192651227116585, -0.003975922707468271, -0.07768446952104568, 0.07007478922605515, -0.025730585679411888, -0.023513374850153923, -0.007609683554619551, 0.06733749061822891, 0.009217845275998116, 0.05581347271800041, 0.0428386889398098, -0.026757070794701576, 0.020392857491970062, 0.00988163985311985, -0.01597212441265583, 0.025497915223240852, 0.042564958333969116, 0.006100749131292105, 0.01929793879389763, -0.021159300580620766, -0.009717402048408985, -0.029042713344097137, 0.018750479444861412, -0.012338363565504551, 0.0009229821152985096, -0.017505010589957237, 0.011934611946344376, -0.01864098757505417, -0.015356232412159443, -0.03142416104674339, 0.0577022060751915, -0.014617162756621838, -0.01595843769609928, -0.005775695201009512, -0.025114694610238075, 0.03722722828388214, 0.03662502393126488, -0.00473210122436285, 0.021337224170565605, 0.0018596507143229246, 0.016711194068193436, 0.004396782256662846, 0.0478205680847168, 0.024129267781972885, 0.04979142174124718, 0.003561906749382615, -0.004831328056752682, 0.025278931483626366, -0.059727806597948074, 0.01393283810466528, 0.015452037565410137, 0.005830441135913134, -0.0214330293238163, 0.03670714423060417, -0.011311877518892288, 0.011311877518892288, 0.02407452091574669, 0.006867192219942808, -0.0329570472240448, -0.060056280344724655, 0.014973010867834091, 0.003046952886506915, -0.010730201378464699, -0.024307191371917725, 0.07045800983905792, -0.023650240153074265, 0.029590172693133354, 0.00782182440161705, -0.022541634738445282, 0.04847751930356026, 0.009518948383629322, -0.014493984170258045, -0.009635282680392265, 0.008615639992058277, -0.029590172693133354, -0.024006089195609093, -0.042564958333969116, 0.028084659948945045, -0.021884683519601822, -0.04171639680862427, 0.010545434430241585, -0.009888483211398125, 0.032519079744815826, -0.08633432537317276, -0.035639598965644836, -0.06843240559101105, -0.008266635239124298, -0.041086819022893906, 0.008711445145308971, -0.023198585957288742, -0.0042017498053610325, -0.0019007101655006409, -0.0055635548196733, -0.03440781310200691, -0.04223648086190224, -0.008451402187347412, -0.02983652986586094, -0.02076239325106144, -0.029535427689552307, -0.01695755124092102, -0.0593445859849453, -0.03525637835264206, -0.011140796355903149, 0.07023902237415314, 0.04182588681578636, 0.04486428573727608, -0.017587129026651382, 5.8007157349493355e-05, 0.0023027504794299603, -0.040128763765096664, -0.016519583761692047, 0.004954506177455187, -0.03843164071440697, 0.010216958820819855, 0.005727792624384165, 0.020310739055275917, -0.024621980264782906, -0.05482804402709007, 0.00589203042909503, 0.019968576729297638, 0.0345446802675724, -0.04067622497677803, 0.024745158851146698, 0.010045877657830715, -0.0272087249904871, 0.01038119662553072, 0.0015115007990971208, 0.0013729252386838198, -0.00547801423817873, 0.042400721460580826, 0.05671678110957146, 0.001975985709577799, -0.03509213775396347, -0.01942111738026142, 0.049681928008794785, -0.016930177807807922, -0.025648467242717743, -0.05072209984064102, -0.023800792172551155, -0.08129770308732986, 0.006063111592084169, -0.07177191227674484, 0.010593337006866932, -0.006935624405741692, -0.050147268921136856, 0.004225701093673706, -0.012365736067295074, -1.2603859431692399e-05, -0.026729699224233627, -0.008471932262182236, -0.025812704116106033, 0.0054540629498660564, -0.05299405753612518, -0.005282981786876917, -0.0022565587423741817, -0.07352378219366074, 0.0021881263237446547, 0.00013205315917730331, 0.018859971314668655, -0.06706375628709793, 0.021350910887122154, -0.038294777274131775, 0.06952732801437378, -0.02670232579112053, 0.03854113072156906, -0.0036713986191898584, 0.006374478805810213, 0.051324307918548584, -0.045575983822345734, 0.04171639680862427, 0.010408569127321243, -0.005878343712538481, -0.009169942699372768, 0.041196309030056, 0.034325696527957916, 0.03892435505986214, -0.022664813324809074, 0.01342643890529871, 0.005529338493943214, -0.009019391611218452, 0.005590927787125111, -0.05819492042064667, -0.058413904160261154, 0.00580648984760046, -0.00914256926625967, -0.05814017355442047, -0.00841034296900034, 0.014740340411663055, -0.01615004800260067, -0.008376127108931541, 0.0070690675638616085, 0.03150628134608269, -0.0031342043075710535, 0.018189333379268646, 0.008335066959261894, 0.004598657600581646, -0.028905849903821945, 0.00495108449831605, 0.02701711468398571, 0.023458629846572876, -0.05507440119981766, 0.014507670886814594, -0.005696997977793217, -0.009717402048408985, -0.0028467881493270397, 0.02389659732580185, -0.023294391110539436, -0.004427576903253794, -0.006429224740713835, 0.002270245226100087, -0.01580788567662239, 0.00013119775394443423, -0.01634165830910206, -0.015260427258908749, 0.026455968618392944, -0.03314865753054619, 0.00922468863427639, 0.05967305973172188, 0.018216706812381744, -0.015520470216870308, -0.03966342285275459, 0.07231936603784561, 0.05666203424334526, 0.02074870653450489, -0.0056354086846113205, 0.026606520637869835, -0.00849930476397276, -0.040949951857328415, -0.06060374155640602, 0.00011815282778115943, -0.03651553392410278, -0.019571669399738312, -0.013351162895560265, 0.04494640603661537, -0.030931448563933372, -0.03446255996823311, -0.0043078199960291386, -0.008027121424674988, 0.05088634043931961, 0.04344089329242706, -0.022678500041365623, -0.007205932401120663, -0.021200360730290413, 0.01601318269968033, 0.004177798517048359, 0.043878860771656036, -0.05961831286549568, -0.0055635548196733, -0.02239108458161354, 0.011387152597308159, -0.006839819252490997, -0.0001406072115059942, -0.04026562720537186, -0.032847557216882706, -0.0003791583003476262, -0.026716012507677078, -0.004656825214624405, 0.025621093809604645, 0.03202636539936066, 0.009498418308794498, 0.06011102721095085, -0.014288687147200108, -0.05532075837254524, -0.02552528865635395, -0.016218481585383415, -0.010155369527637959, -0.021378284320235252, -0.006696111056953669, 0.06076797842979431, -0.009977445006370544, -0.028768984600901604, -0.021131927147507668, 0.011838806793093681, -0.029261697083711624, 0.02040654420852661, 0.012208341620862484, 0.004790268372744322, 0.02422507293522358, -0.014028643257915974, 0.0002912654308602214, -0.016108989715576172, 0.003972501493990421, 0.015698393806815147, -0.0014122738502919674, 0.010593337006866932, 0.012933725491166115, -0.007698645815253258, -0.019872771576046944, -0.046369798481464386, 0.04888811334967613, 0.0021727290004491806, 0.01162666641175747, -0.04229122772812843, 0.03525637835264206, -0.06290306895971298, -0.03309391438961029, 0.0312599241733551, -0.016683820635080338, -0.016108989715576172, 0.022678500041365623, -0.02601800113916397, 0.028385762125253677, -0.008492461405694485, 0.02816677838563919, -0.02156989462673664, -0.01226993091404438, -0.007965532131493092, -0.006442911457270384, -0.03725460171699524, 0.0395813062787056, 0.0312599241733551, 0.015890005975961685, 0.005652517080307007, -0.0057243709452450275, 0.029918648302555084, -0.05140642449259758, 0.016519583761692047, -0.017176534980535507, 0.00035370999830774963, 0.0010393172269687057, -0.005837284494191408, 0.025251558050513268, 0.020297052338719368, -0.06689952313899994, 0.0018168804235756397, 0.008711445145308971, 0.01168141234666109, 0.038814861327409744, 0.02589482255280018, 0.006569511257112026, -0.05162540823221207, -0.012393109500408173, 0.012482071295380592, -0.03377823531627655, 0.012892665341496468, 0.02983652986586094, -0.04349564015865326, -0.010073250159621239, 0.020885571837425232, -0.0428660586476326, 0.010860223323106766, 0.014480297453701496, 0.011400839313864708, -0.03016500547528267, -0.027085546404123306, -0.007513878401368856, -0.013823346234858036, -0.09925436228513718, -0.032874930649995804, -0.024745158851146698, 0.030110260471701622, 0.039964526891708374, 0.02589482255280018, 0.00915625598281622, 0.006839819252490997, 0.014781400561332703, -0.015150935389101505, 0.03282018378376961, 0.04825853556394577, -0.03328552469611168, 0.019845398142933846, -0.05835915729403496, 0.0011693388223648071, 0.04812166839838028, -0.01327588688582182, 0.027591947466135025, 0.050639983266592026, -0.0428386889398098, -0.010600180365145206, -0.006956154480576515, 0.036187056452035904, 0.0724836066365242, -0.01612267456948757, 0.06180815026164055, -0.010121152736246586, -0.0494629442691803, -0.0131869250908494, -0.0005645673954859376, 0.026962369680404663, 0.02276061847805977, 0.018326198682188988, -0.004981879144906998, -0.051488544791936874, 0.0067953383550047874, 0.022350024431943893, 0.03607756644487381, -0.019886458292603493, 0.029590172693133354, -0.061370182782411575, -0.014165508560836315, 0.05324041470885277, -0.0053035118617117405, 0.02094031684100628, -0.021665699779987335, -0.04582234099507332, 0.026428595185279846, -0.009854266420006752, -0.022486889734864235, 0.041798513382673264, 0.01682068593800068, 0.03544798865914345, 0.03539324179291725, -0.07724650204181671, -0.016245853155851364, -0.01045647170394659, 0.027386650443077087, 0.007582311052829027, 0.0015029467176645994, 0.039772916585206985, 0.010004818439483643, -0.00782182440161705, 0.0642717182636261, 0.005614879075437784, -0.004123052582144737, -0.014849832281470299, 0.034353069961071014, 0.0362691767513752, -0.032546453177928925, 0.005967305973172188, 0.002319858642295003, -0.0379389263689518, -0.003993031103163958, -0.016410091891884804, 0.016218481585383415, 0.0313694141805172, -0.00420517148450017, -0.021022435277700424, 0.01071651466190815, -0.03344976156949997, 0.02917957864701748, -0.03966342285275459, 0.053295157849788666, -0.005351414438337088, -0.016711194068193436, 0.047218360006809235, -0.05250134319067001, 0.030110260471701622, 0.008382969535887241, -0.04363250359892845, 0.03933494910597801, -0.004537068773061037, 0.005002409219741821, -0.06213662773370743, -0.007253835443407297, 0.0031410474330186844, 0.054472196847200394, 0.02259638160467148, 0.022514263167977333, 0.006158916745334864, 0.022322650998830795, 0.00023031781893223524, 0.0023215694818645716, -0.048012178391218185, 0.03147890791296959, 0.002335255965590477, 0.02983652986586094, 0.012995313853025436, -0.003105120500549674, 0.03183475509285927, 0.012338363565504551, -0.03596807271242142, 0.010997087694704533, 0.01858624257147312, -0.033176030963659286, 0.018326198682188988, 0.023294391110539436, -0.01595843769609928, -0.02438930980861187, 0.0060973274521529675, -0.037336722016334534, -0.0304934810847044, 0.04297555238008499, -0.011654038913547993, 0.02025599218904972, -0.004817641340196133, 0.031725265085697174, 0.03413408622145653, -0.01597212441265583, -0.021296165883541107, -0.013125335797667503, -0.012379422783851624, -0.01391915138810873, -0.018216706812381744, -0.010080093517899513, -0.012707898393273354, 0.006436068098992109, 0.02735927700996399, -0.007739705499261618, 0.02767406590282917, -0.019024210050702095, 0.029617546126246452, -0.0003107259108219296, -0.05206337571144104, -0.042920805513858795, -0.020707646384835243, -0.02470409870147705, -0.0036440256517380476, -0.017901917919516563, 0.018846284598112106, -0.024184012785553932, -0.03331289812922478, -0.0010512928711250424, -0.025675838813185692, 0.04319453611969948, -0.017203906551003456, 0.03594069927930832, 0.004920290317386389, -0.048860739916563034, 0.002068369649350643, -0.008759348653256893, -0.019078955054283142, -0.04130580276250839, 0.03230009600520134, 0.005939933005720377, 0.027455082163214684, 0.014754027128219604, 0.03065771795809269, 0.006860348861664534, -0.018682047724723816, 0.038650624454021454, 9.719540685182437e-05, 0.025005202740430832, 0.051160067319869995, 0.04664352908730507, -0.03347713500261307, -0.016273226588964462, 0.0263738501816988, -0.001671461621299386, -0.009573694318532944, -0.015944750979542732, 0.023773418739438057, 0.015534156933426857, 0.009368396364152431, -0.03213585913181305, -0.008998861536383629, -0.021556207910180092, -0.016916491091251373, -0.033504508435726166, 0.018572555854916573, 0.023814478889107704, -0.01351540070027113, -0.047190990298986435, 0.026784444227814674, 0.005122165661305189, 0.00486212270334363, 0.014316059648990631, -0.008533521555364132, 0.012851606123149395, -0.0005265018553473055, -0.035530105233192444, -0.04417996108531952, 0.013310103677213192, -0.02110455557703972, -0.04382411390542984, -0.039964526891708374, -0.029535427689552307, 0.026565460488200188, -0.053623635321855545, 0.009176786057651043, 0.01974959298968315, 0.017108101397752762, 0.010593337006866932, -0.021966803818941116, -0.00416069058701396, 0.04855963587760925, -0.004540490452200174, -0.001910974970087409, 0.00839665625244379, 0.005549868103116751, 0.03199899569153786, 0.01557521615177393, -0.0197632797062397, 0.03577646240592003, 0.013939681462943554, 0.015465724281966686, -0.008903056383132935, -0.039937153458595276, 0.006460019387304783, 0.016232166439294815, 0.018339885398745537, 0.011243444867432117, 0.02110455557703972, 0.012831076979637146, 0.0066071487963199615, -0.023978715762495995, -0.030028140172362328, 0.007712332531809807, 0.006316311191767454, -0.03689875453710556, -0.013905465602874756, -0.00031393367680720985, 0.020639214664697647, -0.02868686616420746, 0.020160187035799026, -0.009327337145805359, -0.025621093809604645, -0.02486833743751049, -0.008540364913642406, 0.054444823414087296, -0.018531495705246925, -0.014110762625932693, -0.0345446802675724, 0.024936769157648087, -0.015096189454197884, -0.002319858642295003, 0.017231279984116554, 0.005741478875279427, 0.00041807923116721213, 0.0037227231077849865, 0.04089520871639252, 0.020214933902025223, 0.03673451766371727, -0.011393995955586433, 0.011996201239526272, 0.04248283803462982, -0.006986948661506176, 0.007130656857043505, 0.027591947466135025, 0.005980992689728737, -0.022007862105965614, 0.039937153458595276, -0.024964142590761185, -0.021378284320235252, 0.006360792554914951, -0.03886960819363594, 0.028632119297981262, 0.006158916745334864, 0.008232418447732925, -0.01961272768676281, -0.035338494926691055, 0.02173413336277008, 0.030110260471701622, 0.03375086188316345, -0.048039551824331284, -0.005861235782504082, -0.007349640596657991, -0.008937272243201733, -0.0028707394376397133, 0.019818024709820747, 0.028960594907402992, 0.027783557772636414, 0.020693959668278694, -0.023992402479052544, -0.008944115601480007, 0.02555266208946705, 0.04478216916322708, 0.0022257640957832336, 0.0011796036269515753, -0.0023181478027254343, -0.0003539238532539457, -0.016930177807807922, 0.036187056452035904, 0.04584971442818642, -0.0073975431732833385, 0.011133952997624874, 0.0007886834791861475, -0.007643899880349636, 0.018709421157836914, -0.002713344991207123, -0.035831209272146225, -0.006401851773262024, 0.0395813062787056, 0.03610493987798691, 0.022801678627729416, -0.029699664562940598, 0.004256495740264654, -0.03197162225842476, -0.0022052342537790537, 0.023622866719961166, 0.014740340411663055, 0.021624641492962837, -0.00110090640373528, -0.002802307019010186, 0.002461855998262763, -0.017518697306513786, -0.02781093120574951, -0.01762818917632103, -0.0012103982735425234, -0.0022736666724085808, -0.008362440392374992, -0.020037008449435234, 0.014028643257915974, -0.030110260471701622, -0.01292688213288784, 0.022363711148500443, -0.023267019540071487, 0.004742365796118975, -0.026086434721946716, 0.017108101397752762, -0.04130580276250839, -0.004006717354059219, -0.037145111709833145, -0.017080729827284813, -0.04699937626719475, -0.0181072149425745, -0.0022052342537790537, -0.023458629846572876, 0.0181345883756876, 0.026113806292414665, 0.02470409870147705, 0.02407452091574669, -0.019503235816955566, -0.021980488672852516, -0.041114192456007004, 0.003243696177378297, 0.012482071295380592, 0.05356888845562935, 0.0057825385592877865, -0.018189333379268646, -0.02124141901731491, 0.030849330127239227, -0.0064086951315402985, -0.0015688129933550954, 0.0015115007990971208, 0.002478963928297162, -0.013234827667474747, -0.02785198949277401, 0.024334564805030823, -0.027304530143737793, 0.019968576729297638, 0.047355227172374725, 0.05704525485634804, -0.0025935883168131113, 0.007719175424426794, 0.01226993091404438, -0.020639214664697647, -0.03826740384101868, 0.001964010065421462, -0.014699281193315983, -0.060384757816791534, -0.0008477064548060298, -0.03405196592211723, 0.0346267968416214, 0.028084659948945045, 0.025593720376491547, -0.006223927717655897, 0.01595843769609928, -0.015342545695602894, 0.0061691817827522755, -0.016054242849349976, -0.007712332531809807, 0.003115385305136442, -0.026784444227814674, 0.006436068098992109, -0.011202385649085045, -0.0033052852377295494, 0.0024396153166890144, 0.020858198404312134, 0.015342545695602894, -0.00683639757335186, 0.03988240659236908, 0.03342238813638687, -0.013508557341992855, 0.004899760242551565, 0.009512105025351048, -0.04067622497677803, -0.020680272951722145, -0.007041694596409798, -0.03063034638762474, 0.001539729186333716, -0.026976054534316063, 0.003999874461442232, -0.03580383583903313, -0.03413408622145653, 0.02322595939040184, 0.008335066959261894, 0.0007048537954688072, 0.015698393806815147, -0.02735927700996399, -0.012180968187749386, -0.12372579425573349, -0.010600180365145206, 0.025826390832662582, -0.0029015340842306614, -0.002987074665725231, 0.016574328765273094, 0.00040653126779943705, 0.003476366400718689, 0.05515652149915695, -0.05299405753612518, 0.018654674291610718, -0.0461508147418499, 0.017108101397752762, 0.008841467089951038, 0.029617546126246452, 0.031396787613630295, 0.021610954776406288, -0.003869852749630809, 0.025593720376491547, -0.025826390832662582, 0.011592449620366096, -0.014603476040065289, -0.02833101712167263, 0.012557347305119038, 0.010723358020186424, -0.013878092169761658, -0.01557521615177393, 0.04056673124432564, -0.011400839313864708, 0.023923970758914948, 0.02321227267384529, 0.026592833921313286, -0.01876416616141796, 0.01628691330552101, -0.02523787133395672, 0.018558869138360023, -0.008369283750653267, 0.005683311726897955, 0.001600462943315506, -0.041086819022893906, -0.0030691935680806637, -0.055457621812820435, 0.03717248514294624, -0.03380560874938965, 0.02798885479569435, -0.01154454704374075, 0.004133317619562149, 0.020680272951722145, -0.020365484058856964, 0.02753720059990883, 0.01846306398510933, -6.779085379093885e-05, 0.0005038335802964866, 0.005744900554418564, 0.02091294340789318, 0.02423875965178013, -0.013036374002695084, -0.03610493987798691, -0.02106349542737007, -0.00815030001103878, -0.022993288934230804, 0.0396086759865284, 0.039964526891708374, -0.05896136164665222, -0.01261209324002266, -0.015356232412159443, -0.009211001917719841, -0.0019520344212651253, 0.003821949940174818, -0.004047777038067579, 0.03531112149357796, 0.016861746087670326, 0.004554176703095436, 0.04056673124432564, 0.023800792172551155, -0.021679386496543884, 0.01088759582489729, -0.016218481585383415, -0.0016150048468261957, -0.011743001639842987, 0.016245853155851364, 0.015219367109239101, -0.02766037918627262, 0.029891276732087135, -0.02885110303759575, -0.012160439044237137, 0.00797921884804964, -0.008205045945942402, 0.02061184123158455, -0.027578260749578476, 0.010497531853616238, 0.0011342671932652593, 0.014699281193315983, 0.0011222915491089225, 0.010148526169359684, -0.0035858582705259323, -0.0015097899595275521, -0.03974554315209389, 0.04527487978339195, 0.0007138355285860598, -0.031095685437321663, -0.002610696479678154, 0.03000076860189438, -0.01910632848739624, -0.011975671164691448, -0.026647578924894333, 0.01458978932350874, -0.01393283810466528, -0.0053958953358232975, 0.015452037565410137, -0.008225575089454651, 0.008403499610722065, -0.0024173748679459095, 0.0022206315770745277, 0.014110762625932693, -0.02092663012444973, 0.027414022013545036, 0.025908509269356728, -0.028303643688559532, -0.01599949784576893, 0.04349564015865326, 0.012317833490669727, -0.0312599241733551, 0.030548226088285446, -0.04415259137749672, -0.012064633890986443, -0.007465975824743509, -0.00580648984760046, 0.04086783528327942, 0.028385762125253677, -0.00560803571715951, 0.047546837478876114, 0.0009631861466914415, 0.07220987975597382, 0.022172100841999054, -0.025073634460568428, 0.014699281193315983, 0.018189333379268646, -0.0012198076583445072, 0.04133317619562149, 0.025005202740430832, 0.04519276320934296, -0.017997723072767258, 0.001337853609584272, 0.009772147983312607, -0.012913195416331291, 0.00296825566329062, 0.00519059831276536, -0.017025982961058617, 0.026414910331368446, 0.0029357504099607468, -0.009820050559937954, -0.014028643257915974, 0.038650624454021454, -0.022829052060842514, 0.07264784723520279, -0.00552249513566494, -0.036022819578647614, -0.004742365796118975, -0.006545559968799353, 0.0014131292700767517, 0.023636553436517715, 0.016273226588964462, 0.01185249350965023, 0.023006975650787354, -0.008259791880846024, -0.007404386531561613, 0.02289748378098011, -0.0012916617561131716, -0.006412116810679436, 0.009676342830061913, 0.02061184123158455, 0.0313146710395813, 0.03202636539936066, 0.02737296372652054, 0.02505994774401188, 0.014206567779183388, -0.0014550440246239305, -0.010702828876674175, 0.03555747866630554, -0.04026562720537186, -0.008663542568683624, 0.030931448563933372, 0.019681161269545555, 0.023595495149493217, -0.008129769936203957, -0.01764187403023243, -0.019338998943567276, 0.01946217752993107, -0.0012309279991313815, 0.04995565861463547, 0.009772147983312607, -0.02455354854464531, 0.03736409544944763, 0.0004422444326337427, 0.004376252647489309, 0.016054242849349976, -0.013399065472185612, -0.010251174680888653, 0.012413638643920422, -0.016930177807807922, 0.03361399844288826, -0.016724880784749985, 0.015287799760699272, 0.01424762699753046, 0.007212775759398937, 0.003105120500549674, 0.01761450245976448, -0.04185326024889946, 0.045740220695734024, 0.0028895584400743246, -0.00889621302485466, -0.007876570336520672, -0.008581424131989479, -0.0069185164757072926, -0.004242809489369392, -0.003253960981965065, -0.018517808988690376, 0.010333294048905373, -0.011934611946344376, -0.03919808194041252, -0.03717248514294624, -0.0214330293238163, 0.017244966700673103, -0.02453986182808876, -0.0006304335547611117, 0.005827019456773996, 0.002827969379723072, 0.00914256926625967, 0.002976809861138463, -0.016204794868826866, 0.007342797238379717, -0.0076233702711761, -0.023102780804038048, 0.019982263445854187, 0.015096189454197884, -0.0029545691795647144, -0.031013567000627518, -0.016396405175328255, 0.039143338799476624, 0.011229758150875568, 0.014973010867834091, 0.027263471856713295, -0.03147890791296959, -0.04891548678278923, -0.019475864246487617, 0.03662502393126488, 0.049189213663339615, 0.006388165522366762, 0.012180968187749386, -0.012194654904305935, 0.03180738165974617, 0.005590927787125111, 0.008615639992058277, 0.015506783500313759, -0.019078955054283142, 0.016752254217863083, 0.01992751657962799, 0.0038253716193139553, -0.01209884975105524, 0.011414526030421257, -0.0021350912284106016, -0.00995691493153572, -0.0005389052093960345, -0.009012548252940178, -0.004598657600581646, -0.027633005753159523, 0.020830824971199036, 0.0019622992258518934, -0.03158839792013168, 0.03145153447985649, 0.04713624343276024, 0.0036542906891554594, -0.04056673124432564, -0.06607833504676819, -0.016588015481829643, -0.03544798865914345, -0.008047651499509811, 0.02111824043095112, -0.06049424782395363, -0.014370805583894253, -0.008697759360074997, -0.008355597034096718, -0.003849322907626629, 0.005508808884769678, -0.023431256413459778, 0.027550887316465378, -0.014931951649487019, 0.011270817369222641, -0.03495527431368828, -0.01582157239317894, 0.00027351579046808183, 0.004472057800740004, 0.009272591210901737, -0.02704448811709881, -0.02061184123158455, -0.0076781162060797215, 0.006316311191767454, 0.009286277927458286, -0.032546453177928925, -0.013494870625436306, 0.009943229146301746, 0.007760235108435154, 0.04330402612686157, -5.586864426732063e-05, -0.010921812616288662, 0.0022685343865305185, -0.017217593267560005, 0.0214193444699049, 0.017573442310094833, 0.008389812894165516, 0.03903384506702423, 0.014726654626429081, 0.027879362925887108, 0.004003295674920082, 0.008362440392374992, 0.008889369666576385, 0.010189585387706757, -0.03339501470327377, 0.003999874461442232, -0.02470409870147705, 0.047875311225652695, 0.006586619187146425, 0.030192378908395767, 0.011243444867432117, 0.0027030801866203547, 0.02852262742817402, -0.016519583761692047, -0.01877785287797451, 0.019352685660123825, -0.015753140673041344, -0.02125510573387146, 0.012194654904305935, 0.01005272101610899, 0.023663926869630814, 0.013665951788425446, -0.0034746555611491203, 0.01014168281108141, 0.010388039983808994, -0.0022103667724877596, -0.013980740681290627, -0.019188446924090385, -0.017723994329571724, -0.010196428745985031, 0.010292233899235725, -0.020502349361777306, 0.027058174833655357, 0.004930554889142513, -0.009258904494345188, 0.03243696317076683, 0.06350527703762054, -0.007924472913146019, -0.01694386452436447, -0.013351162895560265, 0.0005966450553387403, -0.001999937230721116, 0.0018083263421431184, 0.0073633273132145405, -0.026154866442084312, -0.013618049211800098, -0.04420733451843262, -0.016054242849349976, -0.033504508435726166, 0.040594104677438736, 0.017696620896458626, 0.011482957750558853, -0.026387536898255348, 0.019557982683181763, 0.017901917919516563, 0.0007737139239907265, 0.010661768727004528, 0.022651126608252525, -0.02556634694337845, -0.03687138110399246, -0.014288687147200108, -0.011407682672142982, 0.037309348583221436, 0.008622483350336552, -0.0172997135668993, 0.024266131222248077, 0.011188698932528496, 0.002251426223665476, -0.0027458504773676395, 0.0035037393681705, -0.010586493648588657, -0.00817082915455103, -0.017847172915935516, 0.0026722855400294065, 0.013987584039568901, -0.00025491073029115796, 0.0036713986191898584, -0.0024584343191236258, 0.00841034296900034, 0.0024823856074362993, 0.002749271923676133, 0.005118743982166052, -0.03752833232283592, -0.011359780095517635, -0.013535930775105953, -0.015082502737641335, -0.006271830294281244, -0.015219367109239101, 0.016095302999019623, -0.021706759929656982, -0.026059061288833618, -0.00016348929784726351, -0.023308077827095985, -0.008444558829069138, 0.013234827667474747, 0.023814478889107704, -0.027441395446658134, 0.023486003279685974, 0.017217593267560005, -0.025319991633296013, -0.049189213663339615, -0.02868686616420746, 0.019147388637065887, 0.010073250159621239, -0.0019246614538133144, -0.006199975963681936, -0.022117353975772858, 0.06350527703762054, 0.004697884898632765, 0.025484228506684303, 0.005440376233309507, 0.035530105233192444, 0.01828513853251934, 0.03150628134608269, 0.006856927182525396, 0.0006625112728215754, -0.003842479782178998, -0.008246105164289474, -0.030383989214897156, 0.03802104666829109, 0.004749209154397249, -0.018353572115302086, 0.017587129026651382, 0.012584719806909561, -0.01562996208667755, 0.0022308966144919395, 0.026647578924894333, -0.018572555854916573, 0.017381832003593445, 0.020830824971199036, -0.006853505503386259, -0.010340136475861073, -0.03282018378376961, -0.013364849612116814, -0.013994427397847176, -0.007048537954688072, 0.004225701093673706, 0.024991516023874283, 8.062193228397518e-05, 0.031205177307128906, -0.013700167648494244, 0.014822459779679775, -0.010661768727004528, -0.02455354854464531, 0.007151186466217041, 0.01424762699753046, -0.01284476276487112, -0.009703715331852436, -0.0069048297591507435, 0.026414910331368446, 0.013809659518301487, 0.05124218761920929, 0.006046003196388483, -0.015041443519294262, -0.009683186188340187, -0.015287799760699272, 0.012940567918121815, 0.002366050612181425, -0.046096071600914, -0.019489549100399017, 0.01376175694167614, -0.013549616560339928, 0.019995950162410736, -0.009744774550199509, -0.0016338237328454852, -0.01942111738026142, 0.0033241042401641607, 0.0031752637587487698, 0.045055896043777466, -0.017422890290617943, 0.001623558928258717, -0.007103283889591694, -0.014220254495739937, 0.00029554247157648206, 0.00039370020385831594, 0.006781651638448238, -0.05126956105232239, 0.015424665063619614, -0.015848945826292038, 0.019516922533512115, 0.0016261250711977482, 0.03210848569869995, 0.0025080477353185415, -0.020228620618581772, 0.0345720537006855, -0.02421138621866703, 0.0028416558634489775, 0.030849330127239227, 0.017751365900039673, 0.0031615772750228643, -0.021788878366351128, -0.040457241237163544, 0.030411362648010254, -0.0033685853704810143, -0.0009494996629655361, -0.027619319036602974, 0.005111901089549065, 0.011934611946344376, 0.01458978932350874, -0.01795666478574276, 0.02749614231288433, 0.008300851099193096, -0.0038014203310012817, -0.006586619187146425, -0.020516036078333855, -0.0017364723607897758, 0.009354710578918457, -0.011277660727500916, 0.007418073248118162, 0.00374667439609766, 0.024786219000816345, -0.030247123911976814, -0.016273226588964462, 0.011346093378961086, 0.008122926577925682, 0.022445829585194588, -0.020379170775413513, -0.0395539328455925, 0.014028643257915974, 0.02337651140987873, -0.039280202239751816, -0.011914081871509552, -0.02243214286863804, 0.008930428884923458, 0.014097075909376144, 0.00981320720165968, 0.0007630213513039052, 0.02407452091574669, 0.018517808988690376, 0.006655051838606596, 0.015753140673041344, 0.017039669677615166, -0.006165760103613138, 0.04330402612686157, -0.01500038430094719, 0.013720697723329067, -0.015096189454197884, -0.0018305669073015451, -0.017765052616596222, 0.003502028528600931, -0.001520054880529642, 0.011168168857693672, -0.025005202740430832, 0.008252948522567749, -0.02323964610695839, 0.02521049976348877, -0.028878476470708847, 0.011168168857693672, 0.0005940788541920483, 0.05239185318350792, -0.010654926300048828, -0.02455354854464531, 0.022623755037784576, 0.013775443658232689, -0.006490814033895731, -0.03657027706503868, -0.0018408318283036351, 0.0017689777305349708, -0.004892917349934578, -0.026100119575858116, -0.0013010711409151554, 0.03580383583903313, 0.011120266281068325, -0.009840580634772778, 0.00040653126779943705, 0.007411229889839888, -0.02140565775334835, -0.02303434908390045, 0.0025935883168131113, -0.0007099862559698522, 0.007862883619964123, -0.012338363565504551, 0.02007806859910488, -0.018887344747781754, -0.021350910887122154, -0.02013281360268593, -0.0057654301635921, -0.004369409289211035, 0.012263087555766106, 0.020967690274119377, 0.038623251020908356, -0.007712332531809807, 0.011838806793093681, 0.007246992085129023, -0.02237739786505699, 0.004263339098542929, 0.01055227778851986, 0.045028526335954666, 0.03446255996823311, -0.007479662075638771, -0.019653787836432457, 0.016437465324997902, -0.002804017858579755, -0.020050695165991783, 0.006785073317587376, -0.015931064262986183, -0.0034421500749886036, -0.008362440392374992, 0.0007570335292257369, -0.01828513853251934, -0.012632622383534908, -0.012742114253342152, -0.020173873752355576, -0.023308077827095985, -0.008574580773711205, 0.025142066180706024, 0.017231279984116554, -0.036187056452035904, 0.036187056452035904, -0.021693073213100433, -0.022007862105965614, 0.017901917919516563, 0.007568624336272478, 0.02356812171638012, -0.013241671025753021, -0.016191108152270317, 0.02044760435819626, -0.01924319379031658, -0.01154454704374075, -0.028550000861287117, -0.018996836617588997, 0.015328858979046345, -0.013925994746387005, -0.05978255346417427, -0.005122165661305189, 0.00023095938377082348, 0.017039669677615166, 0.0312872976064682, -0.026948682963848114, 0.01880522631108761, 0.003582436591386795, -0.028385762125253677, -0.026291731745004654, 0.01977696642279625, 0.0008515557856298983, -0.002472120802849531, -0.020502349361777306, -0.004714992828667164, 0.013214297592639923, -0.026784444227814674, 0.022870110347867012, 0.0013720698188990355, -0.016437465324997902, -0.025155752897262573, 0.0006877456908114254, 0.0068877218291163445, -0.014699281193315983, 0.004437841475009918, 0.03257382661104202, -0.045055896043777466, -0.025675838813185692, 0.03594069927930832, 0.0006950166425667703, 0.025497915223240852, -0.010572806932032108, -0.010182742029428482, 0.016574328765273094, 0.008601953275501728, -0.020625527948141098, 0.00898517481982708, 0.053459398448467255, -0.008013434708118439, -0.015137248672544956, -0.0005316342576406896, -0.040949951857328415, -0.03180738165974617, 0.0020307316444814205, 0.00873881857842207, 0.002121404744684696, -0.02782461792230606, -0.021145613864064217, 0.014275000430643559, 0.027222411707043648, 0.009580536745488644, 0.03807579353451729, 0.012885822914540768, -0.00979267805814743, 0.03646078705787659, -0.02073501981794834, 0.017012296244502068, 0.005406160373240709, 0.018983149901032448, -0.005361679010093212, 0.024485114961862564, 0.022308964282274246, -0.0069937920197844505, -0.032847557216882706, 0.010648082941770554, -0.013987584039568901, -0.0008019423112273216, -0.0019024208886548877, -0.019407430663704872, -0.025415796786546707, 0.012338363565504551, -0.027222411707043648, 0.04261970520019531, 0.013125335797667503, -0.00654898164793849, -0.01242732536047697, 0.01268736831843853, -0.011229758150875568, 0.011907239444553852, 0.00033788502332754433, -0.006778229959309101, -0.02340388298034668, -0.023978715762495995, 0.024923082441091537, -0.009190472774207592, -0.02766037918627262, -0.011749844066798687, -0.00015707376587670296, -0.059235092252492905, 0.0032522501423954964, -0.0010196429211646318, -0.013351162895560265, 0.008116083219647408, 0.005943354684859514, 0.027975168079137802, 0.04478216916322708, -0.0037603608798235655, -0.008506148122251034, 0.015534156933426857, -0.021131927147507668, -0.0005136707914061844, -0.0313146710395813]" -CloudQuery on Using PostgreSQL for Cloud Assets Visibility,"and scattered cloud assets data into structured and easily accessible tables enabling developers to monitor their cloud inventory.We’re always keen to feature new community projects and stories on our blog. If you have a story or project you’d like to share, reach out on Slack (@Lucie Šimečková), and we’ll go from there.The open-source relational database for time-series and analytics.Try Timescale for free",https://www.timescale.com/blog/cloudquery-on-using-postgresql-for-cloud-assets-visibility/,81,"[0.013947715051472187, 0.006514966022223234, 0.03590987250208855, -0.01063852570950985, 0.05992734432220459, -0.000787709781434387, 0.008163097314536572, -0.006734716705977917, -0.016119370236992836, -0.041881922632455826, -0.01389600895345211, -0.022621409967541695, 0.02849004976451397, -0.024172591045498848, 0.021432168781757355, 0.032161179929971695, -0.0027856649830937386, -0.008848202414810658, -0.02892955020070076, 0.02898125723004341, -0.010735474526882172, 0.00024903748999349773, 0.01779981702566147, 0.02589181810617447, -0.026150349527597427, 0.0023704005870968103, -0.045087698847055435, 0.028696874156594276, 0.006343689281493425, -0.05310214310884476, 0.009087343700230122, -0.03919320926070213, -0.009552697651088238, 0.0661320760846138, 0.07750741392374039, 0.013017005287110806, 0.01798078790307045, -0.0067864228039979935, 0.026008157059550285, 0.01088412944227457, -0.03766787797212601, -0.011142659932374954, 0.045837439596652985, 0.00917136576026678, 0.001733769429847598, -0.02475428581237793, -0.009313557296991348, -0.06225411966443062, 0.02074706368148327, 0.054187968373298645, -0.025827186182141304, -0.0183298047631979, -0.03324700891971588, -0.06757984310388565, 0.00636307941749692, -0.025646215304732323, -0.0011585393222048879, 0.06918273121118546, -0.01891149766743183, -0.01319151371717453, -0.0006612722645513713, -0.011575697921216488, 0.03696984425187111, 0.032368004322052, -0.029730994254350662, 0.002441496355459094, -0.011511065997183323, -0.015899619087576866, -0.03681472688913345, -0.0024996658321470022, 0.03151485323905945, 0.014167465269565582, 0.005655352491885424, -0.013133344240486622, -0.002459270413964987, -0.051292430609464645, -0.06768325716257095, -0.0001096734413295053, 0.00110764114651829, -0.056256212294101715, 0.017903229221701622, 0.012797254137694836, -0.040692683309316635, 0.005807239096611738, 0.014917203225195408, -0.048655420541763306, -0.04612182080745697, -0.008557355962693691, -0.010606209747493267, 0.03901223465800285, -0.004588914569467306, 0.05842787027359009, -0.012060442939400673, 0.017399094998836517, 0.01057389285415411, 0.015253293327987194, 0.021923378109931946, -0.02743007428944111, -0.01746372878551483, 0.022841159254312515, 0.006007600110024214, -0.02026878297328949, -0.0543430894613266, -0.044777464121580124, 0.007794691249728203, -0.022401658818125725, 0.019066616892814636, -0.03655619919300079, 0.025930598378181458, 0.013139807619154453, -0.0911061093211174, -0.013081638142466545, -0.03531525284051895, -0.0032881833612918854, -0.0009719126974232495, 0.00978537555783987, -0.006408322136849165, -0.014723305590450764, 0.00986939761787653, -0.038805410265922546, -0.034979160875082016, 0.021626066416502, -0.0015665326500311494, 0.013999421149492264, 0.03148900344967842, -0.02010073885321617, -0.010147318243980408, -0.04141657054424286, -0.048086654394865036, -0.003790701972320676, 0.05325726047158241, -0.02523256652057171, 0.05677327513694763, -0.022168980911374092, -0.015085248276591301, -0.020591946318745613, -0.06654572486877441, -0.03164412081241608, -0.01582206040620804, -0.045216966420412064, 0.03872785344719887, -0.017709331586956978, 0.02986025996506214, 0.0053224945440888405, -0.021470949053764343, -0.02528427168726921, -0.011233145371079445, 0.028903698548674583, -0.04669058695435524, -0.004533976782113314, -0.011679110117256641, -0.03663375601172447, -0.044906727969646454, 0.03179923817515373, 0.03702155128121376, -0.006818739231675863, 0.01891149766743183, 0.014736232347786427, -0.03908979520201683, -0.0389605313539505, 0.029653435572981834, 0.021794112399220467, 0.011918251402676105, -0.01834273152053356, -0.03903808817267418, -0.0027194165159016848, -0.06132340803742409, -0.02035926841199398, -0.0808166041970253, -0.02786957658827305, -0.027766164392232895, -0.0617370568215847, 0.016119370236992836, -0.008596135303378105, 0.018846865743398666, 0.009591477923095226, 0.001995531376451254, -0.024418195709586143, -0.01057389285415411, -0.0544464997947216, -0.0529470257461071, -0.01297176256775856, -0.033091891556978226, -0.017877375707030296, -0.024547461420297623, 0.019971473142504692, -0.0529470257461071, 0.030713411048054695, 0.020734136924147606, 0.055945977568626404, -0.06845884770154953, 0.04077024385333061, 0.026628630235791206, 0.04798324033617973, 0.03991709277033806, -0.031980209052562714, 0.013075174763798714, 0.041700951755046844, -0.020346341654658318, 0.028024693951010704, 0.012260803952813148, 0.04092536121606827, 0.008563819341361523, -0.015938399359583855, -0.009229535236954689, 0.04410528391599655, -0.002380095422267914, 0.02325480803847313, -0.04953442141413689, -0.019105395302176476, 0.006308141630142927, -0.005568098276853561, -0.0330660380423069, -0.02704227901995182, -0.05341237783432007, -0.033040184527635574, 0.0036485102027654648, 0.013088101521134377, 0.0020940962713211775, -0.012002273462712765, -0.006812275853008032, 0.05878981202840805, 0.015602309256792068, -0.029653435572981834, 0.012183244340121746, 0.0330660380423069, 0.0040460005402565, -0.03412601351737976, 0.017696404829621315, -0.018433216959238052, 0.021212419494986534, -0.030170496553182602, -0.004721411503851414, -0.021070227026939392, 0.027404220774769783, 0.016765695065259933, -0.03081682324409485, -0.043148722499608994, 0.017308609560132027, 0.009617330506443977, 0.007038489915430546, -0.021380463615059853, -0.0175800658762455, 0.02448282763361931, 0.021432168781757355, 0.03218703344464302, -0.030273908749222755, -0.045837439596652985, 0.024431122466921806, 0.05486014857888222, 0.038805410265922546, -0.040873654186725616, 0.0050962804816663265, -0.034100160002708435, 0.011362411081790924, -0.03275579959154129, 0.0016230861656367779, -0.012997615151107311, 0.021225344389677048, -0.01627448759973049, 0.03143729642033577, -0.012538723647594452, -0.06520136445760727, 0.015227439813315868, -0.011439969763159752, -0.005503465887159109, -0.008266509510576725, -0.04084780067205429, 0.011129733175039291, 0.011763133108615875, 0.05641133338212967, -0.00462769391015172, 0.026176203042268753, -0.053308967500925064, -0.01785152405500412, -0.015731574967503548, 0.00027549645164981484, -0.03927076607942581, 0.022013863548636436, 0.00833114143460989, 0.00652789231389761, -0.037874702364206314, -0.03068755753338337, 0.012984689325094223, 0.01158862467855215, -0.011439969763159752, 0.049844659864902496, 0.026085715740919113, 0.026628630235791206, -0.03872785344719887, 0.017929082736372948, 0.0029957208316773176, 0.007742985151708126, -0.013766743242740631, -0.004769885912537575, 0.008841739036142826, -0.02497403509914875, -0.014813791029155254, -0.029911966994404793, 0.0017919387901201844, 0.025904744863510132, -0.015886692330241203, 0.009740132838487625, -0.026525218039751053, -0.01477501168847084, 0.02440526895225048, 0.012215561233460903, -0.0172310508787632, 0.017786890268325806, -0.008686620742082596, 0.007064342964440584, -0.005584256257861853, 0.038546882569789886, -0.027016425505280495, -0.01358577236533165, -0.011814839206635952, 0.052352406084537506, -0.002457654569298029, -0.01929929293692112, -0.035160131752491, -0.02761104516685009, -0.07688693702220917, 0.007684815675020218, -0.008731864392757416, -0.035418663173913956, -0.03174753114581108, 0.02400454692542553, -0.017825670540332794, 0.007807618007063866, -0.008415164425969124, -0.016015958040952682, -0.03148900344967842, 0.040123917162418365, -0.004698789678514004, 0.027093984186649323, -0.09834495931863785, 0.03389333561062813, -0.034410394728183746, 0.0005994673701934516, -0.019751721993088722, -0.009507454931735992, -0.03859858587384224, -0.06458089500665665, 0.026576925069093704, 0.025116227567195892, 0.01591254584491253, -0.009397579357028008, 0.014606967568397522, -0.016119370236992836, 0.0036678998731076717, -0.05105975270271301, -0.012021663598716259, -0.006502039264887571, -0.019596604630351067, -0.018743453547358513, -0.020501460880041122, -0.02942075952887535, -0.039632707834243774, 0.007949809543788433, 0.019182955846190453, -0.03024805523455143, 0.014736232347786427, 0.06178876385092735, -0.035858165472745895, 0.015589382499456406, 0.011019857600331306, -0.016041811555624008, -0.003968441393226385, -0.03130802884697914, -0.0330660380423069, 0.016235709190368652, -0.0025513716973364353, -0.03358309715986252, -0.05351579189300537, -0.04237313196063042, 0.014115759171545506, 0.04469990357756615, 0.04930174723267555, 0.01057389285415411, 0.028128106147050858, 0.040640976279973984, 0.004882992710918188, 0.014555261470377445, -0.00886112917214632, 0.05351579189300537, 0.006408322136849165, -0.01530499942600727, 0.03371236473321915, -0.007116049062460661, 0.009966346435248852, 0.02779201790690422, -0.005994673352688551, 0.027714457362890244, 0.017360316589474678, 0.00369375292211771, -0.01057389285415411, 0.019312219694256783, 0.02572377398610115, 0.048164211213588715, 0.0016311651561409235, 0.04079609736800194, -0.0010825960198417306, -0.03029976226389408, -0.03952929750084877, -0.0009557545417919755, 0.026654483750462532, 0.008104927837848663, 0.0058524818159639835, -0.01670106314122677, -0.04937930405139923, -0.051111459732055664, -0.0231772493571043, 0.03942588344216347, -0.03280750662088394, -0.023371146991848946, -0.04857785999774933, -0.030584145337343216, 0.04661303013563156, -0.02414673939347267, 0.07145780324935913, 0.019454412162303925, -0.026809601113200188, -0.012855423614382744, -0.035728901624679565, -0.019376853480935097, 0.027766164392232895, 0.04498428851366043, 0.02211727574467659, -0.027378369122743607, -0.038676146417856216, -0.000489995873067528, -0.00833114143460989, 0.0345655120909214, -0.014800865203142166, 0.011976419948041439, -0.00917136576026678, 0.026628630235791206, -0.01970001496374607, 0.05904833972454071, 0.014193318784236908, 0.003551561152562499, 0.021470949053764343, -0.01125899888575077, 0.00024055445101112127, 0.0013427422381937504, -0.0366596095263958, -0.011543381959199905, -0.01235775277018547, -0.0097142793238163, 0.007006173487752676, 0.0330660380423069, -0.05486014857888222, -0.022492144256830215, 0.007322873454540968, -0.0491466261446476, -0.05408455803990364, 0.01789030246436596, 0.01530499942600727, 0.03539280965924263, -0.0009242461528629065, 0.005325726233422756, 0.0366596095263958, -0.0410546250641346, 0.0042689829133450985, 0.06292629987001419, -0.06271947175264359, 0.03890882432460785, -0.00485713966190815, 0.015537676401436329, -0.008046758361160755, 0.034539658576250076, 0.04139071702957153, -0.02581425942480564, 0.020992668345570564, -0.026757895946502686, 0.002677405485883355, 0.03068755753338337, -0.039115648716688156, 0.019855134189128876, 0.0016982215456664562, 0.014710379764437675, 0.023293588310480118, -0.025555729866027832, 0.03945173695683479, 0.009759522043168545, 0.08397067338228226, 0.009914640337228775, 0.008544429205358028, 0.02070828527212143, 0.019454412162303925, -0.042011190205812454, 0.00947513896971941, 0.05853128060698509, -0.0136116249486804, 0.009546234272420406, -0.035728901624679565, -0.08004100620746613, -0.04837103560566902, -0.000947675493080169, -0.01706300675868988, 0.011840691789984703, -0.012241413816809654, -0.013017005287110806, 0.05666986107826233, -0.006489112973213196, 0.006001136731356382, -0.031049499288201332, -0.010289509780704975, -0.0020617798436433077, -0.02962758205831051, 0.022091422230005264, 0.009397579357028008, 0.030273908749222755, 0.03327286243438721, -0.027016425505280495, -0.009436359629034996, -0.03288506716489792, -0.0028228287119418383, -0.018239319324493408, -0.025995230302214622, -0.027455927804112434, -0.01268737856298685, -0.034229423850774765, -0.0022233612835407257, -0.0049767098389565945, 0.0027888966724276543, -0.03329871594905853, -0.026835454627871513, -0.0021005594171583652, -0.0198809877038002, 0.018833938986063004, -0.044518932700157166, 0.014503555372357368, 0.030144643038511276, -0.05018074810504913, 0.006414785515516996, -0.012525797821581364, -0.029136374592781067, -0.01268737856298685, 0.03055829182267189, 0.008492723107337952, 0.032729946076869965, -0.007193608209490776, 0.04077024385333061, -0.02435356378555298, -0.02874857932329178, -0.0463544987142086, -0.03490160405635834, -0.015886692330241203, 0.0477505624294281, 0.04516525939106941, -0.027688605710864067, 0.03989123925566673, 0.0003760809195227921, 0.030454879626631737, 0.003131449455395341, 0.019906839355826378, -0.015602309256792068, 0.02141924388706684, 0.030765116214752197, -0.027016425505280495, 0.005160912871360779, -0.002793743973597884, 0.0010244266595691442, -0.024340637028217316, 0.019195880740880966, -0.009643184021115303, -0.03813323378562927, -0.04751788452267647, 0.016119370236992836, 0.00022076071763876826, 0.026150349527597427, -0.01640375331044197, 0.016390826553106308, -0.003241324797272682, 0.015641089528799057, -0.022789454087615013, -0.0242242980748415, -0.011414117179811, 0.006259667221456766, -0.012234950438141823, -0.008188949897885323, -0.043019458651542664, 0.018433216959238052, -0.0499480701982975, 0.017037153244018555, 0.01966123655438423, 0.02030756138265133, 0.032109472900629044, -0.05460161715745926, 0.01505939569324255, 0.00883527658879757, -0.01767055317759514, -0.011420579627156258, 0.024043327197432518, -0.001238522119820118, 0.027145691215991974, 0.024082105606794357, -0.017644699662923813, 0.010205486789345741, 0.028593461960554123, 0.014968909323215485, -0.014348437078297138, -0.029834406450390816, 0.014503555372357368, 0.004724642727524042, -0.023668456822633743, 0.011265462264418602, 0.02215605415403843, -0.013715037144720554, 0.007943346165120602, 0.02374601736664772, 0.004643852356821299, -0.06261605769395828, 0.004168802406638861, 0.008731864392757416, -0.027688605710864067, 0.026279615238308907, 0.020294636487960815, -0.03513428196310997, -0.034229423850774765, -0.042321424931287766, -0.01889857091009617, -0.016985446214675903, 0.030041230842471123, 0.028257371857762337, -0.014257950708270073, -0.03753861412405968, -0.02766275219619274, 0.017618846148252487, 0.0015511823585256934, -0.021225344389677048, 0.049663688987493515, 0.011336557567119598, -0.0033802848774939775, 0.015020615421235561, 0.04462234675884247, 0.06933785229921341, 0.01898905821144581, 0.0006604643422178924, 0.04943101108074188, 0.01891149766743183, -0.018303951248526573, -0.01415453851222992, 0.04744032770395279, -0.03655619919300079, 0.018122980371117592, 0.050361718982458115, -0.014542334713041782, 0.011052174493670464, -0.015007689595222473, -0.04172680526971817, 0.028334930539131165, 0.028153959661722183, -0.002669326262548566, -0.03042902797460556, -0.013165660202503204, 0.015253293327987194, 0.03552207723259926, 0.03888297080993652, -0.028722725808620453, -0.022324100136756897, -0.0037842385936528444, 0.006851055193692446, -0.03653034567832947, -0.0015616851160302758, -4.0395374526269734e-05, 0.028153959661722183, 0.015356705524027348, 0.0522489920258522, -0.01330138836055994, 0.0396585613489151, -0.00018026435282081366, 0.03384162858128548, 0.021483875811100006, 0.01692081429064274, -0.010560966096818447, -0.016416680067777634, 0.00901624746620655, 0.06675254553556442, -0.012021663598716259, -0.010916445404291153, -0.03112705983221531, 0.010211950168013573, 0.013249682262539864, -0.017347389832139015, 0.0020957118831574917, 0.019635383039712906, 0.03813323378562927, 0.0011852002935484052, -0.00879649631679058, 0.0006402666913345456, 0.0023477792274206877, -0.024896476417779922, -0.006359847728163004, 0.009093806147575378, 0.007885176688432693, -0.012060442939400673, -0.007381042465567589, 0.006602219771593809, -0.009371726773679256, -0.0043594688177108765, -0.04738862067461014, -0.01944148540496826, 0.006721790414303541, 0.015447190962731838, 0.02343578077852726, -0.0382624976336956, 0.029446611180901527, -0.004941162187606096, -0.03715081885457039, -0.010748401284217834, -0.03355724364519119, 0.007103122305124998, -0.04040830209851265, 0.003942588344216347, -0.02075999043881893, -0.001362939947284758, -0.024082105606794357, 0.0027194165159016848, -0.04927589371800423, 0.004579219501465559, -0.03430698439478874, -0.02295749820768833, 0.021315831691026688, -0.01876930706202984, 0.026046937331557274, 0.02193630300462246, -0.012079832144081593, -0.010942298918962479, 0.015317926183342934, 0.00516737625002861, 0.020061958581209183, 0.028076400980353355, 0.0231772493571043, -0.030351467430591583, -0.039994653314352036, 0.023060910403728485, -0.01578328013420105, -0.03086852841079235, -0.010425237938761711, 0.03381577506661415, -0.014632820151746273, 0.007587866857647896, 0.006359847728163004, -0.012887740507721901, 0.003852102905511856, 0.05131828412413597, 0.030222203582525253, -0.014322583563625813, -0.0032962625846266747, 0.010295973159372807, 0.027404220774769783, -0.0033512001391500235, -0.005238472018390894, -0.04756959155201912, -0.02426307648420334, 0.01911832205951214, 0.0077688382007181644, -0.013113954104483128, 0.001636012690141797, 0.046457912772893906, -0.005099512171000242, 0.0220267903059721, -0.008783570490777493, 0.012066906318068504, -0.010606209747493267, 0.015447190962731838, -0.015666941180825233, -0.049715396016836166, -0.01468452624976635, -0.022104348987340927, 0.006081927567720413, -0.012215561233460903, 0.024469900876283646, 0.012325436808168888, -0.02387528121471405, 0.007852860726416111, 0.01299115177243948, -0.029291493818163872, 0.019053690135478973, 0.004414406605064869, -0.02691301330924034, -0.0381590873003006, -0.006088390946388245, -0.007284093648195267, 0.003178308019414544, -0.0010729011846706271, -0.0007509500137530267, -0.009139049798250198, -0.041571687906980515, 0.005086585413664579, 0.0041332547552883625, -0.025788405910134315, 0.003312420565634966, -0.027197396382689476, -0.00018824244034476578, -0.03991709277033806, -0.012984689325094223, 0.02119949273765087, -0.0022120506037026644, 0.007885176688432693, 0.0014485780848190188, 0.0020149212796241045, 0.02435356378555298, 0.019506117329001427, -0.01343065407127142, 0.02299627847969532, -0.06882078945636749, -0.008589671924710274, -0.004556598141789436, 0.014348437078297138, 0.026021083816885948, -0.004899151157587767, 0.015990104526281357, -0.014800865203142166, 0.04459649324417114, 0.007982125505805016, 0.01591254584491253, 0.007801154628396034, 0.06308141350746155, 0.0022427511867135763, -0.021975083276629448, -0.0253747571259737, 0.002250830177217722, 0.013029932044446468, -0.006253203842788935, 0.03461721912026405, 0.005160912871360779, -0.029524169862270355, -0.0164813119918108, -0.0059203458949923515, 0.05527379736304283, -0.004230203572660685, 0.042631663382053375, -0.011692036874592304, -0.000738427450414747, -0.022440437227487564, -0.01257750391960144, 0.04480331763625145, -0.015951326116919518, 0.06545989215373993, 0.010315362364053726, 0.011627404019236565, 0.00443056458607316, -0.03112705983221531, -0.0005695747677236795, 0.02817981317639351, 0.019506117329001427, 0.012642135843634605, 0.004285141360014677, -0.008266509510576725, 0.024276003241539, -0.01591254584491253, -0.0367630235850811, 0.005652120802551508, 0.013236756436526775, -0.019105395302176476, 0.021044373512268066, 0.006935077719390392, -0.050284162163734436, -0.037874702364206314, 0.005539013538509607, -0.0082406559959054, 0.04348481073975563, -0.007923956960439682, 0.015498897060751915, 0.016209855675697327, 0.039503443986177444, 0.03960685431957245, 0.015033542178571224, 0.007872250862419605, -0.01991976611316204, 0.01493012998253107, -0.0008547661127522588, 0.015188660472631454, -0.01609351672232151, -0.021910451352596283, 0.0015875381650403142, -0.0447516106069088, 0.006004368420690298, -0.006999710574746132, -0.009055026806890965, -0.004146181046962738, 0.01754128746688366, 0.024327710270881653, -0.0065117343328893185, 0.03808152675628662, 0.01352113950997591, -0.00687044532969594, -0.00636307941749692, 0.020850475877523422, 0.032031916081905365, -0.005503465887159109, -0.015498897060751915, 0.005225545726716518, -0.014981836080551147, 0.0261244960129261, -0.006876908242702484, 0.047285210341215134, 0.04250239580869675, 0.04529452323913574, -0.017954936251044273, 0.0469491183757782, -0.010767790488898754, -0.017903229221701622, -0.013999421149492264, -0.01631326787173748, 0.010864739306271076, 0.0008709242683835328, -0.004818360321223736, 0.001879192772321403, -0.014852571301162243, 0.017295682802796364, -0.009332947432994843, 0.002775970147922635, -0.026628630235791206, 0.059513695538043976, -0.015485970303416252, -0.004698789678514004, 0.04402772709727287, 0.025051595643162727, 0.028464196249842644, 0.03790055587887764, -0.011452896520495415, -0.01614522375166416, 0.02779201790690422, 0.022272393107414246, 0.048732977360486984, -0.003419064451009035, 0.0543430894613266, 0.006960930768400431, -0.024172591045498848, 0.0018355657812207937, 0.008971004746854305, 0.0025109765119850636, 0.028128106147050858, 0.012874813750386238, 0.017037153244018555, -0.011000468395650387, -0.005038111004978418, 0.03684058040380478, -0.0016198544763028622, -0.01745080202817917, 0.018846865743398666, -0.03702155128121376, 0.03940002992749214, 0.053360674530267715, -0.013197976164519787, -0.03249727189540863, 0.04581158608198166, -0.012958835810422897, 0.06437406688928604, -0.05806592479348183, -0.026706188917160034, -0.010515723377466202, -0.006369542330503464, -0.007051416672766209, 0.02743007428944111, 0.0010995620395988226, 0.024767210707068443, -0.008344068191945553, -0.04123559594154358, -0.0032962625846266747, 0.0009064722107723355, 0.0014372674049809575, 0.00969489011913538, 0.01759299263358116, 0.0023364683147519827, 0.034177716821432114, 0.044829171150922775, -0.0010890592820942402, 0.010774253867566586, 0.02251799777150154, -0.0002342931693419814, 0.008492723107337952, 0.015020615421235561, -0.026887161657214165, 0.0057555329985916615, -0.023642605170607567, 0.07269874960184097, 0.04286433756351471, 0.00784639734774828, -0.009210145100951195, -0.009339410811662674, -0.009578551165759563, -0.0014081827830523252, -7.139882654882967e-05, 0.01112326979637146, -0.002826060401275754, 0.006792886182665825, 0.0017063005361706018, -0.01085827685892582, 0.004226971883326769, 0.025568656623363495, -0.020721210166811943, 0.0337640680372715, -0.044389668852090836, -0.001879192772321403, 0.00447257561609149, -0.0121380016207695, 0.012848960235714912, 0.021070227026939392, -0.004062158986926079, 0.012428849004209042, -0.006915688049048185, -0.025258420035243034, 0.018303951248526573, -0.005257861688733101, 0.02114778570830822, 0.014555261470377445, 0.0006818739348091185, -0.008408701047301292, -0.005765227600932121, 0.010392921976745129, -0.010748401284217834, -0.020514385774731636, -0.027274956926703453, -0.024082105606794357, -0.02854175493121147, 0.012590429745614529, -0.02277652733027935, 0.05522209033370018, 0.01653301902115345, -0.012519334442913532, -0.018226392567157745, 0.015511823818087578, 0.012855423614382744, 0.015369631350040436, 0.032109472900629044, -0.009177829138934612, 0.009662573225796223, 0.011226681992411613, 0.04022732749581337, -0.00591388251632452, 0.01741202175617218, 0.03329871594905853, -0.004168802406638861, 0.029911966994404793, 0.005500234197825193, -0.03319530189037323, -0.03213532641530037, -0.0015875381650403142, 0.048732977360486984, 0.008479797281324863, 0.019338073208928108, -0.004844213370233774, 0.012234950438141823, 0.011679110117256641, 0.0024334173649549484, 0.03148900344967842, 0.002231440506875515, 0.032109472900629044, 0.0028713031206279993, 0.006456796545535326, -0.020682431757450104, -0.009688426740467548, 0.009875860996544361, 0.022091422230005264, -0.0068058124743402, 0.0061659496277570724, -0.013029932044446468, -0.009307093918323517, -0.015705721452832222, -0.016675209626555443, 0.010897056199610233, 0.01732153631746769, -0.03135973587632179, 0.02633132040500641, -0.008408701047301292, -0.0220267903059721, -0.004039537161588669, 0.043769195675849915, -0.035108428448438644, -0.016520092263817787, -0.00837638508528471, -0.000947675493080169, -0.023422854021191597, -0.0029617887921631336, -0.014943056739866734, -0.013973567634820938, 0.013947715051472187, -0.01330138836055994, -0.011213756166398525, -0.008260046131908894, 0.004724642727524042, -0.018743453547358513, -0.008822349831461906, 0.03461721912026405, -0.026499364525079727, 0.005574561655521393, -0.03872785344719887, 0.004776348825544119, 0.004123559687286615, 0.013314315117895603, 0.008421627804636955, -0.01165325753390789, -0.006986783817410469, -0.0025610667653381824, 0.029653435572981834, -0.00822126679122448, -0.0077688382007181644, -0.002472196938470006, -0.010205486789345741, -0.02074706368148327, -0.02321602962911129, -0.0042495932430028915, -0.02299627847969532, 0.016455460339784622, 0.014800865203142166, 0.055118680000305176, -0.013702110387384892, -0.012680916115641594, 0.010612672194838524, 0.02558158151805401, -0.0016125832917168736, 0.03042902797460556, 0.009326484054327011, 0.019273441284894943, 0.0250257421284914, 0.04736276715993881, -0.016959594562649727, 0.03164412081241608, 0.01847199723124504, -0.01565401442348957, -0.02686130814254284, 0.009113196283578873, 0.010593282990157604, -0.026318393647670746, -0.026938866823911667, -0.0019308988703414798, -0.026137422770261765, 0.020436827093362808, 0.011989346705377102, -0.002908466849476099, -0.001366171520203352, 0.005736142862588167, 0.010444628074765205, -0.01710178516805172, -0.034979160875082016, 0.013637478463351727, 0.03342797979712486, 0.012196171097457409, 0.02673204243183136, 0.017075931653380394, 0.001351629151031375, 0.02321602962911129, 0.045397937297821045, -0.002727495739236474, -0.025607435032725334, -0.0021910450886934996, 0.013999421149492264, 0.00524170370772481, -0.008867592550814152, 0.003806859953328967, -0.008344068191945553, 0.02378479577600956, -0.005125365220010281, -0.0017854755278676748, -0.014658673666417599, -0.018652968108654022, 0.023022131994366646, -0.024301856756210327, 0.021341683343052864, 0.015136954374611378, 0.02352626621723175, -0.017256904393434525, 0.029756847769021988, 0.017567140981554985, -0.018187612295150757, -0.030584145337343216, -0.01415453851222992, -0.022983351722359657, 0.02501281537115574, -0.03415186330676079, -0.007755911909043789, 0.03766787797212601, 0.003722837660461664, -0.02497403509914875, 0.013650404289364815, 0.034979160875082016, -0.011743742972612381, -0.010644989088177681, -0.04457063972949982, 0.009688426740467548, -0.010922908782958984, -0.008447480387985706, -0.0023865585681051016, 0.006960930768400431, -0.018497848883271217, -0.026628630235791206, -0.011536918580532074, -0.004000757820904255, -0.007671889383345842, -0.02185874432325363, 0.03293677046895027, -0.036245960742235184, -0.018665894865989685, -0.003230014117434621, -0.011763133108615875, -0.020333414897322655, 0.007322873454540968, 0.00892576202750206, 0.060702934861183167, 0.0006649078568443656, -0.0020440060179680586, 0.023590898141264915, -0.021264124661684036, -0.02110900729894638, -0.01319151371717453, -0.0036064989399164915, -0.026706188917160034, -0.012790790759027004, 0.007626646663993597, -0.02730080857872963, 0.0330660380423069, -0.017748111858963966, 0.007180681452155113, 0.030661704018712044, -0.015227439813315868, 0.024586239829659462, 0.05672156810760498, 0.024896476417779922, 0.03663375601172447, 0.0374610535800457, 0.028645167127251625, -0.01657179743051529, -0.027636898681521416, 0.0004003181529697031, 0.004246361553668976, 0.046095967292785645, -0.01741202175617218, -0.039244912564754486, -0.020242929458618164, 0.0015536061255261302, 0.004530745092779398, 0.001510786940343678, 0.004094474948942661, -0.0006475378177128732, 0.017916155979037285, 0.0009121275506913662, -0.008098464459180832, 0.008428091183304787, -0.05206802114844322, -0.010774253867566586, 0.014012346975505352, -0.03823664411902428, 0.013805522583425045, 0.0024350332096219063, -0.023642605170607567, 0.060392700135707855, -0.007781764958053827, 0.007406895514577627, -0.0020359267946332693, -0.01671398989856243, -0.0004306146875023842, 0.00035749905509874225, -0.016817402094602585, 0.025219639763236046, 0.024431122466921806, 0.011969957500696182, 0.010909982956945896, 0.010289509780704975, -0.007988588884472847, -0.01336602121591568, -0.03239385783672333, -0.017838597297668457, 0.036478638648986816, -9.240441431757063e-05, -0.02206556871533394, -0.010321825742721558, -0.001269222586415708, -0.012461164966225624, 0.01926051452755928, -0.034358687698841095, 0.033091891556978226, -0.03288506716489792, 0.01343065407127142, 0.014438922517001629, 0.060082461684942245, -0.0010325057664886117, 0.022091422230005264, 0.016209855675697327, 0.008693084120750427, -0.01644253358244896, 0.01895027793943882, -0.003128217766061425, -0.02805054746568203, 0.04203703999519348, 0.003499855287373066, -0.012493480928242207, 0.02998952567577362, -0.00910026952624321, 0.01929929293692112, -0.005186765920370817, 0.0008539581904187799, -0.004353005439043045, -0.03345383331179619, 0.010166707448661327, 0.04247654229402542, 0.035418663173913956, 0.02470257878303528, -0.014400143176317215, 0.02479306422173977, -0.016416680067777634, -0.017515433952212334, -0.0035450980067253113, -0.0055939513258636, 0.009946957230567932, -0.01103278435766697, -0.03852102905511856, 0.015330852009356022, 0.013113954104483128, -0.00023025363043416291, 0.013327241875231266, -0.01383137609809637, 0.03389333561062813, 0.006537587381899357, -0.023500412702560425, 0.02281530760228634, -0.001749927643686533, 0.028283225372433662, -0.02250507101416588, -0.020734136924147606, 0.02198801003396511, 0.020255856215953827, 0.01644253358244896, -0.009494529105722904, -0.014891350641846657, 0.010560966096818447, 0.036478638648986816, 0.0019341304432600737, -0.0008297209860756993, 0.003858566051349044, -0.01499476283788681, -0.010567429475486279, 0.016649357974529266, -0.0042334352619946, 0.01811005361378193, 0.004669705405831337, 0.035728901624679565, -0.0005150409997440875, 0.004372395109385252, 0.006708863656967878, -0.00671532703563571, -0.02817981317639351, 0.0042334352619946, -0.034410394728183746, -0.00025913631543517113, -0.022530924528837204, -0.0032671778462827206, 0.006094853859394789, -0.00901624746620655, -0.024586239829659462, 0.010308898985385895, -0.016739843413233757, 0.01960952952504158, 0.042760927230119705, -0.022634336724877357, -0.03694399446249008, 0.03298847749829292, -0.003729300806298852, -0.008958077989518642, 0.0011294547002762556, 0.05925516411662102, 0.02488354966044426, -0.024767210707068443, 0.016688136383891106, -0.006576366722583771, 0.007135438732802868, -0.04896565526723862, -0.00848625972867012, 0.013010541908442974, 0.011439969763159752, -0.027507632970809937, 0.007400432601571083, 0.008938687853515148, -0.0028632241301238537, -0.026279615238308907, 0.02299627847969532, 0.002139338990673423, -0.006695937365293503, 0.011821302585303783, -0.013469433411955833, -0.029213935136795044, 0.035289399325847626, -0.01911832205951214, -0.004178497474640608, -0.014723305590450764, 0.022724822163581848, 0.001267606858164072, 0.051111459732055664, 0.012254340574145317, 0.03257482871413231, 0.02426307648420334, -0.009003320708870888, -0.023590898141264915, -0.010153780691325665, 0.016907887533307076, 0.0010825960198417306, -0.021535580977797508, -0.03921905905008316, 0.005710289813578129, 0.007122512441128492, 0.01196349412202835, 0.0017709331586956978, 0.017993714660406113, -0.013805522583425045, -0.017140565440058708, 0.01772225834429264, -0.024986961856484413, -0.020023178309202194, 0.002711337525397539, 0.012939445674419403, -0.043769195675849915, -0.0065795984119176865, 0.03934832662343979, 0.015925472602248192, 0.01250640768557787, 0.008983931504189968, -0.03345383331179619, -0.05635962635278702, 0.026628630235791206, -0.0020343109499663115, 0.023371146991848946, -0.004863603040575981, -0.0209797415882349, -0.0011116806417703629, -0.00501225795596838, -0.014283804222941399, -0.04136486351490021, 0.019751721993088722, 0.011976419948041439, -0.005568098276853561, -0.0023397000040858984, 0.016248635947704315, -0.0057135215029120445, 0.008195413276553154, 0.034229423850774765, -0.004469343926757574, 0.009139049798250198, 0.011136196553707123, -0.021225344389677048, -0.024288929998874664, 0.03839176148176193, -0.002921393373981118, -0.012564577162265778, 0.012499944306910038, -0.02259555645287037, -0.008628452196717262, 0.000826893316116184, 0.020915107801556587, 0.01820053905248642, 0.013999421149492264, -0.010451091453433037, -0.012965299189090729, -0.0026515524368733168, 0.030584145337343216, 0.010819496586918831, -0.010683768428862095, -0.04782812297344208, -0.0004944393876940012, 0.023190176114439964, 0.007290557026863098, 0.029524169862270355, -0.0036355836782604456, -0.012603356502950191, 0.00671532703563571, 0.010741937905550003, 0.00562626775354147, -0.0014800864737480879, -0.00015542120672762394, 0.006447101477533579, -0.00883527658879757, -0.0011674263514578342, 0.0022282088175415993, -0.009042100049555302, 0.019092468544840813, 0.009656109847128391, 0.01706300675868988, -0.028722725808620453, -0.0025626826100051403, -0.01732153631746769, 0.022013863548636436, 0.016804475337266922, -0.004805433563888073, -0.016184002161026, -0.009184292517602444, 0.01724397763609886, 0.004068621899932623, -0.01794200949370861, -0.010961689054965973, 0.045578908175230026, -0.016377899795770645, 0.008971004746854305, 0.006550513673573732, 0.011485212482511997, -0.034798189997673035, 0.0316699743270874, -0.015188660472631454, -0.01383137609809637, -0.020656578242778778, 0.01297176256775856, 0.002775970147922635, 0.012034589424729347, -0.05201631411910057, 0.010974614880979061, 0.045708172023296356, -0.0008636530837975442, -0.006033453159034252, 0.005060732364654541, -0.021134858950972557, 0.008505649864673615, 0.00295209395699203, -0.009992199949920177, -0.04229557141661644, -0.03314359486103058, 0.03350554034113884, 0.002372016431763768, 0.005283714737743139, -0.01474915910512209, -0.01343065407127142, -0.036297667771577835, -0.009190755896270275, 0.03345383331179619, -0.031049499288201332, -0.020656578242778778, 0.020113663747906685, 0.01127838809043169, 0.01330138836055994, 0.010250730440020561, 0.026408879086375237, 0.013223829679191113, -0.001667521079070866, 0.037616170942783356, -0.011349484324455261]" -How a Data Scientist Is Building a Time-Series Forecasting Pipeline Using TimescaleDB,"This is an installment of our “Community Member Spotlight” series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition, Andrew Engel, chief data scientist atRasgo,explains how he has been using TimescaleDB to build a time-series forecasting side project. He’s working on proofs of concept of machine learning pipelines to pull relevant data— from sports statistics to betting odds and finance pricing data—to make predictions for better decision-making or bets.About the UserI am currently the chief data scientist at Rasgo. Before joining Rasgo, I worked as a data scientist and data science leader for over 10 years across various fields. I received my Ph.D. in Systems and Industrial Engineering with a focus on decision-making under uncertainty and probability modeling from the University of Arizona. After my Ph.D., I was an assistant professor of Applied Mathematics at Towson University, where I began working on data science problems.As my career progressed, I found myself doing less and less technical work in data science and more time spent on team building, interacting with management and customers, and basically talking about data science instead of doing data science. This culminated in 2016 when I took a role withDataRobotto help their prospects and customers use DataRobot’s machine learning platform to implement their data science initiatives successfully.While this was, and still is, fulfilling work, I missed the technical work that originally drew me into data science. DataRobot encouraged us to do this (and leverage their product). In short, I became the DataRobot Marketing team's go-to content writer about sports analytics and betting. As part of this, I would build machine learning models to predict the outcome of sporting events. I regularly wrote blogs on my predictions for Grand Slam tennis, the Super Bowl (and NFL playoffs), the Champions League knockout stage, and the Premier League.Because of this and contacts developed over the years as a data scientist, multiple people have asked me to advise and even build proofs of concept of machine learning pipelines to automate both sports betting predictions and market models (from financial markets to sports betting markets in aid of monetizing these sports predictions).About the ProjectAndrew’setu package on GitLabIn my spare time, I have been building proofs of",https://www.timescale.com/blog/how-a-data-scientist-is-building-a-time-series-forecasting-pipeline-using-timescaledb-and-helping-others-perform-time-series-engineering-directly-in-the-database/,468,"[0.0010165389394387603, -0.03442750498652458, 0.054733119904994965, 0.014172225259244442, 0.014114702120423317, -0.016595380380749702, -0.02404460683465004, 0.028934061527252197, -0.04029484838247299, 0.002581343986093998, 0.036210719496011734, -0.044321458786726, -0.01829230971634388, -0.0308323185890913, 0.05010252073407173, 0.022146347910165787, -0.034111130982637405, -0.0160776749253273, -0.06022656336426735, 0.05614243075251579, -0.013769564218819141, 0.019500290974974632, 0.029998235404491425, -0.015545586124062538, -0.016609761863946915, -0.020478181540966034, -0.002221825299784541, 0.06413812935352325, 0.011403931304812431, -0.07236391305923462, 0.004627005197107792, -0.04164664074778557, -0.049268435686826706, -0.025655250996351242, 0.04147407039999962, -0.016537858173251152, 0.04066874831914902, 0.005428731441497803, 0.033708468079566956, 0.02502249740064144, 0.0024123701732605696, -0.022764720022678375, 0.033305808901786804, 0.05772431567311287, -0.036498334258794785, -0.010692084208130836, -0.01977352611720562, -0.05930619686841965, 0.034456267952919006, 0.05070650950074196, -0.01846487820148468, 0.01921267621219158, -0.03727489337325096, -0.025151925161480904, 0.011612452566623688, -0.012043874710798264, -0.003043325385078788, 0.03960457444190979, 0.007316204719245434, -0.034456267952919006, -0.010612990707159042, -0.05686147138476372, 0.03534787520766258, 0.024806786328554153, -0.0327305793762207, 0.002069029724225402, -0.03471511974930763, 0.028229404240846634, -0.04348737746477127, 0.001440771040506661, 0.0467374250292778, -0.011605261825025082, 0.04808921366930008, -0.014610838145017624, 0.024073367938399315, -0.0630451887845993, -0.01287795789539814, 0.09635099768638611, -0.016092054545879364, -0.020204948261380196, 0.03232791647315025, -0.011540548875927925, 0.011324837803840637, 0.01675356924533844, -0.02113969624042511, -0.05614243075251579, -0.014337603934109211, -0.02075141668319702, -0.03206906467676163, 0.002917493926361203, -0.03002699837088585, 0.031493835151195526, -0.0007630783366039395, 0.020808938890695572, 0.026690663769841194, -0.0018982584588229656, -0.012144540436565876, 0.021801210939884186, 0.05571100860834122, 0.01613519713282585, -0.013812706805765629, -0.008614066988229752, 0.023397473618388176, -0.01869496889412403, 0.04440774396061897, 0.032788101583719254, 0.03623947873711586, 0.03692975640296936, -0.012460916303098202, 0.00891606230288744, -0.06862492114305496, -0.018105359748005867, -0.07633300125598907, -0.009671051986515522, -0.030889842659235, -0.009642289951443672, -0.004760026931762695, -0.012849196791648865, 0.010073712095618248, 0.0065216682851314545, -0.014093130826950073, -0.01173468865454197, -0.006758950650691986, -0.013273428194224834, 0.014711502939462662, -0.0229660514742136, 0.014344793744385242, -0.05220210924744606, -0.014208177104592323, -0.018709350377321243, 0.01613519713282585, 0.0017364750383421779, 0.04952728748321533, -0.023066716268658638, -0.06172216311097145, -0.007449226453900337, -0.02438974566757679, 0.001274493639357388, -0.02302357368171215, -0.0019467935198917985, -0.01960095763206482, 0.01777460239827633, 0.0004682730359490961, 0.016221482306718826, -0.018939442932605743, 0.019298961386084557, 0.008937633596360683, 0.04052494093775749, -0.01794717088341713, -0.042078062891960144, -0.010763988830149174, -0.03977714478969574, -0.0638505145907402, 0.01606329344213009, 0.04403384402394295, -0.000372101814718917, 0.022376440465450287, 0.05254724621772766, -0.021053412929177284, -0.06264252960681915, 0.027222752571105957, 0.05663137882947922, -0.017587652429938316, 0.0013275225646793842, -0.013999655842781067, 0.03589434176683426, -0.02940862625837326, -0.04587458074092865, -0.05430169776082039, 0.007636175956577063, -0.04087008163332939, -0.03491645306348801, -0.01110912673175335, -0.017285656183958054, 0.020593227818608284, 0.0053963749669492245, -0.004076941404491663, -0.021844353526830673, 0.013884610496461391, -0.0592486746609211, -0.09560319781303406, -0.02792740799486637, -0.0450117364525795, -0.003658102359622717, -0.007513939868658781, -0.005802630912512541, -0.0471976101398468, 0.004199177958071232, 0.011957590468227863, 0.03577929735183716, 0.05073527246713638, 0.08110740780830383, 0.003428010269999504, 0.03195401653647423, -0.006927924230694771, -0.028358830139040947, 0.041847970336675644, 0.022203871980309486, -0.01748698763549328, 4.859119144384749e-05, 0.034053605049848557, 0.016322147101163864, 0.03143630921840668, -0.005737917497754097, 0.02541077882051468, -0.013424426317214966, -0.007341370917856693, 0.003498116508126259, -0.06402307748794556, -0.03790764510631561, 0.01005933154374361, -0.01008809357881546, 0.016739187762141228, 0.0029929927550256252, -0.062700055539608, -0.0016726604662835598, -0.054157890379428864, -0.006435384042561054, 0.016767950728535652, 0.03178144991397858, 0.00018706204718910158, 0.0632752850651741, -0.01573253609240055, -0.007715270388871431, -0.008189834654331207, 0.0003610915446188301, 0.04325728490948677, -0.04912462830543518, 0.04063998907804489, -0.016882995143532753, 0.01817726343870163, -0.01636528968811035, -0.007449226453900337, -0.03646957129240036, 0.008081979118287563, 0.022433964535593987, 0.004066155757755041, -0.026820091530680656, -0.02000361680984497, -0.016048911958932877, -8.010525198187679e-05, 0.04181921109557152, 0.02735217846930027, 0.027380939573049545, -0.0017122075660154223, 0.025382015854120255, -0.03385227546095848, -0.051828209310770035, 0.01942838728427887, 0.04998747259378433, 0.029538052156567574, -0.006316742859780788, 0.024087749421596527, -0.009397817775607109, -0.030746035277843475, -0.05988142639398575, -0.02860330417752266, 0.022376440465450287, 0.0056013003922998905, -0.029322341084480286, 0.023339951410889626, -0.05401408299803734, -0.04780159890651703, 0.011511786840856075, -0.024015845730900764, 0.02717960998415947, -0.020593227818608284, -0.016595380380749702, 0.0160776749253273, -0.019112011417746544, 0.009541625156998634, 0.03494521230459213, -0.024432888254523277, -0.02940862625837326, -0.021110935136675835, -0.03451379016041756, 0.017975931987166405, 0.026647523045539856, -0.016624141484498978, -0.025540204718708992, -0.003411832032725215, -0.014596457593142986, 0.02523820847272873, -0.014603647403419018, 0.00911739282310009, 0.034398745745420456, -0.02536763623356819, -0.013144001364707947, -0.022534629330039024, -0.04035237431526184, 0.0007024095393717289, -0.04518430307507515, 0.045443158596754074, -0.025827819481492043, 0.047715313732624054, -0.009556005708873272, 0.01898258551955223, 0.0025094400625675917, -0.02785550430417061, -0.003079277230426669, 0.02119722031056881, 0.008851349353790283, 0.02057884819805622, -0.016480334103107452, 0.012468107044696808, -0.01613519713282585, 0.019112011417746544, -0.020837699994444847, 0.0223332978785038, -0.006403027102351189, -0.0006956685683690012, 0.0047492412850260735, 0.0045838626101613045, -0.025166304782032967, 0.002196658868342638, -0.023943942040205002, 0.07000546902418137, -0.01492721401154995, 0.019068868830800056, -0.07685070484876633, -0.04923967272043228, -0.04964233562350273, -0.010433231480419636, -0.004486792720854282, 0.007064541336148977, -0.026345526799559593, 0.05128173902630806, 0.004767217207700014, 0.02712208777666092, 0.013007384724915028, 0.018881918862462044, 0.015056640841066837, -0.008729113265872002, 0.01524359080940485, -0.029538052156567574, -0.010720846243202686, -0.023325569927692413, -0.01863744668662548, 0.0074779880233109, 0.013043336570262909, -0.06367794424295425, -0.019068868830800056, -0.04877949133515358, -0.03183897212147713, 0.038885537534952164, 0.026029150933027267, -0.022649675607681274, -0.009534434415400028, 0.009009537287056446, 0.011705927550792694, -0.05151183158159256, 0.037303656339645386, 0.03506026044487953, -0.001628619502298534, -0.037361178547143936, -0.01873811148107052, -0.027309035882353783, 0.009419389069080353, -0.011756259948015213, -0.02188749611377716, -0.0453568734228611, 0.05151183158159256, 0.0016447978559881449, 0.00957038626074791, 0.00555815827101469, 0.03790764510631561, -0.04078379645943642, 0.03623947873711586, 0.02090960554778576, -0.04665113985538483, -0.0025795463006943464, -0.003972681239247322, -0.048463113605976105, 0.0047528366558253765, -0.05274857580661774, -0.04092760384082794, 0.01590510457754135, 0.013460378162562847, -0.013963703997433186, 0.09623595327138901, 0.012015113607048988, 0.013755183666944504, -0.00900234654545784, -0.0439763218164444, 0.003036135109141469, 0.04144531115889549, 0.009642289951443672, 0.013438806869089603, -0.04469535872340202, -0.010641751810908318, 0.008189834654331207, -0.024346603080630302, -0.014028417877852917, 0.007075326982885599, -0.005802630912512541, 0.01596262864768505, -0.0022577771451324224, 0.005195044446736574, 0.08127997815608978, -0.03549168258905411, -0.03646957129240036, -0.017702698707580566, -0.02136978879570961, -0.0023925965651869774, 0.015488062985241413, 0.022606533020734787, -0.003907967824488878, 0.048117976635694504, -0.0445515513420105, -0.0028006501961499453, -0.051655638962984085, -0.03178144991397858, 0.03350713849067688, -0.026431811973452568, 0.011274504475295544, -0.022980432957410812, -0.017530130222439766, 0.036038149148225784, 0.011432693339884281, 0.05191449448466301, -0.013036145828664303, -0.014769026078283787, -0.004594648256897926, -0.013920562341809273, -0.017990313470363617, 0.03287438675761223, 0.08058969676494598, -0.005486254580318928, 0.005489849951118231, -0.03526159003376961, 0.007161611691117287, -0.020895224064588547, 0.033996082842350006, -0.04078379645943642, -0.045558203011751175, -0.004609029274433851, 0.06379298865795135, 0.03623947873711586, 0.01773145981132984, 0.0022200276143848896, -0.008542163297533989, 0.029149772599339485, -0.042250633239746094, 0.024360984563827515, -0.02735217846930027, -0.007470797747373581, -0.04486792907118797, -0.014711502939462662, -0.033305808901786804, -0.01755889132618904, 0.042940907180309296, -0.020650751888751984, -0.024432888254523277, 0.021039031445980072, -0.01904010772705078, -0.039460767060518265, 0.08185520768165588, -0.017357559874653816, 0.028876537457108498, -0.020823320373892784, -0.032845623791217804, -0.0006830854108557105, -0.0635053738951683, 0.003947514574974775, 0.0067984978668391705, -0.07869144529104233, 0.01541615929454565, -0.016106436029076576, 0.02086646296083927, -0.016566619277000427, 0.0021175649017095566, 0.007301823701709509, -0.016552237793803215, 0.009491292759776115, -0.036325763911008835, 0.011626833118498325, 0.018781254068017006, -0.03727489337325096, -0.012640675529837608, -0.021700546145439148, 0.04262452945113182, -0.030889842659235, -0.030400896444916725, 0.07656309008598328, -0.010505135171115398, -0.020319994539022446, 0.025626489892601967, -0.0052345916628837585, -0.02250586822628975, 0.0071148741990327835, -0.0114830257371068, -0.008542163297533989, 0.05018880218267441, -0.01761641353368759, 0.011375170201063156, -0.0006767938612028956, -0.01794717088341713, -0.05852963775396347, -0.01704118400812149, -0.009340294636785984, 0.0600539967417717, 0.005015285219997168, -0.004317819140851498, 0.07524006068706512, -0.011137887835502625, 0.015876343473792076, -0.01123136281967163, -0.0013266238383948803, -0.02023370936512947, -0.016480334103107452, -0.02525258995592594, 0.0299119520932436, 0.018939442932605743, 0.004670147318392992, -0.006805688142776489, 0.029998235404491425, -0.02769731730222702, 0.009678241796791553, -0.010634562000632286, -0.03503149747848511, -0.01994609460234642, -0.005482659209519625, -0.0307172741740942, 0.008340832777321339, 0.010771178640425205, -0.007621795404702425, -0.034226175397634506, -0.04699627682566643, -0.00594284338876605, 0.002372823189944029, 0.03224163129925728, 0.014783406630158424, 0.006345503963530064, 0.0149559760466218, -0.06816473603248596, 0.021973779425024986, -0.039403244853019714, -0.025382015854120255, -0.036785949021577835, -0.004857096821069717, -0.00443286495283246, 0.036038149148225784, 0.04737017676234245, 0.04935472086071968, -0.024432888254523277, -0.01071365550160408, -0.01398527529090643, -0.0021840757690370083, -0.008621256798505783, 0.008556543849408627, 0.06868243962526321, -0.026000387966632843, 0.033133238554000854, -0.0014982939464971423, 0.021858733147382736, 0.01324466709047556, 0.01430165208876133, -0.02006114087998867, 0.014373555779457092, -0.0005239984602667391, 0.012640675529837608, -0.020190566778182983, -0.006000366061925888, 0.01960095763206482, 0.01852240040898323, 0.08421365171670914, -0.009786097332835197, -0.035980626940727234, -0.016264623031020164, 0.011238552629947662, 1.4233287402021233e-05, 0.014165034517645836, -0.010577038861811161, 0.004896644037216902, 0.024921832606196404, -0.008031646721065044, -0.02706456370651722, -0.024706121534109116, 0.013007384724915028, -0.002667628461495042, -0.036613378673791885, -0.008995156735181808, -0.030918603762984276, 0.02513754367828369, -0.00666547566652298, -0.013172763399779797, 0.0028491853736341, 0.029164152219891548, 0.042825862765312195, 0.0008277916931547225, 0.02804245427250862, -0.013525092042982578, -0.01823478564620018, 0.028934061527252197, -0.00846306886523962, 0.00331116677261889, 0.011439883150160313, -0.013632947579026222, -0.008268929086625576, 0.05680394545197487, 0.038712967187166214, -0.0077584125101566315, 0.007273062132298946, -0.027021421119570732, 0.004504768643528223, 0.020219329744577408, 0.018565542995929718, 0.007549891714006662, 0.05732165277004242, -0.02615857683122158, 0.02569839358329773, 0.0036383287515491247, -0.026129815727472305, -0.04826178401708603, -0.02684885263442993, -0.01646595448255539, -0.019284579902887344, -0.010397279635071754, 0.017343180254101753, 0.007326989900320768, -0.01721375249326229, -0.024648599326610565, 0.016092054545879364, -0.024260317906737328, 0.02342623472213745, 0.01005933154374361, 0.004209963604807854, 0.0022200276143848896, -0.00891606230288744, -0.008017266169190407, -0.008110741153359413, 0.006737379357218742, 0.02508002147078514, -0.009023917838931084, 0.014984737150371075, 0.027380939573049545, 0.02621609903872013, 0.019054489210247993, -0.02246272563934326, -0.0003431156219448894, 0.006291576195508242, 0.03316200152039528, -0.005241781938821077, 0.0037677553482353687, 0.027309035882353783, -0.012561582028865814, -0.018896300345659256, 0.06914262473583221, -0.008455879054963589, -0.004781598225235939, -0.04210682585835457, -0.025281351059675217, 0.05059146508574486, 0.0019989237189292908, 0.022606533020734787, -0.015171687118709087, -0.004472412168979645, -0.01794717088341713, 0.025684012100100517, 0.019974855706095695, -0.04285462200641632, -0.002779079135507345, -0.024317841976881027, -0.030630989000201225, -0.023009194061160088, 0.04314223676919937, 0.021297885105013847, 0.007585843559354544, 0.015301113948225975, 0.03839659318327904, -0.058155737817287445, -0.016092054545879364, 0.02831568941473961, 0.003057706169784069, 0.03733241558074951, 0.010749607346951962, -0.02067951299250126, -0.02392956055700779, 0.02854578010737896, 0.05942124128341675, -0.011267314665019512, 0.0033165595959872007, -0.04066874831914902, -0.01470431312918663, -0.004519149195402861, -0.01182097289711237, 0.0036509118508547544, -0.010929366573691368, 0.022822244092822075, 0.02290852926671505, -0.004170416388660669, -0.01742946356534958, 0.026187337934970856, -0.026532476767897606, 0.0032913931645452976, 0.0013913371367380023, -0.005302899982780218, 0.01025347225368023, -0.020693892613053322, -0.07639051973819733, -0.014941595494747162, -0.012547200545668602, -0.028934061527252197, -0.016652904450893402, -0.05024632811546326, 0.002789864782243967, 0.02210320718586445, 0.01049075461924076, 0.03497397527098656, -0.012726959772408009, -0.051022887229919434, -0.017860885709524155, -0.03002699837088585, 0.05099412426352501, -0.01589072495698929, 0.00875068362802267, -0.006751760374754667, 0.039173152297735214, -0.004360961262136698, -0.0020977912936359644, -0.054790642112493515, 0.009246819652616978, -0.025885343551635742, -0.04642104730010033, 0.020808938890695572, -0.026187337934970856, 0.003836063900962472, 0.021686164662241936, 0.0042710816487669945, -0.030918603762984276, 0.04426393657922745, -0.009189296513795853, 0.02956681326031685, -0.02352689951658249, -0.00637067062780261, 0.0008484640275128186, -0.0322703942656517, -0.0005936551606282592, -0.045098017901182175, -0.003224882297217846, -0.02017618715763092, -0.035980626940727234, -0.04826178401708603, 0.008822587318718433, 0.020492563024163246, -0.03534787520766258, 0.032845623791217804, 0.05648757144808769, 0.006349099334329367, -0.002602915046736598, 0.001039008842781186, 0.013956514187157154, -0.006219672504812479, -0.013762373477220535, -0.03166640177369118, 0.004813954699784517, -0.023167381063103676, -0.005022475495934486, -0.005259757861495018, 0.01571815460920334, 0.014157844707369804, 0.030343374237418175, -0.006812878418713808, 0.03163764253258705, -0.00131763587705791, -0.003614960005506873, 0.03503149747848511, -0.016437193378806114, -0.012115778401494026, -0.02815750055015087, 0.009548814967274666, -0.008477449417114258, 0.0223908219486475, 0.0028491853736341, 0.04233691468834877, 0.013683279976248741, 0.00112529331818223, 0.031148696318268776, 0.006266409996896982, 0.0022937289904803038, 0.04458031430840492, 0.003728208364918828, -0.012036683969199657, -0.018421735614538193, 0.013028956018388271, -0.010893414728343487, 0.010893414728343487, -0.020837699994444847, -0.0307172741740942, -0.030458420515060425, -0.02200254052877426, 0.03037213534116745, -0.01829230971634388, -0.0015558169689029455, 0.04176168516278267, 0.009167725220322609, 0.0021786829456686974, -0.06897005438804626, 0.0036113648675382137, 0.048865776509046555, -0.0018065811600536108, 0.011964780278503895, 0.00834802258759737, 0.037361178547143936, 0.028028074651956558, 0.030055759474635124, 0.008650018833577633, 0.01161964237689972, -0.049728620797395706, -0.027050184085965157, 0.003807302564382553, -0.00335430889390409, -0.01862306520342827, 0.02159988135099411, 0.006158554460853338, 0.01744384504854679, 0.03856915980577469, -0.01205106545239687, -0.01771707832813263, -0.03232791647315025, 0.018263546749949455, 0.0007221830892376602, -0.007237110286951065, 0.0017966944724321365, 0.05021756514906883, 0.0310624111443758, -0.008067598566412926, -0.016307765617966652, 0.012216444127261639, -0.006884782109409571, -0.003753374796360731, -0.03845411539077759, 0.052058301866054535, 0.006119007244706154, 0.0052849240601062775, -0.016998041421175003, 0.007158016320317984, -0.00457307742908597, -0.013345331884920597, 0.058328304439783096, -0.039518289268016815, 0.04656485468149185, 0.0006260118680074811, 0.008484640158712864, 0.017343180254101753, -0.0012780887773260474, -0.004242320079356432, 0.02444726787507534, 0.012885148636996746, -0.004062560852617025, 0.0026820090133696795, -0.006036317907273769, -0.0015234602615237236, -0.0235988050699234, 0.005256162490695715, 0.013668899424374104, -0.011224172078073025, -0.02108217403292656, -0.0032608341425657272, 0.022031303495168686, -0.00592486746609211, -0.025266971439123154, 0.015430540777742863, -0.022318918257951736, 0.024130892008543015, -0.024030227214097977, -0.0031907279044389725, 0.01754450984299183, 0.006388646550476551, 0.027309035882353783, -0.017242513597011566, 0.003728208364918828, -0.016048911958932877, 0.013316570781171322, -0.012899529188871384, -0.01110912673175335, -0.027898646891117096, 0.013596995733678341, 0.02575591579079628, -0.0297393836081028, 0.022247014567255974, -0.010821511037647724, -0.009196487255394459, 0.016954898834228516, 0.017055565491318703, -0.01087903417646885, 0.021614260971546173, 0.045500680804252625, -0.013208715245127678, -0.021211599931120872, -0.016825472936034203, 0.011835354380309582, -0.020665131509304047, 0.014157844707369804, -0.0003925494384020567, 0.009879572317004204, -0.015214829705655575, 0.024591075256466866, 0.006241243798285723, 0.006967471446841955, 0.025094401091337204, -0.030889842659235, -0.025727154687047005, 0.007607414852827787, -0.002047458663582802, -0.004774407483637333, -0.007291038054972887, -0.03577929735183716, -0.0074779880233109, 0.011705927550792694, -0.01532987505197525, 0.017113087698817253, 0.030573466792702675, 0.036268241703510284, -0.027438463643193245, 0.018910681828856468, -0.0160776749253273, 0.03989218920469284, -0.01727127656340599, -0.041905492544174194, 0.051483072340488434, -0.010073712095618248, 0.05087907984852791, 0.02979690581560135, -0.025425158441066742, -0.0039187534712255, -0.03275933861732483, 0.018277928233146667, 0.02740970253944397, 0.00423153443261981, 0.035577964037656784, -0.016681665554642677, -0.008765065111219883, 0.013791135512292385, 0.004896644037216902, 0.024634217843413353, 0.010109664872288704, -0.00826173834502697, 0.020248090848326683, 0.00121067906729877, -0.0006799396360293031, 0.03373723104596138, -0.014294461347162724, -0.01885315775871277, -0.002971421694383025, -0.015027879737317562, 0.05197201669216156, 0.028186261653900146, -0.013906181789934635, -0.03779260069131851, 0.03845411539077759, -0.002924684202298522, 0.049556050449609756, -0.010382898151874542, -0.033938560634851456, -0.030458420515060425, 0.0033884632866829634, 0.01738632097840309, 0.031263742595911026, -0.0004947875277139246, -0.016149578616023064, 0.006848830264061689, -0.009081440977752209, -0.021326646208763123, -0.00788783933967352, -0.00031839869916439056, -0.0023009192664176226, 0.0003139047184959054, -0.005302899982780218, 0.008470259606838226, 0.005500635132193565, 0.015373017638921738, 0.0030541110318154097, 0.017084326595067978, -0.003749779425561428, -0.004493982996791601, 0.005108760204166174, -0.017458226531744003, -0.013410045765340328, 0.03264429420232773, 0.024634217843413353, 0.021384168416261673, -0.02889091894030571, -0.03413989022374153, -0.0050656176172196865, -0.02894844114780426, 0.02052132412791252, 0.005525801796466112, 0.0057666790671646595, 0.013956514187157154, 0.04725513234734535, -0.018881918862462044, 0.016480334103107452, 0.012640675529837608, 0.026244862005114555, -0.023627566173672676, -0.021053412929177284, -0.02883339487016201, 0.009512863121926785, 0.011475834995508194, -0.0012232621666043997, 0.021283503621816635, 0.03362218290567398, 0.019183915108442307, -0.015516825020313263, -0.049038343131542206, 0.0005774768069386482, -0.000348058994859457, 0.015315494500100613, 0.007014208938926458, -0.021182838827371597, -0.005957223940640688, 0.02039189822971821, 0.0322703942656517, 0.013503520749509335, -0.03629700466990471, -0.004569482058286667, -0.007352156564593315, -0.027797982096672058, -0.027136467397212982, 0.02513754367828369, 0.0074276551604270935, 0.004594648256897926, -0.0005684888456016779, -0.011648404411971569, -0.0017337787430733442, -0.0026154981460422277, -0.014265700243413448, 0.007636175956577063, 0.012158920988440514, -0.003460366977378726, 0.03819525986909866, -0.014409507624804974, 0.014064369723200798, 0.002581343986093998, -0.006068674847483635, -0.011101935990154743, -0.011101935990154743, 0.013697660528123379, 0.007064541336148977, -0.011749069206416607, 0.010447612032294273, 0.020305613055825233, 0.04918215051293373, 0.008952014148235321, 0.0046413857489824295, 0.005673204082995653, 0.007844696752727032, -0.012726959772408009, 0.036958515644073486, 0.03100488893687725, 0.022160729393363, 0.022764720022678375, 0.008614066988229752, 0.017803363502025604, 0.00027031308854930103, 0.003219489473849535, -0.004648576024919748, 0.001376057625748217, 0.0004925405373796821, -0.01873811148107052, 0.009182106703519821, -0.042883384972810745, 0.012360251508653164, -0.016782330349087715, 0.007830316200852394, 0.029307959601283073, -0.007959743030369282, 0.011425502598285675, -0.0029156962409615517, 0.018939442932605743, 0.01954343356192112, 0.026403049007058144, -0.055538441985845566, -0.03600938618183136, 0.01737194135785103, 0.006327528040856123, -0.04227939248085022, 0.023958323523402214, -0.0036023769062012434, 0.005220210645347834, 0.024001464247703552, -0.0110803646966815, -0.009671051986515522, -0.001953983912244439, 0.010152806527912617, -0.04170416295528412, 0.0023009192664176226, 0.0028743515722453594, -0.017630795016884804, 0.01784650608897209, -0.01583320088684559, -0.009131773374974728, -0.0013158383080735803, 0.00977171678096056, 0.03247172385454178, -0.008599686436355114, 0.03810897842049599, -0.011813783086836338, -0.013309380039572716, 0.019227057695388794, 0.006669071037322283, 0.03822402283549309, -0.025209447368979454, -0.02666190266609192, 0.008534972555935383, 0.010584228672087193, -0.008678779937326908, 8.701474871486425e-05, 0.004734860733151436, 0.022016922011971474, 0.003979871515184641, 0.009131773374974728, 0.020693892613053322, 0.0155312055721879, 0.004069751128554344, 0.024921832606196404, 0.020248090848326683, 0.012942671775817871, 0.0015189662808552384, 0.07345685362815857, -0.025497062131762505, 0.004547910764813423, 0.0005577033152803779, 0.011087555438280106, -0.031033650040626526, 0.03839659318327904, 0.006273600272834301, -0.011403931304812431, 0.009649480693042278, 0.012194872833788395, -0.034398745745420456, 0.012194872833788395, 0.021384168416261673, -0.013884610496461391, 0.010807130485773087, -0.004296247847378254, 0.0063059572130441666, 0.0011855127522721887, -0.01100127026438713, 0.010562658309936523, 0.017990313470363617, -0.010411660186946392, 0.023339951410889626, 0.03687223419547081, -0.001826354768127203, 0.012432155199348927, 0.05858715996146202, 0.03600938618183136, 0.012921100482344627, -0.006338313687592745, -0.002029482740908861, 0.00044445492676459253, -0.008527782745659351, 0.016394050791859627, 0.0023746206425130367, 0.02302357368171215, -0.004130869172513485, -0.007359346840530634, -0.018321070820093155, 0.026690663769841194, 0.009541625156998634, -0.03546291962265968, 0.001269100815989077, 0.002453714841976762, -0.01475464552640915, 0.007341370917856693, 0.003647316712886095, 0.013683279976248741, -0.0308323185890913, -0.008851349353790283, -0.020780177786946297, -0.006503692362457514, -0.0035232827067375183, -0.023339951410889626, 0.0026927946601063013, 0.028689587488770485, 0.01931334100663662, -0.0304871816188097, 0.018666207790374756, 0.03117745742201805, -0.016595380380749702, 0.014596457593142986, 0.0065791914239525795, 0.019183915108442307, -0.008470259606838226, -0.010972509160637856, -0.005144712049514055, -0.022520247846841812, -0.005716346669942141, -0.018162881955504417, -0.00943376962095499, 0.025885343551635742, 0.0077008893713355064, -0.01686861552298069, -0.01555996760725975, -0.035980626940727234, -0.03390979766845703, 0.006208886858075857, 0.01692613773047924, -0.009426578879356384, -0.010598610155284405, 0.01709870621562004, 0.057407937943935394, 0.03500273451209068, 0.018206024542450905, 0.026532476767897606, -0.016595380380749702, 0.009412198327481747, -0.00468452787026763, 0.015545586124062538, -0.04000723361968994, -0.011792211793363094, 0.008419927209615707, -0.018795635551214218, 0.021283503621816635, -0.027165228500962257, -0.027668554335832596, 0.03721737116575241, 0.008074789308011532, 0.018090978264808655, 0.037131085991859436, 0.03155135735869408, 0.019500290974974632, 0.012921100482344627, 0.02456231415271759, -0.01617833971977234, -0.0110803646966815, -0.008369593881070614, -0.03511778265237808, 0.018263546749949455, -0.01623586192727089, -0.012683818116784096, 0.003925943747162819, 0.03480140492320061, -0.008822587318718433, 0.028243785724043846, 0.006101031322032213, 0.003359701717272401, 0.003203311236575246, -0.007089707534760237, -0.0070609464310109615, 0.006856020539999008, -0.007851887494325638, 0.0021517190616577864, -0.020593227818608284, -0.030170805752277374, 0.007693699095398188, 0.009707003831863403, -0.021815592423081398, 0.009692622348666191, 0.001579185714945197, -0.024634217843413353, -0.04783036187291145, 0.012058255262672901, 0.002759305527433753, 0.005435922183096409, -0.007330585271120071, 0.011216982267796993, 0.0319252572953701, 0.009376246482133865, 0.02712208777666092, 0.039230674505233765, 0.006971066817641258, 0.003199715865775943, -0.006291576195508242, -0.03293190896511078, 0.027495985850691795, 0.01927020028233528, -0.010181568562984467, -0.007600224111229181, -0.002239801222458482, 0.01744384504854679, 0.03218410909175873, -0.024878690019249916, -0.008182644844055176, -0.00659716734662652, 0.0038540398236364126, 0.007215539459139109, 0.020550085231661797, -0.004982928279787302, 0.01344599761068821, 0.009448150172829628, 0.004357365891337395, -0.03198277950286865, 0.013172763399779797, 0.0070034232921898365, -0.04164664074778557, 0.007909410633146763, -0.0031403955072164536, -0.00806040782481432, -0.0033489163033664227, -0.010080902837216854, 0.008182644844055176, 0.014711502939462662, 0.011130697093904018, 0.0032482510432600975, -0.011914447881281376, 0.007880648598074913, 0.04017980396747589, 0.010986889712512493, -0.029164152219891548, -0.039633337408304214, 0.02935110218822956, -0.008283309638500214, 0.0001484137901570648, -0.02689199522137642, 0.011044412851333618, -0.01742946356534958, -0.010979699902236462, -0.019974855706095695, 0.024763643741607666, -0.026460573077201843, 0.00414525019004941, 0.006219672504812479, -0.008002884685993195, 0.016998041421175003, 0.015660632401704788, -0.03514654189348221, 0.0004610826727002859, -0.0014982939464971423, 0.03160887956619263, -0.033248282968997955, 0.00240877503529191, 0.001301457523368299, 0.015660632401704788, 0.011360789649188519, 0.0062628150917589664, 0.007359346840530634, 0.0020115068182349205, 0.013776754960417747, -0.004961357451975346, 0.025310112163424492, -0.0033399283420294523, -0.010648942552506924, -0.009476911276578903, -0.01168435625731945, 0.015746917575597763, -0.007359346840530634, 0.0046377903781831264, 0.03914438933134079, 0.015818821266293526, 0.028675207868218422, 0.013338142074644566, -0.013827087357640266, -0.020722655579447746, 0.01965847983956337, 0.0037893266417086124, -0.0013859444297850132, -0.039690859615802765, 0.02096712775528431, 0.018105359748005867, -0.0016528869746252894, 0.002527416218072176, -0.002074422547593713, 0.012525630183517933, 0.02323928475379944, -0.007628985680639744, -0.00817545410245657, 0.005626467056572437, 0.011533358134329319, -0.006216077599674463, -0.02519506774842739, -0.009469721466302872, 0.014057178981602192, 0.007715270388871431, -0.05021756514906883, 0.01071365550160408, 0.006554024759680033, 0.005018880125135183, -0.006000366061925888, 0.018493639305233955, 0.027222752571105957, 0.04127274081110954, -0.02671942673623562, -0.00016987256822176278, 0.04918215051293373, -0.011727497912943363, -0.009850811213254929, -0.0018820801051333547, 0.022534629330039024, -0.0017499569803476334, 0.011979161761701107, 0.009476911276578903, -0.02837321162223816, 0.010958128608763218, -0.03874173015356064, -0.01931334100663662, 0.011073173955082893, 0.01100127026438713, -0.00596800958737731, 0.024864310398697853, 0.023440616205334663, 0.026748187839984894, 0.007643366698175669, 0.009778907522559166, -0.015689393505454063, -0.028819015249609947, 0.05453179031610489, 0.006216077599674463, -0.021067792549729347, -0.02438974566757679, 0.04112893342971802, -0.004795978777110577, -0.010433231480419636, -0.003972681239247322, 0.03178144991397858, -0.00806040782481432, 0.010102474130690098, 0.023268047720193863, -0.05634376406669617, -0.02039189822971821, 0.003219489473849535, 0.02656123787164688, -0.0227359589189291, -0.019730383530259132, 0.025597726926207542, -0.013589804992079735, 0.017458226531744003, 0.02500811778008938, -0.015373017638921738, -0.023153001442551613, -0.008024455979466438, 0.0014398721978068352, 0.010785559192299843, 0.015919486060738564, -0.00014077402011025697, -0.03465759754180908, -0.0026442597154527903, -0.03526159003376961, -0.0050656176172196865, 0.009138964116573334, 0.0025939270853996277, -0.02667628414928913, 0.003951109945774078, 0.025108782574534416, 0.05248972401022911, 0.013898991048336029, 0.031350027769804, -0.0038324687629938126, 0.005964414216578007, 0.015257971361279488, 0.0015288530848920345, -0.003185335313901305, 0.009153344668447971, -0.014359175227582455, 0.008822587318718433, -0.007866268046200275, 0.018019074574112892, -0.013755183666944504, -0.038712967187166214, 0.036555856466293335, 0.026345526799559593, 0.015171687118709087, 0.0007895928574725986, -0.004199177958071232, 0.016825472936034203, 0.041790448129177094, 0.00012684267130680382, 0.009893952868878841, -0.027035802602767944, 0.020837699994444847, 0.019586576148867607, 0.02752474695444107, -0.005036856047809124, 0.009750145487487316, 0.020104283466935158, 0.009390627034008503, 0.009699813090264797, 0.014316032640635967, 0.004756431560963392, 0.01087903417646885, 0.02821502275764942, -0.00398706179112196, -0.007945362478494644, 0.03413989022374153, -0.03442750498652458, 0.023670708760619164, 0.00351249729283154, 0.0471976101398468, -0.018090978264808655, 0.009131773374974728, 0.01994609460234642, 0.006331123411655426, 0.03652709349989891, 0.018321070820093155, -0.022318918257951736, -0.0303146131336689, 0.01589072495698929, -0.008901681751012802, 0.03595186397433281, -0.0027718888595700264, 0.04015104100108147, -0.022764720022678375, -0.012640675529837608, -0.008117930963635445, -0.0019252223428338766, -0.02108217403292656, 0.0307172741740942, 0.009908334352076054, -0.005917677190154791, -0.03163764253258705, -0.0002882890112232417, 0.007150826044380665, 0.014416697435081005, -0.014380745589733124, 0.02039189822971821, 0.03471511974930763, 0.013697660528123379, 0.023224905133247375, 0.011439883150160313, -0.026086673140525818, -0.003514294745400548, 0.015545586124062538, -0.006773331202566624, 0.013589804992079735, -0.029336722567677498, 0.013323761522769928, 0.024289080873131752, -0.007035779766738415, 0.0017445642733946443, -0.033305808901786804, -0.051713161170482635, -0.018910681828856468, 0.026532476767897606, 0.006341909058392048, -0.027165228500962257, 0.0462772399187088, 0.0014344793744385242, 0.0437462292611599, 0.021168457344174385, 0.03316200152039528, -0.01299300417304039, 0.009994618594646454, 0.029077868908643723, 0.001810176414437592]" -How a Data Scientist Is Building a Time-Series Forecasting Pipeline Using TimescaleDB,"concept of machine learning pipelines to pull relevant data (this could be sports statistics, historical sports betting odds, or financial market pricing data), use machine learning to make predictions, and share those predictions back to the organization to help them make decisions or bets.Initially, all of this was written in Python, usingAirflowto orchestrate the entire pipeline. I always used PostgreSQL as my database and have been a long-time user for several reasons. While I was a graduate student, I supported myself as a web programmer during the first web boom, and we used Oracle as our database. During this job, I learned SQL and saw the power of enterprise-ready databases. For personal projects, I could afford neither Oracle itself nor the hardware to run it. Evaluating the open-source SQL databases, PostgreSQL was by far the most feature-complete (and similar to what I already knew). This is still true today.But, back to my project. Using PostgreSQL, I would write the original data, the engineered features for modeling, and the final predictions into the database for model monitoring and future model development.In all of these cases, the underlying data is event data and has time-series characteristics. This means that as a data scientist, I was interested in capturing how the data changed over time. For example, when modeling a sports betting market, I was interested in how the betting line or odds would change over time. Was it rising, falling, oscillating, etc.? Capturing this information as machine learning features was key to my models performing well. I typically used a Python library calledtsfreshto build these features.✨Editor's Note:Do you know what time-series data is?The answer is in this blog post.As the amount of data grew, I spent most of the time in the pipeline pulling data from the database, building the features, and pushing the results back to the database.Choosing (and Using!) TimescaleDBAs I was first working on these sorts of problems in my spare time, DataRobot asked me to lead their go-to-market efforts in the sports and entertainment space. In this new role, I began talking with several Formula 1 teams about possibly using DataRobot in their workflows.“During the investigation of TimescaleDB, I realized I could use PostgreSQL’s support of custom extensions built in Python to allow me to call tsfresh functions directly within the database",https://www.timescale.com/blog/how-a-data-scientist-is-building-a-time-series-forecasting-pipeline-using-timescaledb-and-helping-others-perform-time-series-engineering-directly-in-the-database/,477,"[-0.011576631106436253, -0.03223401680588722, 0.06175973638892174, -0.00752082746475935, 0.052838295698165894, -0.01622321456670761, -0.015851488336920738, 0.027428120374679565, -0.051245179027318954, 0.04856343939900398, 0.031145386397838593, -0.045350655913352966, -0.027029842138290405, -0.02648552693426609, 0.03974820673465729, 0.03855336830019951, -0.0014952042838558555, 0.005738530773669481, -0.05326312407851219, 0.005950946360826492, 0.025131380185484886, 0.021573424339294434, -0.01711270399391651, -0.011689476668834686, 0.01095929928123951, -0.009233425371348858, -0.00807178020477295, 0.045642729848623276, -0.007095997221767902, -0.05321002006530762, -0.007301774341613054, -0.038500264286994934, -0.05209484323859215, 0.004304728005081415, 0.03172953054308891, -0.015466486103832722, 0.03802233189344406, 0.03377402573823929, 0.020737038925290108, -0.00041674048407003284, 0.008058504201471806, -0.008131521753966808, 0.014961999841034412, 0.06340595334768295, -0.029817791655659676, 0.005708659999072552, -0.02519775927066803, -0.05963558331131935, 0.00870902556926012, 0.055121760815382004, -0.07163704186677933, -0.006166680250316858, -0.02159997634589672, -0.0028261186089366674, 0.041075799614191055, 0.001686875824816525, -0.00617663748562336, 0.014603548683226109, -0.005529434885829687, -0.022330153733491898, 0.0011906870640814304, -0.031118834391236305, 0.0180287454277277, -0.010288864374160767, -0.03289781138300896, 0.014391133561730385, -0.043465472757816315, 0.036800943315029144, -0.04391685500741005, 0.02209118753671646, 0.02049807272851467, 0.001666132127866149, 0.015519590117037296, -0.027401568368077278, 0.02467999793589115, -0.06112249195575714, 0.007879278622567654, 0.09983517229557037, -0.017789777368307114, -0.03204815089702606, 0.012831209227442741, 0.0011964952573180199, 0.010176018811762333, 0.02149376831948757, -0.024175511673092842, -0.04391685500741005, -0.0008384594693779945, -0.010341967456042767, -0.023564817383885384, -0.014271650463342667, -0.05857350677251816, 0.03855336830019951, 0.00802531372755766, 0.04022613912820816, 0.028941579163074493, 0.029950551688671112, -0.005901161581277847, -0.04627997428178787, 0.023352403193712234, 0.017497707158327103, -0.035393692553043365, -0.0159311443567276, -0.021732736378908157, -0.00010397768346592784, 0.04120856150984764, -0.005990773905068636, 0.013262677937746048, 0.028357436880469322, -0.001993052428588271, 0.020471520721912384, -0.064149409532547, 0.014351305551826954, -0.0374116376042366, 0.00975782610476017, -0.012957330793142319, -0.017710121348500252, -0.014510617591440678, 0.005024948623031378, 0.022184118628501892, -0.006694399751722813, -0.031039180234074593, -0.009266615845263004, -0.01613028347492218, -0.012904226779937744, 0.04219098016619682, 0.005811548791825771, 0.01950237527489662, -0.07020324468612671, 0.014630100689828396, -0.027720190584659576, 0.01842702366411686, -0.006399009842425585, 0.036190249025821686, -0.029950551688671112, -0.021188421174883842, -0.021254802122712135, -0.014550444670021534, 0.006568278186023235, 0.006106938701122999, -0.028702611103653908, 0.003028576960787177, -0.025144655257463455, -4.584352791425772e-05, 0.0318622887134552, -0.047342050820589066, 0.004583523143082857, -0.012983882799744606, 0.07785019278526306, -0.016170110553503036, -0.009625066071748734, 0.0010230782208964229, 0.002839394612237811, -0.043571680784225464, 0.0052771917544305325, 0.00587129034101963, -0.0030169603414833546, 0.00038458776543848217, 0.03611059486865997, -0.0026385958772152662, -0.061494216322898865, -0.041978564113378525, 0.05602452531456947, -0.008297471329569817, 0.01220723893493414, -0.016674596816301346, 0.008324023336172104, -0.04659859836101532, -0.051935531198978424, -0.04091648757457733, -0.021427389234304428, -0.023949820548295975, -0.04928033798933029, 0.010049897246062756, 0.007461085915565491, 0.021068938076496124, -0.03836750611662865, -0.021971702575683594, -0.03438472002744675, 0.02448085881769657, -0.06165352836251259, -0.09553375840187073, -0.020737038925290108, -0.049121029675006866, -0.01229353342205286, -0.028835371136665344, 0.01644890569150448, -0.01801546849310398, 0.04598790407180786, 0.006166680250316858, 0.025343796238303185, 0.008788681589066982, 0.055121760815382004, 0.009286529384553432, 0.03942958265542984, -0.003096616128459573, 0.0119483582675457, 0.02769363857805729, 0.012399740517139435, -0.02031220868229866, 0.006485303398221731, 0.060485243797302246, 0.005529434885829687, -0.0022735069505870342, -0.001845357590354979, 0.00217725639231503, 0.005224087741225958, 5.678581874235533e-05, -0.019568756222724915, -0.06595493853092194, -0.02229032665491104, 0.011862064711749554, -0.03018951788544655, 0.019555479288101196, 0.015001827850937843, -0.04880240559577942, -0.026366043835878372, -0.03855336830019951, -0.018148228526115417, 0.01671442575752735, 0.0035878263879567385, 0.00503158662468195, 0.04489927366375923, 0.006896858103573322, -0.007573931477963924, -0.04001372307538986, -0.006930047646164894, 0.061281800270080566, -0.029817791655659676, 0.031410906463861465, -0.02928675338625908, 0.02040513977408409, -0.026830703020095825, -0.001686875824816525, -0.045642729848623276, 0.029525721445679665, -0.008244367316365242, -0.024547237902879715, -0.025157932192087173, -0.004902145825326443, -0.04258925840258598, -0.0017441284144297242, 0.02907433919608593, -0.021082215011119843, 0.018878405913710594, -0.00866919755935669, 0.018493402749300003, -0.014364581555128098, -0.025410175323486328, 0.02687053009867668, 0.041659943759441376, 0.032791607081890106, -0.02859640307724476, 0.003322307486087084, -0.018373919650912285, -0.023976372554898262, -0.06446803361177444, -0.022369980812072754, 0.010395071469247341, -0.012957330793142319, -0.001406421302817762, 0.01089955773204565, -0.03398644179105759, -0.05188242718577385, 0.02618017978966236, -0.019236857071518898, 0.006694399751722813, -0.010448175482451916, -0.038181643933057785, 0.004095631651580334, -0.019064269959926605, 0.02668466605246067, 0.04322650656104088, 0.013521558605134487, -0.02867605909705162, -0.038075435906648636, -0.01851995475590229, 0.015572693198919296, 0.021374285221099854, 0.021148594096302986, -0.011974910274147987, -0.018400471657514572, -0.04232373833656311, 0.02570224553346634, 0.007195566780865192, 0.022038083523511887, 0.02051134780049324, -0.030401933938264847, -0.005151070188730955, -0.009173683822154999, -0.030720556154847145, -0.012678535655140877, -0.00209096260368824, 0.019157201051712036, -0.028330884873867035, 0.03913751244544983, 0.025542935356497765, 0.01782960630953312, 0.030109861865639687, -0.030986076220870018, 0.006790650077164173, 0.013886647298932076, 0.00445740157738328, -0.02248946577310562, -0.01393975131213665, -0.0069167716428637505, 0.009903861209750175, -0.013953027315437794, -0.009133855812251568, 0.03016296587884426, -0.003976148087531328, -0.012678535655140877, 0.020750315859913826, 0.044554099440574646, -0.026631562039256096, 0.008343936875462532, 0.03157021850347519, 0.0422440841794014, -0.02418878674507141, 0.014324753545224667, -0.09548065811395645, -0.06260939687490463, -0.06930048018693924, -0.011868702247738838, -0.015652349218726158, 0.00921351183205843, -0.018453575670719147, 0.009538772515952587, 0.01940944418311119, 0.006329311057925224, -0.007806260604411364, 0.001853654976002872, -0.0006974024581722915, -0.017749950289726257, 0.007182290777564049, -0.035314034670591354, -0.035101622343063354, -0.014523893594741821, 0.01893150992691517, -0.013647680170834064, 0.008954630233347416, -0.07370809465646744, 0.006399009842425585, -0.057617638260126114, 0.02470654994249344, 0.0033372428733855486, 0.03125159442424774, -0.009644980542361736, 0.03178263455629349, -0.019860826432704926, 0.015333726070821285, -0.05265243351459503, 0.021971702575683594, 0.06276870518922806, 0.007812898606061935, -0.0281981248408556, -0.02328602224588394, -0.018280988559126854, 0.006837116088718176, -0.007786346599459648, -0.04840412735939026, -0.05607762932777405, 0.026445699855685234, -0.00043188335257582366, 0.010926109738647938, -0.01922358013689518, 0.03324298933148384, -0.010580934584140778, 0.014829239808022976, -0.03573886677622795, -0.021931875497102737, 0.030030207708477974, -0.03273850306868553, -0.04091648757457733, 0.009133855812251568, -0.04452754929661751, -0.011669563129544258, 0.010096362791955471, 0.04463375732302666, -0.0362699069082737, 0.07551362365484238, 0.0360574908554554, 0.020378589630126953, 0.014006131328642368, -0.055227965116500854, 0.0027431438211351633, 0.05257277563214302, 0.022356705740094185, 0.005506201647222042, -0.05265243351459503, 0.01921030506491661, 0.02242308482527733, -0.035499900579452515, -0.012572327628731728, 0.008649284020066261, -0.03706646338105202, 0.018095124512910843, -0.007646949030458927, 0.026246560737490654, 0.06324664503335953, -0.014656652696430683, -0.043359264731407166, -0.025874832645058632, -0.019860826432704926, -0.006876944098621607, 0.023179814219474792, 0.014696480706334114, 0.03507506847381592, 0.02430827170610428, -0.03395988792181015, -0.012001462280750275, -0.005463054869323969, -0.028915027156472206, 0.03842061012983322, 0.0150416549295187, -0.017590638250112534, -0.018161503598093987, -0.012339998967945576, 0.024374650791287422, -0.014351305551826954, 0.07806260883808136, 0.02629966475069523, -0.0027331870514899492, 0.0007293476955965161, 0.006823840085417032, -0.02479948103427887, 0.03295091539621353, 0.06595493853092194, -0.023139987140893936, -0.005111242178827524, -0.045669279992580414, -0.013342333026230335, -0.04431513324379921, 0.03204815089702606, -0.03706646338105202, -0.02677759900689125, -0.0015176074812188745, 0.032021600753068924, -0.03125159442424774, 0.008689112029969692, 0.006309397052973509, 0.0036210163962095976, 0.04059786722064018, -0.008841784670948982, 0.03672128915786743, -0.02928675338625908, -0.011423958465456963, -0.055334173142910004, -0.007560655474662781, -0.060803867876529694, -0.007188928779214621, 0.04789964109659195, -0.018692541867494583, -0.014510617591440678, 0.00503158662468195, 0.03403954580426216, -0.04404961317777634, 0.06446803361177444, -0.013607852160930634, 0.059104546904563904, -0.02061755582690239, -0.013355609029531479, 0.027746742591261864, -0.034889206290245056, 0.007819537073373795, -0.017869433388113976, -0.03653542324900627, 0.05846729874610901, -0.01318965945392847, 0.025476554408669472, -0.029021235182881355, -0.001401442801579833, 0.013873371295630932, 0.005486287642270327, -0.02199825458228588, -0.007441171910613775, 0.00533029530197382, 0.027454672381281853, -0.01484251581132412, -0.013873371295630932, -0.012625431641936302, 0.03303057327866554, -0.001047140802256763, -0.017165808007121086, 0.03223401680588722, -0.00694996165111661, -0.013415351510047913, 0.023259470239281654, -0.011828874237835407, 0.021361010149121284, 0.005818186793476343, -0.03685404732823372, -0.013348971493542194, 0.06032593175768852, -0.014776136726140976, -0.0230072271078825, -0.00038292829412966967, -0.08544404059648514, -0.048138607293367386, -0.01026231236755848, -0.006189913488924503, 0.046837564557790756, -0.0020079880487173796, -0.005824824795126915, 0.06611424684524536, -0.011954995803534985, 0.012160773389041424, -0.0022519335616379976, -0.007354878354817629, -0.009870671667158604, -0.03382712975144386, 0.0007973869796842337, 0.04322650656104088, 0.015917867422103882, 0.042881328612565994, -0.0004352023534011096, -0.00881523359566927, -0.04582859203219414, 0.011052231304347515, -0.01842702366411686, 0.009830843657255173, -0.01674097776412964, -0.035314034670591354, -0.02907433919608593, 0.012698449194431305, -0.0017142575234174728, -0.03215435892343521, -0.05148414894938469, -0.03666818514466286, -0.00043022388126701117, -0.030614348128437996, 0.021560149267315865, 0.008921440690755844, -0.0012786402367055416, -0.014922171831130981, -0.04134131968021393, -0.0016752594383433461, -0.022874467074871063, -0.02648552693426609, -0.05958247929811478, 0.022927571088075638, 0.010992489755153656, 0.041978564113378525, -0.0009658256312832236, 0.043279606848955154, -0.006262931041419506, 0.007261946797370911, -0.006292801816016436, -0.000213659877772443, -0.013860095292329788, 0.0028194806072860956, 0.05984799936413765, -0.01891823299229145, -0.01960858330130577, 0.003946277312934399, 0.00752082746475935, 0.022662052884697914, 0.005957584362477064, 0.007686777040362358, 0.0007247840985655785, 0.023352403193712234, 0.008775405585765839, -0.011875340715050697, -0.006555002182722092, 0.007786346599459648, 0.013561386615037918, 0.04827136546373367, 0.024175511673092842, -0.06765425950288773, -0.028729163110256195, 0.0005040713585913181, -0.031410906463861465, 0.004225072450935841, 0.013083452358841896, -0.012120945379137993, -0.0015035017859190702, 0.010468089021742344, -0.00827091932296753, -0.026737770065665245, 0.014045958407223225, 0.014908895827829838, -0.028304332867264748, -0.021135317161679268, -0.03172953054308891, 0.03305712342262268, 0.0073947058990597725, 0.005449778866022825, -0.0011201585875824094, 0.026034144684672356, 0.01444423757493496, -0.013607852160930634, 0.00732168834656477, -0.02849019691348076, -0.029817791655659676, -0.015001827850937843, 0.001688535325229168, 0.01553286612033844, 0.024520685896277428, 0.007275222335010767, -0.009545410983264446, 0.016355974599719048, 0.014869067817926407, -0.013621128164231777, 0.0001475912577006966, -0.03085331618785858, -0.006823840085417032, 0.04022613912820816, 0.0190244410187006, 0.019767895340919495, 0.03608404099941254, -0.020391864702105522, 0.03138435259461403, -0.003227716311812401, -0.0015864764573052526, -0.05814867839217186, -0.018400471657514572, -0.01962186023592949, -0.0438106469810009, -0.0059443083591759205, 0.01871909387409687, -0.004563609138131142, -0.04420892521739006, -0.00010527416452532634, 0.015453210100531578, -0.013647680170834064, 0.016369251534342766, -0.002846032613888383, -0.011616459116339684, -0.00891480315476656, -0.03273850306868553, 0.012731639668345451, -0.015214242972433567, 0.0002491315535735339, 0.03974820673465729, 0.006837116088718176, 0.007434533908963203, 0.019542204216122627, 0.04120856150984764, 0.014776136726140976, -0.01672770082950592, -0.0031746122986078262, 0.013953027315437794, 0.0055924952030181885, 0.002097600605338812, -0.010335329920053482, 0.02846364490687847, -0.02687053009867668, -0.021068938076496124, 0.04630652442574501, 0.00455697113648057, -0.012831209227442741, -0.0257819015532732, -0.016355974599719048, 0.06250318884849548, 0.022847916930913925, 0.021560149267315865, -0.012326722964644432, -0.004188563209027052, -0.025742074474692345, 0.03996061906218529, 0.016993220895528793, -0.03765060380101204, 0.011556717567145824, -0.013169745914638042, 0.00438438355922699, -0.031623322516679764, 0.012565690092742443, 0.014191994443535805, 0.014723032712936401, 0.03608404099941254, 0.019289961084723473, -0.04752791300415993, 0.02360464632511139, 0.011350939981639385, 0.01190853025764227, -0.0010994148906320333, -0.030508141964673996, -0.019396167248487473, -0.04434168338775635, 0.03688059747219086, 0.06117559224367142, -0.027401568368077278, -0.0046598599292337894, -0.04845723137259483, -0.008861699141561985, 0.027906054630875587, -0.012711725197732449, -0.002975473180413246, 0.017457878217101097, 0.03865957632660866, 0.03433161601424217, 0.0064620706252753735, -0.02121497318148613, 0.005170983728021383, 0.005340252537280321, 0.02259567379951477, -0.003035214962437749, -0.014178718440234661, 0.05777695029973984, -0.013926475308835506, -0.04112890362739563, -0.0027282084338366985, -0.01428492646664381, -0.035499900579452515, -0.041474077850580215, -0.03276505321264267, -0.0053767613135278225, -0.010892920196056366, 0.0035878263879567385, 0.04404961317777634, -0.02069721184670925, -0.05209484323859215, 0.0018835258670151234, -0.032021600753068924, 0.023418782278895378, -0.033110227435827255, -0.002806204603984952, -0.01215413585305214, 0.018280988559126854, -0.0040923128835856915, -0.022754983976483345, -0.043279606848955154, -0.013176383450627327, -0.014696480706334114, -0.039801307022571564, 0.02049807272851467, -0.05148414894938469, -0.0069167716428637505, 0.038792334496974945, 0.00017580266285222024, -0.0017889346927404404, 0.007062807213515043, 0.010946023277938366, 0.04126166179776192, -0.03289781138300896, 0.023418782278895378, -0.02867605909705162, -0.022144289687275887, 0.009937051683664322, -0.062184564769268036, 0.014417685568332672, -0.03127814829349518, -0.030508141964673996, -0.017763225361704826, 0.01031541544944048, 0.017179083079099655, -0.01712598092854023, 0.026551907882094383, 0.07328326255083084, 0.029499169439077377, -0.017072876915335655, -0.02359136939048767, 0.010926109738647938, 0.007474361918866634, -0.001140072476118803, -0.02150704525411129, -0.009180322289466858, -0.024056028574705124, -0.014510617591440678, -0.02210446260869503, 0.013992855325341225, 0.013501645065844059, 0.04229718819260597, -0.007401343900710344, 0.04540375992655754, 0.004696368705481291, 0.00042566025513224304, 0.02669794298708439, -0.005101284943521023, -0.004835766274482012, -0.0438106469810009, -0.0012487693456932902, -0.03690715134143829, 0.002741484437137842, -0.008728939108550549, 0.041872356086969376, 0.008981182239949703, 0.014006131328642368, 0.027613982558250427, 0.04051820933818817, 0.026352766901254654, 0.017497707158327103, -0.0011359237832948565, -0.021732736378908157, -0.029313305392861366, -0.007892554625868797, -0.01723218709230423, 0.007334964349865913, -0.0031215085182338953, -0.012539138086140156, -0.03603093698620796, -0.022569121792912483, -0.009160407818853855, -0.023578094318509102, -0.01245284453034401, 0.0008164711180143058, 0.018360644578933716, 0.023763956502079964, -0.11311112344264984, -0.01553286612033844, 0.042562708258628845, 0.008934716694056988, 0.01562579721212387, 0.01613028347492218, 0.02717587724328041, 0.041367869824171066, 0.016170110553503036, -0.01333569549024105, -0.004560289904475212, -0.027149325236678123, -0.029233649373054504, 0.0027165920473635197, 0.012359912507236004, 0.009837481193244457, 0.038181643933057785, -0.0031596769113093615, 0.001979776658117771, 0.012472758069634438, -0.006236379034817219, -0.004045846872031689, -0.07848744094371796, 0.032313670963048935, -0.014510617591440678, -0.008516523987054825, -0.010819901712238789, 0.0603790357708931, 0.013674232177436352, -0.0014819282805547118, 0.002993727568536997, -0.019568756222724915, 0.007587207481265068, 0.014696480706334114, -0.005851376336067915, 0.07030945271253586, -0.010673866607248783, 0.009419289417564869, 0.0015590947587043047, 0.03592472895979881, -0.026711218059062958, -0.01893150992691517, 0.07402671873569489, -0.03964199870824814, 0.05405968427658081, -0.02299395203590393, -0.009797654114663601, -0.005512839648872614, -0.019343065097928047, -0.00925333984196186, 0.045669279992580414, -0.008828508667647839, -0.0140990624204278, 0.00530042452737689, 0.0026419146452099085, 0.010136190801858902, -0.03812853991985321, -0.016687873750925064, 0.034092649817466736, -0.006418923381716013, -0.019343065097928047, -0.003969510085880756, 0.019037717953324318, -0.03557955473661423, -0.026538630947470665, 0.0015972631517797709, -0.001638750545680523, 0.018267711624503136, -0.027534328401088715, -0.01711270399391651, 0.01654183864593506, 0.019900653511285782, 0.02229032665491104, 0.02071048691868782, -0.011961634270846844, -0.01804202049970627, 0.011463785544037819, 0.0035911453887820244, -0.01611700840294361, -0.021453941240906715, 0.014072510413825512, 0.0009293167386204004, -0.05852040275931358, 0.004235029220581055, -0.009147131815552711, 2.0730713004013523e-05, -0.0022104461677372456, -0.016807356849312782, 0.011988186277449131, 0.011915168724954128, 0.03796922788023949, -0.0053369333036243916, 0.0039794668555259705, -0.011390767991542816, 0.01753753423690796, -0.014749584719538689, -0.03106573224067688, 0.013833543285727501, 0.009021010249853134, -0.024733101949095726, 0.031331248581409454, 0.011735943146049976, -0.007527465466409922, 0.02896813116967678, -0.007175652775913477, -0.021759288385510445, -7.353633554885164e-05, -0.0051377941854298115, -0.019834274426102638, -0.021639803424477577, -0.005360166076570749, -0.02590138465166092, 0.017391499131917953, 0.003176271915435791, -0.0012305149575695395, -0.008111607283353806, 0.05767074227333069, -0.02239653281867504, 0.016475457698106766, -0.02968503162264824, 0.017763225361704826, -0.00034330785274505615, -0.045058585703372955, 0.04420892521739006, -0.010202569887042046, 0.013163108378648758, 0.016780804842710495, 0.00027983219479210675, 0.003846707521006465, -0.018267711624503136, 0.013674232177436352, 0.014258374460041523, 0.012904226779937744, 0.048643093556165695, -0.00931308139115572, -0.019847551360726357, 0.00816471129655838, 0.01652856171131134, 0.03218091279268265, 0.021135317161679268, -0.01269181165844202, 0.03303057327866554, -0.0011458807857707143, -0.020086517557501793, 0.03472989425063133, -0.025649141520261765, -0.01140404399484396, 0.0013889966066926718, -0.02809191681444645, 0.06122869625687599, 0.026764322072267532, -0.01150361355394125, -0.004473996348679066, 0.054431408643722534, -0.021945150569081306, 0.03773026168346405, -0.040677521377801895, -0.04155373573303223, 0.006359181832522154, 0.008483334444463253, 0.018559783697128296, 0.026817426085472107, 0.0036840771790593863, -0.004268219228833914, -0.01448406558483839, -0.011935082264244556, 0.0067109945230185986, 0.004344556014984846, -0.02390999160706997, 0.02161325328052044, -0.014669928699731827, -0.009571962058544159, 0.015214242972433567, -0.0059443083591759205, 0.03087986819446087, 0.035287484526634216, 0.031809184700250626, 0.027640534564852715, 0.0007484318921342492, 0.005818186793476343, -0.01672770082950592, -0.025556210428476334, 0.029499169439077377, 0.03871268033981323, 0.008994458243250847, 0.007952296175062656, -0.039403028786182404, 0.005479649640619755, -0.01079998817294836, 0.029233649373054504, -0.019542204216122627, 0.03087986819446087, 0.002844372997060418, 0.05517486482858658, 0.004918740596622229, 0.02718915231525898, 0.010368519462645054, 0.017803054302930832, -0.037278879433870316, -0.00786600261926651, 0.016887012869119644, 0.007919106632471085, -0.0006712654139846563, 0.0008919781539589167, 0.008981182239949703, 0.04941309988498688, 0.005071414168924093, -0.007401343900710344, -0.028357436880469322, 0.03786301985383034, -0.0013856776058673859, 0.020591003820300102, 0.014271650463342667, -0.013687508180737495, -0.02398964762687683, -0.0024593702983111143, 0.04598790407180786, 0.02409585565328598, -0.03295091539621353, -0.00312316813506186, -0.038287848234176636, -0.012731639668345451, -0.012373188510537148, 0.0041520544327795506, -0.0010048237163573503, 0.008848423138260841, 0.034411270171403885, 0.02878226712346077, 0.0006260441732592881, -0.005858014337718487, -0.01363440416753292, 0.005290467292070389, 0.0016470479313284159, 0.009545410983264446, 0.029392961412668228, -0.01319629792124033, 0.017577363178133965, -0.00425494322553277, -0.0022137651685625315, -0.03393333777785301, 0.01464337669312954, 0.01265198364853859, 0.005569262430071831, -0.029446065425872803, 0.029552273452281952, 0.0042814952321350574, 0.04519134759902954, 0.009485668502748013, 0.013521558605134487, 0.010873005725443363, 0.0064620706252753735, 0.015692176297307014, 0.018188055604696274, 0.040757179260253906, 0.03308367729187012, -0.001181559870019555, 0.006252974271774292, 0.03435816615819931, 0.0038234745152294636, -0.015307174064218998, 0.0036243353970348835, 0.01210766937583685, 0.008330660872161388, -0.008436868898570538, 0.006883582100272179, -0.043757542967796326, -0.010826540179550648, -0.0006530109676532447, 0.0019200347596779466, 0.012459482066333294, -0.014152166433632374, 0.02100255899131298, -0.01333569549024105, 0.0007675160886719823, 0.0202325526624918, 0.023617921397089958, -0.04192546010017395, -0.03634956106543541, -0.003070064354687929, -0.03547334671020508, -0.014404409565031528, -0.03595128282904625, 0.0025440047029405832, -0.012864398770034313, 0.01753753423690796, -0.008722301572561264, 0.025967765599489212, -0.017298568040132523, 0.015413382090628147, -0.036296457052230835, -0.008602817542850971, 0.03555300459265709, -0.019435996189713478, 0.02260894887149334, -0.01663476973772049, -0.006306077819317579, 0.0251048281788826, 0.01429820153862238, 0.0281981248408556, -0.02697673812508583, 0.03504851832985878, -0.0043810647912323475, -0.00012829963816329837, 0.05087345466017723, 0.013256039470434189, 0.008562990464270115, -0.03815509006381035, -0.019887378439307213, 0.011636373586952686, 0.0071557387709617615, -0.03226056694984436, 0.014922171831130981, 0.03188883885741234, 0.023564817383885384, 0.008649284020066261, 0.020245829597115517, 0.017364947125315666, 0.01220723893493414, 0.02279481291770935, 0.032711949199438095, 0.015254070982336998, -0.004473996348679066, 0.010726970620453358, 0.04434168338775635, 0.013767164200544357, -0.03494231030344963, 0.015771832317113876, 0.0005273043061606586, 0.0033389022573828697, 0.008244367316365242, 0.02072376385331154, 0.01424509845674038, -0.010202569887042046, 0.018652714788913727, -0.037889569997787476, -0.013966303318738937, 0.012572327628731728, 0.001573200454004109, 0.014258374460041523, -0.00759384548291564, 0.027136048302054405, 0.011762495152652264, 0.0159311443567276, 0.027215704321861267, 0.010574297048151493, -0.013176383450627327, 0.023843612521886826, 0.032791607081890106, 0.015001827850937843, 0.033853679895401, 0.040571313351392746, 0.03616369888186455, -0.004988439381122589, -0.014590272679924965, -0.010096362791955471, 0.0032476300839334726, 0.0011765813687816262, -0.006608105730265379, 0.009100666269659996, -0.002236998174339533, -0.009910499677062035, 0.009698083624243736, -0.0027730148285627365, 0.030242621898651123, 0.04014648497104645, -0.041075799614191055, -0.0010039940243586898, 0.002709954045712948, -0.023949820548295975, -0.015612521208822727, 0.030348829925060272, 0.012618794105947018, -0.03422540798783302, -0.01813495345413685, -0.007003065664321184, -0.009698083624243736, -0.007308412343263626, -0.02838398888707161, 0.003126487135887146, 0.0269900131970644, 0.026538630947470665, -0.053926922380924225, 0.01694011688232422, 0.044952377676963806, -0.015134586952626705, 0.0018868448678404093, -0.0008384594693779945, 0.025609314441680908, -0.016302870586514473, 0.008244367316365242, 0.01363440416753292, -0.03608404099941254, -0.0008231091196648777, -0.007580569479614496, 0.005821505561470985, 0.024573789909482002, 0.008436868898570538, -0.01691356487572193, 0.017484430223703384, -0.02438792586326599, -0.015771832317113876, -0.011357578448951244, 0.008085055276751518, -0.010448175482451916, 0.0009616768802516162, -0.004364469554275274, 0.03624335303902626, 0.024321546778082848, 0.0140990624204278, 0.006637976970523596, -0.030216069892048836, -0.030986076220870018, -0.02448085881769657, 0.02709622122347355, -0.04054476320743561, -0.03159676864743233, 0.012963968329131603, -0.01731184311211109, 0.029658479616045952, -0.0020610918290913105, -0.006870306096971035, 0.024772929027676582, -0.00891480315476656, 0.0058049107901751995, 0.02320636622607708, 0.018851853907108307, 0.03884543851017952, -0.004208477213978767, 0.0009575281292200089, -0.024427754804491997, -0.02398964762687683, 0.029817791655659676, -0.029552273452281952, 0.015001827850937843, 0.009671532548964024, -0.007461085915565491, -0.011131887324154377, 0.025157932192087173, -0.022847916930913925, 0.005370123311877251, 0.021148594096302986, 0.0005633982946164906, 0.0199139304459095, 0.006120214704424143, -0.021560149267315865, 0.0010861390037462115, -0.03693370148539543, -0.0006658720667473972, 0.002222062787041068, -0.036296457052230835, 0.009406013414263725, 0.0033073718659579754, -0.043651334941387177, 0.016661321744322777, -0.00732168834656477, -0.008104969747364521, -0.04718273878097534, -0.02089635096490383, 0.029313305392861366, -0.005675469990819693, -0.009392737410962582, 0.017683569341897964, 0.038792334496974945, 0.0019349702633917332, 0.030534693971276283, 0.028729163110256195, -0.00866919755935669, -0.0033637946471571922, -0.010408347472548485, -0.02809191681444645, 0.01631614752113819, -0.011662925593554974, 0.0026518716476857662, -0.0030949567444622517, -0.006614743731915951, 0.012917502783238888, 0.02878226712346077, -0.025516383349895477, -0.013275953941047192, -0.017895985394716263, 0.0024792843032628298, 0.010647314600646496, 0.01424509845674038, -0.008702387101948261, 0.016156835481524467, 0.009379461407661438, 0.011032317765057087, -0.014815963804721832, 0.02729536034166813, -0.002079346217215061, -0.02827778086066246, 0.031304698437452316, 0.01484251581132412, -0.022741708904504776, 0.02029893361032009, -0.014922171831130981, 0.014231822453439236, 0.0010222484124824405, 0.008841784670948982, -0.007195566780865192, 0.005234044510871172, 0.00214240700006485, 0.009864033199846745, -0.0013831884134560823, -0.01448406558483839, -0.039190616458654404, -0.006452113389968872, -0.032818157225847244, -0.009220149368047714, -0.01393975131213665, 0.014165442436933517, 0.017404774203896523, -0.00876876711845398, -0.0161435604095459, 0.018838578835129738, -0.01972806639969349, -0.003926363307982683, -0.006843754090368748, -0.010049897246062756, 0.013727336190640926, -0.011423958465456963, -0.03276505321264267, 0.016966668888926506, -0.0007650268380530179, 0.02706966921687126, -0.0007517508929595351, -0.007381430361419916, -0.010985851287841797, -0.003468342823907733, 0.004875593818724155, 0.00340860104188323, 0.0064886221662163734, 0.03478299826383591, 0.004009338095784187, -0.01374061219394207, 0.02390999160706997, -0.014908895827829838, 0.0023979691322892904, -0.023458609357476234, 0.0059044803492724895, -0.011623097583651543, -0.0030169603414833546, -0.010229121893644333, 0.02400292456150055, 0.011184990406036377, 0.026366043835878372, 0.014178718440234661, 0.03688059747219086, -0.0010629059979692101, -0.03273850306868553, -0.006943323649466038, -0.0036376111675053835, -0.012671898119151592, 0.0014080808032304049, -0.02499862015247345, 0.0230072271078825, 0.00482912827283144, 0.0009127217927016318, -0.0005629833904094994, 0.024958793073892593, -0.008304108865559101, -0.02101583406329155, -0.03236677497625351, 0.018891680985689163, 0.012937416322529316, -0.009976878762245178, -0.021029110997915268, 0.014404409565031528, -0.02100255899131298, -0.06446803361177444, 0.00837048888206482, -0.009140494279563427, 0.003025257959961891, -0.007700053043663502, 0.0031712932977825403, 0.021772563457489014, 0.020139621570706367, -0.005038224160671234, 0.026644838973879814, 0.01712598092854023, -0.021082215011119843, -0.0013815289130434394, -0.0067109945230185986, 0.008642645552754402, 0.0064886221662163734, 0.02530396729707718, 0.003916406072676182, 0.007859364151954651, 0.049545858055353165, -0.03518127650022507, -0.0162497665733099, 0.023378953337669373, 0.009664894081652164, 0.013375523500144482, 0.035898178815841675, 0.021560149267315865, 0.036588527262210846, 0.02878226712346077, 0.002232019789516926, 0.01642235368490219, 0.011477061547338963, 0.021692907437682152, 0.001183219370432198, -0.013415351510047913, -0.015599245205521584, 0.0009591876296326518, -0.00577172078192234, 0.004045846872031689, -0.013926475308835506, -0.02029893361032009, 0.008874975144863129, 0.016409078612923622, 0.03932337462902069, -0.03255263715982437, 0.010819901712238789, -0.0004625839937943965, -0.025556210428476334, -0.03446437418460846, -0.023657748475670815, 0.015612521208822727, 0.006564958952367306, 0.013753888197243214, 0.022157566621899605, -0.011264646425843239, -0.01940944418311119, 0.007905830629169941, 0.025118103250861168, 0.011092059314250946, 0.039827860891819, -0.013508282601833344, -0.016555113717913628, -0.01960858330130577, -0.047049980610609055, -0.018360644578933716, -0.006837116088718176, -0.01960858330130577, -0.014231822453439236, 0.025715522468090057, 0.025370346382260323, 0.042775120586156845, 0.015864765271544456, 0.029658479616045952, 0.01448406558483839, 0.01611700840294361, 0.020444968715310097, -0.014802687801420689, 0.021029110997915268, 0.022768260911107063, 0.004079036880284548, 0.0010604168055579066, -0.0023979691322892904, 0.013574662618339062, 0.01921030506491661, 0.0033554972615092993, 0.04667825251817703, 0.024560514837503433, 0.007235394790768623, 0.012618794105947018, -0.010096362791955471, 0.01488234382122755, 0.035685762763023376, -0.002150704385712743, 0.006087024696171284, -0.017975641414523125, 0.01433802954852581, 0.023166539147496223, 0.0009052540990523994, 0.0297646876424551, 0.009406013414263725, -0.002612043870612979, 0.024162234738469124, -0.011589907109737396, 0.017086151987314224, 0.002753100823611021, 0.01671442575752735, 0.020484795793890953, 0.021639803424477577, 0.004968525841832161, -0.001895142369903624, -0.030534693971276283, 0.038075435906648636, 0.028012262657284737, 0.03196849673986435, -0.016887012869119644, 0.010846453718841076, 0.017471155151724815, 0.007182290777564049, 0.02590138465166092, 0.031437456607818604, -0.024334823712706566, -0.008476695977151394, 0.004815852269530296, -0.03518127650022507, 0.02251601777970791, -0.007208842784166336, 0.019382892176508904, -0.005625685211271048, -0.0077066910453140736, -0.023139987140893936, 0.013587938621640205, -0.009246701374650002, 0.0316498726606369, -0.02191859856247902, -0.0057152980007231236, -0.0499972403049469, 0.001183219370432198, 0.01853323169052601, 0.006179956253618002, -0.03969510272145271, 0.012778105214238167, 0.029392961412668228, 0.024958793073892593, 0.013846819289028645, 0.018984613940119743, -0.03863302618265152, -0.018387196585536003, 0.01130447443574667, -0.039827860891819, -0.012426292523741722, -0.01644890569150448, 0.0003742159460671246, 0.009976878762245178, 0.027667086571455002, -0.0011964952573180199, -0.01642235368490219, -0.03953579068183899, -0.0012861080467700958, 0.009737911634147167, 0.019834274426102638, -0.0075341034680604935, 0.0060438779182732105, 0.021692907437682152, 0.02071048691868782, 0.0026186818722635508, 0.03454403206706047, -0.02846364490687847, -0.01124473288655281, 0.03239332512021065, 0.02448085881769657]" -How a Data Scientist Is Building a Time-Series Forecasting Pipeline Using TimescaleDB,"without the expense of moving the data out or pulling it back in”As part of these conversations, I learned aboutKdb+ from KX Systems. This is a high-performance columnar time-series database used by F1 teams to store and process sensor data collected from their cars (and simulations). Financial institutions also use it to store and process market data. More intriguing from my point of view was that Kdb+ included a reimplementation of tsfresh within the database.I understood the power of Kdb+, but its price was well out of my budget for these proofs of concept. Still, I liked the idea of a database that supported time-series data and could process it efficiently.I have been using PostgreSQL for years and including it in the technology stack I used in these proofs of concept. While other databases supported time series, TimescaleDB combined the familiarity of PostgreSQL, making it the clear choice.During the investigation of TimescaleDB, I realized I could use PostgreSQL’s support of custom extensions built in Python to allow me to call tsfresh functions directly within the database without the expense of moving the data out or pulling it back in.In addition, TimescaleDB’s time_bucket() function would allow me to perform my time-series aggregations for arbitrary time intervals (eg., on a daily or weekly basis) as opposed to estimating the time period from a set number of rows. This was a huge improvement over using either tsfresh in Python (where it worked at a set number of rows) or a window function in PostgreSQL.✨Editor's Note:Read our docs to learn how you can best use TimescaleDB’s time_bucket() hyperfunction.I then implemented all of the tsfresh functions as custom extensions in Python and built custom types to pass the necessary information into the function and custom aggregations to perform the aggregations to get the data ready for the time-series feature.As expected, there were significant benefits to moving this processing into the database. In addition to eliminating the time to extract and insert the data, the database handled running these calculations in parallel much more simply than trying to manage them within Python.“By releasing this as open source, I hope to help anyone [...] working on any sort of time-series problem to be able to fully leverage the power of TimescaleDB to manage their time-series data”It was not without its drawbacks,",https://www.timescale.com/blog/how-a-data-scientist-is-building-a-time-series-forecasting-pipeline-using-timescaledb-and-helping-others-perform-time-series-engineering-directly-in-the-database/,470,"[-0.010172197595238686, -0.03081134334206581, 0.06471429765224457, 0.011488753370940685, 0.05926467478275299, 0.006369904614984989, -0.01565457321703434, 0.027274327352643013, -0.015824873000383377, 0.01839248463511467, 0.038461778312921524, -0.024824615567922592, 0.004047918599098921, -0.03102094493806362, 0.042758598923683167, 0.03209514915943146, 0.006117728538811207, 0.0014745756052434444, -0.03468896076083183, 0.021405499428510666, -0.025243816897273064, 0.005298974458128214, -0.0014590192586183548, 0.021562699228525162, 0.009707145392894745, -0.03770197555422783, -0.02813892997801304, 0.033588554710149765, 0.0003528828965499997, -0.0763995572924614, -0.01780298352241516, -0.03180694952607155, -0.05074963718652725, 0.0058000520803034306, 0.0027068001218140125, 0.026291821151971817, 0.043963804841041565, 0.022898906841874123, 0.03078514337539673, -0.005531500559300184, 0.00011984508455498144, -0.0037957425229251385, -0.015261570923030376, 0.04718641936779022, -0.03387675806879997, -7.087337871780619e-05, -0.058793071657419205, -0.03523916378617287, -0.009202792309224606, 0.04726501926779747, -0.020658796653151512, 0.008953891694545746, -0.01636197604238987, -0.03240954875946045, 0.021890202537178993, -0.02194260247051716, -0.006261829286813736, 0.023632509633898735, 0.024877015501260757, -0.02419581264257431, 0.009648194536566734, -0.06067948043346405, 0.016139274463057518, 0.024353012442588806, -0.04440920799970627, 0.04587641358375549, -0.0005440618842840195, 0.038776181638240814, -0.05926467478275299, 0.03455796092748642, 0.018313884735107422, 0.01535327173769474, -0.015549772419035435, -0.019348789006471634, 0.038880981504917145, -0.07550875097513199, 0.0005424243863672018, 0.08462639153003693, 0.008770490996539593, -0.00783383660018444, 0.019165389239788055, 0.0028607258573174477, -0.016820477321743965, 0.03688977286219597, 0.022636905312538147, -0.03209514915943146, -0.022008102387189865, 0.013624063692986965, -0.00791898649185896, 0.012504007667303085, -0.036339569836854935, 0.04666241630911827, 0.02468051388859749, 0.028505733236670494, 0.01810428313910961, 0.03445316106081009, -0.017554081976413727, -0.02440541423857212, 0.0055511509999632835, 0.015798673033714294, -0.018719986081123352, -0.018981987610459328, -0.026881324127316475, 0.0016047575045377016, 0.06324709206819534, 0.024326812475919724, 0.007912436500191689, 0.013715763576328754, 0.009418943896889687, 0.028715332970023155, -0.041631992906332016, -0.013073860667645931, -0.031230544671416283, 0.018562786281108856, 0.0015351633774116635, -0.04768422245979309, -0.04367560148239136, -0.006726881023496389, -0.014724468812346458, 0.00837748870253563, -0.016833577305078506, 0.01408256497234106, -0.016728777438402176, 0.020488495007157326, 0.02245350368320942, -0.040898390114307404, 0.04136999323964119, -0.06518590450286865, -0.01837938465178013, -0.024746015667915344, 0.029475137591362, -0.009530294686555862, 0.01951909065246582, 0.008737740106880665, -0.00495182303711772, 0.01727898046374321, -0.04438300430774689, 0.0030031888745725155, 0.015405671671032906, -0.026959925889968872, -0.006055503152310848, -0.05973627790808678, 0.031571146100759506, -0.01950599066913128, -0.04205119609832764, 0.028898734599351883, -0.0031947772949934006, 0.046190813183784485, -0.02093389630317688, -0.007886236533522606, -0.002639662241563201, 0.015549772419035435, -0.00899974163621664, -0.006009652744978666, 0.04928242787718773, 0.01606067456305027, 0.01291665993630886, 0.05192863941192627, 0.0037859175354242325, -0.044252004474401474, -0.02397311106324196, 0.04239179566502571, -0.014252866618335247, 0.04485460743308067, -0.00652710534632206, -0.0015065070474520326, -0.03555356338620186, -0.05805946886539459, -0.08551719784736633, -0.019859692081809044, -0.009281393140554428, -0.08017237484455109, -0.005636301357299089, 0.04333500191569328, 0.02051469497382641, -0.013073860667645931, -0.019283289089798927, -0.04789382219314575, 0.017960183322429657, -0.062461089342832565, -0.07592795044183731, -0.019676290452480316, -0.00807618722319603, 0.021877100691199303, -0.017043178901076317, -0.016912179067730904, -0.017252780497074127, 0.029448937624692917, 0.021890202537178993, 0.024418514221906662, -0.0018438335973769426, 0.07178833335638046, -0.011796604841947556, 0.03303835168480873, 0.015942774713039398, -0.01382056437432766, 0.010650349780917168, 0.005495475605130196, -0.04972783103585243, 0.01545807160437107, 0.06686270982027054, -0.002128759864717722, 0.035422563552856445, 0.025073517113924026, 0.009582694619894028, 0.022191502153873444, 0.00591795239597559, -0.00691028218716383, -0.08845160901546478, -0.0821111798286438, -0.007296734023839235, 0.0038514179177582264, 0.006753081455826759, 0.012870809994637966, -0.010748599655926228, -0.023501509800553322, -0.050356633961200714, -0.026907524093985558, -0.02287270687520504, 0.006281479261815548, 0.012582608498632908, 0.03395535796880722, -0.01097785122692585, -0.005420150235295296, -0.015431871637701988, 0.024863915517926216, 0.0013239248655736446, -0.014711367897689342, 0.017658881843090057, -0.015209170989692211, -0.01498646941035986, -0.046898216009140015, -0.0023367232643067837, -0.04490700736641884, 0.022492803633213043, 0.018130484968423843, -0.007486684713512659, -0.04037438705563545, -0.027798328548669815, -0.03688977286219597, -0.010499699041247368, 0.0008621477754786611, -0.0023612859658896923, 0.020056193694472313, -0.015562872402369976, 0.01583797298371792, -0.01778988167643547, -0.03869757801294327, 0.018431786447763443, 0.021772300824522972, 0.0018209085101261735, -0.01810428313910961, -0.007008532527834177, -0.02194260247051716, -0.03070654347538948, -0.06508110463619232, -0.035317763686180115, 0.03754477575421333, -0.00645177997648716, 0.006130828522145748, -0.006779281422495842, -0.07660915702581406, -0.019571490585803986, -0.010198397561907768, -0.032173749059438705, 0.00930759310722351, 0.01920468918979168, -0.012549858540296555, 0.018733086064457893, -0.02288580685853958, 0.045719213783741, 0.03576316684484482, 0.0490204282104969, -0.06183228641748428, -0.021418599411845207, -0.011816254816949368, 0.00899974163621664, -0.0005088555044494569, 0.003478066064417362, -0.02753632701933384, 0.02133999951183796, -0.03088994324207306, -0.005312074441462755, -0.02407791092991829, 0.018746187910437584, 0.020160993561148643, -0.002503749215975404, 0.02764112874865532, 0.014017065055668354, -0.06775351613759995, -0.007283634040504694, -0.003586141625419259, 0.020409895107150078, -0.019139189273118973, 0.007958287373185158, 0.011370852589607239, -0.007329483982175589, 0.004280444700270891, -0.014331466518342495, -0.025047317147254944, 0.03681116923689842, 0.019086789339780807, 0.01051934901624918, -0.019676290452480316, -0.015327070839703083, 0.0006148840766400099, -0.0008023787522688508, -0.009504093788564205, -0.012111006304621696, 0.02693372592329979, -0.026147721335291862, -0.02753632701933384, 0.010335948318243027, -0.01229440700262785, 0.019794192165136337, 0.017632681876420975, 0.06770111620426178, -0.006084978114813566, -0.010689649730920792, -0.0714215338230133, -0.038173578679561615, -0.09735964983701706, -0.025951219722628593, 0.005682151298969984, 0.027588728815317154, -0.032671552151441574, -0.004804447293281555, 0.025152117013931274, 0.03977178409695625, -0.011161251924932003, -0.004359045065939426, -0.02673722431063652, 0.01184900477528572, 0.0040053436532616615, -0.02642282284796238, -0.05132603645324707, 0.007591485045850277, 0.010113246738910675, -0.03660156950354576, 0.02451021410524845, -0.010630699805915356, 0.042339395731687546, -0.06832991540431976, 0.019479790702462196, 0.02033129520714283, 0.03848797827959061, 0.03039214201271534, 0.00299991387873888, -0.028689133003354073, 0.02347530983388424, -0.009510643780231476, 0.005023873411118984, 0.040217187255620956, -0.014737568795681, 0.0300777405500412, -0.03607756644487381, -0.03416495770215988, -0.010185297578573227, -0.04663621634244919, -0.03893338143825531, -0.009949496015906334, 0.0496230311691761, 0.005770576652139425, 0.004306645132601261, -0.021405499428510666, -0.0011921055847778916, -0.03937878459692001, 0.012425407767295837, -0.057168666273355484, 0.01860208623111248, 0.03275015205144882, -0.01708247885107994, -0.009772645309567451, -0.03356235474348068, -0.029658537358045578, -0.03492476046085358, 0.03586796671152115, 0.05947427451610565, -0.009576144628226757, 0.05376264825463295, 0.05591106042265892, 0.015104370191693306, 0.007401534356176853, -0.01941429078578949, 0.0660243034362793, 0.04708161950111389, 0.030968543142080307, 0.024444714188575745, -0.019492890685796738, 0.026593122631311417, 0.013899164274334908, -0.0006292122998274863, -0.007447384763509035, -0.005413600243628025, -0.011953805573284626, 0.02377661131322384, 0.00033630311372689903, 0.02643592283129692, 0.05984107777476311, 0.010565198957920074, -0.025558218359947205, -0.0040446436032652855, -0.04207739606499672, -0.028427131474018097, 0.014776868745684624, 0.018575886264443398, 0.022741705179214478, 0.035422563552856445, -0.030261140316724777, -0.027798328548669815, -0.01259570848196745, -0.023606309667229652, 0.04524761065840721, -0.05711626634001732, 0.03555356338620186, -0.028584333136677742, -0.07032112777233124, 0.07121193408966064, 0.005790227092802525, 0.06701990962028503, -0.008488839492201805, -0.01718728058040142, -0.04063639044761658, -0.00828578881919384, -0.030313540250062943, 0.04818202555179596, 0.03833077847957611, -0.033588554710149765, 0.0015343446284532547, -0.03230474889278412, -0.011639404110610485, -0.002798500470817089, 0.022414203733205795, -0.024772215634584427, -0.015340170823037624, 0.009379643946886063, 0.04239179566502571, -0.022623805329203606, 0.009215893223881721, 0.02855813317000866, -0.026907524093985558, 0.019060589373111725, -0.01397776510566473, 0.024143412709236145, -0.025479618459939957, -0.01820908486843109, -0.025348616763949394, -0.009392743930220604, 0.021916402503848076, -0.014174265787005424, 0.048837028443813324, -0.002733000088483095, -0.03833077847957611, -0.0009079979499801993, -0.007781436201184988, -0.05701146647334099, 0.04097699001431465, -0.008174438029527664, 0.026986125856637955, -0.029475137591362, -0.0024349738378077745, 0.02774592861533165, -0.08163958042860031, -0.013741963542997837, 0.012864260002970695, -0.03432215750217438, 0.052190642803907394, 0.044959407299757004, 0.03314315527677536, -0.023331208154559135, -0.0068709817714989185, 0.026278721168637276, -0.012923209927976131, -0.009883996099233627, -0.03395535796880722, -0.0038776181172579527, 0.016021374613046646, 0.002751012798398733, -0.0085346894338727, -0.004742221906781197, -0.0039856936782598495, -0.026881324127316475, 0.003022839082404971, 0.0439114049077034, -0.012517108581960201, 0.015693873167037964, 0.041920196264982224, -0.018654486164450645, 0.009726795367896557, 0.004057744052261114, -0.02642282284796238, -0.000909635447897017, 0.03144014626741409, -0.014475567266345024, -0.009399293921887875, 0.031361546367406845, -0.08174438029527664, -0.02499491535127163, -0.020305093377828598, -0.006825131829828024, 0.0353439636528492, 0.00990364607423544, 0.006284754257649183, 0.04564061015844345, -0.04870602488517761, 0.0467672161757946, -0.01828768476843834, -0.019086789339780807, -0.013172111473977566, -0.030968543142080307, -0.02986813895404339, -0.00120029307436198, 0.04653141647577286, 0.03474136069417, 0.006949582137167454, 0.023344308137893677, -0.021706800907850266, -0.022086702287197113, -0.009805395267903805, -0.011554253287613392, -0.012091356329619884, -0.017305180430412292, -0.05942187458276749, 0.006333879195153713, -0.016545377671718597, 0.006258554290980101, -0.047422219067811966, -0.0150388702750206, -0.0033634405117481947, -0.03364095464348793, 0.02570232003927231, -0.0080827372148633, 0.010349048301577568, -0.015313970856368542, -0.009680944494903088, -0.015104370191693306, -0.017737481743097305, -0.02063259668648243, -0.04108178988099098, 0.02246660366654396, 0.018523486331105232, 0.013702663592994213, 0.0009341980912722647, 0.029632337391376495, 0.0404529869556427, -0.007087132893502712, 0.015078170225024223, -0.01851038634777069, -0.03010394051671028, 0.02916073612868786, 0.028112730011343956, -0.030208740383386612, 0.010689649730920792, 0.005728001706302166, 0.018628286197781563, 0.0312043447047472, 0.01890338771045208, -0.001852021086961031, 0.02756252884864807, 0.0036450920160859823, 0.025125917047262192, -0.011665604077279568, -0.0003917737049050629, -0.010742049664258957, 0.00017224533075932413, 0.02144479937851429, 0.004175644367933273, -0.05336964875459671, -0.03162354603409767, 0.0058852024376392365, 0.01565457321703434, 0.0033306905534118414, 0.003253727685660124, 0.009929846040904522, 0.030339740216732025, 0.0006083340849727392, -0.027483927085995674, -0.022401103749871254, 0.022034302353858948, -0.00034060157486237586, -0.02693372592329979, 0.01860208623111248, -0.03749237582087517, 0.07362233847379684, -0.020449195057153702, -0.009340343065559864, 0.02642282284796238, 0.01655847765505314, 0.030601741746068, -0.02418271265923977, -0.03675876930356026, 0.0008678790181875229, -0.020815996453166008, 0.0018438335973769426, 0.0415009930729866, 0.03324795514345169, -0.0008957166573964059, 0.0074997846968472, -0.001739033032208681, 0.017737481743097305, 0.01158700417727232, -0.007761786226183176, -0.010794450528919697, -0.04388520494103432, -0.03091614320874214, 0.040295787155628204, 0.02634422294795513, -0.005256399512290955, 0.053815048187971115, -0.015340170823037624, 0.04231319576501846, 0.013466862961649895, -0.005279324483126402, -0.042024996131658554, -0.03421735763549805, -0.007237783633172512, -0.033483754843473434, -0.013159011490643024, 0.020095493644475937, -0.02876773290336132, -0.020475395023822784, -0.0008400413789786398, -0.006022753193974495, -0.03861897811293602, 0.019348789006471634, 0.03992898389697075, -0.03825217857956886, -0.02234870381653309, -0.027876930311322212, 0.03783297538757324, 0.016702577471733093, -0.0037990177515894175, 0.027012325823307037, 0.02092079631984234, 0.018444886431097984, 0.033588554710149765, 0.06497630476951599, 0.013047660700976849, -0.007381884381175041, 0.004627596586942673, 0.010683099739253521, 0.02724812738597393, 0.026278721168637276, -0.009851246140897274, 0.0045489962212741375, -0.019545290619134903, -0.020003793761134148, 0.03895958140492439, -0.013263811357319355, -0.01980729214847088, 0.010407998226583004, -0.014462467283010483, 0.07634715735912323, 0.00637645460665226, 0.03395535796880722, -0.015117470175027847, 0.0004157222283538431, -0.019938291981816292, 0.03801637515425682, 0.0029180385172367096, -0.01382056437432766, 0.009287943132221699, -0.011547703295946121, 0.0013050935231149197, -0.014357666485011578, -0.00874429102987051, 0.0071657332591712475, -0.0035697666462510824, 0.05174523964524269, 0.04147479310631752, -0.035632167011499405, 0.007080582901835442, 0.03364095464348793, 0.007656985428184271, 0.03130914643406868, -0.006890632212162018, 0.011141601949930191, -0.010886150412261486, 0.004018443636596203, 0.07346513867378235, -0.026003621518611908, -0.00828578881919384, -0.030549341812729836, -0.003455141093581915, -0.004286994691938162, -0.008737740106880665, -0.001706282957457006, 0.024038610979914665, 0.019781092181801796, 0.012399207800626755, 0.015209170989692211, -0.015104370191693306, 0.006045678164809942, 0.001101223868317902, 0.0035894166212528944, -0.028086530044674873, 0.0014508317690342665, 0.046295616775751114, -0.021575801074504852, -0.039090581238269806, 0.02115659788250923, -0.01021149754524231, -0.05305524542927742, -0.0312043447047472, -0.0045981211587786674, -0.0005006679566577077, 0.007224683649837971, 0.01657157763838768, 0.037675775587558746, -0.037335172295570374, -0.035841766744852066, 0.011154701933264732, -0.018864087760448456, 0.021182797849178314, -0.01037524826824665, -0.015405671671032906, -0.014829268679022789, 0.018130484968423843, -0.010172197595238686, -0.02348840981721878, -0.05313384532928467, 0.0012977247824892402, 0.013637163676321507, -0.03539636358618736, 0.01637507602572441, -0.01678117737174034, 0.014960269443690777, 0.0544438511133194, 0.019754892215132713, -0.013270361348986626, 0.009641644544899464, 0.007545635104179382, 0.01092545036226511, -0.025990521535277367, 0.03246195241808891, -0.008613290265202522, -0.024353012442588806, 0.01336206216365099, -0.0526360459625721, 0.007755236234515905, -0.034426961094141006, 0.00029290918610058725, 0.015523572452366352, 0.014449367299675941, 0.015379471704363823, -0.05336964875459671, 0.029553737491369247, 0.03193794935941696, 0.014658967964351177, -0.007322933990508318, 0.00441799545660615, 0.010755149647593498, -0.010191847570240498, 0.0024120486341416836, 0.001556450966745615, -0.010748599655926228, -0.028924934566020966, -0.02054089494049549, -0.03992898389697075, 0.014619668014347553, -0.011718004010617733, 0.02918693609535694, -0.024012411013245583, 0.01790778338909149, -0.00153761962428689, 0.030130140483379364, 0.0014131690841168165, -0.003009738866239786, -0.005790227092802525, -0.0422607958316803, 0.020462295040488243, -0.012255107052624226, 0.003704042173922062, 0.0006807937752455473, 0.052007243037223816, 0.0050566233694553375, 0.006844781804829836, 0.00270843761973083, 0.040217187255620956, 0.009340343065559864, 0.02093389630317688, 0.003880893113091588, -0.026160821318626404, -0.03691597282886505, -0.0025676118675619364, -0.01810428313910961, -0.014475567266345024, 0.007787986192852259, -0.03225234895944595, -0.0392477810382843, -0.015078170225024223, -0.029841938987374306, -0.029134536162018776, 0.05012083426117897, 0.006193053908646107, 0.021798500791192055, -0.0012395932571962476, -0.09363923221826553, -0.029108334332704544, 0.01992519199848175, 0.017960183322429657, 0.01514367014169693, -0.007591485045850277, 0.02276790514588356, 0.05166663974523544, 0.024038610979914665, -0.014868568629026413, -0.006396104581654072, -0.03151874616742134, -0.025034217163920403, 0.004657071549445391, -0.018353184685111046, 0.03385055810213089, 0.02610842138528824, 0.01848418638110161, 0.01666327752172947, 0.013637163676321507, -0.013335862196981907, 0.00875084102153778, -0.04506421089172363, 0.052007243037223816, 0.02491631545126438, -0.02145789936184883, -0.02613462135195732, 0.02468051388859749, -0.015169870108366013, -0.004434370435774326, 0.019243989139795303, -0.0032504526898264885, 0.006497630383819342, 0.03141394630074501, -0.013335862196981907, 0.04708161950111389, -0.006975782569497824, 0.009117642417550087, 0.018746187910437584, 0.002778850495815277, -0.04302059859037399, -0.04789382219314575, 0.02297750674188137, -0.049649231135845184, 0.04239179566502571, -0.030418341979384422, 0.021916402503848076, 0.021182797849178314, -0.02437921240925789, -0.02022649347782135, 0.05664466321468353, 0.014148065820336342, 0.011017151176929474, 0.02681582421064377, 0.0024087736383080482, 0.006206153891980648, -0.03387675806879997, 0.006232353858649731, 0.004326295107603073, 0.013388262130320072, -0.017724381759762764, -0.004712746944278479, 0.016414375975728035, -0.028636733070015907, -0.01604757457971573, -0.00884909089654684, -0.004002068657428026, 0.02245350368320942, 0.01769818179309368, -0.010650349780917168, 0.009923296049237251, 0.02764112874865532, 0.012366457842290401, -0.024431614205241203, 0.0239862110465765, -0.0012076618149876595, 0.0017095579532906413, 0.0071853832341730595, -0.020684996619820595, -0.004833922255784273, 0.021615101024508476, -0.020108593627810478, -0.03193794935941696, 0.011102301999926567, -0.015693873167037964, -0.004866672679781914, -0.014265966601669788, 0.007650435436517, 0.03254055231809616, 0.015366371721029282, 0.040112387388944626, -0.01869378611445427, -0.015615272335708141, 0.00884909089654684, 0.014567268081009388, 0.02001689374446869, 0.0038088427390903234, 0.009091442450881004, -0.027876930311322212, -0.014855468645691872, 0.026475222781300545, 0.022283203899860382, 0.01697767898440361, 0.020462295040488243, -0.01810428313910961, -0.021497199311852455, -0.004355770070105791, 0.002592174569144845, 0.0017046454595401883, 0.006081703118979931, -0.003782642539590597, -0.017016978934407234, 0.008010687306523323, -0.005266224499791861, 0.01077479962259531, -0.0016866328660398722, 0.03240954875946045, -0.005669051315635443, -0.018824787810444832, -0.014776868745684624, -0.000756937894038856, -0.0068513317964971066, 0.0027493753004819155, 0.0351867638528347, -0.006707231048494577, 0.003576316637918353, 0.02004309371113777, 0.009883996099233627, 0.016715677455067635, -0.01810428313910961, 0.007781436201184988, 0.040112387388944626, -0.0017341205384582281, 0.030968543142080307, -0.013990865088999271, -0.034086357802152634, 0.0071657332591712475, -0.0039038180839270353, 0.031466346234083176, 0.05339584872126579, -0.00691028218716383, 0.021497199311852455, 0.01367646362632513, -0.01106955111026764, 0.03088994324207306, -0.019558390602469444, -0.00421821977943182, 0.012314056977629662, -0.0210517980158329, 0.022008102387189865, 0.015916574746370316, -0.011325002647936344, -0.025532018393278122, 0.07199793308973312, -0.006039128173142672, 0.05512505769729614, -0.06288029253482819, -0.004149444401264191, -0.003252090187743306, 0.012255107052624226, -0.006559855304658413, 0.00884254090487957, 0.028898734599351883, -0.007656985428184271, 0.0025102992076426744, -0.020200293511152267, -0.01636197604238987, 0.001635870081372559, -0.0031636646017432213, 0.016322676092386246, 0.0008441351819783449, 0.022990606725215912, 0.026763424277305603, 0.031178144738078117, 0.07713315635919571, 0.022283203899860382, -0.004470395855605602, 0.011803154833614826, -0.0040446436032652855, 0.007532535120844841, -0.014200465753674507, 0.011783504858613014, 0.03956218436360359, 0.006261829286813736, 0.012680859304964542, -0.0074408347718417645, -0.006949582137167454, -0.0017177454428747296, -0.011049901135265827, 0.011822804808616638, 0.019257089123129845, 0.008783590979874134, -0.002657674951478839, 0.030732743442058563, -0.004411445464938879, 0.009805395267903805, 0.03833077847957611, 0.02756252884864807, -0.01746238023042679, 0.008148238062858582, -0.01158045418560505, -0.00045686462544836104, -0.0055511509999632835, -0.016492975875735283, 0.01738378033041954, 0.043125398457050323, 0.01076824963092804, -0.011704904027283192, -0.012222357094287872, 0.05001603066921234, 0.0005256399163044989, 0.016230976209044456, 0.006536930333822966, -0.0048437477089464664, -0.021929502487182617, 0.0001131927128881216, 0.001668620272539556, 0.017855383455753326, -0.02500801533460617, -0.01930948905646801, -0.04553581029176712, -0.014567268081009388, -0.0064124795608222485, 0.03707317262887955, 0.0017144704470410943, -0.00048224598867818713, 0.024615013971924782, 0.015182970091700554, -0.00010132078023161739, -0.010276997461915016, -0.01645367592573166, 0.014292166568338871, -0.0005219555459916592, 0.0058295270428061485, 0.022636905312538147, 0.005426700226962566, -0.010191847570240498, 0.006514005362987518, -0.031754545867443085, -0.006923382170498371, 0.011004051193594933, 0.008311988785862923, 0.014265966601669788, -0.018536586314439774, -0.02276790514588356, -0.009956046007573605, 0.03361475467681885, 0.031544946134090424, 0.03576316684484482, -0.020056193694472313, 0.0008777040638960898, 0.001617038738913834, 0.02631802298128605, 0.026566922664642334, 0.02866293303668499, 0.007715935818850994, -0.01351926289498806, 0.04116038978099823, 0.001953546656295657, -0.005207274109125137, 0.011344652622938156, 0.03285495191812515, 0.01566767320036888, -0.012746359221637249, -0.006019477732479572, -0.02183780074119568, -0.015287770889699459, 0.0020698097068816423, 0.001865121186710894, 0.034426961094141006, -0.017567181959748268, 0.015733173117041588, -0.013938465155661106, -0.01169180404394865, 0.004850297700613737, 0.020396795123815536, -0.04220839589834213, -0.011495303362607956, 0.0010848487727344036, -0.030261140316724777, 0.018929587677121162, 0.013250711373984814, -0.023409808054566383, -0.00945169385522604, 0.027510127052664757, -0.05292424559593201, 0.008141688071191311, -0.03159734606742859, 0.02845333144068718, -0.03809497505426407, -0.029841938987374306, 0.02866293303668499, -0.00449987081810832, 0.027588728815317154, -0.023619409650564194, 0.017056278884410858, -0.0036156168207526207, 0.006831681821495295, 0.004601396154612303, -0.040007587522268295, 0.02082909643650055, -0.021602001041173935, 0.014423167333006859, 0.04422580450773239, 0.0164667759090662, 0.007958287373185158, -0.03254055231809616, -0.015890372917056084, -0.0009956046706065536, 0.028951134532690048, 0.0048535726964473724, 0.002230285434052348, 0.014488667249679565, 0.03636576980352402, -0.006645005661994219, 0.0018323709955438972, 0.03377195820212364, 0.013034560717642307, 0.03707317262887955, 0.04647901654243469, -0.001761958235874772, 0.021274499595165253, 0.015562872402369976, 0.0345841608941555, -0.0014557442627847195, -0.003245539963245392, 0.024431614205241203, 0.010263897478580475, -0.032566752284765244, -0.0016653452767059207, -0.012405757792294025, 0.015025769360363483, -0.007506334688514471, 0.0207504965364933, -0.038566578179597855, 0.02051469497382641, 0.029239336028695107, -0.005050073377788067, 0.008220287971198559, -0.006595880724489689, 0.01184245478361845, -0.011049901135265827, 0.01780298352241516, -0.012418857775628567, -0.013250711373984814, -0.01505197025835514, 0.028034130111336708, 0.04095079004764557, 0.003540291450917721, 0.018680686131119728, 0.0491776280105114, 0.019086789339780807, 0.022689305245876312, -0.008724640123546124, -0.010879600420594215, 0.002410411136224866, -0.0026969751343131065, 0.0025250366888940334, 0.007853486575186253, 0.02735292725265026, -0.016427475959062576, 0.0011462552938610315, 0.01245160773396492, 0.036339569836854935, -0.006209428887814283, -0.008410238660871983, -0.02591191977262497, 0.004454020876437426, 0.001706282957457006, -0.02276790514588356, 0.045588210225105286, 0.014960269443690777, -0.029448937624692917, -0.034086357802152634, -0.019846592098474503, -0.018824787810444832, -0.003962768241763115, -0.022440403699874878, -0.011364302597939968, -0.01062414888292551, 0.032173749059438705, -0.038068775087594986, 0.023200208321213722, 0.037256572395563126, -0.005822977051138878, 0.010165647603571415, -0.023737309500575066, 0.02876773290336132, 0.008619840256869793, -0.008763941004872322, -0.007650435436517, -0.020003793761134148, 0.007604585494846106, 0.007670085411518812, -0.014554167166352272, 0.033378954976797104, -0.004689821973443031, -0.03010394051671028, -0.017056278884410858, -0.03780677542090416, -0.002254847902804613, -0.006831681821495295, -0.01408256497234106, -0.007545635104179382, 0.01658467762172222, 0.0003160389605909586, 0.06780591607093811, -0.004008618649095297, 0.01128570269793272, 0.023016806691884995, -0.02613462135195732, -0.022335603833198547, -0.027274327352643013, -0.0017079204553738236, -0.023147808387875557, -0.03859277814626694, 0.010545548982918262, -0.01657157763838768, 0.0031489271204918623, -0.03544876351952553, -0.008357838727533817, 0.05012083426117897, -0.005462725181132555, 0.013270361348986626, 0.027300527319312096, 0.014318366535007954, 0.007958287373185158, 0.004735671915113926, 0.0004818366141989827, 0.00391036830842495, -0.034086357802152634, 0.03702077269554138, -0.016689477488398552, 0.025047317147254944, -0.022532105445861816, 0.0010676549281924963, -0.017030078917741776, 0.0050566233694553375, -0.005177799146622419, 0.020357495173811913, 0.012530208565294743, -0.00822683796286583, -0.0071853832341730595, 0.011816254816949368, -0.018025683239102364, -0.02063259668648243, -0.02664552442729473, -0.015340170823037624, 0.0011364303063601255, -0.030575541779398918, 0.015693873167037964, 0.018222184851765633, -0.013172111473977566, 0.03974558413028717, 0.00688408175483346, -0.009621994569897652, -0.012327156960964203, -0.023043006658554077, -0.0005583901074714959, -0.01427906658500433, -0.0179732833057642, 0.030418341979384422, 0.005511850584298372, 0.011121951974928379, 0.008855640888214111, 0.030208740383386612, -0.032592952251434326, -0.008626390248537064, -0.010807550512254238, 0.005505300592631102, 0.033798158168792725, -0.013807464390993118, -0.009811945259571075, 0.012766009196639061, 0.017737481743097305, -0.005023873411118984, 0.044959407299757004, -0.01566767320036888, -0.012792209163308144, -0.019492890685796738, 0.013086960650980473, 0.0008449539309367537, 0.03537016361951828, 0.003445316106081009, 0.02672412432730198, 0.029815739020705223, -0.01830078475177288, -0.03474136069417, 0.040400587022304535, -0.011809704825282097, -0.03966698423027992, 0.027379127219319344, 0.0006103809573687613, -0.004781522322446108, 0.026200121268630028, -0.007303284015506506, 0.023396708071231842, 0.004634146578609943, 0.011770404875278473, -0.0018438335973769426, 0.011010601185262203, -0.005832802038639784, 0.033483754843473434, 0.008652590215206146, -0.033090755343437195, -0.015877272933721542, 0.03893338143825531, -0.012006205506622791, -0.002204085234552622, 0.007722485810518265, -0.0009505731868557632, 0.014632767997682095, -0.01606067456305027, -0.048941828310489655, -0.006825131829828024, -0.019571490585803986, 0.0078010861761868, -0.00929449312388897, -0.026003621518611908, 0.042339395731687546, 0.0012535121059045196, -0.007486684713512659, 0.010604498907923698, 0.006212703883647919, 0.025125917047262192, 0.010434198193252087, -0.003273377660661936, -0.0063273292034864426, 0.0003487891226541251, 0.008626390248537064, 0.017147978767752647, -0.023305008187890053, 0.013859864324331284, -0.006975782569497824, 0.003098164452239871, 0.01726588048040867, 0.012333706952631474, 0.00026261527091264725, -0.010486599057912827, -0.011338102631270885, -0.009694045409560204, 0.03463656082749367, 0.013558562844991684, 0.04003378748893738, 0.01468516793102026, 0.02693372592329979, 0.011501853354275227, 0.05449625477194786, -0.03953598439693451, -0.008488839492201805, -0.008449539542198181, 0.006255278829485178, -0.018418684601783752, -0.005426700226962566, 0.002526674186810851, 0.013322762213647366, -0.010014996863901615, -0.001218305667862296, -0.01097785122692585, 0.018864087760448456, 0.0312829464673996, -0.010794450528919697, -0.01983349211513996, -0.00829233881086111, 0.006422305013984442, 0.014934069477021694, -0.0039758686907589436, 0.04653141647577286, -0.03361475467681885, -0.06801551580429077, 0.0002476730151101947, 0.006929932162165642, -0.0016899078618735075, -0.0170693788677454, 0.0034584160894155502, -0.007336033973842859, -0.0019486340461298823, 0.03222614899277687, 0.012084806337952614, 0.00017838599160313606, -0.01615237444639206, 0.0013902439968660474, 0.022492803633213043, 0.03364095464348793, -0.004755321890115738, -0.01870688609778881, 0.0063830045983195305, -0.019440490752458572, 0.03605136647820473, -0.03371955826878548, -0.013912264257669449, -0.0015556322177872062, 0.018536586314439774, -0.025676120072603226, 0.050278034061193466, 0.0018503835890442133, 0.0051122987642884254, 0.0030637767631560564, 0.005318624898791313, 0.011213651858270168, -0.03547496348619461, 0.012006205506622791, -0.006435404997318983, 0.00899974163621664, -0.027876930311322212, -0.011036801151931286, -0.001842196099460125, 0.016545377671718597, -0.013257261365652084, -0.008822890929877758, -0.018051883205771446, 0.0028181506786495447, 0.018457986414432526, -0.02469361387193203, 0.022388003766536713, -0.009471343830227852, -0.010054296813905239, -0.005881927441805601, -0.047920022159814835, 0.04729121923446655, 0.008711540140211582, 0.05439145117998123, 0.022388003766536713, 0.005475825630128384, 0.00224993540905416, 0.006504180375486612, 0.024575714021921158, 0.006304404232650995, 0.0007663535652682185, -0.0045391712337732315, -0.005682151298969984, -0.023553909733891487, -0.03193794935941696, -0.041317593306303024, 0.003240627469494939, -0.0012870809296146035, -0.01604757457971573, 0.02468051388859749, 0.0002615918347146362, 0.02897733449935913, 0.025361718609929085, 0.01729208044707775, -0.014213565737009048, 0.006707231048494577, -0.0005448806332424283, -0.02437921240925789, 0.01789468340575695, 0.029632337391376495, -0.0013476687017828226, 0.001953546656295657, -0.00107338628731668, 0.023527709767222404, 0.0024267863482236862, -0.00884254090487957, 0.01890338771045208, 0.02986813895404339, -0.0014426441630348563, 0.008187538012862206, -0.004555546212941408, -0.0010619236854836345, 0.020383695140480995, -0.0033601655159145594, 4.712951704277657e-05, -0.00822683796286583, -0.017121778801083565, 0.015864172950387, 0.0018012584187090397, 0.04514281079173088, 0.016938379034399986, 0.008030337281525135, 0.021811600774526596, 0.010172197595238686, 0.01321796141564846, -0.005937602370977402, 0.021706800907850266, 0.0002869731979444623, 0.013047660700976849, -0.01819598488509655, -0.010100146755576134, -7.240854029078037e-05, 0.030549341812729836, 0.0028754633385688066, 0.028584333136677742, -0.04231319576501846, 0.025021115317940712, 5.1581489969976246e-05, 0.006785831414163113, 0.022951306775212288, 0.006520555354654789, -0.008004137314856052, -0.02785072848200798, 0.01636197604238987, -0.019152289256453514, 0.018719986081123352, -0.011934155598282814, 0.03741377219557762, 0.02580711990594864, 0.0179732833057642, -0.013886064291000366, 0.018156684935092926, -0.04144859313964844, 0.023737309500575066, -0.02735292725265026, 0.0050566233694553375, -0.01789468340575695, 0.0012035680701956153, 0.03893338143825531, 0.01991209201514721, -0.02166750095784664, 0.017658881843090057, 0.04003378748893738, 0.021562699228525162, 0.00675963144749403, 0.010322848334908485, -0.03141394630074501, -0.006019477732479572, 0.026462122797966003, -0.01921778917312622, -0.019243989139795303, -0.02185090072453022, 0.005973627790808678, -0.00023477764625567943, 0.0022204602137207985, -0.020501594990491867, 0.008908041752874851, -0.02561061829328537, 0.002410411136224866, 0.02287270687520504, -0.00457519618794322, -0.0015179695328697562, 0.020973198115825653, 0.0043393950909376144, 0.021602001041173935, -0.003422390902414918, 0.033693354576826096, 0.026370422914624214, 0.01220270711928606, 0.03626096993684769, 0.010165647603571415]" -How a Data Scientist Is Building a Time-Series Forecasting Pipeline Using TimescaleDB,"however. First, PL/Python is untrusted in PostgreSQL and limits the types of users that could use these functions. More importantly, each time the function was called, the Python interpreter was started, and the tsfresh library and its dependencies were loaded. This meant that most of the processing time was spent on getting ready to perform the calculations instead of the actual calculations. The speedup was significantly less than expected.At this point, I saw promise in this approach but needed to make it faster. This led me to reimplement the tsfresh functions in C and create custom C extensions for PostgreSQL and TimescaleDB. With these C extensions, I was able to generate a performance improvement between 10-100 times faster than the corresponding performance of the PL/Python version.✨Editor's Note:If you want to extend aggregate functions in PostgreSQL but find it daunting to create and maintain them in C,check out this video where we explain how PGX can help create, test, and deploy aggregates using Rust.Current Deployment & Future PlansWhen I saw this performance, I felt I needed to clean up my code and make it available to the community as open source. This led to two packages:etu, which contains the reimplementation of tsfresh feature calculators in C, andpgetu, which includes the C extension that wraps etu and makes it available as functions in PostgreSQL and TimescaleDB.As an example, these functions can be called in a SELECT statement in TimescaleDB as:SELECT time_bucket(interval '1 months', date) AS month, absolute_sum_of_changes(amount, date) AS amount_asoc, approximate_entropy(amount, date, 1, 0.1) AS amount_ae, fft_aggregated(amount, date, ARRAY['centroid', 'variance', 'skew', 'kurtosis']) as ammount_fft_agg, median(amount) as median_amount, mode(amount) as mode_amount FROM transactions GROUP BY month ORDER BY month;Here’s another example: this is looking at the power output of a windmill based on wind speed.SELECT TIME_BUCKET(interval '1 hour, time) AS hour, autocorrelation(windspeed, time, 1) AS windspeed_autocorrelation_1, autocorrelation(output, time, 1) AS output_autocorrelation_1, count_above_mean(output) AS output_cam, count_below_mean(output) AS output_cbm, energy(windspeed, time) AS windspeed_energy, fft_coefficient(windspeed, time, ARRAY[1, 1, 2, 2], ARRAY['real', 'imag', 'real', 'imag'] AS windspeed_fft_coeff_json, number_cwt_peaks(windspeed, time, 5) AS windspeed_number_wavelet_peaks_5, number_cwt_peaks(output, time, 5) AS output_number_wavelet_peaks_5 FROM sensor_data GROUP BY hour ORDER BY hour;This makes it really easy to perform time-series feature engineering directly in the database.By releasing this as open source, I hope to help anyone working as a data scientist on time-series-like problems quickly generate features directly within",https://www.timescale.com/blog/how-a-data-scientist-is-building-a-time-series-forecasting-pipeline-using-timescaledb-and-helping-others-perform-time-series-engineering-directly-in-the-database/,642,"[-0.02721567638218403, -0.023301947861909866, 0.05409826710820198, 0.00501706637442112, 0.023524003103375435, 0.010963989421725273, -0.011755062267184258, 0.009555324912071228, -0.011241558939218521, 0.005783851724117994, 0.03439084440469742, -0.033558133989572525, 0.014725054614245892, -0.014225429855287075, 0.025897221639752388, 0.06611701846122742, -0.00716128945350647, -0.033391594886779785, -0.03613952919840813, 0.05171117186546326, 0.0043439604341983795, -0.03891522437334061, -0.0012846257304772735, 0.014100523665547371, -0.016654161736369133, -0.0370277538895607, -0.009576142765581608, 0.0686151459813118, -0.011137470602989197, -0.04405025765299797, -0.0007633157656528056, -0.039081767201423645, -0.005603431258350611, -0.029533380642533302, 0.00786215253174305, 0.006956581957638264, 0.04593772813677788, 0.021775316447019577, 0.02120629884302616, -0.017459113150835037, 0.007758063729852438, -0.02410689927637577, -0.013698047958314419, -0.023829329758882523, -0.010415790602564812, 0.002858964493498206, -0.011526067741215229, -0.03691672533750534, 0.010429668240249157, 0.01972130313515663, -0.02696586400270462, 0.013260875828564167, -0.03258664160966873, 0.002237902954220772, 0.029200296849012375, -0.04094148054718971, -0.006571454461663961, 0.01723705790936947, 0.015085894614458084, -0.04005325958132744, 0.013163726776838303, -0.025258811190724373, 0.0427456796169281, -0.0052807568572461605, -0.017917102202773094, 0.0423293262720108, -0.013323329389095306, 0.025133905932307243, -0.032170288264751434, 0.017361963167786598, 0.01849999837577343, 0.021719802170991898, 0.03291972726583481, -0.05501424893736839, 0.04960164427757263, -0.04529931768774986, 0.012483681552112103, 0.05679069086909294, -0.00781357754021883, -0.004520910792052746, 0.016654161736369133, -0.0006041470333002508, -0.013816014863550663, 0.040802694857120514, 0.03594523295760155, -0.0569017194211483, -0.03827681392431259, -0.005072580184787512, -0.026702173054218292, 0.033391594886779785, -0.06306375563144684, 0.04824155569076538, 0.00501359673216939, 0.03885971009731293, 0.019304949790239334, 0.006023255176842213, -0.016348835080862045, -0.023981992155313492, 0.022122278809547424, 0.02405138500034809, 0.01412134151905775, -0.008805887773633003, 0.007098836358636618, -0.023565638810396194, 0.05790096893906593, 0.01856938935816288, 0.005360558163374662, 0.010061888955533504, 0.0014537695096805692, 0.03888746723532677, -0.060676660388708115, -0.010207612998783588, -0.01977681741118431, 0.032031502574682236, -0.004399474244564772, -0.008646285161376, -0.020956486463546753, 0.02009602077305317, 0.014558512717485428, -0.005409132689237595, -0.02299662120640278, 0.013718865811824799, -0.010471303947269917, -0.017889345064759254, 0.032114773988723755, -0.053626399487257004, -0.0015483165625482798, -0.062231048941612244, -0.022122278809547424, 0.0031434730626642704, 0.05706825852394104, 0.012671041302382946, 0.056291066110134125, 0.0029977490194141865, -0.007681732065975666, -0.001261205761693418, -0.039192792028188705, 0.02288559451699257, 0.01276819035410881, 0.00341583788394928, 0.013864589855074883, 0.020637281239032745, 0.007244560401886702, 0.006099586840718985, -0.047797445207834244, -0.02016541361808777, 0.003506047884002328, 0.028048383072018623, -0.031948234885931015, -0.01147749274969101, -0.0031799040734767914, 0.009034882299602032, -0.01986008696258068, -0.0311710387468338, 0.024634281173348427, -0.002860699314624071, 0.026271939277648926, 0.053459860384464264, -0.027895720675587654, -0.05579144135117531, 0.009742684662342072, 0.04671492427587509, -0.04604875668883324, 0.030588142573833466, -3.7244168197503313e-05, -0.0029092738404870033, -0.04688146337866783, -0.039109524339437485, -0.07316728681325912, -0.008694860152900219, -0.033363837748765945, -0.08937733620405197, 0.02434283308684826, 0.007313952781260014, 0.016792945563793182, -0.04366166144609451, -0.03722205013036728, -0.04024755582213402, -0.001360089867375791, -0.04374493286013603, -0.03422430157661438, 0.0003582379431463778, -0.03325280919671059, 0.015530006028711796, 0.0020869746804237366, 0.020429104566574097, -0.03461289778351784, 0.03819354251027107, 0.0030029534827917814, 0.057789940387010574, -0.016126779839396477, 0.06128731369972229, 0.0015578580787405372, 0.05271042138338089, 0.0106517244130373, -0.03383570536971092, 0.033280566334724426, 0.022163912653923035, -0.018153036013245583, 0.006269597914069891, -0.006661664694547653, 0.01977681741118431, 0.056152280420064926, 0.010741934180259705, 0.00036040646955370903, -0.007411101832985878, 0.02969992160797119, -0.02992197684943676, -0.046409595757722855, -0.017542382702231407, -0.006613090168684721, -0.018139157444238663, -0.0019273721845820546, -4.350574454292655e-05, -0.016779066994786263, -0.03600074723362923, -0.032253559678792953, -0.005409132689237595, -0.01837509125471115, -0.011220741085708141, -0.009041821584105492, 0.021789195016026497, 0.017930980771780014, -0.023412976413965225, 0.002506798366084695, -0.0017157256370410323, 0.020207049325108528, -0.025036755949258804, 0.03380794823169708, -0.0046943919733166695, -0.004937265068292618, -0.033696919679641724, -0.030671413987874985, -0.03244785964488983, 0.010866840369999409, 0.023537881672382355, 0.006960051599889994, -0.003646567463874817, -0.00466663483530283, -0.0019204330164939165, 0.005676293279975653, 0.018833080306649208, -0.019513126462697983, 0.017917102202773094, 0.0213034488260746, 0.021803073585033417, -0.03858214244246483, -0.05795648321509361, 0.05440359562635422, 0.02978319302201271, 0.02108139358460903, -0.015543884597718716, -0.011262376792728901, -0.03106001205742359, -0.06245310604572296, -0.06700524687767029, -0.023107649758458138, 0.03569541871547699, -0.00030684424564242363, 0.0071821073070168495, 0.0243011973798275, -0.05695723369717598, -0.03996998816728592, -0.01719542220234871, -0.01217141654342413, 0.013802136294543743, 0.03611177206039429, -0.0009784320136532187, 0.005235651973634958, -0.021969614550471306, 0.08404800295829773, 0.07966240495443344, 0.02417629212141037, -0.0299497339874506, -0.020276442170143127, -0.023593395948410034, 0.014447485096752644, 0.021886343136429787, -0.00022877787705510855, -0.029644407331943512, -0.008035632781684399, -0.07111327350139618, -0.009180606342852116, 0.008222992531955242, 0.006245310418307781, -0.0004644949804060161, -0.02416241355240345, 0.02263578213751316, 0.041996244341135025, -0.049018748104572296, 0.02256638929247856, 0.0015474491519853473, 0.03833232820034027, -0.03286421298980713, 0.011741183698177338, 0.026605023071169853, 0.03294748440384865, -0.003931076265871525, -0.00847280491143465, -0.013170666061341763, 0.019304949790239334, -0.009395723231136799, -0.011914664879441261, 0.011762001551687717, 0.00041765515925362706, 0.004035164602100849, -0.007286195643246174, -0.03952587768435478, 0.005065640900284052, 0.029033755883574486, 0.0006115200230851769, -0.037777189165353775, 0.0042086453177034855, -0.03983120247721672, 0.0009975149296224117, 0.009222242049872875, 0.06606150418519974, -0.028894970193505287, 0.0031105116941034794, -0.05312677472829819, -0.024509374052286148, -0.10070216655731201, 0.0007971444865688682, 0.0343075729906559, 0.02134508453309536, -0.033336080610752106, -0.016057386994361877, -0.003646567463874817, 0.011907725594937801, -0.013691108673810959, 0.020304199308156967, -0.0069080074317753315, -0.011782819405198097, 0.021816952154040337, -0.01718154363334179, -0.028867213055491447, -0.007411101832985878, 0.028839455917477608, 0.0019551292061805725, 0.025189420208334923, -0.037610650062561035, -0.004853994119912386, -0.057678911834955215, 0.022011250257492065, 0.01689009554684162, 0.011935482732951641, 0.03264215588569641, 0.017625654116272926, 0.006193266250193119, 0.02428731881082058, 0.0046180603094398975, -0.012698798440396786, 0.053570885211229324, 0.01433645747601986, 0.025980491191148758, -0.013850711286067963, -0.024828579276800156, -0.014530755579471588, -0.04799174144864082, -0.016515376046299934, -0.026077641174197197, 0.025286568328738213, 0.006852493621408939, -0.010235370136797428, -0.0002654257114045322, 0.015266315080225468, 0.0016194437630474567, 0.03847111389040947, -0.05840059369802475, -0.00468398304656148, -0.00266466592438519, -0.01147749274969101, -0.003941484726965427, -0.0510450042784214, -0.026008248329162598, -0.02446773834526539, 0.01837509125471115, 0.04019204154610634, 0.026480117812752724, 0.06689421832561493, 0.040469612926244736, 0.03813802823424339, -0.01709827221930027, -0.036278314888477325, 0.02155326120555401, 0.02138671837747097, 0.03372467681765556, 0.018000373616814613, -0.013607838191092014, 0.020914850756525993, 0.0067726923152804375, -0.020248685032129288, -0.03291972726583481, 0.01494710985571146, -0.02847861684858799, 0.002095648553222418, 0.0011258907616138458, 0.0056207794696092606, 0.05379294231534004, -0.023829329758882523, 0.008417290635406971, 0.01845836266875267, -0.04699249193072319, -0.03552887961268425, 0.00464581698179245, 0.06001049652695656, -0.00565894553437829, 0.09032107144594193, -0.01836121268570423, -0.027451610192656517, -0.021608775481581688, -0.0045556072145700455, 0.03608401492238045, -0.0675048679113388, 0.044660910964012146, -0.05223855376243591, -0.03569541871547699, 0.07888521254062653, -0.0066998302936553955, 0.0487411804497242, -0.027604272589087486, -0.04027531296014786, 0.010457425378262997, 0.002553638070821762, -0.06717178225517273, 0.009562264196574688, 0.026369089260697365, -0.04677043855190277, -0.014058887958526611, -0.015196922235190868, -0.014364214614033699, -0.0021268753334879875, 0.07150186598300934, -0.029200296849012375, -0.01003413274884224, -0.015488370321691036, 0.03308626636862755, 0.01503038126975298, 0.04085820913314819, 0.011616277508437634, -0.03672242537140846, 0.031864963471889496, -0.03466841205954552, 0.03122655302286148, -0.033530376851558685, -0.02299662120640278, 0.005565265659242868, -0.037888217717409134, 0.009062639437615871, 0.02146998979151249, 0.04296773672103882, 0.029339080676436424, -0.016126779839396477, -0.02119242027401924, -0.01432257890701294, -0.031809449195861816, 0.04840809479355812, -0.013205362483859062, 0.06173142418265343, -0.019318828359246254, 0.004225993528962135, 0.028034504503011703, -0.09764890372753143, 0.011373404413461685, 0.00018529922817833722, -0.020789945498108864, 0.030588142573833466, 0.023052135482430458, 0.04133007675409317, 0.006581863388419151, -0.004524380434304476, 0.031309824436903, -0.04407801479101181, 0.008278505876660347, -0.02722955495119095, 0.020692795515060425, 0.023246433585882187, -0.0022136156912893057, -0.01435033604502678, -0.044799692928791046, 0.02302437834441662, -0.04707576334476471, 0.015307949855923653, 0.05978843942284584, -0.009069578722119331, 0.006012846250087023, 0.039387091994285583, -0.04538258910179138, -0.000316168850986287, 0.0057005807757377625, -0.018236307427287102, 0.025036755949258804, 0.046465110033750534, -0.016237808391451836, -0.006894128862768412, 0.04130231961607933, -0.09526180475950241, -0.006189796607941389, -0.020373590290546417, -0.011935482732951641, 0.024509374052286148, -0.011866089887917042, 0.025342082604765892, 0.049129776656627655, -0.016001872718334198, 0.03297524154186249, -0.013177605345845222, -0.036472614854574203, 0.020803824067115784, -0.015543884597718716, -0.028978241607546806, 0.012462864629924297, 0.027992870658636093, 0.020540133118629456, 0.023635031655430794, 0.03003300540149212, -0.01991560123860836, 0.04385595768690109, 0.001429482246749103, -0.0398867167532444, 0.0029925445560365915, -0.007397223263978958, -0.040830451995134354, -0.020359711721539497, 0.0019395159324631095, -0.00934020895510912, -0.027965113520622253, -0.04282895103096962, -0.027854084968566895, -0.03441860154271126, 0.023232555016875267, -0.027465488761663437, 0.0059087579138576984, -0.030588142573833466, -0.03527906537055969, -0.01851387694478035, -0.028756186366081238, -0.03258664160966873, -0.060454607009887695, -0.00039054875378496945, 0.008778130635619164, 0.005082989111542702, -0.01149137131869793, 0.023066014051437378, 0.009867590852081776, -0.0018458362901583314, 0.029505623504519463, 0.01697336696088314, -0.02432895451784134, 0.0056901718489825726, 0.04513277858495712, -0.0401642881333828, 0.024870214983820915, 0.017736682668328285, 0.01981845311820507, -0.004385595675557852, 0.01282370463013649, 0.028090018779039383, 0.004853994119912386, 0.008930793963372707, 0.02448161691427231, -0.008958551101386547, 0.002425262238830328, -0.012726555578410625, -0.007938483729958534, 0.05984395369887352, 0.0015543884364888072, -0.036417100578546524, -0.0272989459335804, 0.03408551588654518, -0.0034991088323295116, 0.006380625534802675, 0.007653974927961826, 0.030477115884423256, 0.0213034488260746, -0.003840866032987833, -0.005384845659136772, -0.020998122170567513, -0.005540978163480759, -0.005141972564160824, -0.02975543588399887, 0.0046631651930511, -0.0021823891438543797, 0.056291066110134125, -0.047963984310626984, 0.008410351350903511, 0.034945983439683914, -0.005131563637405634, 0.022510875016450882, -0.011692609637975693, -0.021150784566998482, 0.037666160613298416, -0.037915974855422974, -0.0020887095015496016, 0.02123405598104, 0.039137281477451324, -0.01557164080440998, -0.011671791784465313, -0.029366837814450264, 0.038998495787382126, 0.008778130635619164, 0.0009307247819378972, 0.005863652564585209, -0.0043508997187018394, -0.032225802540779114, 0.008750374428927898, 0.01988784410059452, 0.0060371337458491325, 0.003667385084554553, -0.012351836077868938, 0.01348987128585577, 0.016432106494903564, -0.014725054614245892, -0.05123930424451828, -0.037610650062561035, -0.04293997958302498, -0.02126181311905384, 0.0021112619433552027, 0.006685951724648476, -0.017639532685279846, -0.02128957025706768, -0.03869316726922989, 0.0032336830627173185, -0.029144782572984695, 0.019180042669177055, 0.03588971868157387, -0.02561965212225914, -0.025175541639328003, -0.011664852499961853, 0.020554011687636375, 0.009222242049872875, 0.00713353231549263, 0.023315826430916786, -0.010519878938794136, 0.007390283979475498, 0.029561135917901993, 0.023329704999923706, 0.023121528327465057, -0.013809075579047203, -0.014711176045238972, 0.03736083582043648, 0.023690544068813324, 0.03008851781487465, -0.012511438690125942, 0.017389720305800438, -0.005475055426359177, -0.022039007395505905, 0.03830457106232643, -0.006130813155323267, -0.0198739655315876, -0.002798246219754219, 0.008229931816458702, 0.049435101449489594, -0.001231714035384357, 0.02142835408449173, -0.03178169205784798, -0.008007875643670559, -0.024731429293751717, 0.0014537695096805692, -0.015210800804197788, -0.039137281477451324, 0.03597299009561539, -0.00465622590854764, 0.001382642425596714, -0.024995120242238045, 0.030171789228916168, 0.002687218366190791, 0.020248685032129288, 0.03550112247467041, 0.029005998745560646, -0.0156549122184515, 0.029172539710998535, 0.026563387364149094, 6.413370283553377e-05, 0.029477866366505623, -0.004187827929854393, 0.004031694959849119, -0.01151218917220831, 0.01498874556273222, 0.07044710218906403, -0.009603899903595448, 0.0054854643531143665, -0.0371665358543396, 0.022441482171416283, 0.00013011063856538385, -0.007286195643246174, -0.020290320739150047, 0.00927775539457798, 0.00750825135037303, 0.016612526029348373, 0.0269519854336977, 0.0009888408239930868, 0.007765003014355898, 0.01997111551463604, 0.016557011753320694, 0.00281732901930809, -0.018888594582676888, 0.004153131507337093, -0.007765003014355898, -0.049157533794641495, 0.0003391550562810153, 0.012497560121119022, -0.05007351189851761, -0.047714173793792725, -0.02586946450173855, 0.004944204352796078, -0.02002662979066372, 0.0008795479079708457, 0.01557164080440998, -0.03291972726583481, -0.02722955495119095, 0.0008227329235523939, -0.039303820580244064, 0.0042017060332000256, -0.0054854643531143665, -0.02016541361808777, 0.003684733295813203, 0.023968113586306572, 0.009173667058348656, -0.018985744565725327, -0.026341332122683525, 0.006477775052189827, -0.01219917368143797, -0.021941857412457466, 0.013302511535584927, -0.03983120247721672, 0.010970928706228733, 0.05221079662442207, 0.01691785268485546, -0.003837396390736103, 0.00530157471075654, 0.02006826549768448, 0.035001497715711594, -0.017292570322752, 0.011116652749478817, -0.011685670353472233, 0.0020436043851077557, 0.01843060553073883, -0.03422430157661438, 0.020720552653074265, -0.025078391656279564, -0.019082892686128616, -0.01690397411584854, -0.027493245899677277, 0.010922354646027088, -0.023496245965361595, 0.04166316241025925, 0.05801199749112129, 0.008229931816458702, 0.007355588022619486, -0.007952362298965454, 0.012643284164369106, 0.015155287459492683, 0.007237621117383242, 0.0014355540042743087, -0.03308626636862755, -0.02435671165585518, -0.02845085971057415, -0.0285896435379982, 0.03550112247467041, -0.015918603166937828, 0.023412976413965225, -0.014877717941999435, 0.021039757877588272, -0.007300074212253094, 0.04718679189682007, 0.011796697974205017, -0.01586308889091015, -0.01435033604502678, -0.045049507170915604, 0.02421792596578598, -0.0045556072145700455, -0.026341332122683525, -0.018097521737217903, 0.04527156427502632, -0.010950110852718353, 0.005731807090342045, 0.002201471943408251, 0.026452360674738884, 0.012650223448872566, -0.011588520370423794, -0.0008348766132257879, -0.050517622381448746, -0.05706825852394104, -0.011741183698177338, 0.002265659859403968, 0.0168762169778347, -0.007626218255609274, -0.018791446462273598, -0.05379294231534004, -0.037860460579395294, -0.026160912588238716, -0.015058137476444244, 0.029505623504519463, 0.011949361301958561, 0.018916351720690727, 0.007653974927961826, -0.11724529415369034, 0.005811608396470547, 0.026022126898169518, -0.016473742201924324, -0.013004124164581299, -0.006186326965689659, 0.005867122206836939, 0.03250337019562721, 0.01988784410059452, 0.004097617696970701, 0.008875280618667603, -0.06422954797744751, -0.02555025927722454, 0.009159788489341736, 0.00849362276494503, 0.01575206033885479, 0.0337524339556694, 0.012407350353896618, 0.025994369760155678, -0.0015248967101797462, -0.0014130015624687076, 0.005710989702492952, -0.004173949360847473, 0.04091372340917587, 0.010117403231561184, 0.008889159187674522, -0.009173667058348656, 0.023968113586306572, 0.013309450820088387, 0.018166914582252502, 0.021012000739574432, 0.023260312154889107, 0.02822880446910858, 0.020734431222081184, 0.00931245181709528, 0.03741635009646416, -0.00784827396273613, 0.008805887773633003, 0.027451610192656517, 0.023066014051437378, -0.005606900900602341, -0.062008995562791824, 0.016557011753320694, -0.019069014117121696, 0.0368889681994915, -0.017459113150835037, 0.019263314083218575, 0.007667853496968746, -0.016737433150410652, -0.006717178504914045, 0.03699999675154686, 0.03242010250687599, 0.005516691133379936, 0.010547636076807976, 0.0029786662198603153, -0.017625654116272926, -0.0211646631360054, -0.012511438690125942, 0.0269519854336977, -0.0011683935299515724, -0.019679667428135872, 0.00931939110159874, 0.03522355109453201, -0.04690922051668167, -0.018014252185821533, -0.0001559159136377275, -0.037804946303367615, 0.015987996011972427, 0.008389533497393131, -0.037582892924547195, 0.018722053617239, 0.012490620836615562, 0.005516691133379936, -0.017722804099321365, 0.016140658408403397, 0.000556006096303463, 0.011942422017455101, 0.004160070791840553, -0.03855438530445099, -0.023815451189875603, 0.03011627495288849, -0.008958551101386547, 0.0008825838449411094, 0.008000936359167099, -0.011172167025506496, -0.010318640619516373, -0.025008998811244965, -0.009631657041609287, 0.024814700707793236, 0.02555025927722454, 0.0509062223136425, 0.011845272034406662, 0.0059018186293542385, 0.01494710985571146, -0.013933981768786907, -0.0031486775260418653, 0.010103524662554264, 0.03425205871462822, -0.02123405598104, 0.009714927524328232, 0.013822954148054123, 0.03011627495288849, -0.004083739127963781, 0.010943171568214893, -0.05085070803761482, -0.023551760241389275, 0.03308626636862755, 0.003615340916439891, -0.005662414710968733, 0.009048760868608952, 0.00934714823961258, -0.01838896982371807, -0.023898722603917122, 0.016834581270813942, 0.010096585378050804, 0.009617778472602367, 0.03147636726498604, -0.005586083512753248, -0.026022126898169518, -0.0014407584676519036, 0.023843208327889442, -0.008347898721694946, -0.011539946310222149, 0.01708439365029335, -0.007993998005986214, 0.0005651138490065932, -0.0001323875767411664, 0.000274533435003832, 0.03236458823084831, -0.010908476077020168, 0.03275318443775177, 0.034723926335573196, 0.018805325031280518, 0.03591747581958771, -0.0256612878292799, -0.034890469163656235, 0.02110915072262287, -0.027826327830553055, 0.007542947307229042, 0.027840206399559975, -0.014891596511006355, 0.04566016048192978, 0.016487620770931244, -0.02409302070736885, 0.031837206333875656, 0.0017434825422242284, -0.006300824694335461, -0.013538445346057415, -0.03000524826347828, 0.05276593565940857, 0.0034193075262010098, -0.004819298163056374, -0.02438446879386902, 0.057845454663038254, -0.024634281173348427, 0.06700524687767029, -0.06311926990747452, 0.000604580738581717, -0.005162789952009916, -0.011255437508225441, 0.031809449195861816, 0.026188669726252556, 0.04119129478931427, -0.022122278809547424, -0.00866710301488638, -0.002732323482632637, -0.0483248271048069, -0.02006826549768448, -0.011873029172420502, 0.013156787492334843, 0.007074548862874508, 0.05162790045142174, 0.03006076253950596, 0.033669162541627884, 0.04024755582213402, 0.013108213432133198, 0.022261062636971474, 0.016140658408403397, -0.00501012708991766, -0.012608587741851807, -0.030837954953312874, -0.021678166463971138, 0.03264215588569641, 0.017459113150835037, 0.00998555775731802, -0.019166164100170135, 0.006925355643033981, 0.014378093183040619, -0.026049884036183357, 0.008563014678657055, 0.013052699156105518, 0.026438482105731964, 0.00750131206586957, 0.04707576334476471, -0.02141447551548481, 0.004701331257820129, 0.01413522008806467, 0.0001175332727143541, -0.011810576543211937, 0.00282079866155982, -0.016445985063910484, 0.0199433583766222, 0.01838896982371807, -0.022011250257492065, -0.0044862148351967335, 0.04893547669053078, -0.010936233215034008, 0.006512471009045839, -0.010880718939006329, 0.009076518006622791, -0.004312734119594097, 0.004798480309545994, 0.02833983115851879, 0.004222523886710405, -0.053432103246450424, -0.0007260173442773521, 0.002291681943461299, 0.028783943504095078, -0.03552887961268425, -0.02549474500119686, -0.020429104566574097, -0.008105025626718998, -0.030255060642957687, 0.0009567468659952283, -0.0055548567324876785, -0.013052699156105518, -0.010311701335012913, -0.016362713649868965, 0.016112901270389557, -0.006588802672922611, -0.037888217717409134, 0.00913203228265047, -0.008563014678657055, 0.007542947307229042, 0.016765188425779343, -0.003823517821729183, -0.003768004011362791, 0.01494710985571146, -0.035140279680490494, -0.01848611980676651, 0.012990245595574379, 0.02706301212310791, 0.020276442170143127, -0.016376592218875885, -0.021664287894964218, 0.007744185160845518, 0.03711102157831192, 0.028020627796649933, 0.062231048941612244, -0.019651910290122032, 0.0053466795943677425, 0.01496098842471838, 0.01274043321609497, 0.00433355150744319, 0.04851912334561348, -0.003443594789132476, -0.01825018599629402, 0.03297524154186249, -0.0007611472392454743, 0.002482510870322585, -0.020318077877163887, 0.003552887821570039, 0.015516127459704876, -0.010859901085495949, -0.0009923104662448168, -0.021664287894964218, -0.023940356448292732, -0.013913163915276527, 0.01713990792632103, -0.003951893653720617, 0.0020765657536685467, 0.0032302134204655886, 0.022413725033402443, -0.02827044017612934, 0.008389533497393131, 0.016112901270389557, -0.03242010250687599, -0.03108776919543743, -0.013864589855074883, -0.005207895301282406, -0.005409132689237595, 0.022122278809547424, -0.026202548295259476, 0.008986308239400387, 0.024814700707793236, -0.04235708341002464, -0.0071821073070168495, -0.029089268296957016, 0.016737433150410652, -0.01583533175289631, -0.02835370972752571, 0.01274737250059843, -0.020304199308156967, -0.012400411069393158, -0.03697223961353302, 0.016668040305376053, -0.008840584196150303, -0.004354369360953569, 0.03314178064465523, -0.029283568263053894, 0.019221678376197815, -0.018000373616814613, 0.02555025927722454, 0.02580007165670395, 0.009402662515640259, 0.014489120803773403, -0.024939607828855515, -0.016529254615306854, -0.0004779397277161479, 0.01559939794242382, 0.016640283167362213, 0.016779066994786263, 0.01065866369754076, 0.03300299867987633, -0.007244560401886702, 0.0008444180130027235, 0.023829329758882523, 0.006450017914175987, 0.026466239243745804, 0.048852209001779556, 0.002409649081528187, 0.0149748669937253, -0.0008621998131275177, 0.02867291495203972, 0.02012377791106701, -0.0067032999359071255, 0.04693697765469551, 0.0020349302794784307, -0.022150034084916115, 0.00020579165720846504, -0.010568452998995781, 0.021983493119478226, 0.004576424602419138, 0.009652474895119667, -0.04035858437418938, 0.027521001175045967, 0.004874811973422766, 0.0023090301547199488, 0.009798198007047176, -0.006071829702705145, -0.003544213715940714, -0.0031746996100991964, 0.0011510454351082444, -0.006540228147059679, -0.01709827221930027, -0.004850524477660656, 0.009548385627567768, 0.025342082604765892, 0.002229228848591447, 0.024967363104224205, 0.050573136657476425, 0.011220741085708141, 0.02128957025706768, 0.0016966427210718393, -0.001377437962219119, -0.004170479718595743, -0.003868622938171029, -0.014655661769211292, 0.009777381084859371, 0.001721797394566238, -0.01705663651227951, 0.026785442605614662, -0.003608401631936431, 0.018902473151683807, 0.0009541446925140917, -0.011186045594513416, -0.021844709292054176, 0.020817702636122704, 0.013073517009615898, -0.021608775481581688, 0.009645535610616207, 0.010117403231561184, -0.011935482732951641, 0.00847280491143465, -0.01837509125471115, -0.04443885385990143, 0.020623402670025826, -0.02448161691427231, -0.02148386836051941, -0.007591521833091974, 0.015932481735944748, -0.008701799437403679, 0.003715959843248129, 0.051794443279504776, -0.020567890256643295, 0.033336080610752106, -0.0016246481100097299, 0.01218529511243105, 0.01131095178425312, 0.0019776816479861736, -0.010054949671030045, -0.025161663070321083, 0.004472336266189814, 0.009472054429352283, 0.0027080359868705273, 0.03588971868157387, 0.013954799622297287, -0.018860837444663048, -0.02864515781402588, -0.046243056654930115, -0.010561513714492321, 0.010131281800568104, 0.005273818038403988, -0.02015153504908085, 0.009902287274599075, 0.0030931634828448296, 0.04690922051668167, 0.02839534543454647, 0.01861102506518364, 0.023135406896471977, -0.01277512963861227, 0.0018406318267807364, -0.020359711721539497, 0.0012464598985388875, -0.03588971868157387, -0.06295273452997208, 0.016640283167362213, -0.040414098650217056, 0.012504499405622482, -0.01587696745991707, -0.0067032999359071255, 0.052099768072366714, -0.023385219275951385, 0.005391784943640232, 0.012712677009403706, 0.01979069598019123, 0.01587696745991707, 0.005076049827039242, 0.017361963167786598, -0.007598461117595434, -0.0426068976521492, 0.0030914286617189646, -0.010839083231985569, 0.018042007461190224, -0.0367501825094223, 0.009388783946633339, -0.002590069081634283, 0.008216053247451782, -0.014149097725749016, 0.023565638810396194, -0.006557576358318329, -0.016348835080862045, -0.0157243050634861, -0.0018007311737164855, -0.012289383448660374, -0.01569654792547226, -0.02146998979151249, -0.00014279643073678017, 0.01557164080440998, -0.008354838006198406, 0.020415225997567177, 0.0015075486153364182, 0.009243059903383255, 0.04835258424282074, 0.0059677413664758205, -0.030699171125888824, -0.0021216708701103926, -0.023732179775834084, -0.00010560646478552371, -0.011824455112218857, -0.008514439687132835, 0.023551760241389275, 0.009104275144636631, 0.017625654116272926, 0.011914664879441261, 0.03888746723532677, 0.01496098842471838, 0.005232182331383228, -0.016404349356889725, -0.02967216446995735, 0.04893547669053078, 0.011442797258496284, -0.003993529360741377, 0.023759936913847923, 0.0016645487630739808, 0.025938857346773148, 0.03236458823084831, -0.023954235017299652, -0.004160070791840553, -0.0010122607927769423, 0.009187545627355576, 0.00531198363751173, 0.02686871401965618, -0.005926105659455061, 0.03561214730143547, 0.011706488206982613, -0.002754875924438238, -0.03400224819779396, 0.014225429855287075, 0.0071196542121469975, -0.06489571928977966, 0.020359711721539497, 0.0071196542121469975, -0.00748743349686265, 0.012442046776413918, 0.0156549122184515, -0.004177419003099203, -0.011546885594725609, 0.0033915506210178137, -0.02135896310210228, -0.005464646965265274, -0.020456861704587936, 0.027756936848163605, 0.01366335153579712, -0.015321828424930573, -0.016584768891334534, 0.018833080306649208, -0.013011063449084759, -0.0013548854039981961, -0.0032753185369074345, 0.015918603166937828, 0.023496245965361595, 0.01834733411669731, -0.017611775547266006, 0.013829893432557583, -0.029172539710998535, -0.014225429855287075, -0.005794260185211897, -0.019402097910642624, 0.03303075209259987, -0.0008960285922512412, -0.025911100208759308, -0.0003246260457672179, 0.008764252997934818, 0.031309824436903, -0.010922354646027088, 0.002234433311969042, 0.013240058906376362, -0.009069578722119331, 0.018916351720690727, -0.009825955145061016, -0.02017929218709469, -0.003847805317491293, 0.022233305498957634, 0.010499061085283756, -0.010485182516276836, 0.009701048955321312, -0.00044844800140708685, -0.00014388067938853055, -0.0020488088484853506, -0.0014858634676784277, -0.01210202369838953, 0.0002704132639337331, 0.0338912196457386, 0.01726481504738331, 0.03319729492068291, 0.022163912653923035, 0.01064478512853384, -0.028173290193080902, -0.011831394396722317, -0.017584018409252167, -0.011768940836191177, -0.016085144132375717, 0.006377155892550945, -0.023260312154889107, 0.025342082604765892, -0.008965490385890007, 0.010485182516276836, -0.014808325096964836, 0.028117775917053223, 0.03289197012782097, -0.013691108673810959, -0.028978241607546806, 0.028284316882491112, 0.007584582548588514, -0.019485369324684143, -0.025189420208334923, 0.05576368421316147, -0.014038070105016232, -0.047825202345848083, 0.0020297260489314795, 0.02691034972667694, 0.01974906027317047, -0.032170288264751434, -0.0029075390193611383, 0.028811698779463768, 0.0026074170600622892, 0.01149831060320139, 0.004396004602313042, 0.021816952154040337, -0.013968678191304207, 0.001318454509600997, 0.016529254615306854, 0.022261062636971474, 0.021608775481581688, -0.00501706637442112, 0.04235708341002464, -0.01220611296594143, 0.024981241673231125, -0.029117025434970856, -0.025883343070745468, 0.0155855193734169, 0.01732032746076584, -0.008105025626718998, 0.011033382266759872, 0.011657913215458393, 0.028020627796649933, -0.009499811567366123, 0.019138406962156296, 0.0002463427954353392, -0.006016315892338753, 0.04951837286353111, 0.0031330641359090805, -0.03283645585179329, -0.044771939516067505, 0.0028502903878688812, 0.006751874461770058, -0.007067610044032335, 0.00033308324054814875, -0.03322505205869675, -0.008396472781896591, -0.0048227678053081036, 0.016279442235827446, -0.028922727331519127, 0.014752811752259731, -0.0057595642283558846, -0.0071196542121469975, -0.03466841205954552, -0.030921226367354393, 0.037499621510505676, -0.009784320369362831, 0.03394673392176628, 0.01990172266960144, -0.010311701335012913, 0.00750131206586957, 0.017514627426862717, 0.019596396014094353, 0.012303262017667294, -0.014516877941787243, -0.021622654050588608, 0.02417629212141037, -0.002595273545011878, -0.019332705065608025, -0.015987996011972427, 0.002229228848591447, 0.011637095361948013, -0.005426480900496244, 0.02140059694647789, 0.008417290635406971, 0.03711102157831192, 0.012435107491910458, 0.03294748440384865, -0.0009350617765448987, -0.0018840020056813955, 0.001245592487975955, -0.030449358746409416, 0.007758063729852438, 0.03985895961523056, 0.019346583634614944, 0.017903223633766174, -0.02263578213751316, 0.014836082234978676, -0.022399846464395523, -0.03452963009476662, 0.014502999372780323, 0.009062639437615871, -0.0019742120057344437, -0.003544213715940714, -0.036417100578546524, 0.0018163444474339485, 0.05004575476050377, -0.003674324369058013, 0.023149285465478897, -0.010929293930530548, -0.02867291495203972, 0.016751311719417572, -0.022039007395505905, 0.03588971868157387, -0.0014398910570889711, 0.010728055611252785, -0.0030931634828448296, -0.00499971816316247, 0.04177418723702431, -0.014010313898324966, 0.028894970193505287, 0.009458175860345364, -0.018069764599204063, -0.020484618842601776, -0.003443594789132476, -0.02709076926112175, 0.022011250257492065, 0.004260689485818148, 0.03228131681680679, -0.02825656160712242, 0.013982556760311127, 0.00848668348044157, 0.0229411069303751, 0.03253112733364105, 0.0017018471844494343, -0.030865712091326714, -0.01870817504823208, -0.005454238038510084, -0.018930230289697647, 0.007980119436979294, -0.0018475709948688745, 0.040830451995134354, 0.01587696745991707, 0.024800822138786316, 0.0029300914611667395, 0.005527100060135126, -0.0341687873005867, 0.011040321551263332, 0.007723367307335138, -0.0315873920917511, -0.011019503697752953, 0.0198739655315876, 0.015460613183677197, 0.025258811190724373, -0.0031677603255957365, -0.0004723016172647476, -0.006061420775949955, 0.010887658223509789, 0.00784133467823267, 0.014038070105016232, -0.018083643168210983, 0.002267394680529833, 0.042301569133996964, 0.006359808146953583, -0.0019863557536154985, -0.012511438690125942, 0.001775576500222087, 0.011755062267184258, -0.0012811560882255435, -0.020331956446170807, -0.0021528974175453186, -0.024620402604341507, -0.01999887265264988, 0.012566952966153622, 0.006474305409938097, 0.007452737540006638, 0.01150524988770485, 0.010061888955533504, 0.015932481735944748, 0.008514439687132835, 0.0509062223136425, 0.025980491191148758, -0.013177605345845222, 0.037915974855422974, 0.03527906537055969]" -How a Data Scientist Is Building a Time-Series Forecasting Pipeline Using TimescaleDB,"their database and anyone else working on any sort of time-series problem to be able to fully leverage the power of TimescaleDB to manage their time-series data.As an open-source project, I hope to see people benefit from this in their personal projects and hopefully find enough value to be interested in helping improve both of these libraries going forward.RoadmapThis project is the culmination of about one year of part-time development work. I spent the first third building a version using Python, the following third understanding how to build C extensions, writing proof of concept versions of some of the functions, and testing them to determine if the speedup was worthwhile (it was a 10x to 100x in extreme cases).Regarding feedback, I have just released it and received a small amount of positive press on thePostgreSQL subredditbut limited feedback from others. I have also shared it with a number of the data scientists in my network, and the feedback has been overwhelmingly positive.Currently, etu and pgetu support most of the feature calculators in tsfresh. My next step is to implement the approximately 15 calculations that I have not yet finished. Once that is done, I would like to increase the functions these libraries support.If you need more information about this project or want to discuss it, I can be reached and followed onLinkedInandTwitter.We’d like to thank Andrew for sharing his story on how he is creating proofs of concept of machine learning pipelines for time-series forecasting using TimescaleDB.We’re always keen to feature new community projects and stories on our blog. If you have a project you’d like to share, reach out on Slack (@Ana Tavares), and we’ll go from there.The open-source relational database for time-series and analytics.Try Timescale for free",https://www.timescale.com/blog/how-a-data-scientist-is-building-a-time-series-forecasting-pipeline-using-timescaledb-and-helping-others-perform-time-series-engineering-directly-in-the-database/,356,"[0.0004605462308973074, -0.03530912101268768, 0.05538306012749672, 0.004627928137779236, 0.01750248484313488, 0.011288135312497616, -0.010271995328366756, 0.04230458289384842, -0.04114328324794769, -0.005644067656248808, 0.033484216779470444, -0.047475144267082214, -0.002307051559910178, -0.042498134076595306, 0.04506959021091461, 0.033567167818546295, 0.0024487581104040146, -0.0011388366110622883, -0.0172121599316597, 0.04623089358210564, -0.0008273415151052177, -0.02058546617627144, 0.035032618790864944, 0.0172951091080904, -0.018442586064338684, -0.056627314537763596, -0.03176991268992424, 0.06663663685321808, 0.006411356385797262, -0.06099602207541466, -0.00723740179091692, -0.04556729272007942, -0.06038771942257881, 0.04764104634523392, 0.008315754123032093, 6.048449722584337e-05, 0.04349353536963463, 0.010949421674013138, 0.03846122696995735, -0.011502423323690891, -0.01294022612273693, -0.015096929855644703, 0.021663818508386612, 0.01311303861439228, -0.06868273764848709, -0.02958555892109871, -0.02552100084722042, -0.019590064883232117, 0.010845733806490898, 0.04802814498543739, -0.01440567895770073, -0.002360623562708497, -0.043410588055849075, -0.02003246545791626, -0.002332973526790738, -0.03359481692314148, -0.019161488860845566, 0.021207591518759727, 0.011046197265386581, -0.02109699137508869, -0.002068569650873542, -0.039263077080249786, 0.04385298863053322, -0.009442494250833988, -0.045014288276433945, 0.009539268910884857, -0.013230551034212112, 0.02980675920844078, -0.02023984119296074, 0.007500077597796917, 0.036857523024082184, 0.014156828634440899, 0.023599322885274887, -0.03732757642865181, 0.034396667033433914, -0.06387162953615189, -0.023779047653079033, 0.07288554310798645, 0.005647523794323206, -0.02691732905805111, 0.011751273646950722, 0.0024556706193834543, -0.010354945436120033, 0.03893127664923668, -0.007005832623690367, -0.052673354744911194, -0.018732912838459015, -0.006967813707888126, -0.013548526912927628, 0.006376794073730707, -0.04125388339161873, 0.05322635546326637, -0.006141768302768469, 0.03660867363214493, 0.04327233508229256, 9.985342330764979e-05, -0.0014818701893091202, 0.019064713269472122, 0.014350378885865211, 0.02453942410647869, 0.0009133158600889146, -0.004050733055919409, 0.0029931184835731983, -0.03929072991013527, 0.03655337169766426, 0.006926338654011488, 0.02691732905805111, -0.009421756491065025, 0.027650054544210434, 0.040037281811237335, -0.10186280310153961, -0.0032696190755814314, -0.025327451527118683, -0.024235272780060768, -0.02271451987326145, -0.02348872274160385, -0.03868242725729942, -0.030027959495782852, -0.008336491882801056, -0.021249067038297653, -0.026820553466677666, -0.004862953443080187, -0.003146921982988715, 0.0390695296227932, 0.01026508305221796, -0.036304522305727005, 0.005319179501384497, -0.06243382394313812, -0.0073134396225214005, 0.015193705447018147, 0.04377003759145737, 0.010914859361946583, 0.03099571168422699, 0.01465452928096056, -0.03436901792883873, -0.008350316435098648, -0.05756741389632225, -0.010113007389008999, -0.024401172995567322, -0.0307192113250494, 0.02466384880244732, -0.007735102903097868, -0.017336584627628326, -0.0045933653600513935, -0.018401112407445908, -0.0020772104617208242, 0.022755995392799377, 0.04288523644208908, -0.03754877671599388, -0.021249067038297653, 0.01624440774321556, -0.002084122970700264, -0.041585683822631836, -0.006328406278043985, 0.06259972602128983, 0.004213177133351564, 0.01324437651783228, 0.061549022793769836, -0.018083136528730392, -0.034756120294332504, 0.013825027272105217, 0.04694979265332222, -0.009601481258869171, 0.013728252612054348, 0.01623058319091797, 0.024152323603630066, -0.025285976007580757, -0.033705417066812515, -0.08151236176490784, -0.024083198979496956, -0.042000435292720795, -0.05245215445756912, -0.011896436102688313, 0.031023362651467323, 0.041585683822631836, -0.01132269762456417, 0.0219403188675642, -0.056129612028598785, 0.00183181616012007, -0.05112495273351669, -0.05648906156420708, -0.01132269762456417, -0.03611097112298012, -0.008820367977023125, -0.04780694469809532, -0.003964326810091734, -0.04247048497200012, 0.047060392796993256, 0.021622342988848686, 0.04634149372577667, -0.015387255698442459, 0.07139243930578232, 0.013804290443658829, 0.01793106086552143, -0.007506989873945713, -0.039318379014730453, 0.03185286372900009, 0.033428918570280075, -0.0414750836789608, 0.026170777156949043, 0.0157467070966959, 0.027332080528140068, 0.02705557830631733, 0.0037327574100345373, 0.018580837175250053, -0.019797438755631447, 0.006186699960380793, -0.002972380956634879, -0.07636944949626923, -0.03965017944574356, -0.0036498073022812605, -0.028313657268881798, -0.009960932657122612, 0.016617683693766594, -0.026267552748322487, -0.017447184771299362, -0.048885297030210495, -0.017308935523033142, -0.025410400703549385, -0.011066935025155544, 0.007956303656101227, 0.04581614211201668, 0.010320383124053478, -0.021553218364715576, 0.016355007886886597, 0.011129147373139858, 0.02123524248600006, -0.03718932345509529, 0.02376522310078144, -0.007562289945781231, 0.006501219235360622, -0.05474710837006569, -0.007195926737040281, -0.043051134794950485, 0.010285820811986923, 0.004655578173696995, -0.002319148276001215, -0.03829532489180565, 0.004693597089499235, -0.044958990067243576, 0.014419503509998322, 0.01891263760626316, -0.007569202687591314, 0.0172951091080904, -0.009324980899691582, 0.015442555770277977, -0.03403721749782562, -0.0722772479057312, 0.01701860874891281, 0.04584379121661186, 0.03240586444735527, -0.013306588865816593, 0.013458664529025555, 0.007444777525961399, -0.028341306373476982, -0.05856281891465187, -0.03494967147707939, 0.02206474356353283, 0.0016209845198318362, -0.016064682975411415, 0.027954205870628357, -0.07471045106649399, -0.04141978174448013, -0.009159080684185028, -0.015041629783809185, 0.020087765529751778, 0.015235180035233498, 0.006587625481188297, 0.029917359352111816, -0.00402308302000165, 0.059005219489336014, 0.04260873422026634, 0.014046228490769863, -0.03942897915840149, -0.01772368513047695, -0.022037094458937645, -0.015055455267429352, 0.021401142701506615, 0.022949546575546265, -0.05361345782876015, -0.0041613331995904446, -0.017806636169552803, 0.0019268632167950273, -0.0062696500681340694, 0.02206474356353283, 0.010589971207082272, -0.006604907102882862, 0.015124579891562462, 0.0026872397866100073, -0.037631724029779434, 0.017239809036254883, -0.010873383842408657, 0.019313564524054527, -0.0337330661714077, 0.031659312546253204, 0.013092300854623318, 0.04661799222230911, -0.018428761512041092, -0.010258170776069164, -0.0035115571226924658, 0.031244562938809395, -0.02046104148030281, 0.0011379725765436888, -0.025465700775384903, -0.013624564744532108, 0.0043583400547504425, 0.010949421674013138, -0.03467316925525665, -0.016977133229374886, 0.003053602995350957, 0.008184416219592094, -0.020004814490675926, 0.003380219219252467, -0.03445196896791458, 0.016617683693766594, -0.0025991052389144897, 0.03871007636189461, 2.902715777963749e-06, -0.0047972844913601875, -0.04191748425364494, -0.038903627544641495, -0.07780725508928299, -0.00442746514454484, 0.022935720160603523, 0.02664082869887352, 0.0032644346356391907, 0.027650054544210434, -0.005481623578816652, 0.036221571266651154, -0.012463262304663658, 0.00402308302000165, -0.02214769460260868, -0.008709767833352089, -0.005927480757236481, -0.0070853265933692455, -0.021705294027924538, 0.004102576989680529, -0.002315692137926817, -0.017170684412121773, 0.04299583658576012, -0.021138466894626617, -0.008170591667294502, -0.08814837783575058, 0.03185286372900009, 0.046009693294763565, 0.007354914676398039, -0.016631508246064186, -0.013154514133930206, -0.01047245878726244, 0.0016304892487823963, -0.05104200169444084, -0.004752353299409151, 0.024290572851896286, -0.00299657485447824, 0.0008143805316649377, 0.003508100751787424, -0.007040395401418209, -0.003967782948166132, -0.041640982031822205, -0.021428793668746948, -0.030525660142302513, 0.01645178347826004, 0.026820553466677666, -0.005661348812282085, -0.0038606389425694942, 0.011163709685206413, -0.0172951091080904, -0.0033180066384375095, -0.007811140734702349, -0.01367295254021883, 0.012871100567281246, -0.02200944349169731, -0.017308935523033142, -0.02178824320435524, -0.061825525015592575, 0.0034372475929558277, 0.051622651517391205, 0.011516247875988483, 0.005844530649483204, 0.08201006054878235, 0.028133930638432503, 0.0111014973372221, -0.010610708966851234, -0.013078476302325726, 0.036166273057460785, 0.04794519767165184, 0.017599260434508324, 0.004807653371244669, -0.002927449531853199, 0.0015803735004737973, 0.02917080745100975, -0.01638265699148178, -0.014170653186738491, 0.009601481258869171, 0.014640704728662968, 0.02953025884926319, -0.008668292313814163, 0.041226234287023544, 0.06553062796592712, -0.03605567291378975, -0.004451659042388201, -0.008032341487705708, -0.027401205152273178, -0.029060207307338715, 0.0013643574202433228, 0.042691685259342194, -0.0003959574387408793, 0.06044302135705948, -0.026018701493740082, -0.01638265699148178, -0.07045233994722366, -0.0383782759308815, 0.031106311827898026, -0.047613393515348434, 0.04014788195490837, -0.05496830865740776, -0.036829873919487, 0.07896855473518372, 0.024442648515105247, 0.028368957340717316, -0.02171911858022213, -0.013700602576136589, 0.012525474652647972, -0.0024764081463217735, -0.022742170840501785, 0.020073940977454185, 0.04540139064192772, 0.00486986618489027, -0.02523067593574524, -0.04377003759145737, -0.009580744430422783, -0.0021618886385113, 0.046147942543029785, -0.02550717629492283, -0.0124356122687459, 0.004845672287046909, 0.06580713391304016, 0.0074862525798380375, 0.042636387050151825, 0.05878401920199394, -0.008377966471016407, 0.03536441922187805, -0.036857523024082184, 0.00973281916230917, 0.002822033828124404, -0.03652572259306908, -0.03998197987675667, -0.039954330772161484, -0.026516402140259743, 0.009055392816662788, 0.03290356695652008, -0.000296158017590642, -0.02930905856192112, -0.009165992960333824, -0.04758574441075325, -0.03514321893453598, 0.04119858145713806, -0.009041568264365196, 0.023073971271514893, -0.03340126574039459, -0.022120043635368347, 0.008447092026472092, -0.08328196406364441, 0.005530010908842087, 0.019175313413143158, -0.06652603298425674, 0.03312476724386215, 0.03318006545305252, 0.003302453551441431, -0.01882968842983246, 0.021608518436551094, 0.028286006301641464, -0.03832297772169113, 0.007209751754999161, -0.04985304921865463, 0.009304243139922619, 0.023875823244452477, -0.013272026553750038, 0.008619904518127441, -0.023723747581243515, 0.004686684347689152, -0.012960962951183319, 0.01581583172082901, 0.0708947405219078, 0.017696036025881767, 0.04739219322800636, 0.021276718005537987, -0.009013918228447437, 0.00223274203017354, 0.029613209888339043, -0.0039850641041994095, 0.018926462158560753, 0.025673076510429382, -0.016396483406424522, -0.018387285992503166, 0.006750069558620453, -0.08306076377630234, 0.010624533519148827, -0.011060021817684174, -0.021484093740582466, 0.02185736782848835, 0.022603919729590416, 0.008274278603494167, 0.07144774496555328, -0.029087858274579048, 0.02776065468788147, -0.029060207307338715, -0.021456442773342133, 0.008737417869269848, -0.007852615788578987, -0.05505125969648361, -0.008253541775047779, 0.038903627544641495, -0.0022310137283056974, 0.0003598827461246401, 0.03453492000699043, -0.026253728196024895, -0.005422866903245449, 8.511032501701266e-05, -0.035253819078207016, -0.015221355482935905, -0.020474866032600403, -0.04609264060854912, -0.0008925783331505954, -0.01629970781505108, -0.0008359821513295174, -0.028977258130908012, -0.030027959495782852, -0.012670638039708138, -0.006172874942421913, 0.003212590701878071, -0.017820460721850395, 0.016990959644317627, -0.029502609744668007, -0.04827699810266495, 0.021608518436551094, -0.01293331291526556, -0.045594941824674606, -0.046424441039562225, 0.003487363224849105, 0.014848079532384872, 0.030663911253213882, 0.03464552015066147, 0.04075618088245392, -0.005274247843772173, -0.026585528627038002, -0.010002407245337963, -0.00029183769947849214, -0.0012710384326055646, 0.03550267219543457, 0.04999129846692085, -0.025133900344371796, 0.019645364955067635, 0.001171671086922288, 0.006432094145566225, 0.0036428947933018208, 0.015843480825424194, -0.00956000667065382, 0.0184149369597435, 0.002720074262470007, 0.015940256416797638, -0.005906742997467518, 0.008467829786241055, 0.008882580325007439, 0.011564635671675205, 0.04462718963623047, -0.005250054411590099, -0.05405585840344429, -0.028451906517148018, 0.011163709685206413, 0.0006713779293932021, 0.007921740412712097, -0.01556698139756918, -0.005789230111986399, 0.029613209888339043, 0.009967844933271408, -0.03674692288041115, -0.033207714557647705, 0.012988613918423653, 0.016050856560468674, -0.014502453617751598, 0.019382689148187637, -0.03702342510223389, 0.03951193019747734, -0.03271001577377319, 0.007334177382290363, 0.024414999410510063, 0.03309711441397667, 0.041862182319164276, -0.031382814049720764, 0.003587594721466303, 0.02030896581709385, -0.039954330772161484, 0.008702854625880718, 0.02297719568014145, 0.006995464209467173, 0.024580899626016617, -0.010230520740151405, -0.012871100567281246, 0.03555797040462494, 0.006076099816709757, -0.010638359002768993, 0.016119983047246933, -0.01617528311908245, -0.009670606814324856, 0.014889555051922798, 0.0015172967687249184, -0.0035236538387835026, 0.024207623675465584, 0.002949915360659361, 0.023806696757674217, 0.018677612766623497, 0.00655651930719614, -0.03776997700333595, -0.004437834024429321, -0.013831940479576588, 0.0039816079661250114, 0.012891838327050209, 0.032239966094493866, -0.02285277098417282, -0.01722598448395729, -0.04006493091583252, -0.0157467070966959, -0.051843851804733276, 0.026848204433918, 0.009345718659460545, -0.02720765396952629, -0.037078723311424255, 0.017806636169552803, 0.029502609744668007, 0.010755871422588825, 0.008426354266703129, 0.039041876792907715, 0.0029326339717954397, 0.004320321138948202, 0.03915247693657875, 0.04230458289384842, 0.020709890872240067, 0.0032246876507997513, -0.01405314076691866, 0.008889492601156235, 0.004486221354454756, 0.0063042123802006245, -0.0023675360716879368, 0.03268236666917801, -0.023018671199679375, -0.0013686777092516422, 0.06442462652921677, -0.0172951091080904, -0.00928350631147623, -0.024373523890972137, -0.0019130381988361478, 0.05319870635867119, 0.013050826266407967, 0.01240796223282814, -0.024636199697852135, -0.004430921282619238, -0.018027836456894875, 0.029364358633756638, 0.004206264857202768, -0.04493134096264839, 0.013458664529025555, -0.01349322684109211, 0.005951674189418554, -0.04844289645552635, 0.034396667033433914, -0.0035564883146435022, 0.011004721745848656, 0.03248881548643112, 0.021484093740582466, -0.04208338260650635, 0.02664082869887352, 0.004548434168100357, -0.011917173862457275, 0.028424257412552834, -0.0030207685194909573, 0.00013738621782977134, -0.02304632030427456, 0.02025366574525833, 0.0569591149687767, -0.01177892368286848, -0.006950532551854849, -0.03677457198500633, -0.007797315716743469, -0.007195926737040281, 0.004534609150141478, -0.014958679676055908, 0.015096929855644703, 0.033567167818546295, 0.017903409898281097, 0.007610677741467953, -0.007970128208398819, 0.018179912120103836, -0.013728252612054348, -0.0056336987763643265, -0.018110785633325577, -0.004759265575557947, 0.005913655739277601, -0.022327419370412827, -0.027995681390166283, 0.0018249036511406302, -0.013451752252876759, -0.045235492289066315, -0.014488629065454006, -0.009470144286751747, 0.0036532634403556585, 0.016119983047246933, -0.003691282356157899, 0.039594877511262894, -0.014986329711973667, -0.042000435292720795, -0.017696036025881767, -0.017032433301210403, 0.017903409898281097, 0.0060449931770563126, -0.02355784736573696, 0.005675173830240965, 0.01596790738403797, -0.03221231326460838, -0.012919488362967968, -0.056627314537763596, -0.00860607996582985, 0.0015846937894821167, -0.024359699338674545, 0.027110878378152847, -0.02171911858022213, 0.025147724896669388, 0.030000310391187668, 0.01016139518469572, -0.022603919729590416, 0.006971270311623812, 0.023779047653079033, 0.02481592446565628, 0.013679864816367626, 0.024580899626016617, -0.02227211929857731, -0.03318006545305252, 0.008536954410374165, -0.03746582567691803, -0.0016080235363915563, -0.018249036744236946, 0.014253603294491768, -0.028921958059072495, 0.04042438045144081, 0.02980675920844078, -0.04598204046487808, 0.02917080745100975, 0.0528392568230629, 0.002490233164280653, -0.02065459080040455, 0.009608394466340542, 0.012373399920761585, 0.0014049684396013618, -0.0035288382787257433, -0.014709829352796078, 0.0009383737342432141, -0.036940474063158035, 0.01602320745587349, -0.027733005583286285, 0.006172874942421913, 0.0027822868432849646, 0.03146576136350632, -0.020723717287182808, 0.03824002668261528, 0.0025559018831700087, 0.019852738827466965, 0.011509335599839687, -0.0054643419571220875, -0.0009098596055991948, -0.04188983514904976, 0.019244438037276268, -0.015456381253898144, -0.007493164855986834, -0.005740842781960964, 0.0676320344209671, -0.011896436102688313, -0.014682179316878319, 0.017378060147166252, 0.002466039266437292, -0.01693565957248211, 0.02875605784356594, 0.002571455202996731, -0.025811325758695602, -0.05554896220564842, 0.00741712749004364, 0.009601481258869171, -0.010569233447313309, 0.013956365175545216, -0.03154871240258217, -0.026944978162646294, -0.024124672636389732, -0.0030916219111531973, -0.008536954410374165, 0.032018765807151794, 0.02453942410647869, -0.007914828136563301, -0.017461009323596954, -0.07448925077915192, -0.01294022612273693, 0.0345902182161808, -0.005875636823475361, 0.012373399920761585, -0.01223514974117279, 0.00590328685939312, 0.02705557830631733, 0.03246116638183594, -0.015497855842113495, 0.009843419305980206, -0.05073785036802292, -0.02762240543961525, -0.008288104087114334, -0.016202932223677635, 0.0070784143172204494, 0.026309028267860413, 0.03127221390604973, 0.034756120294332504, 0.013790464960038662, 0.0008593118982389569, 0.0014663169858977199, 0.0002119117561960593, 0.033152416348457336, 0.011377997696399689, -0.022728346288204193, -0.011357259936630726, 0.035392072051763535, -0.005298441741615534, -0.0018767474684864283, 0.004887147340923548, 0.02326752059161663, 0.007092239335179329, 0.0050288536585867405, -0.005578398704528809, 0.06066422164440155, -0.015484031289815903, 0.013099214062094688, -0.015774356201291084, 0.03058096021413803, -0.04694979265332222, -0.05247980356216431, 0.04822169616818428, -0.03674692288041115, 0.05123555287718773, -0.012428699992597103, 0.020792841911315918, 0.024166148155927658, 0.005847986787557602, 0.015304305590689182, 0.026682304218411446, 0.036028023809194565, -0.009304243139922619, 0.0045311530120670795, -0.008467829786241055, 0.01645178347826004, -0.022244470193982124, -0.007140626665204763, 0.027815954759716988, -0.011841136030852795, -0.020502515137195587, 0.00758993998169899, 0.021262891590595245, -0.03600037097930908, -0.04012022912502289, 0.012898750603199005, -0.020779017359018326, 0.03591742366552353, -0.018318161368370056, -0.00892405491322279, -0.008661380037665367, 0.042829934507608414, 0.021276718005537987, -0.010486283339560032, 0.006867582444101572, -0.010686746798455715, 0.005858355667442083, -0.010175220668315887, -0.026848204433918, -0.029198458418250084, 0.007068045437335968, 0.009539268910884857, -0.0483599454164505, 0.014848079532384872, -0.015262830071151257, -0.017765160650014877, 0.00892405491322279, -0.016133807599544525, 0.03085746243596077, 0.0022794015239924192, 0.05878401920199394, -0.003929764032363892, -0.004648665431886911, 0.009801944717764854, 0.010375683195888996, 0.002336429664865136, 0.03049801103770733, 0.008315754123032093, -0.013016263954341412, -0.019382689148187637, 0.021815894171595573, 0.00331109412945807, 0.022258294746279716, 0.018525537103414536, -0.02010159008204937, -0.006656751036643982, 0.010603795759379864, -0.009200556203722954, -0.011343435384333134, 0.017322760075330734, -0.01898176223039627, -0.023073971271514893, 0.0016641877591609955, -0.009159080684185028, 0.024636199697852135, 0.019285913556814194, 0.006988551467657089, 0.014239778742194176, -0.001503471750766039, -0.012518562376499176, 0.029751459136605263, 0.002474679844453931, -0.04133683443069458, 0.023143095895648003, 0.005097978748381138, 0.019852738827466965, 0.024898875504732132, -0.0172121599316597, 0.017903409898281097, -0.030553311109542847, 0.027802130207419395, 0.03627687320113182, -0.008004691451787949, 0.03428606688976288, -0.006356056313961744, -0.030387410894036293, 0.011744361370801926, -0.027083229273557663, 0.021318193525075912, 0.026447277516126633, -0.006597994361072779, 0.03193581476807594, -0.004859497305005789, -0.001255485345609486, 0.0421663336455822, -0.0016719643026590347, -0.04006493091583252, -0.006722419522702694, -0.015027805231511593, 0.05789921432733536, 0.02494034916162491, 0.007534639909863472, -0.049382999539375305, 0.055078908801078796, -0.007258139550685883, 0.058673419058322906, -0.036442771553993225, -0.005789230111986399, -0.02368227206170559, -0.03290356695652008, 0.02158086746931076, 0.01946563832461834, 0.0160923320800066, -0.007099151611328125, -0.01493102964013815, -0.03193581476807594, -0.04258108511567116, 0.004911341238766909, -0.014108440838754177, 0.02213387005031109, 0.009304243139922619, 0.03655337169766426, 0.007735102903097868, 0.023640796542167664, 0.02958555892109871, 0.008516216650605202, 0.009165992960333824, 0.021885018795728683, 0.011149885132908821, -0.0020443759858608246, -0.027857430279254913, -0.012138374149799347, 0.03702342510223389, 0.012449437752366066, 0.008986268192529678, -0.019313564524054527, -0.020626941695809364, 0.00478000333532691, -0.011087671853601933, -0.008253541775047779, 0.029557909816503525, 0.021193766966462135, -0.01629970781505108, 0.05319870635867119, -0.024428823962807655, -0.009020830504596233, 0.0321846641600132, -0.0024988737422972918, -0.04421243816614151, -0.002037463476881385, -0.037852924317121506, 0.024926524609327316, 0.005875636823475361, -0.007493164855986834, 0.0033404722344130278, 0.04717099294066429, -0.012490912340581417, 0.005847986787557602, -0.011419473215937614, 0.016811233013868332, 0.023599322885274887, -0.0012425243621692061, 0.011689061298966408, 0.0033750347793102264, -0.021207591518759727, 0.0003307205915916711, -0.005875636823475361, 0.017682209610939026, -0.04106033220887184, 0.009504706598818302, -0.004669403191655874, -0.0126913757994771, -0.030663911253213882, 0.025327451527118683, -0.011488597840070724, 0.034479618072509766, -0.024401172995567322, -0.00970516912639141, 0.0073134396225214005, -0.00214287918061018, -0.025479525327682495, 0.010030057281255722, 0.0050012036226689816, -0.0020806665997952223, 0.03035975992679596, -0.023405771702528, 0.017419535666704178, -0.004548434168100357, -0.012712112627923489, 0.00031041508191265166, 0.033069465309381485, 0.02135966718196869, 0.00839870423078537, -0.008094553835690022, -0.024511773139238358, 0.018249036744236946, 0.06088542193174362, 0.02213387005031109, 0.03984373062849045, -0.009649869054555893, 0.0020633854437619448, 0.03246116638183594, 0.007424039766192436, 0.03815707564353943, 0.025603951886296272, 0.009677519090473652, 0.015013979747891426, -0.009248943068087101, -0.00900009274482727, -0.015027805231511593, 0.00019527850963640958, 0.012394137680530548, 0.03641512244939804, -0.012822712771594524, -0.00962913129478693, -0.020350441336631775, -0.012200586497783661, -0.009221293032169342, 0.03284826502203941, 0.030802162364125252, -0.01758543588221073, 0.02115229144692421, 0.00474198441952467, -0.01293331291526556, -0.0037500387988984585, 0.021525567397475243, -0.03193581476807594, -0.024097023531794548, -0.0005931800696998835, -0.008467829786241055, -0.031604014337062836, 0.015124579891562462, 0.0030363216064870358, 0.007009289227426052, 0.02263157069683075, -0.026253728196024895, 0.0034683537669479847, -0.018359636887907982, 0.015981731936335564, -0.03353951871395111, -0.02608782798051834, 0.030829811468720436, -0.007824965752661228, 0.00885493028908968, -0.04180688410997391, 0.008951704949140549, 0.003784601343795657, 0.013147600926458836, -0.02447029948234558, -0.02032279036939144, 0.03929072991013527, 0.0039021139964461327, 0.0018888444174081087, 0.006490850355476141, 0.0074586025439202785, 0.001537170261144638, -0.01610615663230419, -0.02319839596748352, -0.006376794073730707, 0.004475852474570274, 0.0033180066384375095, -3.156534512527287e-05, -0.0006005246541462839, 0.045511990785598755, 0.017170684412121773, -0.012124549597501755, 0.01728128455579281, 0.011668323539197445, 0.012843450531363487, 0.04377003759145737, -0.0014006481505930424, -0.006383706349879503, 0.010285820811986923, 0.05383465811610222, -0.002362351631745696, 0.011281222105026245, 0.017129208892583847, 0.015235180035233498, -0.03323536738753319, 0.0103687709197402, -0.01486190501600504, 0.0011777195613831282, -0.01827668584883213, 0.008619904518127441, -0.054442957043647766, 0.008488566614687443, 0.025548651814460754, -0.015981731936335564, 0.004755809437483549, -0.019783614203333855, 0.007271964568644762, 0.013728252612054348, -0.007361827418208122, 0.0020737540908157825, -0.009069218300282955, -0.00037824411992914975, 0.039318379014730453, 0.026115477085113525, -0.0039055703673511744, 0.0031210000161081553, 0.054083507508039474, 0.015041629783809185, 0.0006769943283870816, 0.005443604663014412, -0.0026993367355316877, -0.00581342400982976, -0.010424070991575718, 0.017543960362672806, -0.002872149460017681, 0.010140657424926758, -0.019368864595890045, -0.0009712082101032138, -0.020986391231417656, 0.013126864098012447, 0.006553063169121742, -0.01855318620800972, -0.009152168408036232, 0.017336584627628326, -0.0007163092377595603, -0.009580744430422783, 0.02102786675095558, 0.04014788195490837, -0.02397259883582592, -0.005879092961549759, -0.018456412479281425, -0.024691499769687653, 0.01946563832461834, -0.026101652532815933, -0.017557784914970398, -0.002158432500436902, 0.010866471566259861, -0.008239716291427612, 0.023944947868585587, 0.06110662221908569, -0.01409461535513401, 0.0032246876507997513, -0.001487054512836039, 0.021815894171595573, 0.00579959899187088, -0.006127943284809589, 0.013693690299987793, -0.04335528612136841, 0.005557660944759846, -0.024567073211073875, -0.018456412479281425, 0.0298620592802763, -0.006826107390224934, -0.01743336021900177, 8.997068653116003e-05, -0.04493134096264839, -0.02861780673265457, -0.013050826266407967, -0.0070784143172204494, -0.020917266607284546, 0.004289214964956045, 0.007645240053534508, 0.05624021217226982, 0.031797561794519424, 0.028272181749343872, 0.026198428124189377, -0.012539300136268139, -0.006601450499147177, -0.03331831842660904, -0.0010221879929304123, -0.012117636390030384, -0.02080666646361351, 0.009470144286751747, -0.031880512833595276, -0.011668323539197445, -0.015027805231511593, -0.011274309828877449, 0.03934602811932564, -0.01805548556149006, 0.01974213868379593, 0.04484838992357254, 0.008454004302620888, 0.007092239335179329, 0.027332080528140068, 0.025548651814460754, -0.012290449813008308, -0.032516464591026306, 0.028700757771730423, -0.028078630566596985, 0.02369609661400318, -0.03793587535619736, -0.0066187321208417416, 0.00148532644379884, 0.012926400639116764, -0.0014291622210294008, 0.02459472417831421, -0.017198333516716957, 0.005035766400396824, -0.0023243327159434557, 0.00555074866861105, -0.01610615663230419, -0.017765160650014877, -0.027511805295944214, 0.004576084204018116, 0.005982780829071999, -0.026391977444291115, 0.03428606688976288, 0.010237433016300201, -0.013755902647972107, 0.046203240752220154, -0.009490881115198135, -0.02867310680449009, -0.0056060487404465675, -0.017668385058641434, -0.0005460886168293655, -0.019838914275169373, 0.003126184456050396, 0.021954143419861794, 0.039041876792907715, 0.01743336021900177, 0.019064713269472122, 0.04985304921865463, 0.012373399920761585, -0.004441290162503719, -0.011619935743510723, -0.013894152827560902, 0.02480209991335869, -0.0036325259134173393, -0.011060021817684174, -0.002365807769820094, -0.021110817790031433, -0.0008523993892595172, 0.036166273057460785, -0.05068255215883255, 0.008170591667294502, -0.01054158341139555, 0.006228175014257431, 0.00635951291769743, 0.03915247693657875, -0.004247739911079407, 0.04531843960285187, 0.003819163888692856, -0.004876778461039066, -0.020834317430853844, 0.004835303407162428, 0.023530196398496628, -0.05319870635867119, 0.010009320452809334, 0.00223965453915298, -0.007617590017616749, -0.013901065103709698, 0.004403271246701479, 0.0035979633685201406, 0.003506372682750225, 0.004835303407162428, -0.02776065468788147, 0.006051905918866396, 0.007099151611328125, 0.025285976007580757, 0.007901003584265709, -0.009248943068087101, -0.047060392796993256, 0.02810628153383732, -0.004900972358882427, 0.0011751273414120078, -0.0005495448713190854, 0.0023986422456800938, 0.0283966064453125, -0.020073940977454185, -0.025285976007580757, 0.0222029946744442, -0.022106219083070755, 0.00868211779743433, -5.208687070989981e-05, -0.03417546674609184, 0.043963588774204254, 0.019161488860845566, -0.03688517212867737, 0.009318068623542786, 0.004551890306174755, 0.026046352460980415, -0.021539393812417984, -0.027428854256868362, 0.006812282372266054, 0.008944792672991753, 0.01155772339552641, 0.02164999395608902, -0.008460916578769684, -0.006183243822306395, 0.026696128770709038, 0.0054332357831299305, -0.0004722111043520272, -0.00812220387160778, -0.00860607996582985, -0.0006199660710990429, -0.02135966718196869, -0.010202870704233646, 0.020502515137195587, 0.007776577956974506, 0.03760407492518425, 0.01008535735309124, 0.024345872923731804, 0.022230643779039383, 0.001574325026012957, -0.03987137973308563, 0.006418269127607346, 0.0034700818359851837, -0.008488566614687443, -0.024705324321985245, 0.0027166178915649652, -4.2825184209505096e-05, 0.009947107173502445, 0.00046141029451973736, 0.010693659074604511, -0.0031953095458447933, 0.012642988003790379, 0.018401112407445908, -0.008495479822158813, -0.03868242725729942, 0.00786644034087658, 0.006694769486784935, 0.00046270640450529754, -0.009525444358587265, 0.057180315256118774, 0.017806636169552803, -0.05955822020769119, 0.016064682975411415, 0.015705231577157974, 0.009774294681847095, -0.0337330661714077, 0.007306526880711317, 0.01567758060991764, 0.01511075533926487, -0.01918913796544075, -0.012891838327050209, 0.022465670481324196, -0.022451844066381454, -0.030470360070466995, 0.026405801996588707, 0.03176991268992424, -0.0030708841513842344, -0.00646665645763278, 0.024691499769687653, -0.009290418587625027, 0.012677550315856934, -0.0337330661714077, -0.02810628153383732, 0.001537170261144638, 0.013444839045405388, -0.002360623562708497, 0.02018454112112522, 0.022396543994545937, 0.014723654836416245, 0.006781176198273897, 0.0064424630254507065, 0.015290480107069016, -0.03381601721048355, 0.02213387005031109, -0.003639438422396779, -0.023654622957110405, -0.028341306373476982, 0.03168696165084839, 0.007645240053534508, -0.0015440827701240778, 0.0016339455032721162, -0.0005115260137245059, -0.01750248484313488, -0.014433328993618488, 0.012421787716448307, -0.04205573350191116, 0.001207097782753408, -0.0007024842198006809, 0.031880512833595276, -0.03669162467122078, -0.04183453321456909, 0.05256275460124016, 0.0021549761295318604, 0.021055517718195915, 0.021885018795728683, -0.015345781110227108, -0.021829718723893166, 0.005467798560857773, 0.0015509952791035175, 0.008212066255509853, 0.013880327343940735, -0.005861811805516481, 0.00783879030495882, 0.011854961514472961, -0.036829873919487, -0.0050288536585867405, -0.0004145348211750388, -0.013099214062094688, -0.009373368695378304, -0.01405314076691866, -0.008301928639411926, 0.025285976007580757, 0.011868786066770554, 0.0298620592802763, 0.004451659042388201, -0.00895861815661192, 0.02713852934539318, 0.007133714389055967, -0.0020789385307580233, 0.04089443013072014, 0.0086475545540452, 0.011654498055577278, -0.00023394539311993867, 0.021967969834804535, -0.01043789554387331, -0.027802130207419395, 0.03652572259306908, 0.027442680671811104, 0.008066903799772263, -0.007126801647245884, -0.021318193525075912, 0.0011898163938894868, 0.02058546617627144, -0.010811171494424343, 0.011398735456168652, -0.020820491015911102, 0.00010838605521712452, 0.01567758060991764, 0.006998920347541571, 0.03428606688976288, 0.007195926737040281, 0.020212190225720406, 0.006687857210636139, -0.01159919798374176, 0.012553124688565731, 0.00553692365065217, 0.05242450535297394, 0.01975596509873867, 0.008509304374456406, -0.0014023762196302414, 0.0257283765822649, -0.025742201134562492, 0.026405801996588707, 0.0007171733304858208, 0.04083913192152977, -0.035032618790864944, 0.02641962841153145, -0.00910378061234951, 0.02588045224547386, 0.021898843348026276, -0.004773090593516827, -0.027304429560899734, -0.04205573350191116, 0.014391853474080563, -0.0192720890045166, 0.02543805167078972, 0.006172874942421913, 0.043051134794950485, -0.013500139117240906, 0.013990928418934345, -0.001524209277704358, 0.012124549597501755, -0.020405741408467293, 0.03467316925525665, -0.019299738109111786, -0.003712019883096218, -0.013472489081323147, 0.03008325956761837, 0.01405314076691866, 0.019230613484978676, -0.02825835719704628, 0.0029654684476554394, 0.03204641491174698, 0.006508131977170706, 0.00032942448160611093, 0.007845703512430191, -0.03481141850352287, 0.014391853474080563, 0.026378152891993523, -0.009608394466340542, -0.003791513852775097, -0.04827699810266495, 0.017115384340286255, 0.0008320938795804977, -0.0019804351031780243, -0.020073940977454185, -0.013195988722145557, -0.04471014067530632, 0.01187569834291935, 0.03141046315431595, 0.0007668570033274591, -0.004672859329730272, 0.018525537103414536, 0.013085388578474522, 0.04244283586740494, 0.008530042134225368, 0.01708773337304592, 0.006138312164694071, 0.011841136030852795, 0.020917266607284546, -0.01226279977709055]" -How Conserv Safeguards History: Building an Environmental Monitoring and Preventive Conservation IoT Platform,"This is an installment of our “Community Member Spotlight” series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition,Nathan McMinn, CTO and co-founder at Conserv, joins us to share how they’re helping collections care professionals around the world understand their collections’ environments, make decisions to optimize conditions, and better protect historical artifacts - no IT department required.Think for a moment about your favorite museum. All of the objects it houses exist to tell the stories of the people who created them - and of whose lives they were a part - and to help us understand more about the past, how systems work, and more. Without proper care, which starts with the correct environment, those artifacts are doomed to deteriorate and will eventually be lost forever (read more about the factors that cause deterioration).Conservstarted in early 2019 with a mission to bring better preventive care to the world’s collections. We serve anyone charged with the long-term preservation of physical objects, from paintings and sculptures to books, architecture, and more. (You’ll often hear our market segment described as “GLAM”: galleries, libraries, archives, and museums.) At the core, all collections curators need to understand the environment in which their collections live, so they can develop plans to care for those objects in the short, mid, and long-term.While damagecancome in the form of unforeseen and catastrophic events, like fire, theft, vandalism, or flooding, there aremanyissues that proactive monitoring and planning can prevent, such as: mold growth, color fading associated with light exposure, and mechanical damage caused by fluctuating temperature and relative humidity.At Consev, we’ve built a platform to help collections gather the data required to understand and predict long-term risks, get insights into their data, and plan for how to mitigate and improve the preservation environment. Today, we’re the only company with an end-to-end solution - sensors to screen - focused on preventive conservation. Collections like theAlabama Department of Archives and Historyand various others rely on us to develop a deep understanding of their environments.About the teamWe’re a small team where every member makes a big impact. Currently, we’re at 6 people, and each person plays a key role in our business:Austin Senseman, our co-founder and CEO,",https://www.timescale.com/blog/how-conserv-safeguards-history-building-an-environmental-monitoring-and-preventative-analytics-iot-platform/,485,"[0.03385823592543602, 0.009509566240012646, 0.04792104661464691, 0.047383613884449005, 0.01998949609696865, 0.031380075961351395, -0.026214754208922386, 0.03914298489689827, -0.058341264724731445, 0.0019108704291284084, 0.008606381714344025, -0.032305654138326645, 0.023199161514639854, -0.023288734257221222, 0.008083878085017204, 0.07129935175180435, 0.005680360831320286, -0.018227912485599518, -0.025886323302984238, 0.052101075649261475, 0.02966327778995037, 0.03406723588705063, 0.025946037843823433, -0.039441559463739395, -0.009367743507027626, -0.035530246794223785, -0.06019241735339165, 0.054638952016830444, 0.05368351563811302, -0.06526816636323929, 0.037351544946432114, -0.027827050536870956, -0.04699546843767166, 0.04645803943276405, 0.016794759780168533, 0.05159350112080574, 0.013070055283606052, -0.05353422835469246, 0.011719009838998318, -0.0018362270202487707, 0.011241292580962181, -0.009979819878935814, 0.02067621611058712, 0.018571272492408752, 0.02337830513715744, -0.029603563249111176, -0.0523996502161026, -0.016585757955908775, 0.005848308559507132, 0.02079564519226551, -0.012062369845807552, 0.01583932526409626, 0.0019108704291284084, -0.05057835206389427, 0.03711268678307533, -0.05344465747475624, -0.0006489308434538543, 0.044756170362234116, -0.04699546843767166, -0.005743807647377253, 0.04168086126446724, -0.03505253046751022, 0.001484470209106803, 0.007270264904946089, -0.01692911796271801, 0.011106934398412704, -0.031708505004644394, 0.04114342853426933, -0.01934756338596344, -0.011398043483495712, 0.08043570071458817, 0.02278115786612034, -0.03797854855656624, -0.023751523345708847, 0.009979819878935814, -0.020183568820357323, 0.00021086753986310214, 0.08831804245710373, -0.015018247067928314, -0.019257990643382072, 0.012987947091460228, -0.0517427884042263, 0.030484354123473167, 0.022542299702763557, -0.05156364291906357, 0.020004425197839737, 0.001784909749403596, 0.015234713442623615, -0.028230125084519386, 0.03705297037959099, 0.0035250333603471518, 0.07344908267259598, 0.0008234097622334957, 0.011577188037335873, 0.054638952016830444, 0.0053855194710195065, -0.007942055352032185, 0.0029036274645477533, 0.04177043214440346, 0.029290061444044113, -0.024333741515874863, -0.006956762634217739, 0.020571714267134666, -0.042337723076343536, -0.020288070663809776, -0.0018698165658861399, 0.024692028760910034, -0.01778005249798298, 0.009561816230416298, -0.020586643368005753, -0.09082606434822083, -0.04156143218278885, 0.02309466153383255, 0.01942220702767372, -0.038396552205085754, 0.0035735517740249634, -0.07715139538049698, -0.001532988389953971, 0.005493752658367157, -0.03200707957148552, -0.02482638694345951, 0.008576524443924427, -0.010226142592728138, 0.01436884980648756, 0.022184012457728386, -0.053713373839855194, -0.03636625409126282, -0.07404623180627823, 0.0014527466846629977, -0.05944598466157913, 0.039083272218704224, -0.024647243320941925, 0.07452394813299179, -0.049682632088661194, 0.0015824396396055818, -0.012890910729765892, -0.016391685232520103, -0.03711268678307533, -0.022915516048669815, 0.021855581551790237, 0.016272256150841713, -0.011278614401817322, 0.031708505004644394, 0.0049637844786047935, 0.007046334911137819, -0.03773969039320946, 0.0029726724606007338, 0.03179807960987091, -0.0003491910465527326, 0.022154154255986214, -0.009517030790448189, -0.0073075867258012295, -0.038187552243471146, -0.008651167154312134, 0.02181079424917698, 0.014704745262861252, 0.05550481379032135, 0.058550264686346054, -0.023124517872929573, -0.01745162159204483, 0.042337723076343536, 0.0498916320502758, -0.04472631216049194, -0.030782928690314293, -0.000831807148642838, 0.0051168035715818405, -0.023318590596318245, -0.007083656266331673, -0.08228685706853867, 0.03720225766301155, -0.0836602970957756, 0.023632092401385307, -0.018108483403921127, 0.03143978863954544, 0.015824396163225174, -0.0162871852517128, -0.0020191033836454153, -0.006031184922903776, 0.002263560425490141, -0.030663499608635902, -0.06413359194993973, -0.015122747980058193, -0.024572599679231644, 2.7743426471715793e-05, -0.05039920657873154, -0.023348448798060417, -0.05953555554151535, -0.02333351969718933, -0.03570939227938652, 0.01223404984921217, -0.03487338498234749, 0.049115341156721115, 0.03302222862839699, 0.013786631636321545, 0.004668943118304014, -0.06114785373210907, 0.03361937776207924, 0.022542299702763557, 0.010218678042292595, -0.005094410385936499, -0.020616501569747925, 0.03672454133629799, 0.0688510537147522, -0.03215636685490608, 0.04397987574338913, 0.01761583611369133, -0.010151498951017857, -0.00011837972851935774, -0.05738582834601402, -0.0033085676841437817, 0.02482638694345951, 0.022079510614275932, 0.025975894182920456, 0.009479708969593048, -0.030544070526957512, -0.014271813444793224, -0.02987227961421013, 0.008852704428136349, -0.013682130724191666, 0.015779610723257065, -0.02937963232398033, 0.046577468514442444, 0.020377641543745995, 0.02446809969842434, -0.028185339644551277, -0.019496850669384003, 0.007621088530868292, -0.0387846976518631, 0.035410817712545395, -0.014301670715212822, -0.00018427583563607186, 0.001294129528105259, -0.0209150742739439, 0.01221165619790554, -0.032514654099941254, -0.04084485396742821, 0.024244168773293495, -0.002407248830422759, 0.021512221544981003, 0.05514652654528618, 0.013002876192331314, 0.022422870621085167, -0.0003400938876438886, 0.023199161514639854, 0.03245494142174721, 0.01090539712458849, -0.03511224314570427, -0.06849276274442673, 0.03164879232645035, 0.05520624294877052, 0.04066571220755577, -0.017809908837080002, 0.0256026778370142, -0.056609537452459335, 0.0033832110930234194, -0.003888919949531555, -0.05914741009473801, -0.009210992604494095, -0.04598031938076019, 0.03466438502073288, 0.0064491876401007175, -0.04559217393398285, -0.0381278358399868, -0.061565857380628586, -0.03648568317294121, 0.0150331761687994, -0.018168197944760323, -0.03675439953804016, -0.018481699749827385, 0.05090678110718727, 0.0026890276931226254, 0.023229019716382027, -0.00892734806984663, -0.058460693806409836, -0.030424639582633972, 0.011323399841785431, -0.0038515981286764145, 0.0021627917885780334, -0.009472244419157505, 0.028274910524487495, -0.035171959549188614, -0.03075307048857212, 0.04574146121740341, -0.028245054185390472, -0.0015703100943937898, 0.0130178052932024, -0.009524494409561157, -0.009143813513219357, -0.026692472398281097, 0.0070799244567751884, -0.012383336201310158, -0.028065910562872887, -0.006214061286300421, 0.015212319791316986, -0.02337830513715744, 0.014115062542259693, -0.0366051122546196, -0.02446809969842434, -0.022631872445344925, -0.016779830679297447, 0.005728879012167454, -0.02676711417734623, 0.014040418900549412, 0.005217572208493948, 0.013935917988419533, 0.020064139738678932, -0.03815769404172897, 0.0032357904128730297, -0.029006415978074074, -0.0209150742739439, 0.02076578699052334, 0.002778599737212062, 0.026140110567212105, -0.0011784322559833527, -0.006785083096474409, 0.027035830542445183, 0.031738363206386566, -0.04365144670009613, -0.01676490157842636, -0.027483690530061722, -0.03729183226823807, -0.07034391909837723, 0.00800176989287138, -0.019899923354387283, -0.015660179778933525, -0.01346566528081894, 0.00840484444051981, 0.026259539648890495, 0.01080089621245861, -0.04604003578424454, 0.004038206767290831, -0.036575254052877426, 0.03314165771007538, -0.03326108679175377, -0.007329979445785284, -0.023438019677996635, 0.029678206890821457, -0.03785911947488785, 0.05448966473340988, -0.024408383294939995, -0.009509566240012646, -0.07476280629634857, -0.040814999490976334, 0.009576745331287384, 0.044517308473587036, 0.018063697963953018, -0.02410981059074402, 0.016182683408260345, 0.028528697788715363, 0.048786912113428116, -0.02039257064461708, 0.016660401597619057, -0.044845741242170334, 0.0057251472026109695, -0.045801177620887756, 0.06004313379526138, 0.010293321684002876, 0.004236011765897274, -0.0001932563609443605, 0.009300564415752888, 0.0044114235788583755, 0.020616501569747925, 0.02648347057402134, -0.020750857889652252, -0.008009234443306923, 0.03388809412717819, -0.05604224652051926, 0.013652273453772068, 0.021795865148305893, -0.053384944796562195, 0.02209443971514702, -0.005131732206791639, 0.017272477969527245, -0.017153048887848854, -0.06831362098455429, 0.007285193540155888, 0.038187552243471146, -0.051056068390607834, 0.004851819481700659, 0.0183025561273098, 0.0055460031144320965, 0.016137897968292236, 0.030573926866054535, 0.003588480409234762, -0.0014359519118443131, 0.051533788442611694, -0.017421763390302658, 0.0035866142716258764, -0.06777618825435638, -0.02797633782029152, 0.07219507545232773, -0.08354086428880692, -0.00481822993606329, 0.00215719360858202, 0.01616775617003441, 0.05248922109603882, 0.0063745444640517235, 0.03412695229053497, 0.0681941881775856, -0.009957426227629185, 0.04102399945259094, -0.019153490662574768, -0.04627889394760132, 0.023751523345708847, 0.017959196120500565, 0.01849662885069847, -0.00014870360610075295, 0.023527592420578003, 0.0010571368038654327, -0.048995912075042725, 0.017481477931141853, -0.035171959549188614, 0.051533788442611694, -0.016675330698490143, -0.008583988063037395, 0.005478824023157358, -0.024497956037521362, 0.016093112528324127, 0.014868960715830326, -0.0008154789102263749, -0.013211878016591072, 0.015003318898379803, 0.03744111955165863, -0.05598253384232521, -0.008136128075420856, 0.023960523307323456, -0.0031816738191992044, -0.0582815483212471, -0.03361937776207924, -0.08742232620716095, -0.04547274485230446, -0.00424347585067153, 0.018168197944760323, 0.040128279477357864, -0.050847068428993225, 0.06276015192270279, 0.0022934176959097385, 0.007904733531177044, 0.025124961510300636, -0.015495965257287025, -0.009315493516623974, -0.053713373839855194, -0.034156810492277145, -0.004799569025635719, -0.014868960715830326, 0.0018978078151121736, 0.016257327049970627, -0.005904291290789843, -0.04147186130285263, -0.03421652317047119, 0.025542963296175003, -0.00534073356539011, -0.006471580825746059, 0.029633421450853348, -0.042785584926605225, -0.005266090389341116, 0.016257327049970627, -0.023154376074671745, 0.047025326639413834, -0.0020862824749201536, -0.014443493448197842, 0.012786410748958588, 0.011592116206884384, -0.009367743507027626, -0.025528034195303917, -0.04299458488821983, -0.049921490252017975, -0.02003428153693676, 0.013316377997398376, -0.027498619630932808, 0.036127395927906036, 0.04135243222117424, -0.014092669822275639, 0.019884996116161346, -0.024483026936650276, -0.031260646879673004, -0.029528919607400894, 0.017600908875465393, 0.0046614790335297585, -0.0443381667137146, 0.011890689842402935, 0.0015955021372064948, -0.06741789728403091, 0.02757326327264309, 0.023990381509065628, -0.01511528342962265, -0.020407499745488167, 0.019601350650191307, 0.02466217242181301, -0.0010487394174560905, 0.020123854279518127, 0.02700597420334816, 0.010479929856956005, -0.01854141429066658, 0.0006288704462349415, -0.018108483403921127, 0.012032512575387955, -0.04914519935846329, 0.020168639719486237, 0.006702975369989872, 0.0498916320502758, 0.007300122175365686, 0.0029782706405967474, 0.07410594075918198, -0.0007594963535666466, 0.0146524952724576, -0.0007907532854005694, 0.026991045102477074, -0.0010226143058389425, 0.008740738965570927, -0.0032395224552601576, 0.040964286774396896, -0.019004203379154205, 0.04833905026316643, 0.006180471740663052, 0.02112407609820366, 0.029036274179816246, 0.0022598281502723694, -0.004295726306736469, -0.04051642492413521, -0.0034671849571168423, -0.02954384870827198, 0.013129769824445248, 0.015645252540707588, 0.012122084386646748, 0.011092006228864193, -0.07476280629634857, -0.017585979774594307, -0.014667423442006111, 0.0446665957570076, -0.010330643504858017, -0.009001990780234337, 0.03140993416309357, 0.04598031938076019, -0.038187552243471146, 0.026468541473150253, 0.01309991255402565, -0.05263850837945938, -0.03929227218031883, 0.03341037407517433, 0.019616279751062393, -0.01934756338596344, -0.001651484752073884, 0.012823732569813728, 0.010472465306520462, -0.001401429413817823, -0.003151816548779607, -0.006620867643505335, 0.0011065880535170436, 0.05932655557990074, 0.032514654099941254, -0.013965776190161705, 0.027662836015224457, -0.014085205271840096, 0.01757105067372322, 0.025483248755335808, -0.004795836750417948, -0.00818091444671154, 0.024378526955842972, -0.018511557951569557, 0.015070497989654541, -0.008792989887297153, 0.007270264904946089, 0.006236454006284475, 0.012122084386646748, 0.03642596676945686, 0.010293321684002876, 0.0498916320502758, -0.0113831153139472, 0.007531516719609499, -0.01837719976902008, -0.024677099660038948, -0.024677099660038948, -0.002683429280295968, 0.02309466153383255, -0.008016698993742466, 0.009733496233820915, -0.020691143348813057, -0.02010892517864704, -0.0007870211265981197, -0.0031294235959649086, -0.004101653583347797, 0.0020657554268836975, 0.03260422870516777, -0.024617385119199753, -0.02406502515077591, 0.0022411674726754427, 0.02043735608458519, 0.05275793746113777, -0.031171074137091637, -0.02124350517988205, -0.020243283361196518, 0.013189484365284443, 0.026289397850632668, 0.0072516039945185184, 0.018959417939186096, 0.02672232873737812, -0.0050682853907346725, 0.0003368282341398299, 0.03278337046504021, 0.012480372563004494, 0.014398707076907158, -0.009658852592110634, -0.017481477931141853, 0.025244390591979027, 0.002276622923091054, 0.023199161514639854, 0.004034474492073059, -0.015003318898379803, -0.012159406207501888, 0.010883004404604435, 0.006389473099261522, 0.004392762668430805, 0.0042807976715266705, -0.034724097698926926, 0.008554130792617798, 0.008621309883892536, -0.032663941383361816, 0.021273361518979073, -0.0006396004464477301, -0.019168419763445854, -0.05484795197844505, -0.012816268019378185, -0.001724262023344636, 0.024094881489872932, 0.011256220750510693, 0.003900116542354226, -0.01927291974425316, -0.012540087103843689, -0.000766960671171546, -0.000983426463790238, -0.022721443325281143, 0.010576966218650341, 0.010323178954422474, -0.02902134507894516, 0.011241292580962181, 0.01489135343581438, 0.026587970554828644, 0.0030697088222950697, -0.018123412504792213, 0.03496295586228371, 0.01619761250913143, -0.02769269235432148, -0.049354199320077896, 0.028036052361130714, -0.008412308990955353, -0.011271149851381779, 0.04442773759365082, -0.013831418007612228, -0.015854252502322197, -0.014727137982845306, -0.025572821497917175, -0.00047561826067976654, 0.01861605793237686, -0.019720779731869698, 0.0035847481340169907, -0.03293265774846077, 0.007247871719300747, -0.02318423241376877, 0.0465177521109581, -0.052578795701265335, 0.009546888060867786, 4.8328670345654245e-06, 0.002504285192117095, -0.00015628457185812294, 0.015645252540707588, 0.0325743705034256, -0.007091120816767216, 0.012704302556812763, 0.033917948603630066, -0.020123854279518127, -0.010360500775277615, 0.028633199632167816, 0.027841979637742043, 0.02503538876771927, -0.001806369749829173, 0.017989054322242737, -0.02406502515077591, 0.03179807960987091, 0.033440232276916504, -0.008875097148120403, 0.014540529809892178, -0.002431507920846343, -0.006811208091676235, -0.03591839224100113, 0.008322736248373985, 0.014413636177778244, -0.002633045194670558, 0.02579675056040287, 0.002407248830422759, 0.008218235336244106, -0.0006456652190536261, 0.015003318898379803, -0.0221690833568573, 0.004527120850980282, 0.004389030393213034, -0.008024162612855434, -0.029722992330789566, -0.0015973682748153806, -0.09327436238527298, 0.0033458892721682787, -0.004430084489285946, -0.047264184802770615, 0.009964890778064728, -0.022482585161924362, -0.023885879665613174, -0.015451178885996342, 0.0022113099694252014, 0.03341037407517433, -0.008412308990955353, -0.040456708520650864, -0.010494858957827091, -0.03227579593658447, 0.009315493516623974, 0.002599455649033189, -0.02902134507894516, 0.006187935825437307, 0.006329758558422327, -0.0008901222608983517, -0.014077740721404552, -0.005680360831320286, 0.003997152671217918, -0.02894670143723488, -0.03493310138583183, 0.007867411710321903, -0.028125625103712082, 0.0044599417597055435, 0.020780716091394424, -0.012592338025569916, -0.005810986738651991, -0.005247429478913546, -0.00979321077466011, 0.0008481353870593011, -0.016108039766550064, -0.01757105067372322, 0.008292878977954388, -0.013532844372093678, -0.03481367230415344, -0.018735487014055252, -0.017138119786977768, -0.06389473378658295, -0.012883447110652924, 0.025901252403855324, -0.0024594992864876986, 0.01878027431666851, -0.029334846884012222, -0.01792933978140354, 0.00826302170753479, 0.0019257990643382072, 0.04606989026069641, -0.002728215418756008, 0.01583932526409626, -0.03096207231283188, 0.0008042823756113648, 0.002261694287881255, -0.013689595274627209, 0.010121641680598259, 0.021676436066627502, 0.02708061784505844, 0.024438241496682167, 0.021512221544981003, 0.024766672402620316, -0.02708061784505844, 0.02422923967242241, 0.01773526705801487, 0.047622475773096085, 0.03451509773731232, 0.01080089621245861, -0.008330200798809528, -0.04177043214440346, 0.015279498882591724, -0.02067621611058712, 0.000389545108191669, 0.004668943118304014, 0.008501880802214146, -0.005609449930489063, 0.005090678110718727, -0.02596096694469452, 0.011592116206884384, -0.019840208813548088, 0.04168086126446724, -0.0032843085937201977, 0.00083274015923962, -0.0003034719848074019, -0.012107155285775661, -0.0026293129194527864, 0.035619817674160004, -0.014383778907358646, -0.03164879232645035, -0.022960303351283073, -0.029931994155049324, 0.01769047975540161, -0.0006559286848641932, -0.01975063793361187, -0.003795615630224347, 0.014928675256669521, -0.006938101723790169, -0.03959084674715996, -0.015585537068545818, 0.017302334308624268, -0.0010506055550649762, -0.030603785067796707, -0.0005910822656005621, 0.002909225644543767, 0.013316377997398376, 0.043950021266937256, -0.007453141268342733, -0.03836669400334358, -0.013779167085886002, 0.02124350517988205, -0.01071878895163536, -0.0056616999208927155, -0.014533065259456635, -0.012360943481326103, 0.020004425197839737, 0.027483690530061722, 0.019168419763445854, -0.027707621455192566, -0.014234491623938084, -0.03532124683260918, 0.00874820351600647, 0.01045753713697195, -0.017391907051205635, -0.011980261653661728, 0.018839988857507706, -0.010733717121183872, -0.0062215253710746765, -0.02567732147872448, 0.008427237160503864, -0.03027535416185856, 0.029722992330789566, -0.027468763291835785, 0.012062369845807552, 0.014928675256669521, -0.008912418968975544, -0.008218235336244106, -0.003993420861661434, 0.006344687193632126, -0.014443493448197842, 0.007270264904946089, -0.04660732299089432, -0.0069343699142336845, -0.0162871852517128, 0.01243558619171381, 0.006184203550219536, -0.03370894864201546, 0.032663941383361816, 0.0024725617840886116, -0.0073822299018502235, -0.03349994868040085, -0.021795865148305893, 0.010554573498666286, 0.008218235336244106, -0.0632975846529007, -0.004680139943957329, 0.0013361164601519704, 0.0051653217524290085, -0.024617385119199753, -0.013644808903336525, 0.011301007121801376, 0.015809467062354088, -0.04845847934484482, 0.019541636109352112, 0.02693133056163788, 0.001519925775937736, -0.002442704513669014, -0.005639307200908661, -0.0011924279388040304, 0.011502544395625591, -0.03305208683013916, -0.014256885275244713, 0.012778946198523045, 0.009225921705365181, 0.029230346903204918, -0.001771847135387361, 0.019377419725060463, -0.029902135953307152, -0.005837112199515104, -0.009352815337479115, -0.02172122336924076, 0.041292715817689896, -0.012771481648087502, -0.029513990506529808, -0.009860389865934849, -0.0015740422531962395, -0.03075307048857212, -0.017675552517175674, 0.03573925048112869, -0.004885409027338028, -0.007300122175365686, -0.04057614132761955, 0.01156972348690033, 0.010450072586536407, -0.007942055352032185, -0.009181135334074497, 0.016675330698490143, 0.011980261653661728, 0.017138119786977768, 0.01752626523375511, -0.00800176989287138, -0.01991485245525837, -0.005687825381755829, 0.001689739408902824, 0.014764459803700447, -0.026393897831439972, -0.013704524375498295, 0.015525822527706623, 0.008233164437115192, 0.010263464413583279, -0.0013193216873332858, 0.023005088791251183, 0.016675330698490143, 0.019884996116161346, 0.014607708901166916, -0.011928011663258076, 0.014742067083716393, -0.016033397987484932, 0.03140993416309357, -0.039202701300382614, -0.045890748500823975, 0.0034074701834470034, 0.005982666742056608, -0.014682352542877197, 0.01967599429190159, 0.020332856103777885, 0.012241513468325138, -0.006654457189142704, 0.0075352489948272705, 0.03308194503188133, 0.010173892602324486, 0.05759482830762863, 0.011502544395625591, -0.029513990506529808, 0.02072100155055523, -0.004299458581954241, 0.0007268398767337203, 0.006505170371383429, 0.00673283264040947, 0.009061706252396107, -0.024453170597553253, -0.0052884831093251705, 0.0021012111101299524, 0.007830089889466763, -0.011816046200692654, 0.004706264939159155, -0.021377863362431526, 0.06825390458106995, 0.014398707076907158, -0.011510008946061134, 0.0007198420353233814, 0.02503538876771927, -0.023691806942224503, 0.017436692491173744, -0.0530565120279789, -0.014719673432409763, -0.05422094836831093, -0.0024986870121210814, 0.025363819673657417, 0.020526928827166557, -0.02720004692673683, 0.02330366149544716, 0.012293764390051365, -0.02252737060189247, -0.03188765048980713, -0.003427996998652816, 0.01571989431977272, -0.01660068705677986, -0.02717018872499466, -0.023870952427387238, -0.013010340742766857, -0.028633199632167816, 0.004851819481700659, 0.004116582218557596, 0.004180029034614563, 0.014450957998633385, 0.031708505004644394, 0.027035830542445183, -0.05162335932254791, 0.013032733462750912, 0.002155327470973134, 0.0223332978785038, 0.03227579593658447, 0.01939234882593155, -0.026304325088858604, -0.00878552533686161, -0.016735045239329338, 0.0009656986803747714, 0.036127395927906036, 0.003246986772865057, 0.011039755307137966, 0.002666634740307927, -0.015421321615576744, -0.010606823489069939, -0.021616721525788307, 0.009718568064272404, -0.014786852523684502, 0.01785469613969326, -0.0436813049018383, 0.0007566972053609788, 0.005695289466530085, -0.011980261653661728, -0.015286963433027267, 0.00515039311721921, -0.02837941236793995, 0.0011709679383784533, -0.05284751206636429, -0.004213618580251932, 0.0020079067908227444, -0.033231232315301895, -0.023348448798060417, -0.026991045102477074, 0.006452919915318489, 0.004956320393830538, 0.02193022333085537, 0.05093663930892944, -0.004560710396617651, -0.0024594992864876986, -0.009867854416370392, -0.01410759799182415, -0.02961849234998226, -0.01491374708712101, -0.024617385119199753, 0.01680968888103962, -0.0037023115437477827, -0.00032143303542397916, -0.029409490525722504, 0.01721276342868805, -0.01231615711003542, 0.042427293956279755, 0.03212650865316391, -0.014495743438601494, 0.029902135953307152, 0.0010590029414743185, 0.006452919915318489, 0.007374765817075968, -0.0037769549526274204, -0.016272256150841713, -0.020093996077775955, -0.020243283361196518, -0.0013865007786080241, -0.031290505081415176, -0.009330421686172485, 0.005426573567092419, 0.01797412522137165, 0.03514210134744644, 0.014480815269052982, 0.005452698562294245, -0.01612296886742115, 0.011241292580962181, 0.03143978863954544, -0.02402023784816265, 0.03588853403925896, 0.011278614401817322, 0.021497292444109917, 0.027483690530061722, -0.0024986870121210814, 0.014585316181182861, -0.048070333898067474, 0.001591769978404045, 0.014868960715830326, -0.011704081669449806, -0.028185339644551277, -0.033679090440273285, 0.0012969286181032658, -0.029797635972499847, 0.02124350517988205, -5.0442595238564536e-05, -0.03361937776207924, -0.006329758558422327, -0.029125845059752464, 0.012749088928103447, -0.006094631738960743, 0.000778157205786556, -0.055445101112127304, 0.012017583474516869, -0.01410759799182415, -0.02036271244287491, -0.03696339949965477, 0.011942939832806587, 0.011323399841785431, 0.007927126251161098, -0.012375871650874615, 0.014421100728213787, -0.014667423442006111, 0.002912957686930895, 0.009173670783638954, -0.02728961780667305, -0.01350298710167408, -0.003222727682441473, -0.03490324318408966, -0.0005840844241902232, 0.01454799436032772, -0.014458421617746353, -0.0002605520421639085, 0.01130847167223692, 0.02522946149110794, 0.0028793681412935257, 0.023393234238028526, -0.019243063405156136, 0.029678206890821457, 0.024647243320941925, 0.014562922529876232, 0.004034474492073059, 0.016660401597619057, -0.04386044666171074, -0.027841979637742043, 0.02413966879248619, 0.012137013487517834, 0.025333961471915245, 0.015630323439836502, 0.0505484938621521, -0.007419551722705364, -0.006956762634217739, 0.00967378169298172, -0.010494858957827091, -0.018227912485599518, -0.017884552478790283, 0.016391685232520103, 0.02885712869465351, 0.02837941236793995, 0.010711324401199818, -0.015824396163225174, -0.024811457842588425, -0.016839545220136642, -0.02373659424483776, -0.03788897767663002, -0.0011289811227470636, 0.00035059062065556645, 0.009442387148737907, 0.027513548731803894, 0.024930886924266815, -0.012898375280201435, 0.024497956037521362, -0.0034018720034509897, 0.00485555175691843, -0.0027953945100307465, 0.0055646635591983795, -0.0075165880843997, -0.017347121611237526, -0.008852704428136349, 0.016421543434262276, 0.026871616020798683, 0.013689595274627209, -0.013779167085886002, -0.001063668169081211, 0.012480372563004494, 0.015182462520897388, 0.07804711163043976, 0.009091563522815704, -0.003004395868629217, 0.006359615828841925, 0.0052884831093251705, -0.03099193051457405, -0.0203179270029068, 0.003149950411170721, 0.014428564347326756, -0.0009078500443138182, -0.011353258043527603, -0.00013225873408373445, -0.013786631636321545, -0.0046316212974488735, 6.344686698867008e-05, -0.011860832571983337, -0.036664824932813644, 0.005281019024550915, -5.023849007557146e-05, -0.034724097698926926, 3.414351158426143e-05, -0.0023867220152169466, -0.0066992430947721004, -0.0440097339451313, -0.01834734156727791, 0.007845018990337849, -0.010838218033313751, 0.008621309883892536, -0.0045569781213998795, -0.0022075779270380735, 0.011271149851381779, 0.005180250387638807, -0.017436692491173744, 0.0012054905528202653, 0.03388809412717819, -0.0016356230480596423, 0.021258434280753136, -0.010106713511049747, 0.025005530565977097, 0.020750857889652252, -0.01801891066133976, -0.03302222862839699, 0.012226585298776627, -0.014839103445410728, 0.0028047249652445316, -0.002394186332821846, -0.004960052203387022, -0.031738363206386566, -0.0024874904192984104, -0.009860389865934849, -0.03788897767663002, -0.00363699859008193, -0.020064139738678932, 0.006079703103750944, -0.03803826496005058, -0.005706486292183399, 0.008882561698555946, 0.029902135953307152, 0.019496850669384003, 0.026378968730568886, -0.014376314356923103, -0.0006843864684924483, -0.024333741515874863, -0.013047662563621998, -0.031260646879673004, -0.016063254326581955, 0.02596096694469452, -0.02511003240942955, 0.01709333248436451, -0.0034429256338626146, -0.02100464701652527, 0.020661287009716034, 0.031141215935349464, 0.027916623279452324, 0.01648125797510147, 0.028558555990457535, 0.030499283224344254, 0.038277123123407364, 0.008792989887297153, -0.04950348660349846, -0.04006856307387352, 0.016376756131649017, -0.01766062341630459, 0.00586323719471693, -0.03212650865316391, -0.014338992536067963, 0.007206818088889122, 0.006729100365191698, -0.00844216626137495, 0.0269611869007349, -0.007143371272832155, -0.02491595968604088, 0.006501438096165657, -0.0018940756563097239, -0.002427775878459215, 0.013032733462750912, -0.037948694080114365, -0.03099193051457405, -0.0128013389185071, -0.010270928964018822, 0.027379190549254417, 0.004952588118612766, -0.05807254835963249, -0.035201817750930786, -0.01600353978574276, -0.054519522935152054, -0.011442829854786396, -0.013659738004207611, -0.041382286697626114, 0.023691806942224503, -0.015913967043161392, 0.014719673432409763, 0.004881676752120256, 0.020497070625424385, -0.014413636177778244, 0.02712540328502655, 0.028349554166197777, -0.028648128733038902, -0.004553245846182108, -0.011935476213693619, 0.023602236062288284, -0.032753512263298035, -0.01354030892252922, -0.005699021741747856, -0.0007142437971197069, -0.006187935825437307, 0.020825501531362534, -0.024975674226880074, -0.009912640787661076, 0.03556010499596596, -0.013092448003590107, 0.0060983640141785145, 0.010674002580344677, -0.009360279887914658, -0.015391464345157146, -0.0023885881528258324, -0.01737697795033455, -0.010532180778682232, -0.0294692050665617, 0.03260422870516777, -0.0170485470443964, 0.013025268912315369, -0.018048768863081932, 0.0017578515689820051, 0.004142707213759422, 0.0002743143995758146, 0.0034018720034509897, 0.009614067152142525, -0.022154154255986214, -0.01866084337234497, -0.030663499608635902, -0.0024594992864876986, -0.001329585094936192, 0.03744111955165863, 0.007594963535666466, -0.047055184841156006, 0.02961849234998226, -0.006777618546038866, -0.00464655039831996, 0.0016505516832694411, -0.005191446747630835, -0.01555567979812622, -0.016227470710873604, 0.021960081532597542, 0.036575254052877426, -0.005497484467923641, 0.013331307098269463, -0.011002433486282825, 0.0113831153139472, 0.004347976762801409, 0.019810352474451065, -0.028200266882777214, -0.03490324318408966, 0.011472687125205994, 0.02591617964208126, -0.03164879232645035, -0.012248978018760681, 0.021676436066627502, 0.015160069800913334, -0.0183025561273098, 0.016063254326581955, -0.0014574119122698903, 0.0020788179244846106, 0.013920989818871021, -0.048428621143102646, 0.003054780187085271, -0.02845405600965023, -0.002694625873118639, 0.010494858957827091, -0.014525600709021091, -0.007102317176759243, -0.030364925041794777, -0.008494416251778603, 0.020422426983714104, 0.042218293994665146, 0.0023904540576040745, 0.0037209722213447094, -0.03678425773978233, -0.027468763291835785, 0.023930666968226433, -0.015913967043161392, -0.04604003578424454, -0.01555567979812622, -0.023512663319706917, 0.0072030858136713505, -0.008494416251778603, -0.02349773421883583, 0.009726031683385372, 0.029797635972499847, 0.024811457842588425, -0.022184012457728386, 0.008173449896275997, 0.019257990643382072, 0.012301228940486908, -0.0038124104030430317, -0.014406171627342701, -0.02954384870827198, 0.01930277794599533, 0.03293265774846077, -0.011995190754532814, 0.004586835391819477, -0.01491374708712101, 0.03382837772369385, -0.020825501531362534, -0.0035287656355649233, 0.003558622905984521, 0.042666155844926834, -0.0229304451495409, -0.03143978863954544, -0.020989717915654182, 0.019078847020864487, -0.01792933978140354, 0.010405287146568298, 0.021303219720721245, -0.02700597420334816, -0.01071878895163536, 0.0014984657755121589, -0.04120314493775368, 0.02413966879248619, -0.00788234081119299, -0.014921210706233978, -0.008554130792617798, 0.026140110567212105, -0.0034914440475404263, -0.0014088937314227223, -0.024094881489872932, -0.0006857860134914517, 0.0010356768034398556, -0.004881676752120256, 0.025617606937885284, -0.03753069043159485, 0.01600353978574276, -0.0005225036293268204, -0.020482143387198448, -0.020004425197839737, 0.022348226979374886, -0.007247871719300747, -0.01725754886865616, 0.00107859680429101, -0.009830532595515251, 0.0085242735221982, -0.006747761275619268, 0.017153048887848854, -0.03302222862839699, -0.03269379958510399, 0.005810986738651991, 0.011696617119014263, -0.004109117668122053, -0.004650282207876444, -0.0011224497575312853, -0.03338051959872246, -0.018854916095733643, -0.003457854501903057, 0.012950626201927662, 0.0034074701834470034, 0.015585537068545818, -0.014465886168181896, -0.013741845265030861, -0.011017362587153912, -0.028916843235492706, 0.0006391339120455086, 0.010935254395008087, -0.0019369956571608782, 0.004945123568177223, 0.04615946486592293, 0.04526374489068985, -0.015122747980058193, 0.035291388630867004, 0.023527592420578003, 0.013122305274009705, -0.017153048887848854, 0.03776954859495163, -0.0022934176959097385, 0.017645694315433502, 0.006359615828841925, 0.005381787661463022, -0.03278337046504021, 0.015040640719234943, 0.004187493585050106, -0.021019574254751205, -0.01709333248436451, -0.006796279456466436, -0.01809355430305004, -0.03200707957148552, 0.03120093233883381, -0.0008789257844910026, 0.005762468557804823, 0.0260356105864048, -0.008987062610685825, -0.014353921636939049, 0.012420658022165298, -0.012181798927485943, 0.008494416251778603, 0.007815161719918251, -0.009957426227629185, 0.02672232873737812, -0.0021254702005535364, -0.0249458160251379, -0.011957868933677673, -0.006826136726886034, 0.022467656061053276, 0.021452507004141808, 0.04947362840175629, -0.014062812551856041, 0.016093112528324127, 0.02878248691558838, -0.008165985345840454, -0.053026653826236725, 0.007046334911137819, 0.012204191647469997, 0.011928011663258076, -0.012816268019378185, -0.0015656448667868972, 0.004672675393521786, 0.026020681485533714, -0.018690701574087143, 0.0021441311109811068, 0.04177043214440346, -0.010218678042292595, 0.004512192215770483, 0.021616721525788307, 0.027632977813482285, 0.0020265677012503147, 0.02451288513839245, 0.003640730632469058, 0.01858620159327984, 0.022273583337664604, -0.004362905398011208, -0.01295808982104063, 0.006075970828533173, 0.022422870621085167, -0.004702532663941383, -0.0015591135015711188, -0.002422177465632558, -0.03146964684128761, -0.0036929810885339975, 0.04132257401943207, -0.011472687125205994, -0.00038091448368504643, 0.029484134167432785, -0.005616914015263319, -0.009942498058080673, -0.011957868933677673, 0.009360279887914658, -0.026259539648890495, 0.016735045239329338, -0.006064774468541145, -0.009606602601706982, 0.01247290801256895, 0.010046998038887978, -0.007016477640718222, 0.000446227437350899, 0.02100464701652527, -0.03293265774846077, -0.04953334480524063, -0.03979984670877457, 0.02169136516749859, 0.02095985971391201, -0.03358951956033707, -0.01007685624063015, 0.0025322765577584505, -0.00796444807201624, 0.026692472398281097, 0.008098806254565716, 0.0018287627026438713, 0.005687825381755829, -0.027438905090093613, -0.001989245880395174, -0.009905176237225533]" -How Conserv Safeguards History: Building an Environmental Monitoring and Preventive Conservation IoT Platform,"often describes his background as “helping people make good decisions with data.” He has extensive experience in analytics and decision support – and a history of using data to guide organizations to their desired outcomes.Nathan McMinn(this is me!), our other co-founder and CTO, comes from the development world. I’ve spent my career leading engineering teams and building products people love, most notably in the enterprise content management sector.Ellen Orr, a museum preparator turned fantastic collections consultant.Cheyenne Mangum, our talented frontend developer.Melissa King, a preventative conservator who recently joined to help us build better relationships with more collections.Bhuwan Bashel, who is joining in a senior engineering role (oh yeah, he’ll get some TimescaleDB experience quickly!).About the projectWe collect several types of data, but the overwhelming majority of the data we collect and store in TimescaleDB is IoT sensor readings and related metrics. Our solution consists of fleets of LoRaWAN sensors taking detailed environmental readings on a schedule, as well as event-driven data (seethis articlefor an overview of LoRaWAN sensors, use cases, and other details).So, what ends up in our database is a mix of things like environmental metrics (e.g., temperature, relative humidity, illuminance, and UV exposure), sensor health data (e.g., battery statistics), and data from events (e.g., leak detection or vibration triggers).We also capture information about our customers’ locations - such as which rooms are being monitored - and data from human observations - such as building or artifact damage and pest sightings - to give our sensor data more context and some additional “texture.” It’s one thing to collect data from sensors, but when you pair that with human observations, a lot of interesting things can happen.Our UI makes it simple to add a human observation to any data point, collection, or date.See our docsfor more details.For us, it is all about scale and performance.We collect tens of thousands of data points each day, and our users think about their metrics and their trends over years, not days.Also, like anybody else, our users want things to feel fast. So far, we’re getting both from TimescaleDB.With those criteria met, our next challenge is how to use that data to (1) provide actionable insights to our customers, allowing them to ask and answer questions like “what percentage of time is my collection within our defined environmental",https://www.timescale.com/blog/how-conserv-safeguards-history-building-an-environmental-monitoring-and-preventative-analytics-iot-platform/,495,"[-0.008399304002523422, 0.00016011409752536565, 0.0607718788087368, 0.012814808636903763, 0.040625669062137604, 0.024326929822564125, 0.003347603604197502, 0.021085357293486595, -0.0458667129278183, 0.0032548250164836645, 0.0156625434756279, -0.04392782971262932, 0.007331403438001871, -0.04341281205415726, 0.044049009680747986, 0.046139366924762726, -0.007641927804797888, -0.03635406494140625, -0.038838259875774384, 0.03235511854290962, 0.01226949691772461, 0.0361722968518734, 0.03299131616950035, -0.02550843544304371, -0.01990385167300701, -0.015200544148683548, -0.046321138739585876, 0.07513173669576645, 0.03668731078505516, -0.049683891236782074, -0.011701464653015137, -0.028537942096590996, -0.07240518182516098, 0.04868415370583534, 0.019025294110178947, 0.018631458282470703, 0.03027990646660328, -0.012701202183961868, 0.02091873623430729, 0.006471781060099602, -0.05207720026373863, -0.0009405667660757899, 0.011050120927393436, 0.02385735511779785, -0.013466152362525463, -0.049835365265607834, -0.045806124806404114, 0.0009358332026749849, 0.016192706301808357, 0.05731824412941933, -0.051501594483852386, -0.023993683978915215, -0.018434541299939156, -0.0165865421295166, 0.027689680457115173, -0.025584174320101738, -0.006873190402984619, 0.035293739289045334, -0.033688101917505264, -0.018813228234648705, 0.028992367908358574, -0.034687839448451996, 0.021221686154603958, 0.04153452068567276, -0.03850501403212547, 0.011587858200073242, -0.03586934506893158, 0.02643243595957756, -0.034990787506103516, 0.026477878913283348, 0.06955744326114655, 0.0398985855281353, -0.011580284684896469, -0.0035236936528235674, 0.03938357159495354, -0.06677030026912689, -0.009974646382033825, 0.04589700698852539, -0.013928151689469814, -0.029386203736066818, 0.013617627322673798, -0.030264759436249733, 0.007373059168457985, -0.0033362428657710552, -0.0162230022251606, -0.029507383704185486, 0.004813126754015684, -0.03056771121919155, -0.016192706301808357, 0.01681375503540039, -0.003694103332236409, 0.0469876304268837, -0.010785039514303207, -0.0033949397038668394, 0.04280691221356392, 0.02755335159599781, 0.021373162046074867, 0.02054004743695259, 0.01204228401184082, -0.004877503961324692, -0.035142265260219574, -0.025417551398277283, 0.013102611526846886, -0.014988478273153305, 0.010822908021509647, 0.00722537050023675, 0.018995000049471855, -0.01576857641339302, -0.004718455020338297, -0.0002863829431589693, -0.11475766450166702, -0.003949717618525028, 0.00174291233997792, 0.006089305970817804, -0.037565868347883224, -0.01224677637219429, -0.025599321350455284, -0.013458577916026115, -0.006983010098338127, -0.04832061380147934, 0.004237520974129438, 0.023221159353852272, 0.007327616214752197, 0.012898119166493416, 0.001446588896214962, -0.03165833279490471, -0.02170640602707863, -0.04616966471076012, -0.02229716069996357, 0.010315465740859509, 0.04520022124052048, -0.03680849075317383, 0.04132245481014252, -0.026038600131869316, -0.034021347761154175, -0.020343128591775894, -0.04877503961324692, -0.026235517114400864, -0.03226423263549805, -0.02785630337893963, 0.01103497389703989, -0.019040441140532494, 0.056500278413295746, -0.014420446008443832, -0.0012089620577171445, 0.0022929569240659475, -0.01997958868741989, 0.04798736795783043, -0.019191917032003403, 0.0009045914048328996, -0.012201333418488503, 0.014087200164794922, -0.03623288497328758, -0.019585752859711647, 0.05595496669411659, 0.015223264694213867, 0.045654647052288055, 0.054046377539634705, -0.00796002522110939, -0.024114863947033882, 0.049047693610191345, 0.030446529388427734, -0.004063324071466923, -0.0067709446884691715, 0.005744699854403734, 0.013958446681499481, -0.005150159355252981, -0.043897535651922226, -0.0898551344871521, 0.015238412655889988, -0.054379623383283615, 0.006664912216365337, -0.021342866122722626, 0.039837997406721115, 0.0484720878303051, -0.006032502744346857, 0.015617100521922112, -0.04526081308722496, 0.03396075591444969, -0.046290844678878784, -0.08743152767419815, -0.02762909047305584, -0.024584436789155006, 0.008868877775967121, -0.03526344522833824, 0.0014058798551559448, -0.02979518659412861, 0.027053484693169594, -0.005373585503548384, 0.015276281163096428, -0.029734596610069275, 0.07173869013786316, 0.051289528608322144, 0.014390151016414165, 0.01139094028621912, -0.04616966471076012, 0.04507904127240181, 0.019040441140532494, -0.02561446838080883, 0.008194812573492527, 0.06410433351993561, 0.03344574198126793, 0.07743415981531143, 0.0033419232349842787, 0.02166096493601799, 0.006445272825658321, 0.0003185714303981513, 0.008300844579935074, -0.06095365062355995, -0.04011065140366554, 0.013473725877702236, 0.021130800247192383, 0.026129484176635742, 0.029083251953125, -0.040322717279195786, 0.02594771422445774, -0.05662145838141441, -0.024993419647216797, 0.02076726034283638, -0.0019010147079825401, 0.000863409077282995, 0.07858537137508392, 0.014814281836152077, -0.0012411505449563265, -0.034657541662454605, 0.01711670681834221, 0.002256981562823057, -0.0387776717543602, 0.04108009487390518, -0.018328508362174034, 0.023614995181560516, -0.04635143280029297, -0.024145158007740974, 0.003731972072273493, -0.010557826608419418, -0.00282501382753253, 0.04732087627053261, -0.018434541299939156, 0.009141532704234123, 0.007445009890943766, -0.01478398684412241, 0.02688686177134514, -0.007838845252990723, 0.06201397627592087, 0.030446529388427734, 0.01321621797978878, -0.03732350841164589, -0.07404111325740814, 0.015723133459687233, 0.035172559320926666, 0.04413989558815956, -0.020630931481719017, 0.012390677817165852, -0.02308483235538006, -0.01994929276406765, -0.03526344522833824, -0.04123156890273094, 0.034324295818805695, 0.02102476730942726, 0.026159780099987984, 0.0036657017190009356, -0.02576594427227974, -0.0005599851720035076, -0.02091873623430729, -0.05625791847705841, -0.012519431300461292, -0.0015781830297783017, -0.049380939453840256, -0.012534579262137413, -0.01663198508322239, 0.023948241025209427, 0.03171892091631889, 0.008005468174815178, -0.07591940462589264, -0.039050325751304626, -0.0006683846586383879, 0.008649238385260105, -0.01321621797978878, -0.007891861721873283, -0.02408456802368164, -0.03102213703095913, 0.0014494290808215737, 0.041776880621910095, -0.02893177792429924, -0.00018745065608527511, 0.001952137565240264, -0.0009453003876842558, 0.02829558216035366, -0.017253033816814423, -0.006714141461998224, 0.00537737226113677, -0.019706932827830315, 0.03008298948407173, -0.03762645646929741, -0.013276807963848114, -0.0038929146248847246, 0.010815334506332874, -0.0042072259820997715, -0.0180861484259367, -0.01666228100657463, 0.021751848980784416, -0.008831008337438107, 0.014980904757976532, -0.028128959238529205, 0.028643975034356117, 0.041110388934612274, 0.0044268649071455, -0.010466941632330418, -0.0012430439237505198, 0.005233470816165209, 0.04413989558815956, -0.03474842756986618, 0.010270023718476295, 0.012807234190404415, -0.012670906260609627, -9.047097410075366e-05, 0.05722735822200775, 0.027674533426761627, -0.019419129937887192, -0.026614205911755562, -0.048047956079244614, -0.099913090467453, 0.008876451291143894, -0.008808286860585213, -0.011905957013368607, -0.0003848418709821999, 0.024857092648744583, 0.031446266919374466, -0.0035445215180516243, -0.029446793720126152, 0.01707126386463642, -0.043049272149801254, 0.02818954922258854, -0.007660862058401108, -0.017540836706757545, -0.022054800763726234, 0.008929467760026455, -0.02793204039335251, 0.013329824432730675, 0.01685919798910618, -0.01722273789346218, -0.061317190527915955, -0.07167810201644897, -0.009914056397974491, 0.043564289808273315, 0.00505170039832592, -0.026599058881402016, -0.013276807963848114, 0.004165570251643658, 0.026629352942109108, -0.0331730842590332, -0.014200806617736816, -0.0065323710441589355, -0.013806971721351147, -0.015829166397452354, 0.019222212955355644, 0.010936514474451542, -0.02270614355802536, 0.0005869666929356754, -0.0068807643838226795, -0.05095628276467323, 0.018373951315879822, 0.03986829146742821, -0.004604848567396402, -0.006528584286570549, 0.04253425821661949, -0.05637909844517708, -0.002631882904097438, 0.002349760150536895, -0.025447845458984375, 0.003980012610554695, -0.031415972858667374, -0.022842470556497574, -0.028462203219532967, -0.0514410026371479, 0.016238149255514145, 0.051653068512678146, 0.007380632683634758, -0.012814808636903763, 0.05871181562542915, 0.022160831838846207, 0.015874609351158142, 0.02926502376794815, -0.020752113312482834, 0.01790437661111355, 0.053379885852336884, -0.002080891514196992, 0.0017495393985882401, -0.044351961463689804, -0.022948503494262695, 0.035021085292100906, -0.007134485524147749, -0.0004106400010641664, -0.012829955667257309, -0.020312834531068802, 0.019449425861239433, 0.02102476730942726, 0.0458667129278183, 0.05883299559354782, -0.03064344823360443, 0.04235248640179634, -0.001759006641805172, -0.025250928476452827, -0.01008825283497572, 0.005846945568919182, 0.0013490766286849976, 0.004487454891204834, 0.007115550804883242, -0.02434207685291767, -0.033203378319740295, -0.017313623800873756, -0.05510670319199562, 0.019373686984181404, -0.01632903516292572, 0.05328899994492531, -0.03535432741045952, -0.0035255870316177607, 0.05846945568919182, 0.021085357293486595, 0.026795975863933563, -0.035626985132694244, -0.005668962374329567, -0.00126292509958148, -0.022660700604319572, -0.02260011062026024, 0.042746324092149734, 0.05543994903564453, -0.0421404205262661, -0.04168599471449852, -0.0671338438987732, -0.02882574498653412, 0.013117758557200432, 0.02416030690073967, 0.019964441657066345, -0.0432613380253315, -0.0010006835218518972, 0.007800976745784283, 0.004919159691780806, 0.014049331657588482, -0.016616838052868843, 0.023887651041150093, -0.008777991868555546, 0.004495028872042894, 0.030173875391483307, -0.015707986429333687, -0.017056116834282875, -0.02308483235538006, -0.019661489874124527, -0.011436383239924908, -0.009573237039148808, 0.03274895250797272, -0.0016425600042566657, -0.0164047721773386, 0.031234201043844223, -0.013026873581111431, -0.029507383704185486, 0.008558353409171104, -0.013731233775615692, 0.04741176217794418, -0.041261862963438034, -0.04768441617488861, 0.004616208840161562, -0.033051904290914536, -0.03332456201314926, -0.03187039867043495, -0.046593792736530304, 0.009421762079000473, 0.002889390802010894, 0.03408193588256836, -0.026629352942109108, 0.04513963311910629, 0.006316518876701593, 0.0030787349678575993, -0.017465099692344666, -0.045806124806404114, -0.014814281836152077, 0.00012946402421221137, -0.011587858200073242, 0.02170640602707863, 0.008974909782409668, 0.034990787506103516, -0.003012464614585042, -0.0857350081205368, 0.06313489377498627, 0.002893177792429924, -0.009156680665910244, -4.529465877567418e-05, 0.03462724760174751, -0.02821984328329563, 0.023736175149679184, -0.03441518172621727, -0.0003299320815131068, 0.05125923454761505, -0.019343392923474312, -0.028325876221060753, 0.02543269842863083, -0.021827587857842445, -0.05059274286031723, -0.0008908639429137111, -0.0010092039592564106, 0.053894903510808945, -0.006555092521011829, 0.013428282923996449, 0.06252899020910263, -0.017995262518525124, 0.014003888703882694, -0.028053220361471176, 0.009421762079000473, -0.008618943393230438, -0.0025826534256339073, -0.016465362161397934, 0.04108009487390518, 0.020418867468833923, 0.03147656098008156, -0.02579623833298683, 0.031294792890548706, 0.016753165051341057, 0.010156417265534401, -0.012527004815638065, -0.011663596145808697, -0.031082727015018463, -0.020373424515128136, -0.023721028119325638, 0.025175191462039948, 0.009308155626058578, 0.0006333559867925942, -0.05171366035938263, -0.01685919798910618, -0.03374869003891945, 0.00853563193231821, 0.019328245893120766, -0.019267654046416283, 0.010254875756800175, 0.00986103992909193, -0.057772669941186905, 0.035626985132694244, 0.01755598373711109, -0.05434932932257652, -0.0328095443546772, 0.006744436454027891, 0.008543205447494984, 0.04344310984015465, 0.0035861770156770945, 0.02076726034283638, 5.851915921084583e-05, 0.00632787961512804, -0.02147919312119484, -0.0277805645018816, -0.01200441550463438, 0.06446787714958191, 0.034021347761154175, -0.012610316276550293, 0.04653320461511612, -0.004229946993291378, 0.012504284270107746, 0.013549462892115116, 0.012352808378636837, 0.0010603269329294562, 0.02125198021531105, -0.01172418612986803, 0.004131488036364317, -0.005877240560948849, 0.022872766479849815, 0.0009230524301528931, 0.009656548500061035, 0.029946662485599518, -0.0012061218731105328, -0.0009012778755277395, -0.030991841107606888, -0.004214799497276545, -0.013299529440701008, -0.031415972858667374, -0.0009486139169894159, 0.0030787349678575993, 0.01979781873524189, 0.002709513995796442, -0.017692312598228455, -0.005267552565783262, -0.01946457289159298, -0.003667595097795129, -0.02926502376794815, -0.025902271270751953, -0.028386466205120087, 0.03150685876607895, -0.050835102796554565, -0.005559142678976059, 0.0028647761791944504, 0.02931046485900879, 0.03459695354104042, 0.000971335219219327, -0.00599463377147913, -0.013784250244498253, -0.0021812438499182463, 0.038686785846948624, 0.02472076565027237, -0.00013668276369571686, 0.0032037021592259407, 0.0030673742294311523, -0.020676374435424805, 0.04459432139992714, 0.009906482882797718, -0.001855572103522718, -0.02214568480849266, -0.005131225101649761, -0.01552621554583311, 0.005506126210093498, 0.034021347761154175, 0.013655495829880238, 0.01920706406235695, -0.034354593604803085, 0.016207855194807053, -0.0071572065353393555, 0.011603006161749363, -0.020888440310955048, -0.017722606658935547, 0.008005468174815178, 0.004309471696615219, -0.01070172805339098, 0.020676374435424805, 0.004252668470144272, -0.020252244547009468, -0.024857092648744583, 0.005536421202123165, -0.023357488214969635, -0.004313258454203606, 0.011322776786983013, -0.021797291934490204, -0.04123156890273094, -0.0002403486578259617, 0.006418764591217041, 0.0033192019909620285, -0.00048377414350397885, 0.041110388934612274, -0.0010887285461649299, -0.011254613287746906, 0.02341807819902897, 0.04635143280029297, 0.042110126465559006, -0.0019322565058246255, -0.010186712257564068, 0.025781091302633286, 0.0027133007533848286, -0.012761792168021202, -0.009709564968943596, 0.01269362773746252, -0.025523584336042404, -0.023539258167147636, 0.04183747246861458, -0.0020146211609244347, -0.007191288750618696, -0.019403982907533646, -0.042716026306152344, 0.03571787104010582, 0.01070172805339098, -0.007649501319974661, 0.003073054598644376, -0.053743425756692886, -0.002936726901680231, 0.0005708724493160844, 0.020570341497659683, -0.04680585861206055, 0.00848261546343565, -0.010815334506332874, 0.009701991453766823, -0.0167834609746933, 0.03329426422715187, 0.05198631435632706, 0.009876187890768051, 0.033688101917505264, 0.03668731078505516, -0.01329195499420166, 0.03835354000329971, -0.0005296901217661798, 0.02699289470911026, 0.011512121185660362, 0.0013519168132916093, 0.0010394990677013993, -0.011898382566869259, 0.018995000049471855, 0.05586408078670502, -0.01920706406235695, 0.006089305970817804, -0.009739859960973263, -0.005725765600800514, 0.004850995726883411, 0.004941880702972412, -8.6979940533638e-05, 0.023842208087444305, 0.02308483235538006, 0.04638173058629036, 0.020221948623657227, -0.012307366356253624, 0.0193888358771801, -0.03571787104010582, -0.012072579003870487, -0.041625406593084335, -0.002879923675209284, 0.02073696441948414, -0.013261660002171993, -0.05483404919505119, -0.030628301203250885, 0.005100929643958807, -0.05247103422880173, 0.006956501863896847, -0.02717466466128826, 0.0113682197406888, -0.0006309892050921917, -0.0022153258323669434, 0.048865921795368195, 0.009330877102911472, -0.05450080335140228, -0.017707459628582, -0.022690996527671814, 0.01976752281188965, 0.008618943393230438, -0.014284118078649044, -0.010557826608419418, 0.03947445750236511, -0.036959968507289886, 0.008528058417141438, -0.055197589099407196, -0.003896701382473111, -0.03187039867043495, -0.030779775232076645, 0.039656225591897964, -0.035626985132694244, 0.012860250659286976, 0.020479457452893257, 0.006494502536952496, -0.03232482448220253, 0.009429335594177246, -5.2846230573777575e-06, 0.005135011859238148, -0.022751586511731148, -0.01103497389703989, 0.0037433328106999397, -0.01767716370522976, -0.010891072452068329, -0.021206539124250412, -0.007123124785721302, -0.05677293241024017, 0.017662016674876213, -0.0014607897028326988, -0.01796496845781803, 0.02717466466128826, -0.03150685876607895, 5.325302481651306e-05, 0.04653320461511612, 0.00033158884616568685, -0.007244305219501257, -0.009315729141235352, 0.0158443134278059, -0.03217334672808647, -0.01607152633368969, -0.005756060592830181, -0.03444547578692436, 0.019525162875652313, 0.021873028948903084, 0.009633827023208141, 0.035445213317871094, 0.005475831218063831, 0.03496049344539642, -0.03180980682373047, 0.013761528767645359, 0.009406614117324352, 0.034021347761154175, 0.01666228100657463, 0.014291692525148392, -0.023508962243795395, -0.03792940825223923, -0.01592005044221878, -0.03608141094446182, 0.009626253508031368, 0.0010536998743191361, 0.0447457954287529, -0.010353335179388523, -0.008013041689991951, 0.015124806202948093, 0.027098925784230232, -0.0024425387382507324, 0.02885603904724121, -0.008331140503287315, -0.0014920315006747842, -0.03941386565566063, 0.004070898052304983, -0.002777677960693836, -0.0043738484382629395, -0.0144507410004735, -0.019600899890065193, -0.03892914578318596, -0.03171892091631889, 0.02806836925446987, -0.02691715583205223, -0.02094903029501438, 0.021206539124250412, 0.008974909782409668, 0.007691157050430775, -0.07361698150634766, -0.015571658499538898, 0.024660173803567886, -0.022418340668082237, 0.0010944089153781533, -0.01033061370253563, 0.011860514059662819, 0.02300909347832203, 0.03795970231294632, -0.026477878913283348, 0.020085621625185013, -0.014943036250770092, -0.0069905840791761875, 0.023024242371320724, -0.026311255991458893, -0.006687633227556944, -0.004566979594528675, 0.0188283771276474, 0.019282802939414978, 0.025190338492393494, -0.0188283771276474, 0.0009410401689819992, -0.05007772520184517, 0.0398985855281353, 0.0007687369943596423, -0.03732350841164589, -0.016525952145457268, 0.038535308092832565, 0.02296365238726139, -0.016116969287395477, 0.005165306851267815, -0.013178348541259766, -0.02176699787378311, 0.02438751980662346, -0.022660700604319572, 0.0277805645018816, 0.0032529314048588276, 0.003343816613778472, -0.007816123776137829, -0.0024747273419052362, -0.005464470479637384, -0.03795970231294632, 0.04189806059002876, -0.009989794343709946, 0.03265807032585144, -0.038686785846948624, 0.0028969645500183105, 0.012208906933665276, -0.029689153656363487, 0.008717401884496212, 0.021267129108309746, 0.007846418768167496, -0.02684141881763935, -0.01923735998570919, -0.01688949391245842, 0.02296365238726139, -0.0652555450797081, -0.005487191956490278, 0.012390677817165852, 0.012678480707108974, -0.035475511103868484, 0.0005008151056244969, 0.011148580349981785, -0.040655963122844696, -0.04383694380521774, 0.008694680407643318, 0.015632247552275658, 0.02203965187072754, -0.005275126546621323, 0.0072480919770896435, -0.00036685419036075473, 0.03438488766551018, 0.011027400381863117, -0.004017881583422422, 0.025675058364868164, 0.004638930317014456, -0.0002941933926194906, -0.003322988748550415, -0.00844474695622921, -0.023842208087444305, 0.017586279660463333, -0.011141006834805012, -0.03762645646929741, 0.044533729553222656, -0.003031398868188262, -0.01293598860502243, 0.0066346172243356705, -0.0151020847260952, -0.017737755551934242, 0.007562403101474047, 0.018055852502584457, 0.004169357009232044, -0.029143841937184334, -0.017692312598228455, 0.022388044744729996, 0.026689942926168442, -0.002641350030899048, -0.010239728726446629, 0.009974646382033825, 0.008422025479376316, 0.029386203736066818, 0.0002799925860017538, -0.008172091096639633, 0.016768312081694603, -0.011481826193630695, 0.012761792168021202, 0.0037812015507370234, -0.01816188544034958, -0.009921630844473839, 0.006165043450891972, -0.009270287118852139, 0.01872234418988228, -0.012095300480723381, 0.0014664699556306005, 0.014693101868033409, 0.008285697549581528, 0.018616311252117157, 0.0049570281989872456, 0.052107494324445724, -0.03520285338163376, 0.03477872163057327, -0.030067842453718185, -0.04253425821661949, 0.034990787506103516, 0.007437435910105705, 0.03068889118731022, 0.03374869003891945, 0.007793402764946222, 0.03165833279490471, -0.025447845458984375, 0.016010936349630356, 0.03287013620138168, 0.019843261688947678, 0.06483142077922821, -0.004650291055440903, -0.015647396445274353, 0.01643506810069084, -0.017434803768992424, -0.011459104716777802, 0.008020616136491299, 0.0035236936528235674, 0.02147919312119484, -0.02349381521344185, -0.030143579468131065, 0.039686523377895355, -0.012102873995900154, -0.00011419815564295277, 0.006592961493879557, -0.018540574237704277, 0.023539258167147636, 0.02490253560245037, -0.028128959238529205, -0.02191847190260887, 0.05983273312449455, -0.019600899890065193, 0.020327981561422348, -0.04813884198665619, -0.00466165179386735, -0.0331730842590332, -0.004741176031529903, 0.03247629851102829, 0.02732613869011402, 0.011830219067633152, 0.005661388393491507, 0.020858144387602806, -0.03865649178624153, -0.017707459628582, -0.010527531616389751, -0.013708512298762798, 0.019343392923474312, -0.0050782086327672005, -0.015503494068980217, -0.003722504945471883, -0.009383893571794033, 0.045957598835229874, 0.011868087574839592, -0.009762581437826157, 0.0049494546838104725, -0.008376582525670528, 0.02359984815120697, -0.039353277534246445, 0.0007658968679606915, -0.0024671535938978195, 0.034506067633628845, 0.059378307312726974, -0.012587595731019974, -0.060226570814847946, -0.00022011250257492065, -0.03441518172621727, 0.03929268568754196, 0.031082727015018463, 0.012420972809195518, 0.036596424877643585, 0.029840629547834396, 0.0037925622891634703, -0.00939904060214758, 0.021524636074900627, 0.008724975399672985, -0.0031904480420053005, 0.004919159691780806, -0.004294324200600386, 0.018873820081353188, 0.014738543890416622, -0.010580548085272312, -0.010557826608419418, 0.01997958868741989, 0.023281749337911606, -0.0075055998750030994, -0.04247366636991501, 0.025962861254811287, 0.0035236936528235674, 0.00377930817194283, -0.015245986171066761, -0.029658859595656395, -0.003991373348981142, 0.011981694027781487, 0.030658595263957977, 0.01804070547223091, 0.009883761405944824, -0.02915899083018303, -0.04083773493766785, -0.0073654851876199245, -0.018767787143588066, 0.015427757054567337, -0.00978530291467905, 0.04038330912590027, 0.0011313309660181403, 0.006161256693303585, -0.036747902631759644, 0.004775258246809244, 0.013806971721351147, 0.0001364460913464427, 0.02650817297399044, -0.010928940959274769, 0.03814147412776947, 0.024175453931093216, -0.005509912967681885, -0.006278649903833866, -0.008179664611816406, 0.016647132113575935, -0.010641138069331646, -0.00475253676995635, -0.008641664870083332, -0.022206274792551994, -0.019782671704888344, 0.00824025459587574, 0.02359984815120697, 0.021539783105254173, 0.013473725877702236, -0.004714667797088623, -0.002700046868994832, 0.008278124034404755, 0.034657541662454605, -0.0016501337522640824, 0.029780039563775063, 0.008876451291143894, 0.0023459733929485083, 0.03274895250797272, 0.0013149947626516223, -0.005384945776313543, -0.007717665284872055, 0.018146738409996033, 0.009285434149205685, 0.010042810812592506, -0.014753691852092743, -0.011815071105957031, 0.0015242199879139662, -0.010270023718476295, 0.029931513592600822, -0.00407468480989337, -0.0779188796877861, 0.03105243109166622, -0.008005468174815178, -0.015450477600097656, -0.0070284525863826275, 0.011807497590780258, -0.06919390708208084, -0.00861136894673109, -0.0066724857315421104, 0.001444695401005447, -0.03938357159495354, 0.026053747162222862, 0.006070371717214584, 0.006377108860760927, 0.020403718575835228, -0.02352410927414894, 0.007214009761810303, -0.014276544563472271, 0.003552095266059041, -0.015753429383039474, -0.009149106219410896, -0.0008146529435180128, -0.026644499972462654, 0.014579495415091515, -0.004169357009232044, 0.01223162841051817, -0.004635143559426069, 0.0011218637228012085, 0.007914583198726177, -0.03441518172621727, 0.02829558216035366, -0.026341550052165985, 0.008172091096639633, 0.01144395675510168, 0.006687633227556944, 0.00015443377196788788, -0.0009694417822174728, -0.01872234418988228, -0.03941386565566063, 0.037232622504234314, -0.007539681624621153, 0.00038697198033332825, 0.04086802899837494, 0.03574816510081291, -0.007070108316838741, 0.0013670643093064427, 0.013125332072377205, 0.026159780099987984, 0.019343392923474312, 0.020191654562950134, 0.02490253560245037, 0.015586805529892445, 0.017995262518525124, 0.049532413482666016, -0.03783852234482765, 0.028204696252942085, 0.0007535894983448088, -0.009277860634028912, -0.018025558441877365, 0.01651080511510372, -0.010603269562125206, -0.013776675797998905, 0.01632903516292572, 0.029583120718598366, -0.03411223366856575, 0.005858306307345629, 0.026447582989931107, -0.02923472784459591, -0.0013642242411151528, 0.012708775699138641, 0.018298212438821793, -0.005074421875178814, -0.01487487182021141, 0.0027114073745906353, 0.01607152633368969, 0.016238149255514145, 0.02303938940167427, 0.01782863959670067, 0.017025820910930634, 0.003885340876877308, 0.06949685513973236, 0.0201310645788908, -0.02255466766655445, -0.012958710081875324, -0.009868614375591278, -0.023478668183088303, 0.0027890384662896395, 0.014624937437474728, 0.002472833963111043, 0.01196654699742794, -0.0043624876998364925, -0.00316393980756402, -0.03046167828142643, 0.013034447096288204, 0.02147919312119484, -0.00539630651473999, -0.042594846338033676, 0.008724975399672985, -0.00939904060214758, -0.02043401449918747, 0.006956501863896847, 0.009232417680323124, 0.005002471152693033, -0.036111705005168915, -0.03199157863855362, 0.016313886269927025, 0.005290274042636156, -0.0032680791337043047, -0.014034184627234936, 0.011118285357952118, 0.01474611833691597, -0.025705354288220406, 0.009535368531942368, 0.029810333624482155, 0.008952188305556774, 0.007687370292842388, 0.009709564968943596, -0.006805026903748512, 0.016026083379983902, -0.00507063465192914, 0.014655232429504395, -0.021524636074900627, 0.009050647728145123, -0.013110185042023659, -0.0010167778236791492, 0.013178348541259766, -0.01487487182021141, -0.00880071334540844, 0.013026873581111431, -0.020085621625185013, -0.03220364451408386, 0.023024242371320724, 0.005634880159050226, -0.006748223677277565, -0.021085357293486595, 0.02875000797212124, 0.035021085292100906, 0.03262777253985405, 0.0151929697021842, 0.040777143090963364, -0.002440645359456539, 0.002679219003766775, -0.02643243595957756, 0.01748024672269821, -0.022024504840373993, -0.0026905795093625784, 0.014056905172765255, -0.010163990780711174, 0.017359066754579544, -0.048896219581365585, 0.002936726901680231, 0.014670380391180515, -0.007081469055265188, 0.019843261688947678, 0.0335669219493866, 0.03565727919340134, 0.013413135893642902, 0.022115390747785568, 0.00982317142188549, -0.06543731689453125, -0.03620259091258049, 0.020752113312482834, -0.03015872649848461, 0.016465362161397934, -0.0024236044846475124, -0.04471550136804581, -0.014200806617736816, 0.007778255268931389, -0.02170640602707863, 0.011883235536515713, 0.007414714898914099, -0.019918998703360558, 0.016192706301808357, 0.010519958101212978, -0.021782144904136658, -0.006816387176513672, -0.06104453653097153, -0.009755007922649384, -0.003279439639300108, -0.036778196692466736, 0.004684372805058956, 0.029598267748951912, -0.034324295818805695, 0.016692575067281723, -0.00253531732596457, -0.02632640302181244, -0.005127437878400087, -0.036626722663640976, -0.017086410894989967, 0.00222289958037436, -0.0331730842590332, 0.020115915685892105, 0.017525689676404, 0.019600899890065193, 0.03362751007080078, 0.019525162875652313, 0.011337924748659134, -0.017586279660463333, -0.027204958721995354, 8.555986278224736e-05, 0.005714404862374067, -0.011701464653015137, -0.009482352063059807, 0.0010442326311022043, 0.004608635324984789, 0.010928940959274769, 0.01722273789346218, -0.018283065408468246, 0.003820963902398944, -0.02099447324872017, -0.002934833522886038, 0.013564610853791237, 0.017737755551934242, -0.011996841989457607, -0.007520747371017933, 0.010656285099685192, -0.02467532269656658, -0.025629617273807526, -0.0020127277821302414, 0.008437172509729862, -0.03811118006706238, 0.014693101868033409, -0.003550201654434204, 0.015647396445274353, 0.003694103332236409, -0.015291429124772549, 0.02158522605895996, 0.021373162046074867, 0.012239201925694942, -0.01737421378493309, -0.017949819564819336, 0.020888440310955048, 0.05862092971801758, 0.0013784250477328897, -0.02987092360854149, -0.03299131616950035, 0.030961545184254646, -0.009406614117324352, -0.017525689676404, 0.009421762079000473, -0.00904307421296835, -0.0026356696616858244, -0.006032502744346857, -0.03438488766551018, 0.03184010088443756, 0.004021668341010809, 0.02572050131857395, -0.01329195499420166, 0.0007606899016536772, 0.017586279660463333, 0.014662806876003742, -0.021857881918549538, -0.012118021957576275, -0.006248354911804199, 0.0425039604306221, -0.021903324872255325, -0.03326397016644478, 0.0206915233284235, -0.005259979050606489, -0.008512910455465317, 0.013875135220587254, 0.011769629083573818, -0.00014129803457763046, 0.019585752859711647, 0.017237886786460876, 0.011125858873128891, -0.033203378319740295, 0.0035464148968458176, -0.0030029972549527884, -0.02188817784190178, 0.0005296901217661798, -0.023736175149679184, -0.021539783105254173, 0.02893177792429924, 0.0206915233284235, 0.022827323526144028, 0.005161520093679428, -0.01673801802098751, -0.04489727318286896, 0.008308419026434422, -0.005555355921387672, -0.012148316949605942, -0.047442056238651276, -0.005547781940549612, -0.008300844579935074, 0.016495658084750175, -0.017131853848695755, 0.007982746697962284, 0.02073696441948414, 0.007221583742648363, 0.004824487492442131, -0.008247829042375088, -0.002675432013347745, 0.01875263825058937, 0.001267658662982285, -0.02308483235538006, -0.013170775026082993, 0.06158984825015068, 0.003565349383279681, -0.06549790501594543, 0.04086802899837494, -0.011769629083573818, 0.0022153258323669434, -0.011284908279776573, -0.008785566315054893, 0.011171301826834679, 0.02640214003622532, -0.007800976745784283, 0.014072053134441376, -0.005714404862374067, 0.004260241985321045, -0.011125858873128891, 0.0013623307459056377, 0.02990121953189373, -0.021903324872255325, -0.019918998703360558, -0.004078471567481756, -0.03699026256799698, 0.023766471073031425, -0.035445213317871094, -0.02806836925446987, -0.01867690123617649, 0.013753955252468586, 0.029946662485599518, 0.0044268649071455, 0.013223791494965553, 0.01552621554583311, 0.02094903029501438, -0.005153946112841368, 0.011481826193630695, -0.036929670721292496, 0.00821753405034542, -0.003292693756520748, -0.02487223967909813, -0.027916893362998962, 0.02885603904724121, 0.013738807290792465, 0.005104716867208481, -0.00316015281714499, -0.022660700604319572, 0.013988741673529148, -0.011277333833277225, -0.003923209384083748, -0.01961604878306389, -0.01637447625398636, 0.008422025479376316, 0.02263040654361248, -0.020252244547009468, -0.0156625434756279, 0.05250132828950882, -0.017162147909402847, 0.019297949969768524, 0.009921630844473839, 0.011754481121897697, 0.009906482882797718, -0.012360382825136185, -0.0019445638172328472, 0.021282276138663292, -0.015965493395924568, -0.012307366356253624, 0.0020998260006308556, 0.008565926924347878, 0.003885340876877308, 0.0019038548925891519, 0.021358013153076172, -0.0038077097851783037, -0.011481826193630695, -0.0013254086952656507, 0.012352808378636837, 0.028916629031300545, -0.015632247552275658, 0.02859853208065033, 0.013920578174293041, 0.009353598579764366, 0.02150948904454708, 0.01353431586176157, -0.0002470940526109189, 0.0068921251222491264, 0.0014058798551559448, 0.008179664611816406, -0.0015403141733258963, -0.00022780461586080492, 0.0009789089672267437, -0.01629873923957348, 0.03056771121919155, -0.013193496502935886, -0.012299791909754276, 0.029386203736066818, -0.013897856697440147, -0.01767716370522976, -0.002156629227101803, -0.0015601953491568565, 0.0028666695579886436, -0.014632511883974075, 0.01804070547223091, 0.004684372805058956, 0.030991841107606888, 0.011125858873128891, 0.004139062017202377, 0.030931251123547554, 0.03184010088443756, -0.0031525790691375732, 0.015094511210918427, -0.00316015281714499, 0.034687839448451996, 0.006013568490743637, 0.006445272825658321, -0.037111442536115646, 0.005123651120811701, -0.01663198508322239, 0.04341281205415726, -0.0059188962914049625, 0.025856830179691315, -0.02375132218003273, 0.06013568490743637, -0.008209959603846073, 0.0057825688272714615, 0.028204696252942085, 0.018707197159528732, -0.004203438758850098, -0.018782934173941612, 0.003355177352204919, -0.027008041739463806, 0.00022827797511126846, -0.01417051162570715, 0.051471296697854996, 0.011284908279776573, 0.0048585692420601845, -0.0015488347271457314, -0.0002790458675008267, 0.004850995726883411, 0.014420446008443832, -0.015056642703711987, -0.026144633069634438, -0.017086410894989967, 0.0010574867483228445, 0.00982317142188549, -0.008369009010493755, -0.015647396445274353, 0.03171892091631889, 0.02628096006810665, -0.007937304675579071, -0.026705091819167137, 0.011943825520575047, -0.03405164182186127, -0.0028647761791944504, 0.027023188769817352, -0.0035975377541035414, -0.0013415028806775808, -0.012458841316401958, 0.007657075300812721, 0.00567653588950634, 0.012125595472753048, -0.04638173058629036, -0.007687370292842388, -0.03444547578692436, 0.023796765133738518, 0.007441222667694092, 0.0006328826420940459, 0.002221006201580167, 0.00502519216388464, 0.024690469726920128, 0.016313886269927025, 0.011209170334041119, 0.03056771121919155, -0.0015194863080978394, -0.015723133459687233, 0.019585752859711647, -0.01908588409423828]" -How Conserv Safeguards History: Building an Environmental Monitoring and Preventive Conservation IoT Platform,"ranges?” and (2) offer in-depth analysis and predictions, like possible mold and mechanical damage risks.This iswhere we’ve gotten the most value out of TimescaleDB: the combination of a performant, scalable repository for our time-series data, the core SQL features we know and trust, and the built-in time-series functionalityprovided by TimescaleDB let us build new analysis features much faster.Example of our Collections focused analytics dashboard -see our docsfor more details.✨Editor's Note:To learn how we’ve architected TimescaleDB to support joining time-series data with other relational data,check out our data model documentationandfollow our Hello, Timescale! tutorialto try it out for yourself.Using (and choosing) TimescaleDBI first found out about TimescaleDB at anAll Things Open conferencea few years ago; it was good timing, since we were just starting to build out our platform. Our first PoC used ElasticSearch to store readings, which we knew wouldn’t be a permanent solution. We also looked at InfluxDB, and, while Amazon’s Timestream looked promising, it wasn’t released yet.Our database criteria was straightforward; we wanted scale, performance, and the ability to tap into the SQL ecosystem. After evaluating TimescaleDB’s design, we were confident that it would meet our needs in the first two categories, but so would many other technologies.What ultimately won me over was the fact that it’s PostgreSQL.I’ve used it for years in projects of all sizes; it works with everything, and it’s a proven, trustworthy technology – one less thing for me to worry about.✨Editor’s Note:To see how TimescaleDB stacks up to alternatives, read ourInfluxDB vs. TimescaleDBandAmazon Timestream vs. TimescaleDBbenchmark posts (included in-depth performance, scale, and developer experience comparisons) andexplore our at-a-glance comparisons.Current deployment & use casesOur stack is fairly simple, standard stuff for anyone that has a UI → API → database pattern in their application. Our secret sauce is in how well we understand our users and their problems, not our architecture :).Some of our future plans will require us to get more complex, but for now we’re keeping it as simple and reliable as possible:Node.js services running in Docker containers on AWS ECS, with TimescaleDB on the database tierReact.js frontendMobile app built with FlutterIn the near future, I’d like to move over toTimescaleDB’s hosted cloud offering. As we get bigger, that will be something we evaluate.In line with the above, our queries themselves aren’t that clever, nor do",https://www.timescale.com/blog/how-conserv-safeguards-history-building-an-environmental-monitoring-and-preventative-analytics-iot-platform/,541,"[0.006270802114158869, 0.002467377344146371, 0.06740573793649673, 0.0013001319020986557, 0.0779791846871376, 0.01800072193145752, -0.029091350734233856, 0.009970072656869888, -0.027166292071342468, 0.021836470812559128, 0.02001197636127472, -0.038357485085725784, 0.015170600265264511, -0.02223872020840645, 0.03209386393427849, 0.03358794003725052, -0.013123431243002415, -0.02874656394124031, -0.023388009518384933, 0.015860173851251602, -0.018747758120298386, 0.01578834280371666, 0.026017004624009132, -0.00020516585209406912, -0.007908537052571774, -0.025657853111624718, -0.04062732681632042, 0.046201374381780624, 0.00037149834679439664, -0.07705975323915482, 0.028028259053826332, -0.043586742132902145, -0.03861607238650322, 0.018776491284370422, 0.04151802510023117, 0.02552855759859085, 0.03315695747733116, 0.00934514682739973, 0.02512630634009838, 0.005685383453965187, -0.03358794003725052, 0.04413265362381935, 0.008540645241737366, 0.012907939963042736, -0.009043458849191666, 0.0008264995994977653, -0.026203764602541924, -0.026993898674845695, -0.014416379854083061, 0.0641302615404129, -0.0399952195584774, 0.0159751009196043, -0.017339881509542465, -0.013784271664917469, 0.029005153104662895, -0.034536100924015045, -0.013705258257687092, 0.023201249539852142, 0.020557887852191925, -0.01778523065149784, 0.019739018753170967, -0.052637387067079544, 0.029737824574112892, 0.0550796240568161, -0.013985397294163704, 0.030398664996027946, -0.028933322057127953, 0.02725248970091343, -0.02814318798482418, 0.03407638520002365, 0.04352927953004837, 0.0029270926024764776, 0.008777686394751072, -0.011342034675180912, 0.04818389564752579, -0.06539448350667953, -0.015486654825508595, 0.04993655905127525, -0.006260027643293142, 0.0015784751158207655, 0.022454211488366127, -0.002770861377939582, -0.025758415460586548, 0.03057105839252472, 0.007491920609027147, -0.035656657069921494, 0.008727405220270157, -0.010286126285791397, -0.012591885402798653, -0.007843890227377415, -0.026462353765964508, 0.05232132971286774, 0.018460437655448914, 0.0009014726965688169, 0.03904705494642258, 0.03424878045916557, 0.011435414664447308, 0.010135282762348652, -0.025988273322582245, 0.023201249539852142, 0.010408238507807255, -0.007779242470860481, -0.028904590755701065, -0.020170003175735474, 0.05637257173657417, -0.009776130318641663, 0.025370530784130096, 0.020543521270155907, -0.0010999044170603156, 0.02703699842095375, -0.10240155458450317, 0.009575004689395428, -0.05628637596964836, 0.006346223875880241, -0.015845807269215584, -0.0007196517544798553, -0.035139478743076324, -0.0032287805806845427, -0.017512274906039238, -0.0006518617155961692, -0.03289836645126343, -0.01192386168986559, -0.02412067912518978, 0.046804748475551605, 0.02505447529256344, -0.04373040422797203, 0.018848322331905365, -0.048212628811597824, -0.03689214214682579, 0.010192747227847576, 0.014509759843349457, 0.0017751110717654228, 0.03628876432776451, -0.00895726215094328, -0.008547828532755375, -0.009330781176686287, -0.05008022114634514, 0.0041266619227826595, -0.008425717242062092, 0.0029737823642790318, 0.016521014273166656, -0.05499342456459999, 0.04189154505729675, 0.0057500312104821205, -0.022181255742907524, 0.00934514682739973, -0.014969474636018276, 0.03186400607228279, -0.020069438964128494, -0.008799235336482525, -0.009790495969355106, 0.0035502221435308456, -0.03657608851790428, -0.00239913840778172, 0.05180415138602257, -0.009984438307583332, 0.024063214659690857, 0.0482700914144516, -0.014121875166893005, -0.019638456404209137, -0.006295942701399326, 0.038443680852651596, -0.028631635010242462, -0.016837067902088165, -0.00671255961060524, -0.01095414999872446, -0.05295344069600105, -0.0399952195584774, -0.09177064150571823, -0.007707411888986826, -0.013446668162941933, -0.021649710834026337, -0.011794567108154297, 0.030513593927025795, 0.029507966712117195, -0.015055671334266663, -0.010221479460597038, -0.07068120688199997, 0.036145105957984924, -0.032438650727272034, -0.0688423439860344, 0.018043819814920425, -0.03186400607228279, 0.014222437515854836, -0.030599789693951607, 0.0036094821989536285, -0.0540739968419075, 0.026261229068040848, -0.0005203221226111054, 0.03177781030535698, -0.04361547529697418, 0.07677242904901505, 0.013604695908725262, 0.019221840426325798, 0.0069962902925908566, -0.0699341669678688, 0.029076984152197838, 0.05174668878316879, -0.059073396027088165, -0.0014069797471165657, 0.045281942933797836, 0.027367418631911278, 0.06889981031417847, 0.0042739142663776875, 0.0008983301231637597, 0.03246738389134407, -0.008260507136583328, 0.0059116496704518795, -0.07412906736135483, -0.03459356725215912, -0.006497068330645561, 0.004557644948363304, -0.00011930595792364329, -0.0054986244067549706, -0.03137556090950966, -0.006015803664922714, -0.04315575957298279, -0.02764037437736988, 0.01221118401736021, 0.00999880488961935, 0.008612476289272308, 0.06930205971002579, 0.009689933620393276, -0.022957025095820427, -0.0009400816052220762, 0.021850835531949997, 0.03289836645126343, -0.03488088771700859, 0.03781157359480858, -0.004633066710084677, -0.016851434484124184, -0.047092072665691376, -0.009258951060473919, -0.04574165865778923, 0.007405723910778761, 0.0097473980858922, 0.007678679656237364, -0.018446071073412895, -0.008756137453019619, -0.044908422976732254, -0.013080332428216934, 0.007563751190900803, -0.010192747227847576, 0.022051962092518806, 0.020141270011663437, 0.01377708837389946, -0.013037234544754028, -0.07292231917381287, 0.009158387780189514, 0.04858614504337311, 0.04775291308760643, -0.025887709110975266, 0.008325153961777687, -0.013159346766769886, -0.007958818227052689, -0.05441878363490105, -0.018216213211417198, 0.0321800597012043, 0.022267453372478485, 0.008167127147316933, -0.01492637675255537, -0.007807974703609943, -0.0030510001815855503, -0.0018343712436035275, -0.06085479259490967, 0.008425717242062092, 0.029536698013544083, -0.04763798415660858, 0.01568778045475483, -0.035541728138923645, 0.03766791149973869, 0.023000124841928482, 0.004352927673608065, -0.061371974647045135, -0.00849754735827446, -0.0450233519077301, 0.010796123184263706, -0.02291392721235752, 0.007470371201634407, -0.0009499582811258733, -0.003300611162558198, -0.04574165865778923, 0.03557046130299568, -0.012455407530069351, 0.024709690362215042, -0.0026254046242684126, 0.0210032369941473, 0.018963249400258064, -0.008317971602082253, -0.031002040952444077, -0.0009104515193030238, -0.0157021451741457, 0.013992580585181713, -0.039966486394405365, 0.004769544582813978, 0.015156233683228493, 0.004374477081000805, -0.010695560835301876, -0.031203165650367737, -0.014969474636018276, 0.02111816592514515, 0.008361069485545158, 0.018158748745918274, -0.023862089961767197, 0.03186400607228279, 0.001600024290382862, -0.01070992648601532, -0.017641568556427956, -0.02866036631166935, 0.0025679401587694883, 0.013195261359214783, -0.02321561612188816, 0.0019160783849656582, -0.029177546501159668, -0.009984438307583332, -0.03057105839252472, 0.048701073974370956, -0.02071591466665268, -0.02976655587553978, -0.05398779734969139, -0.021348021924495697, -0.08234647661447525, -0.005570454988628626, 0.02302885614335537, 0.0045181382447481155, -0.015960736200213432, 0.03146175667643547, -0.002756495261564851, 0.035426799207925797, -0.013748356141149998, -0.005613552872091532, -0.034334976226091385, 0.014574406668543816, 0.015070037916302681, -0.04120197147130966, -0.0661415159702301, 0.013245543465018272, 0.011184007860720158, -0.02291392721235752, 0.020342396572232246, -0.004844966810196638, -0.013446668162941933, -0.08303605020046234, 0.016722138971090317, 0.02172154188156128, 0.024810252711176872, -0.04778164252638817, -0.007218964397907257, -0.0037962414789944887, 0.0056961579248309135, -0.03126063197851181, -0.009402611292898655, -0.0028750156052410603, -0.0026846646796911955, 0.026878969743847847, 0.002092063194140792, 0.02301448956131935, -0.014100326225161552, -0.02884712629020214, -0.005563271697610617, -0.028832759708166122, 0.009984438307583332, 0.0024566028732806444, -0.0009122472838498652, -0.02062971703708172, 0.024781519547104836, -0.04947684332728386, 0.0008740873308852315, -0.009991621598601341, -0.02886149287223816, 0.023488571867346764, -0.004076380282640457, -0.024206876754760742, -0.007060937583446503, -0.04384533315896988, 0.008555011823773384, 0.032840900123119354, 0.03651862218976021, 0.007096852641552687, 0.060969721525907516, 0.02403448335826397, 0.028631635010242462, 0.0001565680286148563, -0.01206033956259489, 0.03456483408808708, 0.04151802510023117, 0.010767390951514244, 0.037265658378601074, -0.043672941625118256, -0.015271162614226341, 0.03669101744890213, 0.010178380645811558, -0.02845924161374569, -0.035053279250860214, -0.022296184673905373, 0.010695560835301876, -0.0028552620206028223, 0.024767154827713966, 0.05941818282008171, 0.0026343832723796368, 0.02524123527109623, -0.025370530784130096, -0.05349935218691826, -0.0025356165133416653, 0.012196817435324192, 0.016937630251049995, 0.017555372789502144, 0.0050712330266833305, -0.014129058457911015, -0.024364903569221497, -0.025456726551055908, -0.0011591645888984203, 0.041288167238235474, -0.01718185469508171, 0.0071938238106667995, -0.032438650727272034, -0.03376033157110214, 0.060682401061058044, 0.020873941481113434, 0.06441758573055267, -0.014560041017830372, -0.0034748001489788294, -0.033214420080184937, -0.010085001587867737, -0.031145701184868813, 0.06855501979589462, 0.06522208452224731, -0.01630552113056183, -0.024896448478102684, -0.07045134902000427, -0.004230815917253494, -0.018043819814920425, 0.03631749749183655, -0.019178742542862892, -0.01788579300045967, 0.027065729722380638, 0.022051962092518806, -0.02120436169207096, 0.03801269829273224, 0.010990065522491932, -0.01587453857064247, 0.015414823777973652, 0.009546272456645966, 0.011291753500699997, -0.01860409788787365, -0.017957624047994614, -0.016822701320052147, -0.036432426422834396, -0.016765236854553223, -0.01267089881002903, 0.04421885311603546, -0.005329822655767202, -0.03680594637989998, 0.019480429589748383, -0.00995570607483387, -0.05844128876924515, 0.03387526050209999, -0.0285454373806715, 0.03508201241493225, -0.042983368039131165, -0.021750273182988167, 0.03539806604385376, -0.06263618916273117, -0.03376033157110214, -0.012476956471800804, -0.04996529221534729, 0.03626003488898277, 0.005951156374067068, 0.03097330965101719, -0.0271519273519516, 0.037035804241895676, 0.0290482509881258, -0.013188078999519348, -0.00447863107547164, -0.02462349273264408, 0.007021430879831314, 0.020256198942661285, 0.010688377544283867, 0.023143785074353218, -0.023143785074353218, 0.02764037437736988, -0.010515984147787094, -0.02111816592514515, 0.04967796802520752, 0.0016242670826613903, 0.032438650727272034, 0.0012920510489493608, 0.028990786522626877, 0.016865799203515053, 0.045799121260643005, -0.021563515067100525, 0.008224591612815857, 0.04361547529697418, -0.017541006207466125, -0.014437928795814514, 0.000906859990209341, -0.07935833185911179, -0.024752788245677948, -0.007736144121736288, 0.012642166577279568, 0.04485096037387848, -0.009948523715138435, 0.018115650862455368, 0.07246260344982147, -0.025298699736595154, 0.03226625919342041, 0.00011537772661540657, -0.002278822474181652, 0.022583507001399994, -0.049132056534290314, -0.010113733820617199, 0.02231055125594139, 0.038271285593509674, 0.02562911994755268, -0.01657847873866558, 0.005886509083211422, 0.012117804028093815, 0.01332455687224865, -0.019279304891824722, -0.013827369548380375, -0.009359513409435749, -0.03315695747733116, -0.0314042903482914, 0.005710524041205645, -0.026017004624009132, -0.005448342766612768, -0.056544963270425797, 0.0002451215696055442, -0.018259311094880104, -0.009050642140209675, 0.0009697116911411285, -0.022353649139404297, 0.00020898184448014945, -0.02070154808461666, -0.04577039182186127, 0.017943257465958595, -0.012534420937299728, -0.04939064756035805, -0.027166292071342468, 0.035139478743076324, 0.01910691149532795, 0.039161983877420425, 0.006773615721613169, 0.021793371066451073, 0.010077818296849728, -0.006392913870513439, 0.002636179095134139, -0.011909496039152145, 0.002779840026050806, 0.04232252761721611, 0.031030774116516113, -0.017368612810969353, 0.023546036332845688, -0.0031210349407047033, 0.018158748745918274, 0.028416143730282784, 0.015228064730763435, 0.018561000004410744, 0.003728002542629838, -0.010243028402328491, -0.010221479460597038, -0.004209266975522041, 0.0021459360141307116, -0.013303006999194622, -0.010027537122368813, 0.01858973130583763, 0.0017589492490515113, -0.0215060506016016, -0.04203520342707634, 0.022051962092518806, -0.0013055192539468408, -0.007980368100106716, 0.006773615721613169, 0.014825813472270966, 0.022368015721440315, 0.009172754362225533, -0.029292475432157516, -0.014150607399642467, 0.016535378992557526, 0.016118763014674187, -0.03065725415945053, -0.010630913078784943, -0.027295587584376335, 0.049017127603292465, -0.025988273322582245, 0.006015803664922714, 0.023100687190890312, 0.005390878766775131, 0.031634148210287094, -0.010178380645811558, 0.010903868824243546, 0.0040225074626505375, -0.012225549668073654, -0.0026164257433265448, 0.025284333154559135, 0.0015838623512536287, 0.00019169763254467398, 0.0015757814981043339, -0.02070154808461666, 0.04019634425640106, 0.012304563075304031, -0.0033580756280571222, -0.019250571727752686, -0.03580031916499138, -0.03410511836409569, 0.032725971192121506, 0.008375435136258602, 0.001283072168007493, 0.03307075798511505, -0.022382382303476334, 0.02495391294360161, -0.005879325792193413, 0.0004664492735173553, -0.06470490992069244, -0.020486056804656982, -0.0012920510489493608, -0.02926374226808548, -0.029680360108613968, 0.014912010170519352, -0.014473844319581985, -0.04855741187930107, -0.030341200530529022, -0.010523167438805103, -0.04309829697012901, 0.017339881509542465, 0.02433617040514946, -0.010523167438805103, -0.03752424940466881, -0.014710885472595692, 0.02654854953289032, 0.008555011823773384, 0.017440443858504295, 0.03416258096694946, 0.002454807050526142, 0.004819826222956181, 0.023172516375780106, 0.04174788296222687, 0.041173238307237625, 0.00010179727541981265, 0.006827488541603088, 0.020759012550115585, 0.029278108850121498, -0.007707411888986826, -0.021376755088567734, -0.013856101781129837, -0.03732312470674515, 0.014193705283105373, 0.027970794588327408, -0.043988995254039764, -0.016118763014674187, -0.006252844352275133, -0.022454211488366127, 0.07458878308534622, 0.016851434484124184, 0.026979533955454826, -0.007190232630819082, -0.024091947823762894, -0.012864841148257256, -0.009474442340433598, 0.02495391294360161, -0.041173238307237625, 0.0034927576780319214, -0.035656657069921494, 0.016865799203515053, -0.035024549812078476, 0.0025140673387795687, 0.034133851528167725, 0.017828328534960747, 0.05036754161119461, 0.025313066318631172, -0.02009817212820053, 0.017512274906039238, 0.021448586136102676, 0.017828328534960747, 0.03637496009469032, -0.003900395706295967, 0.008813601918518543, -0.030341200530529022, 0.014502576552331448, 0.06573926657438278, -0.034133851528167725, 0.012936672195792198, -0.04108704254031181, -0.008619659580290318, -0.014552857726812363, 0.001925057265907526, -0.015601582825183868, 0.029910217970609665, 0.04735065996646881, 0.032639775425195694, 0.0025733273942023516, -0.005997846368700266, 0.0066263629123568535, -0.021980131044983864, -0.009014726616442204, -0.015242430381476879, 0.002101041842252016, 0.03832875192165375, -0.026692211627960205, -0.006748474668711424, 0.020055074244737625, 0.0025733273942023516, -0.07252006977796555, -0.022166891023516655, -0.020672816783189774, -0.0076068490743637085, 0.01940859854221344, -0.010257394053041935, 0.025686584413051605, -0.028631635010242462, -0.053757939487695694, 0.009287682361900806, -0.027726570144295692, 0.017325514927506447, -0.0169807281345129, -0.010681194253265858, -0.021161263808608055, 0.02814318798482418, -0.022396747022867203, -0.01950916275382042, -0.05280977860093117, -0.0007582606631331146, -0.026821507140994072, -0.043701671063899994, 0.04344308376312256, -0.013022868894040585, 0.016951996833086014, 0.028329946100711823, 0.0009230218129232526, -0.04131690040230751, 0.017023827880620956, 0.005703341215848923, 0.010221479460597038, -0.0005337903276085854, 0.011392315849661827, -0.008447266183793545, -0.012994136661291122, -0.015443556010723114, -0.031835272908210754, 0.006066085305064917, -0.011377950198948383, 0.01060936413705349, -0.012793011032044888, -0.024652225896716118, -0.0030061062425374985, -0.03712200000882149, 0.02301448956131935, 0.043988995254039764, 0.017253683879971504, -0.00504968361929059, -0.010322041809558868, 0.013827369548380375, -0.01366934273391962, 0.003886029589921236, -0.017339881509542465, -0.009804862551391125, -0.01050161849707365, 0.011349217966198921, -0.0061989715322852135, 0.041977740824222565, 0.011737102642655373, 0.037754107266664505, -0.03447863832116127, 0.008813601918518543, 0.0069819241762161255, 0.03988029062747955, -0.022253086790442467, 0.006708967965096235, -0.008368252776563168, -0.06464744359254837, -0.01699509471654892, -0.023560401052236557, -0.0010630913311615586, -0.009675567038357258, 0.06355562061071396, 0.0063390410505235195, -0.011514428071677685, -0.00023389804118778557, -0.018043819814920425, -0.024609126150608063, 0.03657608851790428, -0.010523167438805103, -0.029191913083195686, -0.01920747384428978, -0.00042514674714766443, 0.012247099541127682, 0.006629954557865858, 0.0014554653316736221, -0.02029929682612419, -0.030226271599531174, -0.01056626532226801, -0.012972586788237095, -0.02723812311887741, 0.028200652450323105, 0.003839339828118682, 0.0037854670081287622, -0.005868551321327686, -0.09797679632902145, -0.044276315718889236, 0.03732312470674515, -0.012800194323062897, -0.017555372789502144, -0.007118402048945427, 0.015745244920253754, 0.026074469089508057, 0.033214420080184937, -0.006493476685136557, -0.005114330910146236, -0.06246379762887955, -0.02373279444873333, -0.011270204558968544, -0.03752424940466881, 0.0028839942533522844, 0.010846404358744621, 0.039765361696481705, 0.019624091684818268, 0.008899797685444355, -0.020184367895126343, 0.0009634264861233532, -0.030283736065030098, 0.06866995245218277, 0.006166647654026747, -0.01870466023683548, -0.0026667071506381035, 0.023100687190890312, 0.008454449474811554, -0.014445112086832523, -0.011270204558968544, 0.004460673779249191, 0.00203639455139637, 0.006805939134210348, -0.007700229063630104, 0.01468215323984623, 0.002779840026050806, -0.0017499703681096435, 0.008303605020046234, -0.0034281103871762753, -0.025212503969669342, -0.05194781348109245, 0.0422363318502903, -0.03717946261167526, 0.051545560359954834, -0.027482347562909126, -0.0021854427177459, 0.021879568696022034, -0.014955108985304832, -0.00716150039806962, 0.015184965915977955, -0.0015596195589751005, -0.0014024904230609536, 0.0011187599739059806, -0.018877053633332253, 0.02080211043357849, -0.05189034715294838, -0.003314977278932929, -0.000402250763727352, -0.002171076601371169, -0.03467976301908493, 0.003907578997313976, 0.0155297527089715, -0.046804748475551605, -0.006874178070574999, -0.00910092331469059, -0.0020723098423331976, 0.031806543469429016, 0.006400097161531448, -0.002241111360490322, 0.04384533315896988, 0.034852154552936554, 0.02462349273264408, -0.01649228110909462, 0.010717109777033329, 0.010508800856769085, 0.004647432826459408, -0.004270322620868683, -0.04295463487505913, -0.017828328534960747, 0.02524123527109623, -0.008720221929252148, -0.029996413737535477, 0.014129058457911015, 0.005997846368700266, -0.014258353039622307, -0.00250149704515934, 0.0018478394486010075, 0.024192510172724724, -0.009230218827724457, 0.04611517861485481, -0.012742729857563972, -0.017541006207466125, 0.012886390089988708, 0.02070154808461666, 0.018762124702334404, 0.00653657503426075, 0.005117922555655241, 0.023301811888813972, -0.005987071432173252, 0.042868439108133316, -0.012742729857563972, 0.014797081239521503, 0.012649349868297577, -0.016406085342168808, -0.018216213211417198, 0.0169807281345129, -0.0005261583719402552, -0.0004213307402096689, 0.0020579437259584665, -0.020428592339158058, 0.00015454780077561736, -0.0008848619181662798, 0.012599068693816662, 0.004320604261010885, 0.014057227410376072, 0.016406085342168808, -0.012455407530069351, 0.003835748415440321, -0.027381783351302147, 0.04677601903676987, -0.019652822986245155, -0.02384772337973118, 0.027367418631911278, -0.01639171876013279, 0.026419255882501602, 0.040167611092329025, -0.00764276459813118, 0.012764278799295425, -0.009065008722245693, -0.0059331986121833324, 0.047120802104473114, 0.0037028619553893805, 0.053441885858774185, 0.012017241679131985, -0.040081415325403214, 0.03910452127456665, 0.0157021451741457, 0.016061298549175262, 0.037438053637742996, 0.0018164135981351137, -0.002589489333331585, 0.013231176882982254, 0.00849036406725645, 0.020773379132151604, -0.012053157202899456, -0.012900756672024727, -0.008985994383692741, -0.03752424940466881, 0.02616066485643387, 0.038271285593509674, -0.02281336486339569, 0.0012938467552885413, 0.057550590485334396, -0.015342993661761284, 0.05591285601258278, -0.057952843606472015, -0.02492518164217472, -0.020083805546164513, -0.01181611604988575, -0.0016287564067170024, 0.03327188640832901, 0.031318094581365585, -0.01568778045475483, 0.038759734481573105, -0.028186285868287086, -0.004079971928149462, -0.010379506275057793, -0.03462229669094086, 0.030082611367106438, 0.006188197061419487, 0.012074706144630909, 0.011916679330170155, 0.02019873447716236, 0.04893093183636665, 0.023890821263194084, 0.011435414664447308, 0.009402611292898655, 0.012383577413856983, 0.0007753203972242773, -0.02433617040514946, -0.003864480648189783, 0.02524123527109623, 0.04309829697012901, 0.031519219279289246, -0.013719623908400536, -0.038443680852651596, 0.007520652841776609, -0.022382382303476334, 0.024393634870648384, 0.03266850858926773, -0.0017553577199578285, 0.007901354692876339, 0.018345508724451065, -0.008217408321797848, 0.002835508668795228, 0.01971028745174408, -0.00583622744306922, -0.01086077094078064, 0.02384772337973118, -0.02934993989765644, 0.016463549807667732, 0.01808691769838333, -0.014646237716078758, -0.013058783486485481, 0.011650905944406986, 0.004334970377385616, 0.007635581307113171, -0.03646115958690643, 0.023071954026818275, 0.024077581241726875, 0.024609126150608063, 0.010243028402328491, -0.012994136661291122, 0.01598946750164032, 0.00335627980530262, 0.014725251123309135, 0.00909374002367258, -0.00469771446660161, -0.025111939758062363, -0.038242556154727936, -0.024867717176675797, -0.019681556150317192, 0.03307075798511505, -0.012405126355588436, 0.03789776936173439, 0.010228661820292473, 0.015213698148727417, -0.013109064660966396, 0.01306596677750349, 0.017153121531009674, 0.007908537052571774, 0.025269968435168266, 0.013877651654183865, 0.018043819814920425, 0.01689453236758709, 0.007136359345167875, 0.001189692527987063, -0.00975458137691021, 0.012002875097095966, 0.015759609639644623, 0.0075493850745260715, 0.0048054601065814495, -0.015256796963512897, -0.017426077276468277, -0.013281458057463169, 0.04582785442471504, 0.02452293038368225, 0.04108704254031181, 0.0006110081449151039, 0.01609002985060215, 0.014014129526913166, 0.040368735790252686, 0.017153121531009674, 0.023804625496268272, 0.02393392100930214, -0.005099965259432793, 0.006173830945044756, 0.007743327412754297, -0.007829523645341396, -0.0022447030059993267, 0.027008265256881714, -0.0024799478705972433, 0.0012121396139264107, 0.005617144517600536, 0.014186522923409939, -0.005742847919464111, -0.01630552113056183, 0.01778523065149784, -0.010832038708031178, -0.031921472400426865, 0.028674732893705368, 0.014983841218054295, 0.004363702610135078, 0.0019932962022721767, 0.044506173580884933, -0.060165222734212875, -0.02052915468811989, 0.009639652445912361, -0.03450736775994301, -0.021893935278058052, 0.0066048139706254005, -0.016635943204164505, 0.002268047770485282, 0.04918952286243439, -0.022899560630321503, 0.009151204489171505, -0.036547355353832245, 0.0226266048848629, -0.04818389564752579, -0.016061298549175262, 0.006313900463283062, -0.02644798718392849, 0.028502339497208595, -0.029220644384622574, 0.0018675928004086018, 0.015170600265264511, 0.017641568556427956, 0.015960736200213432, -0.024494199082255363, 0.009905424900352955, -0.01131330244243145, 0.02433617040514946, 0.0349670834839344, 0.029220644384622574, 0.005473483819514513, -0.005168204195797443, -0.027482347562909126, -0.0032521255780011415, 0.022051962092518806, -0.003370645921677351, -0.006967558059841394, 0.02172154188156128, 0.04441997781395912, -0.016765236854553223, 0.016923263669013977, 0.024666590616106987, 0.03085838072001934, 0.02029929682612419, 0.019135642796754837, 0.010128099471330643, 0.014854545705020428, 0.02341674081981182, 0.033731598407030106, -0.014445112086832523, 0.008677124045789242, 0.02985275350511074, 0.005089190322905779, -0.0272668544203043, 0.006935234181582928, 0.003034838242456317, -0.011198373511433601, 0.019078178331255913, 0.028100088238716125, -0.014488210901618004, 0.005020951386541128, 0.025815879926085472, -0.004485814366489649, -0.01000598818063736, -0.006119958125054836, 0.025485459715127945, 0.012031607329845428, -0.0018002517754212022, 0.0016018199967220426, 0.011291753500699997, -0.00835388619452715, 0.05111457780003548, 0.014150607399642467, 0.0021369571331888437, 0.015501020476222038, 0.061371974647045135, 0.03097330965101719, -0.005362146534025669, 0.016506647691130638, -0.010085001587867737, -0.0017796005122363567, -0.016046931967139244, -0.012024424970149994, -0.0009055131813511252, 0.035024549812078476, -0.023502936586737633, -0.01738297939300537, -0.037438053637742996, 0.015615949407219887, -0.01356878038495779, -0.032927099615335464, -0.0015497428830713034, 0.04054113104939461, 0.008310788311064243, -0.0012265057303011417, 0.02091703936457634, 0.025384895503520966, 0.010156831704080105, -0.006572490092366934, -0.025586022064089775, -0.00012873370724264532, 0.008899797685444355, -0.020356761291623116, -0.0037998331245034933, 0.01930803619325161, -0.009797679260373116, -0.019250571727752686, 0.004916797392070293, 0.046488694846630096, 0.004015324637293816, -0.00311564770527184, -0.021075066179037094, 0.020227467641234398, 0.01669340580701828, -0.006367773283272982, -0.010329225100576878, -0.026792773976922035, -0.002023824257776141, -0.004765953402966261, -0.015141868032515049, 0.02733868546783924, -0.01989704743027687, -0.013532864861190319, -0.012584702111780643, -0.020960137248039246, -0.052292600274086, -0.007093261461704969, 0.00849754735827446, -0.01598946750164032, 0.006920868065208197, 0.0036741297226399183, 0.06711841374635696, 0.012333295308053493, 0.01791452430188656, 0.03166288137435913, -0.02502574399113655, 0.012936672195792198, -0.031145701184868813, 0.001217526849359274, -0.039966486394405365, -0.021980131044983864, 0.03347301110625267, -0.024666590616106987, -0.005365737713873386, -0.03858734294772148, -0.010408238507807255, 0.03235245496034622, 0.0054986244067549706, 1.6596772184129804e-05, 0.03852987661957741, 0.024494199082255363, 0.006098408717662096, 0.03410511836409569, 0.021965764462947845, -0.04341435059905052, -0.016549745574593544, 0.026404889300465584, -0.03229498863220215, 0.03197893500328064, 0.004977853037416935, -0.01688016578555107, 0.006759249605238438, 0.0035196940880268812, -0.028013892471790314, 0.035426799207925797, 0.010070635005831718, 0.003724411129951477, 0.0280426237732172, 0.002050760667771101, -9.629775740904734e-05, -0.013834552839398384, -0.05852748453617096, -0.009575004689395428, -0.0006918174331076443, -0.039075788110494614, 0.02544235996901989, 0.02011253871023655, -0.027195025235414505, 0.034651029855012894, 0.02121872827410698, -0.004528912715613842, -0.00492757186293602, -0.026419255882501602, -0.014955108985304832, -0.001968155615031719, -0.0324099175632, 0.024767154827713966, 0.03045612946152687, 0.007707411888986826, 0.011895129457116127, 0.041374363005161285, -0.010221479460597038, 0.019983243197202682, -0.02976655587553978, -0.027424883097410202, 0.016650307923555374, 0.02252604253590107, -0.008475998416543007, 0.0052184853702783585, -0.000634353025816381, 0.006418054457753897, 0.0314042903482914, -0.010235845111310482, -0.005283132661134005, -0.023905187845230103, 0.00764276459813118, 0.011974142864346504, 0.041288167238235474, -0.012390759773552418, 0.0179863553494215, 0.011694004759192467, -0.0001961870293598622, -0.017325514927506447, 0.03450736775994301, 0.005706932861357927, -0.049821630120277405, 0.03511074557900429, -0.029795289039611816, 0.00971148256212473, 0.030082611367106438, -0.012038790620863438, 0.011751468293368816, 0.012728363275527954, 0.010724293068051338, 0.005908058024942875, -0.023402374237775803, -0.002919909544289112, 0.02936430647969246, 0.005951156374067068, 0.009402611292898655, -0.008806418627500534, 0.016233691945672035, -0.017670301720499992, -0.013015685603022575, -0.013015685603022575, -0.0037818755954504013, 0.01818748004734516, -0.009014726616442204, -0.030341200530529022, 0.014897644519805908, -0.016535378992557526, 0.013683709315955639, -0.02864600159227848, -0.02062971703708172, 0.007226147688925266, 0.007046571467071772, -0.021247459575533867, -0.009776130318641663, 0.004141028039157391, 0.017440443858504295, -0.005990663077682257, -0.02764037437736988, 0.02232491783797741, -0.02110379934310913, -0.001585658174008131, 0.012548787519335747, -0.006597630679607391, 0.004187717568129301, 0.03358794003725052, 0.0040368735790252686, 0.010436970740556717, -0.026620380580425262, 0.0013845327775925398, 0.002343469765037298, 0.0075493850745260715, -0.02002634108066559, -0.00909374002367258, 0.0033490967471152544, 0.0520627424120903, 0.022899560630321503, 0.022066326811909676, 0.03209386393427849, 0.01731114834547043, -0.052436258643865585, 0.002521250396966934, -0.03717946261167526, -0.014078776352107525, -0.012146536260843277, -0.017641568556427956, 0.0022662521805614233, 0.0179863553494215, -0.021448586136102676, 0.016219325363636017, -0.004352927673608065, 0.009115289896726608, 0.013245543465018272, -0.008619659580290318, -0.029479235410690308, 0.015041305683553219, 0.032840900123119354, -0.009309232234954834, -0.005189753137528896, 0.047293197363615036, 0.007599666249006987, -0.037236928939819336, 0.01146414689719677, -0.019035080447793007, 0.012117804028093815, -0.019322402775287628, 0.004166168626397848, 0.010178380645811558, 0.04226506128907204, -0.01291512232273817, 0.020988870412111282, -0.003914761822670698, -0.012081889435648918, -0.03166288137435913, 0.030800916254520416, 0.016765236854553223, 0.004245182033628225, -0.021779006347060204, 0.013870468363165855, -0.022870829328894615, 0.041862811893224716, -0.015659047290682793, -0.009373879060149193, -0.014574406668543816, 0.010767390951514244, -0.008971628732979298, 0.03117443434894085, 0.013137796893715858, 0.023804625496268272, -0.005053275264799595, -0.02041422575712204, 0.0051969364285469055, -0.03508201241493225, 0.0063605899922549725, -0.0033042028080672026, -0.013913566246628761, -0.03261104226112366, 0.020873941481113434, 0.0016943017253652215, -0.004888065159320831, 0.015084403567016125, -0.009926973842084408, -0.010666828602552414, 0.002646953798830509, 0.017268050462007523, -0.02634742483496666, 0.024249974638223648, -0.0038572975900024176, 0.036748480051755905, -0.04464983567595482, -0.026979533955454826, 0.047092072665691376, -0.006734108552336693, 0.030197540298104286, 0.011349217966198921, 0.017469175159931183, -0.011686821468174458, -0.018632829189300537, 0.0107530253008008, 0.002478152047842741, -0.011773018166422844, -0.0012166289379820228, -0.0029683951288461685, 0.0005647672805935144, -0.024982646107673645, -0.03671974688768387, 0.021362388506531715, 0.015098770149052143, -0.019365500658750534, -0.015228064730763435, 0.003710045013576746, 0.011887947097420692, 0.004974261857569218, 0.02394828572869301, -0.014574406668543816, 0.008059381507337093, 0.005778762977570295, -0.0018164135981351137, 0.012936672195792198, 0.02505447529256344, -0.013654977083206177, -0.007779242470860481, 0.010731475427746773, 0.010113733820617199, -0.0056817918084561825, -0.011155275627970695, 0.030599789693951607, 0.021391121670603752, 0.002129774075001478, 0.007951635867357254, -0.012541604228317738, -0.006216929294168949, 0.023474205285310745, -0.001208548084832728, 0.005523764993995428, -0.011636540293693542, -0.0025032926350831985, -0.008001917041838169, 0.01356878038495779, 0.05398779734969139, 0.008985994383692741, 0.0016009220853447914, 0.0334155447781086, 0.0016907101962715387, 0.006260027643293142, 0.002632587682455778, 0.04493715614080429, 0.009840778075158596, 0.021075066179037094, -0.0014617505948990583, -0.005272358190268278, -0.004367293789982796, 0.027324318885803223, 0.01116964127868414, 0.03717946261167526, -0.021764639765024185, 0.030341200530529022, 0.008023465983569622, 0.011744285933673382, 0.021362388506531715, 0.011686821468174458, -0.013188078999519348, -0.003789058420807123, 0.029306842014193535, -0.029910217970609665, 0.029206277802586555, -0.005214893724769354, 0.05197654664516449, 0.003054591827094555, 0.014495393261313438, -0.007542201783508062, -0.002147731836885214, 0.004733629524707794, 0.02373279444873333, -0.011442597955465317, -0.025413628667593002, -0.012441041879355907, -0.005451934412121773, 0.03677721321582794, 0.021534781903028488, -0.024192510172724724, 0.021592246368527412, 0.041173238307237625, 0.00394349405542016, -0.01739734597504139, 0.014710885472595692, -0.028071356937289238, 0.02061535231769085, 0.025255601853132248, -0.007556567899882793, -0.01890578679740429, -0.010523167438805103, -0.00011015879863407463, -0.00411947863176465, 0.013432302512228489, -0.02334490977227688, -0.0007268348126672208, -0.048499949276447296, 0.01778523065149784, 0.021046334877610207, -0.014653421007096767, -0.0017535618972033262, 0.021146897226572037, 0.012793011032044888, 0.022353649139404297, 0.015041305683553219, 0.029479235410690308, 0.014574406668543816, 0.003487370442599058, 0.023646598681807518, 0.008583744056522846]" -How Conserv Safeguards History: Building an Environmental Monitoring and Preventive Conservation IoT Platform,"they need to be. We make heavy use of PostgreSQL window functions, and the biggest features we benefit from, in terms of developer ergonomics, are TimescaleDB’s built-in time-series capabilities:time_bucket,time_bucket_gapfill,histograms,last observation carried forward, and a handful of others. Almost every API call to get sensor data uses one of those.We haven’t usedcontinuous aggregatesorcompressionyet, but they’re on my to-do list!✨Editor’s Note:In addition to the documentation links above,check out our continuous aggregates tutorialfor step-by-step instructions and best practices, andread our compression engineering blogto learn more about compression, get benchmarks, and more.Getting started advice & resourcesTimescaleDB gives you more time to focus on end-user value, and less time focusing on things like “Can I connect tool x to my store?” or “How am I going to scale this thing?”If you’re considering TimescaleDB or databases in general, and are comfortable with Postgres already, try it. If you want the biggest ecosystem of tools to use with your time-series data, try it. If you think SQL databases are antiquated and don’t work for these sorts of use cases, try it anyway - you might be surprised.For anybody out there thinking about an IoT project or company, as a technologist, it’s really tempting to focus on everything before data gets to the screen. That’s great, and you have to get those things right, but that’s just table stakes.Anybody can collect data points and put a line graph on a screen. That’s a solved problem.Yourchallenge is to develop all the context around the data, analyze it in that context, and present it to your users in the language and concepts they already know.TimescaleDB can help you do that, by giving you more time to focus on end-user value, and less time focusing on things like “Can I connect tool x to my store?” or “How am I going to scale this thing?”Other than those words of advice, there’s nothing that hasn’t already been covered in-depth by people in the PostgreSQL community that are FAR smarter than I am :).We’d like to give a big thank you to Nathan and the Conserv team for sharing their story and,more importantly, for their commitment to helping collections’ keep history alive. As big museum fans, we’re honored to play a part in the tech stack that powers their intuitive, easy-to-use UI and robust analytics 💛We’re always",https://www.timescale.com/blog/how-conserv-safeguards-history-building-an-environmental-monitoring-and-preventative-analytics-iot-platform/,510,"[0.010209230706095695, 0.004621695261448622, 0.01605709083378315, 0.014563056640326977, 0.05469068884849548, 0.007123070303350687, -0.002284437883645296, 0.017988769337534904, -0.028205547481775284, 0.017807675525546074, 0.0268020611256361, -0.03679246827960014, 0.026334231719374657, -0.04928802326321602, 0.03389494866132736, 0.06803135573863983, -0.019226253032684326, 0.003935043700039387, 0.006032727193087339, 0.05131025239825249, 0.0011724014766514301, 0.017400210723280907, 0.026409687474370003, 0.017671853303909302, 0.0038859969936311245, -0.021429575979709625, -0.042798787355422974, 0.0748526006937027, 0.03377421945333481, -0.05927843227982521, 0.007209844887256622, -0.0328989252448082, -0.05508306249976158, 0.02244068868458271, 0.040987834334373474, 0.04617922380566597, 0.04874473810195923, -0.004055773373693228, 0.017943495884537697, 0.006255323067307472, -0.025323117151856422, 0.017807675525546074, 0.017611488699913025, -0.010443145409226418, -0.004519829526543617, -0.00848882831633091, -0.06338325142860413, -0.03519279509782791, -0.00811909232288599, 0.062477774918079376, -0.015981633216142654, 0.006606194656342268, -0.012887927703559399, -0.039659805595874786, 0.02189740352332592, -0.029850492253899574, -0.0021618215832859278, 0.03700374439358711, -0.010352597571909428, -0.029865583404898643, 0.03084651567041874, -0.051370617002248764, 0.02717934176325798, 0.014019771479070187, -0.022184137254953384, 0.018215138465166092, -0.0171587523072958, 0.0451832041144371, -0.04684324190020561, 0.02391963079571724, 0.044066451489925385, -0.008156821131706238, -0.01753603294491768, -0.0010205458384007215, 0.04412681609392166, -0.07189471274614334, 0.011001521721482277, 0.0543888658285141, -0.0059044514782726765, -0.03962962329387665, 0.006477918941527605, -0.013521759770810604, -0.03102760948240757, 0.030378686264157295, -0.02314997836947441, -0.012616285122931004, -0.03522297739982605, -0.015770357102155685, -0.013129387982189655, 0.04355334863066673, 0.006028954405337572, 0.06996303796768188, 0.02337634563446045, 0.02150503173470497, 0.03066541999578476, 0.004097274504601955, 0.0158609040081501, -0.0032483916729688644, -0.0002683413040358573, 0.02405545301735401, -0.0013808493968099356, -0.018320778384804726, -0.024161091074347496, -0.027858447283506393, 0.03301965445280075, 0.012291823513805866, 0.032929107546806335, -0.019678989425301552, -0.0029107248410582542, 0.004844291135668755, -0.10521619766950607, -0.006862746085971594, -0.024870380759239197, 0.033683668822050095, -0.007383394055068493, 0.01477433368563652, -0.06042536720633507, -0.004866928327828646, 0.018471689894795418, -0.004738652613013983, -0.022516144439578056, -0.012306914664804935, -0.03944852948188782, 0.0034898517187684774, 0.016706014052033424, -0.04285915195941925, -0.004078410565853119, -0.07467150688171387, -0.020675012841820717, -0.008066273294389248, 0.05121970176696777, -0.01679656095802784, 0.0584031380712986, -0.020131727680563927, -0.0003298852825537324, -0.017777493223547935, -0.06277959793806076, -0.004840518347918987, -0.017762402072548866, 0.008179457858204842, 0.005704492796212435, -0.04328170418739319, 0.005251755006611347, -0.02645496092736721, 0.00157420604955405, 0.012208821251988411, -0.02245577983558178, 0.06223631650209427, -0.009839494712650776, -0.0016487190732732415, 0.006406235508620739, -0.008737834170460701, -0.045002106577157974, -0.03190290182828903, 0.03498151898384094, 0.014072590507566929, 0.040444549173116684, 0.057195838540792465, -0.017626579850912094, -0.061029016971588135, -0.0006616570171900094, 0.04198385775089264, -0.021746492013335228, 0.0006159116746857762, 0.0004609905299730599, -0.0047726077027618885, -0.04946911707520485, -0.04792981222271919, -0.06772953271865845, -0.003750175703316927, -0.04267805442214012, -0.046420685946941376, -0.02551930397748947, 0.0335327573120594, 0.03962962329387665, -0.0010243186261504889, -0.007647491060197353, -0.05251755192875862, 0.032748013734817505, -0.05460014194250107, -0.053724851459264755, -0.02189740352332592, -0.00820964016020298, 0.008700105361640453, -0.023859266191720963, -0.024342186748981476, -0.05764857679605484, 0.015785448253154755, -0.0067533343099057674, 0.03102760948240757, -0.05091787874698639, 0.04820145294070244, 0.035313524305820465, 0.02880919724702835, 0.021580487489700317, -0.05604890361428261, 0.024221455678343773, 0.012880382128059864, -0.020388279110193253, -0.004033136647194624, 0.0525779165327549, 0.03117852285504341, 0.05825222656130791, -0.008466191589832306, -0.006289278622716665, -0.014540419913828373, 0.019769538193941116, 0.006157230120152235, -0.06543566286563873, -0.054660506546497345, -0.011937178671360016, -0.016872018575668335, 0.03080124221742153, 0.020388279110193253, -0.036581192165613174, -0.010035681538283825, -0.025881493464112282, -0.0207806508988142, -0.02570039965212345, -0.0068702916614711285, -0.001527989050373435, 0.04705451801419258, 0.008375643752515316, -0.02010154537856579, 0.013793402351439, 0.023255616426467896, 0.026575691998004913, -0.02168612740933895, 0.03504188358783722, 0.0198751762509346, 0.003961453214287758, -0.027435893192887306, -0.02426673099398613, -0.05613945052027702, 0.008481282740831375, -0.013808493502438068, 0.02186722122132778, -0.01770203560590744, -0.008835926651954651, -0.010005499236285686, 0.0024862834252417088, -0.003682265058159828, -0.01750585064291954, 0.013174661435186863, -0.008881201036274433, 0.026756785809993744, -0.03013722598552704, -0.06093847006559372, 0.0411689318716526, 0.05764857679605484, 0.039689987897872925, -0.030529599636793137, 0.020192092284560204, -0.04539448022842407, -0.019301708787679672, -0.05626017972826958, -0.012133365496993065, 0.019950632005929947, -0.00875292532145977, 0.0103903254494071, 0.009779130108654499, -0.042044222354888916, -0.016464553773403168, -0.018682967871427536, -0.03682265058159828, 0.025821128860116005, 0.023119796067476273, -0.04527375102043152, 0.01477433368563652, 0.018909336999058723, 0.04463991895318031, 0.042979881167411804, 0.023964906111359596, -0.02716425061225891, -0.03763757646083832, -0.01804913580417633, -0.02283306233584881, -0.0007668241742067039, 0.0036747194826602936, -0.008986839093267918, -0.013106750324368477, -0.035675715655088425, 0.013785856775939465, 0.0033710079733282328, 0.032959289848804474, 0.012465372681617737, -0.0019788402132689953, 0.04617922380566597, 0.0008262459305115044, -0.022908518090844154, 0.01572508178651333, 0.009137751534581184, 0.02772262692451477, -0.010858154855668545, -0.010450690984725952, 0.007036295253783464, 0.005376257933676243, -0.0154081666842103, -0.024870380759239197, -0.053936127573251724, 0.010118682868778706, -0.023421620950102806, 0.009567853063344955, -0.03591717407107353, 0.004821654409170151, 0.03208399936556816, -0.024568555876612663, -0.020690103992819786, -0.01589108631014824, -0.00020196336845401675, 0.007062705233693123, -0.025760764256119728, 0.016313642263412476, -0.021218298003077507, -0.03718484193086624, -0.004059546161442995, 0.06616003811359406, -0.021791765466332436, -0.02247087098658085, -0.05236663669347763, -0.03244618698954582, -0.09827422350645065, -0.0015874109230935574, 0.03959944099187851, 0.009809312410652637, -0.019105521962046623, 0.002972976304590702, -0.007809721864759922, 0.015755265951156616, -0.03229527547955513, 0.007273982744663954, -0.03736593574285507, 0.015574170276522636, 0.03649064153432846, -0.03576626256108284, -0.05381539836525917, 0.032748013734817505, 0.004576421808451414, -0.013733037747442722, 0.024930745363235474, -0.013001112267374992, -0.030167408287525177, -0.07612026482820511, 0.020131727680563927, 0.019452622160315514, 0.04050491377711296, -0.0017571874195709825, 0.0173549372702837, -0.018562236800789833, 0.003550216555595398, -0.0473865270614624, 0.01712856814265251, 0.014766788110136986, 0.0013799061998724937, 0.01467624120414257, 0.015996724367141724, 0.010284687392413616, -0.018215138465166092, -0.02499110996723175, 0.006685423664748669, -0.01694747433066368, -0.0005159321008250117, 0.028356458991765976, -0.013831131160259247, -0.0211730245500803, 0.012435190379619598, -0.024915654212236404, -0.0033313934691250324, -0.015347801148891449, -0.010926065035164356, 0.026017315685749054, -0.025474030524492264, -0.011461804620921612, -0.022319959476590157, -0.0714721605181694, -0.0046179224736988544, 0.045515209436416626, 0.026696421205997467, 0.0026013541501015425, 0.052094995975494385, 0.005187617149204016, 0.014027317054569721, 0.02355744130909443, -0.019090430811047554, 0.04741670936346054, 0.0437646247446537, -0.0026088999584317207, 0.02899029105901718, -0.034740056842565536, -0.01449514552950859, 0.04476064816117287, -0.0013657581293955445, -0.0065873307175934315, -0.027224615216255188, -0.004757516551762819, 0.012986021116375923, -0.003184253815561533, 0.016932383179664612, 0.05798058211803436, -0.03027304820716381, 0.036037907004356384, -0.01643437147140503, -0.048291999846696854, 0.0033710079733282328, 0.032959289848804474, 0.011733447201550007, 0.018939519301056862, 0.033683668822050095, -0.02173140086233616, -0.019286617636680603, -0.005334756802767515, -0.010488418862223625, 0.04177258163690567, -0.026711512356996536, 0.031238887459039688, -0.024900563061237335, -0.0507669672369957, 0.07117033749818802, 0.005987453740090132, 0.0441569983959198, -0.01842641644179821, -0.013899041339755058, -0.031661443412303925, -0.03280837833881378, -0.028326276689767838, 0.06465091556310654, 0.021972861140966415, -0.04633013904094696, -0.029609031975269318, -0.043915536254644394, -0.013023748993873596, 0.002284437883645296, 0.028945017606019974, -0.0036030360497534275, -0.01640418916940689, 0.03083142451941967, 0.04346280172467232, -0.008654831908643246, 0.05622999742627144, -0.006194957997649908, -0.03443823382258415, -0.002654173644259572, -0.014759242534637451, 0.007900269702076912, -0.014947882853448391, -0.02025245688855648, -0.03739611804485321, -0.019844993948936462, -0.008307733573019505, -0.013559488579630852, 0.02354235015809536, -0.025670217350125313, -0.00282960943877697, 0.02244068868458271, -0.024206364527344704, -0.010412962175905704, 0.04147075489163399, -0.032929107546806335, 0.040052179247140884, -0.02168612740933895, -0.03461932763457298, 0.0009050033986568451, -0.0606064610183239, -0.008254913613200188, 0.004802790470421314, -0.03887506201863289, 0.02554948627948761, 0.01395940687507391, 0.03084651567041874, -0.024010179564356804, 0.019090430811047554, 0.030605055391788483, -0.02079574204981327, -0.01149198692291975, -0.028567736968398094, -0.005787494592368603, 0.01105434074997902, 0.02408563531935215, 0.009100023657083511, -0.04874473810195923, 0.014253686182200909, -0.028597919270396233, -0.03446841612458229, 0.056320544332265854, 0.025806037709116936, 0.013023748993873596, 0.0007286244072020054, -0.0056931739673018456, -0.014404598623514175, -0.0002834325423464179, -0.02351216785609722, 8.300187619170174e-05, 0.020312823355197906, -0.019392255693674088, -0.032748013734817505, 0.022365232929587364, -0.08777070790529251, -0.0473865270614624, -0.0020241138990968466, 0.008247368037700653, 0.04765816777944565, 0.009318847209215164, 0.0010205458384007215, 0.08535610884428024, -0.0182604119181633, 0.038603417575359344, 0.0007970066508278251, -0.017264390364289284, -0.0027239706832915545, -0.036943379789590836, -0.022365232929587364, -0.017626579850912094, 0.02517220564186573, 0.03809031471610069, 0.002684356179088354, 0.04122929647564888, -0.004931066185235977, 0.016464553773403168, -0.009877223521471024, -0.019105521962046623, -0.018154773861169815, -0.048080723732709885, -0.01749075949192047, -0.006794835440814495, -0.0106846047565341, 0.014170683920383453, -0.04307042807340622, -0.01749075949192047, -0.026545509696006775, 0.00326159643009305, -0.0072362544015049934, -0.02975994534790516, 0.023451803252100945, -0.023979997262358665, -0.049016378819942474, 0.01770203560590744, -0.022350141778588295, -0.0489560142159462, -0.03320075199007988, 0.019452622160315514, 0.002906952053308487, 0.02570039965212345, 0.004519829526543617, 0.010903428308665752, -0.0032691420055925846, -0.006040272768586874, -0.0023033020552247763, -0.02132393606007099, -0.004089728929102421, 0.030589964240789413, 0.032023631036281586, -0.02612295374274254, 0.02301415614783764, 0.000429629028076306, 0.022712331265211105, 0.022365232929587364, 0.012465372681617737, 0.004048227798193693, 0.03398549556732178, -0.0013204844435676932, 0.02882428839802742, -0.020690103992819786, -0.007081569172441959, 0.009613126516342163, -0.000648452143650502, 0.02899029105901718, 0.00820964016020298, 0.0056554460898041725, -0.04125947877764702, 0.006161002907902002, -0.0002905065775848925, -0.0040406822226941586, 0.02411581762135029, 0.025247661396861076, 0.016826743260025978, 0.00041548098670318723, -0.03253673389554024, -0.03286874294281006, -0.007556943688541651, 0.0065533751621842384, -0.027103886008262634, 0.008903837762773037, -0.045002106577157974, 0.039901264011859894, -0.02831118553876877, 0.007515442557632923, 0.04385517165064812, 0.009545215405523777, 0.04820145294070244, -0.03561535105109215, -0.021218298003077507, 2.9814062145305797e-05, -0.020750468596816063, 0.00369358342140913, 0.012654013000428677, 0.021640852093696594, -0.0048065632581710815, 0.019965723156929016, -0.009530124254524708, 0.031480349600315094, 0.012721924111247063, -0.013468940742313862, -0.00083850760711357, -0.03323093429207802, -0.02499110996723175, -0.0015468531055375934, -0.01341612171381712, 0.005549807101488113, 0.021821947768330574, -0.007368302904069424, 0.02096174657344818, 0.0008286039810627699, -0.003874678397551179, -0.04473046585917473, -0.03793940320611, -0.004716015886515379, -0.012110727839171886, -0.024885471910238266, 0.0273906197398901, -0.019965723156929016, -0.031299252063035965, -0.028567736968398094, -0.032959289848804474, -0.044247545301914215, 0.02152012288570404, 0.03244618698954582, -0.008775562047958374, -0.050646234303712845, -0.0041236840188503265, 0.022410506382584572, 0.015634534880518913, 0.005579989869147539, 0.051008425652980804, 0.010910973884165287, 0.0019118727650493383, 0.05034441128373146, 0.028160272166132927, 0.03259710222482681, -0.0048895650543272495, -0.0042519597336649895, 0.02954866737127304, 0.025051474571228027, 0.00959048978984356, 0.014185775071382523, 0.012737015262246132, -0.02938266471028328, -0.018864063546061516, 0.036188818514347076, -0.019014975056052208, -0.010797789320349693, -0.005395121872425079, -0.026545509696006775, 0.06477164477109909, 0.032717831432819366, 0.009235844947397709, 0.004546239040791988, -0.038241226226091385, -0.025217479094862938, -0.00965839996933937, 0.011657990515232086, -0.05490196868777275, -0.007394712418317795, -0.003508715657517314, -0.002280665095895529, -0.03724520653486252, 0.03537388890981674, 0.029231751337647438, 0.027662262320518494, 0.03866378217935562, 0.027300070971250534, -0.01788313128054142, 0.022863244637846947, 0.0495898462831974, 0.02972976304590702, 0.04032381996512413, -0.0036916970275342464, 0.02186722122132778, -0.03371385112404823, 0.021595578640699387, 0.060485731810331345, -0.017038021236658096, 0.013551943004131317, -0.0171587523072958, -0.0010658195242285728, -0.0125936483964324, -0.006115728989243507, -0.0031823674216866493, 0.03682265058159828, 0.045002106577157974, 0.013023748993873596, 0.0013393484987318516, 0.005874269176274538, 0.01931679993867874, -0.0102318674325943, 0.007688992191106081, -0.041138749569654465, 0.01733984611928463, 0.006598649080842733, -0.01771712861955166, -0.03208399936556816, 0.0006592989666387439, -0.010631785728037357, -0.08783107250928879, -0.0317218080163002, -0.01506861299276352, -0.0020486372523009777, 0.017053112387657166, 0.000293336168397218, 0.018879154697060585, -0.011605171486735344, -0.04246677830815315, 0.010918519459664822, -0.030514508485794067, 0.023647988215088844, 0.006862746085971594, -0.043342068791389465, -0.015498713590204716, 0.02811499871313572, -0.015483622439205647, -0.016675831750035286, -0.0668240562081337, -0.003440805012360215, -0.018486781045794487, -0.038060132414102554, 0.04397590458393097, -0.03941834717988968, 0.03362330421805382, 0.03175199031829834, 0.0008734061266295612, 0.008428462781012058, 3.646069671958685e-05, 0.006194957997649908, 0.009024567902088165, 0.004659423604607582, 0.020388279110193253, -0.0030937062110751867, -0.015785448253154755, -0.0008927417802624404, -0.028160272166132927, -0.009665945544838905, -0.05128006637096405, -0.005376257933676243, -0.016524918377399445, -0.02263687551021576, 0.03799976781010628, -0.044036269187927246, -0.0023334845900535583, 0.025655126199126244, 0.02352725900709629, 0.00502161355689168, -0.006919338367879391, 0.015634534880518913, -0.016358915716409683, -0.026047497987747192, 0.0106846047565341, -0.030906880274415016, -0.01367267221212387, 0.007209844887256622, 0.005761084612458944, 0.025972042232751846, -0.00167701521422714, 0.019090430811047554, -0.03778849169611931, 0.0251872967928648, 0.011235435493290424, 0.043674077838659286, -0.017053112387657166, 0.01531761884689331, -0.015219525434076786, -0.06640150398015976, 0.006855200510472059, -0.019769538193941116, 0.0006970271351747215, -0.02408563531935215, 0.040595464408397675, 0.00770408334210515, -0.015008248388767242, -0.013001112267374992, -0.001743982546031475, -0.015604352578520775, 0.010503510013222694, 0.004297233652323484, -0.021112658083438873, -0.04267805442214012, -0.011205253191292286, -0.008722743019461632, 0.01222391240298748, -0.019045157358050346, -0.027239706367254257, -0.03552480414509773, -0.028492281213402748, -0.02259160205721855, -0.011009067296981812, 0.01477433368563652, 0.011688172817230225, -0.015921268612146378, -0.0006762766279280186, -0.08064763993024826, -0.03884487971663475, 0.03407604247331619, -0.0011724014766514301, -0.026153136044740677, -0.021263571456074715, 0.022667057812213898, 0.04823163524270058, 0.04409663379192352, -0.018200047314167023, -0.002654173644259572, -0.04089728742837906, -0.017581306397914886, -0.01623818464577198, -0.024010179564356804, 0.01694747433066368, 0.026409687474370003, 0.01203527208417654, 0.024734558537602425, 0.008790653198957443, -0.0043236431665718555, -0.002999386051669717, -0.020659921690821648, 0.03606808930635452, 0.008066273294389248, -0.03425713628530502, -0.00560639938339591, 0.05695437639951706, 0.005504533648490906, -0.012186184525489807, -0.0027051065117120743, -0.000658827368170023, 0.0015817516250535846, 0.011159979738295078, -0.021127751097083092, 0.0032936653587967157, -0.011159979738295078, -0.0037275387439876795, -0.0024145999923348427, 0.0035256934352219105, -0.014668695628643036, -0.05710529163479805, 0.02813008986413479, -0.06972157955169678, 0.04545484483242035, -0.03160107880830765, -0.0038124271668493748, 0.0242818221449852, -0.031842537224292755, 0.003520034020766616, 0.019407346844673157, 0.003518147626891732, -0.02059955708682537, -0.023270707577466965, 0.0009705560514703393, 0.0245987381786108, -0.04476064816117287, -0.01477433368563652, 0.006334552075713873, 0.012744560837745667, -0.027330253273248672, -0.015936359763145447, 0.015377984382212162, -0.046450868248939514, -0.02043355256319046, -0.0061383661814033985, 0.016192911192774773, 0.013808493502438068, 0.005504533648490906, 0.004391553811728954, 0.020856108516454697, 0.04011254385113716, 0.011182616464793682, -0.020493917167186737, 0.02283306233584881, 0.011159979738295078, 0.014910154975950718, -0.02423654869198799, 0.012110727839171886, -0.01248800940811634, 0.012231457978487015, -0.010986430570483208, -0.03627936542034149, 0.028975199908018112, -0.008428462781012058, -0.02115793339908123, -0.002618331927806139, -0.020478826016187668, 0.019226253032684326, -0.005534715950489044, 0.04503228887915611, 0.002516465960070491, -0.01377831120043993, -0.010194139555096626, 0.003082387847825885, 0.012744560837745667, 0.02553439512848854, -0.006025181617587805, -0.01323502603918314, 6.796957313781604e-05, 0.01589108631014824, 0.0010912860743701458, 0.002439123345538974, 0.003172935452312231, -0.0357360802590847, -0.015996724367141724, 0.006489237770438194, -0.012495554983615875, -0.007451304700225592, 0.028748830780386925, -0.015287436544895172, -0.004187821876257658, 0.021746492013335228, 0.033864766359329224, 0.0002676338772289455, 0.002052410040050745, 0.01086570043116808, 0.0014261231990531087, -0.009824403561651707, -0.018909336999058723, 0.023663079366087914, -0.02247087098658085, -0.03606808930635452, 0.036581192165613174, -0.011393893510103226, 0.006972157396376133, 0.019211161881685257, -0.002671151189133525, 0.02411581762135029, -0.018350960686802864, 0.008375643752515316, 0.05124988406896591, -0.0016025020740926266, 0.05432850122451782, 0.005828995257616043, -0.043342068791389465, 0.017264390364289284, -0.001178060774691403, 0.008986839093267918, 0.02278778702020645, 0.008051182143390179, 0.001842075726017356, 0.009001931175589561, 0.01195981539785862, -0.0016647535376250744, -0.018758423626422882, -0.006938202306628227, -0.003327620681375265, -0.00785499531775713, 0.02408563531935215, 0.020388279110193253, -0.03778849169611931, -0.004912201780825853, 0.06573748588562012, -0.012842654250562191, 0.07853486388921738, -0.056109268218278885, -0.03416658937931061, -0.010073409415781498, -0.00028720535920001566, 0.010548783466219902, 0.015770357102155685, 0.005368712358176708, -0.002082592574879527, 0.008028545416891575, -0.019407346844673157, -0.02665114775300026, -0.02043355256319046, -0.022289777174592018, 0.008564284071326256, -0.01542325783520937, 0.0029767490923404694, -0.0025749446358531713, 0.017656762152910233, 0.026711512356996536, 0.003523806808516383, -0.003838836681097746, 0.023406529799103737, 0.012133365496993065, 0.009643308818340302, -0.029624124988913536, -0.011650444939732552, 0.0204637348651886, 0.04319115728139877, 0.036037907004356384, 0.0068250177428126335, -0.030710693448781967, 0.030891789123415947, -0.01004322711378336, 0.01166553609073162, 0.03984089940786362, -0.004195367451757193, 0.030227774754166603, 0.020282641053199768, -0.008888746611773968, 0.009303756058216095, 0.022365232929587364, -0.010956247337162495, -0.003957680426537991, 0.015438348986208439, -0.04669232666492462, 0.02484019845724106, 0.001291245105676353, -0.01881878823041916, -0.0008658604929223657, 0.07153252512216568, -0.006983476225286722, 0.011499532498419285, -0.026304049417376518, 0.013861313462257385, 0.030605055391788483, -0.0004388252564240247, 0.013008657842874527, -0.01232955139130354, -0.02373853698372841, -0.001846791710704565, 0.03286874294281006, 0.020856108516454697, 0.0002052645868388936, -0.012850199826061726, -0.028945017606019974, -0.029141204431653023, -0.019014975056052208, 0.003893542569130659, -0.02171630971133709, 0.03830159455537796, -0.0048178816214203835, -0.00188357662409544, -0.005421531852334738, 0.010835517197847366, -0.0005055568763054907, 0.0339251309633255, 0.021837038919329643, 0.009183025918900967, 0.04210458695888519, 0.019226253032684326, 0.00042514881351962686, 0.005297028925269842, 0.009356575086712837, 0.01158253476023674, 0.019437531009316444, 0.0007668241742067039, 0.01638909801840782, -0.020131727680563927, -0.026228593662381172, 0.00794554315507412, 0.03972017019987106, 0.03301965445280075, 0.034226953983306885, -0.011823994107544422, 0.0034860786981880665, 0.027058610692620277, 0.02171630971133709, -0.009190571494400501, 0.04138020798563957, -0.009356575086712837, 0.0073909396305680275, 0.009605580940842628, -0.008164366707205772, -0.010639331303536892, -0.02481001615524292, 0.023995088413357735, 0.01934698224067688, -0.004716015886515379, -0.019482804462313652, -0.005919543094933033, -0.021263571456074715, 0.0033710079733282328, 0.03555498644709587, -0.006609967444092035, -0.026198409497737885, 0.03178217262029648, -0.012608739547431469, -0.022214319556951523, -0.01750585064291954, 0.021837038919329643, -0.06899719685316086, -0.01753603294491768, -0.004821654409170151, -0.030876697972416878, -0.025594759732484818, 0.014140501618385315, -0.011514623649418354, -0.006002544891089201, 0.029624124988913536, -0.0038784511853009462, -0.0034030769020318985, -0.027496257796883583, 0.010858154855668545, -0.03012213483452797, -0.016117455437779427, -0.0007522045052610338, -0.02885447070002556, 0.02953357622027397, -0.01432159636169672, 0.009605580940842628, -0.005119706504046917, 0.014646057970821857, 0.011235435493290424, -0.02720952406525612, 0.02005627192556858, -0.022667057812213898, 0.02935248240828514, 0.029684489592909813, 0.01913570612668991, 0.0041350023820996284, -0.0002603240718599409, -0.022018134593963623, -6.578841566806659e-05, 0.010382779873907566, -0.001563830766826868, 0.023225434124469757, 0.0003631332074292004, 0.05309101939201355, -0.004361371509730816, -0.015362892299890518, -0.002171253552660346, 0.024719467386603355, 0.02023736573755741, 0.03193308413028717, -0.0003131434496026486, 0.02831118553876877, 0.016856925562024117, 0.046269774436950684, 0.0017298345919698477, -0.0024259183555841446, 0.023466894403100014, -0.012827563099563122, -0.036430276930332184, 0.00624400470405817, -0.018305687233805656, -0.011620262637734413, 0.004829199984669685, 0.025443848222494125, -0.030620146542787552, 0.013250118121504784, -0.002242936985567212, -5.662166222464293e-05, 0.002352348528802395, -0.0002361544902669266, 0.002001476939767599, -0.004474555607885122, 0.0048178816214203835, 0.006843882147222757, 0.019226253032684326, -0.011590080335736275, 0.027224615216255188, 0.02683224342763424, -0.004633013624697924, 0.027948996052145958, 0.06990267336368561, 0.0032766875810921192, -0.012118274345993996, -0.005530943162739277, 0.004150093998759985, -0.0022297322284430265, -0.010790243744850159, -0.004708469845354557, 0.0009743288392201066, 0.011325983330607414, -0.030771059915423393, -0.006568466778844595, -0.032566916197538376, 0.004316097591072321, -0.015740174800157547, -0.02809990756213665, -0.02008645422756672, 0.020222274586558342, 0.01303129456937313, -0.01626836694777012, 0.023678172379732132, 0.006809926591813564, -0.020207183435559273, -0.009967770427465439, -0.019784629344940186, -0.012729469686746597, 0.011076977476477623, -0.0182604119181633, -0.02684733457863331, 0.019935540854930878, 0.007421122398227453, -0.018562236800789833, 0.00931130163371563, 0.050616052001714706, 0.009243390522897243, 0.011439167894423008, -0.011831539683043957, 0.01841132529079914, -0.0017071976326406002, 0.003631332190707326, 0.0015081817982718349, -0.03226509317755699, -0.011235435493290424, -0.012148456647992134, 0.0064590550027787685, 0.04270823672413826, -0.013431212864816189, -0.027269888669252396, -0.005602626595646143, -0.02737552858889103, -0.03283856064081192, -0.0062968241982162, 0.0004675929667428136, -0.009899860247969627, 0.001249744207598269, 0.006572239566594362, 0.05001240223646164, 0.015377984382212162, 0.014329141937196255, 0.034558963030576706, -0.011997544206678867, 0.004119911231100559, -0.028220638632774353, -0.006308142561465502, -0.03277819603681564, -0.030725784599781036, 0.02899029105901718, -0.02132393606007099, 0.007119297049939632, -0.02135411836206913, 0.015483622439205647, 0.03262728452682495, 0.01733984611928463, 0.02426673099398613, 0.03688301518559456, 0.014449872076511383, 0.0030540917068719864, 0.03235564008355141, 0.04792981222271919, -0.042979881167411804, -0.010412962175905704, 0.030167408287525177, -0.03205381706357002, 0.04666214436292648, -0.028492281213402748, 0.0013959406642243266, -0.0014317823806777596, 0.004587740171700716, -0.0064590550027787685, 0.031480349600315094, 0.017113476991653442, 0.003142752917483449, -0.004346279893070459, 0.0010205458384007215, -0.01323502603918314, -0.007304165046662092, -0.023964906111359596, -0.013823585584759712, -0.007432440761476755, -0.017430394887924194, 0.009047204628586769, 0.0251872967928648, -0.031480349600315094, 0.0507669672369957, 0.019271526485681534, -0.016374006867408752, -0.010654422454535961, -0.0369131974875927, -0.012812471017241478, -0.0018939519068226218, -0.012812471017241478, 0.02956375852227211, 0.01376322004944086, 0.027767900377511978, 0.0268020611256361, 0.03827141225337982, 0.016675831750035286, -0.01641928032040596, -0.007051386870443821, -0.025866402313113213, 0.03633973002433777, -0.010714787989854813, -0.00848882831633091, 0.0008248311351053417, 0.019075339660048485, 0.002925816224887967, 0.03772812709212303, -0.025111841037869453, 0.007522988133132458, -0.006443963851779699, 0.01140898559242487, 0.001167685491964221, 0.017551124095916748, -0.0008729345281608403, 0.00271642510779202, 0.009288664907217026, 0.001831700443290174, -0.022319959476590157, 0.008654831908643246, 0.019060248509049416, -0.030937062576413155, 0.014849790371954441, -0.02662096545100212, 0.004131229594349861, 0.02956375852227211, 0.0028786559123545885, 0.016751287505030632, 0.015966542065143585, 0.02757171355187893, -0.01131843775510788, -0.023783810436725616, 0.027994269505143166, 0.035494621843099594, 0.007700310554355383, 0.007273982744663954, -0.013906586915254593, 0.049016378819942474, -0.010767607018351555, 0.00447832839563489, -0.013099204748868942, -0.009001931175589561, 0.003327620681375265, -0.013378392904996872, -0.024900563061237335, 0.016706014052033424, -0.020282641053199768, 0.012231457978487015, -0.011605171486735344, -0.024734558537602425, 0.024734558537602425, 0.005225345492362976, -0.023995088413357735, 0.00984704028815031, -0.007055159658193588, 0.03268764913082123, -0.016675831750035286, -0.0070249768905341625, 0.019014975056052208, -0.007115524262189865, 0.01515916083008051, 0.009092478081583977, 0.006293051410466433, 0.017007838934659958, 0.0205844659358263, -0.012216366827487946, -0.010179048404097557, -0.022123772650957108, -0.00359926326200366, 0.0010488418629392982, -0.0033879857510328293, -0.011476895771920681, 0.0003801108687184751, 0.0018071772065013647, 0.03981071710586548, 0.009771584533154964, 0.0242818221449852, 0.02390453964471817, 0.00819454900920391, -0.03280837833881378, -0.005632809363305569, -0.016706014052033424, -0.0273906197398901, -0.04047473147511482, -0.006406235508620739, -0.0014544192235916853, 0.009084932506084442, -0.01990535855293274, 0.015091250650584698, -0.009379211813211441, -0.0022599147632718086, 0.003399304114282131, -0.01276719756424427, -0.02168612740933895, 0.032566916197538376, 0.013333119451999664, 0.01021677628159523, 0.004350052680820227, 0.050284046679735184, 0.004983885213732719, -0.033834584057331085, 0.02168612740933895, -0.020282641053199768, 0.01566471718251705, -0.026198409497737885, 0.0007290960056707263, 0.008541647344827652, 0.011325983330607414, -0.012178638949990273, 0.027043519541621208, 0.004063318949192762, -0.0028069724794477224, -0.013559488579630852, 0.02482510730624199, 0.02517220564186573, -0.01533270999789238, -0.026153136044740677, 0.013242571614682674, -0.03374403715133667, 0.03413640707731247, -0.015302527695894241, -0.03398549556732178, -0.025142023339867592, 0.011620262637734413, 0.0008007794385775924, 0.03905615583062172, -0.01477433368563652, 0.022727422416210175, -0.0024089408107101917, 0.010993976145982742, 0.019014975056052208, -0.03268764913082123, 0.010035681538283825, 0.00438400823622942, -0.004568875767290592, -0.03449859842658043, 0.02354235015809536, 0.015815630555152893, -0.013717946596443653, 0.000668731052428484, -0.005953498184680939, -0.023768719285726547, 0.00032634829403832555, 0.027843356132507324, -0.023768719285726547, 0.005768630187958479, 0.0003961453039664775, 0.0211730245500803, -0.035856809467077255, -0.044277727603912354, 0.03597753867506981, -0.0106846047565341, 0.019286617636680603, 0.022169046103954315, 0.014661149121820927, -0.010284687392413616, 0.019754447042942047, 0.01232955139130354, 0.015785448253154755, 0.006689196452498436, -0.017083294689655304, -0.019965723156929016, -0.02079574204981327, -0.020735377445816994, -0.0063043697737157345, 0.018713150173425674, 0.014117864891886711, -0.037335753440856934, 0.019211161881685257, 0.00734566617757082, 0.017400210723280907, 0.00811909232288599, 0.03416658937931061, -0.00025277843815274537, 0.0014261231990531087, 0.0014978066319599748, -0.00023214587417896837, 0.008458646014332771, 0.04035400226712227, 0.00020125597075093538, 0.004976339638233185, -0.010812880471348763, 0.004108592867851257, -0.001203527208417654, -0.03489097207784653, 0.03395531326532364, 0.008783107623457909, -0.017656762152910233, 0.023074520751833916, -0.009869677945971489, -0.006225140765309334, 0.00822473131120205, 0.023995088413357735, 0.008737834170460701, 0.001496863435022533, -0.009522578679025173, 0.004021818283945322, 0.01376322004944086, 0.03739611804485321, 0.017264390364289284, 0.015136524103581905, 0.025624942034482956, 0.0014779992634430528, 0.029050657525658607, -0.0048178816214203835, 0.01842641644179821, 0.017415301874279976, -0.006194957997649908, -0.025489121675491333, 0.0005069716717116535, -0.025081658735871315, 0.02446291595697403, -0.004161412362009287, 0.01913570612668991, -0.039901264011859894, 0.035856809467077255, 0.005274391733109951, 0.024538373574614525, 0.03027304820716381, -0.005395121872425079, -0.0035162612330168486, -0.006779744289815426, 0.04101801663637161, -0.01570999063551426, 0.00015987292863428593, -0.0009271687013097107, 0.04530393332242966, -0.0017138001276180148, 0.015800539404153824, -0.008526556193828583, 0.021248480305075645, -0.010443145409226418, 0.03138979896903038, -0.02917138673365116, -0.019844993948936462, 0.001342178089544177, 0.006911792792379856, 0.02880919724702835, -0.0011337301693856716, -0.0031502984929829836, 0.009990408085286617, 0.021067384630441666, -0.007700310554355383, -0.000863974099047482, -0.009967770427465439, -0.013997134752571583, 0.02191249467432499, 0.026153136044740677, 0.004074637778103352, -0.008503919467329979, -0.03126906976103783, -0.005010295193642378, -0.0018024612218141556, -0.003231413895264268, -0.022485962137579918, 0.002031659474596381, -0.037879038602113724, 0.00866237748414278, 0.014087681658565998, -0.023663079366087914, 0.03356293961405754, 0.01934698224067688, 0.022350141778588295, 0.03028813935816288, 0.008451100438833237, 0.040021996945142746, 0.007051386870443821, -0.006757107097655535, 0.014570602215826511, 0.013642489910125732]" -How Conserv Safeguards History: Building an Environmental Monitoring and Preventive Conservation IoT Platform,"keen to feature new community projects and stories on our blog. If you have a story or project you’d like to share, reach out on Slack (@lacey butler), and we’ll go from there.Additionally, if you’re looking for more ways to get involved and show your expertise, check out theTimescale Heroesprogram.The open-source relational database for time-series and analytics.Try Timescale for free",https://www.timescale.com/blog/how-conserv-safeguards-history-building-an-environmental-monitoring-and-preventative-analytics-iot-platform/,82,"[0.007359591778367758, -0.014439881779253483, 0.03924184665083885, 0.02643587626516819, 0.035499207675457, 0.0002439523086650297, -0.007394504267722368, 0.03580643981695175, -0.02388026937842369, -0.010082780383527279, 0.0072339060716331005, -0.02125483565032482, -0.010864824056625366, -0.025737622752785683, 0.034465789794921875, 0.026114679872989655, 0.010655348189175129, -0.016827909275889397, -0.003395257517695427, 0.06759093701839447, -0.015557087026536465, 0.020319176837801933, 0.03583436831831932, 0.04055456072092056, 0.012072802521288395, -0.02068226784467697, -0.0365605503320694, 0.030667291954159737, 0.03276205435395241, -0.024969544261693954, 0.02478799782693386, -0.03337651491165161, -0.04161590710282326, 0.08585724979639053, 0.03597401827573776, 0.0012769310269504786, 0.01586431823670864, -0.02414560504257679, 0.05354207754135132, -0.01612965576350689, -0.027636872604489326, 0.005488272290676832, 0.01579449325799942, -0.011681780219078064, -0.014858833514153957, -0.0211850106716156, -0.032482750713825226, -0.0377056859433651, 0.02899148501455784, 0.0772547647356987, 0.013643872924149036, -0.046252310276031494, -0.014013946987688541, -0.03530369699001312, 0.010096745565533638, -0.035108186304569244, -0.006546126212924719, -0.004126678220927715, -0.008630412630736828, 0.022539621219038963, -0.014314196072518826, -0.019606957212090492, 0.023628897964954376, 0.02626829594373703, -0.051447317004203796, -0.01523589063435793, -0.023126155138015747, 0.010920683853328228, -0.04479994252324104, 0.009761583991348743, 0.042481742799282074, 0.0013965069083496928, 0.0032625894527882338, 0.00855360459536314, 0.018531646579504013, -0.0691550225019455, -0.06284281611442566, 0.04661540314555168, -0.013783523812890053, -0.04209071770310402, 0.0045246826484799385, 2.820289410010446e-05, -0.03907426446676254, 0.026212435215711594, -0.021729648113250732, -0.02242790162563324, -0.03471716120839119, -0.009328666143119335, -0.04661540314555168, 0.024033883586525917, 0.0018154589924961329, 0.04368273541331291, -0.010159588418900967, 0.023126155138015747, 0.004664333071559668, 0.05977049842476845, -0.01818251982331276, -0.004769071005284786, 0.019201969727873802, 0.0639600157737732, 0.01717703603208065, -0.02249772660434246, -0.03480095416307449, -0.04667126387357712, 0.03703536465764046, -0.013036392629146576, 0.023056330159306526, -0.001354611711576581, 0.040498699992895126, -0.013190007768571377, -0.10200086981058121, 0.00733166141435504, -0.017875289544463158, -0.025067299604415894, 0.00419301213696599, -0.026212435215711594, 0.023223910480737686, -0.06328969448804855, 0.015668807551264763, -0.03519197553396225, -0.0664178729057312, 0.003742638509720564, -0.023433387279510498, 0.02135259099304676, -0.015766562893986702, -0.03491267189383507, -0.03385132923722267, -0.01626930572092533, -0.020724162459373474, -0.006497248541563749, 0.03136554732918739, -0.002250121906399727, 0.04415754973888397, -0.0047167022712528706, -0.03491267189383507, -0.020738128572702408, -0.04195106774568558, -0.028474776074290276, -0.050022877752780914, -0.041476257145404816, 0.025821413844823837, -0.03563885763287544, -0.017065314576029778, -0.019174041226506233, -0.0036728132981806993, -0.02596106380224228, -0.0031561057548969984, 0.013546117581427097, -0.017693743109703064, -0.025821413844823837, 0.007192010525614023, -0.014370056800544262, -0.04209071770310402, 0.024634381756186485, 0.004220942035317421, -0.019551096484065056, 0.028307195752859116, 0.008330163545906544, -0.029019413515925407, -0.030667291954159737, 0.05921189486980438, 0.01932765543460846, -0.0012437639525160193, 0.015948109328746796, -0.0004202613199595362, 0.014816938899457455, -0.03508025407791138, -0.0090074697509408, -0.06401588022708893, -0.006909218151122332, -0.032315172255039215, -0.06044081971049309, -0.0038089726585894823, 0.04876602068543434, 0.06267523020505905, -0.013001479208469391, 0.008630412630736828, -0.030667291954159737, -0.050497692078351974, -0.011472304351627827, -0.04876602068543434, -0.010194500908255577, -0.052005916833877563, -0.030974524095654488, -0.040163539350032806, 0.0532069131731987, -0.013699732720851898, 0.009105225093662739, 0.0464198924601078, 0.025542112067341805, -0.048682231456041336, 0.052285220474004745, 0.040694210678339005, 0.013315693475306034, 0.06261937320232391, -0.044101689010858536, 0.03589022904634476, 0.037258803844451904, -0.0012821679702028632, 0.0017980026314035058, -0.010390011593699455, 0.026785003021359444, -0.017498232424259186, -0.01899249479174614, 0.02791617438197136, 0.0012603475479409099, -0.002381044439971447, 0.02526281028985977, -0.03737052530050278, -0.021967053413391113, -0.005167075898498297, 0.0050972504541277885, 0.016283271834254265, 0.013231903314590454, -0.009342631325125694, -0.035610925406217575, 0.0159900039434433, -0.023363560438156128, -0.03013662062585354, 0.006057349033653736, -0.02929871529340744, 0.03745431452989578, -0.016157586127519608, -0.0035541101824492216, 0.029550086706876755, 0.05904431268572807, 0.0020930147729814053, -0.03111417405307293, 0.04337550699710846, 0.028139615431427956, 0.013364571146667004, -0.05340242385864258, -0.020361071452498436, -0.0388508215546608, 0.02929871529340744, 0.007254853378981352, -0.017763568088412285, -0.033320654183626175, 0.03563885763287544, -0.018433891236782074, 0.023195980116724968, -0.03091866336762905, 0.010473801754415035, 0.02913113497197628, -0.009161085821688175, 0.02142241597175598, -0.03158898651599884, -0.04974357783794403, -0.006738145835697651, 0.05859743058681488, 0.02865632250905037, -0.0075620850548148155, 0.013930156826972961, -0.016171550378203392, 0.03228724002838135, -0.03628125041723251, 0.01249175425618887, -0.016339130699634552, 0.01515210047364235, -0.03309721499681473, 0.04108523577451706, -0.02226032130420208, -0.02158999815583229, -0.013448362238705158, -0.022036880254745483, -0.015193995088338852, 0.004343136679381132, -0.027385501191020012, 0.0007309840875677764, 0.00882592424750328, 0.013671803288161755, -0.0029309189412742853, 0.02977352775633335, -0.06630615144968033, -0.005261339712888002, -0.03583436831831932, 0.009293753653764725, 0.0012036144034937024, 0.017554093152284622, 0.003676304593682289, -0.004486278630793095, -0.03278998285531998, -0.03843187168240547, -0.01134661864489317, -0.003070569597184658, 0.0052334098145365715, 0.02027728036046028, -0.00036920153070241213, 0.02808375470340252, -0.005404481664299965, -0.022874783724546432, 0.008623430505394936, 0.02316804975271225, -0.028516672551631927, -0.00013168624718673527, 0.04334757477045059, 0.013923173770308495, -0.03530369699001312, -0.010648365132510662, 0.010794999077916145, 0.01663239859044552, -0.052117638289928436, 0.0019009950337931514, -0.04211864992976189, 0.016688257455825806, 0.014830904081463814, -0.01882491447031498, -0.03471716120839119, 0.027217920869588852, -0.024327151477336884, 0.019146110862493515, 0.0028541111387312412, 0.00027755575138144195, -0.016590502113103867, -0.012945619411766529, -0.013043374754488468, 0.05415653809905052, 0.04382238909602165, -0.009426421485841274, -0.03334858641028404, -0.0509166419506073, -0.057536084204912186, 0.020584512501955032, -0.018741123378276825, 0.004531665239483118, -0.02731567621231079, 0.037091225385665894, -0.016883768141269684, 0.034102700650691986, -0.01013864018023014, 0.00648328335955739, -0.07585825771093369, 0.007485277019441128, 0.040163539350032806, 0.0159900039434433, -0.055916137993335724, 0.030192479491233826, -0.03290170431137085, -0.013497239910066128, 0.007450364530086517, -0.04974357783794403, -0.02027728036046028, -0.053430356085300446, 0.06004979833960533, 0.01983039826154709, 0.050637342035770416, 0.00099151988979429, -0.024438871070742607, -0.043431367725133896, -0.004643385764211416, -0.07524379342794418, -0.011060334742069244, -0.02848874218761921, -0.0009906471241265535, -0.027385501191020012, 0.0010822928743436933, 0.0026009941939264536, 0.0019324164604768157, -0.006266824901103973, 0.01622741110622883, -0.0480956993997097, 0.00534513033926487, 0.01183539628982544, -0.02543039061129093, 0.005753608420491219, -0.0007135277846828103, -0.024089744314551353, -0.031142104417085648, 0.007436399348080158, -0.022483762353658676, 0.043459296226501465, 0.009063330478966236, -0.010215448215603828, -0.008232408203184605, -0.04250967130064964, 0.016786012798547745, 0.049017392098903656, 0.01639499142765999, 0.010466819629073143, 0.030806943774223328, 0.020347105339169502, -0.026687247678637505, 0.028572531417012215, -0.025248846039175987, 0.031225895509123802, 0.009049365296959877, -0.01765184849500656, -0.01062741782516241, -0.019215935841202736, 0.014677288010716438, 0.04058249294757843, 0.0038054813630878925, 0.024271290749311447, 0.01798700913786888, 0.041196953505277634, -0.0035157061647623777, 0.02784634754061699, 0.04502338543534279, 0.05317898467183113, -0.024634381756186485, 0.008050862699747086, -0.005188023205846548, -0.0435151569545269, -0.029578017070889473, -0.004357101861387491, 0.011374549008905888, -0.004262837581336498, 0.009733653627336025, 0.01777753420174122, -0.009698741137981415, -0.03471716120839119, -0.038683243095874786, 0.037398457527160645, -0.017232894897460938, -0.018070800229907036, -0.04647574946284294, 0.00481445761397481, 0.015459331683814526, 0.008295251056551933, 0.03010869026184082, -0.001297005801461637, -0.041336607187986374, 0.013350605964660645, -0.026407945901155472, 0.03650469332933426, 0.03351616486907005, 0.02371268719434738, 0.02421543002128601, -0.0077506136149168015, -0.050330109894275665, -0.06368071585893631, 0.010871806181967258, 0.05876501277089119, -0.03407476842403412, -0.00366583070717752, -0.017931148409843445, 0.06340141594409943, -0.023391490802168846, 0.06234006956219673, 0.03228724002838135, -0.0010962579399347305, 0.018196485936641693, 0.0067451284267008305, 0.025514181703329086, 0.017526162788271904, -0.03505232557654381, -0.022218424826860428, -0.054575491696596146, -0.029522156342864037, -0.004776053596287966, 0.03449372202157974, -0.034465789794921875, 0.026240365579724312, 0.020053839311003685, -0.03027627058327198, -0.017554093152284622, -0.0012612203136086464, 0.004622437991201878, 0.016213444992899895, -0.0010421433253213763, -0.023014433681964874, 0.04340343549847603, -0.027874277904629707, -0.021003464236855507, 0.035946089774370193, -0.07016050815582275, -0.003606479149311781, 0.014761078171432018, -0.019453341141343117, -0.018601471558213234, 0.030667291954159737, 0.062451791018247604, -0.00702093867585063, 0.02266530692577362, -0.06524480134248734, 0.005610466469079256, 0.010208466090261936, -0.012819933705031872, -0.0015475042164325714, -0.013497239910066128, -0.009189015254378319, 0.009552107192575932, -0.008267320692539215, 0.09082881361246109, 0.004727175924926996, 0.02879597246646881, 0.013301728293299675, -0.028879763558506966, -0.02943836711347103, 0.004343136679381132, 0.006249368656426668, 0.041336607187986374, 0.026407945901155472, -0.016590502113103867, 0.010040884837508202, -0.03365581855177879, -0.06792610138654709, -0.027972033247351646, -0.011975047178566456, -0.0280139297246933, -0.03454958274960518, -0.03357202559709549, -0.013664820231497288, 0.052061777561903, -0.010341133922338486, 0.01885284297168255, -0.028684252873063087, -0.028237370774149895, -0.029186995700001717, 0.014523671939969063, -0.013685768470168114, -0.012163575738668442, 0.042621392756700516, 0.01185634359717369, -0.008085775189101696, 0.015333645977079868, -0.06250765174627304, 0.015431401319801807, -0.010487766936421394, -0.04209071770310402, -0.02256755158305168, 0.03278998285531998, -0.02855856716632843, -0.012938637286424637, -0.008078793063759804, -0.015850353986024857, -0.021003464236855507, -0.04910118505358696, 0.02569572813808918, -0.005547623615711927, -0.014048859477043152, -0.04153211787343025, 0.006975552067160606, 0.0014733148273080587, -0.049994949251413345, 0.04108523577451706, -0.025779517367482185, -0.027022410184144974, -0.028377020731568336, 0.016143620014190674, 0.009670810773968697, 0.03614160045981407, 0.012889758683741093, 0.040163539350032806, -0.04393410682678223, -0.027189990505576134, -0.03563885763287544, -0.0232099462300539, -0.004067326430231333, 0.040861792862415314, 0.04714607447385788, -0.04195106774568558, 0.024746103212237358, -0.003431915771216154, 0.02216256596148014, 0.022651342675089836, 0.018629401922225952, -0.024801963940262794, 0.005666326731443405, 0.024019919335842133, -0.0035925142001360655, 0.0007501860964111984, 0.009873304516077042, -0.0017962571000680327, 0.006361089181154966, 0.005802486557513475, 0.0022623413242399693, -0.013490256853401661, -0.02242790162563324, -0.00789724662899971, 0.013127164915204048, -0.03535955399274826, -0.0029658316634595394, -0.007785526104271412, 0.024829894304275513, 0.006807971280068159, -0.036728132516145706, -0.0348847433924675, 0.022721167653799057, 0.0019481271738186479, -0.003456354606896639, -0.020053839311003685, -0.021268799901008606, 0.02044486254453659, -0.045917149633169174, -0.021645857021212578, 0.006856848951429129, 0.013448362238705158, 0.03432613983750343, -0.03678399324417114, -0.006029418669641018, -0.013999981805682182, -0.0008021186804398894, 0.019243866205215454, 0.029829388484358788, -0.021701717749238014, 0.011234898120164871, 0.009503229521214962, -0.03242688998579979, 0.018950598314404488, -0.0037600949872285128, 0.034298211336135864, -0.010801981203258038, -0.029214926064014435, 0.004482787102460861, -0.015249855816364288, -0.009866321459412575, -0.011437391862273216, 0.018000975251197815, -0.008714203722774982, 0.0034633371978998184, 0.009426421485841274, 0.036392971873283386, -0.056055787950754166, 0.00556508032605052, -0.022078774869441986, -0.001944635878317058, 0.03418648988008499, 0.03555506840348244, -0.04161590710282326, -0.025877274572849274, -0.034940604120492935, -0.020500721409916878, -0.0021296730265021324, 0.04482787102460861, 0.0008387769921682775, -0.022511692717671394, -0.052005916833877563, -0.008532657288014889, 0.020752092823386192, 0.02684086374938488, -0.013120182789862156, 0.027930138632655144, -0.00559999281540513, 0.007673805579543114, 0.013252850621938705, 0.022581517696380615, 0.0726742222905159, 0.013783523812890053, -0.005854855291545391, 0.02519298531115055, -0.018364066258072853, -0.03195207938551903, -0.03178449720144272, 0.034940604120492935, -0.03926977515220642, 0.017400477081537247, 0.036728132516145706, 0.030248340219259262, 0.015403471887111664, -0.03720294311642647, -0.005819942802190781, 0.03991216793656349, 0.011709710583090782, 0.01596207357943058, -0.024508696049451828, -0.01781942881643772, 0.004737649578601122, 0.04072214290499687, 0.00850472692400217, -0.011591007933020592, -0.010655348189175129, -0.026924652978777885, -0.0005481289699673653, -0.009175051003694534, 0.014858833514153957, -0.003791516413912177, 0.021603962406516075, -0.0077506136149168015, 0.0441296212375164, -0.03245482221245766, 0.03094659373164177, 0.01643688604235649, 0.004587525501847267, 0.020919673144817352, 0.0078064738772809505, -0.020291246473789215, -0.016730153933167458, 0.016646362841129303, 0.036420900374650955, 0.002384535502642393, -0.00016452597628813237, -0.016911698505282402, 0.003683286951854825, -0.025402462109923363, -0.03077901341021061, -0.0020738127641379833, 0.0128827765583992, 0.047062285244464874, 0.001160846441052854, -0.027217920869588852, 0.004929669667035341, -0.005896750371903181, -0.05700541287660599, -0.0101526053622365, -0.0024665803648531437, -0.022372040897607803, 0.007534155156463385, -0.010892754420638084, -0.03365581855177879, -0.0009234402095898986, -0.013364571146667004, -0.03859945014119148, -0.013594995252788067, -0.00904238224029541, 0.0025276774540543556, 0.05158696696162224, 0.00907729472965002, 0.04047077149152756, -0.001124188071116805, -0.06636200845241547, -0.008064827881753445, -0.03340444713830948, 0.010487766936421394, -0.04021940007805824, -0.012596492655575275, -0.0223301462829113, -0.0068952529691159725, -0.030192479491233826, 0.0124428765848279, -0.059826359152793884, 0.013364571146667004, -0.01589224860072136, -0.030834874138236046, -0.01663239859044552, 0.010983526706695557, 0.022707203403115273, 0.009775548242032528, -0.005809468682855368, -0.017260825261473656, 0.005002986174076796, 0.0166044682264328, 0.029159065335989, 0.013615942560136318, 0.005394008010625839, -0.01999797858297825, -0.03407476842403412, 0.008427919819951057, -0.03667227178812027, -0.029578017070889473, 0.009293753653764725, 0.018880773335695267, -0.0007711336947977543, 0.054240331053733826, 0.022777028381824493, -0.04790018871426582, -0.0005891513428650796, 0.027203954756259918, 0.0034581003710627556, -0.008162583224475384, 0.005931663326919079, 0.012903723865747452, 0.006455353461205959, -0.011989012360572815, -0.0012332901824265718, -0.033823397010564804, -0.03195207938551903, 0.010983526706695557, 0.010697242803871632, 0.015515192411839962, -0.01386033184826374, 0.047872256487607956, -0.0019184513948857784, 0.021198974922299385, -0.005373060237616301, 0.0537375882267952, -0.007048868574202061, 0.027930138632655144, -0.0075620850548148155, -0.05264831334352493, 0.017121175304055214, -0.02996903844177723, 0.010529662482440472, -0.008036897517740726, 0.05027424916625023, -0.008818941190838814, -0.0225954819470644, 0.014802973717451096, 0.03826428949832916, -0.03932563588023186, 0.03974458575248718, 0.016492746770381927, -0.012596492655575275, -0.04926876351237297, 0.006626425310969353, -0.03650469332933426, -0.007645875681191683, -0.025179021060466766, -0.026226399466395378, 0.016925664618611336, -0.025653831660747528, -0.015180030837655067, 0.0020685759373009205, -0.019341621547937393, 0.008001985028386116, 0.002840145956724882, -0.01513813529163599, -0.04946427419781685, -0.022204460576176643, 0.04530268535017967, -0.0009827917674556375, -0.009950111620128155, 0.0018224415834993124, 0.01629723608493805, 0.00905634742230177, 0.01868526265025139, -0.020011944696307182, 0.02182740345597267, -0.03139347583055496, 0.0009758092346601188, 0.010424924083054066, -0.01610172539949417, 0.00251720380038023, -0.030974524095654488, 0.008623430505394936, 0.013238885439932346, 0.044632360339164734, 0.016548607498407364, 0.025472287088632584, -0.005579045042395592, 0.03533162549138069, 0.011556094512343407, -0.03589022904634476, -0.021799473091959953, 0.012079784646630287, 0.008539640344679356, -0.0032084747217595577, 0.039716657251119614, -0.0011695745633915067, -0.025067299604415894, -0.023768547922372818, -0.0257655531167984, 0.0532069131731987, -0.01005485001951456, 0.03278998285531998, -0.0035244342871010303, -0.023614931851625443, -0.02226032130420208, -0.008595500141382217, 0.04021940007805824, -0.022274285554885864, 0.035778507590293884, 0.020738128572702408, 0.019383516162633896, 0.017861323431134224, 0.011234898120164871, -0.000641956808976829, 0.03974458575248718, 0.040973514318466187, 0.008379041217267513, 0.0020633391104638577, -0.020263316109776497, 0.019076284021139145, -0.025667797774076462, -0.042006928473711014, 0.024871788918972015, 0.011423426680266857, 0.002843637252226472, -0.006780041381716728, 0.003980044741183519, -0.04287276417016983, -0.045246824622154236, 0.006245877128094435, -0.005617449060082436, -0.0015588508686050773, -0.025514181703329086, 0.018140625208616257, 0.024746103212237358, 0.028097718954086304, 0.05077699199318886, 0.0015344120329245925, 0.027427395805716515, -0.00907729472965002, 0.009880286641418934, -0.011674798093736172, 0.002749372972175479, -0.023656828328967094, -0.0332089364528656, -0.004580542910844088, -0.037091225385665894, 0.04186727851629257, -0.0017945114523172379, 0.008281285874545574, 0.015417437069118023, 0.02101743035018444, 0.007652858272194862, 0.006748619955033064, 0.031058315187692642, 0.004217450972646475, -0.007631910499185324, 8.870001329341903e-05, 0.01119998563081026, 0.021841367706656456, -0.008323181420564651, -0.0050309160724282265, -0.03237102925777435, -0.018769053742289543, -0.0030967541970312595, -0.009391508996486664, 0.039521146565675735, 0.009391508996486664, 0.04485580325126648, -0.005488272290676832, 0.05041389912366867, -0.016171550378203392, -0.009084277786314487, 0.013797488994896412, 0.0025486252270638943, -0.010075797326862812, -0.024871788918972015, -0.017875289544463158, 0.009265823289752007, -0.008372059091925621, 0.04156004637479782, 0.002744136145338416, 0.030024899169802666, -0.009286771528422832, 0.03994010016322136, -0.0027930138166993856, -0.023084260523319244, 0.03170070797204971, 0.02495557814836502, 0.01579449325799942, 0.01667429320514202, -0.008050862699747086, 0.015557087026536465, -0.026715178042650223, 0.021408451721072197, 0.05499444156885147, 0.017400477081537247, 0.04250967130064964, 0.0052962526679039, -0.03209172934293747, 0.005882785655558109, 0.010320186614990234, -0.014509706757962704, 0.010704225860536098, 0.008211460895836353, 0.024941613897681236, 0.008846871554851532, -0.007436399348080158, 0.021715683862566948, 0.0025713182985782623, -0.022288251668214798, -0.0036099704448133707, -0.006916200742125511, -0.0004078236815985292, 0.016660327091813087, -0.01994211971759796, -0.02896355465054512, 0.035750579088926315, 0.011374549008905888, 0.0693226009607315, -0.048514652997255325, -0.0005952611099928617, -0.01301544439047575, -0.031142104417085648, 0.009677792899310589, 0.02943836711347103, 0.021073289215564728, 0.023028399795293808, 0.01239399891346693, -0.02498350851237774, 0.007967072539031506, 0.00029392106807790697, 0.01899249479174614, -0.01879698410630226, -0.00946133490651846, 0.02051468752324581, 0.010767068713903427, 0.017903219908475876, 0.03700743243098259, 0.008916696533560753, 0.039185985922813416, -0.0015317935030907393, -0.008951609954237938, 0.006657846737653017, 0.0015300479717552662, 0.020165560767054558, 0.0018241872312501073, 0.05175454914569855, 0.029410436749458313, -0.012121680192649364, -0.02216256596148014, 0.01569673791527748, -0.03622538968920708, -0.011423426680266857, 0.015459331683814526, 0.0021628402173519135, 0.024229396134614944, 0.017959078773856163, -0.026980513706803322, -0.033488236367702484, 0.014370056800544262, 0.030806943774223328, -0.024592487141489983, 0.024760067462921143, -0.039493218064308167, 0.01474711298942566, 0.025067299604415894, -0.009035400114953518, 0.008323181420564651, 0.02519298531115055, 0.006479792296886444, 0.015487262047827244, -0.01872715726494789, -0.007799491286277771, 0.0016190751921385527, 0.011227915994822979, -0.03228724002838135, 0.020793989300727844, 0.024229396134614944, 0.013057339936494827, 0.003297501942142844, -0.009635898284614086, 0.010781033895909786, -0.012212453410029411, -0.015906214714050293, -0.0037496211007237434, -0.05273210257291794, 0.00789724662899971, -0.0348847433924675, 0.04971564561128616, -0.026561561971902847, -0.027427395805716515, -0.032147590070962906, 0.02209273912012577, 0.008895749226212502, -0.0034738110844045877, 0.00888876710087061, 0.004343136679381132, 0.03569471836090088, 0.00507630268111825, 0.03661641106009483, -0.005313708912581205, -0.006315702572464943, 0.03538748621940613, -0.004838896449655294, 0.02064037322998047, -0.017191000282764435, -0.022581517696380615, -0.028768042102456093, 0.008735151030123234, 0.03424235060811043, -0.005694257095456123, 0.04317999631166458, -0.013804471120238304, -0.004908721894025803, 0.02960594743490219, 0.005243883468210697, 0.015515192411839962, 0.01586431823670864, 0.010299238376319408, 0.02862839214503765, -0.009426421485841274, -0.004982038401067257, 0.02080795355141163, 0.010012954473495483, 0.024746103212237358, -0.011416444554924965, -0.0059840320609509945, -0.01677204854786396, 0.009607967920601368, -0.014279283583164215, -0.025039369240403175, 0.03616952896118164, 0.028851833194494247, -0.02195308916270733, 0.041169025003910065, -0.005631414242088795, 0.011123177595436573, -0.001241145539097488, 0.022274285554885864, -0.04418547824025154, -0.03287377208471298, 0.0007226923480629921, 0.011535147204995155, -0.025821413844823837, -0.0022099721245467663, -0.01865733228623867, -0.014411951415240765, 1.9331528164912015e-06, -0.00956607237458229, 0.0059002419002354145, -0.0026952584739774466, 0.0051391455344855785, -0.009929164312779903, -0.016911698505282402, 0.041308674961328506, -0.009992007166147232, 0.01183539628982544, -0.007338644005358219, 0.00011281157640041783, -0.01879698410630226, 0.02943836711347103, -0.017330650240182877, -0.003917201887816191, 0.04778846725821495, 0.004465330857783556, 0.0022413935512304306, -0.007694753352552652, -0.017763568088412285, -0.01224038377404213, -0.010012954473495483, -0.020528651773929596, -0.007471312303096056, -0.006605478003621101, -0.02101743035018444, 0.01226133108139038, 0.010836893692612648, 0.028935624286532402, -0.0055196937173604965, -0.002171568339690566, 0.006217947229743004, 0.01522192545235157, 0.01466332282871008, 0.01949523761868477, -0.011018440127372742, -0.03589022904634476, 0.01505434513092041, 0.059156034141778946, -0.038711171597242355, 0.03555506840348244, 0.0006834155647084117, -0.0009714451152831316, -0.015682773664593697, 0.0075620850548148155, 0.005198497325181961, -0.049157045781612396, -0.02084984816610813, -0.013916191644966602, -0.037063293159008026, 0.011800483800470829, 0.012952601537108421, -0.004790018778294325, 0.012736143544316292, -0.0033097213599830866, 0.02256755158305168, -0.011011457070708275, -0.023531142622232437, 0.023614931851625443, 0.03340444713830948, 0.0022204460110515356, 0.0005812959861941636, 0.011018440127372742, 0.00044644580339081585, 0.019592992961406708, 0.06725577265024185, 0.007617945317178965, -0.024592487141489983, 0.009901233948767185, 0.008169565349817276, 0.008497744798660278, -0.0022780520375818014, 0.0008998741395771503, 0.020989499986171722, 0.04547026753425598, -0.014635392464697361, -0.015780529007315636, -0.01165385078638792, 0.03491267189383507, 0.011591007933020592, -0.013273798860609531, -0.0068009886890649796, -0.004845879040658474, 0.011339636519551277, -0.026184504851698875, 0.011353601701557636, 0.03795705735683441, -0.031197965145111084, -0.009831408970057964, -0.0013764321338385344, -0.012254348024725914, 0.033627886325120926, -0.005250866059213877, -0.002864584792405367, -0.003185781417414546, 0.014928659424185753, -0.010431907139718533, 0.026421912014484406, 0.0271760243922472, -0.020319176837801933, 0.0043640839867293835, 0.008413954637944698, 0.018783017992973328, 0.008441884070634842, 0.017065314576029778, -0.021771542727947235, -0.019034389406442642, 0.005907224491238594, -0.057536084204912186, 0.004350119270384312, 0.008721185848116875, -0.009195998311042786, -0.00956607237458229, 0.015473296865820885, -0.02481592819094658, -0.04781639948487282, -0.0037600949872285128, 0.004870317876338959, -0.016911698505282402, -0.002091269241645932, -0.0007458219770342112, 0.055748555809259415, -0.010438889265060425, 0.019592992961406708, 0.005666326731443405, -0.035108186304569244, 0.013706715777516365, -0.04102937504649162, -0.005390516947954893, -0.0074782948940992355, 0.005446377210319042, 0.009489264339208603, -0.010899736545979977, 0.002026680624112487, 0.00022518674086313695, 0.027259815484285355, 0.020961569622159004, 0.009244875982403755, 0.012785021215677261, 0.04010767862200737, 0.011255846358835697, 0.0337396077811718, 0.015026414766907692, 0.027120165526866913, -0.05437998101115227, -0.01656257174909115, 0.024019919335842133, -0.00914013758301735, 0.03195207938551903, -0.04482787102460861, -0.041169025003910065, -0.003349871141836047, 0.00587580306455493, 0.03175656870007515, -0.006469318643212318, -0.025835378095507622, 0.03580643981695175, 0.006032910197973251, 0.0023566053714603186, -0.007743631023913622, -0.006249368656426668, -0.013567064888775349, -0.011172055266797543, -0.024997474625706673, -0.0325944721698761, 0.01963488757610321, -0.00480747502297163, -0.03077901341021061, 0.04304034262895584, -0.007583032827824354, -0.009147120639681816, -0.0032521155662834644, -0.0006415203679352999, -0.030834874138236046, -0.019285760819911957, -0.02104535885155201, 0.006856848951429129, 0.023866303265094757, -0.013057339936494827, 0.007073307875543833, 0.01999797858297825, 0.014118685387074947, -0.015682773664593697, -0.011982029303908348, -0.02235807664692402, 0.005980540998280048, 0.011206967756152153, -0.008679290302097797, 0.006731163244694471, -0.010536644607782364, -0.0010351607343181968, 0.023112189024686813, -0.04337550699710846, 0.06585926562547684, -0.0012812950881198049, 0.004161590710282326, 0.022441865876317024, 0.02839098684489727, 0.0045142085291445255, 0.026519667357206345, -0.005924680735915899, 0.00621445570141077, -0.015124170109629631, 0.027636872604489326, 0.005624431651085615, -0.03010869026184082, 0.02051468752324581, -0.015640877187252045, -0.0016042373608797789, -0.009998989291489124, -0.005537149962037802, 0.02855856716632843, 0.0070314123295247555, -0.0029658316634595394, -0.03304135426878929, -0.01925783045589924, 0.016520677134394646, 0.026463806629180908, 0.023852339014410973, 0.015585017390549183, -0.0194254107773304, 0.01693962886929512, 0.01013864018023014, -0.02087777853012085, 0.01987229287624359, -0.0006100989994592965, -0.005977049935609102, -0.006539143621921539, -0.039046335965394974, 0.018196485936641693, 0.0077506136149168015, 0.021478276699781418, -0.015612947754561901, -0.03653262183070183, 0.046922631561756134, -0.013846366666257381, -0.02960594743490219, -0.006308719981461763, -0.004570068791508675, 0.03136554732918739, -0.01703738421201706, -0.029214926064014435, 0.015571052208542824, 0.013497239910066128, -0.007226923480629921, -0.01005485001951456, 0.005886276718229055, -0.003833411494269967, 0.0034581003710627556, -0.007003482431173325, -0.014244371093809605, -0.016283271834254265, -0.032650332897901535, -0.015585017390549183, 0.005278796423226595, -0.01166781596839428, 0.03128175437450409, -0.014265318401157856, 0.04158797860145569, 0.008064827881753445, -0.009112208150327206, 0.011514199897646904, 0.00026577271637506783, -0.01839199662208557, 0.007192010525614023, -0.037873268127441406, -0.00939849205315113, -0.014998484402894974, -0.005320691503584385, -0.006842884235084057, -0.005785029847174883, 0.004877300467342138, 0.008379041217267513, -0.02579348348081112, -0.02135259099304676, 0.01815458945930004, -0.015906214714050293, -0.028237370774149895, 0.009475299157202244, 0.006902235560119152, 0.00507630268111825, 0.010292256250977516, 0.04538647457957268, 0.04223037138581276, -0.051977988332509995, 0.021967053413391113, -0.006776549853384495, -0.0039032369386404753, -0.036588482558727264, -0.008211460895836353, 0.003962588496506214, -0.0006607223185710609, -0.0200398750603199, -0.02087777853012085, -0.009894251823425293, 0.0009504975168965757, -0.015347611159086227, 0.014537637121975422, 0.004042887594550848, -0.00326608051545918, 0.017218930646777153, -0.016786012798547745, -0.01636706106364727, 0.011632902547717094, -0.011095247231423855, -0.0011014948831871152, -0.011933151632547379, 0.0053171999752521515, -0.002197752706706524, 0.0041441344656050205, 0.013259833678603172, 0.02266530692577362, 0.0008601609733887017, 0.014830904081463814, -0.023154085502028465, -0.029689738526940346, 0.00449675228446722, -0.0022396480198949575, -0.001792765804566443, -0.05086078122258186, 0.00016463507199659944, -0.0058059776201844215, 0.0283211600035429, -0.0037496211007237434, 0.023447351530194283, 0.0024281763471663, -0.03354409709572792, 0.01737254671752453, -0.026421912014484406, -0.0024718171916902065, 0.0057640825398266315, 0.019984014332294464, -0.028684252873063087, -0.01353913452476263, 0.03454958274960518, 0.023014433681964874, 0.025905203074216843, -0.0010255597298964858, -0.005114706698805094, -0.04586128890514374, -0.006776549853384495, 0.004692263435572386, 0.0034249331802129745, 0.0023792986758053303, -0.010732156224548817, -0.02350321225821972, 0.01605982892215252, -0.053625866770744324, -0.014802973717451096, -0.0016574792098253965, -0.021841367706656456, -0.01663239859044552, -0.010941632091999054, -0.001231544534675777, 0.0021610944531857967, 0.012463824823498726, 0.005673309322446585, -0.0036099704448133707, -0.004629420582205057, 0.04301241412758827, 0.00036440102849155664, -0.03306928277015686, 0.009475299157202244, 0.0008601609733887017, -0.010913701727986336, 0.01913214474916458, 0.005586027633398771, -0.0032905195839703083, 0.010913701727986336, 0.037873268127441406, 0.040051817893981934, 0.013364571146667004, 0.01973264291882515, -0.0083022341132164, 0.01636706106364727, 0.014761078171432018, 0.0028523653745651245, -0.0008527420577593148, -0.0464198924601078, 0.0067171985283494, -0.018475787714123726, 0.032817911356687546, 0.016255341470241547, -0.023056330159306526, -0.011891257017850876, 0.027399465441703796, 0.01010372769087553, 0.011674798093736172, 0.0016522422665730119, 0.0024561064783483744, 0.001579798525199294, 0.007118694018572569, -0.012792003341019154, 0.03859945014119148, -0.034465789794921875, 0.02519298531115055, 0.012973549775779247, 0.025877274572849274, -0.03309721499681473, 0.012952601537108421, -0.02209273912012577, 0.02677103877067566, 0.004447874613106251, -0.0025660814717411995, -0.03077901341021061, -0.040526632219552994, 0.0177496038377285, 0.010355099104344845, 0.000853178440593183, 0.00013725044846069068, 0.045917149633169174, -0.026156574487686157, 0.04560991749167442, 0.0049890209920704365, 0.01724686101078987, -0.009147120639681816, 0.013629907742142677, 0.009670810773968697, -0.002728425431996584, -0.04390617832541466, 0.02674310840666294, 0.007939142175018787, -0.00023151467030402273, -0.03530369699001312, -0.0018014939269050956, 0.04505131393671036, -0.032650332897901535, 0.044576503336429596, 0.008881784044206142, -0.012840881012380123, 0.024466801434755325, 0.0019009950337931514, -0.025179021060466766, 0.013322676531970501, -0.034940604120492935, 0.012680282816290855, -0.017637882381677628, 0.005634905304759741, -0.023028399795293808, -0.023461315780878067, -0.042481742799282074, 0.002819198416545987, -0.0006877796840853989, -0.03614160045981407, -0.05111215263605118, 0.013350605964660645, 0.009209963493049145, 0.028265301138162613, 0.004081291612237692, -0.003987027332186699, 0.004290767479687929, 0.014251353219151497, -0.0018189502879977226, -0.0354154147207737]" -How Messari Uses Data to Open the Cryptoeconomy to Everyone,"This is an installment of our “Community Member Spotlight” series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition,Adam Inoue, Software Engineer at Messari, joins us to share how they bring transparency to the cryptoeconomy, combining tons of data about crypto assets with real-time alerting mechanisms to give investors a holistic view of the market and ensure they never miss an important event.Messariis a data analytics and research company on a mission to organize and contextualize information for crypto professionals. Using Messari, analysts and enterprises can analyze, research, and stay on the cutting edge of the crypto world – all while trusting the integrity of the underlying data.This gives professionals the power to make informed decisions and take timely action. We are uniquely positioned to provide an experience that combines automated data collection (such as our quantitativeasset metricsandcharting tools) withqualitative researchandmarket intelligencefrom a global team of analysts.Our users range from some of the most prominent analysts, investors, and individuals in the crypto industry to top platforms like Coinbase, BitGo, Anchorage, 0x, Chainanalysis, Ledger, Compound, MakerDAO, andmany more.About the teamI have over five years of experience as a back-end developer, in roles where I’ve primarily focused on high-throughput financial systems, financial reporting, and relational databases to support those systems.After some COVID-related career disruptions, I started at Messari as a software engineer this past April (2021). I absolutely love it. The team is small, but growing quickly, and everyone is specialized, highly informed, and at the top of their game. (Speaking of growing quickly,we’re hiring!)We’re still small enough to function mostly as one team. We are split into front-end and back-end development. The core of our back-end is a suite of microservices written in Golang and managed by Kubernetes, and I - along with two other engineers - “own” managing the cluster and associated services. (As an aside, another reason I love Messari: we’re a fully remote team: I’m in Hawaii, and those two colleagues are in New York and London. Culturally, we also minimize meetings, which is great because we’re so distributed,andwe end up with lots of time for deep work.)From a site reliability standpoint, my team is responsible for all of the back-end APIs",https://www.timescale.com/blog/how-messari-uses-data-to-open-the-cryptoeconomy-to-everyone/,502,"[0.007502581924200058, -0.009852475486695766, -0.0019897990860044956, 0.05042804032564163, 0.04778487607836723, -0.018977336585521698, -0.014262701384723186, 0.047131508588790894, -0.015458066016435623, -0.026550453156232834, 0.007825552485883236, -0.03445025160908699, -0.012302600778639317, -0.030589448288083076, 0.02499128133058548, 0.0375685952603817, -0.012673831544816494, -0.02138291485607624, -0.04327070340514183, 0.013936017639935017, 0.02006133273243904, 0.006121601909399033, 0.017908191308379173, 0.048230353742837906, -0.010104912333190441, -0.006953159812837839, -0.06931628286838531, 0.030737940222024918, 0.004176350776106119, -0.04603266343474388, 0.029193619266152382, -0.02283814176917076, 0.007587965112179518, 0.03171798959374428, 0.029520301148295403, 0.01314900815486908, 0.03759829327464104, -0.046596936881542206, 0.0014208873035386205, 0.011367098428308964, -0.021813543513417244, -0.011968492530286312, 0.023951834067702293, 0.016200527548789978, -0.021828392520546913, -0.011099811643362045, -0.0598127655684948, 0.012874296866357327, -0.0001446641399525106, 0.020046481862664223, -0.043508291244506836, 0.040092963725328445, 0.0023369002155959606, -0.018413065001368523, -0.01356478687375784, -0.03733100742101669, -0.02773839235305786, 0.0598127655684948, -0.043359801173210144, -0.010802826844155788, 0.027664145454764366, -0.05345728620886803, 0.019363418221473694, 0.03400477394461632, -0.01943766325712204, -0.019838593900203705, -0.01648266427218914, 0.030322160571813583, -0.013512814417481422, 0.024219121783971786, 0.0653366819024086, 0.014819548465311527, 0.0011823712848126888, -0.015562009997665882, 0.009384723380208015, -0.04802246391773224, -0.006355477496981621, 0.039112914353609085, -0.003606510814279318, -0.028659045696258545, -0.001615783665329218, 0.016601458191871643, -0.02565949782729149, -0.019675251096487045, 0.013973141089081764, -0.04315191134810448, -0.0014951335033401847, -0.03382658213376999, -0.04885401949286461, 0.01680934615433216, -0.018873391672968864, 0.05339789018034935, 0.02219962328672409, 0.00726870633661747, 0.029460905119776726, -0.01487151999026537, -0.01544321607798338, 0.03887532651424408, 0.02938665822148323, 0.017878493294119835, 0.01780424639582634, -0.031094321981072426, 0.024055778980255127, -0.01569565385580063, 0.011730904690921307, -0.000896987272426486, 0.028822386637330055, -0.011285427026450634, -0.005884014070034027, -0.029668794944882393, -0.09848020225763321, 0.004978209733963013, -0.005416262894868851, -0.019333718344569206, -0.04769577831029892, 0.017403317615389824, -0.03724190965294838, 0.017923040315508842, -0.024263668805360794, -0.057199299335479736, -0.03489572927355766, 0.014158756472170353, 0.01535412110388279, 0.001569379703141749, 0.013728128746151924, -0.031599197536706924, -0.04552778974175453, -0.029995478689670563, -0.028644196689128876, -0.004124378319829702, 0.031242813915014267, -0.0003677508793771267, 0.07258311659097672, -0.013022788800299168, -0.03709341958165169, -0.004098392091691494, -0.03774678334593773, -0.026208920404314995, -0.022422362118959427, -0.019378267228603363, 0.015710502862930298, -0.02205113135278225, 0.016037186607718468, -0.028688743710517883, -0.04217185825109482, -0.006953159812837839, -0.02794628217816353, 0.020016783848404884, -0.04585447162389755, -0.06325779110193253, 0.033381104469299316, -0.05497191101312637, -0.06949447095394135, -0.019541608169674873, 0.05170507729053497, 0.044488344341516495, 0.03721221163868904, 0.05099231377243996, -0.019066432490944862, -0.02188778854906559, 0.003793982556089759, 0.1012718603014946, -0.04656723886728287, -0.01716572977602482, -0.02009103074669838, 7.239007391035557e-05, -0.04065723717212677, -0.04820065572857857, -0.054645225405693054, 0.008360126055777073, -0.021635351702570915, -0.031421005725860596, -0.01943766325712204, 0.0008761055651120842, 0.03543030098080635, -0.09063979983329773, 0.01811608113348484, -0.004035282880067825, 0.0025243719574064016, -0.0021828392054885626, -0.05746658518910408, -0.0038162562996149063, -0.011886822059750557, -0.0019471074920147657, -0.04834914579987526, 0.001625064411200583, -0.02007618173956871, 0.026832588016986847, -0.012042738497257233, 0.01876944676041603, 0.01698753796517849, 0.09865839034318924, 0.024040929973125458, 0.039409901946783066, 0.0013475691666826606, -0.0316585935652256, 0.047606684267520905, -0.0174627136439085, -0.014648782089352608, 0.031599197536706924, 0.05663502588868141, 0.04330040141940117, 0.07002905011177063, 0.0297133419662714, 0.039409901946783066, -0.020521659404039383, 0.005267770029604435, -0.034717537462711334, -0.06052552908658981, -0.011597261764109135, 0.04193427041172981, 0.02402608096599579, -0.00669701024889946, 0.02972819097340107, -0.018813995644450188, -0.01027567870914936, -0.03854864463210106, 0.015547160990536213, -0.009904447011649609, 0.008864999748766422, -0.04404286667704582, 0.07151397317647934, 0.006470559164881706, 0.023149974644184113, -0.019482212141156197, 0.03171798959374428, 0.054645225405693054, -0.05583316832780838, 0.0620698519051075, 0.013705854304134846, 0.041726384311914444, 0.0022942086216062307, -0.031272511929273605, -0.032430753111839294, 0.013609334826469421, 0.005683549214154482, 0.028644196689128876, -0.03611336648464203, 0.020788945257663727, 0.012636709026992321, 0.013438568450510502, -0.0024315640330314636, 0.0320446752011776, -0.0161411315202713, 0.013527663424611092, 0.011084962636232376, -0.014752726070582867, -0.007899799384176731, -0.0007981469971127808, 0.059040602296590805, 0.03854864463210106, 0.003975885920226574, -0.012970817275345325, -0.03222286328673363, -0.02058105543255806, -0.02202143333852291, -0.017195427790284157, 0.05633804202079773, -0.013854347169399261, 0.009065465070307255, 0.008204208686947823, -0.04778487607836723, -0.05520949885249138, -0.011099811643362045, -0.03263864293694496, 0.013030214235186577, -0.0322822630405426, -0.018888240680098534, -0.015220477245748043, -0.016245076432824135, 0.02288268879055977, -0.012168957851827145, -0.003381915856152773, -0.00930305290967226, -0.019348567351698875, -0.02778293937444687, -0.004027857910841703, -0.005490508861839771, 0.008471495471894741, 0.010632060468196869, -0.01070630643516779, -0.004547581542283297, 0.02497643232345581, -0.012243203818798065, 0.01363903284072876, 0.02026922069489956, 0.010929045267403126, 0.021501708775758743, -0.02007618173956871, -0.0226747989654541, 0.005171250086277723, -0.016898442059755325, 0.04422105476260185, 0.009199107997119427, 0.013698429800570011, -0.00473690964281559, 0.05509070307016373, 0.008597713895142078, -0.043359801173210144, -0.018427914008498192, 0.04926979914307594, -0.03287623077630997, 0.006656174547970295, -0.018813995644450188, 0.030084572732448578, 0.0002853839541785419, 0.00988959800451994, -0.00897636916488409, -0.0014310961123555899, -0.018561558797955513, 0.012941118329763412, 0.007758731488138437, 0.017180578783154488, 0.003799550933763385, -0.00048677687300369143, 0.011552713811397552, 0.042201559990644455, -0.001489565009251237, 0.01216153334826231, -0.029416358098387718, -0.028540251776576042, -0.04885401949286461, 0.0022255307994782925, -0.015472915023565292, -0.019200075417757034, -0.03902382031083107, 0.03035186044871807, -0.037657689303159714, 0.015873843804001808, -0.03831105679273605, 0.04540899395942688, -0.055417388677597046, 0.03771708533167839, -0.014515138231217861, -0.010995866730809212, -0.004380527883768082, 0.018724899739027023, 0.009689133614301682, 0.020506808534264565, -0.011322550475597382, -0.006463134661316872, -0.03260894492268562, -0.029846984893083572, -0.01847246289253235, 0.031064623966813087, -0.010921620763838291, -0.003070081816986203, -0.0013113741297274828, 0.007535992655903101, 0.03195557743310928, -0.037004321813583374, -0.0015768043231219053, -0.0007823696942068636, -0.02987668476998806, -0.030916132032871246, -0.028703592717647552, -0.01762605644762516, -0.01875459775328636, -0.02415972389280796, -0.00016287766629830003, -0.05292271450161934, 0.00970398262143135, 0.02288268879055977, 0.0044250753708183765, 0.01683904603123665, 0.037984371185302734, -0.039409901946783066, 0.01911097951233387, 0.005653850734233856, -0.05877331644296646, -0.0009262217790819705, 0.007510006427764893, -0.016378719359636307, -0.015933241695165634, -0.026520755141973495, -0.00028004750492982566, 0.027367161586880684, -0.007328103296458721, 0.016705403104424477, 0.08149266242980957, 0.0630795955657959, 0.05105170980095863, -0.0009512798278592527, -0.0043359799310564995, -0.005319742485880852, 0.05117050185799599, 0.017893342301249504, -0.015279874205589294, -0.055268894881010056, -0.011003291234374046, 0.043330103158950806, -0.05809025093913078, -0.01078797783702612, 0.03605397045612335, -0.0014988458715379238, 0.006737845484167337, 0.026208920404314995, 0.018323970958590508, 0.043211307376623154, -0.024456709623336792, 0.02108592912554741, -0.006986570544540882, -0.014812123030424118, -0.028495704755187035, 0.0241894219070673, 0.014500289224088192, -0.01747756265103817, 0.03085673414170742, -0.04523080587387085, -0.0005234359414316714, 0.007647362072020769, -0.024902187287807465, 0.04478532820940018, -0.02300148271024227, -0.04965588077902794, -0.024917036294937134, 0.0032705464400351048, 0.008716507814824581, 0.045468393713235855, 0.011612110771238804, 0.023892438039183617, -0.021130478009581566, -0.03249015286564827, -0.007335527800023556, 0.010453869588673115, 0.02451610565185547, 0.049715276807546616, -0.026535604149103165, 0.0020176414400339127, -0.041370000690221786, -0.04359738901257515, -0.03281683474779129, 0.018903091549873352, -0.018680352717638016, -0.020209824666380882, -0.001394901075400412, 0.034866031259298325, 0.04766608029603958, -0.0035805245861411095, -0.015161080285906792, -0.022659949958324432, -0.03777648136019707, -0.035667888820171356, 0.015636255964636803, -0.008998643606901169, 0.00522322254255414, -0.00664875004440546, -0.0160223376005888, -0.03596487641334534, -0.03753889352083206, 0.03249015286564827, -0.027678996324539185, -0.005264057777822018, 0.028154172003269196, -0.01371327880769968, -0.027634447440505028, 0.07121698558330536, -0.01826457306742668, 0.032252565026283264, 0.030648844316601753, -0.03213376924395561, 0.02466459758579731, -0.03263864293694496, 0.010565239004790783, 0.0005327167455106974, -0.08119568228721619, -0.06610884517431259, -0.00510071637108922, 0.030827036127448082, 0.00031044206116348505, 0.026223769411444664, -0.015294724144041538, -0.028941180557012558, 0.008894698694348335, -0.04983407258987427, -0.06509909778833389, -0.016928141936659813, -0.02692168392241001, 0.012072437442839146, -0.032727740705013275, -0.010854799300432205, 0.03344050422310829, -0.038637738674879074, 0.046329647302627563, -0.0010023241629824042, -0.005531344097107649, -0.026847437024116516, 0.04374587908387184, 0.010305376723408699, 0.024204270914196968, -0.009355025365948677, -0.0015600989572703838, 0.05517980083823204, -0.01863580383360386, 0.04392407089471817, -0.023550905287265778, -0.02497643232345581, -0.06901929527521133, -0.04033055528998375, -0.00890212319791317, 0.052180252969264984, -0.04436954855918884, -0.003138759406283498, 0.054288845509290695, -0.020788945257663727, -0.029965778812766075, -0.03314351662993431, -0.012413970194756985, 0.01585899479687214, -0.00029443271341733634, -0.04193427041172981, 0.04098391905426979, 0.020833492279052734, 0.015071985311806202, -0.024263668805360794, 0.013787525705993176, 0.0050858668982982635, 0.011084962636232376, 0.013282651081681252, -0.03474723547697067, -0.005653850734233856, -0.024931885302066803, 0.009496092796325684, -0.005913712549954653, 0.0005132270744070411, 0.001542465528473258, -0.04814125597476959, -0.017017235979437828, -0.006689585745334625, 0.014047387056052685, 0.024100327864289284, 0.011456193402409554, 0.016586609184741974, 0.02464974857866764, -0.039588090032339096, 0.013676156289875507, -0.022600553929805756, -0.057228997349739075, -0.024278517812490463, 0.006258957553654909, 0.008048291318118572, 0.02513977512717247, -0.02464974857866764, 0.022452060133218765, -0.011122086085379124, 0.02301633171737194, -0.004413938615471125, -0.01664600521326065, -0.0035712437238544226, 0.03676673397421837, 0.041221506893634796, -0.02597133256494999, 0.0089837945997715, -0.010245979763567448, -0.004254308994859457, 0.005858027841895819, 0.0026246043853461742, -0.02744140662252903, 0.02858479879796505, 0.0392020121216774, -0.006426011212170124, -0.016720252111554146, -0.007981469854712486, 0.03216346725821495, -0.014522562734782696, 0.05419975146651268, -0.009184258989989758, -0.003946187440305948, -0.003419039072468877, 0.0004522059462033212, -0.005401413422077894, -0.02724836766719818, -0.015168505720794201, -0.010981017723679543, 0.052002061158418655, -0.0006171718123368919, -0.03139130771160126, -0.014886369928717613, 0.013401445001363754, 0.01992768794298172, -0.05140808969736099, 0.008671959862112999, -0.023803342133760452, 0.018843693658709526, -0.01682419702410698, 0.037984371185302734, -0.012525339610874653, 0.02107108011841774, 0.026565302163362503, 0.012443668209016323, 0.008879849687218666, -0.019794045016169548, 0.004692361690104008, 0.01862095482647419, 0.015146231278777122, 0.011478467844426632, 0.011723480187356472, -0.0002953608054667711, -0.003465442918241024, 0.013431143015623093, 0.02448640763759613, 0.0003893286921083927, 0.009258504956960678, -0.02825811691582203, -0.007090514991432428, 0.01646781526505947, 0.020521659404039383, 0.011166633106768131, 0.01160468626767397, -0.040776029229164124, -0.006652462296187878, 0.03136160969734192, -0.0013187987497076392, -0.01249564066529274, -0.027025628834962845, 0.01827942207455635, 0.0011823712848126888, -0.018680352717638016, -0.009748530574142933, 0.021516557782888412, -0.021323518827557564, -0.027812639251351357, 0.0035044222604483366, -0.015383819118142128, 0.018873391672968864, 0.0012891002697870135, 0.033885981887578964, -0.040389951318502426, 0.0036492024082690477, 0.02105623111128807, 0.008360126055777073, 0.0012092854594811797, -0.005160113330930471, -0.02139776386320591, 0.01847246289253235, 0.004926237743347883, 0.014760150574147701, 0.03450964763760567, -0.010929045267403126, -0.035222411155700684, 0.03608366847038269, 0.004599553998559713, -0.010550389997661114, -0.030827036127448082, -0.012688681483268738, -0.026238618418574333, 0.0053717149421572685, 0.06878171116113663, -0.008211633190512657, -0.01945251226425171, -0.014426043257117271, -0.040568143129348755, 0.02873329259455204, -0.017180578783154488, 0.023951834067702293, 0.025347663089632988, 0.003255697200074792, 0.011047839187085629, 0.0036324970424175262, 0.025689195841550827, -0.033588994294404984, 0.04235005006194115, -0.01957130618393421, 0.02512492425739765, -0.03067854419350624, 0.02972819097340107, -0.013401445001363754, 0.026728643104434013, 0.04110271483659744, 0.03447994962334633, -0.02923816628754139, 0.05749628320336342, 0.036826130002737045, 0.009161985479295254, 0.016081733629107475, 0.012465942651033401, -0.010802826844155788, -0.049061909317970276, 0.00807056576013565, 0.014641356654465199, -0.007691909559071064, 0.001465435023419559, -0.03260894492268562, -0.02156110666692257, -0.016259925439953804, 0.0012148539535701275, 0.011886822059750557, 0.0036083669401705265, 0.04249854385852814, -0.017611205577850342, -0.0024649749975651503, -0.03180708736181259, 0.026550453156232834, -0.02463489957153797, 0.013193555176258087, -0.01076570339500904, 0.002856623847037554, -0.0034357444383203983, -0.017670603469014168, -0.058565426617860794, -0.013742977753281593, -0.010142035782337189, -0.043330103158950806, -0.008441796526312828, -0.023966683074831963, 0.0022348116617649794, 0.009028341621160507, -0.0026988505851477385, 0.016527211293578148, -0.013371746055781841, -0.03587577864527702, 0.008701658807694912, -0.013728128746151924, 0.032104071229696274, -0.017833944410085678, -0.0046775126829743385, -0.002030634554103017, -0.0013911888236179948, -0.025555552914738655, -0.03249015286564827, -0.03269803896546364, -0.012696105986833572, -0.03869713470339775, -0.014084510505199432, 0.032430753111839294, 0.014203304424881935, -0.004803731106221676, 0.05013105645775795, -0.006177286617457867, -0.02843630686402321, 0.008397248573601246, -0.004258021246641874, 0.01533927209675312, -0.03801406919956207, 0.0006366614252328873, -0.012599585577845573, 0.0037215924821794033, -0.012213504873216152, -0.05111110582947731, 0.0038236810360103846, -0.02889663353562355, -0.022986633703112602, -0.011738329194486141, -0.005189811810851097, 0.007116501219570637, -0.0385783426463604, 0.008605138398706913, 0.04947768896818161, 0.019511910155415535, 0.01232487428933382, -0.0015600989572703838, 0.015057136304676533, 0.006021369248628616, 0.016690552234649658, 0.020952286198735237, -0.002555926563218236, -0.006633901037275791, -0.014797274023294449, -0.01421072892844677, 0.031272511929273605, -0.004636677447706461, 0.05470462515950203, -0.0058134798891842365, 0.05482341721653938, 0.005906287580728531, 0.012124409899115562, 0.022986633703112602, -0.008352701552212238, 0.0015573147684335709, -0.023892438039183617, 0.01896248757839203, -0.016215376555919647, 0.02170959860086441, -0.00939957331866026, 0.01617082953453064, 0.0012176382588222623, -0.006117889657616615, 0.021783845499157906, -0.006270094309002161, 0.0007192603661678731, 0.025050679221749306, 0.012451093643903732, -0.0022663662675768137, -0.010557814501225948, -0.01046129409223795, -0.010869648307561874, 0.01078797783702612, -0.04748788848519325, -0.02745625749230385, -0.03626186028122902, -0.03816256299614906, -0.005019045434892178, -0.01945251226425171, -0.03658854216337204, -0.017358768731355667, 0.022466909140348434, -0.008723932318389416, -0.06509909778833389, -0.05939698591828346, 0.03938020020723343, -0.015517462976276875, -0.002693281974643469, -0.0020139289554208517, 0.03872683644294739, 0.03415326774120331, 0.014893794432282448, -0.027678996324539185, 0.01380979921668768, -0.06812833994626999, 0.018026985228061676, 0.0022589415311813354, -0.006711859256029129, 0.0045215957798063755, -0.011136935092508793, 0.016735101118683815, 0.006262669805437326, 0.062129247933626175, -0.035667888820171356, 0.018041834235191345, -0.011448768898844719, 0.029802437871694565, 0.004198624286800623, -0.013252952136099339, -0.015294724144041538, 0.02239266410470009, 0.028540251776576042, -0.011040414683520794, 0.005768932402133942, 0.02188778854906559, 0.0008524395525455475, 0.025718895718455315, -0.016853895038366318, 0.031242813915014267, 0.025540703907608986, -0.01646781526505947, 0.0034543059300631285, -0.010505842044949532, -0.009741106070578098, 0.00624782033264637, 0.02745625749230385, -0.01811608113348484, 0.016274774447083473, 0.00808541476726532, -0.004837141837924719, 0.006314642261713743, -0.014233002439141273, 0.04781457409262657, 0.011886822059750557, 0.01103299017995596, -0.00988959800451994, -0.017373617738485336, 0.014507713727653027, 0.017908191308379173, -0.05253663286566734, 0.00012308632722124457, 0.012740653939545155, 0.00970398262143135, -0.015903543680906296, -0.0032946765422821045, 0.01013461034744978, -0.0207295473664999, 0.0008529035840183496, 0.039291106164455414, 0.0033039574045687914, 0.009726256132125854, -0.021145327016711235, 0.012272901833057404, 0.002199544571340084, 0.011768028140068054, 0.02467944845557213, 0.0066042025573551655, 0.01749241165816784, 0.0032185742165893316, 0.016779648140072823, 0.007328103296458721, 0.01535412110388279, -0.04730970039963722, 0.006240395829081535, -0.042557939887046814, 0.0016519787022843957, 0.010439020581543446, -0.030827036127448082, -0.039409901946783066, -0.015651104971766472, -0.028466004878282547, 0.018427914008498192, -0.008538316935300827, 0.048260051757097244, -0.02512492425739765, -0.015799598768353462, -0.01584414578974247, 0.03462844341993332, 0.007432047743350267, -0.027708694338798523, 0.015094258822500706, 0.035667888820171356, -0.007005132269114256, 0.030827036127448082, 0.03427205979824066, -0.009221382439136505, 0.01314900815486908, 0.01192394457757473, -0.01046129409223795, 0.006767543964087963, -4.0603408706374466e-05, 0.0017930464819073677, 0.007569403387606144, -0.019348567351698875, 0.012532764114439487, -0.0002244788483949378, 0.006281231064349413, 0.03237135708332062, 0.005230647046118975, -0.00987474899739027, -0.020298920571804047, 0.005613015033304691, -0.002921589184552431, 0.0196010060608387, -0.030589448288083076, -0.026520755141973495, 0.009221382439136505, 0.03905351832509041, 0.030277613550424576, 0.031272511929273605, 0.03887532651424408, 0.02268964797258377, -0.016794497147202492, -0.0158292967826128, 0.05672411993145943, 0.009689133614301682, 0.029356960207223892, -0.011901671066880226, 0.0001683301234152168, -0.010966168716549873, -0.007380075287073851, -0.025436758995056152, -0.009444120340049267, -0.02712957374751568, -0.013282651081681252, 0.01780424639582634, -0.0050858668982982635, -0.023283619433641434, -0.013950866647064686, -0.023550905287265778, 0.0316585935652256, -0.01927432231605053, 0.019467361271381378, 0.009020917117595673, 0.007870100438594818, 0.01036477368324995, 0.05042804032564163, 0.012814899906516075, 0.02856994979083538, -0.05387306585907936, -0.006704434752464294, 0.020001934841275215, 0.0034580181818455458, 0.02270449697971344, 0.053635478019714355, 0.006051067728549242, 0.013876620680093765, -0.012065012939274311, -0.004094679839909077, -0.0598127655684948, -0.014522562734782696, 0.0006983786006458104, 0.013987990096211433, -0.012933693826198578, -0.02953515201807022, 0.02696623094379902, -0.005093291401863098, 0.01974949799478054, -0.005148976109921932, 0.03121311590075493, 0.005620440002530813, 0.010142035782337189, 0.032549548894166946, -0.006518819369375706, -0.040271155536174774, 0.005048743914812803, 0.03067854419350624, 0.00608819117769599, -0.020284071564674377, -0.018531858921051025, -0.01027567870914936, -0.022585703060030937, -0.0064519974403083324, 0.04478532820940018, -0.01810123212635517, -0.009748530574142933, 0.01793788932263851, -0.012399121187627316, -0.0016408417141065001, 0.017017235979437828, 0.02087804116308689, -0.033707790076732635, 0.02075924724340439, -0.03831105679273605, -0.009065465070307255, 0.013119309209287167, -0.035489700734615326, 0.007187035400420427, 0.024055778980255127, -0.017046935856342316, -0.010661759413778782, -0.035341206938028336, 0.025436758995056152, -0.03964748978614807, -0.021189874038100243, -0.0035062783863395452, -0.03854864463210106, 0.0023647425696253777, 0.001158241182565689, 0.020209824666380882, 0.026891985908150673, -0.025897085666656494, -0.014255276881158352, -0.01908128149807453, -0.01943766325712204, -0.020685000345110893, 0.011775452643632889, -0.0035044222604483366, 0.04683452472090721, -0.013022788800299168, -0.0035990860778838396, -0.06385175883769989, 0.0035285521298646927, -0.001987942960113287, 0.035222411155700684, -0.017017235979437828, -0.02055135741829872, 0.04125120863318443, -0.03379688411951065, 0.017076633870601654, 0.014344371855258942, 0.01421072892844677, -0.01299309078603983, -0.011857123114168644, -0.0016761086881160736, 0.003723448608070612, -0.0398256778717041, -0.02969849295914173, -0.011864547617733479, 0.028495704755187035, 0.027040477842092514, 0.011530440300703049, -0.00283806212246418, -0.02957969903945923, 0.02466459758579731, 0.03445025160908699, 0.0158292967826128, -0.008285879157483578, 0.045646585524082184, 0.016913291066884995, 0.02399638295173645, 0.021783845499157906, 0.009236231446266174, 0.00962973665446043, -0.02170959860086441, 0.02222932130098343, -0.011270578019320965, -0.013817223720252514, -0.01160468626767397, -0.009362449869513512, 0.014470590278506279, -0.010468718595802784, 0.030589448288083076, 0.0029846986290067434, 0.02009103074669838, 0.0014635788975283504, 0.03400477394461632, 0.000205801276024431, 0.011404220946133137, -0.04457743838429451, -0.0018292415188625455, -0.030262764543294907, -0.0210413821041584, -0.03005487471818924, -0.024085476994514465, 0.029297564178705215, 0.01356478687375784, -0.008939246647059917, -0.019868291914463043, 0.0012213505106046796, -0.0062218341045081615, 0.03302472457289696, -0.0500122606754303, -0.009213957004249096, 0.0027656720485538244, -0.004948511254042387, 0.011790301650762558, -0.0033002449199557304, 0.011871972121298313, 0.0009327182779088616, 0.03246045112609863, 0.008337851613759995, -0.014151331968605518, -0.022615402936935425, -0.005234359297901392, -0.0029234453104436398, 0.013772675767540932, -0.01911097951233387, -0.028005678206682205, 0.01859125681221485, -0.0024965296033769846, 0.002451981883496046, 0.025600101798772812, -0.012220930308103561, -0.0011879396624863148, 0.013304924592375755, 0.02628316543996334, 0.02368454821407795, -0.015383819118142128, 0.00456614326685667, -0.008137387223541737, 0.02790173329412937, 0.033084120601415634, 0.016735101118683815, 0.024946734309196472, 0.0149531913921237, 0.05764477327466011, -0.01893278956413269, 0.012109560891985893, 0.004354541655629873, 0.010869648307561874, -0.02185809053480625, 0.004473335575312376, 0.015472915023565292, -0.0040835426189005375, 0.03118341788649559, 0.020328618586063385, -0.006570791359990835, 0.010528115555644035, 0.010179158300161362, 0.005891438573598862, 0.003077506320551038, -0.01845761388540268, 0.01682419702410698, -0.002444557147100568, 0.0023016331251710653, 0.018427914008498192, 0.03293563053011894, -0.0048668403178453445, 0.006745270453393459, 0.02270449697971344, 0.024530954658985138, -0.021843241527676582, 0.071098193526268, 0.012547613121569157, 0.01845761388540268, 0.030500352382659912, 0.01584414578974247, -0.011136935092508793, -0.012762927450239658, 0.04235005006194115, 0.015472915023565292, 0.012658982537686825, -0.02107108011841774, -0.007127638440579176, 0.001299309078603983, 0.009614886716008186, 0.020343467593193054, -0.043181609362363815, -0.026001030579209328, 0.021338367834687233, -0.012844597920775414, -0.001090491539798677, 0.019066432490944862, -0.015086834318935871, 0.012696105986833572, 0.007361514028161764, -0.06171346828341484, -0.016215376555919647, 0.012027889490127563, -0.013356897048652172, -0.014589385129511356, 0.02696623094379902, 0.014723028056323528, 0.001545249717310071, 0.016913291066884995, 0.03801406919956207, 0.0010459438199177384, 0.006348052993416786, -0.027070175856351852, -0.009295628406107426, 0.013260377570986748, -0.012317449785768986, 0.009258504956960678, 0.01004551537334919, -0.036499448120594025, -0.012347148731350899, -0.011367098428308964, 0.001111837336793542, -0.013676156289875507, -0.022244172170758247, -0.031272511929273605, -0.003849667264148593, -0.032905928790569305, -0.015116533264517784, 0.007691909559071064, -0.0059990957379341125, 0.031124019995331764, 0.015279874205589294, 0.029267864301800728, 0.0451120100915432, 0.010646909475326538, 0.008894698694348335, 0.006192135624587536, -0.009755955077707767, -0.008426947519183159, 0.01453741267323494, -0.022749045863747597, -0.03070824220776558, -0.0005568467313423753, -0.03349990025162697, 0.039736583828926086, -0.04030085355043411, 0.035519398748874664, 0.028807537630200386, 0.01248079165816307, 0.04864613339304924, 0.03085673414170742, 0.015020012855529785, 0.004176350776106119, -0.0029902670066803694, 0.015636255964636803, -0.05713989958167076, -0.017759699374437332, 0.023090578615665436, -0.004781457595527172, 0.020462261512875557, -0.04941829293966293, -0.0012621859787032008, -0.010528115555644035, -0.019645553082227707, -0.030262764543294907, 0.011953643523156643, -0.005122989881783724, -0.008092839270830154, 0.0176557544618845, 0.01891794055700302, 0.014715603552758694, -0.013022788800299168, -0.02692168392241001, -0.0033410803880542517, -0.0016334170941263437, -0.0007559194345958531, 0.01648266427218914, 0.03317321836948395, -0.02696623094379902, -0.013126733712852001, -0.023224221542477608, -0.0003693750186357647, -0.026580151170492172, 0.019883140921592712, -0.012762927450239658, 0.013906319625675678, -0.015784749761223793, 0.019645553082227707, 0.010966168716549873, 0.018843693658709526, 0.027070175856351852, 0.028822386637330055, 0.01908128149807453, -0.03563819080591202, -0.015636255964636803, -0.03433145955204964, 0.021264120936393738, -0.013579635880887508, -0.017418166622519493, -0.028213568031787872, 0.0057912059128284454, 0.00494479900225997, 0.02678804099559784, -0.012198655866086483, 0.0031758826225996017, -0.006028794217854738, 0.01346826646476984, 0.008716507814824581, 0.04134030267596245, -0.012777776457369328, -0.014797274023294449, 0.025199171155691147, 0.005319742485880852, -0.0010839949827641249, 0.00570953544229269, 0.028941180557012558, -0.05636774003505707, 0.003203724976629019, 0.032757438719272614, -0.03088643215596676, 0.007109076716005802, -0.016586609184741974, -0.0024965296033769846, 0.012703530490398407, -0.011998191475868225, 0.01403996255248785, -0.030945830047130585, -0.008931822143495083, 0.013995414599776268, 0.021754145622253418, -0.005594453774392605, -0.026416810229420662, 0.0036640516482293606, -0.02435276471078396, -0.0245012566447258, 0.005913712549954653, 0.020521659404039383, -0.013342048041522503, -0.02955000102519989, -0.04784427210688591, 0.02484278939664364, -0.015933241695165634, 0.008850150741636753, 0.018056683242321014, 0.010594937019050121, 0.0044250753708183765, -0.009919296950101852, -0.016794497147202492, -0.01249564066529274, 0.019838593900203705, 0.03614306449890137, -0.03317321836948395, -0.0010329507058486342, 0.0027972268871963024, -0.0006361973937600851, -0.014804698526859283, 0.025585250928997993, 0.0005573107628151774, 0.024902187287807465, -0.000998611794784665, 0.0031350471545010805, 0.014262701384723186, -0.01830912008881569, -0.013408869504928589, 0.005319742485880852, 0.020967135205864906, 0.0039833104237914085, -0.018858542665839195, -0.017269672825932503, 0.03314351662993431, 0.033588994294404984, 0.03006972372531891, -0.013824648223817348, -0.003042239462956786, -0.02724836766719818, 0.0404493473470211, -0.01747756265103817, 0.003860804019495845, -0.023936985060572624, 0.01813093014061451, 0.004792594350874424, 0.020803794264793396, 0.004796306602656841, -0.014567110687494278, 0.0300251767039299, 0.040389951318502426, -0.007138775195926428, 0.014322098344564438, 0.016601458191871643, 0.027322612702846527, -0.000767984485719353, -0.025763442739844322, -0.017566658556461334, 0.02401123195886612, 0.025837689638137817, -0.03946929797530174, 0.005197236314415932, -0.012072437442839146, -0.012436243705451488, -0.036974623799324036, -0.030827036127448082, 0.017611205577850342, 0.04229065403342247, 0.0019582444801926613, -0.025911934673786163, -0.017061784863471985, 0.030233066529035568, -0.017076633870601654, -0.013995414599776268, 0.03679643198847771, -0.03447994962334633, -0.02301633171737194, -0.002340612467378378, -0.04508231207728386, 0.010654333978891373, -0.029119372367858887, -0.017729999497532845, 0.006466846913099289, 0.03183678537607193, 0.011515590362250805, 0.017893342301249504, -0.0018607962410897017, 0.01535412110388279, 0.014047387056052685, -0.016527211293578148, -0.01339402049779892, 0.028866935521364212, 0.007684485055506229, -0.00996384397149086, -0.01037219911813736, -0.01700238697230816, 0.007632512599229813, 0.0069160363636910915, 0.020046481862664223, -0.009763379581272602, 0.0032371357083320618, 0.02206598035991192, 0.00824133213609457, 0.02745625749230385, -0.010342500172555447, -0.02467944845557213, 0.019333718344569206, 0.030975528061389923, -0.005839466117322445, -0.03053005039691925, 0.004413938615471125, -0.006786105688661337, -0.012035313993692398, 0.010528115555644035, -0.018368517979979515, 0.03067854419350624, -0.015651104971766472, -0.0320446752011776, 0.010988442227244377, -0.017893342301249504, -0.019333718344569206, -0.016200527548789978, 0.013215829618275166, -0.0243082158267498, -0.00848634447902441, -0.004206049256026745, -0.004436212591826916, -0.011374522931873798, 0.007042255252599716, 0.04080573096871376, 0.04065723717212677, 0.0020380590576678514, 0.02254115603864193, -0.014789849519729614, 0.017715150490403175, -0.007246432360261679, -0.015175930224359035, -0.01683904603123665, -0.02466459758579731, 0.0028584799729287624, -0.0033707788679748774, 0.001677036751061678, -0.009236231446266174, 0.02105623111128807, -0.03400477394461632, 0.026520755141973495, 0.02758990041911602, -0.005122989881783724, 0.004800018854439259, 0.028480853885412216, 0.0011016285279765725, 0.030648844316601753, -0.004974497482180595, -0.0025949059054255486, -0.02040286548435688, -0.0003111381083726883, -0.0016918859910219908, 0.009184258989989758, 0.021947186440229416, -0.0007285411702468991, 0.018502160906791687, 0.047606684267520905, 0.018888240680098534, 0.02071469835937023, -0.03572728857398033, 0.01827942207455635, -0.026179222390055656, 0.007253856863826513, -0.029327262192964554, 0.017522111535072327, -0.00011310949776088819, -0.004562431015074253, -0.01747756265103817, 0.05357608199119568, -0.044488344341516495, 0.04543869569897652, -0.007346664555370808, -0.008308153599500656, 0.03691522777080536, 0.04395376890897751, -0.031599197536706924, -0.0080111688002944, 0.011634384281933308, -0.015725351870059967, 0.019794045016169548, -0.022645100951194763, 0.0369449257850647, 0.026847437024116516, 0.002414858667179942, -0.0026283166371285915, 0.011560138314962387, 0.042201559990644455, 0.015903543680906296, 0.017388466745615005, -0.016571758314967155, -0.0665840208530426, 0.025511005893349648, 0.02922331728041172, -0.00461440347135067, 0.002728549065068364, 0.01859125681221485, 0.006745270453393459, -0.022407513111829758, -0.025199171155691147, 0.02288268879055977, -0.03450964763760567, 0.023120276629924774, 0.0003396765096113086, 0.003582380712032318, -0.011574987322092056, 0.01631932146847248, 0.0017215844709426165, -0.02107108011841774, 0.003068225458264351, -0.00988959800451994, -0.012599585577845573, -0.04033055528998375, 0.0080111688002944, 0.014515138231217861, 0.0019953674636781216, -0.020298920571804047, 0.022763894870877266, 0.009926721453666687, 0.04701271280646324, 0.033885981887578964, 0.033084120601415634, -0.002411146415397525, -0.008761055767536163, -0.0022533731535077095, 0.006429723929613829]" -How Messari Uses Data to Open the Cryptoeconomy to Everyone,"that serve the live site, ourpublic API, our real-time data ingestion, the ingestion and calculation of asset metrics, and more.So far, I’ve mostly specialized in the ingestion of real-time market data – and that’s where TimescaleDB comes in!About the projectMuch of our website is completely free to use, but we haveProandEnterprisetiers that provide enhanced functionality. For example, our Enterprise version includesIntel, a real-time alerting mechanism that notifies users about important events in the crypto space (e.g., forks, hacks, protocol changes, etc.) as they occur.We collect and calculate a huge catalog ofcrypto-asset metrics, like price, volume, all-time cycle highs and lows, and detailed information about each currency. Handling these metrics uses a relatively low proportion of our compute resources, while real-time trade ingestion is a much more resource-intensive operation.Our crypto price data is currently calculated based on several thousand trades per second (ingested from partners, such asKaikoandGemini), as well as our own on-chain integrations withThe Graph. We also keep exhaustive historical data that goes as far back as the dawn of Bitcoin. (You can read more about the history of Bitcoinhere.)Messari dashboard, with data available atmessari.iofor freeOur data pipelines are the core of the quantitative portion of our product – and are therefore mission-critical.For our site to be visibly alive, the most important metric is our real-time volume-weighted average price (VWAP), although we calculate hundreds of other metrics on an hourly or daily basis. We power our real-time view through WebSocket connections to our back-end, and we keep the latest price data in memory to avoid having to make constant repeated database calls.Everything “historical” - i.e., even as recently as five minutes ago - makes a call to our time-series endpoint.Any cache misses there will hit the database, so it’s critical that the database is highly available.We use the price data to power the quantitative views that we display on our live site, and we also directly serve our data to API users. Much of what we display on our live site is regularly retrieved and cached by a backend-for-frontend GraphQL server, but some of it is also retrieved by HTTP calls or WebSocket connections from one or more Go microservices.The asset view of Messari dashboard, showing various price stats for a specific currency.The accuracy of our data is extremely important because it’s public-facing and",https://www.timescale.com/blog/how-messari-uses-data-to-open-the-cryptoeconomy-to-everyone/,500,"[0.0006554563879035413, -0.009942978620529175, 0.024327637627720833, 0.008839815855026245, 0.0539388433098793, -0.012091242708265781, -0.01672162301838398, 0.029016079381108284, -0.02136651799082756, -0.010726804845035076, 0.03596890717744827, -0.014994301833212376, -0.017069989815354347, -0.04668119549751282, 0.05791603773832321, 0.036433394998311996, -0.030307941138744354, 0.015836188569664955, -0.06148679926991463, 0.004300157073885202, 0.0374784991145134, 0.007413688115775585, -0.023587359115481377, 0.01849248819053173, 0.0019577506463974714, -0.0033058589324355125, -0.033994827419519424, 0.0011739246547222137, 0.010458271950483322, -0.06311251223087311, 0.025546923279762268, -0.03419804200530052, -0.013970973901450634, 0.002736133523285389, 0.021381033584475517, 0.007489893585443497, 0.04464905336499214, 0.01241057924926281, 0.014261279255151749, 0.0032840860076248646, -0.01763608679175377, -0.020626237615942955, -0.012367033399641514, 0.006963714025914669, -0.018187668174505234, -0.012889583595097065, -0.0681057721376419, -0.019247284159064293, 0.012497670948505402, 0.04926491901278496, -0.05980302393436432, 0.013789532706141472, -0.05240022391080856, -0.023311568424105644, 0.015778128057718277, -0.028391921892762184, -0.012207364663481712, 0.046594105660915375, -0.017882846295833588, -0.02736133523285389, 0.019711773842573166, -0.042036302387714386, 0.029001563787460327, 0.017316749319434166, -0.06212547421455383, 0.02525661699473858, 0.011771906167268753, 0.0418621189892292, -0.05614516884088516, 0.050948694348335266, 0.0495552234351635, 0.013237951323390007, 0.04322655498981476, -0.03109176643192768, 0.0012165633961558342, -0.048219818621873856, -0.011227582581341267, 0.02744842693209648, 0.0006486523780040443, -0.0048843976110219955, 0.002093831542879343, 0.008012443780899048, -0.04235563799738884, 0.0004025727102998644, 0.013448422774672508, -0.07333128154277802, -0.02490825019776821, -0.0027960091829299927, -0.01140176597982645, 0.045345790684223175, -0.047261808067560196, 0.019232768565416336, 0.02592432126402855, 0.005715398117899895, 0.007591500412672758, -0.000865928188432008, -0.021729400381445885, 0.000855041726026684, -0.010167965665459633, 0.009043030440807343, 0.02094557322561741, -0.02505340240895748, -0.004165890160948038, -0.017374811694025993, 0.04189114645123482, -0.016561955213546753, 0.04514257609844208, -0.023732511326670647, -0.01801348477602005, -0.028624165803194046, -0.08111148327589035, 0.003710472956299782, -0.022150343284010887, -0.027433911338448524, -0.0055448436178267, 0.015502337366342545, -0.0360269695520401, 0.01532815396785736, -0.026533963158726692, -0.011409023776650429, -0.012359775602817535, 0.030772430822253227, 0.017940906807780266, 0.010167965665459633, 0.015778128057718277, -0.012345260009169579, -0.025750137865543365, -0.013600833714008331, -0.010646970942616463, 0.0028649568557739258, 0.016649046912789345, -0.008440645411610603, 0.07199587672948837, 0.02084396779537201, -0.02596786618232727, 0.0075769852846860886, -0.050193898379802704, 0.0019668228924274445, -0.023268021643161774, -0.004434423521161079, 0.02352929674088955, -0.03991706669330597, 0.038262322545051575, 0.0025202184915542603, -0.04096217080950737, 0.024211516603827477, -0.03962676227092743, 0.0418621189892292, -0.04363298416137695, -0.053009867668151855, 0.035852786153554916, -0.03521411120891571, -0.022672895342111588, -0.035997938364744186, 0.03440125659108162, 0.04270400479435921, 0.04296528175473213, 0.044242627918720245, -0.024922765791416168, -0.03776880353689194, -0.02505340240895748, 0.0591353215277195, -0.03898808732628822, -0.01566200517117977, -0.03924936428666115, 0.03263038769364357, -0.05399690568447113, -0.046855378895998, -0.06438986212015152, -0.03277553990483284, -0.013136344030499458, -0.011699330061674118, -0.0030264395754784346, -0.015415245667099953, -0.004521515220403671, -0.053590476512908936, -0.001657465472817421, -0.03152722492814064, 0.05350338667631149, -0.035765692591667175, -0.0431104339659214, -0.002500260015949607, -0.004456196445971727, 0.018390880897641182, -0.017186112701892853, 0.030395032837986946, -0.0526905283331871, 0.07873097062110901, -0.018187668174505234, 0.0387268140912056, -0.022556772455573082, 0.07652464509010315, 0.05733542516827583, 0.03283360227942467, -0.020277870818972588, -0.022600317373871803, 0.020190779119729996, -0.008411615155637264, -0.012787977233529091, 0.0410202294588089, 0.06880251318216324, 0.017737694084644318, 0.05840955674648285, 0.019465014338493347, 0.026388810947537422, -0.006782272830605507, 0.012265426106750965, -0.017548995092511177, -0.036201152950525284, -0.028391921892762184, -0.005127528682351112, 0.020045625045895576, 0.00013721492723561823, 0.017171597108244896, -0.0395686998963356, -0.006872993428260088, -0.06084812805056572, -0.01209850050508976, -0.0006069208611734211, 0.018753763288259506, -0.007058063521981239, 0.0855821967124939, 0.006789530161768198, -0.0027125461492687464, -0.010828412137925625, 0.05716124176979065, 0.026867816224694252, -0.01118403673171997, 0.023485751822590828, -0.014224991202354431, 0.04104926064610481, 0.0028994306921958923, -0.008411615155637264, -0.006698809564113617, 0.0029266467317938805, -0.007816487923264503, -0.006085538305342197, -0.029349930584430695, 0.011844482272863388, -0.009950236417353153, 0.00604925025254488, -0.0009834114462137222, -0.02419700101017952, 0.020771389827132225, 0.009115606546401978, 0.006738726980984211, -0.017084505409002304, -0.050048746168613434, 0.023311568424105644, 0.07315710186958313, 0.02788388542830944, -0.015923282131552696, -0.012272683903574944, -0.026083989068865776, 0.0012401507701724768, -0.05155833438038826, -0.020205294713377953, 0.06346087902784348, -0.007087093777954578, 0.020466569811105728, -0.00795438326895237, -0.019319860264658928, -0.06549302488565445, -0.023326082155108452, -0.02448730729520321, 0.009659930132329464, 0.002179109025746584, -0.021831007674336433, -0.020713329315185547, -0.014682223089039326, 0.0456070639193058, 0.015255577862262726, 0.020161747932434082, -0.03573666140437126, -0.02730327472090721, -0.011096945032477379, 0.0175925400108099, 0.02094557322561741, -0.0001626166922505945, 0.0073665133677423, -0.00402436638250947, -0.043429769575595856, 0.01329601276665926, 0.02132297120988369, 0.010646970942616463, 0.004358218051493168, 0.03100467473268509, 0.02032141573727131, -0.0013898396864533424, -0.037884924560785294, 0.017810270190238953, 0.01705547422170639, 0.05036808177828789, -0.03779783472418785, 0.052632469683885574, 0.022672895342111588, 0.030336972326040268, -0.005203734152019024, -0.021061696112155914, -0.037101101130247116, 0.06468016654253006, -0.006793159060180187, 0.008919650688767433, -0.053880784660577774, 0.01599585823714733, 0.00936962477862835, 0.012947645038366318, 0.005319856572896242, -0.02257128804922104, -0.008368069306015968, 0.03286263346672058, 0.008926907554268837, 0.011329189874231815, -0.02284707874059677, -0.009224471636116505, 0.003984448965638876, 0.043574921786785126, -0.0374784991145134, 0.00705443462356925, -0.053213078528642654, -0.010509075596928596, -0.0947558581829071, -0.035475388169288635, 0.037449467927217484, -7.376719440799206e-05, -0.02673717774450779, 0.022934170439839363, -0.011924317106604576, 0.02142457850277424, -0.031207889318466187, 0.05187767371535301, -0.022963199764490128, 0.04244272783398628, 0.00838258396834135, -0.02309383824467659, -0.03530120477080345, 0.04052671045064926, -0.02396475523710251, -0.006677036639302969, -0.0028068956453353167, -0.0071959588676691055, -0.02965475246310234, -0.038639720529317856, -0.020872997120022774, 0.04514257609844208, 0.0026635569520294666, -0.01901504024863243, -0.015632975846529007, 0.02003110945224762, -0.00634681386873126, -0.018942462280392647, -0.021047180518507957, 0.012875068932771683, -0.007116124499589205, 0.01590876653790474, -0.020103687420487404, 0.002367807785049081, 0.014435463584959507, -0.056435476988554, 0.000737104972358793, -0.06055781990289688, -0.00348548567853868, 0.05335823446512222, -0.012367033399641514, 0.020335931330919266, 0.027012968435883522, -0.035620540380477905, -0.024661490693688393, -0.01169207226485014, -0.04676828905940056, 0.014377402141690254, 0.0057299137115478516, -0.010349406860768795, -0.028914472088217735, -0.03292069584131241, -0.027521003037691116, 0.02831934578716755, 0.040613800287246704, -0.0012492227833718061, 0.012113016098737717, 0.05155833438038826, 0.007417317014187574, 0.006637119688093662, 0.005472267046570778, 0.056319352239370346, 0.04682634770870209, 0.02017626352608204, 0.002081130864098668, -0.06781546771526337, -0.005933127831667662, 0.03422706946730614, -0.01859409548342228, -0.01339036226272583, -0.027521003037691116, -0.0044852267019450665, -0.02088751271367073, 0.036433394998311996, 0.013782274909317493, 0.04250079020857811, -0.0038030080031603575, 0.04299430921673775, -0.007446347735822201, -0.05437430366873741, -0.035823754966259, 0.03161431849002838, 0.023006746545433998, 0.02334059774875641, -0.012918614782392979, -0.0013145416742190719, -0.017810270190238953, 0.00960912648588419, -0.010748577304184437, 0.027317790314555168, -0.012758946046233177, 0.006466565188020468, -0.0397719144821167, 0.024080878123641014, 0.01950855925679207, 0.050135836005210876, 0.029146717861294746, 0.006245206575840712, -0.029872482642531395, -0.05605807900428772, 0.019914988428354263, -0.05083256959915161, 0.020582690834999084, 0.05640644580125809, -0.01222188025712967, -0.04949716478586197, -0.03358839824795723, -0.011938831768929958, 0.00031026446959003806, 0.005279939621686935, -0.0070653208531439304, -0.0033548481296747923, 0.007547954563051462, 0.018797310069203377, -0.002237170236185193, 0.0017608869820833206, -0.006139970850199461, -0.0021972530521452427, -0.02309383824467659, -0.037449467927217484, 0.04223951697349548, -0.01320166327059269, -0.0075987582094967365, -0.0005007777363061905, -0.046652164310216904, -0.006277866195887327, -0.03329809382557869, 0.04868430644273758, -0.0016075691673904657, -0.011779163964092731, 0.018390880897641182, -0.027898401021957397, -0.02688232995569706, 0.06357700377702713, -0.006074652075767517, 0.03135304152965546, 0.0031135312747210264, -0.021293941885232925, 0.04972941055893898, -0.0543452724814415, 0.013237951323390007, 0.026025928556919098, -0.05335823446512222, 0.0025020744651556015, -0.0076205311343073845, 0.038204263895750046, -0.017069989815354347, 0.019435983151197433, 0.004169519059360027, -0.01686677522957325, -0.0147330267354846, -0.024516336619853973, -0.021642308682203293, -0.0011512445053085685, -0.017766723409295082, 0.04244272783398628, -0.01701192930340767, 0.004626750946044922, 0.0026526704896241426, -0.05614516884088516, 0.05036808177828789, 0.013484710827469826, 0.04761017486453056, -0.0031824789475649595, 0.011321932077407837, 0.02011820301413536, -0.009340593591332436, -0.022730955854058266, 0.005417834967374802, 0.0639253705739975, -0.01767963171005249, 0.004383619874715805, 0.013470196165144444, -0.08447903394699097, -0.032601356506347656, -0.005650079343467951, -0.009739764966070652, 0.06200934946537018, -0.02505340240895748, 0.0011893471237272024, 0.037884924560785294, -0.023442205041646957, 0.006383101921528578, -0.028638681396842003, -0.006005704402923584, 0.023834118619561195, -0.010741320438683033, -0.028812864795327187, 0.013818562962114811, 0.02199067547917366, 0.024545367807149887, -0.031933654099702835, -0.0018298346549272537, 0.017998969182372093, 0.017839301377534866, -0.011517888866364956, -0.006419390439987183, -0.0006772293709218502, -0.03736237436532974, -0.005809747613966465, -0.025764653459191322, -0.011452569626271725, -0.017621571198105812, -0.044532932341098785, -0.03196268528699875, -0.012657339684665203, -0.03085952252149582, 0.02328253723680973, -0.030482124537229538, 0.003057284513488412, -0.0004497474292293191, -0.026998452842235565, 0.03338518366217613, -0.035852786153554916, -0.04752308502793312, -0.007700365036725998, 0.015095909126102924, 0.031120797619223595, 0.010001040063798428, -0.022687409073114395, 0.023834118619561195, -0.0005166538758203387, 0.008680148050189018, 0.006125455256551504, -0.03646242618560791, -0.010124419815838337, 0.03210783749818802, 0.044242627918720245, -0.009507520124316216, -0.00016329709615092725, -7.059197378112003e-05, -0.0005062209675088525, 0.02305029146373272, 0.016503892838954926, -0.03756558895111084, 0.006742355413734913, 0.010421983897686005, -0.0065282550640404224, 0.02107621170580387, 0.028928987681865692, 0.011075171642005444, -0.035823754966259, 0.0037993791047483683, 0.01188077125698328, -0.006114569026976824, -0.03483671322464943, 0.021932614967226982, 0.002837740583345294, -0.022876108065247536, 0.008244688622653484, 0.016881290823221207, 0.034139979630708694, 0.025517892092466354, -0.010117162019014359, -0.0017001042142510414, 0.003302230266854167, 0.03173043951392174, -0.04694247245788574, 0.0016901249764487147, -0.044242627918720245, 0.027898401021957397, -0.033559367060661316, 0.04882945865392685, -0.006804045755416155, 0.0456070639193058, 0.024167969822883606, -0.009028514847159386, -0.005849665030837059, -0.02051011472940445, 0.002356921322643757, -0.005036808084696531, 0.0013190776808187366, 0.023601872846484184, 0.0326884500682354, 0.014798345975577831, -0.023485751822590828, 0.023848634213209152, 0.02088751271367073, 0.008600314147770405, -0.011314674280583858, -0.0007788364309817553, -0.026519447565078735, 0.029596691951155663, 0.02098912000656128, -0.0003948614466935396, 0.04743599146604538, -0.031788501888513565, 0.007439089938998222, -0.013782274909317493, 0.002565578790381551, -0.03100467473268509, -0.02170036919414997, 0.020466569811105728, -0.026142051443457603, -0.0013481082860380411, -0.013354073278605938, -0.006466565188020468, -0.027970977127552032, -0.0418621189892292, 0.0006178073235787451, -0.030220849439501762, -0.013637121766805649, 0.022556772455573082, 0.007337482646107674, -0.05303889513015747, -0.025604983791708946, 0.03109176643192768, 0.00804873276501894, 0.014595131389796734, 0.036143090575933456, 0.002376880031079054, 0.010545363649725914, 0.013041994534432888, 0.029190262779593468, 0.04075895622372627, -0.023543812334537506, -0.03756558895111084, 0.008556767366826534, 0.03042406402528286, -0.012062212452292442, -0.027825824916362762, 0.015400730073451996, -0.053009867668151855, -0.006615346763283014, 0.04363298416137695, -0.008752724155783653, -0.024182485416531563, 0.0019250912591814995, -0.01190980151295662, 0.059919148683547974, -0.005628306418657303, 0.003082686336711049, -0.002768792910501361, -0.040700893849134445, 0.0153571842238307, -0.0026653714012354612, 0.04174599424004555, -0.012766203843057156, 0.009536550380289555, -0.02136651799082756, 0.01888440176844597, -0.02471955120563507, 0.03129498288035393, 0.01521203201264143, 0.007547954563051462, 0.05382272228598595, 0.05112287774682045, -0.030162787064909935, 0.06369312852621078, 0.02376154251396656, 0.040787987411022186, 0.024705035611987114, 0.0048154499381780624, 0.02111975848674774, -0.04238466918468475, -0.014812860637903214, 0.04731987044215202, -0.042094361037015915, 0.0043908776715397835, -0.06897669285535812, -0.0167651679366827, -0.007794714532792568, -0.013731471262872219, -0.001215656171552837, 0.03382064402103424, 0.04406844452023506, 0.008919650688767433, -0.0020593577064573765, 0.02021980844438076, 0.03085952252149582, -0.007439089938998222, -0.02003110945224762, -0.00196500844322145, 0.020611722022294998, 0.037159159779548645, -0.009188183583319187, 0.025169525295495987, 0.007787457201629877, -0.02065526880323887, -0.03803008049726486, -0.0314401350915432, -0.02511146478354931, 0.015037847682833672, 0.023398660123348236, 0.001638414221815765, 0.017926393076777458, -0.030685339123010635, -0.045403849333524704, 0.024472791701555252, -0.021482640877366066, 0.030598247423768044, -0.002335148397833109, 0.008723693899810314, -0.018942462280392647, 0.012969418428838253, -0.036288242787122726, -0.022440649569034576, -0.05187767371535301, 0.021352002397179604, -0.04763920605182648, -0.03689788654446602, 0.024617943912744522, -0.010734062641859055, 0.012969418428838253, 0.04993262141942978, 0.017621571198105812, -0.044968392699956894, 0.022600317373871803, -0.008992226794362068, -0.004296528175473213, -0.01892794854938984, 0.016024887561798096, -0.0324852354824543, -0.0026435984764248133, -0.020974604412913322, -0.04334267973899841, 0.006600831635296345, -0.0335303358733654, 0.0014760242775082588, -0.03895905986428261, -0.005163817200809717, 0.0037449467927217484, -0.03448834642767906, 0.01055987924337387, 0.005875066388398409, 0.0345754399895668, -0.02051011472940445, -0.003977191634476185, 0.014428205788135529, 0.015342669561505318, 0.0071778143756091595, -0.0025038886815309525, -0.024138938635587692, -0.0017754023429006338, -5.366691038943827e-05, 0.0034401253797113895, 0.01648937724530697, 0.0006119104800745845, 0.02773873321712017, -0.0017853815807029605, 0.04763920605182648, 0.0006069208611734211, 0.010472786612808704, -0.011234840378165245, 0.013615349307656288, 0.013491968624293804, -0.028493529185652733, -0.017186112701892853, -0.0035907216370105743, 0.021932614967226982, -0.00267807231284678, 0.029190262779593468, -0.018811825662851334, -0.009725249372422695, -0.008339038118720055, 0.015560398809611797, -0.0153571842238307, 0.03051115572452545, -0.014290310442447662, 0.007852775976061821, -0.032223958522081375, 0.0010478229960426688, 0.0345754399895668, 0.013869366608560085, -0.016315193846821785, -0.021453609690070152, -0.016445832327008247, -0.026316234841942787, -0.019624682143330574, -0.03483671322464943, -0.017955422401428223, 0.002184552140533924, 0.002295231446623802, 0.014537069946527481, -0.08302750438451767, -0.0339367650449276, 0.06195129081606865, -0.018811825662851334, -0.0005892303306609392, -0.020248839631676674, 0.009906690567731857, -0.008273719809949398, 0.02471955120563507, -0.007482635788619518, 0.0209310594946146, -0.032456204295158386, -0.010538105852901936, -2.965429848700296e-05, -0.014065323397517204, 0.011641268618404865, -0.01281700748950243, 0.03579472377896309, 0.028783835470676422, 0.03654951974749565, -0.019914988428354263, 0.03181753307580948, -0.019682742655277252, 0.04682634770870209, 0.01897149346768856, -0.032456204295158386, -0.02620011195540428, 0.046071555465459824, 0.02284707874059677, -0.018071545287966728, 0.008905135095119476, 0.02170036919414997, 0.02122136391699314, 0.015691036358475685, -0.002923018066212535, 0.022353557869791985, -0.013455680571496487, 0.01362986396998167, 0.03855263069272041, 0.006172630004584789, -0.02286159247159958, -0.03698497638106346, 0.05141318216919899, 0.014319340698421001, 0.05179058015346527, 0.0032096952199935913, -0.008317265659570694, 0.016924837604165077, -0.015197516418993473, -0.007402801886200905, 0.017171597108244896, 0.017505448311567307, 0.0055266995914280415, -0.022701924666762352, -0.012809749692678452, 0.04162987321615219, -0.029727328568696976, -0.013709698803722858, 0.0004989633453078568, -0.007613273337483406, -0.032078806310892105, 0.015386215411126614, -0.0013217992382124066, -0.055274251848459244, -0.005820634309202433, 0.024080878123641014, 0.0014097982784733176, 0.031556256115436554, 0.009289789944887161, 0.025401771068572998, 0.00606013648211956, 0.03472059220075607, 0.03573666140437126, -0.020539145916700363, 0.017215142026543617, 0.028333861380815506, 0.009456716477870941, -0.01341939251869917, 0.006274237297475338, -0.05544843524694443, 0.017984453588724136, -0.04502645134925842, -0.03271748125553131, 0.0135355144739151, -0.03277553990483284, 0.00878901220858097, -0.011445311829447746, -0.021874552592635155, 0.028493529185652733, -0.015734583139419556, 0.016634531319141388, -0.043197523802518845, 0.003249612171202898, -0.0060637653805315495, 0.04241370037198067, 0.012359775602817535, 0.025938836857676506, 0.012229138053953648, 0.018129605799913406, -0.010930018499493599, 0.04842303320765495, -0.028101615607738495, 0.035852786153554916, 0.0034455687273293734, 0.006593573838472366, -0.015400730073451996, -0.02127942629158497, -0.002681701211258769, 0.011568691581487656, 0.01950855925679207, -0.012388805858790874, 0.010792123153805733, 0.014471751637756824, 0.02471955120563507, 0.028566105291247368, -0.0026581138372421265, -0.006626233458518982, 0.005719027016311884, -0.013114571571350098, -0.021627793088555336, 0.009899432770907879, -0.02223743498325348, -0.01926179975271225, 0.013303269632160664, 0.003966304939240217, 0.005261795129626989, 0.028391921892762184, 0.017171597108244896, 0.0294660534709692, -0.04279109835624695, -0.012178334407508373, 0.05724833160638809, 0.003988077864050865, 0.05324210971593857, 8.612787496531382e-05, -0.004234837833791971, 0.012737173587083817, -0.005011406261473894, 0.022310012951493263, -0.004655781667679548, -0.03094661422073841, 0.021308455616235733, 0.008201142773032188, -0.012308971956372261, 0.006150857079774141, -0.006212547421455383, -0.012758946046233177, 0.0026435984764248133, -0.014464493840932846, 0.0031988087575882673, 0.025024373084306717, -0.010291345417499542, -0.018245728686451912, 0.02132297120988369, -0.0004753760003950447, 0.05150027573108673, -0.07890515774488449, 0.0013199849054217339, -0.009326078929007053, -0.0026526704896241426, 0.01805702969431877, 0.05640644580125809, -0.0028304830193519592, -0.016358740627765656, 0.008585798554122448, -0.03968482464551926, -0.04403941333293915, -0.016707107424736023, -0.009667187929153442, 0.02559047006070614, 0.01090098824352026, -0.00105689512565732, 0.028391921892762184, -0.007700365036725998, 0.05974496528506279, 0.02903059497475624, 0.008469675667583942, 0.004492484498769045, 0.025982381775975227, 0.02865319699048996, -0.012374291196465492, -0.049758438020944595, 0.021714884787797928, 0.035910844802856445, 0.02621462754905224, -0.0018053400563076138, -0.025706591084599495, 0.007700365036725998, -0.0052871969528496265, -0.015444276854395866, 0.016924837604165077, 0.01888440176844597, -0.008926907554268837, 0.048364970833063126, -0.007671334780752659, -0.0033530336804687977, 0.024806642904877663, 0.005298083648085594, -0.04145568981766701, 0.030598247423768044, -0.033559367060661316, 0.009093834087252617, 0.016111979261040688, -0.042326606810092926, -0.021410062909126282, 0.022005191072821617, -0.03213686868548393, 0.013491968624293804, 0.019465014338493347, 0.02107621170580387, -0.028232254087924957, -0.0076423040591180325, -0.017171597108244896, -0.011394508183002472, 0.0030336971394717693, -0.015937795862555504, 0.019856926053762436, 0.018419912084937096, 0.0005769830895587802, -0.04020737484097481, -0.01753447949886322, -0.023151898756623268, -0.0008495984948240221, 0.0032477977219969034, -0.028232254087924957, 0.04819078743457794, 0.011082429438829422, 0.004913428332656622, 0.004416279029101133, 0.0084841912612319, 0.008818043395876884, 0.017810270190238953, -0.004191291984170675, -0.013927428051829338, 0.04035252705216408, -0.0036651126574724913, 0.012468640692532063, 0.021598761901259422, 0.014537069946527481, 0.007932609878480434, 0.017142565920948982, -0.005882324185222387, -0.01476205699145794, -0.03951064124703407, -0.0031879222951829433, 0.004289270378649235, 0.014878179877996445, 0.05303889513015747, 0.027245212346315384, 0.01341939251869917, 0.006139970850199461, 0.02482115849852562, 0.02194712869822979, 0.027317790314555168, 0.007700365036725998, 0.0185360349714756, 0.02950960025191307, 0.01595231145620346, -0.03196268528699875, -0.02635977976024151, 0.025213072076439857, 0.005787974689155817, 0.002801452297717333, 0.007751168683171272, -0.009318821132183075, 0.006905652582645416, -0.02875480428338051, 0.00585692236199975, 0.013934685848653316, 0.015879735350608826, -0.0076205311343073845, 0.009725249372422695, -0.009427685290575027, -0.010763092897832394, -0.01341213472187519, 0.03448834642767906, -0.051645427942276, -0.01619907096028328, -0.026954907923936844, -0.003411094890907407, -0.03593987599015236, -0.010269572958350182, -0.007794714532792568, -0.013114571571350098, 0.015110424719750881, -0.007823745720088482, 0.005896839778870344, -0.03114982880651951, 0.010850184597074986, -0.01988595724105835, -0.010102647356688976, 0.02678072452545166, -0.008397099561989307, 0.00032069734879769385, -0.020060140639543533, 0.012258168309926987, 0.002104718005284667, 0.003995335660874844, -0.008745466358959675, -0.020248839631676674, -0.0018171337433159351, 0.005388804245740175, 0.006825818680226803, 0.03173043951392174, -0.004604978021234274, -0.04104926064610481, 0.028479013592004776, 0.0010795752750709653, -0.005298083648085594, 0.04842303320765495, 0.010472786612808704, 0.02615656517446041, 0.007889064028859138, 0.03785589709877968, 0.01492172572761774, 0.013368588872253895, 0.016271648928523064, 0.010030070319771767, 0.03550441563129425, 0.035388294607400894, 0.036636609584093094, 0.011300158686935902, 0.003180664498358965, 0.041571810841560364, 0.009551065973937511, 0.024269577115774155, 0.01152514573186636, 0.008077763020992279, -0.007439089938998222, 0.012200107797980309, 0.018042514100670815, -0.0022498711477965117, 0.0032096952199935913, 0.029451537877321243, -0.020350446924567223, -0.0017581654246896505, -0.0005842407117597759, -0.018507003784179688, -0.008919650688767433, -0.02477761171758175, 0.016707107424736023, -0.004666667897254229, 0.010044585913419724, -0.0009258037898689508, 0.015632975846529007, -0.005091240629553795, 0.0362301804125309, 0.04647798091173172, 0.010255057364702225, -0.003447383176535368, 0.06723485887050629, 0.026374295353889465, 0.01638776995241642, 0.006034734658896923, -0.014101611450314522, -0.012773461639881134, -0.008005186915397644, 0.008723693899810314, -0.009253501892089844, 0.012679112143814564, -0.033994827419519424, -0.01830378919839859, -0.0019287201575934887, 0.011938831768929958, 0.012918614782392979, -0.030307941138744354, -0.0004998705699108541, -0.005221878178417683, -0.02126491069793701, 0.009863144718110561, 0.012374291196465492, -0.014457236044108868, -0.002099274890497327, -0.0034873001277446747, -0.0345754399895668, -0.008629344403743744, 0.007123382296413183, -0.001745464513078332, 0.0040388815104961395, 0.019087616354227066, 0.01502333302050829, 0.001937792170792818, 0.013542772270739079, 0.04708762466907501, 0.018274759873747826, 0.011960605159401894, -0.04569415748119354, 0.01029860321432352, 0.019435983151197433, -0.01715708151459694, 0.01940695196390152, 0.011445311829447746, -0.05353241786360741, -0.012047696858644485, -0.018797310069203377, 0.014166930690407753, 0.003340332768857479, -0.020960088819265366, -0.01950855925679207, -0.011067913845181465, -0.02471955120563507, 0.010327634401619434, 0.015560398809611797, -0.00012326662545092404, 0.0251985564827919, 0.030888553708791733, 0.013230693526566029, 0.03300778567790985, 0.01040021050721407, 0.01648937724530697, 0.008607571013271809, 0.013520999811589718, -0.009347851388156414, 0.009616384282708168, -0.012780719436705112, -0.012345260009169579, 0.01121306698769331, -0.02357284352183342, 0.01945049874484539, -0.06409955024719238, 0.017737694084644318, 0.009311563335359097, 0.009093834087252617, 0.009739764966070652, 0.04296528175473213, 0.011256612837314606, -0.014965271577239037, 0.0017445572884753346, -0.010472786612808704, -0.03948161005973816, -0.033414214849472046, 0.0370720699429512, -0.00735562713816762, 0.02286159247159958, -0.04763920605182648, -0.014493524096906185, -0.005214620381593704, 0.001937792170792818, -0.027433911338448524, 0.0028576990589499474, 0.002788751618936658, -0.00656454311683774, 0.0033983939792960882, 0.02107621170580387, -0.0009212677832692862, -0.002092017326503992, -0.03315293788909912, 0.008230173960328102, 0.01715708151459694, -0.032311052083969116, 0.013731471262872219, 0.03292069584131241, -0.008564025163650513, -0.003636081935837865, 0.003238725708797574, 0.014769314788281918, -0.013593575917184353, 0.006760499905794859, -0.007518923841416836, 0.0017899175873026252, -0.021308455616235733, 0.015313638374209404, 0.011917059309780598, 0.015647491440176964, 0.025227587670087814, 0.01331778522580862, -0.001075946376658976, -0.012751689180731773, -0.025663046166300774, -0.019334375858306885, 0.020292386412620544, 0.009819598868489265, -0.033123910427093506, -0.025082433596253395, 0.004728358238935471, 0.013027478940784931, 0.02615656517446041, 0.0024748581927269697, -0.02161327749490738, -0.006256093271076679, 0.02132297120988369, 0.009057545103132725, 0.04241370037198067, 0.00929704774171114, 0.0012011408107355237, 0.019958533346652985, -0.00889061950147152, 0.004844480659812689, 0.03199171647429466, 0.010538105852901936, -0.01778123900294304, 0.007010888773947954, 0.01691032201051712, -0.0023206332698464394, 0.020379478111863136, 0.0006717860815115273, -0.0035471757873892784, 0.03019181825220585, 0.011409023776650429, -0.008564025163650513, -0.0288418959826231, -0.012062212452292442, 0.037972018122673035, 0.014493524096906185, 0.010509075596928596, -0.0351850800216198, 0.026171080768108368, -0.013071025721728802, -0.005094869527965784, -0.006299639120697975, -0.011205809190869331, -0.02194712869822979, -0.042762067168951035, -0.04308140277862549, 0.026040444150567055, -0.02376154251396656, -0.006314154248684645, -0.00012757585500366986, -0.0015821674605831504, -0.006920168176293373, 0.0012328930897638202, -0.035910844802856445, 0.015284608118236065, -0.0051529305055737495, 0.02831934578716755, 0.011060656979680061, -0.023006746545433998, 0.00836081150919199, -0.007932609878480434, -0.026606539264321327, 0.00889061950147152, -0.00534162949770689, 0.01695386692881584, 0.0036324532702565193, 0.014348371885716915, 0.01492172572761774, -0.026374295353889465, -0.0010559879010543227, -0.01796993799507618, 6.928786751814187e-05, 0.029045110568404198, -0.024734066799283028, -0.017403841018676758, 0.037101101130247116, 0.030162787064909935, 0.011568691581487656, 0.006869364529848099, -0.0014596945839002728, -0.04900364205241203, 0.004456196445971727, -0.03564957156777382, 0.004452567547559738, -0.021293941885232925, 0.008244688622653484, 0.006027477327734232, 0.04354589059948921, -0.01599585823714733, 0.005025921855121851, 0.010864700190722942, 0.023268021643161774, 0.00636132899671793, -0.0026544849388301373, 0.011779163964092731, 0.03823329508304596, 0.023587359115481377, 0.004706585314124823, 0.007468120660632849, 0.033123910427093506, 0.009072060696780682, -0.044010382145643234, 0.019682742655277252, -0.011590464971959591, -0.010596167296171188, -0.03129498288035393, -0.005871437955647707, 0.016271648928523064, 0.043197523802518845, -0.0056391931138932705, -0.0010242356220260262, -0.00443079462274909, -0.012149304151535034, -0.02990151196718216, -0.005254537798464298, 0.028043555095791817, 0.019900472834706306, -0.020060140639543533, -0.009572838433086872, -0.032165899872779846, 0.030540185049176216, -0.005944014061242342, -0.010842926800251007, -0.016271648928523064, 0.0022063252981752157, 0.010857442393898964, 0.033269062638282776, -0.025242101401090622, 0.01763608679175377, -0.00026422378141433, -0.016213586553931236, -0.010516333393752575, -0.012490413151681423, 0.017461903393268585, 0.00044997420627623796, -0.02860965020954609, -0.017563510686159134, 0.023921210318803787, 0.01686677522957325, 0.002066615503281355, 0.0023315197322517633, 0.0065064821392297745, 0.010770350694656372, 0.011009853333234787, 0.021337486803531647, -0.008426129817962646, -0.004343702923506498, 0.007014517672359943, 0.017839301377534866, -0.007707622833549976, -0.029262838885188103, 0.04885848984122276, -0.0045759472995996475, 0.009942978620529175, 0.0221793744713068, -0.00747537799179554, 0.015284608118236065, -0.012512186542153358, -0.003795750206336379, 0.01811509020626545, -0.0015785385621711612, -0.002627268899232149, -0.0012564804637804627, 0.002440384356305003, -0.03541732579469681, -0.00977605301886797, 0.006825818680226803, -0.018898917362093925, -0.016750652343034744, 0.012432352639734745, 0.021526185795664787, 0.024458276107907295, 0.017505448311567307, 0.0006708789151161909, -0.009101091884076595, 0.006902023684233427, -0.008186628110706806, -0.00505495211109519, 0.010102647356688976, 0.02784034051001072, 0.0153571842238307, -0.02357284352183342, -0.0034673416521400213, -0.015241062268614769, 0.004895283840596676, -0.00584603613242507, 0.014058065600693226, -0.002505703130736947, -0.0017227843636646867, 0.013934685848653316, 0.03593987599015236, 0.01657646894454956, 0.005686367861926556, -0.001402540598064661, -0.005671852268278599, -0.001169388648122549, 0.016329709440469742, -0.005791603587567806, -0.011350962333381176, 0.04241370037198067, 0.01720062829554081, 0.03416901081800461, 0.025358224287629128, -0.00967444572597742, 0.025793682783842087, -0.001142172492109239, 0.04531675949692726, -0.009659930132329464, 0.018274759873747826, -0.02190358377993107, -0.002409539418295026, -0.007990671321749687, 0.015589429065585136, -0.01303473673760891, 0.03472059220075607, -0.037391405552625656, 0.05240022391080856, -0.024980826303362846, 0.0021119758021086454, 0.03794298693537712, 0.015183000825345516, -0.025184040889143944, -0.01901504024863243, 0.01485640648752451, -0.018869886174798012, -0.01926179975271225, -0.012533959001302719, 0.0239502415060997, 0.007072578649967909, 0.01010990422219038, -0.013274239376187325, 0.0023424061946570873, 0.01786833070218563, 0.048655275255441666, -0.004506999626755714, -0.020161747932434082, -0.046652164310216904, -0.003334889654070139, 0.02286159247159958, 0.01147434301674366, -0.0028649568557739258, 0.008418872021138668, 0.024937281385064125, -0.005120271351188421, -0.03396579623222351, 0.021714884787797928, -0.02836289070546627, 0.009935720823705196, 0.02174391597509384, -0.00907931849360466, -0.037972018122673035, -0.002525661839172244, -0.0043908776715397835, -0.017128050327301025, 0.00946397427469492, -0.03187559172511101, 0.004695698618888855, -0.01554588321596384, 0.007181443274021149, 0.0028976162429898977, -0.0013671595370396972, -0.014798345975577831, 0.032949723303318024, 0.0345754399895668, 0.049613285809755325, 0.011387250386178493, 0.03501089662313461, -0.019392436370253563, 0.022876108065247536, 0.016649046912789345, 0.006836704909801483]" -How Messari Uses Data to Open the Cryptoeconomy to Everyone,"used to help our users make decisions. And, just like the rest of the crypto space, we are also scaling quickly, both in terms of our business and the amount of data we ingest.Choosing (and using!) TimescaleDBWe’re wrapping up a complete transition to TimescaleDB fromInfluxDB. It would be reasonable to say that we used InfluxDB until it fell over; we asked it to do a huge amount of ingestion and continuous aggregation, not to mention queries around the clock, to support the myriad requests our users can make.Over time, we pushed it enough that it became less stable, so eventually, it became clear that InfluxDB wasn’t going to scale with us. Thus,Kevin Pyc(who served as the entire back-end “team” until earlier this year) became interested in TimescaleDB as a possible alternative.The pure PostgreSQL interface and impressive performance characteristics sold him on TimescaleDB as a good option for us.From there, the entire tech group convened and agreed to try TimescaleDB. We were aware of its performance claims but needed to test it out for ourselves, for our exact use case. I began by reimplementing our real-time trade ingestion database adapter on TimescaleDB – and on every test, TimescaleDB blew my expectations out of the water.The most significant aspects of our system are INSERT and SELECT performance.INSERTs of real-time trade data are constant, 24/7, and rarely dip below 2,000 rows per second. At peak times, they can exceed 4,500—and, of course, we expect this number to continually increase as the industry continues to grow and we see more and more trades.SELECT performance impacts our APIs’ response time for anything we haven’t cached; we briefly cache many of the queries needed for the live site, but less common queries end up hitting the database.When we tested these with TimescaleDB, both of our SELECT and INSERT performance results flatly outperformed InfluxDB. In testing, even thoughTimescale Cloudis currently only located in us-east-1 and most of our infrastructure is in an us-west region, we saw an average of ~40ms improvement in both types of queries. Plus, we could batch-insert 500 rows of data, instead of 100, with no discernible drop in execution time relative to InfluxDB.These impressive performance benchmarks, combined with the fact that we can use Postgres with foreign key relationships to derive new datasets from our existing ones",https://www.timescale.com/blog/how-messari-uses-data-to-open-the-cryptoeconomy-to-everyone/,506,"[-0.003942141309380531, -0.01668502949178219, 0.05345139652490616, -0.00600755400955677, 0.07455701380968094, 0.017439763993024826, -0.007978624664247036, 0.027844322845339775, -0.012008369900286198, 0.00617265235632658, 0.026173124089837074, -0.004949577618390322, -0.015256424434483051, -0.029272926971316338, 0.054125264286994934, 0.028383418917655945, -0.0050068567506968975, -0.029542475938796997, -0.055850375443696976, 0.021321257576346397, -0.009353320114314556, 0.028086915612220764, 0.02601139433681965, 0.01130080595612526, -0.017857564613223076, -0.008982691913843155, -0.02876078523695469, 0.027130020782351494, 0.01136145368218422, -0.07919324189424515, 4.803958654520102e-05, -0.04080958664417267, -0.0603787824511528, -0.001242448459379375, 0.026712220162153244, 0.0037366109900176525, 0.027898231521248817, 0.02690090425312519, 0.011590570211410522, -0.01580899767577648, -0.042453832924366, 0.031968407332897186, -0.00011813789751613513, 0.0246636550873518, -0.030836306512355804, 0.004814803600311279, -0.04140259325504303, -0.023787623271346092, 0.0003318811359349638, 0.06932777911424637, -0.046739645302295685, 0.025782279670238495, -0.04576927423477173, -0.03188754618167877, 0.05326271057128906, -0.013120255433022976, -0.005040550138801336, 0.020283497869968414, 0.015674224123358727, -0.025121886283159256, 0.01951528526842594, -0.07638993859291077, 0.04447544366121292, 0.008672711439430714, -0.024407584220170975, 0.010222612880170345, -0.009009646251797676, 0.07568911463022232, -0.03609249368309975, 0.0447719469666481, 0.04086349904537201, 0.016402004286646843, -0.006913909688591957, -0.0012913040118291974, 0.025094931945204735, -0.04722483456134796, -0.02528361603617668, 0.051672376692295074, 0.006236670073121786, -0.003955618944019079, 0.0051011983305215836, 0.010936915874481201, -0.03886884078383446, 0.03927316516637802, 0.016604164615273476, -0.03180668130517006, 0.0017208963399752975, -0.013827819377183914, 0.03202231973409653, 0.0017840716755017638, -0.025566641241312027, 0.03458302468061447, 0.012850707396864891, 0.007419312372803688, 0.01568770222365856, 0.015674224123358727, 0.00377367390319705, 0.005128153134137392, -0.01095713209360838, 0.04417894035577774, 0.023935874924063683, -0.008201002143323421, -0.003423261223360896, 0.008996169082820415, 0.03727850690484047, 0.021159527823328972, 0.02390892058610916, -0.001196119817905128, 0.011455795727670193, 0.044610217213630676, -0.04118695482611656, 0.02304636500775814, -0.03946184739470482, -0.0020755205769091845, -0.02567446045577526, -0.0034535855520516634, -0.013686306774616241, 0.0029128044843673706, -0.0082212183624506, -0.007715815212577581, -0.015404676087200642, 0.013895206153392792, -0.016415482386946678, 0.01683328114449978, 0.023787623271346092, -0.020822593942284584, 0.016954578459262848, -0.036308132112026215, -0.053586170077323914, -0.006873477250337601, 0.03396306559443474, -0.01987917535007, 0.03013548254966736, 0.0004801326140295714, -0.04242687672376633, -0.00393877224996686, -0.08215827494859695, -0.006213084328919649, -0.026469627395272255, -0.0271704513579607, -0.00787754449993372, -0.042965974658727646, 0.03571512922644615, -0.02328895963728428, -0.06253516674041748, 0.03471779823303223, -0.02770954929292202, 0.045957956463098526, -0.011192986741662025, -0.017075873911380768, -0.015108172781765461, 0.004012898076325655, -0.017776699736714363, -0.038006287068128586, 0.044852808117866516, 0.016307663172483444, 0.025957485660910606, 0.038033243268728256, 0.008800746873021126, -0.03814106062054634, -0.008329037576913834, 0.04989336058497429, -0.0067589194513857365, 0.0003072427643928677, -0.01131428312510252, -0.002065412700176239, -0.031402356922626495, -0.06620102375745773, -0.08857351541519165, 0.004548624623566866, 0.008551415055990219, -0.03646986186504364, -0.01479819230735302, 0.027062632143497467, 0.03239968419075012, -0.0031570824794471264, -0.037440236657857895, -0.0493273101747036, 0.051429785788059235, -0.03102499060332775, -0.06851913779973984, 0.009690255858004093, -0.010384341701865196, 0.025782279670238495, -0.035795994102954865, -0.001274457317776978, -0.07008251547813416, 0.04275033622980118, 0.0219681728631258, 0.027251316234469414, -0.0380871519446373, 0.04469108209013939, 0.01047868374735117, 0.03094412572681904, -0.017924951389431953, -0.05558082461357117, 0.03153713047504425, 0.026146169751882553, -0.049812495708465576, 0.03366656228899956, 0.08355992287397385, -0.0008819277863949537, 0.058599766343832016, -0.0051449998281896114, -0.0024377258960157633, 0.00668142456561327, 0.005869410466402769, 0.008558153174817562, -0.0651228278875351, -0.042103417217731476, 0.012008369900286198, -0.006290579680353403, -0.01712978444993496, -0.007675383239984512, -0.03207622841000557, -0.012284656055271626, -0.04380157217383385, -0.02101127803325653, 0.011172770522534847, -0.0022759970743209124, 0.016334617510437965, 0.04625445976853371, 0.00907029490917921, -0.022008605301380157, -0.017763221636414528, 0.046470098197460175, 0.02056652307510376, -0.0181136354804039, 0.019353555515408516, -0.029677249491214752, -0.012594636529684067, -0.04490672051906586, -0.009845245629549026, -0.042049508541822433, 0.02071477472782135, 0.013800865039229393, 0.029272926971316338, -0.03916534408926964, -0.022857682779431343, -0.05407135561108589, -0.011112121865153313, -0.0013452136190608144, -0.01632113941013813, 0.017534106969833374, -0.027008723467588425, 0.007621473632752895, -0.030243301764130592, -0.05892322212457657, -0.012587898410856724, 0.06005532294511795, 0.018005816265940666, -0.017170216888189316, 0.014784715138375759, -0.04466412588953972, -0.026200078427791595, -0.06382899731397629, 0.020094813778996468, 0.04110608994960785, 0.01622679829597473, 0.025553163141012192, -0.014717328362166882, -0.028841650113463402, -0.0014707220252603292, 0.00044054273166693747, -0.045688409358263016, 0.00446102162823081, 0.031213674694299698, -0.03590381145477295, 0.00022490422998089343, -0.033343102782964706, 0.051699332892894745, 0.023841531947255135, 0.007183457724750042, -0.04903080686926842, -0.020364360883831978, -0.026280943304300308, 0.015539449639618397, 0.0025792387314140797, 0.0037871513050049543, -0.010815618559718132, -0.015418153256177902, -0.026267465204000473, 0.012567682191729546, -0.02367980405688286, 0.015148605220019817, -0.0057245283387601376, 0.003918556030839682, 0.022682474926114082, 0.028383418917655945, -0.04194169119000435, -0.028302554041147232, 0.0074058352038264275, 0.04288510978221893, -0.01605159230530262, -0.010862790048122406, 0.01703544147312641, 0.0001521472877357155, 0.008180785924196243, -0.04307379201054573, -0.02478495053946972, 0.029407702386379242, 0.002452888060361147, 0.025445343926548958, -0.028410373255610466, 0.0062535167671740055, 0.019596150144934654, -0.013699783943593502, -0.004777740687131882, -0.010936915874481201, 0.010465206578373909, -0.005219125654548407, -0.005451611243188381, 0.02471756376326084, -0.010242829099297523, -0.013073084875941277, 0.012042063288390636, 0.05892322212457657, -0.03903057053685188, -0.02397630736231804, -0.04000094160437584, -0.035795994102954865, -0.0835060104727745, -0.00653991149738431, 0.038033243268728256, 0.03779064863920212, -0.005892996210604906, 0.011920765973627567, -0.01047868374735117, 0.03264227882027626, -0.005535844713449478, 0.012365520931780338, -0.006870108190923929, -6.628146365983412e-05, 0.017345422878861427, -0.02773650363087654, -0.03045894019305706, 0.01823493093252182, 0.019596150144934654, -0.01882793754339218, 0.02758825197815895, -0.021712101995944977, 0.0010251252679154277, -0.03571512922644615, 0.00975764263421297, 0.05382876098155975, 0.02326200343668461, -0.01921878196299076, 0.013106778264045715, 0.02400326170027256, 0.010997563600540161, -0.02319461666047573, 0.0009745849529281259, 0.042615558952093124, 0.019501807168126106, 0.026860471814870834, -0.006886954884976149, 0.018127111718058586, -0.004612642340362072, -0.033019647002220154, 0.006277102045714855, -0.024070648476481438, 0.036631591618061066, 0.004444174934178591, 0.0032716405112296343, -0.010337171144783497, -0.012621591798961163, -0.045095402747392654, -0.00396909611299634, -0.020782161504030228, -0.029165107756853104, 0.030836306512355804, 0.02385501004755497, -0.01214988250285387, 0.005242711398750544, -0.03730546310544014, -0.02591705322265625, 0.04337029531598091, 0.05261579528450966, 0.011233418248593807, 0.06312817335128784, 0.04555363580584526, 0.015916816890239716, -0.011408625170588493, -0.018127111718058586, 0.03652377426624298, 0.048410844057798386, -0.002240618923678994, 0.032507505267858505, -0.048949941992759705, -0.016873713582754135, 0.018100157380104065, 0.0017352161230519414, -0.0064792633056640625, -0.03501430153846741, -0.023787623271346092, 0.0038410609122365713, 0.030270256102085114, 0.026685265824198723, 0.05288534611463547, 0.03075544163584709, 0.02260161191225052, -0.012486817315220833, -0.049489036202430725, -0.03337005898356438, -0.00925223995000124, -0.000576580292545259, -0.0023012671153992414, 0.004696876276284456, -0.02260161191225052, -0.026388762518763542, -0.01752062886953354, -0.017561061307787895, 0.0355803556740284, -0.0030374706257134676, 0.03533776104450226, -0.022224243730306625, -0.017628448083996773, 0.06652448326349258, 0.017871040850877762, 0.08528503030538559, -0.017871040850877762, -0.017439763993024826, -0.027628684416413307, 0.002752760425209999, -0.04002789780497551, 0.05242711305618286, 0.056874655187129974, -0.01547206286340952, -0.007190196309238672, -0.03560730814933777, -0.028383418917655945, -0.025863144546747208, 0.038302790373563766, -0.0010697691468521953, -0.027237839996814728, 0.025243183597922325, 0.028140826150774956, -0.015404676087200642, 0.03043198399245739, 0.0029599755071103573, -0.025121886283159256, 0.014043457806110382, 0.04132172837853432, 0.015323811210691929, -0.01757453940808773, -0.02493320219218731, -0.024731041863560677, -0.02824864536523819, -0.015445108525454998, 0.0015507441712543368, 0.05455654114484787, 0.0008537094690836966, -0.005734636448323727, 0.01985222101211548, -0.025687936693429947, -0.03865320235490799, 0.030378075316548347, -0.0015482171438634396, 0.036038585007190704, -0.03983921557664871, -0.04528408870100975, 0.0055223675444722176, -0.059138860553503036, -0.030027661472558975, -0.0117051275447011, -0.03862624615430832, 0.06339772045612335, 0.023005932569503784, 0.0378984697163105, -0.019811788573861122, 0.006047986447811127, 0.01607854664325714, -0.018073203042149544, 0.012217269279062748, -0.033289194107055664, 0.016644597053527832, 0.046497054398059845, 0.02152341790497303, 0.007715815212577581, -0.014366915449500084, 0.0474674254655838, -0.02696829102933407, -0.015013830736279488, 0.062373436987400055, -0.003057686612010002, 0.03229186683893204, 0.01946137472987175, 0.019542239606380463, -0.029192063957452774, 0.016482869163155556, -0.009218546561896801, 0.012352043762803078, 0.06178043410181999, -0.015323811210691929, -0.002100790850818157, 0.003878123825415969, -0.06264298409223557, -0.007769724819809198, 0.002420879201963544, -0.006890324410051107, 0.0587075836956501, -0.014582553878426552, 0.02376066893339157, 0.047548290342092514, -0.02854514680802822, 0.03296573832631111, -0.014622986316680908, -0.010802141390740871, 0.0050371806137263775, -0.0553651861846447, 0.007095854729413986, 0.027089588344097137, 0.04463716968894005, 0.021712101995944977, -0.026240510866045952, 0.0355803556740284, -0.0015878069680184126, 0.02292506955564022, -0.008901827037334442, -0.026078782975673676, -0.001188538852147758, -0.03048589453101158, -0.040755677968263626, -0.010175442323088646, -0.007318231742829084, 0.003642269177362323, -0.0670635774731636, -0.017561061307787895, -0.013052868656814098, -0.028356464579701424, 0.007250844966620207, -0.016792848706245422, 0.021024754270911217, -0.009481355547904968, -0.024623222649097443, 0.015202514827251434, -0.023598939180374146, -0.03905752673745155, -0.047602199018001556, 0.025755325332283974, 0.01234530471265316, 0.029003379866480827, 0.020849548280239105, 0.02905728854238987, 0.021860353648662567, 0.0025977701880037785, 0.011186247691512108, -0.008329037576913834, -0.01757453940808773, 0.0414295494556427, 0.01493296679109335, -0.0066881631501019, 0.016806326806545258, -0.0049697938375175, 0.011529921554028988, 0.019703969359397888, 0.014299528673291206, 0.009171375073492527, 0.013463929295539856, -0.0037568272091448307, 0.013288723304867744, -0.008490766398608685, -0.013935638591647148, -0.027076110243797302, 0.004511561710387468, 0.007190196309238672, 0.00496305525302887, -0.03760196641087532, -0.047305699437856674, 0.020701296627521515, -0.0012357097584754229, -0.007850589230656624, 0.009272456169128418, 0.0387340672314167, 0.007816895842552185, 0.021456031128764153, -0.05595819279551506, -0.008470550179481506, 0.031186718493700027, 0.0026297790464013815, -0.0449606291949749, -0.02012176811695099, -0.01508121844381094, 0.05105241760611534, -0.014501689933240414, 0.014609509147703648, -0.020283497869968414, 0.00651632621884346, 0.03536471724510193, -0.01338980346918106, -0.016509823501110077, 0.01239247526973486, -0.011206463910639286, -0.012230746448040009, 0.04062090441584587, 0.02272290736436844, 0.011125599034130573, 0.025512730702757835, -0.023989783599972725, 0.021267347037792206, 0.012244224548339844, 0.00015256846381817013, -0.006112004164606333, -0.04420589283108711, -0.031159764155745506, 0.03210318461060524, 0.012614852748811245, -0.005067504942417145, 0.04064786061644554, -0.03016243688762188, 0.04355897754430771, -0.01688718982040882, -0.0071025933139026165, -0.030324164777994156, -0.022534223273396492, -0.011812946759164333, -0.0298659335821867, -0.008537936955690384, -0.0018565127393230796, -0.01892227865755558, -0.04549972712993622, -0.014663418754935265, -0.018814459443092346, -0.029973752796649933, 0.0032345775980502367, 0.020997799932956696, -0.0044677602127194405, -0.025162318721413612, -0.023571984842419624, 0.030809352174401283, 0.002255780855193734, 0.007985363714396954, 0.03708982467651367, 0.0016998379724100232, 0.008517720736563206, 0.019960040226578712, 0.031698860228061676, 0.024286286905407906, -0.007864067330956459, -0.014690373092889786, 0.015000353567302227, 0.01793842762708664, -0.012567682191729546, -0.0076955994591116905, 0.0022338801063597202, -0.026173124089837074, -0.0007859012694098055, 0.028329508379101753, -0.001210439600981772, -0.009494832716882229, 0.0036827013827860355, -0.04024353623390198, 0.07002860307693481, 0.022561179473996162, 0.028599057346582413, -0.005717789754271507, -0.03148322179913521, -0.027763457968831062, 0.01614593341946602, 0.0150946956127882, -0.01985222101211548, 0.0009366797748953104, -0.0008364415843971074, 0.013612180948257446, -0.02274986356496811, 0.009050078690052032, 0.01351110078394413, 0.022857682779431343, 0.02824864536523819, 0.01152318250387907, -0.02152341790497303, 0.05045941099524498, 0.013726739212870598, 0.0014210240915417671, 0.011273850686848164, 0.002707274165004492, 0.018464047461748123, -0.017871040850877762, 0.026537014171481133, 0.055257368832826614, -0.04773697629570961, 0.023154184222221375, -0.030539803206920624, -0.014056934975087643, 0.012109450064599514, -0.00808644387871027, -0.020404793322086334, 0.013490884564816952, 0.038518428802490234, 0.026685265824198723, 0.020472180098295212, 0.0026398871559649706, 0.012924833223223686, -0.03156408667564392, 0.009130943566560745, -0.04504149407148361, 0.006475893780589104, 0.0518341064453125, -0.031914498656988144, -0.005970491096377373, -0.012230746448040009, -0.012628329917788506, -0.05258884280920029, -0.028679922223091125, -0.035822946578264236, -0.004848496988415718, 0.016267230734229088, -0.01978483237326145, 0.04558058828115463, -0.02059347741305828, -0.03765587508678436, 0.026469627395272255, -0.009663300588726997, 0.01874707266688347, 0.0014370285207405686, 0.019677013158798218, -0.024070648476481438, 0.03471779823303223, -0.02672569826245308, 0.0025657613296061754, -0.056066013872623444, -0.008537936955690384, -0.01865273155272007, -0.02439410611987114, 0.06501501053571701, -0.007143025752156973, 0.02403021603822708, 0.027871277183294296, 0.019690491259098053, -0.014730805531144142, 0.01047868374735117, -0.017614969983696938, 0.005640294868499041, 0.0027611837722361088, 0.04312770068645477, -0.02456931211054325, -0.02257465571165085, -0.005714420694857836, -0.03512212261557579, 0.009151158854365349, -0.030297210440039635, 0.0044138506054878235, -0.007466483395546675, -0.0023214833345264196, -0.005397701635956764, -0.03722459822893143, 0.04749438166618347, 0.04946208372712135, 0.02765563875436783, -0.022857682779431343, -0.023059843108057976, 0.011914027854800224, 0.004167887847870588, 0.005687465891242027, -0.010451729409396648, -0.029838979244232178, 0.007021728903055191, 0.0030694794841110706, -0.020701296627521515, 0.030512848868966103, 0.0037871513050049543, 0.02857210300862789, -0.03202231973409653, 0.002692112000659108, -0.009636346250772476, 0.018315795809030533, -0.039327073842287064, 0.01049216091632843, -0.012749627232551575, -0.042642515152692795, -0.019596150144934654, -0.014151277020573616, 0.00790449883788824, -0.005670618731528521, 0.06302035599946976, -0.002249042270705104, -0.02206251583993435, 0.016105500981211662, 0.032750099897384644, -0.00215638498775661, 0.01562031451612711, 0.0010293369414284825, -0.014191709458827972, -0.04080958664417267, -0.006647730711847544, -0.014003025367856026, 0.015391198918223381, -0.003527711145579815, -0.017507150769233704, -0.005953644402325153, -0.011604047380387783, 0.013962593860924244, -0.005205648485571146, 0.024919725954532623, 0.002370338886976242, 0.0033255501184612513, -0.004616011865437031, -0.11083819717168808, -0.03757501021027565, 0.04283119738101959, -0.02326200343668461, -0.005495412740856409, -0.00444754445925355, 0.027844322845339775, 0.037709783762693405, 0.02822168916463852, -0.01454212237149477, 0.024731041863560677, -0.052507977932691574, -0.03151017799973488, -0.021833399310708046, -0.007318231742829084, 0.02483886107802391, 0.0013292091898620129, 0.018464047461748123, 0.001979494234547019, 0.020512612536549568, -0.011967937462031841, 0.02409760281443596, -0.04024353623390198, 0.061564795672893524, 0.010856050997972488, -0.012237485498189926, -0.022075992077589035, 0.03816801682114601, -0.007122809533029795, -0.012635068967938423, 0.002660103142261505, 0.00016741466242820024, 0.015741610899567604, -0.00030555808916687965, -0.0018076571868732572, 0.017628448083996773, -0.0032345775980502367, 0.00965656153857708, -0.0025556532200425863, -0.0034030452370643616, -0.026671787723898888, -0.04331638664007187, 0.04687442258000374, -0.03868015855550766, 0.06771048903465271, -0.015027308836579323, -0.0031789832282811403, 0.045957956463098526, 0.004932730924338102, -0.005414548330008984, 0.027790412306785583, 0.008153831586241722, 0.0023501229006797075, -0.0018160805338993669, 0.010357387363910675, 0.020512612536549568, -0.05078287050127983, -0.007223890163004398, 0.001736900769174099, -0.006600560154765844, -0.033073555678129196, 0.015647269785404205, -0.0026617879047989845, -0.055850375443696976, -0.004602534230798483, -0.00482828076928854, 0.0011472642654553056, 0.042103417217731476, 0.013288723304867744, -0.022615088149905205, 0.01715673878788948, 0.043235521763563156, 0.027844322845339775, -0.02905728854238987, 0.017466718330979347, -0.0037029176019132137, 0.014838624745607376, 0.009467878378927708, -0.02822168916463852, -0.01304612960666418, 0.03593076765537262, 0.011078428477048874, -0.021846875548362732, -0.01590334065258503, -0.0035546659491956234, -0.015445108525454998, -0.009009646251797676, -0.0023585462477058172, 0.006378182675689459, 0.011172770522534847, 0.025310570374131203, -0.008470550179481506, 0.008531198836863041, 0.018369706347584724, -0.000680187891703099, 0.007419312372803688, 0.02528361603617668, -0.014461257494986057, -0.005084351636469364, -0.01580899767577648, 0.030108526349067688, -0.011604047380387783, -0.0010630304459482431, 0.002778030466288328, -0.011415363289415836, -0.022992456331849098, 0.013780648820102215, 0.015256424434483051, 0.014879057183861732, 0.01034390926361084, -0.026388762518763542, -0.012352043762803078, 0.028626011684536934, 0.0246636550873518, 0.019259214401245117, -3.813553348663845e-06, -0.00600755400955677, 0.0004205371951684356, 0.008012318052351475, -0.021482987329363823, 0.016267230734229088, -0.010593242011964321, -0.01919182762503624, 0.03752110153436661, 0.009083772078156471, 0.033612653613090515, 0.04326247423887253, -0.02959638461470604, 0.011846640147268772, -0.01043151319026947, 0.0027813997585326433, 0.05512259528040886, 0.0029549214523285627, 0.04808738827705383, 0.0016947839176282287, -0.022345541045069695, 0.025701414793729782, -0.015175560489296913, 0.017682358622550964, 0.027520865201950073, -0.0021816552616655827, 0.00669490173459053, -0.011186247691512108, 0.0007707392214797437, 0.00843011774122715, -0.01838318258523941, 0.004370049107819796, -0.005741375498473644, -0.02218381129205227, 0.031105855479836464, 0.022520747035741806, -0.02481190674006939, -0.018760550767183304, 0.06086396798491478, -0.020606955513358116, 0.03719764202833176, -0.05269666016101837, -0.0042959232814610004, -0.007479960564523935, -0.003665854688733816, 0.04229210317134857, 0.025000588968396187, 0.04196864366531372, 0.0019508546683937311, 0.001393226906657219, -0.006455678027123213, -0.03369351848959923, 0.007506915368139744, -0.010694322176277637, 0.027278270572423935, -0.01283723022788763, 0.019811788573861122, 0.01963658258318901, 0.011374931782484055, 0.06032487377524376, 0.05161846801638603, 0.0028134086169302464, 0.023477641865611076, 0.002754444954916835, -0.0014269204111769795, -0.01495992112904787, 0.0069004325196146965, 0.024191945791244507, 0.03835669904947281, 0.030620668083429337, -0.03620031476020813, -0.038814932107925415, 0.006512956693768501, -0.005667249672114849, 0.024744518101215363, 0.009838506579399109, -0.0011910658795386553, 0.013949115760624409, 0.020782161504030228, -0.018342750146985054, 0.0036928094923496246, 0.02481190674006939, -0.006064833141863346, -0.0298659335821867, -0.0015928610228002071, -0.042372968047857285, 0.02800605073571205, 0.007776463869959116, -0.02157732844352722, -0.008787269704043865, 0.028356464579701424, 0.006142328027635813, 0.020674342289566994, -0.017170216888189316, 0.019420942291617393, 0.013565010391175747, 0.024016739800572395, -0.0019929716363549232, -0.007237367331981659, -0.0012272864114493132, 0.02469060942530632, 0.016415482386946678, 0.009387013502418995, -0.015202514827251434, -0.008436856791377068, -0.03903057053685188, -0.025863144546747208, -0.001392384641803801, 0.00636807456612587, -0.034205660223960876, 0.023518074303865433, 0.0182079765945673, 0.02014872245490551, 0.005279774311929941, 0.015054263174533844, 0.026469627395272255, 0.02403021603822708, -0.004558732733130455, 0.006277102045714855, 0.03318137675523758, 0.027305226773023605, 0.0008431802853010595, 0.00196938612498343, 0.0030711640138179064, 0.02991984225809574, 0.022426404058933258, 0.0034451622050255537, 0.01116603147238493, -0.026496581733226776, -0.006563497241586447, -0.020013948902487755, 0.014703851193189621, 0.018720118328928947, 0.03913838788866997, -0.018544912338256836, 0.04002789780497551, 0.0007096697227098048, 0.002799931215122342, 0.0027510756626725197, 0.0285181924700737, 0.021051708608865738, 0.006421984173357487, 0.011994891799986362, 0.008591846562922001, -0.00958243664354086, 0.0040937624871730804, 0.02417846769094467, -0.0018935756525024772, 0.004127455875277519, -0.0009105672943405807, 0.012224008329212666, -0.023248527199029922, 0.0012087549548596144, 0.00597723014652729, 0.000780426082201302, -0.03134844824671745, 0.02496015653014183, 0.025162318721413612, -0.031078899279236794, -0.0117051275447011, 0.0318605899810791, -0.060217052698135376, -0.007675383239984512, -0.03649681806564331, -0.023396778851747513, -0.011590570211410522, 0.008544676005840302, -0.026415716856718063, -0.0007037733448669314, 0.043478112667798996, -0.022345541045069695, 0.03013548254966736, -0.030054617673158646, 0.012237485498189926, -0.04000094160437584, -0.014488212764263153, -0.004268968477845192, -0.009232023730874062, 0.04054003953933716, -0.02687394991517067, 0.026685265824198723, 0.022224243730306625, 0.020579999312758446, 0.009346581995487213, -0.026941336691379547, 0.007459744811058044, -0.016132455319166183, -0.0023972936905920506, 0.02800605073571205, 0.020135246217250824, 0.012486817315220833, -0.021199960261583328, -0.021065186709165573, -0.006617406848818064, 0.023868488147854805, 0.00014130218187347054, 0.0015692755114287138, -0.008342514745891094, 0.027628684416413307, -0.006826306693255901, 0.020755207166075706, 0.040701769292354584, 0.03428652137517929, 0.02274986356496811, 0.0431007482111454, 0.003878123825415969, 0.012830491177737713, 0.02382805570960045, 0.044529352337121964, -0.012965265661478043, 0.01563379168510437, 0.027251316234469414, 0.006240039132535458, 0.002917858539149165, 0.026119213551282883, 0.011994891799986362, -0.0014193394454196095, 0.007985363714396954, 0.02098432183265686, -0.02248031459748745, 0.009191591292619705, 0.028194734826683998, -0.006873477250337601, 0.0026584183797240257, -0.011529921554028988, 0.017507150769233704, -0.008477289229631424, -0.009191591292619705, -0.0051011983305215836, -0.004363310523331165, -0.007324970792979002, 0.034151747822761536, 0.02522970549762249, 0.0033053341321647167, 0.02564750425517559, 0.062373436987400055, 0.012823752127587795, -0.01014848705381155, 0.02238597348332405, -0.0032025687396526337, 0.002535437233746052, 0.002902696607634425, -0.014865580014884472, -0.004612642340362072, 0.029542475938796997, -0.02876078523695469, 0.009919371455907822, -0.011893811635673046, 0.01814058981835842, 0.0018531434470787644, -0.025580117478966713, 0.0028622641693800688, 0.0318605899810791, -0.007001512683928013, -0.006074941251426935, 0.0285181924700737, 0.01411084458231926, -0.007762986235320568, 0.0010091208387166262, -0.021388644352555275, 0.0058289784938097, 0.012385737150907516, -0.04010876268148422, -0.0002621776657178998, 0.011570353992283344, 0.0233159139752388, -0.029812023043632507, 0.01013500988483429, 0.0580606684088707, 0.01602463610470295, 0.009009646251797676, -0.03841060772538185, 0.02770954929292202, 0.001822819234803319, 0.007857328280806541, 0.009063555859029293, -0.023787623271346092, -0.020337406545877457, 0.00614906707778573, -0.027763457968831062, 0.029569430276751518, -0.003972465638071299, -0.00959591381251812, -0.007412573788315058, -0.03460998088121414, -0.04466412588953972, -0.0005946905585005879, 0.007857328280806541, -0.022534223273396492, 0.018005816265940666, 0.01593029499053955, 0.051187191158533096, 0.005859302822500467, 0.04285815358161926, 0.021051708608865738, -0.007857328280806541, 0.0034636936616152525, -0.023059843108057976, 0.0024512032978236675, -0.03175276890397072, -0.026051826775074005, 0.028922514989972115, -0.021509941667318344, 0.012709194794297218, -0.0432894304394722, 0.015566404908895493, 0.01632113941013813, 0.005357269197702408, -0.00965656153857708, 0.0264291949570179, 0.02965029515326023, 0.011476011946797371, 0.03215709328651428, -0.005421286914497614, -0.036847230046987534, -0.031456269323825836, 0.02633485198020935, -0.023571984842419624, 0.017588015645742416, -0.025067975744605064, -0.010667367838323116, 0.0071025933139026165, 0.004097131546586752, -0.027493909001350403, -0.005151738878339529, 0.01376717071980238, -0.03590381145477295, 0.010229351930320263, -0.01239247526973486, -0.01455559954047203, -0.0036254224833101034, -0.046739645302295685, -0.0219681728631258, 0.005673988256603479, -0.02768259309232235, 0.005151738878339529, 0.018396660685539246, -0.011873595416545868, 0.03921925276517868, 0.03363960608839989, 0.003244685707613826, -0.01077518705278635, -0.005997445899993181, -0.0027662378270179033, -0.003783782012760639, -0.043235521763563156, 0.01688718982040882, 0.012958526611328125, 0.023032888770103455, 0.037143733352422714, 0.043451160192489624, -0.00940049160271883, 0.001339317299425602, -0.019003143534064293, -0.0072441063821315765, 0.022022083401679993, 0.011893811635673046, -0.018019292503595352, 0.027507387101650238, 0.01835622824728489, 0.007412573788315058, 0.030081572011113167, -0.021159527823328972, -0.007304754573851824, -0.008450333960354328, 0.02272290736436844, -0.018935756757855415, 0.03835669904947281, -0.0006035350961610675, -0.0009324681013822556, 0.039596620947122574, 0.00019594885816331953, -0.017803654074668884, 0.040944360196590424, -0.002767922356724739, -0.03237273171544075, 0.020135246217250824, 0.0006970346439629793, -0.018194498494267464, 0.024623222649097443, -0.0038949705194681883, 0.02343721129000187, 0.0034569548442959785, 0.013740216381847858, -0.0019003143534064293, -0.00013972280430607498, -0.018154066056013107, 0.035742081701755524, -0.005235972348600626, 0.009602651931345463, -0.026051826775074005, 0.030351120978593826, -0.012021847069263458, 0.01000023540109396, -0.010734754614531994, -0.020472180098295212, 0.023275481536984444, 0.009845245629549026, -0.030836306512355804, 0.028949469327926636, -0.024353673681616783, -0.002722436096519232, -0.031078899279236794, 0.025863144546747208, 0.007837112061679363, 0.004339724779129028, -0.020876502618193626, 0.013201120309531689, -0.0007762144086882472, 0.01548554003238678, 0.015256424434483051, -0.027130020782351494, 0.016995010897517204, -0.023720236495137215, -0.008120137266814709, 0.01865273155272007, -0.020512612536549568, 0.0123318275436759, 0.023235049098730087, 0.009515048936009407, 0.0011818001512438059, -0.014218663796782494, 0.003236262360587716, -0.009326365776360035, -0.018571866676211357, -0.023935874924063683, -0.0038477997295558453, -0.024623222649097443, 0.0399470329284668, 0.03369351848959923, 0.037709783762693405, 0.002186709316447377, 0.03043198399245739, -0.030836306512355804, -0.0032244694884866476, -0.026253988966345787, -0.008019057102501392, -0.029272926971316338, -0.021833399310708046, -0.00020205581677146256, 0.03682027384638786, -0.02044522576034069, 0.010060884058475494, -0.003042524680495262, -0.0001778385922079906, 0.023518074303865433, 0.0034771710634231567, -0.027210883796215057, 0.01700848713517189, 0.012466601096093655, -0.026024872437119484, 0.020849548280239105, 0.0422651469707489, -0.020040903240442276, -0.043235521763563156, 0.01894923485815525, -0.021739056333899498, -0.0020468812435865402, -0.025189273059368134, 0.03097108006477356, 0.0006603929214179516, 0.031456269323825836, 0.011219941079616547, 0.009218546561896801, -0.008531198836863041, -0.01978483237326145, -0.02753434143960476, 0.002462996169924736, 0.009326365776360035, -0.013591964729130268, -0.00479795690625906, 2.6612613510224037e-05, -0.028976425528526306, 0.037736739963293076, -0.009467878378927708, -0.017116306349635124, -0.01990612968802452, 0.013740216381847858, 0.0011447372380644083, 0.05779112130403519, 0.002355176955461502, 0.029973752796649933, 0.012972003780305386, -0.004049960523843765, 0.007035206537693739, -0.019650058820843697, -0.005673988256603479, -0.007931454107165337, 0.014649941585958004, -0.028059961274266243, -0.0011860118247568607, 0.0013763802126049995, 0.003992681857198477, 0.009346581995487213, -0.008659234270453453, -0.011880334466695786, -0.00720367394387722, 0.001582752913236618, -0.03320832923054695, 0.0029414440505206585, -0.009555481374263763, 0.015350766479969025, -0.03485257551074028, -0.03447520732879639, 0.030027661472558975, 0.007311493158340454, 0.039893124252557755, 0.02157732844352722, 0.019569193944334984, 0.001991286873817444, -0.00021795493375975639, 0.01264180801808834, 0.04086349904537201, 0.021307779476046562, -0.008814224041998386, -0.015404676087200642, -0.013976071029901505, -0.038275834172964096, -0.0301893912255764, 0.008881610818207264, 0.013484145514667034, -0.030782397836446762, -0.0031890913378447294, 0.0017520629335194826, 0.006708379369229078, 0.018369706347584724, 0.0266583114862442, 0.0024478340055793524, 0.015768565237522125, 0.009151158854365349, -0.030620668083429337, 0.007924715057015419, 0.021051708608865738, 0.0034215766936540604, -0.0005668934318237007, 0.0009400491253472865, 0.0044374363496899605, 0.008955736644566059, -0.0168602354824543, 0.01951528526842594, 0.011449056677520275, -0.0285181924700737, 0.02349111996591091, 0.0012348673772066832, -0.010593242011964321, 0.010377603583037853, -0.008935520425438881, -0.01034390926361084, -0.023814577609300613, 0.012176836840808392, -0.01946137472987175, 0.015970727428793907, 0.055257368832826614, 0.0271704513579607, 0.011718605645000935, 0.014730805531144142, 0.011738820932805538, 0.0061456975527107716, -0.025903575122356415, 0.046227503567934036, 0.011779253371059895, 0.04752133786678314, -0.004427328240126371, 0.010249568149447441, -0.03264227882027626, 0.02606530487537384, 0.006287210155278444, 0.017561061307787895, -0.0182079765945673, 0.03124062903225422, -0.007911237888038158, 0.019178349524736404, 0.010377603583037853, 0.012021847069263458, -0.027925187721848488, -0.012284656055271626, 0.01841013692319393, -0.03045894019305706, 0.011354715563356876, -0.017897997051477432, 0.022561179473996162, 0.0035108644515275955, 0.026537014171481133, -0.024259332567453384, 0.0026870579458773136, -0.007661905605345964, 0.026253988966345787, 0.000494031177368015, -0.03293878212571144, -0.01928616873919964, -0.006098526529967785, 0.04930035397410393, 0.002294528530910611, -0.014434303157031536, 0.007095854729413986, 0.04444848746061325, 0.00980481319129467, -0.008868133649230003, -0.005161846987903118, -0.031186718493700027, 0.01739933155477047, 0.009393752552568913, -0.007190196309238672, -0.018437093123793602, -0.01946137472987175, -0.007769724819809198, -0.011880334466695786, 0.012338565662503242, -0.01047868374735117, 0.00808644387871027, -0.036847230046987534, 0.022264676168560982, 0.01049216091632843, -0.013140471652150154, 0.029569430276751518, 0.014029980637133121, 0.034933436661958694, 0.005903104320168495, 0.014771237969398499, 0.04377461597323418, 0.016213320195674896, -0.0027797152288258076, 0.023235049098730087, 0.019690491259098053]" -How Messari Uses Data to Open the Cryptoeconomy to Everyone,"(which we weren’t able to do with InfluxDB) are key differentiators for TimescaleDB.✨Editor’s Note:For more comparisons and benchmarks, seehow TimescaleDB compares to InfluxDB, MongoDB, AWS Timestream, and other time-series database alternativeson various vectors, from performance and ecosystem to query language and beyond. For tips on optimizing your database insert rate, see our13 ways to improve PostgreSQL insert performanceblog post.We are also really excited about continuous aggregates. We store our data at minute-level granularity, so any granularity of data above one minute is powered by continuous queries that feed a rollup table.In InfluxDB-world, we had a few problems with continuous queries: they tended to lag a few minutes behind real-time ingestion, and, in our experience, continuous queries would occasionally fail to pick up a trade ingested out of order—for instance, one that’s half an hour old—and it wouldn’t be correctly accounted for in our rollup queries.Switching these rollups to TimescaleDB continuous aggregates has been great; they’re never out of date, and we can gracefully refresh the proper time range whenever we receive an out-of-order batch of trades or are back-filling data.At the time of writing, I’m still finalizing our continuous aggregate views—we had to refresh them all the way back to 2010! — but all of the other parts of our implementation are complete and have been stable for some time.✨Editor’s Note:Check out thecontinuous aggregates documentationand followthe step-by-step tutorialto learn how to utilize continuous aggregates for analyzing the NFL dataset.Current deployment & future plansAs I mentioned earlier, all of the core services in our back-end are currently written in Go, and we have some projects on the periphery written in Node or Java. We don't currently need to expose TimescaleDB to any project that isn't written in Go. We useGORMfor most database operations, so we connect to TimescaleDB with agorm.DBobject.We try to use GORM conventions as much as possible; for TimescaleDB-specific operations likemanaging compression policiesor thecreate_hypertablestepwhere no GORM method exists, we write out queries literally.For instance, we initialize our tables usingrepo.PrimaryDB.AutoMigrate(repo.Schema.Model), which is a GORM-specific feature, but we create new hypertables as follows:res := repo.PrimaryDB.Table(tableName).Exec( fmt.Sprintf(""SELECT create_hypertable('%s', 'time', chunk_time_interval => INTERVAL '%s');"", tableName, getChunkSize(repo.Schema.MinimumInterval)))Currently, our architecture that touches TimescaleDB looks like this:The current architecture diagram.We use Prometheus for a subset of our monitoring, but, for our real-time ingestion engine, we’re in an advantageous position: the",https://www.timescale.com/blog/how-messari-uses-data-to-open-the-cryptoeconomy-to-everyone/,573,"[-0.012964991852641106, 0.01735418103635311, 0.07492684572935104, -0.013633498921990395, 0.06568928807973862, 0.03843579813838005, 0.011263336054980755, 0.0011732642306014895, 0.0009040043223649263, -0.004453339613974094, 0.012978496961295605, -0.005391951184719801, 0.01173601858317852, -0.03613991290330887, 0.013964376412332058, 0.027023904025554657, -0.024133792147040367, -0.015652526170015335, -0.016895005479454994, 0.02067646011710167, -0.0240392554551363, 0.011553698219358921, 0.030251646414399147, 0.020257798954844475, -0.009622454643249512, -0.012012874707579613, -0.03395207226276398, 0.06574331223964691, 0.014896235428750515, -0.06017917022109032, 0.01900181546807289, -0.03006257489323616, -0.03884095326066017, 0.0009377673268318176, 0.058720607310533524, 0.019515013322234154, 0.047160156071186066, 0.023039869964122772, 0.02105460688471794, 0.0243498757481575, -0.008596059866249561, 0.043729837983846664, -0.018421093001961708, -0.0034522665664553642, -0.02521420828998089, 0.012201948091387749, -0.054452963173389435, -0.024093275889754295, -0.0192314051091671, 0.06352845579385757, -0.048942845314741135, 0.019731096923351288, -0.03967827558517456, -0.055965546518564224, 0.04337869957089424, -0.017124593257904053, -0.03360093757510185, 0.01765129528939724, 0.022918323054909706, -0.03678816556930542, -0.01449107937514782, -0.06514908373355865, 0.0267943162471056, 0.015449948608875275, -0.026740295812487602, 0.034114133566617966, -0.03173721954226494, 0.05709998309612274, -0.02844195067882538, 0.03338485211133957, 0.03935415297746658, 0.016597891226410866, -0.016017166897654533, -0.04651190713047981, 0.026186581701040268, -0.053048424422740936, -0.010615087114274502, 0.03516754135489464, -0.006769481115043163, 0.006327186245471239, -0.008832400664687157, 0.021108627319335938, -0.03130505234003067, 0.03605888411402702, 0.012438288889825344, -0.0343572273850441, -0.01828604005277157, -0.03554568439722061, -0.002285755006596446, 0.010628592222929, -0.0035417387261986732, 0.055803485214710236, 0.0003711819590535015, 0.00046846159966662526, 0.03133206441998482, 0.007367086596786976, 0.012337000109255314, 0.0009014720562845469, -0.018177999183535576, 0.045512523502111435, 0.031115980818867683, -0.013349889777600765, -0.02665926329791546, -0.006117855664342642, 0.03749043494462967, -0.002503526397049427, -0.002966079395264387, 0.0006824346492066979, -0.013160817325115204, 0.023309973999857903, -0.06785012036561966, -0.02031181938946247, -0.04011044278740883, -0.006377830635756254, 0.007853273302316666, -0.0033070857170969248, -0.03379001095890999, 0.009116009809076786, -0.019474497064948082, -0.018434597179293633, -0.029549377039074898, 0.019123362377285957, -0.02626761421561241, 0.016989540308713913, 0.026483695954084396, -0.012701639905571938, 0.03676115348935127, -0.029360303655266762, -0.06520310044288635, 0.009939827024936676, 0.042514368891716, -0.030953917652368546, 0.006441980134695768, -0.016962530091404915, -0.026537718251347542, 0.012721898034214973, -0.06417670845985413, -0.004453339613974094, -0.017502738162875175, -0.0026166324969381094, -0.0010947652626782656, -0.02841494046151638, 0.03279062360525131, -0.015206854790449142, -0.003030229127034545, 0.04721417650580406, -0.03279062360525131, 0.04788943752646446, -0.007198271341621876, -0.017030056565999985, 0.004615401849150658, -0.0006389647605828941, -0.033006709069013596, -0.04543149098753929, 0.03984034061431885, 0.0030791854951530695, 0.002327958820387721, 0.03957023471593857, 0.0188667643815279, -0.017880884930491447, 0.010304467752575874, 0.06941672414541245, 0.0033425369765609503, 0.0007419419125653803, -0.02256718836724758, -0.020014705136418343, -0.05148182064294815, -0.059260815382003784, -0.0850827544927597, -0.012620609253644943, -0.013761798851191998, -0.05253522843122482, -0.027321018278598785, 0.034951455891132355, 0.02757761813700199, -0.007718221750110388, -0.02349904738366604, -0.06822826713323593, 0.044702209532260895, -0.010790654458105564, -0.05037439614534378, 0.012580093927681446, -0.020973574370145798, 0.040326524525880814, 0.009575186297297478, -0.008103120140731335, -0.07676355540752411, 0.022405127063393593, 0.009149773046374321, 0.0439729318022728, -0.04092075675725937, 0.0727119967341423, 0.02868504449725151, 0.04200116917490959, 0.004159601405262947, -0.048537686467170715, 0.0188667643815279, 0.024336369708180428, -0.03333083167672157, 0.008704100735485554, 0.07460272312164307, 0.03554568439722061, 0.042568389326334, -0.002405613660812378, -0.010392251424491405, 0.015098812989890575, 0.027793701738119125, 0.0006790583138354123, -0.04335169121623039, -0.02236461080610752, -0.015382422134280205, 0.02064944989979267, -0.012485557235777378, -0.003798337420448661, -0.03489743545651436, 0.0004515801265370101, -0.06752599775791168, -0.011783286929130554, 0.02871205471456051, -0.003710553515702486, 0.025106165558099747, 0.0630962923169136, -0.005864632781594992, -0.010480035096406937, -0.001873846398666501, 0.04540448263287544, 0.003774703247472644, -0.04202818125486374, 0.028468960896134377, 0.00993307400494814, -0.005307543557137251, -0.044702209532260895, -0.0004760582814924419, -0.05475008115172386, 0.008143635466694832, -0.00018601302872411907, 0.03527558222413063, -0.03762548789381981, -0.011087768711149693, -0.04102879762649536, -0.0243768859654665, 0.014828708954155445, -0.0336279459297657, 0.011985864490270615, 0.0007166196592152119, 0.025916477665305138, -0.03087288700044155, -0.05345357954502106, -0.009102504700422287, 0.07838417589664459, 0.033708978444337845, -0.014599121175706387, 0.0014045407297089696, -0.019893158227205276, -0.0328986681997776, -0.06358247995376587, -0.01848861761391163, 0.041379932314157486, -0.007326570805162191, 0.02299935556948185, 0.007981573231518269, -0.04094776511192322, 0.010378746315836906, -0.00796806812286377, -0.035086508840322495, 0.016827479004859924, 0.02595699392259121, -0.03376299887895584, 0.020595429465174675, -0.012566587887704372, 0.057316068559885025, 0.033411864191293716, 0.010250446386635303, -0.05034738406538963, -0.013734787702560425, -0.04726820066571236, 0.006850512698292732, -0.00449723144993186, 0.0017506114672869444, -0.03243948891758919, 0.00176749296952039, -0.04815954342484474, 0.0243768859654665, -0.010392251424491405, 0.03281763568520546, 0.009143020026385784, -0.00916327815502882, 0.04824057221412659, 0.012066896073520184, -0.03033267892897129, 0.012721898034214973, 0.014058913104236126, 0.03719332069158554, -0.0384628102183342, 0.02189192920923233, 0.012093906290829182, 0.005645173601806164, 0.008420491591095924, -0.021945949643850327, -0.03641001880168915, 0.018421093001961708, 0.000165438701515086, 0.005689065437763929, -0.01929892972111702, 0.02407977171242237, 0.02004171721637249, -0.0019194264896214008, -0.02101409062743187, -0.0007284366874955595, 0.009953332133591175, 0.010277456603944302, -0.020757492631673813, 0.011337615549564362, -0.027456071227788925, -0.022837292402982712, -0.0003591538988985121, 0.05931483581662178, -0.014572110027074814, -0.009305082261562347, -0.03168319910764694, -0.005628291983157396, -0.09323989599943161, -0.026011014357209206, 0.02992752194404602, 0.02491709403693676, -0.005391951184719801, 0.024863071739673615, -0.024336369708180428, -0.006030071526765823, -0.005922030191868544, 0.009203793480992317, -0.025875963270664215, 0.04340571165084839, 0.04543149098753929, -0.03141309320926666, -0.028522981330752373, 0.015557990409433842, 0.01742170751094818, -0.002692599082365632, 0.0377335287630558, -0.036464039236307144, -0.023174922913312912, -0.06649960577487946, 0.0106420973315835, 0.0002931050257757306, 0.013343137688934803, -0.014302005991339684, 0.0007613556226715446, 0.014274995774030685, -0.001480507547967136, -0.016233250498771667, -0.00027200314798392355, 0.031007938086986542, 0.003521480830386281, 0.029144220054149628, -0.005489863455295563, 0.024660494178533554, 0.004716691095381975, -0.028252877295017242, -0.005888266954571009, -0.05682988092303276, 0.015990156680345535, 0.016260260716080666, -0.014774688519537449, -0.002307700924575329, 0.010601582005620003, -0.015382422134280205, 0.011270089074969292, 0.004341921769082546, -0.026254108175635338, 0.03130505234003067, 0.01681397296488285, -0.04146096110343933, 0.00624615466222167, -0.04273045063018799, -0.006526387762278318, 0.054588016122579575, 0.041514985263347626, 0.02067646011710167, 0.04678201302886009, 0.015395927242934704, 0.024430906400084496, 0.007144250441342592, -0.014004891738295555, 0.029765460640192032, 0.04294653609395027, -0.0011960542760789394, 0.04143395274877548, -0.040974777191877365, 0.0018299545627087355, 0.03308773785829544, 0.011506429873406887, -0.016354797407984734, -0.03117000125348568, -0.03133206441998482, -0.009291577152907848, 0.0006343223503790796, 0.03443825989961624, 0.05645173415541649, 0.03605888411402702, 0.04918593540787697, -0.0014813515590503812, -0.054425954818725586, -0.024822557345032692, 0.01266112457960844, -0.0037308114115148783, 0.025781426578760147, 0.031007938086986542, -0.03414114564657211, -0.024025749415159225, -0.014990771189332008, 0.005601281765848398, 0.035653725266456604, -0.010304467752575874, 0.014045407995581627, -0.04632283374667168, -0.0453234501183033, 0.047025106847286224, 0.016017166897654533, 0.060881439596414566, -0.026510706171393394, -0.013559220358729362, -0.029198242351412773, -0.002174337161704898, -0.0391380675137043, 0.024755030870437622, 0.0398673489689827, -0.02622709795832634, -0.016233250498771667, -0.031386084854602814, -0.02541678585112095, -0.025875963270664215, 0.010338230058550835, -0.018947795033454895, -0.011600966565310955, 0.008494770154356956, 0.022013476118445396, -0.010344983078539371, 0.056343693286180496, 0.010635344311594963, -0.03532960265874863, 0.004659293685108423, 0.02925226278603077, 0.017894389107823372, -0.03689620643854141, -0.003030229127034545, -0.01828604005277157, -0.02911720983684063, 0.007596674840897322, -0.002680782228708267, 0.03173721954226494, -0.009825033135712147, -0.007650695741176605, 0.011627976782619953, -0.015004277229309082, -0.0132148377597332, 0.04516138881444931, -0.00944688729941845, 0.05585750564932823, -0.02723998762667179, -0.03230443596839905, -0.005861256737262011, -0.06385258585214615, -0.03681517392396927, -0.003683543298393488, -0.03349289670586586, 0.06352845579385757, 0.0008601124281994998, 0.028171846643090248, -0.026740295812487602, -0.004990171175450087, 0.04502633586525917, -0.015895619988441467, 0.0188667643815279, -0.020433366298675537, 0.024484926834702492, 0.007326570805162191, -0.005540508311241865, 0.030656803399324417, -0.026672769337892532, 0.051427800208330154, -0.02575441636145115, -0.012870455160737038, 0.06358247995376587, 0.009602196514606476, 0.06217793747782707, -0.010196425952017307, -0.012532825581729412, -0.021743372082710266, 0.012789424508810043, -0.013154064305126667, 0.004716691095381975, 0.03997538983821869, -0.015274381265044212, -0.009622454643249512, 0.013437673449516296, -0.09556279331445694, -0.02545730210840702, -0.003599135670810938, -0.018637174740433693, 0.029549377039074898, -0.00696868309751153, 0.014099428430199623, 0.0700109526515007, 0.00669182650744915, 0.013964376412332058, -0.015922630205750465, -0.004075193777680397, 0.0010415884898975492, -0.026456685736775398, 0.0046120258048176765, 0.00015784201968926936, 0.04348674416542053, 0.036464039236307144, -0.01597665064036846, 0.03916507959365845, 0.01008838415145874, 0.040974777191877365, -0.015882113948464394, -0.008562296628952026, -0.00899446289986372, -0.023255953565239906, -0.03516754135489464, -0.0004262578731868416, -0.021297700703144073, 0.017003046348690987, -0.03724734112620354, -0.024674000218510628, -0.012890713289380074, -0.01349844690412283, 0.00587476184591651, -0.034546300768852234, 0.013714530505239964, -0.024701010435819626, -0.03365495800971985, 0.012985249049961567, -0.03586981073021889, -0.041379932314157486, -0.04335169121623039, 0.012181689962744713, 0.014896235428750515, 0.04197416082024574, 0.017475727945566177, 0.030656803399324417, 0.0041292146779596806, -0.008967452682554722, 0.0005153077654540539, -0.0070362091064453125, -0.017192119732499123, 0.040137454867362976, 0.0045174891129136086, -0.012789424508810043, 0.005746462382376194, 0.001194366137497127, -0.004004291724413633, 0.026753799989819527, 0.008130130358040333, 0.03200732171535492, 0.01135112065821886, -0.0010702870786190033, 0.0015514098340645432, -0.010581323876976967, -0.021932443603873253, -0.010513798333704472, -0.01617923006415367, 0.03597785159945488, 0.009500907734036446, -0.024457916617393494, -0.04448612779378891, 0.0031855390407145023, 0.006276541389524937, -0.01359973568469286, 0.019623054191470146, 0.020635945722460747, -0.008109872229397297, 0.02037934586405754, -0.02672678977251053, -0.007562911603599787, 0.033303823322057724, 0.00207135989330709, -0.03376299887895584, -0.03613991290330887, -0.017030056565999985, 0.03657208010554314, -0.03189928084611893, 0.019393466413021088, 0.010230189189314842, 0.026416171342134476, 0.02636214904487133, -0.00872435886412859, 0.02168934978544712, 0.01530139148235321, -0.02067646011710167, -0.0048686242662370205, 0.016125207766890526, 0.01174952369183302, -0.007738479413092136, 0.022378114983439445, -0.03624795749783516, 0.0322774276137352, 0.02360708825290203, -0.014247985556721687, -0.001748923328705132, -0.040434569120407104, -0.04119085893034935, 0.02064944989979267, 0.0011462537804618478, -0.010135652497410774, 0.024890083819627762, -0.014234480448067188, 0.016759952530264854, 0.013761798851191998, -0.011600966565310955, -0.05469605699181557, -0.047160156071186066, 0.0002542775764595717, -0.04616077244281769, 0.0036396512296050787, 0.00247989222407341, -0.025605859234929085, -0.016084693372249603, -0.008839152753353119, -0.022607704624533653, -0.05202202871441841, 0.004645788576453924, 0.02911720983684063, -0.005999684799462557, -0.03654507175087929, -0.028495971113443375, 0.020014705136418343, 0.003919884096831083, -0.009575186297297478, 0.03133206441998482, 0.031791239976882935, 0.012208700180053711, 0.03538362309336662, 0.03214237466454506, 0.0336819663643837, 0.000844497000798583, -0.020568419247865677, 0.010419261641800404, 0.012877208180725574, -0.012147926725447178, 0.0045613814145326614, 0.005084707867354155, -0.029468346387147903, 0.0034218800719827414, 0.024822557345032692, -0.031251031905412674, -0.01563902199268341, 0.008406986482441425, -0.04456716030836105, 0.05447997525334358, 0.02195945382118225, 0.018353566527366638, -0.01376855093985796, -0.02841494046151638, -0.024998124688863754, -0.0013251977507025003, 0.03049474023282528, -0.039327140897512436, 0.008177398703992367, -0.02909019961953163, 0.02690235711634159, -0.04632283374667168, 0.016327787190675735, 0.016327787190675735, 0.023958224803209305, 0.032061342149972916, 0.01274215616285801, -0.025335755199193954, 0.006293423008173704, 0.03333083167672157, 0.009494155645370483, 0.03062979318201542, 0.028090815991163254, 0.021729866042733192, -0.03416815400123596, 0.021041100844740868, 0.07238786667585373, -0.03462733328342438, 0.016989540308713913, -0.0391380675137043, 0.00494290329515934, 0.008373224176466465, -0.010263951495289803, -0.008629822172224522, 0.028739064931869507, 0.040164463222026825, 0.011135037057101727, 0.00271116872318089, 0.010513798333704472, 0.013424168340861797, -0.03514052927494049, -0.007110487669706345, -0.021581308916211128, 0.01967707648873329, 0.02854999154806137, -0.04210921376943588, 0.016219744458794594, 0.019717590883374214, -0.00761693250387907, -0.06785012036561966, -0.028874116018414497, -0.019460992887616158, -0.004433081950992346, 0.02394471876323223, -2.3489024897571653e-05, 0.0032193020451813936, -0.03746342286467552, -0.05131975933909416, 0.014909740537405014, -0.017637791112065315, 0.0240122452378273, 0.02733452431857586, -0.018812743946909904, -0.021270688623189926, 0.02316141687333584, -0.026078540831804276, -0.013559220358729362, -0.047970470041036606, 0.00034965804661624134, -0.031197011470794678, -0.027793701738119125, 0.03935415297746658, -0.0209195539355278, 0.026254108175635338, 0.03060278296470642, -0.0007634658250026405, -0.049753155559301376, 0.0070834774523973465, 0.009413124062120914, -0.009007968008518219, -0.004081946797668934, 0.026740295812487602, 0.00889317411929369, -2.235479769296944e-06, -0.005972674582153559, -0.0322774276137352, 0.013694272376596928, -0.02017676830291748, 0.004416200332343578, -0.02279677614569664, -0.024160802364349365, 0.0182185135781765, -0.026591738685965538, 0.0294953566044569, 0.027118440717458725, 0.022013476118445396, -0.00495978444814682, -0.034816402941942215, 0.012060143053531647, -0.009676476009190083, -0.028631024062633514, -0.009440134279429913, -0.025700394064188004, 0.0025727404281497, 0.0004216154629830271, -0.0027280503418296576, 0.031521137803792953, 0.014329017139971256, 0.03241248056292534, -0.030656803399324417, 0.013606488704681396, -0.006813373416662216, 0.031007938086986542, -0.026375655084848404, 0.008866163901984692, -0.017394697293639183, -0.02663225308060646, -0.025308744981884956, -0.006668192334473133, 0.009689981117844582, -0.022580694407224655, 0.0657973363995552, -0.0031197010539472103, 0.0011538504622876644, 0.005418961402028799, -0.006232649553567171, -0.015085307881236076, 0.015612010844051838, 0.00624615466222167, -0.03181825205683708, -0.035086508840322495, -0.011546946130692959, -0.00798832532018423, 0.022823788225650787, -0.006485871970653534, -0.028604011982679367, -0.01929892972111702, -0.015166339464485645, -0.007137497887015343, -0.018083462491631508, 0.011884575709700584, 0.024538947269320488, -0.0006883431342430413, 0.011600966565310955, -0.10242343693971634, -0.029711438342928886, 0.06271814554929733, -0.008744616992771626, -0.01020317804068327, -0.013174322433769703, -0.012208700180053711, 0.022756261751055717, 0.042352307587862015, -0.01193859614431858, -0.005851127672940493, -0.058720607310533524, -0.039894361048936844, -0.004949655849486589, -0.009622454643249512, 0.015409432351589203, 0.0006022474844940007, 0.016530364751815796, 0.03419516608119011, 0.024160802364349365, -0.01906934194266796, -0.0022232935298234224, -0.0010905448580160737, 0.0542638935148716, 0.013093290850520134, -0.016300775110721588, -0.027145450934767723, 0.03641001880168915, -0.006668192334473133, -0.008433997631072998, 0.018110472708940506, 0.008406986482441425, 0.007488633040338755, 0.004470221232622862, 0.00048196682473644614, 0.030386699363589287, 0.007130745332688093, 0.0011994305532425642, 0.005955792963504791, -0.003930013161152601, -0.016719436272978783, -0.04886181280016899, 0.042919524013996124, -0.034681353718042374, 0.05612761154770851, -0.013856334611773491, 0.0026081916876137257, 0.03595084324479103, -0.008785132318735123, -0.0010930771240964532, 0.01913686841726303, 0.02290481887757778, -0.013457931578159332, 0.008049098774790764, 0.012735403142869473, 0.02871205471456051, -0.05242718383669853, -0.01617923006415367, 0.005189373157918453, -0.015693042427301407, -0.025335755199193954, 0.021189657971262932, 0.02663225308060646, -0.06206989660859108, -0.01825902983546257, -0.020500892773270607, 0.016557374969124794, 0.046619947999715805, 0.0051454808562994, -0.018745217472314835, 0.0271319467574358, 0.03627496585249901, 0.025308744981884956, -0.01365375705063343, 0.021473268046975136, 0.004784217104315758, -0.003377988003194332, -0.0058241174556314945, -0.008940442465245724, -0.026821326464414597, 0.028874116018414497, -0.00014718557940796018, -0.01607118733227253, 0.00381184252910316, -0.005209630820900202, -0.028063805773854256, -0.019947180524468422, -0.005635044537484646, -0.003710553515702486, 0.0073873442597687244, 0.04694407433271408, -0.00844074971973896, 0.005391951184719801, 0.01825902983546257, 0.017394697293639183, -0.0009099128074012697, 0.03940817341208458, -0.01075689122080803, 0.007630437612533569, -0.008076108992099762, 0.020460378378629684, -0.012964991852641106, 0.009973590262234211, 0.014855719171464443, -0.020163262262940407, -0.014990771189332008, 0.015139329247176647, -0.004004291724413633, -0.0025153434835374355, 0.00751564372330904, -0.006371078081429005, -6.283083348535001e-05, 0.03800363093614578, 0.02521420828998089, 0.016098197549581528, -0.014869225211441517, 0.0032378716859966516, -0.020703470334410667, -0.0014973890502005816, -0.007232034578919411, 0.0288471058011055, -0.020122747868299484, -0.027982773259282112, 0.04259540140628815, -0.0003302443365100771, 0.01812397874891758, 0.05191398784518242, -0.009440134279429913, -0.0011968982871621847, -0.02249966189265251, 0.002030844334512949, 0.05164388194680214, -0.012418030761182308, 0.046052731573581696, -0.010972974821925163, -0.036031872034072876, 0.0185561440885067, -0.019893158227205276, 0.02004171721637249, 0.03062979318201542, 0.005233264993876219, 0.012451793998479843, 0.005378445610404015, 0.002920499537140131, -0.0011589149944484234, -0.0001921325601870194, -0.0029491980094462633, -0.01331612654030323, -0.041136838495731354, 0.01586860977113247, 0.03870590403676033, -0.05310244485735893, -0.0014720667386427522, 0.04478324204683304, 0.0003125187649857253, 0.04059663042426109, -0.04192014038562775, -0.033168770372867584, -0.01862367056310177, -0.00906198937445879, 0.03365495800971985, 0.033979080617427826, 0.02108161710202694, -0.011256583966314793, 0.02212151698768139, 0.007529148831963539, -0.02760462835431099, 0.007063219323754311, -0.017772842198610306, 0.02225656993687153, -0.003859110875055194, 0.0049395267851650715, 0.009676476009190083, 0.0236746147274971, 0.06925466656684875, 0.02895514853298664, -0.002950886031612754, -0.0026909110601991415, -0.019515013322234154, -0.000476480316137895, -0.024606473743915558, -0.01875872164964676, 0.023715130984783173, 0.04024549573659897, 0.017948409542441368, -0.020527902990579605, -0.030386699363589287, 0.016152217984199524, -0.010155909694731236, 0.04264942184090614, 0.029036179184913635, -0.017637791112065315, 0.011391635984182358, 0.013680767267942429, -0.04092075675725937, 0.004287900868803263, 0.02067646011710167, -0.0005283909267745912, -0.014896235428750515, 0.0032817635219544172, -0.021945949643850327, 0.018407586961984634, 0.006445356644690037, -0.0343032069504261, 0.0008385885157622397, 0.03195330128073692, -0.004946279339492321, 0.04572860524058342, -0.013086538761854172, 0.04724118858575821, 0.019123362377285957, 0.017232634127140045, 0.017070572823286057, -0.014058913104236126, -0.016827479004859924, 0.0050475685857236385, 0.012782671488821507, 0.008947194553911686, 0.005297414492815733, -0.018839754164218903, -0.0080693569034338, -0.055533379316329956, -0.01600366085767746, -0.00014855719928164035, -0.01986614800989628, 0.035626716911792755, -0.008366471156477928, 0.0019278672989457846, -0.011641481891274452, 0.01607118733227253, 0.003946894779801369, 0.02787473239004612, 0.013809066265821457, 0.004193364642560482, 0.014909740537405014, 0.018367070704698563, 0.010338230058550835, 0.01128359418362379, -0.01751624420285225, 0.013782056048512459, 0.004996923729777336, 0.011823802255094051, 0.009514412842690945, -0.02773967944085598, -0.003808466251939535, -0.004335169214755297, 0.03668012097477913, 0.035923831164836884, 0.04629582539200783, -0.009825033135712147, 0.018610164523124695, 0.0010787277715280652, 0.018245525658130646, 0.0014264867641031742, 0.03252052143216133, 0.029063189402222633, 0.016773458570241928, 0.007272549904882908, 0.0038759922608733177, -0.018772227689623833, -0.006182005163282156, 0.025835447013378143, 0.01422097533941269, -0.003636274952441454, -0.006668192334473133, -0.009257813915610313, -0.011763028800487518, -0.0077519845217466354, 0.018475113436579704, -0.01277591846883297, -0.022351104766130447, 0.033438872545957565, 0.014058913104236126, -0.023093892261385918, -0.013154064305126667, 0.03173721954226494, -0.05204904079437256, -0.01738119125366211, -0.003710553515702486, -0.02626761421561241, -0.02216203324496746, 0.0013623370323330164, -0.03400609269738197, -0.0009689980652183294, 0.05123872682452202, -0.037139300256967545, 0.007691211067140102, -0.016368301585316658, 0.016773458570241928, -0.027928752824664116, -0.002527160570025444, 0.02663225308060646, -0.020770996809005737, 0.01640881784260273, -0.01859666034579277, 0.016530364751815796, -0.007610179949551821, 0.024944104254245758, -0.015058297663927078, -0.02410678192973137, 0.005256899166852236, -0.007137497887015343, 0.0322774276137352, 0.008562296628952026, 0.014018396846950054, 0.01990666426718235, -0.012235711328685284, -0.03089989721775055, 0.02175687626004219, 0.01551747415214777, -0.0032885160762816668, 0.015193349681794643, 0.00353498593904078, 0.04686304181814194, 0.010162662714719772, 0.006772857625037432, 0.0398673489689827, 0.036464039236307144, 0.02532224915921688, 0.036464039236307144, 0.0019650065805763006, 0.02013625204563141, 0.01717861369252205, 0.05812637880444527, -0.012478804215788841, 0.010061373934149742, 0.033708978444337845, 0.014842214062809944, -0.030386699363589287, 0.008231419138610363, 0.005358187947422266, -0.006870770361274481, 0.007772242184728384, 0.013309374451637268, -0.01940697245299816, 0.012539577670395374, 0.017840368673205376, -0.006360949017107487, -0.013019012287259102, -0.01667892187833786, 0.014882730320096016, -0.005628291983157396, -0.027010399848222733, 0.002054478507488966, 0.00411908607929945, -0.013633498921990395, 0.02353956364095211, 0.019460992887616158, -0.005402079783380032, 0.002724674064666033, 0.05639771372079849, -0.006178628653287888, -0.015287886373698711, 0.02565987966954708, -0.014166954904794693, 0.0018147611990571022, 0.004244009032845497, -0.01778634823858738, -0.02031181938946247, 0.008447502739727497, -0.03187227249145508, 0.012438288889825344, -0.02376915141940117, 0.01715160347521305, 0.008190903812646866, -0.01721912994980812, 0.0001918160414788872, 0.03881394490599632, 0.004000915214419365, -2.0495195713010617e-05, 0.03862487152218819, 0.026524212211370468, -0.008805390447378159, 0.01805645227432251, -0.03181825205683708, -0.010702870786190033, 0.0075088911689817905, -0.012789424508810043, 0.010520550422370434, 0.014369532465934753, 0.0033526658080518246, -0.03351990506052971, 0.014261490665376186, 0.04405396059155464, -0.0026875347830355167, 0.01638180762529373, -0.035221561789512634, 0.017948409542441368, 0.019825633615255356, -0.0015573183773085475, -0.001976823667064309, -0.03624795749783516, -0.019015321508049965, -0.010736634023487568, -0.013795561157166958, 0.034816402941942215, -0.003406686708331108, -0.02665926329791546, -0.0008280375623144209, -0.0377335287630558, -0.04067766293883324, 0.007610179949551821, 0.0024596345610916615, -0.025875963270664215, 0.017273150384426117, -0.0023482164833694696, 0.055803485214710236, 0.01640881784260273, 0.03581579029560089, 0.02723998762667179, -0.0070834774523973465, 0.003114636754617095, -0.005965922027826309, -0.01119581051170826, -0.0548851303756237, -0.03335784375667572, 0.018880268558859825, -0.016530364751815796, -0.0038523580878973007, -0.03541063517332077, 0.015814589336514473, 0.015139329247176647, 0.004757206421345472, 0.008184150792658329, 0.022769765928387642, 0.022810282185673714, -0.008569049648940563, 0.009581939317286015, 0.022378114983439445, -0.019852643832564354, -0.021837908774614334, 0.005908525083214045, -0.04008343443274498, 0.018137482926249504, -0.03235846012830734, -0.005807235836982727, 0.0038624871522188187, -0.00936585571616888, -0.03046773001551628, 0.021527288481593132, 0.026888852939009666, -0.008899926207959652, 0.01785387471318245, 0.003205796703696251, 0.0029171230271458626, -0.011438904330134392, -0.040002401918172836, -0.014166954904794693, -0.003271634690463543, -0.006458861753344536, 0.018745217472314835, 0.01977161318063736, -0.01748923398554325, 0.044432107359170914, 0.0157740730792284, 0.0010525614488869905, -0.006695202551782131, -0.00439594266936183, -0.018110472708940506, -0.001748923328705132, -0.023485541343688965, 0.011911585927009583, 0.010898696258664131, 0.018407586961984634, 0.033411864191293716, 0.037544455379247665, 0.002388732274994254, -0.005371693056076765, -0.015490463934838772, -0.02414729632437229, 0.03859785944223404, 0.004422952886670828, -0.012235711328685284, 0.0026875347830355167, 0.020028211176395416, 0.011155295185744762, 0.00944688729941845, -0.026186581701040268, -0.0037679506931453943, -0.01970408670604229, -0.002032532589510083, -0.012910970486700535, 0.024660494178533554, -0.026240602135658264, 0.008926937356591225, 0.017678305506706238, 0.020460378378629684, -0.014018396846950054, 0.022405127063393593, 0.007711469195783138, -0.03297969698905945, 0.027145450934767723, -0.02155429869890213, 0.021189657971262932, 0.04767335578799248, -0.00706997187808156, 0.01771882176399231, 0.025308744981884956, 0.015557990409433842, -0.009298330172896385, -0.022553684189915657, 0.00030471108038909733, 0.04837562516331673, 0.006982188206166029, 0.003919884096831083, -0.019879654049873352, 0.04383787885308266, -0.0006528919911943376, 0.01043951977044344, -0.023242449387907982, -0.029009168967604637, 0.023296469822525978, 0.0012163120554760098, -0.03324980288743973, 0.028225867077708244, -0.025565342977643013, -0.009764259681105614, -0.010061373934149742, 0.0020240917801856995, -0.002231734339147806, -0.0025102789513766766, -0.01570654660463333, -0.0013724658638238907, 0.0005271248519420624, 0.008373224176466465, -0.003808466251939535, -0.023323480039834976, 0.019731096923351288, -0.01798892579972744, 0.021203164011240005, 0.010209931060671806, -0.02087903954088688, 0.011432151310145855, 0.02784772217273712, -0.00946714449673891, -0.0045276181772351265, -0.01016941573470831, -0.0019548777490854263, 0.011661740019917488, -0.011688750237226486, -0.023188427090644836, -0.008217914029955864, 0.0041258386336266994, 0.03351990506052971, 0.033871039748191833, 0.031224021688103676, 0.0016273765359073877, 0.032331448048353195, -0.03538362309336662, 0.022756261751055717, -0.033168770372867584, -0.0021490149665623903, -0.01349844690412283, 0.0014864160912111402, 0.011276842094957829, 0.0398673489689827, -0.02010924182832241, 0.025403279811143875, -0.003845605533570051, 0.007205023895949125, 0.016786962747573853, -0.00652301125228405, -0.027523597702383995, 0.00559115270152688, 0.03449228033423424, -0.02511967159807682, -0.005158986430615187, 0.04081271216273308, 0.004048183560371399, -0.025700394064188004, -0.008413739502429962, -0.020500892773270607, 0.005192749202251434, -0.011128284968435764, 0.01111477892845869, 0.009966837242245674, 0.03732837364077568, 0.00019118298951070756, 0.016300775110721588, -0.007961315102875233, -0.007812757976353168, -0.038516830652952194, 0.012330247089266777, 0.015476958826184273, -0.009156525135040283, -0.00953467097133398, 0.013133807107806206, -0.03884095326066017, 0.015058297663927078, -0.015814589336514473, -0.018421093001961708, 0.004777464549988508, 0.028387930244207382, 0.0042001171968877316, 0.03422217443585396, 0.011445656418800354, 0.015598505735397339, -0.011162047274410725, -0.007860026322305202, 0.01523386500775814, -0.015125823207199574, 0.007839768193662167, 0.02922525256872177, -0.009088999591767788, -0.03724734112620354, 0.01731366664171219, 0.00012566166697070003, -0.01074338611215353, 0.008704100735485554, 0.014369532465934753, -0.024755030870437622, -0.0031669693998992443, 0.000786677876021713, -0.022918323054909706, 0.012046637944877148, 0.0028614141047000885, 0.013120301067829132, -0.03376299887895584, -0.0343032069504261, 0.043864887207746506, 0.004558004904538393, 0.016192734241485596, 0.016867995262145996, 0.0030251648277044296, 0.0012104035122320056, -0.004777464549988508, 0.007313065696507692, 0.016597891226410866, -0.0015412808861583471, -0.005938911344856024, 0.005577647592872381, -0.032061342149972916, -0.02830689772963524, -0.039489202201366425, 0.018772227689623833, 0.009048483334481716, -0.026510706171393394, -0.007920799776911736, -0.00706997187808156, 0.0233369842171669, 0.01708407700061798, 0.023688120767474174, -0.00926456693559885, 0.0025744286831468344, 0.0011530064512044191, -0.008818895556032658, 0.010750139132142067, 0.010709622874855995, -0.0025474182330071926, 0.005081331357359886, -0.024187812581658363, 0.003957023378461599, -0.009122762829065323, -0.028198856860399246, 0.018299546092748642, 0.015125823207199574, -0.027361534535884857, 0.011202563531696796, -0.008805390447378159, -0.00045706660603173077, 0.00852178130298853, 0.005013805348426104, 0.008481265045702457, -0.013896850869059563, -0.0008955635712482035, -0.023661110550165176, 0.0104597769677639, 0.047430261969566345, 0.016462838277220726, 0.021527288481593132, 0.022337600588798523, 0.012181689962744713, 0.0004410291730891913, -0.01074338611215353, 0.0501042902469635, 0.02004171721637249, 0.03022463619709015, 0.015382422134280205, -0.0016991229495033622, -0.03597785159945488, 0.03324980288743973, 0.010918954387307167, 0.030791854485869408, -0.02568688988685608, 0.01846160739660263, 0.0027077924460172653, 0.025781426578760147, 0.021608319133520126, 0.007961315102875233, -0.014045407995581627, -0.01282993983477354, 0.010399003513157368, -0.04065065085887909, 0.01663840562105179, 0.002132133347913623, 0.04240632802248001, 0.012877208180725574, 0.029009168967604637, -0.02737504057586193, -0.0041866120882332325, -0.0019042331259697676, 0.036869194358587265, 0.0082246670499444, -0.03049474023282528, -0.002381979487836361, 0.012532825581729412, 0.027226481586694717, 0.019393466413021088, -0.01896130107343197, 0.0041022044606506824, 0.06217793747782707, -0.012269473634660244, -0.0033003331627696753, 0.0002331757132196799, -0.029549377039074898, 0.03019762597978115, 0.030521750450134277, 0.014356027357280254, -0.023985235020518303, 0.005189373157918453, -0.013579478487372398, -0.00586800929158926, -0.004618778359144926, -0.013660509139299393, 0.016030671074986458, -0.03662610054016113, 0.021108627319335938, 0.009419877082109451, -0.02105460688471794, 0.02565987966954708, 0.0034218800719827414, 0.040164463222026825, 0.006546645425260067, 0.00513535225763917, 0.02787473239004612, 0.015287886373698711, -0.0011276841396465898, 0.03171020746231079, 0.007488633040338755]" -How Messari Uses Data to Open the Cryptoeconomy to Everyone,"system’s performance is obvious just by looking at our logs.Whenever our database upsert backlog is longer than a few thousand rows, we log that with a timestamp to easily see how large the backlog is and how quickly we can catch up.Our backlog tends to be shorter and more stable with TimescaleDB than it was previously – and opur developer experience has improved as well.Speaking for myself, I didn’t understand much about our InfluxDB implementation’s inner workings, but talking it through with my teammates, it seems highly customized and hard to explain from scratch. The hosted TimescaleDB implementation with Timescale Cloud is much easier to understand, particularly because we can easily view the live database dashboard, complete with all our table definitions, chunks, policies, and the like.Looking ahead, we have a lot of projects that we’re excited about! One of the big ones is that, with TimescaleDB, we’ll have a much easier time deriving metrics from multiple existing data sets.In the past, because InfluxDB is NoSQL, linking time-series together to generate new, derived, or aggregated metrics was challenging.Now, we can use simple JOINs in one query to easily return all the data we need to derive a new metric.Many other projects have to remain under wraps for now, but we think TimescaleDB will be a crucial part of our infrastructure for years to come, and we’re excited to scale with it.Getting started advice & resourcesTimescaleDB is complex, and it's important to understand the implementation of hypertables quickly. To best benefit from TimescaleDB’s features, you need to think about how to chunk your hypertables, what retention and compression policies to set, and whether/how to set up continuous aggregates. (Particularly with regard to your hypertable chunk size, because it's hard to change that decision later.)In our case, the “answers” to three of these questions were addressed from our previous InfluxDB setup: compress after 48 hours (the maximum time in the past we expect to ingest a trade); retain everything; and rollup all of our price and volume data into our particular set of intervals (5m, 15m, 30m, 1h, 6h, 1d, and 1w).The most difficult part was understanding how long our chunks should be (i.e., setting ourchunk_time_intervalon each hypertable). We settled on one day, mostly by default, with some particularly small metrics chunked after a year instead.I’m",https://www.timescale.com/blog/how-messari-uses-data-to-open-the-cryptoeconomy-to-everyone/,512,"[-0.02968621253967285, -0.006253279745578766, 0.06494036316871643, 0.005330024287104607, 0.06726980954408646, 0.04849221557378769, 0.018181029707193375, -0.020794551819562912, -0.006505399476736784, 0.038407422602176666, 0.04525371640920639, 0.006565766409039497, -0.0010830495739355683, -0.044571928679943085, 0.046986598521471024, 0.042952682822942734, -0.001510942936874926, -0.007769549265503883, -0.01243553962558508, 0.01251366175711155, -0.020055947825312614, 0.02559548057615757, 0.02140532061457634, 0.025112546980381012, -0.014203929342329502, -0.030225960537791252, -0.03843583166599274, 0.045424167066812515, 0.015283428132534027, -0.047810424119234085, 0.01481469813734293, -0.031930431723594666, -0.05602029711008072, 0.00031248643063008785, 0.05414537712931633, 0.0027484602760523558, 0.03312356397509575, 0.031049789860844612, 0.02492789551615715, 0.003501268569380045, -0.019445179030299187, 0.03281107544898987, -0.0004334417753852904, -0.015311835333704948, -0.013898544944822788, -0.0005282086203806102, -0.043804917484521866, -0.015226611867547035, -0.014914125204086304, 0.0705651193857193, -0.03443032503128052, 0.0190900806337595, -0.05042394995689392, -0.03400420770049095, 0.06869020313024521, -0.02626306563615799, 0.0024750346783548594, 0.025396624580025673, 0.0006356258527375758, -0.028379449620842934, -0.018948040902614594, -0.07295137643814087, 0.01619247905910015, 0.01994231715798378, -0.01448090560734272, 0.023195017129182816, -0.026845425367355347, 0.05584985017776489, -0.020283211022615433, 0.05638960003852844, 0.027584031224250793, -0.006214219145476818, -0.019828684628009796, -0.01409740000963211, 0.02531140111386776, -0.04494123160839081, -0.0071481275372207165, 0.047838833183050156, 0.003955794032663107, -0.004183057229965925, -0.0013902095379307866, -0.03738474100828171, -0.04411740228533745, 0.04278223589062691, 0.02117805741727352, -0.023266036063432693, -0.01737140491604805, -0.03281107544898987, 0.02025480382144451, -0.00930357351899147, -0.008792231790721416, 0.04772520065307617, -0.01341561134904623, 0.00840162392705679, 0.03175998479127884, -0.01737140491604805, 0.007961302064359188, 0.014104501344263554, -0.017698096111416817, 0.013813321478664875, 0.05008305236697197, -0.008998189121484756, -0.018266253173351288, -0.010880209505558014, 0.04147547483444214, 0.0034142695367336273, -0.018266253173351288, -0.003945141099393368, -0.003973549231886864, 0.009822016581892967, -0.055650994181632996, -0.02937372587621212, -0.04531053453683853, -0.001871367683634162, -0.014218132942914963, 0.01409740000963211, -0.0705651193857193, 0.0044458298943936825, 0.018365681171417236, -0.006920864339917898, -0.00975099764764309, -0.00632785027846694, -0.039231251925230026, 0.044657152146101, 0.009033698588609695, -0.03468599542975426, 0.022655267268419266, -0.029430540278553963, -0.04178795963525772, 0.002382709179073572, 0.05141822248697281, -0.02045365795493126, 0.024175086989998817, -0.039458516985177994, -0.026944853365421295, 0.0013937605544924736, -0.0356234535574913, 0.004065874498337507, -0.0031692516058683395, -0.027811292558908463, -0.01901906169950962, -0.021646788343787193, 0.026405103504657745, -0.024785855785012245, -0.0367029532790184, 0.05477035045623779, -0.01273382268846035, 0.057213425636291504, -0.035737086087465286, 0.0006853395607322454, -0.0018252049339935184, 0.004996232222765684, -0.01927473209798336, -0.04320835322141647, 0.06601986289024353, -0.0037249804008752108, 0.01971505396068096, 0.02137691341340542, 0.013202551752328873, -0.03854946419596672, -0.006093485746532679, 0.061247341334819794, -0.008316400460898876, 0.021206466481089592, -0.016078848391771317, 0.0001946382108144462, -0.04289586469531059, -0.0532931424677372, -0.08101921528577805, -0.046730928122997284, -0.027569826692342758, -0.032498590648174286, 0.001979672582820058, -0.009069208987057209, 0.046219583600759506, 0.0062071168795228004, -0.05192956328392029, -0.05744069069623947, 0.027129504829645157, -0.02515515871345997, -0.04957171157002449, 0.006285238545387983, -0.03428828343749046, 0.03337923437356949, -0.017414016649127007, -0.015567506663501263, -0.08448497205972672, 0.026845425367355347, 0.040282342582941055, 0.01930313929915428, -0.03940169885754585, 0.03954374045133591, 0.004800927825272083, 0.018791798502206802, -0.009644468314945698, -0.045111678540706635, 0.04275382682681084, 0.012108849361538887, -0.022342780604958534, 0.024331331253051758, 0.05283861607313156, 0.029004422947764397, 0.04278223589062691, -0.016874268651008606, 0.016618596389889717, 0.026064209640026093, 0.01056062150746584, 0.02657555229961872, -0.04576506093144417, -0.021419525146484375, -0.009587652049958706, 0.01252786535769701, -0.013280673883855343, 0.004389014095067978, -0.05656004697084427, 0.017073122784495354, -0.06619030982255936, -0.01857873983681202, -0.005780999083071947, -0.01129212323576212, 0.030055513605475426, 0.03795289993286133, 0.007726937532424927, -0.023479094728827477, -0.03042481653392315, 0.03295311704277992, 0.011086166836321354, -0.03499848023056984, 0.01984288915991783, -0.01355765014886856, 0.010177114978432655, -0.03738474100828171, -0.005209290888160467, -0.04744112491607666, 0.01647655852138996, 0.02245641127228737, 0.0032171900384128094, -0.04817972704768181, -0.008707008324563503, -0.05085006728768349, -0.012421336024999619, 0.012783536687493324, -0.025140954181551933, -0.004694398492574692, -0.016817452386021614, 0.023109791800379753, -0.05366244539618492, -0.06528125703334808, 0.004911008290946484, 0.03746996447443962, 0.01762707531452179, -0.02721472829580307, -0.0023525257129222155, -0.023763174191117287, -0.015709545463323593, -0.06266773492097855, -0.0008966230088844895, 0.01924632489681244, 0.009836221113801003, 0.006043771747499704, 0.003994855098426342, -0.033009931445121765, -0.01575215719640255, 0.0038918766658753157, -0.03309515491127968, 0.01755605638027191, 0.01124241016805172, -0.022527432069182396, -0.01899065263569355, -0.03122023679316044, 0.04800928011536598, 0.016220886260271072, 0.0016893798019737005, -0.05852018669247627, -0.0011301001068204641, -0.04656048119068146, 0.006121893413364887, 0.002290383679792285, -0.005489818751811981, -0.0007843232015147805, -0.009317777119576931, -0.04832176864147186, 0.007165882270783186, 0.006292340811342001, 0.03073730319738388, -0.007070005871355534, -0.0016032685525715351, 0.039174437522888184, 0.038947172462940216, -0.02536821737885475, 0.003998406231403351, 0.02328024059534073, 0.03823697566986084, -0.0379813052713871, -0.012215378694236279, 0.012421336024999619, -0.031390681862831116, -0.002807051409035921, -0.03309515491127968, -0.020368434488773346, 0.005926589481532574, 0.007155229337513447, 0.004207914229482412, -0.01507036853581667, 0.019928112626075745, 0.02829422615468502, 0.0028354593086987734, -0.006242626812309027, -0.007741141598671675, 0.0149425333365798, 0.014395682141184807, -0.04090731590986252, 0.023933621123433113, -0.008096239529550076, -0.04371969401836395, -0.015794768929481506, 0.06744025647640228, -0.01125661376863718, 0.0006476104026660323, -0.03957214578986168, -0.043549247086048126, -0.10056381672620773, -0.0009339083335362375, 0.027924925088882446, 0.04502645507454872, -0.01683165691792965, 0.027513010427355766, 0.0010741720907390118, 0.002936662407591939, 0.00044875539606437087, 0.012087543494999409, -0.02521197497844696, 0.024913690984249115, 0.002728929976001382, -0.03187361732125282, -0.05042394995689392, 0.027541419491171837, -0.0032988626044243574, -0.01855033077299595, 0.040310751646757126, -0.021902458742260933, -0.026973260566592216, -0.08062150329351425, 0.0060686287470161915, 0.005479165818542242, 0.004598522093147039, 0.011306327767670155, -0.0032438223715871572, 0.015098776668310165, -0.01680324785411358, -0.043492432683706284, -0.008536561392247677, 0.008259585127234459, -0.015326039865612984, 0.030055513605475426, 0.028152188286185265, 0.00460562389343977, -0.027299951761960983, -0.02893340401351452, -0.011157186701893806, -0.019857093691825867, 0.01962983049452305, 0.04065164551138878, -0.0027378073427826166, -0.025325605645775795, 0.0025780131109058857, -0.03593594208359718, -0.01654757745563984, -0.03252699598670006, -0.011228205636143684, 0.041361842304468155, 0.0011203349567949772, -0.028280023485422134, -0.027868108823895454, -0.06573578715324402, -0.010077687911689281, 0.06033829227089882, 0.03479962795972824, -0.011448366567492485, 0.04937285929918289, 0.03443032503128052, -0.0006169831613078713, 0.016277702525258064, -7.512547017540783e-05, 0.0367029532790184, 0.04800928011536598, -0.000813174934592098, 0.029018627479672432, -0.035140521824359894, -0.0017541853012517095, 0.014431191608309746, 0.033833760768175125, -0.0015606567030772567, -0.016973694786429405, 0.01482890173792839, 0.009729691781103611, 0.0003497717552818358, 0.027967536821961403, 0.06562215089797974, 0.00689955847337842, 0.04099253937602043, -0.0057241832837462425, -0.05499761179089546, -0.015439670532941818, -0.008884557522833347, -0.007400247268378735, 0.008408726193010807, 0.005550185218453407, -0.013678384013473988, -0.037271108478307724, -0.011995217762887478, -0.030794117599725723, 0.02908964641392231, -0.017257774248719215, 0.03505529835820198, -0.03826538473367691, -0.03428828343749046, 0.07601942867040634, 0.026618164032697678, 0.05823611095547676, -0.05477035045623779, -0.02330864779651165, -0.026817018166184425, -0.005983405280858278, -0.05306587740778923, 0.046446848660707474, 0.018138417974114418, -0.02940213307738304, -0.03658932074904442, -0.03852105513215065, -0.000826934992801398, -0.005504022352397442, 0.04630481079220772, 0.00042722755460999906, -0.0067894780077040195, 0.011057758703827858, 0.016391335055232048, -0.017414016649127007, 0.02251322753727436, 0.0015171571867540479, -0.010510907508432865, 0.015098776668310165, 0.025609685108065605, 0.008465541526675224, -0.029544172808527946, -0.0045204004272818565, -0.030510040000081062, -0.012115951627492905, 0.01765548437833786, -0.03369171917438507, 0.0442594438791275, 0.005447207018733025, -0.020780349150300026, 0.014630046673119068, -0.018919633701443672, -0.03482803329825401, 0.03832219913601875, -0.00494651822373271, 0.03190202638506889, -0.014310458675026894, -0.06113371253013611, 0.0051666791550815105, -0.02578013204038143, -0.026319880038499832, 0.00997115857899189, -0.020183783024549484, 0.04610595479607582, -0.0025602581445127726, 0.010468295775353909, -0.0035474312026053667, 0.011533590033650398, 0.017186753451824188, 0.0028620916418731213, 0.0023489748127758503, -0.019587218761444092, 0.016916880384087563, 0.018252048641443253, 0.014985145069658756, 0.029174869880080223, -0.0371006615459919, 0.0392596609890461, -0.04329357668757439, -0.021291689947247505, 0.06709936261177063, 0.012208277359604836, 0.0532931424677372, 0.02410406805574894, -0.014416988007724285, -0.026532938703894615, -0.013088921085000038, -0.027271544560790062, 0.003293536137789488, 0.04656048119068146, -0.017257774248719215, -0.006697152741253376, -0.0003233613388147205, -0.06340634077787399, -0.038350608199834824, 0.03252699598670006, 0.00356518616899848, 0.04389014095067978, -0.02137691341340542, 0.04531053453683853, 0.05903153121471405, -0.008813537657260895, 0.006530256476253271, -0.02168940007686615, -0.013088921085000038, -0.010901515372097492, -0.03931647539138794, -0.003616675501689315, 0.017200957983732224, 0.04516849294304848, 0.037072256207466125, -0.0433788001537323, 0.03471440449357033, 0.0195304024964571, 0.012343214824795723, 0.0024377494119107723, 0.002599318977445364, -0.03511211276054382, -0.03746996447443962, -0.03099297359585762, -0.008948475122451782, 0.004925212357193232, 0.01768389157950878, -0.04113457724452019, -0.010013770312070847, -0.028237411752343178, 0.003613124368712306, 0.01860714703798294, -0.03874832019209862, 0.019587218761444092, -0.0008668835507705808, -0.036560915410518646, 0.03911761939525604, -0.031362276524305344, -0.033805351704359055, -0.02759823389351368, 0.016433946788311005, -0.003582941135391593, 0.05258294567465782, 0.022470615804195404, 0.026021597906947136, -0.004889702424407005, -0.025737520307302475, 0.023351259529590607, -0.0037178783677518368, -0.006484093610197306, 0.03369171917438507, 0.020496269688010216, -0.022910937666893005, 0.014615843072533607, 0.025993190705776215, 0.014140011742711067, 0.005315820686519146, 0.016561781987547874, 0.028947606682777405, 0.015041961334645748, -0.0009756323997862637, -0.005347779486328363, -0.019033264368772507, -0.003827958833426237, -0.00025300748529843986, -0.02016957849264145, 0.009523734450340271, -0.0017328793182969093, -0.01845090463757515, -0.06170186772942543, 0.008408726193010807, 0.022243352606892586, -0.017485037446022034, 0.010404378175735474, -0.016149867326021194, -0.013429814949631691, 0.007428654935210943, -0.054259009659290314, -0.006033118814229965, 0.017002103850245476, -0.008799334056675434, -0.03400420770049095, -0.01984288915991783, -0.028564101085066795, 0.017953766509890556, -0.041390251368284225, 0.008444235660135746, 0.004815131891518831, 0.019857093691825867, 0.02775447815656662, -0.040055081248283386, 0.022030293941497803, 0.013074716553092003, 0.010944127105176449, 0.014459599740803242, 0.022030293941497803, 0.023862600326538086, -0.007954200729727745, -0.0036930216010659933, -0.030027106404304504, 0.02416088432073593, 0.012030728161334991, 0.013664179481565952, -0.015127184800803661, -0.05039554089307785, -0.038634687662124634, 0.02556707337498665, -0.011043555103242397, 0.02994188293814659, 0.028336837887763977, -0.011739547364413738, 0.027953332290053368, 0.0042185671627521515, -0.00916153471916914, -0.050225093960762024, -0.033549681305885315, -0.023962028324604034, -0.02369215339422226, 0.004960722289979458, 0.01519820373505354, -0.01796797104179859, -0.023479094728827477, -0.008891659788787365, -0.028919199481606483, -0.026760201901197433, 0.007868976332247257, 0.02654714323580265, -0.018280457705259323, -0.04442989081144333, -0.017456628382205963, 0.038663096725940704, -0.0015606567030772567, 0.016078848391771317, 0.037299517542123795, 0.020013336092233658, -0.013202551752328873, 0.03823697566986084, 0.03255540505051613, 0.0442594438791275, -0.0018837960669770837, -0.024572797119617462, 0.04238452389836311, 0.010667150840163231, 0.012961084954440594, 0.00632074847817421, 0.009033698588609695, -0.01914689689874649, -0.004548808094114065, 0.029316909611225128, -0.02025480382144451, -0.025950578972697258, -0.005880426615476608, -0.033776942640542984, 0.06721299141645432, 0.03988463431596756, 0.02197347767651081, -0.0007306145853362978, -0.013330387882888317, -0.0392596609890461, -0.002688093576580286, 0.014530619606375694, -0.04585028439760208, -0.0156527291983366, -0.020595697686076164, 0.006768172141164541, -0.012506559491157532, 0.020709328353405, 0.014324662275612354, 0.004048119764775038, 0.045083269476890564, 0.015184000134468079, -0.012634394690394402, 0.04116298630833626, 0.011221104301512241, 0.017186753451824188, 0.014658454805612564, 0.004772520158439875, 0.018436700105667114, -0.01536865159869194, 0.010084789246320724, 0.07249685376882553, -0.03423146903514862, 0.01971505396068096, -0.03465758636593819, 0.0014612291706725955, -0.006118342280387878, -0.016647005453705788, 0.007393145002424717, 0.014757882803678513, 0.03900399059057236, 0.03173157945275307, 0.010006668046116829, 0.0019175304332748055, -0.012684108689427376, -0.040310751646757126, 0.005347779486328363, -0.0298850666731596, 0.033805351704359055, 0.04477078467607498, -0.010248134844005108, -0.009935648180544376, 0.00963736604899168, -0.018308864906430244, -0.05408856272697449, -0.0457366518676281, -0.01714414171874523, 0.008245380595326424, 0.025140954181551933, -0.0027715417090803385, 0.0401403047144413, -0.03525415062904358, -0.03712907060980797, 0.007499674800783396, -0.004197260830551386, 0.007180086337029934, -0.0004975813790224493, 0.014118705876171589, -0.016888471320271492, 0.020212192088365555, -0.028791364282369614, -0.008579173125326633, -0.03175998479127884, -0.010610335506498814, -0.02937372587621212, -0.005227046087384224, 0.03960055485367775, -0.014125807210803032, 0.00539039121940732, 0.021831439808011055, 0.029970290139317513, -0.010468295775353909, -0.0050033340230584145, -0.002572686644271016, 0.016078848391771317, -0.007144576404243708, 0.019203711301088333, -0.008884557522833347, -0.018436700105667114, -0.02312399633228779, -0.03428828343749046, 0.0004820458416361362, -0.05124777555465698, 0.018791798502206802, -0.015226611867547035, 0.005816509015858173, 0.01978607289493084, -0.05246931314468384, 0.02194507047533989, 0.04113457724452019, 0.03099297359585762, -0.003412493970245123, -0.025425033643841743, 0.013358795084059238, -0.010035076178610325, -0.022214945405721664, -0.007141025271266699, -0.030566856265068054, 0.006324299611151218, -0.00020628987113013864, 0.0033130664378404617, 0.031646352261304855, 0.021831439808011055, 0.026944853365421295, -0.027385175228118896, 0.010013770312070847, -0.019487790763378143, 0.020822960883378983, -0.03261221945285797, 0.01991390809416771, -0.011824770830571651, -0.0530942864716053, -0.02492789551615715, -0.020908184349536896, 0.01593680866062641, -0.005266106687486172, 0.06994014978408813, -0.013848830945789814, 0.0013076491886749864, 0.004495543427765369, 0.006896007806062698, -0.014310458675026894, -0.006104138679802418, -0.011277919635176659, -0.02569490857422352, -0.02759823389351368, -0.0063704620115458965, -0.010233931243419647, 0.021888254210352898, -0.0135434465482831, -0.03871991112828255, -0.013770709745585918, -0.028095372021198273, -0.010660048574209213, 0.002439524745568633, 0.018408292904496193, 0.01984288915991783, -0.006807233206927776, 0.008046525530517101, -0.09465498477220535, -0.02197347767651081, 0.05494079738855362, -0.02038263902068138, -0.020240599289536476, -0.017470832914114, -0.008756722323596478, 0.02407565899193287, 0.02883397601544857, -0.01778331957757473, -0.011022249236702919, -0.041333433240652084, -0.006910211406648159, -0.0050779045559465885, -0.009090514853596687, 0.010844700038433075, -0.007613305933773518, 0.03803812339901924, 0.02636249177157879, 0.03337923437356949, -0.018152620643377304, 0.006828539073467255, -0.02328024059534073, 0.06851975619792938, 0.029075443744659424, -0.022442208603024483, -0.024274514988064766, 0.020340027287602425, -0.0019246323499828577, -0.022527432069182396, 0.014111603610217571, 0.014303356409072876, -0.005667367950081825, -0.0023631786461919546, -0.017229365184903145, 0.007734039332717657, 0.00976520124822855, 0.005720632616430521, -0.006029568146914244, -0.017598668113350868, -0.020652512088418007, -0.05062280222773552, 0.05812247842550278, -0.04795246571302414, 0.058349739760160446, -0.010567722842097282, 0.02187405154109001, 0.04156069830060005, -0.012819046154618263, 0.0036504098679870367, 0.024942100048065186, 0.03266903758049011, -0.00573128554970026, 0.025013118982315063, 0.03255540505051613, 0.031049789860844612, -0.0464184395968914, -0.038094937801361084, -0.019047468900680542, 0.01470106653869152, -0.022626858204603195, 0.029771436005830765, 0.02749880589544773, -0.05576462671160698, -0.025268789380788803, -2.3525257347500883e-05, 0.011071962304413319, 0.020936591550707817, 0.004399667028337717, -0.012350316159427166, 0.017698096111416817, 0.02060990035533905, 0.020595697686076164, -0.00423987302929163, 0.03414624556899071, 0.029174869880080223, 0.00022382284805644304, -0.013458223082125187, -0.027356768026947975, -0.01587999239563942, 0.023962028324604034, 0.0009374593500979245, -0.025325605645775795, 0.012627293355762959, -0.019260527566075325, -0.020411046221852303, -0.00619291327893734, 0.004797377157956362, -0.003969998098909855, 0.012826148420572281, 0.047895647585392, 0.015979420393705368, -0.009687080048024654, 0.008444235660135746, 0.01930313929915428, 0.010205523110926151, 0.017328793182969093, 0.002391586545854807, 0.016235090792179108, -0.019445179030299187, 0.016078848391771317, -0.012868760153651237, 0.024601206183433533, 0.001885571633465588, -0.017073122784495354, -0.0025371769443154335, 0.01138444896787405, 0.003359229303896427, 0.025410829111933708, 0.020524676889181137, -0.0034071675036102533, -0.015411263331770897, 0.044373076409101486, 0.030623670667409897, 0.005805856082588434, 0.019104285165667534, 0.017073122784495354, -0.03187361732125282, 0.009232553653419018, -0.025297198444604874, 0.028237411752343178, -0.009374593384563923, -0.044571928679943085, 0.01455902773886919, -0.003483513602986932, 0.027129504829645157, 0.04389014095067978, -0.017300385981798172, 0.009942750446498394, -0.017442425712943077, 0.015084573067724705, 0.055082838982343674, -0.006682948675006628, 0.05707138776779175, 0.010503805242478848, -0.012790638022124767, 0.017016306519508362, -0.002712950576096773, 0.005855569615960121, 0.028592510148882866, -0.003934488166123629, 0.006285238545387983, -0.000843802175950259, -0.008579173125326633, 0.016121460124850273, 0.004161751363426447, 0.007414450868964195, -0.022016089409589767, -0.019061673432588577, 0.03045322373509407, 0.026788610965013504, -0.052952248603105545, -0.02705848589539528, 0.06272455304861069, -0.0011256614234298468, 0.03661772981286049, -0.0511341467499733, -0.016107255592942238, -0.01230770442634821, -0.003204761538654566, 0.01019131951034069, 0.0287061408162117, 0.02806696482002735, 0.015141388401389122, 0.014289152808487415, -0.013962462544441223, -0.01832306943833828, 0.012449744157493114, -0.01184607669711113, 0.006231973879039288, 0.0024040150456130505, 0.018138417974114418, 0.011668527498841286, 0.0026863180100917816, 0.052668169140815735, 0.032782670110464096, -0.012577579356729984, 0.013039207085967064, -0.0019317343831062317, -0.00326690380461514, -0.018635554239153862, 0.024089863523840904, 0.013025003485381603, 0.034345101565122604, 0.018010582774877548, -0.03451554849743843, -0.0334644578397274, 0.02372056245803833, -0.01480049453675747, 0.031674761325120926, 0.0259079672396183, -0.003204761538654566, 0.0199707243591547, 0.023834193125367165, -0.006508950609713793, 0.00471570435911417, 0.034316692501306534, 0.008778028190135956, -0.02813798375427723, 0.011597508564591408, -0.03724270313978195, 0.02207290567457676, 0.004889702424407005, -0.02893340401351452, 0.005273208487778902, 0.030083922669291496, -0.0045204004272818565, 0.022214945405721664, -0.0298850666731596, 0.04048119857907295, 0.007840569131076336, 0.011561998166143894, 0.007080658804625273, 0.004783173091709614, -0.015127184800803661, -0.003824407933279872, 0.019075876101851463, -0.03093615733087063, 0.020155375823378563, -0.02639090083539486, -0.0356234535574913, -0.040850501507520676, -0.01660439372062683, -0.0040410179644823074, -0.019729258492588997, 0.03360649570822716, 0.008650192990899086, 0.004307341296225786, -0.011071962304413319, 0.024203496053814888, 0.031958840787410736, 0.013103124685585499, 0.010155809111893177, -0.010056382045149803, 0.014012176543474197, 0.029430540278553963, -0.001044876524247229, -0.010070585645735264, -0.015709545463323593, 0.018394088372588158, 0.021107038483023643, 0.0036788175348192453, -0.00735053326934576, -0.029743026942014694, -0.02744199149310589, -0.002402239479124546, 0.02718632109463215, 0.031674761325120926, 0.041901592165231705, -0.009459816850721836, 0.028379449620842934, 0.025822743773460388, 0.02225755713880062, -0.011838975362479687, 0.024558592587709427, 0.037810858339071274, 0.01901906169950962, 0.031958840787410736, -0.012556273490190506, -0.017456628382205963, 0.011625915765762329, 0.048122912645339966, 0.0019548158161342144, 0.00373563333414495, 0.00017477490473538637, 0.005457859952002764, -0.025709111243486404, 0.010993841104209423, -0.002830132842063904, -0.006832089740782976, -0.03957214578986168, 0.02747039869427681, 0.015269223600625992, -0.024061456322669983, -0.0266465712338686, 0.029203278943896294, -0.05085006728768349, -0.013884340412914753, -0.005734836217015982, -0.034089431166648865, -0.02533981017768383, 0.01328777614980936, -0.02330864779651165, -0.010461193509399891, 0.04849221557378769, -0.016647005453705788, 0.0012162114726379514, -0.010106096044182777, 0.014168418943881989, -0.017456628382205963, 0.005024639889597893, 0.007961302064359188, -0.012485253624618053, 0.016504965722560883, -0.0222291499376297, 0.010731068439781666, 0.003941590432077646, 0.026731794700026512, -0.0007448185351677239, -0.014289152808487415, -0.019601421430706978, -0.01562432199716568, 0.005887528415769339, 0.014672658406198025, 0.006278136745095253, 0.01873498223721981, -0.02112124301493168, -0.02435973845422268, -0.0006209780112840235, 0.036560915410518646, -0.009871730580925941, 0.0022264658473432064, 0.002405790612101555, 0.023507501929998398, -0.0015286979032680392, -0.003011232940480113, 0.029316909611225128, 0.020979203283786774, 0.013202551752328873, 0.036220017820596695, 0.00938169565051794, 0.03937328979372978, 0.011917096562683582, 0.049145594239234924, -0.019984928891062737, -0.011192696169018745, 0.030225960537791252, -0.002265526680275798, 0.004438727628439665, 0.025950578972697258, -0.02264106273651123, -0.0007172984187491238, 0.0019015510333701968, 0.0012188747059553862, -0.019004857167601585, -0.01193840242922306, 0.009275165386497974, 0.003563410835340619, 0.01205203402787447, 0.013493732549250126, 0.006501848343759775, -0.004800927825272083, -0.01481469813734293, -0.005493369419127703, 0.0006919976440258324, -0.02695905789732933, 0.024274514988064766, 0.02153315581381321, -0.01660439372062683, 0.01721516251564026, 0.05988376587629318, -0.004456482827663422, -0.036788176745176315, 0.006018914747983217, -0.01205203402787447, 0.02009855955839157, 0.019885500892996788, -0.007315023336559534, -0.026561347767710686, 0.02518356591463089, -0.026660775765776634, 0.022910937666893005, -0.039486922323703766, 0.0259079672396183, 0.013422712683677673, -0.009885935112833977, -0.0038528158329427242, 0.03616320341825485, 0.019828684628009796, 0.008316400460898876, 0.03144749999046326, 0.016647005453705788, 0.007741141598671675, -0.016874268651008606, -0.03789608180522919, -0.005805856082588434, 0.013124430552124977, 0.0029721721075475216, -0.0049536204896867275, 0.018848614767193794, 0.001598829752765596, -0.03266903758049011, -0.001629900885745883, 0.03613479435443878, 0.0033112908713519573, -0.0006049986113794148, -0.021064426749944687, 0.028564101085066795, 0.002041814848780632, 0.010304950177669525, -0.02343648299574852, -0.013564752414822578, -0.00713037233799696, -0.0137636074796319, -0.024686429649591446, 0.040055081248283386, -0.014509313739836216, -0.004875498823821545, 0.011753750964999199, -0.025836946442723274, -0.024430757388472557, 0.010148707777261734, 0.007141025271266699, -0.01870657503604889, -0.007499674800783396, 0.007670121733099222, 0.0543726421892643, 0.01024103257805109, 0.013096022419631481, 0.018110008910298347, -0.015681138262152672, 0.0017435322515666485, -0.018592942506074905, -0.018252048641443253, -0.02857830561697483, -0.02816639095544815, 0.024828467518091202, -0.004193710163235664, 0.01031915470957756, -0.040282342582941055, 0.00437481002882123, 0.035140521824359894, 0.006867599673569202, 0.02238539233803749, 0.01711573451757431, 0.02441655471920967, -0.010177114978432655, 0.02911805547773838, -0.0063988701440393925, -0.04119139537215233, -0.032725851982831955, -0.005759693216532469, -0.02934531681239605, 0.001531361136585474, -0.023663746193051338, -0.01124241016805172, 0.024317126721143723, 0.00916153471916914, -0.006590622942894697, 0.03357808664441109, 0.025126751512289047, -0.017982173711061478, 0.02677440643310547, 0.0032580262050032616, -0.007982607930898666, -0.0179111547768116, -0.033805351704359055, -0.04906037077307701, 0.009118922054767609, -0.0309645663946867, 0.0014354846207424998, 0.008074933663010597, 9.397619578521699e-06, 0.009793609380722046, 0.016689617186784744, -0.006672295741736889, 0.003178129205480218, -0.008295094594359398, -0.03039640747010708, 0.015184000134468079, -0.037612006068229675, -0.003215414471924305, -0.0016822778852656484, 0.020439453423023224, 0.04170273616909981, 0.03971418738365173, 0.012634394690394402, -0.004751214291900396, -0.037015438079833984, -0.024601206183433533, 0.03639046475291252, 0.0026934200432151556, -0.013344591483473778, -0.008131748996675014, 0.012364520691335201, 0.02058149315416813, 0.014154215343296528, -0.016561781987547874, -0.026873834431171417, -0.011860281229019165, 0.030282776802778244, 0.0022513228468596935, 0.02495630271732807, -0.0027040729764848948, -0.011483876965939999, 0.029430540278553963, 0.011178492568433285, -0.016689617186784744, 0.014914125204086304, 0.010518009774386883, -0.040594831109046936, 0.022172333672642708, -0.01755605638027191, 0.009218350052833557, 0.034913256764411926, 0.002752011176198721, 0.011895790696144104, 0.01937416009604931, 0.033833760768175125, -0.008209871128201485, -0.014743678271770477, 0.003293536137789488, 0.07147417217493057, -0.012023625895380974, 0.019516197964549065, -0.01379911694675684, 0.03190202638506889, 0.00962316244840622, 0.015041961334645748, -0.010049279779195786, -0.0057383873499929905, 0.004310892429202795, -0.004424524027854204, -0.014715270139276981, 0.02130589447915554, -0.005940793547779322, -0.0009401225834153593, -0.01089441403746605, 0.0019406118663027883, 0.0017710523679852486, -0.0033840860705822706, -0.005717081483453512, 0.022314373403787613, -0.008770925924181938, 0.01680324785411358, 0.002769766142591834, -0.025481848046183586, 0.01670381985604763, -0.003300637938082218, -0.008039424195885658, 0.021320097148418427, -0.014928329735994339, 0.013820422813296318, 0.029032832011580467, 0.0023596277460455894, 0.0026898691430687904, -0.00039260549237951636, 0.0022602002136409283, 0.009438510984182358, -0.0259079672396183, -0.020979203283786774, -0.01698789931833744, 0.005383288953453302, 0.028876587748527527, 0.04036756604909897, 0.023393871262669563, 0.010617436841130257, 0.04531053453683853, -0.04050960764288902, 0.022470615804195404, -0.010361766442656517, -0.01352924294769764, -0.008898762054741383, -0.019033264368772507, 0.0024306473787873983, 0.02639090083539486, -0.02372056245803833, 0.013436917215585709, -0.002228241413831711, -0.0027910720091313124, 0.0222291499376297, -0.003888325532898307, -0.03414624556899071, 0.022115517407655716, 0.016916880384087563, -0.005141822155565023, 0.0003701898967847228, 0.049429673701524734, -0.0010777231073006988, -0.03684499114751816, 0.0028567651752382517, -0.0005610552034340799, -0.004300239495933056, -0.026305677369236946, 0.020950796082615852, -0.0051950872875750065, 0.01667541265487671, -0.017456628382205963, 0.023862600326538086, -0.010212625376880169, -0.023166608065366745, -0.03860627859830856, 0.021618379279971123, 0.013103124685585499, -0.0032367203384637833, -0.017286181449890137, 0.0026632368098944426, -0.009360388852655888, 0.04156069830060005, -0.01365707814693451, -0.040850501507520676, -0.007769549265503883, 0.012740924023091793, -0.01387723907828331, 0.04397536441683769, 0.0032686791382730007, 0.03889035806059837, -0.001568646403029561, 0.0023898109793663025, 0.009573448449373245, -0.024089863523840904, 0.01752764917910099, 0.0199707243591547, 0.002034712815657258, -0.03374853730201721, 0.021902458742260933, 0.008131748996675014, -0.005262555554509163, 0.006938619539141655, 0.027669254690408707, -0.02212972193956375, -0.005148924421519041, -0.005954997148364782, -0.024558592587709427, -0.017740707844495773, -0.009005291387438774, 0.006785927340388298, -0.031106604263186455, -0.05147504061460495, 0.038634687662124634, 0.009736793115735054, 0.016504965722560883, 0.01619247905910015, 0.007176535204052925, 0.004229220096021891, -0.006924415472894907, 0.018024785444140434, 0.012520763091742992, 0.008316400460898876, -0.012669905088841915, -0.011661426164209843, -0.022754695266485214, -0.016362925991415977, -0.038379017263650894, 0.026121025905013084, 0.004186607897281647, -0.019161099568009377, -0.022285964339971542, -0.004513298626989126, 0.017797524109482765, 0.01129212323576212, 0.022428004071116447, -0.005912385415285826, 0.011419959366321564, -0.0021004059817641973, -0.013706791214644909, 0.023322852328419685, 0.02852148935198784, 0.005315820686519146, 0.0017923583509400487, -0.004871947690844536, 0.002654359210282564, -0.0067007034085690975, -0.015382855199277401, 0.026220453903079033, 0.017698096111416817, -0.016178274527192116, 0.028251614421606064, -0.004481339827179909, -0.008522357791662216, 0.004541706293821335, 0.009992464445531368, 0.0018056745175272226, -0.018152620643377304, 0.011043555103242397, -0.007819263264536858, 0.009921444579958916, 0.027640845626592636, 0.03124864399433136, 0.02899022027850151, 0.031646352261304855, 0.01587999239563942, -0.0006081057363189757, 0.0030360899399966, 0.0550544299185276, 0.005013986956328154, 0.03644728288054466, 0.0013902095379307866, -0.013280673883855343, -0.040310751646757126, 0.029458949342370033, 0.017470832914114, -0.012009422294795513, -0.02156156487762928, 0.017229365184903145, 0.011711139231920242, 0.03715747967362404, 0.020340027287602425, 0.002446626778692007, -0.0211496502161026, -0.000854011217597872, 0.022413799539208412, -0.023962028324604034, -0.0028532142750918865, -0.010596130974590778, 0.007123270537704229, 0.004154649097472429, 0.02381998859345913, -0.023266036063432693, 0.014587434940040112, -0.0033663311041891575, 0.041390251368284225, -0.0011895790230482817, -0.024089863523840904, 0.005592796951532364, -0.00904790312051773, 0.02200188674032688, 0.015837380662560463, -0.022314373403787613, 0.005067251622676849, 0.02639090083539486, 0.01227219495922327, -0.02839365415275097, 0.0058271619491279125, -0.027484603226184845, 0.021547360345721245, 0.029799843207001686, -0.022371187806129456, -0.013813321478664875, -0.007634611800312996, 0.0020364883821457624, 0.01455902773886919, 0.0009853976080194116, -0.011973911896348, 0.00847974605858326, -0.026888037100434303, 0.028734548017382622, 0.017101529985666275, -0.014140011742711067, 0.028109576553106308, 0.004065874498337507, 0.02007015235722065, 0.0055998992174863815, 0.007556490134447813, 0.043833326548337936, 0.000406587467296049, -0.004403218161314726, 0.020027540624141693, -0.01616407185792923]" -How Messari Uses Data to Open the Cryptoeconomy to Everyone,"not sure these decisions would be as obvious for other use cases.✨Editor’s Note:We’ve put togethera hypertable best practices guideto help you get started (including tips on how to size your chunks andcheck your chunk size).Explore the roadmap on GitHubfor future plans on compression.In summary, the strongest advantages of TimescaleDB are its performance and pure Postgres interface. Both of these make us comfortable recommending it across a wide range of use cases. Still, the decision shouldn’t be cavalier; we tested Timescale for several weeks before committing to the idea and finishing our implementation.We’d like to thank Adam and all of the folks at Messari for sharing their story, as well as for their effort to lower the barriers to investing in crypto assets by offering a massive amount of crypto-assets metrics and a real-time alerting mechanism.We’re always keen to feature new community projects and stories on our blog. If you have a story or project you’d like to share, reach out on Slack (@Lucie Šimečková), and we’ll go from there.Additionally, if you’re looking for more ways to get involved and show your expertise, check out theTimescale Heroesprogram.The open-source relational database for time-series and analytics.Try Timescale for free",https://www.timescale.com/blog/how-messari-uses-data-to-open-the-cryptoeconomy-to-everyone/,258,"[0.0011930138571187854, 0.0019557031337171793, 0.04374617338180542, 0.030675498768687248, 0.03666505962610245, 0.0012726064305752516, -0.01574358344078064, 0.02544163167476654, 0.018080631271004677, 0.011216429062187672, 0.0190462376922369, -0.02065558172762394, 0.00014311356062535197, -0.027372844517230988, 0.06112708896398544, 0.01722697913646698, -0.0003209941787645221, -0.021831102669239044, -0.03512568399310112, 0.030703488737344742, -0.029360035434365273, 0.05217073857784271, 0.014847949147224426, 0.041954901069402695, -0.00044759883894585073, -0.0034076112788170576, -0.040807370096445084, 0.050519414246082306, 0.06095915660262108, -0.05687282234430313, 0.0033114005345851183, -0.033222462981939316, -0.03131923824548721, 0.03148716688156128, 0.015183812007308006, 0.004639109596610069, 0.011965123936533928, 0.0013626946602016687, 0.035489536821842194, -0.005359815899282694, -0.03397815302014351, 0.03450993821024895, -0.001381936832331121, 0.021845098584890366, -0.02637924998998642, -0.018864313140511513, -0.026561176404356956, -0.037532705813646317, 0.008347597904503345, 0.07456161826848984, -0.02174713835120201, 0.010061899200081825, -0.011986115016043186, -0.04131116345524788, 0.01668120175600052, -0.04030357673764229, -0.029723886400461197, 0.020627593621611595, 0.004100329242646694, 0.005912590306252241, -0.006468863692134619, -0.05524948611855507, 0.03185101971030235, 0.026337267830967903, -0.023972230032086372, 0.009691051207482815, -0.025413643568754196, 0.04531353339552879, -0.048896074295043945, 0.034146085381507874, 0.024182144552469254, -0.027694713324308395, 0.014791972003877163, -0.008697455748915672, 0.021901074796915054, -0.07478552311658859, -0.01791270077228546, 0.06918780505657196, 0.032466769218444824, -0.04254266247153282, 0.020207764580845833, 0.005216374062001705, -0.034957755357027054, 0.0340341292321682, 0.017338933423161507, -0.0029457996133714914, -0.01170622929930687, -0.01015985943377018, -0.025259707123041153, 0.008081706240773201, -0.006405889522284269, 0.04623715579509735, 0.00022106616233941168, 0.020151788368821144, 0.01494590938091278, 0.01816459745168686, 0.00536681292578578, -0.0025242213159799576, -0.019620005041360855, 0.01844448409974575, 0.002265326911583543, -0.009935950860381126, -0.04105926677584648, -0.007214060053229332, 0.026001403108239174, 0.012370958924293518, 0.01318962499499321, -0.00244900188408792, 0.01775876246392727, 0.02657517045736313, -0.085309237241745, 0.009530115872621536, -0.05516551807522774, 0.010873569175601006, -0.023062601685523987, -0.022096995264291763, -0.01379837654531002, 0.00679423101246357, 0.002576699946075678, -0.0146100465208292, -0.004863018169999123, -0.006552829407155514, -0.015015880577266216, 0.019396096467971802, 0.02012379840016365, -0.004450186621397734, 0.0014510336332023144, -0.0368889681994915, -0.025357665494084358, -0.002205851022154093, 0.013679425232112408, 0.0022530818823724985, 0.048420269042253494, 0.002559207146987319, -0.024392059072852135, -0.015015880577266216, -0.0627504289150238, -0.022768720984458923, -0.013273591175675392, -0.029639922082424164, 0.002485736971721053, -0.06638894230127335, 0.02415415644645691, -0.012713818810880184, -0.030311647802591324, 0.0328306220471859, -0.029667910188436508, 0.04716078191995621, -0.0656612440943718, -0.010838583111763, 0.0024262613151222467, -0.03708488866686821, -0.01844448409974575, -0.02625330165028572, 0.039128053933382034, -0.0020991445053368807, 0.016303356736898422, 0.017856722697615623, -0.024182144552469254, -0.05715271085500717, 0.004446688108146191, 0.04783250764012337, -0.004229776095598936, 0.009383176453411579, 0.006923678331077099, 0.016037464141845703, -0.05289844423532486, -0.05410195142030716, -0.08060715347528458, -0.003255423391237855, -0.014917920343577862, -0.0666128545999527, -0.016135424375534058, 0.005524248816072941, 0.03224286064505577, 0.0065353368408977985, -0.03199096396565437, -0.04131116345524788, 0.020977450534701347, -0.04643307626247406, -0.04349427670240402, -0.012342969886958599, -0.014358148910105228, 0.008872384205460548, -0.025861460715532303, 0.021117394790053368, -0.058720070868730545, 0.02908014878630638, 0.03736477345228195, 0.02187308669090271, -0.05200280621647835, 0.037056900560855865, 0.028828252106904984, 0.03450993821024895, 0.005513753276318312, -0.04052748531103134, 0.04234674200415611, 0.031011361628770828, -0.06151892989873886, 0.030395613983273506, 0.03297056257724762, 0.017548847943544388, 0.030731476843357086, 0.0006656037294305861, -0.004579633940011263, -0.0023842784576117992, 0.010173854418098927, -2.5870316676446237e-05, -0.05827225372195244, -0.031263258308172226, -0.010642662644386292, -0.0070321341045200825, -0.01978793554008007, -0.017786752432584763, -0.04105926677584648, -0.02927606925368309, -0.0486161895096302, -0.027302874252200127, -0.013882342725992203, -0.009110287763178349, -0.023118577897548676, 0.06935573369264603, -0.0129937045276165, -0.027624743059277534, -0.03364229202270508, 0.024587979540228844, 0.013819368556141853, -0.037784602493047714, 0.018486466258764267, 0.012832770124077797, 0.021425269544124603, -0.05357016995549202, -0.02664514258503914, -0.0426546186208725, 0.013077670708298683, 0.006192476488649845, 0.012342969886958599, -0.03123527206480503, -0.006007052026689053, -0.06414985656738281, 0.005114915780723095, -0.014847949147224426, -0.011153454892337322, -0.011090480722486973, -0.019088221713900566, 0.02086549624800682, -0.025931432843208313, -0.06991551071405411, -0.012664838694036007, 0.07937565445899963, 0.02496582642197609, 0.013574467971920967, 0.010166856460273266, -0.008452555164694786, -0.010698639787733555, -0.06650090217590332, -0.0024804892018437386, 0.04369019716978073, 0.021299319341778755, -0.0043207393027842045, 0.004555143881589174, -0.04662899672985077, -0.004835029598325491, -0.028296468779444695, -0.043102435767650604, 0.023650361225008965, 0.018388506025075912, -0.05645299330353737, 0.01015985943377018, -0.006853707134723663, 0.059055935591459274, 0.0271909199655056, 0.013784382492303848, -0.04744066670536995, -0.0325787253677845, -0.01924215815961361, -0.0041528078727424145, -0.0003920589806511998, -0.006776738446205854, 0.007808818016201258, -0.016373327001929283, -0.04201088100671768, 0.00935518741607666, 0.01022983156144619, 0.03526562824845314, 0.007444966118782759, 0.047216758131980896, 0.023636367172002792, 0.033894188702106476, -0.03666505962610245, 0.013308576308190823, -0.0018577429000288248, 0.0335303358733654, -0.02597341500222683, 0.014456109143793583, 0.019480060786008835, 0.006591313984245062, -0.03252274543046951, -0.05343022570014, -0.019703971222043037, 0.013539482839405537, -0.002928306581452489, 0.012510901317000389, -0.03532160446047783, 0.0008838273352012038, 0.03728080913424492, -0.020501645281910896, -0.005254858639091253, -0.008333603851497173, 0.013784382492303848, 0.01382636558264494, -0.014722000807523727, 0.008809410035610199, -0.023944241926074028, -0.005307337269186974, -0.01770278625190258, 0.047216758131980896, -0.026617152616381645, -0.003232682589441538, -0.03666505962610245, -0.04005168005824089, -0.08508532494306564, -0.013245602138340473, 0.0438581258058548, 0.019368106499314308, -0.01770278625190258, 0.022404870018363, -0.0057201688177883625, 0.017324939370155334, 0.0014379139756783843, -0.009963939897716045, -0.028590349480509758, 0.016779161989688873, 0.019368106499314308, -0.029919806867837906, -0.04355025291442871, 0.03669304773211479, 0.014973897486925125, -0.0340341292321682, 0.0075989034958183765, -0.010929546318948269, -0.011041500605642796, -0.03666505962610245, 0.0356854572892189, -0.009467141702771187, 0.008403575047850609, -0.00536681292578578, -0.001605845638550818, -0.003577292198315263, -0.0008449056767858565, -0.053206317126750946, -0.028688309714198112, 0.008767426945269108, -0.009754025377333164, -0.0028425916098058224, 0.001706429640762508, -0.029108138754963875, -0.01675117388367653, -0.0294719897210598, 0.003519565798342228, -0.043046459555625916, 0.011622264049947262, 0.008865387178957462, -0.010187848471105099, 0.01358846202492714, -0.0027516286354511976, -0.052058786153793335, -0.01803864911198616, -0.019494056701660156, -0.03761667013168335, 0.009747028350830078, 0.0038029502611607313, -0.0012953471159562469, -0.034146085381507874, -0.0510232076048851, 0.014085260219871998, 0.044054046273231506, 0.05466172471642494, 0.0017073042690753937, 0.0308994073420763, 0.025665540248155594, -0.0014938912354409695, 0.0014615294057875872, -0.020431673154234886, 0.04002368822693825, 0.015785567462444305, 0.011286400258541107, 0.01628936268389225, -0.023860275745391846, 0.0033673776779323816, 0.034733846783638, 0.05141504853963852, -0.01668120175600052, -0.014652028679847717, 0.000759190646931529, 0.02051563933491707, 0.006997148506343365, 0.02860434353351593, 0.056760869920253754, -0.006671781186014414, 0.02005382813513279, -0.013945316895842552, -0.03646913915872574, -0.02017977647483349, -0.0014431618619710207, 0.01103450357913971, -0.003596534254029393, 0.00764088612049818, -0.045117612928152084, -0.026547182351350784, -0.012070081196725368, -0.017618820071220398, 0.022796709090471268, -0.021817108616232872, 0.023776311427354813, -0.0337822325527668, -0.040415529161691666, 0.0464610680937767, 0.009180258959531784, 0.044809740036726, 0.004327736329287291, -0.024867866188287735, -0.010341785848140717, -0.0143721429631114, -0.00685020862147212, 0.04245869815349579, 0.07215459644794464, -0.016051458194851875, -0.04117122292518616, -0.02814253233373165, 0.003057753900066018, -0.014260188676416874, 0.038120463490486145, -0.033418379724025726, 0.00841057300567627, 0.023972230032086372, 0.05692880228161812, -0.0036525116302073, 0.03613327443599701, 0.013840359635651112, -0.03266268968582153, 0.026883045211434364, -0.004205286502838135, 0.02450401335954666, 0.027946611866354942, -0.041227199137210846, -0.013735402375459671, -0.025021802634000778, -0.048756130039691925, -0.02994779497385025, 0.046069227159023285, -0.01943807862699032, 0.0007386364741250873, 0.004786049481481314, -0.026477210223674774, -0.025721518322825432, 0.043634217232465744, -0.008557512424886227, 0.03534959629178047, -0.0040758391842246056, -0.02355240285396576, 0.009502127766609192, -0.03464987874031067, -0.006773239932954311, 0.012335972860455513, -0.056425005197525024, 0.03344637155532837, 0.016905110329389572, 0.005902094766497612, -0.012951722368597984, 0.0073050232604146, 0.011594275012612343, -0.0036909959744662046, 0.0025574578903615475, -0.021481245756149292, 0.0026274293195456266, 0.010950537398457527, -0.02160719409584999, 0.011349375359714031, -0.03056354448199272, 0.029192103073000908, -0.030451590195298195, 0.0020326715894043446, 0.061071112751960754, -0.02141127549111843, 0.04951182380318642, 0.03185101971030235, -0.016121430322527885, -0.028170520439743996, 0.0073959860019385815, -0.0026886542327702045, 0.0001167649170383811, 0.03302654251456261, -0.016947094351053238, 0.0004994214978069067, -0.007430971600115299, -0.06873998790979385, -0.04483772814273834, 0.016051458194851875, -0.015841543674468994, 0.011839175596833229, -0.03786856681108475, 0.006101513747125864, 0.06482158601284027, -0.03848431631922722, 0.031207282096147537, -0.030255669727921486, -0.01784272864460945, 0.004082836210727692, -0.010355779901146889, -0.02832445688545704, -0.0006717262440361083, 0.032410793006420135, 0.016303356736898422, -0.028296468779444695, 0.03369826823472977, -0.01420421153306961, 0.040611449629068375, -0.005566231906414032, -0.02597341500222683, -0.009600088000297546, -0.031179293990135193, -0.011118468828499317, -0.01796867698431015, -0.021775126457214355, 0.00827762670814991, -0.04181496053934097, -0.03996771201491356, -0.005517251789569855, -0.012986707501113415, -0.008823404088616371, -0.03157113492488861, 0.024881860241293907, -0.015701601281762123, -0.046936873346567154, 0.01978793554008007, -0.024266110733151436, -0.04514560103416443, -0.006920179817825556, 0.021313315257430077, 0.0034618391655385494, 0.03467786684632301, 0.012342969886958599, 0.021677166223526, -0.001709928154014051, -0.022782715037465096, -0.01609344221651554, -0.008900373242795467, -0.0023702841717749834, 0.030255669727921486, 0.021775126457214355, -0.02288067527115345, 0.040275588631629944, 0.017730774357914925, 0.026365255936980247, 0.025077780708670616, 0.024518009275197983, 0.017059048637747765, 0.01544970367103815, 0.006801228504627943, -0.002660665661096573, -0.013406536541879177, -0.006934174336493015, 0.008431564085185528, -0.0098239965736866, 0.016793156042695045, -0.0015297515783458948, -0.0071860714815557, -0.054129939526319504, 0.016947094351053238, 0.011489317752420902, -0.010845580138266087, 0.015911515802145004, 0.0050239525735378265, 0.027638737112283707, 0.01858442649245262, -0.03820443153381348, -0.02482588216662407, 0.014624040573835373, 0.008627484552562237, -0.03887615725398064, -0.0007443216745741665, -0.037056900560855865, 0.028100548312067986, -0.04226277768611908, 0.010481728240847588, 0.014442114159464836, 0.019801929593086243, 0.030339635908603668, -0.0340341292321682, -0.0013801875757053494, 0.00587410619482398, -0.016247378662228584, -0.014875938184559345, 0.027204914018511772, 0.013007699511945248, -0.005898596253246069, 0.007990743964910507, -0.023874271661043167, 0.009229239076375961, 0.020487651228904724, 0.01810862123966217, -0.0012201278004795313, -0.021845098584890366, -0.02489585429430008, 0.02975187636911869, -0.0037084887735545635, -0.007242048624902964, 0.06476560980081558, -0.004953981377184391, 0.040499497205019, 0.00736799743026495, 0.0025207228027284145, -0.044249966740608215, -0.017198991030454636, -0.024741917848587036, -0.008039724081754684, -0.011083483695983887, 0.03364229202270508, -0.04464180767536163, -0.049623776227235794, -0.028086554259061813, -0.02213897742331028, -0.05343022570014, 0.0366370715200901, 0.03501373156905174, -0.004331234842538834, -0.0565369613468647, -0.007703860756009817, 0.022446852177381516, 0.03431401774287224, -0.0035353093408048153, 0.04953981190919876, 0.01823456957936287, 0.009068304672837257, 0.0147359948605299, 0.039883747696876526, 0.037784602493047714, -0.011790195479989052, -0.02604338712990284, 0.023678351193666458, 0.01897626742720604, -0.008879381231963634, -0.010453740134835243, -0.0076758721843361855, -0.03828839585185051, 0.01382636558264494, 0.03870822489261627, -0.011762206442654133, -0.0014973897486925125, 0.01039776299148798, -0.017520859837532043, 0.06426180899143219, 0.017268963158130646, 0.015589646995067596, -0.011489317752420902, -0.010789602994918823, -0.0026379250921308994, -0.005667690187692642, 0.03406211733818054, -0.03372625634074211, -0.0035720444284379482, -0.028772274032235146, -0.0012454924872145057, -0.0202497486025095, 0.018486466258764267, -0.015855537727475166, 0.02449001930654049, 0.03434200584888458, 0.026211317628622055, -0.0308994073420763, 0.038596272468566895, 0.015337749384343624, 0.020417679101228714, 0.04623715579509735, -0.0067872339859604836, 0.00013578841753769666, -0.033474359661340714, 0.00634291535243392, 0.06079122796654701, -0.024476025253534317, 0.015267778187990189, -0.018458478152751923, -0.004450186621397734, -0.0012358713429421186, -0.012643847614526749, -0.019620005041360855, 0.032606713473796844, 0.0414511077105999, 0.01477797795087099, -0.000742572417948395, 0.0017352928407490253, 0.012000110000371933, -0.029527967795729637, 0.007423974573612213, -0.02052963338792324, 0.02072555385529995, 0.04273858293890953, -0.03518166393041611, -0.010999517515301704, -0.008494538255035877, 0.01844448409974575, -0.06414985656738281, -0.029835840687155724, -0.004068841692060232, -0.003318397793918848, 0.016317350789904594, -0.011146457865834236, 0.02321653813123703, -0.03854029253125191, -0.051443036645650864, 0.012608861550688744, -0.02476990595459938, 0.015995481982827187, 0.004520157817751169, -0.014791972003877163, -0.02497982047498226, 0.005664191674441099, -0.023454442620277405, -0.007556920405477285, -0.07086712121963501, -0.0008326607057824731, -0.015575652942061424, -0.042234789580106735, 0.04117122292518616, 0.01809462532401085, 0.031263258308172226, 0.0366370715200901, 0.014309168793261051, -0.026421232149004936, -0.008130686357617378, -0.008326606824994087, -0.009201250039041042, 0.015869533643126488, 0.03325045108795166, 0.0060840207152068615, -0.005013457033783197, -0.012601864524185658, -0.05054740235209465, 0.010985523462295532, -0.020067822188138962, 0.03532160446047783, -0.014414126053452492, -0.004915496800094843, 0.0021428768523037434, -0.060063522309064865, 0.013434525579214096, 0.01756284199655056, 0.04604123905301094, 0.0024175147991627455, -0.005335325840860605, 0.012538890354335308, 0.011664246208965778, -0.027890633791685104, -0.02268475480377674, -0.02031971886754036, -0.029360035434365273, -0.00965606514364481, -0.013952313922345638, 0.02584746666252613, -0.02017977647483349, 0.03339039161801338, -0.04967975616455078, 0.030171705409884453, -0.018598420545458794, 0.038260407745838165, -0.016569247469305992, 0.013028690591454506, -0.02880026400089264, -0.06672480702400208, 0.014106251299381256, -0.022390875965356827, -0.006668282672762871, -0.009103289805352688, 0.06554928421974182, -0.012028098106384277, -0.006031542085111141, 0.0022390875965356827, 0.012349966913461685, -0.034481946378946304, 0.001274355687201023, 0.021117394790053368, -0.01641531102359295, -0.043718185275793076, -0.015967493876814842, 0.008137683384120464, 0.012930730357766151, -0.02376231737434864, -0.03229883685708046, -0.0008750808774493635, -0.028226496651768684, -0.003129474585875869, 0.01370041724294424, 0.011993112973868847, 0.0011387859703972936, -0.017310945317149162, -0.013301579281687737, -0.09504926949739456, -0.019885895773768425, 0.04847624525427818, -0.025553585961461067, -0.005258357152342796, -0.0036245230585336685, -0.00376796443015337, 0.042430710047483444, 0.039939723908901215, -0.005860112141817808, 0.005205878522247076, -0.08245439827442169, -0.00855051539838314, -0.004173798952251673, -0.004779052454978228, 0.03271866589784622, -0.0005151650402694941, 0.007116100285202265, 0.020893486216664314, 0.02281070500612259, -0.0009830993367359042, 0.035965342074632645, -0.028884228318929672, 0.05410195142030716, 0.0034845799673348665, -0.03700092062354088, -0.016037464141845703, 0.03660907968878746, 0.004467679187655449, -0.03750471770763397, 0.027680719271302223, 0.020277736708521843, -0.002177862450480461, -0.006489855237305164, -0.016457293182611465, 0.038064487278461456, -0.011608269065618515, -0.018122615292668343, -0.02604338712990284, -0.009635073132812977, -0.013616451062262058, -0.034286029636859894, 0.04878411814570427, -0.03199096396565437, 0.06577319651842117, -0.04181496053934097, -0.005209377035498619, 0.012231015600264072, 0.0018874808447435498, 0.004740568343549967, 0.028030576184391975, 0.030871419236063957, 0.011482320725917816, 0.0046880897134542465, -0.0050239525735378265, 0.01062866859138012, -0.03588137775659561, -0.047944460064172745, -0.00410732626914978, 0.009033318608999252, -0.030507568269968033, -0.007927768863737583, 0.02017977647483349, -0.05614512041211128, -0.03820443153381348, -0.001746663241647184, -0.0072350515983998775, 0.03767264634370804, -0.001174646313302219, -0.0052198730409145355, 0.02194305695593357, 0.052730511873960495, 0.0366370715200901, -0.013532484881579876, 0.01668120175600052, -0.0035825399681925774, 0.015029874630272388, -0.007661877665668726, -0.024322088807821274, -0.00444318912923336, 0.009747028350830078, -0.01649927720427513, -0.04500566050410271, 0.019354112446308136, -0.011524303816258907, -0.0025242213159799576, -0.0025067285168915987, -0.004845525603741407, 0.0047370693646371365, -0.023384470492601395, 0.03957587108016014, 0.005499758757650852, -0.00393939483910799, -0.003316648304462433, 0.03190699592232704, -0.0016180905513465405, 0.020711559802293777, -0.014022286050021648, -0.004397707991302013, -0.022306909784674644, 0.02758275903761387, -0.010768611915409565, 0.01978793554008007, 0.024713927879929543, -0.0006564200157299638, -0.006962162908166647, 0.018822329118847847, -0.0037854574620723724, 0.019354112446308136, 0.037588682025671005, -0.016877122223377228, -0.02773669734597206, 0.024252116680145264, 0.02766672521829605, 0.019899889826774597, -0.012056087143719196, 0.031123315915465355, 0.008564509451389313, 0.021761132404208183, -0.02805856615304947, 0.017926694825291634, -0.01777275651693344, -0.0378405787050724, 0.021565211936831474, 0.0041598048992455006, 0.010600680485367775, 0.015533669851720333, 0.007193068508058786, -0.0029965287540107965, -0.005646699108183384, 0.0033201470505446196, 0.06879596412181854, -0.0008973843068815768, 0.03694494441151619, 0.004670596681535244, -0.03450993821024895, -0.0028793266974389553, -0.012755801901221275, 0.006559826899319887, 0.009040315635502338, 0.0030297653283923864, 0.007752840407192707, 0.010607677511870861, 0.00032493009348399937, 0.004828032571822405, -0.03336240351200104, -0.009907962754368782, -0.012727812863886356, -0.014889932237565517, 0.011321386322379112, 0.02261478453874588, -0.012846765108406544, -0.016975082457065582, 0.06941171735525131, 0.006909684278070927, 0.07075516879558563, -0.0417030043900013, 0.010838583111763, -0.009334196336567402, -0.02139727957546711, 0.03316648304462433, 0.026827067136764526, 0.0026939022354781628, 0.0019189680460840464, -0.014085260219871998, -0.010257819667458534, -0.05482965707778931, 0.008921364322304726, -0.004313742276281118, 0.010425751097500324, -0.019731959328055382, 0.020711559802293777, 0.017073042690753937, 0.02839442901313305, 0.0340341292321682, 0.018262557685375214, 0.004005867522209883, 0.007493946235626936, -0.0013644439168274403, 0.0018647400429472327, -0.014127243310213089, -0.006293935235589743, 0.0069516669027507305, 0.0524786151945591, 0.05149901285767555, -0.01043274812400341, -0.018458478152751923, 0.008907370269298553, -0.01177620142698288, -0.003405862022191286, 0.013980302959680557, -0.004282254725694656, 0.008928361348807812, 0.023370476439595222, -0.0008536521345376968, 0.011188440956175327, 0.037392761558294296, 0.0029318053275346756, -0.01352548785507679, 0.018892301246523857, -0.041563063859939575, 0.007088111713528633, 0.03814845532178879, -0.020893486216664314, -0.008739438839256763, 0.035433560609817505, 0.02300662361085415, 0.021145382896065712, -0.019424084573984146, 0.019410090520977974, 0.001545495237223804, 0.018136609345674515, 0.00045918786781840026, 0.012433933094143867, 0.004278756212443113, 0.013952313922345638, 0.00473007233813405, 0.012440930120646954, -0.01530976127833128, -0.011076485738158226, -0.04131116345524788, -0.01763281412422657, -0.005643200129270554, -0.0011414098553359509, -0.0287442859262228, 0.04604123905301094, 0.007249046117067337, 0.017282957211136818, 0.01675117388367653, -0.015211801044642925, 0.028562359511852264, 0.006843211129307747, 0.03201895207166672, -0.01588352769613266, 0.022852687165141106, 0.015407721512019634, 0.014847949147224426, 0.00891436729580164, -0.003479332197457552, 0.023440448567271233, 0.03876420482993126, -0.001596224494278431, 0.005947576370090246, -0.008459552191197872, -0.02100544050335884, -0.01433015987277031, 0.043382320553064346, 0.02509177476167679, 0.04117122292518616, -0.008774423971772194, 0.01883632317185402, 0.019731959328055382, 0.018122615292668343, -0.0012953471159562469, 0.016401316970586777, 0.03520965203642845, 0.006514345295727253, -0.0023475433699786663, -0.008641478605568409, 0.026015399023890495, -0.009677056223154068, 0.030983373522758484, 0.021817108616232872, -0.009236236102879047, -0.011188440956175327, 0.007542926352471113, -0.007773831952363253, 0.007137091364711523, 0.02584746666252613, -0.009047312662005424, -0.022796709090471268, 0.047888483852148056, 0.002312557538971305, -0.012168041430413723, -0.012741807848215103, 0.0543818399310112, -0.052926432341337204, -0.014309168793261051, -0.006692772731184959, -0.010775608941912651, -0.011363369412720203, -0.020095810294151306, -0.007161581423133612, -0.017814740538597107, 0.039072077721357346, -0.022194955497980118, 0.008823404088616371, -0.03400614112615585, 0.011895152740180492, -0.025119762867689133, -0.009285216219723225, 0.02019377052783966, -0.009509124793112278, 0.03924001008272171, -0.026029393076896667, 0.0013478257460519671, -0.0011046748841181397, 0.024993814527988434, -0.01332257129251957, 0.0037434743717312813, 0.013805374503135681, -0.016247378662228584, 0.010978526435792446, 0.0098239965736866, 0.009061307646334171, 0.006126003339886665, -0.028254486620426178, -0.015827549621462822, -0.016317350789904594, 0.004345229361206293, -0.021691160276532173, -0.012503904290497303, 0.004446688108146191, 0.03747672587633133, 0.006153992377221584, -0.01851445436477661, 0.03364229202270508, 0.012007107026875019, 0.01113946083933115, 0.02201302908360958, 0.006220465060323477, 0.011258412152528763, 0.011328383348882198, 0.062414564192295074, -0.021033428609371185, 0.010418754070997238, 0.026897039264440536, 0.008529524318873882, -0.03056354448199272, 0.027638737112283707, -0.008935358375310898, -0.0025924434885382652, 0.0007714356179349124, 0.04063943773508072, -0.0031627111602574587, -0.004250767640769482, 0.019298136234283447, -0.005429787095636129, 0.007158082909882069, -0.007990743964910507, 0.015043869614601135, 0.002660665661096573, -0.00871844682842493, 0.0218031145632267, -0.008025729097425938, 0.002856585895642638, 0.015547663904726505, 0.024783900007605553, -0.014652028679847717, 0.031123315915465355, 0.05550138279795647, 0.014847949147224426, -0.0143721429631114, 0.006692772731184959, -0.015785567462444305, 0.028884228318929672, 0.002496232744306326, 0.0001707741612335667, -0.005030949600040913, 0.030927397310733795, -0.018206579610705376, -0.003928898833692074, -0.02106141671538353, 0.01137036643922329, 0.01204909011721611, -0.03014371544122696, 0.0031697081867605448, 0.019340118393301964, 0.01918618194758892, -0.011524303816258907, 0.027106953784823418, 0.030395613983273506, -0.00735400291159749, -0.0036630071699619293, -0.010348782874643803, -0.02099144645035267, 0.02423812262713909, -0.02374832145869732, -0.015253784134984016, 0.007906777784228325, 0.019228164106607437, -0.020627593621611595, 0.0135954599827528, 0.044249966740608215, -0.001341703231446445, 0.004663599655032158, -0.025931432843208313, 0.03854029253125191, 0.007025137078016996, -0.010376770980656147, -0.006157490890473127, -0.031263258308172226, -0.013217614032328129, -0.02772270329296589, -0.019228164106607437, 0.022110989317297935, -0.009383176453411579, -0.03325045108795166, -0.007738846354186535, -0.022768720984458923, -0.024266110733151436, -0.008228646591305733, -0.005345821380615234, -0.01696108840405941, 0.015631629154086113, 0.019200176000595093, 0.06493353843688965, 0.017073042690753937, 0.039212021976709366, 0.01325259916484356, -0.01784272864460945, -0.0019049736438319087, -0.011503311805427074, -0.004436192102730274, -0.03190699592232704, -0.03299855440855026, 0.028506383299827576, -0.03075946494936943, -0.0004946109256707132, -0.03756069391965866, 0.028856240212917328, 0.032130904495716095, 0.009733033366501331, 0.014959903433918953, 0.027568764984607697, 0.01588352769613266, -0.00857850443571806, 0.012538890354335308, 0.0021831104531884193, -0.038400352001190186, -0.014071266166865826, 0.011468326672911644, -0.03582540154457092, 0.044249966740608215, -0.03218688443303108, -0.015197806991636753, 0.012140052393078804, 0.0013373299734666944, -0.0008523401338607073, 0.019060231745243073, 0.010572691448032856, -0.006853707134723663, 0.006647291127592325, 0.0009376179077662528, -0.0245599914342165, -0.019298136234283447, -0.03823241963982582, -0.009026321582496166, 0.003537058597430587, -0.024811888113617897, 0.021621188148856163, 0.022264927625656128, -0.012014104053378105, 0.03901610150933266, 0.0015341248363256454, 0.0032239363063126802, -0.007717854809015989, -0.006661285646259785, 0.0003997121239081025, -0.009306207299232483, -0.010152862407267094, 0.009229239076375961, 0.03795253485441208, 0.010740622878074646, 0.03215889632701874, 0.04839228093624115, 0.004946983885020018, -0.010908554308116436, -0.03420206159353256, -0.0340341292321682, 0.03487378731369972, 0.0025539591442793608, -0.01528177224099636, 0.003673502942547202, 0.006710265297442675, 0.013000701554119587, 0.0218031145632267, -0.016261372715234756, 0.008347597904503345, 0.0067032682709395885, 0.016667207702994347, 0.012860759161412716, 0.04699284955859184, 0.002573201432824135, -0.007752840407192707, 0.028352446854114532, 0.0037434743717312813, -0.007416977547109127, 0.0392959862947464, 0.0072280545718967915, -0.05309436470270157, 0.03680500015616417, -0.002763873664662242, -0.02766672521829605, 0.009677056223154068, -0.014526080340147018, 0.01494590938091278, 0.01278379000723362, 0.00467759370803833, -0.018430490046739578, -0.04534152150154114, 0.00288457446731627, 0.0498196966946125, 0.004124819301068783, 0.0051079182885587215, -0.006209969520568848, 0.0197739414870739, -0.01897626742720604, -0.01124441809952259, -0.003949890378862619, -0.013581464998424053, 0.019606010988354683, -0.011482320725917816, -0.039939723908901215, 0.012196029536426067, -0.023524412885308266, 0.014484097249805927, -0.013623448088765144, -0.012140052393078804, 0.018962273374199867, 0.00747295469045639, -0.018864313140511513, 0.015841543674468994, 0.002459497656673193, 0.046796929091215134, -0.003607030026614666, -0.01490392629057169, 0.0031452183611691, 0.004331234842538834, 0.00908229872584343, 0.02840842306613922, -0.01393132284283638, 0.01009688526391983, 0.030843431130051613, 0.014155231416225433, -0.01211206428706646, -0.01530976127833128, -0.016947094351053238, -0.004925992805510759, 0.009830993600189686, -0.020081816241145134, 0.003907907288521528, -0.025343671441078186, 0.039883747696876526, 0.018472472205758095, 0.03882018104195595, -0.004590129479765892, 0.006409388035535812, -0.04139513149857521, -0.010929546318948269, -0.027078965678811073, -0.008501535281538963, 0.004646106623113155, -0.020011844113469124, -0.008403575047850609, 0.01810862123966217, -0.011426343582570553, -0.0003185889218002558, 0.000843156420160085, -0.0031469676177948713, 0.025595569983124733, -0.009334196336567402, -0.025931432843208313, 0.03876420482993126, 0.037728626281023026, -0.010439746081829071, 0.01032779086381197, 0.03957587108016014, 0.006857205647975206, -0.04951182380318642, 0.011853169649839401, -0.022376881912350655, 0.005044944118708372, -0.025945426896214485, -0.0037014915142208338, -0.007633889093995094, 0.014211208559572697, -0.013091664761304855, 0.04212283343076706, 0.0019312129588797688, -0.017926694825291634, -0.04738469049334526, 0.020963456481695175, 0.01682114601135254, -0.0005234741838648915, -0.010523711331188679, -0.01607944816350937, -0.02961193211376667, 0.040695417672395706, -0.026939021423459053, -0.02632327377796173, -0.006605308037251234, 0.00855051539838314, 0.0018192586721852422, 0.044725771993398666, 0.0015017630066722631, 0.014092257246375084, -0.020039834082126617, -0.018052643164992332, -0.007263040170073509, -0.018416494131088257, 0.010908554308116436, -0.014498092234134674, 0.016639219596982002, -0.02019377052783966, 0.01595349796116352, -0.005860112141817808, 0.0016154666664078832, -0.006038539111614227, 0.020809520035982132, -0.024587979540228844, -0.021565211936831474, 0.004884009715169668, -0.039407942444086075, -0.0077598378993570805, -0.014309168793261051, 0.028506383299827576, -0.04173099249601364, -0.04702083766460419, 0.02975187636911869, -0.0024682441726326942, 0.025805484503507614, 0.00393939483910799, 0.01100651454180479, -0.027274884283542633, -0.0030297653283923864, 0.010600680485367775, 0.020011844113469124, 0.017282957211136818, -0.015771573409438133, -0.019200176000595093, -0.019969861954450607, -0.06196674704551697, -0.03350234776735306, -0.00297028967179358, -0.0036315200850367546, -0.016541259363293648, -0.01614941842854023, 0.00797674898058176, 0.012370958924293518, 0.012643847614526749, 0.009977933950722218, 0.004019862040877342, 0.0001240900601260364, -0.008998333476483822, -0.019200176000595093, -0.001555990893393755, 0.013784382492303848, 0.0010478229960426688, 0.015057863667607307, 0.006934174336493015, 0.02657517045736313, -0.011195437982678413, -0.005576727446168661, 0.037112876772880554, 0.0073050232604146, -0.01925615221261978, 0.03325045108795166, 0.011426343582570553, 0.006559826899319887, 0.00948813371360302, 0.015911515802145004, -0.0013172131730243564, -0.022194955497980118, 0.004306744784116745, -0.019200176000595093, 0.026533186435699463, 0.047412678599357605, 0.019871901720762253, 0.009005330502986908, 0.01248991023749113, 0.005737661849707365, -0.0026589164044708014, -0.011153454892337322, 0.01865439862012863, 0.004299747757613659, 0.011482320725917816, -0.013840359635651112, 0.013686422258615494, -0.017800746485590935, 0.017520859837532043, 0.019620005041360855, 0.02509177476167679, -0.02880026400089264, 0.03350234776735306, 9.692143794381991e-05, 0.021243343129754066, 0.005338824354112148, 0.026743100956082344, -0.02625330165028572, -0.029360035434365273, 0.038596272468566895, -0.02591743879020214, -0.0015979737509042025, 0.0197739414870739, 0.05303838476538658, -0.013889339752495289, 0.012811779044568539, -0.019270146265625954, 0.005954573396593332, -0.0002652356633916497, 0.05063136667013168, -0.006955165881663561, -0.025735512375831604, -0.015645625069737434, 0.007528931833803654, 0.026421232149004936, 0.01248991023749113, -0.022628778591752052, -0.0008300367626361549, 0.05079929903149605, -0.010481728240847588, 0.001964449416846037, 0.005401798523962498, -0.012867756187915802, 0.015169817954301834, 0.028688309714198112, -0.0062904367223382, -0.008970344439148903, -0.0328306220471859, 0.01581355556845665, 0.008704452775418758, 0.011363369412720203, -0.03588137775659561, 0.010019917041063309, -0.011188440956175327, -0.010446743108332157, 0.005538242869079113, -0.020571617409586906, 0.004145810380578041, -0.00502745108678937, 0.056229084730148315, 0.028912218287587166, 0.0041528078727424145, 0.028296468779444695, 0.019354112446308136, 0.013098661787807941, 0.028576355427503586, -0.0019189680460840464]" -How WsprDaemon Combines TimescaleDB and Grafana to Measure and Analyze Radio Transmissions,"This is an installment of our “Community Member Spotlight” series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition, Rob Robinett and Gwyn Griffiths, the creators of WsprDaemon, join us to share the work they’re doing to allow amateur radio enthusiasts to analyze transmission data and understand trends, be it their own personal noise levels or much larger space weather patterns.Amateur radio is a hobby for some three million people worldwide (see “What is Amateur Radio?” to learn more) and its technical scope is vast, examples include: designing and building satellites, devising bandwidth-efficient data communications protocols, and creating novel, low noise antennas for use in urban locations.Our project,WsprDaemon, focuses on amateurs who use the (amateur-developed!) open-sourceWeak Signal Propagation Reporter(WSPR): a protocol that uses low-power radio transmissions that probe the earth’s ionosphere to identify radio propagation paths and provide insights onspace weather. On a typical day, 2,500 amateurs may report 2.7 million WSPR “spots” to thewsprnetdatabase, whose webpage interface allows simple queries on data collected in the last two weeks.Image of radio antennae, with mountains in the background. Photo of theNorthern Utah WebSDRantenna (photo courtesy of Clint Turner)Radio signals that end up in the WsprDaemon TimescaleDB database may be received on a wide variety of antennas, from the 94-foot tower-supported multiband array in Northern Utah pictured above, to more modest 3-foot installations that you may see in many suburban or urban locations.About the TeamWe have a small, two-member volunteer core team, and we’re supported by a dozen or so beta testers and radio specialists (we typically have people from six countries on a weekly Zoom meeting). Rob Robinett, based in Berkeley California, is CEO of TV equipment manufacturerMystic Videoand he’s founded a series of Silicon Valley startups. He recently “rediscovered” amateur radio - after an absence of more than 40 years - and he's applying his software expertise to developing systems that measure short wave radio transmission conditions.Gwyn (left) & Rob (right), WsprDaemon's core volunteer team membersGwyn Griffiths, based in Southampton, UK, returned to amateur radio after retiring from a career as anocean technologist, where he worked with sensors and data from ships, undersea moorings, and robotics underwater vehicles. Gwyn focuses on the TimescaleDB components,",https://www.timescale.com/blog/wsprdaemon-combines-timescaledb-grafana-analyze-radio/,526,"[0.0019094326999038458, 0.039139654487371445, 0.032958146184682846, -0.013343739323318005, -0.003584829857572913, -0.00014720091712661088, -0.014948554337024689, 0.022467410191893578, -0.023165801540017128, 0.0028270005714148283, -0.00357182789593935, -0.006099782884120941, -0.03691074624657631, -0.006697873584926128, 0.031917985528707504, 0.01434674859046936, -0.012779082171618938, -0.008298973552882671, -0.052245642989873886, 0.027608761563897133, 0.011285712942481041, 0.004119768273085356, -0.010342140682041645, -0.0022010484244674444, -0.017430074512958527, -0.006110927555710077, -0.040803905576467514, 0.056792620569467545, 0.015134297311306, -0.034622397273778915, 0.0016428922535851598, -0.028188278898596764, -0.034622397273778915, 0.0070062060840427876, 0.009502585045993328, -0.010973665863275528, 0.023344114422798157, -0.036108337342739105, 0.001066161785274744, -0.012400167994201183, 0.0233886931091547, -0.05857574939727783, 0.004769866820424795, 0.027920808643102646, -0.03685130923986435, -0.019629264250397682, -0.06639178842306137, 0.035603117197752, 0.033225614577531815, -0.022333675995469093, -0.01849994994699955, 0.0397934690117836, -0.0155577901750803, -0.05263198912143707, 0.00030136716668494046, -0.0017199753783643246, 0.0045618354342877865, 0.03818865492939949, -0.07352430373430252, -0.038812749087810516, 0.0058991811238229275, -0.007979496382176876, 0.006136931478977203, 0.01786099746823311, -0.002150897867977619, -0.0056428564712405205, 0.002399792894721031, 0.020996330305933952, 0.012400167994201183, 0.04160631448030472, 0.061280157417058945, 0.024027647450566292, 0.03961515426635742, -0.04841192066669464, -0.024220818653702736, -0.0031761962454766035, -0.019034888595342636, 0.03848583996295929, 0.005159926135092974, 0.01774212159216404, -0.008663029409945011, -0.016271041706204414, -0.03726737201213837, -0.028277434408664703, -0.026791494339704514, -0.007897770032286644, -0.013640927150845528, -0.020060187205672264, 0.009799772873520851, 0.0009194252779707313, 0.000945893581956625, 0.05572274327278137, 0.03940712288022041, 0.011456595733761787, -0.00028673995984718204, -0.01971842162311077, 0.016211602836847305, 0.04960067197680473, 0.03792118281126022, -0.017489511519670486, 0.03129389137029648, -0.014681085012853146, -0.05741671472787857, -0.05881349742412567, 0.014487912878394127, 0.0006812105420976877, 0.03848583996295929, 0.041873782873153687, -0.012348160147666931, -0.02353728748857975, -0.1009250357747078, -0.01501542143523693, -0.0397934690117836, -0.03801034018397331, -0.007771465461701155, 0.003434378420934081, -0.03711877763271332, -0.04422156885266304, 0.07049298286437988, 0.0066681550815701485, -0.03661355748772621, 0.03685130923986435, 0.023879053071141243, -0.010409008711576462, 0.05147295445203781, -0.01561722718179226, 0.0036442673299461603, -0.04181434586644173, -0.0069876317866146564, 0.01337345875799656, 0.10633385181427002, -0.013143138028681278, 0.07055242359638214, -0.028322013095021248, -0.01104053296148777, -0.00958431139588356, -0.029852531850337982, -0.06395485252141953, -0.009576882235705853, 0.029911968857049942, 0.03649468347430229, 0.016850557178258896, 0.030491484329104424, -0.036435242742300034, 0.017697542905807495, -0.022363394498825073, -0.019629264250397682, 0.009027084335684776, -0.05566330626606941, 0.01543891429901123, -0.019302358850836754, -0.012444745749235153, -0.05471230298280716, 0.018901154398918152, 0.04989786073565483, 0.007281105034053326, 0.0644303485751152, 0.04573722928762436, -0.04389466345310211, -0.02187303453683853, -0.03072923608124256, 0.03812921419739723, -0.04903601482510567, 0.004275791812688112, -0.031472206115722656, -0.0328095518052578, 0.027311574667692184, -0.012400167994201183, -0.07132510840892792, 0.004572979640215635, -0.05334524065256119, -0.05896209180355072, -0.02222966030240059, 0.03711877763271332, -0.003278354648500681, -0.0036832732148468494, 0.049125172197818756, -0.012422456406056881, -0.005182215012609959, -0.05786249786615372, -0.023210380226373672, -0.02811398170888424, -0.0034436655696481466, -0.033255334943532944, -0.016092728823423386, -0.03506818041205406, 0.016642525792121887, -0.007351687178015709, -8.172669186023995e-05, -0.009859210811555386, 0.027430448681116104, 0.07186005264520645, 0.04897657781839371, 0.03584086894989014, 0.0336119569838047, -0.014762812294065952, 0.02653888426721096, 0.04466735199093819, -0.014963413588702679, -0.013960404321551323, -0.00958431139588356, -0.02429511584341526, 0.0386938713490963, -0.04386494308710098, 0.004911031108349562, -0.028396310284733772, 0.03581114858388901, 0.007622871082276106, -0.004554405342787504, -0.006367252208292484, 0.03991234302520752, -0.0034195189364254475, 0.08434194326400757, -0.008863630704581738, -0.05857574939727783, -0.006705303210765123, -0.02447342872619629, 0.00779375433921814, 0.006928194314241409, -0.001366135897114873, -0.042111534625291824, 0.05301833152770996, 0.002093317685648799, 0.010884509421885014, 0.007065644022077322, 0.01169434655457735, 0.039228811860084534, -0.015765821561217308, 0.06478697806596756, 0.003107471624389291, -0.006850182544440031, -0.017296340316534042, 0.0018537099240347743, -0.047847263514995575, -0.003521677339449525, 0.005041050724685192, 0.05720868334174156, -0.025409569963812828, -0.02750474587082863, -0.009547163732349873, 0.0041049085557460785, -0.01564694568514824, 0.03527621179819107, 0.04172518849372864, -0.0033916577231138945, -0.009235115721821785, -0.03367139771580696, -0.06211228296160698, 0.045113131403923035, -0.007667449302971363, 0.04249787703156471, 0.04086334630846977, -0.002124893944710493, 0.019614405930042267, 0.015483492985367775, 0.026405150070786476, -0.024518007412552834, 0.004461534321308136, -0.013187715783715248, -0.035930026322603226, -0.0035253921523690224, -0.0470745749771595, -0.02793566882610321, 0.05738699436187744, -0.026880651712417603, 0.0022456266451627016, 0.016553370282053947, 0.00065195607021451, 0.009859210811555386, -0.011768643744289875, -0.027861371636390686, 0.026479447260499, 0.04974926635622978, -0.013744942843914032, 0.020520828664302826, -0.01302426215261221, 0.03783202916383743, 0.0033452219795435667, -0.015632087364792824, -0.004201494622975588, -0.005776591133326292, 0.011337720789015293, 0.03006056323647499, 0.0034826714545488358, -0.0036275505553931, 0.028262576088309288, 0.001570452586747706, 0.04297338053584099, 0.019376656040549278, -0.06460866332054138, 0.014866827987134457, 0.0008534867083653808, 0.007102792151272297, 0.01302426215261221, -0.015810400247573853, -0.031472206115722656, 0.06395485252141953, 0.022274237126111984, -0.04835247993469238, -0.005245367530733347, 0.028589481487870216, 0.017801558598876, 0.008952787145972252, -0.034592680633068085, -0.0304171871393919, 0.023819616064429283, 0.01433188933879137, -0.019094327464699745, -0.02007504738867283, -0.021278658881783485, -0.01841079443693161, 0.06353878974914551, -0.026776636019349098, -0.020372234284877777, 0.03144248574972153, -0.004286936484277248, 0.033017583191394806, 0.02720755897462368, -0.00259296502918005, -0.06009140610694885, -0.024027647450566292, -0.0764961838722229, -0.006805604323744774, -0.04600469768047333, 0.011850370094180107, -0.0353059284389019, 0.04573722928762436, -0.014918835833668709, -0.008900779299438, 0.006582713220268488, 0.0403878428041935, 0.01561722718179226, 0.02939189039170742, 0.010282703675329685, -0.010921658016741276, -0.03991234302520752, -0.029778234660625458, -0.008328692987561226, 0.011746354401111603, -8.015948696993291e-05, -0.03726737201213837, -0.019703561440110207, -0.04710429161787033, 0.01814332604408264, 0.012303581461310387, 0.05319664627313614, -0.012363019399344921, -0.05052195489406586, -0.002531670033931732, 0.04121997207403183, -0.013105989433825016, 0.040536437183618546, -0.007927488535642624, -0.024666601791977882, -0.006593857891857624, -0.03509789705276489, 0.05132436007261276, -0.004242358263581991, 0.008767045103013515, 0.004168061073869467, -0.035930026322603226, 0.07221667468547821, 0.012348160147666931, -0.016122447326779366, 0.00681674899533391, 0.03242320567369461, -0.02665776014328003, 0.03824809193611145, -0.04026896879076958, -0.07364317774772644, 0.002914299489930272, 0.024726038798689842, 0.008209817111492157, -0.005460829008370638, -0.04121997207403183, 0.05741671472787857, 0.07637730985879898, -0.0015936704585328698, -0.024800335988402367, 0.05177014321088791, 0.08089456707239151, 0.006857612170279026, -0.01360377948731184, -0.021754158660769463, 0.029079841449856758, 0.037475403398275375, 0.027430448681116104, 0.009970656596124172, -0.08541182428598404, -0.020877454429864883, 0.0012082548346370459, -0.046212729066610336, 0.003724136622622609, -0.02735615149140358, 0.016761401668190956, 0.01102567370980978, -0.05292917788028717, 0.03200714290142059, 0.027727637439966202, 0.02444371022284031, 0.02202162891626358, 0.005505407229065895, -0.08511463552713394, 0.04757979139685631, -0.029926827177405357, 0.04466735199093819, -0.01255619153380394, 0.056733183562755585, 0.0008191243396140635, -0.0250826645642519, 0.0008000857196748257, -0.03824809193611145, 0.05281030014157295, 0.002072886098176241, -0.015706384554505348, -0.021456971764564514, -0.040685031563043594, -0.016271041706204414, 0.05120548605918884, 0.0574464350938797, 0.004639847204089165, -0.010498165152966976, 0.017236901447176933, -0.012779082171618938, 0.025127241387963295, 0.018336497247219086, -0.011337720789015293, -0.02778707444667816, 0.046569354832172394, -0.031888268887996674, -0.03414689749479294, 0.01567666418850422, -0.015840118750929832, -0.005553700029850006, -0.021694721654057503, 0.01299454364925623, 0.023730458691716194, 0.043597474694252014, 0.03563283756375313, 0.03545452281832695, -0.01567666418850422, 0.0014190725050866604, -0.046212729066610336, 0.031620800495147705, -0.005624282173812389, -0.009376280009746552, 0.030283452942967415, 0.004457819275557995, 0.0036424100399017334, -0.03441436588764191, 0.040447283536195755, -0.07875481247901917, 0.00913110002875328, -0.009643749333918095, -0.04169547185301781, -0.018767420202493668, 0.045083414763212204, 0.03976374864578247, 0.022883472964167595, -0.014673655852675438, -0.033344488590955734, -0.01902003027498722, -0.09521902352571487, -0.02802482433617115, -0.03260152041912079, -0.04564807191491127, -0.0007452917052432895, 0.015230882912874222, 0.0033322200179100037, 0.03524649143218994, 0.041992660611867905, -0.011278282850980759, -0.06407372653484344, -0.03194770589470863, -0.04425128921866417, 2.6011202862719074e-06, 0.03355251997709274, 0.00914595928043127, 0.014421045780181885, -0.0532560832798481, -0.008142950013279915, -0.008759615011513233, 0.01919834315776825, 0.013611208647489548, 0.015721242874860764, 0.006798174697905779, 0.00293473107740283, 0.049244046211242676, 0.015765821561217308, -0.017430074512958527, -0.002407222520560026, 0.02738586999475956, 0.03009028173983097, -0.018886294215917587, 0.02368588000535965, -0.05102717503905296, 0.009049373678863049, 0.02274973876774311, -0.0004506576806306839, -0.013982693664729595, 0.018797138705849648, 0.0018035594839602709, -0.000557691790163517, 0.05578218027949333, 0.04971954599022865, 0.022497128695249557, -0.029555343091487885, 0.03664327412843704, -0.03283926844596863, -0.00780861359089613, -0.01214755792170763, 0.003460382344201207, -0.0019521533977240324, 0.04133884608745575, -0.005798880010843277, 0.00929455365985632, -0.03848583996295929, 0.01701401174068451, -0.010282703675329685, -0.007162230089306831, -0.019272640347480774, -0.009004794992506504, -0.03132361173629761, 0.03120473586022854, 0.028797512874007225, -6.0366306570358574e-05, -0.014955984428524971, -0.012266432866454124, -0.008663029409945011, -0.010119250044226646, -0.011278282850980759, -0.00849214568734169, -0.02120436169207096, 0.023522427305579185, -0.033195894211530685, -0.019822437316179276, -0.011322861537337303, -0.058100245893001556, 0.01172406505793333, 0.0005781234358437359, 0.03958543762564659, 0.03937740623950958, -0.04600469768047333, -0.00659014331176877, 0.0020654562395066023, 0.01216241717338562, 0.0008493074565194547, -0.03218545764684677, -0.009064232930541039, 0.010825071483850479, 0.07156286388635635, -0.03961515426635742, 0.04383522644639015, -0.031591080129146576, 0.0009143173228949308, 0.03691074624657631, -0.022853754460811615, 0.003250493435189128, -0.01102567370980978, -0.02787623181939125, -0.029644498601555824, 0.004186635371297598, 0.02744530886411667, 0.007934918627142906, 0.009153389371931553, 0.034830428659915924, -0.004413241054862738, 0.0028530044946819544, -0.023165801540017128, 0.018574247136712074, 0.021977050229907036, -0.028827233240008354, -0.03688102588057518, -0.012533902190625668, 0.03352280333638191, -0.009888929314911366, -0.02010476589202881, 0.0005748729454353452, 0.0132397236302495, 0.021917613223195076, -0.007017350755631924, 0.019302358850836754, 0.023730458691716194, 0.037683434784412384, -0.03708905726671219, -0.023611582815647125, -0.040803905576467514, -0.001645678305067122, 0.027133261784911156, 0.005613137502223253, 0.0034901010803878307, 0.02723727747797966, 0.01564694568514824, 0.036048900336027145, -0.0014812962617725134, 0.00358668714761734, 0.01542405504733324, -0.026880651712417603, -0.033077020198106766, 0.04107137769460678, 0.008960217237472534, -0.0027861371636390686, -0.009287123568356037, -0.026999525725841522, 0.005007617175579071, 0.004963038954883814, 0.023121222853660583, 0.001500799204222858, -0.0010912370635196567, -0.016999151557683945, -0.02414652146399021, 0.01607786864042282, -0.007830902934074402, -0.00650470145046711, -0.03138304874300957, 0.04731232300400734, -0.008566442877054214, -0.024800335988402367, 0.03132361173629761, 0.020728860050439835, -0.0285746231675148, 0.000593911565374583, 0.008826482109725475, -0.008358411490917206, -0.01896059140563011, 0.029228435829281807, -0.00650470145046711, -0.03548424318432808, 0.007615441456437111, -0.0046101282350718975, -0.004899886436760426, -0.004227498546242714, 0.02796538732945919, -0.0064601232297718525, -0.03497902303934097, -0.022274237126111984, 0.01302426215261221, 0.036138057708740234, -0.02554330602288246, -0.0336119569838047, 0.01625618152320385, 0.016063010320067406, -0.009079092182219028, 0.003198485355824232, 0.029124420136213303, -0.021665003150701523, -0.03087782859802246, 0.03649468347430229, 0.04003121703863144, -0.016880275681614876, -0.010817642323672771, 0.01431703008711338, 0.04261675477027893, 0.05313720926642418, 0.016850557178258896, -0.009792343713343143, -0.019584687426686287, 0.04077418893575668, -0.03346336632966995, -0.0006538135348819196, -0.030461765825748444, -0.014970843680202961, -0.03129389137029648, -0.0072216675616800785, 0.0364055261015892, -0.011367439292371273, 0.01254133228212595, 0.025647321715950966, 0.007764035370200872, 0.028886670246720314, -0.002505666110664606, -0.04570750892162323, 0.03515733778476715, 0.0018174900906160474, 0.0056502860970795155, -0.008076082915067673, 0.02219993993639946, -0.0311155803501606, 0.010579891502857208, 0.0397934690117836, -0.011501174420118332, -0.023091504350304604, -0.01980757713317871, 0.011538323014974594, -0.02156098745763302, 0.03144248574972153, 0.002626398578286171, -0.0028195707127451897, 0.03120473586022854, 0.008826482109725475, 0.01431703008711338, 0.005382816772907972, -0.0038337246514856815, -0.013418036513030529, -0.0019651553593575954, -0.03717821463942528, -8.561567665310577e-05, -0.006969057954847813, -0.026776636019349098, -0.04760951176285744, 0.009220256470143795, 0.020951751619577408, -0.04570750892162323, 0.012415027245879173, -0.011404587887227535, -0.018752560019493103, -0.025706758722662926, -0.006917049642652273, 0.011909808032214642, 0.005007617175579071, -0.0033340775407850742, 0.004246072843670845, -0.030045703053474426, 0.014562210068106651, 0.010735915042459965, -0.012548761442303658, 0.02162042446434498, 0.021456971764564514, 0.004008322488516569, 0.0033786557614803314, -0.07548574358224869, 0.05364242568612099, -0.01321000512689352, -0.03349308297038078, -0.0017469079466536641, -0.047847263514995575, -0.022556565701961517, 0.03266095742583275, -0.013522052206099033, 0.012548761442303658, 0.012206995859742165, 0.013856388628482819, 0.03417661413550377, -0.01823248155415058, -0.01928749866783619, -0.011924667283892632, -0.01536461804062128, 0.010282703675329685, -0.012704784981906414, -0.03655412048101425, -0.01995617151260376, 0.0011599618010222912, -0.018247341737151146, 0.027980247512459755, 0.005111632868647575, -0.021100345999002457, 0.00951001513749361, 0.036019179970026016, -0.002605966990813613, 0.010044952854514122, 0.00841784942895174, 0.01514915656298399, 0.016360197216272354, 0.009829492308199406, 0.005475688260048628, 0.010461016558110714, -0.0016633238410577178, 0.028322013095021248, 0.0369998998939991, 0.027801934629678726, -0.02753446437418461, 0.012712215073406696, 0.004008322488516569, -0.007474277168512344, 0.005977192893624306, 0.022972630336880684, -0.02386419288814068, -0.010275273583829403, -0.004773581866174936, -0.0074928514659404755, -0.00885620154440403, -0.02945132739841938, -0.004376092925667763, 0.02514210157096386, 0.01214755792170763, -0.01861882582306862, -0.014718233607709408, -0.012511612847447395, 0.003291356610134244, -0.005111632868647575, 0.02147183008491993, -0.011939526535570621, -0.059883374720811844, 0.010364430025219917, 0.009056802839040756, -0.027683058753609657, -0.0019242920679971576, -0.01022326573729515, -0.00341580412350595, -0.03521677479147911, -0.02584049291908741, 0.01774212159216404, -0.026776636019349098, -0.019971031695604324, 0.04570750892162323, -0.0051079182885587215, -0.02380475588142872, -0.06555966287851334, -0.006055204663425684, 0.04154687747359276, 0.019495530053973198, -0.018663404509425163, -0.004673280753195286, 0.02659832313656807, -0.008715037256479263, 0.01144916657358408, 0.0011079538380727172, 0.02274973876774311, 0.0026821214705705643, -0.018009589985013008, -0.016508791595697403, -0.006222372874617577, -0.003072180552408099, 0.0075262850150465965, 0.015000562183558941, 0.023091504350304604, 0.01677625998854637, -0.0008172668749466538, 0.02417623996734619, -0.01474052295088768, 0.018826857209205627, 0.009212827309966087, 0.003516105003654957, -0.04383522644639015, 0.006400685757398605, 0.01913890428841114, 0.011263423599302769, 0.019361795857548714, 0.033106740564107895, -0.018633686006069183, 0.0359003059566021, -0.04015009477734566, 0.0103718601167202, 0.003664699150249362, 0.03988262638449669, 0.0484713576734066, -0.03539508581161499, -0.0017125456361100078, -0.051175765693187714, -0.036227211356163025, -0.008767045103013515, 0.0024239392951130867, -0.012244144454598427, -0.06621348112821579, -0.003664699150249362, 0.004524686839431524, 0.009123670868575573, 0.009138530120253563, 0.01254133228212595, -0.012511612847447395, 0.0037315664812922478, -0.0481741689145565, 0.025350132957100868, -0.010186117142438889, 0.017846137285232544, -0.0008530223276466131, -0.0025613887701183558, -0.009807202965021133, -0.007503996137529612, 0.04175490885972977, -0.040358126163482666, -0.04389466345310211, 0.01643449440598488, 0.002362644299864769, -0.0035179625265300274, -0.04220069199800491, 0.004015752580016851, 0.010015234351158142, 0.04719344899058342, 0.0238344743847847, -0.01625618152320385, 0.017028870061039925, 0.0035179625265300274, -0.012058401480317116, -0.0459749773144722, -0.01283109001815319, -0.026241697371006012, -0.036197494715452194, -0.03572199493646622, -0.02514210157096386, -0.00399717828258872, -0.0031056141015142202, -0.0046175578609108925, -0.015349757857620716, 0.0029124419670552015, 0.005791450385004282, 0.0025539591442793608, 0.0012259003706276417, -0.013328880071640015, 0.000404918595449999, -0.04692598059773445, -0.02551358751952648, 0.013232294470071793, -0.024280257523059845, 0.010981095023453236, 0.03426577150821686, 0.01133029069751501, 0.030224015936255455, 0.026479447260499, -0.02965935878455639, -0.03227461129426956, 0.01041643787175417, -0.019629264250397682, 0.014183295890688896, -0.00442067114636302, -0.02939189039170742, -0.03533564880490303, 0.009770054370164871, 0.009443147107958794, 0.005895466078072786, -0.0001420929911546409, -0.02775735594332218, -0.0017905575223267078, 0.023254958912730217, -0.03349308297038078, -0.03304729983210564, 0.0009022440644912422, 0.04870910570025444, -0.020922033116221428, -0.00817266944795847, 0.01847023144364357, 0.0012175419833511114, 0.00885620154440403, 0.008090942166745663, -0.003553253598511219, 0.027044104412198067, -0.0033340775407850742, 0.022511988878250122, 0.029956547543406487, 0.012905387207865715, 0.009695757180452347, -0.007336827926337719, -0.013113418594002724, -0.022511988878250122, 0.023819616064429283, -0.033136457204818726, -0.005654001142829657, -0.015884697437286377, 0.015305180102586746, -0.023953350260853767, 0.030105140060186386, -0.021739300340414047, -0.01765296421945095, -0.007830902934074402, 0.04312197491526604, -0.0029737369623035192, 0.022794317454099655, -0.014227873645722866, -0.03346336632966995, -0.0445781946182251, -0.019302358850836754, -0.010654188692569733, 0.016568228602409363, -0.0403878428041935, 0.002611539326608181, -0.03789146617054939, -0.006779600400477648, -0.001816561445593834, 0.03545452281832695, 0.006374681834131479, -0.012333300895988941, -0.01043129712343216, -0.012259003706276417, -0.008618450723588467, -0.053612709045410156, 0.02435455285012722, 0.013061410747468472, 0.0009110668324865401, -0.023908771574497223, 0.004688140004873276, -0.009532303549349308, 0.004840448964387178, -0.01105539221316576, -0.0007768679060973227, 0.010163828730583191, -0.025617603212594986, 0.025008367374539375, 0.0016679674154147506, 0.006415545009076595, 0.04576694592833519, 0.03096698597073555, 0.029287874698638916, -0.028589481487870216, -0.015022851526737213, -0.01771240308880806, -0.020461391657590866, 0.00705821393057704, 0.013915826566517353, -0.0010550172301009297, 0.0017376209143549204, -0.0074928514659404755, -0.023700740188360214, 0.01701401174068451, 0.008150380104780197, 0.03423605486750603, -0.025469008833169937, -0.020877454429864883, 0.0032932141330093145, 0.004101193975657225, 1.1797549632319715e-05, -0.00758200790733099, -0.014673655852675438, 0.0036108337808400393, -0.026434868574142456, 0.0014348606346175075, -0.051116328686475754, 0.024755757302045822, 0.00551283685490489, -0.016761401668190956, -0.013380887918174267, -0.026494307443499565, 0.003046176629140973, 0.01536461804062128, 0.023106364533305168, 0.005709723569452763, -0.03370111435651779, -0.030283452942967415, 0.008157809264957905, -0.017236901447176933, -0.020283078774809837, 0.0020301651675254107, 0.00885620154440403, 0.006077494006603956, -0.05875406041741371, -0.022333675995469093, -0.014591928571462631, 0.02050597034394741, 0.02071400173008442, -0.0040491861291229725, 0.004480108618736267, -0.0011729637626558542, 0.018767420202493668, -0.021828455850481987, -0.020699141547083855, -0.010089531540870667, -0.01622646301984787, 0.037742871791124344, -0.03227461129426956, -0.0040900493040680885, -0.007771465461701155, 0.0048515936359763145, -0.013841529376804829, 0.0046026986092329025, 0.03200714290142059, -0.022571425884962082, -0.0025818203575909138, 0.003934025764465332, -0.01835135743021965, 0.007099077571183443, 0.039288248866796494, 0.014629077166318893, -0.011129689402878284, 0.016583088785409927, 0.023700740188360214, 0.01297968439757824, -0.017207182943820953, 0.02269030176103115, -0.03682158887386322, -0.019094327464699745, 0.005549984984099865, -0.011345150880515575, 0.02202162891626358, -0.003278354648500681, -0.029585061594843864, -0.010721055790781975, -0.01792043447494507, -0.03569227457046509, 0.0034622398670762777, 0.009242545813322067, 0.005609422922134399, -0.028247715905308723, 0.0007787253125570714, -0.01066161785274744, -0.04015009477734566, -0.010527883656322956, -0.024027647450566292, 0.027608761563897133, -0.04977898299694061, 0.02077343873679638, -0.008737325668334961, 0.031888268887996674, 0.0033006437588483095, -0.008031505160033703, -0.03396858274936676, 0.01190237794071436, 0.02056540735065937, -0.00552769610658288, -0.011092540808022022, 0.01257105078548193, -0.03673243150115013, -0.03263123705983162, 0.004416956100612879, -0.02589993178844452, 0.00028139984351582825, -0.007593152578920126, 0.05506892874836922, -0.01847023144364357, 0.010000375099480152, 0.008618450723588467, 0.01637505739927292, 0.003178053768351674, 0.01925778016448021, -0.013759803026914597, -0.017638105899095535, -0.022913191467523575, -0.015000562183558941, 0.0019967316184192896, -0.011270853690803051, 0.010461016558110714, 0.03857499733567238, 0.040655314922332764, -0.006352392490953207, -0.0043538035824894905, 0.008150380104780197, -0.000763401563744992, -0.004019467160105705, 0.009673467837274075, -0.020699141547083855, -0.00826182495802641, 0.03628665208816528, 0.04894685745239258, -0.013425466604530811, 0.006207513622939587, -0.02487463317811489, -0.01557264942675829, -0.012206995859742165, 0.0033916577231138945, -0.00021929221111349761, -0.0372970886528492, 0.014985702931880951, -0.009658608585596085, -0.007050784304738045, 0.029154138639569283, 0.0339091457426548, 0.00456555001437664, 0.03533564880490303, -0.008648170158267021, -0.021248938515782356, 0.0010057955514639616, -0.006281810346990824, 0.03114529885351658, 0.0029663073364645243, 0.014599358662962914, 0.04154687747359276, -0.0058917514979839325, -0.003960029687732458, -0.004981613252311945, 0.08035962283611298, 0.0046101282350718975, 0.03283926844596863, -0.009970656596124172, 0.007325683254748583, 0.0017970585031434894, -0.018856575712561607, -0.0004344052285887301, 0.002006018767133355, -0.015899555757641792, 0.0013178428635001183, -0.010929087176918983, 0.003495673416182399, -0.023106364533305168, -0.006783315446227789, 0.008700178004801273, -0.02781679295003414, -0.00023461595992557704, 0.018603965640068054, -0.007366546429693699, -0.007964637130498886, 0.02368588000535965, -0.0012788369785994291, -0.03230433166027069, -0.03569227457046509, -0.010862220078706741, -0.02217022143304348, -0.009227686561644077, -0.005304805003106594, -0.019599545747041702, 0.0013011260889470577, 0.007184518966823816, 0.004457819275557995, 0.007303394377231598, -0.011129689402878284, -0.01674654148519039, -0.00916081853210926, -0.01217727642506361, 0.014733092859387398, -0.0072216675616800785, 0.0018982881447300315, -0.023879053071141243, -0.028158560395240784, -0.010854789987206459, -0.028336871415376663, -0.0002565567847341299, 0.019361795857548714, -0.02147183008491993, -0.023076646029949188, -0.04466735199093819, -0.012987113557755947, -0.015706384554505348, 0.039020780473947525, -0.007986926473677158, 0.02335897460579872, -0.006304099690169096, 0.0212935172021389, 0.010327281430363655, -0.010275273583829403, 0.011835510842502117, -0.010267844423651695, -0.015275461599230766, -0.015349757857620716, -0.005457113962620497, -0.008507005870342255, -0.031412769109010696, 0.028470607474446297, -0.018485091626644135, 0.007845762185752392, -0.018395934253931046, -0.03006056323647499, -0.006876186467707157, 0.030134858563542366, 0.031531643122434616, 0.012660207226872444, -0.00021766696590930223, -0.020283078774809837, 0.01078049372881651, 0.03123445436358452, 0.009822062216699123, 0.012637917883694172, 0.012578480876982212, -0.004119768273085356, 0.02453286573290825, -0.028440888971090317, -0.0012416885001584888, 0.015854977071285248, 0.01299454364925623, -0.0011896805372089148, 0.016568228602409363, -0.014814820140600204, -0.009911218658089638, -0.023329254239797592, -0.006549279671162367, 0.006835323292762041, -0.005015046801418066, -0.021427251398563385, 0.0054273949936032295, -0.011828080751001835, -0.01514915656298399, 0.03587058559060097, 0.00199858914129436, 0.00779375433921814, -0.008365841582417488, -0.033017583191394806, -0.02350756712257862, 0.005680005066096783, -0.021338095888495445, -0.025483867153525352, 0.03352280333638191, -0.015528070740401745, 0.00844756793230772, 0.02365616150200367, 0.003051748964935541, 0.02714812010526657, -0.026880651712417603, -0.025379851460456848, -0.03257180005311966, 0.006913335062563419, -0.02714812010526657, 0.00800921581685543, 0.005509121809154749, -0.015022851526737213, -0.007489136885851622, -0.0008873846963979304, -0.014577069319784641, 0.02380475588142872, -0.0001728565985104069, 0.02208106592297554, -0.010304993018507957, -0.0009955796413123608, -0.01294996589422226, 0.04683682322502136, 0.007021065801382065, 0.007530000060796738, 0.001053159823641181, -0.0015983140328899026, -0.022913191467523575, 0.006058919709175825, 0.01302426215261221, -0.030268594622612, -0.0221405029296875, 0.006229802500456572, -0.003770572366192937, -0.006690443959087133, -0.037445683032274246, -0.011189126409590244, 0.04151715710759163, 0.010735915042459965, -0.006534420419484377, -0.02720755897462368, -0.0030944696627557278, -0.006047775037586689, 0.04532116279006004, -0.02729671448469162, -0.018485091626644135, -0.005624282173812389, -0.02301720716059208, -0.041903503239154816, 0.00777889508754015, 0.017311198636889458, -0.034622397273778915, 0.00042627897346392274, 0.01916862279176712, 0.02047624997794628, 0.013819240033626556, 0.010550172999501228, -0.010943946428596973, 0.015305180102586746, 0.01852967031300068, 0.016969433054327965, -0.008328692987561226, 0.02444371022284031, 0.007600582204759121, 0.007247671484947205, -0.008454997092485428, 0.0027545609045773745, -0.0017794129671528935, -0.02041681297123432, 0.0017246189527213573, -0.00884134229272604, -0.015037710778415203, 0.030432047322392464, -0.00034106962266378105, 0.015000562183558941, 0.01913890428841114, -0.012325870804488659, 4.875739978160709e-05, 0.017697542905807495, -0.0012193993898108602, 0.012065831571817398, 0.015840118750929832, 0.0018769276794046164, 0.030550923198461533, 0.042052097618579865, 0.0031539073679596186, 0.04175490885972977, -0.019554967060685158, -0.04760951176285744, 0.026613181456923485, -0.026999525725841522, -0.0011608904460445046, -0.009458007290959358, 0.0008790262509137392, 0.007061928976327181, -0.0011506746523082256, 0.0005860175006091595, 0.008350981399416924, 0.010832501575350761, 0.006207513622939587, -0.044964537024497986, -0.01680597849190235, -0.0014998705592006445, -0.003711134660989046, 0.006586428266018629, -0.008975076489150524, 0.0030944696627557278, 0.025246117264032364, -0.019569827243685722, -0.017370635643601418, 0.02016420289874077, -0.006820463575422764, 0.005516551434993744, -0.01977785862982273, -0.006824178621172905, -0.004298080690205097, -0.0014107141178101301, -0.006315244361758232, -0.014413616620004177, -0.006653295364230871, 0.0132397236302495, -0.00951001513749361, 0.0025651035830378532, 0.020847735926508904, -0.03798062354326248, -0.008313833735883236, 0.012860809452831745, -0.05007617175579071, -0.03554368019104004, 0.006352392490953207, 0.0030833252239972353, -0.012645347975194454, 0.028738075867295265, 0.0019298642873764038, -0.004067760426551104, 0.025379851460456848, 0.012481894344091415, 0.02560274302959442, -0.004665851127356291, -0.02289833314716816, 0.0015100863529369235, -0.006515846122056246, -0.023641303181648254, -0.03367139771580696, -0.026434868574142456, 0.022185081616044044, 0.03512761741876602, -0.019673842936754227, 0.029644498601555824, 0.012058401480317116, 0.016300760209560394, -0.003993463236838579, 0.03379027172923088, 0.010267844423651695, -0.005702293943613768, 0.019436093047261238, -0.00034060527104884386, -0.01817304454743862, -0.03688102588057518, 0.0008637025021016598, -0.0046026986092329025, -0.013759803026914597, -0.0013494191225618124, -0.0024090800434350967, -0.013039122335612774, -0.01858910731971264, 0.004714143928140402, 0.031888268887996674, 0.011062822304666042, 0.008826482109725475, -0.02642001025378704, -0.004933319985866547, -0.03236376866698265, 0.008031505160033703, -0.01319514587521553, 0.04249787703156471, -0.0011014528572559357, 0.010453586466610432, 0.0013512765290215611, 0.022645723074674606, -0.03292842581868172, -0.001754337688907981, -0.0010030093835666776, -0.00019944098312407732, 0.020847735926508904, 0.03402802348136902, 0.009405999444425106, 0.03072923608124256, 0.008001785725355148, 0.003937740344554186, 0.0011441736714914441, 0.017415214329957962, -0.01616702601313591, -0.02529069595038891, 0.02132323570549488, 0.012214425019919872, -0.034444086253643036, -0.0029310162644833326, -0.00531594967469573, -0.00497418362647295, 0.020669423043727875, -0.007608011830598116, 0.00497418362647295, -0.007801183965057135, 0.01000780425965786, 0.0036442673299461603, 0.010743345133960247, 0.004301795735955238, -0.02429511584341526, 0.039139654487371445, 0.0064378343522548676, 0.02231881581246853, 0.00996322650462389, 0.031591080129146576, 0.029941687360405922, -0.015052570030093193, -0.0009593598661012948, -0.03539508581161499, 0.014168435707688332, -0.014844538643956184, -0.023150943219661713, -0.0014970843913033605, 0.033195894211530685, -0.007351687178015709, 0.018782278522849083, -0.009903788566589355, -0.022541707381606102, 0.028648920357227325, 0.02141239307820797, -0.025825634598731995, -0.020238500088453293, 0.002594822319224477, 0.018871435895562172, -0.016152165830135345, 3.17793783324305e-05, 0.03515733778476715, -0.004390952177345753, -0.020297937095165253, 0.009502585045993328, -0.017222043126821518, -0.0022586286067962646, 0.009926077909767628, 0.024562586098909378, -0.005921470001339912, -0.022497128695249557, 0.011701775714755058, -0.028292294591665268, 0.02601880580186844, -0.012912817299365997, 0.0411902517080307, 0.013113418594002724, -0.014577069319784641, 0.011582900770008564, 0.05209704861044884, -0.01558750867843628, 0.0025372421368956566, 0.03536536917090416, -0.01190237794071436, 0.04032840579748154, -0.013388318009674549, 0.028767794370651245, 0.009391139261424541, -0.017994731664657593, -0.022913191467523575, -0.03123445436358452, -0.03123445436358452, -0.011159407906234264, 0.014866827987134457, 0.009844351559877396, -0.001379137858748436, 0.049422357231378555, 0.02380475588142872, 0.015899555757641792, 0.028009966015815735, 0.010178687982261181, -0.011389728635549545, -0.011649767868220806, 0.009272264316678047, 0.005219363607466221]" -How WsprDaemon Combines TimescaleDB and Grafana to Measure and Analyze Radio Transmissions,"devises Grafana dashboards to help inspire WsprDaemon users to create their own, and writes our step-by-step guides (check them outhere).About the projectWsprDaemon ingests data from the wsprnet database into TimescaleDB, allowing users to access historical data (remember, the wsprnet database shows online data from the last two weeks, and our project allows users to use older data for more robust analysis) and enabling a rich range of SQL queries.Additionally, TimescaleDB facilitates our Grafana dashboards; seeing a month of “spots” gives users a far deeper understanding about their own data, enables comparisons with other datasets, and provides a platform for further experimentation and creative graphics.Our TimescaleDB application caters to a wide spectrum of radio amateurs, from casual hobbyists to third-party developers:Some hobbyists simply want to see lists of who’s heard their transmissions in the last hour, or whotheyheard, at what strength, and where the transmissions originated.Other users want to display transmission metrics as time-series graphs, while there’s another class of users for whom ability to use aggregate functions, apply defined time buckets, derive statistics, and create heat maps and other visualizations is essential (such as the internationalHam Radio Science Citizen Investigation community).Last, third-party app developers, like theVK7JJlisting,WSPR watch, and other mapping and graphing apps, also access our WSPR data, appreciating the fast query response.The key measurement for a WSPR receiver is the signal-to-noise ratio (SNR): how strong an incoming signal is compared with the background noise. But, there is alsovital metadata, including the location of the receiver and transmitter, the operating radio frequency, and most critically - time. On average, our database takes in about 4,000 “sets” of this data from a given transmitter, typically 400kB, every two minutes.This below shows an example of SNR from three transmitters, in New York State, Italy, and Virginia.Signal-to-noise (SNR) Grafana dashboard exampleThe seven-day time-series data shown in this dashboard example provides rich information for its receiver, station KD2OM in New York State:They consistently hear N2AJX, just 16km distant, whose radio waves will have travelled over the ground, at much the same SNR throughout the day.They hear WA4KFZ in Virginia throughout most days – but with a dramatic variation in SNR. It’s at a minimum in the hours before sunrise (all times are UTC), and with peaks above the local station. This is the ionosphere at work, providing a",https://www.timescale.com/blog/wsprdaemon-combines-timescaledb-grafana-analyze-radio/,540,"[-0.03521014004945755, 0.0050183371640741825, 0.06637587398290634, -0.030005939304828644, 0.02738896943628788, 0.009077614173293114, -0.004326921887695789, -0.017605070024728775, -0.004984881728887558, 0.020355863496661186, 0.005397500470280647, 0.023448646068572998, -0.04677833616733551, -0.008103685453534126, 0.07333463430404663, 0.03755946457386017, -0.02600613795220852, 0.02789452113211155, -0.05082274600863457, 0.02108445018529892, -0.011174164712429047, -0.01547878235578537, -0.02060863748192787, -0.020043611526489258, -0.007694783620536327, -0.018244443461298943, -0.007858344353735447, 0.045678019523620605, 0.013910087756812572, -0.02298770286142826, -0.014200035482645035, -0.03488301858305931, -0.024236710742115974, 0.013582966290414333, 0.02637786790728569, -0.009687249548733234, 0.015895118936896324, -0.007702218368649483, -0.0356859527528286, -0.006836090702563524, 0.02416236512362957, -0.019419105723500252, -0.03967088460922241, 0.02685368061065674, -0.0021114188712090254, -0.03167128562927246, -0.0663163959980011, -0.005899334326386452, 0.03470458835363388, 0.03714312985539436, -0.028994837775826454, 0.06155826896429062, -0.046034879982471466, -0.0246827844530344, 0.022199636325240135, 0.005955093540251255, 0.00696991290897131, 0.055699825286865234, -0.028965098783373833, -0.03422877565026283, 0.016028940677642822, -0.018675649538636208, 0.020192302763462067, 0.03455589711666107, -0.001039910945110023, -0.012534691020846367, 0.03711339086294174, 0.02704697847366333, 0.007739391177892685, 0.017619939520955086, 0.05070379376411438, 0.04044407978653908, 0.05207175388932228, -0.04990085959434509, -0.019999003037810326, -0.020712722092866898, -0.035299357026815414, -0.01283207442611456, -0.005107552278786898, 0.022928224876523018, -0.009412170387804508, 0.004211686085909605, -0.10170497000217438, -0.0047172368504107, -0.00040541659109294415, -0.054510295391082764, -0.02807294949889183, -0.0166831836104393, 0.05885208398103714, -0.008906619623303413, -0.014348727650940418, 0.010527356527745724, 0.013411970809102058, 0.014266947284340858, 0.01701030507683754, 0.03095756471157074, 0.018110621720552444, 0.04181204363703728, -0.028875883668661118, 0.001249008346349001, 0.0397898368537426, -0.037172868847846985, -0.0347343273460865, -0.04999007284641266, 0.013739092275500298, -0.01767941564321518, 0.025292418897151947, 0.021396704018115997, 0.00032479793298989534, -0.020697852596640587, -0.06007135659456253, -0.01701030507683754, -0.061320364475250244, -0.028147296980023384, -0.00015252492448780686, 0.003518412122502923, -0.027017241343855858, -0.04222837835550308, 0.07244248688220978, 0.023612206801772118, -0.03125494718551636, 0.037856850773096085, 0.014750193804502487, 0.03880847617983818, 0.015924856066703796, -0.011501285247504711, 0.0009590600384399295, -0.0347343273460865, -0.013382232747972012, 0.020340994000434875, 0.07166928797960281, -0.03297976776957512, 0.05581878125667572, -0.04374503344297409, -0.010341492481529713, -0.005694883409887552, -0.050584837794303894, -0.05430212616920471, -0.01973135955631733, 0.04303131252527237, 0.03758920356631279, 0.03880847617983818, 0.037529729306697845, -0.01496579684317112, -0.0017136692767962813, -0.020459946244955063, -0.04318000376224518, 0.024548962712287903, -0.03011002391576767, 0.018274182453751564, -0.000970211869571358, 0.03892742842435837, -0.015954595059156418, 0.014460246078670025, 0.05370736122131348, 0.036994438618421555, 0.06471052765846252, -0.004490482620894909, -0.05049562454223633, -0.007798867765814066, -0.04392345994710922, 0.04496430233120918, -0.03387191891670227, -0.00781373679637909, -0.053856052458286285, -0.003800925798714161, -0.011999402195215225, -0.05700831115245819, -0.0790443867444992, 0.010661178268492222, -0.05730569362640381, -0.040235914289951324, 0.00475812703371048, 0.008230073377490044, 0.018125491216778755, -0.005430955905467272, 0.013739092275500298, -0.0166831836104393, 0.0361022911965847, -0.04442901164293289, -0.024102887138724327, -0.032563433051109314, 0.0094344737008214, -0.023106655105948448, 0.003325113095343113, 0.02144131064414978, -0.014794801361858845, 0.037172868847846985, 0.026125092059373856, 0.004869645927101374, 0.02129261940717697, 0.03755946457386017, 0.07577317208051682, 0.03348531946539879, 0.025307288393378258, -0.03149285539984703, 0.014950927346944809, 0.04883028194308281, -0.016623707488179207, 0.009486516006290913, -0.005542474798858166, 0.0006858394481241703, 0.03372322767972946, -0.05082274600863457, -0.010170497000217438, 0.026422474533319473, 0.03217683359980583, -0.02499503642320633, 0.010594267398118973, -0.01022253930568695, 0.019329892471432686, 0.01906224712729454, 0.07309672981500626, -0.0363699346780777, -0.06322361528873444, 0.0033697206526994705, -0.058762870728969574, -0.019091986119747162, -0.006319387815892696, -0.022675449028611183, -0.026244044303894043, 0.044488489627838135, 0.001520370366051793, -0.004836190026253462, -0.010378665290772915, 0.04508325457572937, 0.03782711178064346, 0.006798917893320322, 0.03372322767972946, 0.006155827082693577, 0.012289349921047688, 0.015173965133726597, 0.01522600743919611, -0.03550752252340317, -0.012222439050674438, -0.03327715024352074, 0.02654142864048481, -0.032266050577163696, 0.009538558311760426, -0.030927827581763268, -0.011724323034286499, -0.009791333228349686, 0.030868349596858025, 0.0973631739616394, 0.019448844715952873, 0.00019643537234514952, -0.04862211272120476, -0.0544210784137249, 0.028444679453969002, 0.03550752252340317, 0.010304318740963936, 0.015359829179942608, -0.011806103400886059, -0.028325725346803665, -0.0008210557280108333, 0.008638974279165268, -0.057603076100349426, 0.013486316427588463, -0.01454946119338274, -0.008467979729175568, 0.017069781199097633, -0.0367862693965435, -0.016876481473445892, 0.03791632503271103, -0.053856052458286285, -0.012512387707829475, 0.024623308330774307, -0.03333662822842598, -0.006111219525337219, -0.016965696588158607, -0.00012696857447735965, 0.018824340775609016, 0.05977397412061691, -0.020831676200032234, -0.007932689972221851, 0.013516055420041084, 0.04630252346396446, -0.01805114559829235, 0.001384689356200397, 5.241955295787193e-05, -0.01395469531416893, -0.02872719243168831, -0.004155926872044802, 0.033782701939344406, -0.03286081552505493, -0.008103685453534126, 0.022734927013516426, 0.04781917855143547, 0.022050945088267326, -0.08814430236816406, 0.01250495295971632, 0.02266058139503002, 0.02874206192791462, -0.005925355479121208, 0.01800653710961342, -0.026586035266518593, 0.02196172997355461, 0.011939925141632557, -0.04954399913549423, -0.025084251537919044, 0.009821072220802307, 0.012772597372531891, 0.031730759888887405, -0.01385804545134306, -0.02382037416100502, 0.03898690640926361, 0.04323948174715042, -0.013828307390213013, -0.03755946457386017, 0.010512487031519413, -0.009843375533819199, 0.032414741814136505, -0.02908405289053917, -0.02503964491188526, 0.006051742937415838, -0.02926248125731945, 0.07833066582679749, 0.023686552420258522, 0.004668912384659052, -0.06108245626091957, -0.02179816924035549, -0.06964708864688873, -0.0015649778069928288, -0.023746028542518616, 0.005754359997808933, -0.02669011987745762, 0.00996232870966196, 0.011196468025445938, -0.014296685345470905, -0.016727790236473083, 0.04222837835550308, 0.034080084413290024, 0.05001981183886528, 0.030422275885939598, -0.024727392941713333, -0.06250989437103271, -0.041603874415159225, -0.00539378309622407, -0.016460146754980087, 0.032057881355285645, -0.027953997254371643, -0.06203408166766167, -0.06001187860965729, 0.017426641657948494, 0.004014669917523861, 0.0319984070956707, -0.02994646318256855, -0.03711339086294174, 0.01387291494756937, 0.012430607341229916, -0.031225210055708885, 0.04255549982190132, -0.005653993226587772, 0.006401168182492256, 0.03369348868727684, -0.012980765663087368, 0.042109426110982895, -0.01515166088938713, -0.0008972600917331874, -0.014088517054915428, -0.021872516721487045, 0.022348329424858093, 0.05106065049767494, -0.03907611966133118, 0.006382581312209368, -0.00027902884176000953, -0.02144131064414978, 2.8489519536378793e-05, -0.02211042307317257, -0.05227992311120033, 0.03060070611536503, -0.0059885489754378796, 0.030407406389713287, -0.009560861624777317, -0.05106065049767494, 0.023894719779491425, 0.0786280483007431, 0.006865828763693571, -0.015159095637500286, 0.039551932364702225, 0.03806501626968384, -0.0059699625708162785, -0.00774682592600584, -0.0226308424025774, 0.049068186432123184, 0.022586235776543617, 0.005345458630472422, 0.024385401979088783, -0.11092384159564972, -0.015746427699923515, -0.006237607449293137, -0.025946661829948425, -0.00249058217741549, -0.025396503508090973, -0.003267495194450021, 0.027671484276652336, -0.02840007096529007, 0.038689520210027695, 0.019315022975206375, 0.03434773162007332, 0.02908405289053917, -0.013382232747972012, -0.08713320642709732, 0.007969862781465054, -0.007337924093008041, 0.059446852654218674, -0.018110621720552444, 0.02941117435693741, 0.013724222779273987, -0.030511491000652313, -0.032593172043561935, -0.032057881355285645, 0.03619150444865227, -0.02178330160677433, 0.008490283042192459, -0.027195671573281288, -0.018749995157122612, 0.06595953553915024, 0.029336828738451004, 0.05581878125667572, -0.030927827581763268, -0.0005729268305003643, -0.007025672122836113, -0.009226306341588497, -0.0008888962329365313, 0.0205789003521204, -0.002791682491078973, -0.03544804826378822, 0.03321767598390579, -0.020876282826066017, -0.016950828954577446, 0.024400271475315094, -0.0022303720470517874, 0.018482349812984467, -0.004044407978653908, 0.004378963727504015, 0.045826710760593414, 0.01903250813484192, 0.027656614780426025, 0.023389168083667755, 0.016237109899520874, -0.02092089131474495, -0.065364770591259, 0.03470458835363388, -0.023522991687059402, 0.014653544872999191, 0.02963421121239662, -0.03271212428808212, 0.02605074644088745, -0.022318590432405472, 0.043298956006765366, -0.03416930139064789, -0.036637578159570694, 0.019002771005034447, -0.04475613310933113, -0.044696658849716187, 0.007709653116762638, 0.04624304920434952, 0.016118155792355537, -0.0029552429914474487, -0.0029180701822042465, -0.020816806703805923, -0.08267246186733246, 0.0009953035041689873, -0.02535189688205719, -0.03928428888320923, -0.005390065722167492, 0.0032489087898284197, 0.02622917667031288, 0.013107153587043285, 0.027790436521172523, -0.03758920356631279, -0.02605074644088745, -0.02282414212822914, -0.045350898057222366, -0.005285982042551041, 0.042258117347955704, 0.019805705174803734, 0.03830292448401451, -0.013196368701756, -0.01958266645669937, -0.01549365185201168, -0.02553032524883747, 0.04880054295063019, 0.0516851581633091, 0.022259114310145378, 0.02753766067326069, 0.012527256272733212, -0.025441111996769905, -0.02261597290635109, -0.019106853753328323, 0.013798568397760391, 0.029307089745998383, -0.019106853753328323, 0.021069582551717758, -0.022556496784090996, -0.019285283982753754, 0.021485917270183563, 0.004479330498725176, -0.018973032012581825, 0.024221841245889664, 0.002003617584705353, -0.0022322307340800762, 0.05935763567686081, 0.05153646320104599, 0.031017040833830833, -0.009493950754404068, 0.010058978572487831, -0.027329493314027786, -0.01453459169715643, 0.00539378309622407, -0.004349225666373968, -0.005152159370481968, 0.023894719779491425, -0.03467485308647156, 0.002198775066062808, 0.011248510330915451, 0.018645910546183586, -0.028325725346803665, 0.009650076739490032, -0.016385801136493683, -0.018274182453751564, -0.03235526382923126, 0.015523389913141727, 0.035983335226774216, 0.00867614708840847, -0.0027861064299941063, -0.042793408036231995, -0.004895666614174843, -0.04166335240006447, 0.010757828131318092, -0.04514273256063461, -0.016222240403294563, 0.061677224934101105, -0.03523987904191017, -0.01504757720977068, -0.030719658359885216, -0.054212912917137146, 0.004141057375818491, 0.022259114310145378, 0.06637587398290634, 0.04410189017653465, -0.04538063704967499, -0.03491275757551193, 0.01938936859369278, -0.017114387825131416, 0.02124801091849804, -0.032087620347738266, -0.013761395588517189, 0.005943941883742809, 0.013553228229284286, -0.02945578098297119, 0.03110625594854355, -0.029500387609004974, -0.026318391785025597, 0.060487691313028336, -0.013322755694389343, -0.004702367819845676, -0.022586235776543617, -0.020965497940778732, -0.01531522162258625, 0.025827709585428238, 0.021173665300011635, -0.0084085026755929, 0.005133572965860367, 0.0024682783987373114, 0.01753072440624237, 0.00892148818820715, -0.026496820151805878, 0.026303522288799286, 0.0315820686519146, -0.03027358464896679, -0.013315321877598763, 0.010244842618703842, 0.02266058139503002, -0.01488401647657156, -0.038838211447000504, 0.01733742654323578, 0.00318757351487875, 0.026928026229143143, -0.03622124344110489, 0.009664946235716343, 0.0013976998161524534, 0.03303924575448036, -0.037351299077272415, 0.008282114751636982, 0.001768499263562262, 0.02056403085589409, 0.009122221730649471, -0.03217683359980583, 0.01251982245594263, 0.025649279356002808, -0.004728388972580433, 0.013196368701756, 0.005605668760836124, -0.0037767633330076933, 0.019701620563864708, -0.006862111389636993, -0.048205774277448654, 0.029500387609004974, 0.0063379742205142975, -0.006776614114642143, -0.036340195685625076, -0.03330688923597336, 0.03619150444865227, 0.027626875787973404, 0.018452612683176994, 0.007687349338084459, 0.009902852587401867, -0.010795000940561295, -0.0315820686519146, -0.003107651835307479, -0.02396906539797783, -0.011360028758645058, -0.02026664838194847, 0.05950632691383362, -0.011806103400886059, -0.02194686233997345, 0.02297283336520195, 0.0025742212310433388, -0.034793805330991745, -0.0022489584516733885, -0.003260060679167509, -0.0002908777096308768, -0.028637977316975594, 0.047373104840517044, -0.003813936375081539, -0.047045983374118805, -0.02193199284374714, -0.03485328331589699, -0.01919606886804104, 0.016281716525554657, 0.04850316047668457, -0.008036774583160877, -0.008980965241789818, 0.007505202200263739, 0.014356161467730999, 0.007902951911091805, -0.00535289291292429, -0.015084750019013882, 0.020980367437005043, 0.029872117564082146, 0.00825981143862009, -0.0023827808909118176, 0.0564730204641819, -0.019359629601240158, -0.015159095637500286, 0.03366374969482422, 0.014936058782041073, -0.02532215788960457, -0.0425257608294487, -0.0033213957212865353, 0.040057484060525894, 0.01919606886804104, -0.004932839889079332, 0.00877279695123434, -0.007858344353735447, 0.015508520416915417, -0.02909892238676548, -0.008646409027278423, -0.023522991687059402, 0.0009850810747593641, -0.028147296980023384, -0.015776164829730988, 0.03080887347459793, -0.007880648598074913, 0.03315819799900055, -0.0031968667171895504, 0.013144326396286488, 0.037529729306697845, 0.017307687550783157, -0.004062994383275509, 0.038867950439453125, 0.036816008388996124, 0.02157513238489628, -0.015285483561456203, 0.010824739001691341, -0.01283207442611456, 0.0065164039842784405, 0.06036873906850815, -0.0340503491461277, 0.007821171544492245, -0.021010104566812515, 0.023448646068572998, -0.03381244093179703, 0.028786668553948402, 0.0009195638122037053, 0.015939725562930107, 0.016237109899520874, 0.009010703302919865, -0.0008559052948839962, 0.03943298012018204, 0.004538807086646557, -0.017382033169269562, -0.0026615774258971214, -0.0064048850908875465, 0.006423471495509148, 0.010757828131318092, -0.016802135854959488, -0.012913854792714119, 0.024757130071520805, 0.009360128082334995, -0.047373104840517044, -0.02026664838194847, -0.002451550681143999, 0.019419105723500252, 0.010765262879431248, -0.03723234683275223, 0.02872719243168831, -0.027165932580828667, 0.004338073544204235, 0.007560961414128542, -0.03898690640926361, 0.008386199362576008, 0.009337824769318104, 0.005025771912187338, 0.004564828239381313, -0.0029831225983798504, -0.02550058811903, 0.006096350494772196, -0.05204201489686966, 0.043120525777339935, -0.026615774258971214, -0.021664347499608994, 0.022006338462233543, -0.019151462242007256, -0.02787965163588524, 0.016415538266301155, -0.0032767883967608213, 0.007453160360455513, 0.015040142461657524, 0.012579298578202724, 0.01906224712729454, -0.011322855949401855, -0.012385999783873558, -0.01370935421437025, -0.00420425133779645, 0.009553426876664162, -0.0042451415210962296, -0.010698352009057999, 0.015419306233525276, -0.007181798107922077, -0.04508325457572937, 0.016579098999500275, 0.012482649646699429, -0.03080887347459793, 0.0006342620472423732, 0.005702318158000708, 0.006743158213794231, -0.01937449909746647, -0.00961290393024683, 0.014876581728458405, 0.0035890403669327497, 0.002970112254843116, 0.017114387825131416, -0.001889311010017991, 0.008832274004817009, 0.004646608605980873, 0.04306105151772499, 0.020207172259688377, -0.017054911702871323, 0.010616571642458439, 0.011003169231116772, 0.005691166035830975, 0.015025273896753788, 0.010839608497917652, -0.048413943499326706, 0.03289055451750755, 0.0003489603113848716, -0.011687150225043297, -0.03628072142601013, -0.03491275757551193, 0.012475214898586273, 0.008728189393877983, 0.03286081552505493, -0.024638177827000618, -0.02331482246518135, 0.017411772161722183, 0.0029831225983798504, 0.01925554685294628, 0.004512786399573088, -0.03907611966133118, -0.032057881355285645, 0.016266847029328346, 0.022229375317692757, -0.008014470338821411, -0.009144525974988937, -0.01751585491001606, -0.009360128082334995, -0.021158797666430473, -0.04100910946726799, 0.004360377322882414, -0.03625098243355751, -0.018333658576011658, 0.028444679453969002, -0.010334057733416557, -0.00900326855480671, -0.0823156014084816, -0.023181000724434853, 0.04350712522864342, -0.007244992069900036, -0.011293117888271809, -0.009887983091175556, 0.0024162365589290857, -0.02144131064414978, 0.013739092275500298, -0.0049700126983225346, 0.009464212693274021, -0.02043020911514759, -0.033425845205783844, 0.007252426818013191, -0.01486914698034525, -0.02346351556479931, 0.003877130104228854, 0.03220657259225845, 0.011902752332389355, 0.012274481356143951, -0.0028214207850396633, 0.016415538266301155, -0.0006900213775224984, 0.04166335240006447, 0.013129456900060177, -0.01669805310666561, -0.026095353066921234, 0.014594067819416523, 0.005048075690865517, 0.013196368701756, 0.017798369750380516, 0.026987502351403236, 0.019999003037810326, 0.02484634518623352, -0.01973135955631733, -0.003628071863204241, -0.001472974894568324, 0.01326327957212925, 0.05465898662805557, -0.02331482246518135, -0.014913754537701607, -0.07291829586029053, -0.0315820686519146, 0.005579647608101368, 0.029024574905633926, 0.011962229385972023, -0.05225018411874771, 0.021530525758862495, -0.00935269333422184, -0.005702318158000708, 0.034645114094018936, 0.010534791275858879, -0.009092483669519424, 0.00962777342647314, -0.04341791197657585, 0.03244448080658913, -0.019091986119747162, 0.004851059522479773, -0.0013670322950929403, 0.003326971782371402, -0.02588718570768833, 0.003817653516307473, 0.0475812703371048, -0.047016244381666183, 0.0009414029191248119, -0.006419754587113857, 0.027448445558547974, -0.017947060987353325, -0.00156311911996454, -0.005572212859988213, -0.006237607449293137, 0.025961531326174736, 0.025738494470715523, -0.0005408652359619737, 0.026095353066921234, 0.020459946244955063, -0.013486316427588463, -0.046897292137145996, -0.0205789003521204, -0.003040740732103586, -0.02805808186531067, -0.04145518317818642, -0.04059277102351189, -0.001366102951578796, 0.025634409859776497, -0.0053082858212292194, 0.018764864653348923, 0.009322955273091793, -0.005471846088767052, 0.009664946235716343, 0.0034905322827398777, -0.02196172997355461, 0.008319287560880184, -0.020876282826066017, -0.014809670858085155, 0.02434079349040985, -0.00866871327161789, -0.002949667163193226, 0.03874899819493294, 0.0068212212063372135, 0.04121727496385574, 0.0029961331747472286, -0.00020781956845894456, -0.030154630541801453, -0.0014655403792858124, 0.0013447285164147615, 0.004089015536010265, 0.00684724235907197, -0.016564229503273964, -0.014281815849244595, 0.006070329342037439, 0.022318590432405472, 0.005706035532057285, -0.0013205661671236157, -0.002988698659464717, 0.011203902773559093, 0.013315321877598763, -0.002750792307779193, -0.023864980787038803, -0.0075460923835635185, 0.041247013956308365, -0.02331482246518135, -0.017396902665495872, 0.03806501626968384, 0.020876282826066017, 0.01736716367304325, 0.022898487746715546, 0.010795000940561295, 0.032950032502412796, 0.011389766819775105, 0.0012973331613466144, 0.037202607840299606, -0.012839509174227715, 0.0069513265043497086, -0.00612980592995882, 0.0013986291596665978, 0.018958162516355515, 0.03830292448401451, 0.012958462350070477, 0.01735229417681694, -0.013865480199456215, 0.027849912643432617, 0.023909589275717735, 0.01686161383986473, 0.0003694053739309311, 0.002715477952733636, -0.0035314224660396576, 0.01240830309689045, -0.009330390021204948, 0.03297976776957512, -0.010467879474163055, -0.03996826708316803, -0.030333060771226883, -0.01924067735671997, 0.019285283982753754, 0.04136596992611885, -0.05123908072710037, 0.006241324823349714, -0.01872025616466999, 0.005059227347373962, -0.01250495295971632, 0.023210739716887474, -0.0010882357601076365, -0.019984133541584015, 0.0032582019921392202, -0.0237906351685524, -0.017902454361319542, -0.03348531946539879, 0.0010445576626807451, 0.008728189393877983, -0.00022059773618821055, -0.04514273256063461, 0.027760697528719902, 0.01174662634730339, 0.033604271709918976, -0.009382432326674461, -0.0017229624791070819, -0.0008071159245446324, -0.013233541510999203, 0.01818496733903885, -0.02588718570768833, -0.0013391525717452168, 0.055699825286865234, 0.02944091148674488, 0.047373104840517044, -0.014727890491485596, 0.0035109773743897676, 0.015880249440670013, -0.02722540870308876, 0.019686751067638397, -0.0023418907076120377, 0.010415838100016117, 0.02043020911514759, -0.002395791467279196, -0.025902055203914642, 0.00692902272567153, 0.005531322676688433, 0.049573738127946854, -0.01650475338101387, 0.005126138683408499, -0.019300153478980064, 0.014103386551141739, 0.010839608497917652, -0.02634812891483307, -0.007642741780728102, 0.01924067735671997, -0.04062251001596451, -0.009389866143465042, -0.0011542175197973847, 0.02805808186531067, 0.0051447250880301, -0.03011002391576767, 0.0027210540138185024, -0.017040042206645012, -0.01139720156788826, -0.017218472436070442, 0.049781907349824905, -0.009085048921406269, -0.01837826706469059, -0.029292220249772072, -0.019419105723500252, -0.04624304920434952, -0.02212529070675373, 0.013910087756812572, -0.0029775467701256275, 0.004338073544204235, -0.036845747381448746, -0.04591592773795128, -0.005646558944135904, 0.047224413603544235, 0.033098723739385605, -0.001196037046611309, -0.009189133532345295, 0.015582866966724396, 0.027195671573281288, -0.00011506164446473122, -0.011018037796020508, 0.03470458835363388, -0.00038775947177782655, 0.03095756471157074, -0.027597136795520782, -0.0391058586537838, -0.006713420152664185, -0.011426939629018307, -0.023909589275717735, -0.011434374377131462, 0.02688341774046421, 0.014497418887913227, 0.017976799979805946, 0.014727890491485596, 0.004587132018059492, 0.008817404508590698, 0.029708556830883026, 0.00438639847561717, 0.0027229127008467913, 0.013984433375298977, 0.00363922375254333, 0.012542125768959522, -0.018764864653348923, 0.008653843775391579, -0.016564229503273964, 0.019657012075185776, -0.006653943564742804, -0.017040042206645012, 0.019493453204631805, 0.0007216183003038168, -0.03455589711666107, -0.003222887637093663, -0.0022842728067189455, 0.0013995585031807423, 0.0037265801802277565, 0.021203404292464256, 0.0033529927022755146, -0.025560064241290092, -0.007527505978941917, -0.008363895118236542, -0.041752565652132034, -0.013947260566055775, -0.012609036639332771, 0.026645511388778687, -0.01635606214404106, 0.00010071523865917698, 0.012103485874831676, -0.023255346342921257, 0.011761495843529701, -0.008802535012364388, -0.03440720587968826, -0.006382581312209368, 0.026942895725369453, 0.005839857738465071, -0.00033339415676891804, 0.04639174044132233, -0.03012489341199398, -0.010096151381731033, -0.021054713055491447, -0.008616670966148376, 0.012281916104257107, 0.003958910703659058, 0.03744051232933998, -0.05239887535572052, 0.0073081860318779945, -0.009322955273091793, 0.012980765663087368, -0.0020463664550334215, 0.006449492648243904, -0.012296784669160843, 0.013582966290414333, -0.014214904978871346, -0.018467480316758156, 0.002434822963550687, -0.007207819260656834, -0.02261597290635109, 0.021813038736581802, 0.034288253635168076, -0.011367463506758213, 0.00018075307889375836, 0.015612605027854443, 5.093844811199233e-05, 0.007092583458870649, 0.03544804826378822, -0.010467879474163055, -0.008743058890104294, 0.04374503344297409, 0.04255549982190132, -0.014631240628659725, -0.0035648781340569258, 0.008237508125603199, -0.018779732286930084, -0.005720904562622309, 0.02689828723669052, -0.024459747597575188, -0.010906519368290901, -0.018274182453751564, 0.010296884924173355, -0.005516453646123409, 0.0009130585822276771, 0.010928823612630367, -0.004133623093366623, 0.024801738560199738, 0.0009943742770701647, -0.009635207243263721, 0.0047135199420154095, 0.00667996471747756, 0.005635406821966171, 0.01395469531416893, 0.009085048921406269, 0.036845747381448746, 0.0049588605761528015, -0.030228976160287857, 0.002696891548112035, 0.06774383783340454, 0.0045945667661726475, 0.02724027819931507, -0.014363596215844154, -0.009456777945160866, 0.006657660938799381, -0.024623308330774307, -0.0030110024381428957, -0.009382432326674461, -0.0010510628344491124, 0.003509118687361479, 0.005627972073853016, -0.0021244294475764036, -0.0274187084287405, -0.003603909630328417, 0.02890562266111374, -0.014437941834330559, -0.016207370907068253, 0.009129656478762627, -0.01567208208143711, 0.002280555432662368, 0.0047804308123886585, 0.014631240628659725, -0.020474815741181374, -0.011687150225043297, -0.005066662095487118, 0.0014450952876359224, -0.005813836585730314, 0.013159195892512798, 0.00395519332960248, 0.003977497108280659, -0.0017536301165819168, 0.018095752224326134, 0.005486715584993362, -0.01547878235578537, -0.008891750127077103, -0.01300306897610426, 0.01334505993872881, 0.005003468133509159, 0.0025835144333541393, -0.01834852807223797, -0.039908792823553085, -0.007088866084814072, 0.0033752964809536934, -0.0098805483430624, 0.02022203989326954, 0.014958362095057964, -0.001503642532043159, -0.007438290864229202, -0.039195071905851364, 0.007613003719598055, -0.006111219525337219, 0.03390165790915489, -0.020207172259688377, 0.012705686502158642, -0.01437103096395731, -0.0015157237648963928, -0.009308086708188057, -0.0177091546356678, 0.009315520524978638, -0.0315820686519146, -0.02023690938949585, -0.0071780807338654995, -0.0019032509298995137, -0.014177732169628143, -0.017263080924749374, 0.017932191491127014, 0.004620587453246117, -0.014333858154714108, -0.02587231621146202, -0.017932191491127014, 0.0019236959051340818, 0.007932689972221851, 0.018318789079785347, 0.025426242500543594, 0.015463913790881634, -0.01285437773913145, 0.009233740158379078, 0.029143529012799263, -0.00237906351685524, 0.008475414477288723, 0.0036856899969279766, -0.028325725346803665, 0.023374300450086594, -0.0018474915996193886, 0.0013716788962483406, 0.015582866966724396, 0.02178330160677433, 0.005404935218393803, -0.0063751470297575, -0.002074246061965823, -0.011062645353376865, -0.009070180356502533, -0.0063454085029661655, 0.011545892804861069, 0.0057320562191307545, -0.019002771005034447, 0.010073847137391567, 0.02007334865629673, -0.03434773162007332, 0.04436953738331795, 0.006802634801715612, -0.00012905955372843891, 0.004319487139582634, 0.006884415168315172, 0.010549659840762615, 0.0070702796801924706, -0.04151466116309166, -0.0459456667304039, 0.025262681767344475, -0.015895118936896324, 0.0021188536193221807, 0.0064569273963570595, -0.013523489236831665, 0.02808781899511814, -0.03993853181600571, -0.029128659516572952, -0.012913854792714119, 0.003100217320024967, -0.014527156949043274, 0.0118953175842762, 0.02588718570768833, -0.009040441364049911, -0.025218073278665543, 0.009821072220802307, -0.0025091685820370913, 0.0005455118371173739, -0.00027786719147115946, -0.002903201151639223, -0.002492440864443779, 0.014393334276974201, -0.001600292045623064, 0.03877873718738556, 0.00935269333422184, -0.006520121358335018, -0.0037117109168320894, 0.007702218368649483, -0.017054911702871323, 0.036994438618421555, 0.02212529070675373, -0.04216890037059784, -0.011293117888271809, -0.0016458287136629224, -0.02740383893251419, 0.026392737403512, -0.012869247235357761, 0.0035518675576895475, 0.024206971749663353, 0.011099818162620068, 0.0027526509948074818, -0.021218273788690567, -0.007494050078094006, 0.02909892238676548, 0.022407805547118187, -0.008088815957307816, -0.038362398743629456, 0.009137091226875782, -0.006601901259273291, -0.034615375101566315, 0.024370532482862473, -0.0016746377805247903, -0.02553032524883747, -0.0061075021512806416, 1.562422221468296e-05, 0.018259312957525253, 0.002576079685240984, -0.011285683140158653, -0.007007085718214512, 0.018066013231873512, 0.00825981143862009, 0.01070578582584858, 0.0012090475065633655, 0.04493456333875656, -0.00752378860488534, 0.009940025396645069, 0.024430008605122566, -0.024206971749663353, -0.004033256322145462, -0.022259114310145378, 0.006549859419465065, 0.025307288393378258, -0.01225961185991764, 0.029663948342204094, 0.013203802518546581, 0.0395221933722496, 0.031403638422489166, -0.013753961771726608, 0.0032730710227042437, 0.006817504297941923, -0.0016709204064682126, 0.025574933737516403, -0.0011477123480290174, -0.002670870628207922, 0.014118255116045475, 0.03306898474693298, 0.017084650695323944, 0.03651862591505051, -0.004215403459966183, -0.05222044512629509, 0.025902055203914642, -0.018794601783156395, -0.011055211536586285, -0.022006338462233543, 0.010512487031519413, 0.005646558944135904, 0.021723823621869087, -0.013144326396286488, -0.010713220573961735, 0.014519722200930119, -0.021322356536984444, -0.017664548009634018, -0.019433975219726562, -0.002076104748994112, 0.00867614708840847, -0.002830713987350464, -0.0064643616788089275, -0.00518561527132988, 0.04068198800086975, -0.0076650455594062805, -0.03628072142601013, 0.011084949597716331, -0.015434174798429012, 0.0021430158521980047, -0.024058280512690544, -0.0072375573217868805, 0.008973530493676662, 0.025113990530371666, 0.011114687658846378, -0.008527455851435661, -0.02622917667031288, 0.010467879474163055, 0.009092483669519424, -0.01562747359275818, 0.007501484826207161, -0.004587132018059492, -0.009679814800620079, -0.007672480307519436, -0.025649279356002808, 0.016430407762527466, 0.03741077333688736, -0.017382033169269562, -0.03179023787379265, 0.015716688707470894, -0.00756467878818512, 0.024251580238342285, 0.019448844715952873, 0.024757130071520805, 0.026957765221595764, -0.014400769025087357, -0.00553504005074501, -0.03134416416287422, -0.02587231621146202, -0.02551545761525631, -0.018839210271835327, -0.035983335226774216, 0.038897689431905746, 0.049603477120399475, -0.004338073544204235, 0.023017439991235733, 0.009493950754404068, -0.021069582551717758, -0.014586634002625942, 0.026154831051826477, -0.009308086708188057, 0.0064643616788089275, 0.002910635666921735, 0.0032805055379867554, 0.004657760262489319, -0.02860824018716812, 0.017798369750380516, 0.0021857647225260735, -0.006423471495509148, -0.0029849812854081392, -0.005869595799595118, 0.011605369858443737, 0.004888232331722975, 0.027255147695541382, 0.034823544323444366, 0.008378764614462852, 0.030689921230077744, -0.013902653008699417, -0.01601407118141651, -0.035477787256240845, -0.0010045968228951097, -0.0009674238972365856, 0.044339798390865326, 0.004193099681288004, 0.02685368061065674, -0.009984632954001427, 0.027284884825348854, -0.013218672014772892, 0.014757628552615643, -0.0031020757742226124, -0.01412568986415863, 0.0038102190010249615, 0.038719259202480316, 0.014118255116045475, 0.04511299356818199, 0.025976400822401047, 0.00044839773909188807, 0.015746427699923515, -0.006144674960523844, -0.029321959242224693, -0.023582467809319496, 0.006687398999929428, 0.014081082306802273, -0.01635606214404106, 0.013478882610797882, 0.018749995157122612, -0.008787666447460651, 0.03419904038310051, 0.007579547818750143, 0.008713320828974247, -0.013932391069829464, 0.02196172997355461, 5.4045867727836594e-05, -0.0062264553271234035, 0.021352095529437065, 0.011873014271259308, 0.03830292448401451, 0.01488401647657156, 0.012096051126718521, 0.02008821815252304, 0.008847142569720745, 0.036816008388996124, 0.0011319138575345278, -0.010906519368290901, -0.045350898057222366, 0.0036299305502325296, -0.018422873690724373, 0.002079821890220046, 0.019433975219726562, 0.029381435364484787, -0.005873313173651695, 0.007672480307519436, -0.02346351556479931, -0.02211042307317257, 0.04080094024538994, 0.007932689972221851, -0.030570967122912407, -0.006988499313592911, 0.020816806703805923, -0.02194686233997345, -0.0367862693965435, 0.001265736180357635, 0.02958960272371769, 0.004360377322882414, -0.0333663672208786, 0.022318590432405472, 0.002334456192329526, -0.020712722092866898, 0.005204201675951481, 0.013434275053441525, -0.006534990388900042, 0.004453309811651707, 0.008646409027278423, -0.026139961555600166, 0.03741077333688736, -0.029604472219944, 0.05189332365989685, 0.008705886080861092, -0.019835442304611206, 0.013768830336630344, 0.053350500762462616, -0.011865579523146152, -0.019493453204631805, 0.039551932364702225, -0.01805114559829235, 0.0012044009054079652, -0.010296884924173355, 0.018229573965072632, 0.02005847916007042, 0.00479901721701026, -0.03387191891670227, -0.004821320995688438, -0.009828506037592888, 0.009315520524978638, 0.010631440207362175, -0.009977198205888271, 0.00015275726036634296, 0.016415538266301155, -0.0019459996838122606, -0.006393733434379101, 0.0033938828855752945, 0.024578699842095375, -0.04401267692446709, 0.009256044402718544, 0.012646209448575974, -0.003066761652007699]" -How WsprDaemon Combines TimescaleDB and Grafana to Measure and Analyze Radio Transmissions,"path with less loss over 1000km than 16km for over-the-ground waves.The time-series view also allows us to see day-to-day variations, such as the shorter period of high SNR on 23rd June compared to prior days.They hear IU0ICC from Italy via the ionosphere from early evening to about 0300 local time each day, with a consistent shape to the rise and fall of SNR.While SNR is the main measurement, our users are also interested in aggregate metadata functions, which provide an overview of daily changes in the ionosphere.Our project allows them to run these more complex queries, and we bring in complementary public domain data, such as the case below where we pull in data from theUS Space Weather Prediction Center.WsprDaemon also runs complex transmission data queries and visualizationsIn this example, the top panel of the Grafana dashboard uses the WsprDaemon dataset to display a simple count of the “spots” in each 10 minute time bucket with, on the second y-axis, a measure of the planetary geomagnetic disturbance index (kp) from the US Space Weather Prediction Center. In 2020, we’re at the minimum of the11-year sunspot cycle, so our current space weather is generally very quiet, but we’re anticipating disturbances - as well as more WSPR spots - as the sun becomes more active over the next four years.The second panel is a heat map that shows the variation in distance between the receiver in Belgium and the transmitters it’s heard over time.The third panel shows the direction of arrival at the receiver, while the bottom panel helps the user interpret all of this data, showing the local noise level and instances of overload.Editor’s note: see ourGrafana Series Overrideblog post to learn how (and why) to use two y-axes to more accurately plot your data and understand trends.Using TimescaleDBAs evidenced above, a big advantage for our users is our ability to bring disparate datasets together into one database, with one graphical visualisation tool.Our initial need was for a database and visualisation tool for radio noise measurements from a handful of stations. A colleague suggestedInfluxandGrafana, and kindly set up a prototype for us. We were hooked.We sought to expand to cover a larger range of data sets from several thousand sources. The Influx documentation was great, and we had an extended application running quickly. Initially,our query",https://www.timescale.com/blog/wsprdaemon-combines-timescaledb-grafana-analyze-radio/,490,"[-0.06047829985618591, 0.019482631236314774, 0.06596505641937256, -0.0379733070731163, 0.01897115260362625, -0.007369921077042818, -0.011051006615161896, -0.030611133202910423, -0.012306450866162777, 0.020149100571870804, -0.011973216198384762, 0.022473996505141258, -0.04386304318904877, -0.0334785059094429, 0.0669570118188858, 0.05058974400162697, -0.02918519824743271, 0.006939815357327461, -0.07724855095148087, 0.03995721787214279, 0.00121185218449682, -0.007017312105745077, -0.03211456537246704, 0.00413056556135416, -0.024659398943185806, -0.01940513402223587, -0.009284085594117641, 0.08127837628126144, 0.011337744072079659, -0.04745888337492943, -0.00423131138086319, -0.032920531928539276, -0.038717273622751236, -0.00025355900288559496, 0.03766331821680069, 0.002743377583101392, 0.03078162670135498, -0.00017739442409947515, -0.03326151520013809, 0.005657247733324766, -0.004769911989569664, 0.01692524552345276, -0.0023675193078815937, 0.005076023284345865, -0.025961341336369514, -0.017963698133826256, -0.03719833865761757, 0.019730620086193085, 0.03611338883638382, 0.02923169545829296, -0.027805758640170097, 0.027914253994822502, -0.03877926990389824, -0.008850105106830597, 0.031076112762093544, 0.007059935014694929, 0.014212865382432938, 0.06202823296189308, -0.03141709789633751, -0.061005279421806335, 0.01048528216779232, -0.008214633911848068, 0.04352205619215965, 0.015584554523229599, 0.013158912770450115, 0.014569349586963654, 0.017002740874886513, 0.03546241670846939, -0.0007953082676976919, 0.04860582947731018, 0.052325665950775146, 0.02362094633281231, 0.02520187571644783, -0.05961034074425697, 0.0004439098702277988, -0.0014646846102550626, -0.03707434609532356, 0.008098389022052288, 0.012554439716041088, -0.01849067583680153, 0.006246221251785755, 0.00028237802325747907, -0.07439667731523514, -0.006815820932388306, -0.004448301624506712, -0.03905825689435005, -0.00490553118288517, -0.017467720434069633, 0.01694074459373951, 0.006943690124899149, -0.010764270089566708, 0.009113593026995659, 0.0025496361777186394, -0.004479300230741501, 0.013577394187450409, 0.01828918419778347, 0.03381948918104172, 0.02431841567158699, 0.0006102852639742196, 0.014530601911246777, 0.021280551329255104, -0.04789286479353905, -0.034873444586992264, -0.03636137768626213, 0.026875801384449005, -0.02543436549603939, 0.008067389950156212, 0.030254650861024857, 0.0015722110401839018, -0.006482585798949003, -0.04032919928431511, -0.018335681408643723, -0.06987088173627853, -0.006947564892470837, -0.0070676845498383045, -0.010307040065526962, -0.03679535910487175, -0.04125915840268135, 0.06887892633676529, 0.009198839776217937, -0.03552441671490669, 0.017777707427740097, 0.01608828268945217, 0.009888558648526669, 0.03896526247262955, -0.04082517698407173, -0.01272493228316307, -0.02853422611951828, -0.024008428677916527, 0.011229248717427254, 0.052697647362947464, -0.03744632750749588, 0.052945636212825775, -0.03967823088169098, 0.0005657247384078801, -0.0033323513343930244, -0.03949223831295967, -0.02541886642575264, -0.0026581312995404005, 0.05015576258301735, 0.011337744072079659, 0.023977430537343025, 0.038934264332056046, -0.018413178622722626, -0.023124968633055687, -0.00043470715172588825, -0.03992621973156929, 0.05434057489037514, 0.0041576894000172615, 0.011732976883649826, -0.030642133206129074, 0.028813214972615242, -0.047613874077796936, -0.010562778450548649, 0.0535656102001667, 0.04408003389835358, 0.02989816665649414, -1.7678898075246252e-05, -0.013910628855228424, -0.030285649001598358, -0.02055208384990692, 0.019110647961497307, -0.02765076607465744, -0.012197955511510372, -0.061873238533735275, -0.0009255993063561618, -0.035586412996053696, -0.056944459676742554, -0.09671568125486374, 0.0036985224578529596, -0.0625242069363594, -0.06484910845756531, -0.015282317996025085, 0.01135324314236641, 0.03434646874666214, -0.016150278970599174, 0.0002584025205578655, -0.036206383258104324, 0.038221295922994614, -0.0312001071870327, -0.02991366572678089, -0.007164555136114359, -0.007610160391777754, -0.007323423400521278, -0.00629659416154027, 0.03608239069581032, -0.03301352635025978, 0.03437746688723564, 0.005587500520050526, 0.025046883150935173, 0.010214043781161308, 0.04876082390546799, 0.06416713446378708, 0.054991547018289566, 0.005180643871426582, -0.05613849684596062, 0.021249551326036453, 0.04076318070292473, -0.03726033866405487, -0.0034621579106897116, -0.0017814517486840487, 0.015654301270842552, 0.029154198244214058, -0.0356484092772007, -0.011136253364384174, 0.008834606036543846, 0.023915432393550873, -0.0018947904463857412, -0.014468604698777199, -0.01628977246582508, 0.009679318405687809, 0.02963467687368393, 0.05235666409134865, -0.05945534631609917, -0.04277808964252472, 0.008927601389586926, -0.06670902669429779, 0.027495773509144783, -0.014143118634819984, 0.01270943321287632, 0.005041149910539389, 0.03722934052348137, -0.0022028391249477863, -0.02250499650835991, -0.01015204656869173, 0.0491328090429306, 0.0490088127553463, -0.011182750575244427, 0.042468104511499405, 0.003018490271642804, 0.033354513347148895, 0.009284085594117641, 0.0401122085750103, -0.018211686983704567, -0.00662207929417491, -0.04318107292056084, 0.033602502197027206, -0.03970922902226448, 0.01695624366402626, -0.03456345945596695, -0.01920364238321781, 0.014453104697167873, 0.018335681408643723, 0.06348516792058945, 0.013158912770450115, -0.0019829426892101765, -0.041352156549692154, -0.06314418464899063, 0.01805669441819191, 0.02853422611951828, 0.021807527169585228, 0.015592304058372974, 0.01291867345571518, -0.009222088381648064, 0.0105782775208354, -0.006009856704622507, -0.038035303354263306, 0.028627222403883934, -0.009222088381648064, -0.009741315618157387, 0.033757492899894714, -0.04854383319616318, -0.03502843528985977, 0.03524542599916458, -0.05365860462188721, -0.02296997420489788, 0.015421811491250992, -0.00713355652987957, -0.011322245001792908, -0.04798585921525955, 0.008485871367156506, 0.04265409708023071, 0.05285264179110527, -0.049194805324077606, 0.00947782676666975, 0.009516575373709202, 0.05000076815485954, -0.008354127407073975, -0.026271328330039978, -0.014569349586963654, -0.01824268512427807, -0.047396883368492126, -0.005943984724581242, 0.005680496338754892, -0.003367224708199501, -0.008044141344726086, 0.0056649972684681416, 0.04054618999361992, 0.0128256781026721, -0.08264230936765671, -0.008757108822464943, 0.0400812104344368, 0.044514015316963196, -0.005757993087172508, -0.002561260713264346, 0.003822516882792115, 0.01026829145848751, 0.02230350486934185, -0.0491328090429306, -0.03877926990389824, 0.024411410093307495, -0.013693639077246189, 0.03964723274111748, 0.005165144335478544, -0.006118352059274912, 0.04699390381574631, 0.061191268265247345, 0.0039794472977519035, -0.03304452449083328, 0.033323511481285095, -0.013352653943002224, 0.0037314584478735924, -0.03989522159099579, 0.020815571770071983, -0.014623597264289856, -0.003956198692321777, 0.0713588148355484, -0.014414357021450996, 0.027154788374900818, -0.04820284992456436, -0.01628977246582508, -0.08425424247980118, 0.011058756150305271, 0.015235819853842258, 0.019715121015906334, -0.033757492899894714, 0.028208741918206215, 0.0024605151265859604, -0.027991751208901405, -0.030471639707684517, 0.03719833865761757, 0.010051301680505276, 0.031153609976172447, 0.044947993010282516, -0.04163114354014397, -0.07259876281023026, -0.04144515097141266, -0.01549155917018652, -0.010903763584792614, 0.023109469562768936, -0.022907977923750877, -0.04395603761076927, -0.06292719393968582, 0.017467720434069633, 0.036051392555236816, 0.037353333085775375, -0.021079059690237045, -0.009260836988687515, 0.011864720843732357, 0.015755046159029007, -0.027774760499596596, 0.007707030978053808, -0.004022070672363043, 0.012670684605836868, 0.05527053400874138, -0.013437900692224503, 0.029805170372128487, -0.03166508674621582, -0.02341945469379425, -0.002739502815529704, -0.03217656537890434, 0.013879630714654922, 0.03856227919459343, -0.0026949422899633646, 0.0011362930526956916, -0.0045567965134978294, -0.027356280013918877, 0.014662345871329308, -0.06751498579978943, -0.04119716212153435, 0.033354513347148895, -0.04612594097852707, -0.010686772875487804, -0.024194421246647835, -0.04076318070292473, 0.003136672545224428, 0.051395706832408905, 0.010004803538322449, -0.026271328330039978, 0.05551852285861969, 0.060757290571928024, 0.0035299675073474646, -0.026364322751760483, -0.023279961198568344, 0.034687452018260956, 0.014065622352063656, 0.004308807663619518, 0.04572296142578125, -0.06522108614444733, -0.004064693581312895, 0.01480958890169859, -0.019529128447175026, 0.016987241804599762, -0.017483219504356384, 0.001439498271793127, 0.009338333271443844, -0.013523146510124207, 0.05700645595788956, 0.03986421972513199, 0.027263283729553223, 0.019064148887991905, -0.018862659111618996, -0.09014397859573364, -0.01469334401190281, -0.01160123199224472, 0.03505943715572357, -0.010648025199770927, 0.014305861666798592, -0.013096915557980537, -0.010531780309975147, -0.026178332045674324, -0.03515243157744408, 0.032207563519477844, -0.02138904482126236, 0.03388148918747902, -0.01460034865885973, -0.02544986456632614, 0.026596812531352043, 0.005835489835590124, 0.06503509730100632, -0.0023481452371925116, -0.017498718574643135, -0.020009607076644897, -0.011074256151914597, -0.011988715268671513, 0.013623892329633236, 0.026038838550448418, -0.03543141856789589, 0.03261054307222366, -0.04408003389835358, -0.025945842266082764, 0.029309192672371864, 0.024891888722777367, 0.04631193354725838, -0.02386893518269062, 0.02410142496228218, 0.0490398108959198, 0.00034800791763700545, 0.0379423052072525, 0.02895270846784115, 0.02856522612273693, -0.03657836839556694, -0.0400812104344368, 0.045815955847501755, -0.006250096019357443, -0.012848926708102226, 0.02140454575419426, -0.005525503307580948, 0.016460265964269638, -0.014623597264289856, 0.07507865130901337, -0.03685735538601875, -0.050465747714042664, 0.026348823681473732, -0.01765371300280094, -0.05685146152973175, 0.016785750165581703, 0.025821847841143608, 0.0015644613886252046, -0.0002462936972733587, 0.0014278737362474203, 0.007273050490766764, -0.057626429945230484, 0.008586617186665535, -0.02789875492453575, -0.03164958953857422, 0.007548163179308176, 0.001997473416849971, 0.022365501150488853, 0.010206294246017933, 0.01824268512427807, -0.05747143551707268, -0.012941922061145306, -0.018878158181905746, -0.055611517280340195, 0.028394732624292374, 0.03921325132250786, 0.03192857652902603, 0.030006660148501396, -0.0256048571318388, 0.0010791392996907234, -0.013701388612389565, -0.02475239522755146, 0.03450145944952965, 0.04367705062031746, 0.020877568051218987, 0.021280551329255104, -0.0052968887612223625, 0.0040259454399347305, -0.010872764512896538, -0.030890122056007385, 0.0014065622817724943, 0.04367705062031746, -0.020164599642157555, 0.003314914647489786, -0.03416047617793083, -0.049411796033382416, 0.028441231697797775, -0.008214633911848068, -0.014073371887207031, 0.0422821119427681, -0.0027840633410960436, 0.005947859492152929, 0.0691269189119339, 0.042716093361377716, -0.001270943321287632, -0.03918225318193436, 0.019544627517461777, -0.014073371887207031, -0.02723228558897972, 0.011128503829240799, 0.008369626477360725, 0.030270149931311607, 0.03660936653614044, -0.021978018805384636, 0.0245664045214653, 0.006629829294979572, 0.03257954493165016, -0.012864425778388977, 0.004665291868150234, -0.024690398946404457, -0.022473996505141258, -0.04169313982129097, 0.0006364403525367379, 0.028875211253762245, -0.01808769255876541, -0.017235230654478073, -0.07532663643360138, -0.025356868281960487, -0.01894015446305275, 0.017979197204113007, -0.029805170372128487, -0.022381002083420753, 0.04792386293411255, -0.03636137768626213, -0.02162153460085392, -0.026643311604857445, -0.03998821601271629, -0.007017312105745077, 0.03143259882926941, 0.0334165096282959, 0.024194421246647835, -0.03543141856789589, 0.0122444536536932, -0.0017737020971253514, 0.009183339774608612, 0.010345788672566414, -0.0357104055583477, -0.021327048540115356, 0.035586412996053696, 0.02633332461118698, -0.027077291160821915, 0.03096761740744114, -0.026674309745430946, -0.002383018610998988, 0.04107316583395004, 0.00014348968397825956, 0.01830468326807022, -0.013313906267285347, -0.0005342417862266302, -0.017018239945173264, 0.016677256673574448, 0.009400330483913422, -0.01782420463860035, 0.007997643202543259, 0.01917264424264431, 0.008152635768055916, -0.008369626477360725, -0.02854972518980503, 0.014623597264289856, -0.005541002843528986, -0.0167547520250082, -0.0021137180738151073, 0.038469284772872925, 0.023915432393550873, -0.011198250576853752, -0.05322462320327759, 0.0063740904442965984, -0.019513629376888275, 0.016351770609617233, -0.04057718813419342, 0.0033013527281582355, 0.012228954583406448, 0.038686275482177734, -0.01757621578872204, 0.001969380769878626, -0.00902059767395258, 0.008020891807973385, 0.012965171597898006, -0.008943101391196251, 0.018599169328808784, 0.01549155917018652, -0.020211098715662956, 0.006207473110407591, -0.006870068609714508, 0.005533253308385611, 0.006718950346112251, -0.00325872958637774, -0.013569644652307034, 0.028673721477389336, 0.018320182338356972, 0.0021815276704728603, -0.04209612309932709, -0.035121433436870575, 0.020583081990480423, 0.018320182338356972, 0.020211098715662956, 0.0005497410893440247, -0.004316557198762894, -0.01579379476606846, -0.01480958890169859, -0.016801251098513603, -0.02476789429783821, -0.018351180478930473, -0.0379423052072525, 0.046280935406684875, -0.05158169940114021, -0.03211456537246704, 0.021280551329255104, -0.010477532632648945, -0.024829892441630363, -0.019451631233096123, 0.019901111721992493, -0.012484692968428135, 0.0023210213985294104, 0.04665291681885719, -0.003994946833699942, -0.03033214621245861, -0.022473996505141258, -0.016460265964269638, 0.01347664836794138, 0.009935056790709496, 0.04525798186659813, -0.0011353243608027697, 0.0038515781052410603, -0.007280800025910139, 0.004118941258639097, 0.06422913074493408, -0.013112414628267288, -0.03881026804447174, 0.02544986456632614, 0.024240918457508087, 0.012042962945997715, -0.026674309745430946, 0.061842240393161774, -0.03729133680462837, -0.021032560616731644, 0.019777117297053337, 0.015995286405086517, -0.018583670258522034, -0.03967823088169098, -0.0038806393276900053, 0.040019214153289795, 0.03186657652258873, 0.004037569742649794, 0.014305861666798592, -0.0022667739540338516, 0.007354422006756067, -0.03505943715572357, -0.004192562773823738, -0.0301306564360857, 0.0070250616408884525, -0.006323718000203371, -0.025232873857021332, 0.0028383107855916023, 0.005816115532070398, 0.034005481749773026, 0.005839364603161812, 0.04318107292056084, 0.03685735538601875, 0.028038248419761658, 0.021699031814932823, 0.029526183381676674, 0.03363350033760071, 0.00978781282901764, 0.003206419525668025, 0.006606580223888159, -0.013755636289715767, 0.006304343696683645, 0.07055284827947617, -0.028627222403883934, 0.010547279380261898, -0.032424554228782654, 0.023233463987708092, -0.02746477536857128, 0.03270354121923447, 0.007834900170564651, 0.012531191110610962, 0.004537422675639391, -0.00645933672785759, 0.008292130194604397, 0.04618793725967407, 0.021110057830810547, 0.011004509404301643, -0.0244889073073864, 0.014817338436841965, 0.003822516882792115, -0.0022319003473967314, -0.03233155608177185, 0.013352653943002224, 0.031122611835598946, -0.0019393509719520807, -0.05663447454571724, -0.05086873099207878, -0.028007250279188156, -0.004804785829037428, -0.0012331637553870678, -0.04150714725255966, 0.016429267823696136, -0.03264154493808746, 0.003892263863235712, 0.03163408860564232, -0.024256417527794838, 0.00034800791763700545, 0.003287790808826685, 0.00248182681389153, 0.000874257879331708, -0.008850105106830597, -0.02049008570611477, 0.006540708243846893, -0.02943318709731102, 0.04507198929786682, -0.03809729963541031, -0.014887086115777493, 0.01917264424264431, -0.034687452018260956, -0.012438194826245308, 0.02744927443563938, 0.015235819853842258, -0.007234302349388599, 0.016646256670355797, 0.003783768741413951, 0.013554145582020283, 0.002940993756055832, 0.02093956619501114, 0.0005071180057711899, -0.011283496394753456, 0.0010374849662184715, -0.016801251098513603, -0.008354127407073975, 0.014840587973594666, -0.002660068916156888, -0.03217656537890434, -0.004095692187547684, -0.0039252000860869884, -0.0379733070731163, 0.010570527985692024, 0.033106524497270584, 0.0002022175322053954, -0.026224829256534576, -0.004560671281069517, 0.016816750168800354, 0.03639237582683563, 0.019296638667583466, 0.012267702259123325, -0.02717028744518757, 0.011306745931506157, -0.007718655746430159, 0.048729825764894485, 0.007354422006756067, -0.03406747803092003, 0.027604268863797188, 0.009679318405687809, 0.02138904482126236, 0.012352949008345604, 0.012182456441223621, -0.0312776044011116, 0.022473996505141258, -0.009028347209095955, -0.025325870141386986, -0.025108879432082176, -0.024256417527794838, 7.09577725501731e-05, 0.008640864863991737, 0.011198250576853752, -0.026271328330039978, -0.012856676243245602, -0.006870068609714508, 0.004165438935160637, 0.012453693896532059, 0.012879924848675728, -0.0402052067220211, -0.03440846502780914, 0.007873648777604103, 0.01965312287211418, -0.0078194011002779, 0.009617321193218231, -0.02895270846784115, -0.011825972236692905, -0.0379733070731163, -0.04479300230741501, -0.004041444510221481, -0.02296997420489788, -0.023543449118733406, 0.038686275482177734, -0.002479889430105686, -0.006133851129561663, -0.11860071122646332, -0.031308602541685104, 0.01216695737093687, -0.004518048372119665, -0.023124968633055687, -0.020474586635828018, 0.011113003827631474, 0.014445355162024498, 0.01104325708001852, -0.003336226101964712, 0.012321949936449528, -0.02186952345073223, -0.05142670497298241, 0.009888558648526669, -0.006447712425142527, -0.02160603553056717, -0.0015073077520355582, 0.04996977001428604, 0.01160123199224472, 0.03505943715572357, -0.008563367649912834, 0.011562484316527843, -0.0011275747092440724, 0.0422821119427681, 0.014220615848898888, -0.01527456846088171, -0.013104665093123913, 0.001618709065951407, 0.009284085594117641, 0.0021214678417891264, 0.00736604630947113, 0.031355101615190506, 0.012329699471592903, 0.03834528848528862, 0.029929164797067642, 0.0011992589570581913, 0.012236704118549824, 0.028456730768084526, 0.0234039556235075, -0.014933583326637745, -0.016227776184678078, -0.047830864787101746, 0.0032722915057092905, -0.004986902698874474, 0.04042219743132591, 0.004421177785843611, -0.0036442747805267572, 0.007800026796758175, 0.003086299868300557, -0.016119280830025673, 0.006114477291703224, 0.008253381587564945, -0.02678280510008335, 0.025031382218003273, -0.02633332461118698, 0.027774760499596596, -0.016599759459495544, 0.0017097675008699298, -0.00903609674423933, 0.012399447150528431, -0.011004509404301643, 0.007536538876593113, 0.03462545573711395, -0.03946124017238617, -0.01965312287211418, 0.004297183360904455, 0.011686478741466999, -0.004177063703536987, 0.010973510332405567, -0.02921619638800621, 0.02185402438044548, 0.02472139708697796, 0.019079647958278656, -0.007966644130647182, 0.049380797892808914, 0.034470461308956146, -0.0014491853071376681, -0.036020394414663315, -0.008772608824074268, -0.004165438935160637, 0.019467132166028023, -0.019947610795497894, -0.027123790234327316, 0.007397044915705919, 0.02648831717669964, -0.0024624525103718042, 0.008051890879869461, -0.021482041105628014, -0.006420588586479425, 0.0036791483871638775, 0.022845979779958725, -0.013313906267285347, 0.019343137741088867, -0.02810024656355381, -0.01580154523253441, 0.020908566191792488, -0.002115655690431595, 0.009989304468035698, 0.0334475077688694, -0.007152930833399296, 0.04612594097852707, 0.01720423251390457, -0.007160680368542671, -0.011740726418793201, -0.006261720787733793, -0.009446828626096249, 0.008470372296869755, 0.0066530779004096985, 0.010934761725366116, -0.006219097413122654, 0.00836187694221735, 0.0020090979523956776, 0.0005807396955788136, -0.015917789191007614, 0.01404237374663353, -0.0006403151783160865, 0.009082594886422157, -0.013081416487693787, -0.014778590761125088, -0.0007890116539783776, 0.04485499858856201, -0.04934979975223541, -0.00868736207485199, 0.011399741284549236, 0.012887675315141678, 0.02182302623987198, 0.027774760499596596, 0.0002484732831362635, 0.026193831115961075, 0.006529083475470543, -0.029588179662823677, 0.03195957466959953, -0.006494210101664066, 0.029123200103640556, 0.01038453634828329, -0.008532369509339333, 0.00936158187687397, 0.01847517490386963, -0.014608098194003105, 0.030177153646945953, 0.0006412838702090085, 0.02252049557864666, 0.011740726418793201, 0.022628990933299065, 0.011058756150305271, -0.006614329759031534, -0.006563957314938307, 0.014569349586963654, -0.01807219348847866, 0.030270149931311607, -0.02382243610918522, -0.01782420463860035, -0.017731208354234695, -0.003219981212168932, 0.000626268913038075, 0.07520264387130737, -0.04590895026922226, -0.0050605242140591145, -0.002445015823468566, 0.004913280718028545, -0.0002408447180641815, -0.002135029761120677, -0.0007216865196824074, -0.01624327525496483, 0.03902725875377655, -0.025108879432082176, -0.02382243610918522, -0.03144809603691101, 0.009059345349669456, 0.02875121682882309, -0.00708705885335803, -0.020211098715662956, 0.01191896852105856, 0.0027491897344589233, 0.04280909150838852, 0.01529006753116846, 0.010919262655079365, -0.0005076023517176509, 0.008268880657851696, 0.007997643202543259, -0.014460855163633823, -0.0005076023517176509, 0.036237381398677826, 0.053162626922130585, 0.05282164365053177, -0.030270149931311607, -0.02583734691143036, -0.00859436672180891, -0.020629579201340675, 0.007672157604247332, 0.0008713517454452813, 0.030688630416989326, 0.011616731993854046, 0.01361614279448986, -0.017111236229538918, 0.002691067522391677, -0.006811946164816618, 0.028038248419761658, -0.033292513340711594, 0.03608239069581032, -0.013213160447776318, 0.019978608936071396, -0.003082424867898226, -0.03493544086813927, -0.014825088903307915, 0.038655273616313934, -0.04792386293411255, -0.004549046978354454, -0.03589639812707901, 0.005308513063937426, 0.01712673529982567, -0.024132423102855682, 0.02142004482448101, -0.006133851129561663, 0.0005986607866361737, -0.012655185535550117, 0.02965017780661583, 0.0212030541151762, -0.01670825481414795, -0.02940218895673752, -0.013647140935063362, -0.01873866468667984, -0.010035802610218525, 0.0139416279271245, 0.009028347209095955, 0.019467132166028023, -0.020133601501584053, -0.02991366572678089, -0.014329110272228718, 0.03983322158455849, 0.016630757600069046, 0.012949672527611256, -0.010299290530383587, -0.015251319855451584, 0.0023888309951871634, 0.012887675315141678, 0.010555028915405273, 0.03924424946308136, 0.004936529789119959, 0.0010006740922108293, -0.02538786642253399, -0.04125915840268135, -0.015553556382656097, -0.014181867241859436, -0.0356174111366272, -0.016847748309373856, 0.03918225318193436, 0.019482631236314774, 0.021807527169585228, 0.013840882107615471, -0.018893657252192497, 0.015104075893759727, 0.01782420463860035, 0.015243569388985634, -0.0037178965285420418, 0.02806924842298031, 0.018428677693009377, 0.027883255854249, -0.02633332461118698, 0.013662640005350113, -0.007567537482827902, 0.007912397384643555, -0.00991180818527937, -0.011345493607223034, 0.011089755222201347, -0.005223266780376434, -0.030378645285964012, -0.019017651677131653, 0.018924655392766, -0.011531485244631767, -0.0029274318367242813, 0.0022396501153707504, 0.024256417527794838, -0.012701683677732944, -0.020893067121505737, -0.003960073459893465, -0.05000076815485954, -0.008718361146748066, -0.012120459228754044, 0.0014046247815713286, -0.020459087565541267, 0.018134191632270813, 0.020567582920193672, -0.0256513562053442, 0.01081076730042696, 0.02388443425297737, -0.009113593026995659, -0.007521039340645075, 0.0005221329629421234, 0.011942217126488686, -0.01135324314236641, 0.057409439235925674, -0.01712673529982567, -0.003783768741413951, -0.031091611832380295, 0.0012583500938490033, -0.015414061956107616, 0.01850617490708828, 0.027061792090535164, -0.03518342971801758, 0.02515537664294243, -0.016367269679903984, 0.009524324908852577, 0.006707325577735901, -0.006141601130366325, -0.009663818404078484, -0.008757108822464943, -0.014654596336185932, -0.025573858991265297, 0.011856971308588982, 0.006323718000203371, -0.013197661377489567, 0.010679023340344429, 0.014770841225981712, -0.010989009402692318, -0.017452221363782883, -0.009446828626096249, 0.008741609752178192, 0.0034408464562147856, 0.0036404000129550695, -0.002522512339055538, 0.0050295256078243256, 0.04609494283795357, 0.040267203003168106, -0.0030959867872297764, -0.009989304468035698, 0.004428927320986986, -0.017715709283947945, -0.013554145582020283, 0.017436722293496132, -0.0025283247232437134, -0.010516280308365822, -0.010508530773222446, 0.003615213790908456, -0.030363144353032112, 0.007327298168092966, 0.01982361637055874, 0.0015082764439284801, 0.013329405337572098, -0.007598536089062691, -0.009183339774608612, 0.0034098478499799967, -0.0014743717620149255, 0.007741904351860285, 0.013375903479754925, -0.005172894336283207, 0.04528898000717163, -0.0073776706121861935, -0.009586322121322155, 0.024860890582203865, 0.07551263272762299, 0.014197366312146187, 0.015917789191007614, -0.017963698133826256, 0.008912102319300175, -0.004835784435272217, -0.020180098712444305, 0.0017611088696867228, 0.012407196685671806, 0.00792014691978693, -0.0012360698310658336, -0.010121048428118229, -0.00036035891389474273, -0.016398267820477486, 0.006513584405183792, 0.03186657652258873, -0.0010849515674635768, -0.004494799301028252, -0.009950555860996246, -0.012298701331019402, 0.010206294246017933, 1.961631278390996e-05, -0.0007725436589680612, -0.0015044016763567924, -0.013957126997411251, -0.013492148369550705, 0.0004727289197035134, -0.008633114397525787, -0.0035900273360311985, 0.017963698133826256, -0.015569055452942848, -0.013902879320085049, 0.007621784694492817, 0.019250141456723213, 0.002851872704923153, 0.003940699156373739, 0.00379345566034317, 0.019002152606844902, 0.006467086263000965, 0.007989893667399883, -0.02138904482126236, -0.00992730725556612, -0.006501960102468729, 0.0037876435089856386, -0.02295447513461113, 0.026798304170370102, 0.013058166950941086, -0.006118352059274912, 0.00365396193228662, -0.05682046338915825, 0.0030611134134233, -0.005145770497620106, 0.024194421246647835, -0.011779474094510078, 7.761763117741793e-05, -0.015189322642982006, 0.00011812167940661311, -0.011957716196775436, -0.0019596938509494066, 0.008292130194604397, -0.05638648569583893, -0.0007754497928544879, 0.010074550285935402, 0.004146065097302198, -0.018196187913417816, -0.024659398943185806, 0.030394144356250763, -0.0031424846965819597, 0.0046614171005785465, -0.04795486107468605, -0.015088576823472977, 0.00534726120531559, 0.013561895117163658, 0.02205551601946354, 0.007893023081123829, 0.008051890879869461, -0.02273748628795147, 0.033137522637844086, 0.03140160068869591, -0.009028347209095955, -0.005924610421061516, -0.006455461960285902, -0.016119280830025673, 0.018103191629052162, -0.003458283143118024, 0.015607803128659725, 0.0060214814729988575, 0.006145475897938013, 0.0019035087898373604, 0.006060229614377022, -0.020381590351462364, 0.001787264016456902, 0.004080193117260933, -0.0021311549935489893, 0.014577099122107029, -0.0016061158385127783, -0.028270738199353218, -0.002594196703284979, 0.01608828268945217, -0.03474944829940796, 0.010609276592731476, 0.024473408237099648, -0.0040259454399347305, -0.0026891299057751894, 0.010500781238079071, -0.003318789415061474, 0.004084067884832621, -0.03298252820968628, -0.04562996327877045, 0.01438335794955492, -0.01938963495194912, 0.004769911989569664, 0.011577983386814594, 0.016847748309373856, 0.015398562885820866, -0.016615258529782295, -0.015135074965655804, -0.006149350665509701, -0.02250499650835991, -0.002822811482474208, 0.010779769159853458, 0.01652226224541664, 0.006529083475470543, -0.01649126410484314, 0.008741609752178192, 0.016367269679903984, -0.004653667565435171, -0.01625877432525158, -0.00680807139724493, -0.002183465054258704, 0.013089166022837162, 0.00574249355122447, 0.022024517878890038, 6.599314656341448e-05, -0.0008514932706020772, 0.007338922470808029, 0.009834310971200466, -0.02403942681849003, 0.0245509035885334, 0.027325280010700226, -0.049628786742687225, 0.01652226224541664, 0.010322539135813713, -0.03239355608820915, 0.05226366966962814, -0.01875416375696659, 0.012004214338958263, 0.014677844941616058, 0.014677844941616058, -0.011740726418793201, -0.019265640527009964, -0.012833427637815475, 0.0223190039396286, 0.022442998364567757, 0.0034195350017398596, -0.02097056433558464, 0.007590786088258028, -0.006773197557777166, -0.03614438697695732, 0.03079712577164173, 0.0008277599117718637, -0.01898665353655815, 0.005277514457702637, 0.0018298870418220758, 0.029510682448744774, 0.0009774251375347376, -0.007741904351860285, -0.009842060506343842, -0.004680790938436985, 0.011880219914019108, -0.009679318405687809, -0.010524030774831772, 0.016165778040885925, -0.011663229204714298, 0.01670825481414795, -0.004432802088558674, -0.011167251504957676, -0.013716887682676315, -0.022334503009915352, 0.0059749833308160305, -0.0073350477032363415, -0.008276631124317646, 0.03670236095786095, 0.015561305917799473, 0.03515243157744408, 0.014964582398533821, -0.021714530885219574, -0.011794974096119404, 0.032920531928539276, -0.007842649705708027, 6.369246693793684e-05, -0.007982144132256508, 0.005905236583203077, 0.00857111718505621, 0.04838884249329567, 0.019761618226766586, 0.028720218688249588, 0.00936158187687397, -0.04947379231452942, 0.02608533576130867, -0.010121048428118229, -0.007625659927725792, 0.009981554932892323, -0.0007589817396365106, 0.007478416431695223, 0.021063560619950294, -0.0031327977776527405, -0.002322958782315254, 0.008485871367156506, -0.014313611201941967, -0.002016847487539053, -0.02628682740032673, -0.00859436672180891, 0.027728263288736343, -0.022396501153707504, 0.013701388612389565, 0.0025457614101469517, 0.034873444586992264, -0.002652319148182869, -0.031045114621520042, 0.029030203819274902, -0.006029231008142233, -0.013337154872715473, -0.04640492796897888, -0.024209920316934586, 0.007362171541899443, 0.040949173271656036, 0.0007735123508609831, 8.43834413899458e-07, -0.01126024778932333, 0.003884514095261693, -0.00037004597834311426, -0.005827739834785461, -0.008625364862382412, -0.033571500331163406, -0.005761867854744196, 0.0018657292239367962, -0.029495183378458023, 0.007989893667399883, 0.037105344235897064, -0.0036094014067202806, -0.01897115260362625, 0.0013038793113082647, -0.029123200103640556, 0.03412947803735733, -0.0009410986094735563, 0.017235230654478073, 0.00846262276172638, 0.005610749591141939, -0.0058858622796833515, -0.03589639812707901, -0.0245509035885334, -0.0003625384997576475, -0.024473408237099648, -0.01957562565803528, 0.041848134249448776, 0.016460265964269638, -0.007676032371819019, 0.0034524709917604923, 0.025945842266082764, -0.011926718056201935, 0.019885612651705742, 0.038004305213689804, -0.009028347209095955, 0.019746119156479836, 0.0013590955641120672, -0.0038089549634605646, -0.0014055934734642506, -0.04349105805158615, 0.025992339476943016, 0.007393170148134232, -0.021234052255749702, -0.015111825428903103, -0.01160123199224472, 0.03101411648094654, -0.01079526823014021, 0.040918175131082535, 0.034656453877687454, 0.02476789429783821, 0.019963109865784645, -0.0038283292669802904, -0.005479005631059408, -0.022613491863012314, -0.005847114138305187, 0.01025279238820076, 0.036671362817287445, 0.0167547520250082, -0.010345788672566414, -0.01315116323530674, 0.032455552369356155, -0.002158278599381447, 0.027030793949961662, 0.004549046978354454, -0.0031250480096787214, 0.020815571770071983, 0.00891985185444355, 0.013902879320085049, 0.05043474957346916, 0.03282753378152847, -0.019544627517461777, 0.013213160447776318, -0.007152930833399296, -0.009229837916791439, -0.037601321935653687, 0.014003625139594078, 0.028038248419761658, -0.0024973261170089245, -0.005854863673448563, -0.007916271686553955, -0.003634587861597538, 0.058308396488428116, -0.008191384375095367, 0.00707543408498168, -0.018180688843131065, -0.0007391232647933066, 0.002654256531968713, -0.00418868800625205, 0.04730388894677162, -0.002483764197677374, 0.02248949557542801, 0.023527950048446655, 0.00925308745354414, 0.012755930423736572, 0.017111236229538918, 0.04860582947731018, -0.01415861863642931, 0.0023093968629837036, -0.022783983498811722, -0.014298112131655216, 0.002443078439682722, 0.0178087055683136, 0.027712764218449593, 0.03096761740744114, -0.007331172935664654, 0.0034447212237864733, -0.020614080131053925, -0.015080827288329601, 0.01759171485900879, 0.01426711305975914, -0.03437746688723564, 0.0044831749983131886, 0.0019044774817302823, -0.01804119534790516, -0.027108291164040565, -0.02695329673588276, 0.05266664922237396, -0.004498674068599939, -0.03431547060608864, 0.011175001040101051, -0.021249551326036453, -0.0035784028004854918, 0.01673925295472145, -0.003803142812103033, -0.008741609752178192, 0.006947564892470837, 0.024380411952733994, -0.02878221496939659, 0.016894245520234108, -0.025961341336369514, 0.030425142496824265, 0.01380988396704197, -0.010865014977753162, -0.018831659108400345, 0.032424554228782654, -0.027542270720005035, -0.006606580223888159, 0.05155070126056671, -0.012507941573858261, -0.027697263285517693, -0.001271912013180554, -0.007056060247123241, 0.015080827288329601, 0.00311923585832119, -0.03716734051704407, -0.0189556535333395, -0.016165778040885925, -0.002799562644213438, 0.019017651677131653, -0.005006276536732912, 0.015266818925738335, 0.037818312644958496, 0.010818516835570335, -0.012097210623323917, 0.018800660967826843, 0.03459445759654045, -0.025961341336369514, -0.0010549216531217098, 0.01827368512749672, 0.0008292130078189075]" -How WsprDaemon Combines TimescaleDB and Grafana to Measure and Analyze Radio Transmissions,"time performance was excellent, but, as we accumulated weeks of data we hit thecardinalityissue.Query times became unacceptably long, and we looked for an alternative time-series database solution.We quickly came across an objectivearticleon how to solve the cardinality problem that led us to adopt TimescaleDB.The biggest factor in choosing TimescaleDB was that it solved our cardinality problem, but there were also “nice to have” features, such as the easy-to-usetool to migrate our data from Influxand the underlying use of PostgreSQL. But, we did miss Influx’s comprehensive single-source documentation.Editor’s Note: Because we think it’s important to remain balanced and let our community members’ voice shine through, we don’t edit mentions of alternative technologies (favorable or unfavorable🙂).Current deployment & future plansOur initial TimescaleDB implementation is on a DigitalOcean Droplet (2 cores, 4GB memory 100GB SSD disk), but we are moving to our own 16 core, 192GB memory Dell server and a back-up (we’re evaluating query performance as our user base grows).As noted above,the way TimescaleDB has solved the issue of cardinality was a big selling point for us, and it’s what makes the WsprDaemon site performant for our users.When we wereusing Influx, a typical query that returned 1,000 results from a table of 12 million records and a cardinality of about 400,000 took 15-25 seconds.Now,running TimescaleDB on the same Digital Ocean Droplet(albeit with 4GB rather than the previous 2GB of memory),those same queries overwhelmingly return results in under 2s*.*as long as the data requested is within the chunk that is in memory. That’s why we’ve recently increased our Dell server memory from 24 to 192GB, to handle one-month chunks, and why it will become our primary machine.We use bash Linux shell scripts with Python to gather the data that populates our database tables. We find that batch upload usingpsycopg2.extras.execute_batchworks well for us, and our users use a variety of methods to access WsprDaemon, including Node.js andpsqlvia its command line interface.Simplified WsprDaemon architecture, showing data routes fromwsprnetand 3rd party interfacesWe already make extensive use of Grafana dashboards, and we expect to expand our capabilities - adding global map panels is just one example. But, even after extensive searching, it’s not always straightforward or obvious how to obtain the best, streamlined end result.For example, creating an animation that shows the global geographic distribution of receivers and transmitters by hour",https://www.timescale.com/blog/wsprdaemon-combines-timescaledb-grafana-analyze-radio/,547,"[-0.00170712114777416, -0.00047701760195195675, 0.08444420248270035, -0.008508116938173771, 0.06497107446193695, 0.012747010216116905, -0.02064090594649315, 0.0011782074579969049, -0.023901591077446938, 0.00299528194591403, 0.017183059826493263, -0.016015280038118362, -0.01414228044450283, -0.030665621161460876, 0.05596248432993889, 0.033729150891304016, -0.0021421953570097685, -0.0019658906385302544, -0.030923442915081978, 0.000767777964938432, -0.006995310541242361, -0.0032455206383019686, 0.03118126466870308, -0.0033990764059126377, -0.001379156718030572, -0.0095090726390481, -0.0050540645606815815, 0.05399090424180031, 0.00198105676099658, -0.0881447046995163, 0.006388671230524778, -0.03670168295502663, -0.04938044399023056, 0.0005014253547415137, 0.014650341123342514, 0.025660846382379532, 0.04207044094800949, 0.02550918608903885, -0.007397208828479052, -0.016106275841593742, -0.03964388370513916, -0.002517553512006998, -0.007283464074134827, 0.016106275841593742, -0.016803910955786705, -0.011101501062512398, -0.049319781363010406, 0.0015886368928477168, 0.014779252000153065, 0.04252542182803154, -0.03497276082634926, 0.045285630971193314, -0.026009663939476013, -0.037156663835048676, 0.014748919755220413, -0.03260686621069908, -0.012716677971184254, 0.030802113935351372, -0.007143178954720497, -0.038976579904556274, 0.014733754098415375, -0.05056339129805565, 0.0668516606092453, 0.027708254754543304, 0.017016233876347542, 0.013672134838998318, -0.010396282188594341, 0.04440600425004959, -0.02244565635919571, 0.04470932111144066, 0.03281918913125992, 0.03782396391034126, 0.03639836236834526, -0.03639836236834526, 0.030680786818265915, -0.05056339129805565, -0.03382014483213425, 0.023674102500081062, -0.014885413460433483, 0.028527216985821724, -0.008917598985135555, -0.0016521444777026772, -0.038794588297605515, 0.012019042856991291, 0.020974555984139442, -0.045285630971193314, 0.013148908503353596, -0.007256923709064722, 0.017774533480405807, -0.0052701798267662525, 0.001885321456938982, 0.058055389672517776, 0.039886537939310074, 0.01839633844792843, 0.032303545624017715, 0.012284447439014912, 0.014202944934368134, 0.016015280038118362, -0.01004746463149786, 0.03903724253177643, 0.03506375476717949, -0.025721509009599686, -0.028254229575395584, -0.030680786818265915, 0.028148068115115166, -0.016606753692030907, 0.045194633305072784, 0.02136887237429619, 0.0006767820450477302, 0.007450290024280548, -0.07631523162126541, -0.014445600099861622, -0.08395889401435852, -0.020337585359811783, -0.012534686364233494, -0.03648936003446579, -0.016257936134934425, -0.004546003881841898, 0.02208167314529419, -0.009054092690348625, -0.020140428096055984, 0.022642815485596657, -0.023264620453119278, 0.039340563118457794, 0.03512442111968994, -0.03949222341179848, 0.007787732873111963, -0.05556816607713699, -0.03718699514865875, 0.011601977981626987, 0.06891423463821411, -0.019867440685629845, 0.06612369418144226, -0.03567039594054222, -0.035640064626932144, -0.01234511099755764, -0.06988485902547836, -0.03357749059796333, -0.000677729956805706, 0.0036341489758342505, 0.024204911664128304, -0.021217212080955505, 0.03603437915444374, -0.005046481266617775, -0.028405889868736267, 0.03709599748253822, -0.018684493377804756, 0.04567994549870491, -0.04938044399023056, -0.0015194420702755451, 0.004898612853139639, 0.00806830357760191, -0.028436221182346344, -0.02702578529715538, 0.04637758061289787, -0.0029175563249737024, 0.03594338521361351, 0.05289895460009575, -0.01810818538069725, -0.016515757888555527, -0.016637085005640984, 0.03357749059796333, -0.020140428096055984, -0.020762233063578606, -0.03645902872085571, -0.01882098615169525, -0.035913050174713135, -0.0547795370221138, -0.08323092013597488, -0.01631859876215458, -0.022021010518074036, -0.054900866001844406, -0.00784081406891346, 0.020125262439250946, 0.04313205927610397, -0.002206650795415044, -0.01424085907638073, -0.03679267689585686, 0.0398562066257, -0.03254620358347893, -0.032485537230968475, 0.009698647074401379, -0.02396225556731224, 0.013710049912333488, -0.014475932344794273, 0.01982194185256958, -0.06260518729686737, 0.03791496157646179, 0.025190699845552444, 0.026904456317424774, 0.0030369884334504604, 0.07401000708341599, 0.05778240039944649, 0.016803910955786705, 0.014074034057557583, -0.04404202103614807, 0.029967986047267914, 0.021869350224733353, -0.04025052487850189, 0.016788745298981667, 0.027541428804397583, 0.03291018679738045, 0.042768076062202454, -0.014544179663062096, 0.007063557393848896, 0.0009668315178714693, 0.001050244434736669, -0.001676789135672152, -0.038430605083703995, -0.04837949201464653, -0.004636999685317278, 0.00299717765301466, 0.019624784588813782, -0.016788745298981667, -0.03187889978289604, -0.008546032011508942, -0.046165257692337036, 0.004655957221984863, 0.012610516510903835, -0.008417121134698391, 0.029209686443209648, 0.0817749872803688, -0.003217084566131234, -0.01863899454474449, -0.014293940737843513, 0.06278717517852783, 0.022855138406157494, -0.012822840362787247, 0.008348874747753143, 0.024447567760944366, -0.001102377544157207, -0.01360388845205307, 0.035640064626932144, -0.03506375476717949, 0.005160226486623287, -0.012686345726251602, 0.036550022661685944, -0.026510141789913177, -0.018517667427659035, -0.04495197907090187, -0.0003004760656040162, -0.0030313010793179274, 0.0025440938770771027, 0.02007976360619068, -0.009107173420488834, 0.0006270186859183013, -0.04398135468363762, -0.05541650950908661, 0.021399203687906265, 0.05065438896417618, 0.04316239058971405, -0.01945795863866806, 0.026722464710474014, 0.00032606866443529725, -0.022764142602682114, -0.041858118027448654, -0.02379542961716652, 0.01631859876215458, 0.015431389212608337, 0.018623828887939453, 0.009433242492377758, -0.0278447475284338, 0.007188676856458187, 0.01730438880622387, -0.05738808587193489, 0.0018881651340052485, 0.015378308482468128, -0.047257207334041595, 0.02062573842704296, 0.005831321235746145, 0.04091782495379448, 0.024841882288455963, 0.009713812731206417, -0.03949222341179848, -0.004352637566626072, -0.03081728145480156, 0.027526261284947395, -0.00492894509807229, -0.012064540758728981, 0.00304267555475235, -0.010540359653532505, -0.05198899656534195, 0.012595349922776222, -0.006638909690082073, 0.012458856217563152, -0.0008137498516589403, 0.016621919348835945, 0.04097849130630493, 0.007435123901814222, -0.06393978744745255, -0.009562153369188309, 0.02350727654993534, 0.011291075497865677, -0.0036834385246038437, 0.003764955559745431, -0.0027924368623644114, -0.004777285270392895, 0.016819076612591743, -0.03745998069643974, 0.0008023753762245178, -0.004413301590830088, 0.005330843385308981, 0.01432427205145359, -0.025372691452503204, 0.0023109170142561197, 0.010510027408599854, -0.0006649336428381503, -0.001013277331367135, -0.001162093598395586, 0.028087403625249863, -0.0031317758839577436, -0.012701512314379215, -0.016166940331459045, 0.012511936947703362, -0.02071673423051834, -0.032394543290138245, 0.06045161560177803, 0.00833370815962553, -0.015742292627692223, -0.05602314695715904, -0.04564961418509483, -0.09639500081539154, -0.01365696918219328, 0.0074464986100792885, 0.018047520890831947, -0.025478854775428772, 0.0013023789506405592, -0.0002495278313290328, 0.023006798699498177, -0.041585128754377365, 0.0194731242954731, -0.020292086526751518, 0.03512442111968994, 0.01865416020154953, -0.045558616518974304, -0.07273606210947037, -0.00025592598831281066, 0.0271926112473011, -0.005763073917478323, 0.019579285755753517, -0.03451777994632721, -0.02567601203918457, -0.05811605229973793, -0.0035905467811971903, 0.010896760039031506, 0.009850307367742062, -0.027981242164969444, -0.024386903271079063, 0.02171768993139267, 0.008697692304849625, -0.04043251648545265, 0.02162669412791729, 0.006570662837475538, 0.011397236958146095, 0.011093917302787304, -0.01839633844792843, 0.013239904306828976, -0.037065666168928146, -0.029497839510440826, -0.017820032313466072, -0.03551873564720154, 0.03679267689585686, 0.02188451588153839, 0.0020208675414323807, -0.02496321126818657, 0.010456946678459644, -0.046529240906238556, 0.04210077226161957, -0.019609618932008743, -0.02478121966123581, 0.030953774228692055, 0.01640959456562996, -0.01364938635379076, -0.014157447032630444, -0.05189799889922142, 0.0006241750670596957, 0.0486828088760376, 0.04901646077632904, -0.020064597949385643, 0.047439198940992355, 0.06393978744745255, 0.007734652142971754, 0.0002995281829498708, -0.008819020353257656, 0.03709599748253822, 0.046165257692337036, 0.03019547462463379, 0.04637758061289787, -0.047075215727090836, -0.04003819823265076, 0.02136887237429619, -0.011154581792652607, -0.0164854247123003, -0.02946750819683075, -0.014839915558695793, 0.008728024549782276, -0.016743246465921402, 0.060936927795410156, 0.052565302699804306, 0.010259788483381271, 0.044830650091171265, 0.0025440938770771027, -0.06369713693857193, -0.010547942481935024, 0.0031696907244622707, 0.023294951766729355, 0.012868338264524937, 0.010843679308891296, -0.007939392700791359, -0.02820873074233532, -0.02054990828037262, -0.011867382563650608, 0.03557939827442169, -0.015620964579284191, 0.038430605083703995, -0.04028085619211197, -0.035003092139959335, 0.06527439504861832, 0.0009952677646651864, 0.07959108799695969, -0.016743246465921402, 0.010464529506862164, -0.017880694940686226, -0.015226648189127445, -0.020489245653152466, 0.048167165368795395, 0.028496885672211647, -0.04109981656074524, 0.00825029518455267, -0.018411505967378616, -0.018714824691414833, 0.005607622675597668, 0.03418412804603577, 0.003509029746055603, 0.005842695478349924, 0.02532719448208809, 0.017774533480405807, 0.003973487764596939, 0.06927821785211563, 0.020064597949385643, -0.01730438880622387, -0.0018644682131707668, -0.009433242492377758, 0.030134811997413635, -0.01748638041317463, -0.029785994440317154, -0.006752654444426298, -0.005979189649224281, 0.025524351745843887, 0.002803811337798834, 0.059966303408145905, -0.03099927306175232, -0.03721732646226883, 0.030589791014790535, -0.02252148650586605, -0.05487053096294403, 0.036277033388614655, 0.014316689223051071, 0.048622146248817444, -0.027693087235093117, -0.006790569517761469, -0.008030388504266739, -0.07783183455467224, -0.029952820390462875, -0.03233388066291809, -0.039158571511507034, 0.05174633860588074, 0.012747010216116905, 0.03142391890287399, -0.030741451308131218, 0.041039153933525085, 0.018578331917524338, -0.027981242164969444, -0.006589620374143124, -0.030028648674488068, 0.0157726239413023, 0.043465711176395416, 0.03521541506052017, 0.026646634563803673, -0.005876819137483835, 0.009660732001066208, -0.003452157136052847, -0.02224849909543991, 0.05593215301632881, 0.03089310973882675, 0.041676126420497894, 0.013171657919883728, 0.00172892224509269, -0.00589956808835268, 0.030604956671595573, -0.032758526504039764, 0.03469977155327797, 0.06903555989265442, -0.01963995024561882, -0.0055317929945886135, -0.04719654470682144, -0.05350559204816818, 0.0024549937807023525, 0.007120429538190365, -0.03967421501874924, 0.058601364493370056, -0.009653149172663689, 0.01423327624797821, 0.05450654774904251, 0.005084396339952946, 0.03691400587558746, -0.014703421853482723, -0.0030730075668543577, -0.022718645632267, -0.0403718501329422, -0.022218167781829834, 0.00392040703445673, 0.03233388066291809, 0.037975624203681946, -0.010373533703386784, 0.021550863981246948, -0.017789699137210846, 0.0019137576455250382, -0.031575579196214676, 0.0031621078960597515, -0.02658597007393837, -0.012913836166262627, -0.04064483940601349, 0.012618099339306355, -0.003160211956128478, 0.009789642877876759, -0.041767120361328125, -0.026919621974229813, -0.018138516694307327, -0.02217266894876957, -0.00806072074919939, -0.02657080441713333, -0.005960232112556696, 0.007946975529193878, -0.04513397067785263, -0.008235129527747631, -0.022900637239217758, -0.05083638057112694, -0.04273774474859238, 0.012982082553207874, 0.042222101241350174, 0.029406843706965446, -0.0040720668621361256, 0.011609560810029507, 0.010434197261929512, -0.009016177617013454, 0.008053137920796871, -0.015423806384205818, -0.013186823576688766, 0.017258889973163605, 0.003226563334465027, -0.01593944989144802, -0.0014862664975225925, 0.0035810680128633976, 0.005918525625020266, 0.021839017048478127, 0.010593440383672714, -0.00028294039657339454, 0.004238892812281847, -0.011435152031481266, -0.0024929086212068796, 0.01198112778365612, 0.004326097201555967, 0.002758313436061144, -0.001668258337303996, 0.019670281559228897, 0.006297674961388111, -0.016333766281604767, -0.016242768615484238, 0.013088244944810867, -0.0002954997180495411, -0.03001348301768303, -0.001192425494082272, 0.01956412009894848, 0.022096838802099228, 0.00024810602189972997, -0.04106948524713516, -0.0048606982454657555, 0.022991633042693138, 0.01900297962129116, -0.04801550880074501, -0.009319497272372246, -0.008174465969204903, 0.04125147685408592, -0.02955850400030613, 0.002041720785200596, -0.011101501062512398, 0.005501460749655962, 0.02235466055572033, -0.028254229575395584, -0.0037099788896739483, 0.03560973331332207, -0.01018395833671093, 0.0022862721234560013, 0.013050329871475697, 0.014354604296386242, 0.005346009507775307, -0.005281554069370031, -0.004178228788077831, 0.04786384850740433, 0.012830423191189766, -0.0039924453012645245, -0.0035810680128633976, -0.03209122270345688, -0.01559063233435154, 0.04009886458516121, 0.02560018189251423, 0.011162164621055126, 0.03709599748253822, -0.017183059826493263, 0.009850307367742062, -0.028057072311639786, -0.011541314423084259, -0.031848568469285965, -0.01175363827496767, 0.01374796498566866, -0.0343964546918869, -0.014741336926817894, 0.02782958187162876, -0.022673146799206734, -0.029983151704072952, -0.016970736905932426, -0.006563080009073019, -0.018699659034609795, -0.011253160424530506, 0.03961355239152908, 0.004902404733002186, -0.04719654470682144, -0.03406280279159546, 0.005220890045166016, -0.020656071603298187, 0.010146043263375759, 0.029497839510440826, 0.03145425021648407, -0.008182048797607422, 0.036368031054735184, 0.03670168295502663, 0.04956243932247162, 0.0009649357525631785, -0.01989777199923992, 0.012390609830617905, 0.019245633855462074, -0.008273044601082802, -0.004443633370101452, 0.020155593752861023, -0.03089310973882675, -0.02397742122411728, 0.0515340156853199, -0.002786749741062522, -0.02127787657082081, 0.0030881736893206835, -0.0070142680779099464, 0.06994552165269852, 0.034032467752695084, 0.017516711726784706, 0.013035164214670658, -0.029422009363770485, -0.002100488869473338, -0.021930012851953506, 0.02397742122411728, -0.032576534897089005, 0.002363997744396329, -0.03469977155327797, 0.004966860171407461, 0.013164075091481209, 0.003287227125838399, 0.022278832271695137, 0.008674942888319492, 0.033183176070451736, 0.016591588035225868, 0.0006691990420222282, 0.012003877200186253, 0.03791496157646179, 0.013270236551761627, 0.01936696283519268, 0.001267307554371655, 0.02054990828037262, -0.005998146720230579, 0.003463531844317913, 0.061058253049850464, -0.046347249299287796, 0.027723420411348343, -0.027905412018299103, 0.013164075091481209, -0.0014398206258192658, -0.009630399756133556, -0.015909118577837944, 0.03008931316435337, 0.03818795084953308, 0.03378981351852417, 0.02027692086994648, -0.00030497845727950335, 0.006502415984869003, -0.025615347549319267, 0.004500505980104208, -0.009986801072955132, 0.02054990828037262, 0.02124754525721073, -0.027056116610765457, 0.0018189703114330769, 0.017713870853185654, 0.010419031605124474, -0.051503684371709824, -0.02126271091401577, -0.024007754400372505, -0.0003661163500510156, 0.026009663939476013, -0.014407685026526451, 0.02126271091401577, -0.020140428096055984, -0.03551873564720154, 0.0072493404150009155, -0.03800595924258232, 0.02224849909543991, 0.0015061718877404928, 0.01346739474684, -0.01351289264857769, 0.04034151881933212, -0.04343537986278534, 0.016955571249127388, -0.06806493550539017, 0.006210470572113991, -0.038612596690654755, -0.035913050174713135, 0.03190923109650612, -0.03133292496204376, 0.010206707753241062, 0.05044206604361534, 0.03943156078457832, -0.005505252629518509, 0.009744144976139069, 0.014786834828555584, 0.005979189649224281, -0.002781062386929989, -0.0037971832789480686, -0.025569850578904152, -0.012716677971184254, 0.006176347378641367, -0.02936134673655033, 0.007067348808050156, -0.010608606040477753, 0.017501546069979668, -0.04534629359841347, -0.006809527054429054, -0.0023867469280958176, -0.029785994440317154, 0.02054990828037262, 0.059147339314222336, -0.014286357909440994, 0.006191513035446405, -0.030134811997413635, 0.015605797991156578, 0.0013099618954584002, -0.0020606780890375376, -0.02235466055572033, -0.02007976360619068, -0.0023222914896905422, 0.02711678110063076, 0.005228473339229822, 0.013535641133785248, -0.012997249141335487, 0.016546089202165604, -0.018851319327950478, 0.001348824705928564, -0.005505252629518509, 0.028512051329016685, -0.04052351042628288, -0.010692019015550613, -0.026191655546426773, -0.023765098303556442, -0.007313795853406191, -0.01891198195517063, -0.0003566376108210534, 0.0022142338566482067, 0.03718699514865875, -0.005607622675597668, -0.004731787368655205, 0.0068398588337004185, 0.01775936782360077, 0.001945037511177361, 0.00400761142373085, -0.004409510176628828, -0.028254229575395584, -0.03269786387681961, 0.017956525087356567, -0.004079649690538645, -0.0019488290417939425, 0.0028057070448994637, -0.0009620921337045729, -0.02415941283106804, -0.03412346541881561, -0.011344156228005886, -0.03594338521361351, 0.0315452478826046, 0.030529126524925232, 0.0019431418040767312, 0.010199124924838543, -0.11307758092880249, -0.04228276386857033, 0.04701455309987068, -0.002436036244034767, -0.031029604375362396, -0.017137562856078148, 0.02332528494298458, 0.011389654129743576, 0.031757570803165436, -0.01963995024561882, 0.024098750203847885, -0.03727798908948898, -0.045012641698122025, 0.00820479728281498, -0.0076853628270328045, 0.01184463407844305, 0.005141268949955702, 0.02007976360619068, 0.024826716631650925, 0.01721339300274849, 0.01211762148886919, 0.01410436537116766, -0.03964388370513916, 0.05826771259307861, 0.007628490217030048, -0.029679831117391586, -0.03345616161823273, 0.013004831969738007, 0.013679717667400837, 2.702922029129695e-05, 0.01794135943055153, 0.016561254858970642, 0.01639442890882492, 0.013482560403645039, 0.005971606355160475, 0.012549852021038532, -0.007761192508041859, 0.017319554463028908, 0.005649329163134098, -0.014157447032630444, -0.02596416510641575, -0.06157389655709267, 0.0329708494246006, -0.031939562410116196, 0.04531596228480339, -0.004348846152424812, -0.010214290581643581, 0.03730832040309906, -0.007404792122542858, 0.007651239167898893, 0.019518621265888214, 0.014256025664508343, -0.012830423191189766, 0.002018971601501107, -0.0394618920981884, 0.02080773003399372, -0.060876261442899704, 0.0028000199235975742, 0.003630357561632991, 0.011382071301341057, -0.01892714947462082, 0.014908162876963615, 0.030802113935351372, -0.06800427287817001, -0.03418412804603577, -0.005141268949955702, 0.02144470252096653, 0.01856316439807415, -0.0054862950928509235, -0.01803235523402691, 0.03397180512547493, 0.04046284779906273, 0.04649890959262848, -0.0037099788896739483, 0.022642815485596657, 0.00392040703445673, -0.000894793076440692, -0.04416334629058838, -0.02540302462875843, -0.020064597949385643, 0.0022085465025156736, -0.01929113268852234, -0.043556708842515945, -0.017061732709407806, -0.0060777682811021805, -0.015560300089418888, -0.0033725358080118895, 0.01991293765604496, -0.003262582467868924, 0.006695782300084829, 0.03943156078457832, -0.016060777008533478, -0.00705218268558383, -0.009258833713829517, -0.0018654160667210817, 0.025645680725574493, 0.013717632740736008, 0.007215217221528292, 0.027511095628142357, -0.005543167237192392, 0.04267708212137222, 0.002511866157874465, 0.006301466375589371, -0.012094873003661633, -0.011002921499311924, -0.008932764641940594, 0.011192496865987778, 0.0014322376810014248, -0.008136550895869732, 0.016470259055495262, -0.01377829723060131, 0.018168849870562553, 0.01892714947462082, 0.017016233876347542, -0.011556480079889297, -0.0008924233843572438, 0.013755547814071178, -0.01198112778365612, 0.0008848404395394027, -0.0120721235871315, 0.031211595982313156, -0.01225411519408226, -0.021945180371403694, 0.05241364240646362, -0.01765320636332035, 0.020868394523859024, 0.03773296996951103, -0.004364012274891138, 0.043647702783346176, 0.0035431531723588705, 0.023901591077446938, 0.052383311092853546, -0.006426585838198662, 0.03394147381186485, -0.00479624280706048, -0.020853228867053986, 0.020868394523859024, -0.00608155969530344, -0.014271191321313381, 0.027632424607872963, -0.0036474193911999464, 0.023203955963253975, -0.002509970450773835, -0.007946975529193878, 0.031241929158568382, 0.008485368452966213, 0.008136550895869732, 0.013239904306828976, -0.021748021245002747, 0.022112006321549416, 0.0020891143940389156, -0.029058026149868965, -0.009395327419042587, 0.030604956671595573, -0.0005786771071143448, 0.04137280583381653, -0.043101727962493896, -0.022021010518074036, -0.030422965064644814, 0.0005218046717345715, 0.0044019268825650215, 0.024371737614274025, 0.010464529506862164, -0.001423706766217947, 0.013376398012042046, -0.015378308482468128, -0.01747121475636959, -0.024432402104139328, 0.001929871505126357, 0.0053839245811104774, 0.01374796498566866, -0.004716621246188879, -0.005137477070093155, 0.018805820494890213, 0.05975398048758507, 0.007135595660656691, -0.014248442836105824, 0.00576686579734087, -0.016515757888555527, 0.013095827773213387, -0.013452228158712387, -0.003165899310261011, 0.024493064731359482, 0.03400213643908501, 0.01712239719927311, -0.014309106394648552, -0.014877830632030964, 0.009895805269479752, -0.008910016156733036, -0.005368758458644152, 0.025296863168478012, -0.002494804561138153, -0.007628490217030048, 0.01144273579120636, -0.020049432292580605, 0.0060095214284956455, 0.022415325045585632, -0.004337471444159746, -0.025721509009599686, -0.005080604925751686, -0.022764142602682114, 0.018244680017232895, 0.00991097092628479, -0.01234511099755764, -0.018487336114048958, 0.042950067669153214, -0.029604002833366394, 0.024523397907614708, -0.03485143184661865, 0.025797339156270027, 0.01738021895289421, 0.01554513443261385, 0.016288267448544502, -0.031666576862335205, 0.003698604414239526, 0.009220918640494347, 0.01803235523402691, 0.0072493404150009155, -0.025539517402648926, -0.04070550203323364, -0.03782396391034126, -0.03327417001128197, -0.02170252427458763, -0.0003109026874881238, -0.022597316652536392, 0.009001011960208416, -0.0049061961472034454, 0.004432259127497673, -0.018184015527367592, 0.006544122472405434, 0.026358481496572495, 0.01757737621665001, 0.0208987258374691, 0.011184914037585258, 0.0464685782790184, 0.008401955477893353, -0.004250267054885626, 0.026904456317424774, -0.0102218734100461, 0.01980677619576454, 0.0015222857473418117, -0.020428581163287163, 0.021202046424150467, 0.004375386517494917, -0.017683537676930428, -0.013899625279009342, 0.024007754400372505, 0.029983151704072952, 0.035003092139959335, -0.011010505259037018, 0.02142953686416149, 0.011495816521346569, 0.024523397907614708, 0.0010673061478883028, 0.03345616161823273, 0.031575579196214676, 0.017061732709407806, 0.012633264996111393, -0.02647980861365795, -0.013042747043073177, -0.01568162813782692, 0.011632310226559639, -0.0037877047434449196, -0.009668314829468727, 0.0070104761980473995, 0.009319497272372246, -0.022900637239217758, -0.025979330763220787, 0.008219963870942593, -0.01566646248102188, -0.019033310934901237, 0.03909790888428688, 0.026282651349902153, -0.008364040404558182, -0.006892940029501915, 0.03236421197652817, -0.0658203735947609, 0.004235101398080587, -0.01747121475636959, -0.012830423191189766, -0.019321464002132416, 0.0015857932157814503, -0.010320452973246574, -0.006350756157189608, 0.04467898979783058, -0.038430605083703995, -0.004155479837208986, -0.007321379147469997, 0.026358481496572495, -0.029861824586987495, -6.220423529157415e-05, 0.019973602145910263, -0.02379542961716652, 0.016182105988264084, -0.014620008878409863, 0.014339438639581203, -0.007112846709787846, -0.0008222807082347572, 0.002964949933812022, -0.03730832040309906, 0.0028625796549022198, -0.02145986817777157, 0.037429649382829666, 0.013019997626543045, 0.030862778425216675, 0.008963096886873245, -0.004902404733002186, -0.02118688076734543, 0.008735607378184795, 0.013247487135231495, -0.004826574586331844, -0.02541819028556347, 0.012929001823067665, 0.035094089806079865, -0.00959248561412096, 0.023431446403265, 0.028876034542918205, 0.028815370053052902, 0.023749932646751404, 0.03773296996951103, -0.0037118748296052217, 0.009675898589193821, 0.023628603667020798, 0.03709599748253822, -0.010540359653532505, 0.01044936291873455, 0.023567939177155495, -0.0012009564088657498, -0.016182105988264084, 0.02505420707166195, 0.0074010007083415985, -0.02000393345952034, -0.0023886426351964474, 0.009160255081951618, -0.03730832040309906, 0.004398135468363762, 0.023749932646751404, 0.002005701418966055, 0.03303151577711105, -0.010623772628605366, 0.008568781428039074, 0.01739538460969925, -0.006506207399070263, -0.003897658083587885, 0.004636999685317278, -0.009713812731206417, 0.030149977654218674, 0.03521541506052017, -0.015074988827109337, 0.041676126420497894, 0.06818626821041107, 0.00501994090154767, 0.005641746334731579, 0.015802955254912376, -0.006229428108781576, 0.0024701596703380346, 0.004235101398080587, -0.004091024398803711, -0.008341291919350624, 0.007605741266161203, -0.010646521113812923, -0.0007061661453917623, -0.009706229902803898, -0.015181150287389755, 0.01194321271032095, -0.013634219765663147, -0.022400159388780594, 0.025797339156270027, 0.014627591706812382, -0.00796972494572401, 0.030513960868120193, 0.02685895934700966, -0.010494861751794815, -0.01352047547698021, -0.029983151704072952, -0.012511936947703362, -0.001006642240099609, -0.016151772812008858, -0.003658793866634369, 0.00020391140424180776, -0.012542269192636013, -0.022005842998623848, 0.014855082146823406, 0.039158571511507034, 0.002132716588675976, -0.011131832376122475, -0.031575579196214676, 0.018502501770853996, 0.023370781913399696, 0.004762119147926569, -0.01355839055031538, -0.03749031573534012, -0.0164854247123003, 0.014582093805074692, -0.029588835313916206, 0.03809695318341255, -0.0003568745742086321, -0.032758526504039764, 0.005289136897772551, -0.0464685782790184, -0.018805820494890213, -0.015044656582176685, 7.120904047042131e-05, -0.016955571249127388, 0.011230411939322948, 0.014582093805074692, 0.03151491656899452, 0.012238949537277222, 0.02126271091401577, 0.0385519340634346, -0.03251587226986885, -0.00039810710586607456, -0.023901591077446938, 0.005895776674151421, -0.025205865502357483, -0.027617257088422775, 0.028860868886113167, -0.025751842185854912, -0.01008537970483303, -0.027768917381763458, -0.017501546069979668, 0.01821434684097767, 0.012891086749732494, 0.012944167479872704, 0.00969106424599886, 0.019791610538959503, -0.002168735722079873, 0.03333483263850212, 0.015211482532322407, -0.015711959451436996, -0.03718699514865875, 0.010911925695836544, -0.02702578529715538, 0.02341628074645996, -0.01352047547698021, -0.013315734453499317, 0.023461777716875076, 0.021778354421257973, -0.008841768838465214, 0.022309163585305214, 0.017440881580114365, 0.0005175392143428326, 0.0017801073845475912, -0.000737446011044085, -0.007582992315292358, -0.014293940737843513, -0.04476998746395111, -0.004026568960398436, 0.005979189649224281, -0.01568162813782692, 0.019397294148802757, 0.014908162876963615, -0.005630371626466513, 0.0338808111846447, 0.02720777690410614, -0.005038898438215256, 0.009213335812091827, -0.03694433718919754, -0.02981632575392723, 0.015370725654065609, -0.027344269677996635, 0.020231423899531364, 0.022491155192255974, 0.012087290175259113, 0.037975624203681946, 0.01719822734594345, -0.02189968153834343, 0.006346964742988348, -0.012640847824513912, -0.024902546778321266, 0.025023873895406723, 0.024841882288455963, -0.004030360374599695, -0.00994888599961996, 0.0001287923805648461, 0.005376341752707958, 0.04243442416191101, -0.025281695649027824, -0.017152728512883186, -0.013292985036969185, 0.011730888858437538, -0.008470202796161175, 0.023765098303556442, 0.008212381042540073, 0.009835140779614449, 0.00999438390135765, 0.004727995488792658, -0.006570662837475538, 0.033668484538793564, -0.0095090726390481, -0.055810824036598206, 0.025751842185854912, -0.009395327419042587, 0.004511880222707987, 0.024022920057177544, -0.0074919965118169785, 0.025812506675720215, 0.009706229902803898, 0.01621243730187416, 0.00950148981064558, -0.018184015527367592, -0.025281695649027824, 0.041403137147426605, 0.026434311643242836, -0.001363042858429253, -0.03651969134807587, 0.007461664266884327, -0.001132709439843893, -0.012201034463942051, 0.005782031454145908, -0.012633264996111393, 0.005516626872122288, 0.009122340008616447, -0.022506320849061012, 0.014764086343348026, -0.03263719752430916, 0.002928930800408125, -0.023931924253702164, -0.003679647110402584, 0.003732728073373437, 0.006233219522982836, -0.03190923109650612, 0.01198112778365612, -0.0007568774162791669, 0.02523619867861271, 0.0098654730245471, -0.035094089806079865, 0.02080773003399372, -0.027511095628142357, -0.011200079694390297, 0.00013791567471344024, -0.0026445684488862753, 0.023916758596897125, 0.009675898589193821, 0.012671180069446564, 0.017516711726784706, -0.02118688076734543, 0.007457872852683067, -0.01355839055031538, -0.012633264996111393, -0.009160255081951618, 0.024477899074554443, -0.014559345319867134, 0.036004047840833664, 0.02992248721420765, 0.027814416214823723, 0.02100488916039467, 0.030043816193938255, -0.05505252256989479, 0.016879741102457047, -0.018714824691414833, -0.016151772812008858, -0.04431500658392906, -0.009721396490931511, 5.5450629588449374e-05, 0.028496885672211647, -0.011465484276413918, 0.0069915191270411015, 0.004921361804008484, -0.000149053186760284, 0.005167809315025806, 0.0075147454626858234, -0.01595461554825306, 0.02370443381369114, 0.006638909690082073, -0.008546032011508942, 0.0012464543106034398, 0.049774762243032455, -0.009311914443969727, -0.032849524170160294, 0.015385891310870647, -0.011222828179597855, -0.0017156520625576377, -0.006983935832977295, -0.006017104256898165, 0.004678706172853708, 0.022142337635159492, 0.0024189746472984552, 0.008189631626009941, -0.008637027814984322, -0.022551819682121277, -0.016879741102457047, -0.010699601843953133, 0.020246589556336403, 0.004216143861413002, -0.019215302541851997, 0.025190699845552444, -0.024614393711090088, 0.019594451412558556, 0.002420870354399085, -0.010115711949765682, -0.030741451308131218, 0.01882098615169525, -0.006195304915308952, 0.05844970420002937, 0.008970679715275764, 0.033486492931842804, 0.01401336956769228, -0.001125126495026052, 0.01739538460969925, -0.022475989535450935, -0.009615234099328518, -0.010684436187148094, -0.001571575179696083, -0.027101613581180573, 0.04495197907090187, 0.033122509717941284, -0.00787872914224863, 0.031666576862335205, 0.0027829580940306187, -0.0030313010793179274, -0.013892041519284248, 0.019973602145910263, -0.00493652792647481, -0.002509970450773835, -0.0020151801872998476, 0.004625625442713499, -0.03548840433359146, -0.04261641576886177, 0.028330059722065926, 0.015143235214054585, 0.0060095214284956455, 0.011738471686840057, 0.006889148615300655, 0.0016891115810722113, -0.016894906759262085, 0.01566646248102188, 0.03755097836256027, 0.010638938285410404, -0.004784868098795414, -0.005975397769361734, -0.012572601437568665, -0.047530196607112885, -0.025099704042077065, 0.020504411309957504, 0.04313205927610397, -4.7571429604431614e-05, 0.016728080809116364, -0.003404763527214527, 0.022961299866437912, 0.02009492926299572, 4.928945054416545e-05, 0.0021402996499091387, 0.0028341433499008417, 0.0016284475568681955, 0.020064597949385643, 0.011169747449457645, 0.04367803409695625, -0.0035677978303283453, -0.01650059036910534, -0.008925181813538074, 0.006908106151968241, -0.020944224670529366, -0.01892714947462082, 0.01821434684097767, 0.010540359653532505, -0.01359630562365055, 0.009584901854395866, 0.014756502583622932, -0.016955571249127388, 0.025281695649027824, -0.0038635346572846174, 0.002900494495406747, 0.012178285978734493, -0.002690066583454609, 0.010805764235556126, 0.0023962254635989666, 0.045922599732875824, 0.018942315131425858, 0.023901591077446938, 0.033729150891304016, 0.01794135943055153, -0.013861710205674171, 0.018320510163903236, 0.048288494348526, 0.023719599470496178, 0.009615234099328518, 0.0023279786109924316, 0.001639822032302618, -0.015332810580730438, 0.013482560403645039, 0.01980677619576454, 0.05126102641224861, -0.015317643992602825, 0.015461721457540989, -0.006149806547909975, 0.009797225706279278, 0.04191878065466881, 0.009744144976139069, -0.036277033388614655, -0.008963096886873245, 0.04146380349993706, -0.023719599470496178, -0.004633208271116018, -0.007780150044709444, 0.030968939885497093, -0.00493652792647481, -0.012565018609166145, -0.014809584245085716, 0.001348824705928564, -0.007404792122542858, 0.036095041781663895, -0.016379263252019882, -0.01621243730187416, -0.012936584651470184, -0.01612144149839878, -0.0006554548745043576, 0.008659777231514454, -0.04228276386857033, 0.0024720553774386644, 0.02694995515048504, -0.006551705300807953, 0.006699573714286089, 0.011086334474384785, -0.0282997265458107, 0.0014218110591173172, 0.02133854106068611, -0.0194731242954731, -0.00990338809788227, -0.012724260799586773, 0.018244680017232895, 0.009668314829468727, 0.027950908988714218, -0.02217266894876957, 0.017804866656661034, -0.024432402104139328, 0.021202046424150467, 0.02235466055572033, -0.023310117423534393, 0.02136887237429619, 0.022491155192255974, 0.024659890681505203, 0.020853228867053986, 0.020595407113432884, 0.023112960159778595, 0.005653120577335358, 0.019973602145910263, 0.025114869698882103, 0.007772567216306925]" -How WsprDaemon Combines TimescaleDB and Grafana to Measure and Analyze Radio Transmissions,"requires us to export data to CSV using psql, import the file intoOctave, generate maps on anazimuthal equidistantprojection, save these map files as PNG, and then import intoImageJto generate an AVI file.Editor’s Note: To learn more about building Grafana visualizations with TimescaleDB, check out ourstep-by-step tutorials,blogs, and “Guide to Grafana” webinar series.Our future path includes collaboration, both with others in the global amateur radio community and more data sources. We continually learn about people who have neat solutions for handling and visualising data, and, by sharing knowledge and experience, we can collectively grow and improve the tools we offer this great community. We’re keen to expand our connections to other third party data sources, such as space weather, to help our users better interpret their results.Getting started advice & resourcesWe’re non-professional database users, so we only feel qualified to speak to others with a similar minimal level of prior familiarity.As you evaluate time-series database options, of course, readindependent comparisonsand the links they provide, but also look carefully at insightful, fair-minded comparisons from TimescaleDB, e.g., onSQL vs Flux. Try to assess the advantages of different approaches foryourapplication, current and future skill sets, and requirements.Parting thoughtsWe believe that data analytics for radio amateurs is in its infancy. We’re detailing our approach and experience with TimescaleDB and Grafana in a paper at the 39th gathering of theDigital Communications Conferencein September 2020 (for the first time, the Conference will be completely virtual, which is likely to enable a larger-than-usual participation from around the world). We’ll feature some nice examples of how self inner joins help pull out features and trends from comparisons, as well as many other capabilities of interest to our users.We’d like to thank Rob & Gwyn for sharing their story, as well as for their work to create open-source, widely distributed queries, graphs, and tools. Their dedication to making transmission data accessible and consumable for the global amateur radio community is yet another testament to how technology and creativity combine to breed amazing solutions.We’re always keen to feature new community projects and stories on our blog. If you have a story or project you’d like to share, reach out on Slack (@lacey butler), and we’ll go from there.Additionally, if you’re looking for more ways to get involved and show your expertise, check out theTimescale Heroesprogram.The",https://www.timescale.com/blog/wsprdaemon-combines-timescaledb-grafana-analyze-radio/,509,"[-0.02971036173403263, -0.002695000497624278, 0.08556338399648666, -0.010234082117676735, 0.007077740505337715, 0.004840236157178879, 0.0024739413056522608, -0.00042529875645413995, -0.027419036254286766, 0.0033312668092548847, 0.013794097118079662, -0.0381375253200531, 0.002823791466653347, -0.028603143990039825, 0.045026883482933044, 0.0501631498336792, -0.022021345794200897, 0.010195637121796608, -0.019760774448513985, 0.04453478753566742, -0.02328234352171421, 0.0036503609735518694, 0.03727635368704796, 0.014601443894207478, -0.03266294673085213, -0.033585626631975174, -0.03450831025838852, 0.06975476443767548, 0.036230649799108505, -0.04198203235864639, -0.007589059881865978, -0.03475435823202133, -0.043243031948804855, 0.03257067874073982, 0.026957694441080093, 0.028095668181777, 0.05742157995700836, -0.02326696552336216, 0.0019078373443335295, -0.047272078692913055, 0.024251161143183708, -0.0008799118804745376, 0.011571970768272877, 0.044842347502708435, 0.008357961662113667, -0.02668089047074318, -0.045026883482933044, -0.023728307336568832, 0.0056283604353666306, 0.04388891160488129, -0.019176408648490906, 0.020714212208986282, -0.025189220905303955, -0.03324731066823006, 0.009272954426705837, -0.022144369781017303, 0.003179408609867096, 0.027818864211440086, -0.006608710158616304, -0.019991444423794746, 0.0011129851918667555, -0.028003400191664696, 0.0320785790681839, 0.02748054824769497, -0.017607849091291428, 0.013278932310640812, -0.013801786117255688, 0.02529686689376831, 0.00025205558631569147, 0.0125407874584198, 0.05536092445254326, 0.019391700625419617, 0.02108328603208065, -0.04594956710934639, 0.007146941497921944, -0.059297699481248856, -0.05080902576446533, 0.04053650051355362, 0.005370778497308493, -0.024774013087153435, 0.017100375145673752, 0.0010553175816312432, -0.06446471810340881, 0.008288760669529438, 0.017100375145673752, -0.018730446696281433, -0.0341392382979393, -0.02468174509704113, -0.0022432708647102118, -0.007981199771165848, -0.02509695291519165, 0.04235110804438591, -0.0011764196678996086, 0.010764623992145061, 0.02549678087234497, 0.036845769733190536, 0.009088418446481228, 0.0190841406583786, 0.005505336448550224, -0.00516317505389452, 0.02305167354643345, -0.012986750341951847, -0.03072531335055828, -0.04770266264677048, 0.05945147946476936, -0.006043567322194576, 0.02852625399827957, 0.029571959748864174, 0.001882848097011447, 0.017377179116010666, -0.0783664658665657, -0.02966422773897648, -0.025020062923431396, -0.01828448288142681, -0.014839802868664265, 0.0058474973775446415, -0.026219548657536507, -0.04677997902035713, 0.05354631692171097, -0.024174269288778305, -0.05000936612486839, -0.011964110657572746, 0.02371292933821678, 0.03189404308795929, 0.03995213285088539, -0.048871394246816635, -0.016146935522556305, -0.042043544352054596, -0.003952154889702797, -0.027419036254286766, 0.0661870613694191, -0.03051001951098442, 0.06378808617591858, -0.04435025155544281, -0.05363858491182327, -0.01843826286494732, -0.06335750222206116, -0.0321400910615921, 1.2862584299000446e-05, -0.008104223757982254, 0.04081330448389053, 0.02066807821393013, 0.022559575736522675, -0.029741117730736732, -0.0006180047639645636, -0.01808456890285015, -0.01603928953409195, 0.06446471810340881, -0.02348225936293602, -0.02209823578596115, -0.014501486904919147, -0.012033311650156975, -0.021114042028784752, -0.02206747978925705, 0.02768046222627163, 0.02788037620484829, 0.0661255493760109, 0.01373258512467146, -0.03666123375296593, -0.03435453027486801, 0.013617249205708504, 0.01863817684352398, -0.00874241255223751, -0.01376334112137556, -0.011287476867437363, 0.012210159562528133, -0.02668089047074318, -0.05379236489534378, -0.07676714658737183, 0.007120030000805855, -0.07461421936750412, -0.08500977605581284, -0.019161030650138855, 0.006939338054507971, 0.020006822422146797, -0.004105935338884592, 0.00921913143247366, -0.044073447585105896, 0.008158047683537006, -0.0401674248278141, -0.052654389292001724, 0.003896409412845969, -0.03758391737937927, -0.0029698829166591167, -0.024943171069025993, 0.01786927692592144, -0.022036723792552948, 0.007262276951223612, 0.011264409869909286, 0.023328477516770363, -0.01645449735224247, 0.045488227158784866, 0.028956837952136993, 0.05154716968536377, 0.008557876572012901, -0.04511915147304535, 0.031832531094551086, 0.019914554432034492, -0.009472869336605072, 0.03389318659901619, 0.029802631586790085, -0.005566848441958427, 0.023436125367879868, -0.03749164938926697, -0.002668089000508189, -0.015762485563755035, 0.05520714446902275, 0.003196708858013153, -0.012310116551816463, -0.039029452949762344, 0.011718062683939934, -0.006766335107386112, 0.02849549800157547, -0.010872269980609417, -0.028649277985095978, -0.016193069517612457, -0.03973684087395668, -0.009688161313533783, -0.015601015649735928, -0.014117036014795303, -0.03826054930686951, 0.04290471598505974, -0.01054933201521635, -0.02226739376783371, 0.004517297726124525, 0.01805381290614605, 0.05274665728211403, -0.011318233795464039, 0.059113163501024246, 0.01926867663860321, 0.01883809268474579, -0.04355059191584587, 0.0023643728345632553, -0.013701829127967358, 0.01122596487402916, -0.029018351808190346, 0.02249806374311447, -0.03469284623861313, -0.0023124718572944403, -0.0036676612216979265, 0.0036503609735518694, 0.006558731663972139, 0.02686542645096779, 0.02085261419415474, -0.010572399012744427, -0.003044850891456008, -0.03875264525413513, -0.0863015279173851, 0.031801775097846985, 0.04475007951259613, 0.01763860508799553, 0.01424006000161171, 0.001685817027464509, 0.006155058275908232, -0.007066207006573677, -0.020360518246889114, -0.03792223334312439, 0.009026906453073025, -0.018222970888018608, -0.021560003980994225, 0.013171286322176456, -0.049086686223745346, -0.03570779412984848, 0.009073040448129177, -0.04253564402461052, 0.034416042268276215, 0.0062088812701404095, -0.020006822422146797, -0.028341718018054962, 0.003625371726229787, 0.01014181412756443, 0.04598032310605049, 0.04339681193232536, -0.05056297779083252, -0.021529247984290123, -0.018791958689689636, 0.036630477756261826, 0.022928649559617043, 0.02709609642624855, -0.021790673956274986, -0.017992300912737846, -0.021513869985938072, 0.010310972109436989, 0.0007943715900182724, -0.001194681040942669, 0.0035869264975190163, 0.014524553902447224, 0.013532670214772224, 0.03333957865834236, -0.060712479054927826, 0.03795298933982849, 0.02786499820649624, 0.030648423358798027, -0.019222542643547058, 0.0023086273577064276, 0.026803914457559586, 0.03896794095635414, -0.003021783661097288, -0.06649462133646011, -0.04093632847070694, -0.011156763881444931, -0.027849620208144188, 0.029172131791710854, -0.02887994796037674, -0.0023970510810613632, 0.019576238468289375, 0.0034081568010151386, 0.0059782108291983604, 0.0022182813845574856, 0.02571207284927368, 0.003517725272104144, -0.008965394459664822, 0.006162747275084257, -0.007996577769517899, -0.019114896655082703, -0.004009822383522987, 0.060497187077999115, -0.004040578380227089, -0.033616382628679276, -0.03435453027486801, -0.04228959605097771, -0.08494826406240463, 0.01083382498472929, 0.027419036254286766, -0.0031986311078071594, -0.028203316032886505, -4.4872624130221084e-05, -0.008980772458016872, -0.005113196559250355, -0.015016650781035423, 0.016977349296212196, -0.03706106171011925, 0.029218265786767006, 0.0701238363981247, -0.009411357343196869, -0.039244744926691055, -0.011525836773216724, -0.025527536869049072, -0.04373513162136078, 0.029941033571958542, -0.022005967795848846, -0.03770694136619568, -0.06883208453655243, 0.03333957865834236, -0.005766762886196375, 0.04730283468961716, -0.017346423119306564, -0.013924810104072094, -0.03450831025838852, 0.0009414240485057235, -0.05376160889863968, 0.018976494669914246, -0.02385133132338524, 0.007835108786821365, 0.0310943853110075, -0.0110260508954525, 0.0085194306448102, -0.01224860455840826, -0.03992137685418129, 0.006274238228797913, -0.04511915147304535, 0.023912843316793442, 0.038106769323349, -0.002891070442274213, -0.012602299451828003, 0.016715923324227333, -0.03675350174307823, 0.014324638992547989, -0.03650745376944542, -0.055084120482206345, 0.014401528984308243, -0.020406652241945267, -0.03386243060231209, -0.02286713756620884, -0.054284460842609406, 0.012702256441116333, 0.08587094396352768, 0.0018530531087890267, 0.0012475430266931653, 0.060497187077999115, 0.05914391949772835, -0.00768132833763957, -0.007700550835579634, -0.0301101915538311, 0.012609988451004028, 0.01783851906657219, 0.019806908443570137, 0.02831096202135086, -0.054284460842609406, -0.011556592769920826, 0.024727879092097282, -0.015278076753020287, -0.016054667532444, -0.0047056786715984344, -0.00045365202822722495, 0.010041856206953526, -0.014916693791747093, 0.041459180414676666, 0.05560697242617607, 0.013309689238667488, 0.019945310428738594, 0.0026008100248873234, -0.046041835099458694, -0.0017752018757164478, 0.011479702778160572, 0.010433996096253395, -0.007219986990094185, 0.04551898315548897, -0.01194104366004467, -0.01572404056787491, -0.04176674038171768, -0.034631334245204926, 0.031617239117622375, -0.023359233513474464, 0.02669626846909523, -0.036046113818883896, -0.039829108864068985, 0.040659524500370026, -0.0010793458204716444, 0.041028596460819244, -0.013678761199116707, 0.012125580571591854, 0.010364795103669167, -0.046472419053316116, -0.03432377427816391, 0.03275521472096443, 0.04862534627318382, -0.024820147082209587, 0.02165227197110653, -0.06120457872748375, -0.04518066346645355, 0.0062204147689044476, 0.008819302543997765, 0.02163689397275448, -0.04025969281792641, 0.029341289773583412, 0.05923618748784065, -0.009296021424233913, 0.05732931196689606, 0.02569669485092163, 0.0029352824203670025, 0.005701406393200159, -0.011202897876501083, 0.02608114667236805, 0.0021913698874413967, -0.019360944628715515, -0.023143941536545753, 0.0008010994642972946, -0.010410929098725319, -0.010087990202009678, 0.07098500430583954, -0.05846728757023811, -0.03031010553240776, 0.02688080444931984, -0.013632627204060555, -0.014778290875256062, 0.04112086445093155, -0.003263987833634019, 0.042443376034498215, -0.03672274574637413, -0.0441657155752182, 0.0056706503964960575, -0.06920115649700165, -0.012979061342775822, 0.00501708360388875, -0.07436817139387131, 0.017315667122602463, 0.021390845999121666, 0.018545908853411674, -0.010072612203657627, 0.033585626631975174, 0.02551215887069702, -0.036845769733190536, -0.00833489466458559, -0.06938569247722626, 0.00862707756459713, 0.02148311398923397, -0.02651173062622547, -0.023359233513474464, -0.01968388445675373, 0.01663903333246708, -0.016146935522556305, -0.001454185345210135, 0.06037416309118271, 0.01626995950937271, -0.004674922674894333, 0.037184085696935654, -0.002431651810184121, -0.013717207126319408, 0.0016867781523615122, -0.011495080776512623, 0.001347500248812139, 0.005286199506372213, -0.020406652241945267, -0.025619804859161377, -0.007012383546680212, -0.09417508542537689, 0.00717000849545002, -0.0055783819407224655, -0.03367789462208748, 0.031248165294528008, -0.007862020283937454, 0.000574754027184099, 0.0683399885892868, 0.017100375145673752, 0.029172131791710854, -0.018730446696281433, -0.00031717197271063924, -0.009365223348140717, -0.0071738529950380325, -0.027003828436136246, -0.0027449792250990868, 0.028849191963672638, 0.02551215887069702, -0.020006822422146797, 0.033985454589128494, -0.02389746531844139, 0.017300289124250412, -0.0028564699459820986, -0.0012331261532381177, -0.03749164938926697, -0.023605283349752426, -0.04013666883111, -0.00185401423368603, -0.006889359559863806, 0.01275607943534851, -0.0180691909044981, -0.07510632276535034, -0.016715923324227333, 0.0024662523064762354, 0.008650144562125206, -0.02811104618012905, -0.030940605327486992, -0.00772361783310771, -0.048502322286367416, -0.0075736818835139275, -0.019730018451809883, -0.03475435823202133, -0.029956411570310593, 0.014893626794219017, 0.027741974219679832, 0.03912172093987465, -0.016546765342354774, 0.018791958689689636, -0.0031755641102790833, -0.020914126187562943, -0.005682183895260096, -0.028141802176833153, -0.009711228311061859, 0.024558721110224724, 0.029756495729088783, -0.05539168044924736, 0.017992300912737846, -0.014316949993371964, 0.006939338054507971, 0.04751812666654587, -0.0022009811364114285, -0.007950443774461746, 0.0015185809461399913, -0.008035022765398026, 0.001510891830548644, 0.009111485444009304, -0.00641264021396637, -0.003016016911715269, 0.02831096202135086, 0.034600578248500824, 0.014224682003259659, -0.02529686689376831, -0.0421358160674572, 0.00344083528034389, 0.022605709731578827, -0.020545054227113724, -0.0013244332512840629, 0.015078162774443626, -0.004017511382699013, 0.02163689397275448, -0.04874837026000023, -0.019345566630363464, 0.03355487063527107, 0.023774441331624985, -0.03533872216939926, 0.006485686171799898, -0.03290899470448494, 0.02471250109374523, -0.027588194236159325, -0.00333895580843091, -0.0025392980314791203, 0.014978205785155296, 0.022390417754650116, -0.06062021106481552, -0.002339383587241173, 0.03269370272755623, -0.024574099108576775, 0.009003839455544949, -0.009403668344020844, 0.006731734611093998, 0.02325158752501011, 0.0030544621404260397, -0.03755316138267517, 0.013186664320528507, 0.02028362825512886, -0.002175991889089346, -0.00812729075551033, -0.02325158752501011, 0.0037234066985547543, -0.0003906981728505343, 0.02026825025677681, 0.011095251888036728, 0.01474753487855196, -0.01513967476785183, 0.004225114826112986, 0.0022298148833215237, 0.00895001646131277, -0.049240466207265854, -0.01054933201521635, 0.017346423119306564, -0.022005967795848846, 0.0021471581421792507, 0.025173842906951904, -0.033800918608903885, -0.02565056085586548, -0.021821429952979088, -0.013348134234547615, -0.020791102200746536, 0.01823834888637066, 0.042843203991651535, -0.011156763881444931, -0.05354631692171097, -0.0054899584501981735, 0.012709945440292358, -0.009326777420938015, 0.002475863555446267, 0.03869113326072693, 0.011479702778160572, 0.016392985358834267, 0.018345994874835014, 0.02871078997850418, 0.0361076258122921, -0.019422456622123718, -0.020175980404019356, 0.012586921453475952, 0.03269370272755623, 0.0075736818835139275, 0.0042020478285849094, 0.029418179765343666, -0.043212275952100754, 0.0005228531663306057, 0.031017495319247246, 0.00043755312799476087, -0.010272527113556862, -0.029172131791710854, -0.0020510454196482897, 0.038199037313461304, 0.017315667122602463, 0.0180691909044981, -0.01335582323372364, -0.02129857800900936, -0.009272954426705837, -0.002566209528595209, 0.001983766444027424, -0.03973684087395668, -0.01042630709707737, -0.017976922914385796, -0.009357534348964691, 0.002837247448042035, 0.00973429623991251, 0.022774869576096535, 0.009395979344844818, 0.007662105839699507, 0.041459180414676666, 0.0015599093167111278, -0.00811191275715828, 0.034846626222133636, -0.007066207006573677, 0.03687652572989464, 0.0028680034447461367, 0.008750101551413536, -0.024220405146479607, 0.016992727294564247, 0.04837929457426071, -0.005655271932482719, -0.004636477213352919, -0.029633471742272377, 0.0240512453019619, -0.004778724163770676, 0.023989733308553696, 0.004963260609656572, 0.016516009345650673, 0.02469712309539318, 0.015293455682694912, -0.0037368624471127987, 0.030756069347262383, 0.007112341001629829, -0.01988379843533039, -0.0028660811949521303, 0.012102512642741203, 0.012802213430404663, 0.007950443774461746, -0.026988450437784195, -0.06280389428138733, 0.0009044206235557795, -0.006931649055331945, -0.043212275952100754, -0.015608704648911953, -0.01373258512467146, -0.010987605899572372, 0.012694567441940308, -0.02025287225842476, 0.05117809772491455, -0.027834242209792137, -0.026742402464151382, 0.02389746531844139, -0.03669198974967003, 0.03309353068470955, 0.009126863442361355, -0.013178975321352482, -0.015608704648911953, 0.02949506975710392, -0.023574527353048325, 0.006501064170151949, -0.06784788519144058, 0.02285175956785679, -0.030064057558774948, -0.018976494669914246, 0.025573670864105225, -0.02163689397275448, 0.00440580677241087, 0.012164025567471981, -0.0038656534161418676, -0.03087909333407879, 0.006058945786207914, 0.0004289030039217323, 0.051270365715026855, -0.02189832180738449, 0.021590759977698326, -0.004890215117484331, -0.012533098459243774, 0.0014397684717550874, -0.020591188222169876, 0.003754162695258856, -0.00831951666623354, 0.011771885678172112, -0.008396406657993793, 0.0004964221734553576, 0.007500636391341686, -0.050655245780944824, -0.00042794187902472913, 0.01903800666332245, 0.0020106779411435127, 0.004382739774882793, -0.00086549500701949, 0.016054667532444, 0.012402384541928768, -0.03515418618917465, -0.013978633098304272, -0.00391370989382267, -0.015962399542331696, 0.019176408648490906, 0.008665522560477257, 0.03132505714893341, -0.01174112968146801, 0.025327622890472412, -0.027172986418008804, 0.022190503776073456, 0.0005632205284200609, 0.039060208946466446, 0.010803068988025188, 0.011064495891332626, -0.009495936334133148, -0.04920971021056175, -0.00586287584155798, -0.025143086910247803, 0.006135835777968168, 0.006666378118097782, 0.057882919907569885, -0.01001878920942545, -0.008042711764574051, -0.008611699566245079, 0.042443376034498215, -0.0030083279125392437, 0.029971789568662643, -0.0065817986615002155, -0.0361076258122921, -0.01456299889832735, 0.031202031299471855, -0.016562143340706825, -0.003275521332398057, -0.01846901886165142, -0.020145224407315254, -0.024543343111872673, -0.027357522398233414, -0.00642801821231842, -0.020806480199098587, 0.005935921333730221, 0.019730018451809883, -0.005855186842381954, 0.003392778802663088, -0.09731220453977585, -0.05656041204929352, 0.05382312089204788, 0.012056378647685051, -0.029433557763695717, -0.004236648324877024, 0.000653566443361342, 0.03177101910114288, 0.029833387583494186, -0.007277654949575663, -0.008680900558829308, -0.04118237644433975, -0.015931643545627594, -0.003715717466548085, -0.026819292455911636, 0.016331473365426064, 0.005459202453494072, 0.03496965020895004, 0.007850486785173416, 0.042258840054273605, 0.01081844698637724, 0.012140958569943905, -0.0029506604187190533, 0.051454901695251465, 0.024420319125056267, -0.013870987109839916, -0.014447662979364395, 0.021329334005713463, 0.0013398112496361136, 0.00882699154317379, 0.008027333766222, 0.010264838114380836, -0.0068124691024422646, 0.033800918608903885, -0.02126782201230526, 0.022421173751354218, 0.00038276889245025814, 0.03253991901874542, 0.009088418446481228, -0.01582399755716324, -0.03727635368704796, -0.053484804928302765, 0.00033062775037251413, -0.018576664850115776, 0.05453050881624222, -0.00021865642338525504, -0.016961971297860146, 0.024020489305257797, -0.013501914218068123, 0.0062627047300338745, 0.030602289363741875, -0.004955571610480547, -0.018576664850115776, -0.024620233103632927, -0.030402373522520065, 0.016700545325875282, -0.032847482711076736, -0.024804769083857536, -0.01153352577239275, -0.013025195337831974, -0.021744539961218834, 0.020575810223817825, 0.051485657691955566, -0.037184085696935654, -0.022036723792552948, -0.0026757779996842146, -0.018161458894610405, 0.016008533537387848, -0.03164799511432648, -0.021237066015601158, 0.012325494550168514, 0.019976066425442696, 0.03046388551592827, -0.017607849091291428, 0.02629643864929676, 0.013071329332888126, 0.00831951666623354, -0.03866037726402283, 0.023159319534897804, 0.008327205665409565, -0.022944027557969093, -0.018176836892962456, -0.050070881843566895, 0.030202459543943405, 0.012240915559232235, -0.005001705605536699, 0.017161887139081955, 0.0026411775033921003, -0.010041856206953526, -0.0001333563996013254, 0.03656896576285362, 0.007777440827339888, 0.009911143220961094, -0.018361372873187065, 0.0036580499727278948, 0.003521569771692157, 0.034016210585832596, 0.019130274653434753, 0.00505937309935689, -0.025604426860809326, 0.014193926006555557, -0.005466891452670097, 0.021160176023840904, -0.003298588329926133, -0.014209304004907608, -0.002689233748242259, 0.013186664320528507, -0.014878247864544392, -0.010557021014392376, -0.011133696883916855, -0.027142230421304703, 0.0025892765261232853, 0.011249031871557236, 0.0017502125119790435, 0.016208447515964508, 0.007204608991742134, 0.02126782201230526, -0.0065817986615002155, -0.0078043523244559765, -0.04259715601801872, 0.06117382273077965, -0.012486963532865047, -0.026619378477334976, 0.024774013087153435, -0.0020145224407315254, 0.009449802339076996, 0.038414329290390015, -0.023143941536545753, 0.01965312846004963, 0.005332333501428366, 0.019391700625419617, 0.028403230011463165, -0.009995722211897373, 0.04837929457426071, 0.011994866654276848, -0.022928649559617043, -0.0027815019711852074, 0.022605709731578827, -0.0032351540867239237, 0.008896192535758018, 0.002914137439802289, 0.013178975321352482, 0.0028199469670653343, 0.01668516732752323, -0.02243655174970627, 0.008073467761278152, -0.011464324779808521, 0.03275521472096443, -0.00983425322920084, 0.023589905351400375, 0.010626222006976604, -0.02266722358763218, -0.01903800666332245, 0.03177101910114288, 0.030848337337374687, 0.08408708870410919, -0.04721056669950485, -0.002716145245358348, -0.041059352457523346, 0.003252454334869981, 0.015808619558811188, 0.008565565571188927, -0.007035450544208288, -0.00010097842459799722, 0.03650745376944542, -0.024543343111872673, 0.0057206288911402225, -0.029433557763695717, 0.02949506975710392, 0.03272445872426033, -0.001770396251231432, 0.01688508130609989, 0.007112341001629829, 0.015385723672807217, 0.026019634678959846, 0.0020510454196482897, 0.014716778881847858, 0.007850486785173416, -0.003771462943404913, 0.0021952143870294094, -0.03447755426168442, 0.00942673534154892, 0.03493889421224594, 0.054899584501981735, 0.030217837542295456, -0.046810735017061234, -0.009880387224256992, -0.01394787710160017, -0.027326766401529312, 0.013586493209004402, 0.01686970330774784, -0.0026988449972122908, 0.020560432225465775, -0.003917554393410683, -0.0073545449413359165, 0.019299432635307312, 0.023528393357992172, 0.021806051954627037, -0.04355059191584587, 0.009303710423409939, -0.009395979344844818, 0.021021772176027298, 0.006178125273436308, -0.03132505714893341, -0.00874241255223751, 0.050870537757873535, -0.015716351568698883, 0.002881459193304181, -0.02551215887069702, 0.033585626631975174, -0.0028218692168593407, 0.024958549067378044, -0.0017617461271584034, -0.01943783462047577, 0.021975211799144745, 0.02351301535964012, 0.031202031299471855, 0.03527721017599106, -0.011195208877325058, -0.04179749637842178, -0.013694140128791332, -0.03626140579581261, -0.028833813965320587, 0.026926938444375992, -0.018592042848467827, 0.0441349595785141, -0.016316095367074013, -0.03426226228475571, -0.011387434788048267, 0.012779146432876587, 0.019022628664970398, 0.004797946661710739, 0.01766936108469963, 0.010595466010272503, 0.036076869815588, 0.024112757295370102, 0.0039040984120219946, -0.0046633887104690075, 0.017315667122602463, 0.009911143220961094, 0.019314810633659363, 0.0024624078068882227, 0.00512088555842638, -0.019745396450161934, -0.029541203752160072, -0.011610415764153004, 0.055483948439359665, 0.009272954426705837, 0.015378034673631191, 0.024128135293722153, -0.006927804555743933, 0.014093969017267227, 0.01966850645840168, 0.036015357822179794, 0.0037234066985547543, 0.03533872216939926, 0.01868431270122528, 0.025189220905303955, -0.011479702778160572, 0.010664667002856731, -0.029064485803246498, 0.01233318354934454, 0.012486963532865047, -0.03266294673085213, -0.004997861105948687, 0.005382311996072531, -0.031617239117622375, -0.035184942185878754, 0.017546337097883224, 0.028403230011463165, -0.01848439686000347, 0.014624510891735554, -0.007646727841347456, -0.02911061979830265, 0.0012225537793710828, 0.02371292933821678, -0.04696451872587204, -0.02808029018342495, -0.011387434788048267, 0.019130274653434753, -0.033001262694597244, 0.01885347068309784, -0.00011281229672022164, -0.018745824694633484, 0.017377179116010666, 0.00512088555842638, -0.01415548101067543, -0.022974783554673195, 0.024635611101984978, -0.017331045120954514, -0.010918404906988144, 0.019360944628715515, 0.0053976899944245815, -0.0025181530509144068, -0.016500631347298622, -0.005885942839086056, 0.0041636028327047825, 0.023989733308553696, 0.01112600788474083, -0.0170388612896204, 0.04096708446741104, 0.004009822383522987, -0.0033062773291021585, 0.013870987109839916, 0.00792737677693367, 0.0012773380149155855, -0.013394268229603767, -0.012217848561704159, -0.010564710013568401, 0.030033301562070847, -0.0031563416123390198, 0.009057662449777126, 0.024251161143183708, 0.04788719862699509, 0.0028891481924802065, -0.026234926655888557, 0.0015329978195950389, 0.016331473365426064, 8.992545917863026e-05, 0.01925329864025116, -0.006097390782088041, -0.008588632568717003, 0.017146509140729904, 0.05496109649538994, -0.01073386799544096, 0.006331905722618103, -0.0062627047300338745, 0.0019357100827619433, -0.012010244652628899, 0.0011985255405306816, -0.0036734279710799456, -0.017346423119306564, -0.0073545449413359165, -0.006524131167680025, -0.024389563128352165, 0.023958977311849594, 0.01883809268474579, -0.01483211386948824, 0.01826910488307476, -0.018791958689689636, -0.007039295043796301, 0.01949934847652912, -0.007058518007397652, 0.0058474973775446415, 0.014739845879375935, -0.011579659767448902, 0.02786499820649624, -0.004759501665830612, -0.0026988449972122908, 0.03675350174307823, 0.07006232440471649, 0.007269965950399637, 0.0009457491105422378, 0.013332756236195564, 0.01495513878762722, -0.0008587671327404678, -0.007692861836403608, -0.0008626116323284805, 0.015424168668687344, 0.04238186404109001, -0.00223173713311553, -0.008596321567893028, -0.019560860469937325, -0.012510031461715698, 0.0015233865706250072, -0.013117463327944279, 0.005020928103476763, 0.011771885678172112, 0.00019246571173425764, 0.00761981587857008, 0.014163170009851456, 0.03026397153735161, 0.0030121724121272564, -0.020022200420498848, 0.002543142531067133, -0.01868431270122528, 0.00881161354482174, -0.01486286986619234, -0.0050363061018288136, 0.026527108624577522, 0.006835536099970341, -0.007604437880218029, 0.02911061979830265, 0.01544723566621542, -0.022036723792552948, -0.006324216723442078, -0.008173425681889057, 0.000676633499097079, 0.01828448288142681, -0.008719345554709435, -0.004786413162946701, -0.034600578248500824, -0.011425879783928394, -0.021821429952979088, -0.005624515935778618, 0.030863715335726738, 0.008388717658817768, -0.0018415196100249887, -0.010526265017688274, -0.05880560353398323, -0.006631777156144381, -0.014770601876080036, 0.03247840702533722, -0.013563426211476326, -0.010741556994616985, -0.008488674648106098, 0.031017495319247246, 0.01625458151102066, 0.006685600616037846, 0.03069455735385418, -0.012010244652628899, 3.251313046348514e-06, -0.01063391100615263, -0.0013263555010780692, -0.029602715745568275, -0.024235783144831657, 0.02163689397275448, -0.01949934847652912, -0.00737376743927598, -0.025204598903656006, 0.00010103849490405992, 0.009380601346492767, 0.0043442947790026665, 0.013378890231251717, 0.034016210585832596, 0.004167447332292795, 0.009188375435769558, 0.020129846408963203, 0.03687652572989464, -0.01869969069957733, -0.0009125902433879673, 0.014247749000787735, -0.04093632847070694, 0.026342572644352913, -0.05662192404270172, -0.011833397671580315, -0.002919904189184308, 0.0015118529554456472, -0.005340022500604391, 0.02869541198015213, 0.009142241440713406, -0.012294738553464413, -0.0011802641674876213, 0.009826564230024815, -0.0042597153224051, -0.017177265137434006, -0.02485090307891369, -0.020114468410611153, 0.005336178001016378, -0.0160239115357399, 0.034446798264980316, 0.04773341864347458, -0.02349763736128807, 0.027449792250990868, 0.0005315032904036343, -0.013109774328768253, 0.0006386690074577928, -0.034416042268276215, -0.02028362825512886, 0.0066202436573803425, 0.0007741879089735448, 0.015747107565402985, 0.003636905224993825, -0.015647150576114655, 0.02165227197110653, 0.03275521472096443, -0.008857747539877892, -0.014893626794219017, -0.005574537441134453, -0.022375039756298065, 0.01828448288142681, 0.029618093743920326, -0.015178119763731956, -0.002418195828795433, 0.02666551247239113, 0.015793241560459137, 0.02669626846909523, -0.021344712004065514, 0.016562143340706825, -0.002118324162438512, -0.008134979754686356, -0.0160239115357399, 0.0361383818089962, 0.007243053987622261, 0.011341300792992115, 0.004367361776530743, 0.0031870976090431213, -0.022759491577744484, 0.011379745788872242, 0.02991027757525444, -0.05440748482942581, 0.020760346204042435, -0.0013801786117255688, -0.013079018332064152, 0.02406662330031395, -0.020114468410611153, 0.013363512232899666, 0.017807763069868088, -0.013025195337831974, -0.012502341531217098, 0.004082868341356516, -0.0020106779411435127, 0.029802631586790085, 0.016992727294564247, -0.007008539047092199, -0.026773158460855484, 0.010418618097901344, -0.015385723672807217, -0.023958977311849594, 0.00432122778147459, -0.012102512642741203, -0.007016228046268225, -0.013509603217244148, -0.008688589558005333, 0.02385133132338524, -0.014724467881023884, 0.011418190784752369, -0.002220203634351492, -0.010057234205305576, 0.026065768674016, -0.017331045120954514, -0.014216993004083633, 0.040413472801446915, -0.020606566220521927, 0.030633045360445976, -0.004425029270350933, -0.007850486785173416, 0.016392985358834267, 0.0034081568010151386, 0.03337033465504646, 0.0050247726030647755, -0.019161030650138855, 0.03432377427816391, 0.03776845335960388, 0.00934215635061264, -0.0005079556722193956, -0.015401101671159267, -0.019606994464993477, -0.011694994755089283, -0.009165308438241482, -0.0009861164726316929, 0.00891157053411007, 0.010764623992145061, 0.03026397153735161, 0.03755316138267517, 0.030786825343966484, 0.050286173820495605, -6.511636456707492e-05, -0.03850659728050232, 0.01011874619871378, -0.045857299119234085, -0.01843826286494732, -0.014555309899151325, 0.0033293445594608784, 0.02086799219250679, 0.0045249867253005505, 0.004736434668302536, 0.015093540772795677, -0.003663816722109914, -0.012563854455947876, -0.008711656555533409, -0.023328477516770363, -0.0060205003246665, 0.016362229362130165, -0.00791199877858162, 0.01335582323372364, 0.030786825343966484, 0.055268656462430954, 0.01988379843533039, -0.04490385949611664, 0.016085423529148102, -0.026250304654240608, 0.0038579644169658422, -0.03992137685418129, 0.001583937555551529, 0.02049892023205757, 0.019622372463345528, -0.008734723553061485, 0.0002609460207168013, -0.016085423529148102, -0.01626995950937271, -0.01374796312302351, 0.0160239115357399, 0.02832634001970291, -0.019576238468289375, -0.012302427552640438, 0.002418195828795433, -0.03247840702533722, 0.02351301535964012, -0.000893367687240243, -0.012340872548520565, -0.015977777540683746, 0.012294738553464413, -0.02485090307891369, 0.02952582575380802, 0.020944882184267044, -0.0009380601113662124, 0.00632806122303009, 0.013878676109015942, -0.015001272782683372, -0.03878340125083923, 0.0006920115556567907, -0.009788119234144688, -0.036815013736486435, -0.026573242619633675, 0.02829558402299881, 0.00854249857366085, 0.02089874818921089, 0.0038829536642879248, 0.01334044523537159, 0.013740274123847485, -0.030863715335726738, 0.02346688136458397, -0.006285771727561951, 0.014524553902447224, 0.006997005548328161, 0.022405795753002167, -0.03090984933078289, -0.03629216179251671, 0.019745396450161934, -0.01014181412756443, 0.0035830819979310036, -0.012994439341127872, -0.011748818680644035, 0.0062627047300338745, 0.00722767598927021, 0.0026277215220034122, 0.02929515577852726, 0.006074323784559965, -0.012171714566648006, -0.018422884866595268, -0.005643738433718681, -0.013648005202412605, -0.012571543455123901, 0.004551898222416639, 0.0011581581784412265, -0.02929515577852726, -0.0046249437145888805, -0.0015003194566816092, 0.036015357822179794, 0.003894487163051963, 0.020422030240297318, 0.01607004553079605, 0.004482697229832411, 0.011641171760857105, 0.016961971297860146, 0.010879958979785442, 0.057483091950416565, 0.024143513292074203, 0.01403245609253645, 0.004901748616248369, 0.02549678087234497, -0.01828448288142681, -0.03755316138267517, 0.04099784046411514, 0.017423313111066818, -0.012940616346895695, 0.0015627926914021373, -0.004186669830232859, -0.012279360555112362, 0.046041835099458694, 0.01114138588309288, 0.0037580071948468685, -0.003917554393410683, 0.02069883421063423, -0.007050829008221626, 0.013994011096656322, 0.02168302796781063, -0.010895336978137493, 0.017392557114362717, 0.020991016179323196, 0.018791958689689636, 0.01456299889832735, 0.0010803069453686476, 0.04096708446741104, -0.027572816237807274, -0.008035022765398026, -0.03146345913410187, 0.03967532888054848, -0.027788108214735985, 0.014870558865368366, 0.015531814657151699, 0.028372474014759064, -0.03355487063527107, 0.02832634001970291, -0.01625458151102066, 0.0067624906077980995, 0.021206310018897057, -0.0008049439638853073, -0.011595037765800953, -0.02209823578596115, 0.019545482471585274, -0.004417340271174908, -0.009957277216017246, 0.012425451539456844, 0.04641090705990791, -0.02063732221722603, -0.006858603563159704, -0.0027026894968003035, -0.019560860469937325, -0.009411357343196869, 0.006920115556567907, -0.008527119643986225, -0.017423313111066818, 0.008427162654697895, -0.005455357488244772, -0.01623920351266861, 0.03567703813314438, -0.029571959748864174, 0.01790003292262554, 0.025050818920135498, 0.007888931781053543, 0.004448096267879009, -0.0014609132194891572, -0.024927793070673943, 0.038229793310165405, -0.0026930782478302717, -0.004955571610480547, 0.0006223298260010779, -0.04511915147304535, 0.017777007073163986, 0.005109352059662342, -0.0032659100834280252, -0.020129846408963203, -0.0012581154005602002, -0.05877484753727913, 0.006151213776320219, -0.0032908993307501078, -0.008088845759630203, -0.012986750341951847, 0.022744113579392433, 0.02023749239742756, 0.008865436539053917, 0.00436351727694273, 0.030079435557127, -0.007166163995862007, 0.01943783462047577, 0.00923450943082571, -0.004540364723652601]" -How WsprDaemon Combines TimescaleDB and Grafana to Measure and Analyze Radio Transmissions,open-source relational database for time-series and analytics.Try Timescale for free,https://www.timescale.com/blog/wsprdaemon-combines-timescaledb-grafana-analyze-radio/,14,"[0.0006947529036551714, 0.01165800541639328, 0.0459958091378212, -0.019333792850375175, 0.03185775503516197, -0.00022385256306733936, -0.030090495944023132, 0.006992447189986706, -0.01385529525578022, -0.027828406542539597, 0.02197289653122425, -0.03565146401524544, 0.028629563748836517, -0.016470836475491524, 0.05169815942645073, 0.028323238715529442, 0.013772822916507721, -0.004094145260751247, -0.0114989522844553, 0.06922934949398041, -0.023846188560128212, 0.0245530903339386, -0.01734268292784691, -0.0005703085917048156, 0.03105659782886505, -0.013490062206983566, -0.01656509004533291, 0.013560752384364605, 0.028935888782143593, -0.05108550935983658, -0.0034873872064054012, -0.04118886962532997, -0.029147960245609283, 0.0382198803126812, 0.020358800888061523, -0.005516787525266409, 0.029925553128123283, 0.012629996985197067, 0.022986123338341713, 0.013395808637142181, -0.04276762157678604, 0.009242754429578781, 0.052216555923223495, 0.04547741264104843, 0.013949548825621605, -0.03357788547873497, -0.02690943330526352, -0.02256198227405548, 0.05056711286306381, 0.035604339092969894, -0.002759866416454315, -0.043050382286310196, -0.03864401951432228, -0.051415398716926575, -0.010585869662463665, -0.01640014536678791, 0.0026935942005366087, 0.044228553771972656, 0.016553306952118874, -0.03449685871601105, -0.012853849679231644, -0.05268782377243042, 0.027262885123491287, 0.030114060267806053, -0.018803615123033524, 0.02495366893708706, -0.009831840172410011, 0.031174413859844208, -0.024458836764097214, 0.02012316696345806, 0.007734694983810186, -0.018791833892464638, 0.01677715964615345, 0.008011565543711185, 0.029124395921826363, -0.05702349543571472, 0.005069082137197256, 0.04140094295144081, -0.020759379491209984, -0.00950195174664259, 0.05009584501385689, 0.05070849508047104, -0.020947886630892754, 0.04872916638851166, 0.03237614780664444, -0.0531119629740715, -0.03767792135477066, 0.011628551408648491, 0.02259732596576214, 0.013301555067300797, 0.020888978615403175, 0.023704808205366135, -0.007286990061402321, -0.009242754429578781, 0.044181425124406815, -0.004556577652692795, -0.00426203478127718, 0.0008519651601091027, -0.001963128102943301, 0.012983448803424835, -0.032894544303417206, -0.02374015375971794, -0.03791355341672897, 0.002566940849646926, -0.0220553670078516, 0.012842067517340183, 0.02009960263967514, -0.03042038530111313, 0.016011347994208336, 0.050802748650312424, -0.06847532093524933, -0.004989555571228266, -0.035981353372335434, -0.016258765012025833, -0.008553524501621723, -0.047315362840890884, -0.022609109058976173, -0.006203072145581245, -0.011104265227913857, -0.0437808483839035, -0.030373256653547287, 0.013195519335567951, -0.01835590973496437, 0.025825515389442444, 0.0083061084151268, -0.013431153260171413, -0.015775714069604874, 0.005460824351757765, -0.012523961253464222, 0.013702132739126682, 0.022314565256237984, -0.01698923110961914, 0.04269693046808243, -0.007652223110198975, -0.00928399059921503, -0.009607987478375435, -0.0487762950360775, -0.029784172773361206, -0.004029346164315939, -0.008588869124650955, 0.02634391188621521, -0.027027251198887825, 0.0071809543296694756, -0.012712469324469566, -0.018886087462306023, 0.012983448803424835, -0.007033682893961668, 0.005393079482018948, -0.012264763936400414, -0.01776682399213314, 0.04194290190935135, -0.03770148381590843, -0.021419154480099678, 0.009030683897435665, 0.04665558412671089, -0.027993351221084595, 0.028040478006005287, -0.0057700942270457745, -0.03235258534550667, -0.02154875360429287, 0.0546671524643898, 0.037371594458818436, 0.0036523311864584684, 0.011169064790010452, -0.011010011658072472, -0.012936321087181568, -0.04269693046808243, -0.02905370481312275, -0.06739140301942825, -0.030090495944023132, -0.01092164870351553, -0.028747381642460823, -0.005608095787465572, 0.008205963298678398, 0.01793176867067814, 0.036216989159584045, 0.028959451243281364, -0.059379834681749344, 0.015057030133903027, -0.02457665465772152, -0.044794075191020966, 0.01096288487315178, -0.03206982463598251, -0.005496169440448284, 0.015210192650556564, 0.029619228094816208, -0.03334224969148636, 0.018615107983350754, 0.03362501040101051, 0.043568775057792664, -0.06564770638942719, 0.032894544303417206, -0.007546187378466129, 0.04234347864985466, 0.025424938648939133, -0.029147960245609283, -0.004798102658241987, 0.04057622328400612, -0.03937448561191559, 0.021265992894768715, 0.03421409800648689, -0.003069136291742325, 0.011251536197960377, -0.013607879169285297, 0.006745031103491783, 0.031904879957437515, -0.015210192650556564, -0.014797831885516644, -0.05909707397222519, -0.047315362840890884, 0.012064474634826183, -0.009219191037118435, -0.03192844241857529, -0.018968557938933372, -0.04795157536864281, -0.024718035012483597, -0.007340007461607456, -0.038738273084163666, 0.004912974778562784, 0.02636747434735298, -0.005584532395005226, 0.022373473271727562, -0.0103325629606843, 0.013160173781216145, 0.014538634568452835, -0.005643440876156092, 0.011198518797755241, -0.01774326153099537, -0.007952656596899033, -0.01618807390332222, -0.021018577739596367, -0.04326245188713074, -0.03704170882701874, -0.0026906488928943872, 0.017401590943336487, 0.03063245490193367, -0.0012709524016827345, -0.021513408049941063, -0.012429707683622837, -0.019286664202809334, -0.007940875366330147, -0.008959992788732052, -0.02870025485754013, 0.026108277961611748, 0.013737478293478489, -0.00513093639165163, -0.011216191574931145, -0.027663463726639748, 0.006803939584642649, 0.04757456108927727, 0.009896639734506607, -0.027380703017115593, 0.006203072145581245, -0.030349694192409515, 0.00989074818789959, -0.05834304541349411, -0.012571088038384914, 0.0351095050573349, 0.031315796077251434, 0.0037730936892330647, 0.04154232144355774, -0.07479032129049301, -0.0031427720095962286, -0.005301771219819784, -0.027663463726639748, -0.023457391187548637, 0.05636371672153473, -0.055751070380210876, 0.02829967625439167, -0.011392916552722454, 0.06051088124513626, 0.034025587141513824, 0.025707699358463287, -0.0631028562784195, -0.013867076486349106, 0.0015772768529132009, -0.0014241145690903068, -0.01690675877034664, 0.01405558455735445, -0.021749043837189674, 0.027993351221084595, -0.04491189122200012, -0.0019425100181251764, -0.004774539265781641, 0.02867669053375721, 0.0020441273227334023, 0.058814313262701035, 0.00197343691252172, -0.002103035803884268, -0.01640014536678791, 0.012948103249073029, -0.03004336915910244, 0.002457960043102503, -0.058861441910266876, 0.02344560995697975, 0.002574304351583123, 0.0005592632223851979, 0.0008851012098602951, -0.021902205422520638, -0.02773415297269821, 0.03421409800648689, 0.0015816950472071767, 0.005991001147776842, -0.03840838745236397, -0.00967278704047203, 0.03374282643198967, -0.03829056769609451, 0.014149838127195835, 0.02361055463552475, 0.03551008552312851, -0.0011995256645604968, -0.00653296010568738, 0.01423230953514576, -0.026862306520342827, 0.004692067392170429, 0.007216299418359995, 0.0394451767206192, 0.014373690821230412, 0.02224387601017952, -0.06597759574651718, -0.029713481664657593, -0.10886303335428238, 0.018202748149633408, 0.019958222284913063, -0.0014182237209752202, -0.02695656009018421, 0.0026008132845163345, -0.0039026925805956125, 0.04670271277427673, -0.02752208337187767, -0.030208313837647438, -0.022444164380431175, -0.02280939742922783, 0.030726708471775055, 0.029030142351984978, -0.08647777885198593, 0.026226093992590904, -0.009708131663501263, -0.026461727917194366, 0.01502168457955122, -0.008806831203401089, -0.034638237208127975, -0.09670430421829224, 0.03831413388252258, 0.004426978994160891, 0.018190965056419373, -0.0397750660777092, 0.0028482291381806135, -0.020229201763868332, 0.0011479806853458285, -0.032658908516168594, -0.03291810676455498, -0.017990676686167717, -0.002400524215772748, 0.006544741801917553, -0.007216299418359995, 0.02031167410314083, -0.03459111228585243, -0.027616336941719055, -0.0015463499585166574, -0.03411984071135521, 0.017224865034222603, 0.022067150101065636, -0.03001980669796467, 0.03609916940331459, -0.006279653403908014, -0.025283556431531906, -0.014621106907725334, -0.012300108559429646, 0.002057381672784686, 0.019463390111923218, -0.0015949495136737823, -0.005072027910500765, -0.028040478006005287, -0.027875535190105438, 0.005396024789661169, 0.04019920527935028, 0.06286722421646118, 0.014738923870027065, 0.04118886962532997, 0.0009749368182383478, 0.010697796009480953, -0.008129382506012917, 0.0007687567849643528, 0.038337696343660355, 0.020252766087651253, -0.02240881882607937, 0.029195087030529976, -0.005767148919403553, 0.005351843312382698, 0.011292772367596626, 0.025684135034680367, -0.007451933808624744, -0.009496061131358147, 0.026791617274284363, -0.016576871275901794, 0.022467726841568947, 0.012465053237974644, 0.051415398716926575, -0.008412143215537071, -0.006874629762023687, -0.012900976464152336, -0.04140094295144081, -0.014727141708135605, -0.018344128504395485, 0.015551862306892872, 0.02226743847131729, 0.0012981975451111794, -0.020912541076540947, -0.03694745525717735, -0.017707915976643562, -0.04804582893848419, 0.020052475854754448, 0.005711185745894909, 0.0487762950360775, -0.037583667784929276, -0.014314781874418259, 0.032517530024051666, 0.00889519415795803, 0.05438438802957535, -0.0065859779715538025, -0.021324900910258293, -0.0013725695898756385, -0.01491564977914095, -0.04995446652173996, 0.04724467173218727, 0.07215121388435364, 0.01870936155319214, -0.03979862853884697, -0.0321640782058239, 0.014385472051799297, 0.005475551355630159, 0.023657681420445442, -0.03331868723034859, -0.0048039937391877174, 0.013360463082790375, 0.03489743545651436, -0.032870981842279434, 0.059615470468997955, 0.045171089470386505, 0.01749584451317787, 0.04915330931544304, -0.018956776708364487, 0.008906975388526917, 0.0005272316629998386, -0.042060717940330505, -0.032658908516168594, -0.015846405178308487, -0.01690675877034664, 0.0198875330388546, 0.04938894510269165, -0.0028187748976051807, -0.031150851398706436, -0.007734694983810186, -0.014350127428770065, -0.06272584199905396, -0.004689122084528208, -0.019227756187319756, 0.03181062638759613, 0.006267871707677841, -0.04175439104437828, 0.030161187052726746, -0.05970972403883934, 0.006167727056890726, 0.04526534304022789, -0.06187755987048149, 0.03937448561191559, 0.010886303149163723, 0.032658908516168594, -0.025330685079097748, 0.008877521380782127, 0.04623144492506981, -0.026273220777511597, -0.006450488232076168, -0.02886519767343998, 0.01268890593200922, 0.045972246676683426, -0.01757831685245037, -0.008783267810940742, -0.039115287363529205, 0.007628659717738628, 0.005625768098980188, 0.014291218481957912, 0.05169815942645073, -0.0039056381210684776, 0.08445132523775101, 0.01991109549999237, -0.007993892766535282, -0.009490170516073704, -0.005189844872802496, 0.007575641851872206, 0.032329022884368896, 0.039727937430143356, -0.010845066979527473, -0.027239322662353516, 0.031904879957437515, -0.09529049694538116, 0.0015669679269194603, 0.001239288947544992, -0.01889786869287491, -0.0030779726803302765, -0.023516301065683365, 0.00012923066969960928, 0.06446953862905502, -0.05424300953745842, 0.012158728204667568, -0.03275316208600998, -0.01208803802728653, 0.00366116757504642, -0.00888341199606657, -0.028205422684550285, 0.007952656596899033, 0.020040694624185562, 0.0046714493073523045, -0.0012230891734361649, 0.003508005291223526, -0.033059488981962204, -0.017943549901247025, -0.022479509934782982, -0.021419154480099678, -0.011157282628118992, -0.006432815454900265, -0.04481763765215874, -0.015269100666046143, -0.020629780367016792, -0.009201518259942532, -0.012111601419746876, -0.031103724613785744, -0.007387134246528149, -0.04227278754115105, -0.013431153260171413, -0.023940442129969597, 0.019640116021037102, 0.011322226375341415, -0.02045305445790291, 0.009107264690101147, -0.015763932839035988, -0.024105386808514595, -0.025236429646611214, 0.043191760778427124, 0.012771377339959145, 0.03770148381590843, 0.008158836513757706, 0.012535743415355682, -0.015457607805728912, -0.02310394123196602, -0.03280029073357582, -0.03046751208603382, -0.004998391959816217, 0.05014297366142273, 0.010850958526134491, -0.03779573738574982, 0.015575425699353218, 0.03244683891534805, 0.024435274302959442, 0.03765435516834259, 0.030349694192409515, 0.004497669171541929, 0.033059488981962204, -0.00852406956255436, -0.022950777783989906, -0.006208963226526976, 0.010803831741213799, 0.005007228348404169, -0.027404265478253365, 0.010974666103720665, -0.01404380239546299, -0.06663737446069717, -0.02848818339407444, -0.0027583937626332045, 0.024859415367245674, 0.010803831741213799, 0.0009859821293503046, 0.05132114514708519, -0.013336899690330029, 0.024741599336266518, 0.0022503072395920753, -0.01267712377011776, 0.007434261031448841, 0.000759920512791723, -0.013631442561745644, 0.007228081114590168, -0.03508594259619713, 0.014090929180383682, -0.010415034368634224, 0.005652277264744043, 0.012582870200276375, 0.04684409499168396, 0.02320997603237629, -0.05735338106751442, 0.024694472551345825, 0.02293899655342102, -0.02749851904809475, -0.03258822113275528, 0.02945428341627121, -0.013925985433161259, 0.023763716220855713, 0.02270336262881756, 0.003463823813945055, 0.022656235843896866, 0.03185775503516197, 0.020358800888061523, 0.009543187916278839, 0.004895302001386881, -0.0035256778355687857, 0.022479509934782982, -0.010191182605922222, 0.03452042117714882, 0.03998713567852974, -0.011098374612629414, 0.006550632882863283, 0.008830394595861435, 0.019274882972240448, -0.07182132452726364, 0.003496223594993353, 0.017990676686167717, -0.0037937117740511894, 0.007387134246528149, 0.04698547348380089, -0.045383159071207047, -0.03475605323910713, -0.0017967113526538014, 0.007775931153446436, -0.021595880389213562, 0.03256465494632721, 0.009578533470630646, -0.04604293778538704, -0.02055908925831318, -0.02591976895928383, 0.00453595956787467, -0.0032164077274501324, -0.027569210156798363, 0.03763079270720482, -0.01749584451317787, 0.007175063714385033, 0.026084713637828827, 0.024034695699810982, 0.037371594458818436, 0.03923310711979866, 0.00990253034979105, 0.011127828620374203, 0.023940442129969597, -0.008565305732190609, -0.008606541901826859, 0.054761406034231186, -0.0335543192923069, 0.009077810682356358, 0.038149189203977585, -0.021984677761793137, 0.005852566100656986, -0.00037075579166412354, -0.01905103027820587, 0.022844742983579636, -0.007493169978260994, -0.002705375896766782, -0.017813950777053833, 0.005192790180444717, -0.0229154322296381, 0.02039414644241333, 0.028064042329788208, -0.016718251630663872, 0.0015389863401651382, -0.02752208337187767, -0.011787604540586472, -0.013996675610542297, 0.004403415601700544, 0.004191344603896141, -0.0020382364746183157, 0.020735815167427063, 0.03348362818360329, 0.007982110604643822, 0.02358699031174183, 0.015292664058506489, 0.027239322662353516, 0.03440260514616966, -0.03920954093337059, 0.02846461907029152, -0.00301170046441257, 0.012512180022895336, 0.05301770940423012, 0.014208746142685413, -0.025519192218780518, -0.03713596239686012, -0.008300216868519783, 0.009896639734506607, -0.000619644473772496, -0.023009685799479485, 0.014786050654947758, 0.027875535190105438, 0.010255981236696243, -0.010933429934084415, 0.021112831309437752, -0.008865739218890667, -0.02695656009018421, 0.00023839561617933214, -0.0018953831167891622, 0.035015251487493515, 0.024022914469242096, -0.02554275467991829, 0.023327792063355446, 0.005086754914373159, 0.010697796009480953, -0.04210784286260605, -0.03925666958093643, -0.013007012195885181, 0.016388364136219025, 0.03390777111053467, 0.014350127428770065, 0.002050018170848489, -0.020641561597585678, -0.05014297366142273, -0.027616336941719055, -0.02615540474653244, 0.035439394414424896, -0.006803939584642649, 0.006574196275323629, -0.019015686586499214, 0.0041324361227452755, -0.04773950204253197, 0.012771377339959145, -0.054148755967617035, 0.001343851676210761, -0.03845551237463951, -0.0397750660777092, 0.015987785533070564, 0.027592772617936134, 0.029336467385292053, 0.023999350145459175, -0.004023455083370209, -0.04682052880525589, 0.025660572573542595, -0.0029881370719522238, 0.015858186408877373, 0.026202531531453133, 0.03473249077796936, 0.0003267584543209523, -0.01940448209643364, 0.009331117384135723, -0.007404807023704052, -0.028370365500450134, -0.01345471665263176, 0.04564235731959343, -0.00480988435447216, -0.012076256796717644, -0.008830394595861435, -0.02497723326086998, 0.03119797818362713, 0.024046476930379868, 0.040317025035619736, -0.051226891577243805, 0.0028717927634716034, 0.006256090011447668, 0.004320943262428045, -1.34615283968742e-05, -0.014267655089497566, -0.061971813440322876, -0.018285218626260757, -0.012712469324469566, 0.010850958526134491, 0.026791617274284363, -0.004527123644948006, 0.03084452636539936, -0.029689917340874672, 0.021913986653089523, -0.015775714069604874, -0.006049910094588995, -0.012783159501850605, 0.0007168436422944069, -0.033460065722465515, -0.030373256653547287, -0.01860332489013672, -0.008229526691138744, 0.002396106021478772, -0.0034255331847816706, 0.02312750369310379, 0.019557643681764603, -0.035627901554107666, 0.0014101238921284676, 0.008541742339730263, -0.010809722356498241, 0.04293256253004074, 0.006067582406103611, -0.01326620951294899, -0.044770512729883194, -0.019039249047636986, 0.012241200543940067, 0.03100946918129921, 0.009596205316483974, -0.02596689760684967, -0.00010088091949000955, -0.03449685871601105, 0.0005021955585107207, 0.0010529906721785665, 0.017731478437781334, 0.0158346239477396, -0.01669468730688095, -0.00633856188505888, -0.03984575346112251, -0.003136881161481142, 0.017861077561974525, -0.004868793301284313, 0.02792266197502613, 0.00022624571283813566, 0.0074637155048549175, 0.019604770466685295, 0.004497669171541929, 0.009007119573652744, 0.0066036502830684185, -0.07856046408414841, -0.05051998794078827, -0.009531406685709953, -0.004506505560129881, 0.0025271775666624308, 0.03141004964709282, 0.015587206929922104, 0.03668825700879097, 0.022691579535603523, 0.005855511873960495, 0.006562414579093456, -0.005122100003063679, 0.06027524545788765, 0.014656451530754566, -0.009172064252197742, -0.017837515100836754, 0.05400737375020981, 0.0066036502830684185, -0.013195519335567951, 0.02500079572200775, -0.009390025399625301, -0.007740585599094629, -0.007758258376270533, 0.023386701941490173, 0.042013589292764664, -0.017248429358005524, 0.008512288331985474, -0.03141004964709282, 0.007699349895119667, -0.036381930112838745, -0.04766881465911865, 0.05839017406105995, -0.03456754609942436, 0.037560101598501205, 0.028818070888519287, 0.012948103249073029, 0.03310661390423775, -0.02280939742922783, -0.006821612361818552, 0.01621163822710514, 0.053960248827934265, 0.0098612941801548, 0.0004576459468808025, -0.009242754429578781, 0.03242327645421028, 0.000854910584166646, -0.010043910704553127, -0.0021398537792265415, 0.005295880138874054, -0.021336684003472328, 0.006503506097942591, 0.0003968964738305658, -0.06442240625619888, -0.027545645833015442, -0.0114989522844553, -0.0064976150169968605, 0.030326129868626595, -0.01357253361493349, -0.014161619357764721, 0.01345471665263176, 0.030326129868626595, 0.032281894236803055, -0.0017216028645634651, -0.015551862306892872, -0.026084713637828827, 0.01259465143084526, -0.004644940607249737, 0.027804844081401825, -0.028770944103598595, 0.01086863037198782, -0.015092374756932259, -0.05268782377243042, -0.005219298880547285, 0.002983718877658248, 0.0008652195683680475, 0.0003575013834051788, 0.007475497201085091, 0.018096711486577988, -0.0002034186472883448, 0.057447634637355804, 0.003985164687037468, -0.0033990242518484592, 0.0030131733510643244, 0.022974342107772827, 0.028134731575846672, 0.014102711342275143, 0.009024792350828648, -0.031904879957437515, -0.0013769877841696143, 0.041495196521282196, -0.012011457234621048, 0.03965724632143974, 0.06065225973725319, 0.019663680344820023, -0.01846194453537464, 0.0009977638255804777, 0.0070749190635979176, 0.002217907691374421, 0.01830878295004368, -0.014032021164894104, -0.013501843437552452, 0.019581208005547523, -0.0214427188038826, 0.0028143569361418486, -0.004017564468085766, 0.03294167295098305, 0.005693512968719006, -0.004047018475830555, -0.010715468786656857, 0.010308999568223953, -0.012547524645924568, -0.006715576630085707, 0.02924221381545067, -0.014998121187090874, -0.0074460431933403015, 0.03803137317299843, -0.021018577739596367, -0.013713914901018143, -0.023174630478024483, 0.005013118963688612, 0.05089700222015381, 0.01248861663043499, 0.037583667784929276, 0.01602313108742237, 0.003060300135985017, 0.023221757262945175, 0.0011428261641412973, 0.0055933683179318905, 0.04366302862763405, 0.0037524758372455835, 0.002510977676138282, 0.0005865084240213037, -0.02245594561100006, 0.05405450239777565, 0.008347343653440475, -0.024034695699810982, 0.01664756052196026, -0.02085363306105137, 0.02344560995697975, 0.036806073039770126, -0.03298879787325859, -0.037183087319135666, 0.03591066226363182, 0.016258765012025833, 0.0726696103811264, -0.020759379491209984, 0.011928984895348549, -0.033648572862148285, -0.03430835157632828, 0.01951051689684391, 0.0319991335272789, 0.03880896419286728, 0.01006158348172903, 0.01142826210707426, -0.0459958091378212, -0.04995446652173996, 0.013596097007393837, -0.0015463499585166574, 0.021536972373723984, -0.0015021684812381864, 0.03781929984688759, -0.0018600380280986428, 0.015952439978718758, 0.024647343903779984, -0.0054254792630672455, -0.005546241533011198, 0.011275099590420723, -0.0005714130820706487, -0.008606541901826859, -0.03779573738574982, 0.025825515389442444, 0.025307120755314827, 0.04392222687602043, 0.0296663548797369, -0.018473727628588676, -0.03381351754069328, -0.005993946921080351, -0.01782573200762272, -0.003840838558971882, 0.008600651286542416, -0.008152945898473263, -0.004568359348922968, -0.0011192627716809511, 0.027969788759946823, -0.0051250453107059, 0.020924324169754982, 0.009366462007164955, -0.006049910094588995, 0.015657898038625717, 0.005896747577935457, 0.009914311580359936, 0.03506238013505936, -0.03374282643198967, 0.019734369590878487, 0.03254109248518944, -0.005572750698775053, 0.005767148919403553, -0.02243238314986229, 0.005911474581807852, 0.020335238426923752, -0.017118830233812332, 0.010073364712297916, -0.012641778215765953, -0.0007555023767054081, -0.01680072396993637, 0.0017731478437781334, 0.01862688921391964, -0.025849079713225365, 0.005375406704843044, -0.026815179735422134, -0.026414601132273674, -0.02709794044494629, 0.021395592018961906, -0.010350235737860203, 0.040458403527736664, -0.002687703352421522, 0.013289772905409336, -0.005534459836781025, 0.004597813822329044, -0.0016155674820765853, 0.0005044045974500477, 0.01444438099861145, -0.02752208337187767, 0.017837515100836754, 0.028653128072619438, 0.023728370666503906, 0.008082255721092224, 8.94213662832044e-05, 0.014927431009709835, -0.01991109549999237, -0.004256144165992737, -0.015940658748149872, 0.007652223110198975, -0.010197073221206665, -0.018473727628588676, 0.05419588088989258, -0.005475551355630159, 0.06220744922757149, 0.00023140021949075162, 0.022373473271727562, 0.01806136779487133, -0.0066743409261107445, -0.012170510366559029, -0.0008372380398213863, 0.010850958526134491, -0.004580141045153141, -0.006503506097942591, -0.012382580898702145, -0.01827343739569187, 0.0021207083482295275, 0.0427204929292202, -0.002064745407551527, -0.007575641851872206, 0.004444651305675507, 0.01728377304971218, -0.030137622728943825, -0.015163064934313297, 0.0214427188038826, 0.020299892872571945, -0.008341453038156033, 0.017919985577464104, -0.0013445880031213164, -0.012771377339959145, -0.010809722356498241, 0.03968081250786781, -0.028205422684550285, -0.022467726841568947, 0.00017000644584186375, 0.0021162903867661953, -0.024670908227562904, 0.0059203109703958035, -0.022444164380431175, -0.011546079069375992, 0.045383159071207047, -0.01698923110961914, 0.03202269598841667, -0.011634442023932934, 0.02905370481312275, -0.022385256364941597, -0.005773039534687996, 0.03004336915910244, -0.02342204749584198, 0.0245530903339386, -0.0198875330388546, 0.003254698356613517, 0.023469174280762672, 0.021124612540006638, -0.023268884047865868, -0.008429815992712975, 0.04177795723080635, -0.004974828567355871, 0.02518930286169052, 0.005192790180444717, 0.01599956676363945, 0.012441489845514297, 0.005463769659399986, 0.006468160543590784, -0.014126274734735489, 0.021525191143155098, -0.025424938648939133, 0.004918865393847227, 0.014420817606151104, 0.022868305444717407, -0.0038820747286081314, -0.015846405178308487, 0.010644778609275818, 0.02636747434735298, 0.006745031103491783, 0.0487762950360775, -0.007021901197731495, 0.0032046260312199593, 0.021230647340416908, 0.055751070380210876, -0.032870981842279434, 0.035981353372335434, 0.0321640782058239, -0.01204680185765028, -0.007828949019312859, 0.006032237317413092, -0.02441170997917652, -0.006267871707677841, -0.020570872351527214, 0.005988055840134621, 0.003257643897086382, 0.013478280045092106, 0.03235258534550667, -0.01502168457955122, -0.0019822733011096716, -0.001823220169171691, 0.0012945157941430807, -0.017519408836960793, -0.016034912317991257, 0.007734694983810186, -0.02709794044494629, 0.0037613119930028915, 0.011722804978489876, 0.041660137474536896, 0.009790604002773762, 0.033837080001831055, 0.027168631553649902, 0.024882979691028595, 0.0005876129725947976, 0.017601879313588142, -0.023834407329559326, 0.000206732249353081, -0.0296663548797369, 0.011416480876505375, -0.014385472051799297, 0.038761839270591736, -0.007699349895119667, -0.01247683446854353, -0.016871413215994835, 0.017802169546484947, 0.028582436963915825, -0.006326780188828707, 0.011339899152517319, 0.0018364746356382966, 0.014373690821230412, 0.014114492572844028, 0.027828406542539597, 0.06206606701016426, -0.020087821409106255, -0.018721142783761024, 0.02361055463552475, -0.018850741907954216, 0.004315052647143602, -0.0190274678170681, 0.007540296763181686, 0.012300108559429646, 0.011322226375341415, -0.012335454113781452, 0.017248429358005524, 0.04208428040146828, -0.014550415799021721, 0.008747922256588936, -0.03466179966926575, 0.029760608449578285, 0.001276843249797821, 0.0038820747286081314, -0.008235418237745762, -0.024058260023593903, 0.014350127428770065, -0.007328225765377283, -0.009189737029373646, 0.037536539137363434, -0.013442935422062874, -0.025424938648939133, -0.0005471133044920862, -0.028959451243281364, -0.02240881882607937, 0.014409035444259644, -0.005496169440448284, 0.0012223527301102877, 0.005219298880547285, 0.03949230536818504, 0.053536105901002884, -0.012736032716929913, 0.03720664978027344, 0.00888341199606657, -0.008559415116906166, 0.020617999136447906, -0.004995446652173996, 0.02481228858232498, -0.01833234541118145, -0.01854441687464714, 0.021372027695178986, -0.013560752384364605, 0.0023578153923153877, -0.02653241902589798, 0.02318641170859337, 0.02672092616558075, -0.012948103249073029, -0.0009322281111963093, 0.03419053182005882, 0.01942804642021656, 0.040081389248371124, 0.047126855701208115, 0.017142392694950104, -0.016011347994208336, -0.039115287363529205, 0.025401374325156212, -0.058814313262701035, 0.025707699358463287, -0.002687703352421522, -0.0009432734223082662, -0.03602847829461098, 0.0031987351831048727, 0.02690943330526352, 0.010686013847589493, -0.0024638508912175894, 0.007281098980456591, -0.011893640272319317, 0.012123383581638336, -0.033648572862148285, -0.016529744490981102, -0.0306088924407959, -0.001871819724328816, 0.027380703017115593, -0.02358699031174183, 0.014114492572844028, 0.019310228526592255, -0.024293893948197365, 0.0596625991165638, -0.00888341199606657, -0.030915215611457825, -0.00849461555480957, -0.024623781442642212, -0.02148984558880329, -0.016894977539777756, -0.015575425699353218, 0.02650885470211506, 0.013819949701428413, 0.005937983747571707, 0.002457960043102503, 0.04891767352819443, -0.005225189961493015, -0.008789158426225185, -0.018591543659567833, -0.00990253034979105, 0.03202269598841667, 0.00442108791321516, -0.011192628182470798, -0.008624214679002762, 0.016824286431074142, 0.0017908205045387149, 0.026579545810818672, -0.008871630765497684, 0.010043910704553127, -0.011852404102683067, 0.007110264152288437, -0.016341237351298332, 0.052216555923223495, -0.010591760277748108, 0.058672934770584106, 0.017330899834632874, -0.0037406941410154104, -0.002963101025670767, 0.03414340689778328, -0.0245530903339386, -0.028959451243281364, 0.01749584451317787, 0.00346087827347219, -0.00594976544380188, 0.017484063282608986, -0.007970329374074936, 0.012948103249073029, 0.020005349069833755, 0.01247683446854353, -0.016341237351298332, -0.025825515389442444, 0.004886465612798929, -0.0005920311086811125, 0.03046751208603382, -0.006597759667783976, -0.019227756187319756, 0.028959451243281364, -0.02789909765124321, 0.0017112939385697246, 0.0025124503299593925, 0.0033901880960911512, 0.00042156444396823645, -0.03487387299537659, -0.030396820977330208, -0.0006457851850427687, -0.006061691790819168, -0.018344128504395485, -0.003646440338343382, -0.009425370953977108, 0.03791355341672897, 0.008035128936171532, -0.007534405682235956, 0.010621215216815472, 0.008223636075854301, 0.01541048102080822, -0.01664756052196026, -0.022067150101065636, 0.018179183825850487, 0.03687676414847374, 0.011434152722358704, 0.018155621364712715, -0.0057259127497673035, -0.02026454731822014, 0.049059055745601654, 0.03791355341672897, 0.010556415654718876, 0.02018207497894764, -0.004630213603377342, -0.035203758627176285, -0.008205963298678398, 0.0012591705890372396, 0.004250253085047007, -0.030938779935240746, 0.05429013445973396, -0.011993784457445145, 0.00864188652485609, 0.01690675877034664, 0.009024792350828648, -0.05683498457074165, -0.0037053488194942474, -0.020676907151937485, 0.00809403695166111, -0.02417607605457306, 0.005216353572905064, 0.01384351309388876, -0.0010043911170214415, -0.0094724977388978, 0.018049584701657295, -0.01698923110961914, -0.007039573974907398, 0.03261178359389305, -0.017248429358005524, -0.016635779291391373, -0.001871819724328816, 0.028723817318677902, -0.01228832732886076, 0.021902205422520638, 0.06696725636720657, 0.005552132613956928, -0.05443151667714119, 0.011334008537232876, 0.004167781211435795, -0.005039628129452467, -0.03006693348288536, -0.0029159740079194307, 0.005516787525266409, -0.00017727796512190253, -0.02020563930273056, 0.01443259883671999, 0.021643007174134254, -0.034237660467624664, -0.013242646120488644, 0.039091724902391434, -0.010079256258904934, 0.007110264152288437, -0.021749043837189674, -0.0205001812428236, 0.013702132739126682, 0.02848818339407444, -0.0014049693709239364, -0.003778984537348151, -0.011716914363205433, 0.03315374255180359, -0.009337007999420166, 0.046514205634593964, 0.001867401646450162, 0.023598771542310715, 0.0044593787752091885, -0.0029527919832617044, 0.013819949701428413, -0.03730090335011482, 0.013560752384364605, 0.010485725477337837, -0.02106570452451706, -0.06692013144493103, 0.015551862306892872, 0.0067803761921823025, 0.022880088537931442, 0.020806506276130676, 0.030279003083705902, -0.0006225898978300393, -0.018132057040929794, 0.01749584451317787, -0.03586353734135628, 0.02481228858232498, 0.002776066306978464, 0.017059920355677605, -0.037159524857997894, -0.01503346674144268, 0.039115287363529205, -0.015186628326773643, 0.0245530903339386, 0.013819949701428413, 0.004600759129971266, -0.04092967137694359, -0.014974557794630527, 0.02163122594356537, -0.0008578560082241893, 0.005219298880547285, -0.028370365500450134, 0.011286881752312183, -0.0306088924407959, -0.0363348051905632, -0.04210784286260605, 0.017436936497688293, -0.007876075804233551, 0.015492953360080719, -0.020405927672982216, -0.010096928104758263, 0.0030661909841001034, 0.011923094280064106, 0.00888341199606657, -0.017590098083019257, -0.01171102374792099, 0.0066743409261107445, -0.012571088038384914, 0.009584424085915089, 0.045359596610069275, -0.011245645582675934, -0.0016803669277578592, 0.014715360477566719, 0.0036228769458830357, -0.004332724958658218, -0.0029483737889677286, 0.009407698176801205, -0.010079256258904934, -0.0013217609375715256, 0.006815721280872822, -0.009077810682356358, -0.007440152112394571, 0.031292229890823364, 0.020488400012254715, -0.010915757156908512, -0.041306689381599426, -0.0024299784563481808, -0.009101374074816704, 0.020653344690799713, 0.031881317496299744, -0.02672092616558075, 0.002857065526768565, 0.008400361984968185, -0.008889302611351013, 0.025660572573542595, 0.008270762860774994, 0.03763079270720482, -0.02870025485754013, -0.01483317743986845, 0.020064258947968483, 0.020818287506699562, -0.012135164812207222, 0.021831514313817024, -0.0018320564413443208, 0.00771113159134984, 0.005375406704843044, -0.0010095456382259727, -0.025660572573542595, 0.014538634568452835, 0.0019528190605342388, -0.0011553443036973476, -0.016117384657263756, -0.03565146401524544, 0.024341020733118057, -0.030891653150320053, 0.013631442561745644, -0.013996675610542297, 0.02310394123196602, 0.021831514313817024, 0.00872435886412859, 0.0023327793460339308, 0.023092158138751984, -0.029360029846429825, 0.04976595938205719, -0.03291810676455498, -0.019369136542081833, -0.00712204584851861, 0.0182498749345541, 0.01112193800508976, 0.018721142783761024, -0.03803137317299843, -0.005961547140032053, 0.06498793512582779, 0.017731478437781334, 0.01784929633140564, 0.005219298880547285, -0.02390509657561779, -0.0018600380280986428, 0.013171955943107605, 0.011440044268965721, -0.03850264102220535, -0.041306689381599426, 0.008152945898473263, -0.013784605078399181, -0.022397037595510483, -0.010320780798792839, -0.0019572372548282146, -0.01726021058857441, -0.002655303804203868, 0.03378995507955551, -0.04024633392691612, 0.008588869124650955, -0.00012784999853465706, 0.023009685799479485, 0.03866758570075035, 0.004185453522950411, 0.006479942239820957, 0.0044328696094453335, 0.01875648833811283, 0.021902205422520638, -0.009325225837528706]" -How Ndustrial Is Providing Fast Real-Time Queries and Safely Storing Client Data With 97 % Compression,"This is an installment of our “Community Member Spotlight” series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition, Michael Gagliardo, technical lead and software architect at Ndustrial, shares how Ndustrial is helping clients save energy and money by collecting several types of data and offering on-demand analytics quickly and seamlessly using TimescaleDB. And the best part is that they don’t need to worry about keeping vast amounts of raw data—TimescaleDB handles that, too.About the CompanyNdustrialis based out of Raleigh, North Carolina, in the United States. Our company has been around since 2011, and we work exclusively in the industrial sector.We aim to help our customers—who are large industrial energy users—save energy. And by doing so also save money and improve sustainability. A lot of that is collecting data from very disparate devices, such as industrial IoT equipment, utility meters, utility bills, and even external data, and ultimately trying to use and combine that data to give our customers a better view of what we would call production-normalized KPIs.The company’s high-level data architectureThese KPIs are essentially metrics that we try to get down to the point of the single unit that our customers are producing, and that changes based on their manufacturing process, what sector they're in, and what their actual product is. But if we can get it down to that point, we can understand how much energy consumption is required for a single product or unit. And then help them find and even completely automate these opportunities to save energy.We’re talking about customers that might have multiple facilities, even in the hundreds across the US and the world, so our goal in this space is to be able to aggregate all that data into a single view, understand what’s happening, and where you may have a lack of efficiencies in order to find those opportunities and save energy and money.About the TeamThe Ndustrial team building more than data applicationsWe currently have around 18 engineers working at the company, split into two main teams. We have an Integrations team that's more focused on different types of ingestion and where we get that data from (which sometimes gets very specific with our customers). The",https://www.timescale.com/blog/how-ndustrial-is-providing-fast-real-time-queries-and-safely-storing-client-data-with-97-compression/,464,"[0.0043221586383879185, 0.01508303266018629, 0.042385924607515335, 0.008315532468259335, 0.05575653165578842, 0.02341226488351822, -0.03216617554426193, 0.033207330852746964, -0.009151195175945759, -0.015069333836436272, 0.035673223435878754, -0.03583761304616928, -0.011815727688372135, -0.013336360454559326, 0.05572913587093353, 0.038276106119155884, 0.005952386651188135, -0.03383750468492508, -0.034358080476522446, 0.060058142989873886, 0.03076883964240551, 0.019644930958747864, 0.025083590298891068, 0.016055690124630928, -0.02616584300994873, -0.0315634049475193, -0.023823246359825134, 0.05115353688597679, 0.00661338260397315, -0.08679936081171036, -0.03394709900021553, -0.04353667423129082, -0.048632849007844925, 0.025494571775197983, 0.04394765570759773, 0.025617865845561028, 0.038276106119155884, 0.016795456409454346, 0.001724411267787218, 0.03879668191075325, 0.0033186781220138073, -0.0026474078185856342, 0.017466727644205093, 0.028439942747354507, -0.008075792342424393, -0.0422489307820797, -0.02687821164727211, -0.031289417296648026, 0.031426411122083664, -0.009000501595437527, -0.010980064049363136, -0.014904940500855446, 0.003558417549356818, -0.05896219238638878, 0.02409723401069641, -0.002197040244936943, 0.0016901626950129867, 0.04287910461425781, 0.00781550444662571, -0.025932952761650085, -0.01923394948244095, -0.06466113775968552, 0.09688211232423782, 0.06657905131578445, -0.011575987562537193, -0.034604668617248535, 0.007555215619504452, 0.05693468078970909, -0.017302334308624268, 0.028248149901628494, 0.0466875359416008, 0.020083311945199966, -0.0013579524820670485, -0.004537924192845821, 0.024330124258995056, -0.05348243564367294, -0.0047365655191242695, 0.020261403173208237, -0.00434613274410367, -0.01709684357047081, 0.006421591155230999, -0.02898791804909706, -0.021261459216475487, 0.014096676371991634, -0.00117557926569134, -0.0502493754029274, 0.0008694833959452808, -0.036275994032621384, 0.0006502931355498731, 0.02816595323383808, -0.021782036870718002, 0.07211361080408096, 0.007178482599556446, 0.0509069487452507, 0.03041265532374382, 0.027919365093111992, 0.018042102456092834, 0.033536117523908615, 0.03383750468492508, 0.03054964914917946, -0.025110989809036255, 0.0019658629316836596, 0.0469067245721817, 0.011754079721868038, -0.0027963886968791485, -0.034604668617248535, 0.03326212987303734, 0.009390934370458126, 0.009890962392091751, -0.014959738589823246, -0.07940168678760529, -0.004298184998333454, -0.012987025082111359, -0.03279634937644005, -0.02280949056148529, 0.0029898928478360176, -0.01004850585013628, 0.01095951534807682, 0.021357355639338493, -0.03487865626811981, -0.04676973074674606, 0.030577046796679497, -0.023330068215727806, 0.028467340394854546, -0.024891799315810204, -0.03698836266994476, -0.01580910012125969, -0.021576546132564545, -0.013754191808402538, 0.006538035813719034, 0.018781868740916252, -0.010219748131930828, 0.03463206812739372, -0.045920368283987045, -0.03123461827635765, -0.03276894986629486, -0.01874077133834362, -0.0074867187067866325, -0.0002547230978962034, 0.006116779521107674, 0.01522002648562193, -0.018576378002762794, 0.02627543732523918, -0.015589910559356213, 0.012925378046929836, 0.018603777512907982, 0.0077538569457829, 0.011836276389658451, 0.03953645005822182, -0.028576936572790146, -0.009856713935732841, -0.024467118084430695, -0.07096286118030548, -0.022439606487751007, 0.052304286509752274, 0.025083590298891068, 0.003928301390260458, 0.048523254692554474, 0.0037707581650465727, -0.03687876835465431, 0.04411204904317856, 0.024289024993777275, -0.043564073741436005, 0.0032604557927697897, -0.06833257526159286, 0.03857749328017235, -0.01774071529507637, -0.03394709900021553, -0.0853746235370636, 0.01887776516377926, -0.07994966208934784, -0.05449618771672249, 0.023193074390292168, 0.0402488186955452, 0.026617921888828278, -0.03857749328017235, 0.036851368844509125, -0.027248093858361244, 0.011117057874798775, -0.0335635170340538, -0.08121000975370407, -0.026919309049844742, -0.024152031168341637, -0.0185626782476902, -0.019398340955376625, 0.00012222428631503135, -0.06372958421707153, -0.016411874443292618, -0.011932171881198883, 0.058195024728775024, -0.04501620680093765, 0.041317373514175415, 0.0021251183934509754, 0.016055690124630928, 0.0010420101461932063, -0.021891631186008453, 0.018179096281528473, -0.017083143815398216, 0.012103414162993431, 0.016000892966985703, 0.038741886615753174, 0.027686474844813347, 0.04523539915680885, -0.021001171320676804, 0.02494659647345543, -0.007082586642354727, -0.021220361813902855, -0.02159024402499199, -0.06860656291246414, -0.03315253183245659, 0.003371763275936246, 0.020576490089297295, 0.02459041215479374, 0.020932674407958984, -0.03961864858865738, 0.017713315784931183, -0.04282430559396744, -0.0017655093688517809, 0.024864399805665016, -0.01415147352963686, -0.0008159701828844845, 0.0820319727063179, -0.021932730451226234, -0.004575597587972879, -0.0074387709610164165, 0.04635874927043915, 0.03044005297124386, -0.04635874927043915, 0.05326324328780174, 0.016480371356010437, 0.009493679739534855, -0.04723551124334335, 0.004637245088815689, -0.02309717796742916, -0.0022672496270388365, 0.0027090550865978003, 0.022549202665686607, -0.022179318591952324, -0.0001610749022802338, 0.024563012644648552, -0.01609678752720356, 0.029042715206742287, 0.02105596847832203, 0.03126201778650284, 0.002393969101831317, 0.007520967163145542, -0.04526279866695404, -0.03586501255631447, -0.010692376643419266, 0.024713706225156784, 0.01685025542974472, -0.013945982791483402, -0.03252236172556877, -0.04315309226512909, -0.022193018347024918, -0.02716589905321598, -0.01090471725910902, 0.04457782953977585, -0.007863451726734638, 0.026535725221037865, 0.01723383739590645, -0.04098858684301376, -0.015233726240694523, 0.020138109102845192, -0.005753745324909687, 0.017288634553551674, 0.032248374074697495, 0.0029761933255940676, -0.001206402899697423, -0.013514452613890171, 0.03350871801376343, 0.012685638852417469, -0.007726458366960287, -0.052660468965768814, -0.025384977459907532, -0.05444139242172241, -0.008514173328876495, -0.022193018347024918, -0.015685806050896645, -0.0014255931600928307, -0.014754246920347214, -0.027754971757531166, 0.029097512364387512, -0.004798212554305792, -0.000744904566090554, -0.0067572263069450855, 0.021508049219846725, 0.020864177495241165, -0.023576656356453896, -0.04359147325158119, -0.03665957972407341, 0.0003234341274946928, 0.012911679223179817, 0.013959682546555996, 0.016713259741663933, -0.022467005997896194, -0.0036577382124960423, 0.022001227363944054, -0.031097624450922012, -0.030933231115341187, 0.013110320083796978, -0.01795990578830242, 0.0042262631468474865, -0.014973437413573265, -0.02169984020292759, -0.0070620374754071236, -0.006431865505874157, -0.007493568584322929, 0.011089659295976162, -0.016466671600937843, 0.03416628763079643, -0.030248261988162994, 0.02274099364876747, 0.015576210804283619, -0.04011182487010956, -0.006490088067948818, 0.05918138101696968, -0.009212842211127281, -0.016288580372929573, -0.047564294189214706, -0.03504304960370064, -0.07638782262802124, 0.034714262932538986, -0.03572801873087883, -0.003650888567790389, -0.005377012304961681, 0.012541795149445534, 0.0035721170715987682, 0.010007407516241074, 0.008712814189493656, 0.0069387429393827915, 0.008534722030162811, 0.009918360970914364, -0.0031166120897978544, -0.013713093474507332, -0.018864065408706665, 0.012308905832469463, -0.05235908553004265, -0.02470000647008419, -0.013041823171079159, -0.023467062041163445, -0.03444027528166771, -0.0731547623872757, -0.008486774750053883, 0.05449618771672249, -0.022727293893694878, -0.04178315028548241, -0.02034359984099865, 0.017439328134059906, 0.044632624834775925, -0.030741440132260323, -0.0014624103205278516, -0.03687876835465431, -0.014021329581737518, -0.01752152480185032, -0.013404857367277145, -0.015603609383106232, -0.007034638896584511, -0.013233614154160023, -0.017973605543375015, -0.036275994032621384, 0.04885203763842583, 0.03087843395769596, -0.019754525274038315, 0.005051651503890753, 0.0335635170340538, -0.0406871996819973, 0.007342875003814697, -0.012158212251961231, -0.013151418417692184, 0.029398899525403976, -0.014247369952499866, -0.02309717796742916, -0.003945425618439913, -0.056167516857385635, 0.013610348105430603, 0.020480593666434288, 0.012747285887598991, 0.032001785933971405, 0.04600256681442261, 0.05148232355713844, 0.058304619044065475, 0.016644762828946114, -0.0205627903342247, 0.00661338260397315, 0.052304286509752274, -0.002133680507540703, -0.004352982621639967, -0.0620308555662632, -0.01652146875858307, 0.035563625395298004, -0.039783041924238205, -0.008192237466573715, -0.009103246964514256, -0.034358080476522446, -0.00658598355948925, 0.02080938033759594, -0.021110765635967255, 0.05504416674375534, -0.030357856303453445, 0.011370496824383736, -0.00976081844419241, -0.05071515589952469, -0.020151808857917786, 0.012623991817235947, 0.02687821164727211, 0.010808821767568588, 0.031645599752664566, -0.011808877810835838, -0.02619324065744877, -0.022549202665686607, -0.03408409282565117, 0.05485237389802933, -0.009260790422558784, 0.01606938987970352, -0.002450479194521904, -0.011541739106178284, 0.05649629980325699, -0.002195327775552869, 0.04019402340054512, -0.03063184581696987, -0.019480537623167038, -0.023001283407211304, -0.029261905699968338, -0.02545347437262535, 0.05096174404025078, 0.03309773653745651, -5.461027831188403e-05, -0.02398763969540596, -0.07375753670930862, -0.013445954769849777, 0.003082363633438945, 0.06016773730516434, -0.011370496824383736, -0.031645599752664566, 0.0012663376983255148, 0.012932227924466133, 0.011863674968481064, 0.0335635170340538, 0.0049454811960458755, -0.005962661001831293, -0.01920654997229576, -0.00372966006398201, 0.01320621557533741, -0.023645153269171715, -0.011712982319295406, -0.022672496736049652, 0.004404355306178331, -0.023083478212356567, -0.014165173284709454, 0.020946374163031578, -0.0009581013582646847, 0.007178482599556446, 0.03197438642382622, -0.055838730186223984, -0.011685582809150219, 0.052030298858881, -0.012089715339243412, 0.03254976123571396, -0.02554936893284321, -0.034851256757974625, 0.05792103707790375, -0.02312457747757435, 0.0016918751643970609, -0.04515320435166359, -0.06192126125097275, -0.009390934370458126, -0.03761853650212288, 0.02594665251672268, -0.020658686757087708, 0.01054853294044733, 0.03139901161193848, -0.05172891169786453, 0.0008544996962882578, -0.015617309138178825, 0.023042380809783936, 0.01443916093558073, 0.016946149989962578, -0.004592721816152334, -0.025289081037044525, 0.02948109619319439, -0.008294982835650444, -0.05567433685064316, 0.04529019817709923, 0.033892299979925156, -0.03770073130726814, -0.001914490363560617, 0.045427192002534866, 0.016713259741663933, -0.011288301087915897, 0.0002517263637855649, -0.006688728928565979, 0.10022476315498352, -0.015535112470388412, -0.014288468286395073, 0.011021162383258343, -0.03800211846828461, -0.057592254132032394, -0.022905386984348297, -0.0027467284817248583, 0.027261793613433838, 0.007219580467790365, 0.0033272402361035347, 0.06186646223068237, -0.00022925079974811524, 0.004089269321411848, -0.019069556146860123, -0.014411762356758118, 0.027905665338039398, -0.03019346483051777, -0.002024085493758321, 0.08296352624893188, 0.023288968950510025, 0.023727349936962128, -0.010630729608237743, 0.01831609010696411, -0.001976137515157461, 0.013391157612204552, -0.006421591155230999, -0.004400930367410183, -0.01385008729994297, -0.024467118084430695, -0.0002557933621574193, -0.0019316145917400718, 0.026343934237957, -0.005637300666421652, -0.0449066124856472, -0.001531763467937708, 0.010980064049363136, 0.030494850128889084, 0.036139000207185745, -0.0053804367780685425, 0.0096717718988657, 0.025261683389544487, -0.05507156252861023, 0.013658295385539532, 0.0073154764249920845, -0.02959069050848484, -0.03633079305291176, 0.01058278139680624, 0.015398118644952774, 0.053701624274253845, 0.03301553800702095, 0.025508271530270576, 0.009055299684405327, 0.004113242961466312, -0.03600200638175011, -0.02765907719731331, -0.0012603442883118987, 0.051454924046993256, 0.0431256927549839, -0.026823412626981735, 0.02948109619319439, -0.009411484003067017, -0.008788160979747772, 0.01987782120704651, 0.012178760953247547, -0.01092526689171791, 0.03159080073237419, 0.012754135765135288, -0.0032399066258221865, -0.02980988100171089, 0.0017107118619605899, 0.006921618711203337, 0.010055354796350002, 0.04600256681442261, 0.01620638370513916, -0.02338486537337303, -0.03928986191749573, 0.022247815504670143, 0.0013879198813810945, -0.0009033037931658328, -0.02698780596256256, 0.006359943654388189, 0.012411651201546192, -0.027713874354958534, -0.053208447992801666, -0.013945982791483402, 0.014343265444040298, 0.030960630625486374, -0.025604167953133583, -0.016946149989962578, -0.02174093760550022, 0.0182338934391737, -0.012391101568937302, -0.025467174127697945, 0.028028959408402443, -0.0045687477104365826, 0.03337172418832779, -0.028850924223661423, -0.014713149517774582, -0.009863563813269138, -0.006654480472207069, 0.012007518671452999, -0.005428384989500046, 0.022069724276661873, 0.009151195175945759, 0.0043975054286420345, -4.992786853108555e-05, 0.05348243564367294, 0.0077401576563715935, -0.0009880687575787306, 0.010137551464140415, -0.027782371267676353, 0.0017158491536974907, 0.005866765510290861, 0.04161876067519188, 0.02616584300994873, 0.019617531448602676, -0.029919477179646492, 0.0010608468437567353, 0.007342875003814697, -0.00884980894625187, -0.034823860973119736, -0.01449395902454853, 0.008041543886065483, 0.025672664865851402, 0.0056133265607059, 0.009288189001381397, 0.02937150001525879, -0.034906055778265, -0.04526279866695404, -0.008233335800468922, -0.044851817190647125, 0.01969972811639309, -0.0032039457000792027, -0.01863117516040802, -0.02087787725031376, -0.03123461827635765, 0.009192293509840965, 0.004596146754920483, 0.007678510155528784, 0.02674121782183647, 0.020795680582523346, -0.012658240273594856, 0.0007461888599209487, 0.014466560445725918, 0.015685806050896645, 0.02719329670071602, -0.012959626503288746, 0.002073745708912611, -0.0021405303850769997, 0.02727549336850643, -0.006038007792085409, 0.016398174688220024, -0.029618090018630028, -0.001532619702629745, 0.016178984194993973, 0.00018569100939203054, -0.008452526293694973, -0.019891520962119102, -0.04279690608382225, 0.055838730186223984, 0.006952442228794098, -0.001237226533703506, 0.017247537150979042, -0.024220528081059456, -0.030494850128889084, -0.014219971373677254, 0.016220081597566605, -0.04548198729753494, 0.002000111620873213, -0.024508215487003326, -0.034495074301958084, -0.008507323451340199, 0.03172779828310013, 0.03605680540204048, 0.02563156560063362, 0.02509729005396366, 0.05260567367076874, -0.029042715206742287, 0.04148176312446594, 0.028933120891451836, 0.010075904428958893, -0.0035036199260503054, -0.003822130849584937, -0.010712926276028156, -0.007966198027133942, 0.03293334320187569, 0.030248261988162994, -0.023357465863227844, 0.012082865461707115, -0.014480259269475937, 0.0035789667163044214, 0.004544774070382118, 0.008767612278461456, 0.004339282866567373, 0.03186479210853577, 0.03539923578500748, 0.011658184230327606, 0.0030515401158481836, -0.04531759396195412, 0.014535057358443737, -0.02652202732861042, 0.0018596927402541041, -0.03948165476322174, 0.012445899657905102, 0.020905274897813797, -0.009521079249680042, -0.08531982451677322, -0.0353444367647171, 0.002856323728337884, -0.05449618771672249, -0.007931949570775032, -0.012233559042215347, 0.016973549500107765, -0.004842735826969147, -0.020644987002015114, 0.04276950657367706, 0.0182338934391737, -0.03526224195957184, -0.004493401385843754, -0.01449395902454853, 0.03161820024251938, 0.0017389667918905616, 2.1037399164924864e-06, 0.008966253139078617, 0.03786512464284897, -0.00700381537899375, 0.019439440220594406, -0.025563068687915802, -0.009363535791635513, -0.024727405980229378, -0.039892636239528656, 0.026330234482884407, -0.006082531064748764, 0.008822409436106682, 0.035536229610443115, 0.018658574670553207, -0.04186534881591797, 0.011459543369710445, 0.000717077637091279, 0.017644818872213364, -0.03287854418158531, 0.029453696683049202, -0.0022244390565901995, -0.01365144643932581, -0.013541851192712784, -0.03879668191075325, 0.006431865505874157, -0.04441343620419502, -0.013411706313490868, -0.021480649709701538, -0.012843182310461998, 0.013829538598656654, -0.03583761304616928, 0.003914601635187864, 0.04123517498373985, -0.013569249771535397, 0.0052845412865281105, -0.02554936893284321, 0.012754135765135288, -0.0023802698124200106, 0.012391101568937302, -0.008945704437792301, -0.030029071494936943, 0.0024590413086116314, 0.020425796508789062, 0.012980176135897636, 0.013103470206260681, 0.031426411122083664, 0.028713930398225784, -0.01785030961036682, 0.0012132525444030762, 0.014219971373677254, 0.012822632677853107, 0.0016516331816092134, -0.007747007068246603, 0.02616584300994873, -0.04679713025689125, -0.0155625119805336, -0.026864511892199516, 0.013822688721120358, -0.018507881090044975, 0.016576265916228294, -0.00629829615354538, -0.0021764913108199835, -0.012829482555389404, -0.006363368593156338, 0.013055522926151752, 0.03748154267668724, -0.009808765724301338, -0.01642557419836521, -0.01949423737823963, 0.012158212251961231, -0.004486551508307457, 0.02448081783950329, -0.0202340055257082, -0.0048598600551486015, -0.035317037254571915, -0.020617587491869926, 0.03997483104467392, -0.029179709032177925, 0.007260678801685572, 0.0167817585170269, -0.019288746640086174, 0.027782371267676353, -0.07616863399744034, -0.0066442061215639114, 0.012144512496888638, -0.031207218766212463, 0.011589687317609787, -0.004551623482257128, 0.05896219238638878, 0.03761853650212288, 0.031152421608567238, -0.04052280634641647, 0.015233726240694523, -0.034358080476522446, -0.01443916093558073, 0.008322381414473057, -0.00434613274410367, -0.004308459348976612, 0.02687821164727211, 0.008548421785235405, 0.010555382817983627, 0.052030298858881, -0.010151251219213009, -0.02754948101937771, -0.020001115277409554, 0.03326212987303734, -0.012048617005348206, -0.03170039877295494, -0.0034197112545371056, 0.025905553251504898, 0.05066036060452461, -0.030001671984791756, -0.000978650408796966, -0.00454134913161397, -0.026028849184513092, 0.03126201778650284, -0.016370775178074837, 0.032494962215423584, 0.012041767127811909, 0.0007453326252289116, -0.02580965869128704, 0.004979729652404785, -0.005007128696888685, -0.023836946114897728, 0.014630952849984169, -0.047098517417907715, 0.00519207026809454, -0.0015309072332456708, -0.013302111998200417, -0.008966253139078617, -0.01256234385073185, 0.017836611717939377, 0.02527538128197193, -0.011397895403206348, -0.02491919696331024, -0.030357856303453445, -0.002436779672279954, 0.020795680582523346, -0.035070449113845825, 0.005931837484240532, -0.007473019417375326, 0.017151640728116035, -0.01827499084174633, -0.0012132525444030762, 0.001052284729667008, -0.019658630713820457, -0.016822855919599533, 0.008945704437792301, 0.002000111620873213, 0.03915286809206009, -0.005702372640371323, 0.012158212251961231, 0.0346868671476841, 0.039810437709093094, 0.011151306331157684, -0.027741272002458572, 0.01520632766187191, -0.005692098289728165, 0.0001685667666606605, -0.017192739993333817, 0.011514340527355671, -0.017055746167898178, 0.0013185666175559163, 0.007671660743653774, -0.014466560445725918, 0.0011618798598647118, -0.013178816996514797, -0.0036954116076231003, -0.009144345298409462, 0.025426074862480164, -0.001040297676809132, -0.008918305858969688, 0.01252809539437294, -0.007884001359343529, -0.03090583346784115, 0.0020977198146283627, 0.003760483581572771, 0.053701624274253845, -0.00025386689230799675, -0.010692376643419266, 0.0037022612523287535, 0.014192571863532066, 0.026385033503174782, 0.025864455848932266, 0.012486997991800308, 0.03479646146297455, -0.02574116177856922, -0.012959626503288746, -0.00943888258188963, -0.02120666205883026, -0.015589910559356213, 0.006154452916234732, -0.014384363777935505, 0.019686028361320496, 0.03901587426662445, 0.031070224940776825, -0.00011055838695028797, 0.023261571303009987, 0.007596313953399658, -0.04148176312446594, 0.031316813081502914, -0.05109873786568642, 0.04482441768050194, -0.03172779828310013, -0.036358192563056946, 0.01974082738161087, 0.004113242961466312, 0.03148120641708374, 0.060058142989873886, -0.014329565688967705, -0.005942112300544977, -0.007288077380508184, -0.008288132958114147, 0.05044116824865341, 0.017864009365439415, 0.02616584300994873, 0.008466225117444992, -0.006671604700386524, 0.02205602452158928, -0.01326101366430521, 0.0002542950096540153, 0.010788273066282272, -0.020905274897813797, 0.01620638370513916, -0.016685862094163895, 0.0013057234464213252, 0.03252236172556877, -0.013308960944414139, -0.009863563813269138, 0.005582503043115139, -0.016288580372929573, 0.04139956831932068, 0.00019853418052662164, -0.005096174776554108, -0.022549202665686607, 0.059126585721969604, -0.020781980827450752, 0.04186534881591797, -0.035563625395298004, -0.027905665338039398, -0.039317261427640915, 0.014466560445725918, -0.007199031766504049, 0.02841254323720932, 0.0037399346474558115, 0.008767612278461456, 0.011877374723553658, -0.01606938987970352, -0.024042436853051186, -0.016836555674672127, 0.009459431283175945, 0.02345336228609085, -0.003828980727121234, -0.024576712399721146, 0.00694216787815094, 0.009267640300095081, 0.028686530888080597, -0.01820649392902851, 0.01749412529170513, 0.034275881946086884, 0.004253661725670099, 0.019727127626538277, -0.06307201087474823, -0.0048119123093783855, 0.02994687482714653, 0.026001449674367905, 0.01527482457458973, -0.00606883130967617, -0.0446874238550663, 0.012603442184627056, -0.0022621124517172575, 0.03233056887984276, 0.055482544004917145, -0.0043221586383879185, 0.011199254542589188, 0.0027056303806602955, -0.00041654720553196967, 0.014535057358443737, 0.002794676460325718, 0.03145380690693855, 0.012713037431240082, 0.013877485878765583, -0.030494850128889084, -0.027672775089740753, 0.015398118644952774, -0.04087899252772331, -0.0031525730155408382, 0.028138555586338043, -0.0062674726359546185, -0.001428161864168942, -0.05572913587093353, 0.03923506289720535, 0.002868310548365116, 0.016411874443292618, -0.012945927679538727, -0.0335635170340538, -0.009938910603523254, 0.03180999308824539, 0.003452247241511941, 0.033782705664634705, 0.010089603252708912, -0.026357633993029594, -0.006144178099930286, -0.033536117523908615, -0.019329844042658806, 0.04575597494840622, -0.020973771810531616, 0.03052224963903427, -0.018042102456092834, -0.0023425964172929525, -0.006637356244027615, 0.007473019417375326, -0.005579078104346991, 0.03197438642382622, -0.009226541966199875, 0.009829315356910229, 0.029097512364387512, 0.01132939849048853, 0.017370831221342087, 0.014617253094911575, -0.016466671600937843, 0.0027741272933781147, 0.012219859287142754, -0.00042125635081902146, 0.00499685388058424, -0.007157933432608843, -0.012521246448159218, 0.0020155233796685934, 0.0384678989648819, 0.007877151481807232, 0.017548924311995506, -0.005743470974266529, -0.035892412066459656, -0.015165229327976704, 0.011884224601089954, 0.0011224941117689013, 0.01527482457458973, 0.025754861533641815, 0.016603665426373482, 0.01245959848165512, 0.00908269826322794, 0.006120204459875822, 0.01106226071715355, 0.012500696815550327, 0.02470000647008419, 0.004924932029098272, -0.007171632722020149, -0.01485014334321022, -0.005585927981883287, -0.029782483354210854, 0.025247983634471893, 0.014658351428806782, -0.0116170858964324, 0.013863787055015564, 0.020083311945199966, -0.02448081783950329, 0.020302502438426018, 0.020261403173208237, -0.05235908553004265, 0.02570006251335144, 0.019754525274038315, -0.01749412529170513, -0.03167299926280975, 0.004818761721253395, -0.0029744808562099934, 0.02663162164390087, 0.03145380690693855, -0.02123406156897545, -0.024727405980229378, -0.016055690124630928, 0.0406871996819973, -0.042495518922805786, -0.014233670197427273, -0.00451395008713007, -0.010521134361624718, 0.022138221189379692, -0.0039351508021354675, -0.010336192324757576, -0.012603442184627056, 0.009582726284861565, 0.018439384177327156, -0.01642557419836521, 0.026864511892199516, -0.03808431699872017, -0.00502425292506814, 0.03608420491218567, 0.01656256802380085, 0.014973437413573265, -0.0032570308540016413, -0.015603609383106232, -0.02505619078874588, 0.03961864858865738, -0.009740268811583519, 0.011534890159964561, 0.028823524713516235, 0.03161820024251938, -0.015370720066130161, 0.01479534525424242, 0.022905386984348297, 0.035426631569862366, 0.03654998168349266, 0.04033101722598076, 0.036275994032621384, 0.024316424503922462, 0.030220862478017807, 0.022973883897066116, -0.01170613244175911, -0.00016696137026883662, 0.020891575142741203, -0.018973661586642265, -0.014398063533008099, 0.02394654043018818, 0.004137217067182064, -0.01691875234246254, 0.015233726240694523, 0.017946206033229828, -0.014754246920347214, 0.020425796508789062, 0.003613215172663331, -0.008747062645852566, -0.011425294913351536, -0.010432088747620583, 0.02674121782183647, -0.004503675736486912, 0.002923108171671629, -0.020110709592700005, -0.015891296789050102, 0.007500417996197939, 0.017822911962866783, 0.03172779828310013, 0.019042158499360085, 0.008507323451340199, 0.06027733534574509, 0.01727493666112423, -0.02238480933010578, 0.005250292830169201, 0.016548868268728256, -0.0028528987895697355, -0.0010676964884623885, -0.010493735782802105, 6.036295599187724e-05, 0.016466671600937843, 0.017000947147607803, -0.007863451726734638, -0.016822855919599533, -0.0014315866865217686, -0.0016781757585704327, -0.011822576634585857, -0.0042742108926177025, 0.03276894986629486, -0.0056715491227805614, -0.0019453139975667, 0.012952776625752449, 0.02152174711227417, -0.0008938854443840683, -0.03479646146297455, -0.010514284484088421, -0.009911511093378067, 0.0028032385744154453, 0.004805062431842089, -0.018932562321424484, 0.017137940973043442, 0.0028289249166846275, -0.02776867151260376, 0.043344881385564804, 0.0290153156965971, 0.0069764163345098495, 0.029672887176275253, 0.000618613266851753, -0.04915342479944229, 0.008055243641138077, 0.021782036870718002, 0.009185443632304668, -0.022960184141993523, -0.023960240185260773, -0.019603833556175232, -0.005654424894601107, 0.025713762268424034, -0.017124243080615997, -0.023960240185260773, -0.007493568584322929, -0.034823860973119736, -0.0391254685819149, -0.024110933765769005, 0.0077538569457829, -0.018905162811279297, -0.0029213957022875547, -0.0035858163610100746, 0.04561898112297058, 0.042276330292224884, -0.004606421105563641, 0.0451258048415184, -0.000784718431532383, -0.011288301087915897, -0.00837032962590456, 0.02285058982670307, -0.02576855942606926, -0.012021218426525593, 0.020507993176579475, -0.01613788679242134, 0.018124299123883247, -0.04808487370610237, 0.016439272090792656, 0.013439105823636055, 0.006496937479823828, 0.01674065925180912, 0.0005668124067597091, 0.02470000647008419, 0.012466448359191418, 0.0384678989648819, 0.03087843395769596, -0.052057698369026184, -0.0311250239610672, 0.009808765724301338, -0.04641354829072952, 0.018946262076497078, -0.01734343357384205, -0.02194642834365368, -0.002152517205104232, -0.002251837868243456, -0.030494850128889084, 0.0034573846496641636, 0.01569950580596924, -0.0018939411966130137, -0.0014144624583423138, 0.004205713979899883, -0.007630562409758568, -0.007904550060629845, -0.055235955864191055, -0.02409723401069641, 0.008568970486521721, -0.019425740465521812, 0.019932618364691734, 0.014480259269475937, -0.021316256374120712, 0.013808988966047764, 0.007993596605956554, -0.017836611717939377, -0.029782483354210854, -0.02063128724694252, -0.016973549500107765, -0.0009572451817803085, -0.03539923578500748, 0.020138109102845192, 0.0027912515215575695, 0.014932339079678059, 0.012103414162993431, -0.007157933432608843, -0.003592666005715728, 0.007911399938166142, 0.0003671009617391974, -0.004849585238844156, 0.009897812269628048, -0.010843070223927498, 0.011144457384943962, -0.010466337203979492, 0.007514117751270533, -0.0016730384668335319, 0.02294648438692093, -0.02763167768716812, 0.02120666205883026, 0.008479924872517586, 0.027576880529522896, -0.0011969845509156585, 0.02754948101937771, 0.007931949570775032, 0.006962717045098543, 0.009884112514555454, -0.021247759461402893, -0.027974162250757217, 0.01998741552233696, -0.0010445787338539958, -0.022823190316557884, 0.00200867373496294, -0.03994743153452873, -0.003592666005715728, 0.03723495453596115, -0.0014880966627970338, 0.015055634081363678, 0.0018939411966130137, 0.03786512464284897, -0.013877485878765583, -0.019823022186756134, 0.041317373514175415, 0.013754191808402538, 0.011130757629871368, -0.01515152957290411, -0.04375586286187172, 0.006346244364976883, -0.023028681054711342, 0.0016841692849993706, -0.016466671600937843, 0.009589576162397861, -0.014946038834750652, -0.006695578806102276, -0.04065980017185211, 0.02705630287528038, -0.03087843395769596, 0.0023494460619986057, -0.01656256802380085, -0.020644987002015114, 0.006113354582339525, 0.009630673564970493, -0.00034055838477797806, 0.0016165284905582666, -0.012699338607490063, 0.025069890543818474, -0.030577046796679497, -0.01479534525424242, 0.000658427132293582, -0.008349780924618244, -0.008952554315328598, 0.003918026573956013, 0.01674065925180912, 0.003527594031766057, 0.01876816898584366, -0.01129515003412962, 0.032248374074697495, -0.027001505717635155, -0.011089659295976162, -0.006972991395741701, -0.02765907719731331, -0.014233670197427273, 0.012678788974881172, -0.0346868671476841, 0.0008784736273810267, 0.03701576218008995, 0.026686418801546097, 0.0015189202968031168, 0.018644874915480614, -0.016014590859413147, 0.042851705104112625, -0.012308905832469463, 0.009589576162397861, -0.0369061678647995, -0.02345336228609085, 0.009843014180660248, 0.0027707023546099663, 0.01638447493314743, 0.016905052587389946, 0.028713930398225784, -0.0047468398697674274, -0.0166721623390913, -0.000787715136539191, 0.005534555297344923, 0.024193130433559418, -0.0162337813526392, -0.03663218021392822, 0.0027895390521734953, 0.05372902378439903, 0.01232945453375578, -0.03928986191749573, 0.02994687482714653, -0.021891631186008453, 0.009096398018300533, -0.008747062645852566, 0.015863899141550064, -0.0022432757541537285, 0.04682452976703644, -0.007377123460173607, 0.007945648394525051, -0.005849641282111406, 0.039098069071769714, -0.016398174688220024, 0.005366737488657236, 0.009774517267942429, -0.016192683950066566, -0.00943888258188963, -0.0057845693081617355, -0.013555550016462803, 0.0076922099106013775, -0.03191958740353584, -0.028439942747354507, -0.0049078078009188175, 0.026933008804917336, -0.009664922021329403, 0.026426130905747414, -0.008904606103897095, 0.03381010517477989, 0.015452916733920574, -0.00010429733811179176, 0.01199381984770298, -0.016151584684848785, 0.018754471093416214, 0.00803469493985176, -0.016302278265357018, -0.04186534881591797, -0.00424681231379509, 0.027398787438869476, -0.007500417996197939, -0.008527873083949089, 0.01358294952660799, -0.018261292949318886, 0.02269989624619484, -0.007178482599556446, -0.008911455981433392, 0.0010128989815711975, 0.009253940545022488, 0.024220528081059456, -0.020864177495241165, -0.021220361813902855, 0.04408464953303337, -0.040385812520980835, -0.0182338934391737, 0.021425852552056313, 0.010918417014181614, -0.004315309226512909, -0.0015771427424624562, 0.0010805396595969796, 0.009062149561941624, 0.018439384177327156, 0.011411595158278942, -0.02548087202012539, 0.010569082573056221, -0.008521023206412792, 0.0023665702901780605, 0.02972768433392048, -0.00616472726687789, -0.040385812520980835, 0.021508049219846725, 0.020836777985095978, 0.0291249118745327, -0.0014726849040016532, 0.02630283683538437, 0.004277635831385851, 0.002721042139455676, 0.0004248952609486878, 0.022617699578404427, 0.009199143387377262, 0.02038469910621643, -0.005106449127197266, 0.009822465479373932, -0.024261627346277237, -0.02116556279361248, -0.011767779476940632, -0.0371253564953804, 0.002664532046765089, 0.03005647100508213, -0.007712758611887693, -0.0034248484298586845, -0.020357299596071243, -6.6142383730039e-05, 0.02359035611152649, 0.007651111576706171, -0.008096341975033283, -0.02152174711227417, 0.005972935818135738, 0.016357077285647392, 0.024713706225156784, 0.017398230731487274, 0.010069054551422596, 0.03652258589863777, 0.015548812225461006, 0.0016165284905582666, 0.025617865845561028, -0.012678788974881172, 0.05392081290483475, 0.01795990578830242, 0.009432032704353333, 0.0038872030563652515, 0.018905162811279297, -0.011644484475255013, 0.04630395025014877, 0.0037947320379316807, 0.011623935773968697, -0.017179040238261223, 0.044851817190647125, 0.005188645329326391, -0.012144512496888638, 0.036714375019073486, 0.018466783687472343, -0.012363702990114689, -0.02616584300994873, 0.03139901161193848, -0.014110376127064228, -0.004692042246460915, -0.005787993781268597, 0.04016662389039993, 0.009562176652252674, 0.011596537195146084, -0.02038469910621643, -0.003592666005715728, 0.017151640728116035, 0.011158156208693981, -0.015096732415258884, -0.02180943451821804, -0.024973995983600616, 0.004716016352176666, 0.03030305914580822, -0.004281060770153999, -0.008096341975033283, 0.04553678631782532, 0.019151752814650536, 0.0007949929567985237, -0.0037056859582662582, 0.0013040110934525728, -0.023151975125074387, 0.02123406156897545, 0.038139112293720245, 0.014329565688967705, -0.0007577477372251451, -0.017864009365439415, 0.014302167110145092, 0.012856881134212017, -0.0009795066434890032, -0.020220305770635605, -0.020220305770635605, -0.03926246240735054, 0.016863953322172165, 0.011110208928585052, 0.002880297601222992, -0.007322326302528381, 0.024110933765769005, 0.0155077138915658, 0.025371277704834938, 0.029289305210113525, 0.04501620680093765, -0.004209138918668032, -0.0020514843054115772, 0.017535224556922913, 0.019864121451973915]" -How Ndustrial Is Providing Fast Real-Time Queries and Safely Storing Client Data With 97 % Compression,"other team is focused on building our platform's more generalized extensibility aspect and a front end,our energy intensity user interface (UI), called Nsight.I am the technical lead and software architect for the Platform team. We focus on building the functionality to turn the customers’ data into meaningful metrics based on their organization as well as building out features for Nsight, making that easier to consume as a customer.From a background perspective, most of our engineers come from a mix of experiences. Some of them have actually been in the energy world, whereas others come from the B2B SaaS world, such as myself. So it's a nice foundation to build on where you have both perspectives and merge them toward one scalable product.About the ProjectMore than 80 percent of our data is time series across the board. Now the facets of where it comes from could be standard IoT devices just setting up their data points. It could be a time series of line items on a utility bill associated with a statement per day, per month, or per year. But it always comes down to data points associated with a timestamp that we can aggregate together to give a perspective of what’s happening.✨Editor’s Note:Learn more about the features of the best database for time-series data.Then, we have the other side: non-time series, to give a digital perspective of the client’s organization so you can start associating different elements by those groupings or categories to provide even more focused metrics in our UI.The company’s UI, NsightI joined Ndustrial in June 2020, and we already had some applications to store and manage time-series data. This data is very unique, frequent, and needs to be retrieved quickly. But as far as leaning on databases specific to time-series data, that wasn’t really a factor in the beginning. It was more focused on, “How can we store this and at least get to it quickly?”“Compression was a game-changer from our perspective: not having to worry about getting databases on the order of 5, 10, or 15 TB to store this information was a massive factor for us”But then you start considering other aspects: now, I want to aggregate that data in unique ways or across arbitrary windows. That's where the drive to “We need something more powerful, something that",https://www.timescale.com/blog/how-ndustrial-is-providing-fast-real-time-queries-and-safely-storing-client-data-with-97-compression/,475,"[-0.020112404599785805, -0.0005547868204303086, 0.03627310320734978, 0.007354150526225567, 0.07083576917648315, 0.01722235232591629, -0.02021562121808529, 0.014737791381776333, -0.006532107945531607, -0.0008284939103759825, 0.030610961839556694, -0.021454215049743652, -0.019596323370933533, -0.03845538944005966, 0.031702104955911636, 0.052846670150756836, -0.01057965587824583, -0.02671823836863041, -0.04335078224539757, 0.014354417100548744, 0.03167261183261871, 0.028812050819396973, 0.005474142264574766, 0.015047440305352211, -0.005278768949210644, -0.010380595922470093, -0.007829681970179081, 0.0846962258219719, 0.019050752744078636, -0.05594315379858017, -0.013971042819321156, -0.026320118457078934, -0.013764610514044762, 0.04367517679929733, 0.05163756385445595, 0.010557537898421288, 0.028399186208844185, -0.0006483264733105898, 0.033412542194128036, 0.03173159435391426, -0.02143946848809719, -0.0022412650287151337, -0.004994924645870924, -0.0024163639172911644, -0.005249278619885445, -0.028045302256941795, -0.03895672410726547, -0.019404636695981026, -0.005957046523690224, 0.029106954112648964, -0.038750290870666504, -0.015880541875958443, -0.004246607422828674, -0.020023932680487633, 0.016544073820114136, -0.030493000522255898, -0.0027241690549999475, 0.05629703775048256, -0.030493000522255898, -0.00043544312939047813, -0.004648413043469191, -0.044412434101104736, 0.046624209731817245, 0.060986001044511795, -0.03167261183261871, -0.01657356508076191, 0.00372315407730639, 0.0447368286550045, -0.02599572390317917, 0.0448547899723053, 0.05765359103679657, 0.01978801004588604, -0.01900651678442955, 0.017104391008615494, 0.029962174594402313, -0.02751447632908821, 0.0016864781500771642, 0.022250453010201454, 0.006594774778932333, -0.04780382290482521, -0.015032694675028324, -0.006565284449607134, -0.035181961953639984, 0.009429533034563065, -0.010129927657544613, -0.017959609627723694, -0.01136114913970232, -0.02766192890703678, -0.024108344689011574, 0.03588972985744476, -0.024993054568767548, 0.07148455828428268, -0.009237845428287983, -0.003575702430680394, 0.011722405441105366, 0.036391064524650574, -0.015688855201005936, 0.029180679470300674, 0.01722235232591629, 0.030817393213510513, -0.0455920472741127, -0.015747835859656334, 0.0177236869931221, -0.01621968112885952, 0.019522598013281822, -0.005813281051814556, 0.01887381076812744, 0.01593952253460884, -0.0012892803642898798, -0.016485093161463737, -0.07755956798791885, -0.01835772953927517, 0.00047230604104697704, -0.004714766517281532, -0.037895072251558304, -0.01082295086234808, -0.02929864078760147, -0.0026504432316869497, 0.02285500429570675, 0.00925259105861187, -0.025892509147524834, 0.01304209791123867, -0.027204828336834908, 0.04193524643778801, -0.00853744987398386, -0.03058147057890892, -0.009923495352268219, -0.009451650083065033, -0.02415257878601551, 0.012865155935287476, 0.04568051919341087, -0.050546422600746155, 0.05844983085989952, -0.05337749421596527, -0.0002345402754144743, -0.02885628677904606, -0.023105673491954803, 0.007486857008188963, -0.011538091115653515, 0.02337108552455902, -0.0005994830862618983, -0.004298215266317129, 0.023120418190956116, -0.022044021636247635, -0.019920717924833298, 0.01192883774638176, -0.01035847794264555, 0.022884495556354523, 0.02179335243999958, -0.004265038762241602, -0.016632545739412308, -0.03606667369604111, -0.061339884996414185, -0.05438016727566719, 0.06995105743408203, 0.020097659900784492, 0.015010577626526356, 0.03223292902112007, -0.002703894628211856, -0.05095928907394409, 0.030094880610704422, 0.009495886042714119, -0.045621540397405624, 0.004235548432916403, -0.011508600786328316, -0.0019795382395386696, -0.03692189231514931, -0.0607500784099102, -0.07667485624551773, 0.017458274960517883, -0.07885713875293732, -0.035122983157634735, 0.028620364144444466, 0.02866460010409355, 0.06346318870782852, -0.004700021352618933, 0.03184955567121506, -0.05228635296225548, 0.01742878369987011, -0.03232140094041824, -0.06617629528045654, -0.013705629855394363, -0.006952344905585051, -0.026423335075378418, -0.0018717142520472407, 0.0032586813904345036, -0.023253124207258224, 0.02143946848809719, -0.030610961839556694, 0.029682016000151634, -0.05824339762330055, 0.07514135539531708, 0.0198617372661829, 0.03816048428416252, 0.017532000318169594, -0.03577176854014397, -0.003207073314115405, -0.0006335813086479902, 0.000540963199455291, -0.0010238674003630877, 0.05101826786994934, 0.031053315848112106, 0.05435067415237427, 0.008087722584605217, 0.013322255574166775, -0.012304839678108692, 0.015113793313503265, -0.0058059087023139, -0.048629552125930786, -0.0198617372661829, -0.011434875428676605, 0.01518751960247755, 0.01965530402958393, 0.028163263574242592, -0.029401857405900955, -0.005020728334784508, -0.041551873087882996, -0.0030246018432080746, 0.004681589547544718, -0.01863788813352585, 0.020304091274738312, 0.05706378445029259, -0.0043830000795423985, 0.004681589547544718, -0.01965530402958393, 0.05532385781407356, 0.021409979090094566, -0.027558712288737297, 0.04349823668599129, 0.002200715709477663, 0.01268821395933628, -0.0464472696185112, -0.020451543852686882, -0.03636157512664795, -0.0414339117705822, 0.014133240096271038, 0.0372757762670517, -0.04293791949748993, 0.01793012022972107, 0.026762472465634346, -0.02979997731745243, 0.018903300166130066, 0.005699005909264088, 0.036037180572748184, 0.01304209791123867, -0.010380595922470093, -0.027396515011787415, -0.05620856583118439, 0.011434875428676605, 0.02814851887524128, 0.018490435555577278, -0.01577732525765896, -0.002836601110175252, -0.029165934771299362, -0.016588309779763222, -0.031171277165412903, -0.013130568899214268, 0.041050538420677185, 0.0020514209754765034, -0.014745164662599564, 0.00960647501051426, -0.0282959695905447, 0.009304198436439037, 0.010188908316195011, -0.03586024045944214, -0.009717063046991825, 0.0052861412987113, -0.017310822382569313, -0.03323560208082199, -0.017310822382569313, 0.021557429805397987, 0.028679344803094864, 0.01736980304121971, -0.03995939716696739, -0.04293791949748993, -0.01071236189454794, -0.01944887265563011, -0.034031838178634644, -0.017812158912420273, -0.01428806409239769, -0.029991663992404938, -0.09661031514406204, 0.007608504965901375, -0.012186878360807896, -0.006513676140457392, -0.007748583797365427, 0.012304839678108692, 0.016706271097064018, -0.012968371622264385, -0.02494881860911846, -0.03323560208082199, -0.0067385402508080006, 0.024698151275515556, 0.017237097024917603, 0.007615877315402031, -0.01117683481425047, 0.037128325551748276, 0.010410086251795292, -0.008235174231231213, -0.018475690856575966, 0.044117532670497894, -0.05160807445645332, 0.027322789654135704, -0.014988459646701813, 0.008950314484536648, -0.010026711970567703, 0.015261244960129261, -0.008854471147060394, -0.000913739379029721, -0.026349607855081558, 0.023253124207258224, -0.02099711447954178, 0.03836691752076149, 0.0010681028943508863, -0.03816048428416252, -0.006052889861166477, 0.08056757599115372, 0.002425579586997628, -0.01529073528945446, -0.012164760380983353, -0.042967408895492554, -0.05296463146805763, 0.006867560092359781, -0.024993054568767548, 0.02222096361219883, -0.021970294415950775, 0.014656693674623966, 0.02056950516998768, 0.022456886246800423, -0.028251735493540764, 0.0312302578240633, -0.029254406690597534, 0.027676673606038094, -0.01944887265563011, -0.03429725393652916, -0.05738817900419235, -0.005953360348939896, -0.022176727652549744, -0.007977133616805077, -0.02278127893805504, -0.027824124321341515, -0.05131317302584648, -0.0793289840221405, 0.017325568944215775, 0.017605725675821304, -0.023474302142858505, -0.036332085728645325, -0.026334863156080246, 0.020834917202591896, 0.05042846128344536, -0.032822735607624054, -0.027824124321341515, -0.009400042705237865, -0.0014422613894566894, -0.006196655333042145, -0.008419488556683064, -0.014295436441898346, -0.05429169535636902, -0.01672101579606533, -0.018460946157574654, -0.03692189231514931, 0.010594400577247143, 0.03792456164956093, 0.01900651678442955, 0.006156106013804674, 0.00634410697966814, -0.025745056569576263, 0.02014189399778843, -0.030905865132808685, 0.007243562024086714, 0.011869857087731361, -0.025627095252275467, -0.007424190174788237, -0.011014637537300587, -0.05582519248127937, 0.014332300052046776, 0.003619937924668193, -0.00785917229950428, -0.004681589547544718, 0.0463293083012104, 0.042554546147584915, 0.05202094092965126, 0.01900651678442955, -0.029239660128951073, 0.006646382622420788, 0.05166705697774887, 0.02515524998307228, 0.0018754005432128906, -0.07755956798791885, -0.03187904506921768, 0.055854681879282, -0.04792178422212601, 0.011486482806503773, -0.02086440846323967, -0.036037180572748184, 0.016750507056713104, 0.009392669424414635, -0.022972965613007545, 0.05644448846578598, -0.018313493579626083, 0.018092317506670952, -0.006834383588284254, -0.02458018995821476, -0.040195319801568985, -0.0005902673583477736, 0.0005391200538724661, 0.011589699424803257, 0.03509349003434181, -0.02222096361219883, -0.05570723116397858, -0.008648038841784, -0.0105427922680974, 0.043763648718595505, -0.02008291333913803, 0.003642055671662092, -0.016411367803812027, -0.02937236800789833, 0.060337211936712265, 0.0177826676517725, 0.06493770331144333, -0.012231114320456982, -0.023680733516812325, -0.021690137684345245, -0.040195319801568985, -0.02601047046482563, 0.029623035341501236, 0.03751169890165329, -0.018741104751825333, -0.004500961396843195, -0.049543753266334534, 0.0032660539727658033, 0.01971428468823433, 0.025980979204177856, -0.005868575535714626, -0.048894964158535004, 0.033117640763521194, -0.011663424782454967, -0.010056202299892902, 0.0338548980653286, 0.014833635650575161, 0.005031787324696779, -0.011014637537300587, 0.0086775291711092, 0.020289346575737, -0.028767814859747887, -0.0020071854814887047, -0.019625814631581306, -0.0202303659170866, 0.006509989965707064, -0.00788866262882948, 0.008876589126884937, -0.02208825573325157, -0.018814830109477043, 0.030124370008707047, -0.03521145135164261, -0.032970186322927475, 0.07573116570711136, -0.012887273915112019, 0.010999892838299274, 0.01228272169828415, -0.023592263460159302, 0.032468851655721664, -0.00766011280938983, 0.007085051387548447, -0.04650624841451645, -0.05337749421596527, 0.007413131184875965, -0.01261448860168457, 0.042613524943590164, -0.010292124934494495, 0.04007735848426819, 0.03229191154241562, 0.015017949976027012, -0.05078234523534775, -0.04650624841451645, 0.034031838178634644, -0.022678062319755554, 0.022471630945801735, 0.02494881860911846, -0.033471524715423584, -0.014450261369347572, 0.02084966190159321, -0.0743156298995018, 0.04364568740129471, 0.029976919293403625, -0.015556148253381252, 0.01122106984257698, 0.037895072251558304, -0.02000918798148632, 0.004895394667983055, 0.006513676140457392, -0.010041456669569016, 0.07991879433393478, -0.01843145489692688, -0.020540013909339905, 0.00045064909500069916, -0.039192646741867065, -0.04166983440518379, -0.03877978399395943, 0.005842771381139755, 0.03285222500562668, 0.020672719925642014, 0.013351745903491974, 0.05252227559685707, 0.01557089388370514, -0.02909220941364765, -0.014907361008226871, 0.02199978567659855, 0.007258307188749313, -0.02993268333375454, -0.011316914111375809, 0.03615514189004898, 0.013462334871292114, 0.05128367990255356, 0.014103749766945839, 0.039900414645671844, 0.004711079876869917, 0.025346938520669937, 0.00345589779317379, 0.010048829950392246, -0.03580125793814659, -0.013322255574166775, -0.019257184118032455, 0.017045410349965096, -0.0007358758593909442, -0.02766192890703678, -0.05051693320274353, -0.010417458601295948, 0.002604364650323987, -0.007479484658688307, 0.02000918798148632, -0.030198097229003906, -0.004781119525432587, 0.011302168481051922, -0.06116294115781784, 0.006771716754883528, -0.01707489974796772, -0.0498681478202343, -0.02278127893805504, 0.02286975085735321, 0.011206325143575668, 0.012732448987662792, -0.006959717720746994, 0.03364846482872963, -9.85506922006607e-05, 0.025686075910925865, -0.02222096361219883, -0.00466315820813179, 0.004582060035318136, 0.04579848051071167, 0.024830857291817665, -0.014951596967875957, 0.04641777649521828, -0.002764718374237418, 0.0007400229224003851, 0.03877978399395943, 0.019625814631581306, -0.011080991476774216, -0.007118227891623974, 0.024535953998565674, -0.006823324598371983, -0.02185233309864998, 0.02764718234539032, 0.00030918765696696937, 0.004969120491296053, 0.022486375644803047, 0.007955016568303108, -0.033117640763521194, -0.03931060805916786, 0.0014938694657757878, 0.005968105513602495, 0.005315631628036499, 0.006797520909458399, 0.01987648196518421, 0.013698257505893707, -0.014111122116446495, -0.044913772493600845, 0.0015427127946168184, -0.0012763782870024443, 0.015703599900007248, -0.018564162775874138, -0.022338924929499626, -0.03981194272637367, 0.04214167967438698, -0.03167261183261871, 0.019964952021837234, 0.019404636695981026, 0.014450261369347572, 0.06835858523845673, -0.04022480919957161, -0.03323560208082199, -0.023548027500510216, -0.001660674111917615, 0.023046692833304405, -0.006078694015741348, 0.00808035023510456, -0.00796976126730442, -0.0035996632650494576, -0.012872528284788132, 0.04671268165111542, 0.012349075637757778, -0.03058147057890892, -0.01821027882397175, -0.03008013591170311, -0.035329412668943405, -0.018416710197925568, 0.03279324620962143, 0.006543166469782591, 0.018534671515226364, -0.012120525352656841, 0.00857431348413229, 0.008272036910057068, 0.015113793313503265, -0.025745056569576263, -0.031761083751916885, 0.014347044751048088, 0.010904049500823021, -0.005079708993434906, 0.023621752858161926, -0.0013399667805060744, -0.03414979949593544, -0.049484770745038986, -0.00546676991507411, -0.025818781927227974, 0.03220343962311745, -0.0018035179236903787, -0.019198203459382057, -0.032262418419122696, -0.0120689170435071, 0.0073136016726493835, 0.004441980738192797, -0.0021509509533643723, 0.030994335189461708, 0.01906549744307995, -0.01850518211722374, 0.028472911566495895, 0.006561598274856806, 0.041256971657276154, 0.02716059237718582, -0.01943412609398365, 0.007461053319275379, 0.001387888565659523, 0.022678062319755554, -0.01577732525765896, 0.007357837166637182, -0.04550357908010483, -0.01828400418162346, 0.007354150526225567, -0.010107810609042645, -0.014302809722721577, -0.023769205436110497, -0.025671331211924553, 0.09607949107885361, -0.0019776951521635056, 0.00968020036816597, -0.004006998613476753, -0.011545463465154171, -0.017635216936469078, -0.00900192279368639, 0.03338305279612541, -0.050045087933540344, -0.02149844914674759, -0.019094988703727722, -0.026113685220479965, -0.036685969680547714, 0.017900628969073296, 0.034975528717041016, 0.013786728493869305, 0.0540262833237648, 0.04910139739513397, -0.046624209731817245, 0.04214167967438698, 0.031407199800014496, 0.02900373749434948, 0.02207351103425026, -0.007822309620678425, 0.009245217777788639, -0.0283549502491951, 0.029313387349247932, 0.035270433872938156, -0.022560101002454758, -0.013292765244841576, -0.013735120184719563, 0.004412490408867598, 0.012518644332885742, 0.0038337428122758865, 0.005024414975196123, 0.03232140094041824, 0.029475582763552666, 0.015003204345703125, 0.0206579752266407, -0.000878258841112256, 0.01915396936237812, -0.032262418419122696, -0.006016027182340622, -0.04214167967438698, 0.019891226664185524, 0.040401749312877655, -0.008729137480258942, -0.0337369367480278, -0.015202264301478863, 0.023105673491954803, -0.06316828727722168, -0.01629340648651123, -0.033265091478824615, -0.005957046523690224, -0.022751789540052414, -0.012570252642035484, 0.047626882791519165, 0.01964055933058262, -0.05809594690799713, 0.0028937384486198425, -0.020731700584292412, -0.00777070177718997, 0.02236841432750225, -0.018903300166130066, -0.008522705174982548, 0.01750251092016697, -0.009075649082660675, -0.01554140355437994, -0.041846778243780136, -0.0011768484255298972, -0.0177236869931221, -0.036184635013341904, 0.0011574954260140657, -0.013985788449645042, 0.018018590286374092, 0.05160807445645332, 0.02943134866654873, -0.026983650401234627, 0.023120418190956116, 0.010424830950796604, 0.010483811609447002, -0.024241050705313683, 0.02264857292175293, 0.0012809861218556762, -0.0018164198845624924, -0.010225771926343441, -0.04629981517791748, -0.018401965498924255, -0.03777711093425751, -0.020333582535386086, -0.006786461919546127, -0.01215001568198204, 0.022279944270849228, -0.04771535098552704, -0.0034595842007547617, 0.054262205958366394, 0.01532022561877966, 0.01250389963388443, -0.011648680083453655, 0.014951596967875957, -0.02099711447954178, 0.003785820910707116, 0.007140345871448517, -0.02014189399778843, -0.0063477931544184685, 0.021468959748744965, 0.022044021636247635, 0.015349715948104858, 0.016824232414364815, 0.025877762585878372, -0.024771876633167267, 0.009171492420136929, 0.015143283642828465, 0.017340313643217087, -0.0045157065615057945, -0.002189656952396035, 0.008707019500434399, -0.035830751061439514, -0.004482530057430267, -0.017532000318169594, 0.007173522375524044, -0.056473977863788605, 0.003811625065281987, -0.036685969680547714, -0.016411367803812027, -0.017045410349965096, -0.0022891866974532604, 0.006657441612333059, 0.013381236232817173, -0.033117640763521194, 0.008117212913930416, -0.019832246005535126, 0.011080991476774216, 0.0017095174407586455, -0.0033913878723978996, -0.014383907429873943, 0.002056950470432639, -0.039841435849666595, -0.02329736016690731, 0.02679196372628212, -0.014170102775096893, 0.005982850678265095, 0.0414339117705822, -0.021675391122698784, 0.004397745244204998, -0.09436905384063721, -0.021409979090094566, 0.008124585263431072, -0.019994443282485008, 0.003317662049084902, -0.011309540830552578, 0.01071236189454794, 0.011700288392603397, 0.04942579194903374, -0.015408696606755257, 0.008316272869706154, -0.02372496947646141, -0.01636713184416294, 0.016131209209561348, -0.0014404183020815253, -0.0035038196947425604, 0.010233144275844097, 0.044766318053007126, -0.007792819291353226, 0.03665648028254509, -0.007298856507986784, 0.00943690538406372, -0.04438294470310211, 0.040608182549476624, 0.0024845602456480265, -0.02422630600631237, -0.0245654433965683, 0.012680841609835625, 0.026187412440776825, -0.006498930975794792, -2.3845695977797732e-05, -0.004441980738192797, -0.03208547830581665, 0.04243658483028412, -0.010763970203697681, 0.034326743334531784, -0.001555614871904254, -0.0061597926542162895, 0.007947643287479877, 0.012275349348783493, -8.766460814513266e-05, -0.03995939716696739, 0.007763328962028027, -0.039133667945861816, -0.018814830109477043, -0.019552087411284447, 0.03423827141523361, -0.0014256731374189258, -0.00641414662823081, 0.009746553376317024, 0.017384549602866173, -0.02530270256102085, -0.016234425827860832, -0.01571834459900856, 0.0012192408321425319, 0.03143668919801712, -0.045120202004909515, -0.017192861065268517, -0.00010448331158841029, 0.027190083637833595, -0.012341702356934547, -0.0021140880417078733, -0.0005229925736784935, -0.034680627286434174, 0.008006623946130276, 0.01679474301636219, 0.01093353983014822, 0.012511271983385086, -0.0023924028500914574, 0.013019979931414127, 0.03671545907855034, 0.03229191154241562, -0.013432844541966915, -0.002460599411278963, 0.03877978399395943, 0.018401965498924255, 0.026909925043582916, -0.020127149298787117, 0.026393843814730644, -0.04078512638807297, 0.0005188454524613917, -0.00317942607216537, -0.007479484658688307, 0.01921295002102852, -0.01000459399074316, -0.00473319785669446, 0.006745912600308657, 0.005522063933312893, -0.0021915000397711992, -0.014487124048173428, 0.01117683481425047, -0.015954267233610153, 0.006613206118345261, 0.011044127866625786, -0.004862218163907528, 0.01414798479527235, -0.007273052353411913, -0.006108184345066547, -0.006119243334978819, 0.016588309779763222, 0.03830793872475624, 0.029401857405900955, -0.00853744987398386, 0.025553369894623756, -0.03355999290943146, -0.018682124093174934, -0.006889678072184324, -0.020775936543941498, -0.01125056017190218, 0.006775402929633856, 0.006023399531841278, 0.036391064524650574, 0.01532022561877966, 0.03571278974413872, 0.003575702430680394, 0.03889774531126022, 0.006181910168379545, -0.029962174594402313, 0.040047865360975266, -0.02471289597451687, 0.023665988817811012, -0.030905865132808685, -0.05859728157520294, 0.0049617476761341095, 0.005890693049877882, 0.015895286574959755, 0.055559780448675156, -0.012046799063682556, 0.013513943180441856, -0.011832994408905506, -0.027101611718535423, 0.03571278974413872, -0.0016440858598798513, 0.027057375758886337, -0.0036033494397997856, -0.02565658651292324, 0.015674110502004623, -0.01829874888062477, -0.019699539989233017, 0.0017316351877525449, 0.004548883065581322, 0.006823324598371983, 0.0019408322405070066, 0.0014699086314067245, 0.04116849973797798, -4.118278229725547e-05, -0.0008547587203793228, 0.026261137798428535, 0.013631904497742653, 0.012924136593937874, -0.001724262605421245, -0.015526657924056053, 0.010616518557071686, 0.07814937084913254, -0.017900628969073296, 0.058420341461896896, -0.034326743334531784, -0.015821561217308044, -0.030610961839556694, 0.01921295002102852, 0.006749598775058985, 0.005783790722489357, -0.004294529091566801, 0.005776418372988701, 0.010270006954669952, -0.01608697511255741, -0.008802862837910652, -0.013034725561738014, -0.02599572390317917, 0.01936040073633194, -0.02149844914674759, -0.013801474124193192, -0.022029275074601173, 0.008382625877857208, 0.039487551897764206, 0.001959263812750578, -0.013735120184719563, 0.03494603931903839, 0.010557537898421288, 0.009208355098962784, -0.04789229482412338, -0.02951981872320175, 0.02329736016690731, 0.02742600627243519, 0.055766209959983826, 0.0020237737335264683, -0.04432396590709686, 0.008957687765359879, -0.006204028148204088, 0.02901848405599594, 0.024550698697566986, -0.0067164222709834576, 0.020304091274738312, 0.02480136603116989, -0.0029582486022263765, 0.010365850292146206, 0.015762580558657646, -0.005746928043663502, -0.0009261806262657046, 0.017753178253769875, -0.021985040977597237, -0.014737791381776333, 0.009584357030689716, -0.03945805877447128, -0.008640666492283344, 0.025553369894623756, -0.003658643923699856, -0.002877150196582079, -0.035683296620845795, 0.020746447145938873, 0.0036107220221310854, -0.00024790308088995516, -0.009805534034967422, -0.014745164662599564, -0.017237097024917603, 0.003218132071197033, 0.04214167967438698, 0.04078512638807297, 0.0347101166844368, -0.03417929261922836, -0.012990489602088928, -0.026983650401234627, -0.0012441232101991773, 0.007814937271177769, -0.00016173602489288896, 0.007007639389485121, -0.0007414052961394191, -0.00634410697966814, -0.026806708425283432, 0.0198027566075325, -0.0101151829585433, 0.025627095252275467, 0.01785639487206936, -0.01794486492872238, 0.045061223208904266, 0.015393951907753944, 0.008279410190880299, 0.02651180513203144, -0.004688962362706661, -0.007261993363499641, -0.004696334712207317, -0.012909390963613987, 0.002738914219662547, -0.0037618600763380527, -0.03765914961695671, -0.0027518162969499826, 0.027824124321341515, 0.021749118342995644, 0.02621690183877945, 0.011139972135424614, -0.02800106629729271, 0.0010607303120195866, 0.02400512807071209, 0.0034780155401676893, 0.01228272169828415, 0.01314531359821558, 0.007464739494025707, 0.015526657924056053, -0.008987178094685078, 0.004091782961040735, -0.0061339884996414185, 0.015511913225054741, -0.0027905222959816456, -0.007682230789214373, -0.013034725561738014, -0.00223204935900867, 0.009105139411985874, -0.028060046955943108, 0.03423827141523361, -0.002125146798789501, -0.029770486056804657, -0.003896409645676613, 0.0025416978169232607, 0.010196281597018242, 0.02721957303583622, 0.01965530402958393, -0.04951426386833191, 0.01493685133755207, 0.017546745017170906, -0.022044021636247635, 0.002775777131319046, 0.0005262180347926915, -0.0011602601734921336, 0.027912596240639687, 0.011169462464749813, -0.0037120950873941183, -0.018387220799922943, 0.0008201997843571007, 0.034621644765138626, -0.0380130335688591, -0.0027776204515248537, 0.024255795404314995, -0.014442888088524342, 0.012997861951589584, -0.0177826676517725, -0.005654770415276289, -0.0198027566075325, 0.01657356508076191, 0.020672719925642014, -0.03302916884422302, 0.028738325461745262, -0.024550698697566986, -0.005381985101848841, 0.03146618232131004, 0.0051128859631717205, 0.005315631628036499, -0.002208088291808963, -0.024698151275515556, -0.01714862696826458, 0.008721765130758286, 0.0006271302700042725, 0.005488887429237366, 0.018166042864322662, 0.054910991340875626, -0.02014189399778843, -0.0041765677742660046, 0.015202264301478863, 0.014929478988051414, 0.021247781813144684, 0.029637780040502548, 0.0430263914167881, 0.046919114887714386, 0.007144032046198845, 0.028236988931894302, -0.005415161605924368, -0.007114541716873646, 0.016057483851909637, -0.018387220799922943, -0.008257292211055756, 0.011796131730079651, 0.02049577794969082, -0.02944609336555004, 0.011781386099755764, 0.015556148253381252, -0.03709883242845535, 0.007940270937979221, -0.007763328962028027, -0.008131958544254303, -0.0034577411133795977, 0.013388609513640404, 0.00702238455414772, 0.008957687765359879, 0.006720108445733786, 0.006086066830903292, -0.015143283642828465, -0.006377283483743668, 0.028119027614593506, 0.027308044955134392, -0.0003322269767522812, 0.010373223572969437, 0.0710127130150795, 0.006491558626294136, -0.00614504748955369, -0.006049203686416149, 0.011206325143575668, -0.004740570206195116, -0.019478362053632736, -0.010867185890674591, -0.007991879247128963, 0.03559482842683792, 0.002528795739635825, -0.02400512807071209, -0.027484986931085587, 0.016175445169210434, 0.009377924725413322, -0.02807479351758957, -0.016470348462462425, 0.024108344689011574, -0.01260711532086134, -0.028399186208844185, 0.02049577794969082, 0.007918152958154678, -0.006285126321017742, -0.031613633036613464, -0.006664814427495003, -0.00732097402215004, 0.00175928242970258, -0.01192883774638176, -0.01621968112885952, -0.005636339075863361, -0.014383907429873943, -0.03078790381550789, 0.033766426146030426, 0.05617907643318176, 0.02608419582247734, 0.032409872859716415, 0.0027978948783129454, -0.0035148784518241882, 0.005168179981410503, 0.013027352280914783, 0.002567501738667488, -0.02564183995127678, 0.0031628378201276064, -0.009658082388341427, 0.02121829241514206, 0.01573309116065502, -0.02186707966029644, 0.0022689122706651688, 0.014302809722721577, -0.03093535453081131, -0.04989763721823692, 0.002233892446383834, -0.00031586908153258264, -0.007449994329363108, 0.0029895820189267397, -0.0006197576876729727, 0.06470178067684174, 0.035565335303545, -0.0007354150875471532, 0.01906549744307995, -0.007007639389485121, -0.006734853610396385, -0.004036488942801952, 0.021690137684345245, -0.013314883224666119, 0.006849128752946854, 0.008426861837506294, -0.026261137798428535, 0.02937236800789833, -0.05505844205617905, 0.004445666912943125, 0.01900651678442955, 0.003378485795110464, 0.016676781699061394, 0.015497167594730854, 0.03645004704594612, 0.005264023784548044, 0.034975528717041016, 0.03777711093425751, -0.03857335075736046, -0.03695138171315193, 0.007461053319275379, -0.020908642560243607, 0.023680733516812325, 0.012496527284383774, -0.016897957772016525, -0.014221711084246635, 0.019094988703727722, -0.028753070160746574, 0.010343733243644238, -0.014907361008226871, 0.005569986067712307, -0.0003131043631583452, 0.03674494847655296, -0.0012247702106833458, -0.006749598775058985, -0.07189742475748062, -0.026172665879130363, -0.008308900520205498, -0.039605513215065, 0.001764811808243394, 0.02242739498615265, -0.01928667537868023, 0.01529073528945446, 0.00857431348413229, -0.002678090473636985, -0.018991772085428238, -0.025686075910925865, 0.009377924725413322, -0.005603162571787834, -0.042200662195682526, 0.02993268333375454, -0.005109199322760105, -0.0008257292211055756, 0.016396623104810715, 0.009473768062889576, 0.008102468214929104, -0.007637995295226574, -0.008095094934105873, -0.008839726448059082, 0.004969120491296053, -0.024668660014867783, -0.0030798963271081448, -0.0173550583422184, -0.019094988703727722, -0.00035687905619852245, -0.008869216777384281, -0.028458166867494583, 0.016322897747159004, -0.000811444828286767, 0.026202157139778137, 0.021704882383346558, 0.02014189399778843, -0.004434608388692141, 0.011847740039229393, 0.007302542682737112, 0.0036033494397997856, -0.04774484410881996, 0.0059017520397901535, 0.011877230368554592, -0.06481974571943283, 0.002423736499622464, -0.018814830109477043, 0.007564269471913576, 0.05042846128344536, -0.010859813541173935, 0.026349607855081558, 0.014487124048173428, 0.05234533175826073, 0.010505929589271545, 0.003551741363480687, 0.019670048728585243, 0.04509071260690689, 0.022737042978405952, 0.0015113793779164553, -0.04556255787611008, 0.0010201811091974378, -0.0065874019637703896, 0.004364568740129471, -0.009289453737437725, 0.01571834459900856, -0.004099155776202679, 0.020023932680487633, -0.042200662195682526, 0.025597605854272842, -0.011560209095478058, -0.0017684980994090438, -0.03541788458824158, -0.03771813213825226, 0.04202371835708618, -0.018313493579626083, -0.029740996658802032, 0.0044051180593669415, -0.005223474465310574, 0.019183458760380745, -0.0010966715635731816, -0.027912596240639687, 0.002976680174469948, 0.0003488152869977057, -0.020274601876735687, 0.008625920861959457, -0.01282829325646162, 0.020982369780540466, 0.011280050501227379, 0.004655785858631134, 0.03388438746333122, -0.03134822100400925, -0.013867827132344246, -0.009400042705237865, -0.010535419918596745, -0.0023131477646529675, -0.03199700638651848, -0.00925259105861187, 0.02036307193338871, 0.024963563308119774, 0.026246393099427223, -0.004799550864845514, 0.013425472192466259, -0.03308814764022827, 0.0020127149764448404, -0.008670156821608543, 0.00467790337279439, 0.005334063433110714, -0.013012607581913471, 0.021026603877544403, 0.01908024214208126, -0.011781386099755764, 0.0006842677830718458, 0.00744630815461278, 0.010697617195546627, -0.009879260323941708, -0.0014551634667441249, -0.0038079386577010155, 0.011139972135424614, -0.01964055933058262, -0.010483811609447002, -0.001456085010431707, 0.04659472033381462, 0.021808099001646042, -0.05517640337347984, 0.03836691752076149, -0.021306762471795082, -0.0065837157890200615, -0.0029176995158195496, 0.015836305916309357, 0.00709242420271039, 0.02051052451133728, 0.002165696118026972, 0.011980446055531502, 0.004994924645870924, 0.022751789540052414, 0.0014118495164439082, -0.010653381235897541, 0.009407415054738522, -0.015158029273152351, -0.022456886246800423, 0.015364461578428745, -0.013307510875165462, 0.008154075592756271, -0.034415215253829956, -0.020908642560243607, 0.01694219373166561, 0.013300138525664806, 0.0037710757460445166, 0.010601772926747799, 0.027691418305039406, 0.03323560208082199, 0.006756971590220928, -0.00799925159662962, 0.01260711532086134, -0.02764718234539032, 0.02850240282714367, 0.0005501789273694158, -0.009377924725413322, -0.016204936429858208, -0.00689705042168498, 0.02006816864013672, -0.006513676140457392, -0.011051501147449017, 0.003557270858436823, -0.0007460131892003119, 0.010343733243644238, 0.003452211618423462, -0.012680841609835625, -0.011729778721928596, -0.0033029168844223022, 0.018062826246023178, -0.01880008541047573, -0.03830793872475624, 0.038543861359357834, -0.006664814427495003, -0.005647398065775633, 0.0237102247774601, 0.0005534044466912746, 0.007608504965901375, -0.0027813066262751818, 0.012356447987258434, 0.002294716192409396, -0.014715674333274364, 0.00764536764472723, -0.038750290870666504, 0.0005174631369300187, -0.027396515011787415, -0.020318835973739624, 0.03149567171931267, 0.008655411191284657, -0.049278341233730316, 0.045621540397405624, 0.03580125793814659, 0.03606667369604111, -0.007955016568303108, 0.015452932566404343, -0.007015011738985777, 0.007354150526225567, 0.004692648537456989, 0.009879260323941708, 0.007343092001974583, 0.023489046841859818, 0.013322255574166775, 0.019846990704536438, -0.0023186770267784595, -0.006509989965707064, 0.0004884335794486105, -0.032822735607624054, 0.007261993363499641, 0.032262418419122696, 0.0026651883963495493, 0.024182070046663284, -0.015497167594730854, -0.025258466601371765, 0.021056095138192177, 0.010365850292146206, -0.007059247232973576, -0.013123196549713612, 0.016706271097064018, 0.010085692629218102, -0.005887006875127554, 0.03577176854014397, 0.00986451469361782, 0.03000640869140625, 0.02629062719643116, 0.01096303015947342, 0.04134543985128403, -0.0030559352599084377, 0.06328624486923218, 0.019522598013281822, 0.014465006068348885, -0.011029383167624474, 0.010999892838299274, -0.004556255880743265, 0.0482756681740284, -0.008987178094685078, 0.02801581285893917, -0.013160059228539467, 0.04258403554558754, 0.013845709152519703, -0.0028458167798817158, 0.0388682521879673, 0.010270006954669952, -0.003380328882485628, -0.015379206277430058, 0.01071236189454794, -0.01764996163547039, -0.0042539797723293304, -0.004626295529305935, 0.06334522366523743, 0.014140612445771694, 0.020982369780540466, -0.01374986581504345, 0.006122929509729147, 0.03058147057890892, 0.024535953998565674, -0.012798802927136421, -0.029210170730948448, -0.03509349003434181, 0.0270721223205328, 0.023385830223560333, 0.0018726359121501446, -0.010048829950392246, 0.039487551897764206, 0.01453873235732317, -0.014988459646701813, -0.013912062160670757, -0.0016403995687142015, -0.02686568908393383, -0.007424190174788237, 0.03695138171315193, -0.000126716258819215, 0.004703707527369261, -0.0164998397231102, 0.008058232255280018, 0.01507693063467741, 0.02294347621500492, -0.025111015886068344, -0.017900628969073296, -0.03830793872475624, 0.014310182072222233, 0.006874932907521725, 0.011162089183926582, -0.006255635991692543, 0.023592263460159302, 0.005304573103785515, 0.018534671515226364, 0.047125544399023056, 0.035270433872938156, -0.01225323136895895, -0.002878993283957243, 0.011523346416652203, 0.014015278778970242]" -How Ndustrial Is Providing Fast Real-Time Queries and Safely Storing Client Data With 97 % Compression,"can handle this data and not just store it efficiently but query it efficiently” comes in. And along with it came Timescale.Compression was a game-changer from our perspective as a company: not having to worry about getting databases on the order of 5, 10, or 15 TB to store this information was a massive factor for us. But then we want the dashboarding that we have, Nsight, which is our energy intensity platform, to be very dynamic.We don’t always know ahead of time what our customers want to visualize. We’re not trying to hard code a bunch of metrics we can report on quickly. We tried to build a much more dynamic platform, and most of our querying is actually on demand. There is some downsampling in between to make things more efficient, but the queries we are providing in our dashboard and arbitrary metrics are all things our customers are creating, and they happen on demand.Getting data back efficiently without feeling like the UI is slow was a major win for us in using TimescaleDB. Before, we had a lot more pre-aggregation. That was the biggest power I've seen from it, along with not having to deal with having an entire team of database administrators (DBAs) to go through and make sure that's possible [Ndustrial uses Managed Service for TimescaleDB]. It’s also one of the more valuable benefits for our customers, whether or not they realize this is even happening.Choosing (and Using!) TimescaleDBWhen I joined the company, Ndustrial had a proof-of-concept (PoC) running for TimescaleDB, so I think the company as a whole was moving in that direction. I had some experience with TimescaleDB and other time-series databases. This was only three years ago, but even then, Timescale was very prominent in the world of “Hey, we need a time-series database to be stored somewhere.”“For one of our larger customers, we normally store about 64 GB of uncompressed data per day. With compression, we’ve seen, on average, a 97 percent reduction”Other alternatives we researched were InfluxDB and Prometheus for storing this data. But what brought it home for us is that PostgreSQL is a foundation in our company. It is a standard of what we expect from developers and, ultimately, the main reason the PoC started to test out how we could work",https://www.timescale.com/blog/how-ndustrial-is-providing-fast-real-time-queries-and-safely-storing-client-data-with-97-compression/,485,"[0.002135609509423375, -0.0047034695744514465, 0.05277849733829498, 0.01563427411019802, 0.09108027070760727, 0.03120993822813034, -0.01806659810245037, 0.016264334321022034, -0.003553244052454829, 0.0029469947330653667, 0.03759844973683357, -0.00208066264167428, 0.005630243569612503, -0.03991355374455452, 0.04923257976770401, 0.021158287301659584, -0.010139566846191883, -0.032352838665246964, -0.04299059137701988, 0.0038902529049664736, -0.011524233035743237, 0.04296128451824188, 0.020645447075366974, 0.008395913057029247, -0.005923294462263584, -0.020103303715586662, -0.02728305384516716, 0.05647093802690506, 0.03226492181420326, -0.0927799642086029, -0.0077731795608997345, -0.04184769093990326, -0.04955493286252022, 0.007963662967085838, 0.04231657460331917, 0.02977398782968521, 0.041642554104328156, 0.015121434815227985, 0.030477309599518776, 0.021685779094696045, -0.014762447215616703, 0.035254042595624924, 0.013626874424517155, 0.015267960727214813, 0.008696290664374828, -0.01712883450090885, -0.03499029576778412, -0.02973002940416336, -0.001569654792547226, 0.04920327290892601, -0.02542218007147312, 0.008579069748520851, -0.010623101145029068, -0.040675487369298935, 0.026022933423519135, -0.04436793178319931, -0.0036521488800644875, 0.03718817979097366, -0.005831716116517782, -0.013663506135344505, 0.01117989793419838, -0.07244221866130829, 0.04413348808884621, 0.04589179530739784, -0.0007797905709594488, 0.012344775721430779, 0.019165540114045143, 0.05538665130734444, -0.032851025462150574, 0.021729735657572746, 0.044104184955358505, 0.022770067676901817, -0.014828383922576904, -0.0039708418771624565, 0.026037586852908134, -0.05172351375222206, -0.011824610643088818, 0.046946778893470764, 0.011883220635354519, -0.03065314143896103, 0.004630206618458033, -0.009890473447740078, -0.035898756235837936, 0.009626727551221848, 0.017920073121786118, -0.017348622903227806, -0.00801494624465704, -0.017832156270742416, 0.005278582219034433, 0.043195728212594986, -0.006736511364579201, 0.03326129540801048, 0.03645555302500725, 0.01749514788389206, 0.021788345649838448, 0.011106635443866253, -0.00781713705509901, 0.027033960446715355, -0.001836148090660572, 0.030330784618854523, -0.002712553832679987, -0.0050917621701955795, -0.00805157795548439, -0.006773142609745264, 0.016806477680802345, 0.013817357830703259, 0.016381554305553436, -0.011289792135357857, 0.011385033838450909, 0.02136342227458954, -0.05019964650273323, 0.0030990149825811386, -0.05418514087796211, 0.022667499259114265, -0.033906009048223495, -0.0033096454571932554, -0.01714348793029785, 0.012952856719493866, 0.01050588022917509, 0.019282760098576546, -0.032352838665246964, -0.008395913057029247, -0.029627462849020958, 0.03167881816625595, 0.019150886684656143, -0.029041361063718796, 0.01045459695160389, -0.04536430537700653, -0.031942564994096756, -0.0027052275836467743, 0.028601784259080887, -0.024220669642090797, 0.04621415212750435, -0.036777909845113754, -0.011538885533809662, 0.008623027242720127, -0.018843183293938637, -0.022711457684636116, 0.005516686011105776, 0.006220008712261915, -0.01383933611214161, -0.03712956979870796, 0.03458002582192421, -0.017172792926430702, -0.03200117498636246, 0.0391223169863224, -0.03027217462658882, 0.051371850073337555, -0.008894099853932858, -0.020249828696250916, -0.015736842527985573, -0.030535921454429626, -0.05705704167485237, -0.05503498762845993, 0.03686582297086716, 0.001632843865081668, 0.030008427798748016, 0.025920366868376732, 0.004692479968070984, -0.07654494047164917, -0.015927325934171677, 0.02931975945830345, -0.03460932895541191, -0.016879741102457047, -0.006062493659555912, -0.004520312417298555, -0.024191364645957947, -0.04184769093990326, -0.08475036919116974, 0.00904795154929161, -0.045100558549165726, -0.03686582297086716, -0.006608301308006048, 0.03226492181420326, 0.05154768005013466, -0.003247372107580304, 0.003868273925036192, -0.04788454249501228, 0.018330343067646027, -0.03666068613529205, -0.07127001881599426, -0.002302282489836216, -0.013275212608277798, 0.0031338147819042206, -0.020645447075366974, -9.449751814827323e-05, -0.0632990300655365, 0.022550279274582863, 0.004139346070587635, 0.037774283438920975, -0.05638302490115166, 0.05535734444856644, 0.004930584225803614, 0.027019307017326355, 0.009231108240783215, -0.06101322919130325, 0.03364226222038269, 0.025700578466057777, -0.037276096642017365, 0.00261914380826056, 0.0635334700345993, 0.03062383644282818, 0.05403861403465271, 0.02296055108308792, 0.0022216932848095894, -0.005677864421159029, 0.010102935135364532, -0.005425107665359974, -0.052338920533657074, -0.05011172965168953, -0.025055864825844765, 0.012381407432258129, 0.010058977641165257, 0.0031356464605778456, -0.043195728212594986, 0.0004585791321005672, -0.057174261659383774, -0.02537822164595127, -0.01714348793029785, -0.005666874814778566, 0.03698304295539856, 0.05670538172125816, -0.014388807117938995, -0.042668234556913376, -0.021568557247519493, 0.03355434536933899, 0.0032894981559365988, -0.015751494094729424, 0.032821718603372574, 0.0021667461842298508, 0.012015093117952347, -0.0630059763789177, -0.00512473052367568, -0.014220302924513817, -0.010732995346188545, -0.005450749769806862, 0.032323531806468964, -0.0244258064776659, -0.0054800547659397125, -0.02296055108308792, -0.02542218007147312, -0.021275507286190987, -0.004670501220971346, -0.006289608310908079, -0.011084656231105328, 0.030477309599518776, -0.03792080655694008, -0.05691051483154297, -0.014718489721417427, 0.04272684454917908, -0.005663211923092604, -0.015590316615998745, -0.002701564459130168, -0.04779662936925888, -0.04228726774454117, -0.0534232072532177, -0.018784573301672935, 0.03349573537707329, 0.001151141244918108, 0.018740614876151085, 0.0050661200657486916, -0.018872488290071487, 0.006619290914386511, 0.013648852705955505, -0.041583944112062454, 0.0390344001352787, 0.016674606129527092, -0.038829267024993896, -0.013018793426454067, -0.003055057255551219, 0.03598666936159134, 0.015751494094729424, 0.034316278994083405, -0.04515916854143143, -0.017685631290078163, -0.01513608731329441, -0.010095609351992607, -0.022520974278450012, 0.01513608731329441, 0.013092055916786194, -0.02381039783358574, -0.0680464580655098, -0.008674311451613903, -0.0007422433700412512, 0.007267666514962912, -0.015810104086995125, 0.00921645574271679, 0.02238910086452961, -0.014476722106337547, -0.030535921454429626, -0.002668596338480711, -0.00512106716632843, 0.027004655450582504, 0.010886847041547298, 0.009399612434208393, -0.0006227334961295128, -0.020367048680782318, -0.0022363460157066584, -0.029510241001844406, -0.03557639941573143, 0.015956630930304527, -0.01363420020788908, 0.019224150106310844, -0.019619768485426903, 0.0063299029134213924, 0.0059416103176772594, -0.007699916604906321, -0.002474449807778001, -0.03373017534613609, 0.007575369905680418, 0.009231108240783215, -0.007209056057035923, 0.002463460434228182, -0.0022967876866459846, -0.0438404381275177, 0.008234734646975994, 0.07097696512937546, -0.018388954922556877, -0.02092384546995163, -0.048031069338321686, -0.046976085752248764, -0.07525551319122314, 0.00011275597353233024, -0.0010128577705472708, 0.018359648063778877, 0.0015256970655173063, 0.007919704541563988, 0.009062604047358036, 0.030565226450562477, -0.026447858661413193, -0.011026046238839626, -0.006864720955491066, 0.048968832939863205, 0.027004655450582504, -0.025085171684622765, -0.06259571015834808, 4.4215223169885576e-05, -0.012461996637284756, -0.032352838665246964, 0.007568043656647205, -0.024469763040542603, -0.0169676560908556, -0.07214917242527008, 0.018638048321008682, 0.035810839384794235, 0.016821131110191345, -0.0038646108005195856, 0.013656179420650005, 0.02685813046991825, 0.0035001286305487156, -0.0292611476033926, -0.010146892629563808, 0.013121360912919044, 0.024586984887719154, 0.03323198854923248, 0.0006689806468784809, -0.0097805792465806, -0.008212756365537643, -0.018682004883885384, -0.006150409113615751, -0.0194439385086298, 0.02331221103668213, 0.036719296127557755, -0.002450639382004738, -0.009890473447740078, 0.010930804535746574, -0.039708420634269714, 0.0194878950715065, -0.002631964860484004, -0.0029067001305520535, 0.028147554025053978, 0.0001516768243163824, -0.012850289233028889, -0.001415802980773151, -0.04999450966715813, -0.012791679240763187, 0.03991355374455452, 0.021246202290058136, -0.006564343813806772, 0.026447858661413193, 0.03074105642735958, 0.034726548939943314, 0.017363274469971657, -0.00693432055413723, 0.027869155630469322, 0.044514454901218414, 0.008469175547361374, 0.029832597821950912, -0.06658120453357697, -0.02817685902118683, 0.02924649603664875, -0.010227481834590435, -0.015766147524118423, -0.026652993634343147, -0.041583944112062454, 0.0058939894661307335, 0.004348145332187414, -0.0007440749322995543, 0.03314407542347908, 0.0018306534038856626, 0.01531191822141409, 0.014740468002855778, -0.04442654177546501, -0.02584710344672203, 0.0007129382574930787, 0.004285871982574463, 0.00802227295935154, 0.015839409083127975, -0.016176419332623482, -0.030946191400289536, -0.02341477945446968, 0.0004922341904602945, 0.04132020100951195, -0.022696804255247116, 0.0194439385086298, -0.018271733075380325, -0.05005311965942383, 0.06705008447170258, 0.010674385353922844, 0.07443496584892273, -0.02732701227068901, 0.013194624334573746, -0.04137881100177765, -0.013516980223357677, -0.03619180619716644, 0.06728452444076538, 0.035283349454402924, -0.04006008058786392, -0.01800798811018467, -0.05447819083929062, 0.01441078633069992, -0.007729221601039171, 0.0243671964854002, -0.0025293969083577394, -0.017641674727201462, 0.02381039783358574, -0.01657203771173954, -0.025173086673021317, 0.03305615857243538, -0.0017299170140177011, -0.030565226450562477, 0.018403606489300728, 0.013956557027995586, -0.021187592297792435, -0.025524746626615524, -0.022257227450609207, -0.02782519906759262, -0.02877761423587799, -0.004318839870393276, -0.00415399856865406, 0.03513682261109352, -0.0268141720443964, -0.020777320489287376, 0.0194439385086298, -0.05796549841761589, -0.04175977781414986, 0.051342546939849854, -0.01945859007537365, 0.018374301493167877, -0.010872194543480873, -0.05711565166711807, 0.03367156535387039, -0.027576105669140816, -0.017421886324882507, -0.03935675695538521, -0.03929814696311951, 0.0632990300655365, -4.4014894228894264e-05, 0.031063413247466087, -0.01167808473110199, -0.007802484557032585, 0.024586984887719154, -0.008974689058959484, -0.031473685055971146, -0.012300818227231503, 0.038829267024993896, 0.008945384062826633, 0.031004801392555237, 0.014029819518327713, -0.045452218502759933, 0.027590757235884666, -0.016205724328756332, -0.03255797177553177, 0.07572439312934875, 0.01843291148543358, -0.0014341186033561826, 0.008139492943882942, 0.033876702189445496, -0.01557566411793232, -0.0004171398759353906, -0.011348402127623558, -0.013773399405181408, 0.05565039813518524, -0.01808124966919422, -0.024997254833579063, 0.011985788121819496, -0.06523316353559494, -0.0536869540810585, 0.00682076346129179, 0.00512106716632843, 0.043576691299676895, 0.005996557418256998, 0.00874757394194603, 0.04463167488574982, -0.009003994055092335, 0.0015220339410007, 0.0014231292298063636, -0.007780505809932947, -0.001979926135390997, -0.05521082133054733, 0.0038133268244564533, 0.02722444385290146, 0.03156159818172455, 0.029012054204940796, -0.02148064225912094, 0.020161913707852364, 0.014564638026058674, 0.00877687893807888, -0.009839189238846302, 0.012535259127616882, -0.0194439385086298, -0.035371262580156326, -0.010469249449670315, -0.00048765528481453657, -0.020542878657579422, 0.0072859819047153, -0.05998755246400833, -0.011121287941932678, -0.001381003181450069, -0.008659658953547478, 0.01117989793419838, -0.05107880011200905, 0.012198250740766525, 0.012300818227231503, -0.0487636961042881, 0.009187150746583939, -0.013267886824905872, -0.029817946255207062, -0.016469469293951988, 0.027458883821964264, 0.026609037071466446, 0.030594531446695328, 0.020850583910942078, 0.016220375895500183, 0.022022787481546402, 0.002503755036741495, -0.002952489536255598, -0.007439833600074053, -0.00497820507735014, 0.02575918845832348, 0.017451191321015358, -0.0389464870095253, 0.022140007466077805, -0.01367083191871643, 0.025583358481526375, 0.04134950414299965, 0.024455111473798752, 0.016161765903234482, 0.013363128527998924, -0.0032968244049698114, 0.0019872526172548532, -0.01746584288775921, 0.0051174042746424675, 0.009209129959344864, 0.016689257696270943, 0.016176419332623482, 0.0010659731924533844, -0.00574013777077198, -0.05198725685477257, 0.027033960446715355, 0.00974394753575325, 0.003490970702841878, 0.005498370621353388, 0.01758306287229061, 0.00827869214117527, -0.003798674326390028, -0.04741566255688667, -0.014593943022191525, -0.005234624724835157, 0.009597422555088997, -0.02684347704052925, -0.01756841130554676, -0.029363716021180153, 0.043166421353816986, -0.01604454591870308, 0.015326570719480515, 0.024059491232037544, 0.01068903785198927, 0.04829481616616249, -0.031913261860609055, -0.022770067676901817, -0.011663432233035564, -0.0020495259668678045, 0.007927031256258488, -0.00424557738006115, 0.029510241001844406, 0.002360892714932561, 0.0020202207379043102, -0.025173086673021317, 0.02877761423587799, 0.021773694083094597, 0.004937910474836826, -0.006743837613612413, -0.03551778942346573, -0.02829408086836338, 0.027605410665273666, 0.0007797905709594488, 0.012388733215630054, 0.041173674166202545, -0.00585735822096467, 0.03997216373682022, -0.0017986008897423744, 0.0002667222579475492, -0.042199354618787766, -0.03258727863430977, -0.005912305321544409, -0.00874757394194603, -0.02249166928231716, 0.013048098422586918, -0.019150886684656143, -0.03836038336157799, -0.037305399775505066, -0.028924139216542244, -0.04193560779094696, 0.02235979586839676, 0.00013439139002002776, -0.0021667461842298508, -0.02621341682970524, -0.03636763617396355, 0.018301038071513176, 0.0022564930841326714, 0.005011172965168953, 0.03742261976003647, 0.05110810324549675, -0.010945457033813, 0.025993628427386284, 0.025978976860642433, 0.03692443296313286, 0.016806477680802345, -0.011531558819115162, 0.012586543336510658, 0.020689405500888824, 0.005659548565745354, -0.004787721671164036, 0.007282319013029337, -0.0487930029630661, -0.011875893920660019, 0.011128613725304604, -0.011736694723367691, -0.03686582297086716, 0.00019677920499816537, -0.032382141798734665, 0.08088209480047226, 0.018769919872283936, 0.012813657522201538, 0.008176124654710293, -0.01906297169625759, -0.027151180431246758, -0.021715084090828896, 0.017260707914829254, -0.04729844257235527, -0.009231108240783215, -0.019854210317134857, -0.010139566846191883, -0.03668999299407005, 0.021641820669174194, 0.03551778942346573, 0.012894246727228165, 0.044543761759996414, 0.03273380175232887, -0.03217700496315956, 0.03323198854923248, 0.03516612574458122, 0.025554051622748375, 0.024689551442861557, -0.003188761882483959, 0.0005462655099108815, -0.017451191321015358, 0.03261658176779747, 0.06124767288565636, -0.022550279274582863, 0.017304664477705956, -0.011985788121819496, -0.0011392360320314765, -0.0062163458205759525, -0.011524233035743237, -0.014652553014457226, 0.027004655450582504, 0.022784719243645668, 0.03373017534613609, 0.014974908903241158, -0.0026814171578735113, 0.01293820422142744, -0.03273380175232887, -0.006392176263034344, -0.05019964650273323, 0.019194845110177994, 0.038331080228090286, -0.025099823251366615, -0.03736400976777077, -0.0012308144941926003, 0.012190924026072025, -0.07033225148916245, -0.031385768204927444, -0.02725374884903431, -0.008498480543494225, -0.012425364926457405, -0.03156159818172455, 0.05005311965942383, 0.002322429558262229, -0.032909635454416275, 0.0052053192630410194, -0.019209496676921844, 0.009597422555088997, 0.02533426508307457, -0.009311697445809841, -0.02923184260725975, 0.027913114055991173, -0.024015534669160843, 0.001168541144579649, -0.04466098174452782, -0.014498701319098473, -0.031883955001831055, -0.04471959173679352, 0.040616877377033234, -0.006743837613612413, 0.021246202290058136, 0.02975933440029621, 0.03015495464205742, -0.013919925317168236, 0.0028261111583560705, -0.009597422555088997, 0.013055425137281418, -0.003458002582192421, 0.017275359481573105, -0.0004494212626013905, 0.002348071662709117, -0.01123850792646408, -0.039679113775491714, -0.0015476759290322661, -0.04149603098630905, 0.0015128761297091842, -0.015531706623733044, -0.03496099263429642, -0.0033078137785196304, -0.05735009163618088, 0.008212756365537643, 0.0051174042746424675, 0.03862413018941879, 0.005428771022707224, -0.018271733075380325, 0.0146452272310853, -0.0017528117168694735, 0.01220557652413845, -0.015004213899374008, -0.02477746643126011, -0.002998278709128499, 0.008234734646975994, 0.006875710561871529, 0.011751347221434116, 0.011099308729171753, 0.008381260558962822, -0.047444965690374374, 0.018755268305540085, -0.002818784909322858, 0.026433205232024193, -0.03314407542347908, -0.013385106809437275, -0.007765853311866522, -0.06874977797269821, -0.007080846466124058, -0.0006085388595238328, 0.0012912562815472484, -0.01171471644192934, 0.04152533411979675, -0.00898201484233141, -0.006824426352977753, -0.010227481834590435, -5.6578315707156435e-05, -0.0038060005754232407, 0.0194292850792408, -0.0033938975539058447, -0.0019542842637747526, -0.020586837083101273, 0.006095462013036013, 0.007150446064770222, 0.009538811631500721, -0.011890546418726444, -0.005384813062846661, -0.02823546901345253, -0.015399833209812641, -0.001923147588968277, -0.006139419507235289, 0.04193560779094696, 0.005769442766904831, -0.01651342771947384, 0.015795452520251274, -0.09823071211576462, -0.030799666419625282, 0.04006008058786392, -0.02139272727072239, -0.010271439328789711, -0.003981831483542919, 0.026154806837439537, 0.038301773369312286, 0.026638342067599297, -0.022110702469944954, -0.011026046238839626, -0.0536283440887928, -0.017304664477705956, -0.00570350605994463, -0.037832893431186676, 0.013355801813304424, 0.0339353121817112, 0.022740762680768967, 0.018257081508636475, 0.032968245446681976, 0.0015192865394055843, -0.0121762715280056, -0.03170812502503395, 0.06130628287792206, 0.021890914067626, -0.014549985527992249, -0.010908825322985649, 0.04958423972129822, 0.005963589064776897, -0.04088062420487404, 0.0169823095202446, -0.018257081508636475, -0.005304224323481321, 0.008718268945813179, -0.007919704541563988, 0.022242575883865356, -0.0022931245621293783, -0.015487748198211193, -0.0011328255059197545, -0.0010742152808234096, -0.007077183108776808, -0.048998136073350906, 0.020323090255260468, -0.0634748563170433, 0.015971282497048378, -0.04029452055692673, 0.0133997593075037, 0.02677021361887455, -0.010996741242706776, -0.010659731924533844, 0.027458883821964264, -0.010359355248510838, -0.018388954922556877, -0.0050478046759963036, 0.004589912015944719, 0.008769553154706955, -0.05175281688570976, -0.020660100504755974, -0.01796402968466282, 0.015048172324895859, -0.02587640844285488, -0.00014572421787306666, 0.0004098135977983475, -0.03657277300953865, -0.020572183653712273, -0.005567970219999552, 0.015824757516384125, 0.02433789148926735, 0.004919594619423151, -0.00474376417696476, 0.038301773369312286, 0.03513682261109352, 0.015209349803626537, -0.02772263064980507, 0.012124987319111824, -0.0020092313643544912, 0.01800798811018467, -0.01746584288775921, -0.005956262815743685, -0.008938057348132133, 0.012168945744633675, -0.0109527837485075, -0.026975350454449654, 0.01120920293033123, -0.015092129819095135, -0.01859408989548683, -0.0012189092813059688, -0.004710795823484659, -0.00012340197281446308, -0.012820984236896038, 0.014396133832633495, -0.007861094549298286, -0.0195611584931612, -0.00011533161887200549, 0.003304150654003024, 0.016659952700138092, -5.906810474698432e-05, -0.006919668056070805, -0.019165540114045143, -0.0021044728346168995, 0.04580388218164444, -0.007582696154713631, 0.0037272432819008827, -0.0033352873288094997, -0.018652699887752533, -0.018916446715593338, -0.002075167838484049, -0.020088650286197662, -0.002468955237418413, 0.01800798811018467, -0.01903366670012474, 0.011839263141155243, 0.02723909541964531, 0.0341404490172863, 0.020161913707852364, 0.01752445288002491, 0.010388660244643688, -0.008894099853932858, 0.021275507286190987, -0.039737723767757416, 0.019297411665320396, -0.039767030626535416, -0.02477746643126011, 0.02247701585292816, 0.007626653648912907, 0.030565226450562477, 0.043693915009498596, 0.008813510648906231, 0.013048098422586918, -0.014234955422580242, -0.013231255114078522, 0.051811426877975464, -0.007560717407613993, 0.04823620617389679, 0.0029781314078718424, -0.02580314502120018, 0.016366900876164436, -0.008864794857800007, 0.013560937717556953, 0.01021282933652401, 0.004414081573486328, 0.014117734506726265, -0.004432397428900003, 0.018740614876151085, 0.027532147243618965, -0.015297265723347664, 0.017729589715600014, 0.00994908344000578, 0.0016539068892598152, 0.022125355899333954, 0.0050917621701955795, -0.03062383644282818, 0.00041278990102000535, 0.07431774586439133, -0.0194292850792408, 0.06757757812738419, -0.026491815224289894, -0.01410308200865984, -0.029085317626595497, -0.0012518775183707476, 0.01856478489935398, 0.022022787481546402, 0.002783985109999776, -0.018799224868416786, 0.010403312742710114, -0.010872194543480873, -0.023649221286177635, -0.003538591554388404, -0.03355434536933899, 0.02877761423587799, -0.01748049631714821, -0.033378515392541885, -0.012000440619885921, 0.008242061361670494, 0.036279723048210144, 0.01460126880556345, -0.013333823531866074, 0.04205282777547836, 0.018271733075380325, -0.00024611709523014724, -0.03692443296313286, -0.007949010469019413, 0.02621341682970524, 0.030037734657526016, 0.032968245446681976, -0.014696510508656502, -0.03648485615849495, 0.014432764612138271, -0.01168541144579649, 0.025700578466057777, 0.02826477400958538, -0.014813731424510479, 0.009736621752381325, 0.020103303715586662, 0.009084583260118961, 0.027502842247486115, 0.013429065234959126, 0.010344702750444412, 0.001615443965420127, 0.008630353957414627, -0.01605919748544693, 0.020235175266861916, 0.013231255114078522, -0.04680025577545166, 0.007414191961288452, 0.045012641698122025, 0.0055752964690327644, 0.01803729310631752, -0.04521777853369713, 0.04000147059559822, 0.01799333468079567, 0.02880691923201084, -0.0005705337971448898, -0.015531706623733044, -0.0055056968703866005, 0.0121835982427001, 0.021802999079227448, 0.04249240458011627, 0.003978168126195669, -0.0340818390250206, -0.012689110822975636, -0.02968607284128666, -0.006663248408585787, 0.0267555620521307, -0.03267519176006317, 0.03592805936932564, -0.007293308153748512, 0.019282760098576546, -0.011304444633424282, 0.01610315591096878, 0.005784095264971256, 0.04422140493988991, 0.018227776512503624, 0.017377927899360657, 0.03308546543121338, 0.014513353817164898, 0.001745485351420939, 0.027546798810362816, -0.009399612434208393, 0.0015366865554824471, 0.017436537891626358, -0.017817504703998566, 0.01566357910633087, -0.010154219344258308, -0.031473685055971146, -0.005604601465165615, 0.03692443296313286, 0.012352102436125278, 0.03715887293219566, -0.01947324350476265, 0.007179751060903072, -0.013700136914849281, 0.01311403512954712, 0.02051357366144657, 0.03751053661108017, 0.01214696653187275, 0.013040772639214993, 0.012689110822975636, 0.005498370621353388, 0.0002685538202058524, -0.02539287507534027, 0.028338037431240082, 0.007487454451620579, 0.004824352916330099, -0.012733068317174911, -0.0031100043561309576, -0.005410455167293549, -0.009597422555088997, 0.018682004883885384, -0.0029012055601924658, -0.021773694083094597, 0.028865529224276543, 0.011223855428397655, -0.009604748338460922, 0.01071834284812212, 0.03712956979870796, -0.06916005164384842, 0.0004501081130001694, 0.016454817727208138, -0.03469724580645561, -0.010901499539613724, -0.0009569948888383806, -0.020381702110171318, 0.010776952840387821, 0.037246789783239365, -0.011428991332650185, -0.02394227124750614, -0.0014899815432727337, 0.025978976860642433, -0.03214770182967186, -0.018711309880018234, 0.013597569428384304, -0.009187150746583939, 0.038653433322906494, -0.03563500940799713, 0.00026260121376253664, -0.005388476420193911, 0.013077403418719769, 0.0043591344729065895, -0.022008134052157402, 0.019766293466091156, -0.028440605849027634, 0.0055056968703866005, 0.02820616401731968, 0.017802851274609566, 0.007414191961288452, -0.011194550432264805, -0.015707537531852722, -0.01857943646609783, 0.030330784618854523, -0.006139419507235289, 0.0073336027562618256, 0.011575517244637012, 0.051401156932115555, -0.0011126782046630979, -0.002481776289641857, 0.02781054563820362, 0.020323090255260468, 0.03712956979870796, 0.04202352091670036, 0.020161913707852364, 0.03373017534613609, 0.030975496396422386, 0.03062383644282818, -0.012601195834577084, -0.007395876105874777, 0.013956557027995586, -0.002866405760869384, -0.011341076344251633, 0.012835636734962463, 0.0022729772608727217, -0.018271733075380325, 0.01651342771947384, 0.04682955890893936, -0.014242281205952168, 0.017758894711732864, 0.018374301493167877, -0.009575443342328072, -0.0034396867267787457, 0.006916005164384842, 0.020557532086968422, -0.000624565058387816, 0.009502180851995945, -0.02145133726298809, -0.028381995856761932, 0.007707242853939533, 0.026418553665280342, 0.021070370450615883, -0.002263819333165884, 0.02587640844285488, 0.0636506900191307, 0.0009689000435173512, -0.016484122723340988, -0.004527638666331768, 0.0169676560908556, 0.009553464129567146, -0.01314334012567997, -0.01483570970594883, -0.007410528603941202, 0.026667647063732147, -0.004326166119426489, -0.010190851055085659, -0.03346643224358559, -0.005326203070580959, -0.0025806808844208717, -0.011831936426460743, -0.008088209666311741, 0.0267555620521307, 0.006879373453557491, -0.021583210676908493, 0.02290194109082222, 0.013729441910982132, -0.0074508232064545155, -0.035283349454402924, -0.011348402127623558, 0.0026466173585504293, -0.003981831483542919, 0.00831532385200262, -0.02193487249314785, 0.006806110963225365, 0.019619768485426903, -0.017934724688529968, 0.0170409195125103, 0.0439283549785614, 0.01142166554927826, 0.0029836262110620737, -0.01310670841485262, 0.015722189098596573, 0.020191218703985214, 0.01386864110827446, -0.0066485959105193615, -0.039708420634269714, -0.015736842527985573, 0.004897615872323513, -0.014681858010590076, 0.02052822709083557, -0.021773694083094597, -0.01048390194773674, -0.0012482143938541412, -0.034843772649765015, -0.030594531446695328, -0.013590242713689804, -0.011722042225301266, -0.023209644481539726, 0.006784132216125727, 0.006597312167286873, 0.06693286448717117, 0.017832156270742416, -0.0037144222296774387, 0.03789150342345238, -0.012667132541537285, 0.0006190703716129065, -0.009524159133434296, -0.0036155174020677805, -0.04949632287025452, -0.022081397473812103, 0.02542218007147312, -0.016659952700138092, 0.020205870270729065, -0.061599332839250565, 0.013429065234959126, 0.0292171910405159, 0.01896040327847004, 0.0034506763331592083, 0.015883367508649826, 0.0291439276188612, 0.004765742924064398, 0.039210230112075806, 0.02536357007920742, -0.03850691020488739, -0.030389394611120224, 0.006395839620381594, -0.04340086132287979, 0.051430460065603256, -0.006798784714192152, -0.009172498248517513, 0.0026594384107738733, 0.00824938714504242, -0.02287263609468937, 0.015355875715613365, 0.036279723048210144, -0.005300560966134071, -0.016396207734942436, 0.015590316615998745, -0.010842889547348022, -0.008527785539627075, -0.04105645418167114, -0.02684347704052925, 0.016835782676935196, -0.03742261976003647, 0.01649877429008484, 0.016894394531846046, -0.011267812922596931, 0.03261658176779747, 0.03270449861884117, -0.0036668013781309128, -0.023473389446735382, -0.03343712538480759, -0.0020476942881941795, -0.0023901977110654116, -0.06230265647172928, 0.02249166928231716, 0.018813878297805786, 0.017817504703998566, 0.02340012788772583, 0.026535773649811745, -0.004480018280446529, -0.008168797940015793, -0.016733216121792793, -0.02734166383743286, 0.0267409086227417, -0.02139272727072239, 0.00043133454164490104, 0.011861241422593594, 0.009897799231112003, 0.010586469434201717, 0.013949230313301086, -0.01531191822141409, -0.0040624202229082584, 0.006835415959358215, 0.026066891849040985, -0.019092276692390442, 0.02477746643126011, -0.01197846233844757, 0.006241987459361553, 0.02977398782968521, 0.016909046098589897, -0.03112202323973179, 0.03686582297086716, -0.005234624724835157, -0.0387999601662159, 0.015868714079260826, -0.03373017534613609, -0.0015962125035002828, 0.04149603098630905, 0.01800798811018467, 0.027151180431246758, 0.011604822240769863, 0.043693915009498596, -0.0030349099542945623, -0.013971209526062012, -4.5445809519151226e-05, 0.05893256887793541, 0.00012569142563734204, 0.024455111473798752, -0.03648485615849495, 0.01191252563148737, -0.02000073529779911, 0.004447049926966429, -0.006868384312838316, 0.013985862024128437, 0.014322870410978794, 0.007641306612640619, -0.020850583910942078, 0.01903366670012474, -0.030828971415758133, 0.008425218053162098, -0.04178908094763756, -0.03323198854923248, -0.0013187298318371177, -0.0016795488772913814, -0.006487417966127396, 0.022799372673034668, -0.01701161451637745, 0.03164951503276825, -0.0062126824632287025, -0.05465402454137802, -0.007095498964190483, -0.01658668927848339, -0.010461922734975815, 0.030125649645924568, -0.014879667200148106, 0.005842705722898245, 0.030916886404156685, 0.019722336903214455, 0.019077623263001442, -0.028938792645931244, -0.004055093973875046, 0.0008960951818153262, -0.01534122321754694, -0.005721821915358305, 0.004069746471941471, -0.027429578825831413, 0.04759149253368378, 0.020689405500888824, 0.035371262580156326, 0.0010705521563068032, 0.02285798266530037, -0.03645555302500725, -0.002866405760869384, -0.028162207454442978, -0.0013388770166784525, -0.02492399327456951, -0.015927325934171677, 0.010886847041547298, 0.01486501470208168, -0.002503755036741495, 0.011809958145022392, -0.0015513390535488725, -0.005989231169223785, 0.004212609026581049, 0.0010842889314517379, -0.024162059649825096, 0.026609037071466446, 0.012161619029939175, -0.013516980223357677, 0.00974394753575325, 0.04583318531513214, 0.005666874814778566, -0.029466284438967705, 0.02779589407145977, -0.01852082647383213, 0.0039671785198152065, -0.008623027242720127, 0.013201950117945671, 0.0004707132757175714, 0.041232284158468246, 0.0037217484787106514, 0.030477309599518776, 0.008593722246587276, 0.007868421263992786, -0.01557566411793232, 0.014938278123736382, 0.0002930510672740638, -0.019165540114045143, -0.01142166554927826, 0.01436682790517807, -0.021187592297792435, 0.04225796461105347, -0.0390930101275444, -0.04296128451824188, -0.02331221103668213, 0.015868714079260826, -0.0043591344729065895, 0.0341111421585083, 0.0031338147819042206, 0.005406792275607586, 0.006073483265936375, 0.005692516919225454, 0.014264260418713093, -0.022198617458343506, 0.010073630139231682, -0.0033847398590296507, 0.007568043656647205, -0.020616142079234123, 0.014315544627606869, 0.013319171033799648, -0.012264186516404152, 0.011172572150826454, 0.0055533177219331264, -0.021524600684642792, 0.0043627978302538395, 0.00047117116628214717, -0.017788199707865715, -0.0020348732359707355, 0.005208982620388269, 0.02542218007147312, -0.022154660895466805, -0.045071251690387726, 0.038712043315172195, -0.021788345649838448, 0.018857834860682487, 0.01191985234618187, 0.0013059087796136737, 0.011648779734969139, 0.009165171533823013, 0.018843183293938637, 0.021099677309393883, 0.019678378477692604, -0.004912268370389938, -0.032470058649778366, -0.009612075053155422, -0.03308546543121338, -0.01953185349702835, 0.014593943022191525, 0.011868568137288094, -0.030946191400289536, 0.008923404850065708, 0.01290157251060009, 0.025935018435120583, -0.008007620461285114, 0.021509947255253792, -0.010579143650829792, 0.01613246090710163, -0.007714569102972746, 0.006128430366516113, 0.024206018075346947, 0.03941536694765091, 0.002395692514255643, 0.005494707264006138, 0.001062310067936778, 0.022638194262981415, 0.008930730633437634, -0.021246202290058136, 0.020103303715586662, 0.0012610353296622634, -0.007604674901813269, 0.02720979042351246, -0.0051137409172952175, -0.008227408863604069, 0.018139861524105072, 0.0031191622838377953, 0.014689184725284576, -0.007956336252391338, 0.012864941731095314, 0.001682296278886497, 0.014469396322965622, 0.041583944112062454, 0.017641674727201462, 0.021128982305526733, 0.019722336903214455, 0.012278839014470577, 0.0195611584931612, -0.0024945971090346575, 0.04052896052598953, 0.043693915009498596, 0.015414485707879066, -0.014212976209819317, -0.0012124987551942468, -0.02930510602891445, 0.03941536694765091, -0.0032840033527463675, 0.016718562692403793, -0.02186160907149315, 0.033906009048223495, 0.018213123083114624, 0.009494854137301445, 0.038272470235824585, 0.035341959446668625, -0.025217043235898018, -0.017817504703998566, 0.04926188290119171, -0.020117955282330513, 0.014506027102470398, 0.0063262395560741425, 0.03308546543121338, -0.0077438740991055965, 0.014674532227218151, -0.02341477945446968, 0.0047291116788983345, 0.006198029965162277, 0.03745192661881447, -0.023033812642097473, -0.023092424497008324, -0.026198765262961388, 0.003223561681807041, 0.02531961165368557, 0.002952489536255598, -0.025129128247499466, 0.029949817806482315, 0.04486611858010292, 0.009758600033819675, -0.009062604047358036, 0.0036631382536143064, -0.02145133726298809, -0.0027784903068095446, 0.03551778942346573, -0.011765999719500542, -0.01994212530553341, -0.022799372673034668, -0.007809810806065798, 0.0073555815033614635, 0.012579216621816158, -0.022784719243645668, 0.0026759225875139236, -0.0340818390250206, 0.01655738428235054, 0.01314334012567997, -0.002241840586066246, 0.012930878438055515, 0.018608741462230682, 0.028030334040522575, 0.012894246727228165, 0.01614711433649063, 0.03988425061106682, -0.007227371912449598, 0.0034982969518750906, 0.035722922533750534, 0.01197846233844757]" -How Ndustrial Is Providing Fast Real-Time Queries and Safely Storing Client Data With 97 % Compression,"with time-series data without changing and bringing up new technologies and languages to learn.We knew we would be collecting many times-series points per day—across all the different types of data we’re collecting, above a hundred million points per day. It gets massive, and we want to store and query that efficiently. It’s not just about how we store this and how we ensure we’re not spending mass quantities of money to store it, but also how we get that back out, ask questions, and query data without having to do a lot of work in between to get it into a shape where we can do that efficiently.So the compression aspect of TimescaleDB was something we leaned on immediately. Honestly, that was probably what sold it out of the PoC: when we tested compression with our chunks and started seeing the percentage by which we could reduce the storage size with minor degradation in query performance.✨Editor’s Note:Read how TimescaleDB expands the PostgreSQL functionality with faster queries and reduces storage utilization by 90 percent.For one of our larger customers, which would take a big chunk of the time series, we normally store about 64 GB of uncompressed data per day. With compression, we’ve seen, on average, a 97 percent reduction. So down to less than 2 GB a day. And that goes from a record count of two million records to just a couple hundred thousand, which is pretty significant. It would take a larger and more performant database to hold that type of weight.CREATE FUNCTION public.show_all_chunks_detailed_size() RETURNS TABLE( hypertable text, chunk text, time_range tstzrange, total_bytes bigint, total_size text, table_size text, index_size text, toast_size text, compression_savings numeric ) AS $func$ BEGIN RETURN QUERY EXECUTE ( SELECT string_agg(format(' SELECT %L AS hypertable, s.chunk_schema || ''.'' || s.chunk_name AS chunk, tstzrange(c.range_start, c.range_end) AS time_range, s.total_bytes, pg_size_pretty(s.total_bytes) AS total_size, pg_size_pretty(s.table_bytes) AS table_size, pg_size_pretty(s.index_bytes) AS index_size, pg_size_pretty(s.toast_bytes) AS toast_size, round(100 * (1 - p.after_compression_total_bytes::numeric / p.before_compression_total_bytes::numeric), 2) AS compression_savings FROM chunks_detailed_size(%L) s LEFT JOIN chunk_compression_stats(%L) p USING (chunk_name) LEFT JOIN timescaledb_information.chunks c USING (chunk_name) ', tbl, tbl, tbl ), ' UNION ALL ') FROM ( SELECT hypertable_schema || '.' || hypertable_name AS tbl FROM timescaledb_information.hypertables ORDER BY 1 ) sub ); END $func$ LANGUAGE plpgsql;The query that the Ndustrial team usesto monitor their chunk sizes across hypertables, including the",https://www.timescale.com/blog/how-ndustrial-is-providing-fast-real-time-queries-and-safely-storing-client-data-with-97-compression/,594,"[-0.0199733953922987, -0.016610177233815193, 0.04788123816251755, 0.007570671383291483, 0.04947361722588539, 0.04530048370361328, 0.022059962153434753, 0.008057994768023491, -0.011283938772976398, 0.004207453690469265, 0.04681050032377243, 0.013912739232182503, -0.0036858120001852512, -0.016321901232004166, 0.03766803815960884, 0.021538320928812027, -0.005899358075112104, -0.02023421600461006, -0.0008172104135155678, 0.0300355926156044, -0.01792800985276699, 0.0176122784614563, -0.00438934238627553, -0.002139761345461011, 0.028360847383737564, -0.01713181845843792, -0.02723519876599312, 0.02167559415102005, 0.0755557119846344, -0.07302986830472946, 0.010686795227229595, -0.04524557292461395, -0.024077892303466797, -0.02052249200642109, 0.038903504610061646, 0.02858048677444458, 0.027139106765389442, 0.02621936984360218, 0.024201439693570137, 0.009423873387277126, 0.0014696917496621609, 0.009410145692527294, 0.0017399503849446774, 0.002970270346850157, 0.016925906762480736, -0.017406366765499115, -0.030969057232141495, -0.03615802153944969, 0.005261033307760954, 0.040303703397512436, -0.011249619536101818, 0.06001627445220947, -0.011867353692650795, -0.04181371629238129, 0.019726300612092018, -0.011730079539120197, 0.009616057388484478, 0.04552011936903, 0.01998712122440338, -0.023515067994594574, 0.020797040313482285, -0.07182185351848602, 0.04291191324591637, 0.0289923083037138, -0.008710047230124474, 0.01943802461028099, -0.0044888658449053764, 0.06484832614660263, -0.01732400245964527, 0.028415756300091743, 0.03703657537698746, 0.03667966276407242, 0.0020059191156178713, -0.009348371997475624, 0.0596868172287941, -0.04703013598918915, 0.0021071587689220905, 0.025601636618375778, -0.0026408121921122074, -0.04208826646208763, 0.022087417542934418, -0.013075366616249084, -0.00687057338654995, 0.04184117168188095, 0.02967868000268936, -0.014276515692472458, -0.0472223199903965, 0.005490967538207769, -0.016143444925546646, 0.027166562154889107, -0.00786581076681614, 0.04348846152424812, 0.00015496968990191817, 0.006791640538722277, 0.02227960154414177, 0.0055733323097229, 0.015333526767790318, -0.008531590923666954, -0.01883401907980442, 0.006122428923845291, 0.01617090031504631, -0.0009789365576580167, -0.010453429073095322, -0.016939634457230568, 0.0356089249253273, 0.0182300116866827, -0.00443395646288991, -0.0024417645763605833, 0.005096304230391979, 0.024187711998820305, -0.04162153601646423, 0.023528795689344406, -0.04516320675611496, 0.025601636618375778, -0.017955463379621506, 0.01047402061522007, -0.0022255578078329563, 0.004914416000247002, -0.00018596362497191876, 0.010995662771165371, -0.029761044308543205, -0.0022478648461401463, -0.02882757969200611, 0.006211657077074051, 0.00032838559127412736, -0.03838186338543892, 0.014249061234295368, -0.04299427568912506, -0.02785293385386467, -0.008593364618718624, 0.04027624800801277, -0.0028432917315512896, 0.05172491446137428, -0.03857404738664627, 0.01396078523248434, -0.0007944743847474456, -0.058094438165426254, -0.007913856767117977, -0.012704726308584213, 0.023720979690551758, -0.010137698613107204, -0.00820899661630392, 0.02973358891904354, -0.0059027899987995625, -0.04917161539196968, 0.04442192614078522, -0.029294312000274658, 0.06396976858377457, -0.023885708302259445, -0.021085316315293312, 0.00472223199903965, -0.024805445224046707, -0.03481273353099823, -0.021099042147397995, 0.03171033784747124, -0.020934313535690308, 0.03245161846280098, 0.040111519396305084, 0.0008643984328955412, -0.06490323692560196, -0.02045385353267193, 0.011887945234775543, -0.03602074831724167, 0.01670626923441887, -0.01483934000134468, 0.011462395079433918, -0.044174835085868835, -0.02258160337805748, -0.08922822028398514, -0.030969057232141495, -0.02634291723370552, -0.052713289856910706, 0.0073784878477454185, -0.012224266305565834, 0.020810768008232117, 0.00829822476953268, -0.03192997723817825, -0.0463712215423584, 0.026246825233101845, -0.03275362029671669, -0.06792327016592026, 0.010316154919564724, -0.019410571083426476, 0.037146396934986115, 0.004756550770252943, 0.0009909480577334762, -0.04903434216976166, 0.01979493722319603, 0.0067641856148839, 0.044833749532699585, -0.05175236985087395, 0.019712572917342186, -0.0077834464609622955, 0.031078876927495003, 0.008545318618416786, -0.057600248605012894, 0.04818323999643326, 0.02863539569079876, -0.04642613232135773, 0.03942514583468437, 0.05562350153923035, 0.05776497721672058, 0.04324137046933174, 0.023844527080655098, 0.00926600769162178, -0.01731027476489544, 0.007076484616845846, 0.008126632310450077, -0.038052406162023544, -0.027413655072450638, -0.028360847383737564, 0.00241430988535285, 0.005847880616784096, -0.030529780313372612, -0.030172867700457573, -0.010906434617936611, -0.05831407383084297, -0.010631886310875416, -0.0330556258559227, -0.028553031384944916, 0.027537202462553978, 0.04263736307621002, 0.0322045236825943, -0.01310968492180109, -0.005514990538358688, 0.02251296676695347, -0.009334645234048367, -0.021895233541727066, 0.034538187086582184, 0.008552181534469128, 0.027839206159114838, -0.028498122468590736, -0.03637766093015671, -0.02912958338856697, -0.008154086768627167, -0.00028398598078638315, 0.02632918953895569, -0.011242755688726902, -0.018504559993743896, -0.04359828308224678, -0.025381997227668762, -0.008593364618718624, -0.003263693768531084, 0.006019473075866699, -0.0049555981531739235, 0.025340816006064415, -0.03140833601355553, -0.07572044432163239, 0.038299497216939926, 0.042719729244709015, -0.019767483696341515, -0.016376810148358345, -0.012162493541836739, -0.03832695260643959, -0.05880826339125633, -0.05996136739850044, -0.010638749226927757, 0.05029726400971413, 0.02882757969200611, 0.020879404619336128, 0.0038402455393224955, -0.04013897478580475, -0.02989831753075123, -0.007254940923303366, -0.01821628399193287, 0.04395519569516182, 0.02967868000268936, -0.01798291876912117, 0.0012963830959051847, -0.015237434767186642, 0.05771007016301155, 0.04455920308828354, 0.03917805477976799, -0.034483276307582855, -0.01895756646990776, -0.005631673615425825, -0.017886826768517494, 0.0027060173451900482, 0.006311181001365185, -0.011386893689632416, 0.0031264196150004864, -0.05188964307308197, -0.0033529221545904875, 0.008936549536883831, 0.04650849476456642, -0.01343914307653904, -0.00201964657753706, 0.032671257853507996, 0.024544624611735344, -0.040111519396305084, 0.03407145291566849, 0.017118090763688087, 0.02882757969200611, 0.00491784792393446, -0.027207745239138603, 0.027468565851449966, -0.04387282952666283, -0.014688338153064251, -0.04475138708949089, -0.0356089249253273, -0.026741012930870056, -0.021785413846373558, 0.0399467907845974, -0.01486679445952177, 0.014331425540149212, 0.02772938646376133, -0.013404824770987034, -0.001992191653698683, -0.03324780985713005, 0.018779108300805092, -0.0015177377499639988, 0.004241772461682558, 0.013041048310697079, -0.033220354467630386, -0.01768091507256031, -0.022197237238287926, 0.05202691629528999, -0.027386201545596123, 0.012244857847690582, -0.0566667839884758, -0.013061638921499252, -0.07780700922012329, -0.002776370383799076, 0.016239536926150322, 0.007117666769772768, 0.009931787848472595, -0.0005186390480957925, 0.01483934000134468, 0.013782328926026821, -0.005734629463404417, -0.005360557232052088, -0.005305647384375334, 0.01617090031504631, 0.016623904928565025, -0.025711456313729286, -0.06550724059343338, -0.01120157353579998, 0.0018566334620118141, -0.005806697998195887, 0.04044097661972046, -0.027523474767804146, 0.024736808612942696, -0.06726435571908951, 0.004101066384464502, 0.008366861380636692, 0.017392639070749283, 0.054635126143693924, 0.02646646462380886, 0.017529914155602455, -0.006118997000157833, -0.017186729237437248, 0.019177203997969627, 0.01991848461329937, 0.008099176920950413, 0.05853371322154999, -0.010782887227833271, -0.015457074157893658, -0.027166562154889107, -0.0014671179233118892, 0.0063454993069171906, 0.0030646463856101036, 0.01141434907913208, 0.037503309547901154, -0.016870997846126556, -0.004698208998888731, 0.02391316369175911, -0.05183473229408264, 0.013432279229164124, 0.01516879815608263, -0.007488307077437639, 0.024599535390734673, 0.011496713384985924, 0.010693659074604511, -0.04225299507379532, -0.037201303988695145, -0.01895756646990776, 0.027345018461346626, 0.041209712624549866, 0.0019269863842055202, 0.01750245876610279, 0.013850965537130833, 0.016980817541480064, 0.018188830465078354, -0.0144961541518569, 0.03203979507088661, 0.034373458474874496, 0.0054188985377550125, 0.06918618828058243, -0.04299427568912506, -0.04958343878388405, 0.01334991492331028, -0.003929473459720612, 0.0033529221545904875, -0.010988798923790455, -0.023940619081258774, 0.03566383570432663, 0.006994119845330715, 0.008510999381542206, 0.0244622603058815, -2.354037860641256e-05, 0.024448532611131668, 0.007460852153599262, -0.0313534252345562, -0.040358610451221466, -0.02023421600461006, 0.026493918150663376, 0.009224825538694859, 0.014221605844795704, -0.018490834161639214, 0.00012890904326923192, -0.008545318618416786, -0.007584399078041315, 0.023501340299844742, -0.0514778196811676, 0.02518981322646141, -0.031765248626470566, -0.05490967631340027, 0.060455553233623505, 0.004742823075503111, 0.05592550337314606, -0.024777991697192192, -0.004753118846565485, -0.031078876927495003, 0.006812231615185738, -0.05655696615576744, 0.07868556678295135, 0.037448398768901825, -0.02730383537709713, -0.020083213225007057, -0.016980817541480064, 0.004286386538296938, -0.023089518770575523, 0.03316544368863106, -0.022416874766349792, 0.012286040000617504, 0.013473461382091045, 0.018188830465078354, 0.01901247538626194, 0.044888660311698914, -0.028498122468590736, -0.037997495383024216, 0.01967139169573784, -0.002342240884900093, -0.022307055070996284, -0.03319289907813072, -0.008154086768627167, 0.020330308005213737, -0.024928992614150047, 0.02838830277323723, -0.013597008772194386, 0.05139545723795891, 0.015635529533028603, -0.023322883993387222, 0.02652137354016304, -0.02760583907365799, -0.05202691629528999, 0.045877035707235336, -0.017090637236833572, 0.05935736000537872, 0.005216419231146574, 0.002023078268393874, 0.010604430921375751, -0.06012609601020813, 0.0007009563269093633, -0.016802361235022545, -0.01117411907762289, 0.03371454030275345, 0.006376386154443026, 0.002050533192232251, -0.006544547155499458, -0.009163051843643188, 0.0014293674612417817, -0.003287716768682003, 0.040111519396305084, 0.016912180930376053, 0.02525845170021057, -0.014084331691265106, -0.010611294768750668, -0.023954346776008606, -0.06874691694974899, 0.04115480184555054, -0.059192631393671036, -0.0022564444225281477, 0.04074297845363617, -0.014633428305387497, 0.05139545723795891, 0.02792157046496868, 0.007529489230364561, 0.008215860463678837, -0.0012260300572961569, -0.024077892303466797, -0.010391656309366226, 0.06550724059343338, -0.016623904928565025, -0.011798716150224209, 0.025958549231290817, -0.07890520244836807, -0.024352440610527992, 0.02808629907667637, -0.0242288950830698, 0.040358610451221466, 0.015539438463747501, 0.027386201545596123, 0.025354541838169098, 0.0026236530393362045, -0.017708370462059975, -0.016431720927357674, -0.01731027476489544, -0.0012895193649455905, -0.0411822572350502, -0.012752772308886051, 0.025629092007875443, 0.03953496739268303, 0.022746333852410316, -0.01247136015444994, 0.04285700246691704, -0.009561147540807724, -0.005686583463102579, 0.004217749461531639, -0.026082096621394157, -0.008277633227407932, -0.029157036915421486, 0.01258804276585579, -0.008586500771343708, -0.028800124302506447, 0.028017662465572357, -0.040056608617305756, -0.045327939093112946, -0.006633775308728218, -0.0006923766923137009, -0.0036961075384169817, -0.033879268914461136, 0.0541134849190712, -0.0024795150384306908, -0.0386289581656456, 0.00715884892269969, -0.00535712530836463, -0.009314053691923618, -0.005521854385733604, 0.026260552927851677, 0.010432838462293148, 0.042225539684295654, -0.009581738151609898, -0.008902231231331825, 0.028690306469798088, -0.007961902767419815, 0.008421771228313446, -0.005144350230693817, 0.00551155861467123, 0.0020162146538496017, 0.02863539569079876, -0.02354252338409424, 0.038299497216939926, -0.01413924153894186, 0.02361115999519825, 0.04145680367946625, 0.01429024338722229, 0.026727285236120224, 0.0055733323097229, 0.008510999381542206, -0.00560078676789999, -0.008641410619020462, -0.003406115807592869, -0.01199090015143156, -0.01205267384648323, 0.014262787997722626, 0.0018429060000926256, -0.020783312618732452, -0.04823815077543259, 0.028017662465572357, 0.0012629225384443998, 0.015251162461936474, -0.01220367569476366, 0.019534116610884666, 0.00814722292125225, -0.029953228309750557, -0.029294312000274658, 0.012327222153544426, 0.0025704591535031796, -0.010405384004116058, -0.03558146953582764, 0.004485433921217918, -0.013535235077142715, 0.05323493108153343, -0.05614514276385307, 0.010329882614314556, 0.025752637535333633, -0.010837797075510025, 0.010645613074302673, -0.037091486155986786, -0.015910077840089798, -0.004602116998285055, -0.009423873387277126, 0.009046369232237339, 0.0040564523078501225, 0.036597300320863724, -0.020797040313482285, -0.010981935076415539, -0.04038606584072113, 0.030008137226104736, 0.022087417542934418, 0.014688338153064251, -0.0064484551548957825, -0.013507780618965626, -0.051011089235544205, 0.02027539722621441, -0.008799275383353233, 0.007680491078644991, 0.042417723685503006, 0.017049454152584076, 0.03171033784747124, 0.011270211078226566, -0.010844660922884941, -0.050214897841215134, -0.023267975077033043, -0.022197237238287926, -0.009959242306649685, -0.023350339382886887, 0.037558216601610184, -0.05359184369444847, -0.02112649753689766, -0.048100877553224564, -0.040962617844343185, -0.01659644953906536, 0.033220354467630386, 0.016253264620900154, -0.027441110461950302, -0.03813476860523224, 0.005339966155588627, 0.04099007323384285, 0.009959242306649685, -0.00130153086502105, 0.02827848307788372, 0.018422195687890053, -0.0038917232304811478, 0.03063959814608097, 0.025876184925436974, 0.031765248626470566, 0.018792835995554924, -0.016431720927357674, 0.03978205844759941, 0.02185405045747757, 0.031573064625263214, -0.006407273001968861, 0.0032774212304502726, -0.00844922661781311, -0.016363082453608513, 0.003092101076617837, -0.029404131695628166, -0.018120193853974342, 0.02337779477238655, -0.045190662145614624, 0.04063316062092781, 0.024750536307692528, 0.003287716768682003, 0.006798504386097193, -0.03214961662888527, -0.03308308124542236, -0.027839206159114838, 0.013789192773401737, -0.057545341551303864, -0.01486679445952177, -0.022265873849391937, -0.01586889661848545, -0.014372607693076134, 0.02300715446472168, 0.016623904928565025, 0.01943802461028099, 0.058753352612257004, 0.04022133722901344, -0.01552571076899767, 0.033028170466423035, 0.05576077476143837, 0.014674610458314419, 0.03044741600751877, 0.027537202462553978, -0.008964004926383495, -0.03415381908416748, 0.004121657460927963, 0.09790395200252533, -0.014400062151253223, 0.013947057537734509, -0.036597300320863724, -0.012423314154148102, -0.00070224329829216, -0.0010981934610754251, -0.009272871538996696, 0.01346659753471613, 0.016788633540272713, 0.023638615384697914, 0.0054738083854317665, -0.0009918060386553407, 0.007440261077135801, -0.016939634457230568, -0.010734841227531433, -0.020055759698152542, 0.013871557079255581, 0.026809649541974068, -0.011826171539723873, -0.008373725228011608, 0.0037853356916457415, 0.008346270769834518, -0.07467716187238693, -0.04862251877784729, -0.027935298159718513, 0.00011314396397210658, -0.02948649600148201, 0.014180423691868782, 0.010604430921375751, -0.03286344185471535, -0.02265024185180664, 0.04444938153028488, -0.028662851080298424, 0.0009163052309304476, 0.01286259200423956, -0.011544759385287762, -0.04346100986003876, 0.014770702458918095, -0.001729654730297625, -0.04304918646812439, -0.04862251877784729, -0.011812443844974041, -0.013102821074426174, -0.03146324306726456, 0.0540311224758625, -0.012896910309791565, 0.018257467076182365, 0.033577267080545425, 0.028690306469798088, -0.021277498453855515, 0.0007121098460629582, 0.008758093230426311, 0.03928787261247635, 0.004619276616722345, 0.014770702458918095, 0.02724892646074295, 0.0115928053855896, 0.004780573770403862, -0.03256143629550934, 0.014070603996515274, -0.035032372921705246, -0.015553165227174759, -0.009670966304838657, -0.017118090763688087, 0.02203250676393509, -0.048045966774225235, 0.014976614154875278, -0.009760194458067417, 0.02282869815826416, 0.0167199969291687, -0.03519710153341293, 0.011661441996693611, -0.004657026845961809, -0.01111234538257122, -0.00807858631014824, -0.026919469237327576, -0.014743248000741005, 0.008051130920648575, 0.0035279467701911926, 0.03201233968138695, 0.01634935662150383, -0.0004219036491122097, -0.038711320608854294, 0.034785278141498566, -0.001094761653803289, 0.023528795689344406, -0.049748167395591736, -0.04645358398556709, -0.01120157353579998, -0.0638599544763565, -0.014907976612448692, 0.00395006500184536, 0.00010172231850447133, -0.008737501688301563, 0.03365962952375412, -0.019122295081615448, -0.0018926678458228707, 0.0016987681156024337, 0.014756975695490837, -0.010391656309366226, 0.008250178769230843, 0.02517608553171158, -0.018683016300201416, -0.03234180063009262, -0.020247943699359894, 0.024064164608716965, 0.04019388183951378, -0.029596315696835518, -0.016568994149565697, -0.024654444307088852, -0.011627123691141605, -0.01846337877213955, 0.0025944821536540985, 0.026727285236120224, -0.007948176003992558, -0.013150867074728012, 0.014358879998326302, -0.1146514043211937, -0.018545743077993393, 0.054278213530778885, -0.017104363068938255, -0.024791719391942024, 0.007200031075626612, -0.023501340299844742, 0.054168395698070526, 0.013425415381789207, -0.024791719391942024, 0.010371064767241478, -0.054278213530778885, -0.015896352007985115, -0.016925906762480736, -0.018861474469304085, 0.038052406162023544, 0.036240387707948685, 0.015827713534235954, 0.019726300612092018, 0.000974646769464016, -0.0022495808079838753, 0.003433570731431246, -0.017584823071956635, 0.04708504676818848, 0.03505982831120491, 0.01398823969066143, -0.016967089846730232, 0.06062028184533119, 0.005333102308213711, -0.035691287368535995, 0.0036720845382660627, 0.019575299695134163, -0.0008142075384967029, 0.009876878000795841, -0.012697862461209297, 0.025931093841791153, -0.013857829384505749, 0.0045472076162695885, 0.005175237078219652, -0.016019897535443306, -0.006973528768867254, -0.057600248605012894, 0.0035416739992797375, -0.03063959814608097, 0.030776873230934143, -0.03722875937819481, 0.013686236925423145, -0.0003832952643278986, -0.0011222164612263441, -0.0012509110383689404, 0.02464071661233902, 0.010137698613107204, 0.001899531576782465, 0.01135257538408041, 0.023954346776008606, -0.010899570770561695, -0.04475138708949089, -0.059741728007793427, -0.01641799323260784, 0.011874217540025711, -0.013837237842381, 0.017818190157413483, 0.022114871069788933, -0.039260417222976685, -0.02838830277323723, -0.02052249200642109, -0.004886961076408625, 0.03105142153799534, 0.023528795689344406, -0.002191239269450307, 0.03415381908416748, 0.027290109544992447, 0.020014576613903046, -0.017941735684871674, 0.03365962952375412, 0.01785937137901783, -0.01087211538106203, 0.002800393383949995, -0.028196118772029877, 0.006022904999554157, 0.01732400245964527, -0.012636088766157627, 0.005916517693549395, 0.0182300116866827, -0.01586889661848545, -0.011153527535498142, 0.012059537693858147, -0.01165457908064127, -0.018875200301408768, -0.00853845477104187, 0.032231979072093964, 0.01828492246568203, -0.005309079308062792, -0.008799275383353233, -0.019575299695134163, 0.0017845644615590572, 0.021648138761520386, -0.013123412616550922, -0.032067250460386276, -0.006458750460296869, 0.03585601970553398, -0.010556384921073914, 0.0257389098405838, -0.0040633161552250385, -0.03250652924180031, -0.03385181352496147, 0.013075366616249084, -0.020604856312274933, 0.006959801539778709, 0.012951820157468319, 0.006252839230000973, 0.01120157353579998, 0.014907976612448692, 0.01968511939048767, 0.0019527253462001681, 0.00432756869122386, 0.02513490431010723, -0.007179439999163151, -0.012835136614739895, -0.02822357416152954, 0.01586889661848545, 0.001899531576782465, 0.002923940308392048, 0.034840188920497894, -0.016033625230193138, 0.04752432554960251, 0.013926466926932335, 0.02797647938132286, -0.005947404075413942, 0.019053656607866287, -0.007611854001879692, 0.04486120492219925, -0.009279735386371613, 0.04324137046933174, -0.0028810419607907534, -0.04109989106655121, 0.02742738276720047, 0.010611294768750668, 0.03703657537698746, 0.00926600769162178, 0.006064087152481079, 0.009169915691018105, -0.014523609541356564, 0.0020591127686202526, 0.027770567685365677, 0.0044408198446035385, 0.0002539572597015649, -0.007083347998559475, -0.029706135392189026, 0.018298650160431862, -0.014482427388429642, -0.026974378153681755, -0.008442362770438194, 0.05891808122396469, -0.008607091382145882, 0.0420333556830883, -0.04681050032377243, 0.012464496307075024, -0.008181541226804256, -0.022142326459288597, -0.0072892592288553715, 0.02700183354318142, 0.010185744613409042, -0.017653461545705795, 0.023034609854221344, -0.007762855384498835, -0.050159987062215805, -0.0010184028651565313, -0.02366607077419758, 0.023295430466532707, -0.012814546003937721, 0.01461970154196024, 0.0015091581735759974, 0.010631886310875416, 0.03571874275803566, 0.016912180930376053, 0.007364760152995586, 0.032424163073301315, 0.018573198467493057, 0.0031796135008335114, -0.021112769842147827, -0.011277074925601482, 0.036899302154779434, 0.026548828929662704, 0.013720555230975151, 0.0005006217979826033, -0.02632918953895569, 0.023020882159471512, 0.008188405074179173, 0.025684000924229622, 0.014976614154875278, -0.003929473459720612, 0.004358455538749695, 0.02499762922525406, -0.010961344465613365, 0.018916383385658264, 0.027084197849035263, 0.012162493541836739, -0.003514219308272004, 0.018847746774554253, 0.009183643385767937, 0.03783276677131653, 0.016266992315649986, -0.029047219082713127, -0.0004718800191767514, 0.06885673105716705, -0.012608634307980537, 0.017241638153791428, -0.048595063388347626, 0.039205510169267654, -0.007913856767117977, -0.01894383877515793, 0.036789484322071075, 0.012519406154751778, -0.019575299695134163, -0.021579502150416374, -0.0036137429997324944, 0.024050438776612282, -0.007200031075626612, -0.05405857414007187, 0.0010175448842346668, -0.03143578767776489, -0.03099651262164116, 0.016568994149565697, -0.030200321227312088, 0.012567452155053616, 0.023295430466532707, 0.010268108919262886, 0.010432838462293148, -0.0035931519232690334, -0.0035245148465037346, 0.01961648091673851, 0.012999866157770157, 0.03214961662888527, 0.014400062151253223, 0.004097634460777044, 0.0049521662294864655, -0.004427092615514994, -0.03827204555273056, -0.02416025660932064, 0.031325969845056534, -0.018724199384450912, 0.042417723685503006, 0.0029376675374805927, -0.021661866456270218, -0.003296296577900648, 0.010528930462896824, 0.03099651262164116, 0.037091486155986786, -0.012038946151733398, 0.013370506465435028, -0.0014842771925032139, 0.004646731540560722, -0.0063180443830788136, 0.03401654586195946, 0.02427007630467415, 0.01967139169573784, 0.016678813844919205, 0.028196118772029877, 0.015402164310216904, -0.01961648091673851, 0.02531336061656475, 0.022732606157660484, -0.0021054428070783615, -0.004897256847470999, -0.011029981076717377, 0.000878554827068001, -0.00786581076681614, 0.02494272030889988, -0.0068534137681126595, -0.00999356061220169, 0.04260990768671036, 0.0006254555191844702, -0.03549910709261894, -0.019932212308049202, 0.0251211766153574, -0.03838186338543892, -0.014249061234295368, 0.018435923382639885, -0.01998712122440338, -0.02204623445868492, 0.011510441079735756, -0.00034876223071478307, 0.0015752213075757027, 0.05175236985087395, -0.020536217838525772, -0.019767483696341515, -0.014358879998326302, 0.0035965838469564915, -0.020975496619939804, -0.03445582091808319, 0.00031208430300466716, -5.707469426852185e-06, 0.028772670775651932, -0.022540422156453133, 0.00012890904326923192, -0.005185532383620739, 0.021346136927604675, -0.007673627231270075, -0.023116974160075188, 0.0016155455959960818, -0.02687828615307808, 0.015429618768393993, 0.02137359045445919, 0.0007121098460629582, 0.015058978460729122, -0.009959242306649685, -0.013535235077142715, -0.0073167141526937485, 0.019177203997969627, 0.010199472308158875, 0.021771686151623726, 0.017296547070145607, 0.03873877599835396, 0.003775040153414011, 0.01120157353579998, 0.02882757969200611, 0.004622708540409803, 0.0248878113925457, 0.019465479999780655, 0.016019897535443306, 0.024572080001235008, 0.024489715695381165, 0.0013058207696303725, 0.0013572985772043467, -0.002726608654484153, 0.03431854769587517, -0.0004903262597508729, -0.0054738083854317665, 0.013185186311602592, -0.010810342617332935, -0.009808240458369255, 0.007515762001276016, 0.03214961662888527, -0.022416874766349792, 0.015937533229589462, 0.026795921847224236, -0.010947616770863533, -0.009890605695545673, -0.014894249849021435, 0.022416874766349792, -0.005051690153777599, -0.013974512927234173, -0.025533000007271767, -0.04145680367946625, -0.004615844693034887, 0.002582470653578639, -0.00048260457697324455, -0.007604990154504776, 0.01659644953906536, 0.055321499705314636, 0.008037404157221317, -0.011579077690839767, -0.008215860463678837, 0.0027163131162524223, 0.012121310457587242, -0.009430737234652042, -0.006846550386399031, -0.013706827536225319, 0.009554283693432808, -0.004708504769951105, 0.005889062769711018, -0.024681899696588516, 0.015470800921320915, 0.022320782765746117, 0.006801936309784651, -0.011428075842559338, 0.03129851445555687, 0.03239670768380165, -0.012780226767063141, 0.008346270769834518, -0.014537336304783821, -0.01264981646090746, -0.01038479246199131, -0.01244390569627285, -0.008428635075688362, 0.01229290384799242, 0.010336746461689472, -0.026658646762371063, 0.02004203200340271, 0.018737927079200745, -0.011764397844672203, 0.009972970001399517, 0.04189608246088028, 0.008462953381240368, -0.0009248848655261099, -0.029459040611982346, 0.03706403076648712, -0.006221952848136425, -0.008380589075386524, -0.028470667079091072, -0.008462953381240368, -0.0073441690765321255, 0.015155070461332798, -0.008037404157221317, 0.02361115999519825, -0.015649257227778435, -0.013144003227353096, -0.014633428305387497, -0.026988105848431587, -0.015896352007985115, -0.008401180617511272, 0.007879538461565971, -0.02615073323249817, -0.0045472076162695885, 0.007028438616544008, 0.04741450399160385, 0.002699153730645776, 0.012086992152035236, 0.043817922472953796, -0.009362099692225456, -0.0049830530770123005, -0.017227910459041595, -0.015827713534235954, -0.03827204555273056, -0.03401654586195946, 0.008579636923968792, -0.03311053290963173, -0.017639733850955963, -0.021757958456873894, 0.002579038729891181, 0.045629940927028656, -0.006613184232264757, 0.01168203353881836, 0.006767617538571358, 0.017763279378414154, 0.008380589075386524, 0.015155070461332798, 0.016802361235022545, -0.0006567711825482547, -0.0193144790828228, 0.012690998613834381, -0.028690306469798088, 0.042719729244709015, -0.016912180930376053, -0.010968207381665707, 0.013356778770685196, 0.012883182615041733, -0.004711936693638563, 0.04436701908707619, 0.03094160184264183, -0.01943802461028099, -0.021524593234062195, 0.0064004091545939445, -0.014592246152460575, -0.017063181847333908, -0.01755736954510212, -0.03580110892653465, 0.024022983387112617, -0.0373111255466938, 0.026493918150663376, 0.006376386154443026, -0.0012105867499485612, 0.031271059066057205, 0.018573198467493057, -0.010666204616427422, -0.01744754984974861, -0.02912958338856697, 0.0003940198221243918, 0.007165712770074606, -0.02240314707159996, 0.017845643684267998, 0.0281000267714262, 0.030831782147288322, 0.026782194152474403, 0.04755178093910217, -0.003071510000154376, 0.007151985075324774, -0.023940619081258774, -0.028800124302506447, 0.04093516245484352, -0.018024101853370667, 0.0028175527695566416, 0.018504559993743896, 0.02160695753991604, 0.01791428215801716, 0.017996646463871002, -0.022073689848184586, -0.00902577769011259, 0.006499933078885078, 0.03558146953582764, -0.026123277842998505, 0.026686102151870728, -0.005408603232353926, 0.028251027688384056, 0.02070094831287861, 0.010782887227833271, -0.007522625382989645, 0.05002271384000778, 0.018696743994951248, -0.030310140922665596, 0.038903504610061646, -0.03269871324300766, -0.01416669599711895, 0.03033759631216526, -0.0032328071538358927, 0.004554070997983217, 0.004475138615816832, 0.024077892303466797, -0.04461411014199257, -0.029019763693213463, -0.0013169742887839675, 0.04082534462213516, 0.027770567685365677, 0.000950623769313097, -0.007110802922397852, 0.019108567386865616, -0.023515067994594574, -0.004993348848074675, -0.004657026845961809, 0.00487323384732008, 0.0068328226916491985, 0.022691423073410988, -0.02119513414800167, 0.028251027688384056, -0.026493918150663376, -0.013370506465435028, -0.03676202893257141, -0.010611294768750668, -0.005693446844816208, 0.016802361235022545, -0.018724199384450912, 0.020357761532068253, -0.0182300116866827, 0.04252754524350166, -0.011160391382873058, -0.024777991697192192, 0.014056877233088017, 0.004533479921519756, 0.008291360922157764, 0.014427517540752888, -0.02094804123044014, 0.0010861820774152875, 0.030008137226104736, 0.02428380399942398, 0.0007442834903486073, 0.0029599748086184263, -0.0035725608468055725, 0.021881505846977234, 0.002460639923810959, -0.006609752308577299, 0.002048817230388522, -0.0029376675374805927, 0.035334374755620956, 0.02070094831287861, 0.021757958456873894, 0.005374284461140633, 0.04008406400680542, -0.021044133231043816, 0.0009214530000463128, -0.010528930462896824, -0.024970175698399544, -0.030227776616811752, -0.012903774157166481, 0.012773362919688225, 0.02192268893122673, -0.006661230232566595, -0.0006936636636964977, -0.01731027476489544, -0.015209980309009552, 0.014798157848417759, 0.013638190925121307, -0.021950142458081245, 0.033934179693460464, 0.0044614109210669994, -0.012189948000013828, -0.007543216925114393, 0.04321391507983208, -0.015251162461936474, -0.022375693544745445, 0.032479073852300644, 0.010247518308460712, 0.027097925543785095, -0.02675473876297474, 0.009293463081121445, -0.01396078523248434, 0.008112904615700245, -0.002923940308392048, 0.04823815077543259, 0.0054188985377550125, 0.0016618756344541907, -0.018696743994951248, 0.016857270151376724, 6.917332211742178e-05, 0.002167216269299388, -0.008483544923365116, 0.022924790158867836, -0.021716777235269547, 0.03736603260040283, -0.016994545236229897, -0.059247538447380066, -0.01361759938299656, 0.027990207076072693, -0.006088110152631998, 0.030502324923872948, 0.006414136383682489, 0.015566892921924591, 0.005103168077766895, 0.007975630462169647, 0.0034713209606707096, -0.01702199876308441, 0.04329627752304077, -0.0005641111056320369, 0.01229290384799242, -0.021236317232251167, 0.02554672583937645, 0.0012062969617545605, -0.009128733538091183, 0.010796614922583103, 0.012237994000315666, -0.04219808429479599, 0.007852084003388882, 0.0023731274995952845, -0.040056608617305756, 0.019396843388676643, 0.0011144948657602072, 0.016198353841900826, -0.043021731078624725, -0.033632177859544754, 0.05499203875660896, -0.003562265308573842, 0.024901537224650383, 0.011874217540025711, 0.002100295154377818, 0.0005357983172871172, 0.008085450157523155, 0.02046758122742176, 0.012512542307376862, 0.014152969233691692, -0.012883182615041733, -0.013226368464529514, -0.01586889661848545, -0.025450633838772774, -0.038903504610061646, 0.018257467076182365, 0.008257042616605759, -0.025821274146437645, 0.011064299382269382, 0.01431769784539938, 0.0313534252345562, 0.0225266944617033, 0.01549825631082058, -0.010268108919262886, -0.010419110767543316, -0.01974002830684185, -0.013404824770987034, -0.005779243540018797, 0.02852557599544525, -0.005106600001454353, 0.009259143844246864, -0.009904332458972931, 0.009156187996268272, -0.016843542456626892, -0.02524472400546074, -0.0017416662303730845, -0.003028611885383725, 0.0073441690765321255, 0.030008137226104736, 0.012793954461812973, 0.0024022983852773905, 0.014935432001948357, 0.012903774157166481, 0.014235333539545536, 0.009156187996268272, -0.0072961230762302876, 0.01196344569325447, -0.012402722612023354, 0.03420872613787651, 0.025766365230083466, 0.03838186338543892, 0.007790310308337212, 0.0031470106914639473, 0.017337730154395103, -0.020385216921567917, 0.03033759631216526, 0.023528795689344406, 0.006403841078281403, -0.003318603616207838, -0.014743248000741005, -0.014798157848417759, 0.020810768008232117, -0.006129292771220207, 0.01416669599711895, -0.01967139169573784, 0.025148632004857063, 0.03492255508899689, 0.019589027389883995, 0.042719729244709015, 0.026850830763578415, -0.022087417542934418, -0.01780446246266365, 0.040962617844343185, -0.009911196306347847, 0.019479207694530487, 0.009272871538996696, 0.03511473909020424, 0.0008922822307795286, -0.0032242275774478912, -0.022073689848184586, -0.0084766810759902, -0.010549521073698997, 0.047743961215019226, 0.00214147730730474, -0.017969191074371338, -0.0069117555394768715, 0.004200590308755636, 0.0162944458425045, 0.043982651084661484, -0.013212640769779682, 0.02174423076212406, 0.017667187377810478, 0.022609058767557144, -0.00956801138818264, 0.02499762922525406, -0.014345153234899044, -0.010830933228135109, 0.026672374457120895, 0.018628107383847237, -0.006489637307822704, 0.0018343263072893023, 0.0018875200767070055, 0.0045266165398061275, 0.0030835215002298355, -0.022059962153434753, 0.003311739768832922, -0.02742738276720047, -0.012663544155657291, 0.015237434767186642, -0.025217268615961075, 0.01956157200038433, 0.0015752213075757027, 0.03434600308537483, 0.012972410768270493, 0.015058978460729122, 0.04966580122709274, 0.012505678460001945, -0.017722098156809807, 0.03942514583468437, 0.003162454115226865]" -How Ndustrial Is Providing Fast Real-Time Queries and Safely Storing Client Data With 97 % Compression,"compression stats they are seeingMost companies believe this, but data is critical to us. We keep raw data: we never know how we will go back and reuse it. It's not something we can downsample, throw away, and hope one day we don't need it. So being able to store it and not having to focus too much on complex retention strategies to put things in a much slower, cold storage (versus hot storage) because we're able to compress it and still query it without worrying too much about going over limits is very significant for us.As far as query performance, I don't have an exact metric. Still, being able to make arbitrary queries, arbitrary roll-ups, on-demand unit conversion, and currency conversion at the time of querying and get responses back in the same amount of time that we got from doing pre-aggregates and without the difficulty of changing the questions’ format to roll up this data is a massive benefit.Before TimescaleDB, we were using Cassandra, and a fair amount of mixed data could also have been in a standard PostgreSQL database. But most of our high-frequency IoT data was in Cassandra, primarily for the benefit of being able to use partitioning for fast retrieval. However, it took a lot more effort to get that data out. So as efficient as it could be to store it, we had difficulty on the other side of getting it back out in the way that we wanted it.We also tried InfluxDB but didn’t go with it. It wasn’t just about learning a new language (InfluxQL); storing most of our relational data inside PostgreSQL was a significant factor. The platform we've been working with for the last two years has been a shift in usingGraphQLas our main layer for that service, our tenancy.TimescaleDB provides the time-series metrics, but the rest of our relational graph that builds out an organization are just entities and our PostgreSQL database. So, being able to use time-series metrics as they relate to relational entities, groupings, and various ways of querying those types of data without going outside PostgreSQL, was a significant aspect for us.With InfluxDB, we would deal with more latency: the amount of time it would take to query on one side, query on the other side, and correlate them together.",https://www.timescale.com/blog/how-ndustrial-is-providing-fast-real-time-queries-and-safely-storing-client-data-with-97-compression/,464,"[-0.022863022983074188, 0.004228140693157911, 0.05486573278903961, 0.001374577172100544, 0.09526259452104568, 0.03959610313177109, -0.0076348138973116875, 0.007876422256231308, -0.0069962781853973866, -0.005498308688402176, 0.019742827862501144, -0.024795886129140854, 0.02559664472937584, -0.01879020221531391, 0.030207907781004906, 0.02450595796108246, 0.009277747943997383, -0.03827071189880371, -0.04255062714219093, 0.01843124069273472, -0.0010087135015055537, 0.0016774500254541636, 0.008808338083326817, -0.00207610335201025, -0.01557336375117302, -0.0026594141963869333, -0.020115593448281288, 0.0387953482568264, 0.013730239123106003, -0.0718473270535469, 0.016498377546668053, -0.03128478676080704, -0.023070115596055984, -0.00474242027848959, 0.03280346840620041, 0.029186250641942024, 0.03426692262291908, 0.0061368439346551895, 0.04152897000312805, 0.011272740550339222, -0.019853277131915092, 0.03666919469833374, 0.0013763029128313065, -0.015863293781876564, -0.005139348097145557, 0.009595290757715702, -0.043102871626615524, -0.02715674228966236, -0.021316731348633766, 0.07383541762828827, -0.039623718708753586, 0.011693828739225864, -0.015352464281022549, -0.026397403329610825, 0.03111911378800869, -0.05511424317955971, -0.012073498219251633, 0.03564753755927086, -0.0052705067209899426, -0.022407419979572296, 0.012149432674050331, -0.07455333322286606, 0.0443178154528141, 0.021523823961615562, 0.00569504639133811, 0.042992424219846725, 0.007186112925410271, 0.039623718708753586, -0.0444282665848732, 0.04666486382484436, 0.053126152604818344, 0.03183703497052193, 0.03059447929263115, -0.006927247624844313, 0.04707904905080795, -0.054617222398519516, -0.029848946258425713, 0.04931565001606941, 0.012404846958816051, -0.010106118395924568, 0.014648349955677986, -0.014496481977403164, -0.0009431341895833611, 0.014033975079655647, 0.03608933836221695, -0.01714726723730564, -0.014896861277520657, -0.01051340065896511, -0.0053913104347884655, 0.021233893930912018, -0.018224148079752922, 0.05519707873463631, -0.0010673897340893745, 0.019618572667241096, 0.041943155229091644, 0.013191798701882362, 0.0005034938803873956, 0.007117082364857197, -0.018486466258764267, 0.009947347454726696, 0.0014919296372681856, -0.03401841223239899, -0.006934150587767363, -0.012066595256328583, 0.030870603397488594, -0.0076900385320186615, 0.015987548977136612, -0.0028130076825618744, 0.01769951358437538, 0.008421765640377998, -0.06069193780422211, 0.0036966027691960335, -0.04854250326752663, 0.0029372633434832096, -0.015200596302747726, -0.01496589183807373, -0.061409857124090195, 0.0052981190383434296, -4.4034142774762586e-05, 0.009664321318268776, -0.015752844512462616, -0.00031063889036886394, -0.04036924988031387, 0.01419274602085352, 0.03459826856851578, -0.027474284172058105, 0.008746210485696793, -0.05166269838809967, -0.03390796110033989, -0.002719816053286195, 0.053650788962841034, -0.032527342438697815, 0.05066865682601929, -0.02545858360826969, -0.01114158146083355, -0.001446196692995727, -0.04550514742732048, -0.022932054474949837, -0.018072281032800674, -0.018072281032800674, -0.022490255534648895, -0.04163941740989685, 0.044124528765678406, -0.0014289389364421368, -0.033051978796720505, 0.020405523478984833, -0.03827071189880371, 0.06930699199438095, -0.01674688793718815, -0.01891445741057396, -0.016484571620821953, -0.014020169153809547, -0.04348944500088692, -0.030125070363283157, 0.03735950589179993, -0.003927856218069792, 0.05257390812039375, 0.04785219579935074, 0.0008344106026925147, -0.05389929935336113, -0.021965621039271355, 0.04495289921760559, -0.020805902779102325, 0.0019984436221420765, -0.02213129587471485, -0.010444370098412037, -0.051994048058986664, -0.03989984095096588, -0.07162642478942871, -0.023732811212539673, -0.046968601644039154, -0.07295181602239609, -0.03755279257893562, 0.013902815990149975, 0.03388034924864769, -0.01894206926226616, -0.0017378519987687469, -0.06058148667216301, 0.052518684417009354, -0.032416895031929016, -0.06577260792255402, 0.008697888813912868, -0.021551435813307762, 0.049149975180625916, -0.02995939552783966, -0.0069962781853973866, -0.06345317512750626, 0.048073094338178635, -0.010547916404902935, 0.05066865682601929, -0.04001028835773468, 0.05682620778679848, 0.01841743476688862, 0.043599896132946014, 0.003163339337334037, -0.04649919271469116, 0.02668733336031437, 0.008180157281458378, -0.06047103926539421, 0.030235519632697105, 0.06262480467557907, 0.024257445707917213, 0.06488901376724243, 0.004604358691722155, 0.001049269107170403, -0.000804209616035223, 0.00831131637096405, -0.01608419232070446, -0.051883600652217865, -0.03849161043763161, -0.019659990444779396, -0.0008827322162687778, -0.02001895196735859, 0.005853817332535982, -0.032002709805965424, -0.016940174624323845, -0.07057715952396393, -0.007413914892822504, -0.011189903132617474, -0.028012724593281746, 0.049149975180625916, 0.07322794198989868, 0.004376556724309921, -0.046443965286016464, -0.03186464682221413, 0.03771846368908882, 0.019549541175365448, -0.036337848752737045, 0.03589605167508125, 0.004348944406956434, 0.008221575990319252, -0.015614781528711319, -0.028206011280417442, -0.04208121448755264, -0.0008676316938363016, -0.0021572145633399487, 0.009036140516400337, -0.017492420971393585, -0.03791175037622452, -0.03225122019648552, -0.037442341446876526, -0.013267732225358486, -0.018596915528178215, 0.007110179401934147, -0.009139686822891235, 0.0222831629216671, -0.030649704858660698, -0.05897997319698334, 0.025292908772826195, 0.03774607926607132, -0.01499350368976593, 0.0018327694851905107, 0.0001148716764873825, -0.03266540542244911, -0.04210883006453514, -0.07963400334119797, 0.006254196632653475, 0.04870817810297012, 0.022448837757110596, 0.016346508637070656, 0.0012693050084635615, -0.012108013965189457, 0.0026007378473877907, 0.006951407995074987, -0.029655659571290016, 0.021302925422787666, -0.024809693917632103, -0.03117433935403824, -0.013799269683659077, -0.027902275323867798, 0.03716621920466423, 0.02278018556535244, 0.03158852458000183, -0.05102761462330818, -0.0027940243016928434, -0.013012317940592766, -0.0009103445336222649, -0.0005962541326880455, 0.016456957906484604, -0.007051502820104361, -0.005860720295459032, -0.05370601266622543, -0.010837845504283905, 0.028468329459428787, 0.004476651549339294, -0.001972557045519352, 0.014510287903249264, 0.0388505719602108, 0.0193976741284132, -0.031919874250888824, 0.0304840300232172, 0.00855982769280672, 0.030125070363283157, 0.006236938759684563, 0.01716107316315174, 0.02048836089670658, 0.008711695671081543, 0.012363428249955177, -0.01888684555888176, -0.023732811212539673, -0.005812399089336395, 0.0012468700297176838, 0.022932054474949837, -0.0061092316173017025, 0.027584733441472054, 0.022642124444246292, -0.025417163968086243, 0.020709259435534477, -0.018665947020053864, 0.023470494896173477, -0.005536275450140238, -0.011445317417383194, 0.0006247293204069138, -0.007572685834020376, -0.0442902036011219, 0.0062231323681771755, 0.05608067661523819, -0.04202599078416824, -0.015338658355176449, -0.04379318282008171, -0.023001084104180336, -0.11398376524448395, -0.016884949058294296, 0.0024298864882439375, 0.005494856741279364, -0.035233352333307266, -0.0029372633434832096, -0.011976854875683784, 0.0069997296668589115, -0.021358149126172066, 0.017589064314961433, -0.024547375738620758, 0.05991879105567932, 0.03222360834479332, -0.04100433364510536, -0.04169464483857155, -0.007282756268978119, 0.019093938171863556, -0.014303195290267467, 0.014386032707989216, -0.021316731348633766, -0.018569303676486015, -0.07654142379760742, 0.023705199360847473, 0.01471738051623106, 0.05044775828719139, 0.010665268637239933, 0.017520034685730934, 0.00045042639249004424, -0.005791689734905958, -0.022476449608802795, 0.011673119850456715, 0.009043043479323387, 0.009222523309290409, 0.04379318282008171, 0.004027951043099165, -0.006002233829349279, -0.021813753992319107, -0.04227450117468834, -0.020198430866003036, -0.027902275323867798, 0.020654035732150078, 0.021454792469739914, -0.001516953227110207, -0.02617650479078293, -0.0011648958316072822, -0.039817001670598984, 0.018762588500976562, -0.015877099707722664, -0.04039686173200607, 0.030622093006968498, -0.005981524474918842, -0.015504332259297371, -0.0304840300232172, -0.019301030784845352, -0.011673119850456715, -0.0016947077820077538, 0.03396318480372429, 0.005481050815433264, 0.04260585084557533, 0.03956849128007889, 0.033162426203489304, -0.009257039055228233, -0.016608826816082, 0.039706554263830185, 0.04492528736591339, 0.014814023859798908, 0.03504006937146187, -0.05881429836153984, -0.0025731255300343037, 0.00045689803664572537, -0.00367589364759624, -0.02998700737953186, -0.033107202500104904, -0.022945860400795937, 0.012404846958816051, 0.021261507645249367, 0.0222555510699749, 0.03553709015250206, 0.02551380731165409, 0.045726045966148376, -0.014758799225091934, -0.05649486184120178, -0.0388229601085186, 0.013405794277787209, 0.0032013063319027424, -0.004342041444033384, 0.0222417451441288, -0.003358351532369852, -0.023097727447748184, -0.01086545828729868, 0.013737142086029053, 0.031478073447942734, -0.024644019082188606, 0.03208554536104202, -0.04713427647948265, -0.03175419941544533, 0.07068760693073273, 0.024533569812774658, 0.0720682218670845, -0.017561452463269234, -0.0061679077334702015, -0.026259342208504677, -0.0069237956777215, -0.03705576807260513, 0.058648623526096344, 0.04953654855489731, -0.02718435414135456, -0.03719383105635643, -0.03230644389986992, -0.01471738051623106, -0.022393612191081047, 0.03169897198677063, 0.0031667910516262054, -0.021868977695703506, 0.03443259745836258, 0.01393042877316475, -0.02168949879705906, 0.022490255534648895, -0.002312534023076296, -0.004631971009075642, 0.007213725708425045, 0.00855292472988367, -0.007158500608056784, -0.016360314562916756, -0.023083921521902084, -0.018113698810338974, -0.02498917281627655, 0.018472660332918167, -0.010637656785547733, 0.038132648915052414, 0.009871413931250572, -0.025665676221251488, 0.022573092952370644, -0.033604227006435394, -0.06041581556200981, 0.02000514417886734, -0.0015350738540291786, 0.04047970101237297, -0.02439550869166851, -0.027046293020248413, 0.006423322018235922, -0.07135030627250671, -0.014247970655560493, 0.010085409507155418, -0.03653113543987274, 0.04663725197315216, 0.013668111525475979, 0.03617217391729355, -0.006309421267360449, -0.024630213156342506, 0.016484571620821953, -0.013095155358314514, -0.008829047903418541, -0.009802383370697498, 0.02284921705722809, 0.02670113928616047, 0.017630483955144882, 0.01720249094069004, -0.05445154756307602, 0.02497536689043045, -0.004866675939410925, -0.029793722555041313, 0.04959177225828171, -0.008711695671081543, 0.02217271365225315, 0.010071603581309319, 0.010499594733119011, 0.017409583553671837, 0.027336223050951958, -0.0005216145073063672, -0.013488630764186382, 0.04277152568101883, -0.01608419232070446, -0.0004098707577213645, 0.022600704804062843, -0.07057715952396393, -0.044621553272008896, 0.02715674228966236, -0.011472930200397968, 0.04923281446099281, -0.009899025782942772, 0.027888469398021698, 0.0776459202170372, -0.02891012653708458, 0.03711099177598953, -0.01058933511376381, -0.008773823268711567, -0.008725501596927643, -0.03376989811658859, 0.033604227006435394, 0.02663210779428482, 0.0500887967646122, 0.014910667203366756, -0.03564753755927086, 0.0194667037576437, -0.0031063889618963003, 0.013868301175534725, -0.011590282432734966, -0.01446886919438839, -0.02545858360826969, -0.04834922030568123, -0.0278608575463295, -0.007372496649622917, -0.03760801628232002, 0.019301030784845352, -0.03926475718617439, -0.0005833108443766832, -0.02616269886493683, -0.01419274602085352, 0.007234434597194195, -0.03702815622091293, 0.015877099707722664, 0.0022711155470460653, -0.030263131484389305, 0.013744045048952103, -0.02389848604798317, -0.04001028835773468, -0.04536708444356918, 0.021868977695703506, 0.01880400814116001, 0.017340553924441338, -0.000998358940705657, 0.04879101738333702, 0.004866675939410925, 0.002847523195669055, 0.015863293781876564, -0.007979968562722206, -0.010975907556712627, 0.03379751369357109, 0.011031132191419601, -0.028136981651186943, 0.010610044002532959, -0.0031736940145492554, 0.03150568902492523, 0.017865188419818878, 0.03230644389986992, 0.027612347155809402, 0.004010693170130253, 0.008697888813912868, -0.006847861688584089, 0.011790472082793713, 0.00427991384640336, 0.0024782081600278616, -0.019314836710691452, 0.033576611429452896, 0.006247293204069138, -0.03446020931005478, -0.03208554536104202, 0.02718435414135456, 0.002443692646920681, -0.011521251872181892, 0.008145642466843128, 0.019135355949401855, 0.003073599422350526, 0.015670007094740868, -0.04843205586075783, -0.013516243547201157, 0.0077728754840791225, -0.006174811162054539, -0.039126694202423096, -0.001191645278595388, -0.008359638042747974, 0.041335683315992355, -0.02888251468539238, 0.021302925422787666, 0.016332702711224556, 0.012756903655827045, 0.029296699911355972, -0.0386848971247673, -0.0007882462232373655, -0.012660261243581772, 0.0014625914627686143, -0.003366980468854308, 0.0070825666189193726, 0.030125070363283157, -0.014606931246817112, 0.010354629717767239, -0.028965352103114128, 0.05770980566740036, 0.03272062912583351, 0.014103005640208721, 0.0036379266530275345, -0.021951815113425255, -0.023070115596055984, 0.02715674228966236, -0.007206822279840708, -0.00214685988612473, 0.040286414325237274, -0.009277747943997383, 0.034156471490859985, -0.014047781005501747, -0.020350299775600433, -0.05503140762448311, -0.03285869210958481, -0.005764077417552471, -0.03401841223239899, -0.008173254318535328, 0.005077220033854246, -0.020419329404830933, -0.008773823268711567, -0.023083921521902084, -0.01830698549747467, -0.02000514417886734, 0.014786411076784134, 0.04111478477716446, -0.015877099707722664, -0.027336223050951958, -0.02055739238858223, 0.013419600203633308, -0.011024229228496552, 0.016484571620821953, 0.025403358042240143, 0.02393990382552147, -6.676578777842224e-05, 0.04558798298239708, 0.013654305599629879, 0.04117000848054886, 0.008104223757982254, -0.009691933169960976, 0.02047455497086048, 0.01713346131145954, -0.0006859942222945392, -0.022062264382839203, 0.014220358803868294, -0.04208121448755264, -0.008546020835638046, 0.0250167865306139, -0.02171711064875126, -0.024809693917632103, 0.02117867022752762, -0.04017596319317818, 0.07974445819854736, 0.023995129391551018, 0.010271793231368065, 0.00998186320066452, -0.020930157974362373, -0.026853006333112717, -0.015103953890502453, 0.030622093006968498, -0.03937520459294319, 0.0017223200993612409, -0.017464809119701385, 0.015932323411107063, -0.03388034924864769, 0.032002709805965424, 0.026438821107149124, 0.01607038639485836, 0.049785058945417404, 0.022642124444246292, -0.014896861277520657, 0.04050731286406517, 0.03614456206560135, 0.0166364386677742, 0.02544477768242359, 0.005515566095709801, 0.027985112741589546, -0.029158636927604675, 0.015338658355176449, 0.06356362253427505, -0.030180294066667557, 0.011210612952709198, -0.028689227998256683, -0.010948295705020428, -0.008193964138627052, -0.02043313719332218, -0.008490796200931072, 0.013785463757812977, 0.031975097954273224, 0.02000514417886734, 0.015794262290000916, 0.015559556894004345, 0.015670007094740868, -0.024036547169089317, 0.004003790207207203, -0.030898215249180794, 0.008746210485696793, 0.05608067661523819, -0.022407419979572296, 0.020170819014310837, 0.005608757957816124, -0.010665268637239933, -0.06914131343364716, -0.027916083112359047, -0.022890634834766388, -0.005846914369612932, 0.009070655331015587, -0.02490633726119995, 0.03164374828338623, -0.03009745664894581, -0.04224688932299614, 0.022366000339388847, -0.008732404559850693, -0.004041757434606552, 0.02282160520553589, -0.007572685834020376, -0.016484571620821953, 0.013391988351941109, -0.012977803125977516, -0.0029010220896452665, -0.04390363022685051, -0.015324852429330349, -0.014399838633835316, -0.045256637036800385, 0.04942610114812851, -0.02773660235106945, 0.0044145239517092705, 0.050723880529403687, 0.030732542276382446, -0.0152558209374547, 0.01785138249397278, 0.002321162959560752, 0.005691594909876585, -0.01025798637419939, 0.027998918667435646, 0.003924404736608267, -0.002300453605130315, -0.00012673635501414537, -0.04070059955120087, 0.003989984281361103, -0.03208554536104202, 0.0077797784470021725, -0.026010829955339432, -0.029296699911355972, 0.00858053658157587, -0.028551166877150536, 0.021772334352135658, 0.034708719700574875, 0.04398646950721741, -0.014896861277520657, -0.007648619823157787, 0.012839741073548794, 0.014130618423223495, 0.0033894155640155077, -0.015904711559414864, -0.033355712890625, -0.0017792705912142992, -0.012618842534720898, 0.0030787766445428133, 0.012998512014746666, -0.004749323707073927, -0.002048491034656763, -0.03114672750234604, 0.012108013965189457, 0.006437128409743309, 0.030815377831459045, -0.040783435106277466, -0.0222003273665905, -0.006450934335589409, -0.04279913753271103, -0.005936654284596443, 0.0008400193764828146, 0.004928804002702236, -0.0076555232517421246, 0.038629673421382904, 0.006768476217985153, 0.0003417027764953673, -0.007517461199313402, 0.01358527410775423, 0.010430564172565937, 0.030953440815210342, 0.006098877172917128, -0.012232269160449505, -0.03683486953377724, -0.01165241003036499, 0.01021656859666109, 0.01604277268052101, -0.018182730302214622, -0.021275313571095467, -0.03501245379447937, -0.031395237892866135, -0.008490796200931072, -0.0069134412333369255, 0.011065647937357426, -0.0023021793458610773, 0.01601516082882881, -0.0024574988055974245, -0.10741202533245087, -0.016208447515964508, 0.045836493372917175, -0.030704928562045097, -0.0033014011569321156, -0.004179819021373987, 0.024602601304650307, 0.016995398327708244, 0.028523553162813187, -0.008704791776835918, 0.005926299840211868, -0.06632485240697861, -0.04097672179341316, 0.0013262555003166199, -0.012404846958816051, 0.0334937758743763, 0.00918800849467516, 0.03791175037622452, 0.020833514630794525, 0.020364105701446533, -0.015159178525209427, 0.006064361426979303, -0.014510287903249264, 0.05260151997208595, 0.05265674367547035, 0.002476482419297099, -0.022310776636004448, 0.03506768122315407, 0.0030908570624887943, -0.016553601250052452, 8.11651989351958e-05, -0.011272740550339222, 0.011300352402031422, 0.012860449962317944, -0.0068237013183534145, 0.011003520339727402, 0.004756226669996977, 0.007413914892822504, 0.0020381363574415445, -0.003266885643824935, -0.01950812339782715, -0.0498955100774765, 0.04232972860336304, -0.02558283880352974, 0.04779697209596634, -0.008000677451491356, 0.011935437098145485, 0.021951815113425255, 0.01883161999285221, -0.011169194243848324, 0.008083514869213104, 0.003948565572500229, -0.019162967801094055, -0.008152545429766178, 0.021910397335886955, 0.012591229751706123, -0.04561559483408928, -0.020764485001564026, -0.016208447515964508, 0.014413644559681416, -0.036393072456121445, 0.005750271026045084, 0.006713251583278179, -0.05447915941476822, -0.016277479007840157, -0.01782376877963543, -0.007910937070846558, 0.02893773838877678, 0.0278608575463295, 0.0017516582738608122, 0.037994589656591415, 0.019784245640039444, 0.02436789497733116, -0.019867083057761192, 0.0166364386677742, 0.01673308201134205, 0.015835680067539215, -0.020957771688699722, -0.03109150193631649, -0.013398891314864159, 0.022559287026524544, -0.004773484542965889, -0.000804209616035223, 0.011762859299778938, 0.0022158909123390913, -0.006243841722607613, -0.0055742422118783, -0.02104060724377632, 0.008891175501048565, 0.004797645378857851, 0.0333833284676075, -0.025389552116394043, -0.006847861688584089, 0.004877030849456787, 0.016608826816082, 0.012038983404636383, 0.02213129587471485, 0.0044973609037697315, -0.004290268290787935, -0.014648349955677986, 0.034653495997190475, -0.0038864377420395613, 0.0034515433944761753, -0.018196536228060722, -0.02392609789967537, -0.02324959635734558, 0.002391919493675232, 0.009056849405169487, 0.0052774096839129925, 0.013536952435970306, -0.021399568766355515, -0.005843462888151407, 0.012411749921739101, 0.019052518531680107, 0.020736871287226677, 0.005053059197962284, 0.02168949879705906, -0.0035015905741602182, -0.0034688010346144438, -0.025292908772826195, 0.007979968562722206, -0.02725338563323021, -0.017878994345664978, 0.037994589656591415, -0.009367488324642181, 0.0278194397687912, 0.039651330560445786, -0.0045594885013997555, 0.030925827100872993, -0.004549134057015181, 0.003232370363548398, 0.055252306163311005, -0.001191645278595388, 0.06560693681240082, -0.006226584315299988, -0.01025108341127634, 0.0008365677786059678, -0.0030131973326206207, 0.0014841635711491108, 0.03592366352677345, 0.011079453863203526, 0.013267732225358486, 0.0025817544665187597, 0.004079724196344614, 0.009657418355345726, 0.00019835587590932846, 0.03180942311882973, -0.004811451304703951, -0.02341526933014393, 0.018748782575130463, 0.019314836710691452, -0.038546834141016006, 0.010741203092038631, 0.07505035400390625, -0.018210342153906822, 0.0719025507569313, -0.041446130722761154, -0.0166640505194664, -0.004535327665507793, 0.011355577036738396, 0.012342718429863453, 0.030815377831459045, 0.018596915528178215, -0.020681647583842278, 0.027598539367318153, -0.016208447515964508, -0.011445317417383194, -0.001501421327702701, -0.028040338307619095, 0.026853006333112717, -0.002792298560962081, -0.013357472606003284, -0.0044076209887862206, 0.033162426203489304, 0.05108284205198288, 0.026949649676680565, 0.0013003689236938953, 0.033134814351797104, 0.02282160520553589, 0.010699784383177757, -0.027474284172058105, -0.0068237013183534145, 0.02273876778781414, 0.04600216820836067, 0.029545210301876068, -0.011486736126244068, -0.04105955734848976, 0.005750271026045084, -0.014303195290267467, 0.011707634665071964, 0.017340553924441338, 0.00946413166821003, 0.017520034685730934, 0.03172658756375313, -0.008532214909791946, 0.01771331951022148, 0.011093259789049625, -0.01251529622823, -0.02050216682255268, 0.026438821107149124, -0.059642668813467026, 0.030704928562045097, 0.015670007094740868, -0.023139147087931633, 0.0015307595022022724, 0.041363295167684555, -0.02166188508272171, 0.029048187658190727, -0.02110963873565197, 0.0388505719602108, 0.015877099707722664, 0.017092041671276093, -0.0008188786450773478, -0.0250858161598444, -0.03619978576898575, 0.0097264489158988, 0.002031233161687851, 0.02341526933014393, 0.0070825666189193726, -0.032969143241643906, -0.02108202688395977, -0.01724391058087349, -0.018044669181108475, 0.023705199360847473, -0.02552761510014534, 0.04517379775643349, 0.013778560794889927, 0.0028026532381772995, -0.015297239646315575, 0.005691594909876585, -0.004897739738225937, 0.029655659571290016, 0.001984637463465333, -0.005522469058632851, 0.02772279642522335, 0.02559664472937584, -0.0007429447141475976, 0.014648349955677986, 0.0061402954161167145, -0.0002299590705661103, 0.011307256296277046, -0.00332728773355484, 0.008083514869213104, -0.027501897886395454, -0.02827504277229309, -0.009015430696308613, 0.027432866394519806, 0.044069305062294006, 0.0334661640226841, -0.009367488324642181, 0.023719005286693573, 0.0043869116343557835, 0.014786411076784134, 0.021882783621549606, 0.03760801628232002, 0.017878994345664978, -0.0013331585796549916, 0.01774093322455883, 0.001417721388861537, -0.018058475106954575, -0.019729021936655045, 0.02279399149119854, 0.007565782871097326, 0.004701002035290003, -0.016208447515964508, -0.007386302575469017, -0.021924203261733055, -0.015476720407605171, -0.0031270983163267374, 0.0045318761840462685, -0.021192476153373718, 0.014482676051557064, 0.029269088059663773, -0.005087574943900108, -0.015103953890502453, 0.019811859354376793, -0.0668771043419838, -0.005028898362070322, -0.0015419769333675504, -0.029269088059663773, -0.0276813767850399, -0.002617995487526059, -0.018141310662031174, -0.024091772735118866, 0.029821334406733513, 0.0029217314440757036, 0.0005483639542944729, -0.023028695955872536, 0.01356456521898508, -0.04263346269726753, -0.009926638565957546, 0.008677179925143719, -0.00918110553175211, 0.0069479565136134624, -0.02109583280980587, 0.004052111878991127, 0.010485788807272911, 0.01084474939852953, -0.004431781824678183, -0.02447834424674511, 0.010361532680690289, -0.019811859354376793, 0.03117433935403824, 0.0250996220856905, 0.014130618423223495, 0.009374391287565231, -0.011769762262701988, -0.012473877519369125, -0.006547577679157257, 0.02562425658106804, 0.011541960760951042, 0.0069410535506904125, -0.00892569124698639, 0.035840824246406555, -0.002688752254471183, 0.018127504736185074, 0.028178399428725243, 0.01558716967701912, 0.030649704858660698, 0.03272062912583351, 0.015393882989883423, 0.03291391581296921, 0.019563347101211548, 0.025955606251955032, 0.008621955290436745, -0.005639821756631136, 0.020778290927410126, 0.0012900143628939986, -0.013391988351941109, 0.0036413781344890594, 0.0052118306048214436, -0.0031823229510337114, 0.01669166423380375, 0.031367626041173935, -0.018099892884492874, -0.005342989228665829, 0.03686248138546944, -0.01445506326854229, 0.0004689784545917064, -0.015918517485260963, 0.019825665280222893, -0.015338658355176449, -0.011217515915632248, -0.006330130621790886, -0.008242285810410976, -0.01771331951022148, 0.02278018556535244, 0.03175419941544533, 0.006126489490270615, 0.027557121589779854, 0.0554455928504467, -0.0017965282313525677, 0.005715755745768547, 0.011072550900280476, 0.004241946619004011, 0.0035412833094596863, -0.01723010465502739, 0.007531267590820789, 0.008221575990319252, 0.009871413931250572, -0.01883161999285221, 0.005667434073984623, -0.028551166877150536, 0.0030701477080583572, -0.005988427437841892, -0.01163170114159584, -0.006430224981158972, 0.051994048058986664, 0.019314836710691452, -0.004659583326429129, 0.030870603397488594, 0.007400108966976404, -0.02327720820903778, -0.0008451966568827629, -0.008083514869213104, -0.010182052850723267, 0.01112777553498745, -0.012135625816881657, -0.0007520049693994224, 0.01950812339782715, 0.005094477906823158, -0.014054683968424797, 0.004576746374368668, 0.049177590757608414, -0.005474147852510214, 0.013426503166556358, -0.02773660235106945, 0.005035801790654659, 0.003972726408392191, 0.006758121773600578, -0.002007072325795889, -0.026383597403764725, -0.01727152243256569, -0.004956416320055723, -0.01279141940176487, 0.02282160520553589, -0.008428668603301048, -0.015338658355176449, 0.00581585057079792, -0.04183270409703255, -0.044400654733181, -0.015214403159916401, 0.002657688455656171, -0.014344613999128342, 0.018997294828295708, -0.00019943449296988547, 0.054782893508672714, 0.006309421267360449, 0.016318896785378456, 0.023056309670209885, -0.01420655194669962, -0.007496751844882965, -0.03506768122315407, 0.0030080198775976896, -0.06301137804985046, -0.02937953732907772, 0.015186790376901627, -0.013744045048952103, 0.008663373999297619, -0.0723443478345871, -0.004780387505888939, 0.025720899924635887, 0.00568124046549201, -9.17894794838503e-05, 0.015863293781876564, 0.027460478246212006, 0.020350299775600433, 0.027653764933347702, 0.027046293020248413, -0.044787224382162094, -0.03498484194278717, 0.017671901732683182, -0.0386848971247673, 0.03125717490911484, -0.023608556017279625, -0.0014487853040918708, 0.0022624866105616093, -0.006016039755195379, -0.01163860410451889, 0.031975097954273224, 0.03183703497052193, -0.021951815113425255, -0.002852700650691986, 0.00653377128764987, -0.01087236125022173, -0.0045284247025847435, -0.027032487094402313, -0.010541013441979885, -0.0019363157916814089, -0.022366000339388847, 0.010085409507155418, 0.022089876234531403, -0.015656201168894768, 0.01885923184454441, 0.030815377831459045, -0.011769762262701988, -0.02117867022752762, -0.008242285810410976, 0.009332973510026932, 0.0069479565136134624, -0.026521658524870872, 0.024823499843478203, 0.0032375475857406855, 0.01496589183807373, 0.03001462109386921, 0.036310236901044846, -0.0020346848759800196, 0.0032806918025016785, -0.019080132246017456, -0.023719005286693573, 0.02877206541597843, 0.0053015705198049545, -0.013198701664805412, 0.0038829862605780363, 0.0250996220856905, 0.008953303098678589, 0.027874663472175598, -0.019259611144661903, -0.001853478723205626, 0.0019363157916814089, 0.012556714937090874, -0.018458854407072067, 0.037497565150260925, -0.001405640970915556, 0.01891445741057396, 0.019880888983607292, 0.017671901732683182, -0.012943287380039692, 0.02377423085272312, -0.007482945919036865, -0.03175419941544533, 0.027460478246212006, -0.019770439714193344, 0.01471738051623106, 0.041418518871068954, 0.0048632244579494, 0.025168653577566147, 0.017948025837540627, 0.020295074209570885, -0.004732065834105015, -0.015518139116466045, -0.007137791719287634, 0.026549270376563072, 0.019190581515431404, 0.007731456775218248, -0.007030793931335211, 0.023511912673711777, -0.012101111002266407, -0.015531945042312145, -0.0034325597807765007, -0.005146251060068607, 0.02215890772640705, -0.0034912361297756433, -0.03426692262291908, 0.023580944165587425, -0.028551166877150536, -0.002712913090363145, -0.023028695955872536, -0.015269627794623375, -0.007531267590820789, -0.01302612479776144, -0.017023012042045593, 0.013516243547201157, -0.0009137960732914507, 0.01673308201134205, -0.003779439954087138, -0.0222279392182827, 0.018030861392617226, -0.012432458810508251, -0.011252030730247498, 0.0152558209374547, -0.018734976649284363, 0.012204657308757305, 0.03186464682221413, -0.0061437468975782394, 0.009602193720638752, -0.023456688970327377, -0.00015510372759308666, -0.0111346784979105, -0.02055739238858223, -0.018113698810338974, -0.023442881181836128, -0.003758730599656701, 0.05329182744026184, 0.02101299539208412, 0.03995506465435028, 0.013543856330215931, 0.029710885137319565, -0.038546834141016006, 0.012832838110625744, -0.031367626041173935, -0.005267055239528418, -0.022324582561850548, -0.004804548341780901, -0.013136574067175388, 0.03708337992429733, -0.020750679075717926, 0.017920412123203278, -0.002202084520831704, -0.0068823774345219135, 0.027653764933347702, 0.0031788714695721865, -0.015380077064037323, 0.02773660235106945, -0.0005440494860522449, -0.019770439714193344, 0.0019276869716122746, 0.05224255844950676, -0.001208040164783597, -0.034156471490859985, 0.006720155011862516, -0.01468976866453886, -0.005349892191588879, -0.03103627823293209, 0.004096982069313526, -0.001850027241744101, 0.025997024029493332, 0.0004970222362317145, 0.016332702711224556, 0.012273687869310379, -0.01881781406700611, -0.011686925776302814, 0.008525311946868896, 0.010119925253093243, -0.001156267011538148, -0.005401665344834328, -0.008704791776835918, -0.0333281010389328, 0.029075801372528076, -0.022020846605300903, -0.010962101630866528, 0.004252301529049873, 0.018721170723438263, -0.00024160802422557026, 0.05392691120505333, -0.004783838987350464, 0.029600435867905617, 0.00581585057079792, 0.013819979503750801, 0.004366202279925346, -0.015090147033333778, -0.0026007378473877907, 0.005867623724043369, -0.003952017053961754, -0.0304840300232172, 0.008794532157480717, -0.0011329690460115671, -0.02047455497086048, 0.01191472727805376, -0.0022158909123390913, -0.012418652884662151, 0.0077245538122951984, 0.004148755222558975, -0.023539524525403976, 0.008421765640377998, 0.010202761739492416, 0.013826882466673851, -0.020336493849754333, -0.05122090131044388, 0.028992963954806328, -0.024699244648218155, 0.019149161875247955, 0.014234164729714394, -0.0010251083876937628, 0.013958041556179523, -0.007503655273467302, 0.016387928277254105, 0.014289389364421368, 0.01778235100209713, -0.013647402636706829, -0.013274635188281536, 0.001093276310712099, -0.015269627794623375, -0.0388229601085186, 0.019784245640039444, 0.005729561671614647, -0.008124932646751404, -0.005429277662187815, 0.006419870536774397, 0.02174472250044346, 0.011866405606269836, 0.02946237288415432, 0.0014824378304183483, 0.020226044580340385, -0.00735869025811553, -0.018983488902449608, 0.01558716967701912, 0.02048836089670658, 0.01495208591222763, -0.006744315382093191, -0.007123985327780247, 0.014096102677285671, 0.024119384586811066, -0.018017055466771126, 0.01496589183807373, 0.001865559141151607, -0.017934218049049377, 0.019024906679987907, -0.015904711559414864, 0.0011545412708073854, 0.02173091657459736, -0.012377234175801277, -0.0010958650382235646, -0.014317001216113567, 0.007427721284329891, -0.015531945042312145, 0.012432458810508251, 0.05342989042401314, 0.011742150411009789, 0.023070115596055984, 0.025776125490665436, -0.01279141940176487, 0.00856673065572977, -0.0031702425330877304, 0.026494046673178673, 0.02497536689043045, 0.02329101413488388, 0.00012209833948872983, -0.018196536228060722, -0.020930157974362373, 0.016553601250052452, -0.01445506326854229, 0.01772712729871273, -0.01826556771993637, 0.01825176179409027, 0.0012624019291251898, 0.029793722555041313, 0.027294805273413658, 0.006202423479408026, -0.007206822279840708, -0.010996617376804352, 0.01279832236468792, -0.031229563057422638, 0.019052518531680107, -0.0045871008187532425, 0.023001084104180336, -0.000736904505174607, 0.020170819014310837, -0.008352735079824924, 0.013661208562552929, -0.013267732225358486, 0.02614889293909073, -0.008546020835638046, -0.011976854875683784, -0.007869518361985683, 0.012038983404636383, 0.022573092952370644, 0.011493639089167118, -0.012729291804134846, 0.010133731178939342, 0.035868436098098755, 0.009422712959349155, -0.007379399612545967, -0.006720155011862516, -0.022904440760612488, -0.015849485993385315, 0.027363834902644157, -0.0077728754840791225, -0.02337385155260563, -0.010610044002532959, -0.0014591399813070893, -0.004946061410009861, -0.001960476627573371, -0.004883933812379837, 0.006713251583278179, -0.04616784304380417, 0.018679752945899963, 0.0008227616199292243, -0.02714293636381626, 0.0026283501647412777, 0.026549270376563072, 0.03125717490911484, 0.012487683445215225, 0.012729291804134846, 0.030981052666902542, 0.0069686658680438995, -0.0023349691182374954, 0.02823362499475479, 0.011721440590918064]" -How Ndustrial Is Providing Fast Real-Time Queries and Safely Storing Client Data With 97 % Compression,"Not to mention that you’re dealing with a new language. With TimescaleDB, it’s just a SQL query.I’ve had experience with InfluxDB, which is one of the reasons we made sure we tested that out as well. And that's probably a direction I would go back to if TimescaleDB didn’t exist. Luckily, we don’t have to. I mean, it's also a powerful database, but for the other factors I just mentioned, TimescaleDB made more sense at the time.Current Deployment & Future PlansFrom a more architectural perspective, I'm focused on ensuring the technologies we bring in aren't going to hinder our developers by having to make them learn something new every time we bring in a new engineer. If there's too much of a learning curve and it's not something they're already used to, you're going to slow down.The Ndustrial data architectureAs a small startup, we must balance the technologies we can benefit from without having 10 developers purely stationed for managing them, which is why we chose Managed Service for TimescaleDB. You don't want to have every developer spend all their time managing it or being aware of it and worrying about what happens if you don’t apply those maintenance updates or backups correctly.“Getting all these updates and zero downtime for deployments and replicas is significant for us because we need to assure our customers that we are as reliable as the data we're storing”Time series is the main portion of the type of data we collect, so it’s a very significant aspect of our platform. We wouldn’t be able to do much without it. Putting that in the hands of the same developers that are also having to focus on integrations, customers, and future work would have been too much of a risk. On the other hand, getting all these updates and zero downtime for deployments and replicas is significant for us because we need to assure our customers that we are as reliable as the data we're storing.As for deployment, on the ingestion side, we useKotlinas our foundation for building out stream-processing pipelines on a technology calledPulsaras our messaging layer. It's very similar toKafkaPTP-style (point-to-point) message queuing. Essentially, all of the ingestion that we do, whether it's IoT data or other types of integrations that we're either pulling from or getting pushed to,",https://www.timescale.com/blog/how-ndustrial-is-providing-fast-real-time-queries-and-safely-storing-client-data-with-97-compression/,477,"[-0.01712970621883869, 0.008962557651102543, 0.06016702950000763, -0.007442757952958345, 0.0820975974202156, 0.04116243124008179, -0.009012270718812943, 0.015368442982435226, -0.029174474999308586, 0.005195016972720623, 0.010532070882618427, -0.016803020611405373, 0.03212885186076164, -0.02867734432220459, 0.024004315957427025, 0.007236803881824017, -0.017371170222759247, -0.04218509793281555, -0.040594279766082764, 0.008238167501986027, -0.016675187274813652, 0.021774329245090485, 0.027271173894405365, 0.005411623511463404, -0.006594084668904543, -0.019800009205937386, -0.028379065915942192, 0.0739162489771843, -0.003984148148447275, -0.07238224148750305, 0.025694560259580612, -0.03613430634140968, -0.06698482483625412, 0.037583086639642715, 0.06420089304447174, 0.003178086131811142, 0.03215726092457771, 0.021234586834907532, 0.016192259266972542, 0.0029845600947737694, -0.013834440149366856, 0.004065819550305605, -0.01881995052099228, -0.010468154214322567, -0.015141183510422707, 0.026987100020051003, -0.047923408448696136, -0.014352875761687756, -0.02217203378677368, 0.0410487987101078, -0.05576387047767639, 0.014729275368154049, -0.0031443522311747074, -0.03139025717973709, 0.02783932350575924, -0.0374978668987751, 0.005326401442289352, 0.024103742092847824, 0.0077836476266384125, -0.016462130472064018, 0.015766147524118423, -0.0603942908346653, 0.042525988072156906, 0.02609226480126381, -0.023322535678744316, 0.021674903109669685, 0.010745126754045486, 0.033606041222810745, -0.04113402217626572, 0.036901310086250305, 0.03934435173869133, -0.001862464938312769, -0.03249815106391907, -0.010098856873810291, 0.010091754607856274, -0.05076415464282036, -0.012201010249555111, 0.05576387047767639, 0.010496561415493488, -0.003286389634013176, 0.003130148397758603, 0.001901525305584073, -0.014537524431943893, 0.006729020271450281, 0.005237627774477005, -0.025467300787568092, -0.05008237436413765, -0.02845008485019207, 0.007101868279278278, 0.00565663818269968, -0.008990965783596039, 0.08130218833684921, 0.022896423935890198, 0.011618657037615776, 0.047894999384880066, 0.019160840660333633, 0.01884835958480835, 0.03298107534646988, -0.011064711026847363, 0.013337308540940285, -0.013749217614531517, -0.012584511190652847, -0.017768874764442444, -0.03184477984905243, 0.025936024263501167, -0.017371170222759247, 0.0412476509809494, -0.010986590757966042, -0.004594909027218819, -0.009282141923904419, -0.09851711988449097, -0.025595134124159813, -0.009928411804139614, 0.025808189064264297, -0.025041187182068825, -0.01712970621883869, -0.008174250833690166, 0.007606101222336292, -0.0019317081896588206, 0.02069484442472458, -0.018606895580887794, 0.014026190154254436, -0.02883358672261238, 0.05880346894264221, 0.013813134282827377, -0.013905458152294159, 0.009338957257568836, -0.028890401124954224, -0.05192886292934418, 0.0023986559826880693, 0.026944488286972046, -0.020680641755461693, 0.02563774585723877, -0.012201010249555111, -0.018933581188321114, 0.007300720550119877, -0.041077207773923874, 0.008898640982806683, 0.0018731177551671863, -0.02214362658560276, 0.0031443522311747074, -0.06249644234776497, 0.015197998844087124, -0.019388100132346153, 0.010865858756005764, 0.013259188272058964, -0.04048065096139908, 0.03087892383337021, 0.024075333029031754, -0.0026010593865066767, -0.011277766898274422, -0.005972671322524548, -0.049997154623270035, -0.020055675879120827, 0.028237028047442436, 0.01872052438557148, -0.0030786599963903427, 0.05925799161195755, 0.034742340445518494, -0.031191406771540642, -0.018606895580887794, 0.04397476837038994, 0.0010466378880664706, 0.0004909166600555182, -0.036901310086250305, -0.03485596925020218, -0.018109764903783798, -0.04386113956570625, -0.07368898391723633, -0.005035224836319685, -0.059826139360666275, -0.020510196685791016, -0.022910626605153084, 0.049997154623270035, 0.037156976759433746, -0.009694050066173077, -0.023322535678744316, -0.050707340240478516, 0.04076472297310829, -0.057269465178251266, -0.057269465178251266, 0.028492696583271027, -0.040168166160583496, 0.004257570020854473, -0.008010908029973507, -0.010404237546026707, -0.06857564300298691, 0.01664678007364273, -0.022541331127285957, 0.026788247749209404, -0.07067779451608658, 0.06965512782335281, 0.006718367338180542, 0.028918808326125145, 0.010738025419414043, -0.04400317743420601, 0.009885801002383232, 0.011334582231938839, -0.02308107167482376, -0.005049428436905146, 0.07022327184677124, 0.0376967191696167, 0.05661609396338463, -0.025907615199685097, 0.02330833300948143, 0.0013999558286741376, -0.0073291282169520855, 0.004715640563517809, -0.048860855400562286, -0.03553774952888489, -0.018194986507296562, -0.00791858322918415, -0.012840177863836288, 0.013379920274019241, -0.03440145030617714, 0.017967727035284042, -0.06528037786483765, -0.02049599215388298, -0.02059541828930378, -0.06437133252620697, 0.042071469128131866, 0.05834894999861717, -0.0039557404816150665, -0.0227969978004694, -0.024004315957427025, 0.04405999183654785, 0.03133344277739525, -0.0254104845225811, 0.05218452960252762, 0.019260266795754433, 4.1279610741185024e-05, -0.0568433552980423, -0.00036352689494378865, -0.027952954173088074, -0.0027661777567118406, -0.0019601157400757074, 0.002095051109790802, -0.051389120519161224, -0.01872052438557148, -0.02870575152337551, -0.030509626492857933, -0.00879211351275444, -0.01036162581294775, -0.013266290538012981, -0.003888272913172841, 0.013209475204348564, -0.024757113307714462, -0.040622688829898834, 0.010816145688295364, 0.03962842747569084, 0.04119083657860756, -0.017143910750746727, 0.004353445488959551, -0.01684563234448433, -0.05300834774971008, -0.06067836284637451, 0.00168136740103364, 0.009537809528410435, 0.007613203022629023, 0.017541615292429924, 0.006242542527616024, -0.010290607810020447, -0.010439747013151646, 0.0035544850397855043, -0.03340718895196915, 0.05178682506084442, 0.03204363211989403, -0.045991700142621994, 0.017981931567192078, -0.035452526062726974, 0.0451962910592556, 0.013521957211196423, -0.00685330294072628, -0.05482642352581024, -0.012087380513548851, -0.021319808438420296, -0.007627406623214483, -0.02214362658560276, 0.0012632448924705386, 0.0073078228160738945, -0.022768590599298477, -0.06153058633208275, 0.00450968649238348, -0.005141752772033215, 0.019800009205937386, -0.003916680347174406, 0.01146241556853056, 0.03820805251598358, -0.026063857600092888, -0.024160556495189667, -0.010780636221170425, 0.028009768575429916, 0.01788250543177128, -0.023947499692440033, 0.02356399968266487, -0.004019657615572214, 0.00450258469209075, 0.024615075439214706, -0.036844491958618164, -0.028762567788362503, 0.030850516632199287, 0.0021571924444288015, 0.009672745130956173, -0.031020961701869965, 0.03275381773710251, 0.010105959139764309, -0.003318347968161106, -0.016803020611405373, -0.034316226840019226, 0.010865858756005764, 0.013294697739183903, -0.03817964345216751, -0.013791828416287899, -0.01047525554895401, -0.038975052535533905, -0.00945968832820654, 0.06670074909925461, -0.02117777243256569, -0.006654450669884682, -0.0472700372338295, -0.035225268453359604, -0.07476846873760223, -0.018905173987150192, 5.101693750475533e-05, 0.01991363987326622, -0.0077055273577570915, 0.03178796172142029, -0.01264132559299469, 0.03835009038448334, 0.018905173987150192, -0.022868016734719276, -0.017896708101034164, 0.03264018893241882, 0.02518322505056858, -0.033861707895994186, -0.04380432516336441, -0.01008465327322483, 0.0038492127787321806, -0.02185955084860325, 0.008323390036821365, -0.04232713580131531, -0.008380204439163208, -0.07226861268281937, -0.014452301897108555, 0.029430143535137177, 0.017030280083417892, -0.011767796240746975, -0.03820805251598358, 0.030395997688174248, 0.011078914627432823, -0.026007041335105896, -0.024331001564860344, 0.01606442593038082, 0.00808192603290081, 0.01239986252039671, -0.0026667516212910414, 0.014345774427056313, -0.006036587990820408, -0.018081357702612877, -0.031191406771540642, -0.043662287294864655, 0.022754386067390442, -0.009757967665791512, -0.004307283088564873, -0.01485710870474577, 0.009076187387108803, -0.03323674574494362, 0.005557212047278881, -0.04235554486513138, -0.027228564023971558, 0.04525310546159744, 0.003016518661752343, -0.009715355932712555, -0.009012270718812943, -0.03860575705766678, -0.02153286524116993, 0.01720072515308857, 0.024160556495189667, 0.0039024767465889454, 0.05317879095673561, 0.020353954285383224, 0.046474628150463104, 0.005230525974184275, -0.00796829629689455, 0.01720072515308857, 0.05403101444244385, 0.0013484673108905554, 0.016575761139392853, -0.05494005233049393, 0.0017124380683526397, 0.03692971542477608, -0.02408953756093979, 0.0003937098372261971, -0.002528265118598938, -0.010674107819795609, 0.01336571667343378, -0.01578035205602646, 0.005134650971740484, 0.044571325182914734, -0.013884153217077255, 0.04428725317120552, -0.012066074647009373, -0.06510993093252182, -0.006466251332312822, 0.004530991893261671, -0.003994801081717014, 0.03420259803533554, 0.02460087276995182, -0.02107834629714489, -0.008557751774787903, -0.013202372938394547, 0.01247798278927803, 0.052582234144210815, -0.020581215620040894, 0.013088743202388287, -0.03894664719700813, -0.022811200469732285, 0.07402987778186798, 0.041332874447107315, 0.07221179455518723, -0.036389973014593124, -0.00894125271588564, -0.02822282537817955, -0.03215726092457771, -0.028052380308508873, 0.0670984536409378, 0.043917953968048096, -0.010958182625472546, -0.0455939956009388, -0.04283846914768219, -0.009402873925864697, -0.006459149532020092, 0.025921819731593132, 0.002592182019725442, -0.005663739982992411, -0.0066437977366149426, 0.021518660709261894, -0.00227969978004694, 0.04587807133793831, 0.004225611686706543, -0.015226406045258045, 0.01113572996109724, 0.0034213250037282705, 0.030339181423187256, -0.006104055792093277, 0.003827907145023346, -0.026859266683459282, -0.002347167581319809, 0.008571955375373363, -0.011632860638201237, 0.024970170110464096, -0.006491107866168022, -0.026433154940605164, 0.009275040589272976, -0.025467300787568092, -0.04724162817001343, 0.034770749509334564, -0.008209760300815105, 0.03863416239619255, 0.011000794358551502, -0.005337053909897804, 0.007059257011860609, -0.08033633232116699, -0.04940059781074524, -0.01462984923273325, -0.0255099106580019, 0.04621896147727966, -0.012818872928619385, 0.005937161855399609, -0.02450144663453102, 0.0014594339299947023, 0.03860575705766678, -0.009594623930752277, -0.01849326491355896, -0.031219813972711563, 0.0001965220144484192, 0.02596443146467209, -0.0010075776372104883, -0.012854381464421749, -0.007989602163434029, 0.01487131230533123, 0.017314355820417404, -0.04360547289252281, 0.07226861268281937, 0.03198681399226189, 0.015311628580093384, 0.0029952130280435085, 0.03763990104198456, -0.006963382009416819, 0.019970454275608063, -0.004637520294636488, -0.0005264260107651353, 0.05113345384597778, -0.01700187288224697, -0.011696777306497097, 0.02308107167482376, -0.0824953019618988, -0.0227969978004694, -0.01558149978518486, -0.01351485587656498, 0.039713647216558456, 0.013962273485958576, 0.01920345239341259, 0.07652973383665085, -0.009012270718812943, 0.0341457836329937, -0.011838814243674278, -0.00011540536070242524, -0.008749501779675484, -0.03888983279466629, 0.007755240425467491, 0.002379125915467739, 0.049315374344587326, 0.01700187288224697, -0.007442757952958345, 0.024842334911227226, -0.01396937482059002, 0.02825123257935047, -0.019544342532753944, 0.0012472656089812517, -0.0271859522908926, -0.016433723270893097, -0.02647576481103897, -0.0006072097457945347, -0.01836543157696724, 0.003977046348154545, -0.06613259762525558, 0.007243905682116747, -0.029913069680333138, 0.0002825212141033262, 0.030083514750003815, -0.0027342194225639105, 0.0043108342215418816, -0.030822109431028366, -0.047184813767671585, 0.02127719856798649, -0.013848643749952316, -0.04448610544204712, -0.04073631763458252, 0.024615075439214706, -0.003218921832740307, 0.029600586742162704, 0.025197429582476616, 0.029600586742162704, -0.005432929378002882, -0.010532070882618427, 0.012612918391823769, -0.002256618579849601, -0.015368442982435226, 0.05226975306868553, 0.01677461341023445, -0.014842905104160309, -0.008692687377333641, -0.009026474319398403, 0.005503947846591473, 0.010127264074981213, 0.022555533796548843, 0.0207232516258955, 0.016462130472064018, 0.014544626697897911, 0.013884153217077255, 0.0028442982584238052, -0.005383216310292482, -0.0029721318278461695, -0.02634793147444725, 0.01265552919358015, -0.0013813134282827377, -0.04286687821149826, -0.035480935126543045, 0.03343559801578522, -0.015723535791039467, -0.03496960178017616, 0.00228680158033967, 0.04423043504357338, 0.02373444475233555, 0.016376908868551254, -0.029373327270150185, -0.033577632158994675, 0.001970768440514803, -0.005702800117433071, -0.01485710870474577, -0.006412987131625414, -0.03139025717973709, 0.03261177986860275, -0.008373103104531765, -0.007598999422043562, 0.013585873879492283, -0.01112152636051178, 0.019586952403187752, -0.028237028047442436, 0.015396851114928722, -0.009054882451891899, 0.009168512187898159, 0.016277482733130455, 0.02637633867561817, 0.011434008367359638, -0.0029916621278971434, 0.004942900501191616, -0.031503889709711075, 0.02641895040869713, 0.0013156210770830512, 0.006831997539848089, -0.0011318603064864874, -0.02887619659304619, -0.03724219650030136, 0.03516845405101776, -0.005702800117433071, -0.006125361658632755, 0.050252821296453476, -0.019359692931175232, 0.019132433459162712, -0.009111696854233742, -0.004314384888857603, -0.05641724169254303, -0.01474347896873951, -0.012257824651896954, -0.0206238254904747, -0.009843189269304276, 0.015055960975587368, 0.008934150449931622, -0.044855400919914246, -0.03170274198055267, -0.031276628375053406, -0.05993976816534996, 0.008863131515681744, 0.007464063819497824, -0.006824895739555359, -0.014956534840166569, -0.027043914422392845, 0.021220382302999496, 0.01464405283331871, 0.012662631459534168, 0.029316512867808342, 0.03448667377233505, -0.014615645632147789, 0.034543488174676895, 0.02971421740949154, 0.03599226847290993, -0.010439747013151646, -0.0372990146279335, 0.007421452552080154, -0.006157319992780685, -0.01131327636539936, -0.017243336886167526, 0.0067361220717430115, -0.010858756490051746, -0.0035402814392000437, 0.05030963569879532, -0.0034444062039256096, -0.018408043310046196, 0.0056885965168476105, -0.03772512450814247, 0.08243849128484726, 0.03045281209051609, 0.02104993723332882, 0.014438098296523094, -0.03133344277739525, -0.017996134236454964, 0.012875687330961227, 0.03022555261850357, -0.04775296151638031, -0.0038811711128801107, -0.016334297135472298, 0.016192259266972542, -0.009566216729581356, 0.007013095077127218, 0.029543772339820862, 0.022882219403982162, 0.04096357524394989, 0.022683367133140564, -0.023848073557019234, 0.035736601799726486, 0.021618086844682693, 0.01218680664896965, 0.01917504519224167, 0.030083514750003815, 0.020353954285383224, -0.01475768256932497, 0.02363501861691475, 0.05002555996179581, -0.03630474954843521, 0.015141183510422707, -0.031929999589920044, -0.0048576779663562775, 0.009701152332127094, -0.014658256433904171, -0.024615075439214706, 0.034543488174676895, 0.03962842747569084, 0.01768365316092968, 0.010908469557762146, -0.040651094168424606, 0.012676835060119629, -0.042014654725790024, 0.011966648511588573, -0.03306629881262779, -0.006807141005992889, 0.04528151452541351, -0.027356397360563278, -0.012406963855028152, -0.014196635223925114, -0.011781999841332436, -0.0712459459900856, -0.015425258316099644, -0.047184813767671585, -0.008848927915096283, 0.012620019726455212, 0.0031159447971731424, 0.03090733103454113, -0.008074824698269367, -0.03678767755627632, 0.0015144734643399715, 0.0015020451974123716, 0.02247031219303608, 0.02211521752178669, -0.02059541828930378, -0.03352081775665283, 0.02333674021065235, -0.011902731843292713, 0.01239986252039671, -0.06397362798452377, -0.015354239381849766, 0.003121271263808012, -0.03613430634140968, 0.03673086315393448, -0.010077551007270813, 0.013088743202388287, 0.03636156767606735, 0.01793931983411312, -0.020254528149962425, 0.007542184088379145, 0.0059052035212516785, 0.0053583597764372826, -0.015538888052105904, 0.029089253395795822, -0.022456107661128044, -0.016277482733130455, -0.005166609305888414, -0.047639332711696625, 0.0023613711819052696, -0.019260266795754433, -0.0024128598161041737, -0.019970454275608063, -0.009708254598081112, 0.029430143535137177, -0.0242741871625185, 0.04263961687684059, 0.04190102219581604, 0.02602124586701393, -0.009807680733501911, -0.021064141765236855, 0.01365689281374216, -0.006963382009416819, 0.005070733837783337, -0.00225484324619174, -0.007755240425467491, -0.007897277362644672, 0.018606895580887794, -0.01475768256932497, 0.007059257011860609, 0.002359595848247409, 0.010830349288880825, -0.04005453735589981, 0.0011664818739518523, 0.011078914627432823, 0.025396281853318214, -0.018280209973454475, 0.000729273131582886, 0.024132149294018745, -0.040651094168424606, -0.01377052254974842, 0.008912844583392143, 0.010730923153460026, 0.0021660698112100363, 0.06107606738805771, -0.009267938323318958, -0.010404237546026707, -0.005422276444733143, 0.009331854991614819, -0.013976477086544037, 0.026205893605947495, 0.000601883337367326, -0.014537524431943893, -0.015609906986355782, 0.0026223650202155113, 0.02391909249126911, -0.002127009676769376, 0.008678482845425606, -0.02948695793747902, -0.025126410648226738, -0.00795409269630909, 0.00879211351275444, -0.008174250833690166, 0.03141866624355316, 0.010965284891426563, -0.021419234573841095, 0.0038421107456088066, -0.08187033981084824, -0.034571897238492966, 0.005741860717535019, 0.0015100347809493542, 0.003218921832740307, -0.005376114509999752, 0.015893980860710144, 0.05780920758843422, 0.03093573823571205, -0.03772512450814247, 0.005997527856379747, -0.04957104101777077, -0.019672175869345665, 0.0013387021608650684, -0.020836882293224335, 0.00012949813390150666, 0.021703310310840607, 0.03835009038448334, 0.013110049068927765, 0.001439903862774372, -0.02589341253042221, -0.012648427858948708, -0.0316743329167366, 0.06476903706789017, 0.013202372938394547, -0.03468552604317665, -0.013074539601802826, 0.011519230902194977, 0.0037462355103343725, 0.006203481927514076, -0.0030111921951174736, -0.015439461916685104, 0.011838814243674278, 0.009353160858154297, -0.0043463436886668205, 0.033350374549627304, 0.0013706606114283204, 0.0021128058433532715, 0.013940967619419098, 0.00011202087625861168, -0.02741321176290512, -0.02705811895430088, 0.03627634420990944, -0.04477017745375633, 0.029146067798137665, -0.028279639780521393, 0.016561556607484818, 0.008983863517642021, 0.024359408766031265, -0.009992328472435474, 0.014502014964818954, -0.003442630637437105, -0.023194702342152596, -0.020836882293224335, 0.013067438267171383, 0.03403215482831001, -0.041332874447107315, 0.007868870161473751, 0.011320378631353378, 0.010034940205514431, -0.01347934640944004, 0.0018890970386564732, 0.010546274483203888, -0.04636099562048912, -0.007513776887208223, -0.008948354050517082, 0.016405316069722176, 0.04278165474534035, -0.014587237499654293, -7.579025259474292e-05, 0.03295267000794411, 0.01720072515308857, 0.022285662591457367, -0.014054597355425358, 0.005660189315676689, -0.004111981950700283, 0.01488551590591669, -0.014381283894181252, -0.009587522596120834, -0.04008294641971588, 0.0256093367934227, -0.005258933641016483, -0.014267653226852417, 0.011895629577338696, -0.018578488379716873, -0.023223109543323517, -0.017740467563271523, 0.020666437223553658, 0.013173965737223625, -0.010603089816868305, 0.05334923416376114, -0.0113984989002347, -0.011746490374207497, -0.004815066698938608, 0.0254104845225811, 0.02201579138636589, 0.023166295140981674, 0.000745252298656851, 0.014828701503574848, -0.004868330899626017, 0.022583940997719765, -0.009267938323318958, 0.0090051693841815, -0.005084937904030085, -0.0047440482303500175, 0.008536445908248425, 0.0028904604259878397, -0.013862847350537777, 0.018322819843888283, -0.0008078375249169767, -0.01475768256932497, -0.005603373982012272, 0.05192886292934418, 0.047412075102329254, 0.007336230017244816, 0.009807680733501911, 0.0022654959466308355, -0.02282540500164032, 0.0004527441051322967, -0.019189247861504555, 0.020453380420804024, -0.023393554612994194, -0.02505539171397686, 0.03278222307562828, -0.011568943969905376, 0.022328274324536324, 0.04221350699663162, 0.019572749733924866, 0.013379920274019241, -0.020552806556224823, -0.005340605042874813, 0.03962842747569084, -0.016277482733130455, 0.028506899252533913, 0.003724929876625538, -0.00584483752027154, 0.0206238254904747, -0.010319015011191368, 0.01730015128850937, 0.04263961687684059, 0.01768365316092968, 0.009914208203554153, -0.006228338461369276, -0.0045274412259459496, 0.024430427700281143, -0.012179704383015633, 0.028407473117113113, 0.0031692087650299072, -0.018834155052900314, 0.01629168540239334, 0.035679787397384644, -0.036844491958618164, 0.007322026416659355, 0.0893130972981453, -0.015879778191447258, 0.047184813767671585, -0.05942843481898308, -0.033804893493652344, -0.012882789596915245, -0.008025111630558968, 0.0015357790980488062, 0.03448667377233505, 0.0035047719720751047, -0.0022619450464844704, 0.01859269104897976, -0.022498719394207, -0.005898101720958948, 0.00044186937157064676, -0.0090051693841815, 0.0025371424853801727, -0.024302594363689423, -0.03258337080478668, -0.018706321716308594, 0.003973495215177536, 0.050934601575136185, 0.02880517765879631, 0.014715071767568588, 0.017726263031363487, 0.006721918471157551, 0.02586500532925129, -0.006089852191507816, -0.005621128715574741, 0.029174474999308586, 0.05337764322757721, 0.03295267000794411, -0.029685810208320618, -0.029430143535137177, 0.01008465327322483, -0.017470596358180046, 0.04329298809170723, 0.04420202970504761, -0.013962273485958576, -0.013159762136638165, 0.004037412349134684, -0.0208226777613163, -0.0159365925937891, 0.024402020499110222, -0.0037533375434577465, 0.00997102353721857, 0.025211632251739502, -0.05207090079784393, 0.016859835013747215, 0.007584795355796814, -0.023322535678744316, -0.015979204326868057, 0.020439177751541138, 0.009473892860114574, 0.015993406996130943, -0.0020648683421313763, 0.029543772339820862, 0.016902446746826172, 0.034770749509334564, 0.006594084668904543, -0.016348501667380333, -0.006942076608538628, 0.0374978668987751, 0.029401734471321106, 0.00806772243231535, 0.016561556607484818, -0.02622009813785553, -0.03300948441028595, -0.029344920068979263, -0.005720554850995541, 0.005102692637592554, -0.015950797125697136, 0.050678934901952744, -0.02056701108813286, -0.0044812788255512714, -0.016178056597709656, 0.0014896169304847717, -0.014544626697897911, 0.022910626605153084, 0.015865573659539223, 0.016902446746826172, 0.02619169093668461, 0.001910402555949986, 0.012321741320192814, -0.002553121652454138, -0.015411054715514183, 0.009175614453852177, 0.018337024375796318, -0.002006277907639742, -0.0065195150673389435, -0.030026700347661972, -0.012058972381055355, -0.014729275368154049, 0.032242484390735626, 0.026305319741368294, 0.011000794358551502, -0.011043405160307884, -0.0113487858325243, -0.022868016734719276, 0.02085108496248722, -0.0008495610090903938, 0.04093516990542412, 0.023237314075231552, 0.022228848189115524, 0.008628769777715206, 0.004726293496787548, -0.02337935008108616, 0.000745252298656851, 0.008188454434275627, 0.00673257140442729, 0.005663739982992411, -0.014061699621379375, 0.003572239773347974, -0.014196635223925114, 0.008486732840538025, 0.023819666355848312, 0.006292255595326424, -0.02272597886621952, 0.01351485587656498, 0.021547067910432816, -1.6797583157313056e-05, 0.01864950731396675, 0.042980507016181946, -0.06363274157047272, 0.003792397677898407, 0.007698425557464361, -0.02741321176290512, -0.02528265118598938, -0.014800293371081352, -0.02211521752178669, -0.0031727596651762724, 0.03962842747569084, -0.031503889709711075, -0.014842905104160309, -0.0031052918639034033, 0.007116072345525026, -0.03962842747569084, -0.006011731456965208, 0.02146184630692005, -0.024529853835701942, 0.010404237546026707, -0.03258337080478668, 0.004285977687686682, -0.012960909865796566, 0.02667461708188057, -0.0023045563139021397, -0.03317992761731148, -0.009367364458739758, -0.011774897575378418, 0.010390033945441246, 0.0470711849629879, -0.006267399061471224, -0.005219873506575823, 0.0031319239642471075, -0.011831712909042835, -0.0025477951858192682, 0.011952444911003113, -0.007084113545715809, 0.017399577423930168, 0.025822393596172333, 0.026362136006355286, -0.013145558536052704, 0.0015757270157337189, 0.0272853784263134, 0.024657687172293663, 0.044855400919914246, 0.017214929684996605, 0.003275736700743437, 0.026134876534342766, 0.02353559248149395, 0.03880460932850838, -0.013316003605723381, 0.003948638681322336, 0.03016873635351658, 0.027441618964076042, -0.016277482733130455, 0.02320890687406063, 0.024259982630610466, -0.012158398516476154, 0.030566440895199776, 0.03832168132066727, -0.014374181628227234, -0.009892902337014675, 0.027327990159392357, -0.01233594585210085, -0.008124537765979767, -0.0038634163793176413, 0.02146184630692005, -0.0033893666695803404, -0.011995055712759495, 0.007400146685540676, 0.004665927495807409, -0.016902446746826172, 0.030850516632199287, 0.03377648442983627, -0.015950797125697136, 0.004864779766649008, 0.052553825080394745, 0.006530168000608683, -0.01651894673705101, 0.005727656651288271, 0.0012153072748333216, -0.011718083173036575, -0.01005624607205391, -0.03783875331282616, -0.024458834901452065, 0.021816939115524292, -0.017115503549575806, -0.004168796818703413, -0.009892902337014675, 0.012818872928619385, 0.00020184842287562788, -0.0292596984654665, 0.008174250833690166, 0.04386113956570625, 0.00556076318025589, -0.01448071002960205, 0.02864893712103367, 0.039003461599349976, -0.0226975716650486, -0.022654959931969643, -0.0358218252658844, -0.008593261241912842, -0.009843189269304276, -0.01264132559299469, 0.0043463436886668205, 0.02204420045018196, -0.008060621097683907, -0.021902162581682205, 0.00044098164653405547, 0.05036645010113716, 0.019615361467003822, 0.017726263031363487, -0.021163567900657654, -0.005248280707746744, 0.007087664678692818, -0.004665927495807409, -0.014615645632147789, -0.011853018775582314, -0.03403215482831001, 0.0049819606356322765, -0.03508323058485985, 0.03141866624355316, -0.016220668330788612, -0.03141866624355316, 0.002945499960333109, -0.010368728078901768, -0.027427416294813156, -0.012598714791238308, 0.008983863517642021, -0.021547067910432816, 0.015240609645843506, -0.015553091652691364, 0.03278222307562828, 0.006430741865187883, 0.00673257140442729, 0.037327419966459274, -0.033321965485811234, -0.008323390036821365, -0.0027430967893451452, 0.005397419910877943, -0.04900289326906204, -0.027086526155471802, 0.057496726512908936, 0.006455598399043083, 0.011661267839372158, -0.032384518533945084, 0.008990965783596039, 0.040622688829898834, 0.006416538264602423, -0.0076700178906321526, 0.03366285562515259, 0.02485653944313526, 0.006324213929474354, 0.02602124586701393, 0.015070164576172829, -0.038747794926166534, -0.03613430634140968, 0.03559456393122673, -0.023876480758190155, 0.028634732589125633, 0.011242257431149483, -0.024288389831781387, 0.0025087350513786077, -0.013387021608650684, -0.009154308587312698, 0.012151297181844711, 0.02191636525094509, -0.0077836476266384125, -0.009772171266376972, 0.02085108496248722, -0.0028194417245686054, -0.00673967320472002, -0.053974200040102005, -0.0028336455579847097, 0.004339241422712803, -0.018834155052900314, 0.014168227091431618, 0.015524684451520443, -0.017087096348404884, 0.03630474954843521, 0.012769159860908985, 0.005397419910877943, -0.015751944854855537, 0.00824526883661747, -0.00444576982408762, 0.013891254551708698, -0.026745636016130447, 0.009935514070093632, 0.009594623930752277, 0.009601726196706295, 0.031191406771540642, 0.035452526062726974, 0.011220952495932579, 0.006565677467733622, -0.01246377918869257, -0.017413781955838203, 0.02110675349831581, 0.00558561971411109, 0.011114424094557762, -0.012264926917850971, -0.026163283735513687, 0.007620304822921753, 0.028208620846271515, -0.009772171266376972, -0.0021536415442824364, -0.0337480790913105, 0.02690187841653824, 0.004733395297080278, 0.02602124586701393, -0.021902162581682205, 0.012932502664625645, 0.012818872928619385, -0.005006817169487476, -0.021547067910432816, 0.024174761027097702, -0.01881995052099228, -0.03514004498720169, 0.013138456270098686, -0.005273137241601944, 0.029458550736308098, 0.018436450511217117, -0.005947814788669348, 0.026972895488142967, 0.019572749733924866, 0.01141270250082016, 0.005894550587981939, -0.011220952495932579, 0.010681210085749626, 0.043889548629522324, -0.001283662742935121, 0.005308646708726883, -0.009040678851306438, 0.03914549946784973, -0.017868300899863243, -0.0025904064532369375, -0.029401734471321106, 0.0005113345105201006, 0.022441904991865158, 0.01000653300434351, -0.03536730632185936, 0.01965797133743763, -0.03417419269680977, 0.019274471327662468, -0.006704163737595081, -0.011277766898274422, -0.008543548174202442, -0.009601726196706295, -0.024259982630610466, -0.011178340762853622, 0.01910402625799179, 0.026660414412617683, 0.00218560011126101, -0.03133344277739525, 0.00016722681175451726, -0.02146184630692005, -0.016916651278734207, 0.0077055273577570915, -0.0056317816488444805, 0.016078630462288857, 0.01649053767323494, -0.016078630462288857, 0.024359408766031265, -0.05363330990076065, 0.0011922261910513043, 0.015751944854855537, -0.008266574703156948, -0.020510196685791016, -0.011938240379095078, -0.025907615199685097, 0.029316512867808342, 0.01852167211472988, 0.03741264343261719, 0.008571955375373363, 0.025140613317489624, -0.028066584840416908, -0.004356996156275272, -0.042952101677656174, -0.00929634552448988, -0.016760408878326416, -0.011043405160307884, 0.005408072844147682, 0.03553774952888489, -0.01626327820122242, 0.0028354208916425705, -0.0019370346562936902, 0.003044926095753908, -0.0005104467854835093, 0.005496846046298742, -0.037810347974300385, -0.008465426973998547, 0.029401734471321106, -0.02485653944313526, 0.013997782953083515, 0.054201461374759674, 0.01803874596953392, -0.04451451078057289, 0.007240355014801025, -0.00936026219278574, 0.0073078228160738945, -0.025595134124159813, 0.02256973832845688, -0.002318760147318244, 0.03278222307562828, 0.003016518661752343, 0.00022570625878870487, -0.01462984923273325, -0.0026738534215837717, -0.025822393596172333, 0.026660414412617683, 0.0160360187292099, -0.018479062244296074, -0.02773989737033844, 0.004275324754416943, -0.030736885964870453, 0.025822393596172333, -0.030594849959015846, -0.022157829254865646, 0.005262484308332205, 0.018081357702612877, -0.017839893698692322, 0.025595134124159813, -0.00011296409502392635, 0.024515649303793907, 0.019473323598504066, -0.003435528837144375, 0.02492755837738514, 0.003238451899960637, 0.0008877335349097848, 0.0072723133489489555, -0.013912560418248177, -0.021376624703407288, 0.017385374754667282, 0.019572749733924866, -0.007048604544252157, 0.0136924022808671, 0.01024799607694149, 0.005248280707746744, 0.00577026791870594, -0.001305856043472886, -0.008373103104531765, 0.0029383981600403786, 0.0159365925937891, 0.021845348179340363, -0.027484230697155, -0.02789613977074623, 0.04778137058019638, 0.014615645632147789, 0.019501730799674988, 0.033577632158994675, -0.0016440824838355184, 0.006917220074683428, -0.006704163737595081, 0.021547067910432816, 0.03110618330538273, 0.010219588875770569, -0.004158143885433674, -0.03866257146000862, -0.014729275368154049, -0.011228053830564022, -0.02495596557855606, 0.020936308428645134, 0.010390033945441246, -0.0226975716650486, 0.0007168448646552861, -0.00013382582983467728, 0.009736661799252033, 0.004058717750012875, 0.003478140104562044, -0.008188454434275627, 0.01765524409711361, 0.00040214331238530576, 0.017697855830192566, 0.012861483730375767, 0.008770807646214962, 0.0012348373420536518, 0.0036929715424776077, -0.018961988389492035, 0.004289528355002403, -0.010823247022926807, -0.010759330354630947, 0.024529853835701942, 0.027725694701075554, 0.009651439264416695, -0.002070194575935602, -0.02809499204158783, -0.002350718481466174, 0.006306459195911884, 0.004878983832895756, -0.00030271714786067605, 0.010766432620584965, -0.006437843665480614, 0.011100220493972301, 0.009431281127035618, 0.024075333029031754, 0.010752229019999504, 0.01136298943310976, 0.014118514023721218, 0.006487556733191013, 0.016859835013747215, -0.020084083080291748, 0.07777966558933258, 0.011845916509628296, 0.029344920068979263, 0.010801942087709904, -0.00022570625878870487, -0.025240039452910423, 0.04192943125963211, 0.006022384390234947, 0.025240039452910423, -0.014473607763648033, 0.02680245228111744, -0.003353857435286045, 0.034742340445518494, 0.029401734471321106, 0.02256973832845688, -0.012087380513548851, -0.029628995805978775, 0.017399577423930168, -0.038264866918325424, 0.012861483730375767, -0.00879211351275444, 0.02444463036954403, -0.0064982096664607525, 0.011277766898274422, -0.03158910945057869, -0.002460797317326069, -0.008096129633486271, 0.03340718895196915, -0.01118544302880764, -0.0158371664583683, -0.015297424979507923, 0.01002073660492897, 0.03644678741693497, 0.006473353132605553, -0.02802397310733795, 0.0059052035212516785, 0.04383273050189018, -0.004300181288272142, -0.008039315231144428, 0.004222060553729534, -0.013763421215116978, 0.006377477664500475, 0.025211632251739502, 0.0012694590259343386, -0.015666721388697624, -0.012975113466382027, -0.01151212863624096, 0.0048221684992313385, 0.024742908775806427, -0.019828416407108307, 0.006221236661076546, -0.04761092737317085, 0.009275040589272976, 0.008160047233104706, -0.030339181423187256, 0.01235014945268631, 0.022995850071310997, 0.039940908551216125, 0.016121242195367813, 0.014658256433904171, 0.030765293166041374, 0.020382361486554146, -0.0004709426430054009, 0.009012270718812943, 0.01000653300434351]" -How Ndustrial Is Providing Fast Real-Time Queries and Safely Storing Client Data With 97 % Compression,"flows through these stream processing pipelines, ultimately landing into our TimescaleDB database. So that is our main input into TimescaleDB.Then, on the other side of the house, we have our GraphQL platform. The platform exposes a GraphQL API that can query TimescaleDB for arbitrary queries, metrics, and results based on what the consumer is asking. And then, in our front end, which is our dashboarding, there’s a full-featured single-page app in React.We also use other technologies, such asGrafana, for a more ad hoc view of the data, especially because we also do implementations at facilities for installing meters and devices if the customers don't already have those available. Hooking those up and having a view into our TimescaleDB database of that specific feed of data gives us a lot more visibility and speeds up the installation time without worrying about whether or not it's set up correctly.Our data is very disparate and unpredictable in terms of how it gets sent. Some customers will have devices sending data every second to minutes or every hour. Devices might go down, come back up, and send their last days’ worth of data all at once. We could have other systems sending it at their own regular rates.It's not normalized, so to be able to lean on TimescaleDB hyperfunctions liketime_bucket_ gapfilland bucketing, andlocftype of functions to turn those results into something more meaningful because we can fill the gap or understand what should happen in the case where that data point didn't exist is really powerful for us.✨Editor’s Note:Learn more about hyperfunctions and how they can help you save time and analyze time-series data better.Obviously, compression was a big thing for us in terms of getting that in place in the beginning. And since then, we have used continuous aggregates. We are still at a point where we're building out the process of what that will look like in our platform because this data is unique—I mean, we're storing arbitrary data. We don't even know sometimes what that feed is sending us.We’re still building a more automated process to be able to make smarter decisions about what becomes continuous aggregates, what becomes something we physically want to store, and the intervals at which we want to store it and throw away the rest. And so, I hope to",https://www.timescale.com/blog/how-ndustrial-is-providing-fast-real-time-queries-and-safely-storing-client-data-with-97-compression/,470,"[-0.0005084387958049774, 0.011492217890918255, 0.04879598692059517, 0.003622239688411355, 0.079554982483387, 0.02479378879070282, 0.011958692222833633, 0.011562895961105824, -0.005753176752477884, 0.026405243203043938, 0.020524846389889717, -0.016679972410202026, -0.0033094901591539383, -0.03256835415959358, 0.024935144931077957, 0.02144365943968296, -0.008191562257707119, -0.012177793309092522, -0.01714644581079483, 0.014432416297495365, -0.0026857582852244377, -0.016835464164614677, 0.041360676288604736, 0.022475555539131165, -0.013329842127859592, -0.030532829463481903, -0.02520371973514557, 0.06513670831918716, -0.009697000496089458, -0.06394931674003601, 0.023196469992399216, -0.04110623523592949, -0.03123960830271244, -0.00042782185482792556, 0.07079093158245087, 0.016722379252314568, 0.01793803833425045, 0.034801773726940155, 0.02248969115316868, 0.01646793819963932, -0.003426108742132783, 0.011817336082458496, -0.02784707210958004, 0.019436407834291458, 0.0002679132157936692, 0.007308089639991522, -0.07129981368780136, -0.0366959385573864, -0.0020390558056533337, 0.07774563133716583, -0.038901086896657944, 0.013202621601521969, -0.026292160153388977, -0.03745925799012184, 0.03327513113617897, -0.01710403896868229, -0.027041343972086906, 0.011781997047364712, -0.013654960319399834, -0.01831969805061817, -0.018814442679286003, -0.052018895745277405, 0.021994946524500847, 0.040031932294368744, -0.009357746690511703, 0.046138498932123184, -0.01439707726240158, 0.03172021731734276, -0.04984201863408089, 0.05840817466378212, 0.05614648386836052, 0.01744329370558262, 0.013994214124977589, -0.02076515182852745, 0.030758999288082123, -0.044668398797512054, -0.014531365595757961, 0.032766249030828476, -0.005074669606983662, -0.01361962128430605, 0.014163840562105179, -0.012559453956782818, -0.025755008682608604, 0.0019047680543735623, 0.004548119381070137, -0.01782495342195034, -0.020341085270047188, -0.02181118354201317, -0.02619321085512638, 0.01673651486635208, -0.01202230155467987, 0.05343245342373848, 0.004714212380349636, 0.022588640451431274, 0.019337458536028862, 0.025613652542233467, 0.0012889872305095196, -0.004813161678612232, 0.0013331609079614282, 0.0072232759557664394, 0.024624161422252655, -0.010778372175991535, -0.0217405054718256, -0.05312146991491318, 0.05136866122484207, -0.027380598708987236, -0.019549492746591568, 0.02404460310935974, 0.0052230930887162685, -0.014418280683457851, -0.055976856499910355, -0.02551470324397087, -0.03437770530581474, -0.01267960574477911, 0.001837624004110694, 0.018630681559443474, -0.02739473432302475, 0.03946651145815849, -0.011520489118993282, 0.025387482717633247, -0.002804143587127328, 0.019846340641379356, -0.04789131134748459, 0.018560003489255905, -0.007258614990860224, -0.020623795688152313, 0.023309554904699326, -0.04107796400785446, -0.055524516850709915, -0.00023897946812212467, 0.046025414019823074, -0.036271870136260986, 0.04246325045824051, -0.031635403633117676, -0.004537517670542002, -0.0017404420068487525, -0.043650638312101364, 0.005647160112857819, 0.0038872817531228065, -0.00027144711930304766, 0.0014692157274112105, -0.030532829463481903, 0.025458160787820816, -0.008029003627598286, 0.00554821128025651, 0.03149404749274254, -0.05659881979227066, 0.058351632207632065, -0.03203120082616806, -0.012085911817848682, -0.00647055683657527, -0.0032670835498720407, -0.07480543106794357, -0.045346908271312714, 0.04594060033559799, 0.017810817807912827, 0.022843079641461372, 0.0694904625415802, 0.017768410965800285, -0.033105503767728806, -0.01823488436639309, 0.050774965435266495, -0.02140125259757042, -0.013040062971413136, -0.03214428573846817, -0.012262606993317604, -0.02463829703629017, -0.04789131134748459, -0.0796680673956871, -0.021542608737945557, -0.06508016586303711, -0.05340418219566345, -0.026659684255719185, 0.0471845306456089, 0.033218588680028915, -0.012354487553238869, -0.05580722913146019, -0.06915120780467987, 0.032879333943128586, -0.02687171846628189, -0.0488242581486702, 0.00823396909981966, -0.03596089035272598, 0.001213008537888527, -0.02472311072051525, -0.002176877809688449, -0.06100912019610405, 0.050209544599056244, 0.02479378879070282, 0.024878602474927902, -0.05357380956411362, 0.074635811150074, 0.016976818442344666, 0.03296414762735367, 0.007986596785485744, -0.03924034163355827, 0.048513274639844894, -0.003093922743573785, -0.020779287442564964, 0.010728897526860237, 0.07768908888101578, 0.02540161833167076, 0.07101710140705109, 0.004678873345255852, 0.0020796956960111856, 0.021274032071232796, 0.002192780142650008, -0.016976818442344666, -0.034010179340839386, -0.05329109728336334, -0.03508448228240013, 0.018814442679286003, -0.013725638389587402, 0.014927161857485771, -0.04529036581516266, -0.0103048300370574, -0.05433712899684906, 0.007233877666294575, -0.0006970602553337812, -0.041360676288604736, 0.0209206435829401, 0.05976518988609314, 0.021570879966020584, -0.034236349165439606, -0.01872962899506092, 0.02411528117954731, 0.03101344034075737, -0.044102977961301804, 0.042830776423215866, 0.026617277413606644, 0.022362470626831055, -0.00418412871658802, 0.0014144404558464885, -0.042519792914390564, 0.0016149887815117836, -0.016524480655789375, 0.01959189958870411, -0.02042589895427227, 0.009513238444924355, -0.026461785659193993, -0.02976951003074646, -0.009640458039939404, -0.024242501705884933, 0.026433514431118965, 0.0017068700399249792, 0.03499966859817505, -0.035027939826250076, -0.04042772948741913, 0.03564990684390068, 0.07067784667015076, 0.027592631056904793, -0.021118540316820145, -0.008410664275288582, -0.0036028032191097736, -0.039551325142383575, -0.06598483771085739, -0.007873511873185635, 0.027083750814199448, 0.006269125267863274, 0.015577397309243679, 0.022631047293543816, -0.01651034504175186, -0.0423501655459404, 0.0024648900143802166, -0.0036646465305238962, 0.02237660624086857, 0.017316073179244995, -0.03352957218885422, -0.000744326098356396, -0.009110374376177788, 0.04619504138827324, 0.04483802616596222, 0.015096788294613361, -0.053149741142988205, 0.0029401984065771103, -0.007021844387054443, 0.015506720170378685, -0.010248287580907345, -0.0003818812547251582, -0.008792323991656303, 0.0009841889841482043, -0.05953902006149292, 0.036526311188936234, 0.0040357052348554134, 0.011725454591214657, 0.0027387666050344706, 0.01631244644522667, 0.01816420629620552, 0.04639293998479843, -0.0160862784832716, 0.030645914375782013, 0.03825085237622261, 0.04031464457511902, -0.011789064854383469, 0.03262489289045334, 0.0370069220662117, -0.0018888654885813594, 0.022588640451431274, -0.02524612657725811, -0.05001164600253105, -0.0017581115243956447, -0.017627054825425148, 0.005958142690360546, -0.007463580928742886, 0.015125059522688389, 0.013845790177583694, -0.017513969913125038, 0.00501105934381485, -0.006088896654546261, -0.008467205800116062, 0.013124876655638218, -0.027338191866874695, 0.0366959385573864, -0.020623795688152313, -0.030815541744232178, 0.016482073813676834, 0.06705914437770844, -0.015351228415966034, -0.011796132661402225, -0.07503160089254379, -0.05046398192644119, -0.08571809530258179, -0.01597319357097149, -0.001465681823901832, 0.016948547214269638, -0.011372066102921963, 0.040936607867479324, 0.02268758974969387, -0.019309187307953835, -0.01669410802423954, 0.014743398874998093, -0.015393635258078575, 0.021726369857788086, 0.02547229640185833, -0.04107796400785446, -0.022701725363731384, 0.008198630064725876, -0.008573222905397415, 0.0019118357449769974, 0.00592633755877614, -0.0573621429502964, -0.04540345072746277, -0.07243065536022186, 0.015662211924791336, 0.012517047114670277, 0.04226535186171532, 0.023988062515854836, -0.0027917749248445034, 0.019917016848921776, -0.019478814676404, -0.026914125308394432, -0.0024807925801724195, -0.017132310196757317, -0.00562242278829217, 0.03680902346968651, 0.018899256363511086, -0.002972003538161516, -0.022150438278913498, -0.029684696346521378, -0.026164939627051353, -0.04506419599056244, 0.020228000357747078, 0.026914125308394432, -0.011789064854383469, -0.01911129057407379, 0.027408869937062263, -0.025260262191295624, -0.004604661837220192, -0.022843079641461372, -0.024058738723397255, 0.04088006913661957, -0.015520855784416199, -0.01194455660879612, -0.006216116715222597, -0.04082352668046951, -0.013131944462656975, 0.03335994482040405, 0.004844966344535351, -0.002749368315562606, 0.03924034163355827, 0.019097154960036278, 0.03935342654585838, 0.013457062654197216, -0.0027228640392422676, 0.014729263260960579, 0.04336792603135109, -0.017542241141200066, 0.03409499302506447, -0.0494462214410305, -0.007675614207983017, 0.020963050425052643, -0.011541692540049553, -0.011916285380721092, -0.034123264253139496, -0.0001657616376178339, -0.012008165940642357, -0.0037989343982189894, 0.023691214621067047, 0.037628885358572006, 0.0026044787373393774, 0.04486629739403725, -0.006841615773737431, -0.061178743839263916, -0.011046947911381721, 0.0321725569665432, 0.018941663205623627, 0.024878602474927902, 0.00404277304187417, 0.003654044819995761, -0.03403845056891441, -0.0006179894553497434, 0.015888379886746407, 0.03341648727655411, -0.01211418304592371, 0.02275826781988144, -0.030843812972307205, -0.016566887497901917, 0.04890907183289528, -0.00482376292347908, 0.05052052438259125, -0.030419746413826942, -0.014248654246330261, -0.02468070387840271, 0.002113267546519637, -0.059030137956142426, 0.03531065210700035, 0.061744168400764465, -0.03655458241701126, -0.0491352416574955, -0.03364265710115433, -0.010841981507837772, -0.016482073813676834, 0.04254806414246559, -0.034914858639240265, -0.014587908051908016, 0.025500567629933357, 0.027295785024762154, -0.02694239653646946, 0.029034459963440895, -0.0005283168866299093, -0.019196104258298874, 0.02698480151593685, -0.004738949704915285, 0.015209873206913471, -0.04650602489709854, -0.016270041465759277, -0.025161314755678177, -0.045346908271312714, -0.02133057452738285, -0.014799941331148148, 0.0522167943418026, -0.01375390961766243, -0.018178341910243034, 0.03228564187884331, -0.02354985848069191, -0.04596887156367302, 0.025090636685490608, -0.020680338144302368, 0.029628153890371323, -0.016340717673301697, -0.03160713240504265, 0.014559636823832989, -0.05182099714875221, -0.01230501290410757, -0.009633390232920647, -0.008106749504804611, 0.03972094878554344, -0.027832936495542526, 0.02309752069413662, 0.010955066420137882, -0.009435492567718029, 0.02976951003074646, 0.0017519271932542324, 0.0003971211554016918, -0.03655458241701126, 0.002482559299096465, 0.007901783101260662, 0.0047177462838590145, 0.02253209799528122, -0.017697732895612717, 0.01056633796542883, -0.026320431381464005, -0.04608195647597313, 0.03562163561582565, 0.01913956180214882, 0.014729263260960579, -0.025797413662075996, 0.0060288202948868275, 0.01074303314089775, -0.002107966924086213, 0.00808554608374834, -0.001696268329396844, 0.035169295966625214, -0.01680719293653965, -0.018927527591586113, 0.021613286808133125, -0.09962749481201172, -0.021372981369495392, 0.01516746636480093, -0.002341203624382615, 0.058464717119932175, -0.004396161995828152, 0.023069249466061592, 0.03723309189081192, 0.016453802585601807, 0.006018218584358692, -0.00032953545451164246, -0.014573772437870502, -0.015845973044633865, -0.029147544875741005, -0.010170542635023594, 0.006428150460124016, 0.03712000697851181, 0.03101344034075737, -0.051425203680992126, 0.03686556592583656, 0.0024843262508511543, 0.015591532923281193, -0.01737261563539505, 0.013782179914414883, -0.02246141992509365, -0.034575603902339935, -0.022206980735063553, -0.003883747849613428, -0.01305419858545065, 0.003675248008221388, -0.05148174613714218, -0.021259896457195282, -0.02653246372938156, 0.00092322938144207, 0.014517229981720448, -0.023804299533367157, 0.012736148200929165, 0.018715493381023407, -0.039098985493183136, 0.0177825465798378, -0.037402715533971786, -0.05750349536538124, -0.022433148697018623, 0.022673454135656357, 0.0094566959887743, 0.02490687370300293, -0.005413922946900129, 0.024652432650327682, -0.0003514014242682606, 0.010071593336760998, 0.018150070682168007, -0.048060934990644455, -0.006912293378263712, 0.029571611434221268, 0.015096788294613361, -0.010580473579466343, 0.012326216325163841, -0.010446186177432537, 0.005958142690360546, 0.03915552794933319, 0.019266780465841293, 0.03304896131157875, 0.0011803200468420982, -0.011124692857265472, 0.006841615773737431, 0.01017761044204235, 0.017909767106175423, -0.0016052706632763147, -0.028440766036510468, 0.047721683979034424, 0.002865986665710807, -0.04288731887936592, -0.04480975493788719, 0.016863735392689705, -0.0016688806936144829, -0.01337931677699089, 0.013011791743338108, 0.00677447160705924, -0.019719120115041733, 0.01418504398316145, -0.02800256386399269, -0.003392536658793688, -0.008304647170007229, 0.001728073344565928, -0.02359226532280445, -0.02615080401301384, -0.02155674435198307, 0.027521954849362373, -0.028426630422472954, 0.0033041893038898706, 0.03245526924729347, 0.03056110069155693, 0.0358760766685009, -0.0186589527875185, -0.0008892156765796244, -0.0003648744022939354, -0.002874821424484253, 0.029939135536551476, -0.0014524298021569848, 0.029910866171121597, 0.0009833055082708597, -0.010686490684747696, -0.021231625229120255, 0.02558538131415844, 0.025345075875520706, 0.02829940989613533, 0.0029030926525592804, -0.020553117617964745, -0.039325155317783356, 0.013937671668827534, -0.012008165940642357, 0.007866444066166878, 0.0358760766685009, -0.005251364316791296, 0.015478448942303658, -0.011181235313415527, -0.01013520359992981, -0.05207543820142746, -0.03123960830271244, 0.0028783553279936314, -0.035141024738550186, -0.003675248008221388, 0.02178291231393814, -0.0011246612994000316, -0.028921375051140785, -0.0105875413864851, -0.02155674435198307, -0.047608599066734314, 0.008205697871744633, 0.031069982796907425, -0.012326216325163841, -0.017118174582719803, -0.021231625229120255, 0.013181419111788273, 0.004173527006059885, 0.004724814090877771, 0.030306661501526833, 0.01805112324655056, -0.01364082470536232, 0.03960786759853363, 0.036187056452035904, 0.03562163561582565, -0.019422272220253944, -0.02671622671186924, 0.00686635309830308, -0.006516497582197189, 0.0114356754347682, -0.015195737592875957, 0.007838173769414425, -0.016906140372157097, -0.023917384445667267, 0.035254109650850296, -0.01733020879328251, -0.026334566995501518, -0.004661204293370247, -0.022772403433918953, 0.0774063766002655, 0.02897791750729084, 0.003463214496150613, -0.009506170637905598, -0.0539696030318737, -0.022546233609318733, 0.003016177099198103, 0.004770754836499691, -0.03369919955730438, 0.008113817311823368, -0.02596704103052616, 0.004597594030201435, -0.047721683979034424, 0.045912329107522964, 0.045318637043237686, 0.005300838500261307, 0.03596089035272598, 0.05286702886223793, -0.03375574201345444, 0.020694473758339882, 0.027225106954574585, 0.034462518990039825, 0.02920408733189106, -0.005756710655987263, -0.0114356754347682, -0.040116745978593826, 0.020934779196977615, 0.07327879220247269, -0.05456329882144928, 0.016411395743489265, -0.04268942028284073, 0.005216025281697512, -0.006141905207186937, -0.03324685990810394, -0.008142088539898396, 0.012926978059113026, 0.025345075875520706, 0.03946651145815849, 0.0042017982341349125, 0.019733255729079247, 0.013838722370564938, -0.026207346469163895, -0.0021839456167072058, -0.0003202589869033545, 0.019266780465841293, 0.029345441609621048, -0.03285106271505356, -0.01956362836062908, 0.01850346103310585, -0.024765517562627792, -0.08260826766490936, -0.03302069008350372, -0.006661387160420418, -0.018022852018475533, 0.011994031257927418, -0.0015301754465326667, 0.019040612503886223, -0.02219284512102604, -0.027536090463399887, 0.01673651486635208, -0.019775662571191788, -0.0013234426733106375, 0.013386384584009647, -0.01913956180214882, -0.028327681124210358, 0.006884022615849972, -0.02128816768527031, -0.02072274498641491, -0.03839220851659775, -0.012601859867572784, -0.03403845056891441, -0.025557110086083412, 0.024737246334552765, -0.031635403633117676, 0.023747757077217102, 0.024087009951472282, 0.025684330612421036, -0.018885120749473572, 0.008467205800116062, 0.011322591453790665, 0.020015966147184372, -0.03203120082616806, 0.016637565568089485, 0.010856117121875286, -0.008969019167125225, -0.03112652339041233, -0.0240021962672472, 0.008771120570600033, -0.030617643147706985, -0.005866261199116707, -0.015775294974446297, -0.005141813308000565, 0.036724209785461426, -0.035932619124650955, 0.021457795053720474, 0.014672720804810524, 0.01578943058848381, -0.01684959977865219, -0.02189599722623825, 0.013612553477287292, -0.008905408903956413, -7.023611397016793e-05, -0.0022758266422897577, -0.02732405625283718, 0.009138645604252815, 0.011280184611678123, 0.01940813660621643, 0.0036257735919207335, 0.0006312415353022516, 0.024822060018777847, -0.024440400302410126, 0.0023235343396663666, 0.0009753542835824192, 0.006590709555894136, -0.026631413027644157, 0.006523565389215946, 0.016496209427714348, -0.05493082478642464, -0.006982971448451281, 0.006944098509848118, 0.0059616765938699245, -0.0054563297890126705, 0.057673122733831406, -0.027974292635917664, 0.0006162225035950541, -0.0028854231350123882, -0.001723655965179205, -0.026051854714751244, 0.019167833030223846, -0.0015372431371361017, -0.010205881670117378, -0.007880579680204391, -0.021160947158932686, 0.017570512369275093, 0.006378675810992718, -0.002199847949668765, -0.029628153890371323, -0.02762090228497982, -0.030617643147706985, -0.010488593019545078, -0.002111500594764948, -0.002395979128777981, 0.01800871640443802, -0.014785805717110634, 0.03429289162158966, -0.11059669405221939, -0.026179075241088867, 0.03986230492591858, -0.014177976176142693, -0.010509796440601349, -0.03262489289045334, 0.012121250852942467, 0.026433514431118965, 0.02585395611822605, -0.019351594150066376, 0.010128135792911053, -0.02800256386399269, -0.028158053755760193, -0.0023288351949304342, -0.016185227781534195, 0.0025178983341902494, 0.01307540200650692, 0.03712000697851181, 0.013294503092765808, 0.009810085408389568, -0.027790529653429985, -0.0038802139461040497, -0.014312264509499073, 0.04526209458708763, 0.013259164057672024, -0.007463580928742886, -0.010693558491766453, 0.0403994582593441, 0.020114915445446968, -0.008764052763581276, 0.0234367735683918, -0.0002612871758174151, -0.0007593451300635934, -0.0016909674741327763, -0.004982788115739822, 0.030985169112682343, 0.0013499469496309757, 0.012502911500632763, 0.02438385784626007, 0.009972644038498402, -0.040456000715494156, -0.042717691510915756, 0.03234218433499336, -0.02155674435198307, 0.04113450646400452, -0.008523748256266117, -0.008361189626157284, 0.012071776203811169, 0.009336543269455433, -9.745812712935731e-05, 0.01013520359992981, -0.00040683936094865203, -0.018772035837173462, -0.0017298402963206172, 0.007096055895090103, 0.02909100241959095, -0.02309752069413662, -0.013958875089883804, -0.005283168982714415, 0.004530449863523245, -0.01843278296291828, 0.02234833501279354, 0.04955930635333061, -0.059030137956142426, -0.013372248969972134, -0.016793057322502136, 0.00606769323348999, 0.028044970706105232, 0.002427784027531743, -0.016114549711346626, 0.03205947205424309, 0.011746658012270927, 0.04495111107826233, -0.013174351304769516, 0.021952539682388306, 0.011216574348509312, 0.009810085408389568, -0.006809810642153025, -0.013513604179024696, -0.02449694275856018, 0.0211750827729702, 0.0028076774906367064, -0.012340351939201355, 0.0033837019000202417, -0.015563261695206165, -0.022517962381243706, -0.024539349600672722, 0.003622239688411355, -0.0041205184534192085, -0.00853788387030363, 0.023521587252616882, -0.02336609736084938, -0.006290328688919544, -0.014043688774108887, 0.015930786728858948, 0.023465044796466827, 0.010382575914263725, 0.01277148723602295, 0.02128816768527031, -0.01895579881966114, 0.02852557972073555, -0.02506236545741558, 0.016185227781534195, -0.007576665375381708, -0.032087743282318115, -0.036271870136260986, -0.0006012034718878567, -0.005212491378188133, -0.01084904931485653, 0.005484601017087698, -0.016778921708464622, -0.008241036906838417, 0.02438385784626007, 0.01880030706524849, 0.02800256386399269, -0.005205423571169376, 0.024171823635697365, -0.03912725672125816, -0.003912019077688456, -0.03132442384958267, 0.01309660542756319, -0.02845490165054798, -0.024058738723397255, 0.035932619124650955, -0.030165305361151695, 0.03531065210700035, 0.04526209458708763, -0.01089145615696907, 0.008523748256266117, -0.024737246334552765, -0.01015640702098608, 0.03610224649310112, -0.001103457878343761, 0.04469667002558708, -0.017768410965800285, -0.002206915756687522, 0.009838356636464596, 0.004604661837220192, 0.0083258505910635, 0.03508448228240013, 0.001901234150864184, -0.009181052446365356, 0.014283993281424046, -0.012220200151205063, 0.005067601799964905, -0.011562895961105824, 0.0068734209053218365, 0.006551836617290974, -0.04698663204908371, 0.012107115238904953, 0.032313913106918335, -0.02302684262394905, -0.006937030702829361, 0.04766514152288437, -0.02434145100414753, 0.039438240230083466, -0.05702288821339607, -0.023351961746811867, -0.005848592147231102, 0.017570512369275093, 0.020736880600452423, 0.03067418560385704, 0.00688755651935935, -0.034688688814640045, 0.01074303314089775, -0.027408869937062263, -0.01437587384134531, 0.008269308134913445, -0.030730728060007095, -0.0037423919420689344, -0.022899622097611427, 0.01986047439277172, 0.02309752069413662, 0.01925264671444893, 0.04486629739403725, 0.0005932521889917552, -0.00032578071113675833, 0.030758999288082123, 0.004830830730497837, 0.0023146995808929205, -0.028384223580360413, -0.0086085619404912, 0.04167165979743004, 0.04992683231830597, 0.030589371919631958, -0.015520855784416199, -0.038194309920072556, 0.008149155415594578, -0.01335811335593462, 0.02999567799270153, 0.0117183867841959, 0.012078844010829926, 0.01658102311193943, 0.015379499644041061, -0.02807324193418026, 0.03768542781472206, 0.015153330750763416, -0.0005632141255773604, -0.012898706831037998, 0.037544071674346924, -0.05750349536538124, 0.019945288076996803, 0.02347918041050434, -0.050096459686756134, -0.012198996730148792, 0.04599714279174805, -0.027479548007249832, 0.028214596211910248, -0.03508448228240013, 0.03466041758656502, -0.0056294905953109264, 0.006382209714502096, 0.012043504975736141, 0.006081828847527504, -0.03542373701930046, -0.005594151560217142, 0.025952905416488647, 0.010530998930335045, 0.014382941648364067, -0.05634437873959541, -0.021118540316820145, -0.026362838223576546, -0.019040612503886223, 0.022305928170681, -0.020072508603334427, 0.0321725569665432, -0.007633207365870476, -0.012220200151205063, -0.022927893325686455, 0.009640458039939404, -0.0002506854943931103, 0.013407588005065918, 0.010672355070710182, 0.028765883296728134, 0.03471696004271507, 0.024087009951472282, 0.007035980001091957, 0.011181235313415527, 0.008403596468269825, 0.003314791014418006, -0.019167833030223846, 0.005724905524402857, 0.0016847832594066858, -0.05727732926607132, -0.024595890194177628, 0.006212582811713219, 0.00562242278829217, 0.03678075224161148, 0.031437505036592484, -0.013428791426122189, -0.0029667026828974485, 0.012637198902666569, 0.02359226532280445, 0.005541143473237753, 0.04803266376256943, 0.01072182971984148, 0.004876771476119757, 0.017570512369275093, -0.029260629788041115, -0.014382941648364067, 0.0022016149014234543, 0.021076133474707603, 0.0100221186876297, 0.006541234906762838, 0.006138371303677559, 0.0045869923196733, -0.014404145069420338, -0.005014593247324228, 0.009407221339643002, -0.0005190404481254518, -0.022475555539131165, 0.015308821573853493, -0.0006550953257828951, -0.007604936603456736, -0.01699095405638218, 0.031183065846562386, -0.05852125957608223, -0.019761526957154274, -0.017386751249432564, -0.03805295377969742, -0.01959189958870411, -0.011011608876287937, -0.024482807144522667, -0.01759878359735012, 0.033897094428539276, -0.006095964461565018, -0.012538250535726547, -0.008566155098378658, -0.0020072509068995714, -0.022249385714530945, -0.008566155098378658, -0.004806093871593475, -0.018249019980430603, 0.010474457405507565, -0.02791775017976761, -0.00928706955164671, 0.0044597722589969635, 0.011909217573702335, -0.006640183739364147, -0.022885486483573914, -0.011301388032734394, -0.02506236545741558, 0.0192243754863739, 0.030023949220776558, 0.008184494450688362, 0.009011426009237766, -0.0031221939716488123, -0.0327945202589035, 0.0062514557503163815, 0.016962682828307152, 0.0009656361071392894, -0.0037600614596158266, 0.013407588005065918, 0.04955930635333061, -0.0060040829703211784, 0.0034208078868687153, 0.02976951003074646, -0.0017130543710663915, 0.02588222734630108, 0.0316636748611927, 0.009067967534065247, 0.017966309562325478, 0.01154876034706831, 0.0392686128616333, -0.016185227781534195, 0.0022652249317616224, 0.020581388846039772, 0.007979528978466988, -0.01567634753882885, 0.013895264826714993, 0.029515068978071213, -0.008976086974143982, 0.009484967216849327, 0.030504560098052025, -0.029797781258821487, 0.0007191470940597355, 0.0011750191915780306, -0.02189599722623825, -0.008488409221172333, -0.0015663978410884738, 0.019987694919109344, 0.0006922011962160468, -0.013563078828155994, -0.0067002600990235806, -0.007873511873185635, -0.008311714977025986, 0.02599531225860119, 0.010615812614560127, -0.017570512369275093, 0.0014488958986476064, 0.059821732342243195, 0.001142330700531602, -0.023945655673742294, 0.0072232759557664394, -0.010962134227156639, -0.012828029692173004, -0.023903248831629753, -0.007449445314705372, 0.0013755676336586475, -0.011577031575143337, -0.008898341096937656, 0.020637931302189827, -0.009386017918586731, 0.017909767106175423, 0.0073292930610477924, -0.006912293378263712, 0.00039645854849368334, 0.030815541744232178, 0.014128501527011395, -0.012651334516704082, 0.028087377548217773, 0.016227634623646736, 0.0032918208744376898, -0.007035980001091957, -0.027946021407842636, -0.01373270619660616, 0.00021854916121810675, 0.003007342340424657, -0.0032017065677791834, 0.01578943058848381, -0.014446551911532879, -0.033105503767728806, 0.010106932371854782, 0.03285106271505356, 0.00047486679977737367, 0.021938404068350792, -0.02841249480843544, -0.012481708079576492, 0.003957959357649088, 0.015407770872116089, -0.006947632413357496, -0.013845790177583694, -0.01224847137928009, -0.014446551911532879, -0.007739224471151829, 0.04133240506052971, -0.009322408586740494, 0.0004375400603748858, 0.006541234906762838, -0.03596089035272598, -0.03426462039351463, 0.00825517252087593, 0.01687787100672722, -0.017584647983312607, 0.02540161833167076, -0.00667905667796731, 0.03692210838198662, 0.03214428573846817, 0.010580473579466343, 0.031069982796907425, -0.01932332292199135, 0.003897883230820298, -0.007682682015001774, 0.0030532830860465765, -0.03471696004271507, -0.030137034133076668, 0.010085728950798512, -0.006997107062488794, -0.010227084159851074, -0.04237843677401543, 0.010552202351391315, 0.01952122151851654, 0.013987146317958832, 0.018630681559443474, 0.03873145952820778, 0.021683963015675545, 0.01230501290410757, 0.010347236879169941, 0.02155674435198307, -0.04059735685586929, -0.02845490165054798, 0.0020178526174277067, -0.03180503100156784, 0.012107115238904953, 0.0015443109441548586, -0.008339986205101013, 0.020143186673521996, 0.016270041465759277, -0.03850529342889786, 0.030504560098052025, 0.03779851272702217, -0.010142271406948566, 0.011273116804659367, 0.008870069868862629, 0.002954334020614624, -0.022037353366613388, -0.05105767771601677, -0.009753542952239513, -0.0027210970874875784, -0.022956164553761482, 0.02513304352760315, 0.021683963015675545, -0.0017678296426311135, 0.026348702609539032, 0.0045763906091451645, -0.019436407834291458, -0.024765517562627792, -0.012905774638056755, -0.0020867635030299425, 0.005636558402329683, -0.01488475501537323, 0.026207346469163895, -0.008078478276729584, 0.003357197856530547, 0.017612919211387634, 0.035169295966625214, -0.004148789681494236, -0.009470831602811813, -0.023578129708766937, -0.04198264330625534, 0.03720482066273689, -0.0034084392245858908, 0.0067426664754748344, -0.01963430643081665, 0.01868722215294838, 0.022178709506988525, 0.040456000715494156, -0.0203552208840847, -0.0143405357375741, -0.008969019167125225, -0.0003434501704759896, 0.002767037833109498, 0.04096487909555435, -0.02701307274401188, -0.0065341670997440815, 0.022065624594688416, 0.006604844704270363, -0.03779851272702217, 0.02027040719985962, 0.021316438913345337, -0.041926100850105286, 0.024708975106477737, -0.018786171451210976, 0.0027369996532797813, 0.047919582575559616, 0.003033846616744995, 0.01880030706524849, 0.031437505036592484, 0.021712234243750572, -0.003025011857971549, -0.01850346103310585, -0.011626506224274635, 0.03680902346968651, 0.010990405455231667, 0.007965393364429474, -0.01936572976410389, 0.02845490165054798, -0.013697367161512375, 0.012672537937760353, -0.007081920281052589, -0.0036434431094676256, 0.0015513787511736155, -0.014192111790180206, -0.03149404749274254, 0.019832205027341843, -0.019351594150066376, 0.021358845755457878, -0.03225737065076828, -0.015379499644041061, 0.00808554608374834, -0.006862819194793701, -0.012736148200929165, 0.0019206705037504435, 0.010057457722723484, 0.017358480021357536, 0.003191104857251048, -0.008834730833768845, 0.030363203957676888, -0.0011175934923812747, 0.014715127646923065, -0.004590526223182678, -0.018291426822543144, 0.02094891481101513, 0.021528473123908043, 0.0019065350061282516, 0.016552751883864403, -0.046336397528648376, 0.004731881897896528, 0.011216574348509312, -0.011916285380721092, 0.002655720105394721, -0.0324835404753685, 0.004417365416884422, 0.019620170816779137, 0.02976951003074646, 0.019054748117923737, 0.023465044796466827, 0.022673454135656357, -0.02999567799270153, 0.022447284311056137, -0.013372248969972134, -0.00557648204267025, -0.03663939610123634, 0.0038872817531228065, -0.011046947911381721, 0.019012341275811195, -0.04370718076825142, -0.002726397942751646, -0.00908210314810276, 0.012714944779872894, 0.007633207365870476, -0.0034155070316046476, -0.014573772437870502, 0.03056110069155693, 0.020934779196977615, -0.021372981369495392, -0.01296231709420681, 0.061744168400764465, 0.007816970348358154, -0.05425231531262398, 0.016793057322502136, -0.027041343972086906, 0.0053397114388644695, -0.012149522081017494, 0.006071227136999369, 0.01098333764821291, 0.035169295966625214, -0.02475138194859028, 0.03703519329428673, -0.010318965651094913, -0.009958508424460888, -0.02701307274401188, 0.013718570582568645, 0.0386466458439827, -0.0023624070454388857, -0.008679240010678768, 0.003597502363845706, -0.04495111107826233, 0.021881861612200737, -0.02870934270322323, -0.01714644581079483, -0.001901234150864184, 0.008997290395200253, -0.004565788898617029, 0.04088006913661957, -0.015464313328266144, 0.021910132840275764, 0.009145713411271572, 0.003261782694607973, 0.015916651114821434, 0.0011670679086819291, 0.0336143858730793, 0.017429158091545105, -0.01213538646697998, -0.0283700879663229, 0.023563994094729424, 0.026546599343419075, -0.018489325419068336, -2.6863104721996933e-05, 0.00031959637999534607, -0.020793423056602478, 0.019987694919109344, -0.00564362620934844, -0.020708609372377396, -0.011223642155528069, 0.012707876972854137, 0.022857215255498886, -0.031409237533807755, -0.03678075224161148, 0.05419577285647392, 0.00416292529553175, 0.011923353187739849, 0.012255539186298847, -0.014616179279983044, 0.021924268454313278, -0.0004987205611541867, 0.014354671351611614, -0.0018411579076200724, -0.0063928114250302315, -0.01270080916583538, -0.00468240724876523, -0.010467389598488808, -0.006286794785410166, -0.022023217752575874, 0.004127586260437965, -0.011725454591214657, -0.015393635258078575, -0.003017944050952792, 0.00752719072625041, 0.016383124515414238, 0.01872962899506092, 0.036187056452035904, -0.001021294854581356, 0.0036363753024488688, -0.0037141209468245506, -0.008580290712416172, 0.0016759485006332397, 0.016595158725976944, 0.024963416159152985, -0.000601645209826529, -0.004053374752402306, 0.00849547702819109, 0.000216009168070741, -0.01703336089849472, 0.04950276389718056, 0.0206096600741148, -0.00932947639375925, 0.007421174086630344, 0.0070147765800356865, 0.007064250763505697, 0.011230709962546825, 0.0040357052348554134, -0.0030815540812909603, -0.0065589044243097305, 0.0030550500378012657, -0.026334566995501518, 0.007184403482824564, 0.011386201716959476, 0.025684330612421036, 0.021019592881202698, 0.02359226532280445, 0.019874610006809235, 0.02834181673824787, -0.005039330571889877, 0.043056946247816086, 0.014842348173260689, 0.015959057956933975, -0.005527007859200239, -0.0021821786649525166, -0.016114549711346626, 0.02388911321759224, -0.011633574031293392, 0.019379865378141403, -0.012863368727266788, 0.03601743280887604, 0.009315340779721737, 0.029288901016116142, 0.02294202893972397, -0.012100047431886196, -0.017697732895612717, -0.010778372175991535, -0.0029278297442942858, -0.061631083488464355, 0.013563078828155994, -0.0053644487634301186, 0.03188984468579292, -0.0068486835807561874, 0.021542608737945557, -0.017386751249432564, -0.00020971443154849112, -0.0010813710978254676, 0.042180538177490234, -0.014029553160071373, -0.0177825465798378, 0.0018270224099978805, 0.0048343646340072155, 0.0249775517731905, 0.01850346103310585, 0.004470373969525099, 0.008954883553087711, 0.004049840848892927, 0.006237320136278868, -0.027041343972086906, 0.009258798323571682, -0.020114915445446968, 0.01279269065707922, 0.04099315032362938, -0.011902149766683578, -0.009866627864539623, -0.0038802139461040497, -0.005191287957131863, -0.012898706831037998, 0.0009629856795072556, -0.02517545036971569, -0.014029553160071373, -0.05317801237106323, -0.003307723207399249, 0.01209297962486744, -0.01220606453716755, -0.008198630064725876, 0.013216757215559483, 0.02773398719727993, 0.008848866447806358, 0.009075035341084003, 0.05159482732415199, 0.002491394057869911, -0.009824221022427082, 0.018856849521398544, 0.005018127150833607]" -How Ndustrial Is Providing Fast Real-Time Queries and Safely Storing Client Data With 97 % Compression,"lean on continuous aggregates a bit more in the future.But, ultimately, just being able to query and use TimescaleDB features to roll up and aggregate that data is significant for us. I love following theTimescale experimental repositoryand seeing what people come out with each release. I basically have a list on my computer of things I intend to add to our platform soon. Just to expose those capabilities, too. Because if we can do it, why not turn that into something we can create in our app? And create it as another view, metric, or perspective in the UI. So it's always exciting to see what you guys are coming up with.RoadmapOver the last few years, we've been building this new platform and leaning pretty heavily on it. There are a few pieces left that we're getting to really make it where we want it to be. Part of that is exposing many of these self-made dynamic metrics to our customers to the degree where they can just generate whatever they want that meets the needs of their system based on their use case or personas.We have various individuals using our platform that come from different disciplines within an organization, so being able to cater metrics and analytics to them directly is really powerful, and exposing a platform in a way where they can do that without having to rely on us to do it for them is also very powerful.To achieve this, we're building more of these ad hoc type views, which will lean on the functionality we get from an in-house metrics engine that uses TimescaleDB to query this data. Beyond that, we're entering into more of an automated controls world within our platform.Up to this point, we've primarily been focused on getting this data visible and exposing it to our customers, showing them how they can become more efficient, and working with them more closely to help them get there. But we're moving toward the direction of taking these opportunities and automating the process that allows them to save energy and money or participate in these opportunities.This requires us to analyze this data to predict outcomes that could happen in the near future so that we can prepare customers and get them set up and make them more valuable than others",https://www.timescale.com/blog/how-ndustrial-is-providing-fast-real-time-queries-and-safely-storing-client-data-with-97-compression/,435,"[0.007997708395123482, 0.0064310659654438496, 0.038978058844804764, 0.011820315383374691, 0.03659676015377045, 0.011146659031510353, -0.018768373876810074, 0.03305615112185478, -0.00488792359828949, 0.009305854327976704, 0.031332843005657196, -0.04449263587594032, 0.006728728301823139, -0.04486863315105438, 0.03430946543812752, 0.015172929503023624, 0.013191127218306065, -0.015125930309295654, 0.00018322370306123048, 0.012705467641353607, 0.02683657966554165, -0.021823326125741005, 0.054017823189496994, 0.016387077048420906, -0.03969871252775192, -0.023389967158436775, -0.02611592411994934, 0.04985055327415466, 0.0035229865461587906, -0.05802842602133751, 0.025677265599370003, -0.029296208173036575, -0.058467086404561996, 0.0013179377419874072, 0.01936369761824608, 0.008264037780463696, 0.02381296083331108, 0.00972884800285101, 0.016653405502438545, 0.008311036974191666, -0.009235356003046036, -0.012627135962247849, 0.0156429223716259, 0.05351649597287178, -0.008358036167919636, -0.012204142287373543, -0.0475945882499218, -0.009423352777957916, -0.014162445440888405, 0.044993963092565536, -0.044711966067552567, -0.01779705472290516, -0.007512049283832312, -0.03393346816301346, 0.013112794607877731, -0.05304650217294693, -0.014413108117878437, -0.005334416404366493, -0.045902617275714874, -0.00268679135479033, -0.018580377101898193, -0.04762592166662216, 0.022810310125350952, 0.029766201972961426, -0.01901903562247753, 0.005260000936686993, -0.04251866787672043, 0.040920693427324295, -0.04098336026072502, 0.01554109062999487, 0.07093755900859833, -0.007143888156861067, -0.004989755339920521, 0.0006971557741053402, 0.0335574746131897, -0.05436248332262039, 0.024784279987215996, 0.027447570115327835, -0.027635568752884865, -0.017295729368925095, -0.0035934855695813894, -0.028027229011058807, -0.030016863718628883, -0.013543621636927128, 0.0021541330497711897, -0.033996134996414185, -0.026350921019911766, -0.030424190685153008, -0.027917563915252686, 0.016034582629799843, -0.020444680005311966, 0.051072534173727036, -0.003315406385809183, 0.02324897050857544, 0.026241255924105644, 0.038351401686668396, -0.005784826353192329, 0.03644009679555893, 0.003244907595217228, 0.02868521772325039, 0.021556995809078217, -0.008530366234481335, 0.003573902416974306, -0.0354374460875988, 0.029390206560492516, 0.014789101667702198, 0.014420941472053528, 0.006932391785085201, -0.017217397689819336, -0.011843814514577389, -0.09393586218357086, -0.02472161315381527, -0.027823565527796745, 0.011875147931277752, -0.006634729448705912, 0.0060668219812214375, -0.021243667230010033, 0.037129420787096024, 0.005310916807502508, 0.012164976447820663, -0.002680916339159012, 0.02083634026348591, -0.03443479537963867, 0.02536393702030182, -0.021619662642478943, -0.04226800426840782, -0.01624607853591442, -0.051730524748563766, -0.04568328708410263, -0.004551095422357321, 0.04041936993598938, -0.006219569593667984, 0.03910338878631592, -0.03430946543812752, -0.018862372264266014, -0.00959568377584219, -0.024987943470478058, -0.01066100038588047, -0.035124119371175766, -0.015470591373741627, 0.019818022847175598, -0.015556756407022476, 0.0074454667046666145, 0.005761326756328344, -0.017515059560537338, -0.0018153466517105699, -0.01066100038588047, 0.03236682713031769, -0.020366348326206207, -0.0033741556107997894, -0.003517111763358116, -0.011412988416850567, -0.07801877707242966, -0.018141716718673706, 0.048127248883247375, -0.021995656192302704, -0.004163351375609636, 0.06498431414365768, 0.005119003355503082, -0.034466128796339035, 0.009431186132133007, 0.04900456592440605, -0.04731259495019913, 0.017969386652112007, -0.013018796220421791, 0.0024537532590329647, -0.030972516164183617, -0.02262231335043907, -0.08159072697162628, -0.01290913112461567, -0.09769580513238907, -0.030016863718628883, -0.01753072626888752, 0.018251381814479828, 0.04214267432689667, -0.022277651354670525, -0.016105081886053085, -0.07118821889162064, 0.003425071481615305, -0.00493492279201746, -0.04540129005908966, 0.026147257536649704, -0.03772474452853203, -0.004860507324337959, -0.03615809977054596, -0.005252168048173189, -0.050696540623903275, 0.052921172231435776, 0.001374728512018919, 0.017844054847955704, -0.07476016134023666, 0.10809831321239471, 0.030220527201890945, 0.04032536968588829, 0.02545793540775776, -0.022293318063020706, 0.023264635354280472, 0.013637620024383068, -0.013175460509955883, -0.00028787049814127386, 0.061130378395318985, 0.011734149418771267, 0.0795227587223053, 0.0004814976709894836, -0.007766628637909889, 0.026977578178048134, -0.005295250564813614, -0.00876536313444376, -0.05915640667080879, 0.002806247677654028, -0.020006021484732628, 0.0014981016283854842, -0.012666301801800728, 0.05959506705403328, -0.06272835284471512, 0.018768373876810074, -0.06485898792743683, 0.005804409272968769, 0.005455831531435251, -0.0075237988494336605, 0.029578203335404396, 0.03152083978056908, 0.056430451571941376, -0.00527958432212472, 0.011099659837782383, 0.04402264580130577, 0.022402983158826828, -0.05414315313100815, 0.03828873485326767, 0.017295729368925095, 0.02028801664710045, -0.04383464902639389, -0.018517710268497467, -0.026006260886788368, -0.008976859971880913, 0.011138825677335262, 0.02360929735004902, -0.030189193785190582, 0.037129420787096024, -0.019348030909895897, -0.003560194279998541, 0.0025888762902468443, -0.02841888926923275, 0.004249516874551773, 0.0158152524381876, 0.04740659147500992, -0.041296686977148056, -0.03246082738041878, 0.0031685337889939547, 0.05285850539803505, 0.05552179738879204, -0.056900445371866226, -0.014836101792752743, -8.530855848221108e-05, -0.022293318063020706, -0.04261266812682152, -0.02888888120651245, 0.046372607350349426, -0.00969751551747322, 0.004265183117240667, -0.0013316458789631724, 0.014319109730422497, -0.044335972517728806, -0.0014471857575699687, 0.00968968216329813, 0.020961672067642212, 0.0030588689260184765, -0.009125690907239914, 0.01070016622543335, -0.0335574746131897, 0.04574595019221306, 0.03885272517800331, 0.0018868246115744114, -0.047281261533498764, -0.021635327488183975, -0.019410695880651474, 0.015635088086128235, -0.004041936714202166, -0.005275667645037174, -0.030377192422747612, -0.024690279737114906, -0.04289466142654419, 0.05129186436533928, -0.004680343437939882, -0.019786691293120384, 0.00444926368072629, 0.01475776918232441, 0.003442696062847972, 0.0013169585727155209, -0.011467820964753628, -0.0003544527862686664, 0.00013365416089072824, 0.0459652803838253, -0.014796935021877289, 0.032429493963718414, 0.017875386402010918, 0.02464328147470951, -0.03202216699719429, -0.022026989609003067, -0.018235715106129646, 0.012321640737354755, -0.04963122308254242, -0.010371170938014984, -0.016261745244264603, 0.03080018423497677, 0.015674255788326263, 0.0027377072256058455, -0.009768013842403889, -0.007946792058646679, -0.026460586115717888, 0.03891539201140404, -0.024314286187291145, 0.01305796205997467, -0.036690760403871536, -0.040638696402311325, -0.016371410340070724, 0.07732945680618286, -0.005882741417735815, -0.009650515392422676, -0.009799347259104252, -0.047093264758586884, -0.059469737112522125, -0.02104000374674797, -0.009768013842403889, 0.025050608441233635, -0.0009644640958867967, 0.028544221073389053, 0.025974927470088005, 0.008546032942831516, -0.040450699627399445, -0.015494091436266899, 0.002389129251241684, 0.023483965545892715, 0.009196189232170582, -0.02693057805299759, -0.02766690030694008, 0.01853337697684765, -0.018674375489354134, 0.010120508261024952, 0.027901897206902504, -0.033808138221502304, -0.027055909857153893, -0.07826944440603256, -0.0196456927806139, 0.024972276762127876, 0.016810070723295212, -0.015196428634226322, -0.028998546302318573, -0.0011935854563489556, 0.021024338901042938, -0.00392443872988224, -0.03863339498639107, 0.022669311612844467, -0.009157023392617702, 0.009862012229859829, 0.04270666465163231, -0.02675824798643589, -0.046999264508485794, -0.011843814514577389, -0.023327302187681198, -0.041296686977148056, 0.0178910531103611, 0.015313927084207535, -0.0013218543026596308, -0.016387077048420906, 0.03609543666243553, -0.019332364201545715, -0.0053931656293570995, 0.00039459799882024527, 0.0061686537228524685, 0.01936369761824608, -0.028653886169195175, -0.025677265599370003, -0.01955169439315796, -0.0453699566423893, -0.007414134219288826, 0.04154735058546066, 0.007073389366269112, 0.030095195397734642, 0.05414315313100815, 0.024564949795603752, 0.05574112758040428, -0.005639911629259586, -0.008060374297201633, 0.024235954508185387, 0.054769810289144516, -0.01624607853591442, 0.018016384914517403, -0.07432150840759277, -0.01836104691028595, 0.01900336891412735, -0.014272110536694527, -0.025019275024533272, -0.029296208173036575, 0.0010868579847738147, 0.005099420435726643, 0.016293078660964966, 0.05072787404060364, 0.06373100727796555, -0.022998306900262833, 0.011788981966674328, -0.006360567174851894, -0.04236200451850891, -0.018220048397779465, 0.011091826483607292, 0.014483606442809105, -0.023687629029154778, 0.03277415409684181, -0.037975408136844635, 0.010676666162908077, 0.022387316450476646, -0.0076217143796384335, 0.0485345758497715, -0.024940943345427513, 0.018580377101898193, -0.031160512939095497, -0.016465408727526665, 0.03665942698717117, 0.014013614505529404, 0.04336465522646904, -0.0344974622130394, -0.05166785791516304, 0.02804289571940899, -0.029045546427369118, -0.0028884964995086193, 0.011781149543821812, 0.02713424153625965, -0.01864304207265377, -0.04411664232611656, -0.05361049622297287, -0.00544016482308507, 0.03377680480480194, 0.050602540373802185, -0.02252831496298313, 0.00013891709386371076, 0.024110622704029083, 0.04154735058546066, -0.02196432277560234, 0.04938055947422981, -0.027008911594748497, -0.011640151031315327, -0.012282474897801876, -0.040012042969465256, 0.028089893981814384, -0.04555795341730118, -0.011138825677335262, -0.05693177506327629, -0.05664978176355362, -0.01726439595222473, -0.0010046092793345451, -0.010645333677530289, -0.0073867179453372955, -0.028027229011058807, 0.03302481770515442, -0.06260301917791367, -0.030110862106084824, 0.048221245408058167, -0.04549529030919075, 0.038069404661655426, 0.024329952895641327, -0.0026437086053192616, 0.010637500323355198, -0.031144846230745316, 0.018564710393548012, -0.001307167112827301, -0.019207032397389412, -0.0076804631389677525, -0.022747645154595375, 0.013943115249276161, -0.016465408727526665, 0.0075237988494336605, 0.009838513098657131, -0.02194865606725216, -0.018517710268497467, -0.05617978796362877, -0.003556277835741639, -0.0003147971583530307, -0.018768373876810074, 0.004167268052697182, -0.0357821062207222, 0.005522413644939661, 0.01175764948129654, -0.020444680005311966, 0.06335500627756119, 0.012533137574791908, 0.008365869522094727, -0.02620992437005043, -0.03725475072860718, -0.03691009059548378, -0.0018163258209824562, -0.008271871134638786, -0.01457760576158762, 0.04900456592440605, -0.02083634026348591, -0.029922865331172943, 0.02158832922577858, -0.09493851661682129, -0.033996134996414185, 0.006932391785085201, 0.010637500323355198, 0.03393346816301346, 0.017671722918748856, -0.008381535299122334, 0.03960471600294113, 0.03073751926422119, 0.03130150958895683, 0.010112674906849861, -0.002841497305780649, -0.012979630380868912, 0.0006080530001781881, -0.038351401686668396, 0.007864544168114662, 0.008483367040753365, 0.006008072756230831, -0.031144846230745316, 0.02628825604915619, 0.006834476254880428, 0.009157023392617702, 0.011452154256403446, 0.0027553318068385124, -0.0367220938205719, -0.05248251184821129, -0.0027455403469502926, -0.0011955437948927283, 0.008436367847025394, -0.01992768794298172, -0.05122919753193855, -0.0014824351528659463, -0.03200649842619896, 0.018141716718673706, 0.005788743030279875, -0.04878523573279381, 0.007884127087891102, 0.023029640316963196, -0.053265832364559174, 0.01283079944550991, -0.006109904497861862, -0.025520600378513336, -0.03258615732192993, 0.03148950636386871, 0.04029403626918793, 0.03687875717878342, 0.032523490488529205, 0.017421061173081398, -0.03100384771823883, 0.010527835227549076, -0.017875386402010918, -0.017107732594013214, 0.015063264407217503, 0.026993244886398315, 0.051354531198740005, -0.03208483010530472, 0.0037716911174356937, -0.03659676015377045, 0.027698233723640442, 0.0012317723594605923, 0.023186303675174713, 0.014326943084597588, 0.008420702069997787, 0.0004991224268451333, 0.007218303624540567, -0.010488669387996197, 0.011091826483607292, -0.015290427953004837, -0.01378645095974207, 0.05364182963967323, -0.007923292927443981, -0.031505174934864044, -0.007508132606744766, 0.017656058073043823, 0.004229933954775333, -0.004978005308657885, 0.0033976552076637745, -0.016575073823332787, 0.012399972416460514, 0.013191127218306065, 0.011240657418966293, -0.007570798508822918, 0.0012660427019000053, 0.028450222685933113, -0.016919735819101334, -0.020961672067642212, -0.006105987820774317, 0.01928536593914032, -0.04004337266087532, 9.6507603302598e-05, 0.0424560010433197, 0.011303323321044445, 0.026993244886398315, -0.020444680005311966, -0.009799347259104252, -0.021243667230010033, -0.005596829112619162, 0.038696061819791794, -0.01688840240240097, 0.028387555852532387, -0.0052678342908620834, -0.0008768300176598132, 0.014037113636732101, 0.02252831496298313, 0.02758856862783432, 0.004417930729687214, 0.006309651304036379, -0.031129179522395134, -0.02840322256088257, 0.00867919810116291, -0.027980228886008263, 0.0054479981772601604, 0.00442968076094985, 0.009431186132133007, 0.0012396055972203612, -0.005103337112814188, -0.0012121894396841526, -0.027353571727871895, -0.02020968496799469, 0.01471860334277153, 6.639870207436616e-06, 0.014366108924150467, 0.03600143641233444, 0.0049310061149299145, -0.019865022972226143, -0.03340081125497818, -0.014373942278325558, -0.04041936993598938, 0.022951308637857437, 0.009446851909160614, -0.0024615866132080555, -0.03255482390522957, 0.013574954122304916, 0.012274641543626785, -0.011663651093840599, 0.006376233417540789, 0.03524944931268692, -0.010269339196383953, -0.005271750967949629, 0.04041936993598938, 0.014170278795063496, 0.03125451132655144, 0.0008278724853880703, -0.012995297089219093, 0.019222699105739594, -0.009744514711201191, -0.007676546461880207, -0.016496742144227028, 0.019160034134984016, -0.036314766854047775, -0.011843814514577389, 0.03208483010530472, 0.0022363816387951374, -0.015321760438382626, -0.0240949559956789, -0.04624727740883827, 0.07244153320789337, 0.024047957733273506, 0.009721014648675919, -0.010363337583839893, -0.020084353163838387, -0.011976979672908783, 0.01890937052667141, -0.0002900735998991877, -0.05972040072083473, 0.020648343488574028, -0.028465887531638145, 0.023123638704419136, -0.04048203304409981, 0.06485898792743683, 0.03499878570437431, 0.01641841046512127, 0.05508313700556755, 0.052733175456523895, -0.04038803651928902, 0.03866472840309143, -0.012446971610188484, 0.02168232761323452, 0.020444680005311966, 0.013488789089024067, 0.016261745244264603, -0.04549529030919075, -0.0008876007050275803, 0.05151119455695152, -0.008240537717938423, -0.003517111763358116, -0.009384186938405037, -0.020053019747138023, 0.0035249448847025633, -0.016449742019176483, 0.00343877961859107, 0.024016624316573143, 0.026695583015680313, 0.01277596689760685, 0.009431186132133007, 0.020178351551294327, -0.010285005904734135, -0.0011054618516936898, 0.009431186132133007, -0.030753185972571373, -0.0040184371173381805, 0.01605808176100254, -0.038414064794778824, -0.013175460509955883, 0.00909435749053955, -0.008052540943026543, -0.05570979416370392, -0.028559885919094086, -0.012854298576712608, -0.00551458029076457, 0.014452273957431316, -0.0039538131095469, 0.04060736671090126, -0.0060119894333183765, -0.02989153191447258, -0.02517594024538994, -0.010347671806812286, -0.010911663062870502, 0.008397202007472515, -0.004135935567319393, -0.02592792734503746, 0.009862012229859829, -0.016496742144227028, -0.02951553836464882, -0.035186782479286194, -0.017201730981469154, -0.03481078892946243, -0.017953719943761826, 0.030220527201890945, -0.02611592411994934, 0.015423592180013657, 0.029766201972961426, 0.02213665470480919, -0.018846705555915833, 0.015752587467432022, 0.019771024584770203, 0.018752707168459892, -0.025332603603601456, 0.0059689064510166645, -0.00675614457577467, -0.02176065929234028, -0.02436128631234169, -0.015282594598829746, 0.0030921599827706814, -0.004108519293367863, -0.022998306900262833, -0.034090135246515274, -0.014969266019761562, 0.04740659147500992, -0.017734389752149582, 0.025974927470088005, 0.04574595019221306, 0.010903829708695412, -0.032899484038352966, -0.021102670580148697, 0.01670040562748909, -0.007186971139162779, 0.011052660644054413, 0.041923344135284424, -0.00680314376950264, -5.119125853525475e-05, -0.020711010321974754, -0.016308745369315147, 0.02176065929234028, 0.010958662256598473, 0.01092732883989811, 0.0016107039991766214, 0.0005835742340423167, 0.013629786670207977, 0.002978578442707658, -0.005788743030279875, 0.003879397641867399, 0.00857736635953188, -0.026632916182279587, 0.0001692707883194089, 0.019081702455878258, 0.013104962185025215, -0.05693177506327629, 0.035030119121074677, -0.021055670455098152, 0.0027474986854940653, 0.010692332871258259, 0.004464930389076471, -0.02168232761323452, 0.025489268824458122, -0.00136689527425915, -0.0034309462644159794, -0.02924920991063118, 0.007112555671483278, -0.011875147931277752, 0.02268497832119465, -0.022935641929507256, -0.02122800052165985, -0.03459145873785019, -0.027635568752884865, -0.013943115249276161, -0.014279942959547043, 0.010198840871453285, 0.00023120210971683264, 0.002806247677654028, 0.014460107311606407, -0.10490235686302185, -0.022011322900652885, 0.024517949670553207, -0.01176548283547163, -0.015400092117488384, -0.020883340388536453, 0.022011322900652885, 0.022293318063020706, 0.021525664255023003, -0.009172690100967884, -0.011741982772946358, -0.046309944242239, -0.015329593792557716, -0.0076021309942007065, -0.01762472465634346, -0.013136294670403004, -0.019771024584770203, 0.0453699566423893, 0.01677873730659485, -0.009744514711201191, -0.02020968496799469, -0.022825976833701134, -0.046811267733573914, 0.025630265474319458, 0.012501804158091545, -0.023123638704419136, -0.024408284574747086, 0.034842122346162796, 0.03396480157971382, -0.029954198747873306, 0.026867913082242012, 0.019254032522439957, -0.018235715106129646, 0.01911303400993347, 0.0009184439550153911, -0.008217038586735725, -0.004053686745464802, 0.0037991071585565805, 0.019880689680576324, 0.013183293864130974, -0.021024338901042938, -0.017421061173081398, 0.050759207457304, -0.03053385578095913, 0.03562544286251068, 0.005694744177162647, 0.008044707588851452, 0.013120627962052822, -0.012023978866636753, 0.007073389366269112, 0.023045307025313377, 0.00735538499429822, -0.012384306639432907, -0.005588995758444071, 0.020883340388536453, 0.024392617866396904, -0.01862737536430359, -0.03119184635579586, 0.013943115249276161, 0.010551335290074348, -0.011397321708500385, 0.014452273957431316, 0.022857308387756348, -0.04593394696712494, -0.0178910531103611, 0.005318750161677599, 0.012251141481101513, 0.019818022847175598, 0.012368639931082726, 0.013042296282947063, 0.03199083358049393, 0.028215225785970688, 0.006223485805094242, 0.0006398754194378853, 0.015204261988401413, -0.0023147137835621834, 0.03941671550273895, -0.008428534492850304, -0.0016557449707761407, -0.04132802039384842, 0.01847071200609207, -0.003464237553998828, -0.005357916001230478, 0.025050608441233635, -0.01286996528506279, 0.009556517004966736, 0.0005786784458905458, 0.002968786982819438, 0.009486018680036068, -0.012258974835276604, 0.050414543598890305, -0.019990354776382446, -0.009352853521704674, -0.0021090919617563486, -0.020084353163838387, 0.0009649536805227399, 0.013316458091139793, 0.021165335550904274, 0.021149668842554092, 0.001033004722557962, 0.04255000129342079, 0.009752347134053707, -0.005017171613872051, 0.015031931921839714, -0.04963122308254242, -0.006987223867326975, 0.0023147137835621834, -0.0038049821741878986, -0.009666182100772858, 0.018141716718673706, -0.021337665617465973, 0.007312302477657795, -8.18203334347345e-05, 0.04928656294941902, 0.020147018134593964, 0.023577963933348656, 0.03189683333039284, -0.004249516874551773, 0.0033878637477755547, -0.010386837646365166, 0.029311874881386757, -0.020601345226168633, -0.06742827594280243, 0.028481554239988327, 0.0034231131430715322, 0.041108690202236176, 0.018768373876810074, -0.029452873393893242, 0.020335014909505844, -0.03515544906258583, 0.04715592786669731, 0.026773914694786072, 0.0012298141373321414, 0.03374547138810158, -0.04048203304409981, -0.014436607249081135, 0.012666301801800728, -0.02674258127808571, -0.0070263901725411415, 0.029123878106474876, 0.012760300189256668, 0.02019401825964451, 0.01864304207265377, -0.007249636575579643, 0.024502282962203026, -0.005244334693998098, -0.026084592565894127, 0.00027881335699930787, -0.029405873268842697, 0.027886230498552322, 0.03145817667245865, 0.000511116988491267, 0.004598094616085291, 0.060848381370306015, -0.04201734438538551, 0.046466607600450516, -0.02693057805299759, -0.03443479537963867, 0.0013159794034436345, 0.0017771597485989332, 0.03336947783827782, 0.03625210002064705, -0.0026202090084552765, -0.03343214467167854, 0.018674375489354134, -0.03493611887097359, 0.019160034134984016, -0.012368639931082726, -0.02932754158973694, 0.005130752921104431, -0.01764039136469364, 0.012603635899722576, 0.004053686745464802, 0.015165096148848534, 0.030753185972571373, 0.03810073807835579, 0.00904735829681158, 0.025301270186901093, 0.008350202813744545, 0.018596041947603226, -0.0194733627140522, -0.004406181164085865, 0.02113400213420391, 0.038414064794778824, 0.051542527973651886, -0.038696061819791794, -0.009157023392617702, 0.017374061048030853, -0.0002707353560253978, 0.014695103280246258, 0.03054952248930931, 0.011608818545937538, -0.0064858985133469105, 0.02667991630733013, -0.037411414086818695, -0.01973969116806984, 0.028638219460844994, -0.0016342035960406065, -0.0047743418253958225, 0.04292599484324455, -0.08773196488618851, 0.013050129637122154, 0.010386837646365166, -0.009141356684267521, -0.026789581403136253, 0.02454928308725357, 0.010089175775647163, 0.019238365814089775, -0.020789342001080513, 0.009932511486113071, 0.010018676519393921, -0.01568208821117878, 0.004026270471513271, -0.016575073823332787, -0.024862611666321754, -0.004958422388881445, 0.010402504354715347, 0.010433836840093136, 0.04402264580130577, -0.03606410324573517, -0.04411664232611656, -0.03487345576286316, -0.04048203304409981, 0.013473122380673885, -0.024784279987215996, 0.025880929082632065, -0.016543742269277573, -0.009298020973801613, 0.008961193263530731, 0.004128102213144302, -0.020805008709430695, 0.020711010321974754, 0.004468846600502729, 0.026820914819836617, 0.004762592259794474, 0.014726436696946621, 0.011365989223122597, -0.0004555501800496131, -0.016559407114982605, -0.0011064410209655762, -0.02860688604414463, 0.02776089869439602, -0.015219928696751595, -0.03134851157665253, -0.01268196851015091, 0.009415519423782825, 0.041202690452337265, 0.0392913855612278, 0.018768373876810074, -0.01643407717347145, -0.03255482390522957, 0.019316697493195534, 0.02400095760822296, 0.018502043560147285, 0.02490960992872715, 0.015486258082091808, 0.00735538499429822, -0.013770784251391888, 0.008311036974191666, -0.02942153997719288, -0.0052913338877260685, 0.018846705555915833, 0.02943720668554306, 0.010136174969375134, -0.020100019872188568, -0.013026629574596882, -0.016810070723295212, -0.017421061173081398, 0.01715473271906376, 0.003399613546207547, -0.033808138221502304, 0.016857068985700607, -0.0020150935743004084, 0.005103337112814188, -0.022105321288108826, 0.030283194035291672, -0.04928656294941902, -0.018157383427023888, -0.026131590828299522, -0.00703813973814249, -0.023953959345817566, -0.006145154125988483, -0.02932754158973694, 0.0019553652964532375, 0.027431905269622803, -0.017327062785625458, -0.016183413565158844, 0.003080410184338689, 0.00904735829681158, -0.023750295862555504, -0.0029257042333483696, 0.04862857237458229, -0.013817784376442432, 0.006975474301725626, -0.030612187460064888, -0.014828268438577652, 0.007613881025463343, 0.01696673408150673, 0.013856950215995312, 0.0006893225363455713, -0.007065556012094021, -0.003615026827901602, -0.008514700457453728, 0.011389488354325294, 0.021071337163448334, -0.0037423165049403906, -0.00032777091837488115, -0.016089415177702904, 0.01199264544993639, 0.02317063696682453, -0.011185824871063232, -0.008702697232365608, -0.013715952634811401, 0.03775607794523239, 0.01370028592646122, -0.021713661029934883, 0.033463478088378906, 0.032617490738630295, 0.01180464867502451, 0.021635327488183975, 0.023938292637467384, 0.011608818545937538, 0.0050328378565609455, 0.01753072626888752, -0.006775727495551109, -0.0066660623997449875, 0.013692452572286129, -0.0045354291796684265, -0.008248371072113514, 0.002575168153271079, 0.0016714113298803568, -0.015611588954925537, 0.008256204426288605, 0.02713424153625965, -0.04352131858468056, 0.014123279601335526, 0.019583027809858322, -0.03156783804297447, -0.013778617605566978, -0.004053686745464802, -0.0018114299746230245, -0.00800162460654974, 0.00321944965980947, -0.025943594053387642, -0.005788743030279875, -0.020914673805236816, 0.014937933534383774, 0.012016145512461662, -0.017953719943761826, 0.021196668967604637, 0.0839720219373703, 0.003166575450450182, -0.0214003324508667, 0.006266568787395954, -0.006395816802978516, -0.027055909857153893, -0.0007338739233091474, -0.02121233567595482, -0.028277890756726265, 0.0076452139765024185, -0.025050608441233635, 0.005682994611561298, 0.01800071820616722, 0.009666182100772858, -0.014695103280246258, -0.018392378464341164, -0.013269458897411823, 0.03155217319726944, 0.02166666090488434, -0.003362405812367797, 0.018141716718673706, -0.007829294539988041, -5.743334622820839e-05, -0.028732217848300934, -0.011882981285452843, -0.02168232761323452, 0.030768852680921555, 0.0004792945983354002, -0.01764039136469364, 0.0052913338877260685, -0.004927089437842369, -0.017139066010713577, -0.01290913112461567, 0.040450699627399445, -0.009752347134053707, 0.015478424727916718, 0.009525184519588947, -0.001688056974671781, 0.011835981160402298, 0.02049168013036251, 0.0005130753270350397, -0.028309224173426628, 0.013527954928576946, -0.03481078892946243, -0.010684499517083168, 0.05348516255617142, -0.0055733295157551765, -0.013723785057663918, -0.004194684326648712, -0.04208000749349594, -0.05270184203982353, -0.005608579143881798, 0.009807179681956768, -0.006470232270658016, -0.0038598147220909595, 0.0012797508388757706, 0.0255519337952137, 0.04352131858468056, 0.00784104410558939, 0.03863339498639107, 0.016559407114982605, 0.0018545127240940928, -0.025222938507795334, 0.019880689680576324, -0.011702816933393478, -0.028089893981814384, 0.024611948058009148, -0.016496742144227028, 0.00786062702536583, -0.027337905019521713, 0.004758675582706928, 0.014178111217916012, 0.002919829450547695, 0.004316098988056183, 0.008702697232365608, 0.021462997421622276, 0.009454685263335705, 0.009125690907239914, 0.002866955241188407, -0.048565905541181564, -0.026883579790592194, 0.013684619218111038, -0.028920214623212814, 0.003977312706410885, -0.02279464341700077, 0.005424498580396175, 0.029452873393893242, 0.023750295862555504, -0.05044587701559067, 0.0494745597243309, 0.012768133543431759, -0.023139305412769318, 0.02490960992872715, 0.019222699105739594, 0.00696372427046299, -0.015979750081896782, -0.045620620250701904, -0.015650754794478416, -0.0012670218711718917, -0.006184319965541363, 0.01798505149781704, 0.029092544689774513, -0.017922386527061462, 0.027008911594748497, 0.009799347259104252, -0.015188596211373806, -0.016919735819101334, -0.0002952141221612692, 0.0008141643484123051, 0.0017859720392152667, -0.020711010321974754, 0.00968968216329813, 0.02277897670865059, 0.015877919271588326, 0.04505662992596626, 0.023186303675174713, 0.013997947797179222, -0.011491320095956326, -0.03034585900604725, -0.01572125405073166, 0.03932271897792816, 0.011405155062675476, -0.009995177388191223, -0.02296697348356247, -0.009540851227939129, 0.02288864180445671, 0.006039405707269907, -0.03618943318724632, -0.011115326546132565, 0.007535548880696297, -0.011585318483412266, 0.01651240885257721, 0.04505662992596626, 0.006697395350784063, -0.011459987610578537, 0.01760905794799328, -0.002322547137737274, -0.03922871872782707, 0.008553866297006607, 0.032241497188806534, -0.015384426340460777, 0.02417328953742981, -0.02785489708185196, 0.02437695302069187, 0.02132200077176094, 0.00795462541282177, 0.0007818523445166647, 0.007911543361842632, 0.009180523455142975, -0.015118096955120564, -0.005788743030279875, -0.00583965890109539, 0.029531205072999, 0.008585198782384396, 0.002246173331514001, -0.01590925082564354, 0.02194865606725216, -0.00488792359828949, 0.008240537717938423, -0.011600985191762447, 0.0006212715525180101, 0.013966615311801434, -0.017734389752149582, -0.036314766854047775, 0.03725475072860718, -0.030330192297697067, -0.020538678392767906, -0.018972037360072136, -0.03675342723727226, -0.01679440401494503, -0.0034994869492948055, -0.023969626054167747, -0.009133524261415005, -0.0027279157657176256, 0.021917324513196945, -0.00997167732566595, -0.033902138471603394, 0.019583027809858322, -0.02075800858438015, -0.005882741417735815, -0.013535788282752037, -0.007801877800375223, 0.006043322384357452, 0.024956610053777695, -0.009086525067687035, 0.013911782763898373, -0.03540611267089844, -0.018580377101898193, 0.016214746981859207, -0.010551335290074348, 0.006368400529026985, -0.033902138471603394, 0.012995297089219093, 0.010989994741976261, 0.03506145253777504, 0.04173534736037254, 0.013003130443394184, 0.006575980689376593, -0.025160273537039757, 0.03609543666243553, -0.01397444773465395, 0.007339718751609325, -0.04114002361893654, 0.01583091914653778, -0.015235595405101776, 0.033808138221502304, -0.010159674100577831, 0.0030334109906107187, -0.001575454487465322, 0.02722824178636074, -0.00696372427046299, 0.00645848223939538, -0.024126289412379265, 0.02223065309226513, 0.02445528469979763, 0.005996322724968195, -0.02390695922076702, 0.05868641659617424, 0.029390206560492516, -0.04721859470009804, 0.018517710268497467, -0.016747405752539635, 0.009423352777957916, -0.008890694007277489, -0.0019152200547978282, 0.026632916182279587, 0.013167627155780792, -0.004308266099542379, 0.02581826224923134, -0.01991202123463154, -0.0037971490528434515, -0.018862372264266014, 0.005800492595881224, 0.01360628753900528, -0.012478305026888847, -0.01945769600570202, 0.015039765276014805, -0.025160273537039757, -0.008616532199084759, -0.027275240048766136, -0.011781149543821812, 0.006325317546725273, 0.010136174969375134, 0.008162206038832664, 0.015313927084207535, 0.022575313225388527, 0.018141716718673706, -0.008295370265841484, 0.0073083858005702496, -0.010300672613084316, -0.005765242967754602, 0.02932754158973694, -0.0010310463840141892, -0.013363457284867764, -0.030941182747483253, 0.018204381689429283, 0.02317063696682453, -0.003942063543945551, -0.023671962320804596, 0.023875625804066658, -0.021823326125741005, 0.008342369459569454, 0.011240657418966293, -0.02619425766170025, -0.022653644904494286, 0.013864783570170403, 0.00797420833259821, -0.008209205232560635, -0.0398867093026638, 0.03794407472014427, -0.017186064273118973, -0.007989875040948391, 0.01264280267059803, -0.00867136474698782, 0.04809591546654701, 0.012791633605957031, 0.013551454991102219, 0.010073509067296982, -0.014209444634616375, -0.00867919810116291, -0.02620992437005043, 0.015125930309295654, 0.005686911288648844, -0.0018750748131424189, 0.0034348629415035248, -0.03609543666243553, -0.02086767368018627, 0.017875386402010918, 0.03249215707182884, 0.016543742269277573, -0.0003453956451267004, 0.017029400914907455, -0.010198840871453285, 0.023875625804066658, 0.006493731867522001, 0.00807604007422924, -0.01494576595723629, -0.0075433822348713875, 0.003094118321314454, 0.02223065309226513, -0.0024948776699602604, 0.034184131771326065, -0.015603755600750446, -0.02751023694872856, 0.03728608414530754, 0.022998306900262833, -0.0011015452910214663, 0.026554584503173828, -0.02194865606725216, -0.0003931292740162462, 0.02252831496298313, -0.003975354600697756, -0.008099540136754513, -0.01936369761824608, -0.009157023392617702, -0.017656058073043823, -0.005444081500172615, -0.020538678392767906, 0.005122920032590628, 0.009172690100967884, 0.012689801864326, -4.257013642927632e-06, 0.014256443828344345, 6.070738527341746e-05, 0.04546395689249039, 0.010567001067101955, 0.00683056004345417, 0.002827789168804884, 0.01594841666519642, -0.03239816054701805, 0.027995895594358444, 0.0026300004683434963, 0.041296686977148056, -0.01760905794799328, 0.02693057805299759, -0.00995601061731577, 0.021447330713272095, 0.020413348451256752, 0.012172809801995754, -0.007754878606647253, -0.00440226448699832, 0.017280062660574913, -0.029468540102243423, 0.004652927163988352, -0.02019401825964451, 0.023045307025313377, -0.002214840380474925, 0.03756808117032051, -0.0059101576916873455, 0.03166183829307556, 0.00641148304566741, 0.046372607350349426, -0.004210351034998894, -0.0071282219141721725, 0.01781272143125534, 0.017483726143836975, 0.028763549402356148, 0.010159674100577831, 0.011491320095956326, 0.01485176756978035, 0.0005889595486223698, 0.009752347134053707, -0.0021972155664116144, -0.011522653512656689, -0.025034941732883453, 0.026805248111486435, 0.042487334460020065, -0.007809711154550314, -0.010958662256598473, -0.017013734206557274, 0.03311881422996521, -0.014084112830460072, 0.00587882474064827, -0.034560125321149826, -0.021995656192302704, -0.04587128385901451, 0.010895996354520321, 0.00797420833259821, -0.008326702751219273, -0.008835861459374428, 0.021791992709040642, 0.023233303800225258, 0.038414064794778824, 0.019802358001470566, 0.021541329100728035, -0.009760180488228798, -0.013018796220421791, 0.00889852736145258, 0.0039381468668580055]" -How Ndustrial Is Providing Fast Real-Time Queries and Safely Storing Client Data With 97 % Compression,"who don't have that information. It’s not really a competition, but at the same time, we want to show clients that they can get value out of their data. So having all of our time-series data in a common place that we can query in a common way is going to really make that successful in the future.Advice & ResourcesMy advice is always to start with the type of data you’re storing. In the beginning, you obviously don't want to break things out too early. You never know what could shift. Wait for that next use case before you start extracting or breaking things out: you never know if you’ll end up doing it, and then you might just have more complexity on your hands for no reason.But as a whole, data is different across the board. It's okay to store it in different places that are meant to store that data. So, having a time-series database versus storing a relational database over here and maybe search indexes over here. That's okay. I mean, is your product going to be piecing those together and really leaning on the type of data I'm storing? What is the size and frequency of this data?And then selecting the right technologies specific to that data or maybe multiple technologies to handle that data. You should do that ahead of time because it gets more difficult the longer you wait to do so because it becomes the process of migrating all of that and doing it without downtime. But ultimately, that's just the best way to start: understand what you're storing and figure it out from there.Regarding resources, I think that theTimescale Docsare great. Especially dealing with other technologies and being a developer, there are many times you’ll go to the documentation for some technology, and you’ll be as confused as you were before you got there. I think Timescale has done a wonderful job with their docs and how they break it out into use cases and some examples.I also lean pretty heavily onCommunity Slack, whether or not I'm asking a question. It's just nice to monitor it and see what other people are asking. It might raise questions or give me ideas about issues we ran into in the past. And so having that as a resource",https://www.timescale.com/blog/how-ndustrial-is-providing-fast-real-time-queries-and-safely-storing-client-data-with-97-compression/,446,"[0.009251131676137447, 0.015768807381391525, 0.0519944466650486, -0.004166316241025925, 0.07201039791107178, 0.011800887994468212, -0.006212734151631594, -0.006069447845220566, -0.006852009799331427, 0.005852682050317526, 0.0333305299282074, -0.027525607496500015, 0.009941844269633293, -0.029436087235808372, 0.02320498414337635, 0.03465316817164421, 0.009251131676137447, 0.005088489968329668, -0.004000985994935036, 0.03553492948412895, 0.0035674539394676685, 0.03086159937083721, -0.004335320089012384, 0.015548367984592915, 0.0032331200782209635, -0.03465316817164421, -0.012271160259842873, 0.08594220876693726, 0.019266456365585327, 0.0012546710204333067, 0.017341280356049538, -0.027481520548462868, -0.040090687572956085, 0.030626464635133743, 0.07506716996431351, 0.035828847438097, 0.042324479669332504, -0.0005804920219816267, 0.0393264964222908, -0.0169150959700346, -0.030332544818520546, 0.019810207188129425, 0.02607070468366146, -0.020383352413773537, -0.006348671857267618, -0.03488830476999283, -0.050289712846279144, -0.054639726877212524, -0.011102828197181225, 0.034241680055856705, -0.05511000007390976, -0.02868659235537052, -0.018752096220850945, -0.0051876879297196865, 0.026364624500274658, -0.028142839670181274, -0.010103500448167324, -0.006800573784857988, -0.02220565639436245, 0.00923643633723259, 0.029524264857172966, -0.028319191187620163, 0.041766032576560974, 0.006558089982718229, 0.0005093082436360419, -0.010603164322674274, 0.004618218168616295, 0.008266500197350979, -0.05969515070319176, 0.05372857674956322, 0.032683905214071274, 0.011058740317821503, 0.003310274099931121, 0.019060712307691574, 0.004926833789795637, -0.04297110438346863, -0.02251427248120308, 0.07101107388734818, -0.005250146146863699, -0.03556431829929352, -0.009060083888471127, -0.002700390061363578, -0.014468211680650711, -0.007722747977823019, 0.006095165852457285, -0.0204127449542284, -0.030214976519346237, -1.0900012057390995e-05, -0.02393978461623192, 0.013880372047424316, -0.015533671714365482, 0.05984211340546608, -0.003178009996190667, 0.024410055950284004, 0.026761416345834732, -0.004702719859778881, 0.025218335911631584, 0.02468927949666977, 0.010309243574738503, -0.006275191903114319, -0.027510911226272583, -0.009515659883618355, -0.01872270368039608, -0.007766835857182741, 0.04561638459563255, -0.025365296751260757, 0.013358663767576218, -0.0018443480366840959, -0.047056593000888824, -0.028084056451916695, -0.1065753921866417, 0.00304023502394557, -0.020809536799788475, 0.022470183670520782, -0.03477073460817337, -0.0088322963565588, -0.050289712846279144, -0.014769479632377625, 0.016826920211315155, -0.0002541948633734137, -0.02476276084780693, 0.010463551618158817, -0.023528296500444412, 0.02997983992099762, 0.025365296751260757, -0.023675255477428436, -0.003945875912904739, -0.051289040595293045, -0.02120632864534855, -0.020545007660984993, 0.06895363330841064, -0.015372016467154026, 0.04552820697426796, -0.03385958448052406, -0.054522160440683365, -0.017870336771011353, -0.05854886397719383, -0.012836956419050694, -0.03985555097460747, -0.019178280606865883, 0.01728249527513981, -0.0199571680277586, -8.042615809245035e-05, -0.012300551868975163, 0.012102155946195126, 0.0033855910878628492, -0.06272252649068832, 0.038797441869974136, -0.03659303858876228, -0.014357992447912693, -0.0015706350095570087, -0.020853623747825623, -0.0409136638045311, 0.011859672144055367, 0.030949776992201805, 0.020060040056705475, 0.00842815637588501, 0.02767256833612919, 0.002094180090352893, -0.06719011068344116, -0.016018640249967575, 0.033359918743371964, -0.03694574534893036, 0.014380035921931267, -0.06078265607357025, 0.0009152852580882609, -0.03665182366967201, -0.05734379217028618, -0.06090022251009941, 0.021132847294211388, -0.013637888245284557, -0.03979676961898804, -0.023366639390587807, 0.006741790100932121, 0.048173487186431885, -0.028701288625597954, 0.009912451729178429, -0.055639054626226425, 0.030185583978891373, -0.03059707209467888, -0.03738662227988243, 0.0006815270171500742, -0.028275104239583015, -0.00802401639521122, -0.022220352664589882, 0.009868363849818707, -0.038915008306503296, -0.02420431189239025, -0.04106062278151512, -0.0002553430094849318, -0.03979676961898804, 0.03750419244170189, 0.014306556433439255, 0.008545723743736744, 0.03756297752261162, -0.033742014318704605, 0.01773807220160961, 0.0030292130541056395, -0.020207000896334648, 0.004588826093822718, 0.05261167883872986, 0.04782078415155411, 0.03638729453086853, 0.0009111519902944565, 0.005437519866973162, -0.008442851714789867, -0.01872270368039608, 0.018943144008517265, -0.06254617869853973, -0.04305927827954292, -0.028848247602581978, 0.016562392935156822, -0.00892782025039196, 0.02438066340982914, -0.021911736577749252, 0.002200725954025984, -0.044764015823602676, 0.0002941496204584837, -0.022749407216906548, -0.006837313994765282, 0.04887889698147774, 0.0626637414097786, 0.004827635828405619, -0.019384024664759636, 0.002544244984164834, 0.025233032181859016, 0.05355222523212433, -0.060488734394311905, 0.03556431829929352, 0.0014007125282660127, 0.04682145640254021, 0.008707379922270775, 0.017840944230556488, -0.0409136638045311, 0.04920220747590065, -0.02624705620110035, 0.010030020028352737, -0.03159639984369278, -0.008508983999490738, -0.02780483290553093, 0.005646937992423773, -0.005922487936913967, -0.0207066647708416, 0.02711411938071251, 0.02357238344848156, 0.00634499778971076, -0.030949776992201805, -0.07530230283737183, 0.004621892236173153, 0.04067852720618248, 0.04379408061504364, -0.026526279747486115, 0.019604463130235672, 0.007142256014049053, -0.025541648268699646, -0.06530902534723282, 0.013740760274231434, 0.014078767970204353, -0.012315248139202595, 0.006932837888598442, -0.01816425658762455, -0.003236793912947178, -0.021441463381052017, 0.031067343428730965, -0.028451455757021904, 0.044499486684799194, -0.06313401460647583, -0.0247039757668972, -0.01579819992184639, -0.03359505534172058, 0.0074361758306622505, 0.03688696026802063, 0.06101779267191887, -0.04958430305123329, -0.011051392182707787, -0.031008560210466385, -0.014901744201779366, 0.018693311139941216, -0.002411981113255024, -0.0021988889202475548, -0.004125901963561773, -0.05366979166865349, 0.00743250222876668, 0.015210360288619995, 0.03203728049993515, 0.009420135989785194, -0.004596174228936434, 0.05214140936732292, -0.024027960374951363, -0.038650479167699814, -0.011617188341915607, 0.0080827996134758, 0.019677944481372833, -0.009780188091099262, 0.00892782025039196, 0.00688875000923872, 0.002456068992614746, 0.0032074020709842443, -0.026408711448311806, -0.012403423897922039, -0.012212376110255718, -0.04297110438346863, 0.010485596023499966, 0.024659888818860054, 0.0159157682210207, -0.0009515659767203033, -0.0016707514878362417, 0.01647421531379223, -0.0068262917920947075, -0.012748779729008675, 0.03688696026802063, -0.016327256336808205, -0.002204400021582842, -0.027466824278235435, -0.020824231207370758, -0.014027331955730915, 0.07142256200313568, 0.007553744129836559, -0.047615040093660355, -0.05704987049102783, -0.036475472152233124, -0.04720355197787285, 0.02537999115884304, 0.001036067958921194, 0.03297782316803932, -0.028789464384317398, 0.012925132177770138, -0.021926432847976685, 0.024924416095018387, -0.047497473657131195, -0.01169066783040762, -0.033124785870313644, 0.029200952500104904, 0.0294948723167181, -0.03171396628022194, -0.05828433483839035, -0.00153205799870193, -0.007406784221529961, -0.03950284793972969, 0.0067711821757256985, -0.03321295976638794, -0.042206913232803345, -0.08094556629657745, 0.03421228751540184, -0.0008914042264223099, -0.0007958802743814886, -0.0021492899395525455, 0.002277879975736141, -0.02880416065454483, 0.011749451979994774, -0.05640324950218201, 0.007656616158783436, -0.018134864047169685, -0.005904118064790964, 0.0068262917920947075, 0.015034007839858532, -0.03197849541902542, -0.02686428837478161, -0.038650479167699814, -0.00798727571964264, -0.043647121638059616, 0.010779515840113163, 0.025526951998472214, -0.013255791738629341, -0.030773423612117767, 0.039532240480184555, -0.009677316062152386, -0.011764148250222206, 0.022631840780377388, -0.010492944158613682, 0.016341952607035637, -0.024233704432845116, -0.0088322963565588, -0.01188171561807394, -0.05414006486535072, 0.01057377178221941, 0.02301393635571003, 0.03867987170815468, -0.0045410641469061375, 0.07530230283737183, 0.03644607961177826, 0.022661231458187103, 0.009567095898091793, -0.048614367842674255, 0.043382592499256134, 0.029568351805210114, -0.026364624500274658, 0.015871679410338402, -0.06483875215053558, -0.04076670482754707, 0.035358574241399765, -0.010551728308200836, 0.002726108068600297, 0.010345984250307083, 0.017693983390927315, 0.011698015965521336, -0.027408039197325706, 0.014637215994298458, 0.03773932904005051, -0.06489753723144531, 0.06830700486898422, -0.006245799828320742, -0.06184076890349388, 0.0088322963565588, 0.00518033979460597, 0.007149604149162769, -0.03900318592786789, 0.009875711984932423, -0.008104844018816948, -0.02127980813384056, 0.006458892021328211, -0.010654600337147713, 0.04267718270421028, 0.006943860091269016, -0.02045683190226555, -0.02016291208565235, -0.0012592634884640574, 0.07154012471437454, 0.006525023840367794, 0.0016487075481563807, -0.0030751379672437906, -0.03153761476278305, -0.02463049627840519, -0.03165518492460251, -0.035917025059461594, 0.0666610598564148, 0.036357905715703964, -0.018575744703412056, -0.038650479167699814, -0.050671808421611786, -0.0025920069310814142, 0.019001927226781845, 0.034623775631189346, -0.013072092086076736, -0.01822303980588913, -0.0028932751156389713, 0.036416687071323395, -0.01822303980588913, 0.06095900759100914, -0.014967876486480236, -0.007087145932018757, 0.00942748412489891, -0.022499576210975647, 0.0398261584341526, -0.01647421531379223, -0.004732111934572458, -0.010176979936659336, -0.05081876739859581, -0.029333215206861496, -0.005566109903156757, -0.0007141337264329195, -0.013858327642083168, -0.02239670418202877, 0.027907704934477806, -0.009625880047678947, -0.01834060810506344, 0.012675300240516663, -0.012278508394956589, 0.047673825174570084, -0.005382409784942865, -0.03547614440321922, -0.0161655992269516, -0.04976065456867218, -0.002226443961262703, 0.015342623926699162, -0.0630752295255661, 0.01175680011510849, -0.0138730239123106, 0.01809077523648739, -0.026394015178084373, 0.008435503579676151, -0.009912451729178429, 0.01909010484814644, -0.016959184780716896, -0.03988494351506233, -0.00344437500461936, 0.00802401639521122, 0.01518096774816513, 0.007539047859609127, -0.0408254899084568, 0.018766792491078377, 0.0015651240246370435, -0.027760744094848633, 0.05634446442127228, 0.04044339060783386, 0.021309200674295425, -0.003067790064960718, 0.017693983390927315, 0.019310543313622475, 0.005735114216804504, -0.06195833534002304, 0.0006121802725829184, 0.026408711448311806, -0.018208343535661697, -0.019207671284675598, 0.002702227095142007, -0.045440033078193665, -0.04958430305123329, 0.005569783970713615, 0.017502935603260994, 0.04352955147624016, -0.008942515589296818, 0.020559703931212425, 0.05746135860681534, -0.00040758438990451396, 0.03491769731044769, -0.0037217619828879833, 0.005533044226467609, -0.005738787818700075, -0.02376343123614788, -0.01853165589272976, 0.010941172018647194, 0.013285184279084206, 0.026291143149137497, -0.024601103737950325, 0.006914468016475439, -0.01885496824979782, -0.0069769262336194515, -0.022720016539096832, -0.0035049959551542997, -0.047056593000888824, -0.03277207911014557, 0.0005364040262065828, -0.00032997113885357976, -0.029083384200930595, 0.011345311999320984, -0.013630540110170841, 0.013380708172917366, -0.01785564050078392, 0.01334396842867136, 0.010845648124814034, -0.0189137514680624, 0.014100812375545502, -0.02091240882873535, -0.023366639390587807, 0.023528296500444412, -0.018649224191904068, -0.03297782316803932, -0.0124989477917552, -0.004015681799501181, -0.008722076192498207, 0.03820959851145744, -0.008707379922270775, 0.02226443961262703, -0.011602492071688175, -0.004618218168616295, -0.014335948042571545, 0.0003178009937983006, -0.016062727198004723, 0.027143511921167374, 0.042647793889045715, -0.032742686569690704, 0.026173576712608337, -0.006480935961008072, 0.017150232568383217, 0.015842288732528687, 0.028657199814915657, -0.027599088847637177, 0.024395359680056572, 0.017708679661154747, -0.013718715868890285, -0.019824903458356857, 0.0001963293761946261, 0.022117480635643005, 0.019766120240092278, 0.033124785870313644, -0.016885703429579735, -0.05093633756041527, -0.031067343428730965, -0.013292532414197922, 0.0084575479850173, -0.0010608674492686987, 0.00774479191750288, 0.010728079825639725, 0.005297908093780279, -0.00522442813962698, -0.04255961626768112, -0.0196632482111454, -0.005330974236130714, 0.015842288732528687, -0.006616874132305384, 0.00942748412489891, -0.06760159879922867, 0.01063990406692028, -0.0254534725099802, -0.00544119393453002, 0.03815081715583801, 0.01878148876130581, 0.02755500003695488, -0.04244204983115196, 0.021191632375121117, -0.014593128114938736, -8.444459672318771e-05, -0.0018167929956689477, 0.029083384200930595, 0.02495380863547325, 0.001577983028255403, 0.006095165852457285, -0.01853165589272976, 0.030273759737610817, 0.01679752767086029, 0.004015681799501181, -0.016400735825300217, -0.02576208859682083, -0.035740673542022705, 0.02076544798910618, -0.022220352664589882, -0.011602492071688175, 0.02495380863547325, -0.010390072129666805, 0.013990592211484909, -0.005716743879020214, -0.006918142084032297, -0.04876132681965828, -0.018134864047169685, -0.011117524467408657, -0.021573727950453758, 0.011999283917248249, -0.0025956809986382723, -0.0024432099889963865, -0.015592455863952637, -0.013505623675882816, -0.007715399842709303, -0.028407368808984756, 0.03506465628743172, 0.02799588069319725, -0.0002285916852997616, -0.02611479163169861, -0.01477682776749134, -0.004926833789795637, -0.005882074125111103, 0.004710067994892597, 0.07212796807289124, 0.008722076192498207, -0.026217663660645485, 0.0399143360555172, 0.026952464133501053, 0.006631569936871529, 0.015621848404407501, -0.006209060084074736, 0.018634527921676636, 0.015372016467154026, -0.003352524945512414, -0.010037368163466454, 0.01822303980588913, -0.03236059099435806, 0.00874411966651678, 0.07818271964788437, -0.012836956419050694, -0.013557059690356255, -0.03097916767001152, -0.015945160761475563, 0.05519817769527435, 0.006576459854841232, 0.022631840780377388, 0.011470228433609009, -0.02582087181508541, -0.01306474395096302, -0.011433487758040428, -0.0012390564661473036, -0.0509951189160347, 0.004346341826021671, -0.03915014490485191, -0.008435503579676151, -0.010507640428841114, 0.01941341534256935, 0.03238998353481293, 0.01156575232744217, 0.023307856172323227, 0.025526951998472214, -0.06989417970180511, 0.01451964769512415, 0.014188988134264946, 0.016885703429579735, 0.021485552191734314, -0.02718760073184967, 0.02320498414337635, -0.024027960374951363, 0.011609840206801891, 0.03856230527162552, -0.02072135917842388, -0.013094136491417885, -0.013057395815849304, -0.00444553978741169, 0.006157624069601297, -0.009155607782304287, 0.019854295998811722, 0.021941127255558968, 0.04714476689696312, 0.04088427126407623, -0.0021878669504076242, -0.011653928086161613, 0.014872351661324501, -0.019545679911971092, 0.009243784472346306, 0.0008445607381872833, 0.0023550339974462986, 0.0029649180360138416, -0.028201624751091003, -0.04614543914794922, 0.0018250595312565565, -0.010823603719472885, -0.04576334357261658, -2.3378695914288983e-05, -0.030156191438436508, -0.012197679840028286, 0.013380708172917366, 0.013762803748250008, 0.03177275136113167, -0.03818020969629288, -0.037856895476579666, -0.004846006166189909, -0.02022169530391693, 0.018428783863782883, 0.004335320089012384, -0.00608047004789114, -0.0026967159938067198, 0.018076080828905106, -0.0323311984539032, 0.006425825878977776, -0.07536108791828156, -0.020074736326932907, -0.021059367805719376, -0.014593128114938736, 0.030156191438436508, -0.0013033514842391014, 0.01585698314011097, 0.00584533391520381, -0.005477934144437313, 0.004467584192752838, -0.01897253654897213, 0.034682560712099075, 0.01259447168558836, -0.008464896120131016, 0.027334559708833694, 0.0044161481782794, -0.045557599514722824, 0.02014821581542492, -0.04150150343775749, -0.0123519878834486, -0.016503607854247093, 0.006734441965818405, -0.026158880442380905, 0.00378789403475821, 0.053904928267002106, -0.0444113127887249, 0.012205027975142002, 0.03353627026081085, 0.0030273760203272104, -0.006194363813847303, -0.00536771398037672, 0.014938483946025372, -0.01958976872265339, -0.003155966056510806, 0.023851608857512474, -0.018575744703412056, -0.012543035671114922, -0.005279538221657276, -0.006319280248135328, 0.032066673040390015, 0.010632555931806564, 0.037298448383808136, -0.03659303858876228, 0.029068687930703163, 0.02158842422068119, 0.028466152027249336, -0.018076080828905106, -0.0063854120671749115, 0.008780860342085361, -0.04523428902029991, -0.010808908380568027, -0.024042656645178795, 0.025277120992541313, -0.008935168385505676, 0.03230180963873863, -0.011617188341915607, -0.007671311963349581, -0.020353959873318672, -0.01834060810506344, -0.02283758483827114, 0.0049672480672597885, -0.005514673888683319, -0.0237046480178833, -0.0043389941565692425, 0.0066242218017578125, 0.02793709561228752, -0.00044110961607657373, -0.020074736326932907, -0.027510911226272583, -0.04505793750286102, -0.02742273546755314, -0.008229760453104973, -0.0504954569041729, 0.015651240944862366, -0.010706036351621151, -0.019692640751600266, -0.017341280356049538, -0.10863283276557922, -0.03271329775452614, 0.031126128509640694, 0.008295891806483269, 0.003828308079391718, -0.026820199564099312, 0.024351272732019424, 0.026820199564099312, 0.03003862500190735, -0.029024600982666016, -0.028157535940408707, -0.037180881947278976, 0.0002792240120470524, -0.006892424076795578, -0.014659260399639606, 0.025615127757191658, 0.03065585531294346, 0.03447681665420532, 0.013086788356304169, 0.004478605929762125, -0.01075747236609459, 0.012021328322589397, -0.016077423468232155, 0.0686597153544426, 0.05546270310878754, -0.02818692848086357, -0.018693311139941216, 0.033124785870313644, 0.004823962226510048, -0.026452800258994102, 0.006514002103358507, 0.027393344789743423, 0.018502263352274895, 0.019633855670690536, -0.03147883340716362, 0.033742014318704605, -0.013858327642083168, -0.020353959873318672, 0.01290308777242899, -0.04370590299367905, -0.029509568586945534, -0.02543877623975277, 0.048614367842674255, -0.046615712344646454, 0.049290385097265244, 0.004846006166189909, 0.004596174228936434, 0.005867377854883671, 0.0019012950360774994, 0.007899099960923195, 0.024850936606526375, 0.009699360467493534, -0.013366011902689934, -0.007891751825809479, 0.0059996419586241245, 0.03397715091705322, -0.04996639862656593, -0.011499620042741299, -0.005198710132390261, 0.015136879868805408, -0.004596174228936434, -0.03859169781208038, 0.020750751718878746, -0.026849592104554176, -0.015239751897752285, 0.00015729312144685537, 0.01598924770951271, -0.009155607782304287, -0.013461535796523094, 0.021911736577749252, 0.023351944983005524, 0.02853963151574135, 0.0196632482111454, 0.00636336812749505, 0.016136208549141884, 0.045822128653526306, 0.01933993585407734, -0.012653255835175514, -0.005404454190284014, -0.026173576712608337, -0.017209015786647797, -0.030714640393853188, -0.02283758483827114, 0.03988494351506233, 0.0012271159794181585, -0.008501635864377022, 0.004625565838068724, -0.020324567332863808, 0.012388727627694607, -0.003604193916544318, 0.050848159939050674, 0.006293562240898609, -0.014931135810911655, -0.025086071342229843, -0.0041369241662323475, 0.015474888496100903, -0.002525875112041831, -0.010301896370947361, 0.014019983820617199, 0.013865675777196884, 0.03327174484729767, -0.004162642173469067, 0.022749407216906548, 0.019442807883024216, 0.004056096076965332, 0.017267800867557526, 0.007226758170872927, -0.01673874445259571, 0.017341280356049538, -0.011036695912480354, -0.013696672394871712, 0.00764926802366972, 0.013887720182538033, 0.020662575960159302, 0.006874054204672575, 0.032184239476919174, 0.018678616732358932, 0.012741431593894958, -0.019766120240092278, -0.029685920104384422, 0.02649688720703125, -0.0229551512748003, -0.020618487149477005, -0.009537704288959503, -0.021074064075946808, 0.01989838480949402, 0.022176263853907585, 0.016386039555072784, 0.011991935782134533, 0.007094494067132473, 0.023469511419534683, 0.05478668957948685, -0.020295176655054092, 0.034800127148628235, -0.003238630946725607, -0.006264170166105032, 0.010331287980079651, 0.01897253654897213, -0.00344437500461936, 0.024542320519685745, 0.022161567583680153, 0.004926833789795637, -0.024557016789913177, -0.003624401055276394, 0.004805591888725758, -0.0013805055059492588, -0.001070052501745522, 0.012991264462471008, -0.0013226399896666408, 0.027202295139431953, 0.023307856172323227, -0.02868659235537052, -0.009287872351706028, 0.06477996706962585, 0.0012638559564948082, 0.041266366839408875, -0.04323563352227211, -0.024219008162617683, 0.013814239762723446, -0.016562392935156822, 0.012058068066835403, 0.03665182366967201, 0.03477073460817337, 0.002742640906944871, 0.02443944849073887, -0.026908375322818756, 0.004552085883915424, 0.004261840134859085, -0.01026515569537878, 0.0041736639104783535, 0.011271831579506397, 0.009214391931891441, 0.011896411888301373, 0.02127980813384056, 0.046439360827207565, 0.007693355903029442, -0.005661633796989918, 0.008104844018816948, 0.010875039733946323, 0.02643810398876667, -0.013042700476944447, -0.001260182005353272, -0.013057395815849304, 0.03894440084695816, 0.03603459149599075, -0.0378275029361248, -0.031067343428730965, 0.005161969922482967, 0.012476904317736626, -0.013388056308031082, 0.045880913734436035, 0.007054079789668322, 0.003646444994956255, 0.0199130792170763, -0.018267128616571426, 0.01797320879995823, 0.05411067232489586, 0.013321924023330212, 0.02686428837478161, 0.015063400380313396, -0.06342793256044388, 0.03153761476278305, 0.025424079969525337, -0.04261840134859085, 0.016224384307861328, 0.024351272732019424, -0.018634527921676636, 0.014916440472006798, -0.0196632482111454, 0.011095480062067509, 0.010581119917333126, 0.011889063753187656, -0.0010636229999363422, -0.02208808809518814, -0.014196336269378662, 0.01154370792210102, 0.03059707209467888, 0.01263121236115694, 0.00957444403320551, -0.020559703931212425, -0.05293499305844307, -0.02449823170900345, -0.02853963151574135, 0.01128652784973383, -0.013483580201864243, 0.029994536191225052, 0.0025056679733097553, 0.015812896192073822, -0.006356019992381334, -0.0068299658596515656, -0.000664075487293303, 0.00591146619990468, 0.009295220486819744, 0.0043794079683721066, 0.04776199907064438, 0.003132085083052516, 0.03042072057723999, 0.040090687572956085, 0.007979927584528923, 0.03926771134138107, 0.02226443961262703, 0.011440835893154144, -0.0013492765137925744, -0.034300465136766434, -0.024733368307352066, -0.010316591709852219, 0.05637385696172714, 0.007094494067132473, 0.017062056809663773, -0.009214391931891441, -0.007098168134689331, 0.023293159902095795, 0.03676939383149147, 0.008259152062237263, 0.020118823274970055, -0.008993951603770256, -0.0017910749884322286, 0.014225727878510952, -0.010963216423988342, -0.010750124230980873, 0.00712388614192605, 0.004827635828405619, 0.0008638492436148226, -0.019060712307691574, -0.006980599835515022, 0.004537390079349279, -0.013005959801375866, -0.009376048110425472, 0.010500292293727398, -0.00876616407185793, -0.03826838359236717, 0.02811344899237156, 0.005191361997276545, 0.030185583978891373, -0.007072450127452612, 0.005735114216804504, -0.04317684844136238, -0.016959184780716896, 0.017693983390927315, -0.04629240185022354, -0.014269815757870674, 0.005547740031033754, -0.011727407574653625, -0.03009740822017193, 0.025717999786138535, -0.020177608355879784, -0.02718760073184967, -0.009515659883618355, 0.01598924770951271, -0.03850352019071579, -0.0059775980189442635, 0.0005896770162507892, -0.026599759235978127, 0.016871007159352303, -0.01057377178221941, 0.00824445579200983, 0.009302567690610886, 0.021632511168718338, 0.0159157682210207, -0.018193647265434265, -0.007120212074369192, -0.026100095361471176, 0.0031927060335874557, 0.002028048038482666, -0.016312560066580772, 0.0017267799703404307, 0.007994623854756355, -0.01237403228878975, -0.020265784114599228, 0.006205386016517878, 0.009243784472346306, 0.010096152313053608, 0.019575072452425957, -0.0036390970926731825, 0.0018250595312565565, -0.0025993550661951303, -0.008222412317991257, 5.1235077989986166e-05, 0.017179623246192932, 0.013314575888216496, 0.027569696307182312, 0.007248802110552788, 0.02661445550620556, 0.03885622322559357, -0.02924503944814205, -0.020633183419704437, 0.015695327892899513, 0.010257807560265064, -0.033066000789403915, 0.012102155946195126, -0.023102112114429474, -0.02339603193104267, -0.016768135130405426, 0.03838595375418663, -0.03900318592786789, -0.005540391895920038, -0.0067895520478487015, -0.011301224119961262, 0.00503705395385623, 0.012403423897922039, 0.03794507309794426, -0.021603120490908623, 0.012116852216422558, -0.006054752040654421, -0.00150817702524364, -0.008141583763062954, 0.02543877623975277, 0.051906272768974304, -0.025394687429070473, 0.007921144366264343, 0.07606649398803711, 0.011176307685673237, -0.0034958110190927982, -0.015504280105233192, 0.024645192548632622, -0.0018425110029056668, -0.004912137985229492, 0.006855683866888285, 0.0016854475252330303, 0.0031431070528924465, -0.016518304124474525, 0.005448542069643736, -0.026599759235978127, 0.020750751718878746, -0.014644564129412174, -0.0284955445677042, -0.0007145929848775268, 0.012263812124729156, 0.016092119738459587, -0.009603835642337799, 0.04250083118677139, 0.010426811873912811, -0.006554415915161371, -0.016577087342739105, 0.00401200819760561, -0.008663292042911053, 0.008339979685842991, -0.0207066647708416, -0.010110847651958466, 0.01916358433663845, -0.0013410099782049656, -0.017649896442890167, -0.015357320196926594, 0.012770824134349823, -0.009780188091099262, -0.0009478920255787671, -0.037856895476579666, -0.010823603719472885, 0.02426309697329998, 0.005327300168573856, -0.009185000322759151, -0.020015951246023178, 0.0005313522415235639, 0.015092791989445686, -0.008442851714789867, 0.048055920749902725, -0.0036317489575594664, 0.000397480878746137, 0.009963887743651867, -0.040090687572956085, -0.018252432346343994, 0.0038430041167885065, 0.0025626150891184807, 0.014593128114938736, -0.025041984394192696, -0.014497604221105576, 0.0499957911670208, 0.013762803748250008, 0.0008863524999469519, 0.03812142461538315, -0.028157535940408707, 0.0054889558814466, -0.025703303515911102, 0.009060083888471127, -0.03503526374697685, -0.043941039592027664, 0.029392000287771225, 0.0033892649225890636, 0.007862360216677189, -0.0459103025496006, 0.0005974842351861298, 0.03136126324534416, 0.000810116995126009, 0.0073957620188593864, 0.03538796678185463, 0.020545007660984993, 0.005683678202331066, 0.019795512780547142, 0.026540976017713547, -0.03750419244170189, -0.0013263140572234988, 0.010323939844965935, -0.036475472152233124, 0.03606398403644562, 0.001375913037918508, -0.01526914443820715, -0.009611183777451515, 0.006091491784900427, 0.016885703429579735, 0.015651240944862366, 0.012609167955815792, -0.0017139209667220712, 0.025203639641404152, 0.0003648741403594613, -0.014438820071518421, -0.012396075762808323, -0.030567679554224014, -0.019604463130235672, 0.005011335946619511, -0.003018191084265709, 0.03197849541902542, 0.05343465507030487, -0.019325239583849907, 0.029465479776263237, 0.0015430799685418606, -0.034623775631189346, 0.013241096399724483, -0.01044885627925396, -0.01468130387365818, 0.003650119062513113, -0.03594641759991646, -0.0025993550661951303, 0.012102155946195126, -0.005698374006897211, 0.00041447312105447054, 0.058137375861406326, -0.01953098364174366, -0.012814912013709545, -0.016959184780716896, -0.01461517158895731, 0.019633855670690536, 0.005073794163763523, -0.018987232819199562, -0.016003943979740143, -0.00886168796569109, 0.009706707671284676, 0.011102828197181225, -0.047615040093660355, -0.008780860342085361, -0.022176263853907585, 0.015136879868805408, -0.007678660098463297, 0.04993700981140137, 0.0109779117628932, 0.009567095898091793, 0.020001256838440895, -2.1168554667383432e-05, -0.011021999642252922, 0.03241937607526779, -0.02823101542890072, -0.046615712344646454, 0.041148800402879715, -0.01922236755490303, -0.0008261907496489584, 0.03621094301342964, 0.017135536298155785, 0.02724638395011425, 0.020001256838440895, 0.03059707209467888, 0.0007256150129251182, 0.001690039993263781, 0.017062056809663773, 0.053904928267002106, 0.02543877623975277, 0.008435503579676151, -0.02127980813384056, 0.04017886519432068, -0.006003316026180983, 0.007447198033332825, -0.015592455863952637, 0.020927103236317635, -0.0045814779587090015, -0.009471572004258633, -0.011639231815934181, 0.012954523786902428, -0.014784175902605057, 0.009015996009111404, 0.0004188359889667481, -0.02201460860669613, 0.024395359680056572, -0.0017883195541799068, -0.007884403690695763, 0.0070136659778654575, 0.009890408255159855, 0.03818020969629288, 0.0043573640286922455, -0.02264653518795967, 0.00955239962786436, 0.00010040352935902774, -0.014416775666177273, -0.011066088452935219, 0.017311887815594673, 0.011705364100635052, 0.04161907359957695, 0.01044885627925396, 0.036798782646656036, -0.030332544818520546, -0.023557687178254128, 0.008369372226297855, 0.00037359987618401647, 0.005602850113064051, -0.01306474395096302, 0.006859357934445143, 0.02662915177643299, -0.003069627098739147, 0.040090687572956085, -0.012638560496270657, 0.017400063574314117, -0.04882011190056801, -0.011389399878680706, -0.006113536190241575, -0.019868992269039154, -0.021426768973469734, -0.002143779071047902, -0.013476232066750526, 0.008508983999490738, -0.015607152134180069, 0.027569696307182312, 0.029406696557998657, 0.005657960195094347, 0.01057377178221941, -0.006914468016475439, -0.01593046449124813, 0.0018434295197948813, 0.01489439606666565, 0.009787536226212978, -0.007906448096036911, 0.04981943964958191, 0.013667279854416847, -0.016533000394701958, 0.021485552191734314, -0.013645236380398273, 0.008479592390358448, -0.06583808362483978, 0.0047651780769228935, 0.012991264462471008, -0.00486805010586977, -0.021059367805719376, 0.025673912838101387, -0.019545679911971092, 0.00774479191750288, -0.02868659235537052, -0.0028546981047838926, 0.02420431189239025, -2.3550914193037897e-05, -0.00174606847576797, -0.015474888496100903, -0.025776784867048264, 0.029215648770332336, -0.020809536799788475, -0.000917122233659029, 0.0007687844918109477, 0.020618487149477005, 0.013755455613136292, 0.009317263960838318, -0.007686008233577013, 0.0059996419586241245, 0.032448768615722656, 0.021309200674295425, 0.00598494615405798, -0.004816614091396332, -0.003710740013048053, 0.002182356081902981, -0.009743448346853256, -0.0021952150855213404, 0.019795512780547142, 0.013689324259757996, -0.02183825522661209, 0.007517003919929266, 0.02201460860669613, -0.009221740067005157, 0.0005607442581094801, 0.025409383699297905, -0.009376048110425472, 0.0019215020583942533, 0.018825575709342957, 0.02207339182496071, -0.02122102491557598, -0.04626300930976868, 0.04297110438346863, 0.008046059869229794, 0.018134864047169685, 0.03553492948412895, -0.021676599979400635, -0.02083892747759819, -0.002274205908179283, 0.002724271034821868, 0.02308741584420204, 0.0408254899084568, -0.011492271907627583, -0.03159639984369278, -0.011639231815934181, -0.014967876486480236, -0.002434025052934885, -0.002606702968478203, -0.00914091244339943, -0.01785564050078392, 0.0020868319552391768, 0.019486896693706512, 0.016341952607035637, 0.023983871564269066, 0.04117819294333458, -0.023528296500444412, 0.029568351805210114, -0.016077423468232155, -0.004603521898388863, 0.01075747236609459, 0.031390655785799026, -0.011426139622926712, -0.004394104238599539, 0.02351360023021698, -0.028392672538757324, 0.00710551580414176, -0.0244541447609663, 0.04626300930976868, 0.018399391323328018, -0.020559703931212425, 0.023719344288110733, -0.0061980378814041615, 0.006286214105784893, 0.048055920749902725, -0.005646937992423773, 0.003898113965988159, -0.01958976872265339, -0.0017451499588787556, 0.010941172018647194, 0.0015366504667326808, 0.03385958448052406, 0.0013309065252542496, 0.02911277674138546, 0.011896411888301373, 0.007120212074369192, 0.01573941670358181, 0.0017910749884322286, 0.020824231207370758, 0.015504280105233192, -0.004111206158995628, -0.02580617554485798, 0.003675837069749832, -0.014255120418965816, 0.05628567934036255, -0.0013327435590326786, 0.011712712235748768, -0.017444152384996414, 0.05646203085780144, 0.01579819992184639, 0.01679752767086029, 0.02637932077050209, 0.013079440221190453, 0.0053530181758105755, -0.017194319516420364, 0.020486224442720413, 0.004125901963561773, -0.006785877980291843, -0.02848084829747677, 0.042765360325574875, 0.004474931862205267, 0.010412115603685379, -0.026820199564099312, 0.011551056057214737, 0.006150275934487581, 0.050113361328840256, -0.01047824788838625, 0.0002792240120470524, -0.0055734580382704735, 0.0031008559744805098, 0.017326584085822105, 0.005378736183047295, -0.0052060578018426895, 0.02649688720703125, 0.011977240443229675, 0.005683678202331066, -0.012932480312883854, -0.0010057574836537242, -0.025541648268699646, -0.004350015893578529, 0.008700031787157059, -0.029156863689422607, -0.018252432346343994, -0.019545679911971092, 0.0054118018597364426, 0.03926771134138107, 0.029935752972960472, -0.012278508394956589, -0.005147274117916822, -0.061370495706796646, 0.016533000394701958, 0.01585698314011097, -0.016386039555072784, 0.006760159973055124, 0.041207585483789444, -0.00905273575335741, 0.03388897702097893, 0.019016623497009277, 0.03365384042263031, -0.0067895520478487015, 0.003446212038397789, 0.01847287267446518, 0.012807563878595829]" -How Ndustrial Is Providing Fast Real-Time Queries and Safely Storing Client Data With 97 % Compression,"as well, or knowing that if I have an issue, I can ask and get pretty quick and immediate feedback. It's really great.Between the Docs and the Community, it shouldn’t be difficult to get up with what you need to meet your system’s needs.Want more insider tips?Sign up for our newsletterfor more Developer Q&As, technical articles, and tutorials to help you do more with your data. We deliver it straight to your inbox twice a month.We’d like to thank Michael and the folks at Ndustrial for sharing their story on how they speeded up their client-facing dashboards, even for real-time queries, while carefully storing all their customers’ data by making the most of TimescaleDB’s compression powers.We’re always keen to feature new community projects and stories on our blog. If you have a story or project you’d like to share, reach out on Slack (@Ana Tavares), and we’ll go from there.The open-source relational database for time-series and analytics.Try Timescale for free",https://www.timescale.com/blog/how-ndustrial-is-providing-fast-real-time-queries-and-safely-storing-client-data-with-97-compression/,207,"[-0.0077562783844769, -0.0055579557083547115, 0.033127546310424805, 0.03261614590883255, 0.0681302398443222, 0.004098326433449984, -0.018808264285326004, 0.030542122200131416, -0.0069074914790689945, -0.0085873082280159, 0.007450857199728489, -0.02548491396009922, 0.002008322160691023, -0.005234777461737394, 0.0464240238070488, 0.02397911623120308, 0.0002663557243067771, -0.018069570884108543, -0.0019923406653106213, 0.039520084857940674, 0.021024344488978386, 0.03511633723974228, 0.015711436048150063, 0.028780622407794, -0.03258773311972618, -0.05264609307050705, -0.057845357805490494, 0.033099137246608734, 0.03201950713992119, -0.08006297796964645, 0.007791792508214712, -0.04446364566683769, -0.029831839725375175, 0.029775017872452736, 0.050628893077373505, 0.040912237018346786, 0.03105352446436882, -0.0012509840307757258, 0.04148046299815178, -0.00274701532907784, -0.018936116248369217, 0.024902483448386192, 0.01953275129199028, 0.020726025104522705, 0.004805056843906641, -0.054578062146902084, -0.062447983771562576, -0.03613914176821709, 0.023268835619091988, 0.03170698508620262, -0.02424902468919754, 0.007315903436392546, -0.03329801559448242, -0.0336957722902298, 0.0423043891787529, -0.034746989607810974, 0.005817208904772997, 0.02630884200334549, 0.023382479324936867, -0.011364510282874107, 0.004094775300472975, -0.06278891861438751, 0.014560778625309467, 0.044179532676935196, -0.011776474304497242, -0.045798975974321365, 0.02103854902088642, 0.009468058124184608, -0.037019893527030945, 0.008083008229732513, 0.04471934959292412, 0.003364960430189967, -0.006019638851284981, -0.022288646548986435, 0.01350956130772829, -0.06443677097558975, -0.024817248806357384, 0.04852645844221115, 0.0005278282333165407, -0.028297631070017815, 0.0009349085739813745, -0.004361130762845278, -0.03238885477185249, 0.014283768832683563, -0.010867312550544739, -0.0368778370320797, -0.029973896220326424, 0.016421716660261154, -0.00791253987699747, 0.00842394307255745, -0.045827388763427734, 0.05824311450123787, 0.026124168187379837, 0.04625355824828148, 0.0113716134801507, 0.04872533679008484, -0.007212912663817406, 0.03792905434966087, -0.011627314612269402, 0.035428859293460846, 0.016634801402688026, -0.01838209480047226, -0.01723143830895424, -0.033781006932258606, 0.030684178695082664, -0.017714429646730423, 0.028212396427989006, -0.035400450229644775, 0.025669587776064873, 0.008530485443770885, -0.0737556740641594, -0.034576524049043655, -0.02074023149907589, -0.02537127025425434, -0.03156492859125137, 0.0055046845227479935, -0.03244567662477493, -0.033979885280132294, 0.002214303705841303, -0.000538926396984607, -0.045685332268476486, 0.010540583170950413, -0.02937725931406021, 0.034548111259937286, 0.005483376327902079, -0.04383859783411026, -0.028539126738905907, -0.04767411947250366, -0.04003148898482323, -0.0027434637304395437, 0.05815787985920906, -0.02696230076253414, 0.03758811950683594, -0.025229213759303093, -0.031451281160116196, 0.0060835643671453, -0.027644172310829163, -0.04631038010120392, 0.01956116408109665, -0.03684942424297333, 0.015782464295625687, -0.02757314406335354, -0.0027168281376361847, -0.019433312118053436, 0.012287876568734646, -0.0013193485792726278, -0.013601898215711117, 0.0034022503532469273, -0.037048302590847015, -0.023879677057266235, -0.024177996441721916, -0.025087157264351845, -0.06500499695539474, -0.0026671085506677628, 0.028681183233857155, 0.03505951538681984, 0.05202104523777962, 0.01723143830895424, 0.0055650584399700165, -0.031508106738328934, 0.017131999135017395, 0.04221915453672409, -0.03727559372782707, -0.0009659833740442991, -0.04869692772626877, 0.022913694381713867, -0.03429241105914116, -0.03662213310599327, -0.07352837920188904, 0.011584697291254997, -0.04795823246240616, -0.04130999371409416, -0.012465447187423706, 0.03329801559448242, 0.05955003574490547, -0.02504453994333744, 0.05227674916386604, -0.04704907163977623, -0.013367505744099617, -0.00252327648922801, -0.060118257999420166, -0.027999311685562134, -0.0005713329883292317, 0.02518659643828869, -0.017572375014424324, 0.006580761633813381, -0.06960762292146683, -0.009659834206104279, -0.001825424493290484, 0.03639484569430351, -0.054634883999824524, 0.05310067534446716, -0.007933848537504673, -0.014617601409554482, 0.017984338104724884, -0.04690701514482498, 0.0246609877794981, 0.0035656150430440903, -0.03986101970076561, -0.0005415899213403463, 0.03579820692539215, 0.013587692752480507, 0.033155959099531174, 0.00031429974478669465, 0.017870692536234856, 0.005373282358050346, -0.01994471624493599, 0.020342472940683365, -0.06608463078737259, -0.04872533679008484, -0.010149928741157055, 0.01873723603785038, 0.008963757194578648, 0.012884513475000858, -0.04196345433592796, -0.017487140372395515, -0.041054293513298035, 0.006470668129622936, -0.01997312717139721, -0.030883057042956352, 0.0031589786522090435, 0.0404292456805706, 0.007983568124473095, -0.041736163198947906, -0.0028091648127883673, 0.05207786709070206, 0.03264455497264862, -0.0368778370320797, 0.021692009642720222, 0.024930894374847412, 0.04474775865674019, -0.025229213759303093, 0.0069572110660374165, -0.01752975769340992, 0.04150887578725815, -0.0032033713068813086, 0.024348463863134384, -0.018083777278661728, 0.014539469964802265, -0.02424902468919754, 0.012231054715812206, -0.011364510282874107, 0.00951777771115303, 0.009922638535499573, 0.006470668129622936, 0.022203411906957626, -0.0359402634203434, -0.0700053870677948, 0.00587758282199502, 0.0477309450507164, -0.0052489833906292915, -0.01670582965016365, 0.018595179542899132, -0.04849804937839508, -0.017785457894206047, -0.05179375410079956, -0.00818955060094595, 0.0232120119035244, 0.01782807521522045, -0.005096272565424442, 0.036366432905197144, -0.04011671990156174, -0.011094603687524796, 0.010774976573884487, -0.014411619864404202, 0.012067689560353756, 0.010583200491964817, -0.013005261309444904, 0.009773478843271732, 0.014091992750763893, 0.032332032918930054, 0.019987331703305244, 0.026735011488199234, -0.04290102794766426, -0.025825850665569305, -0.039378028362989426, -0.016577979549765587, -0.010561891831457615, -0.0006672210292890668, -0.026351457461714745, -0.00637833122164011, -0.03934961557388306, -0.020370883867144585, 0.0051957122050225735, 0.018097981810569763, -0.013836291618645191, -0.008146933279931545, 0.008473662659525871, 0.007138333283364773, -0.05517469719052315, -0.034690167754888535, 0.020228829234838486, 0.025385474786162376, -0.004929356276988983, 0.002267574891448021, -0.006268237717449665, -0.0007755390251986682, -0.005096272565424442, -0.012770868837833405, -0.006360574159771204, 0.020129388198256493, -0.03809951990842819, 0.013573487289249897, -0.009659834206104279, 0.0031341188587248325, 0.02156415767967701, -0.0017197700217366219, 0.014020964503288269, 0.00378935388289392, -0.006051601842045784, 0.010306190699338913, -0.00973796471953392, 0.011307687498629093, 0.013985450379550457, -0.01659218594431877, -0.03281502425670624, 0.06608463078737259, -0.0324740894138813, -0.017316672950983047, -0.05332796648144722, -0.03582661971449852, -0.050628893077373505, 0.00486898235976696, -0.02186247706413269, -0.002182341180741787, -0.03264455497264862, 0.037076715379953384, -0.014844891615211964, 0.044321589171886444, -0.03838363289833069, 0.010888621211051941, -0.04557168483734131, 0.016691625118255615, 0.007884128950536251, -0.022700609639286995, -0.03738923743367195, 0.003347203368321061, -0.02156415767967701, -0.04392383247613907, 0.025527531281113625, -0.011471052654087543, -0.020172005519270897, -0.09972357749938965, 0.00044215048546902835, 0.04540121927857399, -0.013985450379550457, 0.00023661265731789172, -0.005209917668253183, 0.0037076715379953384, 0.009304692968726158, -0.06477770954370499, -0.012117409147322178, -0.013239654712378979, 0.006239826325327158, -0.002564117545261979, 0.03400829806923866, -0.025797437876462936, -0.044861406087875366, -0.03187745064496994, -0.01906396634876728, -0.02672080509364605, 0.0016389754600822926, 0.0365937240421772, -0.01632227748632431, -0.01599554903805256, 0.00975217018276453, -0.020342472940683365, -0.013587692752480507, -0.0007981793023645878, -0.004762439988553524, 0.021706214174628258, -0.016137605533003807, -0.003043557982891798, -0.0025960803031921387, -0.0779605433344841, 0.007528988178819418, 0.036167554557323456, 0.017955927178263664, 0.015469939447939396, 0.044094301760196686, 0.041054293513298035, 0.01862359046936035, 0.00879328977316618, 0.002548136282712221, 0.051225531846284866, 0.03815634176135063, -0.006463565398007631, -0.0069927251897752285, -0.02960454858839512, -0.008786187507212162, 0.0257832333445549, -0.019689014181494713, -0.005305805709213018, -0.007436651270836592, 0.005763937719166279, 0.024504724889993668, -0.02581164427101612, 0.03250249847769737, 0.04406588897109032, -0.03184904158115387, 0.01997312717139721, -0.0023243974428623915, -0.026706598699092865, -0.017842281609773636, 0.007955157198011875, 0.010874415747821331, -0.04832758009433746, 0.006669546943157911, -0.0035478579811751842, -0.04167934134602547, -0.018907703459262848, -0.016989942640066147, 0.0407133586704731, -0.009489365853369236, -0.002956548472866416, -0.04395224526524544, -0.028041929006576538, 0.05665208399295807, 0.011854604817926884, 0.037076715379953384, -0.0273742638528347, 0.0009233664604835212, -0.025527531281113625, -0.0008621046436019242, -0.02362397499382496, 0.05869769677519798, 0.034633345901966095, 0.0035940264351665974, -0.03824157640337944, -0.060175083577632904, -0.021521542221307755, 0.003753839759156108, 0.030911467969417572, -0.027218002825975418, 0.0066908556036651134, 2.1904983441345394e-05, 0.013566384091973305, -0.007798895239830017, 0.0686984658241272, 0.00040530459955334663, -0.024533135816454887, -0.017870692536234856, -0.027317441999912262, -0.003008043859153986, -0.010178339667618275, -0.0071489871479570866, -0.04633878916501999, -0.016933120787143707, -0.029888661578297615, -0.012252362444996834, 0.031451281160116196, -0.02861015498638153, -0.017629196867346764, 0.0176434013992548, -0.05207786709070206, -0.028780622407794, 0.007550296373665333, 0.0068648746237158775, 0.015057976357638836, -0.002954772673547268, -0.053754132241010666, 0.015739846974611282, -0.0543791837990284, 0.008857214823365211, -0.006371228490024805, -0.08409737795591354, -0.010157031007111073, 0.018566768616437912, 0.03292866796255112, -0.004528047051280737, -0.011911427602171898, 0.04963449761271477, -0.024462109431624413, 0.0113716134801507, -0.05267450585961342, -0.013850497081875801, 0.011101705953478813, 0.009020579978823662, 0.013694235123693943, -0.019546957686543465, 0.003173184348270297, 0.003711222903802991, -0.02869538776576519, 0.07761960476636887, 0.03559932857751846, 0.033837828785181046, 0.007948054000735283, -0.020342472940683365, 0.007152538746595383, -0.0053945910185575485, -0.008977963589131832, 0.004265242721885443, 0.07176688313484192, -0.016933120787143707, -0.012777971103787422, 0.02285687066614628, -0.060175083577632904, -0.044832993298769, -0.009375721216201782, -0.024348463863134384, -0.013410122133791447, 0.011925633065402508, -0.0001128127405536361, 0.06807341426610947, -0.009397029876708984, 0.020015744492411613, -0.02575482241809368, -0.0024646781384944916, 0.01956116408109665, -0.03986101970076561, -0.009404132142663002, 0.012678531929850578, 0.033042315393686295, 0.016279660165309906, -0.025286035612225533, 0.004631037823855877, -0.008949551731348038, -0.015711436048150063, -0.011350304819643497, -0.026237813755869865, -0.022515935823321342, -0.012145820073783398, -0.006772537715733051, -0.008473662659525871, -0.008885626681149006, -0.004350476432591677, -0.05244721472263336, 0.0012900495203211904, -0.009411235339939594, 0.017984338104724884, 0.01475965790450573, -0.04037242382764816, 0.012593298219144344, 0.0007329221116378903, -0.04528757557272911, 0.02071182057261467, -0.009468058124184608, -0.03338325023651123, -0.02333986386656761, 0.02041350118815899, 0.009816096164286137, 0.04244644567370415, 0.02592528983950615, 0.03329801559448242, -0.01517162099480629, -0.01679106429219246, -0.0359402634203434, -0.010377218946814537, 0.005106926895678043, 0.02946249395608902, 0.02554173767566681, -0.025555942207574844, 0.028780622407794, 0.0029778569005429745, 0.024078555405139923, -0.004496084526181221, -0.002232060767710209, -0.00293879141099751, 0.011641520075500011, 0.014873302541673183, -0.025882672518491745, -0.01635068841278553, 0.0033685117959976196, 0.020228829234838486, -0.03207632899284363, 0.03321278095245361, -0.003853279398754239, -0.03571297228336334, -0.04682178422808647, 0.021905094385147095, 0.024320052936673164, 0.042560089379549026, -0.02147892490029335, -0.005806554574519396, 0.013566384091973305, -0.013232551515102386, -0.06534593552350998, -0.029860250651836395, 0.008004876784980297, 0.017813870683312416, -0.022530142217874527, -0.007234221324324608, -0.03241726756095886, 0.04290102794766426, -0.025286035612225533, 0.018666207790374756, 0.04406588897109032, 0.009425440803170204, 0.03329801559448242, -0.0365937240421772, 0.002729258267208934, -0.007685250137001276, 5.5074593547033146e-05, 0.010434040799736977, 0.017373494803905487, 0.005969919264316559, 0.008523383177816868, 0.008850112557411194, 0.012515166774392128, 0.035343628376722336, 0.024177996441721916, 0.01156338956207037, -0.009645627811551094, -0.04514551907777786, -0.000503856223076582, 0.023084161803126335, -0.004932907875627279, 0.02869538776576519, 0.009297589771449566, -0.011279276572167873, 0.007394034415483475, -0.007081510499119759, 0.004872533958405256, -0.07267604023218155, -0.012749560177326202, 0.006232723593711853, 0.018694618716835976, -0.0032211283687502146, 0.029661372303962708, -0.0010094881290569901, -0.033099137246608734, -0.027772022411227226, -0.007351417560130358, -0.036963071674108505, 0.026521926745772362, 0.024859866127371788, -0.010000769048929214, -0.03258773311972618, -0.02194770984351635, -0.0018005645833909512, 0.025726409628987312, 0.0053697312250733376, 0.03903709352016449, 0.03014436364173889, 0.004726925864815712, 0.04471934959292412, 0.0028961743228137493, 0.023794444277882576, 0.019333872944116592, -0.02598211169242859, 0.022203411906957626, 0.005937956739217043, -0.020370883867144585, 0.004233280196785927, 0.02103854902088642, -0.034746989607810974, -0.02074023149907589, 0.03162175044417381, -0.013381711207330227, -0.011712548322975636, -0.018183216452598572, -0.032985489815473557, 0.04352607578039169, 0.020882287994027138, 0.007102819159626961, -0.006222069263458252, -0.012557784095406532, -0.026180990040302277, -0.001304255099967122, 0.011826193891465664, -0.03895185887813568, -0.0019248639000579715, -0.025499120354652405, -0.009105813689529896, -0.061652470380067825, 0.020726025104522705, 0.011456847190856934, 0.0068897344172000885, 0.015569379553198814, 0.047390006482601166, -0.030627354979515076, 0.02619519643485546, 0.03412194177508354, 0.021763037890195847, 0.03531521558761597, -0.006087115965783596, 0.0005553516675718129, -0.03579820692539215, 0.02351033128798008, 0.03804269805550575, -0.01629386655986309, -0.005820760037750006, -0.01552676223218441, 0.018481535837054253, 0.005483376327902079, -0.017217233777046204, 0.007422445807605982, 0.031508106738328934, 0.031536515802145004, 0.01821162737905979, 0.006371228490024805, -0.0020562661811709404, 0.027218002825975418, -0.033724185079336166, 0.0005953049985691905, -0.03338325023651123, 0.01591031439602375, 0.01950434036552906, 0.0033720633946359158, -0.04284420236945152, -0.00626113498583436, -0.0034892598632723093, -0.04318514093756676, -0.024376874789595604, -0.008068802766501904, -0.011186939664185047, 0.01215292327105999, -0.023695003241300583, 0.05412347987294197, -0.008857214823365211, -0.032360441982746124, 0.008146933279931545, -0.01785648614168167, 0.01327516883611679, 0.0052916002459824085, -0.019319668412208557, -0.02218920737504959, 0.02710435725748539, -0.010014974512159824, 0.01593872532248497, -0.03721877187490463, -0.0009428992052562535, -0.026621365919709206, -0.022700609639286995, 0.030428476631641388, 0.00026036272174678743, 0.025300242006778717, 0.017245644703507423, -0.00877908430993557, 0.005344871431589127, -0.0005953049985691905, 0.013090495020151138, 0.007614221889525652, -0.014574984088540077, 0.013736851513385773, -0.013218346051871777, 0.0026493514887988567, 0.0013939281925559044, -0.058413583785295486, -0.010320396162569523, -0.013758160173892975, 0.017742842435836792, -0.028112957254052162, 0.007635530550032854, 0.02501612901687622, -0.06199340522289276, 0.009951049461960793, 0.04392383247613907, 0.01838209480047226, 0.009333103895187378, 0.006651789881289005, 0.013523767702281475, -0.0039314101450145245, -0.0016221062978729606, -0.006303751841187477, -0.02424902468919754, -0.013076289556920528, -0.009098711423575878, 0.021194811910390854, 0.00843814853578806, 0.011655725538730621, 0.03128081560134888, -0.03497428074479103, 0.014425825327634811, -0.004048606846481562, 0.031394459307193756, -0.016066577285528183, -0.0014791620196774602, -0.004730477463454008, -0.05864087492227554, 0.01515741553157568, -0.021237429231405258, 0.004304308444261551, -0.0018112187972292304, 0.06636874377727509, -0.025641176849603653, -0.028070339933037758, 0.0009491142118349671, 0.009411235339939594, -0.024078555405139923, -0.009780582040548325, 1.6342031813110225e-05, -0.011115911416709423, -0.045884210616350174, 0.013268065638840199, 0.008331607095897198, -0.022075561806559563, -0.03486063703894615, -0.02883744426071644, -0.020910698920488358, -0.016549568623304367, -0.00674767792224884, -0.00875067338347435, 0.022061355412006378, 0.013601898215711117, -0.009780582040548325, 0.001651405356824398, -0.07540352642536163, -0.02787146158516407, 0.007202258333563805, -0.015285266563296318, -0.009318898431956768, -0.010363012552261353, 0.039378028362989426, 0.02419220097362995, 0.03736082836985588, -0.026820244267582893, 0.004247485660016537, -0.03255932033061981, -0.030513709411025047, -0.0022196308709681034, -0.007933848537504673, 0.025200800970196724, 0.01474545244127512, 0.005550852976739407, 0.03258773311972618, 0.038667745888233185, -0.025385474786162376, -0.027558937668800354, -0.013601898215711117, 0.037730176001787186, 0.029945485293865204, -0.04787300154566765, -0.025300242006778717, 0.0302295982837677, 0.02680603787302971, -0.01308339275419712, 0.025797437876462936, 0.01626545563340187, 0.006143938284367323, 0.024291640147566795, 0.0003502577601466328, 0.03128081560134888, 0.0070602018386125565, -0.012820588424801826, -0.014084889553487301, -0.010739462450146675, -0.024902483448386192, -0.027218002825975418, 0.02554173767566681, -0.03258773311972618, 0.02295631170272827, -0.019106583669781685, -0.005881133954972029, -0.002244490897282958, 0.002162808319553733, -0.01643592305481434, 0.02460416406393051, 0.029973896220326424, -0.01956116408109665, -0.001912434003315866, 0.000782197923399508, -0.0020615931134670973, -0.039520084857940674, 0.0030648664105683565, 0.00011852828902192414, -0.004687860608100891, -0.013474047183990479, -0.030002307146787643, -0.0027612207923084497, -0.027445292100310326, -0.0014090216718614101, -0.00013939282507635653, 0.014901714399456978, 0.015001153573393822, -0.010959649458527565, 0.015810875222086906, 0.03193427249789238, 0.05631114915013313, 0.011939838528633118, -0.02230285108089447, 0.04756047576665878, 0.004492532927542925, 0.01274245698004961, -0.033894650638103485, 0.004950664937496185, -0.01069684512913227, -0.010703948326408863, 0.008267681114375591, -0.03187745064496994, 0.034548111259937286, -6.36479162494652e-05, -0.03758811950683594, 0.0068897344172000885, 0.010945443995296955, 0.009077402763068676, 0.0015182275092229247, 0.044179532676935196, -0.017188820987939835, -0.032275211066007614, 0.019277051091194153, 0.027729405090212822, 0.03037165477871895, -0.01250806450843811, -0.004652346484363079, 0.015427323058247566, -0.01480227429419756, 0.03602549806237221, -0.010803387500345707, 0.04057130217552185, 0.018921909853816032, 0.02960454858839512, -0.0014622928574681282, -0.003075520507991314, -0.01215292327105999, 0.01162021141499281, 0.03432082012295723, -0.013957039453089237, 5.748843977926299e-05, 0.03440605476498604, 0.004378887824714184, -0.007628427352756262, 0.024177996441721916, -0.0008199316798709333, -0.007600016426295042, 0.007571605034172535, -0.03184904158115387, 0.04690701514482498, -0.019760042428970337, -0.01512900460511446, 0.024831455200910568, 0.015001153573393822, 0.01752975769340992, 0.05656684935092926, 0.009183945134282112, 0.01826845109462738, -0.0035851479042321444, 0.005167300812900066, 0.05653844028711319, 0.0036472976207733154, 0.023993322625756264, 0.010277778841555119, -0.031337637454271317, 0.019134994596242905, 0.010554788634181023, -0.017302466556429863, 0.032985489815473557, -0.0108104906976223, 0.007457959931343794, -0.011236659251153469, -0.018566768616437912, 0.033155959099531174, -0.008544690907001495, -0.0032317826990038157, 0.022814255207777023, 0.004535149782896042, 0.03505951538681984, 0.0202146228402853, -0.019689014181494713, -0.028851650655269623, 0.08443830907344818, 0.011485258117318153, 0.05835676193237305, -0.04057130217552185, -0.04395224526524544, -0.027800433337688446, -0.009645627811551094, 0.007443754468113184, 0.040258776396512985, 0.025797437876462936, 0.008040390908718109, -0.00895665492862463, -0.017771253362298012, -0.016052370890975, 0.00495776766911149, 0.005604124162346125, 0.03815634176135063, 0.0018751441966742277, 0.02474622055888176, 0.02150733582675457, -0.01368713192641735, 0.02348192036151886, 0.01980265974998474, -0.000291215575998649, 0.0187656469643116, -0.004364682361483574, 0.011804885230958462, -0.044236358255147934, 0.013900216668844223, 0.016166016459465027, 0.05398142337799072, 0.01646433398127556, -0.018865088000893593, -0.013403018936514854, 0.012955541722476482, -0.017657607793807983, -0.01178357657045126, 0.05173693224787712, -0.011257967911660671, 0.006825808901339769, 0.009439646266400814, 0.01480227429419756, 0.004584869835525751, 0.035428859293460846, 0.02203294448554516, 0.007749175652861595, 0.02660715952515602, -0.025030333548784256, -0.000495421641971916, 0.018836675211787224, -0.03974737599492073, 0.02342509664595127, 0.020953316241502762, -0.009418337605893612, 0.013793674297630787, -0.026095757260918617, 0.031422872096300125, -0.0040024383924901485, 0.018140599131584167, 0.011115911416709423, -0.018097981810569763, -0.0026280430611222982, 0.026862861588597298, 0.015668818727135658, 0.02498771622776985, -0.006573658902198076, -0.004993281792849302, -0.018481535837054253, -0.02280004881322384, -0.02306995540857315, 0.03176380693912506, -0.04301467165350914, 0.046764958649873734, -0.025413885712623596, -0.009624320082366467, -0.02071182057261467, -0.0019337424309924245, 0.017302466556429863, 0.0493219755589962, 0.018936116248369217, 0.004329168237745762, 0.035570915788412094, 0.017742842435836792, 0.030854646116495132, 0.00972375925630331, -0.017515551298856735, 0.012586195021867752, 0.006030293181538582, 0.01370133738964796, 0.009418337605893612, -0.024206407368183136, -0.0384688675403595, -0.0019834621343761683, 0.030485298484563828, 0.025328652933239937, 8.856327622197568e-05, -0.021464718505740166, -0.001652293256483972, -0.001521778991445899, 0.014496853575110435, 0.023140983656048775, -0.008928243070840836, 0.008288989774882793, -0.0036348674912005663, 0.018396301195025444, -0.012643017806112766, 0.00876487884670496, -0.0003260637749917805, 0.02056976407766342, 0.013708440586924553, -0.009240767918527126, -0.017984338104724884, -0.020910698920488358, -0.015611995942890644, -0.019902098923921585, 0.015924520790576935, 0.04935038462281227, -0.023552948608994484, 0.0388382151722908, -0.006935902871191502, 0.010455349460244179, 0.014333488419651985, 0.008608616888523102, -0.04488981515169144, -0.013424327597022057, 0.0013371056411415339, -0.024959305301308632, -0.025328652933239937, 0.0056183296255767345, -0.023680798709392548, -0.01564040780067444, 0.015683025121688843, -0.017700225114822388, 2.1585910872090608e-05, -0.009482263587415218, 0.010732359252870083, -0.0334116593003273, -0.023140983656048775, 0.023283040151000023, -0.007117024622857571, 0.03025800921022892, -0.01720302738249302, 0.011804885230958462, -0.023766031488776207, 0.024675192311406136, -0.005501133389770985, -0.037900641560554504, 0.015754053369164467, -0.0243342574685812, 0.030883057042956352, 0.013225449249148369, -0.013502459041774273, -0.014226946048438549, -0.001972808036953211, -0.016506951302289963, -0.011627314612269402, 0.0108104906976223, -0.007983568124473095, 0.006516836583614349, 0.01515741553157568, 0.028183985501527786, -0.0028304734732955694, 0.0005282721831463277, 0.014603395946323872, 0.025697998702526093, -0.0036970172077417374, 0.03809951990842819, 0.0029174829833209515, 0.037730176001787186, 0.028794828802347183, 0.03130922466516495, -0.033781006932258606, 0.010185441933572292, 0.018225833773612976, 0.011336099356412888, -0.01785648614168167, 0.0034129044506698847, 0.003070193575695157, -0.015384705737233162, 0.002372341463342309, 0.020115183666348457, -0.012799279764294624, 0.015810875222086906, -0.0005398142384365201, 0.01275666244328022, 0.018112188205122948, 0.015469939447939396, 0.011307687498629093, -0.0023883229587227106, 0.00019987775885965675, -0.008374223485589027, 0.011158528737723827, -0.014589190483093262, 0.04551486298441887, 0.028709594160318375, 0.00756450230255723, 0.016421716660261154, 0.06222069263458252, 0.0005522441933862865, -0.008637027814984322, -0.003174960147589445, 0.027772022411227226, 0.014255357906222343, -0.00354608241468668, 0.003201595740392804, 0.01233049388974905, 0.03443446755409241, -0.017345083877444267, -0.004769542720168829, -0.03346848115324974, -0.0009269178844988346, -0.0251297727227211, -0.008047494105994701, -0.011819090694189072, 0.013268065638840199, 0.021578364074230194, -0.010455349460244179, 0.011130116879940033, 0.010661331005394459, -0.004961319267749786, -0.009801889769732952, -0.004758888855576515, -0.030570533126592636, 0.026948094367980957, -0.016691625118255615, -0.02285687066614628, 0.021294251084327698, -0.004282999783754349, -0.02059817500412464, 0.02858174405992031, 0.053810957819223404, -0.011094603687524796, -5.2022598538314924e-05, -0.017572375014424324, -0.0216209813952446, 0.02515818551182747, 0.013189935125410557, 0.007671044673770666, -0.035485684871673584, 0.004414401948451996, -0.009666936472058296, -0.0013708440819755197, 0.02298472262918949, -0.027289031073451042, -0.023027339950203896, -0.029149968177080154, -0.024476313963532448, -0.026109961792826653, -0.023552948608994484, -0.011776474304497242, -0.007585810497403145, -0.007813100703060627, 0.011101705953478813, 0.05253244936466217, 0.012635914608836174, 0.0007932960870675743, 0.04696384072303772, -0.01985948160290718, -0.00036401947727426887, -0.02221761830151081, -0.016066577285528183, -0.03167857229709625, -0.019958920776844025, 0.024078555405139923, -0.016080781817436218, 0.009688245132565498, -0.04565691947937012, 0.017728636041283607, 0.027232207357883453, 0.021379485726356506, 0.010114414617419243, 0.025697998702526093, 0.03326960280537605, 0.010277778841555119, 0.045003462582826614, 0.033923063427209854, -0.042588502168655396, -0.010995163582265377, 0.024206407368183136, -0.02787146158516407, 0.03744606301188469, -0.009254973381757736, -0.013161523267626762, -0.013793674297630787, 0.0039740270003676414, 0.027857255190610886, 0.0029512213077396154, -0.00709216482937336, 0.004797954112291336, 0.016947325319051743, -0.001077852793969214, -0.011478155851364136, -0.009347309358417988, -0.02861015498638153, -0.010583200491964817, 0.008267681114375591, -0.01920602284371853, 0.013921525329351425, 0.015086387284100056, -0.027416881173849106, 0.032275211066007614, -0.012039277702569962, -0.006680201273411512, -0.003180287079885602, -0.032218385487794876, -0.02839707024395466, -0.005838517099618912, -0.035485684871673584, 0.01327516883611679, 0.030854646116495132, 0.008977963589131832, 0.004272345453500748, -0.0005167300696484745, -0.0038284193724393845, -0.016606390476226807, -0.01635068841278553, -0.00037334192893467844, -0.00044459206401370466, 0.003297483781352639, -0.031508106738328934, 0.009702450595796108, 0.006030293181538582, -0.002581874607130885, 0.0356561504304409, -0.029831839725375175, 0.02439108118414879, 0.007063753437250853, -0.0023261732421815395, 0.0034839326981455088, 0.0334116593003273, -0.0024291640147566795, -0.006403191480785608, 0.017757046967744827, 0.00917684193700552, -0.021351072937250137, 0.030542122200131416, -0.008168241940438747, -0.041054293513298035, 0.019433312118053436, -0.039406441152095795, -0.02713276818394661, 0.030400065705180168, 0.007571605034172535, 0.00823216699063778, 0.022586964070796967, 0.03099670261144638, -0.021692009642720222, -0.013410122133791447, 0.02940567024052143, 0.04233280196785927, 0.020967520773410797, 0.003253091126680374, -0.03165015950798988, 0.02899370715022087, -0.016166016459465027, -0.008161138743162155, -0.0003040894225705415, -0.0013486477546393871, 0.007969362661242485, -0.02595370076596737, -0.02937725931406021, 0.017927514389157295, -0.031451281160116196, 0.02271481417119503, -0.015796668827533722, -0.058527227491140366, 0.0227432269603014, -0.018808264285326004, 0.004776645917445421, 0.002541033551096916, -0.002503743628039956, 0.04469093680381775, -0.017785457894206047, -0.029746605083346367, -0.024703605100512505, 0.002249817829579115, 0.008324503898620605, 0.01327516883611679, 0.02743108756840229, -0.011201145127415657, 0.0445488803088665, 0.029235202819108963, 0.01157759502530098, -0.01758657954633236, -0.012074791826307774, 0.00033316659391857684, -0.005753283388912678, -0.026024729013442993, 0.015583585016429424, 0.0037573911249637604, 0.03579820692539215, 0.010611611418426037, 0.04872533679008484, 0.008921140804886818, 0.011392921209335327, -0.034548111259937286, 0.012025072239339352, -0.01914919912815094, 0.004922253545373678, -0.03679260239005089, 0.007344314828515053, -0.006573658902198076, -0.0013149093138054013, -0.010007872246205807, 0.013310682959854603, 0.02074023149907589, 0.010668434202671051, -0.004510289989411831, 0.01477386336773634, -0.012209746055305004, 0.0010263572912663221, -0.0055579557083547115, -0.001252759713679552, 0.0033685117959976196, 0.06290256232023239, 0.03645166754722595, -0.038497280329465866, 0.04216233268380165, -0.015441528521478176, -0.012231054715812206, -0.041707754135131836, -0.013616103678941727, -0.014283768832683563, 0.024234818294644356, 0.0007045108359307051, 0.0068400148302316666, -0.0068045007064938545, 0.004737580195069313, -0.02265799231827259, 0.023496124893426895, 0.004698514938354492, -0.026053139939904213, 0.0016585082048550248, -0.016691625118255615, -0.05077094957232475, 0.03395147621631622, -0.028482304885983467, -0.05170852318406105, -0.01554096769541502, 0.009098711423575878, -0.0013504234375432134, 0.03514475002884865, 0.006012536119669676, 0.03733241558074951, 0.008871421217918396, 0.010995163582265377, 0.02542809210717678, -0.017657607793807983, 0.04145205020904541, 0.00665889261290431, -0.005785245914012194, -0.033013902604579926, 0.00932600162923336, 0.013779468834400177, -0.009247870184481144, 0.007337212096899748, 0.007635530550032854, -0.014070684090256691, -0.004851225297898054, 0.022586964070796967, -0.01554096769541502, -0.012238156981766224, 0.0036792601458728313, 0.05261768400669098, -0.03738923743367195, -0.05043001472949982, 0.0655164048075676, -0.007614221889525652, 0.022842666134238243, 0.049776554107666016, -0.012323390692472458, -0.018396301195025444, -0.015597790479660034, 0.004822813905775547, 0.002521500689908862, -0.002319070277735591, -0.0022480422630906105, -0.019277051091194153, 0.014603395946323872, -0.013218346051871777, -0.032189976423978806, -0.010128620080649853, -0.006246929056942463, -0.023297246545553207, 0.0005939732072874904, -0.011151425540447235, 0.023964911699295044, -0.00024815474171191454, 0.03588344156742096, 0.0013832739787176251, 0.01312600914388895, -0.005096272565424442, 0.012848999351263046, 0.00860151369124651, 0.042645324021577835, -0.004826365504413843, -0.0010485536186024547, -0.0026671085506677628, 0.006250480655580759, 0.0022285094019025564, -0.024703605100512505, 0.03812793269753456, 0.022288646548986435, -0.0004998609074391425, 0.022459113970398903, -0.010909929871559143, 0.007898334413766861, 0.04551486298441887, -0.024703605100512505, 0.00782020390033722, -0.02559855952858925, -0.01031329296529293, -0.011115911416709423, 0.03156492859125137, 0.043327197432518005, 0.0295761376619339, 0.01626545563340187, 0.031422872096300125, -0.0022657993249595165, 0.025229213759303093, -0.011748062446713448, 0.02760155498981476, 0.02548491396009922, -0.0035176710225641727, -0.004385990556329489, 0.007521885447204113, -0.030115952715277672, 0.03105352446436882, 0.005707114934921265, 0.02260117046535015, -0.02260117046535015, 0.0461399108171463, 0.008175344206392765, 0.021819859743118286, 0.04142364114522934, -0.0009100486640818417, -0.013964141719043255, -0.030115952715277672, 0.03423558920621872, -0.012529372237622738, 0.0025286036543548107, -0.00679739797487855, 0.04849804937839508, -0.01051927451044321, 0.014063581824302673, 0.01983107067644596, 0.0071312300860881805, -0.027146974578499794, 0.037758585065603256, -0.02103854902088642, 0.0009517777361907065, -0.027274824678897858, 0.0027168281376361847, 0.025470709428191185, -0.005000384524464607, -0.03014436364173889, 0.0350026935338974, 0.029973896220326424, -0.016833681613206863, -0.00654169637709856, 0.00862992461770773, -0.02501612901687622, 0.005945059470832348, 0.02098172716796398, -0.002983184065669775, -0.013601898215711117, -0.013921525329351425, 0.0179701317101717, -0.007500576786696911, -0.008608616888523102, -0.03096828982234001, -0.000956217001657933, -0.04435000196099281, 0.026081550866365433, 0.029007913544774055, -0.004769542720168829, -0.02704753540456295, 0.020612381398677826, -0.004428607411682606, 0.030059128999710083, 0.01397834811359644, 0.036934658885002136, -0.004350476432591677, 0.015455733984708786, 0.012472550384700298, 0.018694618716835976]" -How I Power a (Successful) Crypto Trading Bot With TimescaleDB,"This is an installment of our “Community Member Spotlight” series, where we invite TimescaleDB community members to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition,Felipe Queis, a senior full-stack engineer for a Brazilian government traffic institution, joins us to share how he uses TimescaleDB to power his crypto trading bot – and how his side project influenced his team’s decision to adopt TimescaleDB for their work.My first experience with crypto wasn’t under very good circumstances: a friend who takes care of several servers at his job was infected with ransomware – and this malware was demanding he pay the ransom amount in a cryptocurrency called Monero (XMR).After this not-so-friendly introduction, I started to study how the technology behind cryptocurrencies works, and I fell in love with it. I was already interested in the stock market, so I joined the familiar (stock market) with the novel (crypto). To test the knowledge I’d learned from my stock market books, I started creating a simpleMoving Average Convergence Divergence (MACD)crossover bot.This worked for a while, but I quickly realized that I should - and could - make the bot a lot better.Now, the project that I started as a hobby has a capital management system, a combination of technical indicators, and sentiment analysis powered by machine learning. Between 10 March 2020 and 10 July 2020, my bot resulted in asuccess rateof 61.5%,profit factorof 1.89, and cumulative gross result of approximately 487% (you can see a copy of all of my trades during this period inthis Google Sheet report).About meI'm 29 years old, and I’ve worked in a traffic governmental institution in São Paulo, Brazil (where I live too) as an senior full-stack developer since 2012.In my day job, my main task at the moment is processing and storing the stream of information from Object Character Recognition (OCR)-equipped speed cameras that capture data from thousands of vehicles as they travel our state highways. Our data stack uses technologies like Java, Node.js, Kafka, and TimescaleDB.(For reference, I started using TimescaleDB for my hobby project, and, after experiencing its performance and scale with my bot, I proposed we use it at my organization. We’ve found that it brings together the best of both worlds: time-series in",https://www.timescale.com/blog/how-i-power-a-successful-crypto-trading-bot-with-timescaledb/,500,"[0.007998974993824959, -0.01860055886209011, 0.02409985475242138, 0.008807695470750332, 0.053581371903419495, 0.021232573315501213, -0.034319132566452026, 0.08210712671279907, -0.043553244322538376, 0.006451379507780075, 0.018027102574706078, -0.014821630902588367, -0.026055485010147095, -0.03770105168223381, 0.06387417018413544, 0.028569869697093964, -0.015762686729431152, -0.011476471088826656, -0.06008053943514824, 0.013718830421566963, -0.005212567746639252, 0.019644541665911674, 0.02348228543996811, 0.027481773868203163, -0.004819235764443874, -0.04984655603766441, -0.04728806018829346, 0.047317467629909515, 0.014314343221485615, -0.09075307846069336, -0.0035032276064157486, -0.03411327674984932, -0.05255209282040596, 0.016674334183335304, 0.021717805415391922, -0.008668007329106331, 0.03270169347524643, -0.017409535124897957, 0.02549673430621624, 0.0031540077179670334, -0.0006345694418996572, -0.002973883645609021, 0.008800343610346317, 0.05211097002029419, -0.0684618204832077, -0.018115326762199402, -0.040583036839962006, -0.017880061641335487, 0.03740697354078293, 0.05019945278763771, -0.0497877411544323, 0.05066997930407524, -0.021467838436365128, -0.02643778920173645, 0.024335118010640144, -0.02534969337284565, -0.002359991893172264, 0.021173758432269096, -0.011461767368018627, -0.03702466934919357, 0.013285063207149506, -0.03896559774875641, 0.02971678227186203, 0.016703743487596512, -0.03140773996710777, 0.04702338948845863, -0.02124727889895439, -0.016924303025007248, -0.050140634179115295, 0.01134413480758667, 0.03828921169042587, 0.03831861913204193, 0.04799385368824005, -0.017277197912335396, 0.010116350837051868, -0.05869836360216141, -0.02329113334417343, 0.06387417018413544, -0.008520967327058315, -0.014556958340108395, 0.018821118399500847, -0.009844327345490456, -0.029952045530080795, 0.016512591391801834, -0.007113059516996145, -0.059051260352134705, -0.03549545258283615, -0.039494939148426056, 0.016233215108513832, -0.010697158984839916, -0.03273110091686249, 0.030099084600806236, 0.018100623041391373, -0.009182646870613098, 0.013042447157204151, 0.0018049158388748765, -0.0141673032194376, 0.009998719207942486, -0.0034076517913490534, 0.01688018999993801, 0.0019262238638475537, 0.002042017877101898, 0.0178359504789114, -0.007771063130348921, 0.023041166365146637, 0.009167943149805069, 0.02973148599267006, -0.0002754702290985733, -0.008094551041722298, 0.0005348579725250602, -0.07263775169849396, -0.026805389672517776, -0.0510522834956646, 0.008807695470750332, 0.014806927181780338, -0.0016725799068808556, -3.799490150413476e-05, 0.007245395332574844, 0.009660527110099792, -0.023820478469133377, -0.023511694744229317, -0.00445898761972785, -0.01814473420381546, 0.001107394928112626, 0.013343879021704197, -0.04181817173957825, -0.02458508498966694, -0.03640710189938545, -0.04078889265656471, -0.026202525943517685, 0.023526398465037346, 0.004881727509200573, 0.058110203593969345, -0.0017415048787370324, -0.03408386930823326, -0.028422828763723373, -0.047346875071525574, -0.02332054264843464, -0.027128877118229866, -0.0279817096889019, -0.008013679645955563, -0.060168761759996414, 0.0178359504789114, 0.004826587624847889, -0.03787750005722046, -0.015321566723287106, -0.037465788424015045, 0.029907934367656708, -0.046552859246730804, -0.030260829254984856, 8.40023403725354e-06, -0.028393421322107315, -0.04755273088812828, 0.028128748759627342, 0.0626390352845192, 0.0059918793849647045, 0.017938878387212753, 0.06022758036851883, -0.008006326854228973, -0.02421748638153076, 0.0034444117918610573, 0.05222860351204872, -0.04831733927130699, 0.0077122473157942295, -0.02565847709774971, 0.0015402438584715128, -0.0048118834383785725, -0.02127668634057045, -0.06863826513290405, 0.01640966348350048, -0.028996285051107407, -0.05158162862062454, -0.020923789590597153, 0.004345031455159187, 0.010822143405675888, -0.010969183407723904, 0.015395086258649826, -0.044494301080703735, 0.01707134209573269, -0.03708348423242569, -0.06787365674972534, -0.023570509627461433, -0.03508374094963074, 0.0344073586165905, -0.011197094805538654, -0.032760508358478546, -0.02751118130981922, 0.025261469185352325, 0.0006979804602451622, 0.057051513344049454, 0.01132943108677864, 0.0876358300447464, 0.01785065419971943, 0.025261469185352325, -0.023555805906653404, -0.006991751492023468, 0.06105100363492966, 0.00217067776247859, -0.04896431416273117, 0.01752716675400734, 0.02783466875553131, 0.05366959422826767, 0.04487660527229309, 0.016850782558321953, 0.0258055180311203, -0.04023014008998871, 0.012954222969710827, -0.021644286811351776, -0.07334354519844055, -0.02734943851828575, 0.014277582988142967, -0.006098483689129353, 0.02017388679087162, -0.03487788513302803, -0.04299449175596237, 0.00868271104991436, -0.029319774359464645, -0.0068998513743281364, -0.003962727729231119, 0.016689037904143333, 0.015880318358540535, 0.0572279617190361, 0.005855867639183998, -0.013520326465368271, -0.002519897883757949, 0.024614494293928146, 0.027320029214024544, -0.024643901735544205, 0.04111238196492195, -0.007193931378424168, 0.02454097382724285, -0.016953710466623306, -0.02189425379037857, -0.04658226668834686, 0.017894767224788666, 0.0334957093000412, 0.017615390941500664, -0.029466813430190086, -0.014828982762992382, 0.009881087578833103, -0.012446935288608074, 0.049346618354320526, 0.03661295771598816, -0.0013371448731049895, -0.031995899975299835, 0.0029573417268693447, -0.041082970798015594, -0.07687250524759293, 0.036230653524398804, 0.051846299320459366, 0.03490729257464409, 0.0033708917908370495, -0.021658990532159805, -0.036054205149412155, -0.03234879672527313, -0.02687891013920307, -0.04367087781429291, 0.01879171095788479, -0.011094166897237301, 0.0062491996213793755, 0.009939903393387794, -0.05766908451914787, -0.027628812938928604, -0.008403335697948933, -0.03446617349982262, -0.006274931598454714, -0.00189865380525589, -0.03437794744968414, 0.014468735083937645, -0.016953710466623306, 0.052316825836896896, 0.022805901244282722, 0.004197991453111172, -0.03675999864935875, -0.03502492606639862, -0.03426031768321991, 0.01780654303729534, 0.008859159424901009, -0.0022772818338125944, -0.02645249292254448, 0.006032315548509359, -0.0054294513538479805, 0.013182135298848152, -0.010844198986887932, 0.020894382148981094, 0.03534841164946556, 0.009395855478942394, 0.026555420830845833, 0.006043343339115381, -0.04649404436349869, -0.007807823363691568, 0.032760508358478546, 0.039818428456783295, -0.05458124354481697, 0.0067270793952047825, 0.005517675541341305, -0.005631631705909967, 0.012329302728176117, -0.022335374727845192, -0.011549990624189377, 0.024202782660722733, -0.0032256897538900375, 0.0066167996264994144, -0.008866511285305023, -0.009042959660291672, -0.015895022079348564, -0.014601070433855057, -0.029158029705286026, -0.009454671293497086, -0.03390742093324661, 0.009910495020449162, -0.006315367296338081, -0.036671772599220276, -0.015453903004527092, -0.025246765464544296, -0.017247790470719337, 0.05711033195257187, -0.029025694355368614, 0.011770551092922688, -0.06705023348331451, -0.0334957093000412, -0.06105100363492966, -0.01598324626684189, 0.010248687118291855, 0.009520838968455791, -0.02187955006957054, 0.027128877118229866, 0.002602607710286975, 0.04055362939834595, -0.0229970533400774, 0.013571790419518948, -0.0030731356237083673, 0.01676255837082863, -0.012071982957422733, -0.011292670853435993, -0.026011373847723007, 0.003804659703746438, 0.013005686923861504, 0.012564566917717457, 0.029981452971696854, -0.0214531347155571, -0.016630223020911217, -0.04955247417092323, -0.0027220777701586485, 0.06705023348331451, -0.00345911574549973, -0.018409406766295433, 0.00332310376688838, 0.012990983203053474, -0.014020263217389584, -0.043553244322538376, 0.005311819724738598, 0.024923278018832207, -0.029687372967600822, -0.029349181801080704, -0.005098611582070589, -0.027569998055696487, 0.020217997953295708, -0.07799001038074493, -0.02771703712642193, -0.027408253401517868, 0.06863826513290405, 0.004558239597827196, 0.01999743841588497, 0.004433255642652512, 0.021173758432269096, -0.03555426746606827, 0.004264159593731165, -0.033848606050014496, -0.018115326762199402, 0.007535799406468868, 0.02520265430212021, -0.0344073586165905, -0.009079718962311745, -0.040112510323524475, -0.012013167142868042, 0.034319132566452026, 0.02846694178879261, -0.012152855284512043, 0.08645951002836227, 0.06457996368408203, 0.027275918051600456, -0.005583843681961298, 0.020276814699172974, 0.007646079175174236, 0.04240633174777031, 0.040288954973220825, 0.012366062961518764, -0.03805394843220711, 0.014468735083937645, 0.01926223747432232, -0.044964827597141266, -0.001834323862567544, 0.023202909156680107, -0.03017260506749153, 0.024364525452256203, 0.038230396807193756, 0.03190767765045166, 0.06640325486660004, -0.028246382251381874, 0.006135243456810713, -0.007719599176198244, -0.00963111873716116, -0.022938238456845284, -0.0033580258022993803, 0.024188077077269554, -0.018100623041391373, 0.03993606194853783, -0.028849245980381966, -0.0061646513640880585, -0.018968157470226288, -0.016939006745815277, 0.0459941066801548, -0.039494939148426056, 0.006002907641232014, 0.009167943149805069, -0.024629198014736176, 0.03649532422423363, 0.040730077773332596, 0.03787750005722046, -0.01877700723707676, -0.0010384699562564492, -0.0013886088272556663, 0.0073777311481535435, -0.008263647556304932, 0.03973020613193512, 0.03408386930823326, -0.021320797502994537, 0.01579209417104721, -0.06246258690953255, -0.00256033381447196, -0.03299577161669731, -0.0006860334542579949, 0.002973883645609021, -0.04714101925492287, 0.011704383417963982, 0.03205471858382225, 0.031084252521395683, 0.018409406766295433, 0.00047742045717313886, -0.02379106916487217, 0.008410687558352947, -0.0016955548198893666, 0.04055362939834595, -0.0023728578817099333, 0.003468305803835392, -0.005896303337067366, -0.014351102523505688, 0.0006290554301813245, 0.0028709557373076677, 0.04014191776514053, -0.04961129277944565, -0.0247174222022295, 0.02204129472374916, -0.03502492606639862, -0.05240505188703537, 0.034789662808179855, -0.009785511530935764, 0.050934650003910065, -0.0042715114541351795, -0.05190511420369148, 0.02614370919764042, -0.05805138871073723, -0.019820990040898323, 0.013843814842402935, -0.06710904836654663, 0.024143965914845467, -0.0005555354291573167, 0.0403771810233593, -0.008851807564496994, 0.014262878336012363, 0.04275922849774361, -0.027128877118229866, 0.013204190880060196, -0.03758342191576958, -0.006936611607670784, 0.028599277138710022, -0.0002488192403689027, 0.00954289548099041, -0.021688397973775864, 0.034348540008068085, -0.02268826961517334, -0.007653431501239538, 0.06063929200172424, -0.004822911694645882, -0.009204703383147717, 0.01723308674991131, 0.03549545258283615, 0.0025731998030096292, 0.03781868517398834, 0.025393806397914886, 0.009109127335250378, 0.08934149891138077, -0.01845351792871952, 0.03193708509206772, -0.03634828329086304, -0.039641980081796646, -0.0532284751534462, 0.0028452237602323294, -0.04081830009818077, 0.036701180040836334, -0.008087199181318283, 0.002788245677947998, 0.04299449175596237, -0.033730972558259964, -0.011682326905429363, -0.01439521461725235, -0.026481902226805687, 0.010733919218182564, -0.033848606050014496, 0.0068888235837221146, 0.003201795741915703, 0.008109255693852901, 0.02346758171916008, -0.00788869522511959, 0.022114813327789307, -0.008079847320914268, -0.01910049468278885, -0.014828982762992382, -0.01846822164952755, -0.0049515715800225735, -0.032172348350286484, -0.039671387523412704, 0.007065271493047476, -0.0029628558550029993, -0.005344903562217951, -0.04111238196492195, -0.02501150220632553, -0.011689678765833378, -0.0050618513487279415, 0.040024284273386, 0.0018187008099630475, 0.004150203429162502, 2.2888842067914084e-05, -0.055786971002817154, 0.01629202999174595, -0.045935291796922684, -0.028422828763723373, -0.0391126349568367, 0.00481555936858058, 0.00425680773332715, 0.032789915800094604, 0.0450824610888958, 0.04349442943930626, -0.007153495214879513, 0.004403847735375166, 0.004506775643676519, -0.013005686923861504, -0.018688783049583435, 0.04837615415453911, 0.021776622161269188, -0.02534969337284565, 0.03020201250910759, 0.019174015149474144, -0.017291901633143425, 0.0347602516412735, 0.025217358022928238, 0.0027275916654616594, 0.0070395395159721375, -0.004124471452087164, -0.00788869522511959, -0.013748238794505596, 0.0089179752394557, 0.023526398465037346, -0.010204575024545193, 0.033083997666835785, 0.004852319601923227, -0.021791325882077217, -0.022129518911242485, 0.0004464042140170932, 0.010285447351634502, -0.00602128729224205, -0.018218254670500755, 0.01274836715310812, 0.02565847709774971, 0.004844967741519213, -0.06505049020051956, -0.03581894189119339, 0.002128403866663575, 0.013535031117498875, -0.021511949598789215, 0.0009585169027559459, -0.013637959025800228, 0.035142555832862854, -0.007543151266872883, 0.003819363657385111, -0.0005422099493443966, 0.016924303025007248, 0.03367215767502785, -0.009513487108051777, 0.01103535108268261, -0.004712631460279226, -0.03581894189119339, 0.009587007574737072, 0.02861398085951805, 0.012116095051169395, 0.012851295061409473, -0.01072656735777855, -0.031201886013150215, 0.027599405497312546, 0.002624663757160306, 0.011079463176429272, -0.024511566385626793, -0.028393421322107315, -0.007340971380472183, 0.016541998833417892, 0.02771703712642193, 0.004425903782248497, 0.03770105168223381, -0.04284745082259178, 0.008932678960263729, 0.011469119228422642, -0.016644926741719246, -0.048082076013088226, -0.0141673032194376, 0.011461767368018627, -0.01987980678677559, 0.005389015655964613, -0.0062712556682527065, 0.026628941297531128, -0.03164300695061684, -0.02690831758081913, -0.03220175579190254, -0.05308143422007561, 0.009432614780962467, 0.020556190982460976, 0.01540979091078043, -0.026687758043408394, -0.01188818272203207, 0.020144477486610413, 0.01252780668437481, 0.020938493311405182, 0.0012571918778121471, -0.02161487750709057, -0.00019747010082937777, 0.02095319889485836, 0.03320162743330002, 0.043729692697525024, -0.018894638866186142, -0.015034838579595089, 0.038877371698617935, 0.0037384917959570885, -0.013321822509169579, -0.013829111121594906, -0.010425135493278503, -0.010233983397483826, 0.003036375856027007, 0.05078761279582977, 0.001783778890967369, -0.028672797605395317, -0.014983374625444412, -0.021144350990653038, 0.027599405497312546, 0.01383646298199892, 0.022188333794474602, -0.028437534347176552, -0.011064759455621243, 0.0006805194425396621, -0.007638727314770222, 0.006793247535824776, -0.013093911111354828, 0.028069933876395226, -0.01582150347530842, 0.007017483469098806, -0.03211353346705437, 0.03281932696700096, 0.009594359435141087, 0.026511309668421745, 0.01070451084524393, 0.01056482270359993, -0.03858329355716705, 0.009484078735113144, 0.035260189324617386, -0.0029867496341466904, 0.02783466875553131, 0.004403847735375166, -0.008851807564496994, -0.01655670255422592, 0.029452109709382057, 0.04711161181330681, -0.04843497276306152, 0.013909982517361641, -0.03114306926727295, -0.004712631460279226, -0.021306093782186508, 0.000354274467099458, -0.0007623104611411691, 0.008631247095763683, 0.027172990143299103, 0.02880513295531273, -0.0004027517279610038, -0.018085919320583344, 0.02767292596399784, -0.04111238196492195, -0.004532507620751858, -0.003819363657385111, 0.014336398802697659, 0.027643518522381783, -0.03420150279998779, -0.0876358300447464, 0.01548331044614315, -0.019321054220199585, -0.050905242562294006, -0.013123318552970886, -0.029922638088464737, 0.005083907395601273, 0.00947672687470913, -0.002451891778036952, 0.030143197625875473, -0.003863475751131773, -0.040112510323524475, 0.03170182183384895, -0.029216844588518143, 0.027819965034723282, -0.016394957900047302, 0.0008753474103286862, 0.005142723675817251, 0.03773045912384987, -0.019747469574213028, -0.02643778920173645, -0.02377636544406414, 0.02077675051987171, -0.040288954973220825, -0.003387433709576726, 0.027467070147395134, -0.02223244681954384, -0.006407267414033413, 0.037642236799001694, -3.138959073112346e-05, -0.029657965525984764, 0.014248174615204334, 0.006201411597430706, 0.030084380879998207, -0.029422702267766, 0.03734815865755081, -0.029128622263669968, -0.022482413798570633, -0.018056510016322136, -0.045935291796922684, -0.00676383962854743, -0.02771703712642193, -0.008366575464606285, -0.030760765075683594, -0.018821118399500847, 0.02343817427754402, -0.05237564444541931, 0.021394317969679832, 0.032760508358478546, 0.023423470556735992, 0.00899149477481842, -0.0008951059426181018, 0.014821630902588367, -0.0016790129011496902, 0.016615519300103188, -0.0318782702088356, 0.001157939899712801, -0.011939646676182747, -0.0027717037592083216, -0.0010862578637897968, 0.021482542157173157, -0.019115198403596878, 0.030099084600806236, -0.010050183162093163, 0.02927566133439541, 0.0008362899534404278, 0.042641595005989075, 0.009013551287353039, -0.004775123670697212, -0.02348228543996811, -0.06975577026605606, 0.012160207144916058, -0.01624791882932186, -0.013248302973806858, 0.01798298954963684, 0.05761026591062546, 0.002496003871783614, 0.0037752515636384487, 0.017321310937404633, 0.01845351792871952, 0.0005468049785122275, 0.04117119684815407, -0.004672195762395859, -0.04625878110527992, -0.013630607165396214, 0.0072895074263215065, -0.027775853872299194, 0.01220431923866272, -0.023202909156680107, -0.027922892943024635, -0.021717805415391922, -0.027158286422491074, -0.016012653708457947, -0.013439455069601536, 0.01243223063647747, 0.016144990921020508, 0.02974618971347809, 0.020144477486610413, -0.07493157684803009, -0.05440479516983032, 0.03493670001626015, -0.00968258362263441, -0.03052550181746483, -0.019482798874378204, 0.028275789692997932, 0.02751118130981922, 0.021232573315501213, -0.0277023334056139, 0.01142500713467598, -0.04990537092089653, 0.00874887965619564, -0.021144350990653038, -0.0009879248682409525, -0.0026798038743436337, 0.003668647725135088, 0.0015448388876393437, 0.028716908767819405, 0.055110588669776917, -0.029040398076176643, 0.0007549584261141717, -0.03864210844039917, 0.0537872277200222, 0.013637959025800228, -0.0013160079251974821, -0.030466685071587563, 0.04331798106431961, 0.016336143016815186, -0.004602351691573858, 0.00938115082681179, 0.019276943057775497, 0.013424750417470932, 0.02377636544406414, -0.03517196327447891, 0.0416417233645916, 0.0032109858002513647, -0.0017350718844681978, -0.00971199106425047, -0.00293344771489501, -0.02364403009414673, -0.02315879799425602, 0.047640956938266754, -0.02098260633647442, 0.05866895616054535, -0.004135499708354473, -0.018512334674596786, 0.03240761160850525, -0.006105835549533367, 0.000776554923504591, 0.0313195176422596, 0.005738235544413328, 0.002575037768110633, -0.012417526915669441, -0.019026974216103554, 0.01815943792462349, -0.06399179995059967, 0.02440863847732544, -0.002615473698824644, -0.006550631485879421, -0.01315272692590952, 0.006506519392132759, 0.004028895869851112, -0.044200219213962555, -0.019938621670007706, 0.013483567163348198, 0.00051739695481956, 0.018718190491199493, 0.002098995726555586, 0.0010421458864584565, -0.007873991504311562, 0.015101006254553795, 0.047170426696538925, -0.0020328278187662363, -0.017924174666404724, -0.014623126946389675, 0.008572431281208992, -0.0011450739111751318, 0.01688018999993801, -0.04984655603766441, 0.011388246901333332, -0.012233726680278778, -0.021012013778090477, 0.012873350642621517, -0.03343689441680908, -0.0463470034301281, -0.01336593460291624, 0.03393682837486267, 0.003940671682357788, 0.011314727365970612, 0.05272854119539261, 0.00305107980966568, -0.02877572551369667, -0.01103535108268261, 0.03017260506749153, 0.01754187047481537, -0.01354238297790289, 0.009903143160045147, 0.013895278796553612, -0.005109639372676611, 0.0344073586165905, -0.013564438559114933, -0.027114173397421837, 0.021526653319597244, -0.02518795058131218, -0.012542511336505413, -0.0012066469062119722, 0.0004300919536035508, 0.014020263217389584, -0.021717805415391922, -0.018247662112116814, -0.008160719648003578, 0.035760123282670975, 0.02142372541129589, 0.0022772818338125944, -0.0018150248797610402, 0.0011055569630116224, -0.027584701776504517, 0.0022258178796619177, -0.011152982711791992, 0.04990537092089653, -0.006712375208735466, -0.02426159754395485, 0.028834542259573936, -0.007859287783503532, 0.027922892943024635, 0.034672029316425323, 0.01438051089644432, 0.033083997666835785, -0.0156597588211298, 0.011322079226374626, 0.07199078053236008, -0.00038529071025550365, 0.04349442943930626, 0.014902502298355103, -0.00806514360010624, 0.01579209417104721, -0.028055230155587196, -0.003863475751131773, -0.0006607609684579074, -0.002214789856225252, 0.027408253401517868, -0.01088095922023058, -0.008623895235359669, 0.02393811009824276, -0.020115070044994354, -0.006716051604598761, 0.03664236515760422, -0.027158286422491074, 0.03787750005722046, 0.016306733712553978, -0.0003264747210778296, -0.005933063570410013, 0.035260189324617386, 0.008484207093715668, 0.01940927840769291, -0.033083997666835785, -0.03675999864935875, -0.020585598424077034, -0.010263390839099884, 0.009991367347538471, 0.030084380879998207, 0.020453263074159622, -0.02895217388868332, 0.0007388759404420853, -0.013535031117498875, -0.029981452971696854, -0.0016054929001256824, 0.0015310539165511727, 0.026202525943517685, -0.002825005678460002, -0.0279817096889019, 0.01117503922432661, -0.007800471503287554, 0.030760765075683594, 0.0025621717795729637, 0.01463047880679369, -0.00379730761051178, 0.0017203678144142032, 0.016674334183335304, 0.0012268648715689778, -0.005363283678889275, 0.005502971354871988, 0.012579270638525486, 0.007763711269944906, -0.02046796679496765, -0.0239087026566267, 0.004837615415453911, -0.037789277732372284, -0.003948023542761803, 0.037789277732372284, -0.013093911111354828, 0.023673437535762787, 0.03196649253368378, 0.0059918793849647045, 0.022894125431776047, 0.015586238354444504, 0.04699397832155228, -0.046699900180101395, -0.028555165976285934, -0.05190511420369148, -0.010792735032737255, 0.01940927840769291, 0.0015457578701898456, 0.0041832877323031425, 0.018865229561924934, 0.012388118542730808, -0.008101902902126312, -0.021497245877981186, 0.020600302144885063, 0.02235007844865322, 0.00578234763815999, -0.02676127851009369, -0.01688018999993801, 0.013101262971758842, 0.0002043626009253785, 0.013395342975854874, 0.004065655637532473, -0.031231293454766273, 0.008418039418756962, -0.02958444505929947, -0.013998206704854965, -0.009601711295545101, -0.0015861939173191786, -0.02927566133439541, 0.04411199688911438, 0.013858518563210964, -0.002106347819790244, -0.03158418834209442, 0.004315623547881842, -0.009550247341394424, 0.012116095051169395, 0.011946998536586761, 0.0045508877374231815, 0.029378589242696762, -0.009057663381099701, 0.014483438804745674, -0.034348540008068085, -0.01080008689314127, -0.008851807564496994, 0.004760419484227896, -0.0007407139637507498, 0.02676127851009369, -0.018277069553732872, -0.004209019709378481, -0.0075725591741502285, 0.03455439582467079, -0.008660655468702316, 0.00938850361853838, -0.017924174666404724, -0.007668135222047567, -0.004095063544809818, 0.024835053831338882, 0.018203550949692726, 0.015836207196116447, 0.009859031066298485, 0.026687758043408394, 0.022967645898461342, 0.004348707851022482, -0.006289635319262743, 0.01893875002861023, 0.011248558759689331, 0.014542254619300365, 0.0005978094413876534, -0.004705279599875212, -0.02765822224318981, -0.01987980678677559, 0.0024206459056586027, 0.00029522873228415847, 0.03828921169042587, 0.010425135493278503, 0.023085277527570724, 0.01657140627503395, 0.00969728734344244, 0.014748110435903072, 0.01424082275480032, -0.04431785270571709, -0.008013679645955563, -0.015674462541937828, -0.019526910036802292, -0.05219919607043266, 0.01478487066924572, 0.02786407805979252, 0.02864339016377926, 0.02455567754805088, -0.03673058748245239, 0.00821953546255827, -0.02767292596399784, 0.014101134613156319, -0.04205343499779701, 0.015395086258649826, 0.003538149641826749, 0.0004296324623282999, 0.014299638569355011, -0.011152982711791992, 0.009623766876757145, -0.009550247341394424, 0.007186579518020153, 0.0167478546500206, -0.030701950192451477, -0.013740886934101582, 0.002446377882733941, 0.011829366907477379, 0.014387862756848335, 0.004594999831169844, -0.006624151486903429, -0.03067254088819027, -0.016821375116705894, -0.0036851896438747644, -0.01970335841178894, -0.006642531603574753, 0.009895791299641132, 0.014593718573451042, 0.0497877411544323, -0.00469425180926919, 0.0049736276268959045, 0.018865229561924934, 0.016953710466623306, 0.012785126455128193, 0.02830519713461399, 0.02549673430621624, 0.014968670904636383, 0.0035620436538010836, 0.06763839721679688, -0.036524731665849686, -0.001848108833655715, 0.009719342924654484, 0.008197478950023651, -0.004536183550953865, 0.02098260633647442, 0.021497245877981186, -0.019923917949199677, 0.00024330522865056992, 0.01361590251326561, -0.03896559774875641, 0.01196905504912138, 0.04393554851412773, -0.00835922360420227, 0.021394317969679832, -0.029187437146902084, 0.00684838742017746, 0.008881215006113052, -0.0005881599499844015, 0.020850270986557007, 0.0013647149316966534, -0.0033488357439637184, 0.03455439582467079, 0.008050438947975636, 0.004330327734351158, -0.012630734592676163, 0.0637565404176712, 0.013167430646717548, -0.00961641501635313, 0.031231293454766273, 0.017630094662308693, -0.00606907531619072, -0.0036943797022104263, 0.013167430646717548, 0.00422372343018651, 0.03428972512483597, -0.01690959930419922, -0.012321950867772102, -0.003977431450039148, 0.019747469574213028, 0.022453006356954575, -0.01613028720021248, -0.02518795058131218, 0.034319132566452026, -0.00035565297002904117, 0.006083779502660036, 0.014174655079841614, 0.008315111510455608, 0.000617567973677069, -0.0236293263733387, -0.03220175579190254, -0.005907331593334675, 0.008425391279160976, -0.021203165873885155, -0.009263519197702408, 0.018806414678692818, 0.03020201250910759, -0.025261469185352325, 0.01718897372484207, 0.0340544618666172, -0.0014042318798601627, -0.005466211587190628, -0.02846694178879261, 0.00985167920589447, 0.005411071702837944, -0.0056022233329713345, -0.02096790261566639, -0.012623382732272148, 0.005929387640208006, -0.0016422529006376863, -0.027746446430683136, 0.027114173397421837, -0.01592443138360977, -0.008719471283257008, -0.019335757941007614, -0.025923149660229683, -0.028040526434779167, -0.007010131608694792, 0.007241719402372837, -0.019056381657719612, -0.005966147407889366, 0.024496862664818764, 0.058433689177036285, 0.03884796425700188, 0.03273110091686249, 0.03396623581647873, 0.012836591340601444, -0.002155973808839917, -0.015071598812937737, 0.012799831107258797, -0.0031521697528660297, -0.021556062623858452, 0.019909214228391647, -0.02377636544406414, 0.02734943851828575, -0.02157076634466648, -0.031348925083875656, 0.022747086361050606, -0.0007099274662323296, 0.02161487750709057, 0.03311340510845184, 0.02393811009824276, 0.016483182087540627, 0.012476342730224133, -0.018835822120308876, -0.01829177513718605, -0.010219278745353222, 0.018879935145378113, -0.02207070216536522, 0.012865998782217503, -0.012152855284512043, -0.015071598812937737, -0.002609959803521633, 0.022482413798570633, 0.003343321615830064, 0.037612829357385635, 0.008418039418756962, -0.0008335329475812614, 0.00961641501635313, 0.016027359291911125, -0.003981107845902443, -0.011601454578340054, -0.018850525841116905, -0.027040652930736542, -0.0007361189345829189, -0.019306350499391556, 0.019026974216103554, 0.03176063671708107, -0.017291901633143425, 0.0017332338029518723, 0.00532284751534462, -0.004414875525981188, -0.01843881420791149, -0.002791921840980649, -0.023247022181749344, -0.018379999324679375, -0.024599790573120117, 0.016203805804252625, 0.026673054322600365, 0.0159391351044178, 0.01204992737621069, 0.030701950192451477, 0.009917846880853176, -0.004326651804149151, -0.02501150220632553, 0.010697158984839916, 0.017615390941500664, -0.0032440696377307177, -0.0033488357439637184, -0.00012222699297126383, -0.00342419371008873, 0.018247662112116814, 0.048082076013088226, -0.03581894189119339, -0.006627827417105436, -0.006058047525584698, 0.014306990429759026, -0.003940671682357788, 0.02129139006137848, -0.003505065804347396, 0.0032679636497050524, 0.013255654834210873, -0.009484078735113144, -0.022908829152584076, 0.0016808508662506938, 0.009814918972551823, -0.02454097382724285, 0.007414491381496191, 0.008829751051962376, -0.005072879604995251, 0.02926095761358738, -0.022247150540351868, 0.011152982711791992, -0.010660398751497269, 0.004734687507152557, 0.00723804347217083, -0.006947639398276806, -0.004293567501008511, 0.04099474847316742, -0.008043087087571621, -0.0018361618276685476, -0.03940671682357788, 0.028893357142806053, 0.007230691611766815, -0.003291857661679387, -0.009579654783010483, 0.01655670255422592, -0.00874887965619564, -0.01942398212850094, -0.022747086361050606, 0.027290621772408485, -0.011064759455621243, 0.015997949987649918, 0.01282188668847084, 0.024614494293928146, 0.013108614832162857, 0.03426031768321991, -0.021658990532159805, 0.012461639009416103, -0.01924753375351429, 0.04946425184607506, -0.021953070536255836, -0.01002077478915453, -0.022791197523474693, -0.0056022233329713345, -0.012520454823970795, -0.007550503127276897, -0.015453903004527092, -0.00788869522511959, 0.03378978744149208, -0.0061867074109613895, -0.0011459928937256336, -0.020747343078255653, -0.00883710291236639, -0.01642436720430851, 0.015321566723287106, 0.0038671516813337803, -0.007624023128300905, -0.018027102574706078, 0.023967517539858818, 0.04425903782248497, 0.014851038344204426, -0.003929643891751766, 0.03552486002445221, -0.031231293454766273, 0.02127668634057045, 0.01049130316823721, -0.016983117908239365, -0.047787994146347046, -0.0052860877476632595, -0.004308271687477827, 0.022247150540351868, 0.012189614586532116, -0.02548203058540821, 0.0178359504789114, 0.023746958002448082, 0.015056895092129707, 0.027952302247285843, -0.0010017099557444453, 0.02064441330730915, 0.018335886299610138, -0.027805261313915253, -0.008690062910318375, 0.03984783589839935, 0.008462151512503624, -0.033083997666835785, -0.020732637494802475, 0.006793247535824776, 0.01346151065081358, -0.0258055180311203, -0.0043560597114264965, 0.009564951062202454, 0.03493670001626015, -0.03973020613193512, -0.02301175892353058, -0.026717165485024452, 0.0067491354420781136, -0.011204446665942669, -0.015909725800156593, 0.06793247163295746, 0.019923917949199677, -0.027569998055696487, -0.0024592438712716103, -0.0412888266146183, 0.005973499268293381, -0.04143586754798889, -0.025746701285243034, -0.0008372089359909296, 0.012601327151060104, 0.020615005865693092, 0.029378589242696762, 0.029613854363560677, 0.015424494631588459, 0.0016955548198893666, 0.02614370919764042, -0.009182646870613098, -0.012196967378258705, 0.025687886402010918, -0.015262750908732414, 0.0038561236578971148, -0.008587135002017021, 0.007859287783503532, -0.007374055217951536, 0.004635435529053211, -0.0208208616822958, -0.010660398751497269, -0.015218638814985752, 0.00649181567132473, 0.0109544787555933, -0.04520009085536003, -0.0078298794105649, 0.013645310886204243, 0.03305459022521973, -0.022291261702775955, -0.025452621281147003, 0.03955375775694847, -0.014130542986094952, 0.011241206899285316, 0.023232318460941315, -0.009285574778914452, 0.0002756999747361988, 0.014564311131834984, -0.0059918793849647045, -0.0008055034559220076, 0.01008694339543581, -0.016983117908239365, -0.012314599007368088, 0.00025088698021136224, -0.04619996249675751, -0.018688783049583435, 0.003369053825736046, -0.012174910865724087, -0.023261725902557373, -0.03004026971757412, 0.010498655028641224, 0.020232701674103737, 0.011939646676182747, 0.03140773996710777, 0.003313913708552718, 0.00835922360420227, -0.0030804877169430256, 0.011358839459717274, 0.004425903782248497, 0.03002556599676609, -0.014439326710999012, -0.010675103403627872, -0.016836078837513924, -0.002062235726043582, -0.0038120115641504526, -0.0416417233645916, 0.03755401447415352, 0.03031964600086212, 0.0009405963937751949, 0.019321054220199585, 0.003146655624732375, 0.004330327734351158, 0.029613854363560677, 0.01307185459882021, 0.003359863767400384, -0.021526653319597244, 0.002301175845786929, 0.009344391524791718, 0.03237820416688919, 0.0014658048748970032, 0.005293439608067274, 0.04819970950484276, 0.039347901940345764, 0.02754058875143528, 0.0007159009110182524, -0.004061979707330465, 0.051728665828704834, 0.008175423368811607, 0.03755401447415352, -0.010528063401579857, 0.026084894314408302, 0.0013251978671178222, 0.02484975755214691, 0.0022864718921482563, 0.013454158790409565, -0.03411327674984932, 0.041524093598127365, 0.012836591340601444, 0.00018173223361372948, 0.022644158452749252, 0.011542638763785362, -0.02083556540310383, -0.032789915800094604, 0.0072564235888421535, -0.015909725800156593, 0.013101262971758842, -0.0031815776601433754, 0.024026334285736084, 0.0031852538231760263, -0.010763326659798622, -0.01780654303729534, -0.019820990040898323, 0.015542126260697842, 0.038230396807193756, 0.00969728734344244, 0.021791325882077217, -0.019762175157666206, 0.016777262091636658, 0.03720111772418022, 0.020217997953295708, -0.006146271247416735, 0.02187955006957054, 0.010403078980743885, 0.015306863002479076, 0.0026228257920593023, -0.0009649498970247805, -0.037789277732372284, 0.04158290848135948, 0.0072895074263215065, -0.015542126260697842, -0.019482798874378204, -0.024599790573120117, -0.0004160772077739239, -0.011638214811682701, 0.004859671462327242, -0.012777774594724178, -0.01876230165362358, -0.017453646287322044, -0.006705023348331451, 0.00908707082271576, -0.017159566283226013, -0.020864974707365036, 0.012865998782217503, 0.013520326465368271, 0.03720111772418022, 0.026555420830845833, 0.011072111316025257, -0.0016266298480331898, -0.006929259281605482, 0.00844744686037302, 0.022305965423583984]" -How I Power a (Successful) Crypto Trading Bot With TimescaleDB,"a SQL databaseandopen source).I started to develop my crypto trading bot in mid- 2017, about six months after my first encounter with the crypto ecosystem – and I’ve continued working on it in my spare time for the last two and a half years.Editor’s Note: Felipe recently hosted aReddit AMA (Ask Me Anything)to share how he’s finally “perfected” his model, plus his experiences and advice for aspiring crypto developers and traders.About the projectI needed a bot that gave me a high-performance, scalable way to calculate technical indicators and process sentiment data in real-time.To do everything I need in terms of my technical indicators calculation, I collectcandlestick chartdata and market depth via an always-up websocket connection that tracks every Bitcoin market on theBinance exchange(~215 in total, 182 being tradeable, at this moment).The machine learning sentiment analysis started as a simple experiment to see if external news affected the market. For example: if a famous person in the crypto ecosystem tweeted that a big exchange was hacked, the price will probably fall and affect the whole market. Likewise, very good news should impact the price in a positive way. I calculated sentiment analysis scores in real-time, as soon as new data was ingested from sources like Twitter, Reddit, RSS feeds, and etc. Then, using these scores, I could determine market conditions at the moment.Now, I combine these two components with a weighted average, 60% technical indicators and 40% sentiment analysis.Felipe's TradingBot dashboard, where he tracks all ongoing trades and resultsQuick breakdown of Felipe’s results and success rates week-over-week (for the period of 10 March 2020 - 10 July 2020)Using TimescaleDBAt the beginning, I tried to save the collected data in simple files, but quickly realized that wasn’t a good way to store and process this data. I started looking for an alternative: a performant database.I went through several databases, and all of them always lacked something I wound up needing to continue my project. I tried MongoDB, InfluxDB, and Druid, but none of them 100% met my needs.Of the databases I tried,InfluxDB was a good option; however, every query that I tried to run was painful, due to their own query language (InfluxQL).As soon as my series started to grow exponentially to higher levels, the server didn't have enough memory to handle them all in real-time.",https://www.timescale.com/blog/how-i-power-a-successful-crypto-trading-bot-with-timescaledb/,505,"[-0.022843966260552406, -0.012263988144695759, 0.03245014697313309, -0.0008278192253783345, 0.06308449059724808, 0.013193855062127113, 0.006322360597550869, 0.05131106451153755, -0.022946471348404884, 0.017513707280158997, 0.033358048647642136, -0.038688305765390396, -0.027193106710910797, -0.03534957394003868, 0.07298354059457779, 0.053214725106954575, -0.014138365164399147, 0.006402899976819754, -0.06847332417964935, 0.007863596081733704, 0.03865902125835419, 0.012176127173006535, 0.010118705220520496, 0.006223516538739204, 0.020867085084319115, -0.0312200877815485, -0.026270560920238495, 0.04568793252110481, -0.03192297741770744, -0.05939431115984917, 0.03171796724200249, -0.02665129490196705, -0.007435271516442299, 0.004455305635929108, 0.009108299389481544, -0.006666484288871288, 0.026958808302879333, 0.000594894983805716, 0.05327330157160759, -0.002928713569417596, -0.030517196282744408, -0.007219279184937477, 0.02490871027112007, 0.04264207184314728, -0.0642559751868248, -0.03253800794482231, -0.03611103817820549, -0.01916843093931675, 0.02613876946270466, 0.055557698011398315, -0.09219590574502945, 0.049934566020965576, -0.020969590172171593, 0.05426906421780586, 0.06326021254062653, -0.027764204889535904, -0.05456193536520004, 0.0018981725443154573, -0.007951457053422928, 0.0036865181755274534, 0.019329510629177094, -0.0312200877815485, 0.027764204889535904, -0.0042686001397669315, -0.04791375622153282, 0.032801590859889984, -0.022975757718086243, -0.01599077694118023, -0.04188060387969017, 0.04794304072856903, 0.01339886523783207, 0.019519876688718796, 0.0412655733525753, -0.03329947218298912, 0.0037853624671697617, -0.044457871466875076, -0.0027529906947165728, 0.07257352024316788, -0.0006621638312935829, 0.0031428758520632982, -0.023415066301822662, 0.011253582313656807, -0.03596460446715355, -0.011202329769730568, 0.02012026309967041, -0.053361162543296814, -0.031454384326934814, -0.015566112473607063, -0.02227286621928215, -0.004389409441500902, -0.049524545669555664, 0.014914474450051785, 0.019812747836112976, 0.010455507785081863, 0.02029598504304886, -0.008764175698161125, -0.023649362847208977, 0.03165939450263977, -0.02329791709780693, 0.02657807618379593, -0.045951515436172485, -0.005429103039205074, 0.0032307372894138098, -0.003950102720409632, 0.03001931495964527, 0.007043556310236454, 0.03581816703081131, 0.002467441139742732, -0.0233711339533329, 0.013904067687690258, -0.06654037535190582, -0.01957845129072666, -0.02895033359527588, -0.04794304072856903, 0.009079012088477612, -0.028935691341757774, -0.007435271516442299, 0.017982302233576775, 0.012073622085154057, -0.00029310016543604434, -0.030897928401827812, 0.02300504595041275, 0.016986539587378502, -0.024088669568300247, 0.03283087909221649, -0.026665937155485153, -0.022770747542381287, -0.028247442096471786, 0.0118686119094491, -0.0002617537684272975, 0.02231679856777191, 0.02099887654185295, 0.08258972316980362, -0.0005193890538066626, -0.058984290808439255, -0.01848018355667591, -0.05134034901857376, 0.0178944393992424, -0.022243579849600792, -0.022477876394987106, -0.011934507638216019, -0.026900233700871468, 0.0036645529326051474, 0.005333919543772936, -0.05848640948534012, -0.02613876946270466, -0.02508443221449852, 0.017059756442904472, -0.04000622779130936, -0.021701768040657043, 0.006856850814074278, 0.0016181143000721931, -0.03742896020412445, -0.0042466348968446255, 0.05254112184047699, 0.03713608905673027, 0.0030458620749413967, 0.014101755805313587, -0.01804087683558464, -0.03599388897418976, -0.016488658264279366, 0.03754610940814018, -0.03763397037982941, -0.008808106184005737, -0.03983050584793091, 0.04510219022631645, -0.013772276230156422, -0.04864593222737312, -0.072280652821064, 0.0032343980856239796, 0.020530281588435173, -0.04735729843378067, 0.009305987507104874, -0.025948403403162956, -0.005366867873817682, -0.04152915999293327, 0.02263895608484745, -0.03546672314405441, -0.006739702075719833, -0.0178944393992424, -0.06255732476711273, -0.01906592585146427, 0.0028079042676836252, 0.045190051198005676, -0.02197999507188797, -0.020969590172171593, 0.004407714121043682, 0.02818886935710907, -0.01664973609149456, 0.05119391530752182, 0.01577112264931202, 0.08510841429233551, 0.01581505313515663, 0.033240899443626404, 0.015712548047304153, 0.00708382623270154, 0.058984290808439255, -6.08623304287903e-05, -0.04100199043750763, -0.007252227049320936, 0.03133723512291908, 0.07368643581867218, 0.04229062423110008, 0.008119858801364899, 0.008793462999165058, -0.024015450850129128, 0.005447407253086567, -0.03564244508743286, -0.023722579702734947, -0.028027789667248726, 0.057812806218862534, -0.015448964200913906, 0.03769254311919212, 0.00353276077657938, -0.043579258024692535, -0.02237537130713463, -0.03482240438461304, 0.008090571500360966, -0.015858983621001244, 0.026636650785803795, 0.012798478826880455, 0.021013520658016205, 0.022009283304214478, -0.03362163156270981, -0.041089851409196854, 0.033240899443626404, 0.058076392859220505, -0.013955320231616497, 0.013259750790894032, -0.02344435267150402, 0.020720649510622025, -0.004067250993102789, -0.007929491810500622, -0.03078078106045723, 0.047093715518713, 0.0037158054765313864, 0.005502320826053619, -0.04486789181828499, -0.01029442809522152, 0.004755498841404915, -0.015507538802921772, 0.035730306059122086, 0.04103127866983414, -0.013596553355455399, -0.043579258024692535, -0.004799429327249527, -0.048323776572942734, -0.07989531010389328, 0.011949151754379272, 0.03154224529862404, 0.017586925998330116, -0.006688449531793594, -0.0001284744357690215, -0.06337736546993256, -0.021555332466959953, -0.04539506137371063, -0.05775423347949982, 0.018743766471743584, -0.013413508422672749, -0.036608919501304626, -0.013625839725136757, -0.055118389427661896, -0.008339512161910534, 0.005333919543772936, -0.03063434362411499, 0.008639705367386341, -0.032918740063905716, -0.0007239414262585342, -0.03754610940814018, -0.043872129172086716, 0.02446940168738365, -0.009027759544551373, 0.032186564058065414, -0.01042622048407793, -0.01782122254371643, -0.017513707280158997, 0.023048976436257362, 0.016781529411673546, 0.0008008201257325709, -0.006743363104760647, 0.007651264313608408, -0.04806018993258476, -0.007310801185667515, 0.023605432361364365, 0.045805081725120544, 0.04152915999293327, 0.008405407890677452, 0.002590081188827753, 0.007164365611970425, -0.061034392565488815, -0.007995388470590115, -0.006208872888237238, 0.03406094014644623, -0.04583436995744705, -0.004140468779951334, -0.00042923958972096443, 0.013991929590702057, 0.006432187277823687, -0.0021343000698834658, 0.022463234141469002, 0.022038569673895836, -0.00806860625743866, -0.0021544350311160088, -0.00258275936357677, -0.037341099232435226, -0.020398490130901337, 0.004070912022143602, -0.014028538018465042, 0.0019421032629907131, 0.0077684130519628525, 0.001848750514909625, 0.02158461883664131, -0.02205321379005909, -0.008588452823460102, -0.04067983105778694, -0.008288259617984295, 0.038278285413980484, -0.036755356937646866, 0.00888864602893591, -0.07310069352388382, -0.027632413432002068, -0.0668332427740097, -0.011414661072194576, 0.005553573369979858, -0.02665129490196705, -0.026168055832386017, 0.02347363904118538, -0.008910611271858215, 0.050959616899490356, -0.026665937155485153, 0.03599388897418976, -0.02424974925816059, 0.011751463636755943, -0.04911452904343605, -0.015829697251319885, -0.0478258952498436, -0.007673229556530714, 0.013662449084222317, 0.01909521222114563, 0.018992707133293152, -0.03288945555686951, -0.008280937559902668, -0.03786826878786087, 0.0031501976773142815, 0.061502985656261444, -0.011378052644431591, -0.031454384326934814, 0.03681392967700958, 0.015829697251319885, -0.01316456776112318, -0.048616647720336914, 0.0006113689742051065, 0.05224825069308281, -0.05119391530752182, 0.011744141578674316, -0.026446284726262093, -0.034236662089824677, 0.02796921506524086, -0.059277161955833435, -0.012417745776474476, -0.018392320722341537, 0.04852878302335739, 0.030839353799819946, 0.036023177206516266, -0.008119858801364899, 0.0002805158437695354, -0.029770374298095703, -0.020222768187522888, -0.03274301812052727, -0.042817793786525726, 0.0239129476249218, 0.015683261677622795, -0.036198899149894714, -0.01071909163147211, -0.02545052208006382, 0.03142509609460831, 0.04155844449996948, 0.028979621827602386, -0.02826208621263504, 0.08264829963445663, 0.0704648494720459, 0.026607362553477287, -0.011341443285346031, 0.006556657608598471, 0.002939696190878749, 0.07971958816051483, 0.04024052619934082, 0.005531607661396265, -0.045219339430332184, 0.046683695167303085, 0.02063278667628765, -0.05046173557639122, -0.006077080965042114, 0.013713701628148556, -0.03004860132932663, 0.006351647898554802, 0.0288478285074234, 0.029594650492072105, 0.04940740019083023, 0.004532184451818466, 0.007826986722648144, -0.018377678468823433, -0.01613721251487732, -0.027515264227986336, 0.0007921255310066044, 0.04205632582306862, -0.023136837407946587, 0.0182605292648077, -0.02424974925816059, -0.023283272981643677, 0.0018277002964168787, -0.02508443221449852, 0.03713608905673027, -0.037253238260746, -0.02107209526002407, -0.01760156825184822, -0.010550690814852715, 0.011041250079870224, 0.02960929460823536, 0.06167870759963989, -0.007892883382737637, -0.03253800794482231, 0.005041048396378756, 0.0005116096581332386, -0.01574183627963066, 0.01672295480966568, 0.06706754118204117, -0.014914474450051785, -0.009335274808108807, -0.070113405585289, -0.013991929590702057, -0.007193652912974358, -0.02095494605600834, 0.007318123243749142, -0.045512210577726364, -0.035906028002500534, -0.0013096841285005212, 0.006121011450886726, -0.00482871662825346, 0.018011588603258133, -0.006238160189241171, 0.00798074435442686, 0.016122568398714066, 0.04630296304821968, -0.044604308903217316, 0.0202666986733675, -0.0024601195473223925, -0.015756478533148766, -0.009723328985273838, -0.003459542989730835, 0.014533741399645805, -0.06630607694387436, -0.003679196583107114, 0.00104060850571841, -0.00111840246245265, -0.07591225951910019, 0.058369264006614685, 0.003080640686675906, 0.04896809160709381, 0.03666749596595764, -0.026753798127174377, 0.020383846014738083, -0.042114902287721634, 0.0031373845413327217, 0.013977285474538803, -0.06431455165147781, -0.003719466272741556, 0.023239342495799065, 0.027500620111823082, -0.021716412156820297, 0.028496382758021355, -0.019051281735301018, -0.023561501875519753, -0.01738191582262516, -0.04422357678413391, 0.01708904467523098, 0.026885591447353363, -0.0007880069897510111, -0.0037267880979925394, -0.0003519032325129956, 0.014855899848043919, 0.017835866659879684, -0.04516076296567917, 0.030077889561653137, 0.003946441691368818, 0.025318728759884834, -0.009781903587281704, 0.014160330407321453, 0.0070472173392772675, 0.01460695918649435, -5.8803077990887687e-05, 0.004707907326519489, 0.08376120775938034, -0.017938371747732162, 0.032215848565101624, -0.026973452419042587, -0.05552840977907181, -0.03696036711335182, 0.015331815928220749, -0.01763085648417473, 0.058662135154008865, 0.004909256007522345, -0.018158024176955223, 0.05136963725090027, -0.02916998788714409, -0.011480557732284069, -0.010880171321332455, -0.0034998126793652773, 0.019373441115021706, -0.008295581676065922, 0.02288789674639702, 0.01009673997759819, 0.02435225434601307, 0.022082500159740448, 0.015976132825016975, 0.001997016603127122, -0.021277103573083878, 0.005220431834459305, -0.028789255768060684, -0.0033918165136128664, -0.014292122796177864, -0.01066051796078682, -0.02899426408112049, -0.01752835139632225, -0.007497506681829691, -0.009869764558970928, -0.050256725400686264, -0.009013116359710693, -0.032918740063905716, -0.030224325135350227, 0.035876743495464325, 0.015126805752515793, -0.008053962141275406, 0.0031080972403287888, -0.03271372988820076, 0.022448590025305748, -0.037663258612155914, -0.05315615236759186, -0.052746132016181946, -0.005253380164504051, 0.00754143763333559, 0.025611599907279015, 0.03171796724200249, 0.02310755103826523, -0.012922949157655239, 0.010880171321332455, 0.0017261105822399259, 0.01635686494410038, -0.02362007461488247, 0.024806205183267593, 0.038395434617996216, -0.016093282029032707, 0.017337985336780548, 0.022141074761748314, -0.0008085995214059949, 0.006421204656362534, 0.00434547895565629, -0.01792372763156891, 0.00817843247205019, 0.006952033843845129, -0.016093282029032707, -0.02427903562784195, 0.025333372876048088, 0.02486477792263031, -0.011019284836947918, -0.01833374798297882, -0.0011751463171094656, -0.022668244317173958, -0.05280470848083496, 0.024235105141997337, 0.007651264313608408, -0.018787698820233345, -0.006952033843845129, 0.011356087401509285, 0.0029726442880928516, 0.010968032293021679, -0.06642322242259979, -0.0178944393992424, 0.0017297714948654175, -0.019109856337308884, -0.0008790717110969126, -0.009452423080801964, -0.03567173331975937, 0.033650919795036316, -0.007160704582929611, 0.05204324051737785, -0.03889331594109535, 0.024615837261080742, -0.005191144999116659, -0.0033625292126089334, 0.007783056236803532, -0.00885203666985035, -0.03745824843645096, -0.010162636637687683, 0.02833530493080616, -0.0025790983345359564, 0.023415066301822662, -0.006377273704856634, -0.02293182723224163, 0.011465913616120815, 0.029155343770980835, -0.022843966260552406, -0.03862973302602768, -0.013911389745771885, -0.01591755822300911, 0.0215406883507967, 0.0313958115875721, -0.008932576514780521, 0.0070289126597344875, -0.03300660103559494, 0.00018121415632776916, 0.017367271706461906, -0.009064368903636932, -0.05593843013048172, -0.04524862393736839, 0.009979591704905033, -0.05552840977907181, -0.00168858643155545, 0.014387305825948715, -0.0054766945540905, -0.029990026727318764, -0.017323341220617294, -0.012234700843691826, -0.028642818331718445, 0.00533025898039341, 0.029008908197283745, 0.028496382758021355, 0.0007861765916459262, -0.04349139705300331, 0.017425846308469772, 0.017030470073223114, 0.0317765437066555, -0.0009321546531282365, -0.02960929460823536, -0.010045487433671951, 0.006487100850790739, 0.025465164333581924, 0.018890202045440674, -0.0215406883507967, -0.01752835139632225, 0.01484125666320324, 0.01013334933668375, -0.027544552460312843, -0.06173728406429291, 0.008193076588213444, -0.013420830480754375, -0.020867085084319115, 0.029111413285136223, -0.006164942402392626, -0.029008908197283745, -0.011810037307441235, -0.00019951861759182066, 0.025728749111294746, 0.015053587965667248, 0.034558821469545364, -0.03584745526313782, 0.001207179157063365, -0.025787323713302612, 0.0028042432386428118, 0.012058977968990803, -0.012710616923868656, 0.01508287526667118, -0.0038109885063022375, 0.015200023539364338, -0.045629359781742096, -0.0005994710954837501, -0.010777666233479977, 0.023356491699814796, 0.020178837701678276, 0.019842034205794334, -0.017440490424633026, 0.04694727808237076, -0.009298665449023247, 0.0007010608096607029, 0.025743393227458, -0.0010799631709232926, -0.005707330536097288, -0.042700644582509995, 0.006432187277823687, 0.029052838683128357, -0.022507164627313614, 0.013149924576282501, -0.031571533530950546, 0.0023576144594699144, 0.013662449084222317, 0.009232769720256329, 0.04132414981722832, 0.00370116182602942, 0.03034147247672081, 0.014284800738096237, 0.017425846308469772, -0.005004439502954483, 0.011121789924800396, -0.015902914106845856, 0.01018460188060999, -0.0089472196996212, 0.019842034205794334, 0.05860355868935585, -0.007072843611240387, -0.03690179064869881, 0.014790004119277, -0.022038569673895836, -0.04190989211201668, -0.03570101782679558, -0.03373878076672554, 0.004415035713464022, 0.029448214918375015, -0.01339886523783207, 0.027764204889535904, -0.015800410881638527, -0.041060563176870346, 0.050373874604701996, -0.01767478697001934, 0.025040501728653908, -0.017806578427553177, 0.007775734644383192, -0.0025882506743073463, 0.02914069965481758, -0.004447984043508768, -0.0485580712556839, -0.011121789924800396, 0.023678649216890335, -0.029931453987956047, 0.023239342495799065, 0.04413571581244469, -0.031600821763277054, 0.013713701628148556, 0.023605432361364365, -0.00870560109615326, -0.0028500044718384743, 0.02110138162970543, 0.009730651043355465, 0.040474820882081985, -0.01509751845151186, 0.029052838683128357, -0.030282899737358093, -0.03575959429144859, -0.0010360324522480369, -0.03537886217236519, -0.013340290635824203, 0.008771497756242752, -0.004330835305154324, -0.04721086472272873, -0.0125056067481637, 0.016444727778434753, -0.05462050810456276, 0.017865153029561043, 0.053946904838085175, 0.036755356937646866, 0.005601164884865284, -0.008075927384197712, 0.015112162567675114, 0.011458592489361763, 0.03379735350608826, -0.017147617414593697, -0.008105214685201645, -0.020764579996466637, -0.01792372763156891, -0.012322562746703625, 0.019695598632097244, 0.004107520915567875, 0.0554991215467453, 0.0047225505113601685, 0.05057888478040695, -0.012652043253183365, 0.028613531962037086, -0.013245107606053352, -0.0006003862945362926, -0.008991151116788387, -0.05063745751976967, 0.009247412905097008, -0.010404255241155624, 0.013369577936828136, 0.010997319594025612, 0.03373878076672554, -0.02439618483185768, -0.003521778155118227, -0.007036234252154827, 0.029404284432530403, 0.012556859292089939, 0.012637399137020111, -0.01741120219230652, -0.027617769315838814, -0.020940301939845085, 0.0018029892817139626, -0.018450895324349403, 0.020793866366147995, 0.012425067834556103, -0.01077034417539835, -0.016444727778434753, -0.025333372876048088, 0.009013116359710693, -0.012381136417388916, -0.014189617708325386, 0.029931453987956047, 0.020647430792450905, 0.011238938197493553, -0.07462362200021744, -0.043725695461034775, 0.015932202339172363, -0.012791156768798828, -0.01239578053355217, -0.017337985336780548, -0.009357240051031113, 0.02464512549340725, 0.0016785189509391785, -0.016766885295510292, -0.00942313577979803, -0.02197999507188797, -0.018201954662799835, 0.00545838987454772, 0.004997117444872856, 0.015112162567675114, 0.013618518598377705, -0.009584215469658375, 0.013098672032356262, 0.03716537728905678, -0.021496757864952087, 0.016239717602729797, -0.035613156855106354, 0.0489388033747673, 0.011326800100505352, 0.010946067050099373, -0.036931078881025314, 0.022551095113158226, 0.016971895471215248, -0.002613876946270466, 0.0006269277655519545, -0.009071690030395985, 0.016620449721813202, 0.01818731240928173, -0.026490215212106705, 0.010872849263250828, -0.024191174656152725, 0.006479778792709112, 0.004799429327249527, 0.01618114300072193, -0.007072843611240387, -0.016810815781354904, 0.03195226565003395, -0.018304459750652313, 0.027075957506895065, 0.01480464730411768, -0.000833310536108911, 0.04583436995744705, -0.008478625677525997, 0.007775734644383192, 0.016342222690582275, 0.01380156259983778, 0.006472457200288773, -0.012644721195101738, -0.015976132825016975, 0.01566861756145954, -0.034558821469545364, 0.024762272834777832, 0.003313107183203101, -0.012600790709257126, -0.0002654146810527891, -0.0021489437203854322, 0.0028701394330710173, -0.052453260868787766, -0.0007033488946035504, 0.0056670610792934895, -0.007709838449954987, 0.002465610858052969, -0.03078078106045723, 0.015361103229224682, -0.020530281588435173, 0.030575770884752274, 0.02618269994854927, -0.008764175698161125, -0.0093133095651865, -0.000705636921338737, -0.007944135926663876, -0.015302528627216816, 0.02139425277709961, -0.052453260868787766, 0.015170736238360405, -0.018538758158683777, -0.006845868192613125, -0.01818731240928173, -0.019651668146252632, -0.018421608954668045, 0.00513989245519042, 0.018524114042520523, 0.021994639188051224, 0.011385373771190643, 0.030985789373517036, -0.010938744992017746, -0.0009088164661079645, 0.01224934495985508, 0.03947905823588371, 0.003069658065214753, -0.009159551933407784, 0.01978345960378647, 0.038073278963565826, 0.003170332405716181, 0.03107365220785141, -0.01172217633575201, -0.013596553355455399, 0.010470150969922543, -0.02523086778819561, 0.0022715835366398096, -0.0031685021240264177, 0.0017892610048875213, 0.017045114189386368, -0.02329791709780693, 0.009833156131207943, -0.025758035480976105, 0.04360854625701904, 0.010162636637687683, 0.03227442502975464, 0.04073840752243996, 0.002745669102296233, -0.01975417323410511, 0.024879422038793564, -0.0016382491448894143, 0.035583872348070145, -0.008478625677525997, -0.016195787116885185, 0.0004910171264782548, -0.008566487580537796, -0.0073950020596385, 0.027720274403691292, 0.006113689858466387, 0.03848329558968544, -0.02092565968632698, -0.01106321532279253, 0.05236539989709854, 0.0049897958524525166, 0.031015077605843544, 0.0044736098498106, 0.0007285175379365683, 0.03520313650369644, -0.014482488855719566, 0.027544552460312843, 0.019724886864423752, -0.016093282029032707, 0.05078389495611191, 0.021350322291254997, -0.007812343537807465, 0.02085244096815586, -0.017733361572027206, -0.031747255474328995, 0.043872129172086716, -0.026299849152565002, 0.024074025452136993, -0.0028024129569530487, -0.007135078776627779, 0.011744141578674316, 0.022800035774707794, 0.017909083515405655, 0.011846646666526794, -0.0343245230615139, -0.03341662138700485, -0.02066207490861416, -0.015434321016073227, 0.023312561213970184, 0.0368725061416626, 0.023532213643193245, -0.012037012726068497, 0.010667839087545872, -0.005253380164504051, -0.0004997117794118822, -0.01524395402520895, -0.019739529117941856, 0.03406094014644623, -1.2212506590003613e-05, 0.0033076158724725246, 0.0006333343335427344, -0.022595025599002838, 0.018158024176955223, 0.021159956231713295, 0.01317921094596386, 0.013010810129344463, -0.0029616616666316986, 0.019885964691638947, 0.012908305041491985, -0.04082626849412918, 0.0071094525046646595, 0.038102563470602036, -0.002789599820971489, -0.01877305470407009, -0.04117771238088608, 0.015214667655527592, -0.037985414266586304, -0.011480557732284069, 0.018524114042520523, -0.010653195902705193, -0.006959355901926756, 0.05576270818710327, -0.0009646450635045767, 0.0014076129300519824, 0.004389409441500902, 0.04144129902124405, -0.03728252276778221, -0.020076332613825798, -0.016737598925828934, 0.0017215345287695527, 0.0063479868695139885, 0.009672076441347599, 0.01869983598589897, 0.019519876688718796, -0.0235468577593565, -0.01446052361279726, -0.031454384326934814, 0.018978064879775047, -0.003450390649959445, 0.011165720410645008, -0.04006480053067207, -0.007797699887305498, -0.015522181987762451, 0.00951099768280983, 0.014819290488958359, 0.031307946890592575, -0.0529511421918869, -0.006366291083395481, -0.02779349312186241, -0.02471834234893322, -0.0025351676158607006, -0.018348390236496925, -0.020105618983507156, 0.03206941485404968, 0.024981927126646042, 0.005388833116739988, -0.013267072848975658, -0.010169957764446735, -0.008280937559902668, 0.020281340926885605, 0.03350448235869408, 0.003501643193885684, 0.009386527352035046, 0.0023045316338539124, 0.007222939748317003, -0.014482488855719566, 0.022082500159740448, -0.008119858801364899, 0.022214293479919434, -0.018670549616217613, 0.020427778363227844, -0.018743766471743584, -0.014943760819733143, -0.003084301482886076, 0.021277103573083878, -0.003271006979048252, -0.024264391511678696, 0.004261278547346592, -0.001160502783022821, 0.0055462513118982315, 0.026592720299959183, 0.053507596254348755, 0.0250112134963274, -0.008976507000625134, 0.028101006522774696, 0.037253238260746, 0.0037487533409148455, 0.0009001218131743371, 0.0019073247676715255, 0.00899847224354744, 0.0030037618707865477, -0.003950102720409632, -0.01139269582927227, -0.02559695765376091, -0.013157245703041553, 0.002718212315812707, -0.003752414369955659, 0.02581661008298397, -0.005414459388703108, 0.026241274550557137, -0.002110504312440753, 0.014336053282022476, 0.0017910914029926062, -0.003080640686675906, -0.02055956982076168, -0.03315303847193718, -0.005352224223315716, -0.0042466348968446255, -0.02588982880115509, -0.009196160361170769, 0.016093282029032707, 0.019724886864423752, -0.012315240688621998, -0.04114842787384987, 0.0041038598865270615, -0.02643164061009884, 0.009928339160978794, -0.009532962925732136, 0.007468219846487045, 0.012410423718392849, 0.004799429327249527, 0.014153008349239826, -0.011641636490821838, 0.016342222690582275, -0.0021068432833999395, -0.005055692046880722, 0.02080851048231125, -0.015185380354523659, -0.007369375787675381, 0.008786140941083431, 0.015566112473607063, 0.006523709744215012, -0.015580756589770317, -0.011561096645891666, -0.019710242748260498, -0.03880545496940613, -0.005447407253086567, -0.025348016992211342, -0.015478251501917839, 0.013142602518200874, 0.03168868273496628, 0.04190989211201668, -0.0034888300579041243, -0.0115903839468956, 0.008588452823460102, -0.008207719773054123, 0.012703295797109604, 0.0178944393992424, 0.019988469779491425, 0.016986539587378502, -0.005989219527691603, 0.05300971493124962, -0.019329510629177094, -0.027222393080592155, 0.020222768187522888, 0.021306391805410385, -0.0014973048819229007, 0.025743393227458, 0.025743393227458, -0.0002894392819143832, -0.01921236142516136, -0.004667637404054403, -0.03274301812052727, 0.005403476767241955, -0.0014405610272660851, -0.006014845799654722, 0.013721023686230183, 0.0028024129569530487, 0.01349404826760292, 0.015112162567675114, 0.013274394907057285, 0.04545363411307335, -0.01168556697666645, -0.01745513267815113, 0.04557078331708908, 0.029667869210243225, -0.004524862393736839, -0.022873252630233765, 0.07052342593669891, -0.0039025109726935625, -0.02000311389565468, 0.010763022117316723, 0.024776916950941086, 0.002948848530650139, -0.003018405521288514, 0.00468228105455637, -0.007856274023652077, 0.02288789674639702, -0.0014698480954393744, -0.02136496640741825, 0.001462526386603713, 0.030107175931334496, 0.017660142853856087, -0.03183511644601822, -0.026900233700871468, 0.022390015423297882, -0.016371509060263634, -0.026124125346541405, 0.003957424312829971, 0.01446052361279726, 0.006952033843845129, 0.008588452823460102, -0.031161513179540634, 0.0013993759639561176, 0.011692889034748077, -0.029770374298095703, -0.012271310202777386, 0.044897180050611496, 0.025318728759884834, -0.04425286129117012, -0.01365512702614069, 0.06167870759963989, -0.0008726651431061327, -0.011678245849907398, -0.03107365220785141, 0.05131106451153755, -0.02694416604936123, -0.01997382752597332, 0.009349917992949486, 0.027339542284607887, -0.006424865685403347, -0.010645873844623566, -0.02723703719675541, 0.013237785547971725, 0.0007381273317150772, 0.01188325509428978, -0.03625747561454773, -0.016840104013681412, 0.004074573051184416, 0.010396933183073997, 0.02219964936375618, -0.012029691599309444, 0.0040635899640619755, 0.029082126915454865, 0.03379735350608826, 0.013420830480754375, 0.03356305882334709, 0.013289038091897964, -0.0019421032629907131, 0.0026065551210194826, -0.02650485746562481, 0.012717938981950283, -0.0011193177197128534, -0.03151295706629753, 0.0202666986733675, -0.004466288257390261, 0.006593266502022743, -0.030282899737358093, -0.03534957394003868, 0.017879797145724297, 0.0004230618360452354, 0.02953607775270939, 0.02530408650636673, 0.0365210585296154, 0.017542995512485504, 0.014394627884030342, -0.00013602501712739468, -0.0011842985404655337, -0.02212643064558506, 0.021526044234633446, 0.0020006773993372917, -0.013325647450983524, -0.023532213643193245, -0.019959183409810066, 0.017689431086182594, 0.021774984896183014, 0.012586146593093872, 0.019812747836112976, -0.02088172733783722, 0.021965352818369865, 0.01872912421822548, 0.02095494605600834, -0.004678620025515556, -0.006871494464576244, -0.010169957764446735, -0.017176905646920204, 0.003186806570738554, -0.042261335998773575, 0.00040521498885937035, 0.017660142853856087, -0.032479435205459595, -0.01106321532279253, 0.002174569759517908, -0.013940677046775818, -0.024381540715694427, 0.006860511843115091, -0.003972067963331938, -0.017616212368011475, -0.0031721629202365875, -0.0011129111517220736, 0.02672451175749302, 0.001945764059200883, 0.01887555979192257, 0.024044739082455635, 0.003510795533657074, -0.018934134393930435, -0.0304879080504179, 0.022829322144389153, 0.009672076441347599, 0.009591537527740002, -0.011114467866718769, -0.0022001960314810276, -0.013794241473078728, 0.024586550891399384, 0.017045114189386368, -0.029697155579924583, -0.01694260910153389, -0.018816985189914703, 0.03476383164525032, 0.011187685653567314, 0.02975573018193245, 0.006391917355358601, 0.02252180688083172, 0.0049788132309913635, -0.0018743766704574227, -0.015141449868679047, -0.03019503690302372, 0.0011129111517220736, -0.05447407439351082, 0.0076146554201841354, 0.03681392967700958, -0.019666312262415886, 0.053771182894706726, -0.019519876688718796, 0.01931486651301384, 0.004945864900946617, 0.005747600458562374, 0.035906028002500534, -0.007805021945387125, -0.023605432361364365, 0.02168712392449379, -0.012205414474010468, -0.0031721629202365875, -0.030224325135350227, 0.019109856337308884, -0.00025534722954034805, 0.0001671425998210907, -0.008354155346751213, 0.01080695353448391, 0.010741056874394417, -0.013003488071262836, -0.04677155613899231, 0.020398490130901337, 0.009847799316048622, 0.002288057468831539, -0.001295955735258758, 0.009342596866190434, 0.02526015415787697, 0.028203511610627174, -0.006033150013536215, 0.02041313424706459, -0.021628549322485924, 0.048294488340616226, -0.01686939038336277, -0.006179585587233305, -0.02914069965481758, -0.008097893558442593, 0.0038439366035163403, -0.02315148152410984, -0.014248191379010677, 0.006571301259100437, 0.0199006088078022, 0.011861289851367474, -0.0032966332510113716, 0.003946441691368818, -0.004821394570171833, -0.019915252923965454, 0.005531607661396265, 0.00465665478259325, -0.01153913140296936, -0.022023925557732582, 0.003935459069907665, 0.03163010627031326, 0.024747630581259727, 0.016254359856247902, 0.01650330051779747, -0.03186440467834473, 0.02457190677523613, -0.008874001912772655, 0.00042923958972096443, -0.026226630434393883, -0.010645873844623566, -0.005831800866872072, 0.02965322509407997, 0.001468932954594493, -0.014255513437092304, 0.016620449721813202, 0.042817793786525726, 0.014160330407321453, 0.013435473665595055, 0.0009692211751826108, 0.017323341220617294, 0.01796765811741352, -0.02044242061674595, -0.027720274403691292, 0.006223516538739204, 0.0013261581771075726, -0.009079012088477612, -0.0006392832729034126, -0.007233922835439444, 0.0019585771951824427, -0.025128362700343132, -0.017953014001250267, 0.009672076441347599, 0.031102938577532768, -0.02168712392449379, -0.0177040733397007, -0.009906373918056488, -0.0018103111069649458, -0.013391543179750443, -0.021569976583123207, 0.04158773273229599, 0.01177342887967825, -0.014497132040560246, -0.02212643064558506, -0.048587359488010406, 0.019402727484703064, -0.016371509060263634, 0.011480557732284069, -0.01745513267815113, -0.005883053410798311, 0.016679024323821068, 0.046390824019908905, 0.02994609624147415, 0.02997538447380066, 0.012461676262319088, 0.016415439546108246, -0.006531031336635351, -0.013516013510525227, 0.023063620552420616, -0.008617740124464035, -0.005319275893270969, -0.0018295308109372854, -0.011648958548903465, -0.02880389802157879, 0.0023576144594699144, -0.016927964985370636, -0.02252180688083172, 0.000987525680102408, 0.012732582166790962, 0.019153786823153496, -0.03406094014644623, -0.008258972316980362, 0.012747226282954216, 0.023751867935061455, 0.0006292157922871411, -0.03370949253439903, 0.02332720346748829, -0.009759938344359398, 0.007285174913704395, 0.0215406883507967, -0.008405407890677452, -0.011129111982882023, -0.006992303766310215, 0.017191549763083458, -0.0070472173392772675, 0.0313958115875721, -0.01669366843998432, -0.0025040500331670046, -0.00998691376298666, -0.04082626849412918, -0.022067857906222343, 0.013193855062127113, -0.03180582821369171, -0.030751492828130722, -0.024117955937981606, 0.0178944393992424, 0.030956503003835678, 0.005154536105692387, 0.025567669421434402, 0.005970914848148823, 0.03444167226552963, 0.010645873844623566, -0.003920815419405699, 0.031015077605843544, 0.045951515436172485, -0.020076332613825798, -0.010865527205169201, -0.004945864900946617, -0.006578622851520777, 0.014387305825948715, -0.032332997769117355, 0.02836459130048752, 0.029521433636546135, 0.020823154598474503, 0.010345680639147758, 0.010206567123532295, 0.008610418066382408, 0.01946130208671093, 0.0037450925447046757, 0.013699057511985302, -0.021818917244672775, 0.013113315217196941, -0.0010845392243936658, 0.01077034417539835, 0.043139953166246414, -0.010360324755311012, 0.031893692910671234, 0.02124781720340252, 0.013764954172074795, 0.010909458622336388, 0.004030642099678516, 0.020940301939845085, -0.01894877664744854, 0.015522181987762451, -0.014043182134628296, 0.00832486804574728, 0.006406561005860567, 0.019256291911005974, 0.02241930365562439, 0.017074400559067726, -0.043139953166246414, 0.03245014697313309, 0.009342596866190434, 0.015170736238360405, 0.020896371454000473, 0.015258598141372204, -0.024732986465096474, -0.03701893985271454, -0.015756478533148766, -0.013625839725136757, -0.021496757864952087, -0.009540284983813763, 0.0003226161061320454, 0.009847799316048622, -0.011151077225804329, -0.030107175931334496, -0.029858235269784927, 0.022141074761748314, 0.036023177206516266, 0.020749935880303383, 0.01916843093931675, -0.01745513267815113, 0.015434321016073227, 0.013171889819204807, 0.02613876946270466, -0.0343245230615139, 0.019915252923965454, 0.0012922949390485883, 0.022551095113158226, -0.011487878859043121, 0.018963420763611794, -0.03180582821369171, 0.03851258382201195, 0.004092877265065908, -0.020984232425689697, -0.030458621680736542, -0.007995388470590115, -0.006472457200288773, 0.013208498246967793, 0.0012355510843917727, 0.005425442010164261, -0.009035081602633, -0.03124937415122986, -0.015653973445296288, 0.024074025452136993, -0.009503675624728203, -0.01396996434777975, 0.03004860132932663, -0.011041250079870224, 0.02887711673974991, 0.03268444538116455, 0.0241033136844635, -0.013091349974274635, -0.029155343770980835, 0.005447407253086567, 0.0048982733860611916]" -How I Power a (Successful) Crypto Trading Bot With TimescaleDB,"This is because the currentInfluxDB TSMstorage engine requires more and more allocated memory for each series. I have a large number of unique metrics, so the process ran out of available memory quickly.I handle somewhat large amounts of data every day, especially on days with many market movements.On average, I’m ingesting around 20k records/market, or 3.6 million total records, per day (20k*182 markets).This is where TimescaleDB started to shine for me. It gave me fast real-time aggregations, built-in time-series functions, high ingestion rates – and it didn’t require elevated memory usage to do all of this.Editor’s Note:For more about how Flux compares to SQL and deciding which one is right for you,see our blog post exploring the strengths and weaknesses of each.To learn more about how TimescaleDB real-time aggregations work (as well as how they compare to vanilla PostgreSQL), seethis blog post and mini-tutorial.In addition to this raw market data, a common use case for me is to analyze the data in different time frames (e.g., 1min, 5min, 1hr, etc.). I maintain these records in a pre-computed aggregate to increase my query performance and allow me to make faster decisions about whether or not to enter a position.For example, here’s a simple query that I use a lot to follow the performance of my trades on a daily or weekly basis (daily in this case):SELECT time_group, total_trades, positive_trades, negative_trades, ROUND(100 * (positive_trades / total_trades), 2) AS success_rate, profit as gross_profit, ROUND((profit - (total_trades * 0.15)), 2) AS net_profit FROM ( SELECT time_bucket('1 day', buy_at::TIMESTAMP)::DATE AS time_group, COUNT(*) AS total_trades, SUM(CASE WHEN profit > 0 THEN 1 ELSE 0 END)::NUMERIC AS positive_trades, SUM(CASE WHEN profit <= 0 THEN 1 ELSE 0 END)::NUMERIC AS negative_trades, ROUND(SUM(profit), 2) AS profit FROM trade GROUP BY time_group ORDER BY time_group ) T ORDER BY time_groupAnd, I often use this function tomeasure market volatility, decomposing the range of a market pair in a period:CREATE OR REPLACE FUNCTION tr(_symbol TEXT, _till INTERVAL) RETURNS TABLE(date TIMESTAMP WITHOUT TIME ZONE, result NUMERIC(9,8), percent NUMERIC(9,8)) LANGUAGE plpgsql AS $$ DECLARE BEGIN RETURN QUERY WITH candlestick AS ( SELECT * FROM candlestick c WHERE c.symbol = _symbol AND c.time > NOW() - _till ) SELECT d.time, (GREATEST(a, b, c)) :: NUMERIC(9,8) as result, (GREATEST(a, b, c) / d.close) :: NUMERIC(9,8) as percent FROM ( SELECT",https://www.timescale.com/blog/how-i-power-a-successful-crypto-trading-bot-with-timescaledb/,615,"[-0.02034621872007847, -0.0015495053958147764, 0.06025991961359978, 0.015433109365403652, 0.06932156533002853, 0.033867888152599335, 0.011213782243430614, -0.004675948992371559, 0.012523472309112549, 0.01769852079451084, 0.03233873471617699, -0.010109394788742065, 0.019822342321276665, -0.03517049923539162, 0.06399784982204437, 0.06297841668128967, 0.0011371298460289836, -0.009196151047945023, -0.04615774005651474, 0.06099617853760719, -0.011100511997938156, -0.01489507406949997, -0.0021893070079386234, 0.009097038768231869, 0.00251849927008152, -0.017344549298286438, -0.022611629217863083, 0.026137175038456917, 0.034037794917821884, -0.061449259519577026, 0.03392452374100685, -0.029167160391807556, -0.028515854850411415, -0.048394832760095596, 0.009139515459537506, 0.018194077536463737, 0.04754530265927315, 0.054426487535238266, 0.016353432089090347, -0.022441722452640533, 0.0012548250379040837, 0.027553055435419083, -0.004927267786115408, 0.008226271718740463, 0.0022406326606869698, -0.01100847963243723, -0.037039462476968765, -0.042901210486888885, -0.024324845522642136, 0.039871226996183395, -0.04477017745375633, 0.01481012161821127, -0.03344312310218811, 0.02031790092587471, 0.040550850331783295, -0.03808721527457237, -0.007964333519339561, 0.04714885726571083, 0.015631332993507385, -0.04026767238974571, 0.019213512539863586, -0.07385238260030746, 0.04833819717168808, -0.00836785975843668, -0.03282013535499573, 0.041202154010534286, -0.004435249138623476, 0.07107725739479065, -0.025882314890623093, 0.04864969104528427, 0.0038299597799777985, 0.008551924489438534, 0.036558061838150024, -0.019355101510882378, 0.027397308498620987, -0.026986703276634216, -0.018434777855873108, 0.02673184499144554, 0.015928667038679123, 0.002162759192287922, 0.021252382546663284, 0.010767779313027859, -0.014321641996502876, 0.05323714762926102, 0.03984290733933449, -0.026363715529441833, -0.04952753707766533, -0.02550002746284008, -0.0020211709197610617, 0.007355504669249058, -0.05873076990246773, 0.053265463560819626, 0.01878874935209751, -0.0007159051019698381, 0.01513577438890934, -0.00623695831745863, 0.018109126016497612, -0.0055856527760624886, -0.03936150670051575, 0.040041130036115646, 0.005529017653316259, 0.006198021583259106, 0.015758762136101723, 0.0028972476720809937, 0.003844118444249034, 0.020360376685857773, 0.01351458951830864, -0.006789152044802904, -0.021294858306646347, 0.004081278573721647, -0.03279181942343712, -0.00670773908495903, -0.026207968592643738, 0.001378714689053595, -0.0025804440956562757, -0.0025061103515326977, -0.04666745662689209, 0.022285975515842438, 0.017882583662867546, 0.022753216326236725, -0.046072788536548615, -0.023645222187042236, -0.013288049027323723, 0.004375074058771133, 0.020742665976285934, -0.0340944305062294, 0.008672274649143219, -0.03984290733933449, -0.021323176100850105, -0.012820808216929436, 0.05640872195363045, -0.01404554583132267, 0.03378293290734291, -0.018038330599665642, -0.03848366066813469, -0.005656446795910597, -0.012870363891124725, 0.02853001467883587, -0.02826099656522274, -0.0012424361193552613, -0.017202962189912796, 0.02574072778224945, 0.043382611125707626, 0.01908608339726925, -0.031036123633384705, 0.034547511488199234, -0.028416743502020836, 0.06450756639242172, 0.003169804811477661, 0.01898697204887867, 0.019029447808861732, 0.024494752287864685, 0.003840578719973564, -0.01629679650068283, 0.07968581467866898, 0.0017981695709750056, 0.04349588230252266, 0.025202691555023193, 0.005589192733168602, -0.04168355464935303, -0.004130834713578224, 0.049923986196517944, -0.033188264816999435, 0.02004888281226158, -0.02331957034766674, 0.04162691906094551, -0.05850422754883766, -0.04360915347933769, -0.07034099847078323, 0.0029574227519333363, -0.011525276117026806, -0.07209669053554535, -0.025046944618225098, -0.059636931866407394, 0.014059703797101974, -0.05606891214847565, -0.060146648436784744, -0.017769314348697662, 0.04151364788413048, 0.0029397241305559874, -0.06773577630519867, 0.009889933280646801, -0.00824751053005457, 0.016268478706479073, 0.019595801830291748, 0.0033998857252299786, -0.06122272089123726, 0.025046944618225098, 0.025103580206632614, 0.03293340653181076, -0.0243673212826252, 0.05816441401839256, 0.006024576257914305, 0.029138842597603798, 0.0002251030527986586, -0.03590675815939903, 0.02928043156862259, 0.023985033854842186, -0.08025217056274414, 0.0439772829413414, 0.055757418274879456, -0.0013680956326425076, 0.023645222187042236, -0.0388517901301384, -0.020034724846482277, 0.004307819530367851, -0.009281103499233723, 0.006173243746161461, -0.03256527706980705, -0.009118277579545975, 0.020289583131670952, 0.02242756448686123, 0.026887591928243637, -0.029478654265403748, -0.038710203021764755, 0.004980363417416811, -0.0415985994040966, -0.021493082866072655, -0.01673571951687336, 0.016608290374279022, 0.04751698672771454, 0.04966912791132927, -0.003394576022401452, -0.01891617849469185, -0.03313162922859192, 0.0760045200586319, 0.013769448734819889, -0.03395283967256546, 0.00029534404166042805, 0.007851063273847103, -0.0017840107902884483, -0.008672274649143219, 0.011227941140532494, -0.0432976596057415, 0.013903956860303879, 0.04060748219490051, 0.00797849241644144, -0.03899337723851204, 0.005557335447520018, -0.02399919368326664, -0.019001130014657974, 0.01128457672894001, 0.024423956871032715, 0.010987240821123123, -0.04182514175772667, 0.02055860124528408, -0.047403715550899506, -0.08008226007223129, 0.012211978435516357, 0.07356920838356018, -0.004916648846119642, -0.022611629217863083, 0.01895865425467491, -0.01711800880730152, -0.04428877681493759, -0.05873076990246773, -0.008360780775547028, 0.055304333567619324, -0.009217388927936554, -0.007412140257656574, 0.03231041878461838, -0.03466078266501427, -0.018519731238484383, -0.0172171201556921, -0.03596339374780655, -0.006491817068308592, 0.02569825015962124, -0.0254009161144495, 0.010548317804932594, -0.03508554399013519, 0.04278794303536415, 0.013061507605016232, 0.001270753680728376, -0.015418950468301773, -0.005362651310861111, -0.022611629217863083, 0.01898697204887867, 0.026788480579853058, 0.00017532595666125417, -0.0008835985790938139, -0.006226339377462864, -0.02785039134323597, 0.009854535572230816, 0.011015558615326881, 0.005412207450717688, -0.009231547825038433, 0.020063042640686035, 0.03163079544901848, 0.026972543448209763, -0.06009001284837723, -0.010102314874529839, 0.003635275876149535, 0.06841539591550827, -0.03500059247016907, -0.0163675919175148, 0.019822342321276665, -0.034349288791418076, 0.016933944076299667, -0.03256527706980705, -0.005829892586916685, 0.004980363417416811, -0.026774320751428604, 0.007737793028354645, -0.002799905836582184, 0.013011951930820942, -0.021365653723478317, 0.002444165525957942, -0.03364134579896927, 0.0018061340088024735, 0.033867888152599335, 0.006764374207705259, -0.020870095118880272, 0.04032430797815323, -0.028544172644615173, -0.03992786258459091, 0.00013793783728033304, 0.06745260208845139, -0.04802670329809189, 0.042051684111356735, -0.05663526430726051, 0.03304667770862579, -0.10013114660978317, 0.0061307670548558235, 0.011560672894120216, 0.03256527706980705, -0.03304667770862579, -0.002088425448164344, 0.002217624569311738, 0.0024353163316845894, -0.024282369762659073, -0.007815666496753693, 0.028076931834220886, 0.027057496830821037, 0.0037768641486763954, -0.011440323665738106, -0.06762250512838364, -0.0030529946088790894, -0.020501965656876564, 0.012502234429121017, 0.020686030387878418, -0.0069767567329108715, -0.024551386013627052, -0.02993173711001873, -0.005249381065368652, 0.044062234461307526, 0.0034759892150759697, 0.017981696873903275, 0.016608290374279022, 0.024452274665236473, -0.013443795964121819, -0.031489208340644836, 0.03242368996143341, 0.029223795980215073, 0.00352377537637949, 0.02373017556965351, -0.018604684621095657, -0.008466972038149834, 0.00899792741984129, -0.01905776560306549, -0.01374113094061613, -0.03981459140777588, 0.005985639523714781, 0.011171305552124977, -0.00964923296123743, 0.01247391663491726, 0.014335800893604755, -0.009486407041549683, -0.013967671431601048, -0.0187462717294693, -0.028246838599443436, 0.011596070602536201, 0.0054405247792601585, -0.02976183034479618, -0.02642035111784935, -0.039050012826919556, -0.04032430797815323, 0.052415937185287476, 0.05167967826128006, 0.006959057878702879, 0.05666358023881912, 0.062468696385622025, 0.03406611084938049, -0.013606621883809566, -0.005504239816218615, 0.026958385482430458, 0.011808452196419239, 0.030469771474599838, 0.05451144278049469, -0.058107782155275345, 0.004629932809621096, 0.028345949947834015, -0.012190740555524826, -0.018279030919075012, 0.004275962244719267, -0.03899337723851204, 0.015999462455511093, 0.03233873471617699, 0.07283294945955276, 0.04986735060811043, 0.006074131932109594, 0.01615520939230919, 0.024183258414268494, -0.03349975869059563, -0.0545397587120533, -0.009415612556040287, 0.03332985192537308, 0.0010804946068674326, 0.03624656796455383, -0.012608425691723824, -0.012948237359523773, 0.004930807743221521, -0.008311225101351738, 0.03726600483059883, -0.019525006413459778, 0.012523472309112549, -0.02661857381463051, -0.039219919592142105, 0.06037319079041481, 0.018604684621095657, 0.04420382156968117, -0.029818465933203697, -0.0361332967877388, 0.007900618948042393, 0.029506972059607506, -0.06009001284837723, -0.0068741049617528915, 0.014739327132701874, -0.058447591960430145, -0.01813744381070137, -0.03868188336491585, -0.017542771995067596, -0.005284777842462063, 0.01666492596268654, 0.014640215784311295, -0.019581642001867294, 0.014498627744615078, 0.014753486029803753, -0.04213663563132286, -0.0037343876902014017, 0.01813744381070137, -0.013387160375714302, 0.009670470841228962, 0.02802029624581337, 0.011482799425721169, -0.01779763214290142, 0.02014799416065216, -0.01595698483288288, -0.022526675835251808, 0.056295450776815414, 0.011893405579030514, 0.034859005361795425, -0.011992516927421093, -0.03695451095700264, 0.006406864151358604, 0.0060493540950119495, -0.01578707993030548, 0.04516662284731865, 0.0068599465303123, 0.05346368998289108, 0.026887591928243637, -0.0320555604994297, 0.030526407063007355, -0.04587456211447716, 0.00036945659667253494, 0.028855666518211365, -0.04530820995569229, 0.042561400681734085, -0.011419084854424, 0.030979489907622337, 0.01595698483288288, 0.0018813526257872581, -0.01102971751242876, 0.015192409045994282, 0.008374939672648907, -0.02525932714343071, 0.03471741825342178, 0.026986703276634216, -0.02945033647119999, 0.03916328400373459, -0.051594726741313934, 0.05485125258564949, -0.0054511441849172115, -0.02925211377441883, 0.0501222088932991, -0.01356414519250393, 0.05587068572640419, 0.025273486971855164, -0.026746002957224846, -0.006290053948760033, 0.005061776842921972, -0.01554637961089611, -0.0031627255957573652, 0.05516274645924568, -0.018052490428090096, 0.0029715814162045717, 0.0243673212826252, -0.040069449692964554, -0.020870095118880272, 0.012105787172913551, -0.04578961059451103, 0.05524769797921181, -0.02154971845448017, 0.005900686606764793, 0.042759623378515244, -0.026193808764219284, 0.0045732976868748665, -0.00864395685493946, -0.017018897458910942, 0.004219327121973038, -0.014696850441396236, 0.004817537032067776, 0.01404554583132267, 0.01345087494701147, 0.049442585557699203, 0.00013085843238513917, -0.000281627697404474, -0.007525410503149033, 0.018604684621095657, -0.026646891608834267, -0.016240160912275314, -0.0035892599262297153, -0.0412587895989418, -0.044232141226530075, -0.006842247676104307, 0.02525932714343071, -0.022951440885663033, -0.03961636871099472, -0.05233098194003105, -0.031687431037425995, -0.032706864178180695, 0.03197060525417328, -0.031149394810199738, 0.0214789230376482, 0.013019030913710594, -0.017401184886693954, 0.017188802361488342, -0.04995230212807655, -0.0009866924956440926, -0.04949922114610672, 0.0337546169757843, 0.013783607631921768, 0.043722424656152725, 0.002217624569311738, 0.037549179047346115, 0.010491682216525078, -0.03497227653861046, 0.030384818091988564, 0.031177712604403496, -0.015772920101881027, 0.025627456605434418, 0.012686299160122871, 0.0012256224872544408, 0.025202691555023193, -0.00481399754062295, 0.02140812948346138, 0.017514456063508987, 0.002932644682005048, 0.02239924669265747, 0.010746541433036327, -0.0025096500758081675, -0.01556053850799799, -0.016509179025888443, 0.006056433543562889, -0.0262504443526268, -0.01884538307785988, -5.6690572819206864e-05, 0.003486608387902379, -0.01837814226746559, -0.03582180291414261, 0.0172171201556921, -0.00709002697840333, -0.013344683684408665, 0.0025255787186324596, 0.01578707993030548, 0.0038299597799777985, 0.0003809606423601508, -0.004031722899526358, 0.023503635078668594, 0.009189071133732796, -0.007950175553560257, -0.03293340653181076, -0.022951440885663033, -0.014994186349213123, 0.015263203531503677, -0.04666745662689209, 0.044402047991752625, -0.018618842586874962, 0.007263472769409418, 0.01029345951974392, -0.059467025101184845, -0.004010484553873539, 0.007716554682701826, -0.011723499745130539, -0.007348425220698118, 0.013245572336018085, 0.04247644916176796, -0.015206567943096161, 0.013507510535418987, -0.023234616965055466, 0.015362314879894257, 0.00932358019053936, 0.004629932809621096, -0.006056433543562889, -0.030667996034026146, -0.023192141205072403, 0.030328184366226196, -0.013783607631921768, 0.0207992997020483, 0.007936016656458378, -0.006098909769207239, -0.002853001467883587, 0.004169771447777748, -0.03627488762140274, -0.056295450776815414, -0.054114993661642075, 0.010696985758841038, -0.01445615105330944, 0.017160484567284584, 0.002927335212007165, -0.015418950468301773, -0.020983364433050156, 0.00024003616999834776, -0.025301804766058922, -0.0415985994040966, 0.0022601010277867317, 0.04270298779010773, -0.014753486029803753, -0.02603806182742119, -0.029676878824830055, 0.022385088726878166, -0.020686030387878418, 0.016848990693688393, 0.019312625750899315, 0.00585467042401433, 0.020785141736268997, 0.008374939672648907, 0.02535843849182129, 0.032225463539361954, -0.013918115757405758, -0.014753486029803753, 0.05417162925004959, 0.012856204994022846, 0.011645626276731491, 0.0037591655272990465, 0.004601615015417337, -0.014293324202299118, 0.00361403776332736, 0.010435047559440136, -0.020289583131670952, -0.015079138800501823, -0.00032100689713843167, -0.015178251080214977, 0.037237685173749924, 0.0019627658184617758, 0.020955046638846397, -0.0031361777801066637, -0.014257927425205708, -0.028048614040017128, -0.005536097101867199, 0.00285123148933053, -0.003452981123700738, 0.008020969107747078, -0.023206299170851707, 0.014852598309516907, -0.021422289311885834, 0.011822611093521118, 0.0062865144573152065, 0.0029698116704821587, 0.054086677730083466, 0.031687431037425995, -0.004052961245179176, 0.025174373760819435, 0.0207992997020483, -0.0024176177103072405, 0.0025645154528319836, 0.011716419830918312, 0.014668533578515053, 0.009196151047945023, 0.00927402451634407, 0.04819661006331444, -0.04516662284731865, 0.025273486971855164, -0.01881706714630127, 0.0003435725229792297, 0.014123419299721718, 0.009245706722140312, -0.0008074949728325009, -0.0008698822348378599, 0.017174644395709038, 0.02288064733147621, 0.010017362423241138, 0.023602746427059174, 0.025967268273234367, 0.0022459421306848526, -0.012601345777511597, -0.03194228932261467, 0.009606756269931793, 0.04734707996249199, -0.009097038768231869, -0.014010148122906685, 0.01489507406949997, -0.01564549095928669, -0.05890067294239998, -0.053945086896419525, -0.02576904557645321, 0.008941291831433773, 0.0320555604994297, 0.0036494347732514143, 0.04128710553050041, -0.04009776562452316, -0.018491413444280624, 0.031177712604403496, -0.025584980845451355, 0.006261736154556274, -0.027892867103219032, 0.012480996549129486, -0.02610885724425316, 0.021323176100850105, -0.01100847963243723, -0.034377604722976685, -0.03562358021736145, 0.021323176100850105, -0.05805114656686783, -0.015277362428605556, 0.036529745906591415, -0.02106831781566143, 0.004449408035725355, 0.04083402454853058, 0.02038869448006153, -0.025443391874432564, 0.010166029445827007, 0.007291790097951889, -0.00898376852273941, -0.013288049027323723, 0.017188802361488342, -0.003858277341350913, -0.012813728302717209, -0.019100243225693703, -0.025131898000836372, 0.008254589512944221, -0.006718358024954796, -0.004835235420614481, -0.042872894555330276, -0.009309421293437481, 0.027213243767619133, -0.019935613498091698, 0.019850660115480423, 0.029903419315814972, -0.0018813526257872581, -0.0028653903864324093, -0.03296172246336937, 0.01266506128013134, 0.021082477644085884, 0.0030140578746795654, 0.009104118682444096, -0.036869555711746216, -0.023871762678027153, -0.01878874935209751, -0.00937313586473465, 0.008976689539849758, 0.02382928691804409, 0.019595801830291748, 0.0065519921481609344, 0.017712678760290146, -0.009790821000933647, 0.019963931292295456, -0.043071117252111435, 0.005206904374063015, -0.0320555604994297, -0.05235930159687996, -0.032876770943403244, -0.015192409045994282, -0.01605609804391861, -0.04043757915496826, 0.04420382156968117, -0.027765437960624695, -0.00399632565677166, 0.005111332517117262, 0.04394896328449249, 0.013203095644712448, 0.016353432089090347, -0.004941426683217287, -0.019071925431489944, -0.03746422752737999, -0.011263337917625904, -0.023800969123840332, 0.007440457586199045, -0.023262934759259224, -0.01455526240170002, -0.04179682582616806, -0.007936016656458378, 0.005313095636665821, -0.008870498277246952, 0.003417584113776684, -0.00804220698773861, 0.005936083383858204, 0.028345949947834015, -0.11502622067928314, -0.024041669443249702, 0.037549179047346115, -0.044402047991752625, -0.020544441416859627, -0.0023131966590881348, -0.0004871517594438046, 0.02651946246623993, 0.019624119624495506, -0.009819138795137405, -0.019794024527072906, -0.04862137511372566, -0.016268478706479073, 0.00029733512201346457, -0.01769852079451084, 0.03061136044561863, 0.00756788719445467, 0.04145701229572296, -0.0017158715054392815, 0.0204594898968935, -0.02886982634663582, 0.019454212859272957, -0.03834207355976105, 0.06286514550447464, 0.009691709652543068, 0.025287644937634468, -0.014088021591305733, 0.05128323286771774, 0.011072194203734398, -0.008212112821638584, 0.012898681685328484, 0.015673808753490448, 0.05136818438768387, 0.021563876420259476, 0.005302476696670055, -0.005309556145220995, -0.004739663563668728, 0.011978358030319214, 0.0018096736166626215, 0.006774993613362312, -0.015971144661307335, -0.024282369762659073, 0.040918979793787, -0.030696311965584755, 0.06122272089123726, -0.010987240821123123, -0.019864818081259727, 0.03446255624294281, 0.007051090244203806, -0.00864395685493946, 0.024452274665236473, 0.026547780260443687, 0.0072847106494009495, -0.01140492595732212, 0.030299866572022438, 0.010350094176828861, -0.03061136044561863, -0.013606621883809566, 0.006410404108464718, -5.1712861022679135e-05, -0.031857334077358246, 0.026816796511411667, 0.016848990693688393, -0.05884403735399246, 0.028048614040017128, -0.024211574345827103, 0.003077772678807378, 0.006463499274104834, 0.028558332473039627, -0.024112462997436523, 0.010250982828438282, 0.018760431557893753, -0.006658182945102453, -0.02188953012228012, 0.02075682394206524, 0.0432976596057415, 0.02809109166264534, -0.01299071405082941, -0.011072194203734398, -0.024905357509851456, -0.004474185872823, 0.014739327132701874, 0.00276096910238266, -0.0021698386408388615, 0.020686030387878418, -0.010732382535934448, -0.022554993629455566, 0.008672274649143219, -0.0037414671387523413, 0.02288064733147621, 0.0340944305062294, -0.03463246300816536, 0.019100243225693703, 0.045053351670503616, 0.016452543437480927, -0.002314966404810548, 9.922232857206836e-05, 0.015673808753490448, 0.01169518195092678, 0.0045095826499164104, 0.016353432089090347, -0.0005959976697340608, 0.011964199133217335, 0.003470679745078087, -0.018633002415299416, -0.010258061811327934, -0.004240565467625856, 0.01833566650748253, 0.02358858659863472, -0.01075362041592598, -0.012311090715229511, -0.007249313872307539, 0.03432096913456917, 0.03684123978018761, 0.040069449692964554, 0.010973081924021244, 0.0034759892150759697, -0.052755746990442276, -0.021493082866072655, -0.02324877493083477, 0.022512517869472504, -0.026675209403038025, -0.013330524787306786, -0.0027538896538317204, 0.010682826861739159, 0.03831375762820244, 0.020601077005267143, -0.0071112653240561485, 0.006123688071966171, -0.0039644683711230755, 0.0070581696927547455, 0.028997255489230156, 0.015503903850913048, 0.02809109166264534, 0.013103984296321869, -0.010187268257141113, 0.019963931292295456, -0.009677550755441189, 0.05547424033284187, 0.0255708210170269, 0.0050794752314686775, 0.027963660657405853, 0.019723230972886086, -0.0361332967877388, 0.008743069134652615, -0.013146460987627506, 0.010116473771631718, -0.014250848442316055, -0.015900351107120514, 0.027227403596043587, -0.004095437470823526, 0.0055962721817195415, 0.0011858008801937103, 0.034774050116539, -0.002923795487731695, 0.03794562816619873, -0.07628770172595978, 0.0055856527760624886, -0.008799703791737556, -0.006413943599909544, 0.03259359300136566, 0.06065636873245239, 0.014498627744615078, -0.017330391332507133, 0.004265343304723501, 0.003099010791629553, -0.029563607648015022, -0.0009185531525872648, 0.00935897696763277, 0.016438385471701622, 0.015659650787711143, 0.000635376840364188, 0.014965868555009365, -0.02423989214003086, 0.045676339417696, 0.015659650787711143, 0.009111197665333748, 0.017925061285495758, 0.004367994610220194, 0.01109343208372593, -0.003709609853103757, -0.03347143903374672, 0.02741146832704544, 0.04947090148925781, 0.004753822460770607, -0.04009776562452316, -0.0038547376170754433, 0.01128457672894001, -0.019822342321276665, 0.021294858306646347, -0.008020969107747078, 0.014626056887209415, 0.031517524272203445, 0.041060566902160645, 0.016438385471701622, -0.002336204517632723, -0.0037627052515745163, 0.03194228932261467, -0.033386487513780594, 0.025146057829260826, -0.024395639076828957, 0.005879448261111975, 0.017542771995067596, -0.03061136044561863, 0.024466434493660927, 0.023163823410868645, -0.01878874935209751, 0.016962261870503426, -0.027425626292824745, 0.030498089268803596, -0.002815834479406476, 0.024395639076828957, -0.0001170314644696191, -0.021903688088059425, -0.027326514944434166, 0.022073594853281975, 0.03794562816619873, 0.008863418363034725, 0.005468842573463917, 0.013571225106716156, -0.01305442862212658, -0.04918772727251053, -0.012516393326222897, -0.006279435008764267, -0.03262191265821457, 0.012629663571715355, 0.005337873473763466, 0.026307079941034317, 0.0048564737662673, 0.010272220708429813, 0.002129131928086281, 0.0019556863699108362, 0.009677550755441189, 0.028374267742037773, 0.03460414707660675, 0.04468522220849991, 0.002985740313306451, -0.0021220524795353413, 0.013181857764720917, 0.00685286708176136, 0.00675021531060338, 0.004123755265027285, -0.024537228047847748, -0.015249044634401798, -0.016381749883294106, -0.006983835715800524, 0.023121345788240433, 0.047913432121276855, 0.019694913178682327, 0.01990729570388794, 0.02222934179008007, 0.0065626110881567, 0.03265022858977318, 0.008452813141047955, 0.02598142810165882, 0.012594266794621944, -0.008771385997533798, 0.01799585483968258, 0.02928043156862259, -0.02120990678668022, 0.01000320352613926, -0.0010486373212188482, 0.0025662854313850403, 0.012813728302717209, -0.018732113763689995, -0.01711800880730152, -0.031687431037425995, 0.006052893586456776, 0.0015654340386390686, 0.01949668861925602, 0.012282772921025753, 0.0021025841124355793, 0.004764441400766373, -0.014406595379114151, -0.022101910784840584, 0.02017631195485592, -0.032027240842580795, 0.012247376143932343, -0.01138368807733059, -0.044232141226530075, -0.009897012263536453, -0.0044706459157168865, -0.010966002941131592, -0.014626056887209415, 0.01165978517383337, -0.006474118679761887, -0.0002741058124229312, -0.020473647862672806, 0.0364731103181839, -0.023673539981245995, -0.014866756275296211, 0.0035751010291278362, -0.008254589512944221, 0.008049286901950836, -0.03279181942343712, 0.026335397735238075, 0.0011070424225181341, 0.02448059245944023, 0.030158277601003647, -0.009344818070530891, 0.008877577260136604, -0.017641885206103325, 0.0045202020555734634, 0.029053891077637672, -0.012233217246830463, 0.02768048457801342, -0.005153809208422899, -0.013507510535418987, -0.021832894533872604, 0.02634955570101738, 0.017896743491292, 0.020884253084659576, 0.01178013440221548, 0.03514217957854271, -0.005773256998509169, 0.0284592192620039, 0.023432839661836624, -0.003745006863027811, 0.017160484567284584, 0.03794562816619873, 0.013280969113111496, 0.004130834713578224, 0.01338008139282465, -0.0023716017603874207, -0.007419219706207514, -0.00102474435698241, 0.024551386013627052, -0.008735989220440388, -0.012445598840713501, 0.015376473776996136, 0.021592194214463234, -0.0020034725312143564, 0.023914240300655365, 0.01554637961089611, -0.005175047088414431, 0.006898883264511824, 0.02736899070441723, -0.002796366112306714, -0.002422927413135767, -0.01677819713950157, -0.0020601076539605856, -0.0034954575821757317, -0.005642288364470005, -0.0022601010277867317, -0.016438385471701622, -0.015263203531503677, 0.015900351107120514, 0.03480236977338791, -0.006378546357154846, 0.013401319272816181, 0.06671634316444397, 0.015772920101881027, -0.009132436476647854, 0.02581152133643627, -0.00898376852273941, 0.0106545090675354, 0.008105922490358353, 0.005256460513919592, -0.012523472309112549, 0.045393165200948715, -0.03372630104422569, 0.023914240300655365, -0.03231041878461838, 0.016452543437480927, 0.0033963460009545088, 0.014349959790706635, -0.01413049828261137, 0.032225463539361954, 0.01554637961089611, -0.01418005395680666, 0.03446255624294281, -0.004346756264567375, -0.012190740555524826, 0.02000640705227852, -0.022894805297255516, 0.0021132032852619886, 0.009620915167033672, -0.00551485875621438, -0.0003778634127229452, 0.02443811669945717, 0.019935613498091698, -0.037549179047346115, 0.001652156817726791, 0.019723230972886086, 0.004127294756472111, 0.00043339250260032713, -0.03692619130015373, 0.026406191289424896, 0.013918115757405758, 0.0034724494908005, -0.02307887002825737, -0.028147725388407707, -0.019680753350257874, -0.009217388927936554, -0.026746002957224846, 0.015489744953811169, 0.007397981360554695, 0.00969878863543272, -0.016509179025888443, -0.024254051968455315, -0.04352419823408127, -0.00833246298134327, 0.004962665028870106, -0.019921453669667244, 0.005483001470565796, 0.024395639076828957, 0.06292177736759186, 0.00599271897226572, 0.029676878824830055, 0.025967268273234367, 0.00513965031132102, -0.006505975965410471, 0.004229946061968803, -0.017571089789271355, -0.01697641983628273, -0.032197147607803345, 0.022824011743068695, -0.0033910362981259823, 0.019241830334067345, -0.04644091799855232, 0.0019680755212903023, 0.030016690492630005, -0.003205202054232359, 0.030016690492630005, 0.011086353100836277, 0.04400559887290001, 0.003745006863027811, 0.009266944602131844, 0.0018123284680768847, -0.028345949947834015, -0.0076669990085065365, 0.019751548767089844, -0.008672274649143219, -0.0013229643227532506, -0.026873432099819183, -0.0194258950650692, 0.0009185531525872648, 0.006682961247861385, -0.015900351107120514, -0.0024565544445067644, -0.014668533578515053, -0.01175889652222395, -0.019864818081259727, -0.01443491317331791, -0.007022772915661335, -0.017231278121471405, -0.0010061608627438545, -0.013351763598620892, 0.02581152133643627, -0.02242756448686123, 0.006261736154556274, 0.026887591928243637, 0.00409897742792964, 0.05439817160367966, 0.017740996554493904, -0.015518061816692352, -0.02339036390185356, 0.012495155446231365, -0.02280985191464424, -0.025967268273234367, -0.023262934759259224, 0.008141319267451763, 0.003226440167054534, 0.015376473776996136, 0.013776527717709541, 0.04264635220170021, 0.010180188342928886, -0.026264604181051254, -0.012304010801017284, -0.024763768538832664, 0.040862344205379486, 0.035566944628953934, -0.015999462455511093, 0.01602778024971485, 0.01864716038107872, 0.03265022858977318, 0.028558332473039627, -0.008105922490358353, -0.024041669443249702, -0.01003860030323267, 0.010286379605531693, -0.015206567943096161, 0.03596339374780655, -0.011135908775031567, 0.0038334995042532682, 0.020940888673067093, 0.020133836194872856, -0.002868930110707879, 0.028218520805239677, 0.002727341838181019, -0.03197060525417328, 0.014427833259105682, -0.006743135862052441, -0.020615236833691597, 0.026915909722447395, 0.014427833259105682, 0.027864549309015274, 0.01027930062264204, -0.01036425307393074, -0.0213090181350708, 0.020813459530472755, -0.0192559901624918, -0.00518212653696537, -0.0008256359724327922, -0.011475720442831516, -0.008856339380145073, 0.006774993613362312, -0.012077470310032368, 0.002702564001083374, -0.011737658642232418, 0.013457954861223698, 0.022838169708848, 0.002743270481005311, -0.017939219251275063, 0.03140425309538841, -0.0235177930444479, -0.010066918097436428, -0.025924792513251305, 0.01107927318662405, 0.021040000021457672, 0.002385760424658656, -0.0028600809164345264, 0.057626381516456604, -0.037520863115787506, 0.012176581658422947, 0.008757228031754494, -0.011596070602536201, -0.0070192329585552216, -0.011567752808332443, -0.01615520939230919, -0.0037025304045528173, -0.024084145203232765, -0.002649468369781971, 0.037549179047346115, -0.0003101665643043816, -0.04516662284731865, 0.004460026975721121, -0.004251184407621622, 0.0031220188830047846, -0.014300404116511345, -0.006987375672906637, -0.02051612362265587, -0.00718559930101037, 0.014569421298801899, 0.027595533058047295, 0.0260805394500494, 0.012211978435516357, 0.0255708210170269, -0.057937875390052795, 0.020714348182082176, -0.01571628637611866, -0.016240160912275314, -0.03525545075535774, -0.025004468858242035, 0.02188953012228012, 0.05400172248482704, -0.026434509083628654, 0.014654374681413174, -0.00024180603213608265, -0.009911171160638332, 0.03310331329703331, 0.014781803824007511, -0.025542503222823143, -0.0015636641765013337, -0.011596070602536201, -0.023291252553462982, -0.022484200075268745, 0.03967300057411194, -0.007224536035209894, -0.036869555711746216, -0.008148398250341415, -0.006728977430611849, -0.0026724764611572027, -0.03165911138057709, -0.007851063273847103, -0.015263203531503677, 0.01765604317188263, 0.01632511429488659, 0.004314898978918791, -0.03372630104422569, -0.02201695926487446, -0.0001919183268910274, 0.0005061776610091329, 0.01670740358531475, 0.036189932376146317, -0.008785544894635677, 0.000471223087515682, -0.005720161832869053, 0.02247004024684429, -0.00481399754062295, -0.010576635599136353, -0.009606756269931793, -0.0058511304669082165, -0.004371534567326307, 0.05473798140883446, 0.01595698483288288, 0.013047348707914352, -0.004583916626870632, 0.025797363370656967, 0.008785544894635677, -0.010222665034234524, 0.012417281977832317, 0.011716419830918312, -0.023531952872872353, -0.0022654104977846146, -0.01066866796463728, -0.014194212853908539, -0.013712813146412373, -0.002477792790159583, -0.010258061811327934, -0.012983634136617184, 0.017372867092490196, 0.0173870250582695, -0.028544172644615173, 0.008566083386540413, 0.0025857537984848022, 0.006693580187857151, -0.031347617506980896, -0.0022158545907586813, 0.035340406000614166, -0.02591063268482685, 0.011440323665738106, 0.025131898000836372, 0.0030972410459071398, -0.02382928691804409, -0.010208506137132645, 0.02501862682402134, -0.0072847106494009495, 0.021903688088059425, -0.017981696873903275, -0.007539569400250912, -0.015291521325707436, -0.016141049563884735, -0.014307483099400997, 0.020232947543263435, -0.010888129472732544, -0.019029447808861732, -0.013295128010213375, 0.017854267731308937, 0.021620512008666992, 0.010102314874529839, 0.030299866572022438, -0.010909367352724075, 0.005645827855914831, -0.015857873484492302, -0.018080808222293854, -0.02007720060646534, -0.009005007334053516, 0.031347617506980896, -0.012403123080730438, 0.014937550760805607, 0.03355639427900314, 0.0007725403993390501, -0.02113911136984825, 0.0026760161854326725, -0.006955518387258053, 0.007872302085161209, 0.012757092714309692, -0.007390901912003756, 0.018519731238484383, 0.017231278121471405, -0.010760700330138206, 0.0017866655252873898, -0.026533620432019234, -0.015744604170322418, -0.01179429329931736, 0.004782140254974365, 0.025146057829260826, 0.009097038768231869, 0.02164882980287075, 0.011581911705434322, 0.01632511429488659, 0.016438385471701622, 0.0011858008801937103, 0.040579166263341904, 0.012480996549129486, 0.021365653723478317, 0.01786842569708824, -0.0071502020582556725, -0.0031237888615578413, 0.026292921975255013, 0.008509448729455471, -0.016650767996907234, -0.004552059341222048, 0.00551485875621438, -0.007369663566350937, 0.04462858662009239, 0.03395283967256546, 0.006403324659913778, -0.026845114305615425, -0.002037099562585354, 0.018279030919075012, -0.03024323098361492, 0.009189071133732796, -0.03282013535499573, 0.009521803818643093, 0.0048564737662673, -0.007369663566350937, -0.003226440167054534, -0.012870363891124725, -0.0035857202019542456, 0.05252920836210251, 0.008551924489438534, -0.0511416420340538, -0.01915687881410122, 0.01602778024971485, 0.033386487513780594, 0.013833163306117058, -0.018618842586874962, -3.4124957892345265e-05, 0.012934078462421894, 0.03667133301496506, 0.016310956329107285, 0.009585518389940262, -0.017953379079699516, 0.00891297496855259, 0.026335397735238075, 0.0033467900939285755, -0.025415074080228806, 0.004757361952215433, 0.0081837959587574, 0.00145127868745476, -0.001957456348463893, -0.0243673212826252, 0.009705868549644947, -0.040041130036115646, 0.01867547817528248, -0.008920053951442242, -0.02000640705227852, 0.012827887199819088, 0.026703527197241783, 0.035368721932172775, -0.010881049558520317, -0.01165978517383337, 0.012254455126821995, -0.02385760471224785, 0.003037065966054797, 0.01656581461429596, 0.020445330068469048]" -How I Power a (Successful) Crypto Trading Bot With TimescaleDB,"today.time, today.close, today.high - today.low as a, COALESCE(ABS(today.high - yesterday.close), 0) b, COALESCE(ABS(today.low - yesterday.close), 0) c FROM candlestick today LEFT JOIN LATERAL ( SELECT yesterday.close FROM candlestick yesterday WHERE yesterday.time < today.time ORDER BY yesterday.time DESC LIMIT 1 ) yesterday ON TRUE WHERE today.time > NOW() - _till) d; END; $$; CREATE OR REPLACE FUNCTION atr(_interval INT, _symbol TEXT, _till INTERVAL) RETURNS TABLE(date TIMESTAMP WITHOUT TIME ZONE, result NUMERIC(9,8), percent NUMERIC(9,8)) LANGUAGE plpgsql AS $$ DECLARE BEGIN RETURN QUERY WITH true_range AS ( SELECT * FROM tr(_symbol, _till) ) SELECT tr.date, avg.sma result, avg.sma_percent percent FROM true_range tr INNER JOIN LATERAL ( SELECT avg(lat.result) sma, avg(lat.percent) sma_percent FROM ( SELECT * FROM true_range inr WHERE inr.date <= tr.date ORDER BY inr.date DESC LIMIT _interval ) lat ) avg ON TRUE WHERE tr.date > NOW() - _till ORDER BY tr.date; END; $$; SELECT * FROM atr(14, 'BNBBTC', '4 HOURS') ORDER BY dateWith TimescaleDB, my query response time is in the milliseconds, even with this huge amount of data.Editor’s Note: To learn more about how TimescaleDB works with cryptocurrency and practice running your own analysis,check out our step-by-step tutorial. We used these instructions toanalyze 4100+ cryptocurrencies, see historical trends, and answer questions.Current Deployment & Future PlansTo develop my bot and all its capabilities, I used Node.js as my main programming language and various libraries:Coteto communicate between all my modules without overengineering,TensorFlowto train and deploy all my machine learning models, andtulindfor technical indicator calculation, as well as various others.I modified some to meet my needs and created some from scratch, including a candlestick recognition pattern, a level calculator for support/resistance, and Fibonacci retracement.Current TradingBot architecture + breakdown of various Node.js librariesToday, I have a total of 55 markets (which are re-evaluated every month, based on trade simulation performance) that trade simultaneously 24/7; when all my strategy conditions are met, a trade is automatically opened. The bot respects my capital management system, which is basically to limit myself to 10 opened positions and only use 10% of the available capital at a given time. To keep track of the results of an open trade, I use dynamicTrailing Stop LossandTrailing Take Profit.The process of re-evaluating a market requires a second instance of my bot that runs in the background and uses my main strategy to simulate trades in",https://www.timescale.com/blog/how-i-power-a-successful-crypto-trading-bot-with-timescaledb/,587,"[-0.037434857338666916, -0.005227810703217983, 0.05803491920232773, 0.001209709094837308, 0.031071243807673454, -0.00401421170681715, 0.021611394360661507, 0.023556265980005264, -0.007196018937975168, 0.032455991953611374, 0.025345545262098312, -0.027834979817271233, -0.015558959916234016, -0.03531884029507637, 0.052153632044792175, 0.05364729464054108, -0.014765452593564987, -0.0012544411001726985, -0.04947749152779579, 0.041075654327869415, 0.026294643059372902, -0.02887742966413498, -0.0001692036894382909, 0.01103908196091652, 0.008853048086166382, -0.038897398859262466, -0.018203983083367348, 0.024318654090166092, -0.01540337037295103, -0.05022432282567024, 0.031149037182331085, -0.04045329615473747, -0.03254934400320053, -0.011046861298382282, 0.003586340229958296, -0.015387811698019505, 0.05364729464054108, 0.027181502431631088, 0.04148018732666969, -0.0018787444569170475, -0.02028888277709484, -0.02618572860956192, 0.007339939475059509, 0.01320955716073513, -0.06976637244224548, -0.03124239109456539, -0.04947749152779579, -0.022015927359461784, -0.002715038601309061, 0.07350052893161774, -0.07711020857095718, 0.024100828915834427, -0.04925966635346413, 0.03519436717033386, 0.025205515325069427, -0.01982211507856846, -0.03152245283126831, 0.058719515800476074, 0.012135989032685757, 0.0365324392914772, 0.0021374120842665434, -0.023898562416434288, 0.044000737369060516, -0.026310201734304428, -0.031195715069770813, 0.03382517769932747, -0.02764827199280262, 0.018841899931430817, -0.027554918080568314, 0.03351400047540665, 0.017192650586366653, 0.016165759414434433, 0.04680135101079941, -0.025376664474606514, 0.0007443989743478596, -0.03220704570412636, -0.005982419941574335, 0.03413635864853859, 0.03927081450819969, 0.02282499335706234, 0.007371057290583849, -0.023073937743902206, -0.04319167137145996, 0.04378291219472885, 0.03488318622112274, -0.07779479771852493, -0.061800189316272736, -0.018063953146338463, -0.021907014772295952, -0.035069894045591354, -0.0445297434926033, 0.01977543719112873, 0.030900094658136368, 0.0273682102560997, 0.028706280514597893, -0.018873019143939018, -0.011466952972114086, 0.02380520850419998, -0.012353814207017422, 0.02052226848900318, 0.0027811641339212656, -0.01926199160516262, -0.0014508729800581932, -0.015395591035485268, 0.03167804330587387, 0.037434857338666916, 0.02800612710416317, 0.006682573352009058, -0.029686495661735535, 0.03637684881687164, -0.08582322299480438, -0.019604289904236794, -0.014057519845664501, -0.023089496418833733, 0.03108680248260498, -0.010113324038684368, 0.004457641858607531, 0.024412008002400398, 0.026014581322669983, -0.020351119339466095, -0.02234266698360443, -0.016788117587566376, 0.02962425909936428, -0.020428914576768875, 0.009903278201818466, -0.0372481495141983, -0.013621869497001171, -0.039457522332668304, -0.010611210949718952, 0.0008110107737593353, 0.01787724532186985, 0.021922575309872627, 0.07518089562654495, 0.002466095145791769, -0.0276949480175972, -0.027663830667734146, -0.028970783576369286, 0.04655240848660469, -0.028628485277295113, 0.00795062817633152, 0.011614763177931309, -0.02028888277709484, 0.01101574394851923, 0.021066831424832344, -0.04138683155179024, 0.015722328796982765, -0.02669917605817318, 0.04624122753739357, -0.05398958921432495, 0.017021501436829567, 0.012400491163134575, 0.01664808765053749, -0.006488086190074682, -0.020071057602763176, 0.03447865694761276, 0.03307835012674332, -0.018997490406036377, 0.039021871984004974, -0.026605822145938873, -0.013614090159535408, -0.03578560799360275, 0.05370952934026718, -0.03401188552379608, 0.022218193858861923, -0.021051272749900818, 0.029966557398438454, -0.0031779175624251366, -0.004726034123450518, -0.12316472828388214, -0.0042903833091259, 0.01083681546151638, -0.06173795461654663, -0.0012077642604708672, -0.046490173786878586, -0.0071649011224508286, -0.024660950526595116, -0.0017999771516770124, -0.023820767179131508, 0.021782543510198593, -0.016585851088166237, -0.04988202452659607, -0.01050229836255312, -0.00693151680752635, -0.01345072127878666, -0.0174882709980011, -0.01492882240563631, -0.029997674748301506, 0.02274719998240471, -0.008806371130049229, 0.024692069739103317, 0.02875295840203762, 0.08961960673332214, 0.026994794607162476, 0.04334726184606552, -0.006674794014543295, -0.013404044322669506, 0.01843736693263054, 0.00750719802454114, -0.023385116830468178, 0.03622125834226608, 0.04207142814993858, 0.03584784269332886, 0.04621011018753052, 0.019013049080967903, 0.000753637112211436, 0.01501439604908228, 0.01949537731707096, -0.031071243807673454, -0.013948607258498669, -0.013831915333867073, 0.04387626796960831, -0.03615902364253998, 0.01499105803668499, -0.029281962662935257, -0.03208257630467415, -0.030977889895439148, -0.03992429003119469, -0.019402023404836655, 0.0021568608935922384, 0.01692814752459526, 0.009965513832867146, 0.014602083712816238, 0.0237274132668972, -0.0016832849942147732, -0.01419755071401596, 0.04916631430387497, 0.051873572170734406, 0.003341286676004529, 0.045898932963609695, -0.013707444071769714, 0.013326249085366726, 0.021300215274095535, 0.005021654535084963, -0.042849376797676086, 0.015076631680130959, -0.016445821151137352, 0.008113997988402843, -0.03267381712794304, -0.013699663802981377, -0.04845060035586357, -0.004636569879949093, 0.05162462964653969, 0.028659604489803314, -0.014734335243701935, -0.012151547707617283, -0.0029231396038085222, -0.03675026446580887, -0.07113556563854218, -0.012890597805380821, 0.06397844105958939, 0.010945728048682213, -0.0010609265882521868, -0.01751938834786415, -0.016990384086966515, -0.014570966362953186, -0.03267381712794304, -0.04583669453859329, 0.052184753119945526, -0.02215595915913582, -0.01265721395611763, 0.021378010511398315, -0.046490173786878586, -0.022576050832867622, -0.03877292945981026, -0.01492882240563631, 0.019573170691728592, 0.026123493909835815, -0.014080858789384365, -0.005612894892692566, -0.05342946946620941, 0.04185360297560692, 0.017690537497401237, 0.0010336984414607286, -0.040048763155937195, -0.030153263360261917, -0.05629231780767441, 0.02354070544242859, 0.04832613095641136, -0.005278377328068018, -0.018126187846064568, -0.011715896427631378, -0.012135989032685757, 0.0251899566501379, 0.03472759947180748, 0.01589347794651985, 0.02139356918632984, -0.015714550390839577, 0.002479709219187498, 0.030277736485004425, -0.047330357134342194, 0.013738561421632767, 0.007973967120051384, 0.054923128336668015, -0.06307602673768997, 0.006670903880149126, 0.007301041856408119, 0.0065619912929832935, 0.025999022647738457, -0.009957734495401382, -0.03113347850739956, 0.0014635146362707019, -0.01961984857916832, 0.0032693264074623585, -0.040484413504600525, -0.009802144952118397, -0.010906830430030823, 0.012789465487003326, -0.01152918953448534, 0.008969740010797977, 0.018017275258898735, -0.002479709219187498, 0.0021374120842665434, 0.002798667876049876, -0.028068363666534424, -0.021144626662135124, -0.026154611259698868, 0.04627234488725662, -0.050691090524196625, 0.03041776642203331, -0.051157861948013306, -0.011256907135248184, -0.08358272910118103, 0.018421808257699013, 0.06158236414194107, 0.010906830430030823, -0.0287996344268322, 0.029686495661735535, -0.01163032278418541, 0.02823951281607151, -0.03768379986286163, 0.021658072248101234, -0.040920063853263855, 0.004753262270241976, -0.014181992039084435, -0.024038592353463173, -0.015574518591165543, -0.012462726794183254, 0.01542670838534832, 0.010922390036284924, 0.02052226848900318, -0.02570340223610401, -0.011264687404036522, -0.04490315914154053, -0.016196876764297485, 0.04957084730267525, -0.009685452096164227, -0.00781448744237423, 0.019650965929031372, 0.025127720087766647, 0.0047921594232320786, -0.05850169062614441, 0.003399632638320327, 0.0642273873090744, -0.012626095674932003, 0.009242022410035133, -0.027975009754300117, 0.0003505628264974803, 0.01736379973590374, -0.05632343515753746, 0.011179112829267979, -0.05355393886566162, 0.017145974561572075, 0.02025776542723179, 0.007549985311925411, 0.008300704881548882, 0.034198593348264694, -0.012929495424032211, -0.03849286586046219, -0.011474733240902424, -0.043409496545791626, 0.05237145721912384, 0.00011930561595363542, -0.032767169177532196, -0.027228180319070816, -0.029484229162335396, -0.01574566774070263, 0.02982652559876442, 0.04163577780127525, 0.020397797226905823, 0.06814824789762497, 0.05629231780767441, -0.01811062917113304, -4.691998765338212e-05, -0.0018874963279813528, 0.000484758842503652, 0.06534763425588608, 0.04698805883526802, 0.01313176192343235, -0.010541195049881935, 0.017628300935029984, 0.029297521337866783, -0.054487477988004684, -0.02318285033106804, 0.0012797244125977159, -0.038710691034793854, -0.008121777325868607, 0.044872041791677475, 0.04035994037985802, 0.033607352524995804, -0.00974768865853548, 0.010533415712416172, -0.017503829672932625, -0.029562024399638176, -0.03675026446580887, 0.034354183822870255, 0.03818168863654137, 0.006635896395891905, 0.043129436671733856, -0.024178624153137207, -0.014384258538484573, 0.018919695168733597, -0.05162462964653969, 0.034634243696928024, -0.04723700135946274, 0.02467651106417179, 0.0005499119870364666, 0.013357367366552353, 0.004582113586366177, 0.04505874961614609, 0.03768379986286163, -0.029328638687729836, -0.044000737369060516, 0.01728600449860096, -0.017815008759498596, -0.053896237164735794, 0.019090844318270683, 0.03821280598640442, -0.013691884465515614, -0.0019040277693420649, -0.06895731389522552, 0.023665178567171097, -0.008378500118851662, -0.01018333900719881, 0.030868977308273315, -0.01581568270921707, -0.007923400029540062, -0.013839694671332836, 0.01429868396371603, -0.010580092668533325, 0.05607449263334274, -0.01028447225689888, 0.023898562416434288, -0.013793017715215683, 0.0015490889782086015, -0.04969531670212746, 0.032487109303474426, 0.00039626724901609123, -0.03899075463414192, 0.00428260350599885, 0.013520736247301102, 0.01741047576069832, -0.025610048323869705, -0.022404901683330536, 0.02056894451379776, -0.015597857534885406, -0.02669917605817318, 0.05265152081847191, -0.008946401998400688, 0.0510333888232708, 0.0356922522187233, -0.021455805748701096, 0.030666710808873177, -0.04798383265733719, 0.018795223906636238, 0.030386649072170258, -0.029048578813672066, 0.0056167845614254475, 0.005776263773441315, 0.01491326279938221, -0.009319816716015339, 0.021564718335866928, -0.03010658733546734, -0.011785912327468395, -0.014539848081767559, -0.0027403219137340784, 0.026512468233704567, 0.04913519695401192, -0.019635407254099846, -0.009724349714815617, -0.03805721551179886, 0.034509774297475815, -0.018608516082167625, -0.016368025913834572, 0.030448883771896362, 0.005503981839865446, 0.05731920897960663, -0.019604289904236794, -0.013287351466715336, -0.002271608216688037, 0.016072405502200127, 0.005453415215015411, 0.00921868346631527, 0.08339602500200272, -0.020817888900637627, 0.011147994548082352, -0.007549985311925411, -0.09017973393201828, -0.010712344199419022, 0.014205330051481724, -0.03286052495241165, 0.04449862614274025, -0.0182662196457386, -0.008518530987203121, 0.053896237164735794, -0.05106450617313385, 0.009490965865552425, -0.006643675733357668, -0.0008435873314738274, 0.02092680148780346, -0.004142573103308678, -0.029888762161135674, -0.013287351466715336, 0.012805024161934853, 0.03239375352859497, -0.004982756916433573, -0.00038289627991616726, -0.0009019334684126079, 0.015006616711616516, -0.01669476367533207, -0.020506709814071655, -0.0003748736926354468, -0.026325760409235954, -0.03572337329387665, -0.0016084074741229415, 0.03373182564973831, -0.013116203248500824, -0.03136686235666275, -0.05651014298200607, -0.044000737369060516, -0.013987504877150059, 0.03279828652739525, -0.014329802244901657, 0.009996632114052773, -0.010790138505399227, -0.019433140754699707, 0.027990568429231644, -0.052620403468608856, -0.007227136753499508, -0.06908178329467773, -0.01831289567053318, 0.0022968915291130543, 0.012353814207017422, 0.016399143263697624, 0.008938622660934925, -0.014049740508198738, -0.026948118582367897, 0.021300215274095535, 0.019370904192328453, -0.007048208732157946, 0.04742370918393135, 0.04729923978447914, -0.007277703378349543, -0.01800171658396721, 0.006826493423432112, -0.03127351030707359, -0.008549648337066174, -0.0025516694877296686, -0.01159142516553402, 0.026559144258499146, -0.0054067387245595455, -0.02959314174950123, -0.006737029645591974, 0.014430935494601727, -0.01492882240563631, -0.016321348026394844, 0.01803283393383026, 0.023945238441228867, -0.015115529298782349, -0.029966557398438454, 0.020506709814071655, -0.003703032387420535, -0.029562024399638176, -0.0036991427186876535, -0.0066670142114162445, 0.020584503188729286, 0.0037010875530540943, -0.03226928412914276, -0.0016832849942147732, -0.0055117616429924965, -0.026963677257299423, -0.019682085141539574, -0.012921716086566448, -0.027025913819670677, 0.018608516082167625, -0.04826389253139496, 0.051593512296676636, -0.03049556165933609, 0.01744159311056137, -0.015730109065771103, -0.004621011205017567, 0.013528515584766865, 0.0017523278947919607, -0.01577678509056568, 0.00850297138094902, -0.005877397023141384, 0.014648760668933392, -0.0007687098695896566, -0.0009286754066124558, -0.01784612610936165, 0.02210928127169609, 0.016072405502200127, -0.03136686235666275, -0.026216847822070122, 0.013295130804181099, -0.035661134868860245, -0.00987215992063284, 0.0032207046169787645, 0.015006616711616516, 0.016788117587566376, -0.013909710571169853, 0.004064778331667185, 0.011871485970914364, -0.0027072590310126543, -0.030448883771896362, -0.03279828652739525, 0.01433758158236742, -0.053896237164735794, 0.026481349021196365, 0.028535133227705956, -0.0074605210684239864, -0.03948863968253136, 0.0029562024865299463, -0.010759021155536175, -0.02606125734746456, 0.01492882240563631, 0.049228549003601074, 0.0034501992631703615, -0.009701011702418327, -0.010759021155536175, 0.045898932963609695, -0.013512956909835339, 0.05647902563214302, 0.006880950182676315, -0.001191232819110155, 0.0009320789249613881, -0.01491326279938221, 0.023991916328668594, 0.01135026104748249, -0.02270052209496498, -0.01985323242843151, 0.03005991131067276, -0.012462726794183254, -0.013652986846864223, -0.016119081526994705, -0.01138915866613388, 0.0042903833091259, -0.010338928550481796, 0.016383584588766098, -0.020708976313471794, -0.018701869994401932, -0.0008085796725936234, -0.004270934499800205, 0.032331518828868866, -0.006099112331867218, 0.013575192540884018, -0.0226227268576622, -0.02028888277709484, -0.013108423911035061, 0.0006286792340688407, -0.0018699924694374204, -0.02895522490143776, 0.01775277405977249, -0.0008367802947759628, 0.005441746208816767, -0.0302621778100729, 0.01101574394851923, -0.01382413599640131, 0.04216478019952774, 0.0251588374376297, 0.01792392134666443, -0.03563001751899719, 0.056230079382658005, 0.0149521604180336, -0.001396416686475277, 0.020242206752300262, 0.026216847822070122, -0.0010249464539811015, -0.02210928127169609, 0.015061073005199432, 0.06133342161774635, -0.002925084438174963, 0.0015383921563625336, -0.039146341383457184, 0.017348241060972214, 0.013637428171932697, 0.014734335243701935, 0.025812314823269844, 0.018406249582767487, 0.019573170691728592, -0.010331149213016033, 0.022404901683330536, 0.0013059801422059536, 0.017737213522195816, -0.006842052564024925, 0.007795039098709822, -0.010478959418833256, 0.02970205433666706, 0.048917368054389954, -0.022716080769896507, -0.012423829175531864, 0.0015549235977232456, 0.011645881459116936, -0.03584784269332886, -0.04929078370332718, -0.02808392234146595, 0.022607168182730675, 0.04533880949020386, 0.01024557463824749, 0.01938646472990513, -0.03088453598320484, -0.032300401479005814, 0.028815193101763725, -0.037714917212724686, 0.029079696163535118, -0.02705703116953373, 0.006371394265443087, -0.008837489411234856, 0.002034334000200033, -0.011358040384948254, -0.05983975902199745, -0.019230874255299568, 0.02234266698360443, -0.04789047688245773, 0.004274824168533087, 0.03600343316793442, -0.0039908732287585735, 0.011614763177931309, 0.0386173389852047, 0.00010690707131288946, -0.005838499870151281, 0.0014129480114206672, 0.022047046571969986, 0.022436020895838737, -0.009973293170332909, 0.015387811698019505, -0.018499603495001793, -0.04860619083046913, -0.0037263708654791117, -0.017581624910235405, -0.00987215992063284, -0.0019516770262271166, -0.029530905187129974, -0.06341832131147385, -0.01532557513564825, 0.030915653333067894, -0.022000368684530258, 0.03307835012674332, 0.04941525682806969, 0.023431792855262756, 0.017037061974406242, -0.011498071253299713, 0.016368025913834572, 0.0060835531912744045, 0.01261831633746624, 0.002007105853408575, -0.011295804753899574, -0.03513213247060776, -0.0343230664730072, -0.02218707650899887, 0.014835468493402004, -0.02392967976629734, 0.027554918080568314, -0.01772165484726429, 0.06491198390722275, 0.0058540585450828075, 0.05190468952059746, -0.03927081450819969, 0.015558959916234016, -0.02500324882566929, -0.024987690150737762, 0.008230689913034439, -0.01320955716073513, -0.0031351305078715086, -0.011163554154336452, 0.028223954141139984, -0.01664808765053749, 0.0011571976356208324, 0.013256234116852283, 0.05744367837905884, -0.01218266598880291, 0.013652986846864223, -0.034509774297475815, -0.018250659108161926, -0.005997979082167149, 0.00039286373066715896, -0.019153079017996788, 0.008254027925431728, 0.0028317307587713003, -0.0008844296098686755, -0.04465421661734581, -0.025501135736703873, -0.005220030900090933, -0.004243706353008747, -0.00051052839262411, 0.014384258538484573, -0.0016570292646065354, 0.015916816890239716, -0.13044631481170654, -0.03500765934586525, 0.028846312314271927, -0.022996142506599426, -0.016150200739502907, 0.007833936251699924, -0.01138915866613388, 0.0335451178252697, 0.004309832118451595, -0.008495192043483257, 0.004819388035684824, -0.04026658833026886, -0.02270052209496498, -0.00901641696691513, 0.001587986364029348, 0.01982211507856846, 0.04250707849860191, -0.016243554651737213, -0.008215131238102913, 0.019479818642139435, -0.022560492157936096, 0.032020337879657745, -0.06453856825828552, 0.07891504466533661, -0.010751240886747837, 0.014555406756699085, -0.004772711079567671, 0.052744872868061066, 0.01327179279178381, 0.00905531458556652, 0.013022849336266518, 0.024458684027194977, 0.024069711565971375, 0.006589219439774752, -0.006744808983057737, 0.020304443314671516, -0.03619014099240303, 0.018281778320670128, 0.006682573352009058, 0.03258046135306358, -0.032455991953611374, -0.020708976313471794, 0.037714917212724686, 0.0010784304467961192, 0.03342064470052719, -0.01775277405977249, -0.027399327605962753, 0.03951975703239441, -0.013769679702818394, 0.00048743304796516895, 0.03163136541843414, 0.0017902528634294868, 0.00575681496411562, -0.010051088407635689, -0.015636755153536797, 0.019915468990802765, -0.02725929766893387, 0.0039908732287585735, -0.0010054977610707283, -0.028130600228905678, 0.003681638976559043, 0.029281962662935257, 0.004788269754499197, -0.04785935953259468, -0.00018293932953383774, 0.008036202751100063, -0.014508729800581932, -0.005188913084566593, 0.001469349255785346, 0.008012864738702774, -0.004605452064424753, 0.00696263462305069, 0.021533600986003876, -0.008300704881548882, 0.005620674230158329, 0.012073752470314503, 0.0011649770895019174, -0.009319816716015339, 0.021735867485404015, -0.037559330463409424, 0.01723932847380638, -0.009086432866752148, 0.0015004671877250075, 0.02595234476029873, -0.010494518093764782, -0.023089496418833733, -0.011272466741502285, -0.007534426171332598, 0.024941012263298035, 0.0038372285198420286, 0.034945424646139145, 0.014687658287584782, 0.027072589844465256, 0.030402207747101784, 0.022218193858861923, -0.0021782543044537306, 0.023898562416434288, 0.013551853597164154, 0.030199941247701645, 0.019635407254099846, 0.019402023404836655, 0.003586340229958296, 0.01271944958716631, 0.0057295868173241615, -0.01720820926129818, -0.01818842440843582, -0.005383400246500969, 0.016227995976805687, 0.022124841809272766, -0.017737213522195816, -0.019402023404836655, -0.025967903435230255, 0.02013329416513443, 0.016757000237703323, 0.02492545358836651, 0.02290278859436512, -0.007028759922832251, -0.006768147461116314, -0.004387626890093088, -0.013901930302381516, 0.0342608280479908, -0.0033023892901837826, -0.011023523285984993, 0.003230429021641612, -0.021066831424832344, -0.021331334486603737, 0.01685035414993763, -0.005523430649191141, 0.039146341383457184, 0.0003337883099447936, -0.004850505851209164, 0.015348914079368114, 0.013971946202218533, 0.03163136541843414, 0.001025918871164322, 0.0030806739814579487, 0.014726555906236172, 0.013466279953718185, 0.018717428669333458, 0.009358714334666729, -0.0008085796725936234, 0.026870323345065117, -0.00011790774442488328, -0.006246922537684441, 0.018686311319470406, -0.00490496214479208, -0.02705703116953373, 0.0017552451463416219, -0.04540104418992996, 0.03808833286166191, 0.017939480021595955, 0.010447841137647629, 0.00031506892992183566, 0.030946770682930946, 0.0007341884193010628, 0.02713482640683651, -0.05731920897960663, -0.0310090072453022, -0.0002562366134952754, 0.01509219128638506, 0.019650965929031372, 0.06833495199680328, 0.04191583767533302, -0.015831241384148598, 0.02484765835106373, -0.013512956909835339, -0.04057776555418968, -0.009078653529286385, 0.011163554154336452, 0.013380705378949642, -0.000872274162247777, 0.031818073242902756, 0.010852374136447906, -0.039457522332668304, 0.02749268151819706, -0.009584318846464157, 0.033451762050390244, -0.0031234612688422203, -0.0051111183129251, 0.024474244564771652, -0.0003938361769542098, -0.03373182564973831, 0.030946770682930946, 0.02795945107936859, 0.011054640635848045, -0.018297336995601654, -0.016959266737103462, 0.03603455051779747, -0.0317869558930397, 0.006978193297982216, 0.012563860043883324, 0.016601409763097763, -0.000651045236736536, 0.05993311479687691, -0.011684779077768326, 0.013933048583567142, 0.009942175820469856, 0.030915653333067894, -0.02657470293343067, 0.01046340074390173, -0.008891945704817772, 0.016461379826068878, 0.013085084967315197, -0.007600551936775446, 0.011521410197019577, 0.019962145015597343, -0.010027749463915825, -0.011801471002399921, -0.04490315914154053, 0.014516509138047695, -0.005679020192474127, 0.002954257419332862, -0.030604474246501923, -0.011817029677331448, -0.026201289147138596, -0.026170169934630394, 0.028581809252500534, 0.009164227172732353, -0.02559448964893818, 0.0020479480735957623, -0.013940827921032906, -0.031506892293691635, 0.0016336907865479589, -0.02721262164413929, -0.01433758158236742, 0.025454457849264145, 0.038275040686130524, 0.012968393042683601, 0.022965025156736374, 0.00038848776603117585, 0.006480306852608919, 0.02108239009976387, 0.02705703116953373, 0.031117919832468033, 0.01974431984126568, -0.02274719998240471, 0.01977543719112873, -0.005581777077168226, 0.006215804256498814, 0.011054640635848045, 0.027181502431631088, -0.026076816022396088, -0.0018116463907063007, -0.027041472494602203, -0.03572337329387665, 0.03136686235666275, 0.01905972510576248, 0.01756606623530388, 0.001647304859943688, 0.01756606623530388, 0.005780153442174196, 0.003527994267642498, 0.02361850067973137, 0.016165759414434433, 0.01038560550659895, -0.0182662196457386, 0.026092376559972763, 0.026325760409235954, 0.007569434121251106, -0.0059318533167243, -0.0015996556030586362, 0.030386649072170258, 0.018421808257699013, -0.0026158501859754324, -0.025656724348664284, -0.008674120530486107, -0.023665178567171097, 0.01562897488474846, -0.0012631930876523256, 0.02290278859436512, 0.012486065737903118, 0.02867516316473484, 0.0071454523131251335, 0.007868943735957146, -0.006717580836266279, 0.0171615332365036, -0.014555406756699085, -0.02139356918632984, -0.01299173105508089, -0.022482696920633316, -0.024271978065371513, -0.020024381577968597, -0.018717428669333458, -0.0037749926559627056, 0.012221562676131725, -0.024147504940629005, -0.005706248339265585, -0.03911522403359413, 0.022576050832867622, -0.038461748510599136, 0.009397611953318119, 0.0063441661186516285, 0.009358714334666729, -0.018141746520996094, -0.020755652338266373, 0.006787596270442009, 0.00921868346631527, -0.00038727224455215037, 0.007802818436175585, 0.008751914836466312, 0.004761041607707739, 0.0037380401045084, 0.008588545955717564, 0.01372300274670124, 0.006460858043283224, 0.015162206254899502, -0.009599878452718258, -0.03948863968253136, -0.0034560339991003275, -0.009428729303181171, -0.004453752189874649, 0.006608668249100447, 0.027741625905036926, 0.03650131821632385, -0.01101574394851923, 0.006581440102308989, 0.008285146206617355, -0.016150200739502907, 0.035101015120744705, 0.035816725343465805, 0.02333843894302845, 0.002217151690274477, -0.0016482772771269083, 0.021269097924232483, 0.009444288909435272, -0.001410030759871006, 0.025890110060572624, -0.005815161392092705, -0.013629648834466934, 0.009358714334666729, 0.013699663802981377, 0.0027558808214962482, 0.0006821631686761975, 0.00661644758656621, -0.019402023404836655, 0.019293110817670822, 0.037123680114746094, 0.007717244327068329, -0.002001271117478609, -0.021113509312272072, 0.007106555160135031, 0.025501135736703873, -0.00868189986795187, 0.015488944947719574, -0.0096698934212327, -0.01700594276189804, 0.03587896004319191, 0.03824392333626747, -0.007767810951918364, -0.01562897488474846, 0.08065764605998993, 0.003356845583766699, -0.006433629896491766, 0.0074799698777496815, 0.0066670142114162445, 0.01388637162744999, 0.008440735749900341, 0.006246922537684441, -0.03444753587245941, 0.015123308636248112, -0.009382052347064018, -0.023245086893439293, 0.004232036881148815, 0.01800171658396721, 0.02203148789703846, -0.012346034869551659, -0.005566217936575413, 0.025267750024795532, 0.022436020895838737, 0.001504356972873211, 1.3750838661508169e-05, 0.02448980323970318, -0.0018058117711916566, 0.0034093570429831743, -0.005196692422032356, -0.0040764473378658295, 0.006359724793583155, -0.012416049838066101, 0.013085084967315197, 0.04804606735706329, 0.023867445066571236, -0.015146647579967976, -0.011132435873150826, 0.029810966923832893, 0.01744159311056137, -0.020662298426032066, -0.03164692595601082, 0.05209139734506607, 0.0039830938912928104, -0.01792392134666443, -0.0039908732287585735, -0.02060006372630596, -0.027897214516997337, -0.009413170628249645, -0.04714364930987358, 0.01685035414993763, 0.0251588374376297, 0.009786585345864296, -0.03643908351659775, -0.007464411202818155, -0.006526983808726072, 0.008821929804980755, 0.033202819526195526, -0.013909710571169853, -0.018359573557972908, 0.023758532479405403, 0.03534995764493942, 0.028146158903837204, 0.02595234476029873, 0.01792392134666443, 0.020226648077368736, 0.009607657790184021, -0.020428914576768875, 0.013186218217015266, -0.0073866164311766624, -0.04247596114873886, 0.013046188279986382, -0.01036226749420166, -0.011832589283585548, -0.009724349714815617, -0.010432282462716103, 0.03370070829987526, -0.003189586801454425, 0.030791182070970535, 0.01720820926129818, 0.028939666226506233, 0.004006432369351387, -0.00047065853141248226, -0.008868606761097908, -0.007219357416033745, -0.004644349683076143, 0.01299173105508089, 0.0030534458346664906, -0.004368178080767393, -0.017628300935029984, -0.017815008759498596, 0.006589219439774752, 0.01874854601919651, 0.0018845789600163698, 0.007090996019542217, -0.010525636374950409, 0.005679020192474127, 0.023634059354662895, -0.011140215210616589, -0.015831241384148598, -0.032331518828868866, -0.03892851620912552, -0.023587383329868317, 0.0057607050985097885, -0.040204353630542755, 0.012851701118052006, 0.019433140754699707, -0.005360061768442392, 0.0030865087173879147, -0.013870812952518463, 0.01546560600399971, -0.013186218217015266, -0.004640460014343262, -0.006958744954317808, 0.0020810109563171864, 0.005468974355608225, 0.02013329416513443, 0.03675026446580887, -0.004197029396891594, 0.008292925544083118, 0.010377826169133186, 0.000199227622942999, -0.01910640299320221, -0.032487109303474426, 0.010510077700018883, 0.035381074994802475, 0.010844594798982143, -0.01625911332666874, -0.016274672001600266, -0.0014956049853935838, 0.019806556403636932, 0.02962425909936428, -0.0039908732287585735, -0.02349402941763401, -0.014679878950119019, 0.04120012745261192, 0.009778806008398533, 0.04611675813794136, -0.001131914323195815, 0.021969251334667206, 0.023665178567171097, -0.012034855782985687, -0.004072557669132948, -0.00031847244827076793, 0.010338928550481796, -0.027819421142339706, 0.010603431612253189, 0.013186218217015266, -0.058875102549791336, 0.045743342489004135, -0.005799602251499891, 0.01415865309536457, -0.009428729303181171, 0.008510750718414783, 0.008821929804980755, -0.003183752065524459, -0.02831730619072914, 0.023462912067770958, -0.013699663802981377, -0.015652313828468323, -0.02918860875070095, 0.013015069998800755, -0.010105544701218605, 0.005702358670532703, -0.005566217936575413, 0.013637428171932697, -0.014181992039084435, -0.019713202491402626, -0.03927081450819969, 0.03544330969452858, -0.014633201994001865, -0.004838836379349232, 0.010230015963315964, 0.0196976438164711, 0.02270052209496498, 0.037154797464609146, -0.02136245183646679, 0.018063953146338463, -0.0016939816996455193, 0.06783706694841385, -0.0008717879536561668, 0.010712344199419022, -0.004819388035684824, -0.02595234476029873, -0.015006616711616516, -0.010813477449119091, -0.027975009754300117, 0.01196483988314867, 0.017908362671732903, -0.01657029241323471, -0.025298869237303734, -0.015263339504599571, -0.004897182807326317, 0.0046793571673333645, -0.0018719373038038611, 0.018732987344264984, -0.016508055850863457, -0.02108239009976387, 0.026761410757899284, 0.03572337329387665, 0.030900094658136368, 0.02369629591703415, 0.02021108940243721, -0.051437921822071075, 0.01014444138854742, -0.002973706228658557, -0.0035941198002547026, -0.027943892404437065, -0.007651118561625481, -0.019168637692928314, 0.036688026040792465, -0.030091028660535812, -0.012921716086566448, 0.016803676262497902, 0.02025776542723179, -0.005371730774641037, 0.005395069252699614, -0.01107797957956791, 0.02025776542723179, 0.025563370436429977, -0.03416747599840164, -0.017628300935029984, 0.02851957269012928, 0.00798952579498291, -0.024909894913434982, -0.01578456535935402, 0.009304258041083813, 0.01629023067653179, -0.03338952735066414, -0.012633875012397766, -0.002895911457017064, 0.02226487174630165, -0.012011516839265823, -0.03062003292143345, -0.02377409115433693, -0.008113997988402843, -0.024816541001200676, -0.026279082521796227, 0.041791364550590515, 0.04219589754939079, -0.013793017715215683, 0.005453415215015411, -0.014485391788184643, 0.03029329515993595, 0.01427534595131874, -0.005118897650390863, -0.03147577494382858, 0.007651118561625481, 0.011272466741502285, 0.06008870154619217, 0.007534426171332598, 0.018126187846064568, 0.013435161672532558, -0.0024972129613161087, -0.012493845075368881, 0.008152894675731659, 0.03267381712794304, 0.013466279953718185, -0.005951302126049995, -0.00040258807712234557, -0.004111455287784338, 0.009973293170332909, 0.0007915620808489621, 0.009545422159135342, -0.009841042570769787, 0.0024894336238503456, 0.018888577818870544, 0.008977520279586315, -0.04039106145501137, 0.016010168939828873, 0.011715896427631378, 0.0062196943908929825, -0.005437856540083885, -0.00923424307256937, 0.050411030650138855, -0.022420460358262062, 0.008930843323469162, 0.028426220640540123, 0.0004276282852515578, 0.0072310264222323895, -0.005099449306726456, 0.00486606452614069, -0.00015133518900256604, 0.008261807262897491, -0.029204167425632477, -0.0004089089052285999, -0.004060888662934303, -0.021782543510198593, -0.008845268748700619, -0.004515988286584616, -0.01784612610936165, -0.0423203706741333, 0.0031351305078715086, 0.0102222366258502, 0.01905972510576248, 0.002034334000200033, 0.03447865694761276, -0.005546769127249718, -0.006355835124850273, 0.008845268748700619, -0.0014197550481185317, 0.014602083712816238, 0.02587454952299595, 0.016897030174732208, -0.0009330514003522694, -0.010533415712416172, 0.006733139976859093, -0.003452144330367446, -0.013481838628649712, 0.011194671504199505, -0.0020304443314671516, 0.010844594798982143, 0.02595234476029873, -0.007176570128649473, 0.010338928550481796, 0.01705262064933777, 0.002820061519742012, 0.01961984857916832, -0.0204444732517004, 0.02274719998240471, -0.0030515010003000498, 0.012610537000000477, 0.02657470293343067, -0.0237274132668972, 0.031117919832468033, 0.012198224663734436, -8.93424657988362e-05, 0.013240674510598183, -0.01985323242843151, 0.045743342489004135, -0.005430077202618122, 0.022436020895838737, 0.002363017061725259, -0.01069678459316492, -0.008043982088565826, 0.026745852082967758, 0.004243706353008747, 0.03401188552379608, -0.03528771921992302, 0.03370070829987526, 0.011809250339865685, 0.036096785217523575, 0.021097948774695396, 0.012346034869551659, -0.036252375692129135, -0.01152918953448534, -0.026512468233704567, -0.0017756662564352155, -0.021066831424832344, -0.011093538254499435, 0.007795039098709822, 0.0013225115835666656, -0.03447865694761276, -0.013341807760298252, -0.005892956163734198, 0.003214870113879442, 0.03793274238705635, 0.004846616182476282, -0.003125406103208661, -0.015232222154736519, -0.021378010511398315, 0.015076631680130959, 0.016881471499800682, -0.015271118842065334, -0.007557764649391174, -0.0007302986923605204, 0.026885882019996643, -0.00826958753168583, 0.005830720067024231, -0.031117919832468033, 0.04608564078807831, 0.0026508579030632973, -0.0025477795861661434, -0.01345072127878666, 0.0026994794607162476, 0.0059590814635157585, -0.015683431178331375, 0.017690537497401237, -0.026559144258499146, 0.02725929766893387, -0.010416723787784576, 0.0049283006228506565, 0.008277366869151592, -0.01756606623530388, -0.02033556066453457, 0.005538989789783955, 0.01107797957956791, 0.026512468233704567, 0.011404717341065407, 0.014749893918633461, -0.005803491920232773, -0.031864751130342484, 0.004426524043083191, 0.010027749463915825]" -How I Power a (Successful) Crypto Trading Bot With TimescaleDB,"all Bitcoin markets. When it detects that a market is doing well, based on the metrics I track, that market enters the main bot instance and starts live trading. The same applies to those that are performing poorly; as soon as the main instance of my bot detects things are going badly, the market is removed from the main instance and the second instance begins tracking it. If it improves, it's added back in.As every developer likely knows all too well, the process of building a software is to always improve it. Right now, I’m trying to improve my capital management system usingKelly Criterion, assuggested by a userin my Reddit post (thanks, btw :)).Getting started advice & resourcesFor my use case, I’ve found TimescaleDB is a powerful and solid choice: it’s fast with reliable ingest rates, efficiently stores and compresses a huge dataset in a way that’s manageable and cost-effective, and gives me real-time aggregation functionality.TheTimescale website,""using TimescaleDB"" core documentation, andthis blog post about about managing and processing huge time-series datasetsis all pretty easy to understand and follow – and the TimescaleDB team is responsive and helpful (and they always show up in community discussions, likemine on Reddit).It’s been easy and straightforward to scale, without adding any new technologies to the stack. And, as an SQL user, TimescaleDB adds very little maintenance overhead, especially compared to learning or maintaining a new database or language.We’d like to thank Felipe for sharing his story, as well as for his work to evangelize the power of time-series data to developers everywhere. His success with this project is an amazing example of how we can use data to fuel real-world decisions – and we congratulate him on his success 🎉.We’re always keen to feature new community projects and stories on our blog. If you have a story or project you’d like to share, reach out on Slack (@lacey butler), and we’ll go from there.Additionally, if you’re looking for more ways to get involved and show your expertise, check out theTimescale Heroesprogram.The open-source relational database for time-series and analytics.Try Timescale for free",https://www.timescale.com/blog/how-i-power-a-successful-crypto-trading-bot-with-timescaledb/,443,"[-0.013979515060782433, -0.018599925562739372, 0.06263059377670288, 0.025001967325806618, 0.05263571813702583, -0.0008293637074530125, -0.0037554698064923286, 0.053049709647893906, -0.010918954387307167, 0.022458892315626144, 0.029171425849199295, -0.023212943226099014, -0.028062526136636734, -0.03820525109767914, 0.06564679741859436, 0.049323808401823044, -0.02053680084645748, -0.002896073507145047, -0.04550919681787491, 0.030147256329655647, 0.0020828810520470142, 0.03796868771314621, 0.01192435622215271, 0.031463149935007095, 0.007388961035758257, -0.036046598106622696, -0.03888537734746933, 0.02931927889585495, 0.0016356253763660789, -0.0403047651052475, 0.03196584805846214, -0.032054562121629715, -0.04231556877493858, 0.047874849289655685, 0.03332609683275223, 0.006882563699036837, 0.034745488315820694, -0.0049235098995268345, 0.0592891089618206, -0.005755183752626181, -0.015849856659770012, -0.0048237089067697525, 0.0116286501288414, 0.031049160286784172, -0.04589361697435379, -0.03436107188463211, -0.04077789559960365, -0.05378897488117218, 0.01942790299654007, 0.07605565339326859, -0.08936244249343872, 0.004213814623653889, -0.032350268214941025, -0.013861232437193394, 0.036638010293245316, -0.03099001944065094, 0.009780485183000565, 0.028772221878170967, 0.02404092065989971, -0.009817448444664478, 0.01870342344045639, 0.0015543061308562756, 0.033828798681497574, 0.022458892315626144, -0.0684855729341507, 0.033237386494874954, -0.028166024014353752, -0.0005465946160256863, -0.054232534021139145, 0.047815706580877304, 0.013277212157845497, -0.008109744638204575, 0.028757436200976372, -0.024100061506032944, 0.0035614126827567816, -0.05532664805650711, -0.0113033726811409, 0.08953986316919327, 0.03365137428045273, -0.02247367799282074, 0.010748923756182194, -0.02339036762714386, -0.032645974308252335, 0.033296529203653336, 0.005599937867373228, -0.04503606632351875, -0.025859514251351357, -0.015140161849558353, -0.010771101340651512, -0.0055444929748773575, -0.039683785289525986, 0.032084133476018906, 0.022621531039476395, 0.03285297006368637, 0.03258683159947395, 0.03699285537004471, -0.010638033971190453, 0.026155220344662666, 0.008619838394224644, 0.044503796845674515, 0.007814038544893265, -0.0234199371188879, -0.013181108050048351, 0.004816316068172455, 0.01840771548449993, -0.008797261863946915, 0.03983163833618164, -0.0015302799874916673, 0.008937722072005272, 0.017934586852788925, -0.10071755945682526, -0.0024968700017780066, -0.027249334380030632, -0.02784074656665325, 0.012367915362119675, -0.02945234626531601, 0.01794937252998352, 0.004820012487471104, 0.0018361512338742614, -0.01095591764897108, -0.05050663277506828, -0.00599544495344162, -0.016367342323064804, 0.010771101340651512, -0.01315153669565916, -0.018954772502183914, -0.008701157756149769, -0.032320696860551834, -0.02368607372045517, -0.0022030118852853775, 0.03578045964241028, 0.021305637434124947, 0.049678657203912735, 0.0006819725967943668, -0.034479353576898575, -0.01251576840877533, -0.05718959495425224, -0.0023970690090209246, -0.034420210868120193, -0.017476242035627365, 0.007566384505480528, -0.07096950709819794, -0.017106609418988228, 0.012804082594811916, -0.022976377978920937, 0.011340335942804813, -0.02676141820847988, 0.04503606632351875, -0.055356215685606, -0.01689961366355419, 0.014423074200749397, -0.005555581767112017, -0.03430192917585373, 0.020285451784729958, 0.03592831268906593, 0.0022362787276506424, -0.0046684630215168, 0.027707679197192192, -0.0268649160861969, -0.03403579443693161, 0.007991462014615536, 0.05523793399333954, -0.0053153205662965775, 0.016722191125154495, -0.023346010595560074, 0.029230566695332527, -0.03394708037376404, -0.04766785353422165, -0.08948072046041489, 0.008065388537943363, -0.011118556372821331, -0.050003934651613235, -0.01857035420835018, -0.0226067453622818, 0.046011898666620255, -0.021202141419053078, -0.040275197476148605, -0.040245626121759415, 0.004442987032234669, -0.022887665778398514, -0.04213814437389374, -0.05186688154935837, 0.012035246007144451, 0.011613864451646805, -0.020300237461924553, 0.01762409508228302, -0.021364780142903328, 0.008605052717030048, -0.01627863198518753, 0.022887665778398514, -0.01818593591451645, 0.05071362853050232, 0.02444012463092804, 0.028772221878170967, 0.020403733476996422, -0.003847877960652113, 0.052960995584726334, 0.037258993834257126, -0.011222053319215775, 0.009972694329917431, 0.038678381592035294, 0.042729560285806656, 0.03835310414433479, 0.010408861562609673, -0.014748350717127323, -0.009092967957258224, -0.01054932177066803, -0.012545338831841946, -0.04589361697435379, -0.016766546294093132, 0.002323142485693097, -0.015716789290308952, 0.017254462465643883, -0.009869197383522987, -0.04379409924149513, -0.02643614262342453, -0.023183373734354973, 0.004361667670309544, -0.04556833952665329, -0.0011791287688538432, 0.0004874533333349973, 0.06280801445245743, -0.013447243720293045, -0.014001692645251751, -0.006527716293931007, 0.049057673662900925, 0.07753419131040573, -0.024913255125284195, 0.029038356617093086, -0.008375880308449268, 0.02804774045944214, -0.012722763232886791, -0.009137324057519436, -0.0429069809615612, 0.03548475354909897, -0.0016088270349428058, -0.007592258974909782, -0.027145836502313614, 0.00432470440864563, -0.04834797605872154, 0.01864428073167801, 0.020270666107535362, 0.013772520236670971, -0.013388101942837238, -0.013144144788384438, 0.01117030531167984, -0.04435594379901886, -0.08161493390798569, -0.027885103598237038, 0.05801757425069809, 0.013166322372853756, -0.038737524300813675, -0.020847292616963387, -0.03696328401565552, -0.005751487333327532, -0.04533177241683006, 0.002112451707944274, 0.015288014896214008, 0.006317025516182184, -0.03548475354909897, 0.02250324934720993, -0.05080233886837959, -0.023272084072232246, -0.025282887741923332, -0.05245829373598099, -0.0023065090645104647, 0.008568089455366135, -0.05251743644475937, -0.0025282888673245907, -0.015228874050080776, 0.025149820372462273, 0.011118556372821331, 0.016796117648482323, -0.03918108344078064, -0.008967293426394463, -0.02578558772802353, 0.00018250622088089585, 0.009551312774419785, -0.00032204261515289545, -0.006579464767128229, -0.0027278903871774673, -0.010830243118107319, 0.0271901935338974, 0.02004888653755188, 0.02578558772802353, 0.018156366422772408, -0.009706558659672737, 0.03128572553396225, -0.010504965670406818, -0.03465677797794342, -0.020714225247502327, 0.014763136394321918, 0.024129632860422134, -0.04071875661611557, 0.0032435283064842224, 0.0014757591998204589, 0.003195476019755006, 0.0038441817741841078, -0.037258993834257126, -0.017683235928416252, 0.04104403406381607, -0.012249632738530636, -0.017564954236149788, -0.017831088975071907, -0.021778767928481102, -0.0028775918763130903, -0.006812333595007658, -0.05228087306022644, 0.012759726494550705, -0.01261187344789505, 0.012478805147111416, 0.011429048143327236, 0.008671586401760578, -0.025933440774679184, -0.003051319159567356, -0.0229320228099823, 0.05943696200847626, -0.025918656960129738, -0.0004879153857473284, -0.06742103397846222, -0.053877685219049454, -0.0772976204752922, -0.015214088372886181, 0.037850406020879745, 0.016929185017943382, -0.012996291741728783, 0.03335566818714142, 0.002735283225774765, 0.019280049949884415, -0.03282339870929718, 0.01821550726890564, -0.03010289929807186, 0.025120249018073082, 0.012094386853277683, -0.008346309885382652, -0.037525128573179245, 0.008849010802805424, -0.013905588537454605, -0.03125615417957306, 0.04503606632351875, -0.04917595535516739, -0.010046620853245258, -0.06274887174367905, 0.019767966121435165, 0.055444929748773575, 0.005463173612952232, -0.019501829519867897, 0.0025338332634419203, -0.028092097491025925, 0.002467299345880747, -0.0285060852766037, -0.03891494870185852, 0.021468276157975197, -0.04122145473957062, -0.015243658795952797, 0.010231437161564827, -0.00535598024725914, 0.010342326946556568, -0.03802782669663429, -0.008760298602283001, -0.04675116389989853, 0.03128572553396225, 0.020359378308057785, -0.015273230150341988, 0.01775716245174408, 0.027278905734419823, -0.03714070841670036, -0.05976223945617676, -0.02538638561964035, 0.013388101942837238, 0.025445526465773582, 0.0007267906330525875, -0.008279776200652122, -0.012131350114941597, -0.05414381995797157, -0.003230591071769595, 0.07564166933298111, 0.031492721289396286, -0.024203559383749962, 0.05775143951177597, 0.045095209032297134, -0.022325824946165085, -0.012160921469330788, 0.022222327068448067, 0.03894451633095741, 0.05710088461637497, 0.01713617891073227, 0.004786745645105839, -0.05520836263895035, 0.014393503777682781, 0.03548475354909897, -0.011880000121891499, 0.007836217060685158, 0.0034338892437517643, -0.0003807218454312533, -0.004025301896035671, 0.013011076487600803, 0.05095019191503525, 0.058490704745054245, 0.005104629788547754, 0.032971251755952835, -0.019087841734290123, -0.03530732914805412, -0.022059688344597816, 0.01893998682498932, 0.014230865053832531, -0.023242514580488205, 0.018023299053311348, -0.028387803584337234, 0.005319016985595226, 0.004672159440815449, -0.013558133505284786, 0.033266957849264145, -0.027397187426686287, 0.0001532821188447997, -0.01487402617931366, -0.030516888946294785, 0.020847292616963387, 0.057869721204042435, 0.05825413763523102, -0.026717063039541245, -0.037791263312101364, -0.003907019272446632, 0.0023693465627729893, -0.014600497670471668, 0.045124780386686325, 0.03255726397037506, 0.016396913677453995, -0.029496701434254646, -0.07091036438941956, -0.021483061835169792, 0.0008349082199856639, 0.0038441817741841078, -0.010423646308481693, -0.013255034573376179, -0.007954498752951622, 0.02821037918329239, -0.012537946924567223, 0.022074474021792412, 0.012634051032364368, -0.02007845602929592, 0.00645378977060318, -0.010985489003360271, 0.03424278646707535, 0.010926347225904465, -0.012183099053800106, -0.023301655426621437, -0.03578045964241028, -0.02889050357043743, -0.01821550726890564, 0.019250478595495224, -0.04157630354166031, 0.0002349478891119361, 0.0013038798933848739, -0.029363634064793587, -0.03249812126159668, 0.047490429133176804, -0.027012769132852554, 0.036549296230077744, 0.022118831053376198, -0.05828370898962021, 0.02244410663843155, -0.03184756636619568, -0.014179116114974022, 0.010364505462348461, -0.049057673662900925, 0.016648264601826668, 0.027604181319475174, 0.01285583060234785, -0.026968413963913918, 0.03282339870929718, 0.008021033369004726, -0.022296253591775894, 0.014829670079052448, -0.03459763526916504, 0.017017897218465805, 0.0668296217918396, -0.010985489003360271, 0.009351711720228195, -0.028653938323259354, 0.03950636088848114, -0.00796189159154892, -0.03983163833618164, 0.06564679741859436, -0.013639452867209911, 0.033621806651353836, 0.013713379390537739, -0.007998854853212833, -0.020862078294157982, 0.006801244802772999, -0.01902869902551174, 0.004834797699004412, 0.06753931939601898, -0.018732992932200432, 0.0056073302403092384, -0.03039860539138317, -0.04335054010152817, -0.021187355741858482, -0.0004925357643514872, -0.020004529505968094, 0.03578045964241028, -0.00905600469559431, -0.014193901792168617, 0.049087245017290115, -0.04006820172071457, -0.020950790494680405, -0.0010044772643595934, -0.005174859892576933, -0.002703864360228181, -0.014445251785218716, -0.04820012301206589, 0.002441425109282136, 0.016825687140226364, 0.02368607372045517, -0.011961319483816624, 0.012759726494550705, -0.021970978006720543, 0.0011735843727365136, -0.029467131942510605, -0.00285356561653316, -0.020063672214746475, -0.017934586852788925, -0.0429069809615612, 0.0022547603584825993, -0.008279776200652122, -0.014630068093538284, -0.05343412607908249, -0.02001931518316269, -0.028151238337159157, -0.016855258494615555, 0.024159204214811325, -0.004956776741892099, 0.005426210351288319, 0.008279776200652122, -0.04222685843706131, 0.008671586401760578, -0.04196072369813919, -0.04006820172071457, -0.04707644134759903, 0.006579464767128229, 0.007159788627177477, 0.03462720662355423, 0.019206123426556587, 0.040630042552948, -0.01562807708978653, -0.028018170967698097, -0.008013640530407429, 0.008775084279477596, -0.00256340391933918, 0.05074319988489151, 0.06079721078276634, -0.014933167956769466, 0.030250752344727516, 0.011813466437160969, 0.0020810330752283335, 0.013048039749264717, 0.00484958291053772, 0.005843895487487316, 0.016855258494615555, 0.010578892193734646, -0.002066247630864382, 0.0012096235295757651, 0.005684953182935715, -0.005326409358531237, 0.015243658795952797, 0.012818867340683937, 0.011732147075235844, -0.018008513376116753, -0.040896181017160416, 0.010224045254290104, 0.002681686310097575, -0.019339190796017647, -0.00871594250202179, -0.018466858193278313, 0.01598292402923107, 0.027707679197192192, -0.04503606632351875, -0.04335054010152817, 0.0007582093821838498, 0.01261187344789505, -0.03613530844449997, -0.022991163656115532, -0.05035877972841263, 0.023434722796082497, -0.04125102609395981, 0.02627350389957428, -0.02112821489572525, 0.022384965792298317, 0.0024857809767127037, -0.021379563957452774, -0.0011985345045104623, -0.030280323699116707, -0.0008861947571858764, 0.01893998682498932, 0.03181799501180649, 0.0020459177903831005, 0.009226036258041859, 0.02319815754890442, -0.03010289929807186, 0.018126795068383217, -0.009543920867145061, -0.013129359111189842, -0.03158143162727356, -0.04613018035888672, -0.014046048745512962, 0.021468276157975197, -0.004879153799265623, -0.0026114562060683966, 0.02994026243686676, -0.01732838898897171, 0.02371564507484436, -0.026643136516213417, 0.019694039598107338, -0.05349326878786087, -0.022725028917193413, 0.0015210391720756888, -0.018792133778333664, -0.0026225452311336994, 0.02142392098903656, 0.005733005702495575, -0.045361343771219254, -0.011222053319215775, -0.005219215992838144, -0.04107360169291496, 0.011687790974974632, 0.024809757247567177, 0.016751760616898537, -0.03193628042936325, -0.013669023290276527, 0.006357685197144747, 0.009750914759933949, 0.0330895334482193, 0.04033433645963669, -0.023804355412721634, -0.010224045254290104, 0.022651102393865585, 0.03403579443693161, 0.03918108344078064, -0.0031825390178710222, -0.01848164200782776, 0.03063517063856125, 0.006871474906802177, -0.03557346761226654, -0.02554902248084545, -0.012826260179281235, -0.03853052854537964, -0.01228659600019455, 0.043557535856962204, -0.0055740633979439735, -0.020862078294157982, -0.013550740666687489, -0.0072152335196733475, 0.033237386494874954, 0.02463233284652233, 0.023922638967633247, -0.019383547827601433, -0.024558406323194504, -0.016456054523587227, 0.01902869902551174, 0.0042581707239151, -0.01942790299654007, 0.01902869902551174, -0.01382426917552948, -0.013158929534256458, -0.03743641451001167, 0.014726173132658005, -0.01505144964903593, 0.030309895053505898, 0.030783023685216904, 0.035336900502443314, -0.02247367799282074, 0.030546460300683975, 0.0011246079811826348, -0.0029884816613048315, 0.04305483400821686, 0.006871474906802177, -0.023375581949949265, -0.02646571211516857, 0.02764853835105896, 0.03971335291862488, -0.03459763526916504, 0.017121393233537674, -0.04524306207895279, 0.009847019799053669, -0.0007790012750774622, 0.004483646713197231, 0.010667604394257069, 0.02309466153383255, 0.04822969436645508, 0.013580311089754105, -0.013506384566426277, 0.00755159929394722, 0.0006283758557401597, -0.022251898422837257, -0.019339190796017647, -0.031758856028318405, -0.004302526358515024, 0.05594762787222862, -0.03187713772058487, -0.03643101453781128, -0.004860672168433666, 0.0047386931255459785, -0.042670417577028275, -0.03649015724658966, -0.024942824617028236, 0.015058842487633228, 0.042404282838106155, 0.006202439311891794, 0.037465985864400864, -0.03592831268906593, -0.03764341026544571, 0.020788151770830154, -0.03161100298166275, 0.014060833491384983, -0.025001967325806618, -0.0018925202311947942, 0.005799539387226105, 0.005481655243784189, -0.032616402953863144, -0.030783023685216904, -0.042936552315950394, 0.004882850218564272, -0.040275197476148605, -0.021276067942380905, 0.01735795848071575, -0.0025541631039232016, 0.01726924628019333, 0.02185269445180893, -0.0006283758557401597, -0.01945747435092926, 0.021305637434124947, 0.017905015498399734, 0.031788427382707596, -0.030117684975266457, 0.05097976326942444, -0.020418519154191017, -0.044829074293375015, -0.026051724329590797, -0.041487593203783035, -0.011746931821107864, -0.02637699991464615, 0.016160348430275917, -0.020566372200846672, -0.009529135189950466, 0.016603907570242882, -0.06339942663908005, 0.027086695656180382, 0.025046322494745255, 0.03909236937761307, -0.018038082867860794, 0.005270964466035366, 0.014829670079052448, -0.0023139016702771187, 0.031049160286784172, 0.006871474906802177, 0.009033827111124992, -0.010312756523489952, -0.024085277691483498, 0.0007184738642536104, 0.03066474199295044, -0.016751760616898537, 0.05225130170583725, -0.012508375570178032, 0.03462720662355423, 0.010638033971190453, 0.01667783409357071, -0.03217284381389618, 0.031433578580617905, -0.01038668304681778, -0.05615462362766266, -0.0030014188960194588, -0.01945747435092926, 0.03240940719842911, 0.0013482358772307634, 0.05254700779914856, -0.005747790914028883, -0.01883649080991745, 0.0034191040322184563, 0.03711114078760147, -0.018629496917128563, 0.03039860539138317, -0.006206135731190443, -0.004284044727683067, -0.031049160286784172, -0.00340247037820518, -0.013691200874745846, 0.01026840042322874, -0.01170996855944395, -0.02859479747712612, -0.006268973462283611, -0.03714070841670036, -0.00674949586391449, -0.034420210868120193, -0.0015746359713375568, 0.007799253333359957, -0.0002536605461500585, 0.010179689154028893, -0.09486258029937744, -0.05795843154191971, 0.030871735885739326, -0.01482227724045515, -0.005925214849412441, -0.024617549031972885, 0.01851121336221695, 0.05322713032364845, 0.02037416398525238, -0.0409553200006485, -0.001658727414906025, -0.013121966272592545, -0.023405153304338455, 0.00040289980825036764, -0.005625812336802483, 0.02404092065989971, 0.013802090659737587, 0.000545208458788693, 0.0028812880627810955, 0.029304493218660355, -0.013373317196965218, 0.016263846307992935, -0.05704174190759659, 0.05112761631608009, 0.028949646279215813, -0.007858394645154476, -0.022414537146687508, 0.04613018035888672, 0.012951935641467571, -0.004339489620178938, 0.01176171749830246, -0.019280049949884415, 0.006305936723947525, 0.005426210351288319, -0.023168588057160378, 0.028639154508709908, -0.016293415799736977, 0.021409135311841965, -0.014097797684371471, 0.007181966677308083, -0.0383235365152359, -0.031167441979050636, 0.04973779618740082, -0.02279895544052124, 0.052103448659181595, 0.011273802258074284, -0.007747504860162735, 0.017978942021727562, -0.009543920867145061, 0.00905600469559431, 0.05106847733259201, 0.0017908711452037096, -0.01562807708978653, -0.021039502695202827, 0.01235312968492508, 0.025918656960129738, -0.043261829763650894, -0.008102351799607277, 0.026199577376246452, -0.004531698767095804, -0.017417101189494133, -0.01215352863073349, 0.004099228419363499, -0.04400109499692917, -0.017520597204566002, 0.0026410268619656563, -0.00828716903924942, 0.006982364691793919, -0.0033692035358399153, 0.01095591764897108, -0.008523733355104923, 0.04346882551908493, 0.03096044808626175, 0.002193771069869399, 0.00720784068107605, 0.01926526427268982, -0.006564679555594921, -0.0013888954417780042, 0.016988325864076614, -0.04092574864625931, 0.006875171326100826, -0.023183373734354973, -0.040245626121759415, 0.028846148401498795, -0.023863498121500015, -0.036312732845544815, -0.0005909505416639149, 0.010978096164762974, 0.026554424315690994, 0.008900758810341358, 0.032971251755952835, -0.025105463340878487, -0.019930602982640266, 0.00928517710417509, 0.013121966272592545, 0.010164903476834297, 0.008235420100390911, 0.016308201476931572, 0.01077849417924881, 0.0032287430949509144, 0.02050723135471344, -0.004805227275937796, 0.0052820537239313126, 0.020847292616963387, 0.002520896028727293, 0.0006847448530606925, 0.012560124509036541, -0.010290578939020634, 0.021009931340813637, -0.018274648115038872, 0.005178556311875582, -0.02158655971288681, 0.03521861881017685, 0.011961319483816624, 0.015044057741761208, 0.0042322962544858456, 0.003703721333295107, 0.003093827050179243, -0.0022972682490944862, -0.023316441103816032, 0.06186175346374512, -0.01592378318309784, -0.04335054010152817, 0.010334935039281845, -0.0022566085681319237, 0.008021033369004726, 0.017313603311777115, 0.012183099053800106, 0.013986906968057156, -0.01657433807849884, 0.00928517710417509, 0.03974292427301407, -0.008146707899868488, 0.029437560588121414, -0.009248213842511177, -0.027012769132852554, 0.013484206981956959, -0.014637460932135582, 0.02083250880241394, -0.004882850218564272, 0.0042581707239151, 9.893454262055457e-05, 0.01315153669565916, -0.0007711465586908162, 0.016943970695137978, -0.016012495383620262, -0.014216079376637936, 0.001674436847679317, -0.04196072369813919, 0.022858096286654472, 0.023301655426621437, -0.010246222838759422, -0.005263572093099356, 0.033296529203653336, 0.001957206055521965, 0.04707644134759903, -0.06635648757219315, -0.013099788688123226, 0.01988624781370163, 0.0032638581469655037, 0.024528836831450462, 0.05035877972841263, 0.02775203436613083, -0.008176279254257679, -0.004413416143506765, -0.003322999458760023, -0.030028972774744034, 0.01307021826505661, -0.004428201820701361, 0.0038996266666799784, 0.00033890712074935436, -0.004306222777813673, 0.014933167956769466, 0.0022492159623652697, 0.0504474937915802, 0.0033359364606440067, 0.032024990767240524, -0.025238530710339546, -0.011162912473082542, 0.012375308200716972, 0.02460276335477829, -0.02053680084645748, 0.010918954387307167, 0.06753931939601898, 0.005696042440831661, -0.0458640456199646, -0.04340968281030655, 0.03468634560704231, -0.025726446881890297, -0.004054872319102287, 0.009787878021597862, 0.005112022627145052, 0.01549500972032547, 0.04533177241683006, -0.006195046938955784, -0.007108039688318968, 0.031758856028318405, 0.031226584687829018, -0.026332644745707512, 0.0021642004139721394, -0.05710088461637497, 0.012116565369069576, 0.010490180924534798, -0.01475574355572462, 0.014009085483849049, 0.02503153681755066, 0.007584866136312485, 0.009839626960456371, -0.0288313627243042, 0.024203559383749962, 0.0027556130662560463, 0.0321137011051178, -0.02548988163471222, 0.002559707500040531, 0.02646571211516857, -0.0036187057849019766, 0.024292271584272385, 0.004753478337079287, -0.038175683468580246, -0.02015238255262375, -0.0257116612046957, -0.022192757576704025, -0.005481655243784189, 0.015539365820586681, -0.044208090752363205, 0.04929423704743385, 0.0023175980895757675, 0.016810903325676918, -0.003788736881688237, 0.003055015578866005, 0.021630914881825447, 0.006172868888825178, 0.023612147197127342, -0.004199029412120581, 0.029688911512494087, 0.014445251785218716, 0.033533092588186264, -0.0013482358772307634, -0.008294560946524143, 0.009026434272527695, 0.014060833491384983, -0.004638892598450184, 0.0016688923351466656, -0.017091823741793633, -0.016337772831320763, -0.0009813752258196473, 0.032379839569330215, -0.010630641132593155, 0.0037092657294124365, -0.002692775335162878, 0.020862078294157982, 0.013535954989492893, 0.011066807433962822, 0.018925203010439873, 0.02220754139125347, -0.0014387959381565452, 0.02624393254518509, 0.00414358451962471, 0.002872047247365117, 0.002291723620146513, 0.019694039598107338, 0.01281147450208664, 0.017905015498399734, -0.01972360908985138, -0.01848164200782776, -0.01608642190694809, -0.007363086566329002, -0.004960473161190748, 0.007396353408694267, 0.022695457562804222, -0.012981506064534187, 0.03953593224287033, -0.00992833822965622, 0.008161493577063084, 0.0163821280002594, 0.023612147197127342, -0.034124504774808884, -0.009203857742249966, -0.005507529713213444, -0.011547330766916275, -0.028580011799931526, 0.011310765519738197, -0.02503153681755066, 0.006172868888825178, 0.017180535942316055, -0.025135034695267677, -0.00048052272177301347, -0.03252769261598587, 0.006605339236557484, -0.012301381677389145, 0.013048039749264717, 0.0167074054479599, 0.011665613390505314, 0.02912706881761551, -0.012138742953538895, 0.008767691440880299, -0.0042581707239151, 0.025075893849134445, 0.008627231232821941, -0.010371898300945759, 0.016796117648482323, -0.015554150566458702, 0.0004971561720594764, 0.0004038238839711994, -0.012257025577127934, 0.003851574379950762, -0.0014304791111499071, -0.026480497792363167, -0.015243658795952797, -0.0014249347150325775, -0.017062252387404442, 0.010076191276311874, 0.008279776200652122, 0.04252256453037262, -0.01320328563451767, 0.0023638021666556597, 0.013654237613081932, 0.02441055327653885, 0.003768407041206956, 0.049619514495134354, 0.01624906063079834, 0.0052155195735394955, 0.02479497157037258, 0.05402553826570511, -0.036312732845544815, 0.0008182747405953705, -0.0031751461792737246, 0.002661356469616294, -0.02446969598531723, 0.033562663942575455, 0.004468861036002636, 0.0031326385214924812, 0.013402887620031834, 0.009048612788319588, -0.02942277491092682, 0.005404032301157713, 0.01395733654499054, -0.003470852505415678, 0.02404092065989971, -0.028092097491025925, 0.02821037918329239, 0.0033322402741760015, 0.011636042036116123, 0.02411484718322754, 0.025046322494745255, 0.0020015619229525328, 0.03101958893239498, 0.018363360315561295, 0.0010506814578548074, -0.0017742377240210772, 0.0651736631989479, 0.005514922086149454, -0.021970978006720543, 0.003528145607560873, 0.012375308200716972, 0.013114573433995247, 0.007614437025040388, -0.00069814408197999, -0.012471412308514118, 0.03521861881017685, -0.025563808158040047, 0.01315153669565916, 0.0049382951110601425, 0.02988111972808838, 0.014156938530504704, -0.016204703599214554, -0.0029274921398609877, 0.023272084072232246, 0.012597087770700455, -0.026036938652396202, 0.024676689878106117, 0.01533237099647522, -0.021778767928481102, -0.028757436200976372, 0.00025389157235622406, -0.008264990523457527, 0.02050723135471344, -0.022710243239998817, -0.015613292343914509, 0.025800373405218124, 0.012944542802870274, -0.04305483400821686, 0.007932321168482304, 0.047549571841955185, -0.006753192283213139, -0.015214088372886181, -0.03764341026544571, 0.0389740876853466, 0.005189645104110241, -1.7687509171082638e-05, 0.005045488476753235, -0.012478805147111416, -0.013306782580912113, -0.03705199807882309, -0.03610573709011078, 0.0064094336703419685, -0.004912420641630888, -0.005581456236541271, -0.002068095840513706, -0.022695457562804222, -0.039949920028448105, -0.0028369321953505278, 0.021763982251286507, -0.015199302695691586, -0.00473499670624733, 0.0268649160861969, 0.038767095655202866, 0.023937424644827843, 0.034154076129198074, 0.010468002408742905, -0.01789022982120514, 0.0022676975931972265, -0.02368607372045517, 0.009129931218922138, -0.002029284369200468, -0.027471113950014114, 0.011052022688090801, -0.011946533806622028, 0.0023360797204077244, -0.016648264601826668, 0.0025412258692085743, 0.020315021276474, 0.021083857864141464, 0.010719353333115578, 0.0366971492767334, 0.017180535942316055, -1.7658632714301348e-05, 0.015376727096736431, 0.015450653620064259, -0.01840771548449993, -0.015598506666719913, 0.031226584687829018, -0.01389080286026001, 0.004287741146981716, -0.01215352863073349, -0.023079875856637955, 0.011288587935268879, 0.023331226781010628, -0.0068382080644369125, 0.0012798537500202656, -0.023434722796082497, 0.015835070982575417, 0.031049160286784172, -0.003093827050179243, 0.0013242097338661551, 0.004147280473262072, -0.029821978881955147, -0.006169172469526529, 0.018437286838889122, -0.018038082867860794, 0.01582028716802597, 0.015805501490831375, -0.02886093407869339, 0.011843036860227585, -0.008789869025349617, -0.0009282405371777713, -0.01562807708978653, 0.009226036258041859, -0.008501555770635605, 0.0009970846585929394, -0.016648264601826668, -0.0015570784453302622, 0.0135950967669487, -0.0011070504551753402, 0.010623248293995857, 0.01864428073167801, -0.012597087770700455, -0.0222814679145813, -0.034213218837976456, 0.0034837897401303053, 0.027825960889458656, 0.005274660885334015, -0.01366163045167923, 0.007518332451581955, -0.011288587935268879, 0.032054562121629715, 0.03465677797794342, -0.03226155415177345, 0.016500411555171013, -0.011133342050015926, 0.02829909138381481, 0.009115146473050117, 0.04015691205859184, 0.008664194494485855, -0.0015552302356809378, 0.025445526465773582, -0.011451225727796555, -0.007248500362038612, 0.044799502938985825, -0.004073353949934244, -0.03714070841670036, -0.007887965068221092, 0.012020460329949856, -0.0324389785528183, 0.030280323699116707, -0.022355394437909126, 0.02918620966374874, 0.01459310483187437, 0.002406309824436903, -0.011916963383555412, -0.009484779089689255, 0.01292236428707838, 0.040245626121759415, -0.011783895082771778, 0.0013399191666394472, -0.04193115234375, 0.03921065479516983, -0.016470840200781822, 0.013447243720293045, -0.01781630329787731, 0.010283186100423336, -0.002570796525105834, -0.030147256329655647, -0.05887512117624283, 0.036253590136766434, 0.0045797512866556644, 0.004021605476737022, 0.0010811761021614075, -0.006945401430130005, 0.018319005146622658, 0.029038356617093086, -0.008915544487535954, -0.007747504860162735, -0.006172868888825178, 0.046278033405542374, 0.003589135129004717, -0.006660784129053354, -0.002689079148694873, -0.01505144964903593, -0.013905588537454605, -0.004546483978629112, 0.006442700512707233, -0.006583161186426878, 0.00299772247672081, 0.017150964587926865, -0.005503833293914795, -0.023331226781010628, -0.011148126795887947, -0.02152741700410843, -0.007710541598498821, -0.007902750745415688, 0.012870616279542446, -0.004731300752609968, 0.01159907877445221, 0.012929757125675678, 0.013454635627567768, 0.005507529713213444, -0.0025227442383766174, -0.03069431334733963, 0.0008741816855035722, 0.0048865461722016335, -0.03465677797794342, -0.02856522798538208, -0.01700311154127121, -0.002718649571761489, 0.031137872487306595, 0.006313329096883535, -0.0014600497670471668, 0.0229320228099823, 0.006775370333343744, 0.017978942021727562, -0.008161493577063084, -0.029851550236344337, 0.018525999039411545, 0.015154947526752949, -0.010852420702576637, -0.0007078469498082995, 0.03066474199295044, 0.012804082594811916, -0.03619445115327835, -0.002838780404999852, -0.00946999341249466, 0.017047466710209846, -0.02319815754890442, -0.006017623003572226, -0.0023139016702771187, 0.03190670907497406, -0.022325824946165085, -0.004121406469494104, -0.03941764682531357, 0.00012093925033695996, -0.03096044808626175, -0.01837814599275589, 0.05287228524684906, 0.0009023662423714995, -0.008176279254257679, -0.006243098992854357, -0.030117684975266457, 0.03217284381389618, -0.021630914881825447, -0.025756018236279488, -0.023050304502248764, 0.003646428231149912, 0.019206123426556587, 0.048407118767499924, 0.02371564507484436, 0.02319815754890442, 0.0019867767114192247, 0.002581885550171137, -0.007976677268743515, 0.0017705414211377501, 0.020522017031908035, -0.009129931218922138, -0.009100360795855522, -0.01689961366355419, 0.01883649080991745, 0.02581515908241272, 0.009847019799053669, -0.019206123426556587, -0.01452657114714384, -0.006357685197144747, 0.002567100105807185, -0.0015561543405056, -0.03737727552652359, -0.010009657591581345, 0.012966720387339592, 0.031729284673929214, -0.00992833822965622, -0.027692893519997597, 0.04834797605872154, 0.0031973242294043303, 0.011643434874713421, 0.03743641451001167, -0.0008972837822511792, -0.02617000602185726, 0.011443832889199257, -0.006213528569787741, 0.020862078294157982, 0.0037813440430909395, -0.023508649319410324, -0.022399751469492912, -0.029467131942510605, -0.03646058589220047, -0.013048039749264717, -0.009144716896116734, -0.031758856028318405, -0.024321842938661575, 4.617523154593073e-05, 0.005359676666557789, 0.007710541598498821, 0.006889956537634134, 0.021379563957452774, -0.0023933728225529194, -0.013425065204501152, -0.004483646713197231, -0.0043949345126748085, 0.009262999519705772, 0.02182312309741974, 0.004716515075415373, -0.010541928932070732, 0.0021142999175935984, 0.01139947772026062, 0.0038885376416146755, -0.010379290208220482, 0.044148948043584824, 0.02220754139125347, -0.007954498752951622, 0.02637699991464615, 0.008006247691810131, 0.016914399340748787, 0.023405153304338455, -0.01749102771282196, 0.009218643419444561, -0.031995419412851334, 0.007111736107617617, -0.017978942021727562, 0.031137872487306595, 0.037199851125478745, -0.018910417333245277, 0.014896203763782978, 0.022192757576704025, 0.0024728437419980764, 0.004383845720440149, -0.01159907877445221, 0.020743796601891518, -0.01565764844417572, -0.0011929901083931327, -0.0081910640001297, 0.007185662630945444, -0.02506110817193985, 0.02902357280254364, 0.020462874323129654, 0.031788427382707596, -0.028343448415398598, 0.061211202293634415, 0.010246222838759422, 0.004753478337079287, -0.00017303437925875187, -0.001887899823486805, -0.02886093407869339, -0.02381914108991623, 0.009972694329917431, -0.020270666107535362, -0.013646844774484634, -0.021897049620747566, 0.04855497181415558, -0.004442987032234669, 0.02942277491092682, -0.011806073598563671, 0.006268973462283611, 0.011318158358335495, 0.035987455397844315, -0.013011076487600803, -0.007680970709770918, -0.02220754139125347, 0.009418245404958725, 0.02662835083901882, 0.012604480609297752, -0.015642862766981125, 0.021675270050764084, 0.025312457233667374, -0.005163771100342274, 0.006657087709754705, 0.014748350717127323, -0.026805775240063667, 0.044799502938985825, 0.017875444144010544, -0.011421655304729939, -0.008930330164730549, -0.00963263213634491, -0.012271811254322529, -0.003463459899649024, 0.023700859397649765, -0.03646058589220047, -0.006938008591532707, -0.0171953197568655, 0.009314748458564281, 0.02829909138381481, -0.003291580593213439, -0.011096378788352013, 0.026362216100096703, 0.013062825426459312, 0.03335566818714142, -0.005895643960684538, 0.007108039688318968, 0.00874551385641098, 0.005562974605709314, 0.0014591256622225046, -0.013351138681173325]" -"Using IoT Sensors, TimescaleDB, and Grafana to Control the Temperature of the Nuclear Fusion Experiment at the Max Planck Institute","This is an installment of our “Community Member Spotlight” series, where we invite our customers or users to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition, David Bailey, an intern at the Wendelstein 7-X fusion reactor experiment at theMax Planck Institute for Plasma Physics, explains how he’s using TimescaleDB and Grafana to monitor the reliability of the reactor’s heating system. Currently working on the designs of the sensor boards that measure the microwaves feeding the reactor, David needs a tight grasp on his systems and data to prevent the experiment from being aborted due to excessive heating—and is successfully achieving it with a little help from TimescaleDB.About the UserI am David Bailey, and I am currently completing an internship at the Wendelstein 7-X fusion reactor experiment, which is operated by the Max Planck Institute for Plasma Physics in Greifswald, Germany. The experiment aims to help us understand, and someday utilize, the power of fusion for further scientific endeavors and power generation. It does this by using a novel way of containing the hot gasses needed for the experiments and tweaking its design to reach longer and longer experiment runs.David BaileyThe end goal is to reach 30 minutes of uninterrupted containment of plasma heated to millions of degrees. To be able to do this, there is a lot of data to collect and process and a number of problems left to solve—one of which I can help with!About the ProjectMy specific task at the internship is to help with the heating system. Because the experiment is not set up for self-sustaining fusion, where the gasses would heat themselves, we constantly have to feed in energy to keep it hot: 10 megawatts, to be precise!We do this with various microwave sources—similar to scaled-up versions of household microwaves—and a big array of mirrors to guide the energy to the reactor vessel.Schematic of the W7-X microwave heating system and mirror assembly. Credit: Torsten Stange, David Bailey; Max Planck Institute GreifswaldThere are dangers in using these highly powerful microwaves: if dust or a fine droplet of water gets in the way of the energy, an arc can form—a lightning bolt of sorts. If the energy is not turned off fast enough, this arc can",https://www.timescale.com/blog/using-iot-sensors-timescaledb-and-grafana-to-control-the-temperature-of-the-nuclear-fusion-experiment-in-the-max-planck-institute/,482,"[0.004719009157270193, 0.045747339725494385, 0.025608891621232033, -0.002158495830371976, 0.016772020608186722, 0.031650424003601074, -0.012631615623831749, 0.020288733765482903, -0.03315329551696777, -0.017313053831458092, 0.031830769032239914, -0.037090811878442764, -0.01249635685235262, -0.014367429539561272, 0.051338013261556625, 0.044575098901987076, -0.019387012347579002, -0.009347846731543541, -0.047460608184337616, 0.038112763315439224, -0.019326897338032722, -0.002552998950704932, 0.043913837522268295, 0.020303763449192047, -0.010099280625581741, -0.039675746113061905, -0.033183351159095764, 0.049744971096515656, 0.050857093185186386, -0.05798069387674332, -0.010730486363172531, -0.037180982530117035, -0.052900996059179306, 0.0018428933108225465, -0.010429912246763706, -0.001109305303543806, 0.027111759409308434, 0.008438610471785069, -0.018500320613384247, -0.012353585101664066, -0.016185902059078217, -0.03134985268115997, -0.026781128719449043, 0.06077602878212929, -0.002864844398573041, -0.037722017616033554, -0.06702796369791031, 0.014134484343230724, 0.06161763519048691, 0.009002186357975006, 0.015659896656870842, 0.034535933285951614, -0.009678477421402931, -0.053231626749038696, 0.013736224733293056, -0.037271156907081604, 0.012406185269355774, 0.045296479016542435, -0.03264231979846954, -0.020754624158143997, -0.004880567546933889, -0.037842247635126114, 0.021160397678613663, 0.02932097762823105, -0.020949997007846832, -0.000253374339081347, -0.003353276988491416, 0.031890884041786194, 0.006725339684635401, -0.001443693763576448, 0.05837143957614899, 0.010850715450942516, 0.0072626154869794846, -0.02941115014255047, 0.015990527346730232, -0.05858184024691582, -0.024106021970510483, 0.007890063337981701, -0.030297843739390373, -0.013345478102564812, 0.011256489902734756, -0.0287198293954134, -0.002043902175500989, 0.017508426681160927, 0.00024961718008853495, -0.024797340855002403, -0.022332636639475822, -0.004929410759359598, -0.013262820430099964, -0.012188268825411797, -0.040817927569150925, 0.055636215955019, -0.020814739167690277, 0.043072231113910675, 0.021821660920977592, 0.006225635763257742, -0.0033852127380669117, 0.042350854724645615, 0.03140996769070625, 0.044424813240766525, -0.006003962364047766, -0.029245834797620773, 0.004583750851452351, -0.02917069010436535, 0.040757812559604645, -0.037361327558755875, -0.005421600770205259, 0.033604156225919724, -0.021250570192933083, 0.016291102394461632, -0.051127608865499496, -0.020784681662917137, -0.015013663098216057, -0.010422397404909134, -0.02920074760913849, 0.002631899667903781, -0.0060227480717003345, -0.009903907775878906, -0.019582385197281837, -0.023234358057379723, -0.040216781198978424, 0.017944257706403732, 0.0028892660047858953, 0.013450679369270802, 0.012210812419652939, -0.038353223353624344, 0.019973130896687508, -0.037421442568302155, -0.06480371952056885, 0.0029493807815015316, 0.05888241529464722, -0.042410969734191895, 0.041990164667367935, -0.035407599061727524, -0.0029024160467088223, 0.004399649333208799, -0.014367429539561272, -0.019762730225920677, -0.008573868311941624, 0.007807405665516853, 0.023504873737692833, 0.02790828049182892, 0.053141456097364426, -0.002348233014345169, 0.019417069852352142, 0.036159031093120575, 0.0074767740443348885, 0.041689589619636536, 0.011158803477883339, -0.023144185543060303, 0.027111759409308434, -0.018335003405809402, -0.037090811878442764, -0.016621733084321022, 0.06360142678022385, -0.014540259726345539, 0.037030696868896484, 0.09041260927915573, 0.0016099485801532865, -0.048242099583148956, 0.026841243728995323, 0.014029284007847309, -0.030808817595243454, 0.0041930051520466805, -0.038834139704704285, 0.013390564359724522, -0.0159304141998291, -0.010084251873195171, -0.07947172224521637, 0.014224656857550144, -0.06991347670555115, -0.037962473928928375, -0.022302579134702682, 0.041389018297195435, 0.043132346123456955, 0.021025139838457108, 0.008386010304093361, -0.05248019099235535, 0.0031447538640350103, -0.017403224483132362, -0.07364059239625931, -0.024226251989603043, -0.022888697683811188, 0.011241461150348186, -0.012781902216374874, -0.024090992286801338, -0.058161038905382156, -0.0074767740443348885, -0.017989344894886017, 0.006007719784975052, -0.020153475925326347, 0.06630659103393555, -0.006195578258484602, 0.006499909330159426, 0.006383436731994152, -0.03315329551696777, 0.035738229751586914, -0.027547592297196388, -0.011504463851451874, 0.0033194622956216335, 0.0038623737636953592, 0.022152291610836983, 0.040787868201732635, -0.022272521629929543, 0.034776393324136734, 0.0006161763449199498, -0.034145187586545944, 0.0014145756140351295, -0.06125694885849953, -0.034986793994903564, 0.021551143378019333, 0.012000410817563534, 0.034475818276405334, -0.0062857503071427345, -0.039435286074876785, 0.0028817516285926104, -0.042561255395412445, -0.011451862752437592, 0.002507912926375866, -0.013751253485679626, -0.00766087556257844, 0.10556153208017349, 0.014119455590844154, -0.009881365112960339, -0.022708352655172348, 0.012428727932274342, 0.05145823955535889, -0.005703388713300228, 0.07520357519388199, 0.05491483956575394, -0.018966209143400192, -0.0529310517013073, -0.005692116916179657, -0.039675746113061905, -0.008288323879241943, 0.007446717005223036, -0.0015639232005923986, 0.0013290999922901392, 0.0015094442060217261, -0.004467278718948364, 0.008844384923577309, 0.020228618755936623, 0.004534907639026642, 0.010610256344079971, 0.0016353095415979624, 0.018380090594291687, -0.025368431583046913, -0.042771656066179276, 0.028539486229419708, 0.023489845916628838, 0.028314055874943733, 0.010918344371020794, 0.005823618266731501, -0.052119504660367966, -0.014322343282401562, -0.016756990924477577, -0.07917115092277527, 0.05942344665527344, 0.013848939910531044, 0.0072851586155593395, 0.017493396997451782, -0.032882776111364365, -0.031139450147747993, 0.038864199072122574, -0.051217783242464066, 0.049233995378017426, 0.008746698498725891, 0.002023237757384777, -0.03231168910861015, -0.044965844601392746, -0.0016118271742016077, 0.009362875483930111, 0.031620368361473083, -0.025443576276302338, -0.027622735127806664, -0.019897988066077232, 0.027953367680311203, 0.041479188948869705, -0.025143001228570938, 0.008866928517818451, -0.015750069171190262, -0.014036797918379307, 0.008934557437896729, -0.004482307471334934, -0.007495560217648745, 0.024556882679462433, -0.0025586348492652178, 0.024782313033938408, 0.009625877253711224, -0.037331271916627884, -0.0024628269020467997, 0.025789234787225723, 0.025578834116458893, -0.003325098194181919, 0.02974178083240986, -0.013232762925326824, -0.013848939910531044, 0.028644686564803123, -0.043913837522268295, -0.039315059781074524, 0.015720011666417122, 0.03327352553606033, 0.042200565338134766, 0.006920712534338236, 0.029140634462237358, 0.0070446995086967945, 0.028163768351078033, 0.006000205408781767, -0.010903315618634224, 0.0014606009935960174, 0.0046288371086120605, -0.044514983892440796, 0.020469078794121742, 0.008694098331034184, -0.017463339492678642, 0.0011130624916404486, 0.06510429084300995, 0.027472449466586113, -0.0020044518169015646, -0.07309956103563309, -0.024917570874094963, -0.06026505306363106, -0.013811367563903332, -0.027742965146899223, 0.045326534658670425, 0.003621914656832814, 0.036038804799318314, 0.016336187720298767, -0.016606705263257027, 0.0038078948855400085, 0.011436834931373596, 0.005199927370995283, 0.033964842557907104, 0.005060912109911442, -0.021055197343230247, -0.047250207513570786, -0.011136260814964771, 0.006233150139451027, -0.018936151638627052, 0.031650424003601074, -0.030658531934022903, -0.046979691833257675, -0.06865106523036957, 0.016336187720298767, 0.040337007492780685, -0.005113512277603149, 0.0017686891369521618, -0.05157846957445145, 0.025188088417053223, -0.006612624507397413, -0.031530193984508514, 0.030898990109562874, -0.029937153682112694, -0.031109392642974854, 0.006616381462663412, -0.007322730030864477, 0.0038285593036562204, 0.0007072878070175648, -0.017177794128656387, -0.03022269904613495, 0.007078513968735933, 0.07069496810436249, 0.05416340380907059, 0.003092153463512659, -0.007266372442245483, 0.031079335138201714, -0.036489665508270264, 0.014307314530014992, -0.047821298241615295, -0.0041253757663071156, 0.028764916583895683, 0.005523044150322676, -0.01532175112515688, -0.0019612442702054977, -0.06817014515399933, -0.020844794809818268, 0.06432279944419861, -0.016471445560455322, 0.0010877015301957726, 0.0646233782172203, 0.05647782236337662, 0.020093360915780067, -0.021400857716798782, -0.00025947976973839104, 0.01535180862993002, 0.004091561306267977, -8.35383907542564e-05, 0.009610848501324654, -0.06116677448153496, -0.017373166978359222, 0.05762000381946564, -0.06330084800720215, -0.031560253351926804, -0.015569725073873997, -0.01449517346918583, 0.021941890940070152, 0.010685400106012821, 0.08614446222782135, 0.06110665947198868, -0.013315420597791672, -0.007157414685934782, 0.0006584445363841951, -0.07021404802799225, -0.006676496472209692, 0.034055016934871674, 0.026540670543909073, 0.011549550108611584, 0.048572733998298645, -0.0327625498175621, -0.031259678304195404, -0.023264415562152863, -0.019973130896687508, 0.043162401765584946, -0.004335777834057808, 0.026059752330183983, -0.041839879006147385, -0.036579836159944534, 0.06534475088119507, -0.020544221624732018, 0.018620548769831657, -0.05287093669176102, 0.005335185676813126, -0.004737795330584049, -0.009655934758484364, -0.021521085873246193, 0.029531380161643028, 0.036339376121759415, -0.041749704629182816, 0.004493578802794218, -0.05852172523736954, -0.012233355082571507, 0.0069920988753438, -0.018815921619534492, 0.015254122205078602, -0.023429730907082558, -0.010888286866247654, 0.06348119676113129, -0.030538301914930344, 0.029696695506572723, 0.012804445810616016, 0.004925653804093599, -0.035557884722948074, -0.012864559888839722, 0.027652792632579803, -0.024376537650823593, 0.011820065788924694, -0.003918731585144997, 0.0001129500160459429, 0.014329858124256134, -0.021235542371869087, 0.07850988954305649, -0.045747339725494385, 0.004557450767606497, 0.040697697550058365, -0.037932418286800385, -0.025744149461388588, 0.025819292291998863, -0.0019311868818476796, 0.015945442020893097, 0.018064487725496292, -0.009595819748938084, 0.025879407301545143, -0.07646598666906357, -0.028344113379716873, -0.007356544490903616, -0.014938519336283207, 0.028945259749889374, -0.010091766715049744, 0.037391386926174164, -0.032732490450143814, -0.002829151228070259, 0.016832135617733, -0.047340378165245056, -0.00700712762773037, -0.01401425525546074, -0.0060828630812466145, 0.0009918936993926764, -0.027562620118260384, 0.030778760090470314, -0.012661673128604889, 0.01638127490878105, -2.794397369143553e-05, 0.0033420054242014885, 0.033303581178188324, 0.030508244410157204, -0.01632115989923477, -0.02502277120947838, 0.018455233424901962, -0.007630818523466587, -0.00396006042137742, -0.004955711308866739, -0.010617771185934544, 0.05942344665527344, -0.019296839833259583, 0.036940526217222214, -0.024151107296347618, -0.05542581528425217, -0.049264051020145416, -0.021941890940070152, -0.003811652073636651, 0.040968213230371475, 0.029937153682112694, -0.004737795330584049, 0.06901175528764725, -0.004151676315814257, 0.007683418691158295, -0.0019762730225920677, 0.00013126623525749892, -0.013495765626430511, -0.033033065497875214, -0.008934557437896729, 0.002008209004998207, 0.010084251873195171, 0.007604517973959446, -0.016486475244164467, 0.016561618074774742, 0.020514164119958878, 6.351970660034567e-05, -0.007232557982206345, 0.0022505465894937515, -0.022753439843654633, -0.024301394820213318, -0.025082886219024658, -0.008446124382317066, 0.034926678985357285, 0.010572684928774834, -0.06438291817903519, -0.017628654837608337, -0.021295655518770218, 0.020318791270256042, 0.024977685883641243, -0.009723563678562641, 0.004020174965262413, -0.025278259068727493, -0.05900264531373978, -0.021070225164294243, -0.027021588757634163, -0.021265599876642227, -0.05422351881861687, 0.010993488132953644, 0.038774024695158005, 0.033544041216373444, 0.016546590253710747, 0.022978870198130608, 0.028494399040937424, 0.014029284007847309, 0.0032593475189059973, -0.013195191510021687, 0.005060912109911442, 0.019882960245013237, 0.008401039056479931, -0.04998542740941048, 0.009971536695957184, -0.010069223120808601, -0.001210749032907188, 0.030177613720297813, 0.020499136298894882, -0.020153475925326347, 0.004283177200704813, -0.023745333775877953, 0.004970740061253309, -0.0009768649470061064, -0.0041854907758533955, 0.0013253428041934967, -0.021701430901885033, 0.021656345576047897, 0.023459788411855698, -0.045657165348529816, -0.045837510377168655, 0.019251754507422447, -0.012736815959215164, -0.026796158403158188, -0.020619364455342293, 0.023294473066926003, 0.026721013709902763, -0.005936333443969488, -0.044575098901987076, 0.03140996769070625, 0.008138036355376244, 0.0005790742579847574, -0.023820476606488228, 0.000668776803649962, -0.030868932604789734, 0.06336096674203873, -0.012842017225921154, -0.023940706625580788, 0.004027689341455698, 0.013277849182486534, 0.012180754914879799, -0.035167139023542404, 0.0019443370401859283, 0.015389380045235157, 0.016471445560455322, 0.023429730907082558, 0.025774206966161728, 0.027637764811515808, 0.018124602735042572, 0.037120867520570755, -0.025067858397960663, 0.037150926887989044, 0.018380090594291687, -0.010580198839306831, -0.01487089041620493, -0.026570728048682213, -0.017929229885339737, 0.010151881724596024, 0.024316422641277313, 0.023023955523967743, 0.006770425476133823, -0.00348102068528533, -0.015434466302394867, 0.0023087828885763884, -0.038383278995752335, -0.028855089098215103, -0.014141999185085297, 0.012083068490028381, 0.03282266482710838, -0.016772020608186722, -0.0015329265734180808, 0.020844794809818268, -0.035197194665670395, -0.006390951108187437, -0.017944257706403732, -0.037932418286800385, -0.0024834913201630116, 0.014795747585594654, -0.016952363774180412, -0.010850715450942516, -0.012909646145999432, 0.0070296707563102245, -0.014878405258059502, -0.004377106670290232, 0.036189090460538864, -0.004880567546933889, 0.013368021696805954, 0.035497769713401794, 0.043282631784677505, 0.038353223353624344, -0.010242053307592869, -0.024196194484829903, 0.039285000413656235, -0.021355770528316498, 0.009896393865346909, -0.0070522138848900795, 0.019266782328486443, 0.009167501702904701, -0.03372438624501228, 0.017027508467435837, 0.014795747585594654, -0.034055016934871674, -0.043733492493629456, -0.020273705944418907, 0.02592449262738228, 0.028434285894036293, -0.005241256207227707, 0.003723358502611518, -0.01448014471679926, -0.021521085873246193, -0.025759177282452583, -0.031259678304195404, -0.038353223353624344, 0.008949586190283298, -0.023910649120807648, 0.0013366142520681024, -0.021776573732495308, 0.003063974669203162, 0.017478369176387787, -0.044064123183488846, -0.004174218978732824, 0.047851353883743286, 0.008213180117309093, -0.0038586165755987167, 0.024872485548257828, 0.019988160580396652, 0.032882776111364365, 0.008070407435297966, 0.01596047170460224, -0.004929410759359598, 0.028058568015694618, 0.040216781198978424, -0.012300984002649784, -0.019747700542211533, -0.011542035266757011, 0.033994901925325394, -0.009370389394462109, 0.033904727548360825, -0.011714865453541279, 0.0023294473066926003, 0.034926678985357285, 0.020018218085169792, 0.01347322203218937, -0.002975681098178029, -0.012173240073025227, -0.014758175238966942, 0.0025417276192456484, -0.033303581178188324, -0.009498133324086666, 0.021010112017393112, -0.021836688742041588, -0.08878951519727707, 0.015945442020893097, -0.014262228272855282, -0.034535933285951614, -0.018410148099064827, -0.010505056008696556, -0.017808999866247177, 0.005199927370995283, 0.009002186357975006, 0.043703436851501465, -0.016546590253710747, -0.03264231979846954, 0.009580790996551514, -0.037722017616033554, 0.023504873737692833, 0.0030339171644300222, 0.001856982707977295, -0.0026055993512272835, 0.06149740889668465, -0.008453639224171638, 0.0037628086283802986, -0.042020224034786224, 0.0055794017389416695, -0.043252576142549515, -0.016185902059078217, 0.0327625498175621, -0.034205302596092224, -0.011925267055630684, 0.0327625498175621, 2.3863918613642454e-05, -0.036459606140851974, 0.027592677623033524, -0.0005278827738948166, 0.034055016934871674, -0.026420440524816513, 0.035467714071273804, -0.005169869866222143, 0.005260042380541563, -0.034205302596092224, -0.002908051945269108, -0.015246608294546604, -0.037271156907081604, -0.018470263108611107, 0.005489229690283537, 0.023444758728146553, 0.018515348434448242, -0.031981054693460464, 0.026134895160794258, 0.03231168910861015, -0.017313053831458092, -0.0032818906474858522, -0.033634211868047714, 0.015479552559554577, 0.029726753011345863, -0.000279909378150478, -0.017808999866247177, -0.011639721691608429, 0.0028329084161669016, 0.041028328239917755, -0.011594635434448719, 0.024376537650823593, -0.014803261496126652, 0.047009747475385666, -0.005898761563003063, -0.0046513802371919155, -0.006616381462663412, 0.03282266482710838, -0.012586529366672039, -0.010392340831458569, 0.013518308289349079, -0.06696785241365433, 0.010850715450942516, -0.037060752511024475, -0.010843201540410519, -0.004951953887939453, 0.048963479697704315, -0.016606705263257027, -0.019822845235466957, 0.0022730897180736065, 0.022212406620383263, 0.006417251657694578, 0.040667641907930374, -0.0030282814987003803, -0.025593861937522888, 0.008235722780227661, 0.0001690727804088965, -0.011594635434448719, 0.0006274479092098773, 0.0015892841620370746, -0.033634211868047714, -0.047971583902835846, -0.038774024695158005, -0.004831724334508181, -0.030778760090470314, 0.004771609790623188, 0.002784065203741193, 0.00030996676650829613, 0.026751071214675903, -0.09612351655960083, -0.0278181079775095, 0.017358139157295227, 0.021280627697706223, -0.042020224034786224, 0.012300984002649784, 0.05094726383686066, 0.017478369176387787, -0.004534907639026642, -0.021671373397111893, 0.020589308813214302, -0.033513981848955154, -0.01536683738231659, 0.00420803390443325, -0.026630841195583344, -0.01392408274114132, 0.027893252670764923, 0.024256309494376183, 0.040998272597789764, 0.025488661602139473, -0.018876036629080772, -0.031109392642974854, -0.021175427362322807, 0.041358958929777145, 0.021836688742041588, -0.012285955250263214, -0.028825031593441963, 0.06086620315909386, 0.018845979124307632, 0.0013084354577586055, 0.021791603416204453, 0.008829356171190739, 0.018545405939221382, 0.037391386926174164, -0.016967393457889557, 0.031890884041786194, 0.0031071819830685854, 0.033964842557907104, 0.016456417739391327, 0.004865538794547319, -0.018755806609988213, -0.02838919870555401, 0.036309320479631424, -0.042080339044332504, 0.039194829761981964, -0.0035110781900584698, -0.0019969374407082796, 0.043643321841955185, -0.00031043641502037644, -0.01350327953696251, -0.006931984331458807, -0.012586529366672039, -0.001610887935385108, 0.012714273296296597, -0.010422397404909134, 0.001902068848721683, -0.047340378165245056, 0.041148558259010315, 0.00396006042137742, 0.025458604097366333, 0.024045906960964203, 0.0019462156342342496, 0.034836508333683014, -0.044004008173942566, -0.031950999051332474, 0.008408552967011929, -0.018605520948767662, 0.009881365112960339, -0.016170872375369072, -0.023564988747239113, 0.021596230566501617, 0.024887513369321823, 0.015825212001800537, 0.011106203310191631, 0.002814122475683689, 0.009175016544759274, -0.0005654545384459198, -0.033333636820316315, -0.0007110449951142073, -0.020529193803668022, -0.008686583489179611, -0.0038661309517920017, -0.021235542371869087, -0.00023317954037338495, -0.0034209059085696936, -0.021731488406658173, -0.010805629193782806, 0.024782313033938408, -0.006706553976982832, 0.011106203310191631, 0.006105406209826469, -0.010016622953116894, -0.011271518655121326, -0.027667822316288948, 0.004121618811041117, 0.02787822298705578, -0.0043808636255562305, -0.017899172380566597, 0.012541443109512329, -0.004850510507822037, 0.017358139157295227, -0.0006589142140001059, 0.010151881724596024, -0.009911422617733479, -0.012842017225921154, 0.00012116882862756029, -0.0022054605651646852, -0.02835914120078087, -0.01641133241355419, 0.008716640993952751, -0.013120047748088837, 0.01494603417813778, 0.009520675987005234, 0.012872074730694294, 0.010369797237217426, 0.023099100217223167, 0.0025116701144725084, -0.026390383020043373, 0.00015404408622998744, -0.024887513369321823, 0.043042171746492386, -0.019356954842805862, -0.024121049791574478, 0.017207851633429527, -0.004982011392712593, -0.001669124118052423, 0.029756810516119003, -0.027682850137352943, 0.043102286756038666, -0.005695874337106943, 0.009648419916629791, 0.05987430736422539, -0.001010679523460567, 0.035287369042634964, 0.013751253485679626, -0.014126970432698727, 0.018139630556106567, 0.020814739167690277, -0.006319564767181873, 0.010595227591693401, 0.015314237214624882, 0.028118683025240898, 0.007912606000900269, -0.01482580415904522, -0.00014183328312356025, -0.007003370206803083, -0.009843792766332626, 0.008754213340580463, -0.007784862536936998, 0.050827037543058395, 0.019552327692508698, -0.020228618755936623, -0.017839057371020317, 0.016125787049531937, 0.0032330474350601435, 0.033303581178188324, -0.042921945452690125, -0.008686583489179611, -0.021806631237268448, 0.004354563541710377, 0.014652974903583527, 0.037541672587394714, 0.007390359416604042, -0.0143599146977067, -0.0031447538640350103, -0.023399673402309418, -0.029486292973160744, -0.024121049791574478, -0.010550141334533691, 0.009325303137302399, 0.0035016851034015417, -0.026901358738541603, 0.025458604097366333, 0.011992895975708961, 0.03468622267246246, -0.010903315618634224, 0.014803261496126652, -0.014863376505672932, -0.024827398359775543, 0.038142818957567215, -0.014630431309342384, 0.011579606682062149, 0.024857455864548683, 0.005218713078647852, 0.022137263789772987, -0.02989206835627556, 0.008761727251112461, 0.00022049908875487745, -0.027532562613487244, -0.009941480122506618, 0.04998542740941048, -0.00798023585230112, 0.015329265967011452, -0.029140634462237358, -0.004215548280626535, 0.013510794378817081, 0.009986565448343754, 0.040878042578697205, -0.041479188948869705, -0.017538484185934067, -0.017267966642975807, -0.0005508954636752605, 0.009453047066926956, -0.040667641907930374, -0.013330449350178242, 0.034535933285951614, -0.009475590661168098, -0.029516350477933884, -0.037481557577848434, 0.018906094133853912, -0.0038661309517920017, -0.009873850271105766, 0.010467483662068844, 0.009468075819313526, 0.005744717549532652, 0.007074756547808647, 0.021400857716798782, -0.008746698498725891, -0.011557064019143581, -0.028118683025240898, 0.007292672526091337, -0.05602696165442467, -0.020123418420553207, 0.025729119777679443, -0.006830540485680103, 0.043342746794223785, -0.029756810516119003, -0.017658712342381477, -0.037842247635126114, 0.006236907094717026, -0.0004870235570706427, 0.003657607827335596, 0.014194599352777004, 0.016772020608186722, 0.008994672447443008, -0.0010463726939633489, 0.018395118415355682, -0.00048373601748608053, -0.013788824900984764, 0.004752823617309332, 0.0027164360508322716, 0.0006894412217661738, -0.005639516748487949, -0.01596047170460224, -0.02968166582286358, -0.0008063832647167146, 0.039856091141700745, 0.015659896656870842, 0.009813736192882061, 0.007957692258059978, -0.015644868835806847, -0.0017160887364298105, 0.025969579815864563, 0.026149922981858253, 0.009422989562153816, 0.022963840514421463, 0.021941890940070152, 0.02832908369600773, -0.030418071895837784, 0.006297022104263306, 0.010775571689009666, -0.00048373601748608053, 0.009009701199829578, -0.026255125179886818, 0.0012736816424876451, -0.005008311476558447, -0.041990164667367935, -0.021085254848003387, 0.01496106293052435, 0.020589308813214302, -0.016681848093867302, -0.015720011666417122, 0.017358139157295227, -0.01641133241355419, -0.009084844030439854, 0.0019039474427700043, -0.06020493805408478, -0.01497609168291092, -0.007987749762833118, -0.004369592294096947, -0.03134985268115997, 0.033694326877593994, 0.011121232062578201, -0.008077922277152538, 0.029140634462237358, -0.021536115556955338, -0.036910466849803925, -0.012609072029590607, 0.023219328373670578, -0.030868932604789734, -0.018274890258908272, 0.013991712592542171, -0.009633391164243221, -0.0003341535630170256, -0.023354588076472282, -0.011857638135552406, -0.011068631894886494, 0.029065489768981934, 0.022963840514421463, -0.046949632465839386, 0.002064566593617201, -0.010880772955715656, 0.021911833435297012, 0.019837873056530952, -0.006281993351876736, -0.013818882405757904, -0.020965024828910828, -0.011955324560403824, -0.023700246587395668, 0.051097553223371506, -0.009941480122506618, 0.015344294719398022, 0.013157620094716549, 0.029035432264208794, -0.022603152319788933, -0.016907278448343277, 0.028103653341531754, 0.027186904102563858, 0.020919939503073692, 0.011549550108611584, -0.003092153463512659, 0.0018156538717448711, 0.006883140653371811, 0.045597050338983536, -0.027262046933174133, 0.026360325515270233, -0.0023407188709825277, -0.0012154454598203301, -0.014051826670765877, 0.018049458041787148, -0.006950770039111376, -0.017087623476982117, 0.021175427362322807, 0.018124602735042572, -0.023099100217223167, 0.036850351840257645, 0.01635121740400791, 0.004256877116858959, 0.016230987384915352, -0.004016418009996414, -0.005271313712000847, 0.023309500887989998, -0.005846160929650068, 0.02547363191843033, -0.0023407188709825277, 0.0015188371762633324, -0.004354563541710377, -0.009310274384915829, 0.001504747779108584, 0.011354176327586174, 0.07207760959863663, -0.0011581485159695148, 0.0006903805187903345, -0.010798115283250809, 0.011286547407507896, -0.009483104571700096, -0.005196170415729284, 0.019011294469237328, 0.002087109489366412, 0.031139450147747993, 0.010272110812366009, 0.007957692258059978, -0.019792787730693817, 0.0012417456600815058, 0.019627472385764122, 0.01437494345009327, -0.026675928384065628, 0.006199335213750601, -0.006635167635977268, 0.018845979124307632, 0.01449517346918583, 0.009475590661168098, 0.010880772955715656, -0.008791784755885601, -0.02841925621032715, -0.043162401765584946, 0.007844977080821991, -0.0024534340482205153, -0.021986976265907288, 0.0041930051520466805, -0.003651972161605954, -0.003650093451142311, 0.024812370538711548, 0.016291102394461632, -0.0031522680073976517, 0.01347322203218937, -0.006567538250237703, -0.020303763449192047, 0.007987749762833118, -0.0019650014583021402, -0.019417069852352142, -0.017538484185934067, 0.007349030114710331, -0.02652564086019993, -0.028554514050483704, 0.031620368361473083, -0.02646552585065365, -0.021025139838457108, 0.007371573243290186, -0.026871301233768463, -0.026044722646474838, -0.015186493285000324, 0.025593861937522888, -0.011707350611686707, 0.0058198608458042145, 0.019296839833259583, 0.015750069171190262, 0.022197378799319267, -0.003097789129242301, 0.05235996097326279, -0.024902543053030968, -0.016847163438796997, -0.008709127083420753, -0.003338248236104846, -0.023174243047833443, -0.013037390075623989, 0.018996266648173332, -0.002303146990016103, -0.024722198024392128, -0.050676748156547546, -0.020258676260709763, 0.020739594474434853, 0.020198561251163483, 0.030042355880141258, 0.022272521629929543, 0.010099280625581741, 0.012842017225921154, 0.014893434010446072, 0.017568541690707207, -0.041449133306741714, -0.011481920257210732, -0.009205074049532413, -0.016696875914931297, 0.035708170384168625, 0.0010830051032826304, -0.004974497016519308, -0.007807405665516853, -0.0002993997186422348, -0.03140996769070625, 0.02733718976378441, 0.031470078974962234, 0.023595046252012253, 0.0037571729626506567, 0.0039224885404109955, -0.0022054605651646852, -0.030327899381518364, -0.0159304141998291, -0.008649012073874474, 0.025338374078273773, -0.009573277086019516, 0.007153657265007496, -0.006995856296271086, -0.016681848093867302, 0.011617179028689861, -0.0028178796637803316, -0.020423991605639458, 0.0005851797177456319, -0.025699062272906303, -0.018335003405809402, 0.0027953367680311203, -0.004812938626855612, 0.010985974222421646, 0.020093360915780067, -0.0015432587824761868, 0.01638127490878105, -0.002150981454178691, -0.005996447987854481, -0.019026324152946472, -0.008994672447443008, -0.011729894205927849, 0.005301371216773987, 0.022678295150399208, -0.008002778515219688, -0.02454185299575329, 0.020574279129505157, -0.012586529366672039, 0.06032516807317734, -0.01442002970725298, -0.010595227591693401, 0.0015338658122345805, 0.001410818425938487, 0.016787048429250717, 0.036489665508270264, -0.013585937209427357, 0.037451501935720444, 0.012947218492627144, -0.017869114875793457, -0.012255898676812649, 0.012872074730694294, 0.005417843349277973, -0.031440023332834244, -0.023234358057379723, -0.012045496143400669, -0.013022361323237419, 0.024256309494376183, -0.010798115283250809, 0.002769036451354623, 0.013495765626430511, -0.009836278855800629, 0.018500320613384247, -0.023910649120807648, 0.014788232743740082, 0.012947218492627144, 0.0067290966399014, -0.037782132625579834, -0.018770836293697357, -0.005485472735017538, -0.013721195980906487, -0.023790419101715088, -0.006653953343629837, 0.003774080192670226, -0.007521860301494598, 0.0065262094140052795, 0.006834297440946102, 0.038563624024391174, -0.028569543734192848, -0.00694701261818409, -0.019236724823713303, -0.015449495054781437, -0.011797523126006126, 0.009212587960064411, -0.008303352631628513, -0.0007772651733830571, -0.019311869516968727, 0.005094726569950581, -0.022152291610836983, 0.014630431309342384, -0.0007251343922689557, -0.017899172380566597, 0.024662083014845848, 0.008919528685510159, 0.012639129534363747, 0.0014812654117122293, 0.027036616578698158, 0.010940887965261936, 0.021926861256361008, -0.06414245814085007, -0.01641133241355419, 0.018244832754135132, -0.054704438894987106, 0.011519492603838444, -0.011346662417054176, 0.0033946058247238398, 0.029426177963614464, 0.032401859760284424, 0.023429730907082558, 0.022573094815015793, 0.024526825174689293, -0.029516350477933884, 0.011594635434448719, -0.044935788959264755, -0.015021177940070629, -0.042020224034786224, -0.009317789226770401, -0.012654158286750317, 0.0009787435410544276, 0.02929092012345791, -0.0042005195282399654, 0.004005146212875843, -0.012466300278902054, -0.019807815551757812, 0.0012877710396423936, -0.017568541690707207, 0.004692709073424339, 0.015464523807168007, -0.018695693463087082, 0.006086620036512613, 0.055455874651670456, -0.015674926340579987, -0.025458604097366333, -0.008603925816714764, -0.020063303411006927, 0.0007500256760977209, -0.015111349523067474, 0.004512364510446787, -0.0018748292932286859, 0.06324073672294617, -0.048753075301647186, -0.022858640179038048, -0.0015798911917954683, 0.010617771185934544, 0.004703980404883623, 0.0028967803809791803, 0.027893252670764923, -0.039705805480480194, -0.022783497348427773, 0.0030001027043908834, -0.043042171746492386, 0.00034589474671520293, -0.007183714769780636, -0.023865561932325363, 0.0025924493093043566, 0.020168503746390343, -0.011264004744589329, 0.012255898676812649, 0.015614811331033707, 0.010016622953116894, 0.000830804870929569, 0.0023745333310216665, 0.009227616712450981, -0.031470078974962234, 0.020318791270256042, 0.006379679776728153, -0.009685992263257504, -0.02787822298705578, -0.0003449554496910423, 0.01635121740400791, -0.035257309675216675, 0.0159304141998291, 0.018319975584745407, -0.013232762925326824, -0.005169869866222143, 0.024060934782028198, 0.012270926497876644, 0.008325895294547081, -0.0011515734950080514, 0.022888697683811188, -0.014337372034788132, -0.0036181574687361717, 0.032552145421504974, -0.012255898676812649, -0.012233355082571507, 0.006631410215049982, 0.021250570192933083, 0.006304536014795303, 0.009468075819313526, 0.025353403761982918, -0.009888879023492336, 0.020574279129505157, -0.010490027256309986, -0.011865152046084404, -0.010407369583845139, -0.008979643695056438, 0.0006063138134777546, 0.013217734172940254, 0.0043733492493629456, -0.006913198158144951, -0.016516532748937607, -0.01496106293052435, 0.053592316806316376, -0.0009397629182785749, 0.022753439843654633, 0.024181164801120758, -0.024902543053030968, 0.016486475244164467, 0.017508426681160927, 0.027953367680311203, 0.03168048337101936, -0.006608867086470127, -0.009723563678562641, -0.026600785553455353, 0.0013413107953965664, -0.034505877643823624, -0.02950132265686989, 0.016140814870595932, 0.02550368942320347, -0.0018673149170354009, 0.006845569238066673, 0.008889471180737019, -0.0016315523535013199, 0.045747339725494385, -0.015201522037386894, 0.0005011129542253911, -0.005609459243714809, 0.010009109042584896, 0.015689954161643982, 0.019852902740240097, 0.025638949126005173, 0.016456417739391327, 0.035257309675216675, 0.019988160580396652, 0.0042005195282399654, 0.015216550789773464, -0.0012389278272166848, 0.040036436170339584, -0.004504850599914789, -0.007435445208102465, -0.016291102394461632, 0.006428522989153862, -0.003571192966774106, 0.032161399722099304, 0.017914200201630592, 0.021400857716798782, -0.021611258387565613, -0.0001771741808624938, -0.009197559207677841, 0.004993282724171877, 0.032942891120910645, 0.01632115989923477, -0.019852902740240097, -0.017598597332835197, -0.004504850599914789, -0.036730121821165085, 0.021010112017393112, -0.029396120458841324, 0.049264051020145416, 0.00044170263572596014, -0.026675928384065628, -0.032942891120910645, -0.012353585101664066, 0.011173832230269909, 0.019206667318940163, -0.01532175112515688, -0.011121232062578201, -0.016937335953116417, 0.012789417058229446, 0.014006740413606167, 0.0134581932798028, -0.024000821635127068, 0.024977685883641243, 0.013886511325836182, 0.006943255662918091, 0.028344113379716873, -0.005549344699829817, -0.018545405939221382, 0.017282996326684952, 0.0013187676668167114, -0.034836508333683014, 0.0015432587824761868, -0.034535933285951614, 0.012128154747188091, 0.002714557573199272, -0.003084639087319374, -0.030688589438796043, -0.040216781198978424, -0.03327352553606033, -0.0017113923095166683, 0.0011872666655108333, -0.014848347753286362, -0.004655137192457914, 0.023955734446644783, 0.014284771867096424, 0.014953548088669777, -0.012045496143400669, 0.021746518090367317, -0.023264415562152863, -0.020649421960115433, 0.017914200201630592, 0.010069223120808601]" -"Using IoT Sensors, TimescaleDB, and Grafana to Control the Temperature of the Nuclear Fusion Experiment at the Max Planck Institute","do a lot of damage, and it also means that we need to abort the experiment to wait for things to cool off again—not good if you want to run everything reliably for long periods of time!Image of a forming microwave arc, taken at the Max Planck IPP Greifswald experiment siteMy task is to design sensor boards to precisely track the amount of energy coming out of the microwave array. The ultimate goal is to detect changes in the power output on the microsecond scale, so the power can be turned off before the arc fully forms. If done right, we can turn the heating back on without a pause and continue the experiment!One of the key aspects of what I am designing is that it needs to be reliable. If it's not sensitive enough, or too sensitive, or if there are issues with the communication with the rest of the system, it can severely impact the rest of the experiment in a negative way.One of the sensors that David is working onThe only way to ensure something is reliable is through data—a lot of it. A problem might present itself only after hundreds of hours or in subtle ways that are only apparent across days of data, but it can still be relevant and important to know about.​Writing a program to handle this amount of data myself would've been an unnecessary effort. It needs a tool that has the necessary functionality in it already, such as statistical operators, compression, etc., and you can get all of this in time-series databases, such as TimescaleDB!To track that the sensors and system are working as expected, I collect and handle several types of data using TimescaleDB:I am recording the general health metrics of the board in question: temperature, voltage levels, etc. These shouldn't change, but the harsh environment close to the reactor might cause issues, which would be very important to know about!Log messages of the boards themselves to understand what the software was doing.And finally, detection events: every time the board sees something suspicious, it sends a measurement series of this event, about 1,000 samples taken over a millisecond. We can use this during the initial development phase to ensure everything is working correctly. I can use a function generator to send a predetermined reference",https://www.timescale.com/blog/using-iot-sensors-timescaledb-and-grafana-to-control-the-temperature-of-the-nuclear-fusion-experiment-in-the-max-planck-institute/,450,"[0.020964955911040306, 0.048945169895887375, -0.008825648576021194, -0.017117878422141075, -0.021563030779361725, 0.04823394492268562, 0.007593128830194473, -0.05531385913491249, 0.004473439883440733, -0.0038733442779630423, 0.047975316643714905, -0.03979623690247536, -0.018168549984693527, -0.017376504838466644, 0.018427178263664246, 0.01259190496057272, -0.006809165235608816, 0.009423723444342613, -0.031116066500544548, 0.014054764062166214, -0.00015292840544134378, -0.0072092292830348015, 0.03966692462563515, -0.008760991506278515, 0.011323015205562115, -0.05007666349411011, 0.018168549984693527, 0.06148857995867729, 0.05463496595621109, -0.03266783058643341, 0.012793957255780697, -0.03076045587658882, -0.08508829772472382, -0.003974370192736387, -0.02991991676390171, 0.013553674332797527, 0.006259582936763763, 0.0008390225120820105, -0.02492518164217472, 0.0005063937860541046, -0.015857070684432983, -0.036207787692546844, -0.03530259430408478, 0.03452671319246292, -0.005714041646569967, -0.06268472969532013, -0.08567021042108536, 0.010118783451616764, 0.029014723375439644, 0.024521077051758766, -0.0007501195068471134, 0.032732486724853516, 0.00994905922561884, 0.018314028158783913, 0.004392618779093027, 0.010102619417011738, 0.009973305277526379, 0.06640249490737915, -0.007972987368702888, -0.0023458281066268682, -0.016172273084521294, 0.003976391162723303, 0.032780978828668594, -0.011662463657557964, -0.022193433716893196, 0.010571381077170372, -0.007374912034720182, 0.018847446888685226, 0.014774070121347904, 0.05437633767724037, 0.059484221041202545, 0.007932576350867748, 0.018895938992500305, -0.0348823219537735, 0.03266783058643341, -0.04542137682437897, -0.021563030779361725, 0.003548039821907878, -0.006259582936763763, 0.012397934682667255, -0.006283828988671303, -0.02843281254172325, 0.0044289883226156235, 0.003982452675700188, -0.019106073305010796, -0.02081947773694992, -0.030582649633288383, -0.027268989011645317, -0.019494013860821724, -0.012939434498548508, -0.06730768829584122, 0.049915019422769547, 0.010813843458890915, 0.05596042796969414, 0.0037056407891213894, -0.01697240024805069, 0.0015517623396590352, 0.04535672068595886, 0.020496193319559097, 0.01786143146455288, 0.00378848216496408, -0.02416546456515789, 0.01487913727760315, -0.03384781628847122, 0.04160662740468979, -0.0349469818174839, -0.026137497276067734, 0.04910681024193764, -0.023987658321857452, -0.007463815156370401, -0.006938478909432888, -0.028578288853168488, 0.008849894627928734, 0.01356175635010004, -0.04202689602971077, -0.03147168084979057, -0.023648211732506752, 0.005726164672523737, 0.019574835896492004, -0.01862114854156971, -0.061003655195236206, 0.04341701790690422, -0.004083478823304176, 0.0342680849134922, 0.02102961204946041, -0.0376625657081604, 0.026864884421229362, -0.04364331439137459, -0.012430262751877308, 0.025361616164445877, 0.06006613373756409, -0.0287399310618639, 0.02840048260986805, -0.03892337158322334, 0.017166370525956154, 0.014224488288164139, 0.01259190496057272, 0.008231613785028458, -0.022500554099678993, 0.0099248131737113, 0.026169825345277786, -0.0008738765609450638, 0.06274938583374023, 0.02356738969683647, 0.027737751603126526, 0.03119688853621483, -0.01061987318098545, 0.05718890577554703, 0.025830376893281937, -0.004115806892514229, 0.03931131213903427, -0.01684308610856533, -0.013763808645308018, 0.010118783451616764, 0.06352526694536209, 0.0023175408132374287, 0.009342902339994907, 0.07467856258153915, -0.0030328063294291496, -0.05870833992958069, 0.009957141242921352, 0.030081558972597122, -0.03682202845811844, -0.006607112940400839, -0.02233891189098358, 0.024100808426737785, -0.02136906050145626, -0.008308393880724907, -0.08411844819784164, -0.0019972878508269787, -0.06271705776453018, -0.037597909569740295, -0.0011729140533134341, 0.027915557846426964, 0.011783694848418236, -0.040863074362277985, -0.0041259098798036575, -0.0711870938539505, -0.004546178504824638, -0.024440256878733635, -0.05078788846731186, -0.021045776084065437, -0.011484657414257526, 0.040572118014097214, -0.008037643507122993, -0.04079841822385788, -0.016026794910430908, 0.0003442467423155904, -0.045098092406988144, -0.024860525503754616, -0.020237566903233528, 0.04768436402082443, 0.014442704617977142, 0.0005063937860541046, 0.050464604049921036, -0.04409591108560562, 0.036046143621206284, -0.0034227673895657063, 0.01218779943883419, -0.022241925820708275, 0.028675274923443794, 0.016907744109630585, 0.05411770939826965, -0.012131225317716599, 0.026557765901088715, -0.006114105228334665, -0.01515392865985632, 0.01149273943156004, -0.026687078177928925, -0.044968780130147934, 0.010587545111775398, -0.0029600674752146006, 0.04435453936457634, 0.031116066500544548, -0.030243201181292534, -0.01760280318558216, -0.02382601797580719, 0.027576109394431114, 0.010603709146380424, -0.015784332528710365, 0.0007839632453396916, 0.06892410665750504, 0.020932627841830254, 0.019364699721336365, -0.038826387375593185, 0.061682552099227905, 0.08237271755933762, 0.0017366402316838503, 0.06258774548768997, -0.0030024985317140818, -0.014200241304934025, -0.02505449578166008, 0.010522888042032719, -0.038276802748441696, -0.01246259082108736, -0.0047037797048687935, 0.017974579706788063, -0.004336044192314148, 0.015097354538738728, -0.017635131254792213, 0.008122505620121956, 0.023033970966935158, -0.009512626565992832, -0.0008718560566194355, -0.018928267061710358, 0.02709118463099003, -0.046100273728370667, -0.0630403459072113, 0.013084912672638893, -0.005124048329889774, 0.02890157327055931, -0.027915557846426964, 0.005358429159969091, -0.0581587590277195, -0.024682719260454178, -0.008793319575488567, -0.03536725044250488, 0.039214327931404114, -0.001372945960611105, 0.03636942803859711, -0.01331121101975441, 0.015307488851249218, -0.046488214284181595, 0.013448607176542282, -0.03303960710763931, 0.0277215875685215, -0.0011143188457936049, -0.0002329916605958715, -0.03289412707090378, -0.06969998776912689, -0.012915188446640968, 0.009310574270784855, 0.043869614601135254, -0.0015042800223454833, -0.04978570714592934, -0.0053301420994102955, 0.02636379562318325, 0.03753324970602989, -0.03889104351401329, 0.007904289290308952, -0.03160099312663078, -0.025248466059565544, 0.006691975053399801, 0.010490559972822666, -0.004570425022393465, 0.020027432590723038, -0.010846172459423542, 0.01015919353812933, 0.009472215548157692, -0.040572118014097214, 0.002778220223262906, 0.008074013516306877, 0.022613702341914177, -0.011411918327212334, -0.004004678223282099, -0.015857070684432983, -0.022419732064008713, 0.03669271245598793, -0.06782494485378265, -0.020754821598529816, 0.007766893599182367, 0.02544243633747101, 0.029855260625481606, -0.02107810415327549, -0.008542775176465511, 0.0177806094288826, 0.04270579293370247, -0.0030792783945798874, 0.0025741474237293005, -0.009423723444342613, 0.019073745235800743, -0.042091552168130875, 0.0030247243121266365, 0.0029822932556271553, -0.0028044870123267174, 0.013965860940515995, 0.06310500204563141, 0.012664643116295338, 0.013133404776453972, -0.05870833992958069, 0.0029418827034533024, -0.08870907872915268, -0.003426808398216963, -0.04425755515694618, 0.012963681481778622, 3.855569957522675e-06, 0.010838089510798454, 0.015970220789313316, -0.0072455983608961105, -0.00650608679279685, 0.022274255752563477, 0.03856775909662247, 0.04981803521513939, 0.009835910052061081, -0.03559354692697525, -0.045130420476198196, -0.026008183136582375, 0.02890157327055931, -0.029515812173485756, 0.023793688043951988, -0.030954426154494286, -0.0215468667447567, -0.051402125507593155, 0.020932627841830254, 0.038276802748441696, 0.008078054524958134, -0.009755088947713375, -0.061391595751047134, 0.034591369330883026, -0.0023013767786324024, 0.005516029894351959, 0.005233156960457563, -0.04176826775074005, -0.01655213162302971, 0.03342754766345024, -0.002297335537150502, -0.0038511184975504875, 0.008849894627928734, 0.012535329908132553, -0.04913913831114769, -0.019542505964636803, 0.06627318263053894, 0.07952781766653061, 0.011007813736796379, -0.00018525678024161607, 0.021595358848571777, -0.05615440011024475, -0.01400627102702856, -0.044031254947185516, -0.00802956148982048, 0.029645126312971115, 0.011452329345047474, -0.020124416798353195, 0.016794594004750252, -0.06232912093400955, 0.010522888042032719, 0.05780314654111862, -0.004530014470219612, 0.009197424165904522, 0.05473195016384125, 0.06294336169958115, 0.010539052076637745, -0.01875046081840992, -0.03160099312663078, 0.014693249017000198, 0.042641136795282364, 0.011007813736796379, 0.0019144463585689664, -0.0684068575501442, -0.01854032650589943, 0.036304771900177, -0.042673464864492416, -0.0022387404460459948, 0.006154515780508518, -0.023082464933395386, 0.043481674045324326, -0.014685166999697685, 0.07422596216201782, 0.04480713605880737, 0.017069386318325996, -0.00703546404838562, 0.0017447223654016852, -0.08385982364416122, 0.012769710272550583, 0.020932627841830254, 0.032166738063097, 0.033880144357681274, 0.0318596214056015, 0.020496193319559097, 0.03139085695147514, 0.009286327287554741, -0.008267983794212341, 0.05676863715052605, -0.02183782123029232, 0.03863241523504257, -0.06679043918848038, -0.03355685994029045, 0.04435453936457634, -0.007702236995100975, -0.012454508803784847, -0.04516274854540825, -0.045227404683828354, -0.021821657195687294, -0.009084274992346764, -0.009262081235647202, 0.03885871544480324, 0.015921728685498238, -0.06737234443426132, 0.021821657195687294, -0.08004507422447205, -0.024440256878733635, 0.02831966243684292, -0.021191254258155823, 0.021352896466851234, -0.002824692288413644, -0.0013982024975121021, 0.03413877263665199, -0.023421913385391235, 0.005633220542222261, 0.03918199986219406, 0.029434992000460625, 0.004574466031044722, 0.0028145897667855024, 0.05243663489818573, -0.026299137622117996, -0.0002674668503459543, -0.009197424165904522, -0.018863610923290253, 0.02785089984536171, -0.04677916690707207, 0.04467782378196716, -0.06077735871076584, -0.0026408247649669647, 0.032603174448013306, -0.030631141737103462, -0.04568000137805939, 0.04939776659011841, -0.022743016481399536, 0.02141755260527134, 0.027689259499311447, 0.004473439883440733, 0.029952244833111763, -0.059063952416181564, -0.01610761694610119, -0.027786243706941605, 0.012414098717272282, 0.004348167218267918, -0.002016482874751091, -0.01658445969223976, 0.011323015205562115, -0.0036106761544942856, -0.0035985528957098722, -0.0071688187308609486, -0.008364968933165073, 0.026428451761603355, 0.012155471369624138, -0.004259264096617699, -0.01972031220793724, 0.04202689602971077, -0.019542505964636803, 0.02620215341448784, 0.0006879883585497737, 0.004043068271130323, 0.03021087311208248, 0.04555068910121918, -0.012648479081690311, -0.08198477327823639, 0.012899024412035942, 0.0017719994066283107, 0.0025822294410318136, -0.028885409235954285, -0.005483701825141907, 0.054828934371471405, -0.021934807300567627, 0.04002253711223602, 0.004841174930334091, -0.07086381316184998, 0.0038733442779630423, 0.021126598119735718, 0.01658445969223976, 0.04774902015924454, 0.04367564246058464, -0.00220035039819777, 0.05625138431787491, 0.014038600027561188, 0.0027580149471759796, -0.021595358848571777, 0.030970590189099312, 0.013925449922680855, -0.005475619807839394, -0.00861551333218813, -0.00417844345793128, -0.01034508179873228, -0.008033602498471737, -0.010482477955520153, -0.017829101532697678, 0.02450491301715374, 0.03088976815342903, 0.008263942785561085, 0.025830376893281937, -0.015711594372987747, -0.026460779830813408, -0.0062676649540662766, 0.005338224116712809, 0.024828197434544563, -0.03982856497168541, -0.0324738584458828, -0.025426272302865982, -0.053729768842458725, 0.010765351355075836, 0.016600623726844788, -0.022209597751498222, 0.0048775444738566875, -0.024601899087429047, -0.05039994791150093, -0.02298547886312008, -0.029742110520601273, -0.02895006537437439, -0.06038941815495491, 0.019623328000307083, 0.022662196308374405, 0.024197794497013092, 0.012583822943270206, -0.015816660597920418, 0.019057581201195717, 0.028707602992653847, -0.01356175635010004, 0.004327962175011635, -0.0008890305180102587, 0.022161105647683144, 0.018103893846273422, -0.02636379562318325, 0.016697609797120094, -0.03656340017914772, -0.012026158161461353, 0.028368154540657997, 0.013117240741848946, -0.007835591211915016, -0.00010001593182096258, -0.009189342148602009, -0.013343539088964462, 0.015525705181062222, 0.0047037797048687935, 0.003944062627851963, 0.007443609647452831, 0.0008865048293955624, 0.0037601948715746403, -0.050335291773080826, -0.01626925729215145, 0.01655213162302971, -0.044128239154815674, -0.04700546711683273, -0.013489017263054848, -0.008995371870696545, 0.015477213077247143, 0.0021700426004827023, -0.021191254258155823, 0.01487913727760315, -0.009835910052061081, -0.03611080348491669, -0.013383950106799603, 0.006599030923098326, -0.0215468667447567, 0.060292430222034454, -0.04529206082224846, 0.011476575396955013, 0.015477213077247143, -0.0005071514751762152, -0.007039505057036877, -0.011775612831115723, -0.021142762154340744, 0.009633857756853104, 0.03475300967693329, 0.02246822603046894, 0.004881585482507944, 0.04535672068595886, 0.014733660034835339, 0.0438372865319252, -0.01400627102702856, 0.02722049690783024, 0.00852661021053791, -0.017085550352931023, -0.04096005856990814, -0.008078054524958134, -0.03261933848261833, -0.00780730415135622, -0.0191707294434309, 0.03659572824835777, 0.009019618853926659, -0.008954961784183979, -0.02183782123029232, 0.0032853716984391212, -0.016277339309453964, -0.0060817766934633255, -0.0036591687239706516, -0.004083478823304176, 0.0012860634597018361, 0.0018851486966013908, 0.017715953290462494, 0.022662196308374405, -0.028723767027258873, 0.016568295657634735, -0.006704098079353571, -0.037145309150218964, -0.0005344285746105015, 0.029984574764966965, -0.03221523389220238, 0.015986384823918343, -0.024618063122034073, 0.012260538525879383, -0.016414735466241837, -0.0005008373409509659, 0.0325385145843029, 0.01812005788087845, -0.015994466841220856, 0.04189758375287056, 0.020205238834023476, 0.04341701790690422, -0.017360340803861618, -0.03194044157862663, 0.02149837464094162, 0.004736107774078846, 0.005649384576827288, -0.03182729333639145, 0.02115892618894577, -0.0053180186077952385, -0.027689259499311447, -0.0041541969403624535, 0.017457326874136925, -0.04015184938907623, -0.021934807300567627, 0.0035985528957098722, 0.014782152138650417, 0.020156746730208397, 0.0009435846586711705, -0.011371508240699768, 0.009310574270784855, -0.044419195502996445, -0.027996378019452095, -0.06860082596540451, -0.0188312828540802, 0.010539052076637745, -0.03245769441127777, -0.0011021957034245133, 0.006502045784145594, 0.017360340803861618, 0.0314878448843956, -0.02581421285867691, -0.0033358847722411156, 0.0534064881503582, -0.017505818977952003, 0.025798048824071884, -0.01963949203491211, 0.018992925062775612, -0.012494919821619987, 0.017328012734651566, 0.005762534216046333, -0.03221523389220238, 0.022064119577407837, 0.0568009652197361, 0.011816023848950863, -0.0236158836632967, -0.01637432537972927, 0.008914550766348839, 0.0013547611888498068, 0.017457326874136925, 0.025232302024960518, 0.012680808082222939, 0.03446205332875252, 0.015452966094017029, 0.012899024412035942, -0.011824105866253376, -0.021563030779361725, -0.006146433763206005, 0.005467537324875593, -0.02699419856071472, -0.028077200055122375, 0.030873604118824005, -0.010320835746824741, -0.043190717697143555, 0.022549046203494072, 0.005718082655221224, -0.02649310790002346, 0.0047037797048687935, -0.021724672988057137, -0.040604446083307266, -0.008971125818789005, 0.00573424668982625, 0.022759180516004562, 0.00025698536774143577, 0.004186525475233793, 0.021821657195687294, -0.01595405675470829, 0.030986754223704338, 0.006724303588271141, -0.0010951239382848144, -0.008235654793679714, 0.018297864124178886, -0.013682987540960312, -0.027624601498246193, -0.05363278463482857, -0.0036005734000355005, -0.0574798621237278, -0.029273349791765213, 0.03004923090338707, -0.06061571463942528, -0.000963284750469029, 0.038406118750572205, -0.022904658690094948, -0.027689259499311447, 0.01812005788087845, 0.011638217605650425, 0.029144035652279854, -0.04192991182208061, 0.05285690352320671, 0.008332639932632446, 0.004574466031044722, -0.013569838367402554, 0.01104822475463152, -0.016665279865264893, -0.033023443073034286, -0.010765351355075836, 0.00013045007654000074, -0.009148932062089443, 0.017635131254792213, -0.02764076553285122, 0.012793957255780697, 0.03326590359210968, -0.016204601153731346, -0.010248096659779549, -0.035787519067525864, 0.01781293749809265, 0.005423086229711771, 0.010902746580541134, 0.020027432590723038, -0.008211408741772175, 0.0035945118870586157, 0.01697240024805069, -0.02272685244679451, 0.011331098154187202, -0.01017535850405693, 0.021870149299502373, -0.011985747143626213, 0.009310574270784855, 0.02319561317563057, 0.012131225317716599, -0.0037965644150972366, 0.012430262751877308, 0.023987658321857452, -0.0065707433968782425, 0.016075287014245987, -0.025410108268260956, 0.006966766435652971, -0.019607163965702057, 0.031891949474811554, -0.00025445970823056996, -0.008340722881257534, -0.006110064219683409, 0.012058486230671406, 0.02513531595468521, 0.013472853228449821, -0.036304771900177, -0.017618967220187187, 0.014499278739094734, -0.024488748982548714, -0.004667410161346197, -0.010353163816034794, 0.0236158836632967, -0.015760086476802826, -0.05903162434697151, -0.02471504732966423, -0.013133404776453972, -0.019364699721336365, 0.00678087817505002, -0.001356781809590757, -0.04096005856990814, 0.011686709709465504, -0.10849405080080032, -0.012470672838389874, 0.016430899500846863, 0.002271068748086691, -0.03724229708313942, -0.00261859898455441, 0.02895006537437439, 0.02471504732966423, 0.004509809426963329, -0.04370797052979469, 0.014539689756929874, -0.019413193687796593, -0.04173593968153, 0.0028408565558493137, 0.00880140159279108, -0.02568489871919155, -0.0008713509305380285, 0.04545370489358902, 0.01074918732047081, 0.0017810917925089598, -0.01519433967769146, -0.0005723133799619973, -0.027705423533916473, 0.03533492237329483, 0.016940072178840637, -0.01807156577706337, -0.02937033399939537, 0.05777081847190857, -0.003931939601898193, -0.0006566702504642308, 0.014757906086742878, -0.005657466594129801, 0.017214862629771233, 0.03316891938447952, -0.0010739084100350738, 0.01116945594549179, -0.0004376959695946425, 0.026800228282809258, 0.023421913385391235, -0.015574198216199875, 0.0044289883226156235, -0.03323357552289963, 0.04212388023734093, -0.02251671813428402, 0.018782788887619972, -0.02814185619354248, 0.0032490023877471685, 0.01356175635010004, -0.03274865075945854, -0.030631141737103462, -0.005067473743110895, -0.003089380916208029, -0.014717496000230312, -0.0007455733139067888, 0.03009772300720215, 0.02458573505282402, -0.024650391191244125, 0.025878868997097015, -0.000309140159515664, -0.004136012401431799, 0.012365605682134628, 0.016697609797120094, 0.031342364847660065, -0.03931131213903427, -0.002353910356760025, -0.003251022892072797, -0.017279520630836487, -0.00014434117474593222, -0.0004495665489230305, -0.008938797749578953, 0.0004119343066122383, 0.018103893846273422, 0.004501726943999529, 0.03017854504287243, -0.01875046081840992, 0.04532439261674881, -0.00700313551351428, -0.023001642897725105, -0.014636674895882607, -0.014038600027561188, -0.011040142737329006, -0.02230658382177353, 0.010248096659779549, 0.0027681177016347647, -0.012939434498548508, -0.00861551333218813, 0.001324453391134739, 0.005697877146303654, 0.010353163816034794, 0.020512357354164124, 0.010967403650283813, -0.02970978245139122, 0.009528790600597858, -0.021692344918847084, -0.008453872054815292, 0.010660284198820591, -0.02136906050145626, -0.004546178504824638, 0.014062846079468727, 0.009666185826063156, 0.004582548048347235, 0.014984204433858395, 0.012810121290385723, -0.029855260625481606, -0.0002866618160624057, 0.015937892720103264, 0.004934119060635567, -0.006073694676160812, 0.004622958600521088, -0.00033060822170227766, 0.018798954784870148, 0.022936986759305, 0.00028817722341045737, 0.02798021398484707, 0.03543190658092499, 0.022031791508197784, -0.003739989595487714, -0.01671377383172512, 0.014652838930487633, -0.009310574270784855, 0.011266441084444523, -0.0033823568373918533, -0.04816928878426552, -0.0051927464082837105, 0.008696334436535835, 0.01407092809677124, -0.009747006930410862, -0.022484390065073967, 0.035916831344366074, 0.0034793419763445854, 0.020124416798353195, 0.024601899087429047, -0.00962577573955059, 0.022322747856378555, -0.005637261550873518, -0.02264603041112423, -0.0065222508274018764, 0.016253093257546425, -0.027964049950242043, 0.016026794910430908, -0.000537459331098944, 0.010110701434314251, 0.0088903047144413, -0.016649115830659866, -0.046488214284181595, 0.002271068748086691, -0.02065783552825451, 0.023987658321857452, -0.016665279865264893, 0.04820161685347557, 0.015727758407592773, -0.004776518326252699, -0.007944699376821518, 0.018524162471294403, -0.011565478518605232, 0.04803997650742531, -0.037306953221559525, 0.01436996553093195, -0.008110382594168186, 0.004186525475233793, 0.028659110888838768, 0.04192991182208061, -0.0355612188577652, -0.012203964404761791, 0.028158020228147507, -0.01582474261522293, -0.030194709077477455, -0.029354169964790344, 0.01538022793829441, -0.013973942957818508, 0.013594084419310093, -0.03898802772164345, 0.02005976065993309, -0.00965002179145813, 0.03792119026184082, 0.009682349860668182, 0.009884403087198734, 0.008247778750956059, -0.01580049656331539, 0.03995788097381592, -0.006453553214669228, -0.014871055260300636, 0.021094268187880516, 0.0479106605052948, 0.05311553180217743, -0.01489530224353075, -0.0005990852951072156, -0.021126598119735718, -0.021611522883176804, 0.022371239960193634, 0.0390203557908535, 0.015226667746901512, -0.006255541928112507, -0.00625150091946125, -0.018039237707853317, -0.007378953043371439, -0.027349811047315598, 0.029224857687950134, -0.041832927614450455, -0.013755726628005505, -0.03413877263665199, 0.013303129002451897, 0.001357792061753571, -0.045130420476198196, 0.020237566903233528, 0.018378684297204018, -0.012769710272550583, -0.012713136151432991, -0.041832927614450455, 0.048815857619047165, -0.010587545111775398, -0.019364699721336365, -0.00544733228161931, 0.014378047548234463, -0.0010880520567297935, -0.022920822724699974, 0.0034005416091531515, 0.014297226443886757, -0.015016533434391022, -0.04778134822845459, -0.004473439883440733, -0.03517327830195427, -0.006457594223320484, 0.03733928129076958, -0.013060666620731354, 0.060583386570215225, -0.056219056248664856, -0.0007238526595756412, -0.03746859356760979, 0.009003453887999058, -0.0036813945043832064, -0.017538147047162056, 0.01972031220793724, -0.016204601153731346, 0.01828170008957386, -0.016535967588424683, 0.03190811350941658, 0.006069653667509556, 0.004946242552250624, -0.010304671712219715, -0.006049448624253273, -0.02644461579620838, -0.03166564926505089, -0.014386129565536976, -0.02547476440668106, 0.007075874600559473, 0.04461316764354706, 0.042673464864492416, 0.005580686964094639, 0.01891210302710533, -0.025426272302865982, 0.0020094108767807484, 0.028044870123267174, 0.01887977495789528, 0.025296958163380623, -0.006526291836053133, -0.00499473512172699, 0.02403615228831768, -0.015315570868551731, 0.022209597751498222, -0.014507361687719822, -0.031051410362124443, 0.010231932625174522, -0.026476943865418434, -0.00022339416318573058, -0.023421913385391235, -0.03339521959424019, -0.005039186682552099, 0.018653476610779762, -0.005511988885700703, -0.02390683814883232, -0.013440524227917194, -0.006558620370924473, -0.02204795554280281, -0.014087092131376266, -0.001068857149221003, -0.0540853813290596, -0.03378316015005112, -0.0023256230633705854, -0.020787149667739868, -0.021175090223550797, 0.01849183440208435, -0.016511721536517143, -0.006639441475272179, 0.013755726628005505, -0.016649115830659866, -0.035916831344366074, -0.012963681481778622, 0.010692612268030643, -0.004004678223282099, -0.011347262188792229, 0.014539689756929874, -0.00678087817505002, -0.023211777210235596, -0.038147490471601486, 0.004796723835170269, -0.009811664000153542, 0.02120741829276085, 0.026897214353084564, -0.027559945359826088, -0.011161373928189278, -0.011379590258002281, 0.018572654575109482, 0.001035518478602171, -0.02945115603506565, -0.029063215479254723, -0.01930004358291626, -0.02335725538432598, 0.008728663437068462, 0.055928099900484085, -0.025426272302865982, 0.022355075925588608, 0.022112613543868065, 0.026945706456899643, -0.013682987540960312, -0.0177806094288826, 0.02387451007962227, 0.029338005930185318, 0.032732486724853516, 0.016988564282655716, 0.013505181297659874, 0.0008455892093479633, -0.0020811394788324833, 0.0348823219537735, -0.020851805806159973, 0.010555217042565346, -0.02754378132522106, -0.005124048329889774, -0.0451950766146183, 0.004404741805046797, -0.00040107397944666445, -0.02966129034757614, 0.035108622163534164, 0.004049129784107208, -0.0075203897431492805, 0.05023830384016037, 0.01595405675470829, -0.011549314484000206, 0.0019801133312284946, 0.021983299404382706, 0.00759716983884573, 0.014612428843975067, 0.009512626565992832, 0.019397029653191566, -0.01589748077094555, 0.007132449187338352, 0.008558939211070538, -0.01938086561858654, -0.020156746730208397, 0.008340722881257534, 0.0862521231174469, -0.02539394423365593, 0.007855797186493874, -0.02382601797580719, 0.027689259499311447, -0.007572923321276903, 0.010442066937685013, -0.0034409521613270044, -0.006788960192352533, 0.01125835906714201, 0.008179080672562122, 0.006526291836053133, -0.01091891061514616, -0.009318656288087368, 0.01616419106721878, 0.018976759165525436, -0.03194044157862663, -0.010490559972822666, -0.016810758039355278, 0.0032490023877471685, 0.010506724007427692, 0.008793319575488567, 0.008777155540883541, 0.010296589694917202, -0.010999731719493866, -0.02641228772699833, -0.0037682768888771534, 0.005208910442888737, -0.026719408109784126, 0.0001934651518240571, -0.014079010114073753, -0.007770934607833624, 0.0012355503858998418, 0.01015919353812933, 0.004889667499810457, 0.009908649139106274, -0.011840269900858402, -0.005556440446525812, -0.007702236995100975, 0.003234858624637127, -0.00576657522469759, -0.0033924595918506384, 0.0052412389777600765, -0.02099728398025036, -0.012818203307688236, 0.021821657195687294, -0.006417183671146631, -0.04131567105650902, 0.004380495753139257, -0.009916731156408787, 0.00653841532766819, -0.027818571776151657, 0.017845267429947853, -0.017424996942281723, 0.008324557915329933, -0.003412664867937565, -0.006243418902158737, 0.014466950669884682, -0.0045663840137422085, 0.040442805737257004, -0.020463865250349045, -0.016681445762515068, -0.0021154885180294514, 0.008227572776377201, -0.004635081626474857, -0.0011112880893051624, 0.0028226717840880156, -0.012907106429338455, 0.02743063122034073, -0.04028116166591644, -0.02005976065993309, 0.0060817766934633255, 0.02924102172255516, 0.02301780693233013, -0.017085550352931023, 0.02827117033302784, -0.0018518101423978806, 0.00045032426714897156, 0.0016750142676755786, -0.014733660034835339, -0.00806997250765562, 0.01765129715204239, -0.0004745705518871546, 0.012139307335019112, 0.010005634278059006, 0.0291117075830698, -0.009197424165904522, -0.0005114451050758362, -0.013723397627472878, 0.010636037215590477, 0.007835591211915016, 0.013092994689941406, 0.0013709254562854767, 0.021482208743691444, 0.0007935607573017478, -0.022694524377584457, -0.018944431096315384, 0.006126228254288435, 0.03326590359210968, -0.01379613671451807, 0.010094537399709225, -0.00043163439841009676, -0.00804168451577425, -0.002186206867918372, -0.00014257321890909225, -0.030744289979338646, 0.0029822932556271553, -0.025636406615376472, -0.009730842895805836, 0.014903384260833263, -0.017295684665441513, 0.007083956617861986, -0.001357792061753571, 0.006821288727223873, 0.01951017789542675, -0.016616787761449814, 0.0057584927417337894, 0.0018730255542322993, -0.01040973886847496, -0.04409591108560562, -0.012155471369624138, 0.03614313155412674, -0.004323921166360378, -0.03316891938447952, -0.002824692288413644, -0.0008996382239274681, 0.014079010114073753, -0.032182902097702026, -0.0010557237546890974, -0.011274523101747036, 0.028158020228147507, 0.026606258004903793, 0.034979309886693954, -0.014022435061633587, 0.031164560467004776, -0.009051946923136711, 0.01757047511637211, -0.019881954416632652, 0.01013494748622179, 0.010490559972822666, -0.029515812173485756, -0.009342902339994907, -0.010482477955520153, -0.03404178470373154, 0.02233891189098358, 0.010821925476193428, -0.0014871055027469993, 0.007342583499848843, 0.020981119945645332, 0.020172910764813423, -0.010595627129077911, 0.0013375867856666446, -0.00495028356090188, 0.005322059616446495, -0.045809317380189896, 0.01218779943883419, -0.012260538525879383, -0.004901790991425514, -0.00017603814194444567, 0.005802944302558899, -0.014652838930487633, -0.012907106429338455, -0.021401388570666313, -7.677990652155131e-05, 0.018249372020363808, -0.01007029041647911, -0.02709118463099003, 0.002705481369048357, -0.017845267429947853, -0.0062676649540662766, 0.0024529160000383854, 0.005350347142666578, 0.012858613394200802, -0.018637312576174736, 0.015283242799341679, -0.036207787692546844, 0.006279787980020046, -0.006639441475272179, -0.02136906050145626, 0.012624233029782772, -0.02798021398484707, 0.0318596214056015, -0.006041366141289473, 0.023211777210235596, 0.0057584927417337894, 0.046908482909202576, -0.06944136321544647, -0.00647375825792551, 0.018556490540504456, -0.04257647693157196, 0.01765129715204239, -0.018992925062775612, 0.008882222697138786, 0.020625507459044456, 0.02408464439213276, 0.026056675240397453, -0.007112244144082069, 0.015234749764204025, -0.0411217026412487, 0.013594084419310093, -0.04257647693157196, -0.014119420200586319, -0.029725946485996246, -0.010627955198287964, -0.019995104521512985, 0.01462051086127758, 0.009593447670340538, -0.021870149299502373, 0.022791508585214615, -0.004934119060635567, 0.00417844345793128, -0.030162379145622253, -0.011525068432092667, -0.0037460511084645987, 0.026089003309607506, 0.00994905922561884, -0.01752198301255703, 0.0215468667447567, -0.007702236995100975, -0.01201807614415884, -0.01536406297236681, -0.003838995238766074, 0.02018907479941845, -0.00971467886120081, -0.029208693653345108, -0.016438981518149376, 0.02222576178610325, -0.02471504732966423, -0.02314712107181549, -0.010733022354543209, 0.004267346579581499, 0.0034086236264556646, -0.006562661379575729, 0.035399578511714935, -0.03106757439672947, -0.030825112015008926, -0.021466044709086418, -0.04574466124176979, -0.001261817174963653, -0.01747349090874195, -0.013868875801563263, 0.022112613543868065, 0.006586907897144556, -0.005322059616446495, 0.006930396892130375, 0.024957509711384773, 0.0020387086551636457, 0.02390683814883232, 0.004473439883440733, -0.016810758039355278, -0.020156746730208397, 0.008284147828817368, -0.003550060326233506, -0.011080552823841572, 0.000158611117512919, 0.003099483670666814, 0.020512357354164124, -0.04910681024193764, 0.0023094587959349155, -0.01626925729215145, 0.00552411237731576, 0.0006662677624262869, 0.015347898937761784, 0.016544049605727196, -0.0063080755062401295, 0.008704416453838348, 0.03533492237329483, 0.0035318757873028517, 0.016600623726844788, 0.01841101422905922, 0.00069051404716447, -0.019025253131985664, -0.041412655264139175, -0.0036046146415174007, 0.02356738969683647, 0.016568295657634735, -0.0010648160241544247, -0.009981388226151466, -0.007164777722209692, -0.04700546711683273, -0.03695134073495865, -0.03394480049610138, 0.0010769391665235162, -0.005115966312587261, 0.02954814024269581, -0.0021457963157445192, 0.01812005788087845, 0.015121600590646267, -0.010215768590569496, 0.031116066500544548, -0.01799074374139309, 0.020205238834023476, 0.011969583109021187, -0.011145209893584251, 0.030534155666828156, 0.02052852138876915, 0.009092357009649277, 0.04464549571275711, 0.033621516078710556, -0.013876957818865776, -0.012001912109553814, 0.007710319012403488, -0.01938086561858654, -0.011484657414257526, 0.01626925729215145, 0.0035359167959541082, -0.02628297358751297, 0.001966980053111911, -0.023389583453536034, -0.007815386168658733, 0.02327643521130085, -0.032780978828668594, 0.0029034928884357214, -0.01195341907441616, 0.014216406270861626, -0.0032490023877471685, 0.006514168810099363, -0.012147389352321625, 0.003798584919422865, 0.010312753729522228, 0.015533787198364735, -0.02437559887766838, 0.01307683065533638, 0.016148027032613754, 0.03611080348491669, -0.010943157598376274, 0.007589087355881929, -0.009916731156408787, 0.010595627129077911, -0.0280933640897274, 0.03527026250958443, 0.01768362522125244, 0.049882691353559494, -0.018976759165525436, 0.00829222984611988, -0.03478533774614334, -0.0188312828540802, 0.03788886219263077, 0.008906468749046326, -0.021530702710151672, -0.006566702388226986, -0.017505818977952003, -0.033718500286340714, 0.0020265853963792324, -0.032991115003824234, 0.05424702540040016, 0.0040026577189564705, -0.008437708020210266, -0.036886684596538544, 0.003863241523504257, 0.0016598603688180447, -0.0021639810875058174, 0.0028469180688261986, 0.010579463094472885, 0.004069334827363491, 0.022662196308374405, -0.010555217042565346, 0.00808209553360939, 0.014749824069440365, 0.010304671712219715, -0.002850959077477455, 0.004606794565916061, 0.012171635404229164, -0.0065707433968782425, -0.021950971335172653, -0.004136012401431799, -0.0177806094288826, -0.0034975267481058836, -0.013189979828894138, -0.01997894048690796, 0.0008344763773493469, 0.006146433763206005, -0.004732066765427589, -0.03076045587658882, -0.031002918258309364, -0.0355612188577652, -0.008413461036980152, 0.0013204123824834824, -0.008647842332720757, -0.0051321303471922874, 0.041541971266269684, -0.005540276411920786, 0.015606526285409927, -0.009811664000153542, 0.04296441748738289, -0.02035071700811386, -0.026169825345277786, 0.022419732064008713, -0.00015608547255396843]" -"Using IoT Sensors, TimescaleDB, and Grafana to Control the Temperature of the Nuclear Fusion Experiment at the Max Planck Institute","signal and compare that to what the board tells me it saw. If there are discrepancies, those might point to errors in the soft- or hardware and help me fix them.When the system is deployed, we can use these measurements to refine the detection system, to be able to set it as fast as possible without too many false positives, and gather data about how the actual physical events look to the board.Choosing (and Using!) TimescaleDB✨Editor's Note:See how you can get started with Grafana and TimescaleDB with ourdocsorvideos.I started using Timescale to track data formy self-built smart homeas a small playground for me—that's still running! Aside from that, I only use it for the monitoring system mentioned above, though I hope to motivate others at my research institute to use it! It is also my go-to for other projects, should I need a way to store measurements efficiently.The top factors in my decision to use TimescaleDB were, first, the open-source nature of it. Open-source software can be much more beneficial to a wider range of people, mature faster, generally has more flexible features, and isn't so locked into a specific environment. It's also much more approachable to individuals because of no fussy licensing/digital rights management.Then, the documentation. You can read up on a lot of things that TimescaleDB can do, complete with great examples! It doesn't feel like you're alone and have to figure it out all by yourself—there's rich, easy-to-understand documentation available, and if that doesn't have what you need, the community has been very helpful, too.✨Editor's Note:Need help with TimescaleDB? Join ourSlack CommunityorForumand ask away!And lastly,it's still all just SQL! You don't need to learn another database-specific format, but you can start using it immediately if you've worked with any standard database before! That was helpful because I already knew the basics of SQL, giving me a great starting point. Plus, you can use PostgreSQL's rich relational database system to easily store non-time-series data alongside your measurements.Because the Wendelstein is fairly old, database tools didn’t exist when it started. As such, they decided to write their own tool,called ArchiveDB, and never quite brought it to the modern age. It can only store time-series data in a particular format and has no relational or statistical tools aside from minimum/maximum aggregates, no continuous aggregates,",https://www.timescale.com/blog/using-iot-sensors-timescaledb-and-grafana-to-control-the-temperature-of-the-nuclear-fusion-experiment-in-the-max-planck-institute/,510,"[-0.013446396216750145, -0.003635394386947155, 0.047518711537122726, -0.016306037083268166, 0.054941609501838684, 0.03854430839419365, -0.008495262823998928, -0.018602875992655754, -0.0391223207116127, 0.049100641161203384, 0.003211391856893897, -0.015537888742983341, 0.00237479479983449, -0.025858454406261444, 0.06881390511989594, 0.03064987249672413, -0.016518989577889442, 0.005475908052176237, -0.01969805732369423, 0.0051260581240057945, -0.0028805555775761604, 0.03735785931348801, 0.013514844700694084, -0.003954822197556496, 0.0041867876425385475, -0.05831841751933098, -0.012259948998689651, 0.06358137726783752, 0.012267555110156536, -0.029934963211417198, -0.008784268982708454, -0.040430452674627304, -0.057010285556316376, 0.007247972302138805, 0.030817192047834396, 0.038240090012550354, 0.03255122900009155, -0.019850166514515877, 0.011879677884280682, -0.0026618996635079384, -0.026375623419880867, 0.03048255294561386, -0.02106703445315361, -0.001812943839468062, -0.0037247580476105213, -0.05381600558757782, -0.055610887706279755, -0.014838188886642456, -0.007651060353964567, 0.07070005685091019, -0.019104834645986557, 0.03848346322774887, -0.03705364465713501, -0.003897781716659665, 0.023622458800673485, -0.005551962181925774, -0.00038169740582816303, 0.02337908372282982, 0.0052743637934327126, -0.002467961283400655, 0.0014203136088326573, -0.02331824041903019, 0.01676236279308796, 0.046119313687086105, -0.013142178766429424, 0.010601965710520744, -0.008951588533818722, 0.05521540343761444, -0.024291735142469406, 0.039700333029031754, 0.026679839938879013, -0.002483172109350562, 0.02325739711523056, -0.04052171856164932, -0.004209604114294052, -0.043320514261722565, -0.022147005423903465, 0.04992202669382095, -0.006270674988627434, 0.015469439327716827, -0.013651742599904537, -0.006765027996152639, -0.07648018002510071, 0.035228341817855835, 0.015119589865207672, -0.043959371745586395, -0.0028957666363567114, -0.006084342021495104, 0.025645501911640167, -0.007255577947944403, -0.03553255647420883, 0.04864431545138359, 0.04122141748666763, 0.04484160244464874, 0.011742779985070229, 0.005202112253755331, -0.033768098801374435, 0.023029234260320663, -0.030087070539593697, -0.0005319045740179718, -0.004023271147161722, -0.02896146848797798, -0.02753164805471897, -0.034559063613414764, 0.049039795994758606, -0.008403997868299484, 0.015210854820907116, 0.008419208228588104, 0.0004819939786102623, 0.041921116411685944, -0.07033499330282211, -0.026390833780169487, -0.05369431897997856, 0.004551848396658897, -0.005008174106478691, -0.00875384733080864, -0.049678653478622437, 0.001395595958456397, 0.019789323210716248, -0.02690800279378891, -0.030847614631056786, 0.004540440160781145, -0.01968284696340561, 0.03641478717327118, 0.033828940242528915, -0.0167927835136652, 0.011286454275250435, -0.06552836298942566, -0.023014023900032043, 0.01880061626434326, 0.038148824125528336, -0.01740121841430664, 0.044780757278203964, -0.016153927892446518, -0.008989615365862846, -0.022070949897170067, -0.040308766067028046, -0.02827697992324829, -0.013507239520549774, 0.01311175711452961, 0.017081789672374725, -0.030862824991345406, 0.033037979155778885, 0.005373234394937754, -0.04158647730946541, 0.031821109354496, -0.0363539420068264, 0.0522644966840744, -0.008890745230019093, -0.012792329303920269, 0.021523360162973404, 0.021279986947774887, -0.01886145956814289, -0.03407231718301773, 0.038240090012550354, 0.013978775590658188, 0.044020213186740875, 0.01676236279308796, -0.013613715767860413, -0.03577592968940735, 0.0003355894878040999, 0.028079237788915634, 0.00620602909475565, 0.015066351741552353, -0.017705434933304787, 0.008525684475898743, -0.03118225373327732, -0.0665627047419548, -0.07033499330282211, 0.016564620658755302, -0.026375623419880867, -0.018709352239966393, -0.004719167947769165, 0.009271016344428062, 0.03875725716352463, -0.018572453409433365, -0.0032608271576464176, -0.07976572215557098, 0.04231660068035126, -0.03440695255994797, -0.06990908831357956, -0.012944437563419342, -0.023698512464761734, 0.02111266739666462, -0.010472673922777176, -0.005145071540027857, -0.0509563647210598, 0.00243753963150084, 0.020184805616736412, 0.024154838174581528, -0.05527624860405922, 0.06473740190267563, 0.03425484523177147, 0.03046734258532524, 0.051260583102703094, -0.02468721754848957, 0.04374641925096512, 0.02188841998577118, -0.01417651679366827, -0.0055899894796311855, 0.04572382941842079, 0.002865344751626253, 0.034467797726392746, -0.04173858463764191, -0.03416357934474945, 0.020717184990644455, 0.015773655846714973, -0.004677338059991598, -0.044111479073762894, -0.043259672820568085, -0.01453397236764431, -0.01887667179107666, 0.025630291551351547, -0.011545038782060146, -0.04499370977282524, 0.006380953826010227, -0.04289461299777031, -0.033889785408973694, -0.025645501911640167, 0.0016437229933217168, 0.01528690941631794, 0.06741450726985931, -0.009042853489518166, -0.023728933185338974, -0.024230891838669777, 0.012663036584854126, 0.05247744917869568, -0.03784460574388504, 0.018359502777457237, 0.007076850160956383, 0.00938509777188301, -0.012990070506930351, -0.003373007057234645, -0.029661167412996292, 0.01528690941631794, 0.006673762574791908, 0.01560633722692728, -0.025828031823039055, -0.0018357600783929229, -0.024961013346910477, -0.006491232197731733, 0.00020653489627875388, 0.012837961316108704, 0.019971853122115135, -0.018602875992655754, 0.018511610105633736, -0.04374641925096512, -0.0378141850233078, 0.023592036217451096, 0.05068257078528404, 0.026482099667191505, -0.01168954186141491, 0.011651515029370785, -0.027972763404250145, -0.021447306498885155, -0.05609763413667679, -0.046910278499126434, 0.02922005206346512, 0.010343381203711033, -0.016123507171869278, 0.026360411196947098, -0.04125183820724487, -0.01683841645717621, 0.01747727207839489, -0.05077383294701576, 0.01057154405862093, -0.007259380538016558, -0.04578467458486557, -0.0334334596991539, -0.015013113617897034, 0.03802713751792908, 0.05463739112019539, 0.028733305633068085, -0.06053920462727547, -0.012092629447579384, -0.015400990843772888, 0.02827697992324829, 0.006704184226691723, 0.0012529941741377115, 0.003019354771822691, -0.0038749652449041605, -0.03939611464738846, -0.005905614700168371, 0.03562382236123085, 0.016306037083268166, -0.010723653249442577, -0.018572453409433365, 0.032368700951337814, 0.05962655320763588, -0.02327260747551918, 0.006529259495437145, 0.014511155895888805, 0.028535563498735428, -0.03285544738173485, 0.010693231597542763, -0.005361826624721289, 0.0018699845531955361, 0.0203673355281353, -0.046819012612104416, -0.023485559970140457, -0.00975015852600336, -0.030954090878367424, 0.009194961749017239, -0.014746923930943012, -0.0025630290620028973, 0.02617788128554821, 0.0015068253269419074, -0.016564620658755302, -0.02331824041903019, 0.02476327307522297, 0.009795790538191795, -0.028885414823889732, 0.013309498317539692, -0.009202566929161549, -0.02257290855050087, 0.00457086181268096, 0.08676271885633469, -0.004194393288344145, 0.005426472518593073, -0.09455067664384842, -0.04140394926071167, -0.1036771908402443, 0.001450735260732472, 0.011461379006505013, 0.017112212255597115, -0.0025687331799417734, 0.02115830034017563, 0.0007724262541159987, 0.00583336316049099, -0.015081563033163548, -0.003336881287395954, 0.00114271545317024, 0.04578467458486557, 0.05302504077553749, -0.03136478364467621, -0.06382475048303604, 0.008426813408732414, 0.03477201610803604, -0.03179068863391876, 0.05007413402199745, -0.024322157725691795, -0.019987063482403755, -0.06765788048505783, 0.04122141748666763, 0.0016342162853106856, 0.024398211389780045, -0.058561790734529495, -0.01594097539782524, 0.009681709110736847, -0.004783813841640949, -0.051230158656835556, -0.012396846897900105, 0.0064037698321044445, 0.0002133084781235084, 0.02900710143148899, 0.01274669636040926, -0.015446623787283897, -0.012267555110156536, -0.035289183259010315, -0.010913788340985775, 0.006031103897839785, 0.02841387689113617, 0.04578467458486557, 0.0070616393350064754, -0.019272154197096825, 0.011400535702705383, -0.0394265353679657, -0.01600181870162487, -0.04173858463764191, -0.01205460261553526, 0.021279986947774887, -0.01597139798104763, -0.031608156859874725, -0.021234354004263878, -0.02918963134288788, 0.007438108325004578, 0.08055669069290161, 0.017751067876815796, -0.011750385165214539, 0.05381600558757782, 0.03909189626574516, 0.004399739671498537, 0.011468985117971897, -0.018298659473657608, 0.05363347381353378, 0.03407231718301773, 0.019819743931293488, 0.04295545443892479, -0.055550042539834976, -0.008556106127798557, 0.019424261525273323, 0.0057801250368356705, 0.0002467010635882616, -0.0254781823605299, -0.02701447904109955, 0.005719281733036041, -0.031821109354496, 0.018648508936166763, 0.04861389473080635, 0.005213520489633083, 0.023500770330429077, 0.013088940642774105, -0.0624861940741539, 0.008198650553822517, -0.0015743235126137733, 0.04660606011748314, 0.0013870398979634047, 0.043137986212968826, -0.0014421792002394795, -0.02331824041903019, -0.019317785277962685, 0.018344290554523468, 0.0496482327580452, -0.035137075930833817, 0.030269602313637733, -0.05758829787373543, -0.06242534890770912, 0.07100427150726318, -0.0022930363193154335, 0.02687758021056652, -0.02391146495938301, -0.013895115815103054, -0.02476327307522297, -0.010541122406721115, -0.023820199072360992, 0.06954403221607208, 0.01597139798104763, -0.03550213575363159, 0.0009231087751686573, -0.06601510941982269, -0.0016922076465561986, -0.0233638733625412, 0.02185799926519394, -0.013933143578469753, -0.009293832816183567, 0.004243828356266022, 0.016944892704486847, -0.05509371683001518, 0.05798377841711044, 0.04356388747692108, -0.004061298444867134, 0.016184350475668907, -0.02105182409286499, 0.035167496651411057, -0.02462637424468994, -0.01747727207839489, -0.049739494919776917, -0.025599868968129158, 0.013096545822918415, 0.003192378208041191, 0.032247014343738556, -0.036810267716646194, -0.0376620776951313, 0.029478637501597404, -0.008723425678908825, -0.04015665873885155, 0.02751643769443035, -0.007240367121994495, 0.02334866300225258, -0.017933597788214684, -0.043259672820568085, 0.03200363740324974, -0.08828379958868027, 0.01893751509487629, -0.018040074035525322, -0.012708669528365135, 0.043320514261722565, 0.04164732247591019, 0.00976536888629198, -0.013758218847215176, 0.000548541487660259, 0.025280442088842392, -0.005715478677302599, -0.0037133500445634127, 0.0013936945470049977, 0.036719005554914474, 0.013142178766429424, 0.009407914243638515, 0.0034186397679150105, -0.04523708298802376, 0.007848801091313362, 0.0006882912130095065, 0.019241731613874435, 0.048400942236185074, 0.013301893137395382, 0.006810660474002361, 0.015142406336963177, -0.0030973104294389486, 0.011545038782060146, 0.0049777524545788765, -0.04587594047188759, 0.001488762442022562, 0.05445486307144165, -0.019941430538892746, -0.003439554711803794, -0.005955049768090248, -0.07392475754022598, 0.002137125236913562, 0.018420346081256866, -0.01659504324197769, 0.03863557055592537, 0.020108750090003014, 0.002589648123830557, 0.07514162361621857, -0.01491424348205328, 0.03118225373327732, -0.03370725363492966, -0.005057609174400568, -0.005236336961388588, -0.04125183820724487, -0.015910554677248, 0.004627902526408434, 0.019180888310074806, 0.024337368085980415, -0.007624441292136908, 0.017568537965416908, -0.0003180019266437739, 0.015515072271227837, -0.017614170908927917, -0.026618996635079384, -0.01662546396255493, -0.047579556703567505, -0.03586719557642937, -0.0032969529274851084, -0.010084796696901321, 0.01755332760512829, -0.04432443156838417, 0.004829446319490671, -0.0175229050219059, -0.002954708645120263, 0.012959648855030537, -0.027349118143320084, 0.0029813277069479227, -0.005498724058270454, -0.042620815336704254, -0.005723084323108196, -0.02327260747551918, -0.03416357934474945, -0.03915274143218994, 0.022131795063614845, 0.04228617623448372, 0.04368557408452034, 0.017659801989793777, 0.002511692466214299, 0.0005675550200976431, -0.003099211724475026, -0.005342812743037939, 0.0012729584705084562, -0.012769512832164764, 0.031760264188051224, 0.011347297579050064, -0.030801981687545776, 0.027470804750919342, -0.003654408035799861, 0.017568537965416908, 0.04870515689253807, 0.002861542161554098, 0.010541122406721115, 0.010655203834176064, 0.010312959551811218, -0.007597822230309248, 0.0008736734744161367, 0.012503323145210743, 0.010594360530376434, -0.00692474190145731, 0.0275924913585186, 0.006662354338914156, -0.013895115815103054, -0.032459963113069534, 0.0018937514396384358, 0.011240822263062, -0.01878540590405464, 0.00743050267919898, 0.025189176201820374, -0.02842908911406994, 0.023135710507631302, -0.041951537132263184, -0.013704980723559856, -0.004278053063899279, -0.003401527414098382, -0.016306037083268166, -0.018298659473657608, -0.02617788128554821, 0.029433004558086395, -0.029615534469485283, 0.011849256232380867, 0.026375623419880867, 0.040978044271469116, 0.02988933026790619, -0.04143436998128891, -0.008563711307942867, -0.0002481270639691502, -0.015834501013159752, 0.0035346224904060364, 0.015203249640762806, 0.024215681478381157, 0.0022797270212322474, 0.014199333265423775, -0.04514581710100174, 0.04085635766386986, 0.02692321315407753, 0.008723425678908825, 0.007464727386832237, -0.02465679682791233, -0.006327715702354908, 0.026360411196947098, -0.00416397163644433, 0.013917932286858559, 0.026406044140458107, -0.0033901194110512733, -0.01167433150112629, 0.005677451845258474, -0.009020037017762661, -0.0581054650247097, -0.024215681478381157, 0.005152677185833454, -0.02827697992324829, -0.005810546688735485, 0.01881582848727703, -0.040339186787605286, -0.03933527320623398, -0.008107385598123074, -0.0016693914076313376, -0.04085635766386986, 0.007841195911169052, 0.03869641572237015, -0.0018680831417441368, -0.02321176417171955, -0.027805443853139877, 0.00045276060700416565, -0.0004306573246140033, 0.0037133500445634127, 0.07118680328130722, 0.00045347362174652517, -0.006631932687014341, 0.04128226265311241, 0.04736660420894623, 0.03562382236123085, 0.0036372956819832325, -0.01529451459646225, 0.017720647156238556, 0.051260583102703094, -0.014305809512734413, -0.010358592495322227, 0.02611703798174858, -0.026740683242678642, -0.023059656843543053, 0.044811177998781204, -0.026618996635079384, -0.01205460261553526, -0.028931045904755592, -0.011324482038617134, 0.07800126820802689, 0.01828344725072384, 0.002968018176034093, -0.020093539729714394, -0.0056394245475530624, -0.0321253277361393, -0.03127351775765419, -0.019865376874804497, -0.04344220086932182, 0.015788868069648743, -0.03510665521025658, 0.0036334930919110775, -0.02899188920855522, 0.01460242085158825, 0.03684069216251373, -0.009050458669662476, 0.01657983288168907, 0.025904085487127304, -0.020732395350933075, 0.0019755098037421703, 0.0017568537732586265, 0.029539480805397034, 0.030330445617437363, -0.013005280867218971, 0.01953073777258396, -0.020686762407422066, -0.0020971966441720724, 0.07672355324029922, -0.01194812636822462, -0.013704980723559856, -0.021432094275951385, 0.029433004558086395, -0.0065786950290203094, 0.00875384733080864, 0.008145413361489773, 0.03909189626574516, 0.030801981687545776, 0.0076776789501309395, 0.006472218781709671, 0.00690572801977396, 0.018298659473657608, -0.014815373346209526, -0.007065442390739918, -0.0005694563733413815, 0.02553902566432953, 0.044659070670604706, -0.03589761629700661, -0.05189943686127663, 0.01740121841430664, -0.007023612502962351, -0.06820547580718994, -0.04055213928222656, -0.016534199938178062, -0.0043617128394544125, 0.017036158591508865, -0.004289461299777031, 0.02172110043466091, -0.030923668295145035, -0.026679839938879013, 0.01200136449187994, -0.03918316215276718, 0.03215574845671654, -0.006103355437517166, -0.014016803354024887, -0.0054492889903485775, 0.025569448247551918, -0.017066579312086105, -0.0055899894796311855, -0.05792293697595596, -0.012906410731375217, -0.03273376077413559, -0.030360866338014603, 0.030300023034214973, -0.01522606611251831, 0.025995351374149323, 0.048035878688097, 0.010647598654031754, -0.03145604953169823, 0.0018851953791454434, 0.02026085928082466, 0.027181798592209816, 0.0028824571054428816, 0.03364641219377518, -0.0003931055252905935, -0.0023919069208204746, 0.004430161789059639, -0.007381067611277103, 0.001402250723913312, -0.010845339857041836, 0.04359431192278862, -0.023074867203831673, -0.04307714104652405, 0.008175835013389587, -0.05399853736162186, 0.005894206464290619, 0.01673194020986557, 0.017659801989793777, -0.011065897531807423, -0.00300984806381166, 0.015484650619328022, -0.00871581956744194, -0.0037038433365523815, -0.002589648123830557, -0.01887667179107666, -0.04201238229870796, 0.010115218348801136, 0.01883103884756565, 0.027911918237805367, -0.02473285049200058, 0.00914172362536192, -0.03352472558617592, 0.02628435753285885, -0.0012605995871126652, 0.028565986081957817, -0.029326528310775757, 0.017583748325705528, -0.009020037017762661, -0.0405825600028038, 0.005498724058270454, -0.008464841172099113, 0.0027379540260881186, -0.005034793168306351, 0.06193860247731209, -0.0030307627748697996, 0.00874624215066433, -0.015728024765849113, 0.023424716666340828, 0.00494352774694562, 0.003146745730191469, -0.01969805732369423, -0.007320223841816187, -0.016944892704486847, 0.018405133858323097, 0.018420346081256866, -0.005951247178018093, 0.019834954291582108, -0.025751978158950806, -0.01601703092455864, -0.02985890954732895, -0.012480506673455238, -0.012609798461198807, 0.0365060530602932, 0.010738863609731197, -0.0051222555339336395, 0.0051678880117833614, -0.11773201823234558, -0.0525687150657177, 0.04003497213125229, 0.0021067033521831036, -0.030421709641814232, -0.009362281300127506, 0.023105289787054062, 0.011073502711951733, 0.020823661237955093, -0.03045213222503662, -0.031608156859874725, -0.048309676349163055, -0.004586072638630867, 0.026360411196947098, -0.01607787422835827, 0.010427040979266167, 0.033737678080797195, 0.022162215784192085, 0.03559340164065361, 0.04067382588982582, -0.010305354371666908, -0.0017578044207766652, -0.034467797726392746, 0.045510876923799515, 0.032368700951337814, -0.010678020305931568, -0.024519897997379303, 0.04557172209024429, 0.010008743032813072, -0.01595618762075901, -0.006506443489342928, 0.003411034354940057, 0.025949718430638313, 0.004403542727231979, -0.008518079295754433, 0.021584203466773033, 0.0026333793066442013, 0.004711562301963568, 0.00800851546227932, 0.0052705612033605576, -0.014792556874454021, -0.05676691234111786, 0.027090532705187798, -0.0335855670273304, 0.04745786637067795, -0.006977979559451342, 0.01732516475021839, 0.03325092792510986, -0.019241731613874435, 0.007441910915076733, 0.023515982553362846, -0.0012586982920765877, -0.014952270314097404, 0.0037951082922518253, 0.017720647156238556, 0.013758218847215176, -0.031699422746896744, -0.019834954291582108, -0.024398211389780045, -0.0026676037814468145, 0.004608889110386372, -0.006974176969379187, 0.016488566994667053, -0.054941609501838684, 0.0009711180464364588, -0.012982464395463467, 0.017598958685994148, 0.0038806693628430367, -0.0011731372214853764, -0.012647826224565506, 0.0006112862611189485, 0.02605619467794895, 0.009179751388728619, -0.009963110089302063, 0.016290826722979546, 0.024550320580601692, 0.010822523385286331, -0.026634206995368004, 0.016153927892446518, -0.003025058889761567, -0.008000909350812435, -0.004684943240135908, -0.03754039108753204, 0.01057154405862093, 0.009803395718336105, 0.0016408710507676005, -0.017598958685994148, 0.003076395485550165, 0.003658210625872016, -0.0035308196675032377, 0.039730753749608994, 0.003943413961678743, -0.0034984967205673456, -0.0015638660406693816, 0.007749930489808321, 0.01977411098778248, -0.003831234062090516, -0.0014621434966102242, -0.002775981090962887, -0.012799934484064579, 0.023789778351783752, -0.006190818268805742, 0.0062136342748999596, 0.005133663769811392, -0.012853172607719898, -0.009050458669662476, -0.00046440641744993627, 0.0038711626548320055, 0.008571316488087177, 0.0035156088415533304, 0.0006169903208501637, 0.01609308458864689, 0.026390833780169487, -0.005339010152965784, 0.0028349230997264385, 0.019865376874804497, 0.016229981556534767, -0.00509563647210598, 0.0004199621907901019, -0.03498496860265732, 0.02538691647350788, -0.030163126066327095, -0.030178336426615715, 0.02914399839937687, -0.007133890874683857, 0.007917250506579876, 0.03315966576337814, -0.00871581956744194, 0.010016348212957382, -0.004620297346264124, 0.01600181870162487, 0.0408867783844471, -0.005236336961388588, 0.0394265353679657, -0.008076963946223259, -0.023394295945763588, 0.011651515029370785, 0.0059322332963347435, 0.005548159591853619, 0.01674715057015419, 0.007563597522675991, 0.025706345215439796, 0.009666498750448227, 0.022207848727703094, -0.0037323636934161186, -0.00620602909475565, -0.003397724824026227, -0.005426472518593073, -0.03431569039821625, 0.03367683291435242, 0.021295197308063507, -0.044780757278203964, -0.0202912800014019, 0.03541086986660957, -0.002230291720479727, 0.06099553033709526, -0.04587594047188759, -0.012541349977254868, -0.017598958685994148, 0.011887283064424992, 0.005183098837733269, 0.03571508824825287, 0.010282537899911404, -0.013697374612092972, 0.02699926868081093, -0.013408368453383446, -0.02754685841500759, -0.02103661186993122, -0.019865376874804497, 0.014032013714313507, 0.01231318712234497, -0.012586982920765877, 0.010738863609731197, 0.01559112686663866, 0.03051297552883625, 0.01734037511050701, 0.004665929824113846, 0.0070084016770124435, -0.004342698957771063, -0.008213861845433712, -0.029296107590198517, 0.006422783713787794, 0.007099666632711887, 0.06735366582870483, 0.0378141850233078, -0.006567286793142557, -0.02249685488641262, -0.010716047137975693, -0.0076776789501309395, 0.017142632976174355, 0.026542942970991135, 0.0070198094472289085, 0.016397301107645035, -0.0008437271462753415, -0.005711676087230444, 0.014640447683632374, -0.0019042089115828276, 0.03988286107778549, -0.014739318750798702, 0.015682391822338104, -0.05043919384479523, 0.007038823328912258, 0.0019526935648173094, -0.03638436645269394, 0.011096319183707237, 0.036688581109046936, -0.008677792735397816, 0.006977979559451342, -0.024383001029491425, 0.02410920523107052, 0.021310407668352127, 0.011605882085859776, 0.00580674409866333, -0.01959158107638359, -0.006377151235938072, 0.02412441559135914, 0.02544775977730751, 0.024869747459888458, -0.02330303005874157, -0.033037979155778885, -0.03118225373327732, -0.04791419208049774, -0.0189070925116539, 0.013514844700694084, -0.03127351775765419, 0.044111479073762894, -0.0003614954766817391, -0.014625237323343754, -0.012389241717755795, 0.004460583440959454, 0.003722856752574444, 0.002502185758203268, 0.01743163913488388, -0.0041753798723220825, 0.020869292318820953, 0.023424716666340828, 0.031608156859874725, 0.02406357228755951, -0.001334752538241446, 0.00044872023863717914, -0.005962655413895845, -0.018450766801834106, -0.008563711307942867, -0.001819598488509655, -0.020899714902043343, -0.01661025360226631, 0.03802713751792908, 0.01889188215136528, 0.02751643769443035, -0.002971820766106248, 0.0210214015096426, 0.01267064269632101, 0.03772291913628578, 0.0061109610833227634, 0.019850166514515877, 0.016245193779468536, -0.008677792735397816, 0.010366197675466537, -0.0240179393440485, -0.007613033056259155, -0.0189070925116539, 0.03544129431247711, 0.0021029007621109486, -0.01093660481274128, -0.003606874030083418, 0.013902721926569939, -0.024550320580601692, -0.011910099536180496, -0.0010923295048996806, 0.005190704483538866, -0.018709352239966393, 0.02246643230319023, 0.014876216650009155, -0.007517965044826269, -0.0006707036518491805, 0.009111301973462105, -0.03954822197556496, -0.027105743065476418, 0.013514844700694084, -0.025736767798662186, -0.013720191083848476, -0.009369886480271816, -0.009529600851237774, -0.02106703445315361, 0.03836177662014961, -0.017142632976174355, 0.005335207562893629, -0.02261854149401188, 0.02027606964111328, -0.028581196442246437, -0.02260333113372326, 0.009035248309373856, -0.024428633973002434, 0.01453397236764431, -0.039669908583164215, -0.007449516095221043, 0.002865344751626253, -0.0015011212090030313, 0.017233898863196373, -0.011514617130160332, 0.005236336961388588, -0.01737079583108425, 0.022664174437522888, 0.014442707411944866, 0.011605882085859776, 0.001334752538241446, -0.005886600818485022, -0.03045213222503662, -0.0283226128667593, 0.025021856650710106, -0.009012431837618351, 0.006099552847445011, 0.02331824041903019, 0.05007413402199745, -0.02689279243350029, 0.0006032054661773145, 0.004422556143254042, 0.01490663830190897, 0.028870202600955963, 0.04170816391706467, -0.006879109423607588, -0.007289802189916372, 0.02617788128554821, 0.03936569392681122, -0.028094450011849403, -0.007856406271457672, 0.01056393887847662, 0.008274705149233341, -0.005844770930707455, 0.021371250972151756, -0.0022245876025408506, 0.006985585205256939, 0.01447312906384468, 0.022983601316809654, -0.016366880387067795, 0.007149101700633764, 0.0043274881318211555, -0.0019755098037421703, 0.009803395718336105, 0.006129974499344826, 0.012602193281054497, 0.0073468429036438465, 0.010579150170087814, 0.014769740402698517, -0.0017311854753643274, -0.025645501911640167, 0.030102282762527466, 0.010525912046432495, -0.004700154066085815, 0.025265229865908623, 0.0683271586894989, -0.008791874162852764, 0.007320223841816187, 0.016884049400687218, 0.00565463537350297, -0.004700154066085815, -0.01814655028283596, -0.004894092679023743, 0.01816176064312458, 0.0508042573928833, -0.008601738139986992, 0.023150920867919922, -0.030786771327257156, 0.02318134345114231, -0.022314324975013733, -0.011210400611162186, -0.026360411196947098, 0.013347525149583817, 0.018298659473657608, 0.0017578044207766652, 0.029265685006976128, 0.034589484333992004, -0.021994896233081818, -0.00870821438729763, -0.00832794327288866, -0.02045859955251217, 0.005148874595761299, -0.009058063849806786, -0.009042853489518166, 0.002234094310551882, -0.0010400422615930438, -0.018557243049144745, 0.025097910314798355, 0.023804988712072372, -0.014199333265423775, -0.0010638091480359435, -0.022040529176592827, 0.0007710002246312797, -0.004072706680744886, -0.004418753553181887, -0.01659504324197769, -0.0347415916621685, 0.007384870201349258, 0.016914470121264458, -0.007476135157048702, 0.03784460574388504, -0.0037951082922518253, -0.01886145956814289, 0.017173055559396744, -0.052812088280916214, -0.022968390956521034, -0.003336881287395954, 0.019469894468784332, -0.013164995238184929, 0.004125944338738918, 0.014838188886642456, 0.03486327826976776, 0.011879677884280682, 0.0010666612070053816, 0.02552381530404091, -0.010852945037186146, 0.010693231597542763, -0.009050458669662476, 0.005536751355975866, -0.014267781749367714, -0.03352472558617592, 0.02757728099822998, -0.011088713072240353, 0.005259152967482805, -0.050560884177684784, -0.01899835839867592, 0.026360411196947098, 0.014465522952377796, 0.015127195045351982, 0.039578646421432495, 0.02114308811724186, 0.020154383033514023, 0.010860550217330456, 0.01597139798104763, -0.025873664766550064, -0.010723653249442577, 0.026542942970991135, -0.018648508936166763, 0.02973722107708454, -0.02681673690676689, 0.0028805555775761604, 0.0002951856586150825, -0.006620524916797876, 0.021462516859173775, 0.013781034387648106, 0.0033711057621985674, 0.003916795365512371, 0.008525684475898743, 0.018313869833946228, 0.008875533938407898, -0.017827121540904045, -0.030665084719657898, -0.002403315156698227, 0.02182757668197155, -0.05628016218543053, 0.028915835544466972, 0.022755438461899757, -0.013347525149583817, 0.01671672984957695, 0.015864921733736992, -0.011757991276681423, 0.02187320962548256, -0.02684715948998928, -0.02684715948998928, 0.008943982422351837, -0.013872300274670124, 0.017857544124126434, 0.009286226704716682, 0.005909417290240526, 0.02678631618618965, 0.028170503675937653, -0.027120955288410187, -0.016229981556534767, -0.0037875028792768717, -0.039669908583164215, 0.03857472911477089, 0.018435556441545486, -0.014427496120333672, -0.010001136921346188, 0.018724562600255013, 0.008966798894107342, 0.033798519521951675, -0.02461116388440132, -0.017309952527284622, 0.022831493988633156, 0.029341738671064377, -0.006194620858877897, 0.048035878688097, -0.013157390058040619, 0.01348442304879427, -0.007080653216689825, 0.006046314723789692, -0.025843242183327675, 0.017598958685994148, 0.012488111853599548, -0.03641478717327118, 0.00977297406643629, -0.022223059087991714, -0.001668440643697977, 0.02984369732439518, -0.017309952527284622, 0.01592576503753662, 0.014746923930943012, 0.011179978959262371, 0.017081789672374725, -0.022025318816304207, 0.015880132094025612, 0.03425484523177147, 0.010077191516757011, -0.0063923620618879795, -0.03398105129599571, 0.020093539729714394, -0.022861914709210396, -0.002268318785354495, 0.004460583440959454, -0.008578922599554062, 0.008548500947654247, -0.017203476279973984, -0.01087576150894165, 0.01130927074700594, -0.015743235126137733, 0.019120045006275177, -0.017066579312086105, -0.031821109354496, 0.01486861053854227, -0.0003888274950440973, 0.008571316488087177, 0.008639765903353691, -0.006137580145150423, 0.022299112752079964, -0.005418867338448763, -0.0181769710034132, -0.007126285694539547, -0.016442934051156044, -0.004084114450961351, 0.012541349977254868, -0.002268318785354495, 0.006818265654146671, 0.01972847990691662, 0.017675014212727547, 0.0061870152130723, -0.015743235126137733, -0.00988705549389124, 0.005704070907086134, -0.01492184866219759, 0.016884049400687218, -0.015028324909508228, -0.007289802189916372, 0.019789323210716248, 0.015682391822338104, 0.02190363220870495, 0.04213406890630722, 0.004213406704366207, -0.04386810585856438, 0.011058291420340538, -0.044050637632608414, -0.010761680081486702, -0.01598660834133625, -0.015743235126137733, 0.019926220178604126, 0.023074867203831673, -0.013385552912950516, 0.009042853489518166, 0.012579376809298992, -0.002483172109350562, 0.0059246281161904335, -0.016229981556534767, -0.01422975491732359, 0.018389923498034477, 0.022329535335302353, -0.007335434667766094, -0.00014200758596416563, 0.0423470214009285, 0.012495717033743858, -0.04024792090058327, -0.009803395718336105, -0.013522449880838394, 0.01902877911925316, -0.03863557055592537, -0.00453663757070899, 0.010807313024997711, 0.032368700951337814, -0.009179751388728619, 0.032399121671915054, -0.005567173007875681, -0.014952270314097404, -0.0036087753251194954, 0.017644591629505157, 0.017629381269216537, -0.014321019873023033, -0.02844429947435856, 0.018298659473657608, -0.025782398879528046, 0.03699279949069023, -0.03060424141585827, -0.02412441559135914, 0.006669959984719753, 0.016488566994667053, -0.006202226039022207, 0.04861389473080635, 0.019424261525273323, 0.0063923620618879795, -0.002589648123830557, 0.028109660372138023, 0.019834954291582108, -0.06382475048303604, 0.005057609174400568, -0.0008874583290889859, -0.0037779961712658405, -0.03139520436525345, 0.022725017741322517, 0.026375623419880867, -0.0015077759744599462, -0.005133663769811392, -0.018040074035525322, -0.01953073777258396, -0.003180969972163439, 0.020595498383045197, -0.03425484523177147, -0.008251888677477837, 0.013674559071660042, 0.04922232776880264, -0.030178336426615715, -0.030254390090703964, 0.02763812430202961, -0.030132703483104706, 0.0034167382400482893, 0.01741642877459526, -0.00038740146555937827, 0.013332314789295197, 0.0049853576347231865, 0.019272154197096825, 0.010472673922777176, -0.004270447418093681, -0.0063923620618879795, 0.001097082975320518, -0.015758445486426353, -0.0376620776951313, -0.016351670026779175, 0.019332997500896454, 0.02193405292928219, -0.016990525647997856, -0.0005223978077992797, -0.009316648356616497, 0.02194926328957081, -0.003751377109438181, 0.017781490460038185, 0.011537433601915836, -0.0058409683406353, 0.010807313024997711, 0.0010314860846847296, 0.013377946801483631, 0.044659070670604706, -0.00372856087051332, 0.000616039615124464, 0.0076662711799144745, 0.011499406769871712, 0.0005200211307965219, -0.01734037511050701, 0.019424261525273323, -0.020762817934155464, -0.007027415093034506, 0.012723879888653755, 0.003095409134402871, 0.001110392389819026, 0.036749426275491714, -0.003494693897664547, -0.004605086520314217, -0.016884049400687218, 0.009263411164283752, 0.0010581051465123892, 0.003158153733238578, 0.0436551533639431, 0.0012625009985640645, 0.007746127899736166, 0.024580741301178932, -0.009666498750448227, 0.015575915575027466, -0.023470349609851837, 0.04487202316522598, -0.013507239520549774, -0.007841195911169052, -0.012351213954389095, -0.0006626228569075465, -0.01460242085158825, 0.038787681609392166, 0.01304330863058567, 0.01559112686663866, -0.02470242790877819, 0.014267781749367714, -0.01449594460427761, -0.001235881936736405, 0.01200896967202425, -0.008974404074251652, -0.01273148600012064, -0.01732516475021839, 0.009917477145791054, -0.04648437350988388, 0.009240594692528248, -0.008373575285077095, 0.044081058353185654, 0.011575460433959961, 0.0006597708561457694, -0.003403428941965103, 0.0017406921833753586, -0.0008513325592502952, 0.028702883049845695, -0.018040074035525322, -0.01230558194220066, -0.0007210896001197398, 0.012085024267435074, 0.001472600968554616, 0.030695505440235138, -0.017827121540904045, 0.009202566929161549, 0.03188195079565048, 0.013393158093094826, -0.00939270295202732, 0.001626610872335732, -0.028824569657444954, 0.02607140503823757, 0.029433004558086395, -0.00081996014341712, -0.003076395485550165, -0.02044338919222355, -0.0010894774459302425, 0.002954708645120263, -0.003641098504886031, -0.04085635766386986, -0.019987063482403755, -0.03802713751792908, 0.0020933938212692738, 0.022359957918524742, -0.020778028294444084, 0.016260404139757156, 0.019987063482403755, 0.017218688502907753, 0.011856861412525177, -0.0007258430123329163, 0.04386810585856438, -0.01088336668908596, 0.00946115143597126, 0.017279531806707382, -0.002234094310551882]" -"Using IoT Sensors, TimescaleDB, and Grafana to Control the Temperature of the Nuclear Fusion Experiment at the Max Planck Institute","and probably no compression.“In the future, I want to motivate my research institute to install a proper multi-node TimescaleDB cluster. It could bring many much-needed modern features to the table, and distributed hypertables and the matching distributed computing of statistics could be incredibly useful”Storing all my measurement data in it would have been possible, but I would have had to write all of the statistical processing myself. Using Timescale was a major time-saver! I tried other tools, but none of them quite fit what I needed. I didn't want to spend too much time on an unfamiliar tool with sparse documentation.First, I tried the company’s standard database, ArchiveDB, but it didn’t offer much more functionality than simply saving a CSV file. I also tried another PostgreSQL extension,Citus. It didn’t lend itself nicely to my use case because the documentation was not as clear and easy, and it seemed much more tailored to a distributed setup from the start, making trying it out on my local machine a bit tricky. I believe I gaveInfluxDBa try, but writing in PostgreSQL felt more natural. Additionally, it was helpful to have the regular relational database from PostgreSQL and the rich set of aggregate functions.I might have used PostgreSQL without TimescaleDB,or perhaps InfluxDB had it not been for Timescale.The Grafana panels observing the sample measurements. A single event is plotted above for inspection using a scatter plot, while the accuracy of the individual measurements is plotted in a time-series belowOne of the things I am verifying right now is the measurements’ consistency. This means running thousands of known reference signals into the boards I am testing to see if they behave as expected. I could automate this using a query that JOINs a regular table containing the reference data with aTimescaleDB hypertablecontaining the measurements.With a bit of clever indexing, I was able to use the corr(x, y) function to check if things lined up. Thanks to the rich data types of PostgreSQL, I can cache metadata such as this correlation in a JSONB field. This speeds up later analysis of the data and allows me to store all sorts of extra values for individual events.The resulting data I then downsampled usingminto find the worst offenders.WITH missing_bursts AS ( SELECT burst_id FROM adc_burst_meta WHERE NOT metadata ? 'correlation' AND $__timeFilter(time)),",https://www.timescale.com/blog/using-iot-sensors-timescaledb-and-grafana-to-control-the-temperature-of-the-nuclear-fusion-experiment-in-the-max-planck-institute/,482,"[-0.03151430934667587, -0.012350201606750488, 0.05262524262070656, -0.009787382557988167, 0.043499477207660675, 0.03473874554038048, -0.00434234319254756, -0.007395671680569649, -0.038115277886390686, 0.020122312009334564, 0.025035014376044273, -0.017323743551969528, 0.02289045974612236, -0.03084508515894413, 0.04888368025422096, 0.043438639491796494, -0.008502170443534851, -0.015802782028913498, -0.045050859451293945, 0.04143097251653671, -0.008912830613553524, 0.009931874461472034, 0.03297442942857742, -0.016152603551745415, -0.011703792959451675, -0.06123388186097145, -0.010570677928626537, 0.05870908871293068, 0.051530152559280396, -0.04565924406051636, 0.003735859878361225, -0.0417960025370121, -0.0518343448638916, 0.0036807251162827015, -0.013817928731441498, 0.043529897928237915, 0.041522230952978134, 0.02234291471540928, -0.008266421966254711, 0.021141355857253075, 0.01172660756856203, 0.0014268513768911362, 0.0011987072648480535, 0.00694698840379715, -0.003458284540101886, -0.045507147908210754, -0.042526062577962875, -0.02637346088886261, -0.00249627698212862, 0.0667397603392601, -0.029749993234872818, 0.04070091247558594, -0.013224754482507706, -0.003578060306608677, 0.028518015518784523, -0.015270446427166462, -0.012449064292013645, 0.04176558181643486, -0.0063424063846468925, -0.0134072694927454, 0.005540099926292896, -0.05259482562541962, 0.054997943341732025, 0.029004722833633423, -0.015057511627674103, 0.02795526012778282, 0.0006026807241141796, 0.040609654039144516, -0.03665515407919884, 0.019726861268281937, 0.048549067229032516, 0.029765203595161438, 0.012373016215860844, -0.02342279627919197, 0.02086758241057396, -0.08438290655612946, -0.007810133509337902, 0.03546880558133125, -0.012989005073904991, 0.005152254831045866, 0.043560318648815155, -0.005635159555822611, -0.03127095475792885, 0.011353972367942333, 0.024244114756584167, -0.035651322454214096, -0.03729395940899849, -0.030616940930485725, 0.0004748249484691769, 0.004429798107594252, -0.018038595095276833, 0.042465224862098694, 0.030495263636112213, 0.03583383560180664, 0.028533224016427994, -0.008023068308830261, -0.01940746046602726, 0.004110396374017, -0.020091891288757324, -0.002655977848917246, 0.03230520710349083, -0.0012452866649255157, -0.011962356977164745, -0.056549321860075, 0.018297158181667328, 0.013027029111981392, 0.020183149725198746, 0.00471117626875639, 0.0039849174208939075, 0.036046769469976425, -0.03294401243329048, -0.017247695475816727, -0.06497544795274734, 0.011004151776432991, -0.020183149725198746, -0.006030609365552664, -0.03987959399819374, 0.005688393488526344, 0.019027220085263252, 0.01091289333999157, -0.03720270097255707, 0.004289109259843826, -0.033096108585596085, 0.037081025540828705, 0.048031941056251526, -0.03975791484117508, 0.03613802790641785, -0.0456896610558033, -0.03236604481935501, -0.026692861691117287, 0.04575050249695778, -0.013734276406466961, 0.0244570504873991, -0.011711398139595985, -0.010494629852473736, -0.015065116807818413, -0.04784942790865898, -0.01491302065551281, -0.009901454672217369, -0.020137520506978035, -0.033035267144441605, -0.014829367399215698, 0.05916537344455719, -0.00397351011633873, -0.027483761310577393, 0.037081025540828705, -0.03635096177458763, 0.05566716566681862, -0.007076269946992397, -0.013285592198371887, 0.012525112368166447, 0.013566969893872738, -0.022312495857477188, -0.03616844862699509, 0.04629804566502571, -0.004692164249718189, 0.02039608359336853, 0.0396970771253109, -0.02038087509572506, -0.05076967179775238, -0.008616242557764053, 0.01688266545534134, 0.0008099116384983063, 0.018692608922719955, -0.024092018604278564, 0.014251402579247952, -0.0638195127248764, -0.04064007103443146, -0.07026839256286621, -0.00823600310832262, -0.03972749784588814, -0.07020755112171173, -0.00793941505253315, 0.012403435073792934, 0.04173516482114792, 0.0056237527169287205, -0.03698976710438728, -0.06795652955770493, 0.03346113860607147, -0.02083716355264187, -0.055940937250852585, -0.010776007547974586, 0.002771951025351882, 0.051073864102363586, -0.016669729724526405, -0.009544028900563717, -0.04772774875164032, 0.027590228244662285, 0.014228587970137596, 0.03282233327627182, -0.020243987441062927, 0.05186476185917854, -0.0003049051156267524, 0.041035521775484085, 0.008874806575477123, -0.04532463103532791, 0.01986374892294407, 0.03522545099258423, -0.0254304651170969, 0.030981970950961113, 0.053507402539253235, -0.005026775412261486, 0.05785734951496124, 0.002228207653388381, 0.0027681486681103706, -0.00373966246843338, -0.0027909630443900824, -0.027772745117545128, -0.04711936414241791, -0.057036031037569046, -0.008091511204838753, -0.032153110951185226, 0.009962293319404125, 0.0009453722159378231, -0.03040400706231594, -0.023118603974580765, -0.05423746258020401, -0.023057766258716583, -0.02039608359336853, -0.031179696321487427, 0.007787319365888834, 0.04581134021282196, 0.008783549070358276, -0.01688266545534134, -0.020563390105962753, 0.020243987441062927, 0.03826737403869629, -0.04188726097345352, 0.009331094101071358, 0.0017167845508083701, 0.01899680122733116, -0.00966570619493723, -0.0029848855920135975, -0.04413828253746033, 0.003640800016000867, 0.020715486258268356, 0.01540733315050602, -0.028639690950512886, -0.006418454460799694, -0.030632151290774345, -0.03245730325579643, -0.013544156216084957, -0.005095218773931265, 0.0008132387301884592, -0.01590925082564354, 0.025141481310129166, -0.04146139323711395, -0.05034380406141281, 0.033521976321935654, 0.04824487492442131, -0.004509648773819208, -0.0010228460887447, 0.007620013784617186, -0.033126525580883026, -0.05338572338223457, -0.07574384659528732, -0.04371241480112076, 0.040944263339042664, -0.018251528963446617, 0.01849488355219364, 0.020061472430825233, -0.03534713014960289, -0.03549922630190849, 0.009680915623903275, -0.03133179247379303, 0.017262905836105347, 0.018646979704499245, -0.006505909841507673, -0.02784879133105278, -0.044077444821596146, 0.04733230173587799, 0.059469565749168396, 0.03203143551945686, -0.038084857165813446, -0.006338604260236025, -0.002851801458746195, 0.013087867759168148, 0.014624037779867649, 0.017567098140716553, 0.0035172218922525644, -0.0054944707080721855, -0.03419119864702225, 0.010532653890550137, 0.029111189767718315, 0.031544726341962814, 0.007623815909028053, 0.020000634714961052, 0.02687537670135498, 0.04225229099392891, -0.0268905870616436, 0.018129853531718254, -0.016760988160967827, 0.0417960025370121, -0.01741500198841095, 0.0014392092125490308, 0.010593491606414318, -0.013308406807482243, 0.005756836850196123, -0.04429037868976593, -0.018069013953208923, -0.020183149725198746, 0.0024468456394970417, 0.051956020295619965, -0.02828987129032612, -0.0005689344252459705, 0.023742198944091797, -0.021536804735660553, -0.008144744671881199, -0.0081827687099576, 0.03470832481980324, -0.01943787932395935, -0.01846446469426155, -0.011156247928738594, -0.03124053403735161, -0.03778066486120224, 0.001986755058169365, 0.07805570960044861, -0.04182642325758934, 0.006388035137206316, -0.06929497420787811, -0.020745905116200447, -0.11236858367919922, 0.025171902030706406, 0.005159859545528889, 0.0044069839641451836, -0.03479958325624466, 0.023742198944091797, -0.007380462251603603, 0.02987167052924633, 0.01990937627851963, 0.004791026469320059, 0.013475712388753891, 0.03577299788594246, 0.03975791484117508, -0.03443455323576927, -0.06114262342453003, -0.0052206977270543575, 0.015171583741903305, -0.020107101649045944, 0.025536932051181793, 0.0031902152113616467, -0.0032605596352368593, -0.05901327729225159, 0.013308406807482243, 0.02488291822373867, 0.029552267864346504, -0.0015361703699454665, 0.013087867759168148, -0.0011055483482778072, -0.025004595518112183, -0.05162141099572182, 0.015787573531270027, 0.027149150148034096, 0.003498209873214364, 0.039119113236665726, -0.00020164613670203835, -0.01345289871096611, -0.012137266807258129, -0.036107610911130905, -0.010251276195049286, -0.021263031288981438, 0.040001269429922104, 0.046997688710689545, -0.0037966982927173376, -0.0070116291753947735, 0.00536138704046607, -0.025278368964791298, 0.01169618871062994, -0.026069268584251404, -0.01271523255854845, 0.04362115636467934, -0.010441395454108715, -0.015605057589709759, -0.03443455323576927, -0.024958966299891472, 0.007969834841787815, 0.030160652473568916, 0.030708199366927147, 0.005338572431355715, 0.05508920177817345, 0.052047278732061386, 0.00434234319254756, 0.029461011290550232, -0.01393960602581501, 0.051682248711586, 0.04073132947087288, 0.024533098563551903, 0.04182642325758934, -0.05530213564634323, 0.0032529549207538366, 0.01601571775972843, -0.012296968139708042, -0.016304699704051018, -0.03172724321484566, -0.012692417949438095, 0.007213156670331955, 0.00823600310832262, 0.018738236278295517, 0.03641180321574211, 0.029749993234872818, 0.01584841124713421, 0.012243734672665596, -0.06509712338447571, -0.004791026469320059, 0.011072594672441483, 0.048609908670186996, 0.005422225221991539, 0.042465224862098694, 0.0019154599867761135, -0.02188662625849247, -0.05368991568684578, -0.014441522769629955, 0.03738521784543991, -0.05761399492621422, 0.05095218867063522, -0.03549922630190849, -0.059469565749168396, 0.09703730046749115, -0.00973414909094572, 0.03948414325714111, -0.03391742706298828, -0.0043765646405518055, -0.0002255299623357132, 0.0042244684882462025, -0.052929434925317764, 0.05271650105714798, 0.039970848709344864, -0.05709686875343323, -0.014114515855908394, -0.030221490189433098, -0.00596596859395504, -0.015681106597185135, 0.02547609433531761, -0.006775880232453346, -0.006813904270529747, 0.01190151832997799, 0.03343071788549423, -0.038541145622730255, 0.02783358283340931, 0.02546088397502899, -0.011772236786782742, 0.012570740655064583, -0.01840362511575222, 0.004144618287682533, -0.03683767095208168, -0.01899680122733116, 0.0021882823202759027, -0.02295129932463169, 0.029080770909786224, 0.008357679471373558, 0.035985931754112244, -0.02579549513757229, -0.05189518257975578, 0.00733483349904418, 0.002317564096301794, -0.032548561692237854, 0.023985551670193672, 0.010897683911025524, 0.051438894122838974, -0.028730949386954308, -0.010418581776320934, 0.027727115899324417, -0.05466333031654358, 0.003114167135208845, -0.023574892431497574, -0.007498336955904961, 0.05429830029606819, 0.028487596660852432, 0.020517760887742043, -0.010000317357480526, 0.0020380874630063772, 0.0006045819027349353, -0.016289489343762398, 0.026054058223962784, 0.0029373555444180965, 0.009878640063107014, 0.02185620740056038, 0.011582116596400738, -0.0016787605127319694, -0.06412370502948761, 0.03151430934667587, -0.03583383560180664, 0.005715010222047567, 0.06552299112081528, 0.012167686596512794, 0.03516461327672005, 0.03184891864657402, -0.004194049630314112, -0.0016749580390751362, 0.008905225433409214, -0.01746062934398651, -0.0006283469265326858, 0.04018378257751465, -0.020031053572893143, 0.011840679682791233, -0.01140720583498478, -0.07300611585378647, -0.013506132178008556, 0.03043442592024803, -0.01438828930258751, 0.05664058029651642, 0.0143806841224432, -0.00521689560264349, 0.07890744507312775, -0.012836908921599388, 0.020609019324183464, -0.025187110528349876, -0.004395576659590006, -0.02086758241057396, -0.041035521775484085, -0.0019791503436863422, 0.02041129395365715, 0.014509965665638447, 0.020700275897979736, -0.028152983635663986, 0.018525302410125732, 0.012593555264174938, 0.01942266896367073, 0.001074178609997034, -0.0030495263636112213, 0.0019344720058143139, -0.030723407864570618, -0.04678475484251976, -0.0063424063846468925, -0.014760924503207207, 0.01882949471473694, -0.039119113236665726, -0.04465540871024132, -0.015650685876607895, -0.036046769469976425, 0.004878481850028038, -0.025536932051181793, 0.024152858182787895, -0.005562914069741964, -0.036624737083911896, -0.0025362020824104548, -0.01647200621664524, -0.025749865919351578, -0.050526317209005356, 0.04532463103532791, 0.007745492737740278, 0.03486042097210884, -0.0034050510730594397, 0.012852118350565434, 0.020000634714961052, -0.010274089872837067, 0.01791691780090332, -0.006125669460743666, -0.0058975256979465485, 0.02832029014825821, 0.030616940930485725, -0.022981718182563782, 0.029689155519008636, -0.001607465441338718, 0.026206154376268387, 0.032153110951185226, 0.03221394866704941, 0.03248772397637367, 0.005635159555822611, 0.00622833427041769, 0.011924332939088345, -0.0010038341861218214, -0.004186444450169802, 0.003724452806636691, -0.002239614725112915, 0.03525587171316147, 0.017247695475816727, -0.01695871353149414, -0.01942266896367073, 0.0005423175753094256, 0.003319496987387538, -0.025734657421708107, 8.531639468856156e-05, 0.026662442833185196, -9.944172234099824e-06, 0.0064640832133591175, -0.04714978486299515, -0.01942266896367073, -0.004688361659646034, -0.00942235253751278, -0.01683703623712063, -0.0034392725210636854, -0.006201717536896467, 0.05268608033657074, -0.023574892431497574, 0.010449000634253025, 0.045537564903497696, 0.018084224313497543, 0.007007827050983906, -0.044594570994377136, -0.011764631606638432, 0.005053392145782709, -0.0030799456872045994, -0.008494566194713116, 0.02482208050787449, 0.03826737403869629, -0.001533318660221994, 0.004589499440044165, -0.024989385157823563, 0.03793276101350784, 0.04429037868976593, -0.0005104724550619721, 0.00235178554430604, -0.017703983932733536, -0.017536677420139313, 0.0458417572081089, -0.0005513482610695064, 0.02290567010641098, 0.032883170992136, -0.014890206046402454, 0.00872271042317152, 0.006273963488638401, -0.012373016215860844, -0.07586552202701569, -0.019574765115976334, -0.002376501215621829, -0.022981718182563782, 0.0018565227510407567, 0.02938496321439743, -0.031134067103266716, -0.021202193573117256, -0.016700150445103645, -0.032518140971660614, -0.0243810024112463, 0.0031578948255628347, 0.04523337259888649, 0.00037287303712219, -0.02187141589820385, -0.04675433412194252, 0.030038975179195404, 0.004190247040241957, 0.003456383477896452, 0.04766691103577614, 0.01245666854083538, -0.011680979281663895, 0.04118761792778969, 0.02784879133105278, 0.03124053403735161, 0.002212997991591692, -0.02091321162879467, 0.03178808093070984, 0.02935454435646534, -0.001981051405891776, -0.019057638943195343, 0.019635604694485664, -0.03267023712396622, -0.015460566617548466, 0.035103775560855865, -0.015118350274860859, -0.03397826477885246, -0.013741880655288696, -0.022069141268730164, 0.06369783729314804, 0.025521721690893173, 0.0004137488722335547, -0.00969612505286932, -0.010935707949101925, -0.03419119864702225, -0.0319097563624382, -0.019650813192129135, -0.040518395602703094, 0.010631515644490719, -0.01516397949308157, 0.004030546173453331, -0.03136221319437027, 0.027559809386730194, 0.026069268584251404, 0.0004211160121485591, 0.031073229387402534, 0.044594570994377136, 0.0009691371815279126, 0.039058271795511246, 0.022768782451748848, 0.023027347400784492, 0.03616844862699509, 0.008015463128685951, 0.00895845890045166, -0.017141228541731834, -0.0015418740222230554, 0.06588802486658096, -0.02147596701979637, 0.020061472430825233, -0.0293241236358881, 0.02336195856332779, -0.015696315094828606, 0.006973605137318373, -0.0030799456872045994, 0.015392123721539974, 0.012996610254049301, 0.024958966299891472, 0.016624102368950844, -0.014038467779755592, 0.01589404046535492, -0.0244570504873991, 0.010334928520023823, -0.023240281268954277, -0.010776007547974586, 0.02089800126850605, -0.022069141268730164, 0.002760543953627348, 0.019742071628570557, -0.00759719917550683, -0.06105136498808861, -0.027149150148034096, -0.029141608625650406, -0.024730822071433067, 0.026266993954777718, -0.005981178488582373, 0.0468151718378067, -0.013582180254161358, -0.006277765613049269, 0.02547609433531761, -0.02635825052857399, 0.037081025540828705, 0.002540004439651966, 0.008000253699719906, -0.005118032917380333, 0.035560064017772675, -0.01140720583498478, -0.0005869957967661321, -0.03793276101350784, -0.00698501244187355, -0.02130866050720215, -0.04383409023284912, 0.049005355685949326, -0.03492125868797302, 0.010372952558100224, 0.04283025488257408, 0.015536614693701267, -0.024578725919127464, 0.005410817917436361, 0.0034696918446570635, 0.028457175940275192, -0.0036312940064817667, 0.04064007103443146, 0.0011397700291126966, 0.006673215422779322, -0.0024107228964567184, -0.018190691247582436, 0.0063424063846468925, -0.017734402790665627, 0.010996546596288681, -0.03391742706298828, -0.0369289293885231, 0.01120948139578104, -0.03194017708301544, 0.011141037568449974, 0.025704236701130867, 0.03422161936759949, -0.015118350274860859, -0.030525682494044304, 0.01544535718858242, 0.016228651627898216, -0.005806267727166414, -0.008996482938528061, -0.030708199366927147, -0.010730378329753876, -0.002186381258070469, 0.0057758488692343235, 0.032578978687524796, -0.02038087509572506, 0.025004595518112183, -0.025612980127334595, 0.04170474410057068, -0.010334928520023823, 0.014114515855908394, -0.01641116663813591, -0.007870972156524658, -0.009293070062994957, -0.040609654039144516, 0.01092049852013588, -0.013361640274524689, 0.02187141589820385, -0.01043379120528698, 0.05721854418516159, 0.001191102433949709, 0.006513514555990696, -0.02080674283206463, 0.029035141691565514, 0.017110809683799744, 0.015042302198708057, -0.006574353203177452, -0.019103268161416054, -0.03203143551945686, -0.005635159555822611, 0.02232770435512066, -0.007384264841675758, -0.004441205412149429, -0.02733166515827179, -0.03823695331811905, -0.014654457569122314, -0.013239963911473751, 0.002408821601420641, 0.018190691247582436, -0.004243480507284403, 0.000984822167083621, -0.008213188499212265, -0.12058177590370178, -0.022799203172326088, 0.043955765664577484, -0.029658734798431396, -0.04444247484207153, 0.0010950918076559901, 0.015422542579472065, 0.0337044931948185, 0.013498526997864246, -0.020228778943419456, -0.00799264945089817, -0.03793276101350784, -0.029597897082567215, 0.015430147759616375, -0.01983332820236683, 0.03720270097255707, 0.027970468625426292, 0.03038879670202732, 0.03270065784454346, 0.01793212816119194, -0.012692417949438095, -0.008342470042407513, -0.04468582943081856, 0.049461644142866135, 0.01741500198841095, -0.00472258310765028, -0.020669857040047646, 0.043560318648815155, 0.005273931659758091, -0.004019138868898153, 0.022129978984594345, 0.0033023860305547714, 0.01641116663813591, -0.001449665753170848, 0.01986374892294407, 0.008639057166874409, -0.006692227441817522, 0.01120187621563673, 0.005448841955512762, -0.00304572400636971, -0.015589848160743713, -0.04879242181777954, 0.02442662976682186, -0.023209862411022186, 0.06856491416692734, 0.0032757692970335484, -0.0019059539772570133, 0.032122693955898285, -0.018190691247582436, -0.008350075222551823, 0.00998510792851448, 0.0009653348242864013, -0.022175608202815056, 0.0071371085941791534, 0.030206281691789627, 0.020152730867266655, -0.03492125868797302, -0.021643271669745445, -0.017658354714512825, 0.0052245003171265125, -0.027453342452645302, 0.01984853856265545, 0.02686016820371151, -0.05983459949493408, -0.019574765115976334, -0.013620204292237759, -0.008053487166762352, 0.019666023552417755, 0.0012310276506468654, -0.01072277408093214, 0.010061156004667282, 0.02880699746310711, 0.011361577548086643, -0.025734657421708107, 0.018069013953208923, 0.020685067400336266, 0.008563009090721607, -0.019012009724974632, -0.03449539095163345, 0.008517380803823471, 0.004905098583549261, 0.002796666696667671, -0.024715613573789597, 0.0002704458311200142, -0.01992458663880825, 0.005407015793025494, -0.004494439344853163, -0.016776198521256447, 0.008897620253264904, 0.017080388963222504, 0.03787192329764366, -0.012555531226098537, -0.0009577299933880568, -0.012760860845446587, 0.02191704511642456, -0.01695871353149414, 0.001359358662739396, 0.0002968250191770494, -0.00472258310765028, -0.0030229096300899982, 0.033552397042512894, -0.00657815532758832, 0.017658354714512825, -0.011064989492297173, -0.020487342029809952, -0.01747583970427513, 0.02628220245242119, -0.014646852388978004, 0.019072849303483963, 0.023042555898427963, -0.022799203172326088, -0.007810133509337902, 0.01837320625782013, 0.012304573319852352, 0.031134067103266716, 0.014167750254273415, -0.00018370355246588588, -0.018662188202142715, -0.012890142388641834, -0.014981463551521301, 0.0042586904019117355, -0.035042937844991684, -0.02194746397435665, 0.025035014376044273, -0.008167559280991554, 0.03619886562228203, 0.03826737403869629, -0.009475586004555225, 0.00470357108861208, 0.01070756372064352, -0.005981178488582373, 0.0607471726834774, -0.0018907444318756461, 0.06558383256196976, 0.002519091358408332, -0.029278496280312538, -0.01119427103549242, -0.012760860845446587, 0.01315631065517664, 0.029263285920023918, -0.0017434012843295932, 0.031179696321487427, 0.011566907167434692, 0.012852118350565434, -0.01682182587683201, -0.0027282233349978924, 0.0031864128541201353, -0.004578092135488987, -0.031575147062540054, 0.04508127644658089, -0.0007823441992513835, -0.035620901733636856, -0.02138470858335495, 0.042982351034879684, -0.004041953478008509, 0.06777401268482208, -0.046510979533195496, -0.010106784291565418, -0.013262778520584106, 0.004281504545360804, -0.0016065147938206792, 0.05624512955546379, 0.015278051607310772, -0.024183277040719986, 0.02384866587817669, -0.010540258139371872, -0.0369289293885231, -0.02482208050787449, -0.01046421006321907, 0.020730696618556976, 0.007262588012963533, -0.02036566473543644, 0.0077074686996638775, 0.027118731290102005, 0.02634304016828537, 0.015171583741903305, 0.013711461797356606, 0.014076491817831993, 0.013057448901236057, -0.00462372088804841, -0.040609654039144516, -0.014403498731553555, 0.028533224016427994, 0.0456896610558033, 0.010631515644490719, -0.008547799661755562, -0.01936183124780655, 0.008753129281103611, 0.00586710637435317, 0.01221331488341093, 0.026495136320590973, 0.011262714862823486, 0.004794829059392214, 0.01843404397368431, -0.014403498731553555, 0.03136221319437027, 0.027711905539035797, 0.018799075856804848, -0.03516461327672005, 0.022647107020020485, -0.014297031797468662, -0.005095218773931265, 0.019589975476264954, -0.02546088397502899, 0.017780032008886337, 0.04289109632372856, -0.00944516621530056, 0.012373016215860844, -0.02991729974746704, 0.020076682791113853, -0.0032320416066795588, 0.021278241649270058, 0.0009192306897602975, -0.0077416906133294106, -0.034008681774139404, 0.012821699492633343, 0.013802719302475452, 0.020548179745674133, -0.027620648965239525, -0.013080262579023838, -0.015376913361251354, -0.02740771323442459, -0.01392439566552639, 0.03346113860607147, -0.03449539095163345, 0.04508127644658089, -0.004981146659702063, -0.022601477801799774, -0.01942266896367073, 0.0036084793973714113, 0.004456415306776762, 0.033096108585596085, 0.015665896236896515, 0.0023803035728633404, 0.017049970105290413, 0.020563390105962753, 0.009597262367606163, 0.004908901173621416, -0.006137076765298843, -0.013604993931949139, 0.024639565497636795, -0.008045882917940617, 0.010844450443983078, -0.002619854873046279, -0.02038087509572506, -0.007699863985180855, 0.04565924406051636, 0.03285275399684906, 0.046115532517433167, -0.004171235021203756, 0.011422415263950825, 0.01598529890179634, 0.03203143551945686, 0.010372952558100224, 0.012608764693140984, 0.021247822791337967, 0.005707405507564545, 0.019696442410349846, 0.0034601858351379633, -0.007528755813837051, -0.024943757802248, 0.028198612853884697, 0.01835799776017666, 0.003935486078262329, -0.0036236890591681004, -0.009711334481835365, -0.03239646553993225, -0.014570804312825203, 0.006057226564735174, 0.006361418403685093, -0.012388225644826889, 0.0129585862159729, 0.02190183475613594, -0.025765076279640198, -0.017719192430377007, 0.018114643171429634, -0.03866282477974892, -0.024031180888414383, -0.004353750497102737, -0.01694350317120552, -0.021704111248254776, 0.015635477378964424, -0.026601605117321014, -0.027605438604950905, 0.029734782874584198, -0.02095883898437023, 0.0030951551161706448, -0.026662442833185196, 0.017612725496292114, -0.032092273235321045, -0.018236320465803146, -0.0013935803435742855, -0.007969834841787815, -0.00572261493653059, -0.04313444718718529, -0.006540131289511919, -0.02234291471540928, 0.024168066680431366, 0.01840362511575222, -0.01881428435444832, -0.013133496977388859, -0.023696569725871086, 0.0163655374199152, 0.01942266896367073, 0.002777654677629471, 0.022601477801799774, -0.025689028203487396, -0.031544726341962814, -0.009042112156748772, 0.02133907936513424, 0.0056465668603777885, 0.0015741944080218673, 0.005254919640719891, 0.03525587171316147, -0.014190563932061195, -0.003935486078262329, 0.020487342029809952, 0.014479546807706356, 0.012479483149945736, 0.020259197801351547, -0.0032016225159168243, 0.03031274862587452, 0.01638074778020382, 0.031103648245334625, 0.0013450997648760676, -0.006133274640887976, 0.02033524587750435, -0.004266295116394758, 0.0035419375635683537, 0.011871099472045898, -0.03516461327672005, 0.009536424651741982, 0.01091289333999157, 0.014319845475256443, -0.022723155096173286, 0.034099940210580826, 0.03519503399729729, 0.008266421966254711, 0.00341455708257854, -0.005760638974606991, 0.017126018181443214, 0.015095535665750504, -0.0011968060862272978, -0.0007504990790039301, -0.0060686334036290646, -0.010372952558100224, 0.022464590147137642, 0.027179569005966187, -0.015110745094716549, 0.025141481310129166, 0.07172851264476776, 0.013498526997864246, 0.00499255396425724, 0.013757090084254742, 0.008076301775872707, -0.0031122660730034113, 0.001111252000555396, -0.002081815153360367, 0.010730378329753876, 0.01316391583532095, -0.00016671155754011124, 0.002671187510713935, -0.01791691780090332, 0.013346430845558643, 0.000990525702945888, -0.005806267727166414, -0.025719447061419487, 0.0317576602101326, 0.023133814334869385, -0.01295098103582859, 0.029111189767718315, 0.02144554816186428, -0.007410881575196981, -0.006806299556046724, -0.013954815454781055, -0.016745777800679207, 0.007034443784505129, -0.01022846158593893, -0.0259171724319458, 0.017719192430377007, -0.00011520089901750907, -0.006137076765298843, 0.006270160898566246, 0.042100194841623306, -0.021126145496964455, 0.009255046024918556, -0.04021420329809189, 0.023255489766597748, -0.011293133720755577, -0.01172660756856203, -0.01747583970427513, -0.027270827442407608, -0.008821572177112103, 0.014068887569010258, -0.012373016215860844, 0.02780316397547722, 0.0007020184420980513, -0.006707437336444855, -0.0039811148308217525, -0.019498717039823532, -0.01683703623712063, -0.005817675031721592, 0.00941474735736847, -0.027483761310577393, 0.00684812618419528, 0.003829018911346793, 0.044929180294275284, -0.000329383066855371, 0.015072721987962723, 0.039544980973005295, -0.016213441267609596, -0.01042618602514267, -0.0068671382032334805, -0.032518140971660614, -0.03781108558177948, -0.039575401693582535, 0.024472258985042572, -0.008327260613441467, 0.004239678382873535, -0.03866282477974892, -0.012198105454444885, 0.025156691670417786, 0.010783611796796322, 0.034099940210580826, 0.0022434170823544264, 0.01846446469426155, 0.03394784405827522, 0.01785608008503914, 0.029217656701803207, -0.01173421274870634, -0.008388099260628223, 0.023027347400784492, -0.03148388862609863, 0.030647359788417816, -0.03592509403824806, -0.0036560094449669123, 0.014228587970137596, 0.005038182716816664, 0.0008522133575752378, 0.025202320888638496, 0.027970468625426292, -0.015757154673337936, -0.009110555052757263, 0.0033632246777415276, 0.0037757852114737034, -0.010167622938752174, -0.026084477081894875, 0.0020837162155658007, 0.02141512744128704, -0.04076175019145012, 0.015338889323174953, 0.028076935559511185, -0.011361577548086643, 0.012007985264062881, 0.02182578667998314, -0.0010789316147565842, 0.004038150887936354, -0.010646726004779339, -0.013551760464906693, 0.011680979281663895, -0.0294001717120409, 0.02692100591957569, -0.0004886086680926383, 0.019224943593144417, 0.014738109894096851, 0.03233562782406807, -0.010167622938752174, -0.0015675402246415615, -0.017293324694037437, -0.009597262367606163, 0.02547609433531761, 0.0075895944610238075, -0.03768941015005112, 0.0052245003171265125, 0.022996926680207253, 0.005262524355202913, 0.031058019027113914, -0.021126145496964455, -0.01689787395298481, 0.005483063869178295, 0.003473494201898575, -0.004243480507284403, 0.04337780177593231, -0.003619886701926589, 0.020198360085487366, -0.0020361861679702997, 0.01095852255821228, -0.007456510327756405, 0.020730696618556976, 0.00594695657491684, -0.03917995095252991, 0.021521596238017082, -0.012449064292013645, -0.01601571775972843, 0.031118858605623245, -0.03084508515894413, 0.014228587970137596, 0.002133147558197379, 0.021643271669745445, 0.005483063869178295, -8.080104635155294e-06, -0.011331157758831978, 0.019985424354672432, 0.0158788301050663, -0.015422542579472065, -0.00994708389043808, 0.012722836807370186, -0.012068823911249638, -0.011878703720867634, -0.01885991357266903, 0.00970373023301363, 0.013468108139932156, -0.005962166469544172, -0.021734530106186867, 0.029141608625650406, -0.024487469345331192, -0.00823600310832262, -0.024015970528125763, -0.014897811226546764, -0.009080136194825172, -0.01190151832997799, -0.008410912938416004, 0.026114897802472115, -0.021491175517439842, 0.024943757802248, 0.0026882982347160578, -0.02538483589887619, -0.013871162198483944, -0.0013251370983198285, -0.000990525702945888, 0.0024012168869376183, -0.0348300039768219, -0.00035314809065312147, 0.027498971670866013, 0.008563009090721607, -0.021263031288981438, -0.00892804004251957, -0.004456415306776762, -0.0038974620401859283, -0.029567478224635124, 0.008639057166874409, -0.013300802558660507, 0.010274089872837067, 0.04322570562362671, 0.03778066486120224, 0.05368991568684578, 0.030981970950961113, 0.01881428435444832, -0.029004722833633423, 0.014616433531045914, -0.024761240929365158, -0.006536329165101051, -0.013604993931949139, 0.006053423974663019, 0.01987895742058754, 0.02238854207098484, -0.018023384734988213, 0.019057638943195343, 0.005882315803319216, -0.006905162241309881, 0.025643398985266685, -0.016593681648373604, -0.025521721690893173, 0.013749485835433006, -0.002703507896512747, -0.004353750497102737, -0.009840616025030613, 0.044047024101018906, -0.00047838970203883946, -0.044047024101018906, 0.0023004531394690275, -0.00822839792817831, 0.009384328499436378, -0.0497354194521904, -0.0010133400792255998, 0.004391774535179138, 0.05314236879348755, -0.001127412193454802, 0.010365348309278488, 0.011490859091281891, -0.03324820473790169, 0.0031236731447279453, 0.005015368107706308, 0.01788649894297123, -0.005718812812119722, -0.00994708389043808, 0.017567098140716553, -0.021217403933405876, 0.03133179247379303, -0.030981970950961113, -0.02544567361474037, 0.010745587758719921, 0.027164360508322716, -0.00948319025337696, 0.05426787957549095, 0.01983332820236683, 0.005022972822189331, -0.001906904624775052, 0.01688266545534134, 0.0138939768075943, -0.03680725023150444, 0.02590196207165718, -0.006251148879528046, 0.005665578879415989, -0.026130106300115585, 0.010639120824635029, 0.007540163118392229, -0.01884470507502556, -0.003977312706410885, 0.007391869556158781, -0.017551887780427933, 0.011597326025366783, 0.009604867547750473, -0.02541525475680828, 0.003905066754668951, 0.011475649662315845, 0.03324820473790169, -0.020061472430825233, -0.04076175019145012, 0.009566843509674072, -0.010099180042743683, 0.024502677842974663, 0.011878703720867634, -0.011719003319740295, 0.022631896659731865, 0.01589404046535492, 0.00998510792851448, 0.00597357377409935, 0.016106974333524704, -0.029947718605399132, -0.007239773403853178, -0.01987895742058754, -0.019133687019348145, -0.016091765835881233, 0.014449127949774265, 0.0046807569451630116, -0.01885991357266903, -0.0051066260784864426, -0.010023131966590881, 0.033126525580883026, 0.011802655644714832, 0.012639184482395649, -0.004445008002221584, 0.008844386786222458, 0.004863271955400705, -0.020243987441062927, 0.0014297032030299306, 0.02933933399617672, 0.005053392145782709, -0.002713013906031847, -0.017308533191680908, 0.026054058223962784, -0.011087804101407528, -0.018175480887293816, 0.010867265053093433, -0.005931747145950794, -0.010129598900675774, 0.008395703509449959, -0.01598529890179634, -0.0015143066411837935, 0.027559809386730194, 0.0014468139270320535, 0.012829304672777653, -0.004194049630314112, 0.013087867759168148, -6.624497473239899e-05, 0.008813967928290367, 0.045567985624074936, 0.019133687019348145, 0.013110682368278503, 0.024107228964567184, -0.0036560094449669123, 0.01940746046602726, -0.016639310866594315, 0.03394784405827522, 0.010639120824635029, 0.012015590444207191, 0.0060724359937012196, 0.0006354764336720109, -0.00024228429538197815, 0.018570931628346443, 0.019164105877280235, 0.0063157896511256695, -0.020487342029809952, 0.008973668329417706, 0.0007885231170803308, 0.029962927103042603, 0.025080643594264984, 0.005943154450505972, -0.014395893551409245, -0.012258944101631641, 0.006794892251491547, -0.033521976321935654, 0.011346367187798023, -0.01315631065517664, 0.03635096177458763, 0.008585823699831963, -0.026540765538811684, -0.017004340887069702, 0.009749358519911766, -0.020015843212604523, 0.01418295968323946, -0.009353908710181713, -0.019088057801127434, -0.012395830824971199, 0.01943787932395935, 0.02181057818233967, 0.015460566617548466, -0.02686016820371151, 0.034617066383361816, 0.03087550401687622, 0.024122437462210655, -0.01635032892227173, 0.001954434672370553, -0.024578725919127464, 0.021506385877728462, 0.032122693955898285, 0.005258721765130758, -0.02383345551788807, -0.00799264945089817, 0.008654266595840454, 0.006886150222271681, 0.006981209851801395, -0.012753256596624851, -0.014053678140044212, -0.03492125868797302, -0.007049653213471174, 0.01518679317086935, -0.01645679585635662, 0.007581989746540785, 0.017202066257596016, 0.02042650431394577, 0.01092049852013588, 0.003072340739890933, 0.04784942790865898, 0.011772236786782742, -0.005319560412317514, 0.01519439835101366, -0.0019240154651924968]" -"Using IoT Sensors, TimescaleDB, and Grafana to Control the Temperature of the Nuclear Fusion Experiment at the Max Planck Institute","raw_correlations AS ( SELECT burst_id, corr(value, reference_value) AS ""correlation"" FROM adc_burst_data INNER JOIN missing_bursts USING(burst_id) INNER JOIN adc_burst_reference USING(burst_offset) GROUP BY burst_id ) update_statement AS ( UPDATE adc_burst_meta SET metadata = jsonb_set(metadata, '{correlation}', correlation::text::jsonb) FROM raw_correlations WHERE adc_burst_meta.burst_id = raw_correlations.burst_id ) SELECT $__timeGroup(time, $__interval) AS “time”, min((metadata->>’correlation’)::numeric) FROM adc_burst_meta WHERE $__timeFilter(time) GROUP BY “time”That made even small outliers very easy to spot across hundreds of thousands of samples and made analyzing and tagging data a breeze! This insight is incredibly useful when you want to ensure your system works as intended. I could easily find the worst measurements in my sample set, which allowed me to quickly see if, how, and in what way my system was having issues.Current Deployment and Future Plans​Right now, I deploy TimescaleDB on a small, local computer.Running the Docker image has been very useful in getting a fast and easy setup, too!In the future, I want to motivate my research institute to install a proper multi-node TimescaleDB cluster. It could bring many much-needed modern features to the table, and distributed hypertables and the matching distributed computing of statistics could be incredibly useful! My queries could work orders of magnitude faster than my local machine with little extra effort.For the most part, I interact with TimescaleDB through a simple Ruby script, which acts as an adapter between the hardware itself and the database. I also used Jupyter notebooks and theJupyter IRuby Kernelto do more in-depth data analysis.✨Editor's Note:Check out this videoto learn how to wrap TimescaleDB functions for the Ruby ecosystem.“Grafana and Timescale really go hand in hand, and both of them are excellent open-source tools with rich documentation”I do use Grafana extensively! Grafana and Timescale really go hand in hand, and both of them are excellent open-source tools with rich documentation. Both have Docker images and can be set up quickly and easily. It is great to plot the measurements with just a few SQL queries.​Without Grafana, I would have had to write a lot of the plots myself, and correlating different time-series events with each other would have been much harder. Either I would have had to spend more time implementing that myself, or I wouldn't have gotten this level of information from my measurements.​The main benefit of using TimescaleDB is that you get a well-balanced mixture. Being",https://www.timescale.com/blog/using-iot-sensors-timescaledb-and-grafana-to-control-the-temperature-of-the-nuclear-fusion-experiment-in-the-max-planck-institute/,556,"[-0.02273716777563095, -0.014425553381443024, 0.04784690961241722, 0.013558652251958847, 0.048364005982875824, 0.01933039352297783, 0.0038136085495352745, -0.01648634672164917, -0.04270632937550545, 0.019969163462519646, 0.015254434198141098, -0.030752208083868027, 0.014729729853570461, -0.03637946769595146, 0.06850046664476395, 0.028501305729150772, -0.02728459984064102, 0.009155701845884323, -0.02889673411846161, 0.02799941413104534, -0.006699479650706053, 0.007041677832603455, 0.025155367329716682, -0.006760315038263798, -0.00016480169142596424, -0.0420067273080349, -0.020851274952292442, 0.06183901056647301, 0.04383178427815437, -0.03254684805870056, -0.009513108991086483, -0.042189233005046844, -0.042402155697345734, -0.014014916494488716, -0.012532057240605354, 0.03418939933180809, 0.03373313322663307, -0.020471055060625076, 0.005026510916650295, -0.012668936513364315, 0.0021045187022536993, 0.014653685502707958, 0.0091024711728096, 0.010904714465141296, -0.0139844985678792, -0.03583195060491562, -0.04066834971308708, -0.02507932297885418, 0.02726939134299755, 0.05216620862483978, -0.05478212609887123, 0.035923201590776443, -0.03686615079641342, -0.01074502244591713, -0.0010341989109292626, -0.012737376615405083, -0.015132763423025608, 0.04395345225930214, -0.0005936187808401883, -0.03567986190319061, 0.020121252164244652, -0.04203714430332184, 0.04562642052769661, 0.041215866804122925, -0.02585497312247753, 0.0026463326066732407, -0.017550963908433914, 0.013634695671498775, -0.03224267065525055, 0.015292455442249775, 0.056272588670253754, 0.01981707662343979, 0.005786951165646315, -0.018280986696481705, 0.00942185614258051, -0.06892631202936172, -0.0051862034015357494, 0.050523657351732254, -0.020486263558268547, -0.00922414194792509, 0.015695489943027496, -0.009414251893758774, -0.05618133395910263, 0.02486640028655529, 0.014303883537650108, -0.055572982877492905, -0.0362577959895134, -0.03081304393708706, 0.02392345480620861, -0.011900891549885273, -0.0279689971357584, 0.037657007575035095, 0.010189901106059551, 0.04848567768931389, 0.012980717234313488, 0.008524536155164242, 0.003901059040799737, 0.01911747083067894, -0.025048905983567238, 0.0212619137018919, 0.022265693172812462, 0.006075918674468994, -0.033307287842035294, -0.059131842106580734, 0.048668183386325836, -0.002921992214396596, 0.033581048250198364, 0.0024524203035980463, 0.00885152630507946, 0.03221225365996361, -0.08285758644342422, -0.028273172676563263, -0.08158004283905029, -0.018052853643894196, -0.024668686091899872, -0.012767793610692024, -0.012045375071465969, 0.003364948555827141, 0.021946309134364128, -0.025672467425465584, -0.027406271547079086, 0.0062166000716388226, -0.030463241040706635, 0.026706665754318237, 0.016927402466535568, -0.04045542702078819, 0.01492744404822588, -0.04492681846022606, -0.053200408816337585, 0.005475170444697142, 0.020912110805511475, -0.01447878498584032, 0.016303841024637222, -0.01745971105992794, -0.017763886600732803, -0.023269474506378174, -0.019071845337748528, -0.019193515181541443, -0.005334489047527313, 0.00811389833688736, 0.009596757590770721, -0.022782793268561363, 0.030721791088581085, -0.017581380903720856, -0.025976642966270447, 0.03388522192835808, -0.035923201590776443, 0.03339854255318642, -0.025489961728453636, 0.004794576670974493, 0.004456180613487959, 0.027664821594953537, -0.04082043841481209, -0.02129233069717884, 0.05043240636587143, -0.01220506802201271, 0.010539704002439976, 0.035466939210891724, -0.008623394183814526, -0.022858837619423866, 0.008813504129648209, 0.04401428997516632, -0.02129233069717884, -0.001200545229949057, -0.006596820428967476, -0.005011301953345537, -0.06460701674222946, -0.001785133732482791, -0.10147316008806229, 0.013216453604400158, -0.03768742457032204, -0.054660454392433167, -0.009034032002091408, 0.006364885717630386, 0.04015125334262848, -0.015254434198141098, -0.006197588983923197, -0.07330644875764847, 0.04541349783539772, 0.0072051724418997765, -0.05755012854933739, 0.011976935900747776, -0.0325772650539875, 0.02816671133041382, -0.02342156320810318, 0.006391501519829035, -0.04678229242563248, 0.02436450868844986, -0.010357198305428028, 0.022858837619423866, -0.02034938521683216, 0.09076616168022156, 0.00242010154761374, 0.05183161422610283, 0.02915528416633606, -0.042919255793094635, 0.02130753919482231, 0.03856953606009483, -0.02821233868598938, 0.03254684805870056, 0.07069053500890732, 0.028029832988977432, 0.049337372183799744, -0.037869930267333984, -0.023299893364310265, 0.012638518586754799, -0.01038761530071497, -0.04894194379448891, -0.057033028453588486, -0.049154866486787796, 0.000936767493840307, -0.021702967584133148, 0.015908412635326385, 0.013201245106756687, -0.012334343045949936, -0.017125116661190987, -0.05386959761381149, -0.025261828675866127, -0.016334259882569313, -0.0325772650539875, -0.008220360614359379, 0.06509369611740112, 0.029489876702427864, -0.029550712555646896, -0.03175599128007889, 0.015505379065871239, 0.05502546578645706, -0.04976321756839752, 0.04030333831906319, -0.01721636950969696, 0.03418939933180809, -0.022052770480513573, 0.00723939249292016, -0.04042501002550125, 0.003836421761661768, 0.005399126559495926, 0.012874255888164043, -0.03055449388921261, 0.003777487436309457, -0.04206756129860878, -0.027543149888515472, -0.014585246331989765, 0.002555079758167267, 0.02051668055355549, 0.004680510610342026, 0.016547182574868202, -0.04693438112735748, -0.05064532905817032, 0.033824387937784195, 0.04273675009608269, 0.0018545238999649882, 0.020942527800798416, -0.00020175433019176126, -0.036501139402389526, -0.031451813876628876, -0.06025729328393936, -0.049793634563684464, 0.031421396881341934, -0.004094971343874931, 0.015512983314692974, -0.006243215408176184, -0.03291185945272446, -0.04139837250113487, 0.024105960503220558, -0.03327687084674835, 0.02364969626069069, 0.017368458211421967, -0.01937602087855339, -0.004452378489077091, -0.034980256110429764, 0.04413595795631409, 0.044531386345624924, 0.010790648870170116, -0.05551214888691902, -0.010973154567182064, -0.001129254000261426, 0.0076462277211248875, 0.025946225970983505, -0.004262268077582121, -0.011741199530661106, -0.00012333392805885524, -0.018357031047344208, 0.032151419669389725, 0.0005432395846582949, 0.01624300703406334, 0.0109807588160038, -0.016106126829981804, 0.04690396040678024, 0.03613612800836563, -0.032181836664676666, 0.004809785168617964, 0.027375852689146996, 0.05143618583679199, -0.017140325158834457, -0.001461946638301015, -0.00813671201467514, 0.007832535542547703, 0.004300290253013372, -0.04161129891872406, -0.02269154042005539, -0.003068376798182726, 0.0077222720719873905, 0.04690396040678024, -0.0169882383197546, 0.012995925731956959, 0.004205235280096531, -0.0021387385204434395, -0.0334593765437603, -0.00920132827013731, 0.015147971920669079, -0.01860037073493004, -0.02704126015305519, 0.0033573443070054054, -0.015680279582738876, -0.0339764766395092, -0.02416679449379444, 0.06509369611740112, -0.025018488988280296, -0.0038060040678828955, -0.0545387826859951, -0.021824639290571213, -0.1115109771490097, 0.008197546936571598, 0.010927528142929077, -0.002492343308404088, -0.046751875430345535, 0.04033375903964043, -0.0027185743674635887, 0.008167129941284657, 0.002089309971779585, 0.008486514911055565, -0.006615831051021814, 0.020227713510394096, 0.051253680139780045, -0.023482399061322212, -0.06332947313785553, 0.04115503281354904, 0.002726178616285324, -0.017763886600732803, 0.03482816740870476, -0.012296320870518684, -0.03850870206952095, -0.06843963265419006, -0.009125284850597382, 0.03379397094249725, 0.005478973034769297, -0.001982848159968853, 0.0032508824951946735, -0.023010926321148872, -0.005615852307528257, -0.016562391072511673, 0.005505588371306658, 0.010904714465141296, 0.00872985552996397, 0.014851400628685951, 0.017368458211421967, -0.007334447465837002, -0.03984707593917847, -0.019421646371483803, -0.009239350445568562, -0.0392083041369915, 0.03771784156560898, 0.029474668204784393, 0.005596841219812632, 0.007817327044904232, 0.022600287571549416, -0.047481898218393326, 0.027315018698573112, -0.027847327291965485, -0.018296195194125175, 0.030219899490475655, -0.004760356619954109, -0.02917049266397953, -0.0353756844997406, -0.061595670878887177, 0.0022661122493445873, 0.030006976798176765, 0.021094616502523422, -0.0019942547660320997, 0.06393782794475555, 0.03777867928147316, 0.027877744287252426, 0.019071845337748528, 0.004821192007511854, 0.059192679822444916, 0.017642216756939888, 0.0038592349737882614, 0.03440232202410698, -0.055603399872779846, 0.016121335327625275, 0.01790076680481434, 0.0029276954010128975, -0.020927319303154945, -0.03421981632709503, 0.0011672759428620338, 0.012265902943909168, 0.01291227713227272, 0.03604487329721451, 0.06253861635923386, 0.014904631301760674, 0.02751273289322853, 0.004954269155859947, -0.0773824155330658, 0.005395324435085058, 0.018706833943724632, 0.06430283933877945, 0.029778845608234406, 0.03850870206952095, -0.016638435423374176, -0.01891975663602352, -0.04273675009608269, -0.014303883537650108, 0.03820452466607094, -0.048424843698740005, 0.045322246849536896, -0.042189233005046844, -0.050341151654720306, 0.08194505423307419, 0.0046995216980576515, 0.03689656779170036, -0.04535266384482384, 0.002921992214396596, -0.0033573443070054054, 0.00036881357664242387, -0.026356862857937813, 0.06880464404821396, 0.028303591534495354, -0.04319301247596741, -0.02009083516895771, -0.0564550943672657, -0.0008108195615932345, 0.0014771553687751293, 0.034797750413417816, -0.03058491088449955, -0.01540652196854353, 0.011764012277126312, 0.04462264105677605, -0.03172557055950165, 0.03055449388921261, 0.03634905070066452, -0.0033060144633054733, -0.003870641579851508, -0.020121252164244652, 0.031421396881341934, -0.05432585999369621, -0.0012300122762098908, -0.01278300303965807, -0.02842526137828827, 0.01653197407722473, 0.007760293781757355, 0.05523838847875595, -0.04751231521368027, -0.034858588129282, 0.028607767075300217, -0.014197422191500664, -0.020273340865969658, 0.031695153564214706, -0.012706958688795567, 0.023056551814079285, -0.013049156405031681, -0.014805774204432964, 0.035710278898477554, -0.08176255226135254, -0.0021102221217006445, -0.01457764208316803, -0.020227713510394096, 0.0411246158182621, 0.008243173360824585, 0.02153567038476467, -0.018569953739643097, 0.036014456301927567, 0.026661040261387825, -0.025155367329716682, 0.007520755287259817, -0.006243215408176184, -0.014706917107105255, 0.01604529097676277, -0.009361021220684052, -0.006482754368335009, -0.04666062071919441, 0.03104117512702942, -0.02275237627327442, 0.012022562325000763, 0.05478212609887123, 0.006296446081250906, 0.024562224745750427, 0.008243173360824585, 0.0001859514304669574, 0.004094971343874931, -0.002243299037218094, -0.02290446311235428, -0.014022520743310452, 0.040485844016075134, -0.019771449267864227, 0.009847702458500862, 0.008859130553901196, -0.07464482635259628, -0.003826916217803955, 0.007132930681109428, -0.01372594852000475, 0.05864516273140907, 0.014919839799404144, 0.01621258817613125, 0.0822492316365242, -0.022113606333732605, 0.01624300703406334, 0.0002516582317184657, -0.005574028007686138, -0.008395262062549591, 0.009589153341948986, 0.008395262062549591, 0.004501807037740946, 0.03747450187802315, 0.025398708879947662, -0.024805564433336258, 0.0051253680139780045, -0.012357155792415142, 0.0035474542528390884, -0.015573819167912006, -0.0032052560709416866, -0.004665301647037268, -0.030493658035993576, -0.03184724226593971, -0.00958154909312725, -0.012509244494140148, 0.014068147167563438, -0.028729436919093132, -0.012037770822644234, -0.008805899880826473, -0.01016708742827177, 0.004878224804997444, -0.0315430648624897, -0.0017708755331113935, 0.01910226233303547, -0.05575548857450485, -0.003640608163550496, -0.020395010709762573, -0.039329975843429565, -0.0444401353597641, 0.041276704519987106, 0.0074713267385959625, 0.03224267065525055, 0.0018345623975619674, 0.013208849355578423, 0.015041510574519634, -0.01169557310640812, -0.0039466856978833675, -0.01038761530071497, 0.014874213375151157, 0.017627008259296417, 0.05091908574104309, -0.040516264736652374, 0.036683645099401474, -0.003691938007250428, 0.00930018536746502, 0.044105540961027145, 0.021839847788214684, 0.014912235550582409, 0.017627008259296417, -0.00580596225336194, 0.009216537699103355, -0.0022185847628861666, 0.00825077760964632, -0.012045375071465969, -0.004186224192380905, 0.04641728103160858, 0.011824848130345345, -0.030006976798176765, -0.04571767523884773, -0.0035436521284282207, 0.0013916058233007789, -0.028090666979551315, 0.01469170767813921, 0.022341737523674965, 0.011999748647212982, -0.008334426209330559, -0.027786491438746452, -0.0048896316438913345, -0.00790097564458847, -0.01723157800734043, -0.026387281715869904, -0.009665196761488914, -0.012151837348937988, 0.037900347262620926, -0.04161129891872406, -0.008478909730911255, 0.031664736568927765, 0.018706833943724632, 0.011208890937268734, -0.027862535789608955, 0.003235673764720559, 0.016851358115673065, 0.015512983314692974, 0.019543318077921867, 0.020988155156373978, 0.04580892622470856, 0.006064511835575104, 0.007189963478595018, -0.02748231589794159, 0.01890454813838005, 0.03610570728778839, -0.01604529097676277, -0.01723157800734043, -0.017839930951595306, -0.01410616934299469, 0.0367748960852623, 0.00572611577808857, 0.0131556186825037, 0.013687926344573498, -0.017520546913146973, 0.0014191718073561788, -0.012684145011007786, -0.014722125604748726, -0.07245475798845291, -0.022174440324306488, 0.005866797640919685, -0.005615852307528257, 0.005003697704523802, 0.01744450256228447, -0.030843460932374, -0.03534526750445366, 0.0011910396860912442, -0.018326612189412117, -0.05380875989794731, 0.014258257113397121, 0.04404470697045326, 0.0030550691299140453, -0.025003278627991676, -0.029079239815473557, 0.011627133004367352, -0.008760273456573486, 0.013954080641269684, 0.021414000540971756, -0.0035436521284282207, 0.012767793610692024, 0.022828420624136925, 0.01866120658814907, 0.02460785023868084, 0.0007604403654113412, -0.009688010439276695, 0.03199933096766472, 0.015254434198141098, -0.03327687084674835, -0.012722167186439037, 0.019543318077921867, -0.043162595480680466, 0.0009258361533284187, 0.019893120974302292, -0.01694261096417904, -0.02514015883207321, -0.03315519914031029, -0.0435580238699913, 0.039755821228027344, 0.008007436990737915, 0.007478930987417698, -0.008083481341600418, -0.017079491168260574, -0.02363448590040207, -0.01147504523396492, -0.008212756365537643, -0.04450096935033798, 0.02889673411846161, -0.037444084882736206, 0.004034135956317186, -0.03607529029250145, 0.021855056285858154, 0.026341654360294342, -0.0036368060391396284, 0.033094365149736404, 0.04015125334262848, 0.00048810767475515604, -0.001201495761051774, 0.022128814831376076, 0.04039459303021431, 0.034311071038246155, 0.011178473010659218, 0.0060264901258051395, -0.008745064027607441, -0.0013935070019215345, 0.06916965544223785, -0.018098480999469757, 0.00681354571133852, -0.026934798806905746, 0.022813210263848305, 0.0021444419398903847, 0.004075960256159306, 0.004520818125456572, 0.024440553039312363, 0.024790355935692787, 0.006935216020792723, 0.002125430852174759, -0.010935132391750813, 0.0021767604630440474, -0.03531485050916672, -0.010189901106059551, -0.011360978707671165, 0.010243131779134274, 0.023984288796782494, -0.029033612459897995, -0.04705604910850525, 0.031877659261226654, 0.0006573056452907622, -0.05064532905817032, -0.043132178485393524, -0.01625821553170681, -0.02010604366660118, 0.005585434380918741, -0.0014666994102299213, 0.05286581441760063, -0.015695489943027496, -0.017794305458664894, 0.04182422161102295, -0.036470718681812286, 0.034311071038246155, -0.018524328246712685, -0.007132930681109428, -0.0007537865312770009, 0.03230350837111473, -0.023847410455346107, -0.0019733428489416838, -0.056090082973241806, -0.0014248751103878021, -0.048211921006441116, -0.027315018698573112, 0.04711688682436943, -0.03008302114903927, 0.017049072310328484, 0.03963415324687958, -0.00019759568385779858, -0.01672968827188015, 0.023740949109196663, -0.00011269963579252362, 0.001892545958980918, -0.024805564433336258, 0.020440638065338135, 0.00202847458422184, -0.014136586338281631, 0.006722292862832546, -0.014881817623972893, 0.008957987651228905, 0.0009999790927395225, 0.0021482440643012524, -0.02441013604402542, -0.030295943841338158, 0.017398875206708908, -0.026128731667995453, 0.027573568746447563, 0.025763720273971558, 0.021398792043328285, 0.003729959949851036, -0.026691457256674767, 0.015649862587451935, 0.005064533092081547, -0.0009106273646466434, 0.006843963172286749, -0.037869930267333984, -0.02031896635890007, 0.00835723988711834, -0.015725906938314438, 0.03291185945272446, -0.014212630689144135, 0.03564944490790367, -0.02869901992380619, 0.03291185945272446, -0.0023896838538348675, 0.016379885375499725, -0.014090959914028645, -0.008296404033899307, -0.016638435423374176, -0.04644769802689552, -0.002304134424775839, -0.0024334092158824205, 0.007433304563164711, -0.010136670432984829, 0.06278195977210999, 0.010676582343876362, -0.001147314440459013, -0.012935090810060501, 0.015330477617681026, -0.0016710676718503237, 0.005752731580287218, -0.026478534564375877, -0.03610570728778839, 0.014075751416385174, 0.009482691064476967, 0.010395219549536705, -0.007513151038438082, -0.017809513956308365, -0.02129233069717884, -0.03151264786720276, -0.04209797829389572, -0.026813127100467682, 0.006106336135417223, 0.008151920512318611, 0.0038896524347364902, 0.00729642529040575, -0.00013652280904352665, -0.11254517734050751, -0.023086968809366226, 0.0411246158182621, -0.026584995910525322, -0.029702801257371902, 0.005585434380918741, 0.021855056285858154, 0.049367789179086685, 0.0043725320138037205, -0.01961936242878437, -0.020136460661888123, -0.05213579162955284, -0.016820941120386124, 0.027816908434033394, -0.03513234481215477, 0.005361104384064674, 0.03324645385146141, 0.020379802212119102, 0.03841744735836983, 0.02699563279747963, -0.020912110805511475, -0.010600538924336433, -0.024668686091899872, 0.045018069446086884, 0.007304029539227486, 0.0024067938793450594, -0.02436450868844986, 0.03324645385146141, 0.0004966626293025911, -0.0029181898571550846, 0.029565921053290367, 0.03826535865664482, 0.0270108412951231, -0.015512983314692974, -0.0016739193815737963, 0.008098689839243889, 0.013931267894804478, 0.026448115706443787, 0.005961852613836527, 0.010562516748905182, -0.045991431921720505, -0.02608310431241989, 0.029292162507772446, -0.018068064004182816, 0.042219650000333786, -0.015094741247594357, -0.02077523060142994, 0.03336812183260918, -0.00645613856613636, 0.012935090810060501, 0.02462305873632431, 0.008836316876113415, -0.004543631337583065, -0.001354534411802888, 0.004600664135068655, 0.015877995640039444, -0.024334091693162918, 0.010448451153934002, -0.01085908804088831, 0.016319049522280693, -0.008760273456573486, 0.021855056285858154, 0.03327687084674835, -0.04225006699562073, -0.005634862929582596, -0.005235631950199604, -0.011315352283418179, 0.010570120997726917, -0.012570079416036606, -0.010707000270485878, 0.008273591287434101, 0.0176878422498703, 0.019497690722346306, -0.030219899490475655, 0.019223932176828384, 0.026965215802192688, 0.02561163157224655, -0.021429209038615227, -0.025961434468626976, -0.013535838574171066, 0.010813461616635323, -0.021642133593559265, -0.010653769597411156, 0.021216286346316338, -0.024486180394887924, 0.0016064302762970328, 0.000600747880525887, 0.0065283807925879955, -0.00633066613227129, 0.015474961139261723, 0.03902579843997955, -0.013330520130693913, 0.002260409062728286, -0.0018792382907122374, 0.013109992258250713, 0.008418074809014797, 0.02915528416633606, 0.008334426209330559, 0.013300102204084396, 0.01396168489009142, 0.038143690675497055, -0.017064282670617104, 0.02275237627327442, -0.00645613856613636, -0.0067793261259794235, -0.0176878422498703, 0.001988551579415798, -0.007155743893235922, 0.017961600795388222, -0.01145223155617714, -0.023543233051896095, 0.0030892889481037855, 0.0071025132201612, -0.002511354396119714, 0.004140597768127918, 0.017338041216135025, -0.003378256456926465, -0.020912110805511475, -0.01700344681739807, -0.031877659261226654, 0.025885390117764473, -0.036683645099401474, -0.018569953739643097, 0.015604236163198948, -0.010821066796779633, 0.023497607558965683, 0.033581048250198364, -0.0018792382907122374, 0.0071443370543420315, 0.01410616934299469, -0.008821108378469944, 0.04507890343666077, -0.008973196148872375, 0.05417377129197121, -0.0033136189449578524, -0.010189901106059551, 0.017490128055214882, 0.013353332877159119, -0.004847807344049215, 0.04136795550584793, -0.016303841024637222, 0.018737250939011574, 0.00424705957993865, -0.018235359340906143, -0.004642488434910774, -0.005224225576967001, -0.005870599765330553, 0.0006382946157827973, -0.034280650317668915, 0.04614352062344551, 0.015877995640039444, -0.04955029487609863, 0.0030873878858983517, 0.06092648208141327, -0.0025417718570679426, 0.04520057514309883, -0.06126107648015022, -0.01840265654027462, -0.008296404033899307, 9.279749065171927e-05, 0.00944466982036829, 0.05642467737197876, 0.025261828675866127, -0.023375937715172768, 0.021839847788214684, -0.022098397836089134, -0.016547182574868202, -0.01674489676952362, -0.01697302982211113, -0.0010265945456922054, 0.02319343201816082, -0.003845927072688937, -0.003486619098111987, 0.025003278627991676, 0.02083606645464897, 0.017535755410790443, -0.004281279165297747, 0.012600497342646122, -0.004665301647037268, 0.0041367956437170506, -0.032151419669389725, -0.0045056091621518135, 0.0027908161282539368, 0.04033375903964043, 0.016090918332338333, -0.013482607901096344, 0.001523732440546155, -0.01648634672164917, -0.017261996865272522, 0.018691623583436012, 0.030006976798176765, 0.005072137340903282, 0.009497900493443012, 0.021596506237983704, -0.005372511222958565, 0.010714604519307613, 0.03558861091732979, 0.018296195194125175, 0.0014895126223564148, 0.01724678836762905, -0.029033612459897995, -0.007977019064128399, 0.010714604519307613, -0.02054709941148758, 0.022037561982870102, 0.02795378863811493, -0.014699311926960945, 0.014547224156558514, -0.0301438570022583, 0.015254434198141098, -0.005228027701377869, 0.010281153954565525, 0.0026140138506889343, -0.015254434198141098, -0.017824722453951836, 0.014212630689144135, 0.01422023493796587, 0.005954247899353504, -0.012805815786123276, -0.02844046987593174, -0.008456096984446049, -0.025185784325003624, -0.007437106687575579, 0.019254351034760475, -0.025200994685292244, 0.035497356206178665, -0.0058211712166666985, -0.023284684866666794, -0.017642216756939888, 0.003935278858989477, 0.0014144190354272723, 0.02009083516895771, 0.00024524203035980463, 0.012729771435260773, 0.02033417485654354, 0.009923746809363365, 0.02059272490441799, 0.0008098689722828567, -0.00353034446015954, 0.00021019046835135669, -0.005247038789093494, -0.021216286346316338, -0.015011092647910118, -0.011771616525948048, -0.034858588129282, -0.013277288526296616, 0.06777044385671616, 0.0274518970400095, 0.026934798806905746, 0.0014068146701902151, -0.004722334910184145, 0.016136543825268745, 0.02652416005730629, 0.00790097564458847, 0.01372594852000475, 0.009079658426344395, 0.006361083593219519, 0.024927236139774323, -0.002950508613139391, -0.0064675454050302505, -0.0050683352164924145, 0.04012083262205124, -0.007425700314342976, -0.006589215714484453, -0.0014743037754669785, -0.004273674916476011, -0.021885473281145096, -0.012471222318708897, 0.011649946682155132, -0.01601487398147583, -0.010014999657869339, 0.024744730442762375, 0.019178306683897972, -0.006767919287085533, -0.005110159516334534, 0.015467356890439987, -0.05396084859967232, -0.028136294335126877, 0.008661415427923203, -0.02057751640677452, -0.026143940165638924, 0.0139844985678792, -0.021322747692465782, -0.017809513956308365, 0.00920132827013731, -0.026919588446617126, -0.006167171522974968, -0.030448032543063164, 0.017809513956308365, -0.05572507157921791, -0.010014999657869339, 0.010007395409047604, -0.005756533704698086, -0.0019752439111471176, -0.03783951327204704, -0.012144233100116253, -0.005551214795559645, 0.023239057511091232, 0.02941383421421051, -0.029976559802889824, -0.0031862452160567045, -0.003247080370783806, 0.023847410455346107, 0.02129233069717884, -0.013992102816700935, 0.014843796379864216, -0.027147721499204636, -0.02510974183678627, -0.003534146584570408, 0.007110117468982935, 0.0007252700161188841, -0.0056424676440656185, 0.02290446311235428, 0.028501305729150772, -0.03012864664196968, -0.006950424984097481, 0.026448115706443787, 0.018539536744356155, 0.008288799785077572, 0.02917049266397953, -0.00029395773890428245, 0.03519317880272865, 0.02483598329126835, 0.042888835072517395, -0.016395093873143196, -0.012691750191152096, 0.011170868761837482, 0.006920007523149252, -0.005060730502009392, 0.019026217982172966, -0.010988363064825535, -0.0022566067054867744, 0.009657592512667179, 0.0229196734726429, -0.02103378064930439, 0.034858588129282, 0.016090918332338333, 0.015589027665555477, 0.021337956190109253, 0.0031083000358194113, 0.025474753230810165, 0.023786574602127075, -0.009604361839592457, -0.008091085590422153, 0.011125242337584496, -0.020197296515107155, 0.023832201957702637, 0.011543484404683113, -0.0091024711728096, 0.04276716709136963, 0.07586152851581573, 0.019786657765507698, -0.010805857367813587, 0.020638352259993553, -0.00025950028793886304, -0.006003676913678646, -0.015634654089808464, 0.01351302582770586, 0.013855223543941975, 0.015847576782107353, -0.022174440324306488, 0.005102554801851511, -0.022326529026031494, 0.004281279165297747, 0.004311697091907263, -0.0015836170641705394, 0.0024086949415504932, 0.0364098846912384, 0.023801783099770546, 0.0066576553508639336, 0.024045124650001526, 0.026204776018857956, -0.006406710017472506, -0.00168627651873976, -0.010767835192382336, -0.026372071355581284, 0.02746710553765297, -0.018326612189412117, -0.01860037073493004, 0.016410302370786667, 0.008395262062549591, -0.016790524125099182, 0.02678271010518074, 0.0286686010658741, -0.04206756129860878, 0.014897027052938938, -0.017383666709065437, 0.013224057853221893, 0.0066576553508639336, -0.013292497955262661, -0.020896902307868004, -0.020881691947579384, -0.006748908199369907, 0.00376608083024621, -0.0038421249482780695, 0.030478449538350105, 0.012478826567530632, -0.014532015658915043, -0.002644431311637163, -0.0274518970400095, -0.0017109907930716872, -0.005041719879955053, 0.02824275568127632, -0.027360644191503525, -0.006197588983923197, 0.002663442399352789, 0.04586976394057274, 0.0036273004952818155, 0.0028649591840803623, 0.03008302114903927, -0.014859004877507687, -0.00038687404594384134, 0.005574028007686138, -0.011916100978851318, -0.025170575827360153, -0.04352760687470436, 0.022067978978157043, 0.0037679821252822876, 0.0034371905494481325, -0.03491942211985588, -0.014493993483483791, 0.0344935767352581, -0.001908705336973071, 0.014744938351213932, 0.03793076425790787, 0.028805481269955635, 0.031664736568927765, 0.01747491955757141, 0.02412116900086403, -0.03488900512456894, -0.017596589401364326, -0.002830739365890622, -0.04133753851056099, 0.02824275568127632, -0.03291185945272446, 0.00825838278979063, 0.0028877723962068558, 0.008167129941284657, -0.00922414194792509, 0.024516597390174866, 0.023254266008734703, -0.008570162579417229, 0.02033417485654354, 0.017398875206708908, -0.003691938007250428, -0.0004510362050496042, -0.05110159143805504, 0.01289706863462925, 0.010562516748905182, -0.03409814462065697, 0.017870347946882248, 0.022311320528388023, -0.019452065229415894, 0.013452189974486828, 0.02246340923011303, -0.005783149041235447, -0.00478697195649147, -0.022296112030744553, -0.005395324435085058, 0.02298050746321678, -0.010349593125283718, 0.022569870576262474, 0.014752543531358242, 0.011421814560890198, 0.005216620862483978, 0.022113606333732605, -0.00944466982036829, -0.00042727243271656334, -0.04346677288413048, -0.0020189692731946707, 0.018554745241999626, 0.023132596164941788, -0.034797750413417816, 0.001211001304909587, 0.025961434468626976, 0.02322384901344776, 0.03157348558306694, -0.015117554925382137, -0.009178515523672104, -0.008418074809014797, 0.008083481341600418, -0.006684270687401295, 0.054660454392433167, -0.0046995216980576515, 0.004517016001045704, 0.00299233291298151, -0.0048744226805865765, -0.007079700008034706, 0.02225048467516899, 0.003916267771273851, -0.05326124280691147, 0.03129972517490387, -0.014615664258599281, -0.001702435896731913, 0.0458393469452858, -0.017535755410790443, -0.003068376798182726, 0.0017404579557478428, 0.010319176129996777, -0.0016634633066132665, -0.002817431464791298, 0.0073382495902478695, 0.0208208579570055, 0.02295009046792984, -0.0008379102218896151, -0.02244819886982441, 0.01651676557958126, -0.03899538144469261, -0.011885683052241802, -0.018037645146250725, 0.010691791772842407, 0.011817242950201035, 0.001937221852131188, -0.008501723408699036, 0.026478534564375877, -0.018934965133666992, 0.007908579893410206, -0.011391396634280682, -0.0036995424889028072, 0.0007789761293679476, 0.0107602309435606, -4.0428098145639524e-05, -0.0015940731391310692, -0.013178431428968906, 0.020486263558268547, -0.015224016271531582, -0.009756449609994888, -0.0026387281250208616, -0.014638477005064487, 0.023558443412184715, 0.004707125946879387, -0.02652416005730629, 0.01645592972636223, 0.0358927845954895, 0.009072053246200085, 0.00308168469928205, -0.01289706863462925, -0.0010608143638819456, 0.02673708274960518, -0.017596589401364326, 0.010045417584478855, -0.009764054790139198, 8.418312791036442e-05, 0.04085085541009903, 0.030782626941800117, 0.055299222469329834, 0.023725738748908043, 0.019680196419358253, -0.043649278581142426, 0.020212505012750626, -0.035740695893764496, -0.018539536744356155, -0.013794388622045517, 0.001497116987593472, 0.0139844985678792, 0.004646290559321642, -0.018250569701194763, 0.006110138259828091, 0.007714667357504368, 0.01671447977423668, -0.0008402866078540683, -0.018524328246712685, -0.014410344883799553, 0.011254517361521721, 0.02368011325597763, -0.005824973341077566, -0.016820941120386124, 0.04517015814781189, 0.008813504129648209, -0.03631863370537758, -0.0013954080641269684, -0.022798001766204834, 0.009482691064476967, -0.04736022651195526, -0.007513151038438082, 0.014167004264891148, 0.038356613367795944, -0.0039885095320641994, -0.003199552884325385, -0.01887412928044796, -0.01291227713227272, 0.0007362013566307724, 0.009779263287782669, 0.01771826110780239, -0.0032755970023572445, -0.009855307638645172, -0.001371644320897758, -0.032151419669389725, 0.029231328517198563, -0.015292455442249775, -0.028592558577656746, -0.0028896734584122896, 0.022296112030744553, -0.01493504922837019, 0.03580153360962868, 0.014653685502707958, 0.010653769597411156, -0.010220319032669067, 0.008813504129648209, -0.00943706464022398, -0.04714730381965637, 0.017794305458664894, 0.013467399403452873, -0.021915892139077187, -0.02364969626069069, -0.012159441597759724, 0.01891975663602352, -0.008775481954216957, 0.008311613462865353, -0.00968040619045496, -0.02342156320810318, 0.010600538924336433, 0.005364906974136829, -0.035710278898477554, 0.01653197407722473, 0.011938913725316525, 0.03510192781686783, -0.02034938521683216, -0.04072918742895126, -1.5773197446833365e-05, -0.020942527800798416, 0.015467356890439987, 0.020927319303154945, -0.011041593737900257, 0.02606789581477642, 0.025672467425465584, 0.005707105156034231, -0.004969477653503418, -0.010136670432984829, -0.008151920512318611, -0.0015931226080283523, -0.015292455442249775, -0.022569870576262474, -0.026387281715869904, -0.005741324741393328, 0.006292643956840038, -0.012706958688795567, 0.01648634672164917, -0.013360937125980854, 0.02249382622539997, 0.009452274069190025, 0.021672550588846207, -0.0123267387971282, 0.007300227414816618, -0.007908579893410206, 0.0018573756096884608, 0.00930018536746502, 0.025626840069890022, -0.006931413896381855, 0.001496166456490755, -0.006737501826137304, 0.01601487398147583, -0.002034178003668785, -0.012075792998075485, 0.02585497312247753, 0.009178515523672104, -0.001336473971605301, 0.026919588446617126, -0.017125116661190987, -0.005752731580287218, 0.014113773591816425, -0.0023060354869812727, 0.006478951778262854, -0.012980717234313488, 0.020212505012750626, -0.011817242950201035, 0.014653685502707958, 0.03367229923605919, -0.0005437148502096534, -0.0046957191079854965, 0.021946309134364128, -0.008296404033899307, 0.0055816322565078735, -0.03058491088449955, 0.03367229923605919, -0.002619717037305236, -0.023953871801495552, -0.014547224156558514, 0.008509327657520771, -0.005113961640745401, 0.03966457024216652, 0.012532057240605354, 0.03254684805870056, -0.006372490432113409, 0.014113773591816425, 0.0034676080103963614, 0.015634654089808464, 0.046508532017469406, 0.0022642111871391535, -0.014151795767247677, -0.008509327657520771, 0.01336854137480259, -0.025185784325003624, 0.003488520160317421, -0.009292581118643284, 0.03610570728778839, 0.011246913112699986, -0.007577788084745407, -0.008600580506026745, 0.0052584451623260975, -0.015033906325697899, 0.02679791860282421, -0.005353500135242939, -0.014288674108684063, -0.005015104077756405, 0.009969373233616352, 0.01577153243124485, 0.006440930068492889, -0.02816671133041382, 0.04538308084011078, 0.035254016518592834, 0.028820689767599106, -0.017079491168260574, -0.002412497065961361, -0.018235359340906143, 0.036196961998939514, 0.04310176149010658, -0.00979447178542614, -0.0198627021163702, -0.02320864051580429, 0.005680489353835583, -0.002089309971779585, -0.00011822471424238756, -0.02104898914694786, -0.006862974260002375, -0.05037156865000725, 0.008600580506026745, 0.019223932176828384, -0.006091127172112465, -0.009779263287782669, 0.027178138494491577, 0.009657592512667179, 0.00717095285654068, 0.005026510916650295, 0.020212505012750626, 0.012600497342646122, 0.003442893736064434, 0.014007311314344406, 0.01364990510046482]" -"Using IoT Sensors, TimescaleDB, and Grafana to Control the Temperature of the Nuclear Fusion Experiment at the Max Planck Institute","built on top of PostgreSQL and still giving you access to all regular relational database features, you can use TimescaleDB for a much larger variety of tasks.​You can also dive right in, even with minimal SQL knowledge—and if you ever do get stuck, theTimescaleandPostgreSQL documentationare well written and extensive, so you can almost always find a solution!​Lastly, there is no ""too small"" for TimescaleDB either. Being open source, quick to set up, and easy to use while performing well even on a spare laptop or PC, it can be a valuable tool for any sort of data acquisition—even if it feels like a ""small"" task!​I learned a lot about my system already by using TimescaleDB and can be much more confident in how to proceed thanks to it. In a way, it has even changed my developer experience. I have the data acquisition and TimescaleDB running continuously while working on new software features or modifying the hardware. If I were to introduce a bug that could mess up the measurements, I might see those much sooner in the data. I can then react appropriately and quickly while still developing.​I can worry less about ensuring everything works and focus more on adding new features!Advice and ResourcesGive TimescaleDB a try whenever you need to record any kind of time-series data. It's much easier to use than writing your own script or dumping it into a CSV file. The built-in functionality can take care of a lot of number crunching very efficiently, allowing you to benefit from years of finely developed functions. It's well worth the trouble, and there's no such thing as ""too small"" a use case for it!​TimescaleDB has helped me be more confident in developing my hardware, and I want to motivate others in my field to try it out themselves. A lot can be gained from a few days or months of data, even if at first you don't think so—some insights only pop out at larger scales, no matter what you're working on.I am very excited to share my use case of TimescaleDB. Whenever I think of databases, I am drawn to these larger web services and big tech companies—but that doesn't have to be the case! That can also be helpful advice for others looking for the right database for their",https://www.timescale.com/blog/using-iot-sensors-timescaledb-and-grafana-to-control-the-temperature-of-the-nuclear-fusion-experiment-in-the-max-planck-institute/,470,"[-0.004970492795109749, -0.03404538333415985, 0.03534868359565735, -0.002164408564567566, 0.05165322870016098, -0.0113240797072649, -0.00902335625141859, 0.02138475514948368, -0.035109300166368484, 0.03662538528442383, 0.02915135957300663, -0.02012135274708271, 0.009781397879123688, -0.03848724067211151, 0.0776660293340683, 0.04229074716567993, -0.0012634028680622578, -0.004870750475674868, 0.0015526555944234133, 0.02709001675248146, 0.0007073393790051341, 0.02470950037240982, 0.009362480603158474, 0.01884465105831623, 0.039364974945783615, -0.05428642779588699, -0.03987033665180206, 0.05359487980604172, 0.037476517260074615, -0.04367384314537048, -0.0037469868548214436, -0.031119607388973236, -0.08601778745651245, 0.01758124865591526, 0.015573102980852127, 0.031093008816242218, 0.036173220723867416, -0.004957193974405527, 0.033194247633218765, -0.0005747652030549943, -0.007886293344199657, -0.001915052765980363, 0.025627130642533302, -0.011297481134533882, -0.04138641804456711, -0.04082786291837692, -0.03377940505743027, -0.007753303740173578, -0.018299393355846405, 0.04481755569577217, -0.04835508391261101, 0.010426398366689682, -0.03151857852935791, -0.002164408564567566, 0.009049953892827034, -0.03838085010647774, 0.007188097573816776, 0.015253927558660507, -0.006942066363990307, -0.02790125459432602, 0.01933671347796917, -0.015041143633425236, 0.04013631492853165, 0.02726290374994278, -0.001254259841516614, 0.03298146277666092, -0.008624386973679066, 0.021278364583849907, -0.04245033487677574, 0.020640013739466667, 0.03899260237812996, -0.0313589908182621, -0.008903665468096733, -0.0037935334257781506, 0.017966918647289276, -0.06729282438755035, -0.006253844127058983, 0.06080292537808418, -0.005166652612388134, -0.03008228726685047, -0.0011644917540252209, -0.024510016664862633, -0.030933421105146408, 0.027316100895404816, -0.005791704636067152, -0.023645581677556038, -0.021637436002492905, -0.022235890850424767, 0.01665031909942627, -0.011357326991856098, 0.008371706120669842, 0.02742249146103859, 0.026212284341454506, 0.03346022590994835, 0.028725791722536087, 0.01529382448643446, 0.0013664700090885162, 0.018645167350769043, -0.0029773085843771696, 0.026238882914185524, -0.0027246279641985893, 0.013937328942120075, -0.015360319055616856, -0.04939240217208862, 0.03332723677158356, 0.008870418183505535, 0.019868671894073486, -0.0072745406068861485, 0.015573102980852127, 0.02978971041738987, -0.08665613830089569, -0.0016607098514214158, -0.035747651010751724, 0.007015210576355457, -0.03439115732908249, 0.0032067159190773964, -0.02153104543685913, -0.006829025223851204, 0.01045964565128088, -0.024496717378497124, 0.0006520655006170273, -0.0024736097548156977, -0.040162913501262665, 0.024749398231506348, 0.03364641219377518, -0.03822126239538193, 0.006586318835616112, -0.04846147447824478, -0.019044136628508568, 0.004126007668673992, 0.025268057361245155, 0.010193666443228722, 0.058728285133838654, -0.007666860707104206, -0.00855789240449667, -0.02073310688138008, -0.05279694125056267, -0.016836505383253098, -0.018964342772960663, -0.019695786759257317, 0.015745989978313446, -0.040003325790166855, 0.02314022183418274, -0.005276369396597147, -0.018312692642211914, 0.023672180250287056, -0.01634444296360016, 0.0447111614048481, -0.015240628272294998, -0.004362064879387617, 0.024204138666391373, 0.015546504408121109, -0.03955116122961044, -0.01946970261633396, 0.04258332774043083, 0.01490815356373787, -0.0012284930562600493, 0.031305793672800064, -0.032263319939374924, -0.058089934289455414, 0.004987116437405348, 0.023512592539191246, -0.028247028589248657, 0.027449090033769608, -0.02537444978952408, 0.017714237794280052, -0.03641260042786598, -0.04423239827156067, -0.07500623166561127, -0.013072894886136055, -0.022781148552894592, -0.050323329865932465, -0.004508353304117918, 0.014695370569825172, 0.037476517260074615, 0.001174465985968709, -0.002091264119371772, -0.05846230685710907, 0.02437702566385269, -0.03787548840045929, -0.04859446361660957, -0.02960352413356304, -0.035561464726924896, 0.0022890865802764893, -0.023166818544268608, -0.03548167273402214, -0.03593383729457855, 0.006995262112468481, 0.0006911312229931355, 0.0039863684214651585, -0.038726624101400375, 0.03260909393429756, 0.0027445764280855656, 0.015187432058155537, 0.05311611667275429, -0.03231651708483696, 0.024483418092131615, 0.035561464726924896, -0.03173135966062546, 0.010752223432064056, 0.03737012669444084, 0.003687141463160515, 0.04024270549416542, -0.038593634963035583, -0.016756711527705193, -0.04290250316262245, 0.004731111228466034, 0.005030338186770678, -0.0798470601439476, -0.07878314703702927, -0.02949713170528412, -0.02771507017314434, -0.017700938507914543, 0.0018435707315802574, -0.022408777847886086, -0.011915883980691433, -0.021038983017206192, -0.014096916653215885, -0.018086610361933708, -0.0007135732448659837, 0.005678663495928049, 0.01354500837624073, 0.011310780420899391, -0.03566785901784897, -0.021038983017206192, 0.0022840993478894234, 0.03800847753882408, -0.048089101910591125, 0.026119191199541092, -0.01680990681052208, -0.004667941015213728, -0.04673260822892189, -0.007946139201521873, -0.05279694125056267, 0.02109217830002308, 0.03013548254966736, 0.015400215983390808, -0.018006816506385803, -0.03912559151649475, -0.029124761000275612, 0.01788712479174137, 0.005961266811937094, -0.013830936513841152, 0.026824038475751877, -0.013764441944658756, 0.002036405960097909, -0.02965671941637993, -0.052025601267814636, 0.012707172892987728, 0.04755714535713196, 0.009688305668532848, -0.015347019769251347, 0.008478098548948765, -0.022249190136790276, -0.026504863053560257, -0.070271797478199, -0.030188679695129395, 0.02359238639473915, 0.022727953270077705, 0.008391655050218105, -0.029257750138640404, -0.04928601160645485, -0.03564126044511795, 0.03141218423843384, -0.03726373612880707, 0.02485578879714012, 0.03040146268904209, -0.031784556806087494, 0.004697863943874836, -0.012008977122604847, 0.04343445971608162, 0.025440944358706474, 0.016198154538869858, -0.04566868767142296, -0.020081456750631332, -0.036013633012771606, -0.005558972712606192, 0.014322998933494091, -0.0023522565606981516, 0.001484498381614685, 0.0036206466611474752, -0.011284182779490948, 0.013870833441615105, 0.024669604375958443, 0.019137227907776833, 0.004255672916769981, 0.018033413216471672, 0.01853877492249012, 0.029417337849736214, -0.03369960933923721, -0.0025218187365680933, 0.021318260580301285, 0.021637436002492905, -0.028140636160969734, -0.004574848338961601, 0.0019915217999368906, 0.0065829940140247345, 0.013146039098501205, -0.03468373417854309, -0.01982877589762211, 0.004937245510518551, 0.01740836165845394, 0.016756711527705193, -0.02710331603884697, -0.01242789439857006, 0.02379187010228634, -0.013185936026275158, -0.024643005803227425, -0.011131244711577892, 0.028619399294257164, -0.013046297244727612, -0.014402792789041996, 0.0007493142620660365, -0.01442939043045044, -0.006862272508442402, 0.00792619027197361, 0.03787548840045929, -0.036545589566230774, -0.01760784722864628, -0.07271880656480789, -0.04862106218934059, -0.07904912531375885, -0.01148366741836071, 0.021185271441936493, 0.02992269955575466, 0.005555647891014814, 0.013039647601544857, 0.005080209579318762, 0.020826198160648346, -0.009940985590219498, -0.013332225382328033, 0.005412683822214603, -0.004428559448570013, 0.055696118623018265, -0.02328651025891304, -0.06324993818998337, 0.020374033600091934, 0.00010795029811561108, -0.0029457234777510166, 0.054738592356443405, -0.00185022025834769, 0.025427645072340965, -0.05391405522823334, 0.03170476108789444, 0.01566619612276554, 0.029257750138640404, -0.009561965242028236, 0.0007131577003747225, 0.01585238054394722, -0.0040029920637607574, -0.036811571568250656, -0.0013955614995211363, 0.008684232831001282, -0.01774083636701107, -0.0007131577003747225, 0.015147535130381584, -0.00934253167361021, -0.04130662605166435, -0.03481672331690788, -0.004066162277013063, -0.03213033080101013, 0.026584656909108162, 0.018432382494211197, -0.0029939322266727686, -0.006922117900103331, 0.031146205961704254, -0.04013631492853165, 0.0097282025963068, -0.03106641210615635, 0.019217021763324738, 0.021797023713588715, -0.019097331911325455, -0.002885878086090088, -0.03949796408414841, -0.0573451928794384, -0.0231535192579031, 0.037955280393362045, 0.04106724262237549, -0.004219100810587406, 0.07224004715681076, 0.014894855208694935, 0.025573933497071266, 0.013006400316953659, 0.0010797107825055718, 0.03548167273402214, 0.0194564051926136, 0.015081040561199188, 0.03460393846035004, -0.06378189474344254, -0.01037320215255022, 0.04082786291837692, 0.017873825505375862, -0.004551575053483248, -0.02437702566385269, 0.010240213014185429, 0.004681240301579237, -0.006150776986032724, 0.03393899276852608, 0.053967252373695374, -0.03949796408414841, 0.03072063811123371, -0.010905161499977112, -0.04928601160645485, -0.01744825951755047, 0.036811571568250656, 0.022063003852963448, 0.018325991928577423, 0.03439115732908249, -0.003840079763904214, -0.02901836857199669, -0.012062172405421734, -0.011516914702951908, 0.05058931186795235, -0.027289502322673798, 0.024350428953766823, -0.015932174399495125, -0.0718676745891571, 0.08474108576774597, -0.01228160597383976, 0.02345939725637436, -0.047158174216747284, -0.04308868572115898, -0.033832598477602005, -0.003600698197260499, -0.007979386486113071, 0.05670684203505516, 0.0024303882382810116, -0.01180284284055233, -0.037290334701538086, -0.035854045301675797, 0.019403208047151566, -0.0034178372006863356, 0.03154517337679863, -0.010193666443228722, -0.017035990953445435, 0.00807912927120924, 0.04066827520728111, -0.051387250423431396, 0.062345605343580246, 0.010326656512916088, -0.00495386915281415, 0.03909899294376373, 0.005668689031153917, 0.036811571568250656, 0.006080957595258951, -0.03393899276852608, -0.06782478839159012, -0.03441775590181351, 0.002227578777819872, -0.011018202640116215, 0.04120023176074028, -0.017009392380714417, -0.03646579757332802, 0.008005984127521515, -0.003191754687577486, -0.040774665772914886, 0.021278364583849907, -0.05766436830163002, 0.0367317758500576, -0.007141551002860069, -0.04154600575566292, 0.02472279965877533, -0.08665613830089569, -0.012261657044291496, 0.0026165738236159086, -0.027010222896933556, 0.05431302636861801, 0.028087440878152847, 0.0044983793050050735, -0.0136115038767457, 0.035561464726924896, 0.02025434374809265, -0.008657634258270264, -0.010785470716655254, -0.04135981947183609, 0.010998254641890526, 0.01559970062226057, 0.02347269468009472, -0.038274455815553665, -0.030055688694119453, 0.04002992436289787, -0.02423073723912239, 0.030773833394050598, 0.06782478839159012, 0.016676917672157288, -0.02186352014541626, 0.0020497050136327744, 0.007999335415661335, 0.017661042511463165, 0.02659795619547367, -0.04455157369375229, -0.0071282521821558475, 0.04487074911594391, -0.01490815356373787, -0.003055440029129386, 0.037290334701538086, -0.053009726107120514, -0.017873825505375862, -0.002816058462485671, 0.02851300872862339, 0.05463220179080963, 0.01678331010043621, -0.0045781731605529785, 0.08410273492336273, -0.04258332774043083, 0.023366304114460945, 0.0007281190482899547, -0.02806084230542183, -0.01695619709789753, -0.03183775395154953, -0.037449922412633896, -0.018419083207845688, 0.026065995916724205, 0.02901836857199669, -0.01649073138833046, 0.009435624815523624, -0.019057434052228928, 0.015559803694486618, -0.0032216773834079504, -0.005558972712606192, -0.007141551002860069, -0.034311361610889435, -0.02236887998878956, -0.009960934519767761, 0.010585986077785492, -0.0070351590402424335, -0.037609510123729706, -0.003989693243056536, -0.010359903797507286, -0.010167068801820278, 0.0016482420032843947, -0.01631784625351429, 0.030853627249598503, -0.026371872052550316, -0.06245199963450432, 0.0018186351517215371, -0.02774166688323021, -0.02469620108604431, -0.045243121683597565, 0.03218352422118187, 0.011696450412273407, 0.050323329865932465, 0.024948881939053535, 0.027449090033769608, 0.000794198305811733, -0.007061757147312164, 0.0006587149691767991, -0.018924444913864136, -0.00479428144171834, 0.019443105906248093, 0.02963012270629406, -0.022129498422145844, 0.030188679695129395, -0.0025783393066376448, 0.0240977481007576, 0.03947136551141739, 0.018272794783115387, 0.0071282521821558475, 0.011796193197369576, 0.005080209579318762, 0.026026099920272827, -0.02173052914440632, 0.00756046874448657, 0.009881140664219856, 0.025161664932966232, 0.024496717378497124, -0.0028659296222031116, -0.050935085862874985, -0.05622807890176773, 0.0015559804160147905, 0.0046114204451441765, -0.012255008332431316, 0.008065829984843731, 0.024283932521939278, 0.0013307289918884635, -0.0045482502318918705, -0.019270218908786774, -0.025454243645071983, 0.014070318080484867, 0.026065995916724205, -0.010572686791419983, -0.01776743493974209, -0.02470950037240982, 0.034630537033081055, -0.013977225869894028, -0.02154434286057949, 0.021025683730840683, 0.02885878086090088, 0.07053777575492859, -0.029869504272937775, 0.007247942965477705, 0.02247527241706848, -0.01157675962895155, 0.00033476020325906575, 0.022448673844337463, 0.032875072211027145, 0.010426398366689682, 0.013345523737370968, -0.03577424958348274, 0.003830105531960726, 0.018645167350769043, -0.006017787382006645, 0.01014047022908926, -0.03040146268904209, -0.013511761091649532, 0.017820630222558975, -0.009189593605697155, 0.016078464686870575, 0.02726290374994278, -0.03218352422118187, 0.017022691667079926, 0.015745989978313446, -0.014948050491511822, -0.05766436830163002, -0.01965588890016079, -0.015373618341982365, 0.004598121624439955, -0.008025933057069778, 0.019110631197690964, -0.010738924145698547, -0.05019034072756767, -0.0033696284517645836, -0.01791372336447239, -0.03646579757332802, 0.02361898496747017, 0.023353004828095436, -0.026903832331299782, -0.04037569463253021, -0.006366885732859373, 0.01997506432235241, -0.0021810324396938086, 0.029842905700206757, 0.043035492300987244, -0.013525060378015041, 0.01566619612276554, 0.022887540981173515, 0.03819466382265091, 0.02992269955575466, 0.0008536281529814005, 0.005578921176493168, 0.022555066272616386, 0.013684648089110851, -0.001670684083364904, -0.010725625790655613, -3.709167867782526e-05, -0.030800431966781616, -0.002212617313489318, 0.036971159279346466, -0.015799185261130333, -0.026717646047472954, -0.01630454696714878, 0.00012675588368438184, 0.07261241972446442, 0.01712908409535885, 0.01695619709789753, -0.00392652302980423, -0.006962014827877283, -0.05527055263519287, 0.009415675885975361, 0.003431136254221201, -0.04447178170084953, 0.004711162764579058, -0.036226414144039154, -0.010951708070933819, -0.016676917672157288, 0.005449255928397179, 0.01915052719414234, 0.009369129315018654, 0.027183109894394875, 0.01598537154495716, -0.0025849887169897556, 0.004774332977831364, 0.011450420133769512, 0.023712076246738434, 0.014881555922329426, -0.027449090033769608, 0.024190841242671013, -0.005582245998084545, 0.019084032624959946, 0.048275288194417953, -0.01449588593095541, -0.0011179452994838357, -0.013298978097736835, 0.011131244711577892, -0.008797273971140385, 0.0038899509236216545, -0.015333721414208412, 0.0535682812333107, 0.040322501212358475, 0.011058099567890167, 0.002310697454959154, -0.02694372832775116, -0.00721469521522522, -0.026903832331299782, -0.012567534111440182, -0.021770427003502846, 0.01978887803852558, 0.02518826350569725, -0.030507855117321014, -0.049020033329725266, 0.008970160037279129, 0.004638018552213907, -0.04673260822892189, -0.037024352699518204, -0.020826198160648346, 0.009608510881662369, 0.0004376194847282022, 0.0018867924809455872, 0.010472944937646389, -0.018339289352297783, -0.022302385419607162, 0.0047543845139443874, -0.02709001675248146, 0.04167899489402771, -0.028273627161979675, -0.029896100983023643, -0.011357326991856098, 0.03260909393429756, -0.03157177194952965, 0.00518327672034502, -0.06511179357767105, -0.014322998933494091, -0.015400215983390808, -0.02851300872862339, 0.032396309077739716, 0.0009591887355782092, 0.040641676634550095, 0.019057434052228928, 0.0023372953291982412, -0.007307788357138634, -0.0011736347805708647, 0.01497464906424284, 0.03202393651008606, -0.008119026198983192, 0.019243620336055756, -0.02787465788424015, -0.027209708467125893, 0.01649073138833046, -0.019363312050700188, 0.007527221459895372, -0.03548167273402214, 0.01567949540913105, -0.026358572766184807, -0.0007202227716334164, -0.004771008156239986, -0.0468921959400177, 0.028486410155892372, 0.02992269955575466, -0.0010672429343685508, -0.019243620336055756, -0.005495802499353886, 0.011443770490586758, 0.00030088936910033226, 0.003697115695104003, 0.020786302164196968, -0.012421244755387306, -0.05019034072756767, 0.006280442234128714, -0.009063253179192543, 0.04133322089910507, -0.007221344858407974, 0.015932174399495125, -0.04909982532262802, 0.03577424958348274, -0.01497464906424284, 0.03553486987948418, -0.024164242669939995, -0.010280109941959381, -0.021185271441936493, -0.06676086783409119, 0.013205884955823421, 0.006380184553563595, -0.010579336434602737, 0.0012949879746884108, 0.06181364879012108, -0.0008332640863955021, -0.016916299238801003, 0.007267891429364681, 0.010825367644429207, 0.004375363700091839, 0.020214445888996124, 0.0010556064080446959, -0.013511761091649532, -0.01236804947257042, -0.009768099524080753, 0.012308203615248203, -0.0033496799878776073, -0.010326656512916088, -0.02931094728410244, -0.01837918721139431, -0.022395478561520576, 0.003943146672099829, -0.009448923170566559, 0.04005651921033859, -0.013279029168188572, -0.024975480511784554, -0.010945058427751064, -0.10798770189285278, -0.02787465788424015, 0.04170559346675873, -0.008178871124982834, -0.03250269964337349, -8.711869304534048e-05, 0.04292909801006317, 0.03944476693868637, 0.023871663957834244, -0.02630537748336792, 0.002327321097254753, -0.05558972805738449, -0.004511678125709295, 0.004621394909918308, -0.030853627249598503, 0.012421244755387306, 0.03042806126177311, 0.022262489423155785, 0.0541534386575222, 0.024270635098218918, 0.01887124963104725, -0.011523564346134663, -0.025627130642533302, 0.07277200371026993, 0.009621810168027878, -0.00902335625141859, -0.018565373495221138, 0.062026429921388626, 0.0016158258076757193, -0.029842905700206757, 0.018286094069480896, 0.021012384444475174, 0.029284348711371422, -0.014642174355685711, -0.005851550027728081, 0.026278778910636902, -0.00957526359707117, 1.7260099411942065e-05, -0.013777741231024265, 0.0014354584272950888, -0.01855207420885563, -0.02947053499519825, 0.03569445759057999, -0.07681489735841751, 0.05447261407971382, -0.018897846341133118, 0.021823622286319733, 0.045695286244153976, 0.0008519657421857119, 0.006353586446493864, 0.04231734573841095, 0.029550328850746155, -0.0006096750148572028, -0.0020713156554847956, 0.04835508391261101, -0.005445931572467089, -0.01776743493974209, -0.026238882914185524, 0.0034909816458821297, 0.023033829405903816, -0.01490815356373787, -0.021344859153032303, 0.004255672916769981, -0.04231734573841095, -0.022289086133241653, -0.0038101570680737495, 0.034630537033081055, 0.004771008156239986, -0.01569279283285141, -0.0011736347805708647, -0.0072878398932516575, 0.0503765270113945, 0.028273627161979675, -0.009960934519767761, 0.0025866511277854443, 0.015041143633425236, 0.021797023713588715, -0.011703100055456161, -0.0009799684630706906, -0.009621810168027878, 0.0005947136669419706, -0.006190673913806677, -0.026691047474741936, 0.013019698671996593, 0.011111295782029629, -0.008730778470635414, 0.004139306955039501, 0.018724961206316948, 0.010965007357299328, 0.018977640196681023, 0.031465381383895874, 0.021118776872754097, -0.02566702663898468, -0.004771008156239986, -0.0083118611946702, 0.005296317860484123, 0.004076136741787195, -0.0070817056111991405, -0.020493725314736366, -0.010339954867959023, 0.036997754126787186, -0.02440362423658371, 0.0010107222478836775, 0.013751142658293247, 0.0064899008721113205, -0.005728534422814846, 0.0032964840065687895, -0.004062837455421686, -0.0004438533796928823, 0.007420829497277737, -0.02553403750061989, 0.002671432215720415, 0.03580084815621376, 0.018578670918941498, -0.014721968211233616, 0.03441775590181351, 0.02677084133028984, 0.002684731036424637, -0.013252431526780128, -0.028087440878152847, 0.012979801744222641, -0.016849804669618607, -0.011603358201682568, 0.02457651123404503, -0.0010539439972490072, 0.009402377530932426, 0.030933421105146408, 0.0035707755014300346, 0.026026099920272827, -0.019895270466804504, 0.037955280393362045, 0.07527220994234085, -0.0013456903398036957, 0.042237553745508194, 0.004355415236204863, -0.03439115732908249, 0.025587232783436775, -0.003547502215951681, 0.0323697105050087, 0.012660626322031021, 0.001339040813036263, 0.02060011588037014, -0.001235142583027482, -0.005874823313206434, 0.021424653008580208, -0.021012384444475174, -0.026345275342464447, 0.014695370569825172, -0.019748982042074203, 0.02710331603884697, 0.028911978006362915, -0.04375363513827324, -0.028326822444796562, 0.04859446361660957, -0.013458565808832645, 0.05335550010204315, -0.04417920485138893, -0.007999335415661335, -0.014482586644589901, -0.013185936026275158, -0.0024636355228722095, 0.022448673844337463, 0.024137644097208977, -0.020626714453101158, 0.011656553484499454, -0.005066910292953253, -0.026225583627820015, -0.011629955843091011, -0.031917545944452286, -0.006001163739711046, 0.0024619733449071646, 0.0017438284121453762, 0.02470950037240982, 0.016211453825235367, 0.03976394236087799, 0.0071681491099298, 0.0021394731011241674, 0.019230321049690247, -0.014642174355685711, -0.021118776872754097, -0.007434128317981958, -0.004847477190196514, 0.009794697165489197, 0.024283932521939278, 0.039684150367975235, -0.019748982042074203, -0.027502285316586494, -0.0137910395860672, 0.0033230821136385202, 0.009049953892827034, 0.009162995964288712, 0.0034278114326298237, 0.010891863144934177, -0.0039531211368739605, -0.005811653099954128, 0.01646413467824459, 0.023645581677556038, 0.013019698671996593, -0.001029008417390287, -0.006147452630102634, -0.0701122134923935, 0.007680159527808428, 0.004857451654970646, -0.010625883005559444, 0.013518410734832287, 0.06160086393356323, 0.013146039098501205, -0.0008058349485509098, -0.025906408205628395, 0.016224753111600876, 0.02440362423658371, 0.015187432058155537, 0.01109134778380394, -0.0038700024597346783, -0.021185271441936493, 0.03284847363829613, 0.02061341516673565, 0.022568365558981895, -0.025108469650149345, -0.028406616300344467, -0.03279528021812439, -0.025640428066253662, -0.01544011291116476, 0.03449754789471626, -0.011742996983230114, 0.06638849526643753, 0.034949712455272675, -0.00586817367002368, -0.014615576714277267, -0.010745573788881302, -0.002671432215720415, -0.005741833709180355, 0.018964342772960663, -0.008438201621174812, 0.020241044461727142, 0.002746238838881254, -0.001881805364973843, 0.003527553752064705, -0.011776244267821312, -0.0007389244274236262, 0.0231535192579031, 0.016051866114139557, 0.0009384091245010495, -0.0019433130510151386, -0.025095170363783836, -0.007892942987382412, 0.04955198988318443, -0.024323830381035805, 0.02835342101752758, -0.004072811920195818, 0.009714903309941292, 0.015878979116678238, 0.025627130642533302, 0.006353586446493864, 0.03537528216838837, 0.018086610361933708, -0.005073559936136007, 0.004288920201361179, -0.005319591145962477, -0.0059280190616846085, -0.02723630703985691, 0.04521652311086655, 0.003201728919520974, -0.016198154538869858, -0.006303715519607067, 0.0020713156554847956, -0.022289086133241653, -0.001612500986084342, 0.018764857202768326, 0.018099907785654068, -0.029736513271927834, 0.02485578879714012, -0.002099576173350215, -0.011616656556725502, 0.009422325529158115, 0.0316515676677227, -0.06410107016563416, -0.023353004828095436, -0.0012974814744666219, -0.02997589483857155, -0.026026099920272827, -0.001840246026404202, -0.015932174399495125, -0.015147535130381584, 0.04803590849041939, -0.03417837247252464, -0.020374033600091934, -0.03846064209938049, 0.018578670918941498, -0.04662621393799782, -0.0194564051926136, -0.0037569610867649317, -0.004365389235317707, 0.02614578977227211, -0.04378023371100426, -0.00886376854032278, 0.015573102980852127, 0.009329232387244701, 0.03375280648469925, 0.0030238551553338766, 0.00169478845782578, -0.01139722391963005, 0.018591970205307007, 0.019735682755708694, 0.011038151569664478, 0.007733355276286602, -0.00838500540703535, -0.02978971041738987, -0.009781397879123688, 0.020560219883918762, -0.020467126742005348, 0.008478098548948765, 0.013804338872432709, 0.03369960933923721, -0.028114039450883865, -0.0007019366603344679, 0.014362895861268044, 0.029869504272937775, 0.026252182200551033, 0.05042972415685654, 0.01015376951545477, 0.006626215763390064, 0.01868506334722042, 0.040774665772914886, -0.020374033600091934, -0.008617737330496311, 0.007247942965477705, 0.010080625303089619, -0.012919956818223, 0.0002709666732698679, 0.018312692642211914, -0.006769179832190275, 0.012607431039214134, 0.04915302246809006, -0.03332723677158356, 0.012308203615248203, 0.011270883493125439, -0.0065198238007724285, 0.031013214960694313, 0.0023888288997113705, 0.015174133703112602, 0.007746654562652111, 0.008737428113818169, -0.008890366181731224, 0.0025750144850462675, -0.016730112954974174, 0.030694039538502693, 0.02949713170528412, -0.018578670918941498, 0.036864764988422394, 0.056972820311784744, -0.009116449393332005, -0.027954451739788055, 0.01155681163072586, 0.009901088662445545, 0.022382179275155067, 0.0004207879537716508, -0.010479594580829144, 0.005090183578431606, 0.0468921959400177, -0.012002327479422092, 0.020799601450562477, -0.02994929812848568, 0.028911978006362915, -0.005339539609849453, -0.018605269491672516, -0.01210871897637844, 0.01884465105831623, 0.0006799102411605418, 0.01839248649775982, 0.029098162427544594, 0.03449754789471626, -0.017009392380714417, -0.021517746150493622, -0.017474856227636337, -0.01868506334722042, 0.008936912752687931, -0.0032848473638296127, -0.009143047034740448, 0.009688305668532848, 0.0029839579947292805, -0.03949796408414841, 0.00999418180435896, 0.013644751161336899, -0.012135317549109459, 0.0023223338648676872, -0.02960352413356304, 0.015014545992016792, 0.008158923126757145, 0.006223921664059162, -0.02502867579460144, -0.04029590263962746, 0.006539772264659405, -0.0027030170895159245, -0.020560219883918762, 0.045562297105789185, 0.008770675398409367, -0.018897846341133118, -0.006809076759964228, -0.034923113882541656, -0.02312692254781723, -0.013046297244727612, -0.004162579774856567, -0.0225018709897995, 0.0064566535875201225, 0.005076884757727385, 0.05178621783852577, 0.004415260627865791, 0.02533455193042755, 0.02183692157268524, -0.008744077757000923, -0.00791954156011343, -0.024150943383574486, 0.003973069600760937, -0.014070318080484867, -0.042689718306064606, 0.026385171338915825, -0.021038983017206192, 0.013059595599770546, -0.035401877015829086, -0.02981630712747574, 0.03909899294376373, 0.006430055480450392, 0.014682071283459663, 0.029071565717458725, 0.005306291859596968, 0.006090931594371796, 0.012647327966988087, 0.0029889452271163464, -0.03947136551141739, -0.00848474819213152, 0.016996093094348907, -0.032263319939374924, 0.037769097834825516, -0.013737844303250313, 0.00020831602159887552, 0.004285595379769802, 0.015559803694486618, 0.012128667905926704, 0.011603358201682568, -0.003510930109769106, 0.008178871124982834, 0.006380184553563595, 0.01633114367723465, -0.013425317592918873, -0.004917297046631575, -0.03157177194952965, -0.010599285364151001, 0.0014803424710407853, -0.033034659922122955, 0.029709916561841965, 0.02376527339220047, -0.02472279965877533, 0.01730196923017502, 0.015586401335895061, -0.01583908312022686, 0.005834926385432482, -0.020347435027360916, -0.013086194172501564, 0.005106807220727205, -0.0342581681907177, 0.021637436002492905, 0.00926938746124506, 0.003876651870086789, 0.024496717378497124, 0.02488238736987114, -0.014934752136468887, 0.018605269491672516, 0.018086610361933708, -0.030933421105146408, 0.02360568568110466, 0.005675338674336672, -0.017049290239810944, -0.013192585669457912, 0.00641675665974617, 0.0143362982198596, 0.041891779750585556, 0.0031269220635294914, -0.0015243953093886375, -0.0013839248567819595, 0.01977558061480522, -0.02329980954527855, 0.049498796463012695, 0.008052530698478222, 0.01712908409535885, 0.005017039366066456, 0.009315934032201767, -0.01649073138833046, 0.037024352699518204, -0.015586401335895061, -0.0399235300719738, 0.0026165738236159086, -0.0013207547599449754, -0.019921869039535522, 0.009222840890288353, -0.014788462780416012, 0.00823871698230505, -0.0005136730032972991, 0.024124344810843468, -0.013039647601544857, -0.01522732898592949, 0.011330729350447655, 0.014535782858729362, 0.012188512831926346, -0.012946554459631443, -0.012141966260969639, 0.02505527436733246, 0.0011661540484055877, 0.0020862771198153496, -0.014708668924868107, 0.004687889479100704, 0.014362895861268044, -0.013046297244727612, -0.0029640095308423042, 0.013525060378015041, -0.010413099080324173, 0.008132324554026127, -0.0024254010058939457, -0.02536115050315857, 0.013910730369389057, 0.00507023511454463, -0.007001911755651236, 0.009322583675384521, -0.00799268577247858, 0.025547336786985397, 0.0008432383183389902, -0.012128667905926704, 0.006127504166215658, -0.01069237757474184, -0.003776909550651908, 0.005582245998084545, -0.0040029920637607574, 0.010266810655593872, 0.03133239224553108, -0.0005868173902854323, 0.029443936422467232, -0.0065198238007724285, -0.003617321839556098, 0.010812068358063698, -0.029576925560832024, -0.02215609699487686, 0.006253844127058983, 0.0005560634890571237, 0.018126506358385086, 0.020054858177900314, 0.03181115537881851, 0.02058681659400463, 0.01586567983031273, -0.03380599990487099, -0.030321668833494186, -0.005256420932710171, -0.012793616391718388, -0.025002077221870422, -0.0010497880866751075, -0.0008968497859314084, 0.021903416141867638, -0.0024952206294983625, 0.02061341516673565, 0.02268805541098118, 0.0009001745493151248, 0.0071681491099298, -0.01045964565128088, -0.030321668833494186, 0.0015268889255821705, 0.04734436050057411, 0.004172554239630699, -0.012800266034901142, 0.0402161069214344, -0.0084913969039917, -0.04992436245083809, 0.003717064158990979, -0.01054608915001154, 0.01839248649775982, -0.039364974945783615, 0.00328817218542099, -0.0014246529899537563, 0.0167700108140707, 0.0017521403497084975, 0.0164774339646101, -0.010572686791419983, -0.026491563767194748, -0.016384340822696686, 0.028087440878152847, 0.017927022650837898, -0.01411021500825882, -0.010346604511141777, 0.0027246279641985893, -0.013910730369389057, 0.042530130594968796, -0.02822043001651764, -0.026996925473213196, -0.019881971180438995, 0.016849804669618607, -0.024962181225419044, 0.047291163355112076, 0.008125674910843372, 0.031944144517183304, -0.0012692211894318461, 0.019709084182977676, 0.009555315598845482, -0.036386001855134964, 0.020999085158109665, 0.006888870615512133, -0.004884049762040377, -0.022927436977624893, -0.004026265349239111, -0.0001905494136735797, -0.003372953273355961, -0.005289668217301369, -0.007261241786181927, -0.028326822444796562, -0.007587066851556301, 0.02328651025891304, -0.03489651903510094, 0.008943562395870686, 0.013711245730519295, 0.02248857170343399, -0.02726290374994278, -0.04742415249347687, 0.030321668833494186, 0.0010888538090512156, 0.01322583295404911, 0.03332723677158356, -0.010147119872272015, -0.008185520768165588, 0.01363145187497139, 0.029284348711371422, 0.00791954156011343, -0.0014462638646364212, -0.012507688254117966, -0.02899177186191082, -0.02139805443584919, -0.02994929812848568, -0.015945473685860634, -0.0070351590402424335, 0.018738258630037308, -0.01868506334722042, 0.009581913240253925, -0.008517995476722717, 0.01772753708064556, 0.011204388923943043, 0.019137227907776833, -0.012580832466483116, 0.009488820098340511, 0.010725625790655613, -0.0013648075982928276, -0.006396808195859194, 0.04955198988318443, -0.01694289781153202, 0.0021660709753632545, 0.015187432058155537, 0.015347019769251347, -0.016410937532782555, -0.01164325512945652, 0.031598370522260666, 0.00808577798306942, -0.00839830469340086, 0.03167816624045372, -0.019855374470353127, -0.015480009838938713, 0.02790125459432602, 0.0012293242616578937, 0.0060377358458936214, -0.006453328765928745, 0.0057983542792499065, 0.003176793223246932, 0.015373618341982365, 0.052078794687986374, 0.019217021763324738, 0.013724545016884804, 0.007174798287451267, 0.0013540021609514952, 0.003770260140299797, -0.006815725937485695, 0.04074806720018387, 0.006968664471060038, 0.007613664492964745, -0.019762281328439713, 0.00017662704340182245, -0.026385171338915825, 0.05963261425495148, 0.022249190136790276, 0.019895270466804504, -0.02171722985804081, 0.01337877195328474, -0.006499875336885452, 0.006007812917232513, 0.009841243736445904, 0.006822375580668449, -0.0032216773834079504, -0.0005244784406386316, 0.015745989978313446, -0.024004654958844185, 0.014349596574902534, 0.002965671941637993, 0.04963178560137749, 0.007879644632339478, 0.013777741231024265, -0.02121187001466751, 0.011563461273908615, -0.0037902086041867733, 0.03346022590994835, -0.018153104931116104, -0.0020546920131891966, 0.0015069404616951942, 0.002476934576407075, 0.04327487200498581, 0.009335882030427456, -0.035082701593637466, -0.0077400049194693565, 0.03228991851210594, 0.015094339847564697, -0.007061757147312164, -0.004465131554752588, -0.028406616300344467, 0.029896100983023643, 0.035561464726924896, -0.019868671894073486, -0.0036206466611474752, -0.025241458788514137, 0.006104230880737305, 0.007480674888938665, 0.015147535130381584, -0.025321252644062042, -0.0009533704724162817, -0.012999750673770905, 0.023858366534113884, 0.026996925473213196, -0.0036206466611474752, 0.011144543066620827, 0.03912559151649475, 0.019748982042074203, 0.02375197410583496, 0.008504696190357208, 0.0231535192579031, -0.00424237409606576, 0.005492477677762508, 0.008411603048443794, 0.028725791722536087]" -"Using IoT Sensors, TimescaleDB, and Grafana to Control the Temperature of the Nuclear Fusion Experiment at the Max Planck Institute","use case.We’d like to thank David and all of the folks at the Max Planck Institute for Plasma Physics for sharing their story on how they’re monitoring the Wendelstein 7-X fusion reactor’s heating system using TimescaleDB.We’re always keen to feature new community projects and stories on our blog. If you have a story or project you’d like to share, reach out on Slack (@Ana Tavares), and we’ll go from there.The open-source relational database for time-series and analytics.Try Timescale for free",https://www.timescale.com/blog/using-iot-sensors-timescaledb-and-grafana-to-control-the-temperature-of-the-nuclear-fusion-experiment-in-the-max-planck-institute/,106,"[0.006297644227743149, 0.02305917628109455, 0.04174111410975456, -0.005775522440671921, 0.032185573130846024, 0.013939930126070976, -0.030840933322906494, 0.012580983340740204, -0.007560033816844225, -0.036820296198129654, 0.019125383347272873, -0.03404518589377403, -0.02089916728436947, -0.019454391673207283, 0.05547362565994263, 0.058563441038131714, 0.0034527969546616077, 0.010907333344221115, -0.04511702433228493, 0.04056812822818756, -0.0192970409989357, 0.01014203205704689, 0.03101258911192417, 0.01360376924276352, -0.009720043279230595, -0.019325649365782738, -0.04691941663622856, 0.047949355095624924, 0.04534589871764183, -0.05252685770392418, 0.0058005559258162975, -0.03885156661272049, -0.019540220499038696, 0.032300014048814774, -0.004191277083009481, 0.021356917917728424, 0.030697885900735855, -0.004023196641355753, 0.008175135590136051, -0.0028967016842216253, -0.03484624996781349, -0.007102283649146557, 0.01991214230656624, 0.05209771543741226, -0.015248809941112995, -0.04134058207273483, -0.061224114149808884, -0.009677129797637463, 0.05990808457136154, 0.04443039745092392, 0.02885258011519909, -0.008518449030816555, -0.025305014103651047, -0.05095333978533745, 0.021728839725255966, -0.00931951217353344, 0.04534589871764183, 0.04537450894713402, 0.003980282694101334, -0.03621950000524521, -0.021571487188339233, -0.016722194850444794, 0.022558512166142464, 0.036391157656908035, -0.02972516603767872, 0.0008256494184024632, -0.006433538626879454, 0.022372551262378693, 0.0023960373364388943, 0.026792703196406364, 0.022830301895737648, 0.03250027820467949, -0.015849607065320015, -0.02170022949576378, 0.017795046791434288, -0.04711968079209328, -0.06717487424612045, 0.02513335831463337, -0.02047002501785755, -0.018882203847169876, 0.013582312501966953, -0.015034239739179611, -0.015677951276302338, 0.02972516603767872, 0.00262670055963099, -0.029024235904216766, 0.011529588140547276, 0.012158994562923908, -0.022572817280888557, -0.0018417300889268517, -0.025290708988904953, 0.043543506413698196, -0.002143916906788945, 0.018438758328557014, 0.014648012816905975, 0.025362232699990273, -0.015220200642943382, 0.019397173076868057, 0.025161966681480408, 0.0628262385725975, -0.0014662317698821425, -0.05358540639281273, -0.03127007558941841, -0.014762450009584427, 0.03556148335337639, -0.023145005106925964, -0.02228672243654728, 0.013582312501966953, 0.0026374291628599167, 0.005585985258221626, -0.06997859477996826, -0.04331463202834129, -0.05398593842983246, -0.01604987308382988, -0.016736498102545738, -0.005178301595151424, 0.001445668749511242, -0.025805678218603134, 0.0032954453490674496, -0.003343723714351654, -0.03590479865670204, 0.014276090078055859, 0.0003012927481904626, 0.02623482048511505, 0.014833973720669746, -0.02666396088898182, -0.007402682211250067, -0.022200893610715866, -0.030125698074698448, 0.022644339129328728, 0.0033508760388940573, -0.033873528242111206, 0.015964044257998466, -0.030955370515584946, -0.013117410242557526, -0.01326045673340559, -0.02619190514087677, -0.03724943846464157, 0.004176972433924675, -0.01007050834596157, 0.03378770127892494, -0.0009141597547568381, 0.05155413970351219, 0.004219886381179094, -0.004652603529393673, 0.011007466353476048, 0.01659345254302025, 0.010728524997830391, 0.008704409934580326, -0.040510911494493484, -0.0050638639368116856, -0.019282735884189606, -0.04491675645112991, -0.0007787120994180441, 0.02367427758872509, -0.03438849747180939, 0.032156966626644135, 0.04420152306556702, -0.013346284627914429, -0.018009617924690247, 0.02338818460702896, 0.02320222370326519, -0.030125698074698448, 0.0014832186279818416, -0.03172782436013222, 0.01225912757217884, -0.03710639104247093, -0.01196588110178709, -0.07135184109210968, 0.010921638458967209, -0.05135387182235718, -0.043972648680210114, -0.017466038465499878, 0.05527336150407791, 0.05410037562251091, 0.002514051040634513, 0.020255455747246742, -0.04008176922798157, -0.030469011515378952, -0.031127026304602623, -0.05844900384545326, -0.030268745496869087, -0.02210076153278351, -0.0032453788444399834, -0.013017277233302593, 0.011715549044311047, -0.08319613337516785, 0.010485345497727394, 0.014705231413245201, 0.0331869050860405, -0.03564731404185295, 0.030154308304190636, 0.049637310206890106, 0.026106078177690506, 0.01809544488787651, -0.03570453077554703, 0.026034554466605186, -0.011307865381240845, -0.02753654681146145, 0.006340558174997568, -0.016951069235801697, 0.01057832594960928, 0.005796979647129774, -0.01933995448052883, 0.022887520492076874, -0.0052677057683467865, -0.0061689019203186035, 0.02607746794819832, -0.05613164231181145, -0.021914800629019737, 0.01140084583312273, -0.0031738553661853075, 0.020999299362301826, -0.011407998390495777, -0.011422302573919296, -0.02560541220009327, -0.020183932036161423, -0.00530704390257597, -0.011064684949815273, -0.007667319383472204, -0.005786251276731491, 0.093667171895504, 0.0006361121195368469, -0.026106078177690506, -0.039709847420454025, 0.042256083339452744, 0.03021152690052986, -0.003626241348683834, 0.04783491790294647, 0.0355328731238842, -0.023617058992385864, -0.044344570487737656, 0.008404010906815529, -0.06162464618682861, -0.001706729526631534, 0.008961894549429417, -0.029024235904216766, 5.8224599342793226e-05, 0.02232963591814041, -0.024904482066631317, 0.0014081188710406423, -0.020784728229045868, 0.006269034929573536, 0.022172285243868828, 0.016078483313322067, 0.010864419862627983, -0.009841633960604668, -0.06562996655702591, 0.02863800898194313, 0.04829266667366028, 0.02221519872546196, 0.025161966681480408, 0.01154389325529337, -0.04096866026520729, 0.017709217965602875, -0.04239913076162338, -0.04405847564339638, 0.04640444740653038, 0.033616043627262115, -0.026578132063150406, 0.02162870578467846, -0.03238584101200104, -0.024360904470086098, 0.037306658923625946, -0.05927867814898491, 0.03687751665711403, 0.0357617512345314, -0.03538982942700386, 0.004134058486670256, -0.022959044203162193, -0.00026441345107741654, -0.0012212637811899185, 0.026678266003727913, -0.05450090765953064, -0.027479328215122223, 0.0037692885380238295, 0.035189561545848846, 0.0011676211142912507, 0.0037549836561083794, 0.014454899355769157, -0.0037978978361934423, -0.047405775636434555, -0.025691241025924683, 0.001603020471520722, -0.009426796808838844, 0.008289573714137077, -0.003965978045016527, 0.016064178198575974, 0.01391847338527441, -0.05850622430443764, -0.017637694254517555, 0.02597733587026596, -0.004867174196988344, -0.036648642271757126, 0.022672949358820915, 0.020255455747246742, 0.00838970672339201, -0.002741138217970729, -0.047148291021585464, -0.0037764408625662327, 0.009040570817887783, -0.002424646634608507, 0.04285687953233719, -0.01014203205704689, -0.009441101923584938, 0.05155413970351219, 0.005128235090523958, -0.02958211861550808, 0.01486258301883936, 0.022501293569803238, 0.007581491023302078, -0.021142346784472466, 0.0315275602042675, 0.0077960616908967495, -0.01882498525083065, 0.003704917384311557, 0.05063863843679428, 0.0322427935898304, -0.015291724354028702, -0.08016353845596313, -0.011343627236783504, -0.06969249993562698, -0.025777069851756096, -0.008439772762358189, 0.01984061859548092, 0.006851951126009226, 0.037049174308776855, -0.01050680223852396, 0.017966702580451965, 0.013253304176032543, 0.0024014015216380358, -0.041197534650564194, 0.0385940819978714, -0.004992340225726366, -0.010978857055306435, -0.045574773102998734, 0.02903854101896286, 0.011851443909108639, -0.054186202585697174, 0.01966896280646324, -0.039566799998283386, -0.027422109618782997, -0.07329728454351425, 0.0249473974108696, 0.026535218581557274, 0.01715133525431156, 0.008761628530919552, -0.04606113210320473, 0.032013919204473495, -0.013217542320489883, -0.0397670641541481, -0.01637888140976429, -0.039595410227775574, 0.003134517464786768, 0.020984994247555733, -0.036534205079078674, 0.005746913142502308, -0.02057015895843506, -0.014397680759429932, -0.026435084640979767, -0.011529588140547276, 0.03164199739694595, 0.06654546409845352, 0.018481671810150146, 0.00557168060913682, -0.0037764408625662327, -0.033759091049432755, 0.0012069590156897902, -0.019654657691717148, -0.027951383963227272, 0.024604083970189095, -0.025076139718294144, -0.02534792758524418, 0.0006656155455857515, -0.0729539692401886, -0.014011453837156296, 0.08422607183456421, -0.008847457356750965, 0.015577818267047405, 0.015005630441009998, 0.05636051669716835, -0.002662462182343006, 0.013503637164831161, -0.012409327551722527, 0.0004257883410900831, 0.0007237283862195909, 0.004230615217238665, 0.018195578828454018, -0.03913765773177147, 0.009970376268029213, 0.07186681032180786, -0.04586086794734001, 0.015291724354028702, -0.040110379457473755, 0.012287736870348454, 0.023502621799707413, -0.010077660903334618, 0.06843368709087372, 0.05235520005226135, -0.01626444421708584, -0.02437520958483219, 0.0030558414291590452, -0.03178504481911659, 0.008504143916070461, 0.00046177359763532877, 0.0315275602042675, -0.0024121301248669624, 0.02802290767431259, -0.03450293466448784, -0.034674592316150665, -0.050037842243909836, -0.00897619966417551, 0.03596201539039612, 0.012981515377759933, 0.013582312501966953, -0.029353244230151176, -0.04205581918358803, 0.05610303208231926, -0.023431098088622093, 0.050867512822151184, -0.037735797464847565, 0.024389512836933136, 0.006977117620408535, -0.016092786565423012, -0.013210390694439411, 0.014612250961363316, 0.040625348687171936, -0.011064684949815273, -0.005668237339705229, -0.04508841410279274, -0.019726181402802467, 0.02367427758872509, 0.026821311563253403, -0.01656484231352806, 0.011171970516443253, 0.0018023921875283122, 0.06562996655702591, 0.0028251782059669495, 0.059221457690000534, 0.029238807037472725, 0.014311851933598518, -0.013997148722410202, 0.003844388062134385, 0.009927461855113506, 0.0409400500357151, -0.04325741156935692, 0.0011586806504055858, -0.002068817149847746, -0.017895178869366646, 0.002199347596615553, 0.07730259746313095, -0.06408505886793137, 0.02119956538081169, 0.006000821478664875, -0.03181365132331848, -0.029210196807980537, 0.014934106729924679, 0.006841222755610943, 0.007306125480681658, 0.009305207058787346, -0.005560952238738537, 0.03464598208665848, -0.07118018716573715, -0.03699195384979248, -0.01298866793513298, -0.05990808457136154, 0.030182916671037674, 0.011465216986835003, -0.011114751920104027, -0.05101056024432182, 0.012015948072075844, 0.024775739759206772, -0.031184246763586998, -0.00039874351932667196, -0.03713500127196312, 0.009569844231009483, 0.0005024526035413146, -0.005982940550893545, 0.045002587139606476, -0.021070823073387146, 0.03207113593816757, -0.00469551794230938, -0.0016226894222199917, 0.06723208725452423, 0.015005630441009998, 0.05979364737868309, 0.006569433491677046, -0.016107091680169106, -0.00838970672339201, -0.0017192461527884007, -0.005621747113764286, -0.003484982531517744, 0.05515892431139946, -0.017451733350753784, 0.02355984039604664, -0.032671935856342316, -0.05372845381498337, -0.045002587139606476, -0.008411163464188576, -0.003163126762956381, -0.015134372748434544, 0.026878532022237778, -0.01856750063598156, 0.05369984358549118, -0.008032089099287987, 0.034817639738321304, -0.04334324225783348, 0.014690927229821682, 0.005879231728613377, -0.006648109294474125, 0.021943408995866776, -0.00987024325877428, 0.028666619211435318, -0.0009745077113620937, -0.010535411536693573, 0.0013258669059723616, 0.007048640865832567, 0.000902090163435787, -0.018009617924690247, -0.005400024354457855, -0.012573831714689732, -0.013568008318543434, -0.019983666017651558, 0.0008158149430528283, 0.004956578370183706, 0.0016083846567198634, -0.05527336150407791, -0.06402783840894699, -0.019854923710227013, 0.011372236534953117, 0.0017961339326575398, -0.011021771468222141, 0.006090226117521524, -0.022057848051190376, -0.06191074103116989, -0.00032654948881827295, 8.750452980166301e-05, -6.572618531208718e-06, -0.018581805750727654, 0.02579137310385704, 0.023073481395840645, 0.03750692307949066, 0.0005462607368826866, 0.025290708988904953, 0.017895178869366646, 0.0017281866166740656, -0.017594780772924423, -0.0012203697115182877, 0.016278749331831932, 0.04551755636930466, 0.014991325326263905, -0.04629001021385193, 0.019468696787953377, -0.00891898013651371, 0.012094623409211636, 0.018038226291537285, 0.008382554166018963, -0.01579238846898079, 0.007745995186269283, 0.018338626250624657, -0.010821505449712276, 0.00462399423122406, -0.01258813589811325, 0.009062027558684349, -0.026249123737215996, -0.001296363421715796, 0.016221528872847557, -0.04523146152496338, -0.061052460223436356, 0.01486258301883936, -0.03916626796126366, -0.01421171985566616, -0.0029932584147900343, 0.016908155754208565, 0.009734348393976688, 0.023845935240387917, -0.030583448708057404, 0.011057533323764801, 0.0076530142687261105, -0.001392920152284205, -0.021614402532577515, -0.0002784946409519762, -0.017737828195095062, 0.07438443601131439, -0.012144690379500389, -0.0017880875384435058, 0.01076428685337305, 0.012287736870348454, 0.02254420705139637, -0.0037335266824811697, -0.008039241656661034, -0.002442527562379837, 0.009426796808838844, -0.01318893302232027, 0.026106078177690506, -0.0016656034858897328, 0.019454391673207283, 0.03607645258307457, -0.025147663429379463, 0.0357617512345314, -0.008067850954830647, 0.005575256887823343, -0.009727195836603642, -0.008911828510463238, 0.00899050384759903, 0.019926447421312332, 0.016951069235801697, 0.010242165066301823, 0.022773081436753273, 0.00645857211202383, -0.0056467801332473755, -0.028223173692822456, -0.01147236954420805, -0.021714534610509872, 0.002653521951287985, 0.00921222660690546, 0.007810366339981556, -0.005932874511927366, 0.009398187510669231, -0.008110764436423779, -0.024589778855443, -0.026792703196406364, -0.003783593187108636, -0.03147033974528313, 0.004716974683105946, 0.01974048651754856, -0.02320222370326519, -0.02210076153278351, 0.003635181812569499, 0.031355902552604675, 0.022672949358820915, -0.015034239739179611, 0.05493004620075226, 0.011751310899853706, 0.010885876603424549, 0.03324412181973457, 0.0291815884411335, 0.0291815884411335, 0.012688268907368183, -0.03541843593120575, 0.010313688777387142, -0.006998574361205101, -0.0011568926274776459, -0.007213145028799772, 0.05040976405143738, -0.00292352307587862, 0.006665990222245455, 0.010163489729166031, 0.017895178869366646, -0.026792703196406364, -0.035475656390190125, -0.01765199936926365, 0.04248495772480965, 0.05289877951145172, 0.005149691831320524, -0.029667947441339493, -0.032300014048814774, -0.02454686537384987, -0.009734348393976688, 0.00015086987696122378, -0.015534903854131699, -0.0008372719748876989, -0.005578833166509867, 0.012116081081330776, -0.03035457246005535, 0.011515283025801182, -0.009877394884824753, 0.011636873707175255, 0.008847457356750965, 0.053184874355793, 0.0343598909676075, 0.018295710906386375, 0.026606742292642593, 0.026292039081454277, 0.047949355095624924, -0.016364576295018196, 0.010707068257033825, -0.009598453529179096, 0.017308687791228294, 0.03750692307949066, -0.0336446538567543, -0.009040570817887783, -0.011057533323764801, 0.030812323093414307, 0.0007478675688616931, -0.00020540655532386154, -0.03922348842024803, 0.00961275864392519, 0.03410240635275841, 0.023373879492282867, -0.01637888140976429, 0.010342298075556755, -0.0017755709122866392, -0.021614402532577515, -0.004824260249733925, -0.04279966279864311, 0.0197690948843956, -0.006079497281461954, -0.031184246763586998, -0.03896600380539894, 0.022057848051190376, -0.00017400326032657176, -0.06614493578672409, -0.03235723078250885, -0.01322469487786293, -0.021385526284575462, 0.01645040512084961, -0.03147033974528313, 0.03147033974528313, -0.018152663484215736, -0.027150319889187813, 0.0030969674699008465, -0.02240115962922573, 0.013174628838896751, -0.006562280934303999, 0.019325649365782738, -0.004234191030263901, 0.020512940362095833, -0.018882203847169876, 0.030039869248867035, -0.02466130256652832, 0.03147033974528313, -0.020956385880708694, -0.017637694254517555, 0.011136208660900593, -0.022601425647735596, 0.010256470181047916, 0.05985086411237717, -0.019969360902905464, -0.014011453837156296, 0.01903955638408661, 0.012244823388755322, 0.017351601272821426, -0.007817518897354603, 0.03922348842024803, -0.03158477693796158, 0.002437163144350052, -0.025147663429379463, -0.013911320827901363, -0.017995312809944153, -0.019540220499038696, 0.011021771468222141, 0.006805460900068283, 0.015234505757689476, 0.019797705113887787, -0.03496068716049194, 0.018395844846963882, 0.022959044203162193, -0.007903346791863441, -0.009720043279230595, -0.003862268989905715, 0.013832644559442997, 0.0037978978361934423, -0.006530095357447863, -0.018796375021338463, -0.022672949358820915, -0.013274761848151684, 0.02732197754085064, 0.024275075644254684, 0.022086456418037415, -0.01107183750718832, 0.02567693591117859, -0.009033418260514736, 0.013782578520476818, -0.01426178589463234, 0.04297132045030594, -0.02958211861550808, 0.016736498102545738, -0.01889650896191597, -0.08868914097547531, -0.005196182057261467, -0.052984610199928284, -0.013496484607458115, 0.01077859103679657, 0.05704714357852936, -0.025662630796432495, -0.03948097303509712, 0.012337803840637207, 0.016979679465293884, 0.0030504772439599037, 0.014283242635428905, -0.0014394103782251477, -0.015406161546707153, -0.03327273204922676, -0.0022386854980140924, -0.0072739399038255215, 0.0033830616157501936, 0.00406611105427146, -0.005045983009040356, -0.021070823073387146, -0.03873712569475174, -0.0036494864616543055, -0.00869725737720728, -0.020012274384498596, 0.02119956538081169, -0.017709217965602875, 0.029353244230151176, -0.05847761407494545, -0.031127026304602623, 0.011028924025595188, 1.6442023479612544e-05, -0.023760106414556503, -0.013181781396269798, 0.027679594233632088, 0.01682232692837715, -0.004824260249733925, -0.020441416651010513, 0.06019417569041252, -0.0428282730281353, -0.0399959422647953, 0.012495155446231365, -0.01659345254302025, 0.0018166968366131186, 0.004852869547903538, 0.010685610584914684, 0.032671935856342316, 0.037735797464847565, 0.013739664107561111, -0.012580983340740204, -0.005868503358215094, 0.0395381897687912, 0.0008766098762862384, -0.018739156424999237, -0.01805253140628338, 0.03793606534600258, 0.009190769866108894, -0.025634022429585457, 0.02155718207359314, -0.018152663484215736, 0.011515283025801182, 0.022587120532989502, -0.011043228209018707, 0.03272915259003639, 0.000670085777528584, 0.02859509550035, 0.003926639910787344, -0.0064299628138542175, -0.021056517958641052, -0.036534205079078674, 0.04059673845767975, -0.02644938975572586, 0.05427203327417374, -0.016765108332037926, -0.02192910574376583, 0.040768396109342575, 0.011844291351735592, -0.013768273405730724, 0.029667947441339493, 0.009240835905075073, 0.005335653200745583, 0.023359574377536774, -0.03433128073811531, 0.025519585236907005, -0.050867512822151184, -0.009484016336500645, 0.01828140579164028, 0.0022368973586708307, 0.029753776267170906, -0.00738837756216526, 0.010184946469962597, -0.02623482048511505, -0.02181466668844223, 0.018252797424793243, -0.004387966822832823, 0.033215511590242386, -0.019196907058358192, -0.001533285016193986, 0.036133673042058945, 0.04019620642066002, 0.012480850331485271, 0.01358946505934, 0.011043228209018707, -0.014054367318749428, -0.010907333344221115, -0.00675897067412734, 0.0021045790053904057, -0.015277419239282608, -0.010392364114522934, 0.007810366339981556, -0.07392668724060059, 0.004141210578382015, -0.016221528872847557, -0.012616745196282864, -1.4961263332224917e-05, 0.02491878718137741, -0.002830542391166091, -0.00043808144982904196, 0.02148566022515297, -0.011129056103527546, -0.019654657691717148, 0.012824163772165775, 0.010950247757136822, 0.013653836213052273, -0.027894165366888046, -0.014876888133585453, -0.00995607115328312, -0.019311344251036644, 0.01758047565817833, -0.01758047565817833, 0.0172943826764822, -0.003039748640730977, 0.022258112207055092, -0.011207732371985912, 0.02816595509648323, -0.010685610584914684, -0.011558197438716888, 0.019282735884189606, 0.006172478199005127, 0.01014203205704689, 0.005796979647129774, 0.01369675062596798, 0.018410148099064827, 0.00828242115676403, -0.0027804761193692684, -0.001681696274317801, 0.03913765773177147, -0.022587120532989502, 0.028766751289367676, -0.0017308687092736363, -0.01936856284737587, 0.042771052569150925, 0.009898852556943893, -0.019354259595274925, 0.004237767308950424, -0.010406669229269028, 0.041025880724191666, -0.010728524997830391, 0.01995505578815937, 0.07026468962430954, 0.0016146430280059576, 0.03913765773177147, 0.022815996780991554, -0.03862268850207329, 0.024976005777716637, 0.042513567954301834, -0.0007965929689817131, -0.0009512625401839614, 0.015177286230027676, 0.003336571156978607, -0.020555853843688965, -0.02313069999217987, 0.013711054809391499, -0.0073812250047922134, -0.008239506743848324, 0.017609085887670517, -0.020698901265859604, 0.028080126270651817, 0.02487587369978428, -0.01386125385761261, -0.038508251309394836, 0.019869228824973106, 0.01080004870891571, 0.059335894882678986, -0.04428735002875328, -0.009691433981060982, -0.01988353207707405, 0.001086263102479279, 0.024646997451782227, 0.03876573592424393, 0.0017210341757163405, 0.01386125385761261, 0.014075824990868568, -0.01805253140628338, -0.00931951217353344, -0.018925117328763008, -0.0060723451897501945, -0.006315525155514479, -0.030955370515584946, -0.011222037486732006, 0.010170641355216503, 0.0141759580001235, 0.018138360232114792, -0.015091458335518837, 0.020670291036367416, -0.00526055321097374, -0.009598453529179096, 0.02414633333683014, -0.012423631735146046, -0.006176054012030363, 0.016750803217291832, 0.0341310128569603, 0.03078371472656727, -0.010857267305254936, -0.0038479643408209085, 0.015506294555962086, -0.030011260882019997, -0.021643010899424553, 0.027522243559360504, 0.0021349764429032803, 0.023173613473773003, -0.019454391673207283, 0.013253304176032543, -0.0023263017646968365, 0.035075124353170395, 0.0265924371778965, -0.03312968462705612, 0.005725455936044455, -0.020484330132603645, 0.0007295397226698697, 0.031212855130434036, -0.009791566990315914, -0.03078371472656727, 0.039309315383434296, 0.00891898013651371, -0.028037212789058685, -0.03424545004963875, -0.03524678200483322, 0.01696537435054779, -0.005596713628619909, 0.03501790389418602, 0.02593442052602768, 0.011601111851632595, -0.025734154507517815, 0.004016044549643993, 0.003565446473658085, -0.01739451475441456, -0.004509556572884321, -0.001725504407659173, -0.040367864072322845, -0.03567592054605484, 0.032814983278512955, 0.001216793549247086, 0.07804644107818604, -0.04176972433924675, -0.003459949279204011, -0.04139780253171921, 0.023688582703471184, -0.003933792468160391, -0.0003068805090151727, 0.027665289118885994, 0.012795554473996162, 0.03378770127892494, 0.010664153844118118, 0.017308687791228294, 0.01999797113239765, -0.010120575316250324, -0.009512625634670258, 0.016650671139359474, 0.008196593262255192, -0.002583786379545927, 0.0026123959105461836, -0.030440401285886765, -0.0030272321309894323, 0.04797796532511711, 0.038937393575906754, 0.031127026304602623, 0.014097281731665134, 0.0023727919906377792, 6.845022653578781e-06, 0.02002657949924469, 0.011171970516443253, 0.02129969745874405, 0.02334527112543583, 0.02812303975224495, -0.004949426278471947, -0.025076139718294144, 0.011300712823867798, 0.02374580129981041, 0.009891699999570847, -0.0010254682274535298, -0.02433229424059391, -0.014032910577952862, 0.012101775966584682, -0.04217025637626648, -0.014283242635428905, 0.03312968462705612, 0.003109484212473035, -0.02583428844809532, 0.021385526284575462, 0.01659345254302025, -0.02626342885196209, 0.0015261326916515827, -0.002285175723955035, -0.04597530514001846, -0.009226531721651554, 0.004123329650610685, 0.01649331860244274, -0.010449583642184734, 0.0037871692329645157, 0.015234505757689476, -0.02331666089594364, 0.02666396088898182, -0.008218050003051758, 0.013446417637169361, -0.02155718207359314, 0.005042406730353832, 0.006987845990806818, -0.0388229563832283, 0.018467368558049202, -0.012995819561183453, 0.03790745511651039, -0.040253426879644394, -0.00835394486784935, -0.017809351906180382, 0.017451733350753784, -0.022916128858923912, -0.03484624996781349, 0.02426077052950859, -0.011722701601684093, 0.03501790389418602, -0.011787072755396366, -0.02381732501089573, -0.003425975563004613, 0.0013383835321292281, -0.0035708106588572264, -0.004892207216471434, 0.015019934624433517, -0.019497305154800415, 0.01366098877042532, -0.005839893594384193, 0.04892207309603691, -0.012738334946334362, -0.005335653200745583, 0.006637380924075842, 0.041283365339040756, -0.0015878216363489628, 0.021771753206849098, -0.014032910577952862, -0.024976005777716637, -0.008046393282711506, 0.057762376964092255, -0.031184246763586998, 0.017280077561736107, 0.022014932706952095, -0.0031667030416429043, -0.01823849231004715, 0.01838153973221779, -0.014977021142840385, -0.005596713628619909, 0.0010236800881102681, 0.004294986370950937, -0.006065192632377148, 0.02308778651058674, 0.009641367942094803, 0.0075457291677594185, 0.0013008336536586285, 0.0037728645838797092, 0.007281092461198568, 0.003969554323703051, -0.014762450009584427, 0.0010505013633519411, 0.0047455839812755585, -0.005771946627646685, 0.012945753522217274, -0.0010710643837228417, 0.03089815191924572, 0.026807008311152458, 0.06723208725452423, 0.03579035773873329, -0.0026410052087157965, -0.0007062945514917374, -7.722302689217031e-05, 0.007291820831596851, -0.017609085887670517, -0.003240014426410198, -0.005264129489660263, 0.04571782052516937, -0.002143916906788945, 0.003944520838558674, -0.017566172406077385, 0.004509556572884321, -0.0018631871789693832, 0.01856750063598156, 0.01510576345026493, -0.01626444421708584, -0.0010549715952947736, 0.00984878558665514, 0.005757641512900591, 0.030469011515378952, 0.00276795937679708, 0.007366920355707407, -0.015778083354234695, -0.045260071754455566, 0.026477999985218048, -0.009562691673636436, -0.019096774980425835, 0.011829987168312073, -0.0009141597547568381, 0.008432620204985142, 0.015735169872641563, 0.033587437123060226, 0.009677129797637463, -0.004784922115504742, 0.00020998853142373264, 0.019597439095377922, 0.0014116950333118439, 8.985139720607549e-05, -0.008961894549429417, -0.01682232692837715, -0.0033151141833513975, -0.031498949974775314, -0.01579238846898079, 0.01988353207707405, -0.04817822948098183, -0.030039869248867035, 0.019754789769649506, 0.0007259635021910071, -0.025033224374055862, -0.009569844231009483, 0.009970376268029213, 0.0005650356761179864, 0.0011229189112782478, 0.014748145826160908, 0.009290902875363827, 0.023173613473773003, 0.005038830451667309, 0.023702887818217278, -0.045832257717847824, -0.0030844509601593018, -0.0013553702738136053, -0.017852265387773514, -0.015506294555962086, 0.0012561314506456256, 0.013289066031575203, -0.012323498725891113, -0.01362522691488266, -0.04734855517745018, -0.007903346791863441, 0.013289066031575203, 0.023988982662558556, 0.016722194850444794, 0.03896600380539894, 0.016808021813631058, 0.0020080222748219967, 0.021843276917934418, 0.015248809941112995, -0.03235723078250885, -0.003057629568502307, 0.015706559643149376, -0.00871871504932642, 0.06357008963823318, 0.006730361375957727, -0.026578132063150406, -0.0030790867749601603, 0.0006030325312167406, 0.006515790708363056, 0.010649848729372025, 0.009441101923584938, 0.04417291283607483, 0.0009172888821922243, 0.011315017938613892, -0.006909170188009739, -0.005371415056288242, -0.044773709028959274, -0.004799226764589548, 0.03101258911192417, -0.02155718207359314, 0.0025194152258336544, -0.011608264409005642, -0.02451825514435768, 0.059221457690000534, -0.0014519270043820143, -0.0187105480581522, -0.016607755795121193, -0.033501606434583664, -0.032013919204473495, 0.0008167089545167983, 0.002426434773951769, 0.005675389897078276, 0.057247407734394073, -0.007717385422438383, 0.007445596158504486, -0.020670291036367416, 0.008039241656661034, -0.053757064044475555, -0.006948507856577635, 0.006186782848089933, -0.0029735895805060863, 0.016407491639256477, -0.0016977890627458692, -0.009877394884824753, 0.008089307695627213, -0.02323083207011223, 0.03444571793079376, -0.04311436414718628, 0.02809443138539791, 0.0015931859379634261, 0.0034492206759750843, 0.020770424976944923, 0.04617557302117348, -0.011865749023854733, 0.04949426278471947, 0.006122411694377661, 0.0005717409658245742, -0.005371415056288242, 0.058820925652980804, 0.017122725024819374, -0.0254194512963295, 0.00015299323422368616, -0.031241465359926224, -0.02047002501785755, 0.03290081024169922, -0.014648012816905975, 0.009383883327245712, 0.004770617466419935, 0.004244919866323471, -0.013639531098306179, -0.03710639104247093, 0.0067410897463560104, 0.017194248735904694, 0.014619403518736362, -0.008754475973546505, -0.02378871664404869, -0.026821311563253403, -0.02623482048511505, -0.03579035773873329, -0.009419645182788372, 0.007853279821574688, -0.0006294067716225982, -0.016464710235595703, 0.0026034554466605186, 0.022959044203162193, -0.023574145510792732, -0.00939103588461876, -0.026091773062944412, -0.02805151604115963, 0.01207316666841507, 0.013947082683444023, -0.01453357469290495, 0.004674060735851526, -0.030297353863716125, 0.00743129150941968, -0.024575473740696907, -0.011272103525698185, 0.00306478189304471, -0.02550528012216091, 0.0063334060832858086, 0.036391157656908035, 0.007509967312216759, 0.019568828865885735, -0.0014152711955830455, 0.005718303844332695, 0.022858910262584686, -0.06191074103116989, -0.02082764357328415, 0.00278584030456841, -0.026578132063150406, -0.0012498731957748532, 0.030983980745077133, -0.0049851881340146065, 0.0302401352673769, 0.022444074973464012, 0.0023620636202394962, 0.0069914222694933414, 0.010914485901594162, -0.02922450192272663, -0.015277419239282608, -0.02842343971133232, -0.014218871481716633, -0.012652507051825523, -0.022572817280888557, -0.002914582611992955, -0.012302041985094547, 0.013396351598203182, 0.013467875309288502, -0.009913156740367413, -0.017308687791228294, -0.002118883654475212, 0.004352204967290163, -0.036791689693927765, 0.03621950000524521, 0.0025980910286307335, -0.021385526284575462, 0.024761436507105827, 0.05381428077816963, 0.003003987018018961, -0.03644837439060211, 0.02783694677054882, -0.0130029721185565, 0.0063727437518537045, -0.024303685873746872, -0.006540824193507433, -0.0029038540087640285, 0.04866458848118782, -0.058363176882267, -0.004931545350700617, 4.6769662731094286e-05, 0.0018345777643844485, -0.020670291036367416, 0.021900495514273643, 0.004545318428426981, -0.04334324225783348, -0.015091458335518837, 0.0223582461476326, -0.014805364422500134, 0.018009617924690247, -0.011000313796103, -0.02418924681842327, -0.010356603190302849, -0.0020384197123348713, -0.005603866185992956, 0.036248110234737396, 0.018081141635775566, 0.010420974344015121, 0.0007943578530102968, -0.013303371146321297, -0.004742008168250322, -0.02242976985871792, 0.010220708325505257, -0.028394829481840134, -0.03204252943396568, -0.029524900019168854, 0.017451733350753784, 0.023574145510792732, -0.011894358322024345, -0.00742413941770792, 0.011222037486732006, -0.0016271596541628242, -0.039051830768585205, 0.023960372433066368, -0.008582820184528828, 0.01519159134477377, -0.005428633652627468, 0.02265864424407482, -0.025762764737010002, -0.020298369228839874, 0.054844219237565994, -0.005807708017528057, -0.027307672426104546, -0.009183617308735847, 0.028223173692822456, -0.0461183525621891, 0.02006949484348297, 0.034531544893980026, -0.0016396762803196907, 0.028294697403907776, 0.002601667307317257, -0.01951161026954651, 0.006673142313957214, -0.023259442299604416, 0.0014689138624817133, -0.00620108749717474, -0.0006495227571576834, 0.006472876761108637, -0.01057832594960928, 0.010034747421741486, 0.03702056407928467, -0.0022994806058704853, 0.03315829485654831, 0.020384198054671288, -0.033616043627262115, 0.011615416035056114, 0.012316347099840641, 0.0008864443516358733, 0.04440178722143173, 0.0055287666618824005, -0.032843589782714844, -0.00964852049946785, 0.009913156740367413, -0.03782162815332413, -0.016808021813631058, 0.03127007558941841, 0.009584149345755577, 0.008110764436423779, 0.0062547302804887295, 0.010020442306995392, 0.010027594864368439, 0.020741814747452736, -0.01626444421708584, -0.006390624679625034, -0.01911107823252678, 0.010463887825608253, 0.009412492625415325, 0.04546033591032028, 0.042370520532131195, 0.0001552283501951024, 0.016765108332037926, 0.04337184876203537, -0.008797390386462212, -0.0007188111776486039, 0.0013509001582860947, 0.06030861660838127, -0.00371206970885396, 0.006326253525912762, 0.015420466661453247, 0.002564117545261979, -0.0032185574527829885, 0.015921130776405334, 0.01717994548380375, 0.01703689806163311, -0.022458378225564957, -0.025548193603754044, -0.02265864424407482, -0.01298866793513298, 0.013510788790881634, 0.0026767670642584562, -0.022057848051190376, -0.03344438970088959, 0.01762339100241661, -0.022644339129328728, 0.005128235090523958, -0.0012230518041178584, 0.059736426919698715, -0.019897837191820145, -0.005346381571143866, 0.00469551794230938, -0.0074599008075892925, 0.0035922678653150797, -0.0025158391799777746, -0.020927775651216507, 0.00011969010665779933, -0.025018921121954918, 0.030697885900735855, -0.007123740389943123, 0.00862573366612196, -0.03950957953929901, 0.014283242635428905, 0.022486988455057144, -0.01269542146474123, 0.04402986541390419, -0.011422302573919296, -2.8665277568507008e-05, 0.00325968349352479, 0.010342298075556755, -0.03676307946443558, -0.006873408332467079, -0.054958656430244446, 0.005593137815594673, 0.004252071958035231, 0.006104530766606331, -0.045660603791475296, -0.02583428844809532, -0.031098417937755585, -0.004552470985800028, 0.012209061533212662, -0.032671935856342316, -0.016836632043123245, 0.01933995448052883, 0.008411163464188576, 0.02049863524734974, -0.013832644559442997, 0.020384198054671288, -0.014340461231768131, -0.01816696859896183, 0.03444571793079376, 0.003722798079252243]" -How Trading Strategy Built a Data Stack for Crypto Quant Trading,"This is an installment of our “Community Member Spotlight” series, where we invite TimescaleDB community members to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition, Mikko Ohtamaa, CEO at Trading Strategy, joins us to share how they give traders and investors direct access to high-quality trading strategies and real-time control over their assets by integrating market data about thousands of crypto assets, algorithms, profitability simulation, and more into one solution. Thanks to TimescaleDB, they can focus on solving business problems without a need to build the infrastructure layer.Trading Strategyis a protocol for algorithmic trading of crypto-assets in decentralized markets. Cryptocurrency traders and strategy developers can utilize the protocol to easily access and trade on next-generation markets with sophisticated tools that have been traditionally available only for hedge funds.Users don’t need to have a deep understanding of blockchain technology, as the Trading Strategy protocol is designed to make a complex topic easier to understand and approach. This is accomplished by integrating market data feeds for thousands of crypto assets, algorithm development, profitability simulation, trade execution, and smart contract-based treasury management tools into one vertically integrated package.About the teamMy name isMikko Ohtamaa. I am the CEO of Trading Strategy. I have been a software developer for 25 years. For the last decade, I have been CTO of various cryptocurrency and fintech companies. I am also one of the firstEthereum Dappdevelopers and Solidity smart contract auditors.Trading Strategy is a remote-first company with five people. We have offices in London and Gibraltar. We use a combination of remote working tools (Discord, Github, Google Workspace) and more intense get-together sprint weeks to manage the software development.As our work is highly technical, all team members have backgrounds in software development, quantitative finance, or blockchain technologies.About the projectTrading Strategy operates on market data feeds, for which raw data is collected directly from the blockchains. Most market data is heavily time-series, though there are also elements of product catalog features like different trading pairs, tokens, and exchanges.Because of the powerful combination of PostgreSQL and TimescaleDB, we can store the data in a single database,making it simple for software developers to build on top of this and this, in turn, saves us a lot of software development costs.We",https://www.timescale.com/blog/how-trading-strategy-built-a-data-stack-for-crypto-quant-trading/,484,"[0.009817959740757942, -0.008470667526125908, 0.05029891058802605, 0.012782002799212933, 0.05063055083155632, 0.026241106912493706, -0.02865932323038578, 0.048999980092048645, -0.015476587228477001, 0.004573884420096874, 0.035209234803915024, -0.03338520973920822, 0.03357866778969765, -0.04095768183469772, 0.03863619640469551, 0.02555018663406372, -0.029294969514012337, -0.009016494266688824, -0.06157470867037773, 0.031201904639601707, 0.011738714762032032, 0.006335727870464325, 0.01609841361641884, 0.023712342604994774, -0.01674787886440754, -0.010723063722252846, -0.04526901617646217, 0.04537956416606903, -0.024886904284358025, -0.0708053857088089, 0.03675689548254013, -0.0350157804787159, -0.033633939921855927, 0.009921598248183727, 0.042698800563812256, -0.03183755278587341, 0.029239695519208908, 0.007427379954606295, 0.03261138126254082, -0.004414972849190235, -0.019456280395388603, -0.020879574120044708, 0.019166095182299614, 0.06019287183880806, -0.0397140271961689, -0.01894500106573105, -0.023657068610191345, -0.030897900462150574, 0.0316164568066597, 0.011324163526296616, -0.027236029505729675, 0.027885494753718376, -0.021183578297495842, -0.025564005598425865, 0.012664546258747578, -0.049856722354888916, -0.01230526901781559, 0.037585996091365814, -0.01127579901367426, 0.021985044702887535, -0.0054617151618003845, -0.028935691341757774, 0.04344499111175537, 0.02871459722518921, 0.0035513241309672594, -0.011006341315805912, -0.006090451497584581, 0.004228424746543169, -0.030317530035972595, 0.03916129469871521, 0.05264803394675255, -0.0021383946295827627, 0.044108275324106216, 0.0025754007510840893, 0.028023676946759224, -0.05204002559185028, -0.052841491997241974, 0.048944707959890366, 0.007579382508993149, -0.0008200345910154283, 0.007303014863282442, -0.009037221781909466, -0.01810207962989807, 0.005803720094263554, 0.010591789148747921, -0.04648503661155701, -0.030400440096855164, -0.015435132198035717, 0.01390129141509533, -0.0012021991424262524, -0.056157901883125305, 0.050879281014204025, 0.010764519684016705, 0.025066543370485306, 0.0433620810508728, 0.0013187917647883296, -0.0015847956528887153, 0.0519847497344017, -0.007489562965929508, 0.01196671836078167, 0.016139870509505272, -0.007365197408944368, 0.02121121622622013, 0.012595455162227154, 0.028990965336561203, 0.013569650240242481, 0.04457809776067734, 0.0037482359912246466, -0.014357298612594604, -0.0014017020585015416, -0.11673768609762192, -0.014882396906614304, -0.0033043203875422478, 0.006791734602302313, 0.0012522907927632332, 0.00952086504548788, -0.0012747456785291433, 0.015904957428574562, -0.010108145885169506, -0.0016253871144726872, -0.02727748453617096, 0.004639521706849337, 0.01695515401661396, 0.012795821763575077, -0.010101237334311008, -0.008588124066591263, -0.012021992355585098, -0.061961621046066284, -0.02416834980249405, -0.011123796924948692, 0.024251259863376617, 0.007828112691640854, 0.018115898594260216, 0.014550755731761456, -0.03932711482048035, -0.016844607889652252, -0.06544385850429535, 0.009113222360610962, -0.039879847317934036, -0.018143534660339355, -0.013562741689383984, -0.04684431478381157, 0.009189223870635033, 0.015131128020584583, -0.02631019800901413, -0.01596023142337799, -0.01239508856087923, 0.043251533061265945, -0.05074109882116318, -0.009569229558110237, 0.004117877688258886, -0.0671573355793953, -0.03954820707440376, 0.015891138464212418, 0.07025264948606491, 0.030289892107248306, 0.011386346071958542, 0.054168056696653366, 0.006169907283037901, -0.02071375399827957, 0.024734903126955032, 0.07434289157390594, -0.026766205206513405, 0.019843196496367455, -0.03590015694499016, -0.001064879004843533, 0.012927096337080002, -0.03377212584018707, -0.06218271702528, -0.004933162126690149, -0.027830220758914948, -0.05262039601802826, -0.055688079446554184, 0.04112350195646286, 0.014274388551712036, -0.050934553146362305, -0.0017497525550425053, -0.030732080340385437, 0.012858004309237003, -0.04432936757802963, -0.08064407110214233, -0.014288206584751606, -0.020313020795583725, 0.009631412103772163, -0.01337619312107563, -0.04717595502734184, -0.03355102986097336, -0.01169035118073225, 0.01883445493876934, 0.0543338768184185, -0.023629432544112206, 0.07517199218273163, 0.00777283962816, 0.031754638999700546, -1.0296314030711073e-05, -0.02293851412832737, 0.02709784545004368, 0.03310884162783623, -0.007911023683845997, 0.0032110463362187147, 0.041786786168813705, 0.013037643395364285, 0.03233501315116882, 0.012768184766173363, 0.023518884554505348, -0.022012682631611824, -0.004698249511420727, -0.012519453652203083, -0.055190615355968475, -0.023339247331023216, 0.014799486845731735, -0.00034567544935271144, 0.012353633530437946, -0.03769654408097267, -0.030345166102051735, -0.005313167814165354, -0.04455046355724335, 0.0025045815855264664, -0.005292440298944712, 0.042311884462833405, -0.020658480003476143, 0.0321415551006794, -0.015863502398133278, -0.010584880597889423, -0.005299349315464497, 0.0410129576921463, 0.055632803589105606, -0.019373370334506035, 0.03153354674577713, 0.000837307539768517, 0.002286942210048437, -0.013320920057594776, -0.004504792392253876, -0.04861306771636009, 0.04098531976342201, -0.00786265917122364, 0.014440208673477173, -0.03147827461361885, -0.006235544569790363, 0.0020451205782592297, 0.008560487069189548, 0.018406083807349205, 0.020423568785190582, -0.019787922501564026, -0.04214606434106827, -0.0006347818998619914, -0.047562871128320694, -0.037033263593912125, -0.019014092162251472, 0.046125758439302444, 0.042367156594991684, -0.003319866256788373, -0.030372802168130875, -0.04220133647322655, -0.013479831628501415, -0.03283247351646423, -0.005340804345905781, 0.023242518305778503, -0.016443874686956406, 0.0028137678746134043, 0.037917640060186386, -0.0718555822968483, -0.04775632545351982, -0.031229542568325996, -0.05311786010861397, 0.038912560790777206, 0.008574306033551693, 0.000661123194731772, 0.02061702497303486, -0.01701042801141739, 0.05541171133518219, 0.033136479556560516, 0.004484064877033234, -0.045075561851263046, 0.005592989735305309, -0.04969089850783348, -0.011517620645463467, 0.0009983780328184366, -0.013424557633697987, -0.0005915994406677783, 0.003502959618344903, -0.0035962339024990797, 0.016029322519898415, -0.0016176142962649465, 0.01387365534901619, 0.04601521044969559, 0.01880681701004505, 0.03286011144518852, -0.018792998045682907, -0.03241792321205139, 0.00266522029414773, 0.011393255554139614, 0.046650856733322144, -0.024057801812887192, 0.030234618112444878, 0.009721231646835804, -0.006470457185059786, 0.006878099404275417, -0.016568239778280258, -0.03435249626636505, 0.035651423037052155, -0.014661302790045738, 0.017728984355926514, -0.049967266619205475, -0.008056116290390491, -0.03158881887793541, 0.015310767106711864, 0.01800535060465336, -0.014398753643035889, -0.02789931185543537, 0.021750133484601974, -0.026558930054306984, 0.001716933911666274, -0.01721770316362381, -0.0047915237955749035, -0.004034967627376318, 0.061961621046066284, -0.024209804832935333, -0.03100844845175743, -0.06328818947076797, -0.04200787842273712, -0.045655932277441025, 0.001012196415103972, 0.012533271685242653, 0.020686117932200432, -0.029820067808032036, 0.022510142996907234, -0.008318665437400341, 0.038967836648225784, -0.02155667543411255, 0.04151041805744171, -0.022164683789014816, 0.006567185744643211, -0.028880417346954346, -0.04607048258185387, 0.020879574120044708, 0.011538348160684109, -0.001963937422260642, -0.00646700244396925, 0.010577971115708351, 0.003060771618038416, -0.007973206229507923, -0.05892157927155495, -0.007220104336738586, 0.07257413864135742, -0.0009482864406891167, -0.02364325150847435, 0.003682598704472184, 0.025149455294013023, 0.011172161437571049, -0.056600090116262436, -0.006221726071089506, 0.03355102986097336, -0.0300411619246006, -0.020520295947790146, -0.027913130819797516, -0.011814716272056103, 0.012180902995169163, -0.060027047991752625, -0.031865186989307404, -0.024444716051220894, 0.026918206363916397, 0.006916100159287453, -0.0039762393571436405, 0.02369852364063263, 0.02408543974161148, -0.03907838463783264, 0.0019449371611699462, -0.021114487200975418, -0.04499265179038048, 0.02335306443274021, 0.032279741019010544, -0.031257178634405136, 0.012125629931688309, -0.0352645106613636, -0.009154677391052246, 0.05546698346734047, 0.035983067005872726, 0.03733726590871811, 0.05892157927155495, 0.05397459864616394, 0.011220525950193405, -0.02633783593773842, -0.0012695637997239828, -0.015711499378085136, 0.0525098517537117, 0.021225033327937126, 0.004663703963160515, -0.05021599680185318, 0.0010424241190776229, 0.02528763748705387, -0.04814324155449867, -0.03393794596195221, 0.03487759456038475, -0.0016202052356675267, 0.022565416991710663, 0.03711617365479469, 0.048557791858911514, 0.06654932349920273, -0.023297790437936783, 0.007050829008221626, 0.002046847715973854, -0.030179345980286598, -0.004007330629974604, -0.006062814965844154, 0.004245697520673275, -0.022371958941221237, 0.028825143352150917, -0.021307945251464844, 0.01555949728935957, 0.0032214100938290358, -0.0436384491622448, 0.023449793457984924, -0.03963111713528633, 0.0035375056322664022, -0.014633665792644024, -0.012477998621761799, 0.02132176235318184, 0.0593084953725338, 0.035983067005872726, -0.009748868644237518, -0.03286011144518852, -0.015766773372888565, -0.013949655927717686, -0.032721929252147675, 0.03051098622381687, 0.05267567187547684, -0.009396499022841454, -0.014536937698721886, -0.05546698346734047, -0.04338971897959709, -0.022427232936024666, 0.022855602204799652, -0.012788912281394005, -0.0334404818713665, 0.012077265419065952, 0.03280483931303024, -0.013590378686785698, 0.019939923658967018, 0.011199798434972763, -0.03438013419508934, 0.015656225383281708, -0.033716849982738495, -0.0038069640286266804, 0.016084596514701843, -0.009051039814949036, 0.005592989735305309, 0.003668780205771327, -0.036508165299892426, -0.008159753866493702, 0.04291989281773567, 0.006653550546616316, -0.026503656059503555, 0.040349673479795456, 0.005109346471726894, -0.04526901617646217, 0.05648954212665558, -0.0028914962895214558, 0.026531292125582695, -0.005717355292290449, -0.046181030571460724, 0.030980810523033142, -0.03777945414185524, 0.010080508887767792, -0.011932172812521458, -0.08655834197998047, -0.013776926323771477, -0.02047884091734886, 0.033633939921855927, -0.0011728351237252355, -0.009348135441541672, -0.021542856469750404, -0.028382955119013786, -0.014550755731761456, -0.014799486845731735, -0.026628021150827408, 0.055660441517829895, -0.007835022173821926, 0.014274388551712036, -0.01609841361641884, 0.022040318697690964, 0.008297937922179699, -0.049967266619205475, 0.06555440276861191, 0.03330229967832565, 0.006477366201579571, -0.0036791441962122917, 0.0233807023614645, 0.009555410593748093, 0.04582175239920616, -0.0031160451471805573, -0.015186401084065437, 0.04532429203391075, -0.016347145661711693, -0.007869568653404713, -0.005914267152547836, -0.04021149128675461, -0.02970951981842518, -0.02249632589519024, -0.025660734623670578, 0.04104059189558029, -0.016706423833966255, -0.03006879799067974, 0.06721261143684387, -0.046125758439302444, 0.017328251153230667, -0.027332758530974388, -0.027056390419602394, 0.028493503108620644, -0.006695006042718887, -0.05076873302459717, -0.008235755376517773, 0.030206982046365738, 0.02126648835837841, -0.005924630910158157, 0.011828534305095673, -0.008311756886541843, -0.011579804122447968, -0.016913698986172676, -0.05112801119685173, -0.00419387873262167, -0.01974646747112274, -0.03871910646557808, -0.009900870732963085, 0.013790744356811047, -0.001976028550416231, -0.059916503727436066, -0.03399321809411049, -0.05104510113596916, 0.007696838583797216, 0.019732648506760597, -0.006639732513576746, 0.02957133576273918, 0.0350157804787159, -0.052869126200675964, -0.005199166014790535, -0.04012858122587204, -0.0344906821846962, -0.03438013419508934, 0.018613360822200775, 0.03053862415254116, 0.025895647704601288, 0.01503439899533987, 0.0270425733178854, 0.0011218799045309424, -0.006422092672437429, 0.002202304545789957, -0.025121817365288734, -0.011565985158085823, 0.044108275324106216, 0.018088260665535927, -0.014896214939653873, 0.006446274928748608, -0.0006093042902648449, -0.008539759553968906, -0.0069091906771063805, 0.008899037726223469, -0.015448950231075287, 0.026904389262199402, 0.013065279461443424, -0.03205864503979683, -0.011082341894507408, 0.013742380775511265, -0.01897263713181019, -0.022786511108279228, 0.04958035424351692, -0.003945148084312677, -0.03208628296852112, 0.0073582883924245834, 0.04919343814253807, -0.005568807944655418, -0.016056958585977554, 0.0006809871410951018, -0.010025235824286938, 0.04443991556763649, -0.004570429679006338, -0.03426958620548248, -0.03355102986097336, 0.010557243600487709, 0.014371116645634174, -0.03111899457871914, 0.020174836739897728, -0.026503656059503555, 0.0029294968117028475, -0.026793841272592545, 0.0201195627450943, 0.007144103292375803, 0.031257178634405136, 0.013030733913183212, 0.0006399637786671519, 0.003589324653148651, 0.010225602425634861, -0.013846018351614475, 0.018019169569015503, 0.00970741268247366, -0.00967977661639452, 0.015421314164996147, 0.016001686453819275, -0.0007250332273542881, -0.0004151991743128747, 0.019787922501564026, 0.012477998621761799, 0.004995345138013363, -0.05579862371087074, -0.012526363134384155, 0.02194358967244625, 0.007917932234704494, 0.0036342344246804714, 0.017549345269799232, -0.026393108069896698, 0.012367451563477516, 0.01160053163766861, -0.016651149839162827, -0.039465297013521194, -0.01616750657558441, 0.023021424189209938, -0.004072967916727066, 0.01526931207627058, 0.0013403829652816057, 0.01666496880352497, -0.030317530035972595, -0.032777201384305954, -0.005824447609484196, -0.027443306520581245, 0.009037221781909466, 0.03697798773646355, 0.011462347581982613, -0.02199886366724968, -0.000408289983170107, 0.034628864377737045, 0.0012056537671014667, 0.019221369177103043, 0.003599688410758972, -0.00803538877516985, 0.00764847407117486, 0.027084028348326683, 0.03523687273263931, 0.03446304425597191, -0.008650306612253189, -0.014481663703918457, 0.02463817410171032, 0.0007263286970555782, -0.006923009175807238, -0.0023750343825668097, -0.007738293614238501, -0.007759021129459143, 0.003575506154447794, 0.0786542296409607, 0.0024337624199688435, -0.012360542081296444, -0.01457839272916317, -0.02539818547666073, 0.04106822982430458, 0.03531978279352188, 0.024513809010386467, 0.025646915659308434, -0.017784256488084793, -0.0033146843779832125, 0.034103766083717346, 0.020686117932200432, -0.0109096122905612, 0.03067680634558201, -0.014039475470781326, -0.00022908285609446466, -0.01529694814234972, 0.012733638286590576, 0.0018844817532226443, 0.025232365354895592, 0.02461053803563118, 0.04330680891871452, -0.04109586775302887, 0.05936376750469208, 0.02707020938396454, 0.0033837761729955673, 0.029516063630580902, 0.022081773728132248, 0.009983780793845654, -0.02526000142097473, 0.007931751199066639, 0.04734177514910698, -0.04446755349636078, 0.01578059233725071, -0.02683529630303383, -0.017093338072299957, -0.02490072324872017, -0.006522275973111391, 0.001342973904684186, 0.005119710229337215, 0.03968639299273491, 0.007620837539434433, 0.008677943609654903, -0.012028900906443596, 0.007316832896322012, -0.033219389617443085, 0.005713900551199913, -0.03012407198548317, 0.026158196851611137, 0.03211391717195511, -0.030234618112444878, -0.06853917241096497, -0.00017089452012442052, -0.008767763152718544, -0.06632823497056961, -0.03628706932067871, -0.02275887504220009, 0.010163419879972935, 0.017618436366319656, -0.00523716676980257, 0.02490072324872017, -0.02625492587685585, -0.05549462139606476, 0.0011408801656216383, 0.012464180588722229, 0.019663557410240173, -0.004718977492302656, 0.02868695929646492, -0.015904957428574562, 0.023394519463181496, -0.021252671256661415, -0.0022990333382040262, -0.046181030571460724, -0.018765361979603767, -0.030234618112444878, -0.017756620422005653, 0.035209234803915024, 0.002366397762671113, -0.017798075452446938, 0.04930398613214493, 0.016139870509505272, -0.012021992355585098, -0.005876266863197088, 0.009755777195096016, 0.014032566919922829, -0.0176322553306818, 0.03534742072224617, -0.04767341539263725, -0.00039555117837153375, -0.02683529630303383, -0.01598786748945713, -0.005354622844606638, -0.006857371889054775, 0.011911445297300816, -0.02223377674818039, -0.007102648261934519, 0.026849115267395973, -0.04167623817920685, 0.011648895218968391, 0.06726787984371185, 0.015131128020584583, -0.0016573421889916062, -0.0024130349047482014, 0.012560908682644367, -0.02202649973332882, 0.013369284570217133, -0.006207908038049936, 0.0018585723591968417, -0.022855602204799652, -0.005465169902890921, -0.018019169569015503, 0.012643818743526936, -0.005814083851873875, 0.037972912192344666, -0.03592779114842415, 0.0326666533946991, -0.007579382508993149, 0.02628256194293499, -0.01216017547994852, 0.025646915659308434, 0.00037655088817700744, -0.06069033220410347, -0.011883808299899101, -0.006981737446039915, 0.0076899295672774315, 0.015822047367691994, 0.024721084162592888, -0.005257894285023212, 0.011220525950193405, 0.028521139174699783, 0.022855602204799652, -0.01935955323278904, 0.04980144649744034, -0.0007613064371980727, -0.0028794051613658667, -0.025232365354895592, -0.017148612067103386, -0.019953742623329163, 0.01865481585264206, -0.01862717792391777, -0.020603206008672714, -0.038967836648225784, -0.01528313010931015, 0.012104902416467667, -0.02865932323038578, 0.010142692364752293, -0.020147200673818588, -0.0019501190399751067, 0.014143113978207111, -0.07417707145214081, -0.021017758175730705, 0.0438871793448925, -0.037088535726070404, 0.004936616867780685, -0.03623179718852043, 0.027374213561415672, 0.037447813898324966, 0.022689782083034515, -0.045711204409599304, -0.015600952319800854, -0.05875575914978981, 0.010626335628330708, -0.03377212584018707, -0.045186106115579605, 0.0008312620338983834, 0.01789480447769165, 0.011939081363379955, 0.0017488888697698712, 0.03775181993842125, -0.02244105190038681, 0.02364325150847435, -0.03728199377655983, 0.03628706932067871, 0.005212984513491392, -0.024265078827738762, -0.01795007847249508, 0.03675689548254013, 0.02968188375234604, -0.001272154739126563, 0.0015433405060321093, 0.03728199377655983, -0.012547090649604797, 0.02633783593773842, -0.018571903929114342, 0.028438229113817215, 0.0060662697069346905, -0.0002750721469055861, -0.01408093050122261, 0.018475176766514778, -0.015214038081467152, -0.02132176235318184, 0.055273525416851044, -0.032694291323423386, 0.040349673479795456, -0.040294401347637177, -0.012028900906443596, 0.03064917027950287, -0.006639732513576746, 0.017604617401957512, 0.03263901546597481, -0.0011909718159586191, -0.007503380998969078, -0.012374361045658588, -0.00037503952626138926, 0.016236597672104836, -0.062348537147045135, 0.007123375777155161, 0.03346811980009079, 0.030262256041169167, -0.0352645106613636, 0.007607019040733576, 0.025066543370485306, -0.025301456451416016, -0.00525098480284214, 0.005834811832755804, -0.013576559722423553, 0.017825711518526077, 0.0005946222227066755, 0.022814147174358368, 0.020810483023524284, 0.021432310342788696, 0.013652561232447624, 0.01991228759288788, 0.011724896728992462, -0.012277632020413876, 0.0051128012128174305, -0.009659049101173878, -0.001013060100376606, -0.02707020938396454, 0.007016283459961414, -0.007455016952008009, -0.017701346427202225, 0.01727297715842724, -0.021307945251464844, -0.025895647704601288, -0.021335581317543983, 0.02813422493636608, 0.005986813921481371, 0.001075242762453854, 0.041261687874794006, -0.00268767517991364, -0.0326666533946991, -0.01431584358215332, 0.023422157391905785, -0.010778337717056274, 0.0052786218002438545, 0.01186308078467846, 0.04532429203391075, -0.01953919231891632, 0.037475451827049255, 0.0057829925790429115, 0.007731384597718716, -0.002810313366353512, -0.01933191530406475, -0.005257894285023212, -0.0016417964361608028, -0.006228635553270578, -0.012132539413869381, 0.010709245689213276, -0.017701346427202225, -0.003525414504110813, 0.040847137570381165, 0.026766205206513405, 0.024251259863376617, -0.013452194631099701, 0.009721231646835804, -0.022537780925631523, -0.012477998621761799, -0.02698729932308197, 0.038498010486364365, -0.017383523285388947, -0.029460789635777473, 0.02716693840920925, 0.0047846147790551186, 0.04291989281773567, 0.0195944644510746, -0.00411442294716835, 0.008850673213601112, -0.02625492587685585, 0.015255493111908436, 0.051736019551754, 0.015932593494653702, -0.006698460318148136, 0.002254123566672206, 0.01977410353720188, -0.011828534305095673, -0.007337560411542654, 0.02693202532827854, 0.011282708495855331, -0.016499146819114685, 0.021100668236613274, 0.001220335834659636, 0.0169827900826931, 0.01792244054377079, -0.01399111095815897, -0.00446679163724184, 0.0064324564300477505, -0.02727748453617096, 0.026324016973376274, 0.035983067005872726, 0.018171172589063644, -0.015946412459015846, 0.04095768183469772, 0.018792998045682907, 0.02727748453617096, -0.04969089850783348, -0.01030851248651743, -0.0019190277671441436, 0.003205864457413554, 0.016029322519898415, 0.04007330536842346, 0.02249632589519024, -0.009403408505022526, 0.0160707775503397, -0.007289196364581585, -0.03438013419508934, 0.0023733070120215416, 0.0013930655550211668, 0.020147200673818588, 0.02246868796646595, -0.0202439296990633, 0.005751901306211948, -0.038525648415088654, 0.03302593156695366, 0.010432878509163857, 0.0024458535481244326, -0.005136983469128609, 0.012913277372717857, 0.01553186122328043, 0.0070646475069224834, -0.021045394241809845, 0.015822047367691994, 0.01886209100484848, -0.013576559722423553, -0.03484995663166046, -0.03816637024283409, -0.0025788554921746254, -0.01651296578347683, 0.004798432812094688, 0.04145514592528343, -0.0002480831171851605, 0.02502508834004402, 0.004860615823417902, 0.01251254417002201, 0.00489861611276865, 0.020257746800780296, 0.024734903126955032, -0.05336659029126167, 0.012927096337080002, -0.03205864503979683, -0.0008481031400151551, 0.025094181299209595, -0.01938718929886818, -0.00527171278372407, 0.026406927034258842, -0.0030020433478057384, 0.002546036848798394, -0.025591643527150154, 0.009997598826885223, 0.007275377865880728, 0.017880985513329506, -0.029488425701856613, -0.007413561921566725, 0.0009042403544299304, 0.016471510753035545, 0.03391030803322792, 0.006332273129373789, -0.03929947689175606, -0.003955511841922998, -0.027526216581463814, -0.030289892107248306, -0.026600385084748268, 0.015683863312005997, -0.02009192667901516, 0.030980810523033142, 0.007496471982449293, 0.014232932589948177, -0.00012479725410230458, -0.002463126555085182, -0.008795400150120258, 0.01457839272916317, 0.0019725740421563387, 0.008615761063992977, 0.022012682631611824, -0.001870663370937109, 0.013604196719825268, 0.009064857847988605, -0.012664546258747578, 0.002996861469000578, -0.0047846147790551186, -0.005997177679091692, 0.012388179078698158, -0.030897900462150574, -0.01748025231063366, 0.02241341397166252, 0.03855328634381294, -0.0017791165737435222, 0.00040353991789743304, -0.014177659526467323, -0.019760286435484886, 0.008968129754066467, -0.0065706404857337475, 0.0038691468071192503, 0.012954732403159142, 0.005655172746628523, 0.05032654479146004, 0.03382739797234535, 0.01459221076220274, 0.001456975587643683, 0.005810629576444626, 0.00029601564165204763, 0.04189733415842056, -4.9039059376809746e-05, -0.01648532971739769, -0.01207035593688488, -0.009638321585953236, -0.008968129754066467, -0.011165251955389977, 0.05021599680185318, 0.008574306033551693, 0.023919617757201195, 0.004522065166383982, 0.0027567672077566385, 0.01609841361641884, 0.03742017596960068, -0.03880201652646065, -0.03382739797234535, -0.010377604514360428, -0.013106734491884708, -0.021432310342788696, -0.01144162006676197, -0.000909422233235091, 0.03672925755381584, 0.006418638397008181, -0.03106372244656086, -0.012505635619163513, -0.01880681701004505, 0.017839530482888222, -0.050354182720184326, 0.01998138055205345, -0.0006235544569790363, -0.013576559722423553, -0.00935504399240017, -0.020630843937397003, 0.01622278057038784, 0.002535673091188073, 0.00680555310100317, -0.0007513745222240686, -0.017825711518526077, -0.009127041324973106, 0.0007781476015225053, 0.0017549344338476658, 0.03531978279352188, 0.016388600692152977, 0.0015727045247331262, -0.010108145885169506, -0.0015312493778765202, -0.0006270090816542506, 0.0077452026307582855, -0.009389590471982956, -0.006238999310880899, 0.011413983069360256, 0.013327828608453274, 0.01434347964823246, 0.016968972980976105, 0.02874223329126835, 0.008574306033551693, 0.029792429879307747, 0.016761695966124535, 0.024361805990338326, 0.030787354335188866, 0.011413983069360256, 0.04397008940577507, -0.012678365223109722, 0.016872243955731392, 0.0339655801653862, 0.01792244054377079, -0.029460789635777473, 0.01677551493048668, 0.011752533726394176, -0.012277632020413876, 0.00967977661639452, 0.02291087619960308, -0.00349432323127985, -0.0017281613545492291, 0.024126894772052765, -0.009576138108968735, 0.012401997111737728, -0.02202649973332882, -0.003463231958448887, 0.010225602425634861, -0.010301603004336357, -0.0012583363568410277, -0.008449940010905266, -4.140116652706638e-05, 0.03236265107989311, 0.025660734623670578, 0.001870663370937109, -0.00918231438845396, 0.06754425168037415, 0.007254650350660086, -0.021598130464553833, -0.0010562425013631582, 0.0077452026307582855, -0.011220525950193405, -0.02299378626048565, 0.008560487069189548, -0.03432485833764076, 0.023090515285730362, -0.01669260486960411, -0.023049060255289078, -0.0017497525550425053, 0.012415816076099873, -0.018558086827397346, -0.030704444274306297, -0.015366040170192719, 0.023739978671073914, 0.016761695966124535, 0.0006745097343809903, 0.01982937753200531, 0.011061614379286766, 0.0019984834361821413, -0.013431467115879059, -0.026379290968179703, -0.016056958585977554, 0.0027153119444847107, 0.005060982424765825, -0.016830788925290108, 0.00893358327448368, 0.023919617757201195, -0.0018067533383145928, 0.004663703963160515, 0.0483366996049881, 0.019553009420633316, -0.010073600336909294, -0.01630569063127041, 0.013086006976664066, 0.02560546062886715, -0.016789333894848824, -0.01695515401661396, -0.008712489157915115, -0.021432310342788696, -0.004843342583626509, -0.03595542907714844, -0.003423504065722227, -0.019014092162251472, -0.013507467694580555, -0.0248178131878376, -0.036535799503326416, -0.03443540632724762, -0.03766890987753868, 0.022772692143917084, -0.015587134286761284, 0.0300411619246006, 0.02622728794813156, 0.06406201422214508, 0.029958251863718033, 0.013915110379457474, 0.03156118467450142, -0.00040980137418955564, -0.0021850315388292074, 0.0006546458462253213, 0.005126619711518288, -0.02155667543411255, -0.03871910646557808, 0.03407612815499306, -0.019718831405043602, 0.0038691468071192503, -0.027830220758914948, 0.025854192674160004, 0.03623179718852043, 0.004857161082327366, 0.026185832917690277, 0.007537927012890577, 0.01196671836078167, 0.004708613734692335, 0.017811894416809082, -0.018585722893476486, -0.0378900021314621, -0.02513563632965088, 0.020285384729504585, -0.011959808878600597, 0.007807385642081499, -0.03393794596195221, 0.00909249484539032, -0.01713479310274124, -0.0028966781683266163, -0.009140859358012676, 0.01818498969078064, -0.00017683209443930537, -0.010405241511762142, 0.013314010575413704, 0.005095527973026037, -0.014074021950364113, -0.0233807023614645, -0.016526784747838974, -0.021307945251464844, -0.0024562173057347536, -0.02246868796646595, 0.01701042801141739, 0.035983067005872726, 0.00039965350879356265, 0.02789931185543537, -0.025591643527150154, -0.01013578288257122, -0.02158431150019169, 0.00021418491087388247, 0.010052872821688652, -0.004601520951837301, -0.04162096604704857, 0.008546669036149979, -0.002261032583191991, 0.008208118379116058, 0.013355465605854988, 0.05969540774822235, 0.006031723693013191, -0.025771280750632286, -0.011427801102399826, 0.00401078537106514, 0.042311884462833405, 0.019760286435484886, -0.0056171719916164875, -0.0015554315177723765, -0.01768752746284008, 0.007151012308895588, 0.0433620810508728, -0.00038885787944309413, -0.027553852647542953, -0.003518505487591028, 0.00488479807972908, 0.011075432412326336, 0.02487308718264103, -0.01120670698583126, -0.0023283972404897213, 0.030732080340385437, -0.022012682631611824, 0.007102648261934519, 0.018267899751663208, 0.013666379265487194, -0.04432936757802963, 0.0018015714595094323, 0.008705580607056618, -0.009016494266688824, 0.039465297013521194, -0.007475744467228651, 0.010191055946052074, 0.019663557410240173, 0.004394245333969593, 0.01073688268661499, -0.03722672164440155, -0.000879626371897757, 0.03976930305361748, -0.013030733913183212, -0.002499399706721306, -0.03590015694499016, 0.027056390419602394, -0.007016283459961414, -0.002463126555085182, 0.00459115719422698, 0.0018931182567030191, -0.022579235956072807, -0.04123404994606972, -0.04170387610793114, 0.02575746364891529, -0.03156118467450142, -0.0190693661570549, 0.015075854025781155, 0.00935504399240017, 0.022012682631611824, 0.011386346071958542, -0.03573433309793472, 0.006028268951922655, 0.005171529483050108, 0.010273966938257217, -0.022565416991710663, -0.015476587228477001, 0.00820120982825756, -0.006529185455292463, -0.020257746800780296, 0.020133381709456444, 0.005492806900292635, 0.031782276928424835, 0.016637330874800682, 0.014647484757006168, 0.0015606135129928589, -0.031340088695287704, -0.004411518108099699, 0.006394456140697002, 0.019608283415436745, -0.006926463916897774, 0.0008783309021964669, -0.011959808878600597, 0.018115898594260216, 0.05419569090008736, 0.01170416921377182, -0.01353510469198227, 0.005672445520758629, -0.032224465161561966, 0.028825143352150917, -0.005793356336653233, -0.010757610201835632, -0.01800535060465336, -0.002499399706721306, -0.0065982770174741745, 0.020686117932200432, -0.014564573764801025, 0.0008610578952357173, 0.027360394597053528, 0.01144162006676197, -0.0027049481868743896, 0.01110306940972805, 0.0025391275994479656, 0.020216291770339012, -0.011731806211173534, -0.03404849395155907, 0.014550755731761456, 0.04247770458459854, -0.0034494134597480297, -0.05726337432861328, 0.007254650350660086, -0.03297065943479538, -0.009147768840193748, -0.02299378626048565, 0.0001607466401765123, 0.005275167059153318, 0.025190910324454308, -0.025881828740239143, -0.01789480447769165, -0.011427801102399826, 0.01162816770374775, -0.014163841493427753, 0.019870832562446594, 0.02968188375234604, -0.0030884083826094866, -0.021667221561074257, 0.008525941520929337, -0.03529214486479759, 0.007600110024213791, -0.020755209028720856, -0.032224465161561966, -0.014992943964898586, 0.015310767106711864, 0.008408484980463982, 0.05646190792322159, 0.024513809010386467, 0.03053862415254116, 0.03921656683087349, 0.007372106425464153, -0.018323173746466637, 0.00637372862547636, 0.049386896193027496, -0.021722495555877686, -0.010785247199237347, -0.030262256041169167, 0.028576413169503212, -0.0010821520118042827, -0.003402776550501585, -0.017203884199261665, 0.0031350452918559313, 0.009216860868036747, 0.00085803511319682, -0.0035962339024990797, -0.011462347581982613, -0.0023750343825668097, 0.021487582474946976, 0.012484908103942871, -0.031727004796266556, -0.03794527426362038, 0.026628021150827408, 0.01214635744690895, -0.010957976803183556, 0.02669711224734783, -0.015227856114506721, -0.005644808989018202, -0.009700504131615162, 0.0036756894551217556, 0.002604764886200428, 0.005890085361897945, 0.006308091338723898, -0.00020792345458175987, -0.03308120369911194, 0.002737766830250621, -0.003442504210397601, -0.007503380998969078, -0.03205864503979683, -0.016264235600829124, -0.0022178501822054386, 0.01434347964823246, 0.024223623797297478, 0.010322331450879574, 0.04479919373989105, -0.02479017712175846, 0.01862717792391777, -0.010709245689213276, -0.011213616468012333, 0.0009776505175977945, -0.002751585328951478, -0.02079666405916214, -0.013307101093232632, -0.009099404327571392, -0.002637583529576659, 0.006981737446039915, -0.026904389262199402, 0.009638321585953236, 0.027940766885876656, -0.006156088784337044, 0.007344469893723726, 0.014384935609996319, -0.008263392373919487, 0.02364325150847435, -0.015587134286761284, -0.016084596514701843, -0.03294302150607109, -0.012595455162227154, -0.00932740792632103, 0.027567671611905098, 0.019995197653770447, 0.012871822342276573, 0.024071620777249336, 0.03869146853685379, 0.02241341397166252, 0.015131128020584583, -0.009624502621591091, 0.06909190863370895, 0.0033457756508141756, 0.018668632954359055, -0.008042298257350922, 0.018696270883083344, -0.005282076541334391, 0.04880652204155922, -0.008152845315635204, 0.039410024881362915, -0.010875066742300987, 0.04969089850783348, 0.002627219771966338, 0.003150590928271413, 0.04435700550675392, 0.029460789635777473, -0.0352645106613636, -0.022924695163965225, 0.012699092738330364, -0.005282076541334391, 0.03219682723283768, -0.023311609402298927, 0.037530723959207535, -0.001302382443100214, 0.011835443787276745, 0.002252396196126938, -0.006162998266518116, 0.01169035118073225, 0.02628256194293499, 0.01503439899533987, 0.00763465603813529, -0.031727004796266556, 0.0006861690199002624, 0.0233807023614645, 9.861790022114292e-05, -0.009790323674678802, 0.020603206008672714, 0.04772869125008583, 0.0012237904593348503, -0.019635919481515884, 0.015393677167594433, -0.03742017596960068, 0.034573592245578766, 0.014039475470781326, -0.0023957618977874517, -0.028327682986855507, -0.021114487200975418, 0.013189645484089851, -0.009334316477179527, 0.0064255474135279655, -0.023836707696318626, -0.010640153661370277, -0.03667398542165756, 0.028286227956414223, 0.02202649973332882, -0.006639732513576746, 0.0005000527016818523, 0.014426390640437603, 0.014440208673477173, 0.009576138108968735, 0.023242518305778503, 0.025121817365288734, -0.004383881576359272, 0.006245908327400684, 0.005662081763148308, 0.0005933267530053854]" -How Trading Strategy Built a Data Stack for Crypto Quant Trading,"have two kinds of workloads:historical datasets, that are challenging sizewise, andreal-time data feedsfor algorithms that are challenging latency-wise. TimescaleDB offers vertical scaling as a data lake, but also offers continuous real-time aggregations for time-series data, making it a good fit for real-time needs.✨Editor’s Note:We’ve put together resources about TimescaleDB’scontinuous aggregatesto help you get started.Data from TimescaleDB is feeding bothon our market information websiteand feeds, but also on the trading algorithms themselves, which make the trading decisions based on the data input. Our applications include OHLCV, or so-called candle charts, market summaries information like daily top trades and liquidity, and risk information for technical trade analysis.Collage of charts from Trading Strategy websiteChoosing (and using!) TimescaleDBPostgreSQL has been the open-source workhorse of databases for the last three decades and offers the most well-known, solid, foundation to build your business on.We chose TimescaleDB over other time-series databases because of its solid PostgreSQL foundation, easy, out-of-the-box functionality, and true open-source nature with an active TimescaleDB community.Moreover, TimescaleDB comes with well-documented code examples on how to use it for stock-market chart data, allowing us to take these examples and build our first MVP based on TimescaleDB example code.✨Editor’s Note:Check out ourthree-step tutorialto learn how to collect, store, and analyze intraday stock data.For example, we heavily utilize the continuous aggregate view feature of TimescaleDB, to upsample our 1-minute candle data to 15 minutes, 1 hour, and daily candles.We can fully offload this work to TimescaleDB, with only a minimal 10-20 lines of SQL code describing how to upsample different columns.Current deployment & future plansBesides TimescaleDB, our other major components in the software development stack are Svelte/SvelteKitweb frontend framework and Python, Pyramid, andSQLAlchemybackend.I invite everyone evaluating TimescaleDB toread our blog post about our software architecture.The current architecture diagramAt the moment, we have trading data from 1000 decentralised exchanges (aka dexes), from three blockchains (Ethereum, Polygon and Binance Smart Chain), featuring 800k trading pairs. For reference,NASDAQhas only 3000 trading pairs, giving a reference point for the massive diversity of blockchain and cryptocurrency markets! Currently, we are fitting everything on one 1 TB database, but we are still early on what kind of data points we collect. We expect the database to grow dozens of terabytes over the next year.Architecture diagram of trading data sourcesTrading Strategy is completing its seed round. So far,",https://www.timescale.com/blog/how-trading-strategy-built-a-data-stack-for-crypto-quant-trading/,562,"[0.003610516432672739, -0.008570384234189987, 0.07898380607366562, 0.0031295595690608025, 0.06562389433383942, 0.011476164683699608, 0.023313047364354134, 0.005454184487462044, -0.030193403363227844, 0.03128891438245773, 0.03321274369955063, -0.021509459242224693, -0.009505577385425568, -0.05397404730319977, 0.04822928458452225, 0.050420310348272324, 0.0006091285031288862, 0.013012554496526718, -0.05691322684288025, 0.007267792243510485, -0.013333193026483059, 0.014094707556068897, 0.02013338916003704, 0.0176618043333292, 0.01108204759657383, -0.028162695467472076, -0.003857674775645137, 0.04483586549758911, 0.006586437113583088, -0.055096279829740524, 0.012284439988434315, -0.040614135563373566, -0.029552126303315163, 0.029819324612617493, 0.03235770761966705, -0.00039390867459587753, 0.04448850825428963, 0.0512753427028656, 0.04015989601612091, 0.004281851928681135, -0.001958897104486823, 0.004508970305323601, 0.014014548622071743, 0.019518831744790077, -0.02343328669667244, -0.027414539828896523, -0.050393588840961456, -0.017782043665647507, 0.014936381950974464, 0.056966666132211685, -0.03575112670660019, 0.015470778569579124, -0.04830944538116455, -0.05531003698706627, 0.025116635486483574, -0.031529393047094345, -0.020186828449368477, 0.04566418007016182, 0.024528799578547478, -0.02840317413210869, 0.003141249530017376, -0.05311901122331619, 0.027387820184230804, 0.01433518622070551, -0.02390088327229023, 0.02617206797003746, -0.0012750367168337107, 0.039972856640815735, -0.050393588840961456, 0.04686657339334488, 0.04069429263472557, -0.0015739647205919027, 0.016205573454499245, -0.0019438673043623567, 0.04355331510305405, -0.04764144867658615, -0.01959899254143238, 0.04646577686071396, 0.0038476549088954926, 0.002231105463579297, -0.0029876104090362787, 0.01071465015411377, -0.04606498032808304, 0.037140555679798126, 0.016499491408467293, -0.05819578096270561, -0.003627216210588813, -0.003493617055937648, -0.006289178971201181, 0.020440666005015373, -0.023513445630669594, 0.0306476391851902, 0.021522819995880127, 0.015778057277202606, 0.01398782804608345, 0.019345153123140335, 0.02394096367061138, 0.005340625066310167, -0.031796593219041824, 0.023794004693627357, -0.012711957097053528, -0.005681302864104509, -0.016713250428438187, -0.004468890838325024, 0.032731786370277405, 0.005918441340327263, 0.020641064271330833, -0.010320532135665417, -0.0025918229948729277, 0.029899483546614647, -0.096031054854393, -0.025196794420480728, -0.029391808435320854, -0.009939774870872498, 0.001987287076190114, 0.0017267686780542135, -0.0008358295308426023, 0.0030427200254052877, 0.010313852690160275, 0.013546951115131378, -0.02851005271077156, 0.009051340632140636, -0.004779508803039789, 0.022524813190102577, -0.005524323787540197, 0.0062056793831288815, 0.019385233521461487, -0.04969887435436249, -0.032197389751672745, 0.0176618043333292, 0.012170880101621151, -0.008770782500505447, 0.038075752556324005, 0.007608470041304827, -0.026385826990008354, -0.018770677968859673, -0.0658910870552063, 0.007107473444193602, -0.02360696531832218, -0.009953134693205357, 0.008443464525043964, -0.03422809764742851, 0.008349945768713951, 0.0008408395224250853, -0.024929596111178398, 0.03719399496912956, -0.007715349551290274, 0.03679319843649864, -0.026693105697631836, -0.011609763838350773, 0.0084768645465374, -0.008557024411857128, -0.009612456895411015, -0.021242260932922363, 0.046252015978097916, 0.007949148304760456, -0.010728009976446629, 0.03241114690899849, -0.002266175113618374, -0.03294554352760315, -0.015644457191228867, 0.04128212854266167, -0.00234466465190053, 0.014963102526962757, -0.006355978548526764, 0.00802930723875761, -0.03425481542944908, -0.05835609883069992, -0.09619136899709702, -0.019879549741744995, -0.01380078960210085, -0.045717619359493256, -0.017234288156032562, -0.006750095635652542, 0.007468190975487232, -0.017234288156032562, -0.021389219909906387, -0.050687506794929504, 0.0366595983505249, -0.04248452186584473, -0.06957842409610748, -0.010788129642605782, 0.00476614898070693, -0.0148027827963233, -0.023954322561621666, -0.012197599746286869, -0.0379154309630394, 0.020547546446323395, 0.016165494918823242, 0.03430825471878052, -0.038636866956949234, 0.06984562426805496, 0.019251633435487747, 0.04232420399785042, 0.004305231850594282, -0.04229748249053955, 0.016646450385451317, 0.037541355937719345, -0.047427691519260406, 0.0016733290394768119, 0.07043346017599106, 0.032598186284303665, 0.048256006091833115, 0.011289126239717007, -0.008917741477489471, 0.00043294468196108937, 0.014562305063009262, -0.01188364252448082, -0.029498687013983727, -0.05739418417215347, 0.002339654602110386, 0.003921134397387505, 0.003867694642394781, -0.017514845356345177, -0.047053612768650055, -0.009625816717743874, -0.04846976324915886, -0.01453558448702097, 0.005651243031024933, 0.01144944503903389, 0.009906374849379063, 0.0499393530189991, -0.025397194549441338, -0.0040781134739518166, -0.02670646458864212, 0.04406099021434784, 0.029418528079986572, -0.0062056793831288815, 0.042778439819812775, -0.016045255586504936, -0.005460864398628473, -0.018583638593554497, 0.010948448441922665, -0.0263056680560112, 0.022284334525465965, -0.006980554200708866, 0.011188927106559277, -0.04002629965543747, -0.013693910092115402, -0.04929807782173157, -0.018917636945843697, 0.01505662128329277, -0.01808932237327099, 0.009612456895411015, -0.013106074184179306, 0.022992409765720367, -0.04053397476673126, -0.0733191967010498, -0.009017940610647202, 0.06920434534549713, 0.029391808435320854, -0.015216940082609653, -0.0029575505759567022, -0.048282723873853683, -0.01213748101145029, -0.06049368530511856, -0.013299793004989624, 0.03855670616030693, -0.004936487879604101, 0.01615213416516781, 0.012872275896370411, -0.05498940125107765, -0.022057216614484787, -0.0033533379901200533, -0.035136569291353226, 0.023379847407341003, 0.0512753427028656, -0.03024684265255928, -0.003683995921164751, -0.03516329079866409, 0.06695988029241562, 0.03882390633225441, -0.0015447399346157908, -0.05531003698706627, -0.01979939080774784, -0.0379955917596817, -0.010186932981014252, -0.018303079530596733, -0.007715349551290274, -0.01225103996694088, 0.005186986178159714, -0.022658411413431168, 0.00016230206529144198, 0.016633091494441032, 0.032998982816934586, 0.018049241974949837, -0.005023327190428972, 0.030888117849826813, -0.00039077745168469846, -0.03369370102882385, 0.012037280946969986, -0.005778162274509668, 0.01612541452050209, -0.037808552384376526, 0.006746755912899971, 0.0030126601923257113, 0.003356677945703268, 0.011830202303826809, -0.040908053517341614, -0.04227076470851898, 0.01011345349252224, 0.02173657715320587, -0.00048596682609058917, -0.047454409301280975, -0.001007003360427916, 0.01080148946493864, -0.00799590814858675, -0.007528310641646385, 0.0033867377787828445, -0.013947748579084873, 0.02661294676363468, -0.009612456895411015, 0.022792011499404907, -0.04216388240456581, -0.013760710135102272, -0.008069387637078762, 0.06407414376735687, -0.023820724338293076, -0.015083340927958488, -0.05824922025203705, -0.007120833266526461, -0.0685630738735199, -0.001190702198073268, 0.05782170221209526, 0.012858916074037552, -0.020841464400291443, 0.01915811374783516, -0.011563003994524479, 0.012558317743241787, -0.02867037244141102, 0.014268387109041214, -0.016967089846730232, 0.028616933152079582, 0.02877725102007389, -0.029365088790655136, -0.03764823451638222, 0.01271863654255867, -0.004084793385118246, -0.024916237220168114, 0.03318602219223976, -0.03011324256658554, -0.020654425024986267, -0.045183222740888596, -0.007722029462456703, 0.036472562700510025, 0.008136186748743057, -0.01939859241247177, 0.015577658079564571, 0.02623886801302433, -0.010661209933459759, -0.03604504466056824, -0.03267834708094597, 0.03201035037636757, -0.013921028934419155, 0.02333976700901985, -0.004365351516753435, 0.0014862902462482452, -0.012538277544081211, -0.04846976324915886, -0.003177989274263382, 0.0012124120257794857, 0.01648613251745701, 0.023192808032035828, 0.009131500497460365, 0.0008496069349348545, 0.011522924527525902, -0.03585800528526306, -0.02343328669667244, -0.011329205706715584, -0.026359107345342636, 0.023593606427311897, 0.010006574913859367, -0.033934179693460464, -0.002869041170924902, -0.018343159928917885, -0.016432693228125572, 0.07738061249256134, 0.07246416807174683, 0.002565103117376566, 0.050527188926935196, 0.03465561196208, -0.02053418569266796, -0.0011806823313236237, 0.00039015119546093047, 0.02020018734037876, 0.05210366100072861, 0.0070807537995278835, 0.041041649878025055, -0.048923999071121216, -0.011656523682177067, 0.05277165398001671, -0.009251739829778671, -0.01688692905008793, -0.027321022003889084, -0.024782637134194374, -0.01038065180182457, 0.01866379752755165, 0.025063196197152138, 0.056432269513607025, 0.010561010800302029, 0.026292307302355766, -0.024956317618489265, -0.027815338224172592, -0.01975931040942669, 0.022818731144070625, 0.007000594399869442, 0.02173657715320587, 0.0063158986158668995, -0.017207566648721695, -0.008303185924887657, -0.009939774870872498, -0.015671176835894585, 0.02367376536130905, -1.9478857211652212e-05, 0.017835482954978943, -0.017635084688663483, -0.033533379435539246, 0.054401565343141556, 0.02096170373260975, 0.06653236597776413, 0.003977913875132799, -0.04138901084661484, -0.02920476906001568, -0.001483785337768495, -0.04203028604388237, 0.020881542935967445, 0.04871024191379547, 0.0017785383388400078, -0.03698023781180382, -0.03054076060652733, 0.002645262749865651, 0.006172279827296734, 0.008724022656679153, -0.00595852080732584, -0.0035570766776800156, 0.030727798119187355, 0.026799984276294708, -0.012878955341875553, 0.042083725333213806, 0.01533717941492796, -0.023019129410386086, 0.04622529819607735, 0.00091264903312549, 0.01063449028879404, 0.0013126113917678595, -0.018877556547522545, -0.017367886379361153, -0.015216940082609653, -0.032063789665699005, 0.018409959971904755, 0.02570447139441967, 0.002436514012515545, -0.020881542935967445, 0.02229769341647625, -0.011021927930414677, -0.04507634416222572, 0.05568411573767662, -0.024087922647595406, 0.024154722690582275, 0.009345258586108685, -0.02634574845433235, 0.02370048500597477, -0.051328785717487335, -0.006406078115105629, 0.013680550269782543, -0.047855205833911896, 0.04053397476673126, 0.000827062118332833, 0.036739759147167206, -0.01862371899187565, 0.002363034524023533, 0.007949148304760456, -0.014629104174673557, -0.0239676833152771, -0.004024673718959093, 0.00944545865058899, 0.04320595785975456, 0.0071408734656870365, 0.026292307302355766, 0.0008479369571432471, 0.012384639121592045, -0.012524917721748352, -0.042511243373155594, 0.050794389098882675, 0.0379955917596817, 0.04889728128910065, 0.0036338961217552423, 0.006245759315788746, 0.024595599621534348, 0.01208404079079628, -0.03572440519928932, 0.009659216739237309, 0.06370006501674652, -0.015150140970945358, -0.01215084083378315, 0.013106074184179306, -0.0918627604842186, -0.03855670616030693, -0.02510327659547329, -0.01572461798787117, 0.03949190303683281, 0.0022979050409048796, 0.00119320722296834, 0.04045381397008896, -0.026292307302355766, 0.010140174068510532, -0.025651032105088234, 0.00135018618311733, 0.024862797930836678, -0.024408560246229172, -0.013446751981973648, -0.005303885322064161, 0.03136907517910004, 0.04002629965543747, -0.03409449756145477, -0.001087997923605144, 0.005203686188906431, 0.020681144669651985, -0.016579652205109596, -0.023860804736614227, -0.016379252076148987, -0.03094155713915825, -0.05210366100072861, -0.016285734251141548, -0.00692711491137743, -0.013433392159640789, -0.05568411573767662, -0.046011537313461304, -0.029952924698591232, -0.024461999535560608, 0.01946539245545864, -0.004575769882649183, -0.006696656346321106, -0.0083098653703928, -0.04617185890674591, 0.01939859241247177, -0.04307235777378082, -0.044248029589653015, -0.017635084688663483, 0.01889091730117798, 0.007074073888361454, 0.042912039905786514, -0.0009869635105133057, 0.01405462808907032, 0.02249809354543686, -0.012397998943924904, -0.001059608068317175, -0.004492270760238171, -0.009792815893888474, 0.036071762442588806, 0.024582238867878914, -0.012872275896370411, -0.0025684433057904243, 0.005180306266993284, -0.010227013379335403, 0.020373865962028503, 0.012110760435461998, 0.0007631850312463939, 0.02770845964550972, -0.008383344858884811, -0.005961860995739698, -0.009872975759208202, 0.015751337632536888, -0.006102140061557293, -0.014923022128641605, 0.025944950059056282, 0.000456324516562745, -0.018850836902856827, -0.05718042701482773, 0.021990416571497917, -0.010774769820272923, -0.025797991082072258, 0.020387226715683937, -0.018984435126185417, -0.007969187572598457, 0.03254474699497223, -0.00442213099449873, -0.010561010800302029, 0.02447536028921604, 0.015270380303263664, -0.029258208349347115, 0.0036539360880851746, -0.039705660194158554, 0.015377259813249111, -0.042377643287181854, 0.040373656898736954, 0.017274366691708565, 0.027628298848867416, 0.017782043665647507, -0.009926415048539639, 0.003820935031399131, 0.008269785903394222, -0.021589618176221848, -0.000860044383443892, 0.015163500793278217, -0.004081453196704388, 0.01585821621119976, 0.012297799810767174, -0.03377385810017586, 0.006973874289542437, 0.016432693228125572, 0.008470184169709682, -0.02724086120724678, -0.031983632594347, -0.02650606632232666, 0.020347146317362785, 0.006055380217730999, 0.010414051823318005, 0.03922470286488533, -0.005627863109111786, 0.011041968129575253, 0.0019104675156995654, 0.010140174068510532, -0.03094155713915825, -0.011369285173714161, 0.02220417559146881, -0.03158283233642578, 0.005798202008008957, 0.01873059757053852, -0.022351134568452835, -0.03869030624628067, 0.0016441042535007, -0.027922216802835464, -0.0433395579457283, 0.005661263130605221, 0.04349987581372261, 0.0006028660573065281, -0.019906269386410713, -0.014495505020022392, 0.029418528079986572, -0.001384420902468264, 0.02287217043340206, 0.039171263575553894, 0.0029826005920767784, 0.011830202303826809, 0.013880949467420578, 0.04606498032808304, 0.025998389348387718, 0.006325918715447187, 0.005547703709453344, 0.0038409747648984194, 0.033132582902908325, -0.015190220437943935, -0.00018714314501266927, 0.02387416362762451, -0.03505641222000122, 0.007909067906439304, 0.029792604967951775, -0.0005343965021893382, -0.013593710958957672, -0.007548350840806961, -0.024515438824892044, 0.0653032511472702, 0.020975062623620033, 0.012404678389430046, -0.021309060975909233, -0.03404105827212334, -0.036499280482530594, 0.018169481307268143, 0.04603825882077217, -0.01715412735939026, 0.005404084455221891, -0.014295106753706932, -0.0036439162213355303, -0.03024684265255928, 0.022725211456418037, 0.036365680396556854, 0.025557512417435646, 0.017848843708634377, 0.03668631985783577, -0.02420816197991371, 0.041041649878025055, 0.035002969205379486, 0.022658411413431168, 0.023419925943017006, 0.00037115506711415946, 0.005718042608350515, -0.012224320322275162, 0.016980448737740517, 0.05889049544930458, -0.03144923597574234, 0.018810756504535675, -0.052557896822690964, -0.005046707112342119, -0.0038142551202327013, 0.0017217587446793914, -0.007608470041304827, 0.02160297892987728, 0.04507634416222572, 0.01979939080774784, 0.0001890218845801428, -0.0010429081739857793, 0.013560310937464237, -0.0196657907217741, 0.003707375843077898, -0.021509459242224693, 0.017782043665647507, 0.04595809802412987, -0.04387395456433296, 0.005948501173406839, 0.005367344710975885, -0.002525023417547345, -0.05664603039622307, -0.03869030624628067, -0.01378742977976799, 0.024555519223213196, 0.03227755054831505, -0.0066565764136612415, 0.02173657715320587, -0.03762151300907135, -0.043713632971048355, 0.0005632038228213787, -0.023981042206287384, 0.013814149424433708, -0.024381840601563454, -0.005070087034255266, -0.04488930478692055, 0.013814149424433708, -0.033399783074855804, -0.02376728504896164, -0.059638649225234985, 0.0032948884181678295, -0.024448640644550323, -0.03679319843649864, 0.03291882574558258, -0.0169537290930748, 0.018236281350255013, 0.028082536533474922, 0.013560310937464237, -0.02456887997686863, 0.02554415352642536, -0.009158220142126083, 0.01906459592282772, -0.008009267970919609, 0.02757485955953598, -0.027321022003889084, -0.015510858967900276, -0.016606371849775314, -0.007541670463979244, 0.011416045017540455, -0.02193697728216648, -0.0006366833113133907, -0.031395792961120605, -0.021108662709593773, 0.010420732200145721, -0.04820256307721138, 0.03422809764742851, 0.036071762442588806, 0.03452201560139656, -0.019478753209114075, -0.013974468223750591, 0.011322526261210442, -0.0040781134739518166, -0.004164952784776688, -0.006155579816550016, -0.010514250956475735, -0.025343753397464752, -0.00031395794940181077, -0.0014971451601013541, 0.0220037754625082, -0.0010913378791883588, 0.011362605728209019, -0.04462210834026337, 0.03377385810017586, -0.01615213416516781, 0.026799984276294708, -0.03155611455440521, 0.036632880568504333, -0.0236336849629879, -0.07428111135959625, -0.04553058370947838, -0.004545710049569607, 0.008804182521998882, -0.0004392071277834475, 0.051996778696775436, -0.0028439913876354694, -0.00477282889187336, 0.009872975759208202, 0.0373275950551033, -0.026252228766679764, 0.0212957002222538, -0.009953134693205357, -0.00810946710407734, -0.007575070485472679, -0.014375265687704086, 0.008169586770236492, 0.010033294558525085, 0.009245059452950954, -0.011890321969985962, -0.01585821621119976, -0.026546146720647812, -0.00559112336486578, -0.01862371899187565, 0.015430699102580547, 0.028857411816716194, -0.007601790130138397, 0.014682544395327568, -0.10591738671064377, -0.047588009387254715, 0.06038680672645569, -0.026693105697631836, 0.00839670468121767, -0.03377385810017586, 0.008643863722682, 0.03564424812793732, 0.03038044087588787, -0.02634574845433235, -0.00576814217492938, -0.057233866304159164, -0.02002650871872902, -0.024395199492573738, -0.0306476391851902, 0.013513552024960518, 0.017047248780727386, 0.0286436527967453, 0.01245143823325634, 0.014989822171628475, -0.020120028406381607, 0.019478753209114075, -0.023219527676701546, 0.0492713563144207, -0.002120886230841279, -0.018169481307268143, -0.005380704998970032, 0.045316822826862335, 0.0063025387935340405, -0.017541565001010895, 0.03337306156754494, 0.0017918982775881886, 0.0030427200254052877, 0.01735452562570572, -0.01688692905008793, 0.028616933152079582, -0.007715349551290274, 0.01915811374783516, -0.02283209003508091, 0.008249745704233646, -0.03516329079866409, -0.04080117493867874, 0.046011537313461304, -0.051195185631513596, 0.0500195138156414, -0.026359107345342636, -0.016205573454499245, 0.06305878609418869, -0.022484732791781425, -0.005534343887120485, 0.038209348917007446, 0.005146906245499849, 0.01533717941492796, -0.011088727042078972, -0.004111513029783964, 0.025129996240139008, -0.04002629965543747, 8.043345587793738e-06, 0.03516329079866409, -0.022778650745749474, -0.03852998837828636, 0.02786877751350403, 0.008062707260251045, -0.0618831142783165, 0.004846308380365372, -0.013814149424433708, 0.01225103996694088, 0.019411953166127205, 0.006259119138121605, 0.012765396386384964, 0.02810925617814064, 0.027628298848867416, 0.02436847984790802, -0.014949741773307323, 0.008076067082583904, -0.003196359146386385, 0.01432182639837265, -0.007107473444193602, -0.0012992514530196786, -0.04363347589969635, 0.024809356778860092, -0.010120133869349957, -0.04833616316318512, -0.00101201341021806, -0.01752820611000061, -0.027521420270204544, -0.005297205410897732, 0.0013209613971412182, 0.03502969071269035, 0.00383429485373199, 0.01786220259964466, -0.005070087034255266, -0.005444164387881756, 0.0372474379837513, 0.03270506486296654, 0.018182840198278427, 0.04887055978178978, -0.011355925351381302, -0.0030544099863618612, -0.02490287646651268, 0.029819324612617493, -0.020146748051047325, 0.020814744755625725, 0.018343159928917885, -0.025985030457377434, -0.014094707556068897, 0.003927814308553934, 0.0131528340280056, -0.005093466490507126, 0.00927845947444439, -0.004639229737222195, -0.009759415872395039, 0.040640853345394135, 0.035270169377326965, 0.011589724570512772, -0.003994613885879517, 0.009692616760730743, 0.002718742238357663, -0.0022227554582059383, -0.018583638593554497, 0.03831622749567032, -0.01641933247447014, -0.036472562700510025, 0.043446436524391174, -0.013921028934419155, 0.031262196600437164, 0.04136228933930397, -0.0009260089136660099, 0.021950336173176765, -0.026278948411345482, 0.01458902470767498, 0.05432140454649925, 0.0028222815599292517, 0.0479353666305542, 0.01034725271165371, 0.003961213864386082, 0.018543558195233345, 0.0068736751563847065, 0.020320426672697067, 0.013907669112086296, 0.004178312607109547, 0.005427464377135038, 0.008957820944488049, 0.0002496633678674698, 0.04587794095277786, -0.018249640241265297, -0.012605077587068081, -0.0061689396388828754, -0.033105865120887756, 0.012311159633100033, 0.055096279829740524, -0.025063196197152138, -0.021309060975909233, 0.02293897047638893, 0.019478753209114075, 0.05835609883069992, -0.05739418417215347, -0.00756171066313982, 0.011663204059004784, -0.0041014933958649635, 0.01241803914308548, 0.04633217677474022, 0.026666386052966118, 0.0027387819718569517, 0.025757910683751106, -0.001158972387202084, -0.03302570432424545, 0.011736683547496796, -0.037140555679798126, 0.01832979917526245, 0.007595110218971968, 0.007788829039782286, 0.02570447139441967, 0.00486634811386466, 0.048923999071121216, 0.024849437177181244, 0.009939774870872498, 0.012104080989956856, 0.006322578527033329, 0.003977913875132799, -0.018784036859869957, -0.039037663489580154, 0.022858809679746628, 0.03831622749567032, 0.030701078474521637, -0.007755429483950138, -0.024141361936926842, 0.017648445442318916, -0.005654583219438791, 0.014882942661643028, 0.0011923721758648753, -0.00802930723875761, 0.01899779587984085, 0.03759479522705078, -0.0034869371447712183, 0.013480152003467083, 0.01775532402098179, 0.015965094789862633, -0.025958310812711716, 0.015764696523547173, -0.010313852690160275, 0.00324645871296525, 0.017287727445364, -0.015029901638627052, 0.0007226877496577799, 0.03519000858068466, -0.0037507954984903336, 0.0029325007926672697, -0.024448640644550323, 0.030086522921919823, 0.0027655018493533134, 0.025864791125059128, 0.0006575582083314657, 0.0028423212934285402, 0.007227712776511908, 0.004555730149149895, 0.037140555679798126, 0.0015798097010701895, -0.004719389136880636, -0.027414539828896523, -0.051595982164144516, -0.04675969481468201, -0.026719825342297554, -0.01639261282980442, -0.020013149827718735, 0.021589618176221848, 0.02496967650949955, 0.0016157143982127309, -0.009759415872395039, 0.023553526028990746, 0.014829503372311592, 0.01218423992395401, 0.017541565001010895, 0.01953219249844551, 0.015270380303263664, 0.00740139139816165, 0.003530356800183654, 0.008603783324360847, 0.005424124654382467, 0.01859699748456478, 0.010193613357841969, -0.01699380949139595, -0.010440771467983723, -0.03372041881084442, -0.031128596514463425, -0.0014645804185420275, 0.029231488704681396, 0.00756171066313982, 0.03412121534347534, 0.00450563058257103, 0.011890321969985962, -0.0024765937123447657, 0.022244254127144814, -0.004512310493737459, 0.036900077015161514, 0.003760815365239978, 0.014896302483975887, 0.023326408118009567, -0.0010946778347715735, -0.0030343702528625727, 0.0061088199727237225, 0.0352434478700161, 0.01692700944840908, 0.011689923703670502, -0.007388031575828791, -0.0016265693120658398, -0.028964290395379066, 0.0032163988798856735, 0.023620326071977615, 0.02933836728334427, -0.020881542935967445, 0.03885062411427498, -0.03241114690899849, -0.01353359129279852, -0.0006596457096748054, 0.04320595785975456, -0.05448172241449356, -0.027681738138198853, -0.00458913017064333, -0.013293112628161907, -0.010053333826363087, 0.005414104554802179, -0.023727204650640488, 0.0012341219699010253, 0.03227755054831505, -0.029365088790655136, 0.007100793533027172, -0.030701078474521637, 0.019251633435487747, -0.04630545526742935, -0.004472230561077595, 0.0036806559655815363, -0.025477353483438492, 0.026933584362268448, -0.026666386052966118, 0.011315845884382725, 0.002304584952071309, 0.024181442335247993, -0.005464204121381044, -0.024795997887849808, 0.010754729621112347, -0.011522924527525902, 0.023059209808707237, 0.021509459242224693, 0.02400776371359825, -0.010480851866304874, -0.0008546169265173376, -0.03388073667883873, 0.0023162749130278826, 0.0153238195925951, -0.01180348265916109, 0.029632285237312317, 0.006135540083050728, 0.026452627032995224, 0.008710662834346294, 0.01712740771472454, 0.026025108993053436, 0.020039869472384453, 0.016806770116090775, 0.060333363711833954, 0.027922216802835464, 0.006686636246740818, 0.007748749107122421, 0.023660404607653618, -0.005310565233230591, 0.015363899059593678, 0.03452201560139656, 0.0038843946531414986, -0.00576814217492938, 0.025891510769724846, -0.00279556168243289, -0.0026703125331550837, -0.0025734531227499247, 0.035537365823984146, -0.019385233521461487, -0.008850942365825176, 0.012578357942402363, -0.012638477608561516, -0.00829650554805994, -0.020413946360349655, 0.002965900581330061, -0.0015355549985542893, -0.009071380831301212, -0.0018870877102017403, 0.0035670967772603035, 0.006563057191669941, 0.03692679852247238, 0.024809356778860092, -0.01036729197949171, 0.008737382479012012, 0.0572873055934906, -0.004615849815309048, -0.036606159061193466, 0.014963102526962757, -0.01615213416516781, -0.0068870349787175655, -0.011756722815334797, -0.012972475029528141, -0.022324413061141968, 0.010313852690160275, -0.03176987171173096, -0.005804881919175386, -0.0319034717977047, 0.022057216614484787, 0.013440072536468506, -0.022979049012064934, -0.004535690415650606, 0.021816737949848175, 0.00550094386562705, -0.017608365043997765, 0.023914244025945663, 0.028536774218082428, -0.005046707112342119, -0.012130800634622574, -0.031155316159129143, -0.008583744056522846, 0.006756776012480259, -0.015484138391911983, -0.010601090267300606, 0.014495505020022392, 0.03024684265255928, -0.03681991994380951, 0.01899779587984085, 0.043259397149086, 0.007955827750265598, -0.007615149952471256, -0.03879718482494354, 0.018249640241265297, 0.014228306710720062, 0.0016065294621512294, -0.0006951329414732754, -0.0203337874263525, -0.02427496202290058, -0.008450144901871681, -0.02784205786883831, 0.029765885323286057, 0.00021198423928581178, -0.007167593110352755, -0.0023062548134475946, -0.021629698574543, -0.023553526028990746, -0.004432151094079018, 0.02173657715320587, -0.007788829039782286, 0.01919819414615631, 0.01849011890590191, 0.0618831142783165, 0.012110760435461998, 0.016405973583459854, 0.03652600198984146, -0.013880949467420578, 0.0020307067316025496, -0.00505004683509469, 0.021950336173176765, -0.012945755384862423, -0.036472562700510025, 0.019879549741744995, -0.019786030054092407, 0.010574370622634888, -0.034361694008111954, 0.02650606632232666, 0.021015143021941185, 0.005504284054040909, -0.002491623628884554, 0.03345322236418724, 0.04820256307721138, -0.0017150788335129619, 0.01802252233028412, -0.0018035882385447621, -0.012458118610084057, -0.02320616878569126, 0.03548392653465271, -0.013506871648132801, 0.015978455543518066, -0.018917636945843697, -0.004923127591609955, -0.007601790130138397, 0.027761898934841156, -0.027788618579506874, 0.016405973583459854, 0.008182946592569351, -0.014094707556068897, 0.0286436527967453, 0.014295106753706932, -0.008289826102554798, -0.010540970601141453, -0.046252015978097916, -0.022244254127144814, 0.016031894832849503, -0.03476249426603317, 0.010527610778808594, 0.030701078474521637, -0.010060014203190804, 0.026786625385284424, 0.012297799810767174, 0.0024431939236819744, -0.015510858967900276, -0.006833595223724842, -0.01106868777424097, -0.030433880165219307, -0.040240056812763214, 0.016699891537427902, 0.004619190003722906, 0.001188197173178196, 0.0239676833152771, 0.04512978345155716, -0.005320585332810879, -0.02187017723917961, -0.004953187424689531, -0.016232293099164963, 0.03107515722513199, 0.0018136081052944064, -0.016552932560443878, 0.008810861967504025, 0.00668329605832696, 0.009151539765298367, 0.013680550269782543, -0.009271779097616673, -0.01592501625418663, -0.027080543339252472, 0.014361905865371227, 0.025357114151120186, 0.039010945707559586, -0.004425471182912588, 0.009866295382380486, 0.042110443115234375, -0.006332598626613617, 0.00031646291608922184, 0.046358898282051086, 0.001867047743871808, -0.03706039860844612, 0.012110760435461998, 0.0006316733779385686, -0.003991273697465658, 0.03104843758046627, -0.01699380949139595, 0.02183009684085846, 0.005327265243977308, 0.012471478432416916, -0.004562410060316324, -0.0012591717531904578, 0.0060620601288974285, 0.03347994014620781, -0.023059209808707237, 0.012304479256272316, -0.029632285237312317, 0.03844982758164406, -0.008229706436395645, 0.034361694008111954, -0.011776763014495373, -0.00550094386562705, 0.011756722815334797, -0.028830692172050476, -0.03396089747548103, 0.03144923597574234, -0.00559112336486578, -0.010514250956475735, -0.0020757964812219143, 0.014188227243721485, 0.029124610126018524, 0.011242366395890713, -0.01191704161465168, 0.027681738138198853, -0.011990521103143692, 0.027895497158169746, 0.008790822699666023, -0.01588493585586548, 0.0189577154815197, 0.0037641553208231926, -0.00802930723875761, 0.021055221557617188, 0.0019555571489036083, 0.010841568931937218, 0.021442659199237823, 0.01726100780069828, 0.004158272873610258, -0.0179958026856184, -0.000726445228792727, -0.01668653078377247, -0.007134193554520607, 0.0017868883442133665, -0.0016207244480028749, -0.01010009367018938, 0.028029097244143486, 0.032197389751672745, 0.012164200656116009, 0.0036439162213355303, 0.02557087317109108, -0.0379955917596817, 0.0005753112491220236, -0.030086522921919823, 0.00031562792719341815, -0.031155316159129143, -0.015190220437943935, 0.00014998589176684618, 0.016833489760756493, -0.03505641222000122, 0.009331898763775826, -0.005377364810556173, -0.011382645927369595, 0.027294302359223366, -0.010126813314855099, -0.020908262580633163, 0.044248029589653015, 0.032598186284303665, -0.011295805685222149, 0.0032047089189291, 0.0373275950551033, -0.02053418569266796, -0.06172279641032219, 0.02086818404495716, -0.016673170030117035, 0.012244359590113163, -0.012464798055589199, 0.0038042350206524134, -0.0017134087393060327, 0.03812919184565544, -0.010520931333303452, 0.0108148492872715, -0.016446052119135857, -0.01046749111264944, -0.043152518570423126, 0.01036729197949171, 0.025223514065146446, -0.01973259076476097, -0.012357919476926327, 0.003794215153902769, -0.004739428870379925, 0.05400076508522034, -0.006032000761479139, 0.0038843946531414986, -0.02933836728334427, 0.0037140557542443275, 0.002396434312686324, 0.05541691929101944, 0.013186234049499035, 0.018717236816883087, 0.024528799578547478, -0.005250445567071438, -0.006846955046057701, -0.026666386052966118, 0.026412546634674072, 0.0028206114657223225, -0.01935851387679577, -0.03641912341117859, 0.026866784319281578, 0.024862797930836678, 0.014882942661643028, 0.007114153355360031, 0.004903087858110666, 0.009051340632140636, 0.008076067082583904, 0.00011168052151333541, -0.010948448441922665, 0.016285734251141548, 0.010935088619589806, 0.010293812490999699, -0.018610358238220215, -0.02006658911705017, 0.058569855988025665, -0.006372678093612194, 0.023005768656730652, 0.029498687013983727, 0.01839659921824932, -0.021843457594513893, -0.007795508950948715, 0.011830202303826809, 0.01612541452050209, 0.013513552024960518, -0.01208404079079628, -0.00809610728174448, -0.030754519626498222, -0.033399783074855804, -0.019184835255146027, 0.004402091260999441, -0.019251633435487747, -0.02347336709499359, -0.014108067378401756, 0.0012416369281709194, 0.009518938139081001, 0.016005175188183784, 0.029097890481352806, 0.005110166501253843, -0.0035604166332632303, 0.0013443412026390433, -0.022912250831723213, 0.016739970073103905, 0.0332394614815712, -0.0064127580262720585, 0.008202986791729927, -0.004168292507529259, 0.019305074587464333, -0.00866390299052, -3.1390576623380184e-05, 0.016031894832849503, -0.0017351186834275723, -0.005971881095319986, 0.014014548622071743, 0.020721225067973137, -0.00819630641490221, 0.010834889486432076, 0.014508864842355251, -0.0022795351687818766, -0.028830692172050476, 0.011215646751224995, -0.012965795584022999, 0.022645052522420883, 0.04165620729327202, 0.0014904652489349246, 0.013259713537991047, 0.014482145197689533, 0.012244359590113163, 0.003186339046806097, -0.004442170727998018, 0.0459313802421093, -0.0019939669873565435, 0.02166977897286415, -0.009719336405396461, -0.0011581374565139413, -0.034201376140117645, 0.035938166081905365, -0.01187028270214796, 0.029498687013983727, -0.02343328669667244, 0.03428153693675995, 0.014508864842355251, 0.026519427075982094, 0.01986619085073471, 0.0033733779564499855, -0.034602172672748566, -0.017274366691708565, 0.008142867125570774, -0.03227755054831505, 0.005213705822825432, -0.004716048948466778, 0.034361694008111954, 0.013059314340353012, 0.015965094789862633, -0.028750531375408173, 0.001872057793661952, -0.00460582971572876, 0.03893078491091728, -0.0026202129665762186, -0.011035287752747536, -0.006128859706223011, 0.0058917212300002575, 0.024221520870923996, 0.029151329770684242, -0.01973259076476097, 0.010293812490999699, 0.04833616316318512, 0.005771482363343239, -0.007655229885131121, 0.009786135517060757, -0.037674952298402786, 0.03104843758046627, 0.029391808435320854, -0.013493511825799942, -0.017808763310313225, -0.021923616528511047, 0.0070807537995278835, -0.009458818472921848, 0.016379252076148987, -0.015631098300218582, 0.015778057277202606, -0.04432819038629532, 0.023794004693627357, 0.003077789908275008, -0.014949741773307323, 0.006803535390645266, -0.0038476549088954926, 0.04641233757138252, 0.00665323669090867, 0.015564298257231712, 0.02851005271077156, -0.010126813314855099, 0.017207566648721695, 0.02166977897286415, -0.0038242749869823456]" -How Trading Strategy Built a Data Stack for Crypto Quant Trading,"the team has been lean. We expect to start growing as a business now, as our business is finding a product-market fit. We are looking to launch user-accessible trading strategies later this year, as soon as we are confident the software stack is well-behaving and related smart contracts are secure.We are at the bleeding edge of blockchain technology. Many of the components we built and many of the problems we solve we do as the first in the world.TimescaleDB allows us to focus on solving these business problems without us needing to build the infrastructure layer ourselves.🗯️If you are interested in crypto trading strategies, please come to ask any questions in ourpublic Discord chat.Advice & resourcesIf you are generally interested in algorithmic trading and machine-based solutions on financial markets, pleaseread our announcement blog postto learn about our vision for decentralised finance and decentralised protocol.To see TimescaleDB in action, youcan explore our public real-time API endpoints, view ourreal-time market data charts, ordownload historical market datasets generatedout from TimescaleDB.Trading Strategy contributes heavily to open source. You canstudy our Trading Strategy Python clientand our100% open source SvelteKit frontend.If you have software development questions or questions about trading strategies, please come to ask any questions inour public Discord chat.We also love coffee brewing tips shared by the TimescaleDB. Due to increased brewing activity, our team is now 150% caffeinated.It matters, and is one of the major reasons I came to Timescale to work in#DevRel.And for the record, I'm totally up for answering any coffee questions you want to throw our way. ☕️😉https://t.co/f74kT9eHWF— Ryan Booz (@ryanbooz)January 19, 2022We’d like to thank Mikko and the entire Trading Strategy team for sharing their story! We applaud your effort to give access to high-quality trading strategies to users around the world.We’re always keen to feature new community projects and stories on our blog. If you have a story or project you’d like to share, reach out on Slack (@Lucie Šimečková), and we’ll go from there.The open-source relational database for time-series and analytics.Try Timescale for free",https://www.timescale.com/blog/how-trading-strategy-built-a-data-stack-for-crypto-quant-trading/,466,"[-0.0004356809367891401, 0.005361652467399836, 0.03688936308026314, 0.004726916551589966, 0.055050283670425415, -0.0032912930473685265, -0.005824636667966843, 0.04331139847636223, -0.026270603761076927, -0.011193756014108658, 0.0382036417722702, -0.03572443500161171, -0.011962907388806343, -0.019325844943523407, 0.0612930990755558, 0.02794332057237625, -0.014479449018836021, -0.011320703662931919, -0.059650249779224396, 0.04537242278456688, 0.006526579614728689, 0.012814200483262539, 0.01070090290158987, 0.014994705095887184, -0.017070665955543518, 0.0051450952887535095, -0.040145184844732285, 0.03246861323714256, -0.01877325214445591, -0.06153205782175064, 0.01283660251647234, -0.03396211192011833, -0.03918934985995293, 0.04570099338889122, 0.04349061846733093, -0.02652449905872345, 0.01007363386452198, -0.0020890282467007637, 0.04056336730718613, -0.002720030490309, -0.031094597652554512, -0.04366983845829964, 0.028271889314055443, 0.04193738102912903, -0.04674644023180008, -0.02301478199660778, -0.02280569262802601, -0.03464911878108978, 0.02886928804218769, 0.05251133814454079, -0.06308529525995255, -0.006336159072816372, -0.03211017698049545, -0.013844712637364864, 0.006776740308851004, -0.0394880473613739, -0.01723494939506054, 0.0327075757086277, -0.007512287702411413, 0.013747635297477245, 0.01233628112822771, -0.023731660097837448, 0.04169842228293419, -0.007321866694837809, -0.03172186762094498, -0.00805741362273693, -0.005652884487062693, 0.03309588134288788, -0.038054291158914566, 0.03685949370265007, 0.04119063541293144, 0.00955091044306755, 0.024403732270002365, -0.0050853556022048, 0.0026136189699172974, -0.062667116522789, -0.04271399974822998, 0.05239185690879822, 0.009005784057080746, -0.02631540782749653, -0.011768752709031105, -0.011806090362370014, -0.00999149214476347, 0.018997276201844215, 0.004013772122561932, -0.07264366745948792, -0.02998941019177437, -0.005126426927745342, 0.003718806430697441, -0.009812272153794765, -0.03154264762997627, 0.032528355717659, 0.00989441480487585, 0.007123978342860937, 0.028884222730994225, 0.015696648508310318, 0.008109685964882374, 0.03193095698952675, -0.0010725172469392419, 0.022432317957282066, 0.010902524925768375, -0.01057395525276661, -0.017264820635318756, 0.005372853949666023, 0.03288679197430611, 0.01727975532412529, 0.047254230827093124, -0.027151767164468765, -0.004704514052718878, 0.023119326680898666, -0.11697065085172653, -0.020072592422366142, -0.005451262462884188, -0.00039577658753842115, -0.007090374827384949, -0.01532327476888895, -0.0016960520297288895, 0.021297261118888855, -0.008191828615963459, -0.01394925732165575, -0.04593995213508606, 0.005003213416785002, -0.0007276128162629902, 0.042654260993003845, -0.023044651374220848, -0.01957974024116993, -0.014942432753741741, -0.04226595163345337, -0.03190108388662338, 0.006873817648738623, 0.028525782749056816, -0.00015483358583878726, 0.02140180580317974, -0.015696648508310318, -0.0408620648086071, -0.04113089293241501, -0.07921505719423294, -0.023343350738286972, -0.032767314463853836, -0.017832348123192787, 0.02915305271744728, -0.04752305895090103, 0.0035321193281561136, -0.0004636840021703392, -0.0339023694396019, -0.02595696970820427, -0.01727975532412529, 0.02886928804218769, -0.048986684530973434, -0.006985830143094063, 0.014867757447063923, -0.0354556068778038, -0.04420749843120575, -0.0018379341345280409, 0.04599969461560249, -0.0020703596528619528, 0.005970252212136984, 0.06756578385829926, -0.006485508754849434, -0.023074520751833916, 0.012276541441679, 0.08393450826406479, -0.017772609367966652, 0.010656097903847694, -0.003293159883469343, -0.0042452639900147915, -0.018862860277295113, -0.03521664813160896, -0.08058907091617584, -0.006888752803206444, -0.020207008346915245, -0.03751663118600845, -0.04573086276650429, 0.027271246537566185, 0.027584880590438843, -0.019684284925460815, -0.009677857160568237, -0.042564649134874344, 0.007721377070993185, -0.03620235621929169, -0.0584554523229599, -0.0023130527697503567, -0.019519999623298645, -0.017429104074835777, -0.023223871365189552, -0.0027405661530792713, -0.03181147575378418, -0.009468767791986465, 0.020774535834789276, 0.020565446466207504, -0.053556784987449646, 0.06905928254127502, 0.00908045843243599, 0.004540229216217995, 0.029660841450095177, -0.04534255340695381, 0.03901012986898422, 0.03987635672092438, -0.02341802604496479, 0.03790494054555893, 0.032528355717659, 0.02208881266415119, 0.04226595163345337, 0.0036646670196205378, 0.005970252212136984, -0.026838133111596107, 0.024314124137163162, 0.019191430881619453, -0.048269808292388916, -0.015980413183569908, 0.014195684343576431, -0.009237276390194893, -0.011402846314013004, -0.014113541692495346, -0.04375944659113884, -0.02019207365810871, -0.02308945544064045, 0.0042153941467404366, -0.016099892556667328, 0.046925660222768784, -0.016846640035510063, 0.034380290657281876, -0.0029365874361246824, -0.012888874858617783, 0.010260321199893951, 0.041728291660547256, 0.05899311229586601, 0.002512807957828045, 0.034738730639219284, 0.01513658743351698, 0.02123752050101757, -0.019086886197328568, 0.012485630810260773, -0.05215289816260338, 0.05400483310222626, -0.03402185067534447, 0.008027544245123863, -0.046119172126054764, 0.009289548732340336, -0.04154907166957855, 0.01360575295984745, 0.023477764800190926, -0.006728201638907194, 0.0044692885130643845, -0.0034350419882684946, 0.008296373300254345, -0.0382036417722702, -0.07389821112155914, -0.007430145051330328, 0.044954244047403336, 0.03441016003489494, -0.024030359461903572, -0.018788186833262444, -0.04062310606241226, 0.004876266233623028, -0.035067297518253326, -0.009603182785212994, 0.002447467530146241, 0.011007069610059261, -0.021819984540343285, 0.041847772896289825, -0.049195773899555206, -0.038173772394657135, -0.024254383519291878, -0.05272042751312256, 0.02607644908130169, 0.01937064900994301, -0.03464911878108978, 0.008348645642399788, -0.015696648508310318, 0.03757637366652489, 0.015397949144244194, -2.240244793938473e-05, -0.045551642775535583, -0.017712868750095367, -0.056543778628110886, -0.012239203788340092, -0.0034649118315428495, -0.02280569262802601, 0.0005091889761388302, 0.004077245481312275, -0.026584237813949585, 0.01444957870990038, -0.019071951508522034, 0.013568416237831116, 0.02446347288787365, 0.03754650428891182, 0.026509562507271767, 0.0019228768069297075, -0.040234796702861786, 0.0006001989240758121, 0.01659274660050869, 0.04011531546711922, -0.04913603514432907, 0.017548583447933197, 0.01941545493900776, 0.030855638906359673, -0.005888110026717186, -0.04614904150366783, -0.035545218735933304, 0.038084160536527634, -0.013934322632849216, 0.013411599211394787, -0.034619249403476715, -0.025613466277718544, -0.0006814078078605235, -0.0009679724462330341, -0.0023261208552867174, 0.009132730774581432, -0.027301115915179253, 0.011843427084386349, 0.0014496250078082085, 0.030736157670617104, -0.03351406380534172, 0.01473334338515997, -0.008908706717193127, 0.05179445818066597, -0.031423166394233704, -0.027196571230888367, -0.04982304573059082, -0.05373600497841835, -0.048060718923807144, 0.013112899847328663, 0.02292517200112343, 0.029123181477189064, -0.02998941019177437, 0.030004344880580902, -0.01308302953839302, 0.04791136831045151, -0.03608287498354912, 0.032677702605724335, -0.06290607154369354, -0.009498638100922108, -0.030303044244647026, -0.0420568622648716, -0.024314124137163162, 0.04157894477248192, -0.005133894272148609, -0.010387267917394638, 0.03551534563302994, -0.003629196435213089, -0.02083427645266056, -0.06135283783078194, 0.0009423029841855168, 0.046895790845155716, 0.0061382707208395, -0.0010958530474454165, -0.011380443349480629, -0.00849799532443285, 0.009543443098664284, -0.05236198753118515, -0.035306256264448166, 0.02526996098458767, -0.004387145861983299, -0.0034145063254982233, -0.009984023869037628, 0.011044406332075596, 0.0026770925614982843, -0.06236841529607773, -0.0036198622547090054, -0.035664696246385574, 0.012948614545166492, 0.013336923904716969, 0.00641830125823617, 0.01659274660050869, -0.0028376434929668903, -0.022133618593215942, -0.01400899700820446, -0.0076056309044361115, -0.04396853595972061, 0.021581023931503296, 0.030975118279457092, -0.02745046652853489, -0.04145946353673935, -0.05292951688170433, 0.003057934110984206, 0.061024267226457596, 0.05385548621416092, 0.035306256264448166, 0.07336054742336273, 0.04779188707470894, -0.0025557458866387606, -0.0054288599640131, 7.19328600098379e-05, -0.009677857160568237, 0.05824636295437813, -0.006321223918348551, 0.0023559906985610723, -0.03602313622832298, -0.006466839928179979, -0.0007122111273929477, -0.026225799694657326, -0.023627115413546562, 0.020326487720012665, 0.0026304207276552916, 0.02673358842730522, 0.02631540782749653, 0.03742702305316925, 0.06018790975213051, -0.033812761306762695, 0.02958616614341736, -0.006612455938011408, -0.022760886698961258, -0.029377076774835587, -0.003311828477308154, 0.0060561285354197025, 0.0013422799529507756, 0.020087528973817825, -0.05761909484863281, 0.002040489576756954, -0.0022925171069800854, -0.04148933291435242, 0.027420595288276672, -0.021790115162730217, -0.004823993891477585, -0.062189195305109024, 0.006787941791117191, 0.022193359211087227, 0.050002261996269226, 0.06428009271621704, -0.0016549808206036687, -0.03294653445482254, -0.00607479689642787, -0.012291476130485535, -0.03127381578087807, 0.03027317486703396, 0.045312684029340744, 0.0012918744469061494, -0.02588229440152645, -0.06177101656794548, -0.03895039111375809, -0.016503136605024338, 0.03838286176323891, -0.02825695462524891, 0.0009105661883950233, 0.02046090178191662, 0.016906380653381348, -0.026494627818465233, 0.04133998230099678, 0.0169959906488657, -0.013687895610928535, 0.02640501782298088, -0.002447467530146241, 0.005212302785366774, 0.023313481360673904, 0.0003010328800883144, -0.02223816327750683, -0.019430389627814293, -0.03593352809548378, -0.018220657482743263, 0.037486761808395386, -0.01150739099830389, -0.013762570917606354, -0.008191828615963459, -0.024418668821454048, -0.022029073908925056, 0.03814390301704407, -0.027719294652342796, 0.03963739797472954, -0.01134310569614172, -0.039458177983760834, 0.004588767886161804, -0.0691787600517273, -0.019027145579457283, -0.01082038227468729, -0.07103069126605988, -0.0026752257253974676, 0.018549226224422455, 0.022940106689929962, -0.01398659497499466, 0.012866472825407982, -0.0028339095879346132, -0.04363996908068657, -0.031871214509010315, -0.030108889564871788, -0.018384942784905434, 0.06087491661310196, -0.014322631992399693, 0.027988124638795853, 0.006937291473150253, 0.016652485355734825, 0.016562877222895622, -0.036351706832647324, 0.08560722321271896, 0.02616605907678604, 0.017175210639834404, 0.00038550878525711596, 0.001921009854413569, -0.03470885753631592, 0.018788186833262444, 0.003957765642553568, 0.005141361616551876, 0.04020492732524872, -0.019206365570425987, -0.028615392744541168, 0.007512287702411413, -0.0530489981174469, -0.020012853667140007, -0.014210619032382965, -0.04328152909874916, 0.03593352809548378, -0.0017445905832573771, 0.009072991088032722, 0.0531386062502861, -0.038173772394657135, 0.008819096721708775, -0.05200354754924774, -0.021894659847021103, 0.022178422659635544, -0.004532761871814728, -0.04815032705664635, -0.0038270847871899605, 0.03659066557884216, 0.01977389305830002, -0.01515898946672678, 0.007900596596300602, -0.014225554652512074, -0.007818453945219517, -0.029705645516514778, -0.03685949370265007, -0.01110414694994688, -0.017503779381513596, -0.04582047462463379, -0.01556223351508379, -0.014658668078482151, -0.009155133739113808, -0.041369855403900146, -0.02671865187585354, -0.022178422659635544, -0.01692131534218788, 0.005070420913398266, -0.01513658743351698, 0.03024330548942089, -0.0027499005664139986, -0.04166855290532112, 0.004054842982441187, -0.022656342014670372, -0.023343350738286972, -0.030258240178227425, 0.020251812413334846, 0.013538545928895473, 0.03521664813160896, 0.009580779820680618, 0.017220014706254005, -0.03130368888378143, 0.0004417482705321163, -0.03234913572669029, -0.014397306367754936, -0.004685845226049423, 0.04567112401127815, 0.03076602891087532, 0.0031886149663478136, 0.006571384612470865, 0.003029931103810668, -0.007952868938446045, 0.006634858436882496, -0.0003787413879763335, -0.021058300510048866, 0.00699329748749733, 0.0032464880496263504, -0.01917649619281292, -0.010372333228588104, -0.0013600152451545, -0.007187452167272568, -0.023522570729255676, 0.0352763868868351, -0.007041836157441139, -0.024553082883358, -0.03715819492936134, 0.01780247874557972, 0.007359204348176718, -0.01792195811867714, 0.0026696249842643738, -0.007557092234492302, 0.03387250006198883, 0.00572382565587759, -0.017862217500805855, -0.02479204162955284, 0.027032287791371346, 0.031990695744752884, -0.013493740931153297, 0.0026248202193528414, -0.04259452223777771, 0.02830175869166851, -0.04797110706567764, 0.026584237813949585, -0.0002200573799200356, 0.04110102355480194, 0.030019279569387436, -0.033573802560567856, 0.009289548732340336, 0.014367436990141869, -0.031064728274941444, 0.013553480617702007, 0.00827397033572197, -0.020640121772885323, 0.0010165111161768436, 0.02119271643459797, -0.02894396334886551, 0.006156939547508955, 0.025493985041975975, 0.0191018208861351, -0.008699617348611355, -0.03127381578087807, -0.025404375046491623, 0.018743380904197693, 0.0017455241177231073, -0.00462237186729908, 0.029780320823192596, -0.028794612735509872, 0.02055051177740097, 0.013732700608670712, 0.0036198622547090054, -0.05131654068827629, -0.030004344880580902, 0.012582708150148392, -0.0029757919255644083, 0.0024810710456222296, 0.011619403026998043, -0.007291996851563454, -0.039667267352342606, -0.03739715367555618, 0.0019004743080586195, -0.02567320503294468, 0.02059531770646572, 0.023955684155225754, -0.013000886887311935, -0.03733741492033005, 0.009872011840343475, 0.04593995213508606, 0.01267978549003601, 0.023164130747318268, 0.013680428266525269, 0.01160446833819151, 0.004480489529669285, 0.018310267478227615, 0.027555011212825775, 0.03294653445482254, -0.005458729807287455, -0.01386711560189724, 0.022357642650604248, -0.0006207344704307616, 0.009745065122842789, -0.006586319766938686, 0.021670633926987648, -0.02571801096200943, 0.005869441200047731, 0.057708706706762314, -0.0101707112044096, -0.002103963168337941, 1.9237519154557958e-05, -0.027226442471146584, 0.046895790845155716, 0.03653092309832573, 0.024119969457387924, 0.0003365034353919327, -0.02014726772904396, -0.014068737626075745, 0.043460749089717865, 0.047134749591350555, 0.0043423413299024105, 0.021386871114373207, -0.011455118656158447, 0.005171231925487518, -0.019968047738075256, 0.014247956685721874, -0.00855773501098156, 0.04856850579380989, 0.018280398100614548, 0.028197214007377625, -0.01735442876815796, 0.04396853595972061, 0.02535957098007202, 0.021894659847021103, 0.0062054782174527645, -0.0025501453783363104, 0.008938577026128769, -0.02090895175933838, 0.020684927701950073, 0.046089302748441696, -0.04543216526508331, 0.004891200922429562, -0.034380290657281876, -0.011798622086644173, -4.206292942399159e-05, -0.03452964127063751, -0.006560183595865965, 0.027241377159953117, 0.04970356449484825, 0.026255669072270393, -0.007153848186135292, 0.0003178347251378, 0.015032042749226093, -0.03455951064825058, -0.0001739690051181242, -0.03297640383243561, 0.009110328741371632, 0.037038713693618774, -0.02733098715543747, -0.0196544136852026, -0.0064295027405023575, -0.0098272068426013, -0.04949447512626648, -0.00739654153585434, -0.031632255762815475, 0.01265738345682621, 0.04399840906262398, -0.005313113797456026, 0.048986684530973434, -0.004166855476796627, -0.06048661097884178, -0.00017805278184823692, -0.009013251401484013, 0.01917649619281292, -0.006082264706492424, 0.010409670881927013, -0.010484345257282257, 0.0060635958798229694, -0.034380290657281876, -0.004547697026282549, -0.0691787600517273, -0.016742095351219177, -0.03127381578087807, -0.029197856783866882, 0.037247803062200546, -0.0009035653783939779, 0.02370179072022438, 0.029825124889612198, 0.011477520689368248, -0.00967038981616497, 0.015114184468984604, 0.01732455939054489, 0.016966121271252632, -0.01370283029973507, 0.022387512028217316, -0.01934077963232994, -0.04913603514432907, -0.009132730774581432, -0.03826338052749634, -0.010775577276945114, -0.0008008875302039087, -0.00664979312568903, -0.01675703190267086, 0.011709013022482395, 0.012515501119196415, -0.03228939324617386, 0.025493985041975975, 0.05508015304803848, 0.0119330370798707, -0.01091745961457491, 0.006631124764680862, 0.014890160411596298, -0.03593352809548378, -0.01336679421365261, 0.012134659104049206, -0.014688538387417793, -0.031214077025651932, 0.009685324504971504, -0.02220829389989376, 0.020132333040237427, 0.011059341952204704, 0.02958616614341736, -0.04017505794763565, 0.02370179072022438, -0.01789208874106407, 0.040264666080474854, -0.008042478933930397, 0.021655699238181114, -0.022133618593215942, -0.033573802560567856, 0.0016708492767065763, -0.015607038512825966, 6.884085451019928e-05, 0.00312327453866601, 0.04405814781785011, -0.01093986164778471, -0.015801193192601204, 0.025523856282234192, 0.01901221089065075, -0.03291666507720947, 0.04537242278456688, -0.0022514460142701864, -0.013068094849586487, -0.023388154804706573, -0.010872654616832733, -0.023970618844032288, -0.004812792409211397, -0.006321223918348551, -0.025538790971040726, -0.0016297780675813556, -0.01492003072053194, 0.00999149214476347, -0.02898876741528511, 0.0007607497973367572, -0.004771721549332142, -0.008102218620479107, 0.010775577276945114, -0.07885661721229553, -0.030616678297519684, 0.04710488021373749, -0.00846065767109394, 0.012709655798971653, -0.046208783984184265, 0.005944116041064262, 0.03915948048233986, 0.03694910556077957, -0.024896586313843727, -0.006896220147609711, -0.0313335582613945, -0.017220014706254005, -0.03895039111375809, -0.023507636040449142, 0.025852425023913383, 0.004626105539500713, 0.022506993263959885, 0.00809475127607584, 0.03249848261475563, -0.004446886014193296, 0.030183564871549606, -0.030945247039198875, 0.05490093305706978, 0.0020050189923495054, -0.040712714195251465, -0.02571801096200943, 0.03745689243078232, 0.027435531839728355, 0.004301270004361868, 0.03432055190205574, 0.01913169026374817, -0.014718408696353436, 0.010148309171199799, -0.0191018208861351, 0.034499768167734146, -0.009976556524634361, 0.006866350304335356, 0.007213588338345289, 0.005040550604462624, -0.007661637384444475, -0.03411145880818367, 0.07186705619096756, -0.013964192941784859, 0.05152563005685806, -0.003156878286972642, -0.01614469662308693, 0.03608287498354912, 0.003449976909905672, 0.008766824379563332, 0.03918934985995293, 0.02474723756313324, -0.0027293649036437273, -0.029018636792898178, -0.02849591337144375, 0.02834656462073326, -0.057708706706762314, -0.026509562507271767, 0.03572443500161171, 0.019684284925460815, -0.013971660286188126, 0.022387512028217316, 0.005757429171353579, -0.06260737776756287, 0.004771721549332142, 0.010865187272429466, -0.021386871114373207, 0.018743380904197693, -0.01623430661857128, 0.012388553470373154, 0.011806090362370014, 0.04593995213508606, 0.02370179072022438, -0.0055856769904494286, 0.010521682910621166, -0.01001389417797327, 0.0027704359963536263, -0.002753634238615632, 0.015069379471242428, -0.05325808748602867, -0.0040735118091106415, -0.007064238656312227, -0.04133998230099678, 0.030542002990841866, -0.01905701495707035, 0.002327987691387534, -0.00039204282802529633, 0.030064085498452187, 0.029302401468157768, -0.005152563098818064, 0.04812045767903328, 0.011462586000561714, -0.0018482019659131765, 0.001443090965040028, -0.0038681558798998594, -0.0007700841524638236, 0.027749165892601013, 0.00775124691426754, 0.030586808919906616, -0.015069379471242428, 0.009745065122842789, 0.005417658481746912, 0.023388154804706573, 0.01041713822633028, 0.014016465283930302, 0.005141361616551876, 0.007893129251897335, 0.010379800572991371, -0.013314521871507168, 0.0036534657701849937, -0.013112899847328663, -0.019923243671655655, 0.02628553844988346, 0.021342065185308456, 0.018713511526584625, -0.018594032153487206, 0.016084957867860794, 0.0009717061766423285, -0.008236633613705635, -0.018175853416323662, 0.03694910556077957, -0.010895057581365108, -0.03763611242175102, 0.02975045144557953, 0.009946687147021294, 0.006254016887396574, 0.04349061846733093, -0.014681071043014526, 0.016413526609539986, -0.024642692878842354, 0.010267788544297218, 0.033573802560567856, -0.0039764344692230225, 0.024642692878842354, 0.002634154399856925, -0.0030280642677098513, 0.0009325019200332463, -0.0015532363904640079, 0.012119724415242672, 0.010028828866779804, 0.010850252583622932, 0.007635500747710466, 0.0008158224518410861, 0.0005544605664908886, 0.016323916614055634, -0.011051874607801437, -0.018623901531100273, 0.018907666206359863, -0.029571231454610825, 0.017578454688191414, 0.04262439161539078, -0.010768109932541847, -0.027316050603985786, 0.05053992196917534, 0.014165814965963364, 0.04193738102912903, -0.05239185690879822, -0.004909869749099016, -0.006657260935753584, -0.0032520887907594442, 0.009872011840343475, 0.03936856985092163, 0.02479204162955284, -0.012784330174326897, 0.006295087747275829, -0.0012041315203532577, -0.048837337642908096, -0.002910451265051961, -0.008707084693014622, 0.005619280505925417, 0.01756351999938488, 0.016667421907186508, 0.012164529412984848, -0.009416495449841022, 0.03918934985995293, 0.029033571481704712, 0.01692131534218788, 0.0061830757185816765, 0.010947329923510551, 0.015875868499279022, 0.011694077402353287, -0.013687895610928535, 0.011305768974125385, 0.034947820007801056, 0.019266104325652122, -0.024209579452872276, -0.032677702605724335, 0.0016316449036821723, -0.018788186833262444, 0.014666135422885418, 0.020968690514564514, 0.012045049108564854, 0.005286977626383305, 0.01521872915327549, 0.023746594786643982, 0.0059814536944031715, 0.03216991573572159, 0.030542002990841866, -0.03521664813160896, 0.025240091606974602, -0.018101178109645844, 0.01538301445543766, 0.010439540259540081, -0.009931751526892185, 0.009976556524634361, 0.030392654240131378, -0.021267389878630638, -0.0012638714397326112, -0.01993817836046219, 0.009640520438551903, 0.007280795369297266, 0.010118438862264156, -0.01683170534670353, 0.012074919417500496, 0.010984666645526886, -0.0010221117408946157, 0.038412731140851974, -0.007937934249639511, -0.026509562507271767, 0.008430788293480873, -0.010596358217298985, -0.01680183596909046, -0.01538301445543766, -0.0044170161709189415, -0.015412883833050728, 0.031094597652554512, 0.014359968714416027, 0.01922130025923252, 0.0073293340392410755, 0.018952470272779465, 0.013045691885054111, -0.0037748124450445175, 0.005051752086728811, 0.02308945544064045, 0.04133998230099678, 0.00526830879971385, 0.025523856282234192, 0.011328171007335186, -0.006795409135520458, 0.029078377410769463, 0.0005899311508983374, 0.011387910693883896, 0.013336923904716969, -0.013590818271040916, -0.008445722982287407, 0.0036198622547090054, 0.023671919479966164, 0.0033323641400784254, 0.01614469662308693, -0.019758958369493484, 0.005365386139601469, 0.03112446703016758, 0.004652241710573435, 0.0012974750716239214, 0.02208881266415119, 0.02429918758571148, 0.030467329546809196, 0.02204400859773159, 0.013501208275556564, 0.010887589305639267, 0.008169425651431084, 0.02261153794825077, 0.021207651123404503, -0.02159596048295498, -0.01969921961426735, 0.006239081732928753, -0.023567374795675278, -0.006638592109084129, 0.006489242427051067, 0.04381918907165527, -0.0224920567125082, 0.04399840906262398, -0.0055408719927072525, 0.002499739872291684, 0.011119081638753414, 0.02668878249824047, -0.04101141542196274, -0.043012700974941254, -0.007818453945219517, 0.0020834277383983135, -0.030138758942484856, -0.00955091044306755, -0.008453190326690674, 0.026061514392495155, 0.019997918978333473, -0.02143167518079281, -0.005869441200047731, -0.042206212878227234, 0.01671222597360611, -0.046119172126054764, 0.00852039735764265, 0.011559663340449333, -0.021790115162730217, 0.0013562815729528666, -0.035664696246385574, 0.014949900098145008, 0.01394925732165575, 0.01695118471980095, -0.015308339148759842, 0.002645355649292469, 0.013732700608670712, 0.004771721549332142, 0.0011789287673309445, 0.0119106350466609, 0.010499280877411366, -0.01586093381047249, 0.0011322570499032736, -0.024314124137163162, 0.013814843259751797, 0.0029477886855602264, -0.025897229090332985, -0.002585615962743759, 0.024836847558617592, 0.022790756076574326, 0.016099892556667328, 0.006963427644222975, 0.010685967281460762, 0.020072592422366142, 0.015397949144244194, 0.024806976318359375, 0.024373862892389297, 0.012328813783824444, 0.0210284311324358, 0.04405814781785011, -0.01279926486313343, 0.018713511526584625, 0.03503742814064026, 0.01602521724998951, -0.028436174616217613, 0.02604657970368862, 0.009394093416631222, -0.01889273151755333, 0.006328691728413105, 0.004547697026282549, -0.02280569262802601, 0.0057835653424263, 0.014703473076224327, 0.010066166520118713, 0.00775124691426754, -0.027823839336633682, 0.0020778269972652197, 0.013097964227199554, -0.014337566681206226, 0.019833633676171303, 0.013172639533877373, -0.001186396344564855, 0.02951149083673954, 0.02301478199660778, -0.0023877276107668877, 0.013762570917606354, 0.08244100958108902, 0.0112460283562541, -0.03130368888378143, 0.003621729090809822, -0.008938577026128769, -0.01683170534670353, -0.004387145861983299, 0.0035843916703015566, -0.03620235621929169, 0.02090895175933838, -0.005869441200047731, -0.01775767281651497, 0.007411476690322161, 0.02358230948448181, 0.007321866694837809, -0.035067297518253326, -0.005492333322763443, 0.02111804112792015, 0.01279926486313343, 9.206005779560655e-05, 0.02713683247566223, 0.04092180356383324, -0.011395378038287163, -0.022760886698961258, -0.02095375582575798, -0.028406303375959396, 0.02595696970820427, -0.006283886730670929, -0.0038270847871899605, 0.016816770657896996, 0.02652449905872345, -0.010962264612317085, 0.021282324567437172, 0.03662053495645523, 0.0024119969457387924, -0.017668064683675766, -0.013389196246862411, 0.023059586063027382, 0.013971660286188126, -0.023283610120415688, -0.007706441916525364, -0.016294047236442566, -0.021864788606762886, -0.020401163026690483, -0.03019849956035614, 0.00958824809640646, -0.016488201916217804, -0.02377646416425705, -0.0032856923062354326, -0.04558151215314865, -0.029212791472673416, -0.010648630559444427, 0.021909594535827637, -0.005985187366604805, 0.0008139556157402694, 0.02365698479115963, 0.07634754478931427, 0.018907666206359863, 0.03157251700758934, 0.006321223918348551, -0.01642846129834652, 0.005805967841297388, -0.0008951644995249808, 0.015256066806614399, -0.01732455939054489, -0.03249848261475563, 0.02555372565984726, -0.016219371929764748, -0.016861576586961746, -0.022835562005639076, 0.0395776592195034, 0.01590573787689209, -0.0024736037012189627, 0.023432960733771324, 0.02187972329556942, 0.026270603761076927, -0.011634337715804577, 0.031243946403265, -0.004103381652384996, -0.015046977438032627, -0.03584391623735428, 0.027465401217341423, -0.00827397033572197, 0.021566089242696762, -0.012627513147890568, -0.01756351999938488, -0.008005141280591488, 0.008020075969398022, -0.006534047424793243, 0.0285855233669281, -0.007848324254155159, -0.007120244670659304, 0.025240091606974602, 0.013717765919864178, -0.013224911876022816, -0.013725233264267445, -0.019893374294042587, -0.010439540259540081, 0.016966121271252632, -0.020445967093110085, 0.019325844943523407, 0.03458938002586365, -0.014957367442548275, 0.03954778611660004, -0.009035654366016388, -0.018310267478227615, -0.019236234948039055, -0.022910237312316895, -0.0019527466502040625, -0.0203414224088192, -0.031064728274941444, 0.01364309061318636, -0.0021599694155156612, 0.014076204970479012, 0.0184148121625185, 0.05086849257349968, 0.02140180580317974, -0.025255026295781136, -0.020983627066016197, -0.015607038512825966, 0.03166212514042854, 0.013553480617702007, -0.009722662158310413, 0.002468002960085869, -0.023238806053996086, 0.00289178267121315, 0.03614261746406555, -0.010215516202151775, 0.00026392884319648147, -0.004626105539500713, 0.010066166520118713, 0.011134016327559948, 0.03757637366652489, -8.902639092411846e-05, 0.008938577026128769, 0.0393984392285347, -0.00815449096262455, 0.004103381652384996, 0.016323916614055634, 0.0018902065930888057, -0.041160762310028076, 0.012873940169811249, 0.005664085503667593, -0.012037581764161587, 0.030512133613228798, -0.007863258942961693, 0.013045691885054111, 0.01760832406580448, 0.0020778269972652197, -0.006567650940269232, -0.030915377661585808, 0.004820260219275951, 0.0408620648086071, 0.00013908186519984156, 0.004992011934518814, -0.03246861323714256, 0.03455951064825058, -0.01813104748725891, -0.01509924978017807, 0.007937934249639511, -0.0115895327180624, -0.0038942922838032246, -0.04199712350964546, -0.06989564001560211, 0.03533612936735153, -0.01128336600959301, -0.001293741399422288, -0.006190543062984943, 0.00440208101645112, 0.04340101033449173, 0.026270603761076927, -0.030915377661585808, -0.010327528230845928, 0.021371934562921524, 0.024717368185520172, -0.012074919417500496, -0.025165416300296783, 0.031393297016620636, 0.006914888974279165, -0.0009698392823338509, 0.002402662532404065, 0.00021060634753666818, 0.0224920567125082, 0.03432055190205574, 0.014912562444806099, -6.679896614514291e-05, -0.0224920567125082, -0.016099892556667328, 0.005238438956439495, 0.019684284925460815, -0.015636907890439034, 0.01047687791287899, -0.011477520689368248, 0.021177779883146286, 0.042206212878227234, 0.001589640392921865, 0.000138265109853819, 0.013859647326171398, -0.032767314463853836, 0.003954031970351934, -0.01566677913069725, -0.012142126448452473, -0.03216991573572159, -0.01233628112822771, -0.008580137975513935, 0.037367284297943115, -0.0176829993724823, -0.007056770846247673, 0.006888752803206444, 0.0036161283496767282, -0.006328691728413105, 0.004570099525153637, -0.028480978682637215, 0.02479204162955284, 0.007542157545685768, -0.006507911253720522, 0.017668064683675766, 0.04707501083612442, 0.007504819892346859, -0.055856771767139435, 0.01865377090871334, -0.034947820007801056, -0.004876266233623028, -0.02794332057237625, 0.003623595926910639, 0.010544085875153542, -0.008221697993576527, -0.01481548510491848, -0.023955684155225754, -0.00955091044306755, 0.014180749654769897, -0.0313335582613945, 0.01595054194331169, 0.03826338052749634, -0.007654169574379921, -0.01654794067144394, -0.0035395866725593805, -0.02422451414167881, 0.015457688830792904, -0.0017063197446987033, -0.025942035019397736, -0.014808017760515213, -0.01329958625137806, 0.031064728274941444, 0.04510359466075897, 0.009035654366016388, 0.030467329546809196, 0.0005759295891039073, 1.5080814591783565e-05, 0.0015028308844193816, 0.005365386139601469, 0.022835562005639076, -0.015965478494763374, -0.021819984540343285, -0.022357642650604248, 0.009864544495940208, 0.0009451032965444028, -0.0024848049506545067, 0.006787941791117191, 0.004876266233623028, -0.008423320017755032, -0.02014726772904396, -0.012418423779308796, 0.0031307421158999205, -0.0056678191758692265, 0.01444957870990038, 0.021162845194339752, -0.028794612735509872, -0.02365698479115963, 0.044147755950689316, 0.01780247874557972, 0.008908706717193127, 0.03178160637617111, -0.0017025860724970698, -0.021282324567437172, 0.015002172440290451, -0.012933679856359959, 0.02685306780040264, 0.0074786837212741375, 0.003513450501486659, -0.00880416203290224, -0.01388951763510704, -0.02046090178191662, -0.01751871407032013, -0.01475574541836977, -0.034380290657281876, -0.003593726083636284, -0.005929181352257729, 0.013635623268783092, 0.009565845131874084, 0.01308302953839302, 0.03455951064825058, 0.007008232641965151, 0.00341077265329659, -0.00722478935495019, 0.018967404961586, 0.006298821419477463, 0.008303840644657612, -0.0040212394669651985, 0.002766702324151993, -0.007026901002973318, 0.003494781907647848, -0.009580779820680618, -0.004670910537242889, 0.013307053595781326, 0.02874980866909027, 0.011410313658416271, 0.025120612233877182, 0.01756351999938488, -0.0025482785422354937, 0.016383657231926918, 0.0028955163434147835, -0.014158346690237522, -0.043938666582107544, -0.007038102485239506, -0.021610895171761513, 0.036919232457876205, 0.03024330548942089, -0.015696648508310318, 0.004275133833289146, 0.0313335582613945, -0.0037561438512057066, 0.021775178611278534, -0.006485508754849434, 0.038980260491371155, -0.018877796828746796, 0.00271442998200655, 0.014927498064935207, 0.01057395525276661, -0.03330497071146965, 0.026494627818465233, 0.00041957918438129127, 0.03814390301704407, -0.025568660348653793, 0.049315255135297775, 0.013314521871507168, 0.014277826994657516, 0.028630327433347702, 0.013307053595781326, -0.026375148445367813, -0.030347850173711777, 0.002766702324151993, 0.021371934562921524, -0.01716027595102787, -0.00976746715605259, 0.03912960737943649, -0.0008503595599904656, 0.037606243044137955, 0.008707084693014622, 0.0038905583787709475, 0.011634337715804577, 0.04074258357286453, 0.005511002149432898, -0.006313756573945284, -0.024239448830485344, 0.004585034213960171, 0.019325844943523407, -0.005477398633956909, -0.02090895175933838, 0.02676345780491829, 0.04032440483570099, -0.01893753558397293, 0.00026392884319648147, 0.0010361132444813848, -0.02361218072474003, 0.028003059327602386, 0.02301478199660778, -0.00973012950271368, -0.026225799694657326, -0.039667267352342606, -0.002294383943080902, -0.009834674187004566, -0.0008942310232669115, -0.032438743859529495, 0.0032278194557875395, -0.03763611242175102, 0.01986350305378437, 0.013277184218168259, -0.012642447836697102, -0.0019247436430305243, -0.005305646453052759, 0.027390725910663605, 0.03303614258766174, 0.009222340770065784, 0.02329854667186737, 0.003931629471480846, 0.008938577026128769, 0.026614107191562653, -0.006115868221968412]" -Automated Mocking Using API Traffic: Speedscale's Story,"This is an installment of our “Community Member Spotlight” series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition, Ken Ahrens, co-founder and CEO of Speedscale, joins us to share how they modernize and automate testing practices for cloud infrastructure by providing API traffic data going into and out various microservices. Thanks to TimescaleDB, Speedscale´s UI loads quickly and provides the ability to drill deep down into high-fidelity data.Speedscaleis one of the first commercial technologies utilizingactual API trafficin order to generate tests and mocks. Speedscale helps Kubernetes engineering teams validate how new code will perform under production-like workload conditions.Speedscale service mapSpeedscale provides unparalleled visibility, collects and replays API traffic, introduces chaos, and measures the golden signals of latency, throughput, saturation, and errors before the code is released.Screenshot of Speedscale UISpeedscale Traffic Replayis a modern load, integration, and chaos testing framework -- an alternative to legacy scripting tools that can take days or weeks to run and do not scale well for modern architectures.If your organization provides a SaaS product that is critical for revenue, or your team is responsible for performant infrastructure, Speedscale is for you. Speedscale enables engineering leaders to generate quality automation quickly without the need for manual scripting. Since actual API calls (not scripts) are the primary ingredient, tests and mocks can be built and regenerated quickly to keep pace with the speed of changing business requirements.As microservices become more separated logically, they are highly dependent on each other to deliver the expected functionality. This means performance problems become distributed across multiple services and can be difficult to trace. Multiple contributing factors affect the state of an application in microservices and Kubernetes environments. A testing harness that closely mirrors the production setup and incoming traffic has become a requirement for highly distributed and containerized environments.By leveraging traffic to automatically generate sophisticated mocks, engineers and testers are granted the ability to isolate and contract/performance test smaller components in the context of a tightly coupled architecture. This superpower enables rapid testing iterations. Moreover, without the need for scripting, testing can finally move as fast as development.About the foundersSpeedscale’s leadership team comes from companies like New Relic, Observe Inc, Wily Introscope (bought by CA",https://www.timescale.com/blog/automated-mocking-using-api-traffic-speedscales-story/,474,"[0.031810663640499115, -0.006728912238031626, 0.03425123915076256, 0.0003390889905858785, 0.030950916931033134, -0.01322902087122202, -0.07449297606945038, 0.009831630624830723, -0.01636294089257717, 0.025556692853569984, 0.016487741842865944, -0.028676746413111687, 0.00025502091739326715, -0.002085234737023711, 0.032614946365356445, 0.02447507530450821, 0.007654527667909861, -0.02895408309996128, -0.05485745146870613, 0.02296358346939087, 0.03078451380133629, 0.0019049651455134153, 0.005883031524717808, 0.004121935460716486, -0.023310255259275436, -0.04201670363545418, -0.056909751147031784, 0.033585626631975174, 0.04093508422374725, -0.09457224607467651, -0.013346889987587929, -0.040047600865364075, -0.039215587079524994, 0.016959216445684433, 0.02981383167207241, -0.014435441233217716, -0.0044582076370716095, 0.015198120847344398, 0.019358189776539803, 0.01321515440940857, -0.005623027216643095, -0.016584809869527817, -0.006663044448941946, 0.04601036757230759, 0.021521426737308502, 0.0002821047091856599, 0.00857667624950409, -0.04578849673271179, 0.022811047732830048, 0.021147020161151886, -0.07000010460615158, 0.042959652841091156, -0.006697712000459433, -0.043375659734010696, 0.013596493750810623, 0.04157296195626259, 0.0069785164669156075, 0.03125599026679993, -0.017943765968084335, 0.01219593733549118, 0.019982200115919113, -0.0606815479695797, -0.0028357806149870157, 0.045649830251932144, -0.03583206608891487, 0.0280943363904953, 0.02489108219742775, 0.017264287918806076, -0.02569536305963993, 0.01288928184658289, 0.07410470396280289, 0.03752382844686508, 0.00744652422145009, 0.019330456852912903, -0.002085234737023711, -0.05236140638589859, -0.022450508549809456, 0.09651361405849457, -0.00334538915194571, 0.010462574660778046, -0.0038861981593072414, -0.005130752455443144, 0.004024867434054613, -0.004791013430804014, 0.012854615226387978, -0.03192159906029701, -0.0323653407394886, -0.025834031403064728, -0.004104601684957743, 0.02859354391694069, 0.0014525576261803508, 0.06606190651655197, -0.01474051270633936, 0.02465534582734108, 0.029619695618748665, 0.02314385399222374, 0.025196153670549393, 0.006278238259255886, 0.02749805897474289, 0.026000434532761574, 0.01691761612892151, -0.013769829645752907, -0.028649011626839638, 0.004125402309000492, 0.0432092547416687, -0.0016536276089027524, 0.027095919474959373, 0.011495659127831459, 0.02243664115667343, -0.008819347247481346, -0.08980203419923782, -0.010850847698748112, -0.04415220394730568, -0.03156106173992157, -0.016307473182678223, 0.025029752403497696, 0.006708112079650164, -0.011502591893076897, 0.017194954678416252, -0.01322902087122202, -0.03211573511362076, 0.02100835181772709, 0.017111752182245255, -0.01881738193333149, -0.0030437842942774296, -0.060737013816833496, 0.006472374778240919, -0.04137882590293884, -0.06223464012145996, 0.006621444132179022, 0.038300372660160065, -0.02749805897474289, 0.038716379553079605, -0.03458404541015625, 0.0020453676115721464, 0.010920182801783085, -0.08159282803535461, -0.046537309885025024, -0.023310255259275436, 0.019330456852912903, -0.03070131316781044, -0.029675163328647614, 0.0259033665060997, -4.5717431930825114e-05, -0.02100835181772709, -0.013582627288997173, -0.017916033044457436, 0.03200479969382286, -0.01840137504041195, 0.020855814218521118, -0.012445541098713875, -0.014241304248571396, -0.06584003567695618, -0.0003471057862043381, 0.01035857293754816, 0.014296771958470345, 0.029508760198950768, 0.05172353237867355, -0.014054101891815662, -0.014005566947162151, 0.022852648049592972, 0.043874867260456085, -0.024336406961083412, 0.01034470647573471, -0.0302853062748909, -0.016848281025886536, -0.022783314809203148, -0.027719929814338684, -0.09113325923681259, -0.007813997566699982, -0.04246044158935547, -0.0432092547416687, 0.002076568081974983, 0.03366883099079132, 0.017000816762447357, 0.002440574113279581, -0.014449307695031166, -0.01985739916563034, 0.013326088897883892, -0.015752796083688736, -0.07044384628534317, 0.024849481880664825, -0.030091170221567154, -0.006909182295203209, -0.046093571931123734, -0.019330456852912903, -0.04670371487736702, 0.04409673810005188, 0.018332039937376976, 0.03025757148861885, -0.048672813922166824, 0.016723480075597763, -0.021119285374879837, 0.022145437076687813, -0.011682861484587193, -0.024669211357831955, 0.029647428542375565, 0.013416224159300327, -0.029730629175901413, 0.0027560461312532425, 0.019898999482393265, -0.014962383545935154, 0.08530915528535843, -0.02254757657647133, 0.025556692853569984, -0.016848281025886536, -0.00479448027908802, -0.012771413661539555, -0.053831297904253006, -0.009887098334729671, 0.02337959036231041, -0.002506441902369261, 0.009075884707272053, 0.02332412265241146, -0.022630777209997177, 0.0034857916180044413, -0.02486334927380085, 0.012917015701532364, 0.04553889483213425, 0.034778181463479996, -0.0161826703697443, 0.04800720140337944, 0.0270265843719244, 0.008188403211534023, -0.026097502559423447, 0.03591526672244072, 0.04334792494773865, -0.022811047732830048, 0.010809247381985188, -0.0072662546299397945, -0.002634710632264614, -0.03078451380133629, -0.0519731342792511, -0.02441960759460926, 0.020966749638319016, -0.01657094433903694, -0.017347490414977074, -0.0018390973564237356, 0.012452474795281887, -0.020204070955514908, 0.009221487678587437, 0.015780530869960785, -0.01573893055319786, 0.0063163721933960915, 0.015711195766925812, 0.010122835636138916, -0.029675163328647614, -0.04656504467129707, 0.008840147405862808, 0.021091552451252937, 0.04398580268025398, -0.025404157117009163, -0.03164426237344742, -0.023046785965561867, -0.006836380809545517, -0.037828899919986725, 0.02240890823304653, -0.015267455019056797, 0.044845547527074814, 0.015461592003703117, 0.019871264696121216, -0.03422350436449051, -0.023240922018885612, -0.016099469736218452, -0.041739363223314285, -0.0033713895827531815, 0.017194954678416252, -0.015683462843298912, 0.02684631571173668, 0.039215587079524994, 0.0777655690908432, 0.05072511360049248, -0.003289921674877405, -0.020758746191859245, -0.02270011231303215, -0.004239804111421108, 0.015614127740263939, -0.01111431885510683, -0.013728229328989983, -0.010483374819159508, 0.01240394078195095, -0.0015617593890056014, 0.008410274051129818, -0.01467117853462696, 0.010199103504419327, -0.008458808064460754, 0.012764479964971542, -0.00027322123060002923, -0.018512308597564697, -0.038660913705825806, -0.00979696400463581, -0.03375203162431717, 0.012771413661539555, 0.003369656391441822, 0.03239307552576065, -0.008167603053152561, -0.02329638972878456, -0.0025861766189336777, -0.022325705736875534, -0.0389937199652195, 0.02622230537235737, -0.008819347247481346, 0.0018408307805657387, -0.01754162646830082, 0.011301522143185139, 0.011592727154493332, -0.020523009821772575, 0.004323005676269531, 0.03502778708934784, -0.025847898796200752, 0.020731013268232346, 0.02231184020638466, 0.0081052016466856, -0.03952065855264664, 0.01584986411035061, -0.017111752182245255, 0.051279790699481964, -0.01884511485695839, 0.018054701387882233, -0.05488518252968788, -0.02611136995255947, -0.04154522716999054, 0.015211987309157848, -0.0012020868016406894, 0.0498376339673996, -0.022991318255662918, 0.05441370978951454, -0.02640257403254509, 0.022783314809203148, -0.023365722969174385, 0.0025827097706496716, -0.01707015186548233, -0.0033436559606343508, -0.049504827708005905, 0.000721078715287149, 0.0023747063241899014, 0.0033488560002297163, -0.05274968221783638, -0.046509578824043274, 0.011967133730649948, -0.01923338882625103, -0.006912648677825928, -0.03924332186579704, -0.012674344703555107, 0.0906340479850769, 0.00414966931566596, -0.013000217266380787, -0.016113335266709328, 0.05874017998576164, 0.02611136995255947, -0.010448708198964596, -0.0060321008786559105, -0.0039797998033463955, 0.017347490414977074, -0.010788447223603725, 0.02189583331346512, -0.01468504499644041, -0.01798536628484726, -0.016668012365698814, -0.006923049222677946, -0.036580879241228104, 0.040907349437475204, -0.011759129352867603, -0.007391056977212429, -0.002657244447618723, 0.03721875697374344, -0.016460008919239044, 0.021729430183768272, -0.07693355530500412, -0.014081835746765137, -0.008798547089099884, 0.047757599502801895, 0.01878964714705944, 0.006250504404306412, -0.05266648158431053, -0.009117485955357552, 0.06739312410354614, 0.03977026417851448, 0.029952500015497208, 0.053997702896595, 0.05527345836162567, 0.03452857583761215, 0.009755362756550312, 0.017888298258185387, 0.030396241694688797, -0.00032673878013156354, 0.0024336406495422125, 0.011953266337513924, -0.05333209037780762, -0.011447124183177948, 0.03336375579237938, -0.0302853062748909, -0.006905715446919203, -0.00014549409388564527, 0.03475044667720795, 0.023046785965561867, 0.034611776471138, 0.021271822974085808, 0.07282894849777222, -0.0017567627364769578, 0.012064201757311821, -0.005231287330389023, -0.06445334106683731, 0.010732979513704777, -0.012584210373461246, -0.030812248587608337, -0.012563410215079784, 0.005227820482105017, -0.017084019258618355, 0.010316972620785236, -0.024669211357831955, -0.007890265434980392, 0.05918392166495323, -0.03156106173992157, 0.008909482508897781, -0.03361336141824722, 0.007058251183480024, 0.04323698952794075, 0.05352622643113136, 0.07698901742696762, -0.007557459641247988, -0.004232870880514383, -0.018956050276756287, -0.018387507647275925, -0.013665827922523022, 0.07998427003622055, 0.0325317420065403, 0.0027508458588272333, 0.01792990043759346, -0.012674344703555107, -0.03214346989989281, -0.02447507530450821, 0.037856630980968475, -0.033918432891368866, -0.014352239668369293, 0.03208800405263901, 0.023240922018885612, -0.045206088572740555, 0.046065837144851685, -0.0008926815935410559, -0.031422391533851624, -0.014990117400884628, 0.001982966437935829, 0.005605693440884352, -0.026984984055161476, -0.008438007906079292, -0.021355023607611656, -0.029508760198950768, -0.012452474795281887, -0.0019777663983404636, 0.03283681347966194, -0.010032701306045055, -0.04068547859787941, 0.039576128125190735, -0.039160121232271194, -0.031782932579517365, 0.03322508931159973, -0.018526175990700722, 0.030895449221134186, -0.028427140787243843, -0.03979799896478653, 0.049532562494277954, -0.03361336141824722, 0.0014178903074935079, 0.01996833272278309, -0.04761892929673195, 0.042987383902072906, -0.0194691251963377, 0.012521808966994286, -0.0034979251213371754, 0.014754380099475384, 0.02749805897474289, -0.017264287918806076, -0.019330456852912903, -0.05091924965381622, -0.014241304248571396, 0.007023584097623825, -0.013582627288997173, -0.0062158373184502125, -0.013333022594451904, -0.0454002246260643, -0.012189003638923168, -0.04193349927663803, 0.05713162198662758, 0.012029534205794334, 0.029508760198950768, -0.005172353237867355, 0.01824883744120598, -0.027844732627272606, 0.0006352773052640259, -0.014227437786757946, 0.012514876201748848, 0.08885908126831055, -0.016307473182678223, -0.06345492601394653, 0.010018833912909031, 0.008167603053152561, -0.02744259126484394, -0.009491891600191593, 0.00616383645683527, 0.004964349791407585, -0.053387559950351715, 0.01923338882625103, 0.04933842271566391, 0.017000816762447357, -0.006406506989151239, 0.005047550890594721, -0.026416441425681114, -0.007196920458227396, -0.027095919474959373, -0.014851448126137257, 0.028219137340784073, 0.02645804174244404, 0.03192159906029701, -0.04883921518921852, 0.004219003953039646, 0.007612927351146936, 0.014546376653015614, 0.015239721164107323, 0.007730796001851559, -0.006860647816210985, -0.031061852350831032, -0.024086803197860718, 0.022866515442728996, 0.007772396318614483, 0.003392189973965287, -0.03777343034744263, -0.020869681611657143, -0.0172504223883152, 0.0033297890331596136, -0.008805480785667896, -0.020342739298939705, 0.009484958834946156, 0.012778346426784992, -0.04143429175019264, -0.022297972813248634, -0.018276572227478027, -0.048201337456703186, -0.04143429175019264, 0.04060227796435356, 0.02577856369316578, 0.014990117400884628, 0.025639895349740982, 0.04922749102115631, -0.005744362715631723, 0.010746845975518227, 0.020633945241570473, -0.03511098772287369, 0.007196920458227396, 0.028759947046637535, -0.0032829882111400366, -0.04054681211709976, 0.0411846898496151, -0.001752429292537272, 0.02747032605111599, 0.023601461201906204, 0.019746463745832443, 0.007404923904687166, 0.004094201605767012, -0.0005178420105949044, -0.00698545016348362, -0.023878799751400948, 0.018900582566857338, -0.015101051889359951, 0.015170386992394924, 0.05358169600367546, -0.011017250828444958, -0.05735349282622337, 0.009783096611499786, 0.03594300150871277, 0.014421573840081692, 0.010088169015944004, -0.03671954572200775, 0.0007102452218532562, 0.02116088755428791, -0.0073494561947882175, 0.005588360130786896, -0.03206026926636696, 0.00524515425786376, 0.02421160414814949, -0.02059234492480755, -0.0012159536127001047, 0.012528742663562298, 0.007051317952573299, -0.014130369760096073, -0.00092128204414621, 0.0325317420065403, -0.005876098293811083, 0.023046785965561867, 0.030479442328214645, -0.017916033044457436, -0.0003700728411786258, 0.00579289672896266, 0.027539659291505814, 0.033169619739055634, 0.0001492858282290399, 0.03189386799931526, -0.03419576957821846, -0.016848281025886536, 0.011315388604998589, 0.0046419440768659115, 0.014532509259879589, 0.02121635526418686, -0.03189386799931526, -0.02687404863536358, 0.019898999482393265, 0.008722279220819473, -0.0013719563139602542, 0.032198939472436905, -0.029314622282981873, 0.01677894778549671, 0.004673144780099392, -0.0238510649651289, -0.04922749102115631, 0.005172353237867355, 0.003594993380829692, -0.00011927699233638123, -0.009401757270097733, 0.02098061703145504, -0.0004996416973881423, -0.02293585054576397, -0.04029720649123192, -0.002015900332480669, -0.02447507530450821, 0.024461207911372185, -0.009748429991304874, 0.014629578217864037, -0.023892665281891823, -0.02418387122452259, -0.0005776429898105562, -0.0010304838651791215, 0.027137519791722298, 0.014165036380290985, -0.013326088897883892, 0.013589560054242611, 0.0102684386074543, 0.016529342159628868, 0.03541605919599533, 0.010954849421977997, -0.005803296808153391, 0.04268231242895126, 0.020883549004793167, -0.007252387702465057, -0.010004967451095581, 0.03555472567677498, -0.014504775404930115, -0.010656711645424366, 0.03419576957821846, 0.02945329248905182, 0.0015201587229967117, 0.0036331273149698973, -0.04038040712475777, 0.02939782477915287, 0.02939782477915287, 0.016903748735785484, 0.027192987501621246, -0.03810623660683632, -0.036081667989492416, -0.006721979007124901, 0.019538460299372673, -0.024461207911372185, 0.03341922536492348, -0.043375659734010696, -0.00657984334975481, -0.03849450871348381, -0.006403040140867233, 0.0388827845454216, -0.004732078872621059, -0.009998033754527569, 0.01973259635269642, -0.02439187467098236, 0.059516727924346924, 0.024724679067730904, 0.027317790314555168, 0.013991700485348701, 0.021854231134057045, 0.006070234812796116, -0.033169619739055634, 0.016973083838820457, 0.05219500511884689, -0.036081667989492416, 0.026236170902848244, -0.036969151347875595, -0.004329938907176256, -0.009692962281405926, 0.027997268363833427, -0.00036140604061074555, 0.05025364086031914, 0.02100835181772709, -0.02720685489475727, 0.0030541843734681606, 0.004742479417473078, -0.023102251812815666, -0.00899268314242363, 0.0048083472065627575, -0.023227054625749588, 0.007987333461642265, -0.006902248598635197, -0.025431891903281212, -0.06961183249950409, -0.0029744496569037437, -0.009283888153731823, -0.04490101709961891, -0.011128186248242855, -0.036691814661026, -0.01094791665673256, 0.020217938348650932, -0.024322539567947388, 0.025348689407110214, -0.00844494067132473, -0.03985346481204033, -0.006240104325115681, -0.031838398426771164, 0.013021017424762249, -0.011259921826422215, 0.01748615875840187, -0.010940982960164547, 0.005740895867347717, -0.03244854137301445, 0.015905331820249557, -0.031366925686597824, -0.009117485955357552, -0.013034884817898273, -0.048229072242975235, 0.011863132007420063, -0.013575693592429161, -0.002657244447618723, 0.04185029864311218, 0.018775779753923416, -0.013589560054242611, 0.024696946144104004, 0.0005702761700376868, 0.01557252649217844, -0.0259310994297266, 0.03278134763240814, -0.050364576280117035, -0.03635900840163231, -0.002014166908338666, -0.05230594053864479, -0.01670961268246174, -0.05327662453055382, -0.01996833272278309, 0.008604410104453564, 0.021327288821339607, -0.011876998469233513, -0.026000434532761574, 0.01701468415558338, 0.030534910038113594, 0.026832448318600655, -0.034805916249752045, 0.0051099518314003944, 0.012785280123353004, -0.0015357589581981301, 0.011003383435308933, -0.00988016463816166, -0.01985739916563034, 0.02092514932155609, 0.013769829645752907, 0.027484193444252014, 0.03286454826593399, -0.023629194125533104, 0.029286889359354973, -0.011592727154493332, 0.006136102601885796, 0.02202063426375389, 0.025681495666503906, -0.0046350108459591866, 0.013991700485348701, 0.019108586013317108, 0.0011076185619458556, -0.023282522335648537, -0.021951301023364067, 0.0018026967300102115, 0.01417890377342701, 0.026125237345695496, 0.01905311830341816, -0.00042532378574833274, 0.015891466289758682, 0.0172504223883152, -0.00025848764926195145, 0.019164053723216057, -0.007183053530752659, -0.03863317891955376, -0.02501588501036167, -0.037468358874320984, -0.002726578852161765, 0.005997433327138424, -0.018179504200816154, -0.02030113898217678, -0.010323905386030674, -0.03208800405263901, 0.006475841626524925, -0.027816997841000557, -0.04490101709961891, -0.008701479062438011, 0.0008783813682384789, 0.002073101233690977, -0.05588360130786896, -0.005404623690992594, 0.006181169766932726, -0.022561443969607353, -0.006382239982485771, 0.02364306151866913, 0.03402936831116676, 0.010982583276927471, 0.011606593616306782, -0.017028551548719406, 0.03946519270539284, -0.033086419105529785, -0.03990893438458443, -0.01748615875840187, 0.007134519051760435, -0.02465534582734108, 0.0006491441745311022, 0.008951082825660706, 0.014067968353629112, 0.023074518889188766, -4.5934099034639075e-05, -0.018942182883620262, -0.006364906206727028, 0.05019817128777504, 0.018734179437160492, -0.0015218921471387148, -0.020259538665413857, 0.03405710309743881, 0.04659277945756912, -0.030950916931033134, -0.0003835064126178622, -0.004194736946374178, -0.017735762521624565, 0.015419990755617619, -0.034611776471138, 0.021091552451252937, 0.00012891882215626538, 0.001437823986634612, -0.015725063160061836, -0.014379973523318768, -0.04662051051855087, -0.0194413922727108, 0.01982966437935829, -0.027428725734353065, 0.005740895867347717, -0.012715945951640606, 0.007404923904687166, 0.021299555897712708, -0.0008935482474043965, 0.01842910796403885, 0.0038168637547641993, -0.009179886430501938, -0.020495275035500526, -0.0036920616403222084, -0.029231421649456024, 0.022173170000314713, -0.028108203783631325, 0.006708112079650164, 0.03319735452532768, 0.009623627178370953, -0.031422391533851624, 0.03555472567677498, 0.0020245672203600407, -0.014601844362914562, -0.012494075112044811, 0.014532509259879589, -0.018262704834342003, 0.035305123776197433, 0.02095288410782814, -0.0005564093007706106, 0.045705296099185944, 0.057242557406425476, 0.016986951231956482, -0.007765463087707758, 0.015281322412192822, -0.026042034849524498, 0.026236170902848244, -0.015322922728955746, -0.022353440523147583, -0.01905311830341816, 0.009838564321398735, -0.005685428157448769, -0.0016631610924378037, 0.01426903810352087, -0.00029683829052373767, -0.018484575673937798, -0.016584809869527817, 0.026333240792155266, 0.0011656861752271652, 0.013145819306373596, 0.0325317420065403, -0.008451874367892742, 0.012050334364175797, 0.0003804730367846787, -0.001820030389353633, 0.02726232260465622, 0.0028739147819578648, 0.00337832304649055, 0.028759947046637535, -0.0237123966217041, 0.02986929938197136, 0.008209203369915485, 0.00933242216706276, 0.021646227687597275, -0.006860647816210985, -0.024294806644320488, 0.015003983862698078, -0.005328355822712183, -0.02468307875096798, -0.018942182883620262, 0.003230987349525094, -0.016460008919239044, 0.056410543620586395, 0.03544379398226738, -0.007904131896793842, -0.005966233089566231, 0.02353212609887123, -0.028233004733920097, -0.005716628860682249, -0.02934235706925392, 0.03158879280090332, -0.022353440523147583, -0.023753996938467026, 0.041739363223314285, -0.03513871878385544, 0.047840800136327744, 0.029924767091870308, -0.0066110435873270035, -0.022811047732830048, 0.008854014798998833, -0.006056367885321379, 0.06339945644140244, 0.010843914933502674, 0.022838782519102097, -0.017791230231523514, 0.015919199213385582, -0.0004086401604581624, -0.01964939571917057, -0.006569443270564079, 0.0063995737582445145, -0.013797563500702381, -0.03347469121217728, 0.017624827101826668, 0.004021400585770607, 0.02100835181772709, -0.0015426924219354987, 0.0002450541069265455, 0.005442757625132799, -0.015835998579859734, 0.04881148040294647, 0.01707015186548233, 0.0005438424414023757, 0.00503715081140399, 0.03766249492764473, -0.008722279220819473, 0.025473492220044136, -0.05499611794948578, -0.04490101709961891, -0.026957251131534576, -0.002681511454284191, 0.010081235319375992, 0.04115695506334305, 0.021701695397496223, 0.0205368772149086, -0.010455640964210033, 0.00897881668061018, -0.06323305517435074, 0.010199103504419327, 0.03935425728559494, 0.016529342159628868, 0.02059234492480755, -0.030146637931466103, 0.006569443270564079, -0.03164426237344742, 0.03491685166954994, 0.022034501656889915, -0.027345523238182068, -0.00133555568754673, 0.014366107061505318, 0.04892241582274437, -0.024086803197860718, 0.006728912238031626, -0.0014352239668369293, 0.04015853628516197, 0.03211573511362076, -0.03627580776810646, -0.014324505813419819, -0.005317955743521452, -0.0367472805082798, 0.001903231837786734, 0.037052351981401443, -0.0003566392988432199, 0.025681495666503906, -0.02676311321556568, -0.0018009634222835302, -0.002775113098323345, 0.006378773134201765, 0.008916415274143219, -0.045705296099185944, 0.024960417300462723, -0.03469498082995415, 0.010809247381985188, 0.01170366257429123, 0.004302205052226782, -0.01769416220486164, 0.024641478434205055, -0.0018113636178895831, -0.0031113852746784687, 0.0028912483248859644, 0.003241387428715825, 0.01996833272278309, -0.014560243114829063, -0.009727628901600838, 0.03192159906029701, 0.003917398862540722, 0.010587376542389393, 0.018262704834342003, -0.012674344703555107, 0.0026607110630720854, -0.0323653407394886, -0.008888681419193745, -0.03347469121217728, -0.04093508422374725, 0.042959652841091156, -0.02486334927380085, 0.0411846898496151, -0.031394656747579575, -0.002894714940339327, -0.02658284455537796, 0.020883549004793167, 0.005151552613824606, 0.048229072242975235, -0.0048187472857534885, 0.001972566358745098, 0.040463607758283615, 0.004770212806761265, 0.001631960622034967, -0.013547959737479687, -0.005491291638463736, 0.007287055253982544, -0.011460991576313972, 0.019191786646842957, 0.007813997566699982, -0.0005408090073615313, 0.02124408818781376, 0.008070535026490688, 0.058629244565963745, 0.0009836831595748663, 0.01709788478910923, -0.00024397074594162405, -0.00579289672896266, -0.002953649265691638, -0.0006175102898851037, -0.027331655845046043, -0.013679695315659046, -0.02723458781838417, 0.011974066495895386, 0.0028149804566055536, 0.030923184007406235, -0.014088768512010574, -0.017236554995179176, -0.001466424553655088, -0.005668094847351313, -0.007696128450334072, 0.001723828841932118, -0.013360756449401379, -0.0007254121010191739, 0.0005455758073367178, 0.02361532859504223, 0.013111152686178684, -0.0057755629532039165, 0.02423933893442154, 0.02783086523413658, 0.018304305151104927, 0.02204836905002594, 0.06811420619487762, -0.05116885527968407, 0.00627477141097188, 0.0004745079204440117, -0.004700878635048866, -0.017860565334558487, 0.009179886430501938, -0.006940382532775402, -0.008909482508897781, 0.03075678087770939, -0.015253588557243347, -0.004437407478690147, 0.0162104032933712, 0.023892665281891823, -0.03161652758717537, -0.012355406768620014, 0.030146637931466103, -0.011904732324182987, 0.007047851104289293, -0.01536452304571867, 0.01931658945977688, -0.013125019147992134, -0.006829447578638792, 0.03818943724036217, -0.023518258705735207, -0.0026936449576169252, -0.01816563680768013, 0.00394166586920619, 0.02613910287618637, 0.04725838825106621, 0.005893431603908539, -0.04806267097592354, -0.025584427639842033, -0.015378390438854694, 0.027872465550899506, 0.008694545365869999, 0.02439187467098236, 0.006891848519444466, 0.0604596771299839, -0.014095702208578587, 0.009401757270097733, 0.026929516345262527, 0.04917202144861221, 0.0077238623052835464, 0.036469943821430206, 0.02267237938940525, 0.020134735852479935, 0.018124036490917206, 0.014546376653015614, -0.024544410407543182, 0.004343805834650993, 0.011065784841775894, -0.013270622119307518, -0.021965166553854942, 0.011551125906407833, 0.019607793539762497, 0.00494008231908083, 0.023892665281891823, 0.017264287918806076, -0.023864932358264923, 0.031339190900325775, 0.019996067509055138, -0.014657311141490936, 0.012715945951640606, -0.0006309438613243401, -0.015239721164107323, 0.006739312782883644, 0.0023435058537870646, -0.022422773763537407, -0.004111535381525755, 0.002646844135597348, 0.02311611920595169, 0.011953266337513924, 0.0007449124241247773, 0.004648877773433924, 0.06317758560180664, 0.016349073499441147, 0.023462792858481407, 0.01733362302184105, -0.011745262891054153, -0.01973259635269642, -0.0009715495398268104, 0.006746246013790369, -0.006430773995816708, 0.03336375579237938, -0.031228255480527878, 0.0061257025226950645, 0.0019274988444522023, 0.004177403170615435, 0.004947016015648842, -0.0065105087123811245, -0.01372129563242197, 0.029758363962173462, 0.004444340709596872, 0.0015669595450162888, 0.026152970269322395, 0.020703278481960297, 0.006784379947930574, -0.010795379988849163, -0.012369273230433464, -0.03164426237344742, 0.006836380809545517, -0.022658511996269226, 0.007536659482866526, 0.0018841648707166314, -0.016141070052981377, -0.013880765065550804, 0.009498825296759605, 0.04847867786884308, 0.01748615875840187, 0.00418433640152216, -0.01275754626840353, -0.013742096722126007, 0.015891466289758682, 0.011544193141162395, -0.029591960832476616, -0.037468358874320984, -0.03533285856246948, -0.014837581664323807, -0.008999616838991642, 0.02121635526418686, -0.0017836297629401088, -0.03635900840163231, -0.0031183187384158373, -0.030534910038113594, -0.054275039583444595, 0.0023296389263123274, 0.0005447090952657163, -0.0024180402979254723, 0.002301905071362853, 0.013062618672847748, 0.03508325293660164, 0.016529342159628868, 0.023240922018885612, 0.03838357329368591, -0.021743295714259148, -0.025445759296417236, -0.020287271589040756, -0.000477974652312696, -0.04024174064397812, -0.03297548368573189, 0.002939782338216901, -0.004087268374860287, 0.0023279055021703243, -0.027456458657979965, -0.001419623731635511, 0.023435058072209358, 0.03075678087770939, 0.01884511485695839, 0.019372057169675827, 0.01994059979915619, 0.026444174349308014, 0.02522388845682144, 0.000916948658414185, -0.05546759441494942, -0.03314188867807388, 0.03671954572200775, -0.009713762439787388, 0.020023800432682037, -0.0007301788427866995, 0.025626027956604958, 0.000962016056291759, 0.0007106785196810961, -0.00273697916418314, 0.01876191422343254, -0.013339956291019917, -0.024558277800679207, 0.014310639351606369, 0.0010226838057860732, 0.013014083728194237, -0.01996833272278309, -0.038300372660160065, -0.022866515442728996, 0.011731396429240704, -0.015101051889359951, 0.006247037556022406, 0.006559042725712061, -0.0038653980009257793, 0.023046785965561867, -0.007495058700442314, 0.007481191772967577, -0.036691814661026, -0.02530708909034729, -0.010011900216341019, 0.009068951942026615, -0.03075678087770939, -0.003643527626991272, 0.0369136817753315, 0.015128785744309425, -0.006995850242674351, 0.018595511093735695, 0.0008900815155357122, 0.006735845934599638, -0.033086419105529785, -0.009762296453118324, 0.007418790832161903, 0.004340338986366987, -0.006652644369751215, 0.011772996746003628, -0.01941365748643875, 0.007411857135593891, 0.05277741700410843, -0.0035568594466894865, -0.03228214010596275, 0.005144619382917881, -0.012085001915693283, -0.0260143019258976, 0.044734615832567215, -0.016016267240047455, -0.014213570393621922, 0.016404541209340096, -0.004121935460716486, -0.006312905345112085, 0.05768629536032677, -0.017305888235569, -0.018900582566857338, 0.010011900216341019, -0.02522388845682144, -0.026360973715782166, 0.010663644410669804, -0.01034470647573471, 0.02364306151866913, -0.004922749008983374, 0.010719112120568752, 0.003057650988921523, -0.018040833994746208, 0.013180486857891083, 0.043847132474184036, -0.017818965017795563, -0.018207237124443054, -0.03192159906029701, -0.006527842488139868, -0.021549159660935402, -0.0017671628156676888, -0.012917015701532364, 0.012057268060743809, -0.007661461364477873, -0.009145219810307026, 0.007037451025098562, 0.026471909135580063, -0.01683441549539566, -0.010538842529058456, -0.0009247487760148942, 0.004056067671626806, 0.02134115621447563, -0.03416803851723671, -0.006084101740270853, -0.009838564321398735, 0.004804880358278751, 0.019926732406020164, -0.014809847809374332, -0.03602620214223862, 0.011433257721364498, -0.003906998783349991, 0.009152152575552464, 0.022145437076687813, 0.011370856314897537, 0.0015227587427943945, 0.018040833994746208, 0.036469943821430206, 0.005467024631798267, -0.023393457755446434, -0.003473658114671707, 0.001266221166588366, 0.009838564321398735, -0.009214553982019424, -0.006108368746936321, -0.02986929938197136, 0.02986929938197136, -0.010143635794520378, 0.007203853689134121, 0.026499642059206963, -0.002211770275607705, -0.04193349927663803, 0.032226670533418655, -0.003952065948396921, -0.03128372132778168, -0.008257738314568996, 0.0063371723517775536, 0.018831247463822365, 0.013367690145969391, -0.028676746413111687, 0.0011249521048739552, 0.034805916249752045, 0.025348689407110214, 0.011863132007420063, 0.005831030663102865, -0.03549925982952118, 0.004669677931815386, 0.010289238765835762, -0.03683048114180565, -0.0051134186796844006, 0.03985346481204033, 0.019774196669459343, -0.03835584223270416, 0.01262581069022417, 0.0030559177976101637, 0.019191786646842957, -0.023213187232613564, 0.012334605678915977, 0.01994059979915619, 0.030507177114486694, -0.028427140787243843, -0.009977233596146107, -0.011932466179132462, -0.009873231872916222, -1.2715837328869384e-05, -0.003321122145280242, -0.005543292500078678, -0.031838398426771164, -0.00040062336483970284, -0.022658511996269226, -0.006299038417637348, 0.022270238026976585, -0.027900200337171555, -0.012813013978302479, -0.006905715446919203, 0.008132935501635075, 0.02569536305963993, 0.01670961268246174, 0.009679094888269901, 0.024641478434205055, 0.01881738193333149, 0.005505158565938473, -0.007183053530752659, 0.019788064062595367, 0.048672813922166824, 0.0012913548853248358, 0.008874814957380295, -0.03638673946261406, -0.00184256408829242, 0.04198896884918213, -0.029647428542375565, 0.033169619739055634, 0.03025757148861885, 0.0030420508701354265, 0.003917398862540722, 0.048589613288640976, -0.04895015060901642, 0.0029692496173083782, 0.009894032031297684, 0.01896991766989231, -0.024322539567947388, -0.030091170221567154, 0.042238570749759674, -0.010850847698748112, 0.017444558441638947, 0.022381173446774483, 0.019066985696554184, -0.007904131896793842, -0.019815796986222267, -0.024988150224089622, -0.004607276991009712, -0.0325317420065403, -0.030091170221567154, -0.008854014798998833, -0.002471774583682418, -0.009595893323421478, -0.02400360070168972, -0.0259310994297266, 0.03108958527445793, 0.005688895005732775, 0.021701695397496223, -0.03189386799931526, 0.01068444550037384, 0.012944749556481838, 0.030202103778719902, -0.014012500643730164, 0.02773379720747471, -0.018470708280801773, 0.017763497307896614, -0.009561226703226566, 0.016252005472779274, -0.009498825296759605, -0.031394656747579575, 0.017860565334558487, 0.0025411092210561037, -0.002861781045794487, 0.001956966007128358, 0.029536493122577667, 0.034833647310733795, -0.007377190049737692, 0.02533482387661934, -0.026860181242227554, -0.004822214134037495, 0.03749609366059303, 0.001742029096931219, -0.010289238765835762, -0.023213187232613564, -0.023837197571992874, -0.00746732484549284, -0.003868864616379142, 0.0029796496964991093, -0.0002660711179487407, 0.007654527667909861, 0.013755963183939457, 0.011336189694702625, 0.007342522498220205, -0.006832913961261511, 0.03283681347966194, 0.02598656713962555, 0.018304305151104927, -0.006995850242674351, 0.03150559216737747, -0.00637183990329504, 0.018748046830296516, -0.014088768512010574, 0.05247234180569649, -0.028732214123010635, 0.058240972459316254, 0.00822307076305151, -0.001225487096235156, 0.010303105227649212, 0.018026968464255333, -0.01994059979915619, -0.012091935612261295, 0.01774962991476059, -0.02317158691585064, 0.02403133548796177, -0.009436423890292645, 0.03200479969382286, -0.007384123280644417, 0.00979696400463581, 0.01795763336122036, -0.03555472567677498, -0.0016146269626915455, 0.028870882466435432, 0.013534092344343662, -0.005359556060284376, -0.02856581099331379, 0.009401757270097733, 0.046509578824043274, -0.026513509452342987, -0.011655127629637718, -0.0011882198741659522, 0.05017043650150299, 0.0062089036218822, -0.0009975499706342816, 0.011835398152470589, -0.008895615115761757, 0.024017468094825745, 0.005304088816046715, -0.00334538915194571, -0.015725063160061836, -0.021881965920329094, -0.000939482357352972, 0.0033280556090176105, 0.0013060885248705745, -0.00965829472988844, -0.018540043383836746, -0.03616487234830856, 0.03250401094555855, 0.016668012365698814, -0.028219137340784073, -0.0004905415116809309, 0.019580060616135597, -0.006659578066319227, 0.0605151429772377, 0.02507135272026062, 0.0161826703697443, -0.017708029597997665, 0.016404541209340096, -0.02817753702402115, -0.0017697629518806934]" -Automated Mocking Using API Traffic: Speedscale's Story,"Technologies), and iTKO (bought by CA Technologies).My name isKen Ahrens. I am co-founder and CEO of Speedcale. Much of my career has been focused on helping companies develop and manage complex web applications. I previously ran North America teams for New Relic and CA/Broadcom. Previous startups included Pentaho (acquired by Hitachi), ITKO (acquired by CA/Broadcom), and ILC (acquired by General Dynamics). My first foray into programming started with a brand new language called Java at Georgia Tech and has grown into a lifetime interest.Matthew LeRay, co-founder and CTO at Speedscale, has invested the past 20 years in improving the performance of applications across multiple generations of technology. Previously, he was head of product at Observe, SVP at CA Technologies (acquired by Broadcom), and engineering leader at ILC (acquired by General Dynamics). He is an alumnus of Georgia Tech in both Computer Engineering and Business. His first love is debugging Golang code but he occasionally takes a break to craft hand-carved guitars.Nate Lee, co-founder and VP of Sales & Marketing, has served a variety of roles within the software industry. Most recently, he was in enterprise sales for the digital transformation consultancy Contino (acquired by Cognizant). Prior to Contino, he served as Product Manager at CA Technologies, by way of iTKO where he was a Presales Engineer for 6 years. Before iTKO, he spent time as a support leader at IBM Internet Security Systems, and engineer at ILC (acquired by General Dynamics). He graduated from Georgia Tech with an MBA in Technology, and a BS in Computer Science. You’ll most likely find him outdoors on 2 wheels when he’s not innovating with his Speedscale buddies.As a small, nimble startup, our normal workweek is comprised mostly of helping customers scope their use cases and deciding where to start with our testing framework (recording traffic, generating traffic replay “scenarios” comprised of tests and mocks of auto-identified dependencies). We are an engineering startup with a heavy emphasis on Kubernetes and Golang. We also are improving the protocol and version support of both our Enterprise Kubernetes version and Desktop version called theSpeedscale CLI.About the projectWe noticed the application of outdated testing practices to modern cloud infrastructure (eg. UI testing, manual testing, API test tools with no mocking). As the number of connections in distributed, containerized applications grew, the need",https://www.timescale.com/blog/automated-mocking-using-api-traffic-speedscales-story/,512,"[-0.00011713547428371385, 0.006564921233803034, 0.05032869055867195, -0.024125907570123672, 0.01958807371556759, -0.007695822976529598, -0.058721546083688736, 0.0038052359595894814, -0.01634473353624344, 0.004768991842865944, 0.04190738499164581, -0.02637348510324955, -0.03132385015487671, 0.009829600341618061, 0.03382747992873192, -0.0028272548224776983, 0.0007517118938267231, -0.06355810910463333, -0.05917675420641899, 0.01712711714208126, 0.031295400112867355, 0.004420475102961063, 0.012013165280222893, 0.0009735358180478215, 0.00699878903105855, -0.02058383636176586, -0.03519309684634209, 0.027355022728443146, 0.028009381145238876, -0.08233534544706345, 0.006753404624760151, -0.036644067615270615, -0.06947578489780426, 0.0030850861221551895, 0.009189466945827007, -0.051665857434272766, 0.03553450107574463, 0.02694249339401722, 0.007880750112235546, 0.015320519916713238, -0.022717613726854324, -0.0031224272679537535, 0.009737136773765087, 0.045719731599092484, 0.028066283091902733, -0.03448183834552765, 0.027326572686433792, -0.005359336733818054, 0.022219732403755188, 0.02146579883992672, -0.06424091756343842, -0.01101740263402462, 0.012902239337563515, 0.007397094275802374, -0.007774061523377895, 0.04250483959913254, 0.04375665634870529, 0.025747578591108322, 0.005380674730986357, 0.04552057757973671, 0.03635956346988678, -0.044923122972249985, 0.004370687063783407, 0.03189285472035408, -0.05379963293671608, 0.013144067488610744, 0.003961713053286076, 9.374172077514231e-05, 0.0003567408712115139, 0.010882263071835041, 0.028279660269618034, 0.05419794097542763, -0.036729417741298676, 0.007880750112235546, -0.011330356821417809, -0.05550665780901909, -0.01687106490135193, 0.0933171883225441, 0.008030114695429802, 0.014139830134809017, 0.023514224216341972, 0.016373183578252792, 0.0233435221016407, -0.019388921558856964, 0.007411319296807051, -0.02930387295782566, -0.004840117879211903, -0.060656171292066574, -0.028308110311627388, 0.026088982820510864, 0.0008970754570327699, 0.0632736086845398, -0.01388377696275711, 0.003648758865892887, 0.026473062112927437, 0.01410426665097475, 0.03183595463633537, 0.02431083470582962, 0.042078085243701935, 0.03749757632613182, -0.0021355552598834038, 0.009061439894139767, 0.0023044792469590902, 0.00031339851557277143, 0.03291706740856171, 0.018691888079047203, 0.0006494684494100511, -0.011415707878768444, 0.013727299869060516, 0.019559623673558235, -0.11499636620283127, 0.004637409001588821, -0.017994854599237442, -0.022233957424759865, -0.05542130395770073, 0.0042711105197668076, -0.04341525211930275, -0.023983655497431755, -0.0036949908826500177, -0.040712468326091766, -0.013222306035459042, 0.04893462359905243, 0.010818250477313995, -0.009345944039523602, -0.018862590193748474, -0.010106991045176983, 0.002791691804304719, -0.008727148175239563, -0.045008473098278046, -0.013485471718013287, 0.02544884942471981, -0.03846488893032074, 0.04372820630669594, -0.013222306035459042, -0.00032495649065822363, 0.0071801599115133286, -0.0917239710688591, -0.03223425894975662, -0.02913317084312439, 0.02772487699985504, -0.03465254232287407, 0.0016278941184282303, 0.01796640455722809, -0.03368522971868515, -0.023315072059631348, -0.01940314657986164, -0.012724424712359905, 0.022788740694522858, -0.024609563872218132, 0.025505749508738518, -0.005057051777839661, -0.007702935487031937, -0.0754503607749939, -0.04489467293024063, 0.003936818800866604, 0.02268916368484497, -0.0006445785402320325, 0.005547820590436459, -0.00039385969284921885, 0.008976088836789131, 0.0170417670160532, 0.0434437021613121, -0.0019061742350459099, 0.028507262468338013, -0.025648001581430435, -0.010619097389280796, 0.01029903069138527, -0.017511198297142982, -0.09115496277809143, 0.013748637400567532, -0.026088982820510864, -0.03789588063955307, -0.015391645953059196, 0.038351088762283325, -0.01563347317278385, -0.004996594972908497, 0.009545096196234226, -0.008755599148571491, -0.009801149368286133, -0.02357112430036068, -0.09434139728546143, 0.027013618499040604, -0.01066888589411974, 0.01097472757101059, -0.07966101169586182, -0.015789950266480446, -0.015405870974063873, 0.030584139749407768, -0.0043920245952904224, 0.031181596219539642, -0.012795550748705864, 0.025704901665449142, 0.028108958154916763, 0.033315375447273254, -0.014146942645311356, -0.03334382548928261, 0.03399818390607834, -0.014559472911059856, -0.025263922289013863, 0.011273455806076527, 0.01817978173494339, -0.03194975480437279, 0.07118280231952667, 0.005842993035912514, 0.018293583765625954, -0.016899514943361282, 0.005903450306504965, 0.01204872876405716, -0.0482802651822567, -0.0004356461577117443, 0.04261864349246025, 0.008193704299628735, -0.018634987995028496, 0.056417066603899, -0.00171413435600698, 0.01357793528586626, -0.024424636736512184, -0.002492962870746851, 0.03499394655227661, 0.035022396594285965, -0.03587590530514717, 0.039972759783267975, 0.011828238144516945, -0.0089334137737751, -0.01748274825513363, 0.04204963520169258, 0.009673123247921467, -0.016017554327845573, 0.036558713763952255, -0.04867856949567795, 0.018763013184070587, -0.01936047151684761, -0.03946065157651901, -0.015078691765666008, 0.010611984878778458, -0.0007543791434727609, -0.0004863233771175146, -0.026529962196946144, 0.011522396467626095, -0.0035847455728799105, 0.007766949012875557, 0.029446125030517578, -0.014090041629970074, -0.0013398341834545135, 0.010939164087176323, -0.003677209373563528, -0.011401482857763767, -0.035249996930360794, -0.009168129414319992, -0.006095489952713251, 0.02795248106122017, -0.03630266338586807, -0.0040719578973948956, 0.012162529863417149, 0.0064368946477770805, -0.024509986862540245, 0.037127722054719925, -0.02553419955074787, 0.031523000448942184, 0.016287831589579582, 0.036160409450531006, -0.03399818390607834, 0.0008779604104347527, -0.006845868192613125, -0.04788196086883545, 0.011245005764067173, -0.0033891494385898113, -0.0031597684137523174, -0.0027828009333461523, 0.01734049618244171, 0.06754115968942642, 0.037867430597543716, -0.006003026384860277, -0.0006005693576298654, -0.0286068394780159, 0.0029303873889148235, -0.007518008351325989, -0.014922214671969414, -0.016003329306840897, -0.0032771260011941195, -0.023371972143650055, 0.03035653568804264, 0.003261122852563858, -0.05866464599967003, 0.0204984862357378, 0.012646186165511608, 0.01066888589411974, -0.005437575280666351, -0.013634836301207542, -0.008705810643732548, 0.030128933489322662, -0.029901331290602684, -0.004836561623960733, -0.020825665444135666, 0.03917614743113518, -0.016757262870669365, -0.035107746720314026, -0.037127722054719925, -0.028592614457011223, -0.04717069864273071, 0.008549333550035954, 0.007119703106582165, -0.015590798109769821, -0.023670701310038567, 0.00869869813323021, 0.04523607715964317, -0.009488196112215519, 0.0069632260128855705, 0.026515737175941467, -0.008051452226936817, 0.019218219444155693, 0.027454599738121033, 0.016088679432868958, -0.018606536090373993, 0.010412832722067833, -0.027653751894831657, 0.05422639101743698, -0.01312272995710373, 0.011927814222872257, -0.02606053091585636, -0.025989405810832977, -0.07636076956987381, 0.011045852676033974, 0.022361984476447105, 0.03630266338586807, 0.012695973739027977, 0.03132385015487671, -0.03317312151193619, 0.016700362786650658, -0.005547820590436459, 0.018819915130734444, -0.033969733864068985, -0.007603359408676624, -0.06185108795762062, 0.025989405810832977, 0.02496519312262535, 0.008471095003187656, -0.06833776831626892, -0.014723062515258789, 0.007674484979361296, -0.03220580890774727, 0.0035900799557566643, -0.03391283005475998, 0.027056293562054634, 0.05411258712410927, 0.031039344146847725, 0.0013825098285451531, -0.04051331430673599, 0.04478086903691292, 0.04156598076224327, -0.019687650725245476, -0.0251501202583313, 0.018521185964345932, 0.01000741496682167, 0.015533898025751114, 0.017184019088745117, -0.021807203069329262, -0.02532082237303257, -0.005786092486232519, 0.010092766024172306, -0.06515132635831833, 0.05126755312085152, 0.024296609684824944, 0.009609109722077847, 0.01782415248453617, 0.06219249218702316, -0.030811741948127747, 0.009161016903817654, -0.05957505851984024, -0.0008139470592141151, 0.02557687647640705, 0.037042371928691864, 0.009552208706736565, -0.006817418150603771, -0.051836561411619186, -0.006956113502383232, 0.05997336283326149, 0.04887772351503372, 0.037611380219459534, 0.06270460039377213, 0.082733653485775, 0.011963377706706524, 0.01630205661058426, -0.014033141545951366, 0.03414043411612511, 0.0012722646351903677, -0.016743037849664688, 0.00886940024793148, -0.05126755312085152, 0.010128328576683998, 0.04853631928563118, -0.023414647206664085, -0.0008832948515191674, 7.657147943973541e-05, 0.024339284747838974, 0.031523000448942184, 0.04406961053609848, 0.009303268045186996, 0.05121065303683281, -0.021807203069329262, 0.016529660671949387, 0.013841100968420506, -0.041765131056308746, 0.01452390942722559, -0.03536380082368851, -0.04697154834866524, 0.015064466744661331, 0.022859865799546242, -0.02234775945544243, -0.003611417952924967, -0.009317493997514248, -0.027056293562054634, 0.05883534997701645, 0.0030690827406942844, 0.004153752699494362, -0.05590496212244034, 0.019986379891633987, 0.034766342490911484, 0.06566343456506729, 0.06094067543745041, -0.032575663179159164, -0.011707323603332043, -0.037696730345487595, -0.06315980106592178, 0.00265121809206903, 0.0649237260222435, 0.02260381355881691, 0.020256657153367996, 0.033799029886722565, -0.013008927926421165, -0.03425423428416252, 0.004772548098117113, 0.02014285698533058, -0.024253934621810913, -0.04017191007733345, 0.036075059324502945, -0.002343598520383239, -0.00026383265503682196, 0.005188634619116783, 0.006280417554080486, -0.02772487699985504, -0.010206567123532295, 0.019616523757576942, 0.02081144042313099, -0.04441101476550102, -0.007830962538719177, -0.009786924347281456, -0.03473789244890213, -0.017895277589559555, -0.001655455445870757, 0.019872577860951424, -0.014289194718003273, 0.0008423974504694343, 0.04512227326631546, -0.012254993431270123, -0.013976240530610085, 0.03382747992873192, -0.011778449639678001, 0.01410426665097475, -0.017425846308469772, -0.03212045878171921, 0.006141721736639738, -0.0062377420254051685, -0.026885591447353363, -0.0044524818658828735, -0.021138619631528854, 0.04472396895289421, -0.008904963731765747, 0.019075967371463776, 0.00036140851443633437, 0.02970217727124691, -0.005149515345692635, -0.030868642032146454, -0.03991585969924927, -0.05163740739226341, 0.036814767867326736, -0.028108958154916763, -0.018378933891654015, 0.0027401254046708345, -0.01792372763156891, -0.07038619369268417, 0.019246669486165047, -0.05436864122748375, 0.07778328657150269, 0.028194308280944824, 0.02672911435365677, -0.026615314185619354, 0.03433958813548088, -0.021408896893262863, 0.02829388529062271, 0.016671912744641304, 0.011998940259218216, 0.09462590515613556, -0.017368946224451065, -0.08375786244869232, 0.007845187559723854, 0.0075606838800013065, -0.011934926733374596, -0.037867430597543716, -0.014531022869050503, 0.020171307027339935, -0.034368038177490234, 0.03564830496907234, 0.04674394428730011, 0.018862590193748474, -0.0014731952687725425, 0.008087015710771084, -0.017297819256782532, 0.0024236151948571205, -0.016743037849664688, 0.008044339716434479, 0.007631809450685978, 0.03539225086569786, -0.00209821411408484, -0.035989709198474884, -0.014004690572619438, -0.010199454613029957, 0.019858352839946747, 0.0019488497637212276, 0.009587772190570831, -0.04002965986728668, -0.03482324257493019, -0.03496549651026726, 0.013812650926411152, 0.027184320613741875, -0.006735623348504305, -0.035107746720314026, -0.0009806484449654818, -0.03109624609351158, -0.011934926733374596, 0.011451270431280136, -0.009310380555689335, -0.01160774752497673, -0.013990465551614761, -0.04068401828408241, 0.00329135125502944, -0.009630447253584862, -0.04611803591251373, -0.009153904393315315, 0.014993340708315372, 0.019118642434477806, 0.001338056055828929, 0.0253634974360466, 0.01769612543284893, -0.02492251805961132, 0.008641797117888927, 0.004239103756844997, -0.020256657153367996, 0.016088679432868958, 0.06338740885257721, 0.022703388705849648, -0.022703388705849648, 0.054340191185474396, -0.00685653742402792, 0.024083230644464493, 0.013286319561302662, 0.022845640778541565, -0.004712091293185949, 0.005035714246332645, 0.013805538415908813, -0.011600635014474392, -0.010256355628371239, 0.0018528298242017627, -0.0348801426589489, 0.04796731099486351, 0.05849394574761391, -0.032831717282533646, -0.039887405931949615, 0.0074255443178117275, 0.014580810442566872, 0.02268916368484497, -0.011301906779408455, -0.017667675390839577, -0.00815102830529213, 0.030527237802743912, -0.018691888079047203, 0.005370005965232849, -0.018435833975672722, -0.004875680897384882, 0.012205204926431179, -0.025463074445724487, -0.002176452660933137, -0.0019132868619635701, 0.015761500224471092, -0.0196734257042408, 0.010348819196224213, 0.010092766024172306, 0.014424333348870277, -0.004164421930909157, 0.037782080471515656, -0.004701422527432442, -0.008535108529031277, 0.0007152598700486124, 0.03635956346988678, 0.016970641911029816, -0.006863649934530258, 0.03709927201271057, -0.04990193620324135, -0.015434321016073227, 0.025249697268009186, 0.00862757209688425, 0.0011184548493474722, 0.019502723589539528, -0.0172551441937685, -0.04771125689148903, -0.0015825513983145356, 0.0071161468513309956, -0.03271791711449623, 0.007482445333153009, -0.039147697389125824, 0.02414013259112835, 0.012959140352904797, 0.002197790425270796, -0.03724152222275734, 0.0038265737239271402, -0.020427359268069267, 0.014253631234169006, -0.020356234163045883, 0.04091162234544754, 0.03203510865569115, -0.01647276058793068, -0.04389891028404236, 0.009338831529021263, -0.0046694157645106316, 0.048479415476322174, -0.03570520505309105, 0.05135290324687958, -0.022575361654162407, -0.015647700056433678, -0.007902087643742561, 0.022660713642835617, 0.0425901934504509, 0.02220550738275051, 0.0015914421528577805, 0.007073471322655678, -0.043386802077293396, 0.02506476826965809, 0.044439464807510376, 0.015050241723656654, -0.006675166077911854, 0.01901906728744507, -0.007902087643742561, -0.0036807656288146973, -0.012788438238203526, 0.024822941049933434, -0.021764526143670082, -0.02672911435365677, 0.03630266338586807, 0.013457021676003933, 0.0076531474478542805, -0.013129842467606068, -0.027667976915836334, 0.025818703696131706, 0.025861378759145737, 0.03066948987543583, 0.03317312151193619, -0.04876391962170601, -0.030128933489322662, 0.016799937933683395, 0.04148062691092491, -0.006981007754802704, 0.028137408196926117, -0.023841403424739838, -0.015149817802011967, -0.043386802077293396, 4.4620392145588994e-05, 0.039659805595874786, 0.018151331692934036, -0.006870762445032597, 0.006419112905859947, -0.02487984113395214, 0.08580629527568817, 0.013328994624316692, 0.02610320784151554, 0.007123259361833334, 0.028137408196926117, -0.019303571432828903, -0.0348801426589489, 0.021451573818922043, 0.04975968226790428, -0.0490768738090992, -0.003670096630230546, -0.048991523683071136, -0.0067178416065871716, -0.0028877118602395058, 0.016856839880347252, 0.01826513186097145, 0.030299635604023933, 0.03027118556201458, -0.045662831515073776, -0.004665859509259462, 0.005309548694640398, -0.012774212285876274, -0.021963680163025856, 0.0039937193505465984, -0.027653751894831657, -0.011038740165531635, 0.0025943173095583916, -0.007418431807309389, -0.05772578343749046, -0.01734049618244171, -0.018947940319776535, -0.03806658461689949, 0.03010048344731331, -0.03394128382205963, -0.01018522959202528, 0.027980931103229523, -0.0026476618368178606, 0.021223969757556915, 0.0028450360987335443, -0.04754055663943291, -0.0021533367689698935, -0.018763013184070587, 0.0259751807898283, 0.014993340708315372, 0.021010592579841614, 0.0033091327641159296, -0.0063124243170022964, -0.017639225348830223, -0.024680688977241516, -0.014225181192159653, 0.0031188710127025843, 0.010789799503982067, -0.038664042949676514, 0.013136954978108406, 0.0035278447903692722, -0.016942190006375313, 0.029446125030517578, 0.03385592997074127, -0.012062953785061836, 0.016230931505560875, 0.00655069574713707, -0.019573848694562912, -0.02523547038435936, 0.013656173832714558, -0.028493037447333336, -0.06150968372821808, -0.02150847390294075, -0.023286622017621994, -0.012404358014464378, -0.048337165266275406, -0.023371972143650055, 0.02685714140534401, 0.022660713642835617, -0.005921231582760811, -0.03422578424215317, 0.007201497908681631, 0.022177057340741158, 0.007894975133240223, -0.02606053091585636, 0.01866343803703785, 0.01347124669700861, -0.015789950266480446, 0.01257506012916565, 0.017624998465180397, -0.015078691765666008, 0.01918976940214634, 0.026259684935212135, 0.016885289922356606, 0.04836561530828476, -0.011010290123522282, 0.019815677776932716, -0.010782686993479729, 0.016245156526565552, 0.020213982090353966, 0.02405478060245514, 0.008008777163922787, -0.004047064110636711, 0.024069005623459816, 0.010092766024172306, -0.007101921830326319, -0.022660713642835617, -0.001083781011402607, 0.019431596621870995, 0.04506537318229675, 0.0004011945566162467, -0.011664648540318012, 0.01097472757101059, 0.030868642032146454, 0.017667675390839577, 0.014033141545951366, -0.006981007754802704, -0.016842614859342575, -0.023457324132323265, -0.04227723926305771, -0.017112892121076584, 0.04893462359905243, 0.002076876349747181, -0.0211101695895195, -0.0401434600353241, 0.0017185796750709414, 0.018947940319776535, -0.02835078537464142, -0.037127722054719925, 0.019872577860951424, 0.013926452025771141, -0.018506960943341255, -0.05212106183171272, -0.0115650724619627, -0.01209140382707119, -0.005807430017739534, 0.028848666697740555, 0.009040102362632751, 0.02662953920662403, 0.009118340909481049, 0.003926150035113096, -0.020925240591168404, 0.043813556432724, -0.02414013259112835, -0.012262105941772461, -0.028094733133912086, -0.01918976940214634, -0.013129842467606068, 0.017753025516867638, -0.024851391091942787, -0.001543432124890387, 0.020085955038666725, -0.0030637483578175306, -0.013748637400567532, 0.010562197305262089, 0.054084137082099915, 0.013385895639657974, -0.029332322999835014, -0.010270580649375916, 0.02829388529062271, 0.03909079730510712, 0.014189617708325386, 0.009345944039523602, -0.028308110311627388, -0.010697335936129093, 0.01708444207906723, -0.02759685181081295, 0.022902540862560272, -0.016230931505560875, 0.0070094577968120575, 0.0016314504900947213, -0.029118945822119713, -0.04455326870083809, -0.035249996930360794, 0.017795700579881668, 0.006116827949881554, 0.0003129539836663753, -0.024239707738161087, 0.017582323402166367, 0.025178570300340652, 0.016927964985370636, 0.016771487891674042, 0.0004385356733109802, -0.009431295096874237, -0.03715617209672928, -0.024950968101620674, -0.03186440467834473, 0.0033606989309191704, -0.02005750499665737, -0.001397624029777944, 0.038180384784936905, 0.012532384134829044, -0.008286167867481709, 0.021707626059651375, -0.014146942645311356, -0.012624848634004593, -0.01778147555887699, 0.014538135379552841, -0.016330508515238762, 0.03618885949254036, -0.02129509672522545, -0.006870762445032597, 0.03101089410483837, 0.03991585969924927, 0.01395490299910307, -0.013094278983771801, 0.006344430614262819, -0.022319309413433075, -0.006216404028236866, -0.009744249284267426, -0.017155569046735764, -0.029275422915816307, 0.02142312191426754, -0.012895126827061176, -0.012254993431270123, 0.027397697791457176, -0.009808261878788471, -0.013741524890065193, -0.03829418867826462, 0.02281719073653221, -0.019260894507169724, -0.009971851482987404, 0.03155145049095154, -0.0033340267837047577, 0.04230568930506706, -0.005192190874367952, 0.00987938791513443, 0.02970217727124691, -0.011664648540318012, -0.0028397017158567905, 0.017795700579881668, -3.622975782491267e-05, 0.003415821585804224, 0.034538738429546356, -0.003045966848731041, 0.03536380082368851, -0.017994854599237442, -0.004512938670814037, 0.007045020814985037, -0.021750301122665405, -0.008442644961178303, -0.034453388303518295, -0.002921496517956257, 0.009153904393315315, 0.032348062843084335, 0.028635289520025253, -0.01721246913075447, 0.010889376513659954, 0.02342887409031391, -0.01761077344417572, 0.019431596621870995, -0.025747578591108322, 0.016060229390859604, 0.017639225348830223, -0.026174332946538925, 0.010462620295584202, -0.01108141615986824, 0.02567645162343979, 0.026529962196946144, -0.0034353812225162983, -0.006732067093253136, 0.0002464957069605589, 0.0015478775603696704, 0.02483716607093811, 0.009075665846467018, 0.029986681416630745, 0.002932165516540408, 0.00630886759608984, -0.01077557448297739, -0.022945217788219452, 0.009025877341628075, 0.003639868227764964, -0.0009779812535271049, -0.047597456723451614, 0.025221245363354683, -0.014950665645301342, 0.02119551971554756, -0.01042705774307251, -0.016856839880347252, 0.006799636408686638, -0.015405870974063873, 0.03414043411612511, 0.020797215402126312, 0.005110396072268486, 0.030555689707398415, 0.042903147637844086, -0.026700664311647415, -0.002524969633668661, -0.020114406943321228, -0.030328085646033287, 0.0014180727303028107, 0.0035047288984060287, 0.005409125238656998, 0.01007854100316763, 0.02045581117272377, 0.009345944039523602, 0.013371670618653297, -0.014296307228505611, -0.058380141854286194, -0.0042070974595844746, 0.053685832768678665, 0.027924031019210815, 0.013798425905406475, -0.035989709198474884, 0.013784200884401798, -0.02426815964281559, 0.022973667830228806, -0.005384230986237526, -0.026928268373012543, -0.035249996930360794, 0.0022653599735349417, 0.029929781332612038, -0.023727601394057274, 0.026999393478035927, -0.01992947794497013, 0.04859321936964989, 0.037952784448862076, -0.029673727229237556, -0.03442493826150894, -0.011230780743062496, -0.018990617245435715, 0.023556899279356003, 0.027838679030537605, -0.002891268115490675, 0.01517826784402132, -0.010128328576683998, -0.007347306236624718, -0.03741222620010376, 0.006362212356179953, 0.017710350453853607, -0.02045581117272377, -0.004384912084788084, 0.013506809249520302, 0.03157990053296089, 0.013215193524956703, -0.011700211092829704, -0.003815904725342989, 0.011991827748715878, 0.0033464739099144936, -0.0009922063909471035, 0.0021568930242210627, 0.010981840081512928, 0.009715798310935497, -0.0011780228232964873, -0.025562649592757225, 0.03066948987543583, 0.013784200884401798, 0.0045627267099916935, -0.008734261617064476, -0.013898001983761787, -0.01712711714208126, -0.03155145049095154, -0.017411621287465096, -0.01395490299910307, -0.026956718415021896, 0.0017541426932439208, -0.020797215402126312, 0.02037045918405056, -0.03149455040693283, 0.016828389838337898, -0.028663739562034607, 0.02873486652970314, -0.017312046140432358, 0.05849394574761391, -0.008862287737429142, -0.01630205661058426, 0.029332322999835014, -0.012482596561312675, 0.0018314920598641038, -0.00086640240624547, -0.006234185770153999, 0.023997880518436432, -0.04560593143105507, 0.028919793665409088, -0.0016981309745460749, 0.02173607610166073, 0.00495036318898201, 0.014324757270514965, 0.028919793665409088, -0.00043208987335674465, 0.021579599007964134, 0.007165934890508652, -0.00935305655002594, 0.012411470524966717, 0.03237651288509369, -0.010946276597678661, -0.030128933489322662, -0.023357747122645378, 0.023059017956256866, -0.002368492539972067, 0.033400725573301315, -0.016984866932034492, -0.012624848634004593, -0.0028094733133912086, -0.016671912744641304, -0.016885289922356606, -0.0013736190740019083, 0.0024591782130301, 0.0028059170581400394, -0.02163650095462799, 0.03237651288509369, 0.022973667830228806, -0.009466857649385929, 0.012432808056473732, -0.0017621442675590515, 0.02405478060245514, 0.018905265256762505, 0.036331113427877426, -0.025050543248653412, 0.014317644760012627, -0.002180008916184306, 0.0025125225074589252, -0.023030567914247513, 0.013243643566966057, -0.02173607610166073, 0.020967917516827583, 0.026529962196946144, -0.01761077344417572, 0.01651543565094471, -0.008143915794789791, 0.004943250212818384, -0.027326572686433792, 0.0024147245567291975, 0.0357336550951004, -0.018364708870649338, 0.022973667830228806, 0.0005134401144459844, -0.0032006658148020506, -0.0002502742863725871, -0.023997880518436432, 0.03240496292710304, -0.012873789295554161, 0.007916313596069813, 0.0011851354502141476, -0.013044491410255432, 0.00815102830529213, 0.02593250572681427, 0.006212847772985697, -0.010512408800423145, -0.026643764227628708, -0.00923925545066595, 0.01756809838116169, -0.013364557176828384, 0.029417674988508224, 0.02544884942471981, 0.05957505851984024, -0.007638922426849604, 0.01883414015173912, -0.0023773834109306335, 0.04756900668144226, 0.0279951561242342, 0.0056225028820335865, 0.025761803612113, -0.011757112108170986, 0.02637348510324955, 0.013976240530610085, -0.008912076242268085, -0.005842993035912514, 0.0070094577968120575, 0.0012820444535464048, -0.012183867394924164, -0.02458111196756363, 0.022361984476447105, -0.002832589205354452, 0.018649213016033173, 0.007766949012875557, -0.03010048344731331, 0.014808413572609425, 0.025221245363354683, 0.00017770362319424748, -0.008257717825472355, -0.012304781936109066, 0.0028966024983674288, 0.021309321746230125, 0.006152390968054533, -0.0052241976372897625, 0.007553571369498968, 0.021181294694542885, 0.01375574991106987, 0.004925468936562538, 0.0035438481718301773, -0.026643764227628708, 0.0584370419383049, 0.013357444666326046, 0.001760366139933467, 0.005245535634458065, -0.018208231776952744, -0.023499999195337296, -0.002953503280878067, 0.014580810442566872, -0.025733351707458496, 0.014708837494254112, -0.021650725975632668, -0.030726391822099686, 0.021608050912618637, 0.005800317507237196, 0.006294642575085163, -0.007852300070226192, -0.006678722333163023, 0.01517826784402132, 0.0025445292703807354, -0.005672290921211243, 0.024979418143630028, 0.016401633620262146, 0.0038799180183559656, -0.018734563142061234, -0.02106749266386032, -0.01364194881170988, 0.014779963530600071, -0.007759836036711931, 0.002729456638917327, 0.0007214833749458194, -0.015078691765666008, -0.01630205661058426, -0.005658065900206566, 0.04717069864273071, 0.03906234726309776, 0.016970641911029816, -0.02224818244576454, -0.020228207111358643, 0.016657687723636627, -0.01611712947487831, -0.02711319550871849, -0.02281719073653221, -0.021650725975632668, -0.032177358865737915, -0.010235018096864223, -0.0004380911123007536, 0.012411470524966717, 0.0007072582375258207, 0.003145543159916997, -0.028052056208252907, -0.05428329110145569, 0.018236681818962097, 0.00027872464852407575, -0.0072370609268546104, -0.0064546759240329266, 0.014467009343206882, 0.014253631234169006, 0.043699756264686584, 0.025263922289013863, 0.020782990381121635, -0.025121670216321945, -0.019047517329454422, -0.02448153682053089, -0.011920701712369919, -0.04879236966371536, -0.027326572686433792, 0.007130371872335672, -0.0023400422651320696, 0.023471549153327942, -0.0397736057639122, 0.001888392842374742, 0.013428570702672005, 0.03374212980270386, 0.011479721404612064, 0.022447336465120316, 0.003894143272191286, 0.012361682020127773, 0.014082929119467735, -0.01243992056697607, -0.03872094303369522, -0.030242735520005226, 0.028052056208252907, -0.010192342102527618, 0.016046004369854927, 0.000984204700216651, 0.019744550809264183, -0.0035883018281310797, -0.014374545775353909, 0.007674484979361296, -0.0003196220495738089, -0.01567615009844303, -0.015235168859362602, 0.025861378759145737, -0.009267705492675304, -0.003261122852563858, -0.021039042621850967, -0.01830780878663063, -0.008812499232590199, 0.012262105941772461, -0.016287831589579582, 0.016216706484556198, 0.01923244446516037, -0.01018522959202528, 0.0030850861221551895, 0.00023782724747434258, 0.0069454447366297245, -0.056360166519880295, -0.02243311144411564, -0.01664346270263195, 0.01416828017681837, -0.037611380219459534, 0.007539345882833004, 0.004672972019761801, 0.01739739626646042, 0.029559927061200142, 0.024652238935232162, 0.04185048118233681, 0.011429932899773121, -0.04096852242946625, 0.008015889674425125, 0.0036594278644770384, -0.005654509644955397, 0.009751361794769764, -0.01125923078507185, -0.009388619102537632, -0.0038052359595894814, 0.031608350574970245, -0.0018421609420329332, -0.016358958557248116, -0.01958807371556759, -0.004939693957567215, -0.021835653111338615, 0.02365647628903389, -0.023670701310038567, -0.0012367017334327102, 0.01647276058793068, -0.0018546079518273473, -0.003983050584793091, 0.04082626849412918, -0.02062651328742504, -0.028934018686413765, -0.004672972019761801, -0.0008610679651610553, -0.021124394610524178, 0.01940314657986164, -0.022987892851233482, 0.006845868192613125, -0.007546458393335342, 0.003294907510280609, 0.007923426106572151, -0.004690753296017647, 0.017795700579881668, 0.06862227618694305, -0.006461788434535265, -0.0470568984746933, -0.03303087130188942, 0.012944914400577545, -0.02106749266386032, 0.010953389108181, 0.01412560511380434, -0.0029944006819278, -0.00488279340788722, 0.003815904725342989, -0.02014285698533058, 0.026074757799506187, 0.004537832923233509, 0.008200816810131073, -0.0021231083665043116, 0.00575052946805954, 0.005711410194635391, -0.0069916765205562115, -0.000655247422400862, -0.02330084703862667, 0.010213679634034634, 0.015121367760002613, -0.022305084392428398, -0.04569128155708313, 0.018521185964345932, -0.01647276058793068, 0.004313786048442125, 0.014580810442566872, -0.0060670399107038975, -0.0010704448213800788, 0.04364285618066788, 0.03303087130188942, 0.01853541098535061, -0.00928904302418232, 0.00016247824532911181, -0.010718673467636108, 0.013065828941762447, -0.0005498921382240951, 0.012838225811719894, -0.0348801426589489, 0.02877754159271717, 0.00011980269482592121, 0.006223516538739204, 0.017141344025731087, -0.0036949908826500177, -0.029844429343938828, 0.018364708870649338, 0.023158594965934753, -0.03027118556201458, -0.0038799180183559656, 0.005387787241488695, 0.03385592997074127, 0.03840798884630203, -0.01563347317278385, -0.00015336523938458413, 0.03305932134389877, 0.025904053822159767, -0.018563861027359962, 0.030214285477995872, -0.043699756264686584, 0.0007832740084268153, 0.0036949908826500177, -0.04404116049408913, -0.004911243915557861, 0.04031416401267052, 0.01954539865255356, -0.03411198407411575, 0.002969506662338972, -0.03385592997074127, 0.028052056208252907, -0.002288476098328829, 0.020654963329434395, 0.01594642736017704, 0.019872577860951424, -0.00030539685394614935, -0.010099878534674644, 0.009260592982172966, -0.015021790750324726, -0.008421307429671288, 0.007660259958356619, 0.01748274825513363, -0.030555689707398415, -0.014637711457908154, -0.046231839805841446, -0.005117509048432112, -0.010846700519323349, -0.038095034658908844, 0.007354418747127056, -0.014246518723666668, 0.00724061718210578, 0.02342887409031391, -0.00019037292804569006, 0.00965889822691679, 0.03758293017745018, 0.020569611340761185, 0.010939164087176323, 0.0011015624040737748, 0.0037625604309141636, 0.03411198407411575, -0.01143704541027546, 0.014402995817363262, -0.04270399361848831, -0.020555386319756508, 0.0273834727704525, -0.010683110915124416, 0.027739103883504868, 0.01778147555887699, -0.003915481269359589, 0.01655811071395874, 0.04008655995130539, -0.03288861736655235, -0.012731537222862244, 0.017198244109749794, 0.013705962337553501, -0.008940526284277439, -0.014595035463571548, 0.022945217788219452, -0.012667523697018623, 0.03570520505309105, 0.008023002184927464, 0.015875302255153656, 0.0003040632582269609, 0.011358806863427162, -0.040456414222717285, -0.0018955053528770804, -0.04478086903691292, -0.02614588290452957, -0.005199303850531578, 0.0004912132862955332, 0.013833988457918167, -0.010505296289920807, -0.012468371540307999, 0.017354721203446388, 0.0060670399107038975, 0.020697638392448425, -0.0035954145714640617, 0.025818703696131706, -0.005690072197467089, 0.023243945091962814, 0.0015203162329271436, 0.0385502390563488, -0.04227723926305771, 0.01489376462996006, -0.007155266124755144, -0.009687348268926144, -0.004993038717657328, -0.021053267642855644, 0.03237651288509369, -0.006621821783483028, 0.008065677247941494, -0.003177549922838807, 0.03132385015487671, 0.03533535078167915, -0.021878328174352646, 0.019417371600866318, -0.011344581842422485, -0.004548501688987017, 0.02422548271715641, 0.01660078577697277, -0.023499999195337296, -0.020114406943321228, -0.019218219444155693, -0.019915252923965454, 0.011956264264881611, -0.010903601534664631, -0.011593522503972054, 0.016700362786650658, -0.0024591782130301, 0.017553873360157013, 0.010256355628371239, -0.016984866932034492, 0.030868642032146454, 0.02614588290452957, 0.012013165280222893, 0.00028272546478547156, 0.0340835340321064, 0.008421307429671288, 0.01870611310005188, -0.008115465752780437, 0.059859562665224075, -0.039403751492500305, 0.04025726392865181, 0.02102481760084629, 0.013983353041112423, -0.01997215487062931, 0.031608350574970245, -0.009623334743082523, -0.027483049780130386, 0.009744249284267426, -0.009545096196234226, 0.0014829750871285796, -0.033713679760694504, 0.056132566183805466, -0.012311894446611404, 0.0023827177938073874, -0.008371518924832344, -0.018677663058042526, -0.005039270501583815, 0.016885289922356606, 0.007830962538719177, 0.031210048124194145, -0.027924031019210815, 0.029474575072526932, 0.03604660928249359, -0.02492251805961132, 0.0017950399778783321, 0.017112892121076584, 0.04000120982527733, 0.007212166674435139, -0.013492584228515625, 0.01958807371556759, -0.02987287938594818, 4.278667802282143e-06, 0.011465496383607388, 0.025690676644444466, -0.0031224272679537535, -0.00948108360171318, -0.002800582442432642, 0.014395883306860924, 0.01822245679795742, -0.03200665861368179, -0.02216283231973648, -0.03482324257493019, 0.0202851090580225, -0.010391495190560818, -0.013769974932074547, 0.014075816608965397, 0.018208231776952744, -0.00965889822691679, 0.05803873762488365, 0.016245156526565552, 0.017468523234128952, 0.008549333550035954, 0.010633322410285473, 0.0007641589618287981, -0.020612288266420364]" -Automated Mocking Using API Traffic: Speedscale's Story,"for quality automation increases exponentially. As a result, the popularity ofcanary releases and blue green deploymentshave risen, but we believe this is due to a lack of robust quality automation alternatives.Speedscale uses a transparent proxy to capture API transaction data from which to model robust API tests and realistic mocks of backend dependencies. Our traffic replay framework iscapable of showing engineering teamscomplex headers, authentication tokens, message bodies, and associated metadata (with sensitive data redaction when necessary). In addition, the platform is able toautomatically identify backend dependenciesthat are needed to operate your service, allowing new developers on old services to get up to speed quickly. This data is streamed to AWS S3 and filtered for test and mock scenario creation. These scenarios can then be replayed as part of validation test suites and integrated into CI or GitOps workflows.Our customers need to be able to understand the API traffic going into and out of their various microservices over time. They want to see the sequence of API calls as well as the trend of the overall volume of calls.Data is ingested by our platform into our cloud data warehouse. As new data arrives, we determine the index where that API call can be found and write the index to TimescaleDB. Then we can use the data from TimescaleDB to find the original value. Because the indexes are much smaller than the original data, we are able to calculate aggregates on the fly and plot them in our user interface. The Traffic Viewer graph shows inbound and outbound calls, backend dependencies, and an “infinite scroll” list of traffic. All of these components are powered by TimescaleDB queries.Speedscale Traffic ViewerChoosing (and using!) TimescaleDBWe knew right from the start that we have a time-series problem. There was always new data flowing in, and users wanted to focus on data from certain periods of time, they didn't just want all the data presented to them. We decided to use a time-series database to store the data.We wanted a technology that could run inside Kubernetes, is easy to operate (we are a startup after all) and scale for our needs. We initially implementedElasticsearchand exposed the data throughKibana. It let us quickly prototype the use cases and worked great for lower volumes of data. But it scaled poorly for our use",https://www.timescale.com/blog/automated-mocking-using-api-traffic-speedscales-story/,467,"[0.019009429961442947, -0.0009787932503968477, 0.05178431048989296, -0.02458116039633751, 0.05933678150177002, -0.026490652933716774, -0.05318080633878708, -0.005699979141354561, -0.027545148506760597, 0.01587444171309471, 0.011542458087205887, -0.015703443437814713, -0.036821864545345306, -0.02740265056490898, 0.05933678150177002, -0.01620219089090824, 0.009447715245187283, -0.027630649507045746, -0.05403580144047737, 0.00167971255723387, 0.009782589040696621, 0.02027767524123192, -0.0007018099422566593, -0.012639704160392284, -0.005789041519165039, -0.024053912609815598, -0.014534946531057358, 0.034000374376773834, 0.01220508012920618, -0.08624068647623062, 0.0038011735305190086, -0.0408688522875309, -0.04115384817123413, 0.028528396040201187, 0.017384937033057213, -0.024011163040995598, 0.030922386795282364, 0.002210523234680295, 0.016544189304113388, 0.012311954982578754, 0.0016636814689263701, 0.031777381896972656, 0.0136657003313303, 0.052667807787656784, 0.004652608186006546, -0.0012816046364605427, 0.0039009233005344868, -0.01759868487715721, 0.008236469700932503, 0.04403233900666237, -0.07290273159742355, 0.015503942966461182, -0.024837659671902657, -0.035681869834661484, 0.027459649369120598, -0.01415732316672802, -0.012974577955901623, 0.020947422832250595, -0.01257557887583971, -0.001557697425596416, -0.00966146495193243, -0.04691082984209061, 0.01222645491361618, 0.048107825219631195, -0.026861151680350304, 0.05041631683707237, 0.009540339931845665, 0.007808971218764782, -0.03519736975431442, 0.038788359612226486, 0.041096851229667664, 0.020747924223542213, 0.001616478431969881, 0.008108220063149929, 0.011962831020355225, -0.012276330031454563, -0.045970331877470016, 0.08470168709754944, -0.011456958018243313, -0.021859420463442802, 0.00855709332972765, 0.0012299485970288515, -0.024011163040995598, -0.009868089109659195, 0.0030779887456446886, -0.042407844215631485, 0.007064411882311106, -0.021303672343492508, -0.011727707460522652, 0.035140372812747955, -0.017199687659740448, 0.05853878706693649, 0.004331984091550112, 0.02580665610730648, 0.03080838732421398, 0.04807932302355766, 0.03636586666107178, -0.002205179538577795, 0.005660791881382465, 0.03254688158631325, 0.00030258874176070094, -0.027131900191307068, -0.038959357887506485, 0.001799946534447372, 0.07022374123334885, -0.011720581911504269, 0.03804736211895943, 0.013943574391305447, 0.01759868487715721, -0.008343344554305077, -0.0581112876534462, -0.0219876691699028, -0.030665887519717216, -0.028499895706772804, -0.010751585476100445, -0.0045813582837581635, -0.004445983562618494, -0.012817827984690666, 0.005543229635804892, -0.015062195248901844, -0.027103401720523834, 0.015503942966461182, 0.020662425085902214, -0.0006777631351724267, 0.011414208449423313, -0.0343138761818409, 0.011456958018243313, -0.031292885541915894, -0.07558172196149826, 0.00501598184928298, 0.030010391026735306, -0.03266087919473648, 0.06600575894117355, -0.008685342967510223, -0.0024794908240437508, 0.018396683037281036, -0.07313073426485062, -0.010081837885081768, -0.021389171481132507, 0.026077404618263245, 0.0017144468147307634, -0.036536864936351776, 0.022130168974399567, -0.007181973662227392, -0.04058385267853737, -0.0015861972933635116, -0.03610936924815178, 0.03818986192345619, 0.002080492442473769, 0.009148466400802135, 0.0026219903957098722, -0.01333795115351677, -0.06269977241754532, -0.03331637755036354, 0.027545148506760597, 0.006177352275699377, 0.010922584682703018, 0.027359899133443832, -0.0093764653429389, -0.014720195904374123, -0.015290194191038609, 0.051185812801122665, -0.012333329766988754, -0.01091546006500721, -0.046055831015110016, 0.0042714220471680164, -0.03676486387848854, -0.03673636540770531, -0.09575965255498886, 0.014762946404516697, -0.023369913920760155, -0.02822914719581604, 0.0006644038367085159, 0.04123934730887413, 0.0337153784930706, -0.011150584556162357, -0.021275172010064125, -0.033914875239133835, 0.040640849620103836, -0.02663315273821354, -0.0580257885158062, 0.04882032051682472, -0.018154432997107506, -0.011570957489311695, -0.02827189676463604, -0.0006710834568366408, -0.051185812801122665, 0.03089388646185398, 0.0220304187387228, 0.03496937081217766, -0.05206931009888649, 0.062186773866415024, 0.017940685153007507, 0.041381847113370895, -0.013658574782311916, -0.038588859140872955, 0.015603693202137947, 0.03482687100768089, -0.03585286810994148, 0.021716920658946037, 0.05312380567193031, 0.010003463365137577, 0.07085073739290237, -0.004242922179400921, -9.045377373695374e-05, -0.002509772079065442, 0.008172345347702503, -0.0013653230853378773, -0.04480183497071266, -0.03639436513185501, 0.010381086729466915, 0.00892759207636118, -0.014492196962237358, 0.006537163630127907, -0.03200538456439972, 0.006319852080196142, -0.036622367799282074, 0.013957823626697063, 0.00923396646976471, 0.011442707851529121, 0.004987481981515884, 0.05945078283548355, 0.0186674315482378, -0.029611391946673393, -0.04029885306954384, 0.031036386266350746, 0.05600229650735855, -0.013159826397895813, -0.024424411356449127, -0.0021339296363294125, 0.0008362937951460481, 0.0019575865007936954, -0.017669934779405594, 0.005557479802519083, 0.019508179277181625, -0.011179083958268166, 0.0074170976877212524, -0.009347965940833092, 0.021346421912312508, -0.0373348630964756, -0.0136443255469203, -0.005938665941357613, -0.03545387089252472, 0.0018106340430676937, 0.004171672277152538, 0.021631421521306038, -0.02949739247560501, -0.04004235193133354, -0.0015790723264217377, 0.05933678150177002, 0.020705174654722214, -0.04280684515833855, -0.012653953395783901, -0.03665086627006531, 0.002094742376357317, -0.042037345468997955, -0.006957537028938532, 0.008464468643069267, 0.03032388910651207, 0.013565950095653534, 0.03582436963915825, -0.034855373203754425, -0.008300594985485077, 0.009013092145323753, -0.0476803258061409, 0.009483340196311474, 0.028371647000312805, -0.04890581965446472, 0.0023743975907564163, 0.025008657947182655, 0.07780471444129944, 0.05377930402755737, 0.013879449106752872, -0.033458877354860306, -0.009347965940833092, 0.003528643399477005, 0.015233194455504417, -0.03365837782621384, -0.028072398155927658, -0.011535332538187504, 0.000449986633611843, -0.018852680921554565, 0.004559983499348164, -0.0092909662052989, 0.02621990442276001, -0.011200458742678165, 0.025721155107021332, 0.02301366627216339, 0.003965048119425774, -0.038759857416152954, -0.004542171023786068, -0.0029461767990142107, 0.009533215314149857, -0.009554590098559856, 0.020790673792362213, 0.034000374376773834, 0.00921259168535471, 0.0343138761818409, -0.05372230336070061, -0.05945078283548355, 0.016301941126585007, -0.0006140836630947888, -0.020947422832250595, -0.017627185210585594, 0.01007471326738596, 0.02215866930782795, 0.003704986535012722, 0.0036942989099770784, 0.009148466400802135, 0.006355476565659046, 0.032233383506536484, 0.01452782191336155, 0.0064587886445224285, -0.02597765438258648, 0.009134216234087944, -0.035396870225667953, 0.07751971483230591, -0.03930135443806648, 0.025991905480623245, -0.05945078283548355, -0.061901774257421494, -0.049133818596601486, -0.010537836700677872, 0.020819174125790596, 0.0511288121342659, -0.011620832607150078, 0.03673636540770531, 0.001441025990061462, 0.002554303267970681, 0.002817927161231637, -0.017171187326312065, -0.026804152876138687, 0.012269205413758755, 0.008585593663156033, -0.018325433135032654, -0.0476803258061409, 0.002978239208459854, -0.03134988620877266, -0.048934321850538254, 0.027188900858163834, -0.02137492224574089, -0.017513185739517212, -0.05055881664156914, 0.00566435419023037, 0.06355476379394531, 0.019351428374648094, -0.017413435503840446, 0.004046985413879156, 0.04693932831287384, 0.004100422374904156, -0.008628343231976032, -0.036166366189718246, 0.0034573934972286224, 0.023811662569642067, 0.025450406596064568, -0.005895915906876326, -0.03311687707901001, -0.027844397351145744, -0.05033081769943237, 0.008386094123125076, -0.02995339035987854, 0.02617715485394001, -0.022514916956424713, 0.005436355248093605, 0.009433465078473091, 0.017798185348510742, -0.04029885306954384, 0.014314072206616402, -0.04046985134482384, 0.009390715509653091, 0.014043323695659637, 0.012867703102529049, 0.005774791352450848, 0.0038652983494102955, -0.041296347975730896, -0.01825418323278427, 0.06868474930524826, 0.04899132251739502, -0.006088290363550186, 0.043063342571258545, 0.0342283733189106, 0.005821103695780039, 0.01645869016647339, -0.016358939930796623, 0.014591946266591549, 0.03197688236832619, -0.034285373985767365, 0.039899855852127075, -0.06321276724338531, -0.023284414783120155, 0.0072959731332957745, -0.0005161152803339064, -0.02141767181456089, -0.022472167387604713, 0.013323700986802578, 0.012889077886939049, 0.023284414783120155, 0.02056267485022545, 0.056971292942762375, 0.021902170032262802, 0.030352389439940453, 0.013736949302256107, -0.04038435220718384, 0.003779798746109009, 0.0010108556598424911, -0.007345848251134157, 0.015062195248901844, -0.013124202378094196, -0.005265355575829744, -0.0070287869311869144, 0.004399671219289303, -0.00034511592821218073, 0.04705332964658737, -0.016629688441753387, 0.02864239551126957, -0.026077404618263245, -0.008350469172000885, 0.055090297013521194, 0.03918735682964325, 0.06110377609729767, -0.0005067637539468706, -0.018809931352734566, -0.03425687551498413, 0.017798185348510742, -0.01855343207716942, 0.07427072525024414, 0.06258577108383179, -0.009369340725243092, -0.021517422050237656, -0.012304830364882946, -0.01493394561111927, -0.003658674191683531, 0.060704778879880905, -0.03189138323068619, -0.02831464633345604, 0.04349084198474884, 0.005585979670286179, -0.056486792862415314, 0.021674171090126038, 0.001805290230549872, -0.014428072609007359, -0.008606968447566032, -0.000781520560849458, 0.018282683566212654, -0.00814384501427412, -0.029525892809033394, -0.03134988620877266, -0.051841311156749725, -0.01645869016647339, 0.0012700265506282449, 0.04984631761908531, -0.0002932372153736651, -0.05979278311133385, 0.001973617821931839, -0.04443133622407913, -0.04933331906795502, 0.024239161983132362, -0.03516887128353119, 0.01879568211734295, -0.037648361176252365, -0.033173877745866776, 0.03562486916780472, -0.029069893062114716, 0.02220141887664795, 0.027644898742437363, -0.037847861647605896, 0.04528633505105972, -0.02602040395140648, 0.010858460329473019, -0.012162330560386181, 0.01045946218073368, 0.019892927259206772, -0.016273440793156624, -0.03200538456439972, -0.04383283853530884, -0.007730596698820591, 0.0372493639588356, -0.007352972868829966, 0.01580319181084633, -0.015104944817721844, -0.029725391417741776, -0.015646442770957947, -0.03320237994194031, 0.0474238246679306, 0.005525417160242796, 0.04032735154032707, 0.01851068250834942, -0.01953667774796486, -0.017570186406373978, 0.01089408528059721, -0.010694585740566254, 0.006348351947963238, 0.08971767127513885, -0.017285186797380447, -0.05927978456020355, 0.015503942966461182, -0.07427072525024414, -0.04189484566450119, 0.0010349024087190628, 0.0059066032990813255, 0.013060077093541622, -0.04996031895279884, 0.02187366969883442, 0.06081877648830414, -0.009632964618504047, 0.014591946266591549, -0.004951857030391693, -0.010281337425112724, -0.0005815760232508183, -0.03234738111495972, -0.017798185348510742, 0.0003415534447412938, 0.033914875239133835, 0.05796878784894943, -0.05511879920959473, 0.004877044819295406, 0.015332943759858608, 0.013964949175715446, -0.003245425643399358, 0.015161944553256035, -0.02958289161324501, -0.0442318394780159, -0.014064698480069637, 0.01973617821931839, -0.01993567682802677, -0.023312915116548538, -0.04215134680271149, -0.021816670894622803, -0.023284414783120155, 0.0019522428046911955, 0.012632578611373901, -0.03744886443018913, -0.028371647000312805, 0.010160212405025959, -0.03656536713242531, 0.004584920592606068, -0.02576390653848648, -0.04739532619714737, -0.056315794587135315, 0.04691082984209061, 0.013729824684560299, 0.010673210956156254, 0.014577697031199932, 0.03040938824415207, -0.02150317095220089, 0.017299436032772064, -0.0004720295255538076, -0.03286037966609001, -0.0020626799669116735, 0.04189484566450119, 0.007823221385478973, -0.022001920267939568, 0.01652994006872177, -0.013936448842287064, 0.023441163823008537, 0.03459887206554413, 0.02671865187585354, 0.028385896235704422, -0.01945117861032486, -0.0007917627226561308, 0.011977081187069416, 0.00335942511446774, 0.0342283733189106, -0.0048912945203483105, 0.0032632381189614534, 0.0047167325392365456, -0.0013608699664473534, -0.05263930559158325, -0.02084767445921898, 0.03166338428854942, 0.005300980526953936, -0.007395722903311253, -0.003298862837255001, 0.02765914797782898, 0.026932401582598686, 0.025949155911803246, 0.0022888979874551296, -0.03040938824415207, -0.01792643405497074, 0.009896588511765003, -0.033914875239133835, 0.013736949302256107, -0.00968283973634243, 0.011464082635939121, -0.02892739325761795, -0.0008118016994558275, -0.0026433654129505157, 0.012518579140305519, 0.02995339035987854, 0.008692468516528606, -0.006294914521276951, -0.009119966998696327, -0.008628343231976032, 0.017712684348225594, 0.016102440655231476, 0.015190444886684418, -0.0014018386136740446, -0.024438660591840744, -0.021716920658946037, 0.01335932593792677, 0.019436929374933243, 0.012433079071342945, 0.0006287789437919855, -0.01583169214427471, -0.04155284911394119, 0.0371638648211956, 0.00464548310264945, 0.004937606863677502, 0.05292430520057678, -0.01908067986369133, 0.03710686415433884, -0.013779699802398682, -0.006508663762360811, -0.03947235643863678, -0.018938180059194565, 0.0003733931516762823, -0.024552660062909126, -0.014428072609007359, 0.02224416844546795, -0.018439432606101036, -0.020861923694610596, -0.013523200526833534, -0.0006759819225408137, -0.038303859531879425, -0.004203734453767538, 0.011350083164870739, 0.004684670362621546, -0.0377623625099659, -0.03918735682964325, 0.01175620686262846, -0.0032240506261587143, 0.012767952866852283, 0.010010587982833385, 0.001678821980021894, 0.0169431883841753, 0.0409543514251709, -0.00015062640886753798, 0.04619833081960678, -0.014171573333442211, -0.008891967125236988, 0.03602386638522148, 0.029639892280101776, -0.010530711151659489, -0.017470436170697212, 0.02453841082751751, -0.01879568211734295, -0.01822568289935589, 0.05409280210733414, -0.00861409306526184, 0.004791544750332832, -0.005767666269093752, -0.023768913000822067, 0.043889839202165604, 0.02261466719210148, 0.025265157222747803, 0.007908721454441547, -0.0306943878531456, -0.0170286875218153, 0.0038546109572052956, 0.04089735075831413, -0.04939031973481178, 0.029924890026450157, -0.018567681312561035, 0.008991717360913754, -0.038674358278512955, 0.00644097663462162, 0.06133177503943443, 0.015660692006349564, 0.007516847457736731, 0.022101668640971184, -0.020662425085902214, 0.05366530269384384, 0.001560369273647666, 0.02154592052102089, 0.011556707322597504, 0.006066915113478899, 0.0069076623767614365, -0.025778155773878098, 0.00810109544545412, 0.06714575737714767, -0.05383630469441414, 0.02552165649831295, -0.06281377375125885, -0.014862695708870888, -0.007858846336603165, -0.008720967918634415, -0.009340840391814709, 0.04155284911394119, 0.03183438256382942, -0.012889077886939049, 0.0016654626233503222, 0.007288848515599966, -0.01665818877518177, 0.001376901171170175, -0.004103985149413347, -0.00727103604003787, 0.007256785873323679, 0.02621990442276001, -0.03761986270546913, -0.017128437757492065, -0.007409973070025444, -8.761491335462779e-05, -0.04383283853530884, -0.023127665743231773, -0.027502398937940598, 0.015489693731069565, 0.007994220592081547, -0.03234738111495972, 0.007035911548882723, -0.0219876691699028, -0.051271311938762665, 0.0034449249505996704, -0.015261693857610226, -0.005724916700273752, -0.01903793029487133, 0.023042166605591774, -0.031777381896972656, 0.00527248065918684, -0.028813393786549568, 0.012760828249156475, -0.04787982627749443, 0.01464894600212574, -0.0512998141348362, -0.04263584315776825, 0.023483913391828537, -0.00847159419208765, 0.0169431883841753, 0.0439753383398056, 0.015518193133175373, -0.04126784950494766, 0.03491237387061119, -0.014990945346653461, 0.007858846336603165, 0.0040291729383170605, 0.023327164351940155, -0.0338863767683506, -0.024552660062909126, -0.0005170059157535434, -0.036536864936351776, -0.004378296434879303, -0.03613786771893501, -0.0013573075411841273, 0.013017327524721622, 0.004620545543730259, -0.009176966734230518, -0.021317921578884125, 0.020819174125790596, 0.019479678943753242, 0.018282683566212654, -0.03248988091945648, 0.004210859537124634, 0.013430575840175152, -0.008036970160901546, 0.004502983298152685, 0.007007411681115627, -0.02814364619553089, 0.012447329238057137, 0.004784420132637024, 0.004264296963810921, 0.029440391808748245, -0.015703443437814713, 0.01912342943251133, -0.028784895315766335, 0.0013581981183961034, 0.019479678943753242, 0.020861923694610596, -0.020534174516797066, 0.0010972459567710757, 0.011471208184957504, -0.02429616078734398, -0.03779086098074913, -0.013708449900150299, 0.00586741603910923, -0.013031577691435814, 0.03984285518527031, 0.02490890957415104, -0.002864239504560828, -0.005992102902382612, 0.016871938481926918, -0.003161707194522023, 0.030665887519717216, -0.017128437757492065, -0.01584594137966633, -0.013708449900150299, -0.022130168974399567, 0.011414208449423313, 0.010787210427224636, 0.006815037690103054, -0.014520697295665741, -0.010039088316261768, -0.027089150622487068, -0.030637387186288834, -0.020006926730275154, -0.03052338771522045, -0.0045279208570718765, -0.027744648978114128, -0.0035215183161199093, -0.07364372909069061, -0.02704640105366707, 0.042521845549345016, -0.004510108381509781, 0.016886187717318535, -0.002629115479066968, 0.02490890957415104, 4.238803012412973e-05, -0.0018400244880467653, -0.0030120827723294497, -0.0012352924095466733, -0.032147880643606186, -0.03297438099980354, -0.004371171351522207, -0.007623722311109304, -0.025094158947467804, -0.026191404089331627, 0.029725391417741776, 0.0219876691699028, 0.023156166076660156, -0.003537549637258053, 0.005924415774643421, -0.020733674988150597, 0.0512143112719059, 0.01620219089090824, -0.01855343207716942, -0.00861409306526184, 0.03166338428854942, 0.03169188275933266, -0.02626265399158001, 0.011521083302795887, -0.008642593398690224, -0.0026843338273465633, 0.025307906791567802, -0.004898419603705406, 0.03579586744308472, 0.0008683562045916915, 0.004317734390497208, -0.025792405009269714, -0.013330826535820961, -0.0444883368909359, -0.016116691753268242, 0.05058731511235237, -0.046597328037023544, 0.03927285596728325, -0.025037158280611038, 0.014848445542156696, 0.04118235036730766, -0.019622178748250008, -0.006882724817842245, -0.010381086729466915, 0.001741165528073907, 0.007210473529994488, 0.00684353755787015, -0.018168684095144272, 0.034028876572847366, -0.027317149564623833, 0.005479104816913605, 0.0027092713862657547, 0.005179855972528458, -0.03134988620877266, 0.02527940832078457, 0.02056267485022545, -0.04705332964658737, -0.014620446600019932, -0.006344789173454046, -0.0070287869311869144, 0.05141381174325943, 0.014456572011113167, -0.019892927259206772, 0.02757364884018898, 0.06241477280855179, 0.03126438707113266, -0.004371171351522207, -0.006013478152453899, -0.002760927425697446, 0.018068933859467506, 0.008485844358801842, -0.014271322637796402, -0.029981890693306923, 0.020662425085902214, -0.010901209898293018, -0.046426329761743546, 0.005756978876888752, -0.007709221914410591, -0.028499895706772804, -0.011442707851529121, 0.006116790231317282, 0.01617369055747986, -0.0058282287791371346, 0.030466388911008835, -0.0007873096037656069, 0.003722798777744174, 0.002196273300796747, -0.01916617900133133, 0.04981781914830208, 0.01251145452260971, 0.013601575046777725, 0.02810089662671089, -0.018980931490659714, 0.031093386933207512, 0.002212304389104247, 0.011093584820628166, 0.009184091351926327, -0.003550018183887005, -0.018482182174921036, 0.0023619288112968206, 0.0030370200984179974, 0.008592718280851841, -0.01497669517993927, -0.006163102574646473, -0.009440590627491474, 0.03781936317682266, 0.015603693202137947, 0.0020163676235824823, -0.00015062640886753798, 0.031121885403990746, -0.011186209507286549, -0.01093683484941721, -0.020448675379157066, 0.03967185318470001, -0.017712684348225594, -0.02429616078734398, 0.037477362900972366, -0.04616983234882355, 0.019337179139256477, 0.034570373594760895, 0.003972172737121582, 0.008606968447566032, -0.01304582692682743, -0.010879835113883018, 0.05899478495121002, 0.015546693466603756, 0.022301169112324715, -0.007666471879929304, -0.009162716567516327, 0.0018845555605366826, -0.013152701780200005, -0.006241477094590664, 0.021431921049952507, -0.017413435503840446, -0.02215866930782795, 0.022272668778896332, 0.00405054772272706, 0.034855373203754425, -0.007944345474243164, 0.0043284217827022076, 0.0035624869633466005, -0.03864585980772972, 0.044459838420152664, 0.02327016554772854, -0.0306088887155056, -0.005390042904764414, 0.05149931088089943, -0.01411457359790802, 0.04428883641958237, -0.04896282032132149, -0.025493156164884567, -0.012076830491423607, -0.0039436728693544865, 0.01785518415272236, 0.0440608374774456, 0.029411891475319862, 0.010666086338460445, 0.019109180197119713, -0.02966839075088501, -0.02716040052473545, 0.006045540329068899, 0.018824180588126183, 0.019579429179430008, 0.012290580198168755, -0.019522428512573242, 0.025037158280611038, -0.01249720435589552, 0.04081185162067413, 0.04383283853530884, -0.03320237994194031, -0.0020484300330281258, 0.018824180588126183, 0.03257538005709648, -0.04163834825158119, 0.0026059593074023724, -0.011079334653913975, 0.04283534362912178, 0.051556311547756195, -0.03790486231446266, -0.018453681841492653, 0.005062294192612171, -0.027060650289058685, 0.0185819324105978, 0.008870592340826988, 0.004182359669357538, 0.02765914797782898, 0.0039080483838915825, 0.0004490960272960365, 0.008699593134224415, 0.02547890692949295, 0.008357594721019268, -0.026048904284834862, 0.03040938824415207, -0.018125934526324272, 0.006562101189047098, 0.0060027907602488995, -0.02338416501879692, -0.004535045940428972, 0.028457146137952805, -0.004032735247164965, 0.00033242456265725195, -0.010110338218510151, 0.014777195639908314, 0.016472939401865005, 0.004855669569224119, -0.014948195777833462, 0.010658960789442062, -0.003822548547759652, 0.009882339276373386, 0.029354892671108246, -0.008036970160901546, 0.006444538943469524, -0.017057187855243683, -0.01580319181084633, -0.0306088887155056, -0.018852680921554565, 0.04337684065103531, -0.03003888949751854, 0.021674171090126038, -0.008870592340826988, 0.007972845807671547, -0.008029845543205738, 0.01587444171309471, 0.008663968183100224, 0.020006926730275154, 0.006480163894593716, -8.883951522875577e-05, 0.02790139801800251, 0.02232966758310795, 0.009162716567516327, 0.014192948117852211, 0.0051905433647334576, -0.00013036475866101682, -0.021189672872424126, 0.0036729241255670786, -0.013751199468970299, -0.017057187855243683, 0.006034852936863899, -0.0027751773595809937, 0.05329480394721031, 0.01899518072605133, 0.021859420463442802, -0.01372270006686449, 0.008799342438578606, -0.0006109665264375508, 0.01722818613052368, -0.006469476502388716, 0.029696891084313393, -0.01735643669962883, 0.0010081838117912412, -0.009191215969622135, 0.002493740990757942, -0.022742915898561478, 0.007808971218764782, 0.0060811652801930904, -0.020334675908088684, -0.006768725346773863, 0.012646828778088093, -0.015489693731069565, -0.00972558930516243, 0.005062294192612171, 0.035140372812747955, -0.003596330527216196, -0.021146923303604126, 0.011435583233833313, 0.029027143493294716, -0.0012477610725909472, -0.0028963019140064716, 0.0640677660703659, -0.06480876356363297, -0.02240091748535633, -0.004763044882565737, -0.012354704551398754, -0.01329520158469677, -0.0028856145218014717, -0.010245712473988533, -0.028072398155927658, 0.028585394844412804, 0.008478718809783459, 0.013964949175715446, -0.004987481981515884, 0.004941169638186693, -0.017171187326312065, 0.006056227721273899, 0.0580257885158062, -0.008799342438578606, 0.026120154187083244, -0.006359039340168238, 0.0029728952795267105, 0.007645097095519304, 0.0028660206589847803, 0.020249176770448685, -0.026647401973605156, 0.019750427454710007, -0.011962831020355225, 0.0067437877878546715, 0.015931442379951477, 0.04984631761908531, -0.012725203298032284, -0.02093317359685898, 0.017869435250759125, -0.0053651053458452225, 0.024281911551952362, -0.0033362689428031445, 0.004816482309252024, 0.019522428512573242, 0.04713882878422737, -0.00030347934807650745, -0.002509772079065442, 0.03089388646185398, 0.03593836724758148, 0.005436355248093605, 0.02794414758682251, 0.01015308778733015, -0.0056073544546961784, 0.02113267220556736, 0.016544189304113388, -0.017840934917330742, -0.005799728911370039, 0.007716346997767687, 0.010886959731578827, -0.00894184224307537, 0.021104171872138977, 0.015774691477417946, 0.0032774880528450012, 0.0290983933955431, 0.028371647000312805, -0.02703215181827545, -0.012304830364882946, 0.013615825213491917, -0.006651163101196289, 0.01715693809092045, -0.000478263886179775, 0.004381858743727207, 0.005504042375832796, -0.0025436156429350376, -0.021688420325517654, -0.011136334389448166, 0.007816096767783165, 0.04748082533478737, 0.03115038573741913, -0.011741956695914268, 0.018781431019306183, 0.06315577030181885, 0.009611589834094048, 0.01052358653396368, 0.014848445542156696, -0.02445290982723236, -0.025721155107021332, -0.0016271659405902028, -0.005325918085873127, -0.013309451751410961, 0.04163834825158119, -0.023369913920760155, 0.008015595376491547, -0.018268432468175888, 0.02589215524494648, 0.02552165649831295, -0.02248641848564148, 0.002222991781309247, 0.027131900191307068, 0.001199667458422482, -0.015290194191038609, 0.013430575840175152, 0.03117888607084751, 0.013038702309131622, -0.008827842772006989, -0.012896202504634857, -0.020975923165678978, 0.013858074322342873, -0.04374733939766884, 0.013145577162504196, 0.011464082635939121, -0.018496431410312653, -0.03516887128353119, 0.010986709967255592, 0.03300287947058678, 0.003655111650004983, 0.0024153662379831076, -0.022001920267939568, 0.014520697295665741, 0.011193334124982357, 0.028286146000027657, -0.004980356898158789, -0.04198034480214119, -0.02351241372525692, -0.0052867308259010315, -0.0032436444889754057, 0.03704986348748207, 0.003712111385539174, -0.018482182174921036, -0.004670420195907354, -0.03787636011838913, -0.029810890555381775, 0.009262465871870518, -0.012746578082442284, -0.006373289041221142, 0.0022693041246384382, 0.021260922774672508, 0.03955785557627678, 0.0015835254453122616, 0.02810089662671089, 0.020363176241517067, -0.022714417427778244, -0.015147694386541843, -0.013402076438069344, 0.017142686992883682, -0.01661543920636177, -0.039244357496500015, 0.035026371479034424, -0.023683413863182068, 0.011171959340572357, -0.03479837253689766, 0.01175620686262846, 0.013402076438069344, 0.021189672872424126, 0.007858846336603165, 0.02272866666316986, 0.02392566204071045, 0.015646442770957947, 0.0372493639588356, 0.005910166073590517, -0.038759857416152954, -0.040726352483034134, 0.03881685808300972, -0.02285691723227501, 0.007481222506612539, -0.004684670362621546, 0.010943960398435593, -0.0016316190594807267, 0.03582436963915825, -0.005710666533559561, 0.01604544185101986, -0.013060077093541622, -0.041666846722364426, 0.02506565861403942, 0.005660791881382465, -0.0029408331029117107, -0.011442707851529121, -0.04967531934380531, -0.008343344554305077, 0.008785093203186989, -0.029981890693306923, -0.0008077939273789525, 0.023156166076660156, -0.009419215843081474, 0.024353161454200745, 0.017142686992883682, -0.006056227721273899, -0.033743876963853836, -0.026319652795791626, 0.0039757355116307735, -0.005806853529065847, -0.042578842490911484, 0.008799342438578606, 0.025578657165169716, 0.0018898993730545044, 0.00814384501427412, 0.03590986877679825, 0.006793662440031767, 0.001852493267506361, -0.02429616078734398, -0.015660692006349564, 0.021674171090126038, 0.004980356898158789, -0.01960792765021324, 0.005372230429202318, -0.0054327924735844135, 0.013608700595796108, 0.01908067986369133, -0.011456958018243313, -0.023569414392113686, -0.0043391091749072075, 0.0039329854771494865, -0.0026184278540313244, 0.02986789122223854, -0.009732714854180813, 0.0036177055444568396, 0.029810890555381775, -0.02100442349910736, -0.02433891035616398, 0.042208343744277954, -0.02671865187585354, -0.03491237387061119, 0.022628916427493095, -0.01563219353556633, 0.015375693328678608, 0.006793662440031767, -0.0003281941171735525, 0.042607344686985016, 0.008699593134224415, 0.010267087258398533, -0.0027181776240468025, 0.001441025990061462, -0.004595607984811068, 0.06201577186584473, -0.015161944553256035, 0.006654725875705481, -0.016544189304113388, 0.029639892280101776, -0.0185819324105978, -0.009982088580727577, -0.00406123511493206, 0.004524358548223972, 0.01613094098865986, -0.011962831020355225, -0.011962831020355225, 0.041096851229667664, -0.015817442908883095, -0.026576152071356773, 0.004898419603705406, 0.00624860217794776, 0.0187529306858778, -0.006993161980062723, -0.0070287869311869144, 0.003843923332169652, 0.0153044443577528, 0.03545387089252472, 0.021845169365406036, -0.017085688188672066, 0.006768725346773863, -0.00810109544545412, -0.011784707196056843, 0.016629688441753387, -0.009447715245187283, 0.010651836171746254, 0.019109180197119713, 0.017470436170697212, 0.0052439807914197445, -0.019992677494883537, -0.0017821340588852763, -0.025778155773878098, 0.009119966998696327, -0.017798185348510742, -0.022999415174126625, -0.031036386266350746, 0.033914875239133835, 0.0060811652801930904, -0.005685728974640369, 0.019892927259206772, 0.025165408849716187, -0.045200835913419724, 0.021731169894337654, -0.013573075644671917, -0.013138451613485813, -0.01633043959736824, 0.015731941908597946, 0.0013296982506290078, 0.026048904284834862, -0.022087419405579567, -0.007509722374379635, 0.0036426428705453873, 0.00966146495193243, 0.03211938217282295, -0.009298090822994709, -0.04702482745051384, 0.023441163823008537, 0.0077590965665876865, -0.022985165938735008, 0.009219716303050518, 0.03582436963915825, 0.00034511592821218073, -0.04460233822464943, 0.010003463365137577, -0.018980931490659714, 0.009782589040696621, -0.011528207920491695, 0.014919695444405079, 0.018724432215094566, 0.03348737582564354, -0.010373962111771107, 0.001264682854525745, 0.0018756494391709566, -0.008200844749808311, -0.01772693544626236, -0.00890621729195118, -0.018083183094859123, -0.011741956695914268, -0.03687886521220207, -0.030380889773368835, -0.014150198549032211, 0.038389358669519424, -0.028898894786834717, -0.0060384152457118034, -0.0035143934655934572, 0.001863180659711361, 0.006936162244528532, 0.0343138761818409, 0.003459174884483218, 0.00419660983607173, 0.011442707851529121, 0.007744846865534782, -0.0060277278535068035, -0.02071942389011383, 0.016301941126585007, -0.009526089765131474, -0.0026130841579288244, -0.046967826783657074, 0.01965067721903324, 0.0409543514251709, -0.012290580198168755, 0.02388291247189045, 0.013159826397895813, -0.011271708644926548, 0.012233580462634563, 0.023483913391828537, -0.0377623625099659, 0.014000574126839638, -0.0007294192328117788, 0.021759670227766037, -0.02080492302775383, -0.04559983313083649, 0.055859796702861786, 0.0036978614516556263, 0.011820332147181034, 0.010616211220622063, 0.018638931214809418, 0.026248404756188393, -0.006188039667904377, -0.0042714220471680164, 0.008207970298826694, -0.0237119123339653, -0.010352587327361107, -0.008008470758795738, -0.016187941655516624, -0.03343037888407707, -0.03254688158631325, -0.011314458213746548, 0.015489693731069565, 0.008350469172000885, -0.015275944024324417, -0.009903714060783386, 0.008628343231976032, 0.01464894600212574, 0.00882071815431118, -0.00855709332972765, 0.022543417289853096, -0.006508663762360811, 0.0022532730363309383, 0.01990717649459839, 0.039044857025146484, 0.02724589966237545, -0.026476403698325157, -0.00023044837871566415, 0.018824180588126183, 0.004232234321534634, -0.014762946404516697, 0.02515115775167942, 0.011100709438323975, -0.017456186935305595, 0.021588671952486038, -0.004698920529335737, -0.0038759857416152954, 0.020876172930002213, -0.0187529306858778, -0.006127477623522282, -0.027559399604797363, 0.004616983234882355, -0.007345848251134157, -0.004545733332633972, 0.013238201849162579, 0.019194679334759712, 0.004620545543730259, 0.011086459271609783, 0.004178797360509634, 0.0038047360721975565, -0.02630540356040001, 0.03154938295483589, -0.0007356535643339157, 0.048022326081991196, -0.02010667696595192, 0.018767181783914566, -0.019892927259206772, 0.021560171619057655, -0.008592718280851841, 0.04012785479426384, -0.029354892671108246, 0.042208343744277954, 0.0001767884095897898, 0.008215094916522503, -0.0093764653429389, 0.007474097888916731, -0.01013171300292015, -0.00892759207636118, 0.019921427592635155, -0.04235084354877472, 0.008286344818770885, -0.022600417956709862, 0.024395911023020744, -0.0015461193397641182, 0.022130168974399567, 0.0050801062025129795, -0.017627185210585594, 0.001367995049804449, 0.04263584315776825, 0.00972558930516243, -0.014278448186814785, -0.013466200791299343, 0.018681680783629417, 0.031121885403990746, 0.007167723961174488, -0.038303859531879425, 0.003786923596635461, 0.05198381096124649, 0.0018952430691570044, -0.003298862837255001, 0.005393605213612318, -0.022586166858673096, 0.024723660200834274, 0.0016725875902920961, -0.017213936895132065, -0.058367785066366196, -0.007178411353379488, -0.005703541450202465, -0.010316962376236916, 0.00900596659630537, -0.025706905871629715, -0.0017286967486143112, -0.03619486838579178, 0.030551888048648834, -0.013494700193405151, -0.02495165914297104, 0.0021125548519194126, 0.03331637755036354, 0.021716920658946037, 0.046625830233097076, 0.011043709702789783, 0.028656644746661186, -0.02240091748535633, 0.017299436032772064, -0.006366164423525333, -0.00028588957502506673]" -Automated Mocking Using API Traffic: Speedscale's Story,"case and we had very little control over the look and feel of the UI. Then we evaluated TimescaleDB, Influx, Prometheus and Graphite.We selected TimescaleDB because we were already using PostgreSQL as part of our technology stack, and also the paper evaluation looked like TimescaleDB would scale well at our load ranges.✨Editor’s Note:For more comparisons and benchmarks, seehow TimescaleDB compares to InfluxDB, MongoDB, AWS Timestream, vanilla PostgreSQL, and other time-series database alternativeson various vectors, from performance and ecosystem to query language and beyond.We useSQiurreLto issue SQL queries like this one that powers the inbound throughput graph.rrPairsQuery := sq.Select( fmt.Sprintf(""time_bucket(INTERVAL '%s', time) AS bucket"", durationToSQLInterval(interval)), ""is_inbound"", ""COUNT(id)""). From(rrPairsTableName). GroupBy(""is_inbound"", ""bucket""). OrderBy(""bucket"")We deploy TimescaleDB on theKubernetes operatorviaFlux. Our core services are currently written in Golang which we use to connect TimescaleDB with microservices inside Kubernetes as well as AWS Lambda.Currently, our architecture that touches TimescaleDB looks like this:Current Speedscale architecture diagramAfter implementing TimescaleDB, our AWS cloud costs went down about 35% because it is cheaper to run than the AWS OpenSearch we used before. In addition, the query performance improved dramatically, a majority of queries take under 100ms to complete.Advice & resourcesHaving aKubernetes operatorwas a big help for us because it was proof that this was built for our architecture.We’ve made a version of our traffic capture capability available as a free CLI which you can find here:https://github.com/speedscale/speedscale-cliWe’d like to thank Ken and all folks from Speedscale for sharing their story. We applaud your efforts to modernize and automate testing practices for modern cloud infrastructure.🙌We’re always keen to feature new community projects and stories on our blog. If you have a story or project you’d like to share, reach out on Slack (@Lucie Šimečková), and we’ll go from there.The open-source relational database for time-series and analytics.Try Timescale for free",https://www.timescale.com/blog/automated-mocking-using-api-traffic-speedscales-story/,464,"[0.0291631780564785, -0.010503806173801422, 0.022062210366129875, -0.02013581059873104, 0.049664583057165146, 0.017000136896967888, -0.04673982784152031, 0.008190719410777092, -0.02114822529256344, 0.004081298131495714, 0.023847999051213264, -0.022104395553469658, 0.001975615508854389, -0.03009122423827648, 0.07553741335868835, 0.03256601840257645, -0.013934767805039883, -0.04696480929851532, -0.05022703483700752, 0.02265278622508049, -0.012198194861412048, 0.012788770720362663, 0.025915013626217842, 0.0257743988186121, -0.012247409671545029, -0.006921684835106134, -0.017759447917342186, 0.029697507619857788, 0.023271484300494194, -0.06895671039819717, 0.01458158902823925, -0.03914671391248703, -0.059451259672641754, 0.010538959875702858, 0.025479111820459366, 0.02516976371407509, 0.026055626571178436, 0.00859849713742733, 0.006946292240172625, 0.009962445124983788, -0.019770216196775436, 0.019249947741627693, 0.002437881426885724, 0.017815692350268364, -0.008767233230173588, -0.029697507619857788, 0.009772617369890213, -0.032116055488586426, 0.02232937701046467, 0.05433294177055359, -0.05900130048394203, 0.017759447917342186, -0.029950611293315887, -0.045193083584308624, 0.03987790271639824, 0.0054206387139856815, -0.007185334339737892, 0.025324437767267227, 0.02654777280986309, -0.014363638125360012, 0.010306947864592075, -0.06147609278559685, 0.013611357659101486, 0.03290348872542381, -0.015129980631172657, 0.03515329957008362, 0.000670549226924777, 0.051351942121982574, -0.032875366508960724, 0.043083883821964264, 0.05452980101108551, 0.03599698096513748, -0.006134250666946173, -0.03931545093655586, 0.01739385351538658, -0.04195898026227951, 0.0031567662954330444, 0.09415459632873535, 0.01662047952413559, 0.0015889292117208242, 0.0024589733220636845, -0.004257064778357744, -0.025886889547109604, 0.04620549827814102, 0.01898278295993805, -0.03956855461001396, -0.018546881154179573, -0.03633445128798485, -0.013794154860079288, 0.01840626820921898, -0.025085395202040672, 0.06046367809176445, 0.005455792415887117, 0.00023091323964763433, 0.04243706539273262, 0.048961516469717026, 0.011952121742069721, 0.0014913787599653006, -7.980897498782724e-05, 0.050620753318071365, 0.02137320674955845, -0.005146443378180265, -0.019503051415085793, 0.004218395799398422, 0.04440565034747124, -0.0074595301412045956, 0.026393096894025803, 0.014335515908896923, 0.02157006412744522, -0.003209496382623911, -0.06276973336935043, 0.006967383902519941, -0.05095822364091873, -0.0006433054222725332, -0.021626310423016548, 0.003286833642050624, -0.03478770703077316, -0.021274777129292488, 0.006809194106608629, 0.0053503322415053844, -0.02469167858362198, 0.00752280605956912, -0.011973214335739613, 0.01888435333967209, 0.02157006412744522, -0.04454626142978668, 0.011164688505232334, -0.037318743765354156, -0.038499895483255386, 0.01019445713609457, 0.05365799739956856, -0.03743123263120651, 0.02599938027560711, -0.04432127997279167, 0.012451298534870148, -0.007501714397221804, -0.0641196221113205, -0.02647746540606022, -0.003364170901477337, 0.009294532239437103, -0.017914121970534325, -0.05033952742815018, 0.0257743988186121, 0.004612112883478403, -0.020051442086696625, 0.023468343541026115, -0.012148980982601643, 0.03802181035280228, -0.012233348563313484, 0.010756909847259521, 0.012465360574424267, -0.012352869845926762, -0.054895393550395966, -0.022709032520651817, 0.01780163124203682, -0.004844124894589186, 0.029050687327980995, 0.019967075437307358, -0.022104395553469658, -0.007663419470191002, 0.02134508453309536, 0.04288702458143234, -0.011396699585020542, 0.005044498480856419, -0.02360895648598671, -0.02893819659948349, -0.046374235302209854, -0.04001851752400398, -0.0990479364991188, -0.017379792407155037, -0.014736263081431389, -0.054192326962947845, 0.012163042090833187, 0.031159885227680206, 0.029050687327980995, -0.002977484604343772, 0.0009254106553271413, -0.0507894866168499, 0.01953117363154888, -0.003364170901477337, -0.07345633953809738, -0.0036207898519933224, -0.030259961262345314, 0.018645310774445534, -0.012964537367224693, 0.02405891939997673, -0.05267370492219925, 0.039456065744161606, 0.010074935853481293, 0.039202962070703506, -0.03433774411678314, 0.04105905443429947, 0.015284654684364796, 0.0006604426307603717, 0.004366039764136076, -0.03301598131656647, 0.034056518226861954, 0.021584127098321915, -0.05722957104444504, 0.0387248769402504, 0.045643046498298645, 0.014595650136470795, 0.059901222586631775, -0.022160639986395836, -0.0011213902616873384, 0.003121613059192896, -0.00520971929654479, -0.012289593927562237, -0.06321969628334045, -0.02546505071222782, 0.020149871706962585, 0.028628848493099213, 0.0016548415878787637, -0.015720555558800697, -0.02533849887549877, -0.011509190313518047, -0.03385965898633003, -0.013871491886675358, -0.0009236529585905373, 0.0001894982560770586, 0.024776045233011246, 0.07148775458335876, 0.005810840521007776, -0.021359145641326904, -0.007297825068235397, 0.050648875534534454, 0.015158102847635746, -0.022793399170041084, -0.009048459120094776, 0.0028685093857347965, -0.016536112874746323, -0.025760337710380554, -0.021640371531248093, -0.03914671391248703, 0.013681664131581783, -0.010053844191133976, 0.007020113989710808, -0.011600589379668236, -0.014293331652879715, -0.07739350944757462, -0.016451744362711906, 6.508853402920067e-05, -0.010103058069944382, 0.024733861908316612, 0.013688694685697556, 0.007023629266768694, -0.022596541792154312, -0.0532924048602581, 0.003056579502299428, 0.0500301755964756, -0.0062361955642700195, -0.02380581572651863, -0.025197885930538177, -0.005536644719541073, -0.002103924984112382, -0.06777556240558624, -0.010728787630796432, -0.0029212392400950193, 0.021134164184331894, -0.008865661919116974, 0.018293777480721474, -0.050873856991529465, 0.004162150900810957, -0.004179727286100388, -0.056048423051834106, 0.003662973875179887, 0.04229645058512688, -0.04673982784152031, -0.013702756725251675, 0.013569174334406853, 0.06884422153234482, 0.03385965898633003, 0.0299224890768528, -0.039456065744161606, -0.01097486075013876, -0.024972904473543167, -0.010651449672877789, -0.01646580547094345, -0.028825705870985985, -0.03610946983098984, -0.0006837316905148327, -0.02682899869978428, 0.015579942613840103, -0.01745009794831276, 0.03248164802789688, -0.019348377361893654, 0.013773063197731972, 0.026041565462946892, 0.012134918943047523, -0.022512173280119896, -0.0018402752466499805, 0.009646065533161163, 0.01032100897282362, -0.014426914043724537, 0.022034088149666786, 0.003666489152237773, -0.0081696268171072, -0.019320253282785416, -0.03954043239355087, -0.019995197653770447, 0.035968855023384094, 0.0009280471131205559, 0.03802181035280228, -0.0018350023310631514, -0.006004183553159237, 0.01209273561835289, -0.015959598124027252, 0.022357499226927757, 0.00923828687518835, 0.0144550371915102, -0.0015757466899231076, -0.001174120232462883, 0.006897077430039644, -0.029275668784976006, 0.017506344243884087, -0.012451298534870148, 0.04786473512649536, -0.013899615034461021, -0.014680018648505211, -0.055148497223854065, -0.03175045922398567, -0.08914876729249954, 0.0028351135551929474, 0.0289100743830204, 0.04218396171927452, -0.015650250017642975, 0.03869675472378731, -0.007902462035417557, 0.006074490491300821, -0.013562142848968506, 0.02469167858362198, -0.035715751349925995, 0.01739385351538658, 0.010384284891188145, -0.013780093751847744, -0.0372062511742115, 0.01782975345849991, -0.0013463713694363832, -0.03813429921865463, 0.024396389722824097, -0.023243362084031105, -0.00020191176736261696, -0.06524452567100525, 0.007494683843106031, 0.03582824394106865, 0.016929829493165016, -0.005888178013265133, -0.02157006412744522, 0.01860312558710575, 0.014890938065946102, -0.03481582924723625, -0.018096918240189552, 0.011755263432860374, 0.01681733876466751, 0.03085053712129593, -0.006408446468412876, -0.003905531717464328, -0.023777691647410393, -0.03298785537481308, 0.0037367958575487137, -0.05250496789813042, 0.02367926388978958, 0.023819876834750175, -0.004977707285434008, -0.00035680600558407605, 0.008746140636503696, -0.011600589379668236, 0.008183687925338745, -0.02919130027294159, -0.01263409573584795, 0.034984562546014786, 0.0028737823013216257, -0.012057581916451454, -0.015650250017642975, -0.05596405267715454, -0.013280916959047318, 0.05888880789279938, 0.0379655659198761, 0.01183963194489479, 0.0407215841114521, 0.05410796031355858, 0.032622262835502625, 0.00418675784021616, 0.0006498966249637306, 0.04010288417339325, 0.015959598124027252, 0.016156457364559174, 0.042352695018053055, -0.03700939565896988, -0.0020845907274633646, 0.02227313071489334, -0.0016952678561210632, 0.0009192588040605187, -0.0132598252967, 0.014553465880453587, 0.0020881060045212507, 0.019137457013130188, 0.040918439626693726, 0.054164204746484756, 0.025985319167375565, 0.024522941559553146, 0.004615628160536289, -0.03990602493286133, -0.005353847518563271, -0.0055260988883674145, 0.006032306235283613, 0.009329685941338539, 0.026111871004104614, -0.03321283683180809, -0.022610602900385857, -0.0204873438924551, -0.018293777480721474, 0.02765861712396145, -0.032594140619039536, 0.039231084287166595, -0.04370258376002312, -0.03107551671564579, 0.055148497223854065, 0.01971396990120411, 0.08273680508136749, -0.021738801151514053, -0.007009568158537149, -0.008914876729249954, -0.020951366052031517, -0.028221068903803825, 0.06569448858499527, 0.019601481035351753, -0.025057272985577583, 0.018139103427529335, -0.034056518226861954, -0.01252160593867302, -0.025183824822306633, 0.05787639319896698, -0.014750325120985508, -0.017590710893273354, 0.002527522388845682, 0.010862370021641254, -0.018645310774445534, 0.049214620143175125, 0.030400574207305908, -0.02230125293135643, 0.02109198085963726, 0.007536867633461952, 0.02441045083105564, 0.0049530998803675175, -0.022455928847193718, -0.0024572156835347414, -0.03956855461001396, -0.0022410228848457336, -0.006250256672501564, 0.050170790404081345, -0.0028702670242637396, -0.024101102724671364, 0.0286569707095623, -0.04170587658882141, -0.05827011168003082, 0.03346594050526619, -0.023693324998021126, 0.03599698096513748, -0.05748267471790314, -0.025535358116030693, 0.03228479251265526, -0.05166129022836685, -0.03532203659415245, 0.0002862796827685088, -0.05115508288145065, 0.055879686027765274, 0.023777691647410393, 0.035940732806921005, -0.01563618704676628, 0.03397214785218239, 0.03681253641843796, -0.03408464044332504, -0.019348377361893654, -0.05168941244482994, 0.015369023196399212, 0.025211947038769722, 0.005940907634794712, 0.032144177705049515, -0.018068796023726463, 0.01747822016477585, -0.02089512161910534, 0.005248387809842825, 0.06552575528621674, 0.01183963194489479, 0.018940597772598267, 0.028150763362646103, 0.010264763608574867, -0.022315315902233124, 0.013309039175510406, -0.02823513001203537, 0.019967075437307358, 0.061757318675518036, -0.01729542389512062, -0.043983809649944305, 0.005272995214909315, -0.06001371517777443, -0.0005756352911703289, -0.006921684835106134, -0.01065848022699356, 0.008837539702653885, -0.021331023424863815, 0.031019272282719612, 0.060351185500621796, -0.0209935512393713, 0.007635296788066626, -0.02491666004061699, -0.03537828102707863, -0.011551374569535255, -0.0550641305744648, 0.010904553346335888, 0.013681664131581783, 0.04389944300055504, 0.04086219519376755, -0.026561833918094635, 0.01933431439101696, 0.013534020632505417, 0.020571710541844368, -0.004541806410998106, 0.008401638828217983, -0.024101102724671364, -0.04718979075551033, -0.03408464044332504, -0.012008367106318474, -0.016086149960756302, 0.0002414592308923602, -0.050198912620544434, -0.01825159415602684, -0.015945537015795708, -0.015734616667032242, -0.008148535154759884, -0.05270182713866234, 0.013843369670212269, -0.007347039878368378, -0.03487207368016243, 0.009069551713764668, -0.025704093277454376, -0.05621715635061264, -0.05458604544401169, 0.04457438364624977, 0.006151827517896891, 0.03844364732503891, 0.02848823368549347, 0.054923515766859055, -0.0061658890917897224, -0.01415271870791912, 0.017211055383086205, -0.022540295496582985, -0.0035416949540376663, 0.047583505511283875, 0.008218841627240181, -0.034028396010398865, 0.01691576838493347, 0.009800740517675877, 0.014426914043724537, 0.022863706573843956, 0.02644934318959713, 0.022793399170041084, 0.0015924444887787104, 0.031159885227680206, 0.0057827178388834, 0.001186423934996128, -0.0017831511795520782, -0.014919060282409191, -0.00660530524328351, 0.014848753809928894, -0.01380118541419506, -0.0419871024787426, -0.02581658400595188, 0.028642909601330757, 0.014890938065946102, -0.007382193114608526, 0.00550500676035881, 0.04772412031888962, 0.00471405778080225, 0.002183019882068038, -0.009357808157801628, -0.014469098299741745, 0.004366039764136076, 0.0025204916018992662, -0.024677617475390434, -0.031637970358133316, -0.008710987865924835, 0.023665200918912888, -0.020684201270341873, 0.004281672183424234, 0.022821523249149323, 0.011600589379668236, 0.04387131705880165, -0.02166849374771118, -0.017056381329894066, 0.013252793811261654, 0.0012540939496830106, -0.0024484272580593824, 0.023594895377755165, 0.008612558245658875, 0.007466561160981655, -0.0007962222443893552, -0.02559160254895687, 0.02079669199883938, 0.009160949848592281, -0.006999021861702204, 0.011495129205286503, -0.026885243132710457, -0.017281362786889076, 0.0347033366560936, -0.0025626756250858307, -0.008528190664947033, 0.044433772563934326, -0.01920776255428791, 0.02725083753466606, -0.021359145641326904, -0.009610911831259727, -0.07295013219118118, -0.021738801151514053, -0.016901707276701927, -0.025071334093809128, -0.00966715719550848, 0.019404621794819832, -0.025802522897720337, -0.0204873438924551, -0.014005075208842754, -0.02086699940264225, -0.037796828895807266, 0.020051442086696625, 0.0017084503779187799, -0.015031551010906696, -0.03506893292069435, -0.006397900637239218, 0.01953117363154888, 0.0017453613691031933, 0.008478975854814053, 0.026393096894025803, 0.026379035785794258, 0.006007698830217123, 0.0228777676820755, 0.02574627660214901, 0.04634610936045647, 0.006411961745470762, -0.0035030264407396317, 0.04167775437235832, 0.0034133854787796736, -0.00813447404652834, -0.026533711701631546, 0.023426158353686333, -0.03107551671564579, -0.01943274401128292, 0.043561968952417374, -0.020951366052031517, -0.007649358361959457, 0.004126997664570808, -0.017843814566731453, 0.054220449179410934, 0.027672678232192993, 0.02214657887816429, -0.004460953641682863, -0.036671921610832214, -0.03599698096513748, -0.0064576612785458565, 0.019854584708809853, -0.044433772563934326, 0.027447696775197983, -0.033803414553403854, 0.012718464247882366, -0.03276287764310837, 0.00640493119135499, 0.026688385754823685, 0.016283009201288223, 0.021682554855942726, 0.01875780150294304, -0.01930619217455387, 0.04204334691166878, 0.026885243132710457, 0.008957060985267162, 0.014244116842746735, -0.0027560186572372913, 0.017661018297076225, -0.0135129289701581, 0.03678441420197487, 0.06096988543868065, -0.05081761255860329, 0.006250256672501564, -0.044968102127313614, 0.007396254222840071, 0.011277178302407265, -0.009575759060680866, -0.02919130027294159, 0.03439398854970932, 0.020234240218997, -0.0024695193860679865, -0.007733725942671299, 0.025985319167375565, -0.003778979880735278, -0.031412988901138306, -0.026463404297828674, -0.02058577351272106, 0.017309485003352165, 0.033184714615345, -0.037121884524822235, -0.030541187152266502, 0.004200819414108992, -0.010686603374779224, -0.0721626952290535, -0.030259961262345314, -0.019067149609327316, -0.005378454923629761, -0.0034889650996774435, -0.031441111117601395, 0.017689140513539314, -0.03321283683180809, -0.03526579216122627, -0.0044011930003762245, -0.026013441383838654, 0.002205869648605585, -0.00046885714982636273, 0.0007131726015359163, -0.015425268560647964, 0.015383084304630756, -0.028347620740532875, 0.010264763608574867, -0.040918439626693726, -0.019924890249967575, -0.03295973315834999, -0.03549077361822128, 0.0270258579403162, -0.013027813285589218, 0.02788359858095646, 0.03726249933242798, 0.014567527920007706, -0.03160984814167023, 0.04108717665076256, 0.016184579581022263, 0.001889489940367639, -0.0021601703483611345, 0.04024349898099899, -0.02300431951880455, -0.02114822529256344, 0.017618834972381592, -0.042999517172575, -0.005765141453593969, -0.029585016891360283, 0.00625377194955945, 0.0004631447372958064, 0.007111512590199709, -0.020951366052031517, -0.03279099985957146, 0.008626620285212994, 0.04243706539273262, 0.020627956837415695, -0.024607310071587563, 0.009062521159648895, 0.012816892936825752, 0.005642104893922806, -0.006587728392332792, 0.0043344018049538136, -0.02013581059873104, -0.011853693053126335, 0.0003820724377874285, 0.010995952412486076, 0.024902597069740295, -0.013794154860079288, 0.02878352254629135, -0.021738801151514053, 0.023060565814375877, 0.015467451885342598, 0.04322449862957001, -0.03504081070423126, -0.0037192192394286394, -0.004668358247727156, -0.034534603357315063, 0.0017787569668143988, -0.013702756725251675, -0.013077028095722198, -0.003225315362215042, 0.06305096298456192, -0.0018508213106542826, -0.005346816964447498, -0.003469630843028426, 0.027841413393616676, -0.005367909092456102, 0.011066258884966373, -0.012753617018461227, -0.031019272282719612, -0.04775224253535271, -0.02051546610891819, 0.008092289790511131, 0.02533849887549877, -0.006956838071346283, -0.022441867738962173, 0.0052167498506605625, -0.03447835519909859, -0.011769324541091919, -0.024016734212636948, -0.004098874982446432, 0.0070587825030088425, -0.004074267577379942, -0.01649392768740654, -0.0781809389591217, -0.029781876131892204, 0.02536662109196186, 0.0004543563991319388, -0.005969030316919088, -0.011825569905340672, 0.00955466739833355, 0.014665956608951092, 0.027475818991661072, -0.016311131417751312, 0.011783386580646038, -0.04485560953617096, -0.03326908499002457, -0.00864771194756031, -0.01290829200297594, 0.002114471048116684, 0.007825125008821487, 0.025957196950912476, 0.028375744819641113, 0.013477775268256664, -0.005322209559381008, 0.0031813737004995346, -0.028347620740532875, 0.061532337218523026, 0.02418547123670578, -0.024396389722824097, -0.02297619730234146, 0.0505363829433918, 0.034506481140851974, -0.005301117897033691, 0.0027718376368284225, 0.0033167139627039433, 0.0040426296181976795, 0.012620034627616405, -0.018335960805416107, 0.0267727542668581, -0.008493036963045597, -5.863460501132067e-06, -0.0004649024049285799, -0.016184579581022263, -0.04344948008656502, -0.04668358340859413, 0.0294162817299366, -0.022034088149666786, 0.039737291634082794, -0.026885243132710457, 0.0018508213106542826, 0.03838740289211273, -0.005104259122163057, 0.005821386352181435, 0.036615677177906036, 0.00023486798454541713, -0.007072844076901674, -0.007691542152315378, -0.024171410128474236, 0.011129534803330898, -0.035209544003009796, -0.028263254091143608, 0.0033465942833572626, 0.015748677775263786, -0.01041943859308958, 0.026013441383838654, 0.014595650136470795, -0.034281499683856964, -0.0277851689606905, -0.0017313000280410051, -0.002582009881734848, 0.021513819694519043, 0.012718464247882366, -0.014595650136470795, 0.029472526162862778, 0.049017760902643204, 0.03774058446288109, -0.00640493119135499, 0.0033272597938776016, -0.0067881024442613125, 0.003603213233873248, -0.01569243334233761, -0.020923243835568428, -0.021556003019213676, 0.0165923573076725, -0.019053088501095772, -0.03295973315834999, 0.011277178302407265, 0.018110981211066246, -0.01057411264628172, -0.014187872409820557, 0.02041703648865223, 0.006327594164758921, 0.020402975380420685, 0.02635091356933117, -0.016029905527830124, 0.01850469782948494, 0.017407914623618126, 0.01308405864983797, 0.022638725116848946, 0.01923588663339615, 0.0037754643708467484, 0.016325192525982857, -0.0006165010272525251, 0.015537758357822895, -0.0046824198216199875, 0.016986073926091194, 0.014975305646657944, 0.011720110662281513, 0.0017181175062432885, 0.018589064478874207, 0.009913230314850807, 0.0034784190356731415, -0.010517867282032967, -0.013006720691919327, -0.016437683254480362, 0.037374988198280334, 0.02569003216922283, -0.0007979799411259592, 0.0004277717089280486, 0.01965772546827793, -0.026280608028173447, 0.004724603611975908, -0.04077782854437828, 0.02220282517373562, -0.017112625762820244, -0.01978427730500698, 0.038528017699718475, -0.021359145641326904, 0.011593558825552464, 0.038556139916181564, -0.01009602751582861, -0.004900370258837938, -0.001053720130585134, 0.002295510610565543, 0.04693668708205223, 0.018673432990908623, 0.047302279621362686, 0.00834539346396923, -0.02102167345583439, 0.00869692675769329, -0.031637970358133316, 0.020206116139888763, 0.044236913323402405, 0.011431853286921978, -0.016072088852524757, 0.018293777480721474, -0.004408224020153284, 0.014412852935492992, -0.003979353699833155, 0.017632896080613136, 0.010742848739027977, -0.0379655659198761, 0.031131763011217117, 0.019024966284632683, -0.035237669944763184, 0.008964091539382935, 0.05616091191768646, -2.2190521121956408e-05, 0.06321969628334045, -0.05995747074484825, -0.03009122423827648, -0.03608134761452675, -0.009835893288254738, 0.021513819694519043, 0.03625008463859558, 0.0427464134991169, 0.015509636141359806, 0.005744049325585365, -0.01298562902957201, -0.03484395146369934, 0.0003447220369707793, 0.025226008147001266, 0.021865352988243103, -0.005051529034972191, -0.003817648394033313, 0.0233839750289917, 0.020332667976617813, 0.07559365779161453, 0.03931545093655586, 0.0036700046621263027, -0.0028685093857347965, 0.017028259113430977, 0.016311131417751312, -0.0384717732667923, -0.004534775856882334, 0.007986829616129398, 0.03813429921865463, 0.036446940153837204, -0.04128403589129448, -0.03866862878203392, 0.00163287075702101, -0.02587282843887806, 0.013674633577466011, 0.012338808737695217, 0.006802163552492857, -0.0003642760857474059, -0.0032534380443394184, 0.006267833523452282, 0.00496013043448329, 0.02836168184876442, 0.002824567724019289, -0.0267727542668581, 0.04269016906619072, -0.0037754643708467484, 0.02083887718617916, 0.008141504600644112, -0.015228409320116043, 0.0054593076929450035, 0.030738046392798424, -0.021415390074253082, 0.013983982615172863, -0.013140304014086723, 0.010060874745249748, 0.012591912411153316, -0.005940907634794712, 0.011586527340114117, 0.004295733291655779, 0.0036700046621263027, 0.018996844068169594, 0.019517112523317337, 0.00795870739966631, -0.011347485706210136, -0.018870292231440544, -0.010131181217730045, -0.03301598131656647, -0.02855854108929634, 0.0347033366560936, -0.018448451533913612, 0.03939981758594513, -0.00296693854033947, -0.004559383261948824, -0.01754852756857872, 0.020473282784223557, 0.012830954976379871, 0.033100347965955734, -0.0037157037295401096, -0.01860312558710575, 0.03911859169602394, 0.032397281378507614, 0.0015775043284520507, 0.008640681393444538, -0.0011996063403785229, 0.030400574207305908, -0.007160727400332689, 0.012725494801998138, 0.018743740394711494, -0.00992026086896658, -0.00441173929721117, -0.004805455915629864, 0.052786193788051605, 0.015579942613840103, 0.020754508674144745, -0.007375162560492754, 0.013266855850815773, 0.016409561038017273, 0.004903885535895824, 0.006120189558714628, 0.016198640689253807, 0.013470744714140892, 0.01649392768740654, 0.00941405352205038, 0.01840626820921898, -0.009196103550493717, -0.017857875674962997, 0.023299606516957283, -0.024368267506361008, -0.005719441920518875, -0.006949807517230511, 0.00048467612941749394, -0.006179950200021267, -0.001124026719480753, 0.014919060282409191, 0.008232902735471725, -0.026660263538360596, 0.038078054785728455, 0.010306947864592075, 0.009132827632129192, 0.010939707048237324, 0.05838260054588318, -0.04955209046602249, 0.013787124305963516, 0.00036603372427634895, -0.02242780476808548, -0.024958843365311623, 0.010201487690210342, 0.003778979880735278, -0.0015871714567765594, 0.04027162119746208, -0.01381524745374918, 0.009048459120094776, -0.01338637713342905, 0.03152548149228096, -0.03647506609559059, -0.0027876566164195538, 0.03625008463859558, -0.02644934318959713, 0.027616431936621666, -0.03464709222316742, 0.017984427511692047, 0.006886531598865986, 0.02194972150027752, -0.002529280027374625, -0.023088688030838966, 0.012163042090833187, -0.012746586464345455, 0.017857875674962997, 0.02067014016211033, 0.03819054365158081, 0.027166470885276794, -0.004380101338028908, -0.004046144895255566, -0.018771862611174583, 0.013393407687544823, -0.007473591715097427, -0.0032446496188640594, 0.015397145412862301, 0.06243226304650307, 0.004728118889033794, 0.00610964372754097, 0.017239177599549294, 0.054923515766859055, 0.02434014528989792, 0.04131215810775757, 0.007579051423817873, 0.010306947864592075, 0.01850469782948494, 0.03633445128798485, 0.004450407810509205, 0.00955466739833355, 0.01646580547094345, -0.0021443513687700033, -0.02121853269636631, 0.02609780989587307, 0.00039547463529743254, 0.004970676731318235, 0.006918169558048248, 0.02893819659948349, -0.050198912620544434, 0.01126311719417572, 0.020079564303159714, 0.011481068097054958, 0.004956615157425404, 0.00406020600348711, 0.020206116139888763, 0.00869692675769329, -0.023313669487833977, -0.002205869648605585, 0.0025644332636147738, -0.016254885122179985, 0.03082241304218769, 0.01965772546827793, 0.006345170550048351, 0.031131763011217117, 0.07469373196363449, 0.025802522897720337, -0.005691319238394499, 0.03754372522234917, -0.0008529069600626826, -0.003276287578046322, -0.012528636492788792, 0.0025978288613259792, 0.0010168092558160424, 0.023693324998021126, -0.03909046947956085, 0.007888400927186012, -0.015214348211884499, 0.018040673807263374, 0.019503051415085793, 0.007902462035417557, -0.002508187899366021, 0.02131696045398712, 0.02964126318693161, 0.005023406818509102, 0.03315659239888191, 0.026336852461099625, -0.011234994977712631, -0.015383084304630756, -0.02913505584001541, -0.018307838588953018, 0.005856539588421583, -0.015776801854372025, -0.0021513819228857756, 0.023623017594218254, 0.00966715719550848, -0.04204334691166878, 0.012359900400042534, 0.05143630877137184, 0.009350777603685856, 0.0013964648824185133, -0.017506344243884087, 0.02265278622508049, 0.01362541876733303, 0.0020547104068100452, -0.017492281273007393, -0.0382186695933342, -0.02280746027827263, -0.011199841275811195, -0.016311131417751312, 0.024607310071587563, 0.0006327594164758921, -0.02660401724278927, 0.00013336283154785633, -0.03155360370874405, -0.04128403589129448, -0.011256086640059948, 0.005118320696055889, -0.015270593576133251, -0.001017688075080514, 0.006401415914297104, 0.05177377909421921, 0.01024367194622755, 0.024269837886095047, 0.0226246640086174, -0.03928732872009277, -0.0036946118343621492, -0.03954043239355087, -0.009048459120094776, -0.03194731846451759, -0.03295973315834999, 0.027700800448656082, -0.008767233230173588, 0.014848753809928894, -0.03110364079475403, -0.0033184716012328863, 0.016058027744293213, -0.0056139822117984295, 0.04055284708738327, 0.04359009116888046, 0.014173810370266438, 0.014553465880453587, 0.027644556015729904, 0.02961314097046852, -0.04581177979707718, -0.020276423543691635, 0.024508880451321602, -0.030541187152266502, 0.028797583654522896, -0.01774538680911064, -0.007684511598199606, -0.009139858186244965, -0.005048013757914305, -0.0086758341640234, 0.023524587973952293, -0.0027648070827126503, 0.0021636856254190207, 0.020093627274036407, 0.013829308561980724, -0.009245318360626698, -0.010391315445303917, -0.04485560953617096, -0.00528705632314086, 0.022188762202858925, -0.02670244686305523, 0.007572020869702101, 0.006151827517896891, -0.009090643376111984, 0.036896903067827225, 0.028474172577261925, -0.005188627168536186, -0.02220282517373562, -0.03138486668467522, -0.019292131066322327, -0.007628266233950853, -0.020571710541844368, 0.030428696423768997, 0.031862951815128326, 0.003701642621308565, 0.010560051538050175, 0.04389944300055504, 0.01049677561968565, 0.007677480578422546, -0.0277851689606905, -0.008992213755846024, 0.022962136194109917, 0.01174120232462883, -0.01001869048923254, 0.014665956608951092, 0.00783215556293726, 0.017281362786889076, 0.026266545057296753, -0.014377700164914131, -0.014904999174177647, 0.0042640953324735165, 0.003360655391588807, -0.01359026599675417, 0.02443857491016388, -0.008253995329141617, 0.014680018648505211, 0.015129980631172657, -0.010053844191133976, -0.013913676142692566, 0.04195898026227951, -0.005227295681834221, -0.043505724519491196, 0.03397214785218239, -0.02989436686038971, -0.014440976083278656, 0.024227654561400414, -0.006485783960670233, 0.03385965898633003, 0.0070798746310174465, 0.028727276250720024, -0.011474037542939186, -0.034759584814310074, 0.0003576848248485476, 0.04693668708205223, 0.017970366403460503, 0.003109309356659651, -0.027321144938468933, 0.016353314742445946, -0.003986384253948927, -0.011945091187953949, -0.012247409671545029, -0.015945537015795708, 0.0012848530896008015, -0.003371201455593109, -0.029022565111517906, 0.017970366403460503, -0.0329316109418869, 0.0009377142996527255, -0.02086699940264225, 0.0007224003202281892, 0.018307838588953018, -0.005621012765914202, -0.0001806000800570473, -0.012240379117429256, -0.006763495039194822, -0.00045962940203025937, -0.0007650236948393285, -0.02232937701046467, 0.021612249314785004, -0.02303244173526764, 0.016550173982977867, 0.01598772034049034, -0.012718464247882366, 0.0048406096175313, 0.04561492055654526, 0.0063908700831234455, -0.005940907634794712, -0.012303655035793781, 0.003283318132162094, 0.009139858186244965, 0.002140836091712117, -0.0086758341640234, -0.005079651717096567, -0.012317716144025326, 0.034731458872556686, 0.02031860686838627, 0.017604772001504898, 0.02516976371407509, 0.018420329317450523, -0.042605798691511154, 0.010110089555382729, -0.026210300624370575, -0.0015168648678809404, -0.011902907863259315, -0.005965515039861202, -0.002812264021486044, 0.02428389899432659, -0.03894985839724541, 0.009582789614796638, 0.010714725591242313, 0.010131181217730045, 0.01694389060139656, -0.0046648429706692696, -0.02622436173260212, 0.03270662948489189, 0.014412852935492992, -0.03582824394106865, -0.01563618704676628, 0.053264278918504715, 0.0027876566164195538, -0.042802657932043076, 0.013583235442638397, -0.007789971306920052, 0.008964091539382935, -0.012901261448860168, 0.0015537758590653539, 0.01415271870791912, 0.030738046392798424, -0.009744495153427124, 0.009660126641392708, -0.004699996206909418, -0.019264008849859238, -0.01186775416135788, 0.006784587167203426, 0.0231308713555336, -0.009343747049570084, -0.01054599042981863, -0.0015335626667365432, -0.026364974677562714, 0.02740551345050335, -0.022793399170041084, 0.0005888177547603846, -0.019123395904898643, 0.0042851874604821205, 0.006717795506119728, 0.025001026690006256, 0.022709032520651817, 0.029978735372424126, -0.0081696268171072, -0.003926623612642288, -0.0035416949540376663, -0.016676725819706917, 0.007100966759026051, 0.006577182561159134, -0.011720110662281513, -0.04131215810775757, 0.015073735266923904, 0.00869692675769329, -0.015298716723918915, 0.014237086288630962, 0.0132598252967, -0.031131763011217117, -0.015833046287298203, 0.029809998348355293, -0.02159818820655346, -0.002748988103121519, 0.0027718376368284225, 0.006840832065790892, -0.03225666657090187, -0.023313669487833977, 0.04156526178121567, -0.011952121742069721, 0.014722201973199844, 0.017970366403460503, 0.02038891427218914, 0.001278701238334179, -0.012788770720362663, 0.003054821863770485, 0.014131627045571804, -0.007157212123274803, -0.00610964372754097, 0.01691576838493347, -0.018659371882677078, -0.03726249933242798, -0.039709169417619705, -0.009561697952449322, 0.03456272557377815, -0.003599697956815362, 0.0015344416024163365, -0.020234240218997, 0.017661018297076225, 0.008837539702653885, 0.01448315940797329, -0.0018086372874677181, 0.007972768507897854, -0.006042852532118559, 0.003603213233873248, 0.008268056437373161, 0.025310376659035683, 0.0017014197073876858, -0.0265196505934, 0.008148535154759884, 0.003448538715019822, -0.009407022967934608, -0.008289148099720478, 0.022441867738962173, 0.010932676494121552, -0.012071643024682999, 0.01375197060406208, -0.00992026086896658, 0.0013446137309074402, 0.01483469270169735, -0.0049741920083761215, 0.0019176125060766935, -0.020599834620952606, -0.0033483519218862057, -0.011066258884966373, 0.0011925756698474288, 0.046121131628751755, -0.017984427511692047, -0.00025683880085125566, 0.00859849713742733, -0.011052197776734829, 0.001239153789356351, -0.015945537015795708, 0.07570614665746689, 0.016929829493165016, 0.010939707048237324, -2.6927977160084993e-05, 0.006359232123941183, -0.02488853596150875, 0.01591741479933262, -0.005800294689834118, 0.03602510318160057, -0.0144550371915102, 0.03439398854970932, 0.005294086877256632, 0.022216886281967163, 0.01671890914440155, -0.0006907623610459268, -0.013470744714140892, -0.0106233274564147, 0.03014747053384781, -0.036896903067827225, 0.006506876088678837, -0.008050105534493923, 0.045671168714761734, -0.01815316453576088, 0.029022565111517906, -0.0004974192124791443, -0.018799984827637672, -0.013245763257145882, 0.028052333742380142, -0.004608597606420517, -0.007104482036083937, -0.009392961859703064, 0.024846352636814117, 0.035462647676467896, 0.0007632660563103855, -0.031188007444143295, -0.006000668276101351, 0.045896150171756744, 0.0023025411646813154, 0.01458158902823925, 0.011797447688877583, -0.015748677775263786, -0.002089863643050194, 0.037599969655275345, 0.007811063434928656, -0.021204471588134766, -0.03551889583468437, -0.011579496785998344, -0.008310239762067795, 0.007937614805996418, -0.021612249314785004, -0.0065244524739682674, -0.05264558270573616, 0.026055626571178436, 0.012795801274478436, -0.014363638125360012, 0.014469098299741745, 0.006939261686056852, 0.018448451533913612, 0.03838740289211273, 0.00941405352205038, 0.03430962190032005, 0.008197749964892864, 0.016353314742445946, 0.033522188663482666, -0.0011899392120540142]" -How NLP Cloud Monitors Their Language AI API,"This is an installment of our “Community Member Spotlight” series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition, Julien Salinas, full-stack developer, founder, and chief technology officer (CTO) at NLP Cloud, talks about how his team is building an advanced API to perform natural language processing (NLP) tasks while taking care of the complexity of AI infrastructures for developers.About the CompanyNLP Cloudis an advanced API for text understanding and generation in production. The most recent AI models are easy to use on NLP Cloud (GPT-NeoX 20B, GPT-J, Bart Large, among others). Thanks to the API, you can perform all kinds of natural processing language processing tasks: text summarization, paraphrasing, automatic blog post generation, text classification, intent detection, entity extraction, chatbots, question answering, and much more!Several API clients are available, so you can easily add language AI to your application in Python, Go, JavaScript, Ruby, and PHP. You can also train or fine-tune your own AI model on NLP Cloud or deploy your in-house models.Today, more than 20,000 developers and data scientists use NLP Cloud successfully in production! They love NLP Cloud because they don’t want to deal with MLOps (DevOps for machine learning) by themselves. NLP Cloud takes care of the complex infrastructure challenges related to AI (GPU reliability, redundancy, high availability, scaling, etc.).About the TeamMy name is Julien Salinas, and I’m a full-stack developer, founder, and CTO of NLP Cloud. Our company has a team of six high-level engineers skilled in NLP, DevOps, and low-level optimization for machine learning.The team works hard to provision state-of-the-art NLP models like GPT-NeoX (equivalent to OpenAI’s GPT-3) and make sure that these models run reliably in production and at an affordable cost.About the ProjectA summarization task performed by the NLP Cloud APIWe realized we needed a time-series database when our users asked us for a pay-as-you-go planfor GPT-J, one of our open-source NLP models. They wanted to be charged based on the number of words they’re generating, the same way OpenAI does with their GPT-3 API. Our users also wanted to monitor their usage through their NLP Cloud dashboard.So, we started implementing TimescaleDB to log the following:The number of API calls per user and API endpointThe",https://www.timescale.com/blog/how-nlp-cloud-monitors-their-language-ai-api/,536,"[-0.018542101606726646, 0.0019114685710519552, 0.03675505518913269, -0.017719227820634842, 0.0439140610396862, -0.040512848645448685, -0.038181371986866, 0.06319674849510193, -0.008880185894668102, -0.01784265972673893, 0.011287093162536621, -0.021888457238674164, -0.05483086034655571, -0.010916800238192081, -0.013735144399106503, 0.012528262101113796, 0.012912270613014698, -0.03968997299671173, -0.020585574209690094, 0.018281525000929832, 0.021079298108816147, 0.029897768050432205, -0.00920247845351696, 0.02811487391591072, -0.008221886120736599, -0.03360070288181305, -0.04177458956837654, 0.05417256057262421, -0.0027634864673018456, -0.06615909934043884, 0.017760371789336205, -0.03425900265574455, -0.053678836673498154, 0.05085363611578941, 0.029842909425497055, -0.021669024601578712, 0.028498882427811623, -0.007083576638251543, 0.015319177880883217, 0.01180138997733593, -0.02077757753431797, -0.014921454712748528, 0.016169480979442596, 0.047178130596876144, -0.04218602553009987, 0.019296403974294662, -0.012274542823433876, -0.010944228619337082, 0.014990027993917465, 0.030364064499735832, -0.05258167162537575, 0.0333264134824276, -0.02197074517607689, -0.052087947726249695, -0.010121354833245277, -0.01005278155207634, -0.005424113478511572, 0.03749564290046692, -0.017129501327872276, -0.03461557999253273, -0.009209335781633854, -0.07663702964782715, 0.02704513818025589, 0.047178130596876144, -0.038592807948589325, -0.002554339123889804, 0.0024446225725114346, 0.010045924223959446, -0.019913559779524803, -0.0025149097200483084, 0.03711163252592087, 0.024082789197564125, -0.0196392685174942, -0.018487244844436646, 0.007481299340724945, -0.02135358937084675, -0.025536535307765007, 0.07191921770572662, 0.004676669370383024, -0.053733695298433304, 0.0019903273787349463, 0.014935169368982315, -0.0005841550882905722, -0.017540939152240753, 0.024357080459594727, -0.042542602866888046, -0.051758795976638794, 0.0008494463399983943, -0.051402218639850616, 0.025618821382522583, -0.025646250694990158, 0.02998005598783493, -0.019611839205026627, 0.0392785370349884, 0.05258167162537575, 0.025207385420799255, 0.03878481313586235, 0.04747984930872917, 0.0476718544960022, 0.026907991617918015, -0.012576263397932053, -0.007645874284207821, 0.0171020720154047, -0.032887544482946396, 0.017705513164401054, 0.014098580926656723, 0.031653232872486115, -0.0011665958445519209, -0.020969580858945847, -0.007220722734928131, -0.10329816490411758, 0.0068401433527469635, -0.02688056230545044, -0.01807580702006817, -0.02630455046892166, -0.021079298108816147, 0.005684690549969673, 0.019570695236325264, -0.017870089039206505, -0.022944480180740356, -0.022834762930870056, 0.0002708628016989678, 0.002910918090492487, -0.014523732475936413, 0.004566952586174011, -0.06445848941802979, 0.012253970839083195, -0.03412185609340668, -0.014647163450717926, -0.025947971269488335, 0.02568739466369152, -0.0016268912004306912, 0.048631876707077026, -0.04569695517420769, -0.04273460805416107, -0.027127424255013466, -0.01896725408732891, -0.01852838695049286, -0.0012651693541556597, -0.02371249534189701, 0.014976313337683678, -0.012925985269248486, 0.00539325550198555, 0.011650529690086842, -0.035603031516075134, -0.023630209267139435, -0.030693214386701584, -0.016128337010741234, -0.042268313467502594, 0.009641344659030437, -0.008420747704803944, -0.020242709666490555, -0.05798521265387535, -0.004704098682850599, 0.01084136962890625, -0.009003616869449615, 0.021929601207375526, 0.06456820666790009, -0.014852882362902164, -0.05483086034655571, 0.009415053762495518, 0.0428168959915638, -0.012802553363144398, -0.01549746748059988, -0.04775414243340492, 0.02630455046892166, -0.02101072482764721, -0.038647666573524475, -0.05908237770199776, -0.017774086445569992, -0.0340944267809391, -0.050167907029390335, -0.025221100077033043, 0.06012468785047531, 0.03302469104528427, -0.05345940589904785, 0.016951212659478188, -0.03467043861746788, -0.013076845556497574, -0.026921706274151802, -0.04934503138065338, 0.020530715584754944, -0.0687374398112297, -0.009380768053233624, -0.04331061989068985, -0.01632034219801426, -0.02912975288927555, 0.04506608471274376, -0.03173552080988884, 0.03258582577109337, -0.010827654972672462, 0.03642590343952179, 0.01029964443296194, 0.06204472854733467, 0.010333930142223835, -0.02726457081735134, 0.06506193429231644, 0.013200276531279087, 0.002461765892803669, 0.025728538632392883, 0.02737428806722164, 0.03719392046332359, 0.02338334731757641, -0.008873328566551208, 0.06111213564872742, 0.010093925520777702, 0.024933094158768654, -0.029431473463773727, -0.06434877216815948, -0.023273630067706108, 0.04443521425127983, 0.01970784179866314, 0.007117863278836012, 0.022094177082180977, -0.04534037783741951, -0.030802929773926735, -0.06429391354322433, 0.018487244844436646, 0.017993519082665443, -0.0026503412518650293, -0.00441952096298337, 0.03680991381406784, -0.00339435669593513, 0.014674592763185501, -0.013220848515629768, 0.016306627541780472, 0.050277624279260635, -0.023753639310598373, 0.06473278254270554, -0.0035417883191257715, 0.02992519736289978, -0.017143215984106064, -0.03143380209803581, -0.0216827392578125, 0.00841389037668705, -0.004306375980377197, 0.04001912474632263, -0.016526060178875923, -0.009380768053233624, 0.02400050312280655, -0.008784184232354164, 0.018734106793999672, 0.02885546162724495, 0.02959604747593403, 0.05439199507236481, -0.009785347618162632, -0.03439614921808243, -0.05590059980750084, 0.06462306529283524, 0.02874574437737465, 0.04399634897708893, -0.001416029641404748, 0.006853857543319464, -0.035822462290525436, -0.01191796362400055, -0.03255839645862579, -0.009730488993227482, 0.0339847095310688, -0.011856247670948505, 0.007015003822743893, 0.020338712260127068, -0.038291085511446, -0.05271881818771362, 0.018418671563267708, -0.007193293422460556, -0.012685979716479778, -0.0013294563395902514, 0.008941901847720146, 0.026386838406324387, -0.0018223238876089454, 0.0243845097720623, -0.0023486206773668528, 0.01162995770573616, -0.013357994146645069, -0.004326947499066591, -0.02670227363705635, 0.001681749476119876, -0.03184523805975914, -0.015662042424082756, -0.002914346754550934, -0.0215730220079422, -0.011307665146887302, 0.019172972068190575, 0.0068915728479623795, 0.01896725408732891, -0.012123682536184788, 0.026071403175592422, -0.0022783332969993353, -0.03845566138625145, -0.04923531785607338, 0.014839167706668377, 0.021216444671154022, 0.03094007633626461, 0.01959812454879284, -1.1571671166166198e-05, 0.010916800238192081, 0.03510930761694908, 0.031653232872486115, 0.013447138480842113, 0.02585197053849697, 0.005821836180984974, -0.03908653184771538, 0.018761536106467247, -0.033682990819215775, 0.0054481141269207, 0.04476436600089073, -0.024219935759902, -0.009250479750335217, 0.009517913684248924, -0.003884652629494667, 0.021751312538981438, 0.009161334484815598, 0.027072567492723465, -0.007618444971740246, -0.002496052300557494, -0.017924945801496506, 0.026743417605757713, -0.0392785370349884, -0.016059765592217445, -0.023589065298438072, -0.0166632067412138, -0.04295404255390167, -0.007090433966368437, 0.009668773971498013, -0.0219570305198431, 0.012157969176769257, 0.058533795177936554, -0.025947971269488335, 0.015936333686113358, -0.019570695236325264, 0.042158596217632294, -0.01885753683745861, 0.012541976757347584, -0.005790978204458952, -0.01677292212843895, -0.02005070447921753, 0.005204680375754833, 0.0016920354682952166, 0.02354792132973671, -0.0059315524995327, -0.04331061989068985, -0.04295404255390167, -0.05104564130306244, 0.016759207472205162, 0.039881978183984756, 0.012000251561403275, 0.010615079663693905, 0.015881475061178207, 0.0476718544960022, 0.03286011517047882, -0.014647163450717926, -0.011664244346320629, 0.03148866072297096, -0.015072314999997616, 0.010793368332087994, 0.012370544485747814, -0.006387562025338411, -0.012267685495316982, -0.028087444603443146, -0.02885546162724495, -0.06473278254270554, 0.014208297245204449, -0.0032692113891243935, 0.0169923547655344, -0.015566039830446243, 0.0166632067412138, -0.016018621623516083, 0.012925985269248486, -0.01180138997733593, -0.020681574940681458, 0.010121354833245277, -0.006390990689396858, 0.01992727443575859, 0.0026657700072973967, -0.0861823782324791, -0.011609385721385479, 0.015127173624932766, 0.0020966152660548687, -0.0265376977622509, 0.041418008506298065, 0.02336963266134262, 0.031762950122356415, -0.010402503423392773, -0.012946556322276592, -0.005886980332434177, 0.020955868065357208, 0.03801679611206055, -0.021298730745911598, -0.053623978048563004, 0.004714384209364653, 0.05617488920688629, -0.08963844925165176, 0.013549997471272945, 0.010731653310358524, 0.004686955362558365, 0.017033498734235764, 0.016018621623516083, 0.01920040138065815, 0.0531851127743721, -0.0028114872984588146, 0.026551412418484688, 0.023081626743078232, -0.03609675541520119, -0.010903085581958294, -0.0003034349356312305, -0.012637978419661522, 0.005605831742286682, 0.03132408484816551, -0.019104400649666786, -0.026839418336749077, 0.001289169886149466, -0.009017331525683403, 0.048138149082660675, -0.0009557342855259776, 0.011876819655299187, 0.003798936726525426, -0.012637978419661522, 0.0677499920129776, 0.038757383823394775, 0.05164908245205879, -0.0003700791858136654, -0.028334306553006172, -0.00653499411419034, -0.038318514823913574, -0.013289420865476131, 0.03104979358613491, 0.03886709734797478, -0.02405535988509655, -0.014811738394200802, -0.016690634191036224, 0.0011194519465789199, -0.025591392070055008, -0.0006887287017889321, -0.06621395796537399, -0.029157182201743126, -0.00720015075057745, 0.023534206673502922, 0.047178130596876144, 0.006915573496371508, 0.015154602937400341, 0.01564832776784897, -0.04506608471274376, -0.036563050001859665, -0.00321092433296144, -0.012013965286314487, -0.00022479041945189238, -0.02546796202659607, -0.04295404255390167, -0.008873328566551208, -0.024645086377859116, 0.01760951057076454, 0.0009685917175374925, 0.024631371721625328, 0.04026598483324051, -0.04613582417368889, -0.028553741052746773, 0.07230322808027267, -0.007248151581734419, 0.06396476924419403, -0.006483564153313637, -0.0016380342422053218, -0.008941901847720146, -0.04295404255390167, 0.012425403110682964, -0.013721429742872715, -0.036617908626794815, 0.0021257586777210236, -0.015771757811307907, 0.031543515622615814, -0.010834512300789356, 0.0219570305198431, 0.0015248890267685056, -0.005074392072856426, -0.05348683521151543, -0.053157683461904526, -0.017979804426431656, 0.020407283678650856, 0.005437828134745359, -0.03535616770386696, 0.020283853635191917, -0.013906576670706272, 0.027566291391849518, -0.01896725408732891, 0.028498882427811623, 0.02811487391591072, 0.025221100077033043, 0.0036686481907963753, 0.062483593821525574, -0.007666446268558502, 0.010183069854974747, 0.019844986498355865, 0.008098455145955086, 0.06703682988882065, -0.01544260885566473, -0.005948695819824934, -0.0193649772554636, -0.03275039792060852, -0.03787964954972267, -0.04015626758337021, -0.006589852273464203, -0.02128501608967781, -0.018158094957470894, -0.01143795344978571, 0.05963096395134926, -0.0391688197851181, -0.0267571322619915, 0.011417381465435028, 0.0009334480855613947, 0.005838979501277208, -0.01920040138065815, 0.010114497505128384, 0.024425653740763664, 0.018720392137765884, 0.020914724096655846, 0.013351136818528175, 0.02575596794486046, -0.013193419203162193, 0.009476769715547562, -0.008866471238434315, -0.012000251561403275, 0.02885546162724495, -0.010169356130063534, 0.0007945880643092096, -0.0007564444094896317, -0.0010268785990774632, -0.01597747765481472, -0.06813399493694305, -0.010580793023109436, 0.0018411814235150814, 0.009415053762495518, 0.04709584265947342, -0.0022080461494624615, -0.0005682976334355772, 0.01557975448668003, -0.07861193269491196, -0.006665282417088747, -0.010663080029189587, -0.058698371052742004, -0.060563553124666214, 0.004073228221386671, -0.02059928886592388, 0.056997764855623245, 0.0265376977622509, 0.03530130907893181, 0.005818407516926527, 0.00538982730358839, 0.014894026331603527, -0.02242332696914673, -0.02959604747593403, 0.047232989221811295, 0.03327155485749245, -0.02106558345258236, 0.045093514025211334, -0.01132137980312109, 0.022149035707116127, -0.000358721794327721, 0.018254095688462257, -0.022889621555805206, 0.016622062772512436, 0.021998174488544464, 0.011636815033853054, -0.032613255083560944, -0.0011837390484288335, 0.020654145628213882, -0.019611839205026627, 0.004464093595743179, 0.013399137184023857, -0.03140637278556824, -0.01563461311161518, 0.021531879901885986, -0.025893112644553185, 0.04128086566925049, -0.016800351440906525, 0.010505362413823605, 0.022574186325073242, -0.031077221035957336, -0.012733981013298035, -0.012459689751267433, -0.0026091975159943104, 0.04385920241475105, -0.03628876060247421, -0.01858324557542801, -0.009901921264827251, 0.020859865471720695, -0.029458902776241302, 0.011369381099939346, 0.00816017109900713, 0.011732816696166992, 0.021038154140114784, 0.02479594759643078, -0.002067471854388714, 0.002417193492874503, -0.010375074110925198, -0.005602403078228235, -0.020517000928521156, -0.003132065525278449, 0.047232989221811295, -0.03184523805975914, -0.03264068439602852, 0.0485495887696743, 0.00642184866592288, 0.004045798908919096, -0.0084961773827672, 0.006823000032454729, -0.013618570752441883, 0.007378440350294113, 0.017636939883232117, 0.0388396717607975, 0.021134156733751297, -0.04539523646235466, 0.012425403110682964, -0.026469124481081963, 0.006390990689396858, -0.056888047605752945, -0.0067818560637533665, 0.0024154791608452797, -0.0021566166542470455, -0.016690634191036224, 0.007885878905653954, -0.014222011901438236, -0.0060446979478001595, -0.04676669463515282, -0.02575596794486046, -0.0429266132414341, 0.008921329863369465, -0.025207385420799255, -0.0009840206475928426, -0.02320505678653717, -0.036563050001859665, 0.031077221035957336, -0.008153313770890236, 0.01992727443575859, 0.04078713804483414, -0.01840495690703392, -0.007597873453050852, 0.005256109870970249, 0.025152526795864105, 0.011389953084290028, 0.01586776040494442, -0.03595960885286331, 0.011355666443705559, 0.016868924722075462, -0.022848477587103844, -0.014372872188687325, 0.022601615637540817, 0.004124657716602087, -0.027250856161117554, 0.016868924722075462, 0.028142303228378296, -0.03442357853055, 0.00392579659819603, -0.03184523805975914, 0.04295404255390167, 0.01767808385193348, 0.013858575373888016, -0.016512345522642136, -0.032832685858011246, -0.009840206243097782, 0.014318013563752174, 0.02088729478418827, -0.07433298230171204, 0.0076870182529091835, -0.0022611902095377445, 0.02253304235637188, -0.025728538632392883, 5.3518975619226694e-05, 0.00812588445842266, 0.011122518219053745, 0.03908653184771538, 0.010635650716722012, -0.06758541613817215, 0.0429266132414341, 0.019323833286762238, 0.019721556454896927, 0.025166241452097893, 0.007213865406811237, 0.003795508062466979, -0.0429266132414341, 0.035027019679546356, 0.013385423459112644, -0.043667200952768326, 0.0131865618750453, -0.0237262099981308, -0.00985392089933157, 0.0070492904633283615, -0.007131577935069799, 0.006637853104621172, 0.017294075340032578, 0.030802929773926735, 0.0011297379387542605, -0.0019320404389873147, -0.0023023339454084635, -0.022889621555805206, -0.03612418472766876, 0.019515836611390114, -0.01374885905534029, -0.013419709168374538, 0.022766191512346268, -0.01874782145023346, -0.056888047605752945, -0.04311861842870712, -0.01369400043040514, -0.04421578347682953, -0.01349513977766037, -0.02202560380101204, 0.023534206673502922, -0.023534206673502922, -0.005187537055462599, 0.028142303228378296, 0.010080210864543915, -0.06177043542265892, 0.012644835747778416, 0.0001021628559101373, 0.011945392936468124, -0.013200276531279087, 0.0002982919686473906, -0.020420998334884644, 0.037358496338129044, -0.007495013996958733, -0.017650654539465904, -0.04682154953479767, 0.01762322522699833, 0.018267810344696045, -0.04311861842870712, 0.020640432834625244, -0.04032084345817566, -0.0025817682035267353, 0.022944480180740356, -0.0028560596983879805, -0.007501871325075626, 0.0018240382196381688, 0.003397785359993577, 0.018596960231661797, -0.029431473463773727, 0.014235726557672024, -0.02659255638718605, -0.031762950122356415, 0.005979553796350956, -0.08415261656045914, -0.026510268449783325, -0.019172972068190575, -0.025947971269488335, -0.007995596155524254, 0.020146707072854042, 0.00278748688288033, -0.03892195597290993, 0.02061300352215767, 0.035328738391399384, 0.04122600704431534, -0.017828945070505142, -0.03414928540587425, 0.012562548741698265, 8.941258420236409e-05, 0.008482463657855988, -0.020146707072854042, -0.007741876412183046, -0.005262967199087143, 0.0058321221731603146, 0.006147557403892279, 0.01284369733184576, -0.010628794319927692, 0.023451918736100197, -0.005417256150394678, 0.03228410333395004, 0.013433423824608326, 0.011712244711816311, 0.025481676682829857, 0.008324746042490005, 0.009538485668599606, -0.031186938285827637, -0.03228410333395004, -0.044572360813617706, 0.009298480115830898, 0.008023025467991829, 0.021655309945344925, -0.02467251569032669, 0.005708690732717514, 0.024288509041070938, 0.013652857393026352, 0.010752225294709206, 0.02755257673561573, -0.0011168805649504066, -0.0288006030023098, -0.055708594620227814, -0.006692711729556322, -0.011842533946037292, -0.025605106726288795, -0.0238359272480011, -0.05765606462955475, -0.02693542093038559, -0.012466547079384327, 0.029678335413336754, 0.005283539183437824, -0.017719227820634842, 0.008263030089437962, 0.02371249534189701, 0.005286967847496271, -0.07213865220546722, -0.01858324557542801, -0.000733301043510437, -0.02970576472580433, 0.0018446100875735283, -0.01315227523446083, 0.0005262967315502465, 0.026455411687493324, 0.029266897588968277, -0.01174653135240078, 0.05968581885099411, -0.042158596217632294, -0.01114994753152132, 0.021051868796348572, -0.016759207472205162, -0.011595671065151691, -0.003322355216369033, 0.005904123652726412, 0.025440532714128494, 0.019131828099489212, -0.01954326592385769, -0.01564832776784897, -0.003884652629494667, 0.04114371910691261, -0.011506526730954647, 0.0036206471268087626, 0.0033549272920936346, 0.02483709156513214, 0.016745492815971375, 0.017760371789336205, -0.0243845097720623, -0.0012317401124164462, -0.03242124989628792, 0.009449340403079987, -0.028142303228378296, 0.046382684260606766, 0.0001926468830788508, -0.029733194038271904, -0.0013826003996655345, -0.029047464951872826, -0.009133905172348022, -0.022053033113479614, 0.031762950122356415, -0.05472114682197571, 0.006377276498824358, -0.00976477563381195, 0.008516749367117882, -0.014276870526373386, -0.008386461064219475, 0.01380371768027544, 0.037632789462804794, 0.0005018676747567952, 0.012068823911249638, -0.009600200690329075, -0.006377276498824358, 0.00563326058909297, -0.05085363611578941, 0.019104400649666786, 0.002869774354621768, 0.023122768849134445, -0.01795237511396408, 0.006733855232596397, -0.01987241581082344, -0.003315497888252139, -0.034862443804740906, 0.02512509748339653, 0.015209461562335491, 0.03963511437177658, -0.017691798508167267, -0.034588150680065155, 0.0014786024112254381, 0.02094215340912342, 0.007776162587106228, -0.00880475528538227, 0.022162750363349915, -0.009929350577294827, 0.020928438752889633, 0.02777200937271118, 0.0015334606869146228, -0.0578206405043602, 0.02766229398548603, -0.016868924722075462, -0.03727620840072632, 0.030583497136831284, -0.014756880700588226, -0.028718315064907074, 0.01610090769827366, -0.009435625746846199, -0.008955615572631359, -0.01845981553196907, 0.056942906230688095, -0.010340787470340729, -0.03318926692008972, -0.015593469142913818, 0.00945619773119688, 0.013810575008392334, -0.0031406371854245663, 0.031982384622097015, 0.019831271842122078, -0.008708753623068333, 0.05622974783182144, 0.02827944979071617, -0.028046300634741783, 0.019803842529654503, -0.012829982675611973, -0.03428643196821213, -0.0011777388863265514, -0.01245283242315054, -0.021257588639855385, -0.004097228404134512, 0.015895189717411995, 0.013193419203162193, 0.009641344659030437, 0.03050120919942856, -0.017307789996266365, 0.03286011517047882, 0.028389165177941322, -0.023054197430610657, 0.013899719342589378, 0.0031817809212952852, 0.03996426612138748, 0.0029023464303463697, -0.02800515666604042, 0.02737428806722164, -0.017705513164401054, 0.024137647822499275, 0.020420998334884644, 0.00750872865319252, -0.008263030089437962, -0.02173759788274765, -0.016786636784672737, 0.009620772674679756, -0.013488282449543476, 0.028581170365214348, 0.007735019084066153, -0.021422162652015686, 0.0338749960064888, 0.000496296095661819, -0.005053820088505745, 0.008983044885098934, 0.017074642702937126, 0.025618821382522583, -0.00460123922675848, -0.007241294253617525, 0.008441319689154625, 0.0027257713954895735, -0.00032722114701755345, -0.006006982643157244, -0.020709004253149033, 0.05650404095649719, 0.02302676811814308, -0.0037886507343500853, -0.01525060459971428, 0.06160585954785347, -0.023136483505368233, 0.020023277029395103, -0.035136736929416656, -0.04246031865477562, -0.06028925999999046, 0.024823376908898354, -0.0027892012149095535, 0.03324412554502487, -0.005684690549969673, 0.032722972333431244, 0.022615330293774605, -0.02581082656979561, -0.028444023802876472, -0.0017708941595628858, -0.004824100993573666, 0.013961435295641422, -0.009949922561645508, -0.019570695236325264, 0.008173885755240917, -0.00453266641125083, 0.024151362478733063, -0.007844735868275166, 0.0392785370349884, 0.02297190949320793, -0.0002541481808293611, 0.030117202550172806, -0.02236846834421158, -0.021202730014920235, -0.024014217779040337, 0.04267974942922592, 0.02027013897895813, -0.02027013897895813, -0.009757918305695057, -0.0042343745008111, -0.003502358915284276, 0.031817808747291565, 0.024069074541330338, -0.03236639127135277, 0.027936585247516632, 0.033518414944410324, 0.005787549540400505, 0.011170519515872002, 0.035081878304481506, 0.02275247685611248, -0.053843412548303604, 0.01041621807962656, -0.022121606394648552, -0.001618319540284574, -0.027593720704317093, -0.02037985436618328, -0.017746657133102417, 0.028389165177941322, -0.01592261902987957, -0.0070218611508607864, -0.01862438954412937, 0.005022962111979723, 0.008057311177253723, -0.0033909280318766832, -0.02135358937084675, -0.029321756213903427, -0.024878235533833504, -0.008880185894668102, -0.007124720606952906, 0.021819885820150375, -0.0037440783344209194, -0.030693214386701584, -0.02789544127881527, -0.019008398056030273, -0.04416092485189438, 0.014674592763185501, -0.02539938874542713, 0.046272967010736465, 0.012391116470098495, 0.006390990689396858, 0.027854297310113907, 0.010155641473829746, -0.008887043222784996, 0.033957283943891525, -0.0006051555392332375, 0.0007397297886200249, 0.03233896195888519, -0.008084740489721298, 0.014921454712748528, -0.018596960231661797, 0.00561954639852047, 0.023424489423632622, 0.013652857393026352, 0.027237141504883766, 0.016169480979442596, -0.035438455641269684, 0.0005125821335241199, 0.0031337798573076725, 0.034862443804740906, 0.0477815717458725, 0.014852882362902164, -0.012349972501397133, -0.007241294253617525, 0.013289420865476131, 0.03615161404013634, -0.014839167706668377, 0.017774086445569992, 0.009113333187997341, 0.01800723373889923, 0.04043056070804596, -0.013138560578227043, 0.0071795787662267685, -0.027456574141979218, 0.014304298907518387, 0.010621936991810799, -0.01118423417210579, 0.01058765035122633, -0.010073353536427021, -0.00018150379764847457, -0.0008207314531318843, 0.04229574277997017, 0.039717402309179306, -0.022149035707116127, 0.006675568409264088, 0.010340787470340729, 0.0011700245086103678, 0.002708628075197339, 0.02291705086827278, -0.029623476788401604, -0.0019320404389873147, 0.0007328724605031312, -0.003850366221740842, -0.022725047543644905, 0.010121354833245277, -0.008434462361037731, 0.01036135945469141, 0.012404831126332283, -0.01411229558289051, -0.0239456444978714, 0.00629498902708292, 0.030967505648732185, -0.035328738391399384, -0.0004352233954705298, 0.032613255083560944, 0.001362028531730175, 0.0032709254883229733, -0.016498630866408348, 0.005499543622136116, 0.03173552080988884, 0.015552325174212456, 0.002784058218821883, -0.027799438685178757, 0.023739924654364586, -0.0066207097843289375, 0.012946556322276592, 0.03132408484816551, 0.015031171962618828, -0.017746657133102417, -0.02677084691822529, -0.039552826434373856, -0.017211789265275, 0.019241545349359512, -0.014468873851001263, 0.018418671563267708, 0.004162373021245003, 0.03461557999253273, 0.005376112647354603, -0.00951105635613203, 0.011040231212973595, -0.010183069854974747, 0.011280235834419727, 0.0002013256453210488, 0.03264068439602852, 0.018706677481532097, 0.028197161853313446, 0.04224088415503502, -0.013721429742872715, -0.01270655170083046, 0.02816973254084587, 0.014359157532453537, 0.003555502975359559, -0.003502358915284276, 0.04523066058754921, -0.019392406567931175, 0.017924945801496506, 0.03242124989628792, -0.02976062335073948, 0.037577930837869644, 0.0015660327626392245, -0.010237928479909897, -0.0037475069984793663, -0.005475542973726988, 0.009648201987147331, -0.001140880980528891, 0.01397514995187521, 0.0002682913327589631, -0.0023520493414252996, 0.021929601207375526, 0.013563712127506733, 0.0026023401878774166, 0.03812651336193085, -0.013810575008392334, 0.0475621372461319, -0.0027017707470804453, -0.028773173689842224, 0.000910304777789861, -0.007899593561887741, 0.009977351874113083, 0.0017588939517736435, -0.008345317095518112, -0.010820797644555569, 0.0022697618696838617, -0.026455411687493324, 0.0013954577734693885, -0.04385920241475105, -0.001798323355615139, 0.046272967010736465, -0.030748073011636734, -0.009277908131480217, 0.022601615637540817, -0.007673303596675396, -0.0044298069551587105, 0.00818759948015213, 0.03329898416996002, 0.014729451388120651, -0.02822459116578102, -0.023973073810338974, 0.009860778227448463, -0.004278946667909622, 0.00448809377849102, -0.004522380419075489, 0.018706677481532097, -0.011794532649219036, -0.023904500529170036, 0.01174653135240078, 0.04885130748152733, 0.025454247370362282, 0.026167403906583786, -0.010381931439042091, 0.012871126644313335, -0.011815104633569717, 0.021202730014920235, 0.00866760965436697, 0.012075681239366531, -0.002382907085120678, 0.001065450836904347, -0.001472602249123156, 0.006812714040279388, -0.023273630067706108, -0.023506777361035347, -0.010711081326007843, -0.025056524202227592, -0.02202560380101204, -0.005540687590837479, 0.005444685462862253, -0.005259538535028696, 0.015003742650151253, 0.009408197365701199, 0.03812651336193085, 0.009689345955848694, 0.007885878905653954, 0.02620854787528515, -0.025426818057894707, 0.01688263937830925, -0.021477021276950836, 0.022107891738414764, -0.03722134977579117, -0.022944480180740356, 0.015840331092476845, 0.004926960449665785, -0.01907697133719921, -0.021614165976643562, -0.0018274667672812939, 0.048933595418930054, 0.014907740987837315, 0.013783145695924759, 0.03146123141050339, 0.03439614921808243, 0.010676794685423374, 0.023698782548308372, 0.038537949323654175, -0.02585197053849697, -0.026126261800527573, 0.017143215984106064, -0.007728161755949259, -0.005811550188809633, -0.010155641473829746, -0.04111628979444504, -0.005458400119096041, 0.0024926236364990473, -0.013035701587796211, 0.0046389540657401085, -0.006493850145488977, -0.0075293006375432014, 0.03445100784301758, 0.007591016124933958, 0.006531565450131893, -0.008146456442773342, -0.062483593821525574, 0.004944103304296732, -0.01145852543413639, -0.006956716999411583, 0.01228140015155077, -0.003360070288181305, -0.04048541933298111, 0.012836840003728867, 0.007090433966368437, -0.01296027097851038, -0.048878736793994904, 0.012946556322276592, -0.004196659196168184, 0.0167180635035038, -0.031077221035957336, 2.8098802431486547e-05, 0.04070485010743141, 0.023863356560468674, 0.020078133791685104, 0.006267559714615345, -0.011485954746603966, 0.0012780267279595137, -0.022149035707116127, -0.03755050152540207, -0.0004144372360315174, -0.032037243247032166, 0.005869837012141943, 0.021202730014920235, -0.02716856822371483, 0.011465382762253284, 0.038647666573524475, -0.03598703816533089, 0.0032709254883229733, -0.015319177880883217, -0.004073228221386671, -0.011293950490653515, 0.02863602712750435, -0.01041621807962656, 0.01835009828209877, 0.007412726525217295, -0.013817432336509228, -0.03467043861746788, -0.0003180066414643079, 0.028526311740279198, -0.039497967809438705, 0.009970494545996189, -0.018103236332535744, -0.00157374725677073, 0.018898680806159973, 0.007296152878552675, 0.013351136818528175, 0.002977776573970914, 0.02106558345258236, -0.013453995808959007, -0.007584158796817064, 0.004974961280822754, 0.027648579329252243, 0.016416342929005623, 0.007639016956090927, -0.04177458956837654, -0.006318989209830761, -0.023177627474069595, -0.029623476788401604, 0.001393743441440165, 0.0010345930932089686, 0.0044812364503741264, -0.0022903336212038994, -0.018884966149926186, 0.038592807948589325, -0.024261079728603363, 0.012432260438799858, 0.010834512300789356, 0.008194456808269024, 0.019790127873420715, 0.003264068393036723, -0.027031423524022102, -0.01434544287621975, -0.001865181839093566, 0.032942403107881546, -0.03527387976646423, -0.0239456444978714, -0.00044015207095071673, 0.001640605740249157, -0.004162373021245003, -0.002108615590259433, -0.012925985269248486, 0.030802929773926735, -0.03447843715548515, -0.02320505678653717, -0.005718976724892855, -0.0014743165811523795, 0.0005005819257348776, -0.010477934032678604, 0.019186686724424362, -0.00587326567620039, 0.0025423390325158834, -0.01637519896030426, 0.03439614921808243, 0.020228995010256767, 0.02072271890938282, 0.019282689318060875, 0.020585574209690094, -0.00015986048674676567, 0.02416507713496685, -0.0032760684844106436, 0.0118631049990654, -0.030391493812203407, -0.015127173624932766, 0.014249441213905811, 0.03738592565059662, 0.007488156668841839, -0.013076845556497574, -0.01574433036148548, 0.028581170365214348, -0.00599669711664319, 0.02579711191356182, -0.038318514823913574, 0.01824038103222847, 0.006774998735636473, -0.038263656198978424, -0.009216193109750748, 0.0288006030023098, 0.00962763000279665, -0.04490151256322861, 0.03642590343952179, 0.007193293422460556, -0.00036365046980790794, -0.02191588655114174, 0.007220722734928131, 0.02507023885846138, 0.024946806952357292, -0.024549085646867752, -0.023287344723939896, -0.0036172184627503157, -0.0018257525516673923, -0.018884966149926186, 0.030446350574493408, 0.04106143116950989, -0.006716711912304163, 0.0030514923855662346, 0.017458651214838028, -0.06281274557113647, 0.033792708069086075, -0.02784058265388012, -0.01538775023072958, 0.02101072482764721, 0.02597540058195591, 0.02811487391591072, 4.0875856939237565e-05, 0.003956654109060764, 0.02044842764735222, 0.016388913616538048, -0.009593343362212181, 0.008201314136385918, 0.04111628979444504, 0.02371249534189701, 0.01168481633067131, 0.005070963408797979, -0.05099078267812729, -0.004933817312121391, 0.0036686481907963753, -0.013652857393026352, 0.010128212161362171, -0.017664369195699692, -0.02315019816160202, 0.023671353235840797, 0.0037029345985502005, -0.0131865618750453, -0.005667547229677439, 0.020873580127954483, 0.003464643843472004, -0.01862438954412937, -0.032777827233076096, 0.02998005598783493, 0.015154602937400341, 0.02146330662071705, 0.01998213306069374, -0.018665533512830734, -0.0037063632626086473, 0.005677833221852779, 0.005492686294019222, 0.02236846834421158, 0.005461828783154488, -0.007357868365943432, -0.02302676811814308, 0.02048957161605358, -0.02965090610086918, -0.03151608631014824, 0.01762322522699833, 0.0012300257803872228, -0.004673240706324577, -0.0017708941595628858, 0.01869296282529831, 0.008427605032920837, -0.02528967149555683, 0.045312948524951935, 0.0062538450583815575, 0.014784309081733227, -0.009949922561645508, 0.020585574209690094, 0.007460727356374264, 0.02128501608967781, 0.0008340174681507051, 0.019625553861260414, -0.004148658365011215, -0.02032499760389328, 0.004436664283275604, -0.013618570752441883, 0.04465464875102043, 0.06901173293590546, 0.010347644798457623, 0.017979804426431656, -0.030748073011636734, -0.002108615590259433, 0.023328488692641258, -0.007433298509567976, 0.002158330986276269, 0.022670188918709755, -0.015428894199430943, 0.024919379502534866, 0.004923531785607338, 0.009435625746846199, -0.014510017819702625, 0.021051868796348572, 0.027237141504883766, 0.013104273937642574, 0.00014100295084062964, 0.0005854408373124897, 0.04125343635678291, 0.0017726084915921092, 0.027127424255013466, 0.020366139709949493, 0.030446350574493408, -0.01648491621017456, 0.039443112909793854, 0.0029280611779540777, 0.02987033873796463, -0.029349185526371002, 0.009579628705978394, -0.0021326160058379173, 0.0026914849877357483, 0.029952626675367355, 0.020338712260127068, -0.022958194836974144, -0.021531879901885986, 0.014633448794484138, -0.009668773971498013, 0.008503034710884094, 0.018212951719760895, 0.027456574141979218, -0.02631826512515545, -0.005763549357652664, -0.001264312188141048, 0.006829857360571623, 0.019323833286762238, 0.02976062335073948, 0.007940737530589104, 0.00016736064571887255, -0.04753470793366432, 0.020228995010256767, 0.007227580063045025, -0.0007988738361746073, -0.045148372650146484, 0.018761536106467247, -0.014194582588970661, -0.013872290030121803, 0.019090685993433, 0.006116699427366257, -0.01704721339046955, 0.01386543270200491, -0.0058561223559081554, -0.0086058946326375, -0.005417256150394678, -0.025138812139630318, -0.0016474630683660507, -0.0015308891888707876, 0.01862438954412937, -0.016018621623516083, -0.03417671471834183, -0.00696014566347003, 0.015470038168132305, 0.01586776040494442, -0.008215028792619705, -0.022039318457245827, 0.043392907828092575, 0.0010543077951297164, 0.03220181539654732, 0.035712748765945435, 0.040128838270902634, 0.011876819655299187, -0.02450794167816639, 0.019803842529654503, 0.017870089039206505]" -How NLP Cloud Monitors Their Language AI API,"number of words sent and generated per user by GPT-J and GPT-NeoXThe number of characters sent and received by our multilingual add-onWe had two main requirements:Writing the data had to be very fast in order not to slow down the APIQuerying the data had to be easy for our admins to quickly inspect the data when needed and easily show the data to our customers on their dashboardChoosing (and Using!) TimescaleDB✨Editor’s Note:Not that you really need them, but here are nine reasons to choose TimescaleDB vs. InfluxDB or AWS Timestream.I found out about Timescale by looking for InfluxDB alternatives. I found the Telegraf, Influx, and Grafana (TIG) stack quite complex, so I was looking for something simpler.“TimescaleDB is a cornerstone of our pay-as-you-go plans”The top factors in my decision for Timescale were the following:Easy data downsampling thanks to continuous aggregatesPostgreSQL ecosystem: no need to learn something new, and we were all already skilled in SQL and PostgreSQL, so it saved us a lot of time and energyWe use TimescaleDB behind ournatural language processing APIto track API usage. Based on that, we can do analytics on our API and charge customers depending on their consumption. TimescaleDB is a cornerstone of our pay-as-you-go plans. Most of our users select such plans.If you want to see how we do it, I detailedhow we use TimescaleDB to track our API analyticsin a previous blog post.“The greatest TimescaleDB feature for us is the ability to automatically downsample data thanks to continuous aggregates”Before using TimescaleDB, we did very naive analytics by simply logging every API call into our main PostgreSQL database. Of course, it had tons of drawbacks. We had always known it would be a temporary solution as long as the volume of API calls remained reasonably low (right after launching the API publicly), and we quickly switched to TimescaleDB as soon as possible.We also evaluated a TIG solution (InfluxDB) but found that the complexity was not worth it. If TimescaleDB did not exist, we would maybe stick to a pure log-based solution backed by Elasticsearch.Current Deployment and Future PlansWe use TimescaleDB as a Docker container automatically deployed by our container orchestrator. Two kinds of applications insert data into TimescaleDB: Go and Python microservices. To visualize the data, we’re using Grafana.The greatest TimescaleDB feature for us is the ability",https://www.timescale.com/blog/how-nlp-cloud-monitors-their-language-ai-api/,514,"[-0.007273813709616661, -0.007203399203717709, 0.0675978809595108, -0.023983165621757507, 0.06393633037805557, -0.006284490693360567, -0.014970114454627037, 0.038418129086494446, -0.015350352972745895, 0.007844171486794949, 0.003929127007722855, -0.016786808148026466, -0.0136956125497818, -0.030447212979197502, 0.053881146013736725, 0.016096746549010277, -0.016758641228079796, -0.02622234635055065, -0.024546481668949127, 0.03289763629436493, 0.0011213503312319517, 0.03095419704914093, 0.011231106705963612, 0.02203972637653351, 0.00034371059155091643, 0.012167618609964848, -0.03455941751599312, 0.04413578286767006, 0.024715475738048553, -0.07328737527132034, 0.006956948898732662, -0.03889694809913635, -0.04495259374380112, 0.02563086338341236, 0.03715066984295845, -0.008006124757230282, 0.05312066897749901, 0.012963302433490753, 0.020856764167547226, -0.023771923035383224, -0.02588435634970665, 0.029179753735661507, 0.014237804338335991, 0.04086855426430702, -0.043178148567676544, 0.015463015995919704, -0.023687424138188362, -0.01571650803089142, 0.027053236961364746, 0.07503364980220795, -0.04841698333621025, 0.0374886579811573, -0.05959879979491234, -0.026841992512345314, 0.027870044112205505, -0.03489740565419197, -0.02043427713215351, 0.015237689949572086, 0.011005780659615993, -0.04278382658958435, -0.002582450397312641, -0.06731622666120529, 0.04391045868396759, 0.04957178235054016, -0.01749095320701599, 0.028743183240294456, -0.017674030736088753, 0.05450079217553139, -0.024433817714452744, 0.01447721291333437, 0.04945911839604378, 0.01349141076207161, -0.019856877624988556, -0.026687081903219223, 0.008689144626259804, -0.039009612053632736, -0.022307300940155983, 0.06489396840333939, 0.010322759859263897, -0.028869928792119026, 0.022391797974705696, 0.004450194071978331, -0.04047423228621483, 0.02240588143467903, 0.027517972514033318, -0.04622005298733711, -0.002700394717976451, -0.01643473468720913, -0.0015658416086807847, 0.018195096403360367, -0.017350124195218086, 0.006914699915796518, -0.012618271633982658, 0.017702195793390274, 0.034474920481443405, 0.0318555012345314, 0.03779848292469978, 0.02165948785841465, -0.027334893122315407, 0.02388458512723446, 0.02982756681740284, -0.018364092335104942, -0.04512158781290054, -0.017068466171622276, 0.0450652539730072, -0.00970311276614666, 0.015308103524148464, 0.0082314508035779, 0.006914699915796518, 0.02757430262863636, -0.08162444084882736, 0.0041579739190638065, -0.04300915449857712, -0.01771627925336361, 0.003476714016869664, -0.025391455739736557, -0.020237116143107414, 0.014061767607927322, -0.003717883490025997, -0.024814056232571602, -0.02099759317934513, 0.007150588557124138, 0.0030137388966977596, 0.03562971577048302, 0.05286717787384987, -0.026504002511501312, 0.0041720569133758545, -0.041488200426101685, -0.041178375482559204, 0.019054153934121132, 0.03092603199183941, -0.01871616393327713, 0.03433409333229065, -0.026940573006868362, -0.017533201724290848, -0.01899782195687294, -0.023715591058135033, -0.002837702864781022, -0.013350581750273705, -0.009674946777522564, -0.0068231611512601376, -0.037009842693805695, 0.030165554955601692, -0.0056331567466259, -0.03971375524997711, 0.01671639271080494, -0.04636088013648987, 0.03041904792189598, -0.05405014008283615, -0.017040299251675606, -0.0047072069719433784, 0.009893232025206089, -0.03537622466683388, -0.03751682490110397, 0.05745819956064224, -0.02050469070672989, 0.01544893253594637, 0.06185206398367882, -0.004668478854000568, -0.04115021228790283, -0.02119475230574608, 0.03751682490110397, 0.0035348059609532356, -0.007037925533950329, -0.015941834077239037, 0.015533430501818657, -0.03492557257413864, -0.05864116549491882, -0.09480603039264679, -0.013920939527451992, -0.01718112826347351, -0.07931485027074814, -0.03861529007554054, 0.04309365153312683, 0.00746393296867609, -0.013139338232576847, -0.025813940912485123, -0.06168306991457939, 0.02954590879380703, -0.018209179863333702, -0.059767793864011765, 0.013766027055680752, -0.036953508853912354, -0.009343999437987804, -0.03154568001627922, -0.008006124757230282, -0.03827730193734169, 0.01827959343791008, 0.007330145686864853, 0.06050010398030281, -0.01746278628706932, 0.03396793454885483, 0.020772267132997513, 0.03517906367778778, -0.016195327043533325, -0.044304780662059784, 0.03906594216823578, 0.014040643349289894, -0.04585389792919159, 0.03171467408537865, 0.06844285875558853, 0.018828827887773514, 0.03689717873930931, -0.03261597827076912, 0.015420767478644848, -0.0017304354114457965, 0.012590105645358562, -0.036136701703071594, -0.05604991316795349, -0.03470024839043617, 0.027658799663186073, 0.002309594303369522, -0.01965971849858761, -0.00932991597801447, -0.0545852892100811, -0.020730016753077507, -0.06151407212018967, -0.026391340419650078, 0.017800776287913322, -0.021039841696619987, -0.008048373274505138, 0.05971146374940872, 0.0009083465556614101, -0.029433244839310646, -0.01574467308819294, 0.007710383739322424, 0.025799859315156937, -0.012090163305401802, 0.011956376023590565, 0.022729787975549698, -0.004527649842202663, -0.04022074118256569, -0.018645750358700752, -0.04391045868396759, 0.025152046233415604, -0.0036615519784390926, 0.009252460673451424, -0.023053694516420364, -0.025278791785240173, -0.0403052382171154, -0.03777031600475311, -0.0005487927119247615, -0.011871878057718277, 0.02729264460504055, -0.021391913294792175, 0.00697103189304471, -0.059824127703905106, -0.06359834223985672, 0.03008105792105198, 0.06776687502861023, 0.017364205792546272, -0.006777391768991947, 0.02309594303369522, -0.004531170707195997, -0.012759100645780563, -0.05937347561120987, -0.006995676551014185, 0.03791114687919617, 0.0006706977728754282, 0.040389735251665115, 0.033939771354198456, -0.037009842693805695, -0.032221656292676926, 0.02788412757217884, -0.03965742513537407, 0.02494080178439617, 0.01925131306052208, -0.039263103157281876, 0.013223836198449135, -0.018448589369654655, 0.06573893874883652, -0.00010358627332607284, 0.0235043466091156, -0.038981445133686066, -0.01620940864086151, 0.005724695511162281, 0.014399757608771324, -0.01946255750954151, -0.00766813475638628, -0.002709196414798498, 0.00342390313744545, -0.029433244839310646, 0.03602403774857521, 0.009301749989390373, 0.030559876933693886, -0.02503938227891922, 0.0376858189702034, 0.04393862560391426, -0.011245189234614372, -0.023743756115436554, 0.019237231463193893, 0.04106571525335312, 0.02037794515490532, -0.019730132073163986, 0.02901075780391693, 0.013202711939811707, 0.0057951100170612335, 0.012533774599432945, -0.049909770488739014, -0.031404849141836166, -0.010773412883281708, -0.024560565128922462, 0.011484598740935326, -0.04216418042778969, 0.005024071782827377, 0.03884061798453331, -0.023617010563611984, -0.0022902304772287607, -0.021673571318387985, 0.0240394975990057, 0.001711951568722725, -0.04954361543059349, 0.006414757575839758, -0.00921725295484066, -0.019068235531449318, -0.0045135668478906155, 0.03703800588846207, -0.021546825766563416, -0.021743984892964363, -0.05151522159576416, -0.026489920914173126, -0.09627065062522888, -0.01104802917689085, 0.018504921346902847, -0.0016001686453819275, -0.011935250833630562, 0.03267230838537216, -0.02416624315083027, 0.017955686897039413, 0.002300792606547475, 0.005221232306212187, -0.004985343664884567, 0.02954590879380703, 0.05323333293199539, -0.019138650968670845, -0.04416394978761673, -0.01166063454002142, 0.022997362539172173, -0.040699560195207596, 0.04388229176402092, -0.022997362539172173, -0.013730820268392563, -0.059542469680309296, -0.006266887299716473, 0.03267230838537216, 0.025968853384256363, 0.004900846630334854, 0.011245189234614372, 0.017786692827939987, 0.007654051762074232, -0.017730360850691795, 0.011843712069094181, 0.011878919787704945, 0.011484598740935326, 0.03988274931907654, -0.01618124358355999, 0.015110943466424942, 0.0026440629735589027, -0.02901075780391693, -0.011153650470077991, -0.041769858449697495, 0.015477098524570465, -0.007710383739322424, 0.012604189105331898, -0.021828483790159225, -0.005002947524189949, -0.050811074674129486, 0.01615307666361332, -0.01649106666445732, -0.02163132280111313, 0.02296919748187065, 0.016265740618109703, -0.019265396520495415, -0.0015464776661247015, -0.06861185282468796, -0.010505837388336658, 0.03117952309548855, 0.05171237885951996, -0.008752517402172089, 0.047994498163461685, 0.03608037158846855, 0.02122291922569275, 0.00034327051253058016, -0.016843140125274658, 0.03182733803987503, 0.020800432190299034, 0.019082318991422653, 0.03160201013088226, -0.05055758357048035, -0.008675062097609043, 0.026672998443245888, 0.002966209314763546, -0.0127238929271698, -0.024898553267121315, -0.018321843817830086, -0.008872222155332565, 0.00815399456769228, 0.03067253902554512, 0.04841698333621025, 0.03143301606178284, 0.019617468118667603, 0.016983967274427414, -0.04362880066037178, -0.03317929431796074, -0.0071189021691679955, -0.013399871997535229, 0.005495848599821329, 0.03847446292638779, -0.0025067548267543316, -0.01946255750954151, -0.012618271633982658, 0.013385789468884468, 0.02767288312315941, -0.014561710879206657, 0.03830546885728836, -0.010590335354208946, -0.027334893122315407, 0.0662459284067154, 0.016688227653503418, 0.05796518549323082, -0.03213715925812721, -0.008069497533142567, -0.02416624315083027, -0.013533659279346466, -0.03464391455054283, 0.048529647290706635, 0.06556994467973709, -0.014449047856032848, -0.02832069620490074, -0.03354544937610626, -0.0007838009623810649, -0.025673111900687218, 0.04481176286935806, -0.04762834310531616, -0.01095649041235447, -0.0074850572273135185, 0.03861529007554054, 0.01909640245139599, 0.02882768027484417, 0.0387561209499836, -0.021039841696619987, 0.009639739990234375, -0.008759559132158756, 0.014815202914178371, -0.023152275010943413, -0.028222115710377693, -0.04453010484576225, -0.0159277506172657, 0.02256079390645027, -0.012702768668532372, 0.0478818342089653, -0.011111401952803135, -0.009977729059755802, 0.01649106666445732, -0.031939998269081116, -0.04075589030981064, 0.024715475738048553, -0.0032707517966628075, 0.044051285833120346, -0.03382710739970207, -0.02522245980799198, 0.0021441204007714987, -0.08765192329883575, -0.02491263672709465, -0.01405472680926323, -0.04171352833509445, 0.03720699995756149, 0.007252689450979233, 0.007421684451401234, -0.010667790658771992, 0.009970687329769135, 0.016265740618109703, -0.03439042344689369, -0.02199747785925865, -0.021166587248444557, 0.02434932067990303, 0.04616372287273407, 0.014730704948306084, -0.005766944494098425, 0.0035242438316345215, 0.021166587248444557, -0.020758183673024178, 0.0029855731409043074, 0.05486694723367691, -0.01733604073524475, 0.030193721875548363, 0.019856877624988556, 0.04588206484913826, -0.03433409333229065, -0.006900617387145758, -0.012745017185807228, -0.007002718281000853, 0.0396292582154274, -0.016631895676255226, -0.012090163305401802, -0.00852719135582447, -0.08196243643760681, -0.04917746037244797, -0.01858941838145256, -0.01232957188040018, 0.00865393690764904, -0.005048716906458139, -0.0017700435128062963, 0.07514631003141403, -0.021870732307434082, 5.7651839597383514e-05, 0.0055944290943443775, -0.019335811957716942, -0.010463588871061802, -0.0290389247238636, -0.016322072595357895, -0.008006124757230282, 0.045713067054748535, 0.03264414519071579, -0.016448818147182465, 0.03577054664492607, -0.011259272694587708, 0.027025070041418076, -0.026095598936080933, -0.01727970875799656, -0.006372508592903614, -0.029996560886502266, -0.024588730186223984, -0.020518774166703224, -0.0037530907429754734, -0.0038798367604613304, -0.05340232700109482, -0.02322268858551979, -0.006379550322890282, 0.0022726268507540226, 0.018547169864177704, -0.027222231030464172, 0.009660864248871803, -0.001101106172427535, -0.05067024752497673, -0.0005619954317808151, -0.02437748573720455, -0.0535149909555912, -0.05514860525727272, 0.02795454114675522, 0.01589958555996418, 0.035855043679475784, 0.0143504673615098, 0.033939771354198456, 0.013216794468462467, -0.005277563817799091, 0.01270981039851904, -0.032784972339868546, -0.024335237219929695, 0.02534920535981655, 0.025968853384256363, -0.025898439809679985, 0.025377372279763222, -0.012012707069516182, 0.009653822518885136, 0.011033945716917515, 0.030052892863750458, 0.03517906367778778, 0.010146724060177803, -0.00718227494508028, 0.028179867193102837, -0.012674602679908276, 0.015279938466846943, -0.01154797151684761, -0.014533544890582561, 0.020631438121199608, 0.006009874399751425, -0.004193181172013283, -0.03864345699548721, 0.01999770663678646, 0.003953772131353617, -0.008048373274505138, 0.0024169764947146177, 0.027785547077655792, 0.009893232025206089, 0.001786766923032701, -0.03396793454885483, -0.013611115515232086, 0.005485286470502615, -0.002571888267993927, -0.03751682490110397, 0.0009849222842603922, -0.010702998377382755, 0.04943095147609711, -0.033601779490709305, -1.4798039046581835e-05, 0.012745017185807228, 0.005231794435530901, 0.02565903030335903, 0.0011090277694165707, 0.011076195165514946, 0.03216532617807388, -0.013266084715723991, -0.006742184516042471, 0.012280282564461231, 0.026996904984116554, 0.01943439058959484, -0.0008392523741349578, -0.03267230838537216, 0.026335008442401886, 0.022743871435523033, -0.00015711227024439722, -0.017885273322463036, -0.023955000564455986, -0.028208034113049507, 0.05627523735165596, 0.020462442189455032, -0.0030331029556691647, 0.04182618856430054, -0.0065098172053694725, 0.034446753561496735, -0.021729903295636177, -0.021307416260242462, -0.059260811656713486, -0.012998509220778942, -0.013195670209825039, -0.030024725943803787, -0.0055803461000323296, 0.0067104981280863285, -0.015223606489598751, -0.018786577507853508, -0.00746393296867609, -0.026489920914173126, -0.041460033506155014, -0.0011354332091286778, 0.027151815593242645, -0.017828941345214844, -0.035601552575826645, -0.02867276966571808, 0.002170525724068284, -0.007062570657581091, 0.0056085120886564255, 0.04726218804717064, 0.009182046167552471, 0.003453829325735569, 0.034221429377794266, 0.03013738989830017, 0.03579871356487274, -0.010273469612002373, -0.017237460240721703, 0.0065978351049125195, 0.019518889486789703, -0.016983967274427414, -0.008337072096765041, 0.002932762261480093, -0.012280282564461231, -0.01796977035701275, 0.03301030024886131, -0.005534576717764139, -0.009386247955262661, 0.012245074845850468, -0.02378600463271141, 0.08500433713197708, 0.01035796757787466, 0.026363175362348557, -0.018364092335104942, -0.028123535215854645, -0.0191808994859457, -0.00023060735838953406, 0.009301749989390373, -0.0619647279381752, 0.03070070594549179, -0.015843253582715988, 0.0198146291077137, -0.04250216856598854, -0.003096475964412093, 0.011562054976820946, -0.0013132296735420823, 0.024799972772598267, 0.012984426692128181, -0.01154797151684761, 0.036418359726667404, 0.013730820268392563, 0.012322531081736088, 0.02122291922569275, 0.0013818838633596897, 0.0159277506172657, -0.04019257426261902, 0.03160201013088226, 0.04988160356879234, -0.05117722973227501, 0.01387869007885456, -0.053852979093790054, 0.005217711441218853, 0.0014109297189861536, -0.01544893253594637, -0.031010529026389122, 0.03329195827245712, 0.04830431938171387, -0.005749340634793043, 0.016138995066285133, -0.022363632917404175, 0.011956376023590565, -0.03371444344520569, 0.009935480542480946, -0.01994137465953827, 0.001585205551236868, 0.057232875376939774, -0.051656048744916916, -0.006171827670186758, 0.009069382213056087, -0.006830202881246805, -0.05959879979491234, -0.013639281503856182, -0.013294250704348087, -0.0016591408057138324, 0.007154109422117472, -0.020758183673024178, 0.01643473468720913, -0.026588501408696175, -0.0431218147277832, 0.023898668587207794, -0.027475722134113312, 0.026053350418806076, -0.0027496847324073315, -0.020870845764875412, -0.031095026060938835, 0.033939771354198456, -0.036981675773859024, -0.008301865309476852, -0.051684215664863586, 0.006752747111022472, -0.00562611548230052, -0.023138191550970078, 0.0556555911898613, -0.020744100213050842, 0.023025529459118843, 0.026335008442401886, 0.005745820235460997, -0.025982936844229698, -0.00766813475638628, 0.005013509653508663, 0.023025529459118843, 0.0020050518214702606, 0.02303961105644703, -0.0045663779601454735, -0.00232367729768157, 0.0027725694235414267, -0.037573155015707016, 0.0019047112436965108, -0.016702311113476753, 0.003996020648628473, -0.008175118826329708, -0.005689488723874092, 0.0030137388966977596, -0.0396292582154274, 0.040953051298856735, 0.01649106666445732, 0.01699805073440075, -0.023180440068244934, -0.015265855006873608, 0.01336466521024704, -0.00411572540178895, -0.003603460034355521, -0.019547054544091225, -0.014019519090652466, 0.003710842225700617, -0.005661322735249996, 0.0005391107406467199, 0.033911604434251785, 0.00824553333222866, 0.04053056240081787, -0.041460033506155014, 0.018166931346058846, -0.0011900044046342373, 0.009118672460317612, -0.029207918792963028, -0.00611197529360652, -0.01671639271080494, -0.040699560195207596, -0.03723516687750816, -0.0339961014688015, 0.0014531784690916538, 0.003202097723260522, 0.061176083981990814, -0.014491296373307705, -0.01345620397478342, -0.004788183607161045, 0.018786577507853508, -0.009935480542480946, 0.013259042985737324, 0.0076399692334234715, -0.047177691012620926, -0.04596656188368797, -0.003925606142729521, -0.005309250205755234, -0.002063143765553832, -0.01028051134198904, -0.03464391455054283, -0.025982936844229698, -0.025180211290717125, 0.002800735179334879, -0.005284605547785759, 0.024997133761644363, 0.006928782910108566, 0.0014452568721026182, 0.010005895048379898, -0.0922711119055748, -0.020744100213050842, 0.03157384321093559, -0.008611688390374184, -0.013801234774291515, 0.00173131562769413, 0.012702768668532372, 0.028362944722175598, 0.004717769101262093, -0.005372623447328806, 0.011745132505893707, -0.0658516064286232, -0.030250051990151405, -0.0018976697465404868, -0.016420653089880943, 0.015885502099990845, 0.0009919637814164162, 0.01994137465953827, 0.03548888862133026, 0.01889924146234989, -0.03410876542329788, 0.00411572540178895, -0.015786921605467796, 0.060669101774692535, -0.0033816546201705933, 0.0037847773637622595, 0.000949715031310916, 0.05098006874322891, 0.0191808994859457, -0.008125828579068184, -0.007048487663269043, 0.0028729101177304983, 0.014174431562423706, -0.011097319424152374, -0.009456662461161613, 0.017603615298867226, 0.002026176080107689, -0.001785006606951356, -0.010808619670569897, -0.013195670209825039, -0.021208835765719414, -0.04754384607076645, 0.03734783083200455, -0.03481290861964226, 0.03151751309633255, -0.019927293062210083, 0.0016248136525973678, 0.030250051990151405, -0.003457349957898259, 0.0021106735803186893, 0.02347618155181408, 0.011371935717761517, -0.0021494014654308558, 0.0049078878946602345, 0.006523899734020233, -0.0012058477150276303, -0.02832069620490074, -0.007059049792587757, 0.0032496273051947355, 0.0030031767673790455, -0.018927406519651413, 0.006541503593325615, 0.002802495611831546, -0.05559925734996796, -0.02206789143383503, -0.01618124358355999, 0.018054267391562462, 0.03678451478481293, -0.007414642721414566, -0.014801119454205036, 0.01533626951277256, 0.03746049478650093, 0.042305007576942444, -0.021448245272040367, 0.006129578687250614, 0.012407028116285801, 0.018702080473303795, 0.006087330169975758, -0.013815317302942276, -0.01505461148917675, 0.026250511407852173, 0.00010776713315863162, -0.03512273356318474, 0.02150457724928856, -0.015012362971901894, -0.019730132073163986, 0.006559106986969709, -0.01242815237492323, -0.0005831197486259043, -0.011759215034544468, 0.05942980572581291, -0.013547742739319801, -0.02560269832611084, 0.01761769875884056, 0.014132182113826275, 0.020546939224004745, 0.03089786507189274, 0.029968395829200745, -0.0018695039907470345, -0.006626000627875328, 0.04579756408929825, -0.015279938466846943, 0.006333780940622091, 0.017138879746198654, -0.024419736117124557, -0.005559221841394901, 0.00460158521309495, 0.004140370525419712, -0.009301749989390373, 0.00203497800976038, -0.011428266763687134, -0.006714018993079662, 0.0240394975990057, 0.03599587455391884, 0.0037530907429754734, 0.005717654246836901, 0.01799793727695942, -0.0077526322565972805, 0.008484942838549614, -0.012385903857648373, 0.039826419204473495, -0.015378518030047417, -0.01602633111178875, 0.0359395407140255, -0.028405193239450455, 0.0387561209499836, 0.042586665600538254, 0.0036756349727511406, -0.005196587182581425, -0.03117952309548855, -0.004189660307019949, 0.05120539665222168, -0.0055557009764015675, 0.03833363205194473, 0.011378977447748184, -0.027405308559536934, 0.009428496472537518, -0.014815202914178371, 0.007316062692552805, 0.03664368763566017, -0.0061753480695188046, -0.00033754933974705637, 0.01620940864086151, -0.008484942838549614, 0.034446753561496735, -0.023363517597317696, 0.01853308640420437, -0.002047300571575761, -0.029151586815714836, 0.016420653089880943, 0.030052892863750458, -0.03177100419998169, -0.023983165621757507, 0.06427431851625443, 0.008379320614039898, 0.04109387844800949, -0.04872680827975273, -0.021039841696619987, -0.045769400894641876, -0.011245189234614372, 0.007414642721414566, 0.03740416094660759, 0.031038694083690643, 0.010273469612002373, 0.02575761079788208, -0.025799859315156937, -0.027208147570490837, -0.004914929624646902, -0.014371591620147228, 0.007731507997959852, -0.003925606142729521, 0.016603730618953705, 0.0032496273051947355, 0.020772267132997513, 0.03977008908987045, 0.023307187482714653, 0.01868799887597561, 0.022152390331029892, 0.0005012629553675652, 0.007534347474575043, -0.026306843385100365, -0.0016274543013423681, 0.0054148719646036625, 0.036418359726667404, 0.029714902862906456, -0.04407945275306702, -0.011562054976820946, 0.018054267391562462, -0.017364205792546272, 0.029376912862062454, 0.01712479628622532, -0.0016221731202676892, 0.01674455963075161, 0.004774100612848997, -0.01874432899057865, 0.0217580683529377, 0.034221429377794266, 0.0015737632056698203, -0.0220960583537817, 0.02337760105729103, -0.0036932385992258787, 0.012484484352171421, 0.005400789435952902, -0.02478589117527008, -0.007992041297256947, 0.05286717787384987, -0.016012249514460564, 0.028616437688469887, -0.02153274230659008, 0.053289663046598434, 0.0033006779849529266, 0.01927947998046875, -0.004527649842202663, -0.012808390893042088, -0.0198146291077137, 0.023419849574565887, 0.017476869747042656, 0.011914126574993134, -0.018631666898727417, -0.03286946937441826, -0.035601552575826645, -0.02932058274745941, -0.009315833449363708, 0.019603386521339417, -0.03120769001543522, 0.041741691529750824, -0.0015799244865775108, -0.00020321173360571265, -0.004760017618536949, 0.007421684451401234, 0.0027197585441172123, 0.010034061037003994, 0.01035796757787466, 0.016758641228079796, 0.028531940653920174, 0.01712479628622532, 0.008048373274505138, 0.01020305510610342, -0.00959044974297285, 0.013575907796621323, 0.0010122079402208328, 0.018490837886929512, -0.005960584152489901, -0.005731737241148949, -0.012294365093111992, -0.010724122636020184, 0.046276383101940155, 0.02613784745335579, 0.035601552575826645, -0.009541159495711327, 0.017674030736088753, 0.01018897257745266, 0.018040185794234276, 0.0032584292348474264, 0.03884061798453331, 0.0207863487303257, 0.005351499188691378, 0.02181440033018589, -0.00824553333222866, -0.010428382083773613, 0.004228388424962759, 0.03303846716880798, 0.0032883554231375456, 0.004583981353789568, 0.0073723942041397095, 0.004876201506704092, -0.021673571318387985, -0.001144235022366047, 0.02084268070757389, -0.0025859710294753313, -0.026053350418806076, 0.018054267391562462, 0.020645519718527794, -0.018110599368810654, 0.014202596619725227, 0.031010529026389122, -0.04579756408929825, -0.00949891097843647, -0.018040185794234276, -0.001094064675271511, -0.033320121467113495, 0.0013792432146146894, -0.014301177114248276, -0.024588730186223984, 0.03481290861964226, -0.024405652657151222, 0.017758527770638466, -0.02872909978032112, 0.03346095234155655, -0.008161036297678947, 0.0006434121169149876, 0.02801087312400341, -0.010914241895079613, 0.02575761079788208, -0.02979939989745617, 0.005865524522960186, 0.006185910664498806, 0.023166358470916748, 0.0036193032283335924, -0.019772380590438843, -0.00032236622064374387, -0.005393747705966234, 0.007710383739322424, 0.02203972637653351, 0.010646666400134563, -1.096787764254259e-05, -0.01564609259366989, -0.015913669019937515, -0.010977614670991898, 0.02168765477836132, -0.005157859530299902, 0.002196931280195713, 0.0033939769491553307, 0.04340347275137901, -0.00745689170435071, 0.009322875179350376, 0.0188429094851017, 0.007907544262707233, 0.013554783537983894, 0.03974192216992378, 0.005407830700278282, -0.0022250970359891653, 0.03329195827245712, 0.04160086438059807, -0.005112090148031712, 0.021110255271196365, 0.03765765577554703, 0.025053465738892555, -0.017420537769794464, 0.02857418917119503, 0.01020305510610342, -0.009541159495711327, 0.01095649041235447, 0.020927177742123604, -0.02901075780391693, 0.008456776849925518, 0.010491754859685898, 0.005143776535987854, 0.003703800728544593, -0.008238491602241993, 0.010372050106525421, -0.000474857515655458, -0.011618386022746563, -0.006288011558353901, 0.010139682330191135, -0.006516858469694853, 0.03517906367778778, 0.005291646812111139, 0.013808275572955608, 0.029996560886502266, 0.055261269211769104, 0.011519805528223515, -0.009160921908915043, 0.029883896932005882, -0.011709924787282944, 0.0016785047482699156, 0.00664360448718071, -0.013632239773869514, 0.0018466192996129394, 0.033686280250549316, -0.009456662461161613, 0.005883128382265568, -0.02713773399591446, 0.012266199104487896, 0.008886304683983326, -0.011857795529067516, -0.008611688390374184, 0.03036271594464779, -0.0032214615494012833, -0.008463818579912186, 0.02622234635055065, 0.043149981647729874, 0.006714018993079662, -0.00040884397458285093, -0.03154568001627922, 0.001352837891317904, 0.0058479211293160915, -0.021180670708417892, 0.004432590212672949, 0.014998280443251133, 0.01971604861319065, -0.035010069608688354, 0.015477098524570465, 0.04475543275475502, -0.00033754933974705637, 0.014491296373307705, -0.028208034113049507, 0.0076258862391114235, -0.010055185295641422, 0.006435881834477186, -0.006136620417237282, -0.033066630363464355, 0.0023905709385871887, -0.004295282065868378, -0.01746278628706932, 0.03382710739970207, 0.010717080906033516, -0.01927947998046875, -0.013188628479838371, -0.048529647290706635, -0.02025119960308075, -0.012371821328997612, -0.0063619464635849, -0.018575334921479225, 0.034446753561496735, 0.002575408900156617, 0.044868096709251404, -0.011801463551819324, 0.01231548935174942, 0.0198146291077137, -0.019209064543247223, 0.00796387530863285, -0.010576251894235611, 0.007316062692552805, -0.03233432024717331, -0.03596770763397217, 0.02701098844408989, -0.020082203671336174, 0.000129386578919366, -0.04579756408929825, 0.01656148210167885, 0.013019634410738945, 0.0061190165579319, -0.00718227494508028, 0.027222231030464172, 0.02050469070672989, 0.006914699915796518, 0.018350008875131607, 0.025870272889733315, -0.023983165621757507, -0.01687130518257618, 0.018673915416002274, -0.04762834310531616, 0.02895442582666874, -0.01756136678159237, -0.014343425631523132, 0.004242471419274807, -0.0015552794793620706, -0.013829399831593037, 0.013308333232998848, 0.011977500282227993, -0.01861758343875408, 0.023391684517264366, 0.015969999134540558, 0.012294365093111992, -0.009836900047957897, -0.035010069608688354, 0.0030524670146405697, 0.0017894074553623796, -0.0031017570290714502, 0.02701098844408989, 0.017420537769794464, -0.0257857758551836, 0.026335008442401886, 0.03396793454885483, -0.005693009123206139, -0.006207034923136234, -0.0074850572273135185, -0.008273699320852757, 0.010343884117901325, -0.01154797151684761, 0.0037812564987689257, 0.025701278820633888, 0.00416149478405714, 0.031038694083690643, 0.030869700014591217, -0.0019346373155713081, 0.010836785659193993, -0.021265167742967606, -0.019068235531449318, 0.03286946937441826, -0.001665301970206201, -0.0015825650189071894, 0.011273355223238468, -0.000669377448502928, 0.014688456431031227, 0.03264414519071579, -0.01425892859697342, -0.006266887299716473, -0.008682102896273136, 0.0009681988740339875, -0.008520149625837803, 0.0374886579811573, -0.005773985758423805, 0.013956146314740181, 0.015702424570918083, -0.007330145686864853, -0.021927064284682274, 0.02754613757133484, -0.0026070955209434032, -0.0331229642033577, 0.019476640969514847, -0.018237344920635223, 0.0018783058039844036, 0.03120769001543522, -0.007386477198451757, 0.014702539891004562, 0.003964334260672331, 0.017420537769794464, -0.02219463884830475, -0.015406684018671513, -0.025053465738892555, 0.03396793454885483, 0.004495963454246521, 0.025687195360660553, -0.03774215281009674, 0.0068231611512601376, -0.009343999437987804, -0.017659947276115417, -0.005407830700278282, -0.011562054976820946, 0.017040299251675606, 0.003827025881037116, -0.01533626951277256, 0.022518545389175415, -0.025546366348862648, 0.0022761474829167128, -0.009731278754770756, -0.0025437225122004747, 0.0009294708725064993, -0.007323103956878185, -0.013399871997535229, -0.013575907796621323, 0.002335999859496951, 0.02744755707681179, -0.004235429689288139, -0.020110370591282845, -0.000286498834611848, -0.003047185717150569, 0.00807653833180666, 0.02043427713215351, -0.013533659279346466, 0.011146609671413898, 0.02985573187470436, -0.012181702069938183, -0.015420767478644848, -0.024870388209819794, 0.007823046296834946, 0.003957292530685663, -0.020110370591282845, -0.015012362971901894, -0.005763423629105091, -0.02025119960308075, 0.01749095320701599, 0.03236248716711998, 0.019983625039458275, 0.03458758443593979, 0.021053923293948174, -0.02729264460504055, 0.01561792753636837, -0.041262876242399216, 0.005967625416815281, -0.02437748573720455, 0.004270636942237616, -0.009548201225697994, 0.04453010484576225, -0.011801463551819324, 0.010498796589672565, -0.014533544890582561, -0.015519347041845322, 0.02475772425532341, -0.0043375310488045216, -0.03371444344520569, 0.008872222155332565, 0.02867276966571808, -0.0441921167075634, 0.0011187097989022732, 0.045149751007556915, -0.0014496577205136418, -0.049684442579746246, 0.022236887365579605, -0.018941489979624748, 0.004344572313129902, -0.02682790905237198, 0.0003885998157784343, 0.00232367729768157, 0.043769627809524536, -0.002388810506090522, 0.020828597247600555, -0.011104360222816467, -0.025152046233415604, -0.030221886932849884, 0.03298213332891464, 0.00035229235072620213, -0.018828827887773514, -0.011146609671413898, 0.008210326544940472, -0.04644537717103958, 0.03703800588846207, -0.01830776035785675, -0.004189660307019949, -0.01602633111178875, 0.015632010996341705, 0.013575907796621323, 0.05067024752497673, 0.012012707069516182, 0.02002587355673313, -6.073247277527116e-05, 0.00745689170435071, -0.0030119786970317364, -0.0007802802720107138, -0.009667905978858471, 0.015547513030469418, -0.012561939656734467, -0.03988274931907654, 0.02147641032934189, 0.010914241895079613, 0.0005465922877192497, 0.0009866826003417373, -0.007386477198451757, -0.025053465738892555, 0.009611574001610279, 0.00014258928422350436, -0.023617010563611984, 0.029968395829200745, 0.01394206378608942, 0.017828941345214844, -0.038727954030036926, -0.05835950747132301, 0.026151930913329124, -0.00456285709515214, 0.01618124358355999, 0.014575793407857418, 0.00619647279381752, 0.01587142050266266, -0.00793571025133133, 0.021039841696619987, 0.018828827887773514, 0.003459110390394926, -0.0014373351586982608, -0.0006346103618852794, -0.00998477078974247, -0.028715018182992935, -0.033658113330602646, 0.009632698260247707, 0.003988979384303093, -0.018786577507853508, -0.025518201291561127, 0.0009189087431877851, 0.00036901579005643725, -0.0004568138101603836, 0.011597261764109135, 0.011632469482719898, 0.011611344292759895, -5.215070996200666e-05, 0.005597949493676424, 0.022926948964595795, 0.020744100213050842, 0.003837588243186474, 0.004636792466044426, 0.002408174565061927, 0.016786808148026466, 0.007886420004069805, -0.031404849141836166, 0.03779848292469978, 0.023898668587207794, -0.007555471733212471, 0.012547857128083706, -0.01927947998046875, 0.003085913835093379, 0.027081402018666267, -0.015082777477800846, -0.00024733078316785395, 0.010724122636020184, 0.011921168304979801, 0.00016382364265155047, 0.017321957275271416, 0.03329195827245712, -0.005048716906458139, 0.004840994253754616, 0.007823046296834946, 0.0012648197589442134, -0.006594314239919186, -0.007541388738900423, 0.04027707129716873, 0.0035312853287905455, 0.027123650535941124, -0.005435996223241091, 0.013181587681174278, -0.003915044013410807, 0.041516367346048355, 0.007027363404631615, 0.015913669019937515, -0.03239065408706665, 0.005270522553473711, -0.024532398208975792, 0.025490034371614456, 0.010991697199642658, 0.015674259513616562, -0.024152159690856934, -0.022772036492824554, 0.014237804338335991, -0.06044377386569977, 0.013970228843390942, -0.0036791556049138308, 0.042079683393239975, -0.010984656400978565, 0.003237304976209998, 0.009534117765724659, -0.008597605861723423, -0.002040259074419737, 0.03148934617638588, -0.006266887299716473, -0.02475772425532341, -0.01006222702562809, 0.0062422421760857105, 0.03148934617638588, 0.003585856407880783, -0.025799859315156937, -0.0002145440666936338, 0.043769627809524536, 0.008703227154910564, 0.021983394399285316, 0.010449506342411041, -0.020589187741279602, 0.024968968704342842, 0.026335008442401886, -0.005872566252946854, -0.0273912250995636, -0.005210670176893473, -0.008787725120782852, -0.003555930219590664, -0.0076118032447993755, -0.02334943599998951, 0.0016829055966809392, -0.015139109455049038, 0.009808734059333801, 0.002807776676490903, -0.005460641346871853, -0.00024182966444641352, 0.03148934617638588, 0.03934760019183159, -0.0022515023592859507, 0.017068466171622276, 0.05038858950138092, 0.012688686139881611, -0.004840994253754616, 0.029968395829200745, 0.02895442582666874]" -How NLP Cloud Monitors Their Language AI API,"to automatically downsample datathanks to continuous aggregates. We’re writing a lot of data within TimescaleDB, so we can’t afford to keep everything forever, but some high-level data should be kept forever. Before that, we had to develop our own auto-cleaning routines on PostgreSQL: it was highly inefficient, and some of our read queries were lagging. It’s not the case anymore.✨Editor’s Note:Learn how you can proactively manage long-term data storage with downsamplingorread our docs on downsampling.The NLP Cloud API is evolving very fast. We are currently working hard on multi-account capabilities: soon, our customers will be able to invite other persons from their team and manage multiple API tokens.In the future, we also plan to integrate severalnew AI modelsand optimize the speed of our Transformer-based models.Advice and ResourcesWe recommend Timescale to any development team looking for a time-series solution that is both robust and easy to deal with. Understandably, most developers don’t want to spend too much time implementing an analytics solution. We found that TimescaleDB was simple to install and manage for API analytics, and it scales very well.TheTimescaleDB docsare a very good resource. We didn’t use anything else.My advice for programmers trying to implement a scalable database strategy? Don’t mix your business database or online transaction processing (OLTP) with your online analytical processing or analytics database (OLAP).It’s quite hard to efficiently use the same database for both day-to-day business (user registration and login, for example) and data analytics. The first one (OLTP) should be very responsive if you don’t want your user-facing application to lag, so you want to avoid heavy tasks related to data analytics (OLAP), as they are likely to put too much strain on your application.Ideally, you want to handle data analytics in a second database that is optimized for writes (like TimescaleDB) and is perfectly decoupled from your OLTP database. The trick then is to find a way to properly move some data from your OLTP database to your OLAP database. You can do this through asynchronous extract, transform, and load (ELT) batch jobs, for example.We’d like to thank Julien and his team at NLP Cloud for sharing their story and writing a blog post on how the NLP Cloud Team uses TimescaleDB to track their API analytics.We’re always keen to feature new community projects and stories on our",https://www.timescale.com/blog/how-nlp-cloud-monitors-their-language-ai-api/,503,"[-0.007493025157600641, 0.007527302484959364, 0.07782325893640518, -0.023761048913002014, 0.06531888991594315, 0.011955934576690197, -0.008918962441384792, 0.012607203796505928, -0.039460066705942154, 0.001627316465601325, 0.028518741950392723, -0.02961561642587185, -0.020484134554862976, -0.016809605062007904, 0.042421627789735794, 0.029560772702097893, 0.01820812001824379, -0.02088175155222416, -0.0049359360709786415, 0.018537182360887527, -0.021581009030342102, 0.030822180211544037, 0.02439175173640251, 0.03622428700327873, 0.00510046724230051, -0.028792960569262505, -0.0010523141827434301, 0.03356436640024185, 0.031727101653814316, -0.08166231960058212, -0.0039041885174810886, -0.033646631985902786, -0.04733014479279518, 0.033509522676467896, 0.058244045823812485, 0.012531793676316738, 0.028957491740584373, 0.003366034245118499, 0.02499503269791603, -0.014917495660483837, -0.008562478236854076, -0.005121033638715744, 0.0023737053852528334, 0.029972100630402565, -0.006265896838158369, 0.017975034192204475, -0.009577087126672268, -0.023116635158658028, 0.038719676434993744, 0.07080326229333878, -0.04985295608639717, 0.0086584547534585, -0.04102311283349991, -0.01923643983900547, 0.01057798508554697, -0.0009940427262336016, -0.004819393157958984, -0.0001677446998655796, 0.013224195688962936, -0.022307690232992172, -0.00047045640530996025, -0.05643420293927193, 0.029505928978323936, 0.0505659244954586, -0.026708899065852165, 0.013080230914056301, -0.022554486989974976, 0.03419506922364235, -0.04870123788714409, 0.015493355691432953, 0.029862413182854652, 0.003647108329460025, 0.00338317290879786, -0.02085432969033718, 0.013635523617267609, -0.049331940710544586, -0.025941086933016777, 0.059889357537031174, -0.01229185238480568, -0.012189020402729511, 0.014451324008405209, 0.01088648196309805, -0.004085858352482319, 0.027298469096422195, 0.03704694285988808, -0.04634295776486397, -0.02972530387341976, 0.0005587205523625016, -0.003801356302574277, 0.0218963623046875, 0.000613992742728442, 0.05204670503735542, -0.020059095695614815, 0.015095737762749195, 0.02114225924015045, 0.02914944477379322, 0.04340881481766701, 0.013045953586697578, 0.015493355691432953, 0.02322632260620594, -0.005210154689848423, -0.027010539546608925, 0.005758592393249273, -0.02514585293829441, 0.017385464161634445, -0.03309819474816322, 0.01199021190404892, -0.016453120857477188, -0.012771734967827797, 0.03153514862060547, -0.09630560129880905, -0.03556616231799126, -0.04798826947808266, 0.001398515305481851, 0.0014207955682650208, -0.03419506922364235, -0.012003922834992409, 0.04176350310444832, -0.01162687223404646, -0.010173512622714043, -0.011044157668948174, 0.02263675257563591, -0.01746772974729538, 0.01021464541554451, 0.0018235541647300124, -0.026516946032643318, 0.024336908012628555, -0.05654389038681984, -0.031754523515701294, -0.00551179563626647, 0.043847568333148956, -0.0045280358754098415, 0.030685070902109146, -0.04804311320185661, -0.03309819474816322, -0.02547491528093815, -0.030685070902109146, -0.011695426888763905, 0.006053377408534288, -0.010564274154603481, 0.03509999066591263, -0.043299127370119095, -0.0046034459955990314, -0.0023497112561017275, -0.03775991126894951, 0.025063587352633476, -7.401761831715703e-05, 0.035593584179878235, -0.030383428558707237, 0.00205149850808084, -0.011496618390083313, -0.02042929083108902, -0.047576941549777985, -0.011599450372159481, 0.04571225494146347, -0.0071776737459003925, 0.02455628290772438, 0.03392085060477257, 0.0016855879221111536, -0.06043779477477074, -0.028025148436427116, 0.049359362572431564, -0.013628668151795864, 0.004096141550689936, -0.017426596954464912, 0.00432922737672925, -0.03019147552549839, -0.05204670503735542, -0.09526357054710388, -0.028217101469635963, -0.05254029855132103, -0.06279607862234116, -0.004377215635031462, 0.019195307046175003, 0.00902179442346096, -0.019332416355609894, -0.012572926469147205, -0.05089498683810234, 0.010529996827244759, -0.02588624320924282, -0.06915795058012009, -0.013827476650476456, -0.005912840366363525, 0.006200769916176796, -0.021841518580913544, 0.0019263862632215023, -0.06987091898918152, 0.04456053674221039, -0.006331023760139942, 0.06153467297554016, -0.04305233061313629, 0.054103344678878784, 0.0022245990112423897, 0.03090444579720497, -0.0015613326104357839, -0.04102311283349991, 0.04897545650601387, 0.03674530237913132, -0.029341397807002068, 0.020538978278636932, 0.07036451250314713, 0.0005570066859945655, 0.030273741111159325, 0.019483236595988274, 0.023445697501301765, 0.05034654960036278, 0.021567298099398613, -0.015301402658224106, -0.059560295194387436, -0.04834475368261337, 0.00983759481459856, 0.005491229239851236, -0.0074450368992984295, 0.018975932151079178, -0.061754047870635986, -0.027737218886613846, -0.03652592748403549, -0.012223297730088234, 0.015863550826907158, -0.009206891991198063, 0.003931610379368067, 0.04571225494146347, 0.01353269163519144, -0.015575621277093887, -0.012312418781220913, -0.0004820250323973596, 0.02827194519340992, -0.039761707186698914, 0.02945108525454998, -0.0032751993276178837, 0.020607532933354378, -0.023418275639414787, -0.027325890958309174, -0.031123820692300797, 0.0300543662160635, 0.012559215538203716, 0.0031706534791737795, -0.013868609443306923, -0.007403904106467962, -0.018427494913339615, -0.019921986386179924, -0.012764879502356052, -0.0220197606831789, 0.005690037738531828, -0.006344734691083431, 0.030109209939837456, -0.0304931178689003, -0.07085810601711273, 0.03180936723947525, 0.04763178527355194, -0.011263532564043999, -0.03274171054363251, -0.0013608102453872561, -0.04782373830676079, -0.026571789756417274, -0.05396623536944389, 0.014177105389535427, 0.018112143501639366, -0.006529832258820534, 0.022581908851861954, 0.028683273121714592, -0.025502337142825127, -0.009782751090824604, 0.002673631999641657, -0.006783484481275082, 0.0031843644101172686, 0.024446595460176468, -0.03496288135647774, 0.012518082745373249, 0.014163394458591938, 0.02843647636473179, 0.040035925805568695, -0.011434919200837612, -0.05311615765094757, -0.01524655893445015, -0.010955036617815495, 0.0007613853085786104, -0.03452413156628609, -0.007246228400617838, -0.00614592619240284, -0.033975694328546524, -0.0435459278523922, 0.025680579245090485, 0.003266629995778203, 0.042997486889362335, -0.008027751930058002, -0.010379176586866379, 0.025337805971503258, -0.006989148445427418, -0.03372889757156372, -0.0054329573176801205, 0.00019248866010457277, -0.003821922931820154, -0.024967610836029053, 0.0008809274877421558, -0.007472458761185408, -0.012031344696879387, 0.007307927589863539, -0.06734810769557953, -0.042421627789735794, 0.01864686980843544, 0.00037126638926565647, 0.009707340970635414, -0.0405295193195343, 0.0040173036977648735, 0.012120465748012066, -0.0387745201587677, -0.004689139313995838, -0.00992671586573124, 0.010262633673846722, 0.020813196897506714, -0.0030078361742198467, 0.01892108842730522, -0.011270388029515743, -0.03244007006287575, -0.04351850599050522, 0.06416717171669006, -0.05352748557925224, -0.0073559158481657505, -0.06093139201402664, -0.04025530070066452, -0.09082122892141342, -0.029560772702097893, 0.0010797360446304083, 0.02040186896920204, -0.01717980019748211, 0.023308588191866875, -0.0016341719310730696, 0.009878727607429028, -0.008473357185721397, 0.006300174165517092, -0.006869177799671888, 0.01997683010995388, 0.03063022717833519, -0.01109900139272213, -0.05122404918074608, 0.016535386443138123, -0.004486903082579374, -0.011092145927250385, 0.012387828901410103, -0.047576941549777985, -0.009254880249500275, -0.05857310816645622, 0.02928655408322811, 0.015575621277093887, 0.028011437505483627, -0.004229823127388954, 0.03298850730061531, -0.00473712757229805, 0.011907946318387985, -0.02810741402208805, -0.01516429241746664, 0.017837924882769585, -0.015452222898602486, 0.038280926644802094, 0.04129733145236969, -0.013635523617267609, -0.03389342874288559, -0.02650323510169983, -0.022897260263562202, -0.008137439377605915, -0.00769183412194252, 0.0420377217233181, -0.0011928512249141932, -0.024528861045837402, 0.025186985731124878, -0.022252846509218216, 0.0024234075099229813, 0.0016564521938562393, -0.0010523141827434301, 0.028683273121714592, -0.005117605905979872, -0.011469196528196335, 0.004613729193806648, -0.0745326355099678, -0.007129685487598181, 0.029259132221341133, 0.045218661427497864, 0.000613992742728442, 0.026887141168117523, 0.01775565929710865, -0.0011500045657157898, 0.013669800944626331, -0.015767574310302734, 0.03948748856782913, 0.053801704198122025, -0.01789276860654354, 0.00632759602740407, -0.05802467092871666, -0.016466831788420677, 0.021978627890348434, -0.011620016768574715, 0.013752066530287266, 0.0008436508942395449, 0.003924754913896322, -0.022444799542427063, 0.001318820402957499, 0.01553448848426342, 0.050373971462249756, 0.015493355691432953, 0.027010539546608925, 0.013025387190282345, -0.037650223821401596, -0.024446595460176468, 0.00602595554664731, 0.002188607817515731, 0.0197026114910841, 0.02384331449866295, -0.004576024133712053, -0.025118431076407433, -0.011935368180274963, -0.019428392872214317, 0.048454441130161285, -0.014081128872931004, 0.038829363882541656, -0.01642569899559021, -0.03732116147875786, 0.07096779346466064, 0.007047419901937246, 0.040611784905195236, -0.03359178826212883, -0.024364329874515533, -0.0113869309425354, -0.02928655408322811, -0.03622428700327873, 0.043299127370119095, 0.030273741111159325, -9.104917262447998e-05, -0.040474675595760345, -0.03893905133008957, -0.004970213398337364, -0.0008757858886383474, 0.029231710359454155, -0.06296060979366302, -0.04985295608639717, -0.01310765277594328, 0.005121033638715744, -0.018537182360887527, 0.043847568333148956, -0.021046282723546028, -0.025790266692638397, -0.0010600265813991427, -0.01700155809521675, 0.03759538009762764, -0.010207789950072765, -0.026462102308869362, -0.05234834551811218, -0.018742846325039864, -0.02961561642587185, -0.005031912587583065, 0.033235304057598114, -0.007849509827792645, 0.021868940442800522, 0.029533350840210915, -0.01600066013634205, -0.06142498552799225, 0.018468627706170082, -0.038856785744428635, 0.05456951633095741, -0.02606448531150818, -0.03271428868174553, -0.02399413473904133, -0.023733627051115036, -0.013786343857645988, 0.014053707011044025, -0.03921326994895935, 0.05456951633095741, 0.026133039966225624, 0.032330382615327835, -0.016645073890686035, 0.014204527251422405, 0.0355113185942173, -0.0055563561618328094, 4.448019899427891e-05, -0.017412886023521423, 0.0021834662184119225, 0.0328788198530674, 0.018770268186926842, -0.02234882302582264, -0.012374117970466614, 0.02928655408322811, -0.03578553721308708, -0.013333883136510849, 0.03773248940706253, 0.02115597017109394, 0.018879955634474754, 0.028189679607748985, 0.02162214182317257, -0.013854898512363434, 0.005172449629753828, -0.029396241530776024, -0.005141600035130978, 0.06093139201402664, -0.015781285241246223, -0.04634295776486397, -0.001217702287249267, -0.08138810098171234, -0.03296108543872833, 0.025941086933016777, 0.0019640913233160973, 0.016754761338233948, 0.006420144811272621, 0.0047679771669209, 0.07776841521263123, -0.028079992160201073, -0.007410759571939707, -0.0069994316436350346, -0.005014773923903704, -0.01672733947634697, -0.037814754992723465, 0.006773201283067465, 0.017358042299747467, 0.02324003353714943, 0.02000425197184086, -0.018838822841644287, 0.03444186598062515, -0.016096636652946472, 0.008596755564212799, -0.016672495752573013, -0.002140619559213519, -0.009995270520448685, -0.03688241168856621, -0.031014133244752884, -0.002819310873746872, 0.006485271733254194, -0.0030335441697388887, -0.061754047870635986, 0.00045503160799853504, -0.021676985546946526, 0.01303224265575409, 0.028011437505483627, -0.0337563194334507, 0.017700815573334694, 0.008267693221569061, -0.05360975116491318, 0.003938465844839811, 0.0012965401401743293, -0.030273741111159325, -0.059999044984579086, 0.01066710613667965, 0.02015507221221924, 0.049798112362623215, 0.029643038287758827, 0.02413124404847622, -0.002228026743978262, -0.033811163157224655, -0.005302703473716974, -0.021101126447319984, -0.01613776944577694, 0.03329014778137207, 0.028902648016810417, -0.024323197081685066, 0.01669991761445999, 0.001164572429843247, 0.011352653615176678, -0.012374117970466614, 0.031754523515701294, 0.026009641587734222, 0.013148785568773746, -0.012120465748012066, 0.01072880532592535, -0.023294877260923386, 0.011599450372159481, -0.004713133443146944, -0.006344734691083431, 0.015932105481624603, -0.004966785665601492, -0.031014133244752884, -0.053801704198122025, 0.02310292422771454, -0.014986050315201283, 0.0004845958319492638, 0.005861424375325441, -0.004682283848524094, -0.002061781706288457, 0.02206089347600937, -0.02958819456398487, -0.026516946032643318, 0.02089546248316765, 0.011544606648385525, -0.03213842958211899, -0.03416764736175537, -0.03910358250141144, 0.010173512622714043, -0.03669045865535736, 0.017056401818990707, 0.016974136233329773, 0.03444186598062515, 0.02248593233525753, -0.024967610836029053, 0.003612831002101302, 0.021279368549585342, -0.011633727699518204, -0.012147887609899044, 0.014300503768026829, 0.011702282354235649, 0.037951864302158356, 0.020689798519015312, -0.004325799643993378, 0.019277572631835938, 0.023281166329979897, 0.01412226166576147, 0.0035048574209213257, -0.019921986386179924, -0.01654909737408161, 0.013505269773304462, -0.005758592393249273, 0.040940847247838974, 0.05147084593772888, -0.005193016026169062, 0.036471083760261536, -0.018235541880130768, 0.002769608749076724, -0.03600491210818291, -0.01583612896502018, -0.01763226091861725, -0.017879057675600052, 0.0007262510480359197, 0.006673797033727169, -0.027901750057935715, -0.02648952417075634, -0.03863741084933281, -0.009337145835161209, -0.05267740786075592, -0.0008912106859497726, 0.012552360072731972, -0.01687815971672535, -0.040474675595760345, -0.05190959572792053, 0.033070772886276245, 0.00083251076284796, -0.005199871491640806, 0.05248545482754707, -0.0034911464899778366, 0.016220035031437874, 0.041516706347465515, 0.02958819456398487, 0.015438511967658997, -0.007390193175524473, -0.015095737762749195, -0.0023857024498283863, 0.001856117625720799, 0.01997683010995388, -0.005182732827961445, 0.01922272890806198, -0.019949408248066902, -0.01345728151500225, 0.02026475965976715, -0.017358042299747467, -0.012120465748012066, -0.00655382638797164, -0.044450849294662476, 0.05426787585020065, 0.040502097457647324, 0.019167885184288025, -0.017988745123147964, -0.007376482244580984, -0.0197026114910841, 0.015438511967658997, 0.02101886086165905, -0.0503191277384758, -0.009138337336480618, -0.0016478828620165586, 0.022102026268839836, -0.024213509634137154, 0.01925015076994896, 0.03093186765909195, 0.011750270612537861, 0.02233511209487915, 0.024803079664707184, -0.027421867474913597, 0.020196205005049706, 0.025927376002073288, 0.030822180211544037, 0.02487163431942463, -0.015411090105772018, 0.023788470774888992, -0.03611459955573082, 0.011016735807061195, 0.04184576869010925, -0.048152800649404526, -0.010015836916863918, -0.026078196242451668, 0.010043258778750896, 0.008699587546288967, -0.01923643983900547, -0.0071776737459003925, 0.02648952417075634, 0.04102311283349991, 0.011044157668948174, -0.006241902709007263, -0.009755329228937626, 0.0018372650956735015, -0.02972530387341976, 0.008980661630630493, 0.004637723322957754, 0.00706798629835248, 0.04351850599050522, -0.03608717769384384, -0.008185427635908127, -0.0004807396326214075, -0.009001228027045727, -0.05456951633095741, -0.015054604969918728, -0.006337879225611687, 0.028463898226618767, 0.01027634460479021, -0.015411090105772018, 0.025954797863960266, -0.01835894025862217, -0.034277334809303284, 0.012771734967827797, -0.022883549332618713, 0.013368160463869572, -0.02295210398733616, -0.023130346089601517, -0.019126752391457558, 0.035456474870443344, -0.034633819013834, -0.0056934654712677, -0.05901185795664787, -0.007684978656470776, -0.02724362537264824, -0.04598647356033325, 0.0435459278523922, -0.03474350646138191, 0.029807569459080696, 0.03109639883041382, -0.009124626405537128, -0.0024114104453474283, 0.002831307938322425, -0.005302703473716974, 0.0218963623046875, -0.011263532564043999, 0.025954797863960266, -0.015136870555579662, -0.008212849497795105, -0.008487068116664886, -0.035127412527799606, 0.0007541013765148818, -0.033509522676467896, 0.008768142201006413, -0.006533259991556406, -0.014177105389535427, 0.013354449532926083, -0.03548389673233032, 0.026736320927739143, 0.03230296075344086, 0.024474017322063446, 0.0003757652884814888, -0.01909933052957058, 0.012387828901410103, -0.010475153103470802, 0.0020446430426090956, -0.008240271359682083, -0.033674053847789764, -0.02426835335791111, 0.005487801507115364, 0.0022743011359125376, 0.014506167732179165, 0.01473925355821848, 0.03435960039496422, -0.03414022549986839, 0.04222967475652695, 0.002536522690206766, 0.005559783894568682, -0.0402827225625515, 0.00591969583183527, -0.005755164660513401, -0.05064819008111954, -0.02677745372056961, -0.008548767305910587, 0.01728948764503002, 0.011003024876117706, 0.055145375430583954, 0.0007091123843565583, 0.009220602922141552, 0.01221644226461649, 0.018989643082022667, 0.0011739986948668957, 0.02278757281601429, 0.012483805418014526, -0.02961561642587185, -0.028079992160201073, -0.011743415147066116, -0.008631032891571522, -0.0037602235097438097, -0.02621530555188656, -0.026722609996795654, -0.029834991320967674, -0.03446928784251213, 0.004205828998237848, 0.0005531504866667092, -0.013690367341041565, 0.0102900555357337, -0.003379745176061988, -0.0034105947706848383, -0.09328919649124146, -0.023281166329979897, 0.023404564708471298, -0.004397782031446695, -0.00020705652423202991, -0.005652332678437233, 0.008391091600060463, 0.0217729639261961, 0.026599211618304253, -0.01985343173146248, 0.006876033265143633, -0.05966998264193535, -0.02219800278544426, -0.012079332955181599, -0.005271853879094124, 0.0028672991320490837, 0.010955036617815495, 0.013875464908778667, 0.015411090105772018, 0.016672495752573013, -0.025104720145463943, -0.0025056730955839157, -0.02399413473904133, 0.06849982589483261, -0.010852203704416752, -0.03329014778137207, -0.000819228298496455, 0.056324515491724014, 0.0020172211807221174, -0.0023085784632712603, 0.0276686642318964, -0.011997067369520664, -0.016014371067285538, 0.009878727607429028, -0.025104720145463943, 0.00985130574554205, -0.016631362959742546, 0.0002868584415409714, -0.028052570298314095, -0.0008445078274235129, -0.02114225924015045, -0.04340881481766701, 0.03800670802593231, -0.050703033804893494, 0.042119987308979034, -0.013237906619906425, -0.006457849871367216, 0.019496947526931763, -0.02336343191564083, 0.00360940326936543, 0.03918584808707237, -0.0017498579109087586, 0.009631930850446224, -0.012511227279901505, -0.00043832141091115773, 0.012799156829714775, -0.031891632825136185, -0.011290954425930977, 0.0008436508942395449, 0.023925580084323883, -0.03830834850668907, 0.029505928978323936, 0.0024371184408664703, -0.0381438173353672, -0.0180710107088089, 0.01487636286765337, 0.002546805888414383, 0.038418035954236984, -0.010907048359513283, -0.026585500687360764, 0.005683182273060083, 0.024515150114893913, 0.02114225924015045, -0.007184529211372137, 0.017700815573334694, -0.01088648196309805, 0.017865346744656563, 0.013285894878208637, -0.011270388029515743, -0.025941086933016777, 0.032467491924762726, -0.014561011455953121, -0.03685498982667923, 0.021402766928076744, -0.019743744283914566, -0.021114837378263474, 0.009090349078178406, 0.0024165520444512367, -0.005213582422584295, -0.011194977909326553, 0.047714050859212875, -0.003228924935683608, -0.023418275639414787, -7.144681876525283e-05, -0.00325463293120265, 0.015068315900862217, 0.015781285241246223, 0.02399413473904133, -0.0018012739019468427, -0.00699257617816329, 0.048591550439596176, -0.0017755659064278007, 0.008123728446662426, 0.00835681427270174, -0.005628338549286127, -0.038390614092350006, 0.024186087772250175, -0.004771404899656773, 0.004034442361444235, -0.005121033638715744, -0.0031843644101172686, 0.007273650262504816, 0.012744313105940819, 0.037979286164045334, 0.0002521526475902647, 0.012003922834992409, 0.02118339203298092, 0.011057868599891663, 0.015575621277093887, -0.030547961592674255, 0.03213842958211899, 0.0024868205655366182, -0.03301592916250229, 0.04807053506374359, -0.015082026831805706, 0.01966147869825363, 0.010845348238945007, 0.0006302744732238352, -0.004034442361444235, -0.006670369300991297, 0.007589001674205065, 0.05654389038681984, -0.025420071557164192, 0.04779631644487381, 0.004380643367767334, -0.011338942684233189, 0.015781285241246223, 0.023569095879793167, 0.011030446738004684, 0.034853193908929825, 0.0058751353062689304, 0.01065339520573616, 0.019510658457875252, -0.032330382615327835, 0.024652259424328804, -0.017207222059369087, 0.013717789202928543, 0.007609568536281586, -0.003883622121065855, 0.04746725410223007, 0.029643038287758827, -0.04201029986143112, -0.03329014778137207, 0.07354544848203659, -0.017412886023521423, 0.05917638912796974, -0.02561202459037304, -0.03688241168856621, -0.020799485966563225, 0.010907048359513283, 0.028217101469635963, 0.030712492763996124, 0.010694527998566628, 0.01834522932767868, 0.018866244703531265, -0.01600066013634205, -0.011338942684233189, 0.0063481624238193035, -0.024981321766972542, 0.004092713817954063, 0.007753533311188221, 0.0077603887766599655, 0.012093043886125088, 0.013930308632552624, 0.05254029855132103, -0.003240922000259161, 0.01776937022805214, 0.02055268920958042, -0.022102026268839836, 0.025529759004712105, -0.03164483606815338, -0.006139070726931095, -0.007698689587414265, 0.04716561362147331, 0.026695188134908676, 0.002178324619308114, -0.029834991320967674, 0.03002694435417652, -0.004791971296072006, 0.032933663576841354, 0.015342535451054573, 0.00658467598259449, 0.013237906619906425, 0.04261358082294464, -0.016192613169550896, 0.01996311917901039, 0.02324003353714943, 0.013724644668400288, 0.00028364494210109115, 0.008637888357043266, -0.03688241168856621, 0.012854000553488731, -0.002971844980493188, -0.012106754817068577, 0.009919860400259495, 0.048317331820726395, -0.006639519706368446, 0.030685070902109146, -0.04552030190825462, 0.03093186765909195, 0.014081128872931004, -3.8535221392521635e-05, -0.022006049752235413, -0.00879556406289339, -0.01584983989596367, -0.007664412260055542, 0.021512454375624657, 0.012113610282540321, 0.004466336686164141, -0.032028742134571075, -0.03699209913611412, -0.034249912947416306, -0.038692254573106766, 0.034633819013834, -0.04214740917086601, 0.03359178826212883, 0.0035134267527610064, 0.0014962056884542108, 0.01554819941520691, -0.006680652499198914, -0.005727742798626423, 0.027202492579817772, 0.018989643082022667, 0.008713298477232456, 0.03274171054363251, 0.022856127470731735, 0.016658784821629524, -0.0026324992068111897, -0.005686610005795956, 0.011181266978383064, 0.015109448693692684, 0.011037302203476429, -0.01457472238689661, -0.028792960569262505, -0.024953899905085564, 0.002973558846861124, 0.02559831365942955, 0.0331256166100502, 0.02958819456398487, -0.02410382218658924, 0.01051628589630127, 0.0021988910157233477, 0.023431986570358276, 0.0052924202755093575, 0.04382014647126198, 0.0015227706171572208, -0.001253693480975926, 0.03285139799118042, 0.004624012392014265, 0.00277132261544466, -0.00166502152569592, 0.042421627789735794, 0.005374685861170292, -0.010859059169888496, -0.0015022042207419872, -0.00666008610278368, -0.013210484758019447, 0.004531463608145714, 0.021430188789963722, 0.005271853879094124, -0.028792960569262505, 0.039158426225185394, 0.009981559589505196, -0.014190816320478916, -0.0007618137751705945, 0.035867802798748016, -0.04650748893618584, -0.019167885184288025, -0.005868279840797186, -0.012751168571412563, -0.0019126753322780132, 0.0062590413726866245, -0.03507256880402565, -0.024665970355272293, 0.04719303548336029, -0.03482577204704285, -0.00805517379194498, -0.013820621185004711, 0.0316174142062664, -0.024638548493385315, -0.013045953586697578, 0.047714050859212875, -0.024679681286215782, 0.028628429397940636, -0.04409436509013176, 0.024090111255645752, 0.020017962902784348, 0.032056163996458054, -0.002382274717092514, -0.021718118339776993, 0.012312418781220913, -0.0218963623046875, 0.02425464242696762, 0.025063587352633476, 0.010907048359513283, 0.005426101852208376, -0.014766675420105457, -0.018413783982396126, 0.0021834662184119225, 0.019195307046175003, -0.0053815413266420364, 0.025077298283576965, 0.00743132596835494, 0.05901185795664787, -0.007006287109106779, 0.00184240669477731, 0.026859719306230545, 0.01763226091861725, -0.0019520942587405443, 0.037211474031209946, 0.013724644668400288, 0.012991109862923622, 0.0291768666356802, 0.04900287836790085, -0.011092145927250385, -0.005124461371451616, 0.02399413473904133, -0.0025416642893105745, -0.027010539546608925, 0.025954797863960266, 0.0008397946949116886, 0.0012194161536172032, -0.0066669415682554245, 0.028765538707375526, -0.023623939603567123, 0.017714526504278183, 0.028683273121714592, -0.00894638430327177, 0.002797030610963702, -0.006594959180802107, 0.01131152082234621, -0.0025519474875181913, 0.0035648427437990904, 0.0019520942587405443, 0.0028895793948322535, -0.0054672351107001305, 0.02783319540321827, 0.017070112749934196, 0.007205095607787371, 0.017865346744656563, 0.05352748557925224, -0.0016118916682898998, -0.03759538009762764, -0.0068588946014642715, -0.016329722478985786, 0.0037567957770079374, -0.0001525341358501464, -0.002987269777804613, -0.018688002601265907, 0.019743744283914566, -0.02147132158279419, 0.009042360819876194, -0.049057722091674805, 0.014766675420105457, 0.013902886770665646, -0.012113610282540321, -0.026229016482830048, 0.030164053663611412, 0.0038390615954995155, -0.018016166985034943, 0.031315773725509644, 0.03666303679347038, -0.00926173571497202, -0.0372663177549839, 0.0023976995144039392, -0.02144389972090721, 0.016178902238607407, -0.011928512714803219, -0.015945816412568092, 0.039131004363298416, 0.01147605199366808, -0.05092240869998932, 0.008308826014399529, 0.050675611943006516, 0.0033077627886086702, 0.008953239768743515, -0.024090111255645752, 0.011256677098572254, -0.011208688840270042, -0.0022108880802989006, -0.0017841352382674813, -0.015644175931811333, -0.011530895717442036, 0.003674530191347003, -0.0019675190560519695, 0.04439600557088852, -0.010529996827244759, -0.013347594067454338, 0.00622133631259203, -0.023459408432245255, -0.012195875868201256, 0.007225662004202604, 0.020347025245428085, -0.01674105040729046, -0.0032066446729004383, 0.003859627991914749, 0.029067179188132286, -0.007856365293264389, 0.015781285241246223, 0.012758024036884308, 0.002932426054030657, 0.023185189813375473, -0.02325374446809292, 0.010338043794035912, -0.032056163996458054, -0.03981655091047287, 0.024611126631498337, 0.008713298477232456, -0.0054329573176801205, -0.03674530237913132, 0.015644175931811333, 0.05130631476640701, -0.005021629389375448, -0.004445770289748907, 0.02337714284658432, 0.02517327480018139, 0.0014567867619916797, 0.0372663177549839, 0.03655334934592247, -0.041982877999544144, -0.023569095879793167, 0.025255540385842323, -0.026283860206604004, 0.020621243864297867, 0.004202401265501976, -0.034633819013834, 0.01657651923596859, 0.009501677006483078, -0.0036059755366295576, 0.017796792089939117, -0.019428392872214317, -0.03046569600701332, 0.029039757326245308, 0.011496618390083313, 0.00932343490421772, -0.026900852099061012, -0.050538502633571625, -0.00368481338955462, 0.0190719086676836, -0.012710035778582096, 0.008116872981190681, 0.015945816412568092, -0.03169967979192734, 0.023431986570358276, 0.02738073468208313, 0.0003802641876973212, -0.03167225793004036, -0.016041792929172516, -0.011201833374798298, -0.016782183200120926, -0.02232140116393566, 0.001165429363027215, 0.01501347217708826, 0.022814994677901268, 0.028079992160201073, 0.03921326994895935, -0.0006302744732238352, 0.0045143249444663525, -0.01820812001824379, -0.0381438173353672, 0.03134319558739662, -9.453046368435025e-05, 0.010283200070261955, -0.007883787155151367, 0.006882888730615377, 0.016603941097855568, 0.02887522615492344, -0.009158903732895851, -0.008905251510441303, -0.01597323827445507, -0.0007211094489321113, -0.005528934299945831, 0.0461784265935421, -0.006341306958347559, 0.014794097281992435, 0.02188265137374401, -0.0021046283654868603, -0.010303766466677189, 0.03271428868174553, -0.01100988034158945, -0.033674053847789764, 0.009213747456669807, -0.006708074361085892, -0.0034123086370527744, 0.02073093131184578, -0.002341141924262047, 0.010310621932148933, -0.006608670111745596, 0.037074364721775055, -0.01412226166576147, -0.008651599287986755, 0.024090111255645752, 0.06943216919898987, 0.0014430758310481906, 0.013704078271985054, -0.029643038287758827, 0.02901233546435833, -0.013861753977835178, 0.020319603383541107, 0.005724315065890551, -0.0032717715948820114, 0.008617321960628033, -0.018290385603904724, -0.026270149275660515, 0.03493545949459076, -0.02306179143488407, -0.004325799643993378, -0.010598551481962204, -0.004257244989275932, 0.011853102594614029, -0.0026787735987454653, -0.00561805535107851, 0.02236253395676613, 0.0014310787664726377, 0.036937255412340164, 0.006447566673159599, -0.01582241803407669, 0.013272183947265148, 0.009385134093463421, 0.040940847247838974, 0.012675758451223373, -0.0021337640937417746, 0.0007930918363854289, 0.013649234548211098, 0.003869911190122366, 0.0218963623046875, -0.0071776737459003925, 0.0038801943883299828, -0.003256346797570586, 0.0002999266725964844, 0.00669093569740653, 0.005196443758904934, -0.0043737879022955894, 0.030959289520978928, 0.029259132221341133, 0.022156869992613792, 0.025639446452260017, 0.019003354012966156, -0.01567159779369831, 0.018427494913339615, -0.005957400891929865, -0.005463807377964258, -0.04694623872637749, -0.008891540579497814, 0.013347594067454338, 0.031589992344379425, 0.0039795986376702785, -0.007924919947981834, 0.004569168668240309, 0.02724362537264824, 0.016466831788420677, 0.012744313105940819, -0.01911304146051407, 0.02325374446809292, 0.0013462422648444772, -0.008692732080817223, 0.00044989000889472663, 0.03474350646138191, -0.0031038126908242702, -0.06153467297554016, 0.02513214200735092, -0.020196205005049706, 0.0006217051413841546, -0.02945108525454998, 0.006255613639950752, 0.0022640179377049208, 0.015753863379359245, 0.015356246381998062, 0.034633819013834, -0.005278709344565868, -0.020511556416749954, -0.017796792089939117, 0.029780147597193718, -0.0034243057016283274, -0.012586637400090694, -0.010584840551018715, -0.00640300614759326, -0.018852533772587776, 0.0405295193195343, -0.025186985731124878, -0.03356436640024185, -0.013464136980473995, 0.028463898226618767, 0.008589900098741055, 0.046534910798072815, 0.014149683527648449, 0.037238895893096924, 0.017385464161634445, -0.00422296766191721, 0.0012871138751506805, -0.0022862982004880905, 0.030657649040222168, 0.021663274616003036, 0.008363669738173485, -0.039432644844055176, 0.03109639883041382, 0.0041578407399356365, 0.005066189914941788, 0.0015210567507892847, 0.011133278720080853, -0.020662376657128334, 0.004521180409938097, -0.005131316836923361, -0.01294312160462141, -0.0018458344275131822, 0.027147648856043816, -0.0011431491002440453, -0.039021316915750504, -0.02602335251867771, 0.024981321766972542, -0.006468133069574833, 0.04236678406596184, 0.034387022256851196, -0.008329392410814762, -0.019154174253344536, -0.0004755980335175991, 0.016233745962381363, 0.016658784821629524, 0.017522573471069336, -0.01611034758388996, -0.007753533311188221, -8.730008630664088e-06, -0.04261358082294464, -0.020305892452597618, -0.005576922558248043, 0.003650536062195897, -0.019181596115231514, -0.011743415147066116, -0.005816863849759102, 0.011955934576690197, 0.028066281229257584, 0.034414444118738174, -0.025091009214520454, 0.011620016768574715, -0.00954966526478529, -0.0023737053852528334, 0.012901988811790943, 0.01966147869825363, -0.01006382517516613, 0.015136870555579662, 0.006848611403256655, 0.0053575471974909306, -0.00312609295360744, -0.01776937022805214, 0.02721620351076126, 0.030849602073431015, -0.01642569899559021, 0.03194647654891014, -0.015575621277093887, -0.0034500136971473694, 0.03167225793004036, 0.002843305002897978, 0.007924919947981834, -0.0053061312064528465, 0.006642947439104319, 0.010961892083287239, -0.002368563786149025, 0.026229016482830048, 0.009673063643276691, 0.02531038410961628, 0.01021464541554451, 0.01584983989596367, 0.00286901299841702, 0.003698524320498109, 0.024652259424328804, 0.010907048359513283, 0.017947612330317497, -0.00918632559478283, 0.009556520730257034, -0.02513214200735092, 0.04390241205692291, 0.00706798629835248, 0.004250389523804188, -0.035456474870443344, 0.020621243864297867, 0.02384331449866295, 0.019209017977118492, 0.025858821347355843, 0.0023274309933185577, -0.01940097101032734, -0.017700815573334694, 0.02618788368999958, -0.030739914625883102, -0.004003592766821384, 0.01472554262727499, 0.04206514358520508, 0.008171716704964638, 0.02425464242696762, -0.012915699742734432, -0.005319842137396336, 0.00192295853048563, 0.02441917359828949, -0.02336343191564083, -0.003434588899835944, -0.011496618390083313, 0.0013488130643963814, 0.03090444579720497, -0.004836531821638346, -0.044313739985227585, 0.024761946871876717, 0.03309819474816322, 0.014986050315201283, 0.01849604956805706, -0.021581009030342102, -0.021375345066189766, -0.010543707758188248, 0.029643038287758827, -0.017933901399374008, -0.03021889738738537, -0.02336343191564083, -0.008603611029684544, -0.008178572170436382, -0.010701383464038372, -0.017837924882769585, -0.02324003353714943, -0.02543378248810768, 0.014944917522370815, 0.013327027671039104, -0.015150581486523151, 0.006307029630988836, -0.007211951073259115, 0.03191905468702316, 0.03002694435417652, 0.009693630039691925, 0.046973660588264465, 0.011201833374798298, -0.007349060382694006, 0.0276686642318964, 0.018249252811074257]" -How NLP Cloud Monitors Their Language AI API,"blog. If you have a story or project you’d like to share, reach out on Slack (@Ana Tavares), and we’ll go from there.The open-source relational database for time-series and analytics.Try Timescale for free",https://www.timescale.com/blog/how-nlp-cloud-monitors-their-language-ai-api/,46,"[-0.0028834673576056957, 0.015874434262514114, 0.035578396171331406, 0.0023255334235727787, 0.03899392485618591, 0.00326512660831213, -0.023210052400827408, 0.004233829211443663, -0.03063623420894146, -0.04383258521556854, 0.007594370748847723, -0.033689506351947784, 0.01678006537258625, -0.008370626717805862, 0.028385091572999954, 0.02841096743941307, 0.003538433462381363, -0.010667050257325172, 0.006536722183227539, 0.0652572512626648, 0.0018274359172210097, 0.02509894222021103, 0.005964233074337244, 0.03459513932466507, 0.005142695736140013, -0.021786917001008987, -0.02882497012615204, 0.03467276692390442, 0.020066216588020325, -0.03410351276397705, -0.002993436995893717, -0.03330137953162193, -0.04313395544886589, 0.055062420666217804, 0.04693761095404625, 0.025629384443163872, 0.01874658092856407, -0.012575346045196056, 0.07281281054019928, 0.006536722183227539, -0.019988590851426125, 0.009418572299182415, 0.04442771524190903, 0.03845054283738136, -0.014321922324597836, -0.015460430644452572, -0.03286150097846985, -0.028229841962456703, 0.05511417239904404, 0.07907460629940033, -0.01678006537258625, -0.04983563348650932, -0.0348021425306797, -0.03117961436510086, 0.00642998656257987, -0.01732344552874565, 0.0029869682621210814, 0.01124277338385582, 0.010363017208874226, -0.0009816403035074472, -0.02137291431427002, -0.016663627699017525, 0.02786758914589882, -0.005330290645360947, -0.025616446509957314, 0.011559744365513325, -0.03151599317789078, 0.020208530128002167, -0.0334048792719841, 0.005566401872783899, 0.011889653280377388, 0.014270171523094177, -0.004816021304577589, -0.00728386826813221, 0.024982504546642303, -0.051957398653030396, -0.058063946664333344, 0.038916297256946564, -0.019044145941734314, -0.055528175085783005, -0.006818114779889584, 0.04931812733411789, -0.04398783668875694, 0.04196957126259804, -0.0030160779133439064, -0.042538825422525406, -0.04789499193429947, -0.020855410024523735, -0.01472298800945282, 0.010440642945468426, -0.011753808706998825, 0.03006698004901409, 0.0021055941469967365, 0.03425876423716545, 0.02437443658709526, 0.044841717928647995, 0.005728121846914291, -0.00989079475402832, -0.0056440276093780994, 0.03814004361629486, 0.004621957428753376, -0.038424670696258545, -0.007193305063992739, -0.017543384805321693, -0.017996201291680336, -0.017944449558854103, 0.031386613845825195, -0.0066369883716106415, 0.005569636356085539, 0.00011279969476163387, -0.07415831834077835, -0.031308989971876144, -0.015292242169380188, -0.033275503665208817, -0.00015080388402566314, -0.007316212169826031, 0.01819026470184326, -0.05110351741313934, 0.013985544443130493, -0.05200914666056633, -0.03563014790415764, 0.018410203978419304, -0.00654642516747117, 6.554713036166504e-05, 0.010912864468991756, -0.043651457875967026, -0.02169635333120823, 0.00037276456714607775, -0.025422383099794388, 0.01702588051557541, 0.05089651420712471, -0.0400548055768013, 0.025215379893779755, -0.030920861288905144, -0.012588283978402615, -0.012323062866926193, -0.028126340359449387, -0.019496962428092957, -0.026729078963398933, -0.03671690449118614, 0.03555252403020859, -0.016818879172205925, -0.021269412711262703, -0.031464241445064545, -0.040417060256004333, -0.025150692090392113, 0.006562597118318081, 0.01464536227285862, -0.012290718965232372, -0.03951142728328705, 0.021657541394233704, -0.008952818810939789, -0.04411721229553223, 0.022899551317095757, 0.059564705938100815, -0.0019454914145171642, 0.030170481652021408, 0.003693684469908476, -0.033249631524086, -0.01275000348687172, 0.0685175284743309, 0.02088128589093685, 0.017077630385756493, 0.002962710103020072, -0.038347043097019196, 0.026224512606859207, -0.038269419223070145, -0.023417053744196892, -0.05620092898607254, -0.011533869430422783, -0.02683258056640625, -0.062255725264549255, 0.0030468045733869076, 0.03252512589097023, 0.0057734036818146706, 0.005278540309518576, 0.029031973332166672, -0.02898022159934044, -0.0017012943280860782, 0.007620245683938265, -0.04090868681669235, 0.011812027543783188, -0.03622527793049812, -0.011663245968520641, -0.05032726004719734, 0.016120249405503273, -0.04647185653448105, 0.015628619119524956, 0.02898022159934044, 0.037156783044338226, -0.06308373063802719, 0.029471850022673607, 0.03951142728328705, 0.021334100514650345, 0.05920245498418808, -0.02967885322868824, 0.010667050257325172, 0.026470327749848366, -0.051491644233465195, 0.031774744391441345, 0.011365680955350399, 0.028592094779014587, -0.00019921880448237062, -0.03837291896343231, -0.014101983048021793, 0.015887372195720673, -0.0036451686173677444, 0.010667050257325172, -0.04393608495593071, -0.038269419223070145, 0.018772456794977188, -0.015460430644452572, 0.02493075281381607, -0.029264848679304123, -0.025228317826986313, -0.06401523947715759, 0.008726410567760468, -0.021178849041461945, -0.022498484700918198, 0.01135921198874712, -0.015253429301083088, 0.036535780876874924, 0.007173898629844189, -0.03508676961064339, 0.02002740278840065, 0.039433803409338, 0.03909742459654808, -0.02485312707722187, 0.03757078945636749, 0.006006280425935984, 0.03198174387216568, -0.03594065085053444, -0.019807463511824608, -0.03498326987028122, 0.050534263253211975, 0.014050232246518135, -0.027996964752674103, -0.029497725889086723, 0.0344916395843029, -0.003742200555279851, 0.018953582271933556, -0.02129528857767582, 0.018397266045212746, 0.0326286256313324, -0.01637900061905384, 0.014878238551318645, -0.02874734438955784, -0.07467582076787949, 0.010168952867388725, 0.07653883844614029, 0.017219943925738335, -0.031774744391441345, 0.01773744821548462, 0.008564691059291363, 0.03337900713086128, -0.0655677542090416, -0.0010899927001446486, -0.00906278844922781, 0.043651457875967026, -0.04986150562763214, 0.05056013911962509, -0.053147658705711365, -0.006129187531769276, 0.018177326768636703, -0.017142318189144135, -0.007109210826456547, 0.014929989352822304, -0.0412968173623085, -0.0014134326484054327, -0.009437978267669678, 0.00639440817758441, -0.002624715445563197, 0.01851370371878147, -0.03317200392484665, -0.005155633203685284, -0.02698783203959465, -0.005314118694514036, -0.01293759886175394, 0.018086763098835945, -0.02366286888718605, 0.016676565632224083, -0.022757237777113914, -0.034310512244701385, -0.009315071627497673, 0.02137291431427002, 0.001796709024347365, 0.014334860257804394, 0.025137756019830704, 0.024672001600265503, -0.02352055534720421, -0.012374813668429852, 0.016598939895629883, -0.004647832363843918, -0.04559209942817688, 0.008377095684409142, 0.030299857258796692, 0.03286150097846985, -0.023015988990664482, -0.01900533400475979, -0.009942544624209404, 0.030455108731985092, -0.0013738112756982446, 0.03640640527009964, -0.02565525844693184, 0.008260657079517841, 0.011048709973692894, -0.011093990877270699, -0.004511987790465355, 0.05361340939998627, -0.013002286665141582, -0.02191629260778427, 0.002270548604428768, 0.0019341710722073913, -0.011158679611980915, -0.0015969849191606045, 0.0020845707040280104, 0.028203966096043587, 0.004198250826448202, 0.01694825477898121, -0.05081889033317566, -0.021334100514650345, -0.0536651611328125, 0.0020037107169628143, -0.014929989352822304, -0.00996842049062252, -0.02169635333120823, 0.040494684129953384, -0.012251906096935272, 0.02352055534720421, -0.015861496329307556, 0.0007285485626198351, -0.05516592413187027, 0.012847036123275757, 0.05858144909143448, 0.030532734468579292, -0.04962863028049469, 0.03914917632937431, -0.006061265245079994, -0.015732120722532272, 0.03889042139053345, -0.0330943800508976, -0.03868342190980911, -0.07017353922128677, 0.028203966096043587, 0.025784635916352272, 0.04054643586277962, -0.02500837855041027, 0.0008126429165713489, -0.024891940876841545, -0.030843235552310944, -0.06939727813005447, -0.017362257465720177, -0.03412938490509987, -0.018953582271933556, -0.014541861601173878, 0.005449963733553886, -0.0022252670023590326, -0.026573829352855682, -0.031153738498687744, -0.019419336691498756, -0.02406393364071846, 0.007878998294472694, 0.0406758114695549, -0.03094673715531826, 0.020143842324614525, -0.00330393947660923, -0.02975647710263729, -0.03705328330397606, -0.0028252482879906893, -0.013086381368339062, 0.041684944182634354, -0.004896881058812141, -0.016275499016046524, -0.03837291896343231, -0.05697718635201454, 0.009457385167479515, 0.04259057715535164, 0.008338282816112041, 0.013869105838239193, 0.03643227741122246, 0.009716137312352657, 0.009463854134082794, -0.0009250383591279387, -0.013338664546608925, 0.013545665889978409, 0.034000009298324585, -0.016754191368818283, -0.010181890800595284, -0.020531969144940376, 0.02256317250430584, 0.03405176103115082, 0.004838662222027779, -0.0014926755102351308, 0.021670479327440262, 0.010427705012261868, 0.002564879134297371, 0.014917051419615746, 0.020001528784632683, 0.041426192969083786, -0.019289961084723473, 0.021269412711262703, -0.00909513235092163, -0.03563014790415764, -0.031697116792201996, 0.0037292628549039364, 0.029187222942709923, -0.00045564607717096806, -0.0014522455167025328, -0.0057022469118237495, -0.04225419834256172, -0.05661493539810181, -0.0535099096596241, 0.019587524235248566, 0.002899639308452606, -0.002291572280228138, -0.051724519580602646, -0.023559367284178734, 0.04147794097661972, 0.004621957428753376, 0.06153121963143349, -0.00415620394051075, -0.030532734468579292, 0.007122148294001818, 0.004641363862901926, -0.029782352969050407, 0.05392391234636307, 0.05749468877911568, 0.021722229197621346, 0.007445588242262602, -0.03635465353727341, -0.020635470747947693, -0.002506659831851721, 0.021825728937983513, -0.030041106045246124, -0.0029190457426011562, -0.023378241807222366, 0.040649935603141785, -0.002901256550103426, 0.07741859555244446, 0.037726037204265594, -0.015007615089416504, 0.021256474778056145, -0.015538056381046772, 0.011061646975576878, 0.00867465976625681, -0.025694072246551514, -0.003367010271176696, -0.037881288677453995, -0.030429232865571976, -0.013907918706536293, 0.026133950799703598, -0.06308373063802719, -0.029264848679304123, 0.012575346045196056, -0.03744141012430191, 0.0012306891148909926, 0.00894634984433651, 0.014748862944543362, 0.015952059999108315, -0.005100648384541273, -0.02231735922396183, 0.020130904391407967, -0.031541865319013596, 0.009043381549417973, 0.057184189558029175, -0.06737901270389557, 0.001651969738304615, 0.022343233227729797, -0.0050974139012396336, -0.02072603441774845, 0.03790716454386711, 0.06013396009802818, -0.0067922393791377544, -0.005314118694514036, -0.06815527379512787, 0.007452057208865881, 0.018487829715013504, -0.017931511625647545, -0.006287673022598028, -0.019885089248418808, -0.00039601183380000293, 0.013468041084706783, -0.003150305477902293, 0.061220720410346985, 0.014904114417731762, 0.07379606366157532, 0.02516363002359867, -0.019108833745121956, 0.01368797942996025, 0.006206813268363476, -0.014904114417731762, 0.043806709349155426, 0.03635465353727341, -0.014127857983112335, -0.012064311653375626, -0.017297569662332535, -0.08052361756563187, 0.0037583725061267614, 0.01773744821548462, -0.041193313896656036, -0.05356166139245033, -0.030765609815716743, -0.03110198862850666, 0.04414308816194534, -0.04010655730962753, 0.013726792298257351, -0.02619863860309124, -0.022265607491135597, 0.007717277854681015, 0.002322298940271139, 0.019212335348129272, -0.019910965114831924, 0.04554034769535065, -0.0020732502453029156, 0.0010560315568000078, -0.005369103513658047, -0.04525572061538696, 0.008351219817996025, -0.008926942944526672, -0.02644445188343525, -0.011695589870214462, 0.011042241007089615, -0.04106393828988075, -0.031231364235281944, -0.028592094779014587, -0.0015500860754400492, -0.009011037647724152, -0.031955868005752563, -0.002716895891353488, -0.003305556485429406, -0.010822301730513573, -0.021489351987838745, 0.0012662674998864532, -0.011223367415368557, -0.058684948831796646, 0.020790722221136093, -0.017465759068727493, -0.025849323719739914, -0.02001446671783924, 0.044608842581510544, 0.012297187931835651, 0.028540343046188354, -0.004411721136420965, 0.024879002943634987, -0.030532734468579292, -0.047144610434770584, -0.03547489643096924, -0.012601221911609173, 0.010738207027316093, 0.06629225611686707, 0.032085247337818146, -0.018229076638817787, 0.02604338712990284, -0.010020170360803604, 0.022925425320863724, -0.01064117532223463, 0.024426186457276344, 0.006125953048467636, 0.004599316511303186, 0.026884330436587334, -0.02200685627758503, 0.010945209302008152, 0.009528541937470436, 0.0002605713380035013, -0.020557845011353493, 0.01678006537258625, -0.010874052532017231, -0.04023593291640282, -0.03174886852502823, -0.01064764428883791, -0.0013665339211001992, 0.017375195398926735, -0.019341710954904556, 0.024257998913526535, -0.013843230903148651, 0.015641557052731514, -0.05992696061730385, -0.030972613021731377, 0.006362064275890589, -0.027660587802529335, 0.008648784831166267, -0.010886989533901215, -0.045617975294589996, 0.02112709917128086, -0.05198327451944351, 0.01049239281564951, 0.03832116723060608, 0.025267131626605988, 0.020622532814741135, -0.03979605436325073, 0.005336759611964226, -0.01203196682035923, -0.021980980411171913, -0.015693306922912598, 0.04292695224285126, -0.012400688603520393, 0.021178849041461945, 0.004224126227200031, -0.008603502996265888, 0.029264848679304123, 0.04039118438959122, 0.0018775691278278828, -0.005812216550111771, -0.019018270075321198, 0.01758219674229622, -0.009606167674064636, -0.031852368265390396, -0.003145453752949834, 0.014942927286028862, 0.0009573823190294206, -0.003713090904057026, 0.002605309011414647, 0.01866895519196987, -0.07229530066251755, -0.0054887766018509865, -0.0064105805940926075, -4.416977026266977e-05, 0.02082953415811062, 0.034776266664266586, -0.035345520824193954, -0.016029685735702515, -0.004777208436280489, -0.015098177827894688, -0.02747946046292782, 0.013649167492985725, 0.02075190842151642, -0.014852363616228104, -0.0344916395843029, -0.01765982247889042, 0.014891176484525204, 0.0395890548825264, -0.006184172350913286, 0.04339270666241646, 0.012135468423366547, -0.015770932659506798, -0.011572682298719883, 0.0031907353550195694, 0.05345815792679787, 0.01668950356543064, -0.012950536794960499, 0.03236987441778183, 0.013791481032967567, -0.011300993151962757, -0.03379300981760025, 0.03425876423716545, -0.009192164056003094, 0.008855786174535751, 0.02421918511390686, -0.01285997312515974, 0.009528541937470436, -0.02659970335662365, 0.017711572349071503, 0.024982504546642303, 0.00882991123944521, 0.010421236045658588, -0.03552664816379547, -0.014192545786499977, -0.006132422015070915, 0.027841713279485703, 0.020790722221136093, 0.0013835144927725196, 0.013959669508039951, -0.02890259586274624, 0.002160578966140747, -0.032266370952129364, 0.001116676488891244, -0.0021735166665166616, 0.02921309880912304, 0.00958029180765152, 0.03345663100481033, -0.0016406492795795202, 0.040313560515642166, 0.03172299265861511, 0.015136990696191788, 0.022226795554161072, -0.007840185426175594, -0.008816974237561226, -0.009871387854218483, 0.03909742459654808, 0.04908525198698044, -0.02627626433968544, -0.017543384805321693, -0.014503048732876778, 0.025150692090392113, 0.02199391834437847, -0.023455867543816566, -0.010880520567297935, 0.01866895519196987, 0.026961956173181534, 0.008959287777543068, -0.01860426738858223, 0.012555940076708794, 0.004554034676402807, -0.030610360205173492, -0.013920856639742851, 0.00206678151153028, -0.00479014590382576, 0.019018270075321198, -0.01679300330579281, -0.019212335348129272, 0.009573823772370815, -0.026729078963398933, -0.04843837022781372, -0.0008652019314467907, 0.010194827802479267, -0.01079642679542303, 0.042305950075387955, -0.005931889172643423, 0.03560427203774452, -0.009599698707461357, -0.05625268071889877, -0.00282039656303823, -0.025512944906949997, 0.03506089374423027, -0.026418577879667282, 0.002526066266000271, -0.00961910467594862, 0.0005365060642361641, -0.041917819529771805, 0.014865301549434662, -0.025150692090392113, 0.006805177312344313, -0.035656023770570755, -0.0397443063557148, 0.0020538438111543655, -0.015796808525919914, -0.0005389318685047328, 0.017776262015104294, -0.005200915038585663, -0.017530446872115135, 0.01819026470184326, 0.019419336691498756, 0.013299851678311825, 0.010505330748856068, 0.02921309880912304, -0.0038489357102662325, -0.004573441110551357, 0.019678087905049324, -0.03205937147140503, -0.023533493280410767, -0.004634894896298647, 0.03539727255702019, -0.008933411911129951, 0.02898022159934044, 0.006908677984029055, -0.05361340939998627, -0.0006104929489083588, 0.03563014790415764, 0.03244749829173088, -0.0028753813821822405, 0.018267890438437462, 0.010233640670776367, -0.008500002324581146, -0.009243914857506752, -0.008687597699463367, -0.04836074635386467, -0.022382047027349472, 0.02326180413365364, 0.02547413296997547, 0.010013701394200325, -0.012510658241808414, 0.054648417979478836, -0.016741253435611725, 0.029937604442238808, -0.010220703668892384, 0.00011178894055774435, -0.03055860847234726, 0.025512944906949997, -0.010039577260613441, -0.047843240201473236, 0.013183413073420525, -0.033508382737636566, -0.013028162531554699, -0.004858068656176329, 0.06277322769165039, 0.0005312501452863216, -0.041038066148757935, 0.026418577879667282, 0.010595893487334251, -0.02802284061908722, 0.024891940876841545, 0.01449011079967022, -0.01139802485704422, -0.06163472309708595, 0.0014627573546022177, -0.02152816578745842, 0.01071880105882883, -0.005880138836801052, -0.022912487387657166, 0.00894634984433651, -0.03469863906502724, -0.016197873279452324, -0.0002417713840259239, -0.02191629260778427, 0.029937604442238808, -0.00724505539983511, -0.017763324081897736, -0.055062420666217804, -0.023145364597439766, 0.02398630790412426, 0.00958029180765152, 0.015693306922912598, 0.011546807363629341, 0.007270930800586939, 0.019729837775230408, 0.024490874260663986, -0.012614158913493156, 0.010854645632207394, -0.04882650077342987, -0.024257998913526535, 0.005333525128662586, 0.0030759142246097326, 0.023210052400827408, 0.003923326730728149, 0.007600839715451002, 0.030170481652021408, 0.043496210128068924, 0.02352055534720421, 0.0048645371571183205, 0.0030662110075354576, 0.07664233446121216, 0.01821613870561123, -0.03063623420894146, -0.008331813849508762, 0.029394226148724556, 0.02064840868115425, 0.002629566937685013, 0.03456926345825195, -0.0049356939271092415, -0.015214616432785988, -0.0194840244948864, -0.030222231522202492, 0.05620092898607254, -0.01939346082508564, 0.032240498811006546, -0.0014773120637983084, 0.0038101228419691324, -0.0462389774620533, -0.03868342190980911, 0.04815374314785004, -0.020557845011353493, 0.05640793219208717, 0.00879109837114811, 0.009586760774254799, 0.015085240826010704, -0.0013924090890213847, 0.0005320587661117315, 0.019975652918219566, 0.032240498811006546, 0.007963092066347599, -0.008390032686293125, -0.025758760049939156, 0.01056354958564043, -0.01916058361530304, -0.036768656224012375, 0.03190411999821663, 0.005407916381955147, -0.007976029999554157, -0.0025422382168471813, 0.016016747802495956, -0.054751917719841, -0.03583715111017227, -0.00407534372061491, 0.006436455529183149, -0.0013123577227815986, -0.036147650331258774, 0.003142219502478838, 0.00324410293251276, 0.06303198635578156, 0.04986150562763214, 0.01892770826816559, 0.027039581909775734, -0.0056116837076842785, 0.00830593891441822, -0.004233829211443663, 0.008952818810939789, -0.042771704494953156, 0.009405634365975857, -0.00249210512265563, -0.045954350382089615, 0.019652213901281357, 0.0028123105876147747, -0.002993436995893717, 0.009683793410658836, 0.01476180087774992, 0.008467658422887325, 0.01143683772534132, 0.04502284526824951, 0.006562597118318081, -0.0017012943280860782, 0.004201485309749842, 0.013545665889978409, 0.02874734438955784, -0.015098177827894688, -0.01468417514115572, -0.015563931316137314, -0.022382047027349472, 0.0005263985367491841, -0.012601221911609173, 0.04204719886183739, 0.041917819529771805, 0.030765609815716743, -0.024827253073453903, 0.03860579431056976, -0.020156780257821083, -0.012704722583293915, 0.002495339373126626, 0.006423518061637878, 0.0028656781651079655, -0.001207239693030715, -0.022200919687747955, -0.009483260102570057, 0.02072603441774845, 0.03793304041028023, 0.011863778345286846, 0.013843230903148651, -0.012200156226754189, 0.02810046449303627, -0.01234893873333931, -0.040805187076330185, 0.011928466148674488, 0.019975652918219566, 0.018423141911625862, 0.024193311110138893, -0.023442929610610008, 0.0003185883688274771, -0.027168957516551018, 0.009444447234272957, 0.04256470128893852, 0.00795662309974432, 0.052604276686906815, 0.021942168474197388, -0.022770173847675323, 0.02588813565671444, 0.021114161238074303, -0.017685698345303535, 0.02675495482981205, -0.00799543596804142, -0.0022220327518880367, -0.01064764428883791, -0.02581050992012024, 0.02002740278840065, -0.007393837906420231, -0.026315076276659966, 0.025603508576750755, -0.014399548061192036, 0.03441401198506355, 0.05079301446676254, -0.022252671420574188, -0.03055860847234726, 0.020169716328382492, 0.01789269968867302, 0.07301981002092361, -0.027350084856152534, -0.006889271549880505, -0.050534263253211975, -0.027453584596514702, 0.0009193781297653913, 0.0481019951403141, 0.02415449731051922, -0.006058030761778355, 0.0014029209269210696, -0.04287520423531532, -0.02143760211765766, 0.010938740335404873, 0.006064499728381634, 0.01527930423617363, -0.008390032686293125, 0.06116896867752075, 0.00477073946967721, 0.007930748164653778, 0.032499250024557114, 0.02333942800760269, 0.018177326768636703, 0.002391838701441884, 0.00363223091699183, 0.023365303874015808, -0.029627101495862007, 0.021657541394233704, -0.01071880105882883, 0.05495892092585564, 0.019975652918219566, -0.008603502996265888, -0.03568189963698387, 0.024400312453508377, -0.021735167130827904, -0.025034254416823387, 0.02571994625031948, 0.008959287777543068, -0.0014045380521565676, 0.02415449731051922, -0.02406393364071846, -0.0032376341987401247, 0.021864542737603188, 0.02587519772350788, -0.017621010541915894, 0.009069257415831089, -0.009528541937470436, 0.02064840868115425, 0.027505336329340935, -0.019212335348129272, 0.020609594881534576, 0.026884330436587334, -0.01797032542526722, 0.028307467699050903, -0.017918575555086136, -0.007296805735677481, -0.008409439586102962, 0.007536151446402073, -0.01747869700193405, 0.011042241007089615, 0.013047568500041962, 0.007167430128902197, 0.004220891743898392, 0.0018177327001467347, -0.009437978267669678, 0.009185695089399815, -0.031929995864629745, -0.026146888732910156, -0.0457732267677784, 0.005779872182756662, -0.018643081188201904, 0.05811569467186928, -0.028359217569231987, -0.013157538138329983, -0.032654501497745514, 0.005126523785293102, -0.000669116445351392, -0.008066592738032341, 0.01916058361530304, -0.014438360929489136, 0.027660587802529335, 0.02089422196149826, 0.035190269351005554, -0.0024613782297819853, 0.0055211205035448074, 0.008105405606329441, -0.01393379457294941, 0.011902591213583946, -0.004068874754011631, -0.013403352349996567, -0.03917504847049713, -0.004508753307163715, 0.05501067265868187, 0.016637751832604408, 0.03125723823904991, -0.003145453752949834, 0.008487065322697163, 0.02327474020421505, 0.0058898418210446835, 0.03345663100481033, 0.00898516271263361, 0.0034672764595597982, 0.006601409986615181, -0.007665527518838644, -0.0033637757878750563, 0.002810693345963955, 0.010460048913955688, 0.04194369539618492, -0.007290337234735489, -0.005841325968503952, 0.00728386826813221, 0.007801372092217207, -0.00822831317782402, -0.009405634365975857, 0.014813550747931004, 0.02643151581287384, -0.0340258851647377, 0.030377482995390892, -0.007555557880550623, -0.006417049095034599, -5.837080971105024e-05, 0.007413244340568781, -0.02683258056640625, -0.005925420206040144, -0.013700917363166809, 0.013662104494869709, -0.04002893343567848, 0.004460237454622984, -0.009593229740858078, -0.005867201369255781, 0.01747869700193405, -0.010434173978865147, 0.02825571596622467, -0.013105788268148899, 0.013261038810014725, -0.0037163253873586655, -0.006203578785061836, 0.030299857258796692, -0.023404117673635483, 0.011307461187243462, -0.029885854572057724, 0.017077630385756493, -0.006200344301760197, 0.017219943925738335, -0.007859591394662857, 0.00018395649385638535, 0.026315076276659966, 0.008545284159481525, 0.019742775708436966, -0.00961263570934534, -0.004207954276353121, -0.00020194784156046808, 0.0032052902970463037, -0.009910200722515583, -0.0029190457426011562, 0.005275305826216936, -0.014257234521210194, 0.01670243963599205, 0.018229076638817787, 0.04921462759375572, -0.0033993541728705168, 0.006869865115731955, 0.00019638871890492737, 0.04282345250248909, -0.008441783487796783, 0.030170481652021408, -0.008415908552706242, -0.013228694908320904, 0.010744675993919373, 0.045876726508140564, -0.025901073589920998, 0.032654501497745514, 0.0031001721508800983, 0.005472604651004076, -0.016094373539090157, 0.018850082531571388, -0.008532346226274967, -0.03345663100481033, -0.029730603098869324, 0.0014215187402442098, -0.030351607128977776, 0.013519790954887867, 0.017038818448781967, 0.006662863772362471, 0.017465759068727493, -0.004609019495546818, 0.0014336477033793926, -0.007807841058820486, -0.027841713279485703, 0.015136990696191788, 0.017284631729125977, -0.019665149971842766, 0.01755632273852825, 0.006856927648186684, 0.027815837413072586, 0.025784635916352272, 0.054337915033102036, 0.015809746459126472, -0.005139461252838373, 0.011850840412080288, -0.01742694526910782, 0.010253047570586205, 0.006077437195926905, 0.013713855296373367, 0.0004004591319244355, 0.047610364854335785, -0.0005975553649477661, -0.01756925880908966, -0.023442929610610008, 0.012782348319888115, 0.026780830696225166, 0.007038054056465626, 0.017763324081897736, -0.005310884211212397, 0.009004568681120872, -0.042228322476148605, 0.02327474020421505, 0.03544902056455612, -0.028152216225862503, 0.010343610309064388, 0.01238128263503313, -0.02755708619952202, 0.0323181226849556, -0.001968132331967354, -0.009373290464282036, 0.024659063667058945, 0.008694066666066647, -0.03270624950528145, 0.02810046449303627, 0.04401371255517006, -0.023494679480791092, -0.008778161369264126, -0.027246583253145218, 0.015124053694307804, -0.002624715445563197, -0.011909060180187225, 0.005967467557638884, -0.011566213332116604, 0.008066592738032341, -0.03086911141872406, 0.009179226122796535, 0.0008203246397897601, -0.025034254416823387, -0.022692548111081123, 0.017944449558854103, -0.033249631524086, -0.018487829715013504, 0.01524049136787653, -0.00025228317826986313, -0.010084858164191246, -0.003761606989428401, -0.0038780453614890575, 0.040494684129953384, 0.0032376341987401247, 0.04442771524190903, 0.006168000400066376, -0.024102747440338135, -0.0005660199676640332, -0.009987826459109783, -0.016521314159035683, -0.014089045114815235, -0.008480596356093884, 0.0010600745445117354, -0.01837139017879963, 0.001723935129120946, -0.01045357994735241, 0.013151069171726704, 0.024736689403653145, 0.01820320263504982, 0.021825728937983513, 0.03521614521741867, 0.020467281341552734, 0.038269419223070145, 0.032473374158144, 0.027350084856152534, -0.023792244493961334, -0.027893463149666786, 0.026159824803471565, -0.018254952505230904, 0.03586302325129509, -0.02287367545068264, -0.03594065085053444, -0.02882497012615204, 0.007626714650541544, 0.04147794097661972, -0.017763324081897736, -0.021955106407403946, 0.011960810050368309, 0.022576110437512398, 0.016754191368818283, -0.010544143617153168, -0.007439119275659323, -0.025603508576750755, -0.008441783487796783, 0.00730327470228076, -0.021114161238074303, 0.022420858964323997, -0.012633565813302994, -0.03055860847234726, 0.03997718170285225, -0.0045863790437579155, -0.009573823772370815, -0.022304421290755272, -0.02405099757015705, -0.016340186819434166, -0.008655253797769547, -0.016586001962423325, 0.01568037085235119, 0.01622374914586544, 0.0011983450967818499, 0.030196355655789375, 0.01931583508849144, 0.029342474415898323, 0.0009589995606802404, -0.008597034960985184, -0.003988014999777079, 0.01583562046289444, -0.0006444541504606605, -0.006323251407593489, -0.008914005942642689, -0.010705863125622272, -0.008707004599273205, 0.037156783044338226, -0.04590260237455368, 0.05356166139245033, -0.007542620413005352, 0.004366439767181873, 0.01483942661434412, 0.03847641870379448, -0.027039581909775734, 0.05237140133976936, -0.012536533176898956, 0.005029491614550352, -0.00910160131752491, 0.023442929610610008, -0.0013624909333884716, -0.01797032542526722, 0.03498326987028122, 0.008707004599273205, -0.02207154408097267, 0.016003809869289398, -0.007833716459572315, 0.02706545777618885, 0.017931511625647545, 0.026780830696225166, -0.018022075295448303, -0.016107311472296715, 0.017905637621879578, 0.008700535632669926, 0.02375343255698681, 0.009114538319408894, -0.015977934002876282, 0.013429228216409683, -0.02066134661436081, 0.0048321932554244995, -0.004356736317276955, 0.0056504965759813786, 0.008241250179708004, -0.008325344882905483, -0.03759666159749031, 0.003003140212967992, 0.0005009276792407036, 0.013623291626572609, -0.0065658316016197205, -0.04106393828988075, 0.05182802304625511, 0.009683793410658836, -0.008875193074345589, 0.004938928410410881, 0.018099701032042503, 0.02002740278840065, -0.019885089248418808, -0.03650990501046181, 0.00901750661432743, 0.019134709611535072, 0.0067793019115924835, 0.013532728888094425, -0.007587901782244444, -0.015369867905974388, 0.03358600661158562, 0.00720624253153801, -0.003307173727080226, 0.004046234302222729, -0.014425422996282578, -0.016120249405503273, -0.00202796864323318, -0.011106928810477257, 0.021877480670809746, -0.006520549766719341, 0.0417625717818737, -0.0016050708945840597, -0.0019826870411634445, 0.01127511728554964, 0.0015428087208420038, -0.04585085064172745, 0.013636229559779167, -0.02833334170281887, 0.014580674469470978, -0.014580674469470978, -0.005899545270949602, 0.01377854309976101, -0.0003012034867424518, -0.01566743291914463, 0.022757237777113914, -0.00890106800943613, 0.0025373867247253656, 0.01645662635564804, -0.011229836381971836, -0.023404117673635483, 0.009108069352805614, 0.0026732315309345722, -0.009664386510848999, 0.011921997182071209, 0.043884336948394775, 0.017517508938908577, -0.036691032350063324, -7.115679181879386e-05, -0.013351602479815483, 0.007840185426175594, -0.05309590697288513, 0.0006294950726442039, 0.0068633961491286755, 0.011456243693828583, -0.033508382737636566, 0.016133185476064682, 0.01147565059363842, -0.0330943800508976, -0.0043729087337851524, 0.032809752970933914, -0.0008991631329990923, 0.006436455529183149, 0.0049486318603158, -0.02429681085050106, 0.0013252953067421913, 0.02145054005086422, -0.010893458500504494, -0.009256851859390736, 0.006012749392539263, -0.001277587958611548, -0.01860426738858223, 0.019018270075321198, 0.021476414054632187, 0.019755713641643524, -0.00039520321297459304, -0.00413356302306056, 0.007458525709807873, -0.032266370952129364, 0.006248860154300928, 0.003603121265769005, -0.012568878009915352, -0.05542467534542084, 0.01139155589044094, -0.00020033064356539398, 0.030817361548542976, 0.01575799658894539, 0.004641363862901926, -0.009153351187705994, -0.03744141012430191, 0.019432274624705315, -0.024025121703743935, 0.015783870592713356, -0.0028737641405314207, 0.03071385994553566, -0.04962863028049469, -0.01821613870561123, 0.044453591108322144, 0.009987826459109783, 0.026884330436587334, 0.015382804907858372, -0.014580674469470978, -0.05780519172549248, -0.016922378912568092, 0.0008191117667593062, 0.012504189275205135, 0.020221468061208725, -0.032887376844882965, 0.0023562603164464235, -0.006662863772362471, -0.053147658705711365, -0.02643151581287384, -0.005103882867842913, -0.004385846201330423, 0.003093703417107463, -0.02524125576019287, -0.002728216117247939, 0.00577663816511631, 0.022019794210791588, 0.010841707699000835, 0.0045863790437579155, -0.010227171704173088, 0.049913257360458374, -0.01821613870561123, -0.02421918511390686, 0.048231370747089386, 0.003952436614781618, -0.022860737517476082, 0.01907002180814743, 0.010020170360803604, 0.010582956485450268, -0.006155062932521105, 0.022679612040519714, 0.058529697358608246, 0.007574964314699173, 0.02042846940457821, 0.0068504586815834045, -0.005708715412765741, 0.017232881858944893, 0.013623291626572609, -0.006404111627489328, -0.06349773705005646, 0.0014021123060956597, -0.010893458500504494, 0.023365303874015808, 0.02168341539800167, -0.015369867905974388, 0.005517886020243168, 0.023235928267240524, -0.0018436078680679202, 0.002239821944385767, 0.005230024456977844, -0.0036872157361358404, -0.004379377234727144, 0.010932271368801594, 0.015214616432785988, 0.015162866562604904, -0.027531210333108902, 0.02082953415811062, 0.014179608784615993, 0.007458525709807873, -0.016896504908800125, 0.010065452195703983, -0.026069262996315956, 0.01795738749206066, 0.004841896705329418, -0.011223367415368557, -0.02161872759461403, -0.03609590232372284, 0.011909060180187225, -0.011113397777080536, 0.016987068578600883, -0.007982498966157436, 0.06199697405099869, -0.002566496143117547, 0.03671690449118614, 0.011585620231926441, 0.0019632806070148945, -0.011423899792134762, 0.030998487025499344, -0.0016050708945840597, -0.01773744821548462, -0.036846283823251724, 0.044841717928647995, 0.0041367975063622, 0.00826712604612112, -0.04631660506129265, 0.01907002180814743, 0.04652360826730728, -0.021903354674577713, 0.02652207762002945, -0.00204737507738173, -0.019095895811915398, 0.017918575555086136, 0.022847799584269524, 0.003952436614781618, -0.011818496510386467, -0.036277029663324356, -0.006219750735908747, -0.027453584596514702, 0.008603502996265888, -0.01811263896524906, 0.0273759588599205, -0.044919345527887344, -0.008105405606329441, 0.0046187229454517365, -0.014878238551318645, -0.03666515648365021, 0.013202819973230362, 0.016055559739470482, 0.03275800123810768, -0.004389080684632063, 0.00886225514113903, 0.018772456794977188, 0.01452892366796732, 0.02874734438955784, -0.02342999167740345]" -Visualizing IoT Data at Scale With Hopara and TimescaleDB,"IntroductionI have been involved in building DBMSs for 50 years. During that time, I have been the main architect behind PostgreSQL (the foundation of Timescale), Vertica, VoltDB, and Paradigm4. Recently, I have been studying user-facing problems, most notably, “How do users derive information from the massive amount of data we are collecting?”Sometimes users know exactly what they are interested in, and a conventional dashboard (such as Tableau or Spotfire) can help them find it. Often, however, the real question behind a query a user wants to run is, “Tell me something interesting?” I.e., “Show me an actionable insight.” To provide these meaningful data insights, a sophisticated visualization system is needed to complement more traditional analytics systems.I have long been a fan of Google Maps, which allows you to go from a picture of the Earth to the plot map on your street in 21 clicks. This is an exemplar of a “detail on demand” system, often called a “pan-zoom” interface. A big advantage of such systems is that no user manual is required since the interface is so intuitive. Unfortunately, Google Maps only works for geographic data. So what to do if you have floor plans, 3D models, scatter plots, or the myriad of other representations that users want to see?Hoparacan be thought of as “Google Maps on steroids.” It will produce pan-zoom displays for any kind of data. It is especially applicable for real-time monitoring applications, often from IoT data collection or asset tracking of sensor-tagged devices.Hopara is almost three years old, headquartered in Boston, and employs 12 people.Figure 1. Example of a Hopara app in the lab space (powered by Timescale)In this post, I will walk you through a Hopara monitoring application powered by TimescaleDB. It shows the benefit of Hopara visualization aided by a traditional analytics dashboard. This application reports vibration issues in sensor-tagged machines, and the real-time vibration data is stored in a Timescale database for effective real-time querying.The Problem: Monitoring (Lots of) Sensor Data in Real TimeLet’s consider a French company that operates 58 factories in Brazil, manufacturing construction materials (think pipes, glue, and nails). This company is referred to as FC in the rest of this post.FC is in the process of installing about 50K sensors from a Brazilian vendor, IBBX. These sensors primarily report vibration, typically at",https://www.timescale.com/blog/visualizing-iot-data-at-scale-with-hopara-and-timescaledb/,506,"[-0.0020442612003535032, 0.040024083107709885, 0.046608392149209976, 0.019905351102352142, 0.03670144081115723, -0.006870089564472437, -0.01649126224219799, 0.024508273229002953, -0.0042866612784564495, -0.018609825521707535, 0.04813253879547119, -0.029842784628272057, -0.006710053887218237, -0.044474586844444275, 0.04718757048249245, 0.01296286378055811, -0.004972527269273996, -0.015927327796816826, -0.030071405693888664, 0.03810365870594978, -0.0072739883325994015, 0.015988294035196304, -0.0032769145909696817, -0.004541955888271332, 0.0013031450798735023, -0.01676560938358307, -0.030330510810017586, 0.09705763310194016, 0.03459811955690384, -0.05407670885324478, 0.0023357542231678963, -0.035573575645685196, -0.032159484922885895, -0.000992600223980844, 0.020911287516355515, 0.004160919226706028, -0.005307839252054691, 0.011987410485744476, -0.002886352129280567, 0.0213075652718544, -0.003861805656924844, 0.0033874150831252337, 0.012101721949875355, 0.04776674509048462, 0.027724221348762512, 0.005265925545245409, -0.04075567051768303, 0.002120468532666564, 0.0050068204291164875, 0.03859138488769531, -0.043925896286964417, -0.012719000689685345, -0.008923876099288464, -0.05209532007575035, -0.01231510192155838, -0.03197658807039261, 0.008222769014537334, 0.05230870097875595, 0.005658393260091543, -0.010935749858617783, 0.01889941468834877, -0.04919944331049919, 0.03651854395866394, 0.009792639873921871, -0.031824175268411636, 0.045602455735206604, -0.037981726229190826, -0.016186432912945747, -0.03404942899942398, 0.030711548402905464, 0.061392612755298615, 0.07218357175588608, 0.019143277779221535, 0.00523544242605567, 0.03319590538740158, -0.05364995077252388, -0.04849833622574806, 0.03133644908666611, -0.03340928629040718, -0.006348069291561842, 0.031138308346271515, 0.0051935282535851, 0.008352321572601795, 0.005921308416873217, 0.00031483147176913917, -0.05002248287200928, -0.0364270955324173, -0.023700475692749023, -0.024980757385492325, 0.017954442650079727, -0.010897645726799965, 0.0762682780623436, 0.009182981215417385, 0.02543800137937069, 0.03511632978916168, -0.008077975362539291, 0.0005105889867991209, -0.023578543215990067, 0.006340448744595051, 0.012467516586184502, 0.014906150288879871, -0.03566502407193184, -0.011530166491866112, -0.02591048739850521, 0.03859138488769531, 0.0008168471395038068, 0.002316702390089631, 0.040085047483444214, 0.03651854395866394, -0.008626667782664299, -0.0696839690208435, -0.030345752835273743, -0.05349753424525261, 0.017116162925958633, -0.023685233667492867, 0.00033483587321825325, -0.021703843027353287, -0.030924927443265915, 0.022831711918115616, -0.03276914358139038, -0.04477941617369652, -0.0052202008664608, -0.023837648332118988, 0.024828342720866203, 0.014532734639942646, -0.044139277189970016, -0.004046608228236437, -0.01148444227874279, -0.009708811528980732, -0.03871331736445427, 0.06511153280735016, -0.009777398779988289, 0.0415482260286808, -0.04679129272699356, 0.014669908210635185, -0.026001935824751854, -0.04996151477098465, 0.012543723918497562, -0.007235884666442871, -0.0073654367588460445, -0.01800016686320305, -0.023167023435235023, 0.06322158873081207, -0.03496391698718071, -0.01697899028658867, 0.005486926529556513, -0.005014441441744566, 0.033653151243925095, 0.006633846554905176, -0.022100120782852173, 0.02629152312874794, -0.017329543828964233, -0.041365329176187515, -0.012795208021998405, 0.060691505670547485, 0.015363394282758236, 0.030376235023140907, 0.028608225286006927, -0.04212740436196327, -0.007270177826285362, -0.030879203230142593, 0.009266809560358524, 0.008222769014537334, -0.02254212275147438, -0.03593936935067177, 0.004606732167303562, -0.041090983897447586, -0.010341332294046879, -0.08474253118038177, -0.007700749207288027, -0.051485661417245865, -0.0553874745965004, -0.011545408517122269, 0.0106004374101758, 0.05288787558674812, 0.006542398128658533, -0.002977800788357854, -0.04416976124048233, 0.005829859524965286, -0.05974653363227844, -0.047248534858226776, 0.013366762548685074, -0.03222045302391052, 0.018503135070204735, -0.015668224543333054, -0.0037493999116122723, -0.04359058290719986, 0.024325374513864517, -0.02479786053299904, 0.04974813386797905, -0.04267609491944313, 0.055509407073259354, 0.048376403748989105, 0.02537703514099121, 0.0016841816250234842, -0.05883204564452171, 0.01231510192155838, 0.009838364087045193, -0.011080543510615826, -0.01809161715209484, 0.03395798057317734, 0.008565702475607395, 0.06956204026937485, -0.03100113570690155, 0.026535386219620705, 0.018594585359096527, 0.031046859920024872, -0.013702074997127056, -0.019463347271084785, -0.03142789751291275, -0.0019623383414000273, 0.013732558116316795, 0.03465908765792847, 0.015912087634205818, -0.01627788320183754, -0.01943286508321762, -0.05054068937897682, 0.03246431425213814, 0.010295608080923557, 0.01303907111287117, -0.018442170694470406, 0.06255096197128296, 0.03484198451042175, 0.014250767417252064, -0.025346552953124046, 0.0068586585111916065, 0.010775714181363583, -0.015089048072695732, 0.03130596503615379, 0.004740094766020775, 0.03426280990242958, -0.02458447962999344, 0.022252535447478294, -0.014898530207574368, 0.017908718436956406, -0.007544524036347866, 0.039231523871421814, -0.002048071473836899, -0.008238011039793491, 0.0023338489700108767, 0.00520876981317997, 0.032952044159173965, 0.021871499717235565, -0.007677887100726366, 0.00964022520929575, 0.020743630826473236, -0.0449623167514801, -0.0796823650598526, 0.03511632978916168, 0.016293123364448547, 0.015264324843883514, -0.013702074997127056, -0.0284405704587698, -0.017253335565328598, -0.03624419867992401, -0.014487010426819324, -0.06980589777231216, 0.035146813839673996, -0.017420992255210876, -0.009312533773481846, 0.014997599646449089, 0.006561449728906155, -0.019737694412469864, 0.00992981344461441, -0.01408311165869236, -0.01311527844518423, 0.03334832191467285, -0.0451756976544857, -0.040938571095466614, -0.05075407028198242, 0.04493183270096779, 0.04541955888271332, 0.011415855959057808, -0.014593700878322124, -0.04572438821196556, 0.008687634021043777, 0.008123699575662613, -0.02533131092786789, 0.013915455900132656, -0.003616037080064416, 0.0029073089826852083, 0.027495598420500755, 0.039383940398693085, 0.03581743687391281, 0.016369331628084183, 0.024020545184612274, 0.03368363156914711, 0.012017893604934216, 0.000782077549956739, -0.020484525710344315, 0.01218554936349392, -0.010745231062173843, 0.011232958175241947, 0.001908993232063949, 0.01617119275033474, 0.03596985340118408, 0.01486042607575655, -0.025834279134869576, -0.008321838453412056, -0.04712660238146782, 0.02484358474612236, -0.02537703514099121, -0.010981474071741104, -0.03914007544517517, 0.020484525710344315, 0.011149129830300808, -0.020591216161847115, 0.016796091571450233, -0.02296888455748558, -0.013343900442123413, -0.03926200792193413, -0.032586246728897095, 0.028074774891138077, 0.009731673635542393, -0.0052468734793365, -0.027266977354884148, 0.07407350838184357, -0.025727588683366776, -0.01853361912071705, -0.08242583274841309, -0.033500734716653824, -0.06858658045530319, 0.006908193230628967, -0.011210096068680286, -0.006710053887218237, -0.04621211439371109, 0.030985893681645393, -0.011057681404054165, 0.02194770611822605, -0.010585196316242218, 0.00629091402515769, 0.016887539997696877, 0.017542922869324684, 0.013107658363878727, -0.044200241565704346, -0.07090328633785248, -0.018396446481347084, -0.02414247766137123, -0.004099953453987837, -0.006607173942029476, 0.008542840369045734, -0.026154350489377975, -0.04941282421350479, 0.02040831930935383, 0.005864152684807777, 0.0073006609454751015, -0.014395562000572681, -0.023426128551363945, -0.008009389042854309, 0.004587680101394653, -0.052979324012994766, -0.008634288795292377, 0.01260469015687704, -7.864832878112793e-05, 0.016536986455321312, 0.009868847206234932, -0.009038187563419342, -0.012558965012431145, -0.0573078989982605, -0.023685233667492867, -0.0303609948605299, 0.038957178592681885, 0.030818238854408264, -0.004732474219053984, 0.004050418734550476, 0.028242431581020355, -0.029629403725266457, -0.009685949422419071, -0.02805953286588192, -0.004873457830399275, 0.014921392314136028, -0.026642076671123505, -0.03441522270441055, -0.0360003337264061, -0.06267289817333221, -0.025422759354114532, 0.040085047483444214, 0.002493884414434433, -0.0009478284628130496, 0.056362930685281754, 0.02537703514099121, 0.0071139526553452015, -0.0018813681090250611, -0.015340532176196575, 0.01798492670059204, 0.011606373824179173, 0.030437201261520386, 0.02437109872698784, -0.07419544458389282, -0.028608225286006927, 0.04657791182398796, -0.017573406919836998, -0.007254936266690493, -0.006759588606655598, -0.013054313138127327, -0.01992059126496315, 0.040938571095466614, 0.032372865825891495, 0.04694370552897453, 0.009182981215417385, -0.002358616329729557, -0.01851837709546089, -0.03758544847369194, -0.0189603790640831, 0.004652456380426884, -0.004922992549836636, -0.0141669400036335, 0.03636613115668297, -0.012985726818442345, -0.020057765766978264, -0.03136692941188812, -0.03468956798315048, 0.038469452410936356, -0.0008035108912736177, 0.039871666580438614, 0.003758925711736083, -0.031138308346271515, 0.029736094176769257, -0.010021261870861053, 0.06212420389056206, 0.012040755711495876, -0.018548861145973206, -0.03447619080543518, 0.010150814428925514, -0.03423232585191727, 0.048589784651994705, 0.04035939276218414, -0.051546625792980194, -0.005715548526495695, -0.054381538182497025, 0.00035293513792566955, -0.0107071278616786, 0.03411039337515831, 0.01787823624908924, -0.05883204564452171, 0.0013745893957093358, 0.057856593281030655, -0.005109700374305248, 0.02194770611822605, 0.016689401119947433, 0.013366762548685074, -0.012886656448245049, 0.01140823494642973, 0.020697906613349915, -0.028623467311263084, -0.044627003371715546, 0.005456443876028061, -0.013572522439062595, -0.009724053554236889, -0.0302543044090271, 0.034994397312402725, -0.0004977289936505258, -0.019661488011479378, 0.04700466990470886, -0.028501534834504128, -0.015973053872585297, 0.017603889107704163, -0.018548861145973206, 0.046608392149209976, -0.007879836484789848, -0.003297871444374323, 0.04919944331049919, -0.0645628347992897, 0.004740094766020775, 0.022984126582741737, -0.03459811955690384, -0.005429771263152361, -0.025819038972258568, 0.016963748261332512, 0.0003098303568549454, 0.004770577885210514, -0.005959412083029747, -0.006401414517313242, -0.032525282353162766, -0.022953642532229424, -0.0006625273381359875, 0.02008824795484543, 0.013763041235506535, 0.008017009124159813, -0.004450506996363401, 0.014578458853065968, -0.04170064255595207, -0.04761432856321335, 0.055235061794519424, 0.0441087931394577, 0.0383475199341774, -0.01832023821771145, 0.033866532146930695, 0.018304996192455292, -0.01146158017218113, -0.049991998821496964, -0.0005191623349674046, 0.05371091514825821, -0.0197072122246027, -0.041944507509469986, 0.010326091200113297, -0.0741344764828682, -0.0372806191444397, 0.013351521454751492, -0.0010897646425291896, 0.055936168879270554, -0.042980924248695374, -0.01751244068145752, 0.04630356281995773, 0.009724053554236889, 0.012947622686624527, -0.007792198099195957, 0.026413455605506897, -0.03276914358139038, -0.0409080870449543, -0.03078775480389595, 0.04541955888271332, -0.017862994223833084, 0.024813100695610046, -0.009678329341113567, 0.0036808133590966463, 0.010143193416297436, 0.011453959159553051, 0.01804589293897152, -0.014174560084939003, -0.02618483267724514, -0.016796091571450233, -0.03801220655441284, 0.010303229093551636, 0.010493746958673, 0.0018251652363687754, -0.0394144244492054, -0.042432233691215515, -0.0051401834934949875, -0.010562334209680557, -0.007826491259038448, -0.034140877425670624, -0.0023814786691218615, -0.004839164670556784, -0.050997935235500336, -0.02420344389975071, -0.03990215063095093, -0.03667096048593521, -0.03880476579070091, 0.02520938031375408, 0.0029816110618412495, 0.022252535447478294, 0.015820639207959175, 0.01766485534608364, 0.029842784628272057, -0.010326091200113297, 0.014746115542948246, 0.013557281345129013, 0.012627552263438702, 0.04883364588022232, 0.02484358474612236, -0.03447619080543518, 0.022023914381861687, -0.003233095398172736, 0.02258784882724285, 0.017116162925958633, 0.015569154173135757, -0.00037889325176365674, 0.0005677444860339165, -0.012597069144248962, 0.002901593456044793, 0.0142202852293849, 0.02249639853835106, 0.006774830166250467, 0.005799376405775547, 0.05691162124276161, 0.0013202917762100697, -0.04743143171072006, -0.0428285114467144, 0.015195738524198532, 0.004774388391524553, -0.021932465955615044, 0.003894193796440959, 0.027587048709392548, -0.008451391011476517, -0.0006653851014561951, -0.019478589296340942, -0.018914654850959778, 0.0041418676264584064, 0.005841290578246117, -0.031199274584650993, -0.016536986455321312, -0.009975537657737732, 0.021109426394104958, 0.002371952636167407, -0.008824806660413742, 0.03191562369465828, 0.02484358474612236, 0.000782077549956739, -0.026840215548872948, 0.020042523741722107, -0.001814686693251133, -0.012726621702313423, 0.03368363156914711, 0.0008725737570784986, -0.024005303159356117, 0.02677925117313862, -0.009960295632481575, -0.015500567853450775, 0.029995199292898178, -0.0005672681727446616, -0.025986693799495697, -0.011179612949490547, -0.013458211906254292, -0.024919791147112846, 0.005563133861869574, 0.010028882883489132, 0.01617119275033474, 0.02799856662750244, -0.019829142838716507, -0.01627788320183754, 0.002773946151137352, -0.018914654850959778, -0.04404782876372337, -0.04359058290719986, 0.0281204991042614, -0.0016908497782424092, -0.005723169539123774, 0.013877351768314838, 0.034079909324645996, -0.0075826277025043964, 0.0018461222061887383, -0.028958778828382492, -0.03974973410367966, 0.014418424107134342, 0.0207741130143404, 0.012193170376121998, -0.010371815413236618, -0.026642076671123505, -0.010409919545054436, 0.013991663232445717, -0.022557364776730537, 0.031244998797774315, -0.003179750172421336, 0.010905266739428043, 0.04182257503271103, 0.005624099634587765, 0.03892669454216957, 0.035360194742679596, -0.032799627631902695, 0.01911279372870922, 0.039810702204704285, -0.005521220155060291, -0.02350233495235443, 0.01723809540271759, -0.038256071507930756, -0.006283293012529612, 0.03063534013926983, 0.013831627555191517, -0.02709932066500187, -0.0004915371537208557, -0.026703042909502983, 0.03651854395866394, 0.022801227867603302, 0.015584396198391914, 0.023304196074604988, -0.015241462737321854, -0.006687191780656576, 0.0040085045620799065, 0.015050944872200489, -0.049290891736745834, 0.028394846245646477, 0.0010183202102780342, -0.00699964165687561, -0.001883273245766759, -0.0018194495933130383, 0.041944507509469986, 0.02699263021349907, 0.04288947582244873, 0.020957011729478836, 0.0076093003153800964, -0.02216108702123165, 0.033714115619659424, 0.02842532843351364, 0.020530249923467636, 0.0040046945214271545, 0.0005196386482566595, -0.008337080478668213, -0.012444654479622841, 0.03679289296269417, -0.0031721293926239014, 0.01146158017218113, -0.031610794365406036, 0.011111026629805565, -0.007536903489381075, 0.0389876626431942, -0.0027206011582165956, 0.02426440827548504, 0.023014608770608902, 0.026306765154004097, 0.000571078562643379, -0.011873099952936172, 0.01306193321943283, -0.00880956556648016, 0.026306765154004097, -0.03487246856093407, 0.020271144807338715, 0.01874700002372265, -0.011606373824179173, -0.06120971590280533, -0.010021261870861053, -0.006896762177348137, -0.028150981292128563, -0.029842784628272057, -0.02554469183087349, -0.008542840369045734, 0.024462547153234482, -0.013031451031565666, 0.01394593808799982, 0.01498997863382101, -0.029278850182890892, 0.004183781333267689, -0.05066262185573578, 0.01868603378534317, -0.013077175244688988, 0.023593785241246223, -0.016460780054330826, 0.022907918319106102, 0.0026405835524201393, 0.011278682388365269, -0.054747335612773895, 0.025346552953124046, -0.029583679512143135, -0.05995991453528404, 0.042066436260938644, -0.035786956548690796, -0.03243383392691612, 0.03438473865389824, 0.017603889107704163, -0.007594058755785227, 0.021322807297110558, 0.006466190796345472, 0.0282271895557642, -0.0035988905001431704, 0.023441370576620102, -0.009868847206234932, -0.04060325771570206, -0.029842784628272057, -0.03438473865389824, 0.0014431760646402836, -0.03218996897339821, 0.01213220413774252, 0.0054754954762756824, -0.013481074012815952, 0.0068091233260929585, -0.018396446481347084, -0.0025700917467474937, 0.005677444860339165, 0.020682664588093758, -0.011309165507555008, 0.0033188285306096077, 0.015820639207959175, -0.024294892325997353, 0.01751244068145752, 0.021551428362727165, -0.010958611965179443, 0.00175372080411762, 0.012848553247749805, 0.026322007179260254, 0.015317670069634914, 0.02714504487812519, 0.06566022336483002, -0.04288947582244873, 0.004629594273865223, -0.006591932848095894, 0.01306955423206091, 0.0026615404058247805, -0.03243383392691612, 0.013542039319872856, -0.02426440827548504, 0.010981474071741104, -0.022450674325227737, 0.0012002652511000633, -0.00613087834790349, 0.0649895966053009, -0.004656266886740923, 0.024432064965367317, -0.0037608309648931026, 0.034720052033662796, 0.03158031031489372, 0.029812300577759743, -0.01239893026649952, -0.0012926665367558599, -0.00880956556648016, -0.00794842280447483, -0.020896045491099358, 0.010790955275297165, -0.010508988983929157, -0.008238011039793491, -0.04423072561621666, -0.03746351599693298, -0.012490378692746162, -0.014258388429880142, 0.004987768828868866, 0.0192804504185915, 0.014578458853065968, 0.018061133101582527, -0.09894757717847824, -0.0409080870449543, 0.024980757385492325, -0.005658393260091543, -0.019951075315475464, 0.023471852764487267, 0.05200387164950371, 0.025133172050118446, 0.025895245373249054, -0.030879203230142593, 0.01755816489458084, -0.04877268150448799, -0.026428695768117905, 0.024935033172369003, -0.01697899028658867, -0.02366999164223671, 0.007102521602064371, 0.028471052646636963, 0.033013008534908295, 0.023898614570498466, -0.02767849713563919, -0.032525282353162766, 0.007376867812126875, 0.047096122056245804, -0.02007300592958927, -0.01600353606045246, -0.012094100937247276, 0.019905351102352142, 0.025986693799495697, -0.007769335526973009, -0.027876636013388634, 0.0006687191780656576, -0.03261673077940941, 0.026581110432744026, -0.020789355039596558, -0.0106004374101758, -0.011507304385304451, 0.01633884757757187, 0.009289671666920185, 0.00613087834790349, -0.03154982998967171, -0.034354258328676224, 0.02752608247101307, -0.021231357008218765, 0.07193970680236816, 0.0032654833048582077, 0.00619946513324976, 0.01713140495121479, -0.014418424107134342, 0.016796091571450233, 0.01729905977845192, -0.01301620900630951, 0.007826491259038448, 0.006530966609716415, -0.008558081462979317, 0.008619047701358795, -0.01568346470594406, -0.004225695505738258, 0.020926527678966522, 0.008497115224599838, 0.0012088385410606861, 0.0072206431068480015, 0.020103489980101585, -0.05166855826973915, -0.02778518758714199, -0.001032609143294394, -0.00518209720030427, 0.01842692866921425, -0.003412182442843914, 0.023791924118995667, -0.010105090215802193, 0.05685065686702728, 0.031671758741140366, 0.024782618507742882, -0.0027606100775301456, 0.007536903489381075, 0.034140877425670624, -0.014090732671320438, 0.0017918244702741504, -0.020377835258841515, 0.04182257503271103, -0.029995199292898178, -0.04599873349070549, 0.034079909324645996, 0.007213022094219923, 0.006576691288501024, -0.013991663232445717, 0.001433650148101151, 0.010478505864739418, -0.004199022892862558, 0.007776956539601088, -0.0006125163054093719, -0.027282219380140305, -0.005197338759899139, 0.025194138288497925, -0.006271861959248781, -0.01431935466825962, 0.014906150288879871, 0.027480358257889748, 0.013526798225939274, 0.05697258934378624, -0.0012612310238182545, 0.00966308731585741, 0.0005934644723311067, -0.006012757308781147, -0.004903940483927727, 0.0009092485415749252, -0.017466716468334198, 0.013633488677442074, 0.002486263634636998, -0.03222045302391052, 0.020957011729478836, 0.016536986455321312, -0.014997599646449089, -0.017741063609719276, 0.021185632795095444, 0.024995999410748482, 0.018335480242967606, -0.01146158017218113, -0.04167015850543976, 0.02516365610063076, 0.0013174338964745402, -0.025468483567237854, 0.02056073397397995, -0.006363310851156712, -0.011636856943368912, 0.01169782318174839, -0.00020945104188285768, -0.006050860974937677, 0.001956622814759612, -0.02426440827548504, 0.05441202223300934, 0.012871415354311466, 0.054107192903757095, 0.013404866680502892, -0.005498357582837343, 0.008840048685669899, -0.005589806474745274, -0.01751244068145752, 0.029156917706131935, 0.027769945561885834, 0.006050860974937677, -0.0037817880511283875, 0.019036587327718735, 0.035146813839673996, -0.003145457012578845, -0.011720685288310051, 0.015104290097951889, -0.041090983897447586, 0.03426280990242958, 0.015774914994835854, 0.004256178624927998, 0.004606732167303562, 0.037981726229190826, -0.016399813815951347, 0.048437368124723434, -0.009785018861293793, -0.05691162124276161, -0.016719885170459747, 0.02205439656972885, -0.023624267429113388, 0.029705611988902092, 0.019021345302462578, -0.037829309701919556, 0.035634540021419525, -0.029918991029262543, -0.0396278016269207, -0.010143193416297436, 0.002781566930934787, 0.03432377427816391, -0.018457410857081413, -0.0282271895557642, 0.017893478274345398, -0.006313776131719351, 0.045389074832201004, 0.011720685288310051, 0.023807164281606674, 0.010874783620238304, 0.013473453000187874, 0.006881520617753267, -0.03031526878476143, -0.005993705242872238, 0.0046715084463357925, 0.030863963067531586, 0.022343983873724937, -0.011362510733306408, -0.006271861959248781, -0.0006210895953699946, -0.031397413462400436, 0.024340616539120674, 0.02635248936712742, 0.020042523741722107, 0.006016567349433899, 0.0029396971222013235, -0.01851837709546089, 0.005894635803997517, -0.0025377036072313786, 0.023014608770608902, -0.03212900459766388, 0.004774388391524553, -0.00038389433757402003, 0.02447778917849064, -0.002935886848717928, -0.02008824795484543, 0.00614611990749836, 0.059624601155519485, -0.03197658807039261, -0.03532971069216728, -0.023106057196855545, 0.023959578946232796, 0.015569154173135757, 0.006008946802467108, -0.01585112139582634, 0.011873099952936172, -0.0054450128227472305, 0.006588122341781855, 0.011789271607995033, 0.009442086331546307, -0.0025300828274339437, -0.009449707344174385, 0.0019337605917826295, -0.03130596503615379, -0.02656587027013302, -0.01437269989401102, -0.00020540252444334328, 0.039871666580438614, -0.023060332983732224, -0.007228263653814793, -0.02479786053299904, 0.015835879370570183, -0.0011926444713026285, 0.005898446310311556, 0.009365878999233246, 0.00614611990749836, 0.004225695505738258, -0.004854405764490366, -0.009967916645109653, -0.01429649256169796, 0.03078775480389595, -0.02624579891562462, 0.00805511325597763, 0.009754536673426628, -0.005818428471684456, 0.005296408198773861, -0.007346385158598423, -0.008687634021043777, 0.0679769217967987, 0.01424314733594656, 0.03246431425213814, 0.009411603212356567, 3.2417876354884356e-05, 0.021033218130469322, 0.033439770340919495, 0.004477179609239101, -0.01303907111287117, 0.008512357249855995, -0.012917139567434788, 0.028288155794143677, -0.011812133714556694, -0.005643151700496674, -0.005204959772527218, -0.0038656159304082394, 0.01512715220451355, -0.012414171360433102, -0.007647403981536627, -0.008481874130666256, -0.017466716468334198, 0.011713064275681973, 0.003928487189114094, 0.04331623762845993, -0.009861226193606853, 0.018914654850959778, 0.01491377130150795, -0.01644553802907467, -0.00429809233173728, 0.017497198656201363, -0.06401414424180984, 0.028714915737509727, -0.011690202169120312, 0.0007673124200664461, -0.0036388991866260767, 0.027266977354884148, -0.016933266073465347, -0.0020290196407586336, 0.036061301827430725, 0.007327333092689514, 0.004922992549836636, -0.03444570675492287, 0.005940360017120838, -0.008840048685669899, -0.0033474063966423273, 0.004599111620336771, 0.017390510067343712, -0.02248115837574005, -0.007331143599003553, -0.02484358474612236, 0.003438855055719614, 0.003541735000908375, 0.009724053554236889, -0.03063534013926983, 0.016460780054330826, 0.0031568880658596754, 0.028181465342640877, 0.014357457868754864, 0.013824006542563438, 0.014555596746504307, 0.009396362118422985, -0.02940078265964985, -0.026367731392383575, 0.01493663340806961, 0.004099953453987837, 0.023593785241246223, 0.019021345302462578, 0.03362266719341278, 0.007666456047445536, 0.03136692941188812, 0.03200707212090492, 0.029888508841395378, 0.00031149739515967667, 0.03703675419092178, -0.007548334542661905, 0.022191569209098816, 0.010211779735982418, 0.0441087931394577, 0.011004336178302765, -0.003621752606704831, -0.004823923110961914, 0.019676728174090385, -0.015546292066574097, 0.0057003069669008255, -0.009785018861293793, 0.012749483808875084, 0.015973053872585297, 0.011911203153431416, -0.05718597024679184, 0.011629235930740833, 0.03593936935067177, -0.021658118814229965, 0.0398411825299263, 0.01332865934818983, 0.0212008748203516, 0.022130604833364487, 0.001915661385282874, 0.016628436744213104, 0.0002521985734347254, -0.013290555216372013, 0.014547976665198803, 0.01708568073809147, -0.0032521472312510014, 0.01905182935297489, 0.06852561980485916, -0.007956043817102909, 0.000795413856394589, 0.008344700559973717, -0.019524313509464264, -0.004751525819301605, 0.001297429553233087, 0.00606610206887126, -0.015988294035196304, -0.007510230876505375, 0.0030940170399844646, -0.013603005558252335, -0.030726788565516472, 0.007632162421941757, 0.042218852788209915, -0.010996715165674686, 0.003913245629519224, -0.008428528904914856, 0.0017756304005160928, 0.0011783556547015905, 0.025498967617750168, 0.004332385957241058, 0.02258784882724285, -0.02725173532962799, -0.011758788488805294, -0.0058336700312793255, -0.00794842280447483, -0.012696138583123684, -0.016948506236076355, 0.07102521508932114, 0.014944254420697689, 0.0029587489552795887, 0.01617119275033474, 0.0417616069316864, -0.008786703459918499, 0.039109595119953156, 0.003726537572219968, -0.00888577289879322, 0.032159484922885895, -0.013709696009755135, 0.007037745323032141, -0.012787587009370327, 0.02275550365447998, -0.02356330119073391, -0.009289671666920185, 0.040298428386449814, 0.012970484793186188, -0.009815501980483532, -0.028394846245646477, -0.05419864133000374, -0.008405666798353195, -0.011057681404054165, 0.004976337775588036, -0.0051135108806192875, -0.008192285895347595, 0.01252848282456398, 0.017741063609719276, 0.018335480242967606, 0.025849521160125732, 0.019951075315475464, -0.00216238247230649, -0.016536986455321312, -0.008093216456472874, -0.009320154786109924, -0.05493023246526718, -0.01964624598622322, -0.0005120178684592247, -0.013816386461257935, 0.001169782248325646, -0.028608225286006927, -0.009114394895732403, 0.03715868666768074, 0.018167823553085327, 0.029995199292898178, 0.046669360250234604, 0.023121299222111702, 0.004621973726898432, 0.032372865825891495, 0.009891709312796593, -0.07212260365486145, -0.020652182400226593, 0.0028025240171700716, -0.01819830760359764, 0.013321038335561752, -0.015050944872200489, 0.04163967818021774, 0.017710579559206963, 0.004599111620336771, -0.005715548526495695, 0.01606450229883194, 0.010021261870861053, -0.007334954105317593, -0.0016632246552035213, 0.002951128175482154, -0.025498967617750168, -0.02603241801261902, -0.04996151477098465, -0.00950305163860321, 0.038743797689676285, -0.015881603583693504, 0.013465831987559795, 0.040298428386449814, -0.009289671666920185, 0.006992021109908819, -0.0103870565071702, -0.010973853059113026, -0.03078775480389595, -0.0192804504185915, -0.006892951671034098, -0.03694530576467514, -0.024858826771378517, 0.0074187819845974445, 0.01306193321943283, 0.034140877425670624, 0.02056073397397995, -0.0012669465504586697, 0.011050060391426086, 0.003656045999377966, -0.006633846554905176, -0.00710633210837841, 0.02516365610063076, 0.016933266073465347, -0.01964624598622322, -0.03276914358139038, 0.046029217541217804, 0.018975621089339256, 0.03383604809641838, -0.040237460285425186, -0.003880857490003109, -0.015386256389319897, -0.00902294646948576, 0.0024843583814799786, 0.05575327202677727, -0.02028638683259487, 0.019554797559976578, 0.04057277366518974, 0.007719800807535648, -0.01723809540271759, 0.015264324843883514, -0.00705298688262701, -0.019356658682227135, 0.01475373562425375, 0.0037227272987365723, -0.001019272836856544, 0.019295692443847656, -0.005917497910559177, 0.016201674938201904, 0.005814617965370417, 0.010227021761238575, -0.008923876099288464, 0.004153298679739237, -0.001583206932991743, 0.019097553566098213, 0.009914571419358253, -0.027617530897259712, -0.03304349258542061, 0.00696153799071908, 0.02827291376888752, -0.0037322533316910267, -0.014205043204128742, 0.005143993534147739, 0.005658393260091543, -0.0141135947778821, -0.004801061004400253, 0.005814617965370417, -0.04386493191123009, -0.002833006903529167, -0.018411686643958092, 0.011873099952936172, -0.02559041604399681, 0.0108138183131814, -0.018076375126838684, 0.026809733361005783, 0.004317144397646189, 0.025072205811738968, -0.03084872104227543, -0.0030692496802657843, 0.002358616329729557, -0.014410803094506264, 0.005513599142432213, -0.007395919878035784, -0.005810807924717665, 0.04798012599349022, 0.0303609948605299, 0.01832023821771145, 0.02933981642127037, -0.015988294035196304, -0.0029797060415148735, -0.00705298688262701, -0.0027758514042943716, 0.002312891883775592, 0.002732032211497426, 0.003187370952218771, 0.041304364800453186, 0.022313501685857773, 0.02891305461525917, 0.024051029235124588, 0.019509073346853256, -0.03679289296269417, 0.002964464481920004, -0.013595384545624256, -0.01868603378534317, -0.02559041604399681, -0.0005720311310142279, -0.005829859524965286, -0.015058564953505993, -0.004328575450927019, 0.00621089618653059, 0.005940360017120838, -0.01486042607575655, -0.0008173234527930617, -0.005197338759899139, -0.011926444247364998, 0.004663887433707714, -0.0008430434390902519, -0.0011516830418258905, -0.009701191447675228, 0.0575212799012661, -0.009091532789170742, -0.06261193007230759, 0.02853201888501644, -0.002274788450449705, 0.016536986455321312, -0.03926200792193413, -0.012863794341683388, 0.00909915380179882, 0.053832847625017166, -0.013077175244688988, 0.015188117511570454, 0.0051401834934949875, -0.0013260073028504848, -0.0107071278616786, -0.005292598158121109, 0.011964548379182816, -0.02548372559249401, -0.03462860360741615, -0.006382362451404333, 0.00958687998354435, 0.027663255110383034, 0.005090648774057627, -0.03042195923626423, 0.018929896876215935, 0.030025681480765343, -0.016018778085708618, 0.027510840445756912, -0.016140708699822426, -0.017817270010709763, 0.019798660650849342, 0.01399928331375122, 0.01568346470594406, -0.0216276366263628, 0.026108626276254654, 0.01617119275033474, -0.022618331015110016, -0.03420184180140495, 0.03767689689993858, 0.015652982518076897, 0.003562691854313016, -0.003753210185095668, 0.02270977944135666, -0.026596352458000183, -0.013625867664813995, 0.049290891736745834, -0.02725173532962799, -0.015005220659077168, 0.00433619599789381, 0.030330510810017586, -0.02318226546049118, -0.015279566869139671, 0.02415771782398224, -0.0033264493104070425, 0.025940969586372375, 0.011004336178302765, -0.0029949473682790995, 0.012429413385689259, 0.005551702808588743, 0.018823206424713135, 0.003255957504734397, -0.0011669244850054383, -0.008961980231106281, -0.00303305103443563, -0.02366999164223671, -0.023974820971488953, -0.004073280841112137, 0.02565138228237629, 0.002413866575807333, -0.002352900803089142, 0.0013298176927492023, 0.0018261177465319633, 0.030924927443265915, 0.00026410596910864115, 0.024188201874494553, 0.001386973075568676, 0.007963663898408413, -0.01162161584943533, -0.003739873878657818, 0.012673276476562023, 0.02997995726764202, 0.0046181632205843925, -0.0013879257021471858, 0.0007458790787495673, 0.008314218372106552, 0.002922550542280078, -0.026200074702501297, 0.019631003960967064, 0.010074607096612453, -0.003452191362157464, 0.008352321572601795, -0.014723253436386585, -0.03417136147618294, 0.021856257691979408, 0.002686307765543461, -0.0027015493251383305, -0.01322196889668703, -0.012162687256932259, -0.0015746336430311203, 0.0014469863381236792, 0.007487368769943714, 0.010341332294046879, 0.019570037722587585, 0.048376403748989105, 0.009472569450736046, 0.05185145512223244, 0.018350720405578613, 0.035360194742679596, 1.047850582835963e-05, 0.022953642532229424, 0.005345942918211222, 0.00864952988922596, -0.0438954122364521, 0.07437834143638611, 0.013183865696191788, 0.05294884368777275, 0.005902256350964308, 0.01250562071800232, -0.004332385957241058, 0.029416022822260857, 0.0005586948827840388, 0.02955319732427597, -0.023746199905872345, 0.009815501980483532, 0.0005972748040221632, -0.023959578946232796, 0.009106773883104324, 0.0021985811181366444, 0.0370672382414341, -0.00697296904399991, 0.009190602228045464, -0.013564902357757092, 0.013107658363878727, -0.0007935086614452302, 0.046181634068489075, -0.027708979323506355, 0.004587680101394653, -0.01976817660033703, 0.0014631804078817368, 0.01338962558656931, 0.0191737599670887, -0.028928296640515327, -0.009122015908360481, -0.0032711990643292665, -0.0023605215828865767, -0.026200074702501297, -0.013763041235506535, -0.02655062824487686, 0.0070872800424695015, -0.005761272739619017, 0.006744347512722015, -0.022664055228233337, -0.01713140495121479, 0.03618323430418968, 0.011492063291370869, 0.02007300592958927, -0.02763277292251587, -0.005151614546775818, -0.06675760447978973, -0.004606732167303562, -0.0025986693799495697, -0.015988294035196304, -0.026581110432744026, 0.025529449805617332, 0.017573406919836998, 0.02495027519762516, 0.016826575621962547, 0.0032940611708909273, -0.004999199882149696, 0.008878151886165142, 0.03313494101166725, -0.02548372559249401]" -Visualizing IoT Data at Scale With Hopara and TimescaleDB,"100 msec intervals. Excessive vibration is often an early warning of machine failure or the need for urgent service. Hence, real-time monitoring is required for 50K time series of vibration data.Unlike some applications that can aggregate data in the network from sensor to server, FC requires that details be available on all sensors so abnormal events can be reported on individual machines.These abnormal events can include the following:Latest reading over a thresholdFive sequential readings over five minutes above a second thresholdOne reading per minute over a third threshold for 10 minutesA reading over a fourth threshold more than once a day for a monthIn addition, FC wants to filter machines by location (e.g., only those plants in São Paulo) and by time (e.g., report only weekend vibrations).A time-series database is the optimal solution for storing the 50K time-series sensor data for a long period of time. Although this database is likely measured in GB, it is easy to imagine much larger applications.In the rest of this blog post, I first talk about the FC reporting architecture and their future requirements. Then, I discuss the requirements for the database, and why Hopara ended up using Timescale.From Data to Insights: Building Actionable VisualizationsFC runs a sophisticated analytics application provided by IBBX. It monitors vibrations and employs machine learning-based predictive analytics to forecast needed repair events. The IBBX dashboard for FC is shown in Figure 2. It shows “the details” using typical dashboard technology. This is very useful for initiating corrective action when required.Figure 2. FC/IBBX dashboard using time-series sensor data in real timeHowever, this dashboard does not show “the big picture” desired by the FC personnel. Hence, IBBX recently partnered with Hopara to produce a “detail-on-demand” system for the same data. Figure 3 shows FC factories on a map of Brazil color-coded with their facility health.Figure 3. The Big Picture: FC factories on a map of Brazil color-coded with their facility healthNotice that there are two factories with a yellow status. If an FC user wants to “drill into” one of them, the user will see Figure 4. Figures 4 and 5 shows greater detail about one yellow sensor in Figure 3, while Figure 6 shows the time series of sensor readings for the sensor in question over five days. Notice that, in a few clicks,",https://www.timescale.com/blog/visualizing-iot-data-at-scale-with-hopara-and-timescaledb/,489,"[-0.03436986356973648, 0.03689524903893471, 0.0595313161611557, 0.002702469239011407, 0.04508734866976738, 0.01698474958539009, 0.004215389955788851, -0.021635152399539948, 0.03326116129755974, 0.04865984618663788, 0.051862772554159164, -0.03803475201129913, -0.04955296963453293, -0.029534678906202316, 0.028487566858530045, 0.05408018082380295, 0.02240508608520031, 0.0059361932799220085, -0.05411098152399063, -0.012395941652357578, 0.005859199911355972, 0.015075312927365303, 0.0040998999029397964, 0.0019363847095519304, -0.016338005661964417, -0.020926812663674355, 0.005385690368711948, 0.04585728421807289, 0.005543526727706194, -0.039205051958560944, 0.026008378714323044, -0.036802858114242554, -0.042038410902023315, -0.0181550495326519, 0.008284492418169975, 0.04548771679401398, 0.0063789053820073605, 0.02200472168624401, 0.005555075593292713, 0.03883548453450203, -0.03298398479819298, -0.00443482119590044, -0.008423080667853355, 0.0076338984072208405, -0.009739668108522892, -0.029750259593129158, -0.042869940400123596, -0.014336176216602325, -0.022512877359986305, 0.05327945202589035, -0.018678605556488037, -0.006355807185173035, -0.03538617864251137, -0.039420634508132935, 0.015614266507327557, -0.014051300473511219, -0.011418124660849571, 0.04788991063833237, 0.03301478177309036, -0.005081566050648689, -0.008022715337574482, -0.02770223468542099, 0.03594053164124489, -0.015252397395670414, -0.03252202272415161, 0.037572793662548065, -0.02446851134300232, 0.003915115725249052, -0.007872577756643295, 0.03606371954083443, 0.027301868423819542, 0.013920411467552185, 0.025207648053765297, 0.012765510007739067, 0.03418508172035217, -0.04755114018917084, -0.00436552707105875, -0.01216496154665947, -0.0317520871758461, -0.01092536747455597, 0.005659016780555248, -0.006613735109567642, -0.05629759281873703, 0.028718547895550728, 0.017308121547102928, -0.06137916073203087, -0.03794236108660698, -0.013774123974144459, -0.029642468318343163, 0.008600166067481041, -0.008307591080665588, 0.06793899834156036, -0.030550992116332054, 0.026208562776446342, 0.0406833253800869, 0.027348065748810768, 0.019510135054588318, -0.035570964217185974, -0.028348978608846664, 0.0003707714786287397, -0.015452580526471138, -0.03363072872161865, -0.000231822399655357, 0.013073483482003212, 0.031243931502103806, 0.02482268027961254, -0.017708487808704376, 0.027455855160951614, -0.0024599400348961353, -0.017477506771683693, -0.021635152399539948, -0.04496416077017784, -0.04012897238135338, 0.02845676988363266, 0.0002114913222612813, -0.01801646128296852, -0.03932824358344078, -0.023821765556931496, 0.024976667016744614, -0.025454025715589523, -0.0019180987728759646, 0.030350808054208755, -0.01337375771254301, -0.007787885144352913, -0.015829848125576973, -0.011040857061743736, -0.01827823929488659, -0.01499062031507492, -0.04431741684675217, -0.05244792252779007, 0.019679520279169083, -0.045549310743808746, 0.02859535813331604, -0.012857901863753796, 0.003245272906497121, -0.009962948970496655, -0.01047880481928587, 0.016184018924832344, -0.03464704006910324, -0.0020999957341700792, -0.030150625854730606, -0.01664597913622856, 0.04967615753412247, -0.026501137763261795, -0.016338005661964417, 0.05404938384890556, -0.041484057903289795, -0.0024445413146167994, 0.02151196263730526, -0.04825947806239128, -0.02530003897845745, -0.009870557114481926, -0.05494250729680061, -0.03972860798239708, 0.0672614574432373, 0.012126464396715164, 0.03190607577562332, 0.03384631127119064, -0.03717242553830147, -0.017847076058387756, -0.032337237149477005, -0.009939851239323616, -0.014667247422039509, -0.025946784764528275, -0.022435884922742844, 0.01678456738591194, -0.04145326092839241, -0.01952553354203701, -0.09134499728679657, -0.009331603534519672, -0.02061883918941021, -0.042438775300979614, 0.028194991871714592, -0.01027862261980772, 0.03892787545919418, 0.006998702418059111, 0.015514175407588482, -0.028071803972125053, -0.02351379208266735, -0.010871471837162971, -0.022805452346801758, 0.00034286134177818894, -0.012827104888856411, 0.0331379696726799, -0.004469468258321285, 0.002588903997093439, -0.027409659698605537, 0.021142395213246346, -0.013704829849302769, 0.027163280174136162, -0.03252202272415161, 0.05876138433814049, 0.03267601132392883, 0.04699678719043732, 0.024037348106503487, -0.025608014315366745, 0.0034493054263293743, -0.01635340414941311, -0.01471344381570816, -0.0032895440235733986, 0.00778403552249074, 0.04456379637122154, 0.042315587401390076, -0.016538187861442566, -0.0005625332123599946, -0.007014100905507803, 0.0039690108969807625, 0.03187527880072594, -0.0281795933842659, 0.027810025960206985, -0.0043347300961613655, 0.03513979911804199, 0.037080034613609314, 0.02151196263730526, -0.012996490113437176, 0.0017949092434719205, -0.04810549318790436, 0.004438670817762613, 0.0023983451537787914, -0.01740051433444023, 0.03828113153576851, 0.06140995770692825, 0.05127762258052826, 0.006571388803422451, -0.04798230156302452, 0.032337237149477005, 0.011626007035374641, -0.014005104079842567, 0.028964927420020103, -0.019140565767884254, 0.025623412802815437, -0.013219770975410938, 0.03788076713681221, -0.040652528405189514, -0.0004184111603535712, 0.0010124635882675648, -0.017770083621144295, 0.013658633455634117, 0.005843800958245993, 0.007514558266848326, -0.015244698151946068, 0.016738370060920715, 0.032614413648843765, 0.025176851078867912, -0.0001786488137440756, 0.0016235988587141037, -0.04083731397986412, -0.06301142275333405, 0.06319620460271835, 0.03538617864251137, 0.017646893858909607, -0.0281795933842659, -0.04077572003006935, -0.02934989333152771, -0.012488333508372307, 0.0034955015871673822, -0.05010732263326645, 0.01278090849518776, 0.0031490311957895756, 0.004384775646030903, 0.014166790060698986, 0.0020172276999801397, -0.029057318344712257, -0.004796690307557583, -0.00923921074718237, 0.00020980708359275013, 0.03917425498366356, -0.06855494529008865, -0.038250334560871124, -0.018724801018834114, 0.01698474958539009, 0.0345238521695137, 0.04040614888072014, -0.01772388629615307, -0.0627034455537796, 0.0019161738455295563, 0.0016495841555297375, 0.0019238732056692243, -0.0048120892606675625, 0.005270199850201607, 0.0035801941994577646, -0.013050385750830173, 0.02728646993637085, -0.008068910799920559, 0.015968436375260353, -0.018509220331907272, 0.023267412558197975, -0.00046845688484609127, 0.013389157131314278, -0.010286321863532066, -0.003391560399904847, 0.006702277809381485, 0.006490545812994242, -0.03149031102657318, -0.008007315918803215, 0.01670757308602333, -0.01151821669191122, 0.011880085803568363, -0.03363072872161865, -0.015514175407588482, -0.01992589794099331, -0.015090711414813995, -0.03011982887983322, -0.004608056508004665, 0.008068910799920559, 0.021465767174959183, 0.009270008653402328, 0.019818108528852463, -0.0015966511564329267, -0.003926664590835571, -0.03107454627752304, -0.04250037297606468, 0.04619605466723442, -0.00923921074718237, -0.020788224413990974, -0.024838078767061234, 0.06861653923988342, -0.025207648053765297, 0.0070910947397351265, -0.07095713913440704, -0.020911414176225662, -0.07514558732509613, -0.02035706117749214, 0.0028237339574843645, 0.004246187396347523, -0.08752612769603729, 0.019063571467995644, 0.006332709453999996, -0.007776335813105106, -0.023806367069482803, -0.013550843112170696, 0.027856221422553062, 0.029134312644600868, 0.017616095021367073, -0.05500410497188568, -0.06756942719221115, -0.030905161052942276, -0.016799965873360634, -0.023975752294063568, 0.020665034651756287, 0.017631495371460915, -0.0357249490916729, -0.09159138053655624, 0.02968866564333439, 0.03341514617204666, 0.006817767862230539, -0.010809876956045628, 0.0131966732442379, -0.005547376349568367, 0.02494587004184723, -0.03717242553830147, 0.01285020262002945, 0.008707956410944462, -0.010532700456678867, 0.014382371678948402, -0.0339387021958828, 0.028764743357896805, 0.025515621528029442, -0.07409847527742386, -0.03178288787603378, -0.01526009663939476, 0.026839908212423325, 0.05869978666305542, -0.011318033561110497, -0.007333623711019754, 0.022297296673059464, -0.04129927232861519, -0.005374141037464142, -0.03738800808787346, -0.010702086612582207, 0.01478273794054985, -0.051246825605630875, -0.0015928015345707536, -0.008584766648709774, -0.09614939242601395, -0.03563255816698074, 0.06492085754871368, 0.0057668075896799564, 0.02702469192445278, 0.045056551694869995, 0.07496079802513123, -0.0029526979196816683, 0.03178288787603378, -0.025608014315366745, 0.01223425567150116, 0.041145287454128265, -0.0163688026368618, 0.031182337552309036, -0.07237382233142853, 0.005147010553628206, -0.006521343253552914, -0.023051831871271133, 0.020295467227697372, -0.028225790709257126, -0.03038160502910614, -0.008192100562155247, 0.055496860295534134, 0.04859825223684311, 0.05367981642484665, 0.0194485392421484, 0.001659208326600492, -0.03504740819334984, -0.045549310743808746, 0.03129012882709503, -0.018924983218312263, 0.014767339453101158, -0.02206631563603878, 0.00883114617317915, -0.02268226258456707, -0.00479284068569541, -0.021973922848701477, -0.027964012697339058, 0.04250037297606468, 0.019879702478647232, 0.013158176094293594, -0.0008002504473552108, -0.023667778819799423, 0.031721290200948715, -0.03039700537919998, 0.05857659876346588, -0.0019286853494122624, -0.006471297238022089, -0.030704978853464127, 0.025823595002293587, -0.013966607861220837, 0.03252202272415161, 0.03295318782329559, -0.041145287454128265, -0.029365291818976402, -0.03267601132392883, -0.002434917027130723, 0.0087310541421175, 0.01615322008728981, 0.029118914157152176, -0.039974987506866455, -0.01227275189012289, 0.040652528405189514, -0.06763102859258652, -0.00883114617317915, 0.010332517325878143, 0.03276840224862099, 0.02034166269004345, 0.03246042877435684, 0.005558925215154886, -0.03267601132392883, -0.0015013718511909246, -0.02653193473815918, -0.0023059530649334192, 0.0011231416137889028, 0.02955007739365101, -0.0035070504527539015, -0.015075312927365303, -0.04939898103475571, 0.046504028141498566, -0.019771911203861237, -0.028918730095028877, 0.04970695450901985, -0.037080034613609314, 0.0672614574432373, 0.017369717359542847, -0.005170108750462532, 0.027471253648400307, 0.00625571608543396, 0.030843567103147507, 0.012419039383530617, -0.015044515021145344, 0.012804007157683372, -0.011333432048559189, 0.026162365451455116, -0.0052240039221942425, -0.016476593911647797, -0.014474764466285706, 0.022112511098384857, -0.028579959645867348, 0.019756512716412544, 0.02893412858247757, 0.029396090656518936, -0.014875129796564579, -0.015390985645353794, 0.010394112206995487, -0.006559839937835932, -0.05789905786514282, -0.0617179311811924, 0.026362549513578415, 0.04133006930351257, 0.04758193716406822, 0.016938554123044014, 0.0025138354394584894, -0.010956164449453354, 0.005478082224726677, -0.043763063848018646, -0.019879702478647232, 0.0585458017885685, -0.0201414804905653, -0.01068668719381094, -0.020680435001850128, -0.10323278605937958, -0.0501997135579586, -0.01883259229362011, 0.0233136098831892, 0.06304221600294113, 0.03726481646299362, -0.0021885382011532784, 0.014559457078576088, -0.00993215199559927, 0.008892741054296494, 0.010802177712321281, 0.001349309808574617, -0.035016611218452454, -0.046842798590660095, 0.03535538166761398, 0.06174872815608978, -0.019895100966095924, 0.022697661072015762, -0.03806554898619652, 0.002854531165212393, 0.008015016093850136, -0.004042154643684626, 0.01678456738591194, -0.010455707088112831, -0.004446370527148247, -0.025392431765794754, -0.019679520279169083, 0.012041771784424782, 0.0002738078765105456, -0.00604783371090889, -0.01938694529235363, -0.04853665456175804, -0.011264137923717499, -0.020387860015034676, 0.012842503376305103, -0.03938983753323555, -0.013258268125355244, -0.001758337370119989, -0.059284936636686325, -0.010609693825244904, -0.04022136703133583, -0.0036379394587129354, -0.018586212769150734, 0.024006551131606102, -0.01144892256706953, -0.006621434818953276, 0.017908670008182526, 0.014082097448408604, 0.021958524361252785, 0.021912328898906708, -0.02496126852929592, 0.018847990781068802, -0.005951591767370701, 0.040098175406455994, 0.01758529804646969, -0.029257502406835556, -0.001861316035501659, -0.012557627633213997, -0.008476976305246353, 0.043609075248241425, 0.022944040596485138, -0.012696215882897377, -0.01589144393801689, -0.047058381140232086, 0.007560754660516977, 0.0073374733328819275, 0.03871229290962219, -0.017138736322522163, -0.028087202459573746, 0.022312695160508156, 0.023698575794696808, -0.05032290145754814, -0.04601127281785011, 0.010586596094071865, -0.00023687508655712008, -0.021265584975481033, 0.027594443410634995, -0.026485739275813103, -0.019571729004383087, 0.0038477464113384485, -0.044040240347385406, -0.0012800156837329268, 0.014744240790605545, 0.038866281509399414, -0.024637896567583084, -0.02756364643573761, -0.01216496154665947, 0.008923538029193878, -0.027132483199238777, -0.00270631886087358, 0.022666864097118378, 0.026270156726241112, 0.015206201933324337, -0.02556181699037552, -0.00429623294621706, -0.0068293167278170586, -0.018370632082223892, 0.01635340414941311, 0.0030258416663855314, 0.017354318872094154, -0.015052215196192265, 0.015213901177048683, -0.027548247948288918, 0.0308589655905962, 0.009262309409677982, -0.029611671343445778, -0.013735626824200153, -0.03363072872161865, -0.021219387650489807, 0.02914971113204956, 0.028964927420020103, 0.027178678661584854, 0.009824360720813274, 0.010409511625766754, -0.008238296955823898, 0.020926812663674355, 0.0013666333397850394, -0.03615611419081688, -0.03600212559103966, 0.015983834862709045, 0.0001222872087964788, -0.00617102300748229, 0.01278090849518776, 0.004819788504391909, -0.01402050256729126, 0.007938021793961525, -0.024160537868738174, -0.016676776111125946, 0.005585873033851385, 0.03369232267141342, 0.025900589302182198, 0.00862326379865408, -0.0652904286980629, -0.019094370305538177, 0.024591701105237007, -0.013312163762748241, -0.015321691520512104, -0.024098942056298256, -0.01827823929488659, 0.014205287210643291, 0.03004283457994461, 0.05084645748138428, 0.02756364643573761, -0.04431741684675217, 0.05081566050648689, 0.03224484622478485, 0.004908330738544464, -0.061348360031843185, 0.0156758613884449, -0.02137337438762188, 0.01601463183760643, -0.01601463183760643, -0.008315290324389935, -0.02048025093972683, -0.021419571712613106, -0.025746602565050125, 0.007171937730163336, 0.0005379915819503367, 0.02522304654121399, -0.002737116301432252, -0.0069255586713552475, 0.00965497549623251, -0.017092540860176086, 0.007021800614893436, -0.028579959645867348, 0.018124252557754517, 0.0016255236696451902, -0.00910832267254591, -0.010255523957312107, 0.0007502047228626907, 0.04434821382164955, 0.034955013543367386, 0.025469426065683365, 0.032614413648843765, -0.021327178925275803, 0.018170448020100594, -0.034339066594839096, 0.047058381140232086, 0.010217027738690376, -0.008500074036419392, 0.016384201124310493, -0.05066167563199997, -0.0017602621810510755, 0.042253993451595306, -0.029165109619498253, 0.024314524605870247, -0.03513979911804199, 0.011256438679993153, -0.01144892256706953, 0.029657866805791855, 0.022097112610936165, 0.0219277273863554, 0.005312546622008085, 0.005990088451653719, -0.01361243799328804, 0.004754344001412392, -0.002854531165212393, -0.00701025128364563, -0.015560371801257133, -0.03664886951446533, -0.017030945047736168, 0.027548247948288918, -0.01347384974360466, -0.018201244994997978, 0.022697661072015762, -0.018801795318722725, -0.014536358416080475, -0.008369185030460358, -0.03418508172035217, -0.015183103270828724, 0.010540399700403214, -0.0013829944655299187, 0.01075598131865263, -0.024083543568849564, -0.00907752476632595, 0.029242103919386864, -0.06110198423266411, 0.01381262019276619, -0.02851836569607258, 0.01144892256706953, -0.015029116533696651, 0.04096050187945366, 0.02557721547782421, -0.012719313614070415, -0.035016611218452454, 0.029396090656518936, -0.01607622765004635, -0.021080799400806427, 0.03683365508913994, -0.032829996198415756, -0.021958524361252785, 0.04548771679401398, 0.01017853058874607, -0.012326647527515888, 0.007799434009939432, 0.006005487404763699, 0.03603292256593704, -0.021881531924009323, 0.029165109619498253, 0.002178913913667202, -0.04363987222313881, -0.026377948001027107, -0.05032290145754814, -0.0034531550481915474, -0.018401429057121277, 0.013281365856528282, -0.016338005661964417, -0.03455464914441109, -0.015475678257644176, -0.03267601132392883, -0.0022944041993469, 0.016199417412281036, 0.005073866806924343, -0.005558925215154886, -0.019633322954177856, 0.01621481589972973, -0.03513979911804199, 0.003112459322437644, 0.015267796814441681, -0.011071654967963696, -0.010771380737423897, 0.04779751971364021, -0.01621481589972973, -0.007237382233142853, 0.014012803323566914, 0.032337237149477005, 0.00291420123539865, -0.0028872534167021513, -0.017477506771683693, 0.03649488463997841, -0.0062826634384691715, -0.02543862722814083, 0.02363698184490204, -0.04074491932988167, -0.009300805628299713, -0.03326116129755974, 0.003659112611785531, 0.0007737839478068054, 0.0527866929769516, -0.013319863006472588, 0.02125018648803234, -0.008523172698915005, 0.009924452751874924, 0.03121313452720642, 0.018370632082223892, -0.03794236108660698, 0.00095568090910092, 0.01581444963812828, 0.0019027000525966287, -0.017908670008182526, 0.022805452346801758, 0.004253886640071869, -0.018309036269783974, -0.05891536921262741, 0.003485877299681306, 0.010240125469863415, -0.02432992309331894, -0.008823446929454803, 0.0001542274549137801, 0.0239141583442688, 0.022636067122220993, -0.09867477416992188, -0.021342577412724495, 0.023867962881922722, -0.005019971169531345, -0.021558159962296486, 0.011972477659583092, 0.024037348106503487, 0.03039700537919998, 0.0208344217389822, -0.039697811007499695, -0.010270923376083374, -0.012996490113437176, -0.028826339170336723, 0.023205818608403206, 0.019848905503749847, -0.005023821257054806, 0.010986961424350739, 0.018062658607959747, 0.033723119646310806, 0.034000296145677567, -0.009023629128932953, -0.01958712749183178, -0.0014340025372803211, 0.05506569892168045, -0.00910832267254591, -0.006602186243981123, -0.02585439197719097, -0.009208413772284985, 0.028887933120131493, 0.011618307791650295, 0.00291997566819191, 0.002515760250389576, -0.028056403622031212, 0.02955007739365101, 0.0061017288826406, 0.01676916889846325, -0.029519280418753624, 0.004346278961747885, -0.006852414924651384, 0.013912712223827839, -0.024114340543746948, -0.04474857822060585, 0.03594053164124489, -0.01712333783507347, 0.05149320513010025, -0.0076723950915038586, 0.02315962314605713, -0.0018362932605668902, -0.005431886296719313, 0.013589339330792427, 0.03335355222225189, -0.014775038696825504, 0.010378713719546795, -0.007857179269194603, -0.016892356798052788, 0.021943125873804092, -0.012957993894815445, 0.008315290324389935, 0.002279005479067564, -0.007930322550237179, -0.02165055088698864, 0.00624031713232398, 0.0013897313037887216, -0.07095713913440704, -0.001376257510855794, -0.014374672435224056, -0.05300227552652359, 0.029057318344712257, -0.015229299664497375, -0.012118765152990818, -0.004523363895714283, 0.025469426065683365, 0.006009337026625872, 0.020526448264718056, 0.01010923646390438, 0.04761273413896561, 0.04283914342522621, -0.02516145072877407, 0.0363100990653038, -0.027532849460840225, 0.030828168615698814, -0.01918676123023033, -0.016538187861442566, 0.004111448768526316, 0.0045503112487494946, 0.02392955683171749, -0.0008021752582862973, 0.00790722481906414, 0.016584383323788643, -0.010563498362898827, 0.0014561382122337818, 0.032891590148210526, -0.016861559823155403, 0.027486653998494148, 0.00896973442286253, 0.03415428474545479, 0.009824360720813274, 0.009231511503458023, 0.02831818163394928, 0.0016948177944868803, 0.06615275144577026, 0.01425918284803629, 0.039143458008766174, 0.009000531397759914, -0.02185073494911194, -0.03279919922351837, -0.016307206824421883, -0.013019588775932789, 0.010132335126399994, -0.03267601132392883, -0.0007954383036121726, 0.024175936356186867, 0.04976855218410492, -0.0001337760768365115, -0.010147733613848686, 0.018370632082223892, 0.005993938073515892, 0.006848565302789211, -0.006328859832137823, -0.003054714063182473, 0.020326264202594757, 0.004373226780444384, -0.026239359751343727, -0.008877341635525227, 0.0014080172404646873, -0.006613735109567642, 0.0011173670645803213, 0.005150860175490379, -0.02516145072877407, 0.02295943908393383, -0.0321524553000927, 0.0734209343791008, 0.010802177712321281, 0.020403258502483368, -0.00135315943043679, -0.01579905115067959, 0.010694386437535286, -0.03239883482456207, -0.008838845416903496, 0.012896399013698101, 0.00841538142412901, -0.005100814625620842, 0.012241954915225506, -0.0010009144898504019, 0.021219387650489807, 0.01027862261980772, -0.02295943908393383, 0.02990424633026123, -0.044440604746341705, 0.041145287454128265, 0.007622349075973034, -0.009808962233364582, -0.010063041001558304, 0.05109283700585365, -0.012773209251463413, 0.03381551429629326, -0.03855830803513527, -0.054757725447416306, -0.03099755384027958, 0.0567595548927784, -0.010632792487740517, 0.025192249566316605, 0.004596507642418146, -0.0263933464884758, 0.05934653431177139, -0.01587604358792305, -0.030982155352830887, -0.005235552787780762, 0.014251483604311943, 0.045610904693603516, -0.011649105697870255, -0.03954382240772247, 0.022928642109036446, -0.014536358416080475, 0.04213080182671547, 0.02426832728087902, -0.020387860015034676, 0.006305761635303497, 0.0246070995926857, 0.02006448619067669, -0.037080034613609314, -0.007364421151578426, 0.016137821599841118, 0.051308419555425644, 0.028071803972125053, 0.0028314332012087107, -0.009023629128932953, 0.03184448182582855, -0.020326264202594757, 0.03387710824608803, 0.020865218713879585, 0.03119773603975773, 0.0002584091853350401, 0.022050917148590088, -0.020942211151123047, -0.009731968864798546, -0.026023777201771736, 0.05451134592294693, -0.025931386277079582, -0.0009802225977182388, 0.0042654359713196754, 0.006425101310014725, 0.02214330993592739, -0.004053703974932432, 0.0003108609525952488, 0.03637169301509857, -0.017415912821888924, -0.024145137518644333, -0.0073682707734405994, 0.01609162613749504, 0.0053240954875946045, 0.035016611218452454, -0.013181274756789207, -0.009139119647443295, -0.004942977800965309, -0.0007141140522435308, 0.002698619617149234, 0.021681347861886024, 0.01833983324468136, 0.004885233007371426, -0.029580874368548393, -0.02839517593383789, 0.007460663095116615, -0.011318033561110497, -0.024853477254509926, 0.02351379208266735, -0.01425918284803629, -0.011803092435002327, -0.02075742743909359, 0.032829996198415756, 0.0011645255144685507, 0.009662674739956856, 0.025731202214956284, 0.001407054834999144, -0.005300997290760279, 0.017554501071572304, 0.01034791674464941, 0.008823446929454803, 0.007441414520144463, -0.018847990781068802, 0.00389201776124537, 0.00944709312170744, -0.01010923646390438, 0.013119679875671864, -0.010571197606623173, -0.008777250535786152, 0.04517974331974983, 0.01188778504729271, 0.018309036269783974, -0.011695301160216331, -0.00472354656085372, 0.005377990659326315, 0.01251143217086792, 0.019433140754699707, -0.012811706401407719, 0.020495649427175522, -0.009847459383308887, 0.042993128299713135, -0.009331603534519672, 0.00903902854770422, -0.022174106910824776, 0.013481548987329006, 0.0003892980166710913, -0.012827104888856411, 0.0018362932605668902, -0.03387710824608803, -0.010863772593438625, -0.026300953701138496, -0.02365238033235073, 0.013635535724461079, -0.011710699647665024, 0.013073483482003212, -0.012211157009005547, -0.01595303788781166, -0.010409511625766754, -0.009539485909044743, -0.06867813318967819, 0.02357538789510727, -0.02357538789510727, -0.004096050281077623, -0.010401811450719833, 0.02329821139574051, -0.027070889249444008, -0.003697609296068549, 0.022805452346801758, -0.004484867211431265, 0.002542707836255431, -0.0388970784842968, 0.007268179208040237, 0.008022715337574482, 0.0019257980166003108, 0.015475678257644176, 0.011487418785691261, 0.006024735514074564, -0.002943073632195592, -0.00438092602416873, 0.01712333783507347, -0.01333526149392128, 0.01536018867045641, -0.049460574984550476, 0.0006169098196551204, 0.0010047642281278968, 0.0201414804905653, 0.03202926367521286, -0.01402050256729126, -0.007687793578952551, -0.007491460535675287, -0.0250998567789793, -0.016322607174515724, 0.029858050867915154, -0.002698619617149234, 0.02357538789510727, 0.023559987545013428, 0.0246070995926857, 0.0024291425943374634, 0.003957462031394243, 0.015213901177048683, 0.00832298956811428, 0.025469426065683365, 0.017077142372727394, 0.015252397395670414, -0.021065400913357735, 0.026162365451455116, 0.03594053164124489, 0.008292191661894321, -0.035232190042734146, 0.003872769419103861, 0.0012453686213120818, -0.02303643338382244, 0.008222897537052631, -0.01234204601496458, 0.01683076284825802, 0.0063173105008900166, 0.005120062734931707, -0.031166939064860344, 0.015629665926098824, 0.023329008370637894, -0.0030450900085270405, 0.020049087703227997, 0.024021949619054794, 0.0011192918755114079, 0.04317791387438774, -0.004858285188674927, 0.0052586509846150875, 0.02976565808057785, -0.02274385839700699, 0.0017246527131646872, 0.0003512825060170144, -0.019617924466729164, -0.001705404371023178, 0.06732305139303207, -0.004142246209084988, 0.020110683515667915, -0.003926664590835571, -0.02482268027961254, 0.0028526063542813063, 0.008099708706140518, 0.01869400404393673, -0.005216304678469896, 0.021835336461663246, -0.0295654758810997, 0.0009705983684398234, 0.005508879665285349, 0.01158751081675291, 0.037018440663814545, -0.0064443498849868774, -0.0016033881111070514, -0.01047880481928587, -0.01992589794099331, -0.00869255792349577, 0.023960353806614876, -0.018801795318722725, 0.02260527014732361, -0.026516536250710487, 0.010463406331837177, -0.007876427844166756, 0.020680435001850128, -0.01609162613749504, -0.02466869354248047, 0.04367067292332649, 0.007183486595749855, -0.0031971519347280264, 0.023344406858086586, 0.017908670008182526, 6.039171785232611e-05, 0.020880617201328278, -0.00896973442286253, -0.011217942461371422, 0.024222131818532944, -0.001021125353872776, -0.002977720694616437, -0.017754683271050453, 0.0005851500318385661, -0.011972477659583092, -0.02282085083425045, 0.03206006437540054, -0.0033434394281357527, -0.010578896850347519, 0.01595303788781166, -0.05072326958179474, -0.0027852372732013464, -0.019402343779802322, -0.006221069023013115, 0.002007603645324707, -0.018678605556488037, 0.009685773402452469, -0.014759640209376812, 0.0011751122074201703, 0.007984218187630177, 0.013874215073883533, -0.0023579236585646868, -0.012241954915225506, 0.002573505276814103, -0.0019825806375592947, -0.042931534349918365, -0.01388191431760788, 0.005212455056607723, 0.0009316204814240336, -0.01227275189012289, -0.01712333783507347, -0.0010268997866660357, -8.348974370164797e-05, 0.006425101310014725, 0.03581734001636505, 0.027517450973391533, 0.02399115078151226, -0.0004672538489103317, 0.029781056568026543, -0.00776863656938076, -0.07767096906900406, -0.0301660243421793, -0.012865601107478142, -0.010909968055784702, -0.00229247915558517, -0.009577982127666473, 0.024976667016744614, 0.018663207069039345, 0.026270156726241112, -0.0043039326556026936, 0.0005326982936821878, 0.019895100966095924, 0.018986579030752182, -0.0038400471676141024, 0.0032125506550073624, -0.022020120173692703, -0.00666763074696064, -0.04730476066470146, -0.017693089321255684, 0.02879554219543934, -0.027378862723708153, -0.002411819063127041, 0.0009802225977182388, -0.004858285188674927, 0.005535827483981848, -0.011287236586213112, 0.013327562250196934, -0.028194991871714592, -0.021188590675592422, -0.002721717581152916, -0.015213901177048683, -0.0030758874490857124, 0.006902460474520922, 0.020988408476114273, 0.026778314262628555, 0.015968436375260353, -0.006167173385620117, 0.009608779102563858, 0.017215730622410774, -0.02420673333108425, 0.025007463991642, 0.022636067122220993, -0.014744240790605545, -0.0018728651339188218, -0.03754199296236038, 0.0020287767983973026, 0.004839036613702774, -0.0035570962354540825, -0.03239883482456207, -0.01054809894412756, 0.011395026929676533, 0.004496416077017784, 0.008446178399026394, 0.03264521434903145, -0.00465425243601203, 0.010332517325878143, 0.006883212365210056, 0.007884127087891102, -0.01890958473086357, 0.016861559823155403, 0.002663972554728389, -0.007522257510572672, 0.008207499049603939, -0.010078439489006996, -0.022867048159241676, 0.0506000779569149, 4.9805123126134276e-05, 0.015999233350157738, 0.034000296145677567, 0.012280451133847237, 0.008654060773551464, -0.0002880035317502916, -0.0068293167278170586, 0.04758193716406822, 0.011479719541966915, -0.027132483199238777, -0.038250334560871124, 0.026424143463373184, 0.017616095021367073, -0.003291469067335129, -0.005162409041076899, 0.00201145326718688, 0.009739668108522892, 0.0007376932771876454, -0.016137821599841118, 0.012981091625988483, -0.0181550495326519, 0.012472935020923615, 0.007541506085544825, -0.013165876269340515, -0.00017612245574127883, 0.0037399556022137403, -0.025946784764528275, 0.003976710606366396, -0.008515472523868084, 0.013643234968185425, -0.017708487808704376, -0.02631635218858719, 0.002814109669998288, -0.03184448182582855, 0.010055341757833958, -0.01408979669213295, -0.005197056103497744, 0.02976565808057785, 0.041607245802879333, -0.00839228369295597, 0.02702469192445278, 0.0017631493974477053, 0.015614266507327557, -0.021434970200061798, -0.021481165662407875, -0.005150860175490379, -0.026270156726241112, -0.007433715276420116, 0.014751940034329891, 0.019155964255332947, 0.01813965104520321, 0.009708871133625507, 0.0367104671895504, -0.039081864058971405, -0.02255907468497753, -0.05540446937084198, -0.007545355707406998, -0.03621770814061165, -0.008238296955823898, 0.0032029266003519297, -0.011341131292283535, -1.631598934181966e-05, 0.005851500201970339, 0.018540017306804657, 0.009493289515376091, 0.006040134467184544, 0.00019236326625104994, -0.006090180017054081, 0.010024543851613998, 0.00020186713663861156, -0.001965257106348872, 0.015352489426732063, 0.02955007739365101, -0.014043601229786873, -0.04000578448176384, 0.02583899348974228, -0.0015312067698687315, 0.0038746942300349474, -0.039020270109176636, 0.0028275835793465376, 0.02514605224132538, 0.04693519324064255, -0.008777250535786152, 0.022189505398273468, -0.03159810230135918, 0.005562774837017059, 0.005451134406030178, -0.041206881403923035, 0.014952123165130615, -0.011618307791650295, -0.023067230358719826, -0.022081714123487473, 0.01732352003455162, 0.009693472646176815, 0.016184018924832344, -0.01549877692013979, -0.013527745380997658, 0.007764786947518587, -0.0057398597709834576, 0.028502967208623886, -0.007680094335228205, 0.01773928478360176, 0.02571580372750759, -0.011756896041333675, -0.018724801018834114, -0.03609451651573181, 0.004869834054261446, 0.031936872750520706, -0.024145137518644333, -0.023221217095851898, 0.004465618636459112, 0.024437712505459785, 0.004115298390388489, -0.02035706117749214, -0.003505125641822815, -0.04487176984548569, 0.015614266507327557, 0.020372459664940834, -0.04850585758686066, 0.007171937730163336, -0.02412973903119564, 0.014467064291238785, -0.002737116301432252, -0.02260527014732361, 0.03960542008280754, -0.0030835866928100586, 0.01206486951559782, -0.0015735531924292445, 0.015906842425465584, -0.0064135524444282055, 0.012434437870979309, 0.024037348106503487, -0.013273666612803936, 0.008784949779510498, -0.01536018867045641, -0.01144892256706953, -0.016445795074105263, -0.002527309115976095, -0.023406000807881355, 0.029519280418753624, 0.017354318872094154, 0.0062133693136274815, 0.032829996198415756, 0.012426738627254963, 0.011803092435002327, 0.007345173042267561, 0.01581444963812828, 0.003054714063182473, -0.0029892697930336, -0.006748473737388849, 0.007006401661783457, 0.03162889927625656, 0.03667966648936272, 0.025130653753876686, 0.003697609296068549, -0.010317118838429451, -0.008738753385841846, -0.005235552787780762, -0.02528464049100876, 0.022851649671792984, 0.0069602057337760925, 0.009878256358206272, 0.0302584171295166, 0.0028121848590672016, -0.010386412963271141, 0.011248739436268806, 0.0007410616963170469, -0.002109619788825512, -0.04274674877524376, -0.004538762383162975, 0.030350808054208755, -0.00876185204833746, -0.0015966511564329267, 0.018031859770417213, 0.026362549513578415, 0.021896930411458015, 0.0008474088972434402, 0.01827823929488659, -0.007110342849045992, 0.0388970784842968, 0.024145137518644333, 0.01683076284825802, 0.0068601141683757305, -0.004839036613702774, -0.03279919922351837, 0.04671961069107056, 0.024114340543746948, 0.029226703569293022, -0.02405274659395218, 0.01579905115067959, 0.0074029178358614445, -0.009485590271651745, 0.021804537624120712, -0.002542707836255431, -0.006055532954633236, 0.00045474243233911693, -0.012957993894815445, -0.04006737843155861, -0.02583899348974228, -0.04096050187945366, 0.0392974428832531, 0.016384201124310493, 0.0038477464113384485, -0.015267796814441681, -0.004030605778098106, -0.0058284024707973, 0.025454025715589523, -0.037357211112976074, 0.028271986171603203, -0.007791734766215086, -0.014759640209376812, 0.030473997816443443, 0.031105343252420425, -0.021696748211979866, 0.023344406858086586, -0.015052215196192265, 0.008299890905618668, -0.006232617888599634, -0.010301720350980759, -0.012727012857794762, 0.026639726012945175, -0.02000289224088192, 0.0041999914683401585, -0.04656562581658363, -0.029796455055475235, 0.002419518306851387, -0.008846544660627842, 0.056605566293001175, 0.0004371782997623086, 0.02439151704311371, -0.042100004851818085, -0.021973922848701477, 0.018647808581590652, -0.028194991871714592, -0.0015389061300083995, 0.03202926367521286, 0.0016033881111070514, 0.026778314262628555, -0.01843222603201866, 0.008022715337574482, -0.01992589794099331, 0.020187675952911377, 0.026285555213689804, 0.011194843798875809]" -Visualizing IoT Data at Scale With Hopara and TimescaleDB,"a user can move from an overview to the actual time-series data.FC users appreciate both the analytics dashboard and the Hopara drill-down system. As a result, IBBX and Hopara combined their software into a single system. The takeaway from this example is that there is a need for predictive analytics and insightful visualization. IoT customers should have both kinds of tools in their arsenal.✨Editor's Note:If you want to learn more abouttime-series forecasting, its applications, and popular techniques, check out this blog post.Figure 4. The factory in questionWe now turn our attention to response time. It is accepted pragma that the response time for a command to a visualization system must be less than 500 msec. Since it takes some time to render the screen, the actual time to fetch the data from a storage engine must be less than this number. The next section discusses DBMS performance considerations in more detail.Behind The Scenes: Powering Real-Time Visualizations Using TimescaleFigure 5. More real-time detailsFigure 6. The actual dataAs mentioned previously, these real-time views are powered by TimescaleDB. TimescaleDB is built on top of PostgreSQL and extends it with a series of extremely useful capabilities for this use case, such asautomatic partitioning by time,boosted performance for frequently-run queries, andcontinuous aggregates for real-time aggregations.To guarantee a real-time display, Hopara fetches live data from the database for every user command. Otherwise, stale data will be rendered on the screen. The screenshots above come from a real Hopara application interacting with a database. We note in Figure 2 that the alerting condition is the first one mentioned in a previous section (the latest reading over a threshold).In other words, the display is showing a computation based on the most recent values from the various sensors. Specifically, Hopara uses a database with the schema shown in Figure 7, with a Readings table with all the raw data. This is connected to a Sensor table with the characteristics of each individual sensor.Figure 7. The database schemaThen, the display in Figure 2 requires fetching the most recent reading for each sensor. This can be produced by running the following two-step PostgreSQL query:–— get the latest reading timestamp + sensor_id SELECT max(timestamp) as timestamp, sensor_id FROM readings GROUP BY sensor_id —— get the reading value SELECT l.timestamp, l.sensor_id, r.value FROM latest l INNER JOIN",https://www.timescale.com/blog/visualizing-iot-data-at-scale-with-hopara-and-timescaledb/,500,"[-0.02436000108718872, 0.015272332355380058, 0.045802973210811615, -0.016380243003368378, 0.0542735792696476, 0.007078705355525017, 0.0004592919140122831, 0.001058825640939176, 0.018820449709892273, -0.002881969092413783, 0.0691111609339714, -0.012986390851438046, -0.02766970731317997, -0.059855204075574875, 0.044232264161109924, 0.018778378143906593, 0.006149603053927422, -0.01842777244746685, -0.03508849814534187, 0.04288594424724579, -0.009143766015768051, -0.02065761759877205, 0.010658376850187778, -0.005090777762234211, 0.0034955269657075405, -0.023013681173324585, -0.021471019834280014, 0.10282529145479202, 0.008519689552485943, -0.020180795341730118, -0.015496719628572464, -0.0357055626809597, 0.005178428720682859, -0.009010535664856434, 0.03205927833914757, -0.011086114682257175, -0.008070915937423706, 0.005062729120254517, -0.004803281743079424, 0.016436340287327766, -0.016927186399698257, -0.010174542665481567, -0.034892160445451736, 0.02987150475382805, 0.006945475470274687, -0.003947807010263205, -0.01896069198846817, -0.02872152253985405, 0.0012358808889985085, 0.06002349406480789, -0.04647613316774368, -0.02004055306315422, -0.042493268847465515, 0.0032921764068305492, -0.00046016843407414854, -0.02113443985581398, 0.004698100499808788, 0.06731607019901276, 0.0028293784707784653, -0.024261832237243652, 0.009178826585412025, -0.061482008546590805, 0.0167729202657938, 0.012137928046286106, -0.030516617000102997, 0.03789333626627922, -0.03082514926791191, 0.019675925374031067, -0.020264940336346626, 0.029114197939634323, 0.0607527494430542, 0.03032027743756771, 0.035004355013370514, -0.01002027653157711, 0.031245874240994453, -0.03449948504567146, -0.023069776594638824, 1.9474984583212063e-05, 0.008744076825678349, 0.0036077203694730997, 0.030797099694609642, 0.0010719733545556664, -0.0005250302492640913, 0.02227039821445942, 0.021485043689608574, -0.050066325813531876, -0.04672857001423836, -0.0073697068728506565, -0.012923282571136951, 0.003071295563131571, -0.015426598489284515, 0.07623544335365295, 0.009305044077336788, 0.034387290477752686, 0.02322404272854328, -0.002704913727939129, -0.007106753531843424, -0.06568925827741623, -0.035425081849098206, 0.027431298047304153, 0.02012469992041588, -0.052226047962903976, -0.01999848149716854, -0.0006771049811504781, 0.04919682443141937, 0.0009203368681482971, 0.00244546658359468, 0.020755786448717117, 0.002613756572827697, 0.006345941685140133, -0.0714111253619194, -0.034387290477752686, -0.04159571975469589, 0.006721088662743568, -0.016632677987217903, -0.01727779023349285, -0.02716483734548092, -0.018315579742193222, 0.03379827365279198, -0.017039379104971886, -0.023588672280311584, 0.017446080222725868, -0.01433972455561161, -0.00434048380702734, -0.010469051077961922, -0.027823973447084427, 0.002631286857649684, -0.030965391546487808, -0.007134801708161831, -0.016576580703258514, 0.065072201192379, -0.00897547509521246, 0.02824470028281212, -0.04569077864289284, 0.014557098969817162, -0.03562141954898834, 0.003646286902949214, 0.008225182071328163, 0.00621972419321537, -0.0080989645794034, -0.025243524461984634, -0.027795925736427307, 0.029394682496786118, -0.0381457693874836, -0.045298103243112564, 0.019661901518702507, -0.015328429639339447, 0.028427014127373695, -0.008561762049794197, -0.022410640493035316, 0.0281465295702219, -0.017628394067287445, -0.02283136546611786, -0.008000794798135757, 0.056573543697595596, 0.039267703890800476, 0.027515443041920662, -0.0019721502903848886, -0.04176400974392891, -0.026449603959918022, -0.05054314807057381, 0.006381002254784107, -0.003481502877548337, -0.0072084288112819195, -0.04229692742228508, -0.004785751458257437, -0.03534093499183655, -0.009620588272809982, -0.09233520179986954, 0.0009606563835404813, -0.032199516892433167, -0.04591516777873039, -0.007559033110737801, 0.008084939792752266, 0.04998217895627022, 0.030741004273295403, -0.00924193486571312, -0.030095892027020454, 0.01682901754975319, -0.04877610132098198, -0.03287268057465553, 0.009431261569261551, -0.015398549847304821, 0.00303974119015038, 0.026155097410082817, 0.014865631237626076, -0.0243319533765316, 0.018708257004618645, -0.03180684149265289, 0.02769775688648224, -0.02382708340883255, 0.05676988139748573, 0.005353731103241444, 0.006661485880613327, 0.0190728846937418, -0.04386763647198677, 0.00837944820523262, 0.013329983688890934, -0.02653374895453453, -0.0010640847031027079, 0.0443444587290287, 0.0069069089367985725, 0.07971344143152237, -0.028833715245127678, -0.024640485644340515, 0.022060036659240723, 0.02055944874882698, -0.03845430165529251, -0.009641624055802822, -0.01960580423474312, -0.0053642489947378635, 0.012397375889122486, 0.04507371783256531, 2.266603405587375e-05, -0.007552021183073521, -0.019760070368647575, -0.0681014209985733, -0.006132072769105434, -0.0040880488231778145, -0.0027329621370881796, -0.010931848548352718, 0.06591364741325378, 0.018343627452850342, -0.024205734953284264, -0.02163930982351303, 0.01952165924012661, 0.017530225217342377, -0.005420345813035965, 0.020910052582621574, -0.004771727602928877, 0.01904483698308468, -0.01432570070028305, 0.03856649622321129, -0.012811088934540749, 0.032788533717393875, -0.02162528596818447, 0.031722694635391235, -0.03719212859869003, -0.015510743483901024, -0.015286357142031193, -0.02431792952120304, 0.03312511369585991, 0.012607738375663757, 0.01671682298183441, 0.002345544286072254, 0.009178826585412025, -0.029927602037787437, -0.06209907308220863, 0.034359242767095566, 0.02761361189186573, -0.011296477168798447, -0.04165181517601013, -0.014669292606413364, -0.04187620431184769, -0.029422730207443237, -0.030965391546487808, -0.028370916843414307, 0.029394682496786118, -0.021386874839663506, -0.030993439257144928, 0.010104422457516193, -0.021905770525336266, -0.010125458240509033, 0.01624000072479248, -0.017081452533602715, 0.0011438472429290414, 0.05410528928041458, -0.0423249751329422, -0.034303147345781326, -0.05979910492897034, 0.04426031559705734, 0.07197209447622299, 0.03514459729194641, -0.009543455205857754, -0.07836712151765823, 0.013652539812028408, 0.007327634375542402, -0.005486960522830486, 0.0013095078757032752, 0.021919794380664825, -0.007755371741950512, -0.0034990329295396805, 0.04939316213130951, 0.03407875820994377, 0.026379482820630074, 0.021849673241376877, 0.01002027653157711, 0.00868096761405468, 0.03348974138498306, -0.03783724084496498, 0.00331847183406353, -0.03357388824224472, 0.030769051983952522, -0.007348670624196529, 0.032844629138708115, 0.041988395154476166, 0.008863282389938831, -0.019858239218592644, -0.019872263073921204, -0.01631012186408043, 0.008435544557869434, -0.03806162625551224, -0.022494785487651825, -0.013982107862830162, 0.01272694393992424, 0.014164422638714314, 0.009354128502309322, 0.03946404531598091, -0.022887462750077248, -0.0076992749236524105, -0.03127392381429672, -0.021274682134389877, 0.04052988067269325, 0.0032904234249144793, -0.006395026110112667, -0.02438805066049099, 0.09087669104337692, -0.022522833198308945, -0.004098566714674234, -0.08094757050275803, -0.005185440648347139, -0.05890155956149101, -0.0037760105915367603, -0.0013515803730115294, -0.012579689733684063, -0.08515482395887375, 0.00391625240445137, 0.000887467700522393, 0.01271292008459568, -0.00896846316754818, 0.0027837997768074274, 0.0027557513676583767, 0.0023174958769232035, 0.0466444231569767, -0.040277447551488876, -0.05794791504740715, -0.04134328290820122, -0.02005457878112793, -0.024135613813996315, 0.01188549306243658, 0.006198687944561243, -0.019760070368647575, -0.07365499436855316, 0.005697323475033045, -0.013961072079837322, -0.0024069000501185656, -0.03612628951668739, -0.009844974614679813, -0.022677099332213402, 0.01844179816544056, -0.030180037021636963, -0.0002704037178773433, 0.01846984587609768, -0.014977824874222279, 0.023055752739310265, 0.0073697068728506565, 0.02123260870575905, -0.00952943041920662, -0.06568925827741623, -0.017768636345863342, -0.022957583889365196, 0.014543075114488602, 0.051272403448820114, 0.0033885925076901913, 0.0026453109458088875, 0.042493268847465515, -0.054918691515922546, -0.02594473399221897, -0.033910468220710754, -0.014262591488659382, 0.026688015088438988, -0.052310194820165634, -0.03674335405230522, -0.014304663985967636, -0.06226736307144165, -0.04024939984083176, 0.038229916244745255, -0.0011710190447047353, -0.0024980572052299976, 0.0750013142824173, 0.012502556666731834, -0.010476063005626202, 0.006517738103866577, -0.031217826530337334, 0.05648940056562424, 0.03750065714120865, 0.006303869187831879, 0.02710874006152153, -0.04179205745458603, -0.012495544739067554, 0.06030397489666939, -0.04350300878286362, -0.00865993183106184, -0.013799794018268585, -0.03026418201625347, -0.009213886223733425, 0.03576166182756424, 0.01358241867274046, 0.04818708449602127, 0.0265617985278368, 0.012881210073828697, -0.0200125053524971, -0.016464387997984886, -0.022663075476884842, -0.01407326478511095, 0.011044042184948921, -0.00621621822938323, 0.020882004871964455, 0.022999655455350876, -0.0021106391213834286, -0.025355719029903412, -0.0037654924672096968, 0.029927602037787437, -0.012313230894505978, 0.032732438296079636, -0.020138723775744438, -0.03149830922484398, 0.028427014127373695, -0.013533334247767925, 0.04782245680689812, 0.01330894697457552, -0.04297008737921715, -0.04936511442065239, 0.0025243523996323347, -0.06849409639835358, 0.049645598977804184, 0.04787855222821236, -0.046307843178510666, -0.005402815528213978, -0.042605459690093994, -0.025692299008369446, 7.696864486206323e-05, 0.013947047293186188, -0.01189250499010086, -0.014837582595646381, -0.0005894538480788469, 0.03893112391233444, -0.01681499183177948, 0.023546598851680756, 0.01273395586758852, 0.032732438296079636, 0.001201696926727891, 0.0020212349481880665, 0.009571502916514874, -0.030544664710760117, -0.027277031913399696, -0.02221430279314518, -0.0315263569355011, -0.013252850621938705, -0.014192470349371433, 0.027753854170441628, 0.024191711097955704, -0.029394682496786118, 0.044709086418151855, -0.016969257965683937, -0.032339759171009064, 0.02538376674056053, -0.03357388824224472, 0.022635027766227722, 0.014935752376914024, -0.022368567064404488, 0.05648940056562424, -0.04383958876132965, 0.017712540924549103, 0.012656822800636292, -0.03250804916024208, 0.026393508538603783, -0.010342833586037159, 0.023995373398065567, -0.009298032149672508, 0.01518818736076355, 0.004694594535976648, 0.016464387997984886, -0.037079934030771255, -0.027852023020386696, 0.0443444587290287, 0.031133681535720825, -0.015482695773243904, 0.012790052220225334, -0.02764165960252285, 0.03312511369585991, -0.044176168739795685, -0.03463972732424736, 0.04555054008960724, 0.0424652174115181, 0.023574646562337875, 0.027922144159674644, 0.003108109114691615, 0.013694612309336662, 0.00998521689325571, -0.038734786212444305, -0.015819275751709938, 0.0541333369910717, -0.01731986366212368, -0.042521316558122635, 0.009830950759351254, -0.08661334216594696, -0.011008981615304947, 0.021905770525336266, 0.003362297313287854, 0.04560663551092148, -0.020405182614922523, -0.022354543209075928, 0.03562141954898834, 0.0036357687786221504, 0.04479323327541351, -0.012607738375663757, 0.01624000072479248, 0.012481520883738995, -0.035565320402383804, -0.020797859877347946, 0.036042142659425735, -0.014753437601029873, 0.03211537376046181, -0.010426978580653667, 0.0066159069538116455, 0.006047927774488926, -0.004459689371287823, 0.0007985017728060484, -0.018610088154673576, -0.026113023981451988, -0.007881589233875275, -0.03921160846948624, 0.00245072552934289, 0.02755751460790634, 0.007965734228491783, -0.02374293841421604, -0.06703558564186096, -0.023490501567721367, -0.030460519716143608, 0.006265302654355764, -0.013491261750459671, -0.014010156504809856, -0.0004991731839254498, -0.02654777467250824, -0.017614370211958885, -0.040305495262145996, -0.034331195056438446, -0.045270055532455444, 0.009851986542344093, 0.013666563667356968, 0.021499069407582283, -0.006703558377921581, 0.0018529448425397277, 0.01730583794414997, -0.00230873073451221, 0.01795095019042492, 0.019872263073921204, 0.0022263387218117714, 0.03615433722734451, 0.03186293691396713, -0.015524768270552158, 0.013505285605788231, 0.024051468819379807, -0.01737595908343792, 0.02280331775546074, 0.017614370211958885, -0.016169879585504532, 0.0211624875664711, -0.021555164828896523, -0.00024410839250776917, 0.03360193595290184, 0.020405182614922523, -0.011583972722291946, 0.001893264357931912, 0.03851040080189705, 0.003206278197467327, -0.04728953540325165, -0.042016446590423584, 0.03093734197318554, 0.014192470349371433, -0.006689534056931734, 0.004947029519826174, 0.02336428500711918, -0.005897168070077896, 0.010069361887872219, -0.041511572897434235, -0.002562918933108449, 0.0216673593968153, 0.01789485476911068, -0.027767878025770187, -0.013161693699657917, -0.03632262721657753, 0.019900312647223473, -0.028889812529087067, 0.02328014001250267, 0.024289879947900772, 0.03646286949515343, -0.015945494174957275, -0.023995373398065567, 0.005273092072457075, -0.03147026151418686, -0.03315316140651703, 0.029170295223593712, 0.019956408068537712, 0.0001985298004001379, 0.007944698445498943, 0.0007467876421287656, -0.01628207415342331, 0.018189361318945885, 0.00011548036127351224, -0.01997043378651142, -0.014543075114488602, 0.003968843258917332, -0.02336428500711918, 0.020292989909648895, 0.025159379467368126, 0.017179621383547783, 0.014150397852063179, -0.023644767701625824, 0.002787305973470211, -0.0029871505685150623, 0.009908083826303482, -0.03177879378199577, -0.06120152398943901, 0.027319103479385376, -0.01271993201225996, 0.0015777202788740396, 0.002583955181762576, 0.007573057431727648, -0.015608913265168667, 0.008056892082095146, -0.02386915497481823, -0.03472387045621872, 0.022999655455350876, 0.03806162625551224, -0.010377893224358559, -0.008835233747959137, -0.021961865946650505, -0.011506840586662292, 0.03085319697856903, -0.019157029688358307, 0.012271158397197723, -0.00840048398822546, 0.01435374841094017, 0.02542584016919136, 0.023574646562337875, 0.05705036595463753, 0.009739793837070465, -0.048579759895801544, 0.02594473399221897, 0.053291887044906616, -0.002008963841944933, -0.029703214764595032, 0.021330779418349266, -0.03130197152495384, -0.006963005755096674, 0.02539779059588909, -0.010651364922523499, -0.03309706598520279, -0.007650190498679876, -0.01518818736076355, 0.06019178405404091, 0.007874577306210995, 0.02984345704317093, -0.025173403322696686, 0.0076992749236524105, 0.01139464695006609, -0.003297435352578759, 0.01574915461242199, -0.035004355013370514, -0.0044176168739795685, -0.01272694393992424, -0.02123260870575905, 0.00651072571054101, 0.00332723674364388, 0.022060036659240723, 0.008596822619438171, 0.035537272691726685, 0.03851040080189705, -0.010973921045660973, 0.0032080314122140408, 0.02117651328444481, 0.04052988067269325, 0.004992608446627855, -0.009431261569261551, 0.015328429639339447, -0.017614370211958885, -0.03362998366355896, 0.04667247459292412, -0.024836823344230652, 0.0029433248564600945, -0.026828257367014885, 0.002878463128581643, 0.004778739530593157, 0.03573361039161682, 0.027894094586372375, 0.008505665697157383, 0.015384525991976261, 0.008540726266801357, -0.010181555524468422, -0.011597997508943081, 0.024514267221093178, 0.004382556304335594, 0.006104024592787027, -0.053319934755563736, 0.04008110612630844, 0.03242390602827072, 0.0022035492584109306, -0.02322404272854328, -0.011780311353504658, -0.005006632301956415, -0.0016907902900129557, -0.054526012390851974, 0.002845155540853739, -0.005308152176439762, 0.019844215363264084, -0.0011175519321113825, -0.0001933802996063605, -0.028314821422100067, -0.024149639531970024, 0.029955649748444557, -0.03528483957052231, 0.022536858916282654, -0.025327669456601143, 0.010973921045660973, -0.01795095019042492, 0.0167729202657938, 0.009312056005001068, -0.013147668913006783, -0.048579759895801544, 0.017179621383547783, -0.03907136619091034, -0.0381457693874836, 0.017726564779877663, -0.00952241849154234, -0.03646286949515343, 0.04111889749765396, 0.013147668913006783, -0.0036532990634441376, 0.01789485476911068, -0.02546791173517704, 0.022929534316062927, -0.015160138718783855, 0.034948259592056274, -0.008989499881863594, -0.0271367896348238, -0.0233923327177763, -0.015146114863455296, -0.007678238674998283, -0.00035586359445005655, -0.005346718709915876, -0.007169862277805805, -0.02874957025051117, 0.022424664348363876, -0.017193645238876343, -0.0017407514387741685, 0.026225216686725616, 0.03093734197318554, -0.002419171156361699, -0.004992608446627855, 0.012586701661348343, -0.02336428500711918, -0.001707443967461586, 0.01724974252283573, -0.013196754269301891, -0.0076992749236524105, 0.008197133429348469, 0.0037795165553689003, 0.0161979291588068, 0.01783875748515129, 0.04787855222821236, -0.018736304715275764, 0.023546598851680756, -0.0089614512398839, 0.02487889677286148, 0.00461395550519228, -0.022508809342980385, 0.003754974342882633, -0.041511572897434235, -0.0023157428950071335, -0.025173403322696686, 0.007026114501059055, -0.03133001923561096, 0.05511502921581268, 0.01633816957473755, 0.022031987085938454, 0.022354543209075928, 0.03189098834991455, 0.023728912696242332, -0.0047471849247813225, -0.017151573672890663, -0.0254819355905056, 0.0027802938129752874, 0.008561762049794197, -0.029114197939634323, 0.012698895297944546, 0.01835765317082405, -0.012551642023026943, -0.05508698150515556, -0.02329416386783123, -0.02987150475382805, 0.005024162586778402, -0.025369742885231972, 0.033321451395750046, -0.002929300768300891, 0.017151573672890663, -0.1135958656668663, -0.010511123575270176, 0.03472387045621872, -0.012264145538210869, -0.002508575329557061, 0.012565665878355503, 0.00567278079688549, 0.007650190498679876, 0.01301443949341774, -0.03609824180603027, -0.01433271262794733, -0.043054234236478806, -0.05979910492897034, -0.003435924183577299, -0.007250501308590174, -0.002841649577021599, 0.02172345481812954, 0.012109880335628986, 0.013344007544219494, 0.017039379104971886, -0.040922559797763824, -0.02110639214515686, -0.01161202136427164, 0.03559337183833122, -0.008772124536335468, -0.015328429639339447, -0.026267290115356445, 0.02769775688648224, 0.0011175519321113825, 0.002860932843759656, -0.03677140176296234, 0.0167729202657938, -0.02213015779852867, 0.02987150475382805, -0.005486960522830486, -0.007622142322361469, -0.01901678927242756, 0.023602696135640144, 0.0167729202657938, 0.0036708293482661247, -0.026267290115356445, -0.05051509663462639, 0.032704390585422516, -0.027431298047304153, 0.06282833218574524, -0.013344007544219494, -0.008344387635588646, 0.021036271005868912, -0.008758100681006908, -0.0028521677013486624, 0.017025355249643326, -0.02172345481812954, 0.012229084968566895, -0.00865993183106184, -0.02378500998020172, 0.001868722029030323, -0.0232520904392004, -0.009571502916514874, 0.009031572379171848, -0.01187146920710802, -0.010342833586037159, 0.004666545893996954, 0.03407875820994377, -0.05475040152668953, 0.0017468869918957353, -0.007594093680381775, -0.010889776051044464, 0.02060152031481266, 0.002494551008567214, 0.02277527004480362, 0.013035476207733154, 0.04182010516524315, 0.018750328570604324, 0.007748359814286232, 0.021919794380664825, 0.030151987448334694, 0.0400250107049942, -0.016352195292711258, 0.008898342959582806, -0.01056721992790699, 0.03135806694626808, -0.01846984587609768, -0.023546598851680756, 0.032732438296079636, 0.010959897190332413, 0.002422677120193839, -0.007439827546477318, -0.024177687242627144, 0.015258308500051498, -0.03463972732424736, -0.002193031134083867, -0.012355303391814232, -0.007853541523218155, 0.002811848185956478, 0.015875373035669327, 0.002580449217930436, 0.008000794798135757, 0.016169879585504532, 0.03576166182756424, 0.012916270643472672, 0.032844629138708115, 0.005679793190211058, 0.03918356075882912, 0.015033921226859093, -0.014283628202974796, -0.03419095277786255, -0.006019879598170519, 0.004778739530593157, 0.023714888840913773, -0.011352574452757835, -0.019956408068537712, 0.004834836348891258, 0.014641244895756245, -0.013105596415698528, 0.004855872597545385, -0.001108786789700389, 0.015861347317695618, 0.00943827349692583, -0.0004759456205647439, -0.040361590683460236, 0.013322971761226654, 0.009164801798760891, -0.031217826530337334, 0.017684491351246834, -0.010672401636838913, -0.0028241192921996117, 0.016029639169573784, -0.003646286902949214, -0.009662660770118237, 0.026800209656357765, -0.025636201724410057, 0.028020313009619713, 0.02274722047150135, 0.038734786212444305, -0.000553078600205481, -0.014781486243009567, 0.009080656804144382, 0.016183903440833092, -0.033826325088739395, 0.031722694635391235, 0.005150380078703165, 0.018792401999235153, -0.015061969868838787, 0.01215195283293724, 0.026421556249260902, 0.015510743483901024, -0.013954059220850468, 0.02595875784754753, -0.023700864985585213, 0.04075426980853081, 0.0019230657489970326, -0.006682522129267454, 0.013329983688890934, 0.054497964680194855, 0.0007213687640614808, 0.08509872853755951, -0.015833299607038498, -0.05146874114871025, -0.014949776232242584, 0.017039379104971886, -0.025173403322696686, 0.016674751415848732, 0.03609824180603027, -0.036687254905700684, 0.032311711460351944, -0.030039794743061066, -0.02549595944583416, 0.01626805029809475, -0.003199266269803047, 0.01678694412112236, -0.005353731103241444, 0.0007375842542387545, -0.0008515306981280446, -0.023560622707009315, 0.05783572047948837, 0.00894742738455534, 0.014031192287802696, 0.029114197939634323, 0.011065078899264336, -0.0016697540413588285, -0.0443444587290287, 0.021975891664624214, 0.027375200763344765, 0.044148121029138565, 0.030769051983952522, 0.00028902958729304373, -0.024135613813996315, 0.01959178037941456, -0.040305495262145996, 0.0089614512398839, -0.0022684112191200256, 0.022536858916282654, 0.017726564779877663, 0.02008262649178505, -0.013491261750459671, -0.007552021183073521, 0.00693495711311698, 0.020405182614922523, -0.042605459690093994, 0.02434597723186016, -0.03312511369585991, 0.027248982340097427, 0.001547918887808919, -0.01689913682639599, 0.008323350921273232, 0.08386459946632385, -0.031610503792762756, -0.03736041858792305, -0.029534924775362015, 0.029591020196676254, 0.002613756572827697, 0.0062898448668420315, -0.010763558559119701, 0.010700449347496033, -0.01781070977449417, -0.00812000036239624, 0.01738998293876648, -0.005571105517446995, 0.010924836620688438, -0.0073697068728506565, -0.004999620374292135, -0.019199103116989136, -0.003940794616937637, -0.031021486967802048, 0.012916270643472672, 0.014641244895756245, 0.009858998470008373, -0.0003273769689258188, -0.0030572712421417236, 0.023083800449967384, 0.026197168976068497, 0.0004737543349619955, 0.02393927611410618, 0.01737595908343792, 0.003164205700159073, 0.016927186399698257, -0.00580250471830368, 0.007636166177690029, 0.02440207451581955, -0.034443385899066925, 0.032367806881666183, 0.016394266858696938, -0.020882004871964455, -0.001545289414934814, 0.0067456308752298355, 0.013540346175432205, 0.055591851472854614, 0.02660387009382248, 0.036687254905700684, -0.0011824137764051557, -0.008204145357012749, 0.02335026115179062, 0.033405598253011703, 0.017670467495918274, -0.009809914045035839, 0.01196262612938881, 0.010419965721666813, 0.03952014073729515, -0.016688775271177292, 0.00951540656387806, -0.008239205926656723, 0.007909637875854969, 0.019746046513319016, -0.027291055768728256, 0.009143766015768051, 0.009333091787993908, -0.016422314569354057, 0.0004991731839254498, 0.015033921226859093, 0.024500243365764618, -0.004508774261921644, 0.03449948504567146, 0.013042488135397434, -0.01781070977449417, -0.024107566103339195, 0.018035097047686577, -0.051272403448820114, 0.020236892625689507, 0.002143946709111333, -0.006833281833678484, 0.01628207415342331, 0.00018373868078924716, -0.0424652174115181, -0.028020313009619713, 0.038286011666059494, 0.006682522129267454, 0.007727323565632105, -0.04072622209787369, -0.0029222886078059673, -0.0018844992155209184, 0.01563696190714836, 0.02379903383553028, 0.002415665192529559, -0.010034301318228245, -0.015819275751709938, -0.013189741410315037, 0.0013428152306005359, -0.0043369778431952, 0.014199483208358288, -0.027866046875715256, 0.0014646503841504455, 0.013091572560369968, 0.03259219601750374, 0.007706287316977978, 0.014753437601029873, 0.010959897190332413, 0.0016294345259666443, -0.02608497627079487, -0.017993023619055748, 0.020419206470251083, -0.0167729202657938, 0.009746805764734745, 0.02925444021821022, 0.040277447551488876, -0.004606943111866713, 0.001313890446908772, 0.05085168033838272, 0.03472387045621872, 0.021835649386048317, 0.019311295822262764, 0.006903402972966433, 0.018007047474384308, 0.013168705627322197, 0.04019330069422722, 0.0265617985278368, -0.016127808019518852, 0.00304324715398252, 0.0072084288112819195, -0.03298487141728401, 0.016997307538986206, -0.031021486967802048, 0.007169862277805805, 0.011079102754592896, -0.01904483698308468, -0.03365803509950638, 0.008568773977458477, 0.0025857083965092897, -0.008568773977458477, 0.028370916843414307, 0.014977824874222279, -0.0015260061481967568, 0.011738238856196404, 0.0028924872167408466, 0.032704390585422516, -0.0045824008993804455, -0.017460104078054428, 0.029170295223593712, 0.010889776051044464, -0.024093542248010635, 0.006142591126263142, 0.05862107500433922, -0.0014024180127307773, -0.001891511376015842, 0.013743696734309196, -0.018175337463617325, -0.01631012186408043, 0.0010237651877105236, -0.004691088572144508, -0.009788878262043, -0.0161979291588068, 0.012144939973950386, -0.009164801798760891, -0.022621003910899162, 0.009389189071953297, 0.034359242767095566, -0.02051737532019615, 0.012874198146164417, -0.00706468103453517, 0.016127808019518852, 0.0024542314931750298, 0.028412990272045135, 0.0048698969185352325, 0.014430881477892399, -0.011450743302702904, -6.343750283122063e-05, 0.006012867204844952, -0.014262591488659382, -0.018610088154673576, -0.0018739810911938548, 0.0431944765150547, 0.00038347369991242886, 0.0015549310483038425, 0.022985631600022316, 0.04557858780026436, -0.00951540656387806, 0.025201452895998955, -0.0006131196278147399, 0.01898873969912529, 0.019942384213209152, -0.00418972410261631, -0.002862685825675726, -0.007162850350141525, 0.01835765317082405, 0.0027347151190042496, 0.0050416928716003895, 0.03371413052082062, 0.017207669094204903, -0.0038356133736670017, -0.012677859514951706, -0.042577411979436874, 0.0030835666693747044, 0.0011044042184948921, 0.022578930482268333, -0.0075379968620836735, 0.010034301318228245, 0.003898722119629383, 0.006395026110112667, 0.018077168613672256, 0.02384110726416111, 0.021541140973567963, -0.0021772540640085936, -0.0002355624019401148, -0.010405941866338253, -0.010448014363646507, -0.04717734456062317, -0.028861762955784798, -0.009150777943432331, -0.010763558559119701, -0.01950763538479805, -0.040389638394117355, 0.0002872765762731433, 0.023462453857064247, 0.019269224256277084, 0.019956408068537712, 0.03379827365279198, 0.0325361005961895, -0.01082666777074337, 0.032367806881666183, 0.039912816137075424, -0.052254095673561096, -0.01901678927242756, 0.02984345704317093, -0.03539703041315079, 0.0127409677952528, -0.01624000072479248, 0.02978735975921154, 0.018035097047686577, -0.0024349484592676163, -0.00650721974670887, -0.003646286902949214, 0.027333127334713936, 0.028861762955784798, -0.016576580703258514, -0.0009168307879008353, -0.026870330795645714, -0.01161903329193592, -0.053908951580524445, -0.01545464713126421, 0.006437099073082209, -0.01631012186408043, -0.009431261569261551, 0.017544249072670937, 0.013652539812028408, 0.02329416386783123, -0.0035218223929405212, -0.010377893224358559, -0.012579689733684063, -0.026379482820630074, 0.0037760105915367603, -0.03907136619091034, -0.03738846629858017, 0.014472953975200653, 0.0173479113727808, 0.046335890889167786, 0.009753817692399025, 0.003628756618127227, 0.01736193522810936, 0.018273506313562393, 0.008091951720416546, -0.013883939012885094, 0.02500511333346367, 0.006300363223999739, -0.014248567633330822, -0.01839972473680973, 0.027319103479385376, 0.03862259164452553, -0.005648238584399223, -0.03778114169836044, -0.007141814101487398, -0.036631159484386444, -0.005732383579015732, 0.021288705989718437, 0.047794409096241, -0.005732383579015732, 0.007516960613429546, 0.01736193522810936, -0.01789485476911068, -0.016380243003368378, 0.030741004273295403, 0.004354508128017187, -0.02443012222647667, 0.004147651605308056, -0.01783875748515129, -0.0020440244115889072, 0.04776635766029358, 0.011731226928532124, 0.0030537652783095837, 0.01168915443122387, 0.012642798945307732, -0.0009194603189826012, 0.009753817692399025, -0.0036147325299680233, 0.014199483208358288, 0.01196262612938881, -0.028973957523703575, -0.02919834479689598, 0.021456995978951454, -0.0008681844337843359, 0.013659551739692688, -0.012243109755218029, -0.021400898694992065, 0.002654076088219881, -0.018694233149290085, -0.015019897371530533, -0.0026400520000606775, -0.024177687242627144, -0.00593924056738615, -0.02755751460790634, 0.0007402137853205204, 0.004322953522205353, 0.0034481952898204327, -0.02709471620619297, 0.03343364596366882, -0.00020674709230661392, 0.02225637435913086, -0.012320242822170258, -0.012579689733684063, 0.026393508538603783, -0.03306901827454567, 0.0013568394351750612, 0.010139482095837593, -0.00024739530635997653, 0.04013720527291298, 0.04125913977622986, 0.025622177869081497, 0.01851191744208336, 0.007439827546477318, 0.00840749591588974, 0.005420345813035965, -0.0030800607055425644, 0.009662660770118237, -0.01681499183177948, 0.01848386973142624, 0.028945907950401306, 0.02121858485043049, 0.04297008737921715, 0.023055752739310265, 0.0004301479202695191, -0.036547012627124786, -0.009185838513076305, -0.015889396890997887, -0.003413134953007102, -0.03534093499183655, -0.00461395550519228, -0.00418972410261631, -0.0037795165553689003, -0.011373610235750675, -0.0045508467592298985, 0.007720311172306538, 0.0031764768064022064, -0.011780311353504658, -0.0058130226098001, -0.015482695773243904, 0.01026570051908493, 0.01433972455561161, 0.022031987085938454, 0.024654509499669075, 0.04428836330771446, -0.006174145266413689, -0.05306749790906906, 0.02382708340883255, -0.016548532992601395, 0.019171055406332016, -0.025075234472751617, -0.0049084629863500595, 0.0018319085938856006, 0.039379898458719254, 0.002929300768300891, 0.018273506313562393, 0.0051714167930185795, -0.0036077203694730997, -0.0058130226098001, -0.003986373543739319, 0.016183903440833092, -0.007643178571015596, -0.02227039821445942, -0.01563696190714836, -0.004915475379675627, 0.03750065714120865, 0.01431868877261877, -0.02984345704317093, 0.008638895116746426, 0.0130284633487463, -0.01999848149716854, 0.043699346482753754, 0.007222453132271767, 0.015033921226859093, 0.032704390585422516, 0.022592954337596893, 0.019732022657990456, -0.0367153063416481, 0.015047946013510227, 0.032199516892433167, -0.020755786448717117, -0.014991848729550838, 0.037640899419784546, 0.01671682298183441, 0.034359242767095566, -0.0022912004496902227, 0.022046010941267014, -0.015622937120497227, -0.0020001986995339394, 0.037668947130441666, -0.02709471620619297, -0.007965734228491783, -0.014823558740317822, 0.015819275751709938, -0.03531288728117943, -0.002473514759913087, 0.0326763391494751, 0.005108307581394911, 0.04723343998193741, -0.0067421249113976955, -0.013336995616555214, 0.004007409792393446, -0.00290125235915184, 0.006033903453499079, 0.013210778124630451, -0.006342435721307993, -0.015426598489284515, 0.003201019251719117, -0.01960580423474312, -0.031722694635391235, -0.014213507063686848, 0.012888222001492977, -0.0015040934085845947, 0.006594870705157518, 0.0271367896348238, 0.016408290714025497, 0.03623848408460617, 0.008582798764109612, 0.03371413052082062, -0.0005933981155976653, 0.01433271262794733, -0.011163247749209404, -0.0017933420604094863, 0.0292263925075531, 0.031666599214076996, 0.01545464713126421, -0.010426978580653667, 0.0012735709315165877, -0.015412574633955956, -0.017698515206575394, -0.009024560451507568, 0.021274682134389877, 0.019872263073921204, -0.01386290229856968, 0.0211624875664711, -0.01138763502240181, -0.04184815287590027, 0.020966149866580963, 0.015987565740942955, 0.0010623317211866379, -0.020208844915032387, -0.0033535321708768606, 0.0021965373307466507, -0.011275441385805607, 0.029366634786128998, 0.00029889034340158105, 0.01573513075709343, 0.027908118441700935, -0.02060152031481266, 0.0390152707695961, 0.0035358464810997248, 0.01490770373493433, -0.014655268751084805, 0.01898873969912529, 0.009375164285302162, -0.014711365103721619, -0.020377134904265404, 0.06883067637681961, 0.028917860239744186, 0.038762833923101425, 0.002468255814164877, 0.007867565378546715, 0.017614370211958885, 0.01841374859213829, 0.01055319607257843, 0.0034481952898204327, -0.01724974252283573, -0.007685251068323851, -0.002934559714049101, -0.02222832664847374, -0.021302729845046997, -0.01490770373493433, 0.04714929312467575, 0.029647117480635643, -0.011864456348121166, -0.010398929938673973, -0.00020839055650867522, -0.016141831874847412, 0.03629457950592041, -0.03999696299433708, -0.012264145538210869, -0.019325321540236473, -0.00706468103453517, 0.026870330795645714, 0.04052988067269325, -0.01684304140508175, 0.008077927865087986, 0.0030309760477393866, 0.006724594626575708, -0.009592539630830288, -0.016380243003368378, -0.03127392381429672, 0.012257133610546589, -0.007559033110737801, -0.00025944734807126224, -0.019269224256277084, -0.017067426815629005, 0.029478827491402626, 0.009417236782610416, 0.034976307302713394, -0.020924076437950134, -0.0039022283162921667, -0.03881893306970596, -0.009199862368404865, -0.007264525629580021, -0.02816055528819561, -0.009284007363021374, 0.019297271966934204, 0.007169862277805805, 0.014879655092954636, 0.00609000027179718, 0.032816581428050995, -0.04327861964702606, 0.017698515206575394, 0.044204216450452805, -0.011324525810778141]" -Visualizing IoT Data at Scale With Hopara and TimescaleDB,"readings r ON r.sensor_id = l.sensor_id AND r.timestamp = l.timestampThis query, while easy to understand, is not efficient. The following representation leverages PostgreSQLdistinct onand Timescaleskip scanto perform the query faster, so it is a preferred alternative.SELECT DISTINCT ON (sensor_id) * FROM readings WHERE timestamp > now() - INTERVAL '24 hours' ORDER BY sensor_id, timestamp DESC;Note that condition one can be triggered inadvertently, for example, by a worker brushing against the machine. Hence, some combination of conditions 2-4 is a more robust alerting criterion. Unfortunately, these require complex real-time aggregation, which is not present in PostgreSQL. As a result, Hopara switched to TimescaleDB, which extends PostgreSQL with these capabilities (through its continuous aggregate capabilities).Turn now to Figure 6, which displays five days of data for three sensors. Since each sensor is reporting every 100 msec, there are around 4.5M observations in a five-day window. Obviously, this level of granularity is inappropriate for the display presented. In addition, there is no way to produce the display within the required response time. Hence, Hopara aggregates the raw data into two-minute averages using Timescale’scontinuous aggregates(Figure 5 displays these averages).Timescale’shypertablesautomatically partition big tables, so it’s easier for the query planner to localize time-series data. This greatly accelerates queries such as the one required to produce Figure 5, another reason for the switch from PostgreSQL to TimescaleDB.As a result, Hopara and TimescaleDB are powerful tools for IoT applications of the sort discussed in this blog post.We want to thank Professor Michael Stonebraker and the team at Hopara for sharing their story on how they are providing meaningful visualization solutions for their customers’ sensor data. As PostgreSQL lovers and enthusiasts, we are incredibly grateful and proud to see Professor Stonebraker using TimescaleDB to provide real-time insights to Hopara’s customers.If you want to learn more about Timescale and see how we handle time-series data, events, and analytics,read our Developer Q&As. These are real stories from real developers working in the real world. And if you want to try our cloud solution, sign up for a 30-day free trial. You will have access to all its unique features, from continuous aggregations to advanced analytical functions (and you don’t even need a credit card!).About the AuthorMichael Stonebrakeris a pioneer of database research and technology. He joined the University of California, Berkeley, as an assistant",https://www.timescale.com/blog/visualizing-iot-data-at-scale-with-hopara-and-timescaledb/,523,"[-0.006567471660673618, -0.005147090181708336, 0.03477782756090164, -0.013335805386304855, 0.041779305785894394, 0.005649244878441095, 0.0037948579993098974, -0.00730635691434145, -0.009670073166489601, -0.015380294062197208, 0.046169575303792953, -0.023802151903510094, -0.010889592580497265, -0.0020193809177726507, 0.05558139830827713, 0.058192603290081024, -0.0055954428389668465, -0.026499442756175995, -0.03337179496884346, 0.06467758119106293, -0.02769026719033718, -0.004160713870078325, 0.021291377022862434, -0.0004963265382684767, -0.03939765691757202, -0.008027308620512486, -0.013565361499786377, 0.08568201214075089, 0.029081955552101135, -0.044160954654216766, -0.012482141144573689, -0.044275734573602676, -0.023687373846769333, -0.007345811929553747, 0.018694518133997917, 0.017575429752469063, 0.00772601505741477, 0.021865269169211388, -0.025179492309689522, -0.0287089254707098, -0.016972843557596207, -0.004028001334518194, -0.010624167509377003, 0.027288543060421944, -0.0017817539628595114, -0.00014784433005843312, -0.02275480143725872, -0.04869470000267029, -0.00895270798355341, 0.05406058579683304, -0.02243915945291519, -0.018665824085474014, -0.009949845261871815, -0.022496549412608147, 0.01969882845878601, -0.027790699154138565, 0.007417548447847366, 0.041262801736593246, 0.02205178327858448, -0.029899749904870987, 0.013644271530210972, -0.04872339218854904, 0.016743285581469536, 0.02127702906727791, -0.019211020320653915, 0.0380777046084404, -0.025667300447821617, 0.03239617869257927, -0.03506477549672127, 0.047460831701755524, 0.05265454947948456, 0.021793533116579056, 0.025294270366430283, -0.004619827028363943, 0.04198016971349716, -0.04269753396511078, -0.01384513359516859, 0.053056273609399796, -0.009777677245438099, 0.019497966393828392, 0.05053115263581276, -0.01030135340988636, -0.021449197083711624, 0.058422163128852844, 0.009748983196914196, -0.04284100607037544, -0.0064024776220321655, -0.015566809102892876, -0.009182265028357506, 0.019641438499093056, 0.004644935019314289, 0.05480664595961571, 0.013658619485795498, 0.009505079127848148, 0.031822286546230316, -0.021793533116579056, 0.010939807631075382, -0.027948519214987755, -0.021535281091928482, 0.01962709240615368, 0.008414684794843197, -0.06094728410243988, -0.0022776322439312935, 0.011398920789361, 0.009512253105640411, 0.020430538803339005, -0.009942671284079552, 0.00717723136767745, 0.029871055856347084, 0.008780540898442268, -0.06565319746732712, -0.0029752689879387617, -0.046083491295576096, -0.009153570048511028, -0.0005981026333756745, -0.0034594901371747255, -0.048120807856321335, -0.01480640284717083, 0.020660096779465675, -0.0057460893876850605, -0.01763281784951687, 0.010832203552126884, -0.03156403452157974, -0.008486421778798103, 0.013737529516220093, -0.037934232503175735, 0.035466499626636505, -0.06812092661857605, -0.024031709879636765, -0.013027338311076164, 0.0643906369805336, 0.0004355747369118035, 0.05730307102203369, -0.034720439463853836, 0.005010790657252073, -0.03466305136680603, -0.03489260748028755, -0.0048709046095609665, -0.010007234290242195, -0.013292763382196426, -0.02365867979824543, -0.008020134642720222, 0.03497869148850441, -0.014949874952435493, -0.018393224105238914, 0.016858065500855446, -0.0066571421921253204, 0.04418965056538582, -0.005620550364255905, -0.014892485924065113, 0.019957078620791435, -0.012919734232127666, -0.018048889935016632, 0.015523767098784447, 0.02404605597257614, 0.02134876698255539, 0.027704615145921707, 0.01566723920404911, -0.04685824736952782, -0.0024928415659815073, -0.020272718742489815, 0.024863852187991142, 0.019641438499093056, -0.012331495061516762, -0.015810713171958923, -0.006495735142379999, -0.02573903650045395, -0.02538035437464714, -0.1050795465707779, -0.008371642790734768, -0.036528199911117554, -0.06198028847575188, -0.008342948742210865, 0.004727431572973728, 0.06048817187547684, 0.0030183109920471907, -0.013106248341500759, -0.06726009398698807, 0.016427645459771156, -0.04728866368532181, -0.028192423284053802, 0.005337191745638847, 0.003136676037684083, 0.008558157831430435, 0.03928287699818611, -0.00998571328818798, -0.0547492541372776, 0.0073816804215312, 0.005530879832804203, 0.036298640072345734, -0.022381771355867386, 0.030703198164701462, 0.03167881444096565, 0.02812068723142147, 0.01895276829600334, -0.07563890516757965, 0.02350085973739624, 0.03845073655247688, -0.02252524346113205, -0.0036406246945261955, 0.04513657093048096, 0.018307140097022057, 0.07127733528614044, -0.008091870695352554, -0.019885342568159103, 0.02295566350221634, 0.044677458703517914, -0.027790699154138565, 0.008393163792788982, -0.01593983732163906, 0.009792025201022625, 0.011176538653671741, 0.03208053857088089, 0.0030362450052052736, -0.02064574882388115, -0.035896915942430496, -0.045767851173877716, -0.049412064254283905, -0.010566778481006622, -0.007216686382889748, -0.013794918544590473, 0.04611218720674515, 0.032453566789627075, -0.006169334519654512, -0.020574012771248817, 0.0190388523042202, 0.029440637677907944, -0.01222389005124569, 0.028192423284053802, -0.007112668361514807, 0.013601230457425117, -0.03348657116293907, 0.009375953115522861, -0.04195147380232811, 0.05021551251411438, 0.012274106033146381, 0.03885246068239212, -0.022625675424933434, -0.025351660326123238, -0.03552388772368431, -0.025366006419062614, 0.00889531895518303, -0.0031922718044370413, 0.024189529940485954, -0.012152153998613358, 0.028034603223204613, -0.04493571072816849, -0.05228152126073837, 0.037274256348609924, 0.03526563569903374, 0.004074630327522755, -0.03827856853604317, -0.014598366804420948, -0.03454827144742012, -0.04938336834311485, -0.027589837089180946, -0.02941194362938404, 0.02604033052921295, 0.0024480063002556562, -0.017761943861842155, 0.03394568711519241, -0.021176598966121674, -0.010322874411940575, -0.016599813476204872, -0.007611237000674009, -0.010688730515539646, 0.0509902648627758, -0.03684384003281593, 0.006219550035893917, -0.03939765691757202, 0.04700171947479248, 0.05644223466515541, 0.024706032127141953, -0.021764837205410004, -0.06054555997252464, 0.010903939604759216, 0.025911204516887665, 0.0010697697289288044, -0.0016311074141412973, -0.004939054138958454, -3.2533600460737944e-05, 0.009053139016032219, 0.035236943513154984, 0.01978491246700287, 0.025021672248840332, 0.02761853113770485, 0.034835219383239746, -0.004422551952302456, 0.04513657093048096, -0.04358706623315811, 0.0018741146195679903, -0.020473580807447433, 0.056700486689805984, -0.009906803257763386, 0.0073816804215312, 0.03443349525332451, 0.022582633420825005, -0.006865177769213915, -0.029899749904870987, -0.0278911292552948, 0.005839346908032894, 0.0030631462577730417, 0.006359436083585024, -0.06680098176002502, -0.007410374935716391, 0.035982999950647354, -0.018967116251587868, -0.013651445508003235, -0.01969882845878601, -0.001135229249484837, -0.037819452583789825, -0.04229580983519554, 0.013723182491958141, -0.004178647883236408, 0.0037231214810162783, -0.03741772845387459, 0.09193743020296097, -0.027044640854001045, -0.007424721959978342, -0.07024432718753815, 0.009935497306287289, -0.09492166340351105, -0.0032012388110160828, 0.01942623034119606, -0.0063199810683727264, -0.07253989577293396, -0.0007590612513013184, 0.009103354997932911, 0.022668717429041862, -0.0037302952259778976, -0.010100491344928741, -0.03262573480606079, -0.012403231114149094, 0.05836477130651474, -0.05076070874929428, -0.06599753350019455, -0.010193749330937862, 0.0021754077170044184, -0.024003013968467712, 0.02467733807861805, -0.0225539393723011, -0.0023708895314484835, -0.05985689163208008, 0.022152215242385864, -0.00889531895518303, 0.015165084972977638, -0.013586882501840591, -0.002274045255035162, -0.03799162060022354, 0.010502215474843979, -0.035982999950647354, 0.038249872624874115, 0.019827954471111298, -0.016312867403030396, 0.01704457961022854, -0.017460651695728302, 0.04410356655716896, -0.007503631990402937, -0.05061723664402962, 0.004928293637931347, -0.024419086053967476, 0.028565453365445137, 0.03420393913984299, -0.0016786328051239252, -0.007155710365623236, 0.019842300564050674, -0.05526575818657875, -0.023013051599264145, -0.04252536594867706, -0.02370172180235386, 0.0222526453435421, -0.04246797412633896, -0.00908900797367096, -0.03185098245739937, -0.06134900823235512, -0.029440637677907944, 0.024132139980793, 0.04482093080878258, 0.010035928338766098, 0.07133471965789795, 0.004996443632990122, -0.011793471872806549, -0.0036908402107656, -0.019770564511418343, 0.03205184265971184, 0.03988546505570412, 0.009433342143893242, 0.035150859504938126, -0.06645664572715759, -0.027317238971590996, 0.038049012422561646, 0.003498945152387023, -0.013794918544590473, -0.03297007083892822, -0.04215233400464058, -0.007926877588033676, 0.031707510352134705, 0.021865269169211388, 0.03994285315275192, 0.003330364590510726, -0.004329294431954622, -0.02005751058459282, -0.0278911292552948, -0.0009123979252763093, -0.005982819478958845, 0.021807879209518433, -0.006086837500333786, 0.03925418481230736, 0.0099283242598176, -0.015724629163742065, -0.05985689163208008, -0.009311391040682793, 0.04097585752606392, -0.019397534430027008, 0.04117672145366669, -0.016427645459771156, -0.048235587775707245, 0.050072040408849716, -0.010609820485115051, 0.0295267216861248, -0.025193840265274048, -0.023256955668330193, -0.025882510468363762, 0.008292732760310173, -0.03231009468436241, 0.022353077307343483, 0.04573915898799896, -0.035036079585552216, 0.00869445689022541, -0.030875366181135178, -0.030559726059436798, -0.02001446858048439, 0.04390270635485649, -0.014906832948327065, 0.005749675910919905, 0.008041655644774437, 0.038881152868270874, -0.014978569932281971, 0.003590409178286791, 0.006305633578449488, 0.011147843673825264, 0.013120596297085285, 0.0050645931623876095, 0.028622841462492943, -0.018048889935016632, -0.025782078504562378, -0.005939777474850416, -0.01793411187827587, -0.004892425611615181, 0.00775470957159996, 0.04809211194515228, -0.008314253762364388, -0.007012237794697285, 0.018751906231045723, -0.010021581314504147, -0.03692992404103279, 0.002489254577085376, -0.02694420889019966, 0.02800590917468071, -0.02209482528269291, -0.04390270635485649, 0.020516622811555862, -0.053486693650484085, -0.015882449224591255, 0.00036518333945423365, -0.031391870230436325, 0.048264279961586, -0.010703077539801598, 0.027718963101506233, -0.011111975647509098, 0.02913934364914894, 0.030932756140828133, -0.02338608168065548, -0.017030231654644012, -0.014318594709038734, 0.0348639115691185, 0.05030159652233124, -0.013228200376033783, 0.002390617039054632, -0.04154974967241287, 0.024849504232406616, -0.05888127535581589, 0.004939054138958454, 0.05383102968335152, 0.013651445508003235, 0.03959851711988449, 0.0036316574551165104, 0.011893902905285358, -0.012934081256389618, -0.003931157290935516, -0.026312928646802902, 0.0011944117723032832, 0.04556699097156525, -0.017575429752469063, -0.048551227897405624, -0.014548150822520256, -0.08195171505212784, -0.014089037664234638, 0.01895276829600334, -0.01720239967107773, 0.02651379071176052, -0.03948374092578888, -0.011879554949700832, 0.05721699073910713, -0.015523767098784447, 0.038565512746572495, -0.027661573141813278, -0.012403231114149094, -0.014677276834845543, -0.03859420865774155, -0.009160744026303291, 0.023615637794137, 0.001953024766407907, 0.005713807884603739, -0.00794839859008789, 0.01817801594734192, -0.0035043254029005766, 0.026255538687109947, -0.02710202895104885, -0.016872411593794823, -0.0021305724512785673, -0.014849443919956684, -0.02823546528816223, -0.009648552164435387, 0.02327130362391472, 0.011413268744945526, -0.027432017028331757, -0.0338309071958065, -0.0038665945176035166, -0.01919667236506939, -0.00659975316375494, -0.027202460914850235, -0.004741779062896967, -0.001953024766407907, -0.02166440710425377, -0.013615577481687069, -0.024419086053967476, -0.02585381455719471, -0.06209506839513779, 0.026642916724085808, 0.01196563895791769, 0.02639901265501976, 0.01404599566012621, 0.013034512288868427, 0.00618009502068162, -0.0017494725761935115, 0.026858124881982803, 0.00914639700204134, -0.014949874952435493, 0.04091846942901611, 0.032338790595531464, 0.0034792176447808743, 0.022654369473457336, 0.007431895937770605, 0.002758266404271126, 0.00567076588049531, 0.03236748278141022, 0.014469240792095661, 0.019870994612574577, -0.022453507408499718, -0.005050245672464371, 0.007977092638611794, -0.0045516774989664555, -0.0012365570291876793, -0.008924013935029507, 0.04261144995689392, 0.018479308113455772, -0.04430443048477173, -0.046399131417274475, 0.01969882845878601, 0.03271181881427765, -0.007324290927499533, -0.004727431572973728, -0.010437652468681335, -0.007840793579816818, -0.0017306416993960738, -0.06858003884553909, -0.03199445456266403, 0.023156525567173958, 0.009074660018086433, -0.029641499742865562, -0.0032371070701628923, -0.010997196659445763, 0.03285529091954231, -0.01935449242591858, 7.84617368481122e-05, 0.019641438499093056, 0.016599813476204872, 0.01128414273262024, -0.019526660442352295, 0.004540916997939348, -0.002469527069479227, -0.023572595790028572, 0.0023547487799078226, 0.020502276718616486, -0.005828586407005787, 0.008407511748373508, 0.013773397542536259, -0.03684384003281593, 0.019713174551725388, 0.01571028120815754, -0.026499442756175995, 0.005620550364255905, -0.001210552523843944, -0.021865269169211388, 0.005771196912974119, 0.016700245440006256, 0.0003443349269218743, 0.04037327319383621, -0.023099135607481003, 0.003952678292989731, 0.0037554029840976, -0.003992133308202028, -0.04525135084986687, -0.0408036895096302, -0.00694408779963851, -0.0027098441496491432, -0.006154987029731274, -0.009232481010258198, 0.004623414017260075, -0.006097598001360893, -0.0009025341714732349, -0.018909726291894913, -0.010322874411940575, 0.017948457971215248, 0.027790699154138565, -0.036757756024599075, -0.019067546352744102, -0.02938324771821499, -0.0076757995411753654, 0.020588360726833344, -0.027661573141813278, 0.026097718626260757, -0.021018778905272484, 0.022037435322999954, 0.037389036267995834, 0.021520933136343956, 0.05847955122590065, 0.022109173238277435, -0.02463429607450962, 0.028766315430402756, 0.052511077374219894, 0.003945504315197468, -0.02472038008272648, 0.042984478175640106, -0.048465143889188766, 2.6480836822884157e-05, 0.010100491344928741, -0.008142086677253246, -0.010480694472789764, 0.0012401437852531672, -0.025710342451930046, 0.05041637271642685, 0.0018149320967495441, 0.03144925832748413, -0.010825029574334621, -0.0273746270686388, -0.026485096663236618, 0.024576906114816666, 0.0039024625439196825, -0.040516745299100876, 0.004275492392480373, 0.0042970129288733006, -0.005538053810596466, 0.006398891098797321, 0.008572504855692387, 0.03279790282249451, 0.013601230457425117, 0.022266993299126625, 0.036298640072345734, 0.009483558125793934, 0.016441993415355682, 0.04688693955540657, 0.03388829529285431, 0.018163667991757393, 0.007288422901183367, -0.003332157852128148, -0.017833679914474487, -0.0006936017307452857, 0.05426144599914551, -0.013271242380142212, 0.0211909469217062, -0.019641438499093056, -0.005380233284085989, -0.007833619602024555, 0.030215390026569366, 0.005229586735367775, 0.01202302798628807, 0.03334309905767441, 0.02220960333943367, 0.0017279516905546188, -0.012216717004776001, 0.03692992404103279, 0.002270458498969674, 0.007453416474163532, -0.03715948015451431, 0.017101969569921494, 0.023744763806462288, 0.01529421005398035, -0.029985833913087845, -0.0012356602819636464, 2.1520932932617143e-05, -0.03210923448204994, -0.054663170129060745, -0.009691594168543816, 0.004196581896394491, 0.03509346768260002, -0.0013082934310659766, -0.0021736142225563526, -0.014325767755508423, -0.02130572497844696, 0.0038737680297344923, -0.02424691803753376, 0.030875366181135178, -0.006441932637244463, -0.0074892849661409855, -0.008457726798951626, 0.015035958960652351, 0.00020758733444381505, -0.006122705526649952, -0.051535461097955704, 0.01614069938659668, -0.005760436411947012, -0.04496440291404724, 0.034691743552684784, -0.032769206911325455, 0.0062769390642642975, 0.04571046307682991, 0.005878801923245192, 0.01238171011209488, 0.006710944697260857, 0.002589685609564185, 0.019053200259804726, 0.009189439006149769, 0.025982940569519997, -0.001045558718033135, -0.019182326272130013, 0.01868017017841339, -0.021793533116579056, -0.01727413572371006, -0.02114790491759777, -0.016112005338072777, 0.0009155363659374416, -0.03850812464952469, 0.026025982573628426, -0.008629894815385342, 0.019598396494984627, 0.04063152149319649, 0.015251168049871922, -0.011764776892960072, -0.017848027870059013, 0.013766223564743996, -0.008873797953128815, -0.027762005105614662, 0.01738891378045082, -0.028967177495360374, -0.019139284268021584, 0.013192332349717617, 0.0016606986755505204, 0.024949936196208, 0.013816439546644688, 0.03647080808877945, -0.0160976592451334, 0.010781987570226192, -0.002560991095378995, 0.04591132700443268, -0.020358802750706673, -0.02076052688062191, -0.008723151870071888, -0.03047364205121994, 0.008845103904604912, -0.0348639115691185, 0.0332857109606266, -0.026384664699435234, 0.07391723245382309, 0.006302046589553356, 0.011269795708358288, 0.007955571636557579, 0.04539482295513153, 0.014892485924065113, 0.019053200259804726, -0.013995780609548092, -0.01175042986869812, -0.01997142657637596, -0.004286252427846193, -0.01777629181742668, 0.04289839416742325, -0.005125569179654121, -0.012582572177052498, -0.034691743552684784, -0.017518039792776108, -0.018508002161979675, -0.016384603455662727, 0.0006478697760030627, 0.030559726059436798, -0.011886728927493095, 0.007761883549392223, -0.10553865879774094, -0.00971311517059803, 0.04086107760667801, -0.028465021401643753, -0.000871149473823607, 0.014878138899803162, 0.025624258443713188, 0.03787684440612793, 0.015107695013284683, -0.029957139864563942, 0.027589837089180946, -0.050244204699993134, -0.04829297587275505, -0.0160976592451334, -0.014447719790041447, -0.0037016007117927074, 0.005828586407005787, -0.0024497995618730783, 0.0011854447657242417, 0.020028816536068916, -0.026528136804699898, -0.01467010285705328, -0.02134876698255539, 0.04863731190562248, -0.005968472454696894, -0.004361575935035944, -0.016714591532945633, 0.042324502021074295, -0.012338669039309025, -0.01137740071862936, -0.012553878128528595, -0.019684480503201485, -0.011879554949700832, 0.000985479447990656, -0.007324290927499533, -0.0030792870093137026, -0.03130578622221947, 0.017848027870059013, 0.001061699353158474, -0.002058835932984948, -0.01720239967107773, -0.06840787827968597, 0.034835219383239746, -0.030932756140828133, 0.06519408524036407, -0.009598336182534695, 0.015423336066305637, 0.014275552704930305, -0.010380263440310955, 0.02526557631790638, 0.03236748278141022, 0.004218102898448706, -0.0006797028472647071, 0.003712360979989171, 0.02048792876303196, 0.011420441791415215, -0.029756277799606323, -0.02655683271586895, 0.010050276294350624, 0.0010643894784152508, -0.01614069938659668, 0.000924503430724144, 0.012683003209531307, -0.054462309926748276, -0.024003013968467712, -0.016470687463879585, -0.01575332321226597, 0.03618386387825012, 0.00853663682937622, 0.008586852811276913, 0.008414684794843197, 0.06307068467140198, 0.013328631408512592, 0.005086114164441824, 0.0105954734608531, -0.0033841668628156185, 0.026284234598279, -0.017188051715493202, -0.0185223501175642, 0.0032137928064912558, 0.024863852187991142, -0.00863706786185503, -0.028694577515125275, 0.016441993415355682, 0.005025138147175312, -0.012639962136745453, 0.0023690960370004177, -0.015810713171958923, -0.0057460893876850605, -0.01362992450594902, 0.00662844767794013, -0.0012374536599963903, -0.008271211758255959, 0.023156525567173958, -0.002489254577085376, 0.006624860689043999, 0.006047382485121489, 0.029584109783172607, -0.0011163984891027212, 0.017962805926799774, 0.027073334902524948, 0.013177985325455666, 0.008378816768527031, 0.018163667991757393, -0.02385954186320305, -0.05581095442175865, 0.02424691803753376, 0.008034481666982174, 0.018235404044389725, 0.014117732644081116, -0.026140760630369186, 0.0005129156052134931, 0.02055966481566429, 0.0003858075651805848, -0.0042073423974215984, 0.0032137928064912558, 0.024619948118925095, 0.017145009711384773, -0.007026584818959236, -0.034060463309288025, 0.019053200259804726, 0.0034290021285414696, -0.019282756373286247, 0.04261144995689392, -0.005430448800325394, 0.009354432113468647, 0.004802755080163479, -0.015208126045763493, 0.007324290927499533, 0.013321458362042904, -0.020459234714508057, 0.04077499732375145, 0.02741766907274723, 0.04255405813455582, 0.035466499626636505, -0.03216662257909775, 0.029124997556209564, 0.009038791991770267, -0.009060312993824482, 0.02725984901189804, -0.00384866027161479, 0.02444778010249138, -0.0017557494575157762, 0.015150737017393112, 0.016112005338072777, -0.0066212741658091545, -0.03187967464327812, -0.0076757995411753654, -0.02236742340028286, 0.04611218720674515, 0.0024318655487149954, -0.022338729351758957, -0.0039347438141703606, 0.049612924456596375, -0.004845797084271908, 0.08459161967039108, -0.006144226528704166, -0.0418366938829422, 0.0033877536188811064, -0.0026919101364910603, -0.0035688881762325764, 0.011255448684096336, 0.052310217171907425, -0.0024121380411088467, 0.036298640072345734, -0.013859481550753117, -0.022970009595155716, -0.00607966398820281, -0.0010374883422628045, 0.0254951324313879, -0.0011648205108940601, 0.025179492309689522, 0.004881665110588074, 0.009239654056727886, 0.025753384456038475, 0.003863007528707385, 0.022697411477565765, 0.014641408808529377, 0.00384866027161479, -0.00817078072577715, -0.030100611969828606, 0.017030231654644012, 0.015007263980805874, 0.057561323046684265, 0.02401736192405224, 0.001958404900506139, -0.033314406871795654, 0.016700245440006256, -0.04625565931200981, 0.014390330761671066, 0.010251138359308243, 0.033543962985277176, 0.026815082877874374, 0.014878138899803162, -0.015437683090567589, 0.008974228985607624, 0.021162251010537148, 0.01533725205808878, -0.027819393202662468, 0.027331585064530373, -0.029368901625275612, 0.01969882845878601, -0.00717723136767745, -0.00454450398683548, -0.0032173795625567436, 0.07380245625972748, -0.004408204462379217, -0.011944117955863476, -0.03371613100171089, 0.014835096895694733, -0.001090393983758986, 0.006703770719468594, 0.008393163792788982, -0.008299906738102436, -0.025782078504562378, -0.0051721977069973946, 0.023845193907618523, 0.015107695013284683, -0.0062769390642642975, 0.0075108059681952, -0.010071797296404839, -0.02651379071176052, -0.016972843557596207, 0.013522320427000523, -0.007862314581871033, 0.03816378861665726, 0.015308557078242302, -0.00426831841468811, 0.002758266404271126, 0.009899629279971123, 0.027661573141813278, 0.0143544627353549, 0.012137806974351406, 0.010265485383570194, -0.0013217440573498607, 0.021535281091928482, -0.009067486971616745, 0.009232481010258198, 0.0326831229031086, -0.00842185877263546, 0.02099008485674858, 0.01840757206082344, 0.00426831841468811, 0.009469211101531982, -0.002969888737425208, 0.01441185176372528, 0.0391681008040905, 0.007625584024935961, 0.04918250814080238, 0.0018525937339290977, 0.010932634584605694, 0.025523826479911804, 0.025710342451930046, -0.0024749073199927807, 0.022037435322999954, 0.009433342143893242, 0.003061352763324976, 0.0230704415589571, 0.002087530680000782, 0.012510836124420166, -0.005028724670410156, 0.01351514644920826, 0.022582633420825005, -0.018321488052606583, -0.002725984901189804, -0.010064623318612576, -0.03337179496884346, -0.0038092052564024925, -0.005893148947507143, 0.0017557494575157762, -0.004279078915715218, 0.03767598047852516, 0.009189439006149769, -0.04573915898799896, -0.02401736192405224, 0.010681556537747383, -0.059914279729127884, 0.009935497306287289, 0.006703770719468594, -0.012209543026983738, -0.014017301611602306, 0.0013531286967918277, -0.04975640028715134, -0.03391699120402336, 0.04143496975302696, -0.012661482207477093, -0.0005245727370493114, -0.0327405147254467, -0.0021861682180315256, -0.016901107504963875, 0.007984266616404057, 0.0005483354325406253, -0.001498394994996488, 0.0343187153339386, -0.02793417125940323, -0.009332912042737007, -0.005043072160333395, 0.004289839416742325, 0.003272975329309702, -0.019713174551725388, 0.024003013968467712, -0.019282756373286247, 0.044562678784132004, 0.022582633420825005, 0.031162312254309654, 0.03150664642453194, -0.016628507524728775, -0.02334303967654705, -0.01566723920404911, 0.030186695978045464, -0.012604093179106712, 0.016599813476204872, 0.004924707114696503, 0.043070562183856964, -0.01935449242591858, 0.01632721535861492, 0.04255405813455582, 0.052826717495918274, 0.03810640051960945, 0.03882376477122307, 0.0012177261523902416, 0.010703077539801598, 0.0032173795625567436, 0.057446546852588654, 0.010997196659445763, 0.010573952458798885, 0.030846672132611275, -0.013185158371925354, -0.0292254276573658, 0.019411882385611534, -0.019182326272130013, 0.018278446048498154, 0.012582572177052498, 0.005147090181708336, -0.049928564578294754, 0.01632721535861492, 0.013113422319293022, -0.008550984784960747, 0.002274045255035162, -0.002164647215977311, 0.011528046801686287, -0.002907119458541274, 0.006187268532812595, 0.024074751883745193, 0.011226753704249859, -0.015595503151416779, 0.04387401044368744, 0.020746180787682533, -0.011506525799632072, 0.0211909469217062, 0.06318546086549759, 0.018622782081365585, -0.006172921042889357, -0.013694487512111664, -0.02487820014357567, -0.0047202580608427525, 0.013084727339446545, -0.01512204296886921, -0.02918238565325737, -0.009347259066998959, -0.007453416474163532, 0.0025412635877728462, -0.021764837205410004, 0.027977213263511658, 0.018737560138106346, -0.0068436567671597, -0.004293426405638456, 0.00046897699940018356, 0.020731832832098007, 0.007891008630394936, 0.010093318298459053, 0.017345871776342392, 0.002485667821019888, -0.01578201726078987, -0.006255418062210083, 0.009792025201022625, -0.0024802875705063343, -0.0038558340165764093, -0.01593983732163906, 0.04100455343723297, 0.014619887806475163, -0.03713078424334526, 0.01743195578455925, 0.05827868729829788, -0.018192362040281296, 0.01922536827623844, -0.00590390944853425, 0.022654369473457336, -0.006994303315877914, 0.003014724235981703, 0.0020014469046145678, -0.012683003209531307, -0.0009451276855543256, 0.003604756435379386, -0.005502185318619013, 0.04301317408680916, 0.017561081796884537, -0.030416252091526985, -0.019124936312437057, -0.039971549063920975, 0.004580372013151646, -0.01388817559927702, 0.019641438499093056, -0.0069153932854533195, -0.00753950048238039, 0.0019440576434135437, 0.02252524346113205, 0.01605461724102497, 0.04410356655716896, 0.026886818930506706, -0.00491753313690424, 0.005548813845962286, -0.028924135491251945, -0.005157850217074156, -0.05319974943995476, -0.038680292665958405, 0.01212345901876688, -0.019124936312437057, 0.007575368508696556, -0.04384531453251839, -0.000863527471665293, 0.007367332931607962, -0.014110558666288853, 0.030703198164701462, 0.039655908942222595, 0.02012924663722515, -0.005652831867337227, 0.029985833913087845, 0.02542339637875557, -0.04680085554718971, -0.0018221057252958417, 0.03529433161020279, -0.058737803250551224, 0.014289899729192257, -0.007403201423585415, 0.016284173354506493, 0.009526600129902363, 0.003389547113329172, -0.001301119802519679, -0.0008375230245292187, 0.024978630244731903, 0.0160976592451334, -0.015925491228699684, -0.02241046540439129, -0.01967013254761696, -0.028335895389318466, -0.03526563569903374, -0.008314253762364388, 0.013507972471415997, 0.006495735142379999, 0.015624198131263256, 0.00473101856186986, -0.017345871776342392, 0.040201105177402496, 0.01602592132985592, -9.594749280950055e-05, -0.018034541979432106, -0.03810640051960945, -0.001061699353158474, -0.0321953184902668, -0.020272718742489815, 0.011040238663554192, 0.02123398706316948, 0.06272634863853455, 0.014361636713147163, 0.012252585031092167, 0.00785514060407877, 0.006872351281344891, -0.009081833995878696, -0.015997227281332016, 0.03945504501461983, 0.009548121131956577, -0.013364499434828758, -0.02241046540439129, 0.023328691720962524, 0.030932756140828133, 0.015538114123046398, -0.0029627152252942324, 0.009849414229393005, -0.02431865595281124, 0.011119148693978786, 0.012044548988342285, 0.05225282534956932, 0.00772601505741477, 0.03305615484714508, 0.021018778905272484, -0.005373059771955013, -0.011958465911448002, 0.044361818581819534, -0.008056002669036388, -0.03400307521224022, 0.0018812882481142879, -0.00587521493434906, -0.014820749871432781, 0.05715959891676903, 0.012367363087832928, -0.016499383375048637, 0.004978509154170752, 0.014935527928173542, -0.01836453005671501, -0.0037302952259778976, 0.0008142086444422603, 0.0018418332329019904, 0.011879554949700832, -0.009490732103586197, -0.004967748653143644, 0.037503812462091446, -0.007022997830063105, 0.008464900776743889, -0.010746119543910027, -0.00832142774015665, 0.0051721977069973946, -0.01112632267177105, -0.02906760759651661, 0.00059855094878003, -0.017403261736035347, 0.00769732054322958, -0.031191006302833557, -0.0008029998280107975, 0.005767610389739275, -0.00012038271961500868, -0.012231064029037952, 0.029871055856347084, -0.0077905780635774136, 0.03744642436504364, -0.003194065298885107, -0.0337735190987587, 0.00908900797367096, -0.027632879093289375, 0.024132139980793, 0.008307080715894699, -0.014203816652297974, 0.025609910488128662, 0.035036079585552216, 0.017919763922691345, 0.011104801669716835, -0.000923606741707772, 0.005753262899816036, -0.01545203011482954, 0.007840793579816818, -0.004071043338626623, 0.008701630868017673, 0.0016705624293535948, 0.039196792989969254, 0.023687373846769333, 0.033228322863578796, 0.048436447978019714, 0.003974199295043945, -0.03945504501461983, -0.009705941192805767, -0.028020255267620087, -0.010882418602705002, -0.04958423227071762, -0.004763300064951181, 0.006649968679994345, 0.0016113799065351486, -0.013206679373979568, 0.008651414886116982, -0.012295627035200596, -0.0005066386656835675, 0.007690147031098604, -0.015911143273115158, -0.012711698189377785, 0.030129307880997658, 0.023414775729179382, -0.007769057061523199, -0.00010009475954575464, 0.05997166782617569, -0.010373090393841267, -0.05824999511241913, 0.009505079127848148, -0.005545227322727442, 0.019096242263913155, -0.029899749904870987, -0.006832896266132593, 0.0008684593485668302, 0.030961450189352036, 0.003913223277777433, 0.01919667236506939, 0.010423305444419384, -0.007191578857600689, -0.01833583600819111, 0.006226723548024893, 0.012984296306967735, -0.004856557585299015, -0.013723182491958141, 0.007704494055360556, -0.004476353991776705, 0.035351719707250595, -0.004652108531445265, -0.027331585064530373, -0.004716671071946621, 0.009160744026303291, -0.021477891132235527, 0.04088977351784706, 0.010416131466627121, 0.023199565708637238, 0.009655725210905075, 0.014017301611602306, 0.016068963333964348, -0.029871055856347084, 0.007026584818959236, 0.03500738367438316, -0.02404605597257614, -0.02859414741396904, 0.045653074979782104, 0.0027026706375181675, 0.027661573141813278, 0.013034512288868427, 0.006893872283399105, -0.00998571328818798, 0.0003804273437708616, 0.03400307521224022, -0.02714507095515728, 0.00639530410990119, -0.022883925586938858, 0.013759050518274307, -0.033515267074108124, 0.00284973019734025, 0.005660005379468203, -0.010645688511431217, 0.02655683271586895, 0.013400368392467499, 0.010408958420157433, -0.01096850261092186, 0.0075108059681952, 0.02060270681977272, 0.01958405040204525, -0.0029142932035028934, -0.02334303967654705, -0.007252554874867201, -0.021334419026970863, -0.034605659544467926, -0.006886698771268129, 0.01451228279620409, 0.003183304797858, 0.006725291721522808, 0.00527980225160718, 0.0014607333578169346, 0.025122102349996567, 0.017532387748360634, 0.028178075328469276, -0.003287322586402297, 0.0012141393963247538, 0.0005752366269007325, -0.009662899188697338, 0.025724688544869423, 0.015839407220482826, 0.0007496458711102605, 0.0039598518051207066, -0.01382361352443695, 0.003120535286143422, -0.011427615769207478, -0.010538083501160145, 0.02691551484167576, -0.007711668033152819, -0.03305615484714508, 0.022611327469348907, -0.002196928719058633, -0.029641499742865562, 0.01306320633739233, -0.005319257266819477, -0.0009962398326024413, -0.01989969052374363, 0.003472043899819255, 0.0027349519077688456, 0.005631310865283012, 0.04031588137149811, -0.001635590917430818, 0.011764776892960072, 0.021750491112470627, -0.0053407782688736916, 0.03506477549672127, 0.006047382485121489, 0.011004370637238026, -0.0038199657574295998, 0.01632721535861492, 0.01030135340988636, -0.008959881961345673, -0.03231009468436241, 0.059512555599212646, 0.017690207809209824, 0.028852397575974464, -0.01578201726078987, 2.3524509742856026e-05, 0.00460189301520586, 0.02913934364914894, -0.012733219191432, 0.008981402963399887, -0.018665824085474014, -0.012998644262552261, 0.008802061900496483, -0.04335750639438629, -0.008873797953128815, -0.004591132514178753, 0.04140627756714821, 0.01946927048265934, -0.012051722966134548, 0.0029124997090548277, 0.006542363669723272, -0.022152215242385864, 0.021162251010537148, -0.042955782264471054, 0.010078970342874527, 0.003561714431270957, 0.023056093603372574, 0.013443409465253353, 0.02444778010249138, -0.014010127633810043, 0.007661452516913414, 0.020028816536068916, 0.004842210095375776, 0.001424865098670125, -0.018981464207172394, -0.03684384003281593, -0.006879525259137154, 0.013694487512111664, -0.002455179812386632, -0.004623414017260075, -0.0038271392695605755, 0.019497966393828392, 0.0005819619400426745, 0.006771920248866081, -0.020258372649550438, 0.004487114492803812, -0.02472038008272648, 0.0003927570360247046, 0.0037554029840976, -0.029053259640932083, 0.005613376852124929, 0.0020552491769194603, 0.02596859261393547, 0.02162136510014534, -0.008658588863909245, 0.0359543077647686, -0.019727522507309914, 0.003454109886661172, 0.0536588616669178, -0.014849443919956684]" -Visualizing IoT Data at Scale With Hopara and TimescaleDB,"professor in 1971 and taught in the computer science and EECS departments for 29 years.While at Berkeley, he developed prototypes for the INGRES relational data management system, the object-relational DBMS, POSTGRES, and the federated system, Mariposa. He is the founder of three successful Silicon Valley startups whose objective was to commercialize these prototypes.Mike is the author of scores of research papers on database technology, operating systems, and the architecture of system software services. He was awarded the ACM System Software Award in 1992 (for INGRES) and the Turing Award in 2015.He was elected to the National Academy of Engineering and is presently an adjunct professor of computer science at MIT’s Computer Science and AI Laboratory (CSAIL.)The open-source relational database for time-series and analytics.Try Timescale for free",https://www.timescale.com/blog/visualizing-iot-data-at-scale-with-hopara-and-timescaledb/,169,"[-0.010339844040572643, -0.018314067274332047, 0.04310109466314316, 0.02846544049680233, -0.006515206303447485, -0.01979582943022251, 0.046844497323036194, 0.046064622700214386, -0.049106135964393616, -0.037200041115283966, 0.0473124198615551, -0.014986599795520306, 0.053603414446115494, 0.021992476657032967, -0.024436086416244507, 0.01457066647708416, -0.0337166003882885, -0.025280950590968132, -0.009956405498087406, 0.02921932004392147, 0.0035906748380512, 0.02880338579416275, 0.014089742675423622, 0.03491240739822388, 0.055527105927467346, 0.0037239035591483116, 0.004630508366972208, 0.05095183849334717, -0.005602102726697922, -0.09296111017465591, 0.019951803609728813, -0.015532512217760086, -0.02812749519944191, 0.020900651812553406, 0.02204446867108345, 0.00033043144503608346, 0.030389131978154182, 0.008455146104097366, 0.023487238213419914, 0.021511554718017578, -0.04356902092695236, -0.0012478000717237592, 0.018678007647395134, 0.03795392066240311, -0.012146553955972195, -0.048014309257268906, -0.02914133295416832, -0.0303371399641037, 0.00809120386838913, 0.030103178694844246, -0.02043272741138935, -0.06800510734319687, 0.02940129116177559, 0.017638174816966057, 0.012620978057384491, 0.004630508366972208, 0.015818465501070023, 0.01566249132156372, 0.00981992669403553, 0.00024147694057319313, 0.03816188871860504, -0.03168892487883568, -0.0013704679440706968, -0.024267112836241722, -0.06358581781387329, -0.02921932004392147, -0.06322187185287476, 0.037018071860075, -0.01334886159747839, 0.01308890338987112, 0.00809120386838913, 0.04364700987935066, -0.004854722414165735, -0.017885135486721992, 0.013036911375820637, 0.02253839001059532, 0.0007498174090869725, 0.043699000030756, -0.015675488859415054, 0.012263535521924496, 0.048534225672483444, 0.02200547605752945, 0.013244878500699997, -0.011548650451004505, -0.019171928986907005, 0.021121617406606674, 0.01783314347267151, -0.04198327660560608, -0.004913213197141886, -0.025592900812625885, -0.04848223552107811, 0.013803788460791111, 0.03226083144545555, 0.0341065376996994, 0.022356418892741203, -0.030051186680793762, 0.03337865322828293, 0.027659568935632706, -0.00643071997910738, 0.02452707104384899, -0.0671212449669838, -0.03319668397307396, 0.023331262171268463, 0.01592244952917099, 0.006027784664183855, 0.007168351672589779, 0.008793091401457787, -0.012153053656220436, 0.0056215994991362095, 0.027087660506367683, -0.07580386102199554, -0.020900651812553406, -0.02230442687869072, 0.0058165681548416615, -0.023838181048631668, 0.018158091232180595, -0.0475463829934597, -0.06020635738968849, -0.009189528413116932, -0.0031796155963093042, -0.05318748205900192, 0.017859138548374176, -0.02053670957684517, -0.018859978765249252, 0.01779414899647236, 0.014089742675423622, 0.0001640987175051123, -0.002134907990694046, 0.010528313927352428, -0.01982182450592518, 0.042269229888916016, -0.0038733796682208776, 0.05505917966365814, 0.013998758047819138, -0.022213442251086235, -0.004529774654656649, -0.05750278756022453, -0.016455363482236862, -0.004568768199533224, -0.002443608595058322, 0.013277373276650906, 0.005774325225502253, -0.002589835086837411, -0.038993753492832184, 0.011652633547782898, 0.032650768756866455, 0.0037336519453674555, 0.044556863605976105, 0.02880338579416275, -0.0007863740320317447, 0.028439445421099663, -0.028933364897966385, -0.036186203360557556, -0.012036072090268135, 0.02053670957684517, 0.0011811858275905252, 0.023045308887958527, 0.01011887937784195, 0.02655474655330181, -0.0034606957342475653, 0.029583262279629707, 0.031792908906936646, -0.009053049609065056, 0.037122052162885666, 0.008871079422533512, 0.05906254053115845, 0.011249697767198086, -0.029089340940117836, -0.06764116883277893, 0.008266676217317581, -0.03735601529479027, -0.06342983990907669, -0.016312386840581894, 0.007304830010980368, 0.011074226349592209, -0.03148095682263374, 0.01040483359247446, -0.021342581138014793, 0.016403373330831528, -0.09743238985538483, -0.08292672038078308, 0.01979582943022251, 0.021017633378505707, 0.01034634280949831, -0.02880338579416275, -0.0025638393126428127, -0.011165211908519268, -0.0013176639331504703, 0.021381575614213943, 0.04122939705848694, 0.010697286576032639, 0.05968644097447395, 0.009611960500478745, 0.03946167975664139, 0.005628098268061876, -0.03345664218068123, -0.017937127500772476, -0.041099417954683304, -0.04648055508732796, -0.052745550870895386, 0.012679468840360641, -0.010476321913301945, 0.02106962539255619, 0.010060388594865799, -0.02136857807636261, -0.0539153628051281, 0.02174551598727703, 0.02602183260023594, -0.02132958360016346, -0.004750738851726055, 0.03421052172780037, -0.010645294561982155, 0.020757675170898438, 0.01757318526506424, -0.04588264971971512, -0.04338705167174339, -0.02099163830280304, -0.008552630431950092, -0.015025593340396881, -0.005702836439013481, -0.027425607666373253, 0.027919527143239975, 0.045154768973588943, -0.0020536710508167744, 0.025098979473114014, 0.03774595260620117, -0.009157033637166023, -0.00922202318906784, 0.033066704869270325, -0.018937965855002403, 0.049704037606716156, -0.022824343293905258, 0.003117875661700964, -0.00018176775483880192, -0.04390696808695793, 0.06706925481557846, -0.018093101680278778, 0.00648921076208353, -0.02327927201986313, 0.03181890398263931, 0.005611850880086422, 0.0186650101095438, -0.006368979811668396, 0.023344261571764946, -0.01464865356683731, 0.029505273327231407, -0.00198543188162148, -0.029635252431035042, -0.03810989484190941, 0.052485592663288116, -0.005624848883599043, -0.06649734824895859, 0.0013209134340286255, 0.022291429340839386, -0.003665412776172161, -0.005264156963676214, 0.005702836439013481, 0.03226083144545555, 0.06218203902244568, 0.011776113882660866, -0.023370256647467613, -0.016390373930335045, -0.03558829799294472, 0.0029570262413471937, -0.05305750295519829, 0.001646673772484064, -0.028361456468701363, -0.003551681060343981, 0.050795864313840866, -0.0407874658703804, 0.022317424416542053, 0.03608221933245659, 0.02335725910961628, 0.023110298439860344, 0.008188688196241856, -0.023149291053414345, 0.001834331196732819, 0.05370739847421646, -0.01216605119407177, 0.023188285529613495, -0.017287230119109154, 0.01113271713256836, 0.02324027754366398, 0.030623095110058784, 0.022291429340839386, 0.056618932634592056, 0.036264192312955856, 0.040085580199956894, -0.018859978765249252, -0.06597743183374405, 0.03605622425675392, -0.008663112297654152, 0.013218882493674755, -0.057398807257413864, 0.05989440530538559, 0.002799426671117544, 0.032988715916872025, 0.013686807826161385, -0.004191828425973654, 0.01260148175060749, 0.04450486972928047, 0.04710445553064346, 0.02677571028470993, -0.0013127897400408983, -0.04741640388965607, 0.03161093592643738, 0.028933364897966385, 0.02222643978893757, 0.0008586749318055809, 0.010924750007689, -0.04367300495505333, -0.013803788460791111, -0.019730839878320694, 0.01584446243941784, -0.047000471502542496, -0.01810609921813011, 0.02053670957684517, 0.01626039482653141, 0.0009366624872200191, -0.07398414611816406, -0.003264102153480053, -0.05417532101273537, 0.014414691366255283, 0.015909451991319656, -0.010131876915693283, -0.01975683495402336, 0.02609981968998909, -0.0044745332561433315, 0.026424767449498177, 0.013452844694256783, 0.05417532101273537, -0.017248237505555153, -0.030025189742445946, -0.015012594871222973, 0.005644346121698618, -0.018522033467888832, 0.015766475349664688, 0.021693525835871696, -0.011795610189437866, -0.004318558145314455, -0.013101900927722454, 0.010073386132717133, -0.062286023050546646, 0.03642016649246216, 0.03015516884624958, -0.008253677748143673, -0.011334184557199478, -0.007538792211562395, -0.00026808204711414874, 0.018613018095493317, -0.04011157527565956, -0.005121179856359959, 0.035510312765836716, -0.018833983689546585, 0.007571287453174591, -0.001839205389842391, -0.005351892672479153, 0.012497497722506523, 0.026333780959248543, 0.010534812696278095, -0.028829382732510567, 0.05170571804046631, 0.02556690387427807, 0.021576544269919395, -0.0003868911589961499, -0.0022031471598893404, -0.047676362097263336, -0.024579063057899475, -0.02677571028470993, -0.05110781267285347, -0.03031114488840103, -0.009384497068822384, -0.020458722487092018, 0.015194565989077091, -0.014284712262451649, 0.03116900660097599, -0.0170532688498497, 0.003983861766755581, 0.0015272554010152817, 0.06493759900331497, 0.030415128916502, 0.05682689696550369, -0.017365219071507454, 0.017131255939602852, -0.008162692189216614, 0.01892496831715107, 0.009793931618332863, -0.038551826030015945, 0.005010697524994612, 0.0289593618363142, 0.05128978565335274, 0.03296272084116936, 0.011126217432320118, -0.011821606196463108, -0.026801707223057747, 0.02399415709078312, 0.0288813728839159, -0.016273394227027893, 0.01045682467520237, 0.022148452699184418, -0.017001276835799217, 0.004828726407140493, 0.023110298439860344, -0.000751035928260535, -0.00965095404535532, 0.002924531465396285, 0.03883777931332588, 0.0637417882680893, -0.01956186629831791, -0.00025142848608084023, -0.02474803663790226, -0.06337784975767136, 0.02493000589311123, 0.02496900036931038, 0.024891013279557228, -0.046922482550144196, -0.048872172832489014, 0.0028562925290316343, 0.019145933911204338, 0.03548431769013405, -0.031220998615026474, -0.020497716963291168, -0.020744677633047104, -0.04096943885087967, -0.01663733460009098, 0.040501512587070465, 0.015714483335614204, -0.016364378854632378, -0.0005873434129171073, -0.04453086853027344, -0.017066266387701035, -0.0033632111735641956, -0.04741640388965607, 0.03462645411491394, -0.021641533821821213, 0.006612690631300211, 0.06909693032503128, -0.01817108877003193, -0.030961040407419205, 0.01372580137103796, -0.006687428802251816, 0.009462484158575535, -0.04960005357861519, 0.014973601326346397, -0.035198360681533813, -0.04112541303038597, 0.00300414371304214, -0.03148095682263374, 0.02763357385993004, 0.024813026189804077, 0.023929167538881302, -0.04284113645553589, 0.020042790099978447, 0.03782394155859947, 0.004117090720683336, 0.011392675340175629, 0.03218284621834755, -0.004805980250239372, 0.0009464109316468239, -0.011340683326125145, -0.03784993663430214, 0.018080104142427444, -0.03946167975664139, 0.00010702972940634936, -0.00611227098852396, -0.03309269994497299, 0.033066704869270325, 0.01301091630011797, 0.016312386840581894, -0.024774031713604927, 0.0026710722595453262, 0.027399610728025436, -0.03655014559626579, 0.00010256169480271637, -0.03488641232252121, 0.001913943444378674, -0.03343064337968826, -0.03184489905834198, 0.008507137186825275, -0.08968563377857208, 0.02343524619936943, 0.017040271311998367, 0.0017872137250378728, 0.06972083449363708, -0.010911752469837666, 0.034418486058712006, -0.012952425517141819, -0.00039867052691988647, -0.0046695019118487835, 0.05087384954094887, 0.02635977789759636, -0.01245200540870428, 0.000699450436513871, -0.014336703345179558, -0.03207886219024658, -0.0027929276693612337, -0.004494030028581619, -0.046246591955423355, -0.018184088170528412, -0.0039058744441717863, 0.03288473188877106, -0.018496036529541016, -0.015350541099905968, 0.03155894577503204, -0.013868778944015503, 0.034418486058712006, -0.009429989382624626, 0.020848659798502922, 0.028231477364897728, -0.03969564288854599, -0.03496440127491951, -0.012750957161188126, 0.018353059887886047, 0.017118258401751518, 0.032468799501657486, 0.01580546796321869, -0.004926210734993219, -0.0033534627873450518, -0.027763552963733673, -0.03579626604914665, 0.011386176571249962, 0.014726640656590462, -0.02695768140256405, 0.0038083898834884167, 0.019067944958806038, -0.007207345683127642, -0.022408410906791687, 0.014375696890056133, -0.01652035303413868, -0.03413253277540207, 0.02125159651041031, 0.0003879066207446158, 0.010703785344958305, -0.020549708977341652, -0.04629858210682869, 0.015220561996102333, -0.020627696067094803, -0.03278074786067009, -0.002289258409291506, 0.012159552425146103, 0.03218284621834755, 0.022317424416542053, 0.02828346937894821, 0.019132934510707855, -0.0373300202190876, 0.02838745340704918, 0.03943568468093872, 0.02534594014286995, 0.005715834442526102, 0.054851215332746506, 0.006882397457957268, 0.006141516380012035, -0.014934607781469822, -0.0008099327678792179, 0.006255248095840216, 0.027243636548519135, 0.024696044623851776, 0.00013607194705400616, 0.025631893426179886, 0.004588264971971512, 0.0010219613322988153, -0.0006454278482124209, -0.004039103165268898, -0.0004691435897257179, 0.020523712038993835, 0.0169362872838974, -0.010008396580815315, -0.03836985304951668, 0.016351381316781044, -0.031454961746931076, 0.022109458222985268, 0.01952287368476391, -0.028595419600605965, -0.02989521063864231, -0.01600043661892414, 0.0063104890286922455, -0.03743400424718857, -0.003554930677637458, 0.03766796737909317, -0.01303041260689497, -0.01622140221297741, 0.008656613528728485, -0.029245315119624138, 0.01297192182391882, 0.022408410906791687, -0.003480192506685853, 0.0011681878240779042, 0.015831464901566505, -0.011353681795299053, 0.01228303276002407, 0.0034476977307349443, 0.023721199482679367, -0.024319104850292206, -0.0035581800621002913, 0.027087660506367683, 0.026385772973299026, 0.013998758047819138, 0.006843403913080692, -0.018145093694329262, 0.04882017895579338, 0.015831464901566505, -0.006758917588740587, 0.03660213574767113, -0.027425607666373253, 0.015831464901566505, -0.0019545620307326317, 0.007148854900151491, -0.005446127615869045, -0.025852859020233154, -0.04034553840756416, -0.003132498124614358, 0.02355222776532173, 0.027087660506367683, -0.043283067643642426, -0.04081346094608307, -0.0013233504723757505, 0.013972762040793896, -0.017703164368867874, 0.0004155272035859525, 0.034756433218717575, -0.017222240567207336, -0.010339844040572643, -0.004896965809166431, -0.00648921076208353, 0.06530153751373291, -0.02463105507194996, 0.027217639610171318, -0.025618895888328552, -0.007896235212683678, -0.01499959733337164, 0.03545831888914108, -9.073156252270564e-05, 0.03584825620055199, -0.006092774216085672, 0.006394975818693638, 0.01874299719929695, 0.03480842337012291, 0.060830257833004, 0.028855377808213234, -0.026307785883545876, 0.025488916784524918, 0.020302748307585716, -0.018236078321933746, 0.0011259446619078517, 0.013121398165822029, -0.04026754945516586, -8.773594890953973e-05, 0.026645731180906296, -0.01862601563334465, 0.008117199875414371, -0.05305750295519829, -0.037044066935777664, 0.0009114790009334683, 0.02613881230354309, 0.048950158059597015, -0.028621414676308632, 0.001931815524585545, -0.0271136574447155, 0.014206724241375923, 0.01072328258305788, 0.00023375943419523537, 0.012536492198705673, 0.003254353767260909, -0.03285873681306839, -0.015935447067022324, 0.010209864936769009, 0.011217202991247177, 0.013868778944015503, -0.013225381262600422, -0.009131037630140781, -0.015233559533953667, 0.016741318628191948, 0.010385336354374886, 0.009624958038330078, 0.007538792211562395, -0.010378837585449219, -0.005312899127602577, -0.030207160860300064, 0.002919657388702035, 0.06478162109851837, 0.0288813728839159, -0.002703567035496235, -0.01618240773677826, -0.02017276920378208, 0.01745620369911194, -6.90006636432372e-05, -0.02786753699183464, -0.013283872045576572, 0.020081782713532448, -0.013439847156405449, -0.013062907382845879, 0.008247178979218006, -0.008598122745752335, -0.019808826968073845, -0.044556863605976105, -0.041437361389398575, 0.002976523246616125, 0.008461644873023033, -0.009046550840139389, -0.03259877860546112, -0.001250237226486206, -0.015558508224785328, -0.056047022342681885, -0.021433567628264427, -0.011386176571249962, 0.005777574609965086, -0.009118039160966873, 0.0016198655357584357, -0.010950746014714241, -0.026541749015450478, -0.010183868929743767, -0.009196027182042599, 0.04034553840756416, 0.019496876746416092, -0.010996238328516483, 0.004812479019165039, 0.021381575614213943, 0.013023913837969303, -0.03808389976620674, -0.01667632907629013, -0.024280110374093056, -0.015584503300487995, -0.00525765772908926, 0.012854941189289093, 0.002888787304982543, -0.04172331839799881, -0.0030983786564320326, 0.039669644087553024, -0.015909451991319656, 0.0030415127985179424, 0.016624337062239647, 0.01490861177444458, 0.010632297024130821, 0.007681769318878651, 0.04120339825749397, -0.004705246537923813, -0.011509655974805355, -0.02955726534128189, -0.025488916784524918, -0.0070318737998604774, -0.02628179080784321, -0.005234911572188139, -0.02940129116177559, 0.0016393624246120453, -0.023500235751271248, -0.0375639833509922, 0.01271196361631155, 0.03335265815258026, 0.011438167653977871, 0.03579626604914665, -0.019652852788567543, 0.009949905797839165, 0.014596661552786827, -0.00772726209834218, -0.009111540392041206, -0.03090904839336872, 0.012159552425146103, 0.01618240773677826, 0.011464163661003113, 0.06561349332332611, -0.013686807826161385, 0.05854262411594391, 0.0025167218409478664, 0.012945926748216152, 0.011353681795299053, -0.031143011525273323, 0.016208402812480927, -0.03530234470963478, 0.008214684203267097, 0.014752636663615704, 0.03023315779864788, -0.015129576437175274, 0.03714805096387863, -0.0031909889075905085, 0.04645456001162529, 0.030545108020305634, 0.004539522808045149, -0.014856620691716671, -0.01930190809071064, 0.0037141551729291677, -0.004909963347017765, -0.02989521063864231, 0.026164809241890907, -0.039149727672338486, -0.04029354453086853, -0.053343456238508224, 0.03244280442595482, -0.0018554527778178453, -0.010645294561982155, -0.06020635738968849, -0.014557668007910252, -0.0005991227808408439, -0.004214575048536062, 0.0010601426474750042, 0.006654934026300907, -0.006537952926009893, 0.024774031713604927, -0.07928729802370071, -0.016117418184876442, 0.046662524342536926, 0.019834822043776512, 0.014258716255426407, 0.000707574188709259, 0.07273635268211365, 0.03512037545442581, 0.027087660506367683, -0.004588264971971512, -0.009468982927501202, -0.04148935526609421, -0.022434405982494354, -0.05708685517311096, -0.027841540053486824, -0.010638795793056488, -0.010157872922718525, 0.0019350650254637003, -0.007746759336441755, 0.02017276920378208, -0.0031422467436641455, 0.0010845137294381857, 0.004494030028581619, 0.022330423817038536, -0.0014029627200216055, 0.003918872214853764, 0.001003276789560914, 0.05750278756022453, -0.032728757709264755, -0.019535871222615242, -0.022291429340839386, -0.0408654548227787, 0.013062907382845879, 0.033482637256383896, -0.003957866225391626, 0.026255793869495392, -0.023916170001029968, 0.0004874219303019345, -0.0016994777834042907, -0.015363538637757301, -0.024981997907161713, -0.07195647060871124, 0.024852018803358078, -0.036030229181051254, 0.03668012470006943, -0.0203547403216362, 0.012536492198705673, -0.0016474861185997725, -0.0075257946737110615, -0.039669644087553024, 0.018794989213347435, 0.0032608527690172195, -0.03148095682263374, 0.0059205517172813416, 0.01761217974126339, -0.009053049609065056, -0.028439445421099663, 0.006596443243324757, 0.048456236720085144, 0.002372120041400194, -0.009020554833114147, -0.030675087124109268, -0.00690839346498251, -0.026164809241890907, 0.012887435965240002, 0.0015053213573992252, 0.03600423410534859, 0.014492678456008434, -0.018639015033841133, 0.015181568451225758, -0.020380735397338867, 0.03168892487883568, -0.019054947420954704, -0.013517835177481174, -0.0009464109316468239, 0.004867720417678356, -0.0011080724652856588, 0.015870457515120506, 0.030779069289565086, -0.020900651812553406, 0.030181165784597397, -0.008058709092438221, -0.005384387448430061, -0.0018522032769396901, -0.018353059887886047, 0.013738798908889294, 0.0005962795112282038, 0.003259227843955159, 0.006641936022788286, -0.0144796809181571, 0.021316586062312126, -0.008383656851947308, 0.035510312765836716, -0.004809229634702206, 0.019691845402121544, 0.04528474807739258, -0.024813026189804077, 0.015246558003127575, -0.025215961039066315, 0.021095620468258858, 0.011912591755390167, 0.01685830019414425, -0.015155572444200516, 0.07232041656970978, -0.01862601563334465, -0.0076102809980511665, -0.0061285183764994144, -0.03309269994497299, 0.007278834003955126, 0.027503594756126404, -0.024085141718387604, 0.013946766033768654, -0.015181568451225758, -0.0017482199473306537, 0.046740513294935226, -0.005709335673600435, 0.04317908361554146, -0.01566249132156372, 0.00777275487780571, -0.011412171646952629, -0.03860381618142128, -0.029193323105573654, -0.04546671733260155, 0.05620299652218819, -0.005186169408261776, -0.02973923645913601, 0.004409543704241514, -0.010066887363791466, 0.022018473595380783, -0.014700645580887794, 0.011815107427537441, 0.03912373259663582, 0.013491839170455933, 0.036446161568164825, -0.014206724241375923, 0.006105771753937006, 0.0066224392503499985, 0.01072328258305788, 0.02246040292084217, 0.031220998615026474, 0.015350541099905968, 0.023760193958878517, -0.030415128916502, 0.005186169408261776, -0.006096023600548506, -0.0014297709567472339, -0.016832303255796432, 0.026203801855444908, 0.01115221343934536, -0.020445724949240685, 0.02061469852924347, -0.01297192182391882, -0.00036353550967760384, 0.006586695089936256, -0.03707006201148033, 0.03436649590730667, 0.0058718095533549786, -0.011626637540757656, -0.0018570775864645839, 0.03249479457736015, 0.015155572444200516, 0.017963122576475143, 0.03361261636018753, -0.020523712038993835, -0.0018180838087573647, -0.014323705807328224, -0.0645216628909111, -0.01671532168984413, -0.009111540392041206, 0.051653727889060974, 0.004838475026190281, 0.005745079834014177, 0.04510277509689331, 0.030623095110058784, -0.0030707581900060177, -0.026151811704039574, -0.00664518540725112, -0.007317828014492989, 0.003330716397613287, -0.020679688081145287, 0.002222643932327628, -0.009598962031304836, 0.01389477401971817, 0.03714805096387863, 0.010781773366034031, -0.007395815569907427, -0.015129576437175274, -0.03166292980313301, -0.034002553671598434, 0.016234399750828743, 0.016091423109173775, 0.021498557180166245, 0.04991200566291809, 0.020406730473041534, -0.029193323105573654, -0.023110298439860344, 0.017976120114326477, 0.014024753123521805, -0.022109458222985268, -0.026411769911646843, -0.00728533323854208, 0.019808826968073845, -0.0008708605309948325, -0.026502754539251328, 0.027737557888031006, 0.005784073378890753, 0.025436924770474434, 0.0019025702495127916, -0.026112817227840424, 0.003886377438902855, 0.02786753699183464, 0.03278074786067009, 0.012607980519533157, -0.022954322397708893, -0.004110591486096382, 0.005234911572188139, -0.015935447067022324, 0.018976960331201553, -0.004529774654656649, 0.0007343823672272265, 0.009514476172626019, -0.0187819916754961, 0.01603943109512329, 0.06764116883277893, -0.014089742675423622, 0.03803190961480141, -0.03766796737909317, 0.013790790922939777, -0.003889627056196332, 0.0021235349122434855, -0.001093449885956943, -0.0003474912082310766, 0.022447403520345688, -0.014596661552786827, 0.008812588639557362, -0.011945086531341076, 0.006895395461469889, -0.026905689388513565, 0.0021186606027185917, -0.02846544049680233, -0.011067727580666542, 0.012867938727140427, 0.009449486620724201, 0.013907772488892078, -0.0033989555668085814, -0.008819087408483028, 0.02415013127028942, 0.00772726209834218, 0.01419372670352459, -0.006810909137129784, 0.023032311350107193, 0.013439847156405449, 0.024384094402194023, 0.013043411076068878, -0.010281353257596493, -0.014310707338154316, -0.024800026789307594, -0.01237401831895113, 0.00918302871286869, 0.001186060020700097, -0.010879257693886757, -0.009345502592623234, 0.004588264971971512, 0.005290152505040169, 0.006368979811668396, -0.010482820682227612, -0.014622657559812069, 0.003038263414055109, 0.014804628677666187, 0.010528313927352428, 0.03384657949209213, 0.008143195882439613, 0.023448243737220764, -0.02966124936938286, 0.012893934734165668, -0.03176691010594368, -0.020458722487092018, 0.0039318702183663845, 0.013426849618554115, -0.019470881670713425, -0.02260337956249714, -0.0049814521335065365, -0.0169362872838974, 0.018158091232180595, -0.0007733761449344456, -0.010274854488670826, -0.010300849564373493, -0.024981997907161713, 0.01824907772243023, -0.0405535027384758, -0.018652012571692467, 0.01840505190193653, -0.015909451991319656, 0.02520296350121498, -0.0372520312666893, -0.0015678738709539175, 0.03288473188877106, -0.036186203360557556, 0.011932088993489742, -0.0002902191481553018, 0.03597823530435562, -0.013335864059627056, 0.015155572444200516, -0.011067727580666542, 0.056618932634592056, -0.014726640656590462, 0.013881776481866837, -0.004890466574579477, 0.004490780644118786, 0.04263317212462425, 0.001036583911627531, 0.033482637256383896, -0.0022340172436088324, 0.029193323105573654, -0.012081564404070377, -0.020289750769734383, 0.004152834881097078, 0.04791032522916794, 0.012737959623336792, 0.03439249098300934, 0.009007557295262814, -0.004237321205437183, 0.01723523996770382, 0.048534225672483444, 0.004760487470775843, -0.008279673755168915, 0.026151811704039574, -0.007057869341224432, -0.011743619106709957, 0.003701157169416547, -0.021199604496359825, 0.014245717786252499, -0.01269246730953455, -0.016585342586040497, -0.010944247245788574, 0.030389131978154182, -0.0060667782090604305, 0.011925590224564075, -0.009904413484036922, 0.005517616402357817, 0.06576946377754211, 0.01824907772243023, 0.0220834631472826, 0.018522033467888832, -0.01719624549150467, 0.014596661552786827, 0.019951803609728813, 0.009111540392041206, 8.022152178455144e-05, -0.022291429340839386, 0.03925371170043945, 0.0075127966701984406, -0.007993719540536404, -0.02132958360016346, -0.01727423258125782, 0.04965204745531082, -0.00311300135217607, 0.01836605742573738, -0.016468362882733345, 0.024514073505997658, 0.01610442064702511, -0.015974441543221474, 0.0009488480282016098, -0.014258716255426407, 0.009657452814280987, 0.008292671293020248, 0.017664169892668724, 0.008643615059554577, -0.011600641533732414, 0.021875495091080666, 0.03943568468093872, 0.010801269672811031, -0.031298987567424774, 0.002245390322059393, -0.01739121414721012, 0.026567744091153145, -0.004351052921265364, -0.015090582892298698, 0.018041109666228294, 0.011925590224564075, 0.0003541932674124837, -0.03288473188877106, 0.0016929787816479802, 0.08297871053218842, -0.006274744868278503, 0.013946766033768654, -0.027607576921582222, 0.0063169882632792, 0.02087465673685074, -0.03758997842669487, -0.0048352256417274475, -0.02087465673685074, -0.009826426394283772, -0.017937127500772476, 0.0004711745132226497, 0.0075127966701984406, -0.011496658436954021, -0.025059984996914864, 0.02399415709078312, -0.04510277509689331, -0.05474723130464554, -0.027321623638272285, 0.03844784200191498, -0.005433129612356424, -0.004019605927169323, 0.014505676925182343, 0.027217639610171318, 0.019769832491874695, 0.015012594871222973, 0.0170532688498497, -0.011925590224564075, -0.01057380624115467, -0.01239351462572813, -0.0016328634228557348, -0.02490401081740856, 0.011561647988855839, -0.014414691366255283, -0.035016391426324844, 0.03938369080424309, -0.04588264971971512, 0.018911970779299736, -0.0059205517172813416, 0.006979881785809994, 0.000768908066675067, 0.020497716963291168, 0.02470904216170311, 0.032052867114543915, 0.03621219843626022, 0.037018071860075, -0.03927970677614212, -0.014518674463033676, 0.043023109436035156, -0.028361456468701363, 0.008890575729310513, -0.01749519817531109, 0.011184708215296268, -0.005228412337601185, -0.023409251123666763, 0.016689326614141464, -0.029427286237478256, 0.008994558826088905, 0.0007888111285865307, 0.00579382199794054, 0.008734600618481636, -0.02989521063864231, 0.008006717078387737, -0.0170532688498497, -0.006057029590010643, -0.0018798238597810268, 0.015402533113956451, -0.02053670957684517, -0.005449377000331879, -0.012192047201097012, 0.009079045616090298, -0.013803788460791111, -0.036290187388658524, -0.030961040407419205, -0.005722333211451769, -0.0036069222260266542, 0.006206505931913853, -0.031454961746931076, 0.040579501539468765, 0.022291429340839386, 0.03296272084116936, 0.040007591247558594, 0.01528555154800415, 0.018678007647395134, -0.004412793088704348, -0.012192047201097012, 0.0023704953491687775, 0.017586182802915573, 0.006693927571177483, -0.004516776651144028, 0.01652035303413868, 0.022577384486794472, -0.0009464109316468239, 0.023630214855074883, -0.00536164129152894, 0.008273174986243248, -0.023708201944828033, -0.017248237505555153, 0.01028785202652216, 0.021017633378505707, -0.004510277416557074, 0.05011996999382973, 0.01844404637813568, 0.005598853342235088, -0.003369710175320506, -0.011958085000514984, -0.007350322790443897, -0.04882017895579338, 0.009897914715111256, 0.00857862550765276, -0.014895614236593246, 0.036784108728170395, 0.0013395979767665267, -0.004286063369363546, 0.001839205389842391, -0.020978638902306557, 0.01922392100095749, -0.03049311600625515, 0.031896889209747314, 0.019535871222615242, 0.03135097771883011, 0.004841724410653114, -0.0019513124134391546, 0.03496440127491951, -0.0202767513692379, 0.016611339524388313, 0.00048579717986285686, 0.012607980519533157, -0.029427286237478256, -0.04120339825749397, -0.01884698122739792, -0.009676950052380562, -0.0014419564977288246, 0.02099163830280304, -0.006882397457957268, -0.027581581845879555, 0.0015426904428750277, -0.02459206059575081, -0.02595684304833412, 0.021862497553229332, 0.0015670615248382092, 0.03345664218068123, -0.07694767415523529, -0.004776734858751297, 0.013147394172847271, -0.020211761817336082, -0.010885756462812424, 0.019145933911204338, -0.003145496128126979, -0.014557668007910252, 0.0336386114358902, 0.027581581845879555, 0.025488916784524918, -0.018729999661445618, -0.0030675085727125406, -0.0168193057179451, -0.037979915738105774, -0.017287230119109154, 0.039825621992349625, -0.026645731180906296, 0.018158091232180595, 0.0015296924393624067, 0.02812749519944191, -0.011171710677444935, 0.008247178979218006, -0.012068566866219044, -0.010034392587840557, 0.0010682663414627314, -0.01719624549150467, -0.0020634194370359182, 0.003174741519615054, 0.0407874658703804, -0.003652415005490184, 0.006680930033326149, 0.009936908259987831, -0.028413448482751846, 0.02496900036931038, -0.014141734689474106, 0.010905252769589424, -0.011483660899102688, -0.009306509047746658, -0.010879257693886757, -0.025592900812625885, -0.0006986380903981626, 0.007103362120687962, 0.0041755810379981995, -0.01791113056242466, 0.025072984397411346, -0.02719164453446865, 0.012322026304900646, -0.014167730696499348, -0.009241519495844841, 0.006083025597035885, 0.02550191432237625, -0.035094380378723145, 0.03714805096387863, 0.018755996599793434, -0.0028562925290316343, -0.019509874284267426, -0.001276233117096126, -0.005348643288016319, -0.004747489467263222, 0.00036231696140021086, -0.014635656028985977, -0.0076102809980511665, -0.004640256520360708, 0.001371280406601727, 0.009728942066431046, -0.013199386186897755, -0.001188497175462544, 0.009754937142133713, 0.03135097771883011, 0.016572345048189163, 0.04538872838020325, -0.014752636663615704, 0.0339505635201931, -0.002055295743048191, -0.005507867783308029, 0.003307970240712166, -0.022252434864640236, -0.01735221967101097, -0.037797946482896805, -0.007545291446149349, 0.0072138444520533085, 0.0030285147950053215, 0.013634815812110901, -0.0013599072117358446, 0.010944247245788574, -0.004370550159364939, 0.037304025143384933, 0.004227573052048683, 0.029089340940117836, -0.0041625830344855785, -0.009533972479403019, -0.015519513748586178, -0.016546349972486496, 0.009007557295262814, -0.02103063091635704, 0.03556230291724205, -0.006346233654767275, -0.020484719425439835, -0.023825183510780334, -0.02763357385993004, -0.0019903061911463737, -0.001319288625381887, 0.0443229004740715, -0.004958705510944128, 0.05136777088046074, 0.009930409491062164, 0.004097593482583761, -0.010417831130325794, -0.00042690036934800446, -0.003814888885244727, -0.01888597570359707, 0.03831786289811134, 0.010554309003055096, 0.03790193051099777, -0.021836502477526665, 0.010183868929743767, -0.0439329631626606, 0.014921610243618488, -0.011366679333150387, -0.009313007816672325, -0.021615536883473396, -0.012328525073826313, 0.008175690658390522, 0.031532950699329376, 0.019236918538808823, 0.014778632670640945, 0.014700645580887794, -0.02415013127028942, 0.02745160274207592, 0.020146772265434265, -0.040163565427064896, -0.023084301501512527, -0.007551790215075016, -0.022486397996544838, 0.024436086416244507, 0.007798750884830952, -0.057242829352617264, -0.007954725995659828, -0.020757675170898438, -0.01689729280769825, 0.02283734269440174, 0.0814189612865448, -0.016026433557271957, 0.021680526435375214, -0.0005511929630301893, -0.0203547403216362, 0.01201657485216856, 0.016702324151992798, 0.02639877237379551, 0.008929569274187088, -0.008039211854338646, -0.008078206330537796, 0.02864741161465645, -0.029921207576990128, 0.02846544049680233, -0.01577947288751602, 0.009663951583206654, 0.004497279413044453, 0.0012721712701022625, -0.013738798908889294, -0.0007404751377180219, 0.016195405274629593, 0.022096460685133934, 0.0009529098751954734, -0.0374080091714859, 0.04310109466314316, -0.0473124198615551, 0.035692282021045685, -0.008084705099463463, 0.03878578916192055, 0.04356902092695236, 0.002827047137543559, -0.002893661381676793, 0.009442987851798534, -0.027997516095638275, 0.009702946059405804, -0.04863820970058441, -0.02997319959104061, -0.005013946909457445, 0.0472344346344471, -0.00872810184955597, -0.016611339524388313, -0.02989521063864231, 0.015389534644782543, 0.028491435572504997, 0.011139215901494026, -0.017339222133159637, -0.01167862955480814, -0.015051589347422123, -0.010489319451153278, 0.016130415722727776, 0.004516776651144028, -0.01697528176009655, -0.020341740921139717, -0.025553906336426735, 0.00017049613234121352, -0.018340062350034714, -0.021758515387773514, 0.00037125303060747683, -0.033066704869270325, -0.01511657889932394, 0.050041984766721725, 0.011178209446370602, 0.04546671733260155, 0.032988715916872025, 0.006895395461469889, -0.003603672841563821, 0.005774325225502253, 0.01795012503862381, -0.0025914600118994713, -0.01147066242992878, 0.05136777088046074, -0.026723720133304596]" -How Octave Achieves a High Compression Ratio and Speedy Queries on Historical Data While Revolutionizing the Battery Market,"This is an installment of our “Community Member Spotlight” series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition, Nicolas Quintin, head of Data atOctave, shares how the company migrated from AWS Timestream to Timescale in search of a more mature and scalable database and is revolutionizing the battery market by improving the battery systems’ safety and predicting maintenance needs.To do so, the Octave team collects and analyzes millions of data points daily while dramatically saving disk space (their compression ratio is 26.06!) and delivering speedy queries on historical data on client-facing applications. How do they do it? With a little help from Timescale's compression capabilities and continuous aggregates.About the CompanyOctaveis a cleantech company based in Belgium that gives electric vehicle (EVs) batteries a second life. We develop energy storage systems by repurposing usedlithium-ion (Li-ion) batteriesand transforming them into smart, sustainable assets to store the excess wind and solar energy.Batteries from an electric vehicle are typically retired when their usable capacity has decreased to roughly 80 percent. Octave gives these batteries a new life through smart solutions for stationary energy storage, for which demand is rapidly growing. This way, we can save resources and raw materials that would be traditionally used to produce new batteries.The company repurposes batteries from electric vehicles to create these battery cabinetsOctave’s batteries are suitable technologies for small and medium-sized enterprises or industrial sites looking to optimize their energy management or decrease their electricity bill amid the record-high energy prices in Europe.More specifically, Octave’s sustainable energy storage system allows customers to increase their self-consumption and cope with the intermittency of renewable energy sources. It also enables customers to participate actively in the energy markets, becoming more independent from energy suppliers, fossil fuels, and grid operators.About the TeamWe’re currently a team of around 10 people working on everything related to electrical and mechanical design engineering, embedded and software engineering, and business development. We’re growing fast!As the head of data, my role at Octave is to collect data from the edge devices, store them in our databases, develop data pipelines, improve and optimize the battery state algorithms through big data analytics, and present actionable insights in dashboards. Finally, I also ensure that",https://www.timescale.com/blog/high-compression-ratio-and-speedy-queries-on-historical-data-while-revolutionizing-the-battery-market/,484,"[0.029479067772626877, 0.007048431318253279, 0.04604882001876831, 0.0013473400613293052, 0.029814375564455986, 0.02586054801940918, -0.027662822976708412, 0.02169715240597725, -0.01529837865382433, -0.03545871004462242, 0.04364578798413277, -0.05356528237462044, -0.02689441107213497, -0.026335565373301506, 0.055074162781238556, 0.055325645953416824, -0.009905525483191013, -0.01712859608232975, -0.03825293481349945, 0.017827151343226433, -0.025399500504136086, 0.010715850628912449, 0.053984418511390686, 0.0267966128885746, -0.007044938392937183, -0.03749849274754524, -0.04185748100280762, 0.051162250339984894, 0.02925552986562252, -0.07577937096357346, -0.0066781966015696526, -0.03738672286272049, -0.05756102502346039, 0.012944244779646397, 0.027243688702583313, -0.0237509086728096, 0.0269502941519022, -0.04621647298336029, 0.0010880011832341552, 0.01156808901578188, -0.01814848743379116, -0.027411341667175293, 0.0047571673057973385, 0.04208102077245712, 0.001976913772523403, -0.02848711796104908, -0.02433769591152668, -0.024058273062109947, 0.007788900751620531, 0.047529757022857666, 0.006646761670708656, 0.024966396391391754, 0.01738007552921772, -0.059908173978328705, 0.010122078470885754, -0.026321593672037125, 0.023261919617652893, 0.06443481892347336, 0.010764749720692635, -0.007411680184304714, 0.010073179379105568, -0.06259062886238098, 0.047948893159627914, 0.040739793330430984, -0.008704009465873241, 0.03154679387807846, 0.005305533763021231, 0.022940583527088165, -0.016080761328339577, 0.026838526129722595, 0.033027734607458115, 0.04708268120884895, 0.009004388004541397, 0.0017813181038945913, 0.036241091787815094, -0.0798589363694191, -0.014795418828725815, 0.05392853170633316, -0.030037913471460342, -0.025706864893436432, -0.003859522519633174, -0.023289861157536507, 0.0007216957747004926, 0.023024410009384155, 0.025581125169992447, -0.03408953920006752, -0.02629365213215351, -0.013538017868995667, -0.040572140365839005, 0.010701879858970642, -0.04291928932070732, 0.04705474153161049, -0.018455851823091507, -0.0015080079901963472, 0.024197984486818314, 0.025148021057248116, 0.009360652416944504, -0.004949270281940699, 0.013978107832372189, -0.0016721687279641628, -0.009912511333823204, -0.013202711008489132, 0.012846446596086025, 0.008026409894227982, 0.008256933651864529, -0.005539549980312586, 0.04163394495844841, 0.015326321125030518, -0.005120416171848774, -0.013957151211798191, -0.06354066729545593, -0.005026111379265785, -0.018944842740893364, -0.020733145996928215, -0.041075099259614944, 0.010862547904253006, -0.0066258045844733715, -0.008878648281097412, 0.02179495058953762, -0.025301702320575714, -0.02593040280044079, 0.010645994916558266, -0.03693964704871178, 0.030736468732357025, 0.051749035716056824, -0.02763487957417965, -0.009479406289756298, -0.03696759045124054, -0.0051553440280258656, -0.03501163423061371, 0.033195387572050095, -0.027858417481184006, 0.0762823298573494, -0.04610470309853554, -0.011756699532270432, -0.036744050681591034, -0.04135452210903168, -0.021347874775528908, -0.007251012604683638, 0.007733016274869442, 0.027914302423596382, -0.02120816335082054, 0.01863747648894787, 0.0023104744032025337, -0.015563830733299255, -0.008249947801232338, 0.03305567428469658, 0.022996466606855392, -0.018847044557332993, -0.0439252071082592, 0.027523111552000046, -0.0784059390425682, -0.06119351461529732, -0.0020066024735569954, 0.0762823298573494, 0.008473485708236694, 0.02229791134595871, 0.07779120653867722, -0.006119351368397474, -0.05376087874174118, 0.007600290700793266, 0.04470759257674217, -0.0014346595853567123, -0.019894877448678017, -0.053369686007499695, 0.007935597561299801, -0.028864338994026184, -0.04247221350669861, -0.0666143149137497, -0.019699282944202423, -0.07169979810714722, -0.0640995129942894, 0.03551459312438965, 0.01747787371277809, 0.03070852719247341, -0.022744987159967422, -0.015647657215595245, -0.035905785858631134, -0.014236574061214924, -0.02755105309188366, -0.06175236031413078, -0.007823828607797623, -0.028808454051613808, 0.01051326934248209, -0.020327983424067497, 0.0009072497487068176, -0.05767279118299484, 0.02313617803156376, -0.018861014395952225, 0.02236776612699032, -0.055325645953416824, 0.05596831440925598, 0.015996934846043587, 0.036827877163887024, 0.019964734092354774, -0.03096000663936138, 0.04317076876759529, 0.01943383179605007, -0.003068407764658332, 0.0024501855950802565, 0.017086682841181755, 0.020453723147511482, 0.05691835284233093, -0.020579462870955467, 0.04959748312830925, -0.01856762170791626, -0.018120545893907547, -0.022339824587106705, -0.03772202879190445, -0.044987015426158905, 0.005979640409350395, 0.015955021604895592, 0.018679389730095863, -0.006569920107722282, -0.06359654664993286, 0.013831411488354206, -0.03970592841506004, -0.0007622993434779346, 0.014006050303578377, -0.0051518515683710575, -0.026098055765032768, 0.04984896630048752, -0.026670873165130615, -0.001333368942141533, -0.008480471558868885, 0.03797351196408272, 0.02340162917971611, -0.01195928081870079, 0.057616908103227615, 0.0012364443391561508, -0.005228692665696144, -0.06583192944526672, -0.038448527455329895, -0.042528096586465836, -0.013600887730717659, 0.020034588873386383, 0.03017762489616871, -0.010352601297199726, -0.012783576734364033, 0.006650254130363464, -0.011030200868844986, 0.040991272777318954, 0.021236106753349304, 9.616061288397759e-05, -0.016136646270751953, 0.01406892016530037, -0.0403486005961895, -0.060075826942920685, 0.03146296739578247, 0.020397838205099106, 0.015060869976878166, -0.00929079670459032, 0.0005885335267521441, -0.03411748260259628, -0.013740599155426025, -0.059572864323854446, -0.024058273062109947, 0.022619247436523438, 0.004774631001055241, 0.019950762391090393, 0.03705141693353653, -0.03534694015979767, -0.018609534949064255, -0.00010991343879140913, -0.016499895602464676, 0.009968395344913006, 0.030205566436052322, -0.04381344094872475, 0.013531032018363476, -0.01119785476475954, -0.005326490383595228, 0.020816972479224205, 0.0028536017052829266, -0.027676792815327644, 0.007677131798118353, -0.016919029876589775, -0.012867403216660023, -0.006629297509789467, -0.017184481024742126, 0.001840695389546454, -0.0017725861398503184, -0.02788636088371277, -0.011086085811257362, -0.020300040021538734, 0.0027243688236922026, 0.018413938581943512, 0.009241897612810135, 0.03850441426038742, 0.020803000777959824, -0.03224534913897514, 0.019140437245368958, 0.02221408486366272, 0.015885166823863983, -0.00996141042560339, -0.004226264543831348, -0.025832604616880417, -0.006681689061224461, -0.0007225690060295165, -0.02246556431055069, -0.02822166681289673, 0.034983690828084946, 0.006681689061224461, 0.027774590998888016, -0.05239170789718628, 0.00047589134192094207, 0.0027400862891227007, -0.03096000663936138, 0.022074373438954353, -0.005256634671241045, -0.01846982352435589, 0.02465903013944626, -0.022255998104810715, 0.03545871004462242, 0.002268560929223895, -0.05356528237462044, 0.013614858500659466, 0.04467964917421341, -0.025231847539544106, -0.016471954062581062, -0.058958135545253754, 0.011330580338835716, -0.07197922468185425, 0.00411449559032917, 0.015633685514330864, 0.03389394283294678, -0.02236776612699032, 0.03068058378994465, 0.005515100434422493, 0.013810454867780209, -0.022507477551698685, -0.01504689920693636, -0.008061337284743786, 0.04730622097849846, 0.004610470496118069, -0.043953150510787964, -0.00929079670459032, -0.03462044149637222, -0.005501129198819399, -0.012811519205570221, 0.016891086474061012, -0.05026809871196747, -0.043953150510787964, -0.04325459524989128, -0.02119419351220131, 0.06359654664993286, -0.0017201944720000029, -0.019112495705485344, -0.014306428842246532, 0.0020956683438271284, 0.015703542158007622, -0.04484730213880539, -0.004516165237873793, -0.011414406821131706, -0.05043575167655945, -0.00012595839507412165, -0.02840329147875309, -0.003803638042882085, -0.02636350877583027, -0.03476015105843544, -0.0013124123215675354, -0.00869702361524105, 0.041410405188798904, 0.02231188304722309, 0.010701879858970642, 0.02365311048924923, 0.022912640124559402, -0.011477276682853699, 0.05501827970147133, -0.022004516795277596, 0.008333774283528328, 0.02975849062204361, -0.0035312012769281864, -0.02875256910920143, -0.020132387056946754, -0.042444270104169846, -0.022689102217555046, 0.05605214461684227, 0.0043624830432236195, 0.012685779482126236, 0.04775329679250717, 0.058958135545253754, -0.007670145947486162, 0.009870598092675209, -0.009681987576186657, 0.019866935908794403, 0.017952892929315567, 0.01950368657708168, -0.0010146527783945203, -0.068514384329319, -0.013503089547157288, -0.00974485743790865, -0.014502025209367275, 0.001371789607219398, 0.009549262002110481, -0.00919299852102995, 0.027690764516592026, 0.005518593359738588, 0.0035696218255907297, 0.06639077514410019, -0.03436896204948425, 0.04621647298336029, 0.018497765064239502, -0.05255936086177826, -0.007285940460860729, 0.03160267695784569, -0.0068807778880000114, 0.0039677987806499004, 0.007788900751620531, -0.021892748773097992, -0.03448072820901871, -0.03788968548178673, -0.0500166192650795, 0.04929012060165405, -0.031770333647727966, 0.03534694015979767, -0.026084085926413536, -0.01271372102200985, 0.050994597375392914, -0.005165822338312864, 0.05309026315808296, -0.032860077917575836, -0.006775994319468737, -0.027020150795578957, -0.03808527812361717, -0.03470426797866821, 0.025972316041588783, 0.03833676129579544, -0.038448527455329895, 0.0030876179225742817, -0.0408795028924942, -0.030205566436052322, -1.5308201909647323e-05, 0.007760958280414343, -0.01548000331968069, -0.01406892016530037, -0.010359587147831917, 0.001186672248877585, -0.012029136531054974, 0.0334189236164093, 0.004697789903730154, 0.005284577142447233, -0.012979173101484776, 0.013593901880085468, 0.013286537490785122, 0.005221706815063953, -0.0312114879488945, -0.006304468959569931, 0.0040655964985489845, -0.0025200413074344397, -0.016891086474061012, 0.060243479907512665, 0.01441819779574871, -0.011386464349925518, 0.0006719236844219267, -0.04909452423453331, -0.04135452210903168, 0.02678264118731022, -0.025539211928844452, 0.04481935873627663, -0.015452060848474503, -0.041075099259614944, 0.03431307524442673, -0.014110833406448364, -0.004834008403122425, 0.01021987572312355, -0.04831214249134064, 0.019042639061808586, -0.031742390245199203, 0.0031190530862659216, -0.0162903293967247, 0.013614858500659466, 0.01729624904692173, -0.04157806187868118, -0.015801338478922844, -0.03017762489616871, 0.009060272946953773, 0.03383805975317955, 0.0447634756565094, -0.03654845431447029, -0.01756170019507408, -0.013160796836018562, -0.016388125717639923, -0.043534018099308014, 0.05152549967169762, 0.009563233703374863, 0.016919029876589775, -0.0009107425576075912, 0.032189466059207916, -0.040404487401247025, -0.002113132271915674, -0.010855562053620815, 0.013789497315883636, 0.05613597109913826, -0.01654180884361267, 0.008738936856389046, 0.003737275255843997, -0.05362116917967796, -0.0469709150493145, -0.02681058458983898, -0.020048560574650764, 0.055409472435712814, 0.01025480404496193, 0.0030142697505652905, 0.07717648148536682, 0.009982367046177387, 0.016220472753047943, -0.02050960808992386, 0.012441284023225307, 0.01704476960003376, -0.032860077917575836, 0.012182818725705147, -0.011554118245840073, 0.013894281350076199, 0.004530136473476887, -0.005749116651713848, 0.024058273062109947, 0.03780585527420044, 0.009053287096321583, -0.011428378522396088, -0.010625038295984268, -0.01454393845051527, -0.03925885260105133, -0.0007142736576497555, -0.003873493755236268, -0.00937462318688631, 0.009158071130514145, -0.046607665717601776, -0.029311414808034897, -0.03805733844637871, 0.008487456478178501, 0.021753037348389626, -0.023024410009384155, -0.0066781966015696526, 0.015018956735730171, -0.06253474205732346, -0.008627167902886868, -0.05012838542461395, -0.021599354222416878, -0.03434101864695549, 0.009102186188101768, 0.038113221526145935, 0.03436896204948425, -0.00563734769821167, 0.039733871817588806, 0.012196789495646954, 0.008676066994667053, -0.016416069120168686, -0.0516931526362896, -0.03434101864695549, 0.040069177746772766, 0.010184948332607746, -0.035486649721860886, 0.04372961446642876, -0.0020520086400210857, 1.824159153329674e-05, 0.02908787690103054, -0.0008889126474969089, -0.013335436582565308, 0.018036719411611557, 0.023387659341096878, 0.016150617972016335, 0.010205904953181744, -0.00411449559032917, 0.001114196958951652, -0.012071049772202969, 0.03671611100435257, -0.004952762741595507, -0.035654302686452866, -0.028515061363577843, 0.0021253570448607206, 0.02358325384557247, -0.015340291894972324, -0.0020782044157385826, 0.021431701257824898, 0.014851302839815617, -0.0050156330689787865, -0.043282538652420044, -0.01907058246433735, -0.006451165769249201, 0.01021987572312355, -0.01560574397444725, -0.0233317743986845, -0.01951765827834606, 0.011679857969284058, -0.03051293082535267, 0.007767944131046534, 0.024197984486818314, 0.01958751305937767, 0.02203246019780636, -0.039901524782180786, -0.008208034560084343, -0.00568275386467576, -0.002832645084708929, 0.0044532953761518, -0.001122055808082223, 0.018847044557332993, 0.03970592841506004, -0.028095927089452744, -0.021501557901501656, 0.017449932172894478, -0.018106574192643166, -0.004956255666911602, 0.010415472090244293, 0.019056610763072968, -0.009339694865047932, 0.028040042147040367, 0.02373693697154522, 0.005487158428877592, 0.0378337986767292, -0.029115818440914154, -0.0020555013325065374, -0.015731483697891235, -0.0015918347053229809, -0.03146296739578247, 0.0035556505899876356, 0.005158836953341961, -0.017072711139917374, -0.005263620521873236, 0.009430507197976112, 0.0045021940022706985, -0.011058143340051174, -0.05429178103804588, -0.03313950076699257, -0.043366365134716034, -0.00474668899551034, 0.010625038295984268, -0.00010887652024393901, -0.02619585394859314, -0.001816245960071683, 0.029311414808034897, -0.011742728762328625, -0.010736807249486446, 0.011058143340051174, 0.009856626391410828, -0.019559571519494057, 0.038197048008441925, 0.031770333647727966, 0.0337262898683548, 0.015703542158007622, -0.029227588325738907, 0.04487524554133415, -0.010750778950750828, 0.016905058175325394, 0.0016756615368649364, -0.026642929762601852, -0.025161990895867348, 7.465818634955212e-05, 0.04372961446642876, -0.009248882532119751, -0.007865741848945618, 0.002614346332848072, -0.025134049355983734, 0.05454326048493385, 0.039817698299884796, 0.007593304850161076, 0.015996934846043587, 0.00860621128231287, -0.001089747529476881, -0.035570476204156876, 0.0239045899361372, -0.03054087422788143, -0.026251738891005516, 0.023192062973976135, -0.010883504524827003, -0.0028640800155699253, 0.01619253121316433, 0.025888489559292793, -0.0048409937880933285, 0.029982028529047966, 0.0522240549325943, -0.0020555013325065374, 0.04104715585708618, 0.028724627569317818, 0.03459249809384346, 0.02400238811969757, 0.017869064584374428, 0.0037722031120210886, 0.006437194533646107, 0.029982028529047966, 0.0605229027569294, -0.032692424952983856, 0.014515995979309082, -0.027928274124860764, 0.011295652016997337, -0.012532096356153488, 0.010408486239612103, -0.0031190530862659216, -0.010939388535916805, 0.03017762489616871, 0.021990546956658363, 0.010038251057267189, -0.011763685382902622, -0.011302637867629528, -0.019196322187781334, 0.005001661833375692, -0.03978975489735603, 0.009898540563881397, 0.00936763733625412, -0.010268774814903736, -0.08622976392507553, -0.02391856163740158, -0.00550811504945159, -0.05677863955497742, -0.025385528802871704, -0.04688708484172821, 0.010366572998464108, -0.00996141042560339, -0.00502261845394969, 0.024966396391391754, -0.0016049327095970511, -0.06080232560634613, -0.014054949395358562, -0.024868598207831383, 0.02391856163740158, 0.0012477958807721734, 0.017519786953926086, -0.02254939079284668, 0.0272157471626997, -0.022619247436523438, -0.031155603006482124, -0.050491634756326675, 0.029870258644223213, -0.04873127490282059, -0.04512672498822212, 0.023094264790415764, 0.008620182052254677, -0.017170509323477745, 0.047362104058265686, -0.008249947801232338, -0.027341486886143684, 0.0010530733270570636, -0.010450399480760098, 0.02231188304722309, -0.021683182567358017, 0.02967466413974762, -0.013056013733148575, -0.020537549629807472, -0.02908787690103054, -0.01915440894663334, 0.0005522959399968386, -0.05594037473201752, -0.01968531124293804, 0.00540682440623641, -0.03763820230960846, 0.026321593672037125, -0.0422486737370491, -0.01976913772523403, 0.026936324313282967, -0.012385400012135506, -0.008403629995882511, -0.009772799909114838, 0.013076970353722572, -0.012301573529839516, -0.016737405210733414, -0.014669678173959255, -0.006908719893544912, 0.01158206071704626, 0.005721174646168947, 0.015815310180187225, 0.025120077654719353, -0.0173940472304821, 0.01234348677098751, -0.0356263630092144, 0.004079567734152079, -0.003098096465691924, 0.03889560326933861, -0.009716915898025036, -0.007593304850161076, -0.001227712375111878, -0.05356528237462044, -0.024617116898298264, -0.029479067772626877, -0.009500362910330296, -0.005577970761805773, 0.009011373855173588, -0.00692967651411891, 0.022102314978837967, 0.02875256910920143, 0.018413938581943512, -0.0015071348752826452, 0.02502227947115898, 0.018260257318615913, -0.03400571271777153, -0.014725563116371632, -0.008536355569958687, -0.014306428842246532, 0.027620909735560417, -0.019266176968812943, -0.027327515184879303, -0.04168982803821564, -0.03629697486758232, 0.000895898207090795, -0.026768669486045837, 0.009269840084016323, 0.0194897148758173, -0.025050222873687744, 0.01976913772523403, -0.08159135282039642, 0.002155045513063669, 0.025581125169992447, -0.05113430693745613, -0.008801806718111038, 0.012776591815054417, 0.019308090209960938, 0.01873527467250824, 0.03758231922984123, -0.0026929338928312063, 0.03805733844637871, -0.05677863955497742, -0.0011290413094684482, 0.004254206549376249, -0.018763218075037003, 0.027537081390619278, 0.03154679387807846, 0.025553183630108833, 0.009933467954397202, 0.016555780544877052, -0.03431307524442673, 0.005574477836489677, -0.019615456461906433, 0.03576607257127762, 0.025650979951024055, -0.006793458014726639, -0.00992648210376501, 0.027942243963479996, 0.02560906670987606, 0.010925417765974998, 0.01119086891412735, -0.0030963500030338764, -0.017687441781163216, 0.04238838702440262, -0.019643398001790047, 0.03325127065181732, 0.017156537622213364, 0.0124273132532835, -0.014991014264523983, -0.0006531499675475061, -0.004666354972869158, -0.03339098393917084, 0.031910043209791183, -0.023695023730397224, 0.02169715240597725, -0.02236776612699032, -0.018413938581943512, 0.026740727946162224, -0.012399370782077312, 0.009737872518599033, 0.029199644923210144, 0.012231717817485332, -0.026139969006180763, -0.04275163263082504, -0.011498233303427696, -0.008627167902886868, -0.05093871057033539, -0.009465435519814491, 0.015466032549738884, 0.003323380835354328, 0.008452529087662697, 0.05051957815885544, -0.004254206549376249, -0.028640801087021828, -0.010366572998464108, 0.018777187913656235, -0.012092006392776966, 0.05851105973124504, -0.021934662014245987, 0.005144865717738867, -0.003042211988940835, 0.02179495058953762, 0.032776251435279846, -0.02706206403672695, -0.005997104104608297, -0.005567492451518774, 0.01060408167541027, -0.013635815121233463, 0.009507348760962486, -0.026433363556861877, 0.018288198858499527, 0.0021829877514392138, -0.015885166823863983, 0.021180221810936928, -0.01694697141647339, 5.0836330046877265e-05, -0.0059761474840343, 0.018609534949064255, 0.020816972479224205, -0.0026370494160801172, 0.03934267908334732, 0.004121480975300074, -0.051944632083177567, -0.026684843003749847, 0.01908455230295658, 0.028026072308421135, 0.023443542420864105, 0.008662096224725246, 0.009102186188101768, -0.003681390779092908, 0.04800477623939514, 0.018036719411611557, 0.008794821798801422, 0.01992282085120678, -0.01940588839352131, -0.025734806433320045, -0.00459999218583107, -0.010003323666751385, -0.009940453805029392, -0.016807259991765022, -0.007327853702008724, 0.005773566197603941, 0.01637415587902069, 0.04817242920398712, 0.008452529087662697, 0.05672275647521019, 0.0045825280249118805, -0.009563233703374863, 0.03325127065181732, -0.03900737315416336, 0.034899864345788956, -0.007621247321367264, -0.040153004229068756, 0.00928381085395813, 0.01433437131345272, 0.0350954607129097, 0.019643398001790047, -0.007306897081434727, 0.022172171622514725, 0.0019402395701035857, 0.004910849500447512, 0.048535678535699844, 0.006007582414895296, 0.03610137850046158, 0.004226264543831348, -0.008040380664169788, -0.0038874647580087185, 0.00179179641418159, -0.011847511865198612, 0.005179793573915958, -0.019699282944202423, -0.0027243688236922026, -0.001252161804586649, 0.021669210866093636, 0.009640074335038662, 0.008808792568743229, 0.007041445467621088, 0.026503218337893486, -0.023890620097517967, 0.045406147837638855, 0.0016320017166435719, -0.001985645852982998, -0.031155603006482124, 0.07846182584762573, -0.0104294428601861, 0.06527308374643326, -0.0315188504755497, -0.009870598092675209, 0.013600887730717659, 0.02771870605647564, 0.02002061903476715, 0.021920690312981606, 0.012022150680422783, 0.0017289264360442758, 0.017324192449450493, -0.02306632325053215, -0.023764878511428833, -0.02567892335355282, 0.0039258855395019054, 0.018246285617351532, 0.015507945790886879, -0.0033600549213588238, 0.026475276798009872, 0.0032220901921391487, 0.01548000331968069, -0.012965201400220394, 0.030987950041890144, -0.00731388246640563, 0.004666354972869158, 0.017701411619782448, -0.03788968548178673, -0.0007007390959188342, 0.0005448737647384405, 0.049569543451070786, 0.00631494726985693, -0.010331644676625729, -0.03984564170241356, 0.012860418297350407, -0.004303105641156435, 0.020900798961520195, 0.015996934846043587, -0.003985262475907803, -0.007809857372194529, 0.01454393845051527, -0.0025619545485824347, 0.02731354348361492, 0.025888489559292793, 0.027872389182448387, -0.03062470071017742, 0.006175235845148563, 0.0008208034560084343, -0.021920690312981606, 0.021571412682533264, -0.015452060848474503, -0.0043659755028784275, 0.0389794297516346, -0.020886827260255814, -0.015284407883882523, -0.045154668390750885, 0.028864338994026184, -0.013628830201923847, 0.0011342804646119475, -0.013440219685435295, -0.007635218556970358, -0.03263654187321663, 0.0014835585607215762, 0.03325127065181732, 0.031155603006482124, -4.071272269356996e-05, -0.02408621460199356, -0.03291596472263336, -0.03436896204948425, -0.03238506242632866, 0.02077505923807621, -0.020327983424067497, 0.021389788016676903, 0.003028240753337741, -0.00392239261418581, -0.01283946167677641, 0.01654180884361267, -0.016234444454312325, 0.023303832858800888, 0.026265710592269897, 0.013342421501874924, 0.025245817378163338, 0.006164757534861565, 0.006437194533646107, -0.037777915596961975, -0.008410615846514702, -0.0005330856656655669, -0.004847979638725519, 0.00570021802559495, 0.020579462870955467, -0.007223070133477449, -0.013971121981739998, 0.0009116157307289541, 0.024826684966683388, 0.024267839267849922, 0.038197048008441925, -0.0003444754984229803, -0.019363975152373314, -0.005501129198819399, 0.035654302686452866, -0.009304767474532127, 0.03487192094326019, 0.011065129190683365, 0.03325127065181732, 0.0359337255358696, 0.011686843819916248, 0.016835201531648636, -0.015228522941470146, 0.021683182567358017, 0.0337262898683548, -0.02246556431055069, -0.009018359705805779, -0.03263654187321663, -0.007411680184304714, -0.03450867161154747, 0.007181156892329454, 0.0298423171043396, -0.021990546956658363, 0.03171444684267044, -0.003309409599751234, 0.007600290700793266, -0.0012844700831919909, 0.02340162917971611, -0.04495907202363014, -0.0074535938911139965, -0.021934662014245987, -0.03330715745687485, -0.0219626035541296, 0.01763155683875084, 0.003712825709953904, 0.024197984486818314, 0.020733145996928215, -0.027341486886143684, -0.02771870605647564, -0.01637415587902069, 0.033782172948122025, -0.04699885472655296, -0.01072283647954464, -0.0028378842398524284, -0.007767944131046534, 0.01262989453971386, -0.020481664687395096, 0.020984625443816185, -0.019657369703054428, 0.025064192712306976, -0.005218214355409145, -0.01272070687264204, 0.0026125998701900244, -0.01042245700955391, 0.0064616440795362, 0.06124940142035484, -0.005962176248431206, 0.013621844351291656, -0.01983899436891079, -0.012280616909265518, -0.04414874687790871, 0.02866874262690544, -0.017827151343226433, 0.013524046167731285, -0.0011892918264493346, 0.05026809871196747, -0.0012940751621499658, -0.0045021940022706985, 0.042863402515649796, 0.0042437282390892506, 0.027006179094314575, 0.0267966128885746, 0.03900737315416336, 0.015270437113940716, 0.027774590998888016, 0.03230123594403267, -0.021166250109672546, -0.007257997989654541, 0.011603017337620258, -0.015871195122599602, -0.03568224608898163, 0.012727692723274231, 0.0009893301175907254, -0.016919029876589775, 0.019112495705485344, 0.029730549082159996, -0.008704009465873241, 0.009688973426818848, 0.018106574192643166, -0.016849173232913017, -0.0005361418006941676, 0.012678793631494045, 0.0028047028463333845, -0.0010216382797807455, -0.00674455938860774, 0.0032727355137467384, -0.018874986097216606, 0.02111036516726017, 0.0002715636801440269, 0.012748649343848228, 0.026391450315713882, 0.02552524022758007, 0.059125788509845734, 0.004358990117907524, 0.0008037761435844004, 0.006280019413679838, 0.010268774814903736, -0.029702605679631233, -0.02229791134595871, 0.003478809492662549, -0.006576905958354473, 0.03685582056641579, 0.004732717759907246, 0.008117222227156162, -0.004034161567687988, -0.01806466095149517, 0.017994806170463562, -0.022675132378935814, -0.020397838205099106, 0.01652783714234829, -0.01119086891412735, -0.005232185125350952, 0.0023122206330299377, 0.017938921228051186, 0.005075010005384684, -0.0334189236164093, -0.00792861171066761, -0.006335903890430927, -0.010373557917773724, -0.006423223298043013, 0.012909317389130592, 0.019713252782821655, -0.001106338226236403, -0.004439324140548706, 0.022172171622514725, 0.04616058990359306, 0.025916431099176407, 0.03143502399325371, -0.01148426253348589, -0.014851302839815617, 0.01128168124705553, 0.021571412682533264, -0.026056142523884773, -0.0018878479022532701, -0.00983566977083683, -0.005448737647384405, -0.003194147953763604, 0.02391856163740158, -0.023373687639832497, -0.007306897081434727, -0.021808922290802002, -0.027774590998888016, -0.013971121981739998, 0.002623078180477023, 0.01513072568923235, -0.01908455230295658, -0.003283213824033737, 0.012057079002261162, 0.055996257811784744, 0.031770333647727966, 0.007949568331241608, 0.02806798554956913, -0.00020825704268645495, -0.008005453273653984, 0.0006348128663375974, 0.027760619297623634, -0.028780512511730194, -0.018511736765503883, 0.022451594471931458, -0.031183544546365738, 0.012469226494431496, -0.025972316041588783, -0.007383738178759813, 0.03266448527574539, 0.027998128905892372, 0.013111898675560951, 0.01310491282492876, 0.024910511448979378, 0.021431701257824898, 0.014571880921721458, 0.025748778134584427, -0.039650045335292816, -0.04440022632479668, -0.00024405804288107902, -0.0447634756565094, 0.019964734092354774, -0.0035172300413250923, -0.0034351497888565063, -0.0029601315036416054, 0.002041530329734087, -0.015200581401586533, 0.033363040536642075, 0.007746987510472536, -0.018204372376203537, -0.003246539505198598, -0.0002453678462188691, -0.013496104627847672, -0.014117819257080555, -0.04825625568628311, -0.018805131316184998, 0.009130128659307957, -0.019657369703054428, 0.023946503177285194, 0.003936363849788904, -0.04576939716935158, 0.04152217507362366, 0.015507945790886879, -0.02586054801940918, -0.014557909220457077, -0.0263774786144495, 0.004687311593443155, 0.01645798236131668, -0.03420130908489227, 0.014180689118802547, 0.018120545893907547, 0.01805068925023079, 0.03529105335474014, 0.022269969806075096, 0.004083060659468174, 0.0003069280937779695, -0.005134387407451868, -0.021557440981268883, 0.0007801998872309923, -0.011819569393992424, -0.00878085009753704, 0.008871662430465221, 0.011176898144185543, 0.019391918554902077, 0.04671943187713623, -0.015787368640303612, -0.006940154824405909, -0.0025392514653503895, 0.029367299750447273, 0.00621365662664175, 0.031770333647727966, 0.013796483166515827, 0.01089747529476881, 0.021585384383797646, -0.010799677111208439, -0.00881577841937542, 0.013712656684219837, 0.004606977570801973, -0.06963207572698593, -0.0075374203734099865, -0.028263580054044724, 0.011589045636355877, 0.013342421501874924, -0.01874924637377262, 0.010261788964271545, -0.0034281641710549593, 0.025301702320575714, -0.0028693191707134247, -0.03308361768722534, 0.005242663435637951, 0.03554253652691841, 0.023862676694989204, 0.00483750132843852, -0.027788562700152397, 0.0009020105935633183, -0.003953827545046806, -0.005777059122920036, -0.022521449252963066, 0.009339694865047932, -0.011358522810041904, -0.013293523341417313, -0.007062402553856373, 0.016346212476491928, -0.04300311580300331, -0.011037186719477177, -0.0029671171214431524, 0.003010776825249195, -0.010485326871275902, -0.003576607210561633, -0.027998128905892372, 0.0197551678866148, -0.0037023473996669054, 0.02822166681289673, -0.0164440106600523, -0.005871364381164312, 0.019894877448678017, -0.005040082614868879, -0.023122208192944527, 0.026167912408709526, 0.024784771725535393, 0.01063900999724865, 0.01500498503446579, -0.003649955615401268, -0.002076457953080535, -0.02152949944138527, 0.001557780196890235, -0.010841591283679008, -0.012371429242193699, 0.012224731966853142, 0.005560506600886583, -0.0133983064442873, 0.028864338994026184, 0.052112285047769547, 0.027537081390619278, 0.004872428718954325, 0.008501428179442883, -0.022158199921250343, 0.032357119023799896, -0.02653116174042225, -0.0019751673098653555, -0.03436896204948425, -0.01521455217152834, 0.020286070182919502, 0.019992675632238388, -0.015186609700322151, -0.0028343915473669767, 0.019308090209960938, 0.01186846848577261, 0.0001134062185883522, -0.02186480723321438, -0.01216884795576334, 0.03618520870804787, -0.01207803562283516, -0.022102314978837967, -0.015354263596236706, 0.04856362193822861, 0.026587046682834625, -0.05691835284233093, -0.0015621461207047105, -0.022451594471931458, 0.024631088599562645, -0.004372961353510618, 0.016751375049352646, 0.0003916280111297965, 0.020300040021538734, -0.02933935634791851, -0.004111002665013075, -0.007481535896658897, 0.006671210750937462, 0.008068323135375977, 0.00293742842040956, 0.022535420954227448, 0.002275546547025442, -0.02595834620296955, 0.02917170338332653, -0.032440945506095886, 0.014991014264523983, -0.02457520365715027, -0.009025344625115395, -0.013461176306009293, 0.011637944728136063, -0.016471954062581062, 0.03017762489616871, 0.011127999052405357, 0.038532353937625885, 0.001315905130468309, 0.007355795707553625, -0.0012556546134874225, 0.00502261845394969, 0.02653116174042225, 0.008927547372877598, -0.004512672312557697, -0.03305567428469658, 0.01602487824857235, 0.01004523690789938, 0.011889425106346607, 0.007914640940725803, -0.003796652425080538, -0.00737675279378891, -0.012497168965637684, 0.01318873930722475, -0.020984625443816185, -0.01722639426589012, 0.01560574397444725, -0.008676066994667053, -0.01900072582066059, -0.02094271220266819, 0.05241965129971504, -0.009695959277451038, -0.009563233703374863, 0.025539211928844452, 0.007320868317037821, -0.0028448698576539755, 0.0153961768373847, 0.008131192997097969, 0.002219662070274353, 0.011330580338835716, -0.01654180884361267, -0.03087618015706539, 0.0036429702304303646, -0.04188542440533638, -0.018511736765503883, 0.029395241290330887, -0.00665374705567956, -0.021669210866093636, -0.0044463095255196095, 0.0254274420440197, 0.011086085811257362, 0.006133322604000568, 0.04020889103412628, -0.027173832058906555, -0.0019332540687173605, -0.010408486239612103, 0.0041878437623381615, -0.007355795707553625, 0.02797018736600876, -0.012266645208001137, -0.0038141163531690836, -0.020383868366479874, 0.003939856309443712, -0.01968531124293804, -0.020579462870955467, 0.027355456724762917, 0.013845382258296013, -0.013384334743022919, 0.023681052029132843, 0.004889892879873514, 0.008284875191748142, 0.040236830711364746, -0.020747115835547447, -0.023597225546836853, -0.02289867028594017, 0.016905058175325394, -0.006248584482818842, 0.021641269326210022, 0.008410615846514702, 0.011030200868844986, 0.02187877707183361, 0.01677931845188141, 0.017449932172894478, 0.028165781870484352, -0.0149211585521698, 0.04398109391331673, -0.01446011196821928, 0.0022545899264514446, -0.014040977694094181, 0.021836863830685616, -0.021096395328640938, 0.025623038411140442, -0.005689739715307951, 0.011295652016997337, -0.021906720474362373, 0.02084491401910782, -0.0011727011296898127, 0.002537505002692342, 0.028724627569317818, 8.213491673814133e-05, -0.0077539728954434395, -0.003918899688869715, 0.03635286167263985, -0.020579462870955467, 0.000993696041405201, -0.015731483697891235, 0.02254939079284668, 0.012853432446718216, 0.009409550577402115, -0.0067585306242108345, -0.010464370250701904, 0.012594967149198055, 0.026489248499274254, -0.00831281766295433, 0.022437622770667076, -0.018972784280776978, 0.0133983064442873, 0.02162729762494564, 0.00860621128231287, -0.010150020010769367, 0.025986287742853165, 0.018972784280776978, 0.0037826814223080873, 0.015493975020945072, -0.012818505056202412, -0.008201048709452152, -0.00869702361524105, -0.0043240622617304325, -0.003915407229214907, -0.022451594471931458, -0.04850773513317108, 0.023010438308119774, -0.01331447996199131, 0.022870726883411407, -0.0342571921646595, -0.021417731419205666, -0.04043242707848549, 0.00830583181232214, 0.012825489975512028, -0.0189168993383646, -0.00784478522837162, 0.014054949395358562, 0.04691502824425697, 0.018120545893907547, 0.011966266669332981, 0.02830549329519272, 0.01242032740265131, 0.0033792653121054173, 0.014935129322111607, 0.028179753571748734]" -How Octave Achieves a High Compression Ratio and Speedy Queries on Historical Data While Revolutionizing the Battery Market,"this entire process happens seamlessly.About the ProjectOctave distinguishes itself from traditional battery suppliers by leveraging the plethora of data and measurements from the battery system and building up an extensive history of each battery cell.We handle large streams of battery measurements with clear time-series characteristics: each data point is composed of a timestamp and a value. These data are collected from the battery systems (our IoT edge devices) and sent back to our cloud for further analysis.Among the information we collect, the most basic yet crucial data points are undoubtedly the voltage and temperature measurements from each battery cell in operation.One of Octave’s dashboards made with Grafana and Timescale""We initially used AWS Timestream in the early days of Octave, which at first seemed a natural choice to handle our time-series data since our cloud infrastructure was entirely built in AWS. However, we quickly realized we would need a more widely used, mature, and scalable database solution""The data are streamed back to ourBattery Cloud(our in-house developed cloud platform, hosted on AWS and relying on Timescale databases), where they are crunched and further processed. This allows us the following:Analyze the battery cells’ behavior and degradation based on their history and how they are cycled (the temperature, current levels, and depth of discharge significantly impact the lifetime of batteries!).Improve the safety of the system by immediately detecting anomalies.Implement a data-driven predictive maintenance process. The ultimate goal is to predict when to replace a used battery module, and by doing so, we can extend the lifetime of the entire system. This is a true game-changer for second-life battery systems.✨Editor's Note:Learn what time-series forecasting is, its applications, and its main techniques in this blog post.A diagram of Octave’s Battery CloudChoosing (and Using!) TimescaleDBI have been using PostgreSQL for some time, and we were keen to use tools and stacks we were familiar with for the sake of efficiency. So inevitably, I was immediately interested when I heard about an interesting PostgreSQL extension called TimescaleDB, specifically built to handle time-series data, which we knew we needed since we were dealing with a typical IoT use case.""Timescale has proven to be a key enabler of Octave’s data-driven Battery Cloud technology""We initially used AWS Timestream in the early days of Octave, which at first seemed a natural choice to handle our time-series",https://www.timescale.com/blog/high-compression-ratio-and-speedy-queries-on-historical-data-while-revolutionizing-the-battery-market/,485,"[0.00442163273692131, -0.0211044792085886, 0.05064532533288002, -0.00014421592641156167, 0.043972186744213104, 0.026990948244929314, 0.00010670495248632506, -0.027370719239115715, -0.022406555712223053, -0.00020747595408465713, 0.028428656980395317, -0.03504754230380058, -0.020263556391000748, -0.032226379960775375, 0.056531794369220734, 0.035698581486940384, -0.02555323950946331, -0.003019527532160282, -0.03917078301310539, -0.00838211365044117, 0.001344461110420525, 0.01477042306214571, 0.027913251891732216, 0.02517346665263176, -0.019531138241291046, -0.0435652881860733, -0.023681504651904106, 0.06472402065992355, 0.00014654711412731558, -0.061197567731142044, 0.0026448415592312813, -0.053086720407009125, -0.04749864339828491, -0.009819822385907173, 0.02986636571586132, -0.018676651641726494, 0.023979896679520607, -0.018920790404081345, -0.004363988526165485, 0.01301397755742073, -0.035752832889556885, -0.012715584598481655, 0.00647986214607954, 0.03759744018316269, 0.001509763766080141, -0.026611175388097763, -0.01466191653162241, -0.01289190724492073, 0.012885126285254955, 0.07096313685178757, -0.00647986214607954, 0.03724479675292969, -0.007941306568682194, -0.0205212589353323, 0.008341423235833645, -0.006717219483107328, 0.0068019903264939785, 0.07345878332853317, 0.02992061898112297, -0.007303832098841667, 0.009229819290339947, -0.032633278518915176, 0.04627794772386551, 0.03664800897240639, 0.0017089745961129665, 0.032307758927345276, 0.000435720692621544, 0.01658790372312069, -0.03474915027618408, 0.023098284378647804, 0.018771594390273094, 0.027628421783447266, -0.004357207100838423, -0.005401580594480038, 0.016113189980387688, -0.05875617265701294, 0.0040384698659181595, 0.036539506167173386, 0.00326366676017642, 0.00376042234711349, 0.003390822559595108, -0.0013656538212671876, -0.027438536286354065, -0.01030810084193945, 0.022121727466583252, -0.019897347316145897, -0.0429413765668869, 0.00644934456795454, -0.04606093466281891, 0.012769837863743305, -0.06217412278056145, 0.03236201032996178, -0.039984580129384995, 0.022610004991292953, 0.011650866828858852, 0.027994630858302116, -0.01249857246875763, -0.02520059421658516, -0.0013512427685782313, -0.006540896836668253, 0.0044453684240579605, -0.02505139820277691, -0.023979896679520607, 0.003777376376092434, 0.032524771988391876, -0.026244966313242912, 0.04776990786194801, 0.022420119494199753, -0.027994630858302116, 0.022908397018909454, -0.05908169224858284, 0.0033874318469315767, -0.036241110414266586, -0.009175566025078297, -0.020290682092308998, -0.011305002495646477, -0.01719825156033039, -0.01618100516498089, 0.018161246553063393, -0.040255844593048096, -0.013814210891723633, -0.0010901495115831494, -0.013149609789252281, 0.015435024164617062, 0.06325918436050415, -0.026746809482574463, 0.004947210196405649, -0.03895376995205879, -0.019273435696959496, -0.01300041377544403, 0.03469489514827728, -0.01751020736992359, 0.06434424966573715, -0.05547385662794113, 0.010118214413523674, -0.01749664545059204, -0.048556581139564514, -0.02179620787501335, 0.007927743718028069, 0.01264776848256588, 0.036729391664266586, -0.05137774348258972, 0.052435681223869324, 0.011915350332856178, -0.031141314655542374, -0.020073669031262398, 0.027167269960045815, 0.0425073504447937, -0.04714599624276161, -0.03496616333723068, 0.00541514391079545, -0.031087061390280724, -0.019124239683151245, 0.006286585237830877, 0.06841323524713516, 0.009704533964395523, 0.013461565598845482, 0.06233688443899155, -0.03328431397676468, -0.05040118843317032, -0.01727963238954544, 0.011216841638088226, 0.022732075303792953, -0.01458053756505251, -0.03027326427400112, 0.007113945670425892, -0.040744125843048096, -0.03689214959740639, -0.07025784254074097, 0.002010757802054286, -0.048448074609041214, -0.035590074956417084, 0.005774571094661951, 0.004106285981833935, 0.011135461740195751, -0.032307758927345276, -0.014756860211491585, -0.044107820838689804, 0.006873197387903929, -0.02590588480234146, -0.020412752404808998, 0.009806258603930473, -0.06960680335760117, 0.039631932973861694, -0.03960480913519859, 0.016262385994195938, -0.030598783865571022, 0.04568116366863251, -0.0030093551613390446, 0.03727192059159279, -0.044080693274736404, 0.05843065679073334, 0.01254604384303093, 0.05541960522532463, 0.017889980226755142, -0.039767567068338394, 0.028048884123563766, 0.0430498830974102, 0.0029703606851398945, 0.00863303430378437, 0.023803574964404106, 0.008090502582490444, 0.06277091056108475, -0.013773521408438683, 0.02940521389245987, 0.013366622850298882, 0.010911666788160801, -0.030408896505832672, -0.03396248072385788, -0.052435681223869324, -0.00012938107829540968, -0.03382684662938118, 0.016018245369195938, -0.007086819037795067, -0.06206561625003815, -0.022623568773269653, -0.02973073348402977, -0.0011037127114832401, 0.02064332738518715, -0.023993460461497307, -0.0002947896427940577, 0.05506695806980133, -0.013325932435691357, -0.013047885149717331, 0.012763055972754955, 0.027397846803069115, 0.02502427063882351, 0.012105236761271954, 0.05552811175584793, -0.01299363188445568, -0.011962822638452053, -0.07969789206981659, -0.03027326427400112, -0.05387338995933533, -0.007995559833943844, -0.01091844867914915, 0.027614859864115715, -0.014607664197683334, 0.0005548233748413622, -0.03502041473984718, -0.008449929766356945, 0.03713629022240639, 0.011210059747099876, 0.022813454270362854, -0.007710730656981468, 0.0027787790168076754, -0.03493903577327728, -0.057399846613407135, 0.04673909768462181, 0.044433340430259705, 0.003158551175147295, -0.006920668762177229, -0.0039808256551623344, -0.03949630260467529, -0.01740170083940029, -0.06656862795352936, -0.012776619754731655, 0.04966877028346062, 0.005394798703491688, 0.011691556312143803, 0.004903129301965237, -0.022854143753647804, -0.027004512026906013, -0.0017089745961129665, -0.039903201162815094, 0.006249286234378815, 0.0204941313713789, -0.041666429489851, 0.006791817490011454, 0.0023600126150995493, 0.014539847150444984, 0.05392764136195183, 0.02918820083141327, -0.021728390827775, 0.0052049127407372, -0.0209010299295187, 0.0006196728209033608, 0.0011808539275079966, -0.026570485904812813, 0.019775277003645897, 0.011210059747099876, -0.03732617571949959, -0.020344935357570648, -0.013712486252188683, 0.013753176666796207, 0.008199009113013744, 0.011352473869919777, 0.052625566720962524, 0.0425073504447937, -0.053574997931718826, 0.011644084937870502, 0.04497586935758591, 0.009982582181692123, -0.031168442219495773, -0.007710730656981468, -0.0025007317308336496, -0.004357207100838423, -0.018459638580679893, -0.014499157667160034, -0.015407897531986237, 0.04698323830962181, 0.0007548818830400705, 0.017849290743470192, -0.040038835257291794, 0.012878344394266605, 0.014227891340851784, -0.03390822559595108, 0.01087097730487585, -0.01737457513809204, 0.027574170380830765, 0.013915936462581158, -0.026746809482574463, 0.022433683276176453, 0.015869049355387688, -0.01672353781759739, 0.010972701944410801, 0.035671453922986984, -0.053222350776195526, -0.01751020736992359, -0.0836041197180748, 0.01482467632740736, -0.08186802268028259, -0.027153708040714264, 0.02077896147966385, 0.035318806767463684, -0.01687273383140564, 0.015828359872102737, -0.0063340566121041775, 0.009168784134089947, -0.011447417549788952, -0.013576854020357132, -0.005944111850112677, 0.040418606251478195, 0.032172124832868576, -0.044487591832876205, -0.026828188449144363, -0.03510179743170738, 0.018459638580679893, -0.04595242813229561, 0.05048256739974022, -0.031385455280542374, -0.057182833552360535, -0.06721966713666916, -0.004340252839028835, 0.044026441872119904, 0.003536628093570471, -0.056423287838697433, -0.018608834594488144, -0.01456697378307581, -0.0049133021384477615, -0.03225350379943848, 0.003733295714482665, 0.007547971326857805, -0.05484994500875473, 0.007120727561414242, -0.03746180981397629, 0.007039347663521767, -0.03428799659013748, -0.044948745518922806, -0.007080037612468004, -0.01498743612319231, 0.03347419947385788, 0.031385455280542374, 0.040445733815431595, 0.026312783360481262, 0.0010909971315413713, -0.013359840959310532, 0.027831872925162315, -0.0413137823343277, -0.0012791878543794155, 0.03493903577327728, -0.013861683197319508, -0.009541775099933147, -0.03735330328345299, -0.05864766612648964, -0.007988777942955494, 0.053276605904102325, 0.011508451774716377, -0.0003257308853790164, 0.042859997600317, 0.05235430225729942, -0.004479276482015848, 0.0026668820064514875, -0.0013690446503460407, 0.03697352856397629, 0.03360983356833458, 0.0108641954138875, 0.018459638580679893, -0.052788324654102325, 0.007656477391719818, 0.010050398297607899, -0.00853130966424942, -0.003848583670333028, -0.005343936383724213, -0.026326347142457962, 0.0057067545130848885, -0.013400531373918056, 0.011833971366286278, 0.06624311208724976, -0.0005560949211940169, 0.03789583221077919, 0.009189128875732422, -0.05183889716863632, 0.019219182431697845, 0.02964935265481472, 0.003879101015627384, 0.014539847150444984, 0.008293951861560345, -0.016058936715126038, -0.0412595309317112, -0.021131606772542, -0.030680162832140923, 0.042615856975317, -0.022840581834316254, 0.036105480045080185, -0.0210231002420187, -0.03504754230380058, 0.05216441676020622, -0.015719853341579437, 0.07351303100585938, -0.02157919481396675, -0.0032857072073966265, -0.04508437588810921, -0.02973073348402977, -0.02147068828344345, 0.05609776824712753, 0.05400902405381203, -0.053710632026195526, 0.007880271412432194, -0.06608035415410995, 0.009358670562505722, -0.014214328490197659, 0.03295879438519478, -0.01711687259376049, -0.032172124832868576, -0.009521430358290672, -0.01635732874274254, -0.03312155604362488, 0.03306730091571808, 0.022081036120653152, 0.028157390654087067, 0.002431219909340143, 0.016004683449864388, 0.02125367522239685, -0.02907969430088997, -0.015502841211855412, -0.03667513653635979, -0.05145912244915962, -0.005388017278164625, 0.019137803465127945, 0.060872048139572144, 0.011169369332492352, -0.0037197323981672525, 0.004601346328854561, -0.014960309490561485, -0.035427313297986984, 0.00863981619477272, -0.019693898037075996, 0.03295879438519478, -0.03792295977473259, -0.004126631189137697, 0.011935696005821228, -0.0425887331366539, 0.013400531373918056, 0.0015758847584947944, -0.04554552957415581, 0.07215670496225357, 0.015597783960402012, -0.0003125914663542062, -0.03366408869624138, 0.02600082755088806, 0.014702606946229935, -0.027072327211499214, -0.03255189582705498, -0.026814624667167664, 0.01077603455632925, 0.03027326427400112, 0.03892664238810539, -0.0208196509629488, 0.0019887173548340797, -0.011447417549788952, -0.007744638714939356, -0.019246309995651245, 0.03379971906542778, 0.006673139054328203, 0.028835555538535118, 0.005625374615192413, 0.0207111444324255, -0.03287741541862488, 0.0206026379019022, -0.018296878784894943, 0.01638445444405079, 0.024454612284898758, -0.015502841211855412, 0.0003221281513106078, 0.01019959431141615, -0.0818137675523758, -0.035454440861940384, -0.01041660737246275, -0.0024820822291076183, 0.05042831227183342, -0.012661331333220005, 0.009514648467302322, 0.06944404542446136, -0.031304072588682175, 0.023057593032717705, -0.0002954254159703851, 0.005038762465119362, 0.010687872767448425, -0.057128578424453735, -0.0028092965949326754, -5.0676902901614085e-05, 0.011257531121373177, 0.005784743465483189, -0.01703549362719059, -0.015706289559602737, 0.026367036625742912, 0.012220524251461029, -0.00817866437137127, -0.00418766587972641, -0.017917105928063393, -0.02945946715772152, -0.0217419546097517, -0.008056594990193844, 0.003662088420242071, 0.01489249337464571, -0.04644070565700531, -0.032063618302345276, -0.035562947392463684, -0.004564047325402498, 0.01740170083940029, -0.027099454775452614, 0.0037400773726403713, -0.01257995143532753, -0.02149781584739685, -0.009487521834671497, -0.03700065612792969, -0.027967505156993866, -0.052761200815439224, 0.032307758927345276, 0.049126237630844116, 0.01740170083940029, 0.0019412459805607796, 0.026801062747836113, 0.028130264952778816, -0.004787841346114874, -0.014865366742014885, -0.0435652881860733, -0.031439706683158875, 0.04760714992880821, 0.023640815168619156, -0.035671453922986984, 0.0418563149869442, -0.00752084469422698, 0.0006090765236876905, 0.02529553696513176, -0.0004348730144556612, -0.022420119494199753, 0.0028872855473309755, 0.018079865723848343, 0.014431340619921684, 0.007866708561778069, -0.009779131971299648, -0.014702606946229935, -0.005621983669698238, 0.043104138225317, 0.002590588526800275, -0.01714399829506874, -0.03800433874130249, 0.022298049181699753, 0.031819477677345276, -0.002599065424874425, 0.018961479887366295, 0.0417478084564209, 0.022786328569054604, 0.012423974461853504, -0.03922503441572189, -0.023410240188241005, 0.002376966644078493, -0.0003895207482855767, -0.017984922975301743, -0.019178492948412895, -0.05487707257270813, 0.02929670736193657, -0.026421289891004562, 0.02568887174129486, 0.01462122704833746, 0.023396676406264305, 0.011284657754004002, -0.036024101078510284, -0.03436937928199768, 0.014797549694776535, -0.017889980226755142, 0.0020989191252738237, 0.010233502835035324, 0.013488692231476307, 0.019870219752192497, -0.0031551604624837637, -0.02978498674929142, 0.019598955288529396, -0.01281052827835083, -0.01714399829506874, 0.0015012867515906692, 0.023111846297979355, -0.019815966486930847, 0.022881271317601204, 0.01661503128707409, 0.009453613311052322, 0.04633219912648201, -0.0032653622329235077, -0.0012198484037071466, -0.006646012421697378, 0.009453613311052322, -0.05148625001311302, -0.026272093877196312, -0.003997779916971922, -0.02623140439391136, -0.0026753591373562813, 0.002721135038882494, -0.022026782855391502, -0.009385797195136547, -0.028835555538535118, -0.016262385994195938, -0.04717312380671501, -0.019219182431697845, 0.02539047971367836, -0.021769080311059952, -0.01232903078198433, -0.0053507182747125626, 0.0213486198335886, 0.013637888245284557, -0.0038587560411542654, 0.022026782855391502, 0.00623911339789629, -0.024441048502922058, 0.03510179743170738, 0.03838411346077919, 0.05126923695206642, 0.00549313286319375, -0.022976214066147804, 0.028754176571965218, 0.013536163605749607, 0.000823969894554466, 0.013888809829950333, -0.008185445331037045, -0.02929670736193657, 0.0005645719938911498, 0.06005825102329254, -0.01713043637573719, -0.02587875910103321, 0.019097112119197845, 0.00024858966935425997, 0.05392764136195183, 0.019002169370651245, 0.02136218175292015, -0.009697753004729748, 0.003395908745005727, -0.013400531373918056, -0.03784158080816269, 0.015597783960402012, -0.02897118777036667, -0.03274178132414818, 0.006466298829764128, -0.004848876502364874, -0.02107735350728035, -0.006544287782162428, 0.028645670041441917, -0.018296878784894943, 0.04345678165555, 0.03032751753926277, 0.0031551604624837637, 0.02556680329144001, 0.011779718101024628, 0.01734744757413864, 0.03005625121295452, 0.00827360711991787, -0.001411429955624044, -0.01756446063518524, 0.010742126032710075, 0.06689415127038956, -0.012159490026533604, -0.0038858826737850904, -0.02541760541498661, 0.006540896836668253, 0.010023271664977074, -0.0038689286448061466, 0.012010294012725353, -0.007859926670789719, 0.022013220936059952, -0.028130264952778816, 0.02522771991789341, -0.005652501247823238, -0.002621105872094631, 0.012661331333220005, -0.008300733752548695, -0.022827018052339554, 0.007581879384815693, 0.03423374518752098, -0.016018245369195938, -0.06277091056108475, -0.022772764787077904, -0.013264898210763931, -0.053574997931718826, -0.026339910924434662, -0.04725450277328491, 0.020249992609024048, -0.013902372680604458, -0.012932597659528255, 0.015448587946593761, -0.019829530268907547, -0.04616944119334221, -0.009969018399715424, -0.02525484748184681, 0.03233488276600838, -0.015475714579224586, -0.005984801799058914, -0.024305416271090508, 0.013678578659892082, -0.026584049686789513, -0.020236428827047348, -0.06293366849422455, 0.026150023564696312, -0.052869707345962524, -0.044351961463689804, 0.024237599223852158, -0.020317809656262398, -0.0055406042374670506, 0.03941492363810539, -0.03301304951310158, -0.02084677666425705, 0.009297635406255722, 0.00527611980214715, 0.0206297654658556, -0.008090502582490444, 0.031792353838682175, -0.0040384698659181595, -0.031846605241298676, -0.022040346637368202, 0.0010350486263632774, 0.008029468357563019, -0.04646783322095871, 0.009935109876096249, 0.003851974382996559, -0.05604351684451103, 0.014702606946229935, -0.03927928954362869, -0.010599711909890175, 0.035807088017463684, 0.0027024855371564627, -0.0021277412306517363, -0.01713043637573719, 0.012105236761271954, -0.01290547102689743, -0.0002562190347816795, -0.028076011687517166, -0.012885126285254955, 0.0014962004497647285, -0.0016301380237564445, 0.009602809324860573, 0.028157390654087067, -0.04370092228055, 0.02997487224638462, -0.02594657428562641, 0.009175566025078297, -0.002093832939863205, 0.04660346731543541, -0.0105522396042943, 0.00362818012945354, 0.000701900280546397, -0.0412595309317112, -0.009528211317956448, -0.02118586003780365, 0.004099504556506872, -0.0033874318469315767, 0.027601296082139015, 0.019490448758006096, 0.03431512415409088, 0.0030449586920440197, 0.0215249415487051, 0.013515818864107132, 0.019354814663529396, -0.009304417297244072, -0.03439650312066078, -0.006927450653165579, 0.009568901732563972, -0.0026617958210408688, 0.009894420392811298, -0.004977727774530649, -0.005520259030163288, -0.044596098363399506, -0.02544473297894001, -0.00376042234711349, -0.017998486757278442, 0.015557094477117062, 0.011379600502550602, -0.00541514391079545, 0.015407897531986237, -0.09982581436634064, -0.019598955288529396, 0.02528197318315506, -0.014173638075590134, -0.03295879438519478, 0.028455782681703568, 0.002846595598384738, 0.028564289212226868, 0.026936694979667664, -0.010694654658436775, 0.0021226550452411175, -0.05086233839392662, -0.018269753083586693, 0.00751406280323863, -0.022732075303792953, 0.040418606251478195, 0.03862825036048889, 0.03515604883432388, 0.010240284726023674, 0.018988607451319695, -0.028510035946965218, 0.008992461487650871, -0.01751020736992359, 0.05870192125439644, 0.02045344188809395, -0.007541189435869455, -0.014105821959674358, 0.022867707535624504, 0.011325347237288952, 0.009250164031982422, 0.009426486678421497, 0.007303832098841667, -0.013678578659892082, 0.023084720596671104, -0.012342594563961029, 0.03507466986775398, 0.010789597406983376, 0.0216605756431818, 0.008924645371735096, 0.0001322420866927132, -0.02596013806760311, -0.03930641710758209, 0.053168099373579025, -0.02598726376891136, 0.035590074956417084, -0.03461351618170738, 0.007446246687322855, 0.022108163684606552, -0.03377259150147438, -0.006011928431689739, 0.022284485399723053, -0.005194740369915962, -0.009100968018174171, -0.010884540155529976, 0.006211987230926752, -0.007798891980201006, -0.05202878266572952, -0.005764398258179426, -0.010782815515995026, 0.01618100516498089, -0.0052829016931355, 0.036132607609033585, 0.003851974382996559, -0.03865537792444229, -0.009880857542157173, 0.0022345520555973053, -0.005652501247823238, 0.03803146630525589, -0.010070743039250374, -5.753802179242484e-05, 0.019422631710767746, 0.015841923654079437, 0.044324833899736404, -0.02577025257050991, 0.003536628093570471, 0.009392579086124897, 0.004923474509268999, -0.01612675189971924, 0.00652733352035284, -0.010179249569773674, 0.019300561398267746, 0.0033535235561430454, -0.020032979547977448, 0.018242625519633293, 0.00868050567805767, 0.011284657754004002, -0.004835313186049461, 0.008354987017810345, 0.02559392899274826, -0.005527040921151638, 0.0434296578168869, 0.0101928124204278, -0.007887053303420544, -0.01733388565480709, 0.014444904401898384, 0.01745595410466194, 0.01624882221221924, 0.0439179353415966, 0.022121727466583252, -0.011440635658800602, 0.0409882627427578, 0.01708974689245224, 0.01669641025364399, 0.03233488276600838, -0.00741912005469203, -0.032117873430252075, -0.0037366864271461964, -0.006262849550694227, 0.0016267471946775913, -0.015828359872102737, -0.0063611832447350025, -0.005238820798695087, 0.012206961400806904, 0.024359669536352158, 0.007609006017446518, 0.05881042778491974, -0.006761300377547741, -0.014906056225299835, 0.018690213561058044, -0.02168770134449005, 0.028808429837226868, -0.019354814663529396, -0.015150194987654686, 0.020114360377192497, -0.02503783442080021, 0.0216334480792284, 0.016072498634457588, -0.0019378551514819264, 0.01721181534230709, -0.008599125780165195, 0.007819237187504768, 0.040445733815431595, -0.003750249743461609, 0.0429413765668869, 0.002137913601472974, -0.027343593537807465, 0.01749664545059204, 0.0012113713892176747, -0.0002348144626012072, 0.018269753083586693, -0.02981211245059967, -0.004123240243643522, -0.002187080681324005, 0.03398960456252098, 0.01289868913590908, 0.0023600126150995493, 0.010477641597390175, 0.02932383306324482, -0.03412523865699768, 0.05411753058433533, 0.012559606693685055, -0.03529168292880058, -0.018975043669342995, 0.048719339072704315, -0.015991119667887688, 0.0831700935959816, -0.026651864871382713, -0.0017182993469759822, 0.014539847150444984, 0.019558263942599297, -0.0059203761629760265, 0.01478398684412241, 0.010687872767448425, -0.01281052827835083, 0.0104098254814744, -0.036024101078510284, -0.01738813892006874, -0.02513277716934681, -0.008822920732200146, 0.005059107206761837, 0.019829530268907547, 0.019721023738384247, 0.032633278518915176, 0.011698338203132153, 0.028672795742750168, 0.006808771751821041, 0.009412923827767372, -0.024169784039258957, 0.0209281574934721, 0.008972116746008396, -0.03295879438519478, 0.012220524251461029, 0.008924645371735096, 0.04671197384595871, 0.026706118136644363, -0.0203991886228323, -0.027302904054522514, 0.012512135319411755, -0.013868464156985283, 0.004499621689319611, -0.002022625645622611, 0.0215249415487051, -0.010999828577041626, -0.0013080098433420062, -0.035535819828510284, 0.008605907671153545, 0.047959793359041214, 0.0108302878215909, -0.0213214922696352, 0.0053778444416821, -0.00018596542940940708, -0.009229819290339947, -0.002712658140808344, -0.006025491748005152, -0.006337447557598352, 0.04733588546514511, -0.030788669362664223, 0.001253756694495678, -0.02115873247385025, 0.016316639259457588, 0.022081036120653152, 0.00725636025890708, -0.013325932435691357, -0.011135461740195751, -0.040581364184617996, 0.009711315855383873, 0.03477627784013748, 0.03483052924275398, -0.01770009472966194, -0.031412579119205475, -0.036132607609033585, -0.026312783360481262, -0.0021226550452411175, 0.012464663945138454, -0.013366622850298882, 0.030653037130832672, 0.02494289167225361, -0.0075886608101427555, 0.0014962004497647285, 0.0038350203540176153, 0.002165040234103799, -0.009589246474206448, 0.02916107513010502, 0.007039347663521767, 0.015963992103934288, 0.020005853846669197, -0.0008468579617328942, -0.018134118989109993, 0.003953699022531509, -0.02501070685684681, 0.009860511869192123, 0.012010294012725353, 0.0212401133030653, -0.005693191196769476, -0.00863981619477272, -0.003662088420242071, 0.05159475654363632, 0.03789583221077919, 0.027994630858302116, -0.011691556312143803, -0.014132948592305183, 0.014065132476389408, 0.03694640472531319, 0.0008400763035751879, 0.0209417212754488, 0.003066999139264226, 0.026624739170074463, 0.036295365542173386, -0.003351828083395958, 0.01633020117878914, -0.015570657327771187, 0.019978726282715797, 0.004001170862466097, -0.02118586003780365, -0.007337740156799555, -0.019571827724575996, -0.01698124036192894, -0.0216334480792284, 0.0034993288572877645, 0.018730904906988144, -0.027831872925162315, 0.027858998626470566, 0.013325932435691357, 0.006506988778710365, 0.00428939051926136, 0.010443734005093575, -0.05015704780817032, -0.02581094205379486, -0.012512135319411755, -0.03789583221077919, -0.018758030608296394, 0.008022686466574669, -0.012186616659164429, 0.007222452200949192, 0.02469875104725361, -0.02511921338737011, -0.03816710039973259, -0.040499985218048096, 0.019666770473122597, -0.02156563103199005, -0.01757802441716194, 0.015109505504369736, -0.00832786038517952, 0.012179834768176079, -0.035725705325603485, 0.018988607451319695, -0.017795037478208542, 0.014811113476753235, -0.004984509199857712, -0.015000998973846436, -0.0023447538260370493, -0.003855365328490734, 0.009480739943683147, 0.04920761659741402, -0.0032992702908813953, 0.019558263942599297, -0.010586148127913475, -0.013102138414978981, -0.03738042712211609, 0.0412595309317112, -0.024251163005828857, 0.008307515643537045, -0.002305759349837899, 0.05875617265701294, 0.003004268743097782, -0.004770887549966574, 0.03000199794769287, 0.011257531121373177, 0.043890807777643204, 0.019558263942599297, 0.027167269960045815, 0.0013944758102297783, 0.00842280313372612, 0.03561720252037048, 0.006598540581762791, 0.0007086819387041032, 0.013522600755095482, 0.00378415803425014, -0.031168442219495773, 0.00043911152170039713, 0.0026278875302523375, -0.0108777591958642, 0.0005387169658206403, 0.017672967165708542, -0.011325347237288952, 0.011562705039978027, -0.0005823737592436373, 0.0037366864271461964, -0.005025199148803949, 0.01755089871585369, 0.023749321699142456, 0.009487521834671497, 0.002171821892261505, 0.007527626119554043, -0.009602809324860573, -0.012410410679876804, 0.01483824010938406, 0.0014733123825863004, 0.027153708040714264, 0.030436024069786072, 0.05897318571805954, 0.003153464989736676, 0.008721196092665195, 0.006571414414793253, 0.005031980574131012, -0.02492932789027691, -0.018459638580679893, -0.011739027686417103, -0.017903544008731842, 0.03811284527182579, -0.009460395202040672, 0.002471909625455737, -0.01257995143532753, -0.00731739541515708, -0.0011121898423880339, -0.027601296082139015, -0.022989777848124504, 0.027831872925162315, -0.001399561995640397, 0.0013173345942050219, 0.014648353680968285, 0.011047299951314926, -0.011325347237288952, -0.02056194841861725, 0.0031772006768733263, -0.012403628788888454, -0.0013775216648355126, -0.006913887336850166, 0.013353059068322182, 0.014241455122828484, -0.0011918741511180997, -0.018608834594488144, 0.02549898624420166, 0.04728163033723831, 0.01675066351890564, 0.020209303125739098, -0.028157390654087067, 0.012200179509818554, 0.0010952356969937682, 0.013088575564324856, -0.022691385820508003, -0.00731061352416873, -0.0023176271934062243, -0.008246480487287045, -0.011847534216940403, 0.013095356523990631, 6.076990030123852e-05, -0.011976385489106178, -0.02986636571586132, -0.01638445444405079, 0.0025397262070327997, 0.004052033182233572, 0.03971331566572189, -0.012410410679876804, 0.0040113432332873344, 0.014377088285982609, 0.04682048037648201, 0.026204276829957962, 0.02180977165699005, 0.024115530773997307, -0.010884540155529976, -0.006164515390992165, 0.0017750955885276198, 0.010952357202768326, -0.02148425206542015, -0.023776447400450706, 0.02559392899274826, -0.022650694474577904, 0.0012757970253005624, -0.03447788581252098, -0.027709802612662315, 0.01706261932849884, 0.02087390422821045, -0.005093015730381012, 0.012213743291795254, 0.007609006017446518, 0.014756860211491585, 0.001817480893805623, 0.008341423235833645, -0.02491576410830021, -0.031249821186065674, -0.004784450866281986, -0.027913251891732216, 0.030625909566879272, -0.031439706683158875, 0.014499157667160034, 0.0014860279625281692, 0.009006025269627571, -0.0212401133030653, 0.022691385820508003, 0.010592930018901825, -0.02590588480234146, 0.002802514936774969, 0.017740784212946892, -0.01639801822602749, -0.0215249415487051, -0.05056394636631012, -0.0060865264385938644, 0.006306929979473352, -0.02572956122457981, 0.010945575311779976, 0.006818944122642279, -0.04994003474712372, 0.04597955569624901, 0.01746951788663864, -0.015272265300154686, -2.2305255697574466e-05, -0.03892664238810539, -0.015692727640271187, 0.013020758517086506, -0.023613689467310905, 0.03469489514827728, 0.039984580129384995, 0.026244966313242912, 0.04706461727619171, 0.007439464796334505, -0.007663259282708168, 0.02148425206542015, -0.03664800897240639, -0.00827360711991787, 0.0050964062102139, -0.009887638501822948, -0.0040655964985489845, 0.0017361012287437916, 0.0029907056596130133, 0.020046543329954147, 0.03412523865699768, -0.0055100866593420506, -0.024590246379375458, -0.006266240030527115, 0.031792353838682175, 0.02465806156396866, 0.016045372933149338, 0.0022175980266183615, 0.023044031113386154, 0.010179249569773674, 0.0037231233436614275, -0.014404214918613434, 0.010389480739831924, -0.004777668975293636, -0.06570057570934296, -0.014499157667160034, -0.02986636571586132, -0.0059237671084702015, 0.02891693450510502, -0.014010879211127758, 0.005788134410977364, -0.0034128630068153143, 0.006937623023986816, 0.036105480045080185, -0.023776447400450706, -0.015394334681332111, 0.022365866228938103, 0.012620641849935055, -0.002104005543515086, -0.02558036521077156, -0.004794623237103224, -0.012573170475661755, -0.018269753083586693, -0.024183345958590508, -0.01026062946766615, 0.01239684782922268, -0.01502812560647726, -0.01467548031359911, 0.010213158093392849, -0.03773307427763939, -0.006778254173696041, -0.009745224379003048, -0.014553410932421684, -0.024224037304520607, -0.013034322299063206, -0.039740439504384995, 0.027289340272545815, 0.010945575311779976, 0.018120555207133293, -0.004760715179145336, -0.009568901732563972, 0.009277290664613247, -0.015462150797247887, -0.012267996557056904, -0.0030178320594131947, 0.019151365384459496, 0.019368378445506096, 0.002885590074583888, -0.02913394756615162, 0.00518117705360055, -0.01493318285793066, 0.011250749230384827, -0.0109862657263875, -0.00424191914498806, -0.006754518486559391, 0.001770009403117001, -0.016153879463672638, 0.018324004486203194, 0.030408896505832672, 0.032280631363391876, 0.02520059421658516, 0.011650866828858852, -0.03762456774711609, -0.005689800251275301, -0.031358327716588974, -0.004601346328854561, -0.018635960295796394, 0.00032742629991844296, 0.011454198509454727, 0.02964935265481472, -0.021009536460042, -0.0032941841054707766, -0.004597955383360386, 0.03233488276600838, 0.01035557221621275, -0.030951429158449173, -0.009067059494554996, 0.039659060537815094, 0.00022485392400994897, -0.0012028943747282028, -0.014227891340851784, 0.03369121253490448, 0.009256945922970772, -0.05582650378346443, -0.0017013452015817165, -0.030300389975309372, 0.05514834076166153, -0.0206975806504488, -0.013427658006548882, 0.022243795916438103, 0.016140315681695938, -0.012295123189687729, 0.0103487903252244, 0.0037705947179347277, 0.003556972835212946, 0.01676422730088234, 0.01623525843024254, 0.020412752404808998, 0.010240284726023674, -0.035318806767463684, 0.019653208553791046, -0.048692211508750916, 0.01237650215625763, -0.00416393019258976, 0.0005264251958578825, -0.022854143753647804, 0.018730904906988144, -0.012301904149353504, 0.030815795063972473, 0.017984922975301743, 0.0422089584171772, 0.005154050420969725, 0.0021226550452411175, 0.014553410932421684, -0.028754176571965218, 0.0203991886228323, 0.0035468004643917084, -0.02509208768606186, -0.03344707563519478, -0.0008400763035751879, 0.0019429413368925452, 0.013617543503642082, 0.01462122704833746, -0.0213214922696352, -0.000847705639898777, -0.009928328916430473, 0.014851802960038185, -0.02948659285902977, 0.004401287529617548, 0.01055902149528265, 0.007405556738376617, -0.02479369565844536, -0.02534979023039341, 0.04663059115409851, 0.0063917008228600025, 0.014241455122828484, 0.018581707030534744, -0.005130314733833075, -0.013156391680240631, 0.01736101135611534, 0.013407312333583832, 0.012620641849935055, 0.013542945496737957, -0.027601296082139015, -0.008551654405891895, -0.004404678475111723, -0.05173039063811302, -0.03225350379943848, 0.031114188954234123, 0.00519813084974885, -0.03000199794769287, 0.0015402812277898192, 0.004801404662430286, 0.01478398684412241, -0.0207925233989954, 0.03247051686048508, -0.019042860716581345, 0.0055134776048362255, 0.003034786321222782, -0.003402690403163433, 0.01752377115190029, 0.03276890888810158, 0.015611347742378712, -0.017713656648993492, -0.019056422635912895, -0.00040605099638924, -0.013427658006548882, -0.02086034044623375, 0.02553967572748661, 0.01637089066207409, -0.017605150118470192, 0.022460808977484703, -0.019734587520360947, -0.028808429837226868, 0.04695611074566841, 0.003560363780707121, -0.03678364306688309, -0.02948659285902977, 0.031114188954234123, 0.0009350193431600928, 0.0038418020121753216, 0.03727192059159279, 0.004821749869734049, 0.00821257196366787, 0.008070157840847969, -0.004716634284704924, 0.018351132050156593, -0.011087990365922451, 0.023640815168619156, -0.022989777848124504, 0.005611811298877001, -0.01727963238954544, 0.0030924302991479635, -0.011413509026169777, 0.022528626024723053, 0.009840167127549648, 0.031493961811065674, -0.009487521834671497, 0.023640815168619156, -0.008083720691502094, 0.002819468965753913, 0.026461979374289513, 0.0069918762892484665, -0.006846070755273104, -0.004394506104290485, 0.03719054162502289, -0.03236201032996178, 0.009982582181692123, -0.0038078937213867903, 0.02997487224638462, -0.006164515390992165, -0.01730675809085369, -0.019354814663529396, -0.011745809577405453, -0.022311612963676453, 0.010179249569773674, -0.0063306656666100025, -0.0030534358229488134, -0.01652008853852749, 0.0014682261971756816, 0.023437365889549255, 0.014377088285982609, -0.03333856910467148, 0.01508237887173891, 0.036241110414266586, 0.009982582181692123, 0.006978312972933054, -0.016140315681695938, -0.019612517207860947, -0.0019463321659713984, 0.004387724678963423, -0.0038350203540176153, -0.039577681571245193, -0.03005625121295452, 0.013678578659892082, -0.00219894852489233, 0.035752832889556885, -0.031955111771821976, -0.026190713047981262, -0.036322493106126785, 0.015231574885547161, 0.007866708561778069, 0.0017098223324865103, 0.013047885149717331, 0.018052740022540092, 0.013509036973118782, 0.013034322299063206, 0.0073716482147574425, 0.028889808803796768, 0.005374453961849213, -0.001218153047375381, 0.023993460461497307, 0.023261042311787605]" -How Octave Achieves a High Compression Ratio and Speedy Queries on Historical Data While Revolutionizing the Battery Market,"data since our cloud infrastructure was entirely built in AWS. However, we quickly realized we would need a more widely used, mature, and scalable database solution if we ever wanted to scale our operations and deploy several dozen or hundred second-life battery systems in the field. So, we went looking for alternatives.After some research, Timescale quickly became our preferred option, given itsimpressive compression ratios, lightning-fast queries,unmissable continuous aggregates, friendlycommunityandextensive documentation, and most importantly, its plain PostgreSQL syntax.The cherry on the cake is Timescale's ease of use and user-friendly interface.We went immediately for Timescale because we were looking for a managed service, and Timescale seemed the recommended option and was nicely compatible with our preferred AWS region.✨Editor’s Note:Timescale’s user interface now offers an even friendlier and user-centered experience.The Timescale Team shared their redesign journey and lessons in this blog post.We have found TimescaleDB’s compression ratio to be absolutely phenomenal! We’re currently at a compression ratio of over26, drastically reducing the disk space required to store all our data.A narrow table modelOctave’s compression ratio with TimescaleThe power of continuous aggregates is hard to overstate:they are basically materialized views that are continuously and incrementally refreshedand allow for lightning-fast queries on large historical datasets.I have found thedocumentationto be very clear and abundant. Every feature is very well explained. So it’s very easy toget started with TimescaleDB. And if we have more precise questions specifically related to our use case, we can always rely on our customer success manager or the very reactive Support Team. 🙂✨Editor’s Note:Read how our Support Team raises the bar on hosted database support.Current Deployment & Future PlansMost of our backend software is currently written in Python. We leverage AWS IoT to manage our battery fleet and circulate the data between our edge devices and our battery cloud viaMQTT.We rely on some ETL (extract, transform, load) pipelines interacting with Timescale that extract battery measurements and insert the processed data back into the database. We also use some dashboarding tools, such asGrafanaandStreamlit, as well as API endpoints connected to our Timescale database.It’s no secret that time-series data can grow very fast. We currently store close to one million data points per battery system daily. As we have already sold our first 28 battery cabinets, the size of our database is expected to increase quickly. This is",https://www.timescale.com/blog/high-compression-ratio-and-speedy-queries-on-historical-data-while-revolutionizing-the-battery-market/,502,"[0.01524400059133768, -0.012127824127674103, 0.05912313982844353, -0.01084345392882824, 0.042896561324596405, 0.03259352594614029, -0.0005864764098078012, -0.0013168303994461894, -0.011222448199987411, 0.009334494359791279, 0.026922645047307014, -0.035962365567684174, 0.01242961548268795, -0.031021401286125183, 0.05839322507381439, 0.03579392284154892, 0.00043338723480701447, -0.02104121260344982, -0.04323344677686691, 0.00981876440346241, -0.010899600572884083, 0.017798705026507378, 0.046658433973789215, 0.010899600572884083, -0.013538525439798832, -0.006871029734611511, -0.0372818298637867, 0.036776501685380936, 0.011671626940369606, -0.07467595487833023, 0.00698332441970706, -0.0506448931992054, -0.06299730390310287, 0.002426617546007037, 0.0323127880692482, -0.0020599053241312504, 0.0375906378030777, 0.00314600532874465, 0.01594584248960018, 0.011222448199987411, -0.04034185782074928, 0.026669982820749283, -0.0055375308729708195, 0.030684517696499825, -0.01761622540652752, -0.014212293550372124, -0.01814962550997734, -0.018907614052295685, 0.013313936069607735, 0.07821323722600937, -0.029758086428046227, 0.029533496126532555, -0.019876156002283096, -0.03234086185693741, 0.007474613841623068, -0.006776281166821718, -0.0009325721184723079, 0.04831477999687195, 0.017658336088061333, -0.03568163141608238, 0.020437629893422127, -0.05042030289769173, 0.01930064521729946, 0.0491008423268795, -0.00294071645475924, 0.03587814420461655, 0.0029143975116312504, 0.03739412501454353, -0.03809596598148346, 0.022585265338420868, 0.017602188512682915, 0.020241113379597664, -0.006327102426439524, -0.008892334066331387, 0.035035934299230576, -0.06075141206383705, -0.0022862490732222795, 0.031807463616132736, -0.006485017016530037, -0.009853856638073921, 0.009748580865561962, -0.013180586509406567, -0.028284218162298203, 0.015328221954405308, 0.02339940145611763, -0.027203382924199104, -0.01031707227230072, -0.00388469360768795, -0.02373628504574299, 0.019848082214593887, -0.01638098433613777, 0.0357377752661705, -0.012591038830578327, 0.0205078125, 0.014850969426333904, 0.017658336088061333, 0.00431983545422554, -0.01845843531191349, -0.02598217874765396, 0.018444398418068886, 0.011271577328443527, -0.013349028304219246, -0.011433000676333904, -0.009194125421345234, 0.03871358558535576, -0.009952114894986153, 0.03172324225306511, -0.005148008465766907, 0.00250557460822165, 0.02078855037689209, -0.07299153506755829, 0.01168566383421421, -0.0593477301299572, -0.004158411640673876, -0.02675420418381691, -0.002324850531294942, 0.007081582210958004, 0.002358187921345234, 0.007516724057495594, -0.025280335918068886, -0.01342623122036457, 0.011440019123256207, -0.02383454330265522, 0.01746181957423687, 0.03517630323767662, -0.027736783027648926, 0.00918008852750063, -0.06114444509148598, -0.03787137567996979, -0.006453434005379677, 0.02662787213921547, -0.030965253710746765, 0.0866914838552475, -0.02902817167341709, -0.017110899090766907, -0.028508808463811874, -0.050757188349962234, -0.02414335310459137, -0.006656968034803867, -0.0012852475047111511, 0.02196764387190342, -0.03321114555001259, 0.03351995721459389, 0.0025617219507694244, -0.017517967149615288, 0.02165883406996727, -0.029000097885727882, 0.03961194306612015, -0.03832055255770683, -0.02140616998076439, 0.020577996969223022, -0.024410052224993706, -0.04197013005614281, -0.019974414259195328, 0.040313784033060074, -0.01786888763308525, 0.009173070080578327, 0.04250353202223778, -0.004726903513073921, -0.05025186389684677, -0.003733797697350383, 0.0366642065346241, -0.00834489706903696, -0.013019162230193615, -0.015987953171133995, -0.008899352513253689, -0.0357377752661705, -0.04912891611456871, -0.10398486256599426, -0.021293876692652702, -0.02504171058535576, -0.05670880526304245, -0.020409556105732918, 0.004281233996152878, 0.043429963290691376, 0.008611597120761871, -0.022585265338420868, -0.05639999359846115, 0.013517470099031925, -0.025996215641498566, -0.05586659535765648, -0.013271825388073921, -0.05112214758992195, 0.03781522810459137, -0.03761871159076691, 0.02196764387190342, -0.04300885647535324, 0.0447494238615036, 0.006007764488458633, 0.028607066720724106, -0.05244160816073418, 0.058842405676841736, 0.01005037222057581, 0.03927505761384964, 0.01172777358442545, -0.05755101516842842, 0.027203382924199104, 0.023932799696922302, -0.04946580156683922, 0.01631079986691475, 0.05760716274380684, 0.018851466476917267, 0.0668153241276741, 0.004102264530956745, 0.003617993788793683, 0.002324850531294942, 0.005467346403747797, 0.0016344137256965041, -0.0419420562684536, -0.04943772777915001, -0.0017502176342532039, 0.021743053570389748, -0.0018914632964879274, -0.0011685664067044854, -0.035316672176122665, -8.126010652631521e-05, -0.04048222675919533, -0.014570232480764389, 0.027077050879597664, -0.018318066373467445, -0.005411199294030666, 0.06159362196922302, -0.007243006024509668, -0.017195120453834534, -0.0029898453503847122, 0.04152095317840576, 0.0036004476714879274, -0.004463713150471449, 0.04887625202536583, -0.0007057895418256521, -0.017602188512682915, -0.054490987211465836, -0.018556693568825722, -0.04180168733000755, -0.004491786472499371, -0.011068043299019337, 0.03248123079538345, -0.005463837180286646, -0.0009150260593742132, -0.051655545830726624, -0.013061272911727428, 0.010899600572884083, -0.009053757414221764, 0.022458933293819427, 0.005207665264606476, 0.01342623122036457, -0.03803981840610504, -0.05631577596068382, 0.03548511490225792, 0.053985659033060074, 0.017377600073814392, -0.02168690785765648, 0.026024289429187775, -0.053115375339984894, -0.015931805595755577, -0.05794404819607735, -0.022234342992305756, 0.03026341274380684, 0.043514180928468704, -0.0006356053636409342, 0.0069517414085567, -0.026024289429187775, 0.004088227637112141, -0.005762119777500629, -0.039668090641498566, 0.0205078125, 0.0369730181992054, -0.058842405676841736, -0.001458076061680913, -0.00420403154566884, 0.04152095317840576, 0.038180187344551086, 0.025645293295383453, -0.040566448122262955, -0.00787466298788786, -0.004368964117020369, 0.004853235092014074, -0.00878003891557455, 0.0007505319081246853, 0.005355051718652248, -0.006084966938942671, -0.044945940375328064, 0.014598306268453598, -0.0109557481482625, 0.025125931948423386, 0.00215991772711277, 0.017700446769595146, 0.03815211355686188, 0.017012640833854675, -0.04764101281762123, 0.013882427476346493, 0.0014729901449754834, -0.012534892186522484, -0.026810351759195328, 0.016703831031918526, 0.010731158778071404, -0.00921518076211214, -0.005488401744514704, -0.0497184619307518, -0.02752622961997986, 0.0025231207255274057, 0.004937455989420414, 0.0025617219507694244, -0.05207664892077446, -0.007600944954901934, 0.0189497247338295, -0.03197590634226799, -0.0018668988486751914, -0.004677774850279093, 0.008618615567684174, 0.01162249781191349, -0.014240367338061333, 0.009888948872685432, -0.010625883005559444, -0.032958485186100006, -0.0020546414889395237, 0.038825880736112595, -0.027792928740382195, -0.03312692791223526, -0.07119482010602951, -0.007930810563266277, -0.06973498314619064, -0.01892165094614029, 0.02504171058535576, 0.023230958729982376, -0.010267943143844604, 0.00967839639633894, 0.009173070080578327, 0.008022050373256207, -0.009755599312484264, -0.0070289443247020245, -0.019749823957681656, 0.03526052460074425, 0.019272571429610252, -0.009166051633656025, -0.04334574192762375, 0.012373467907309532, 0.022037828341126442, -0.033548031002283096, 0.02662787213921547, -0.023848580196499825, -0.026333099231123924, -0.05502438545227051, -0.004937455989420414, 0.030459927394986153, 0.013552562333643436, -0.01084345392882824, 0.009888948872685432, 0.017728520557284355, 0.00675171660259366, -0.024031057953834534, -0.0003195572644472122, 0.020704329013824463, -0.022458933293819427, 0.02554703690111637, -0.027020903304219246, 0.017110899090766907, -0.035625483840703964, -0.03694494441151619, 0.007348282262682915, -0.020311297848820686, 0.017237231135368347, 0.039724238216876984, -0.002900360617786646, -0.005369088612496853, 0.01205763965845108, -0.04365454986691475, 0.02408720552921295, -0.016296762973070145, -0.005751592572778463, 0.046658433973789215, -0.0036285214591771364, -0.01431055087596178, -0.018879540264606476, -0.04197013005614281, -0.023230958729982376, 0.06047067791223526, 0.04385106638073921, -0.009699451737105846, 0.030937179923057556, 0.03276196867227554, -0.003930313047021627, 0.022009754553437233, 0.015594922006130219, 0.03290233761072159, 0.03587814420461655, -0.009706470184028149, 0.021321948617696762, -0.055080533027648926, -0.013419212773442268, 0.03197590634226799, 0.015005374327301979, -0.007643055636435747, -0.0400891937315464, -0.017826778814196587, -0.004225086886435747, 0.0048567443154752254, 0.02488730475306511, 0.06412025541067123, 0.00787466298788786, 0.038208261132240295, 0.008429118432104588, -0.04671458154916763, 0.0030775757040828466, 0.031863611191511154, -0.007113165222108364, 0.030656443908810616, 0.0018230336718261242, 0.0008847591234371066, -0.04497401416301727, -0.02908431738615036, -0.0015668615233153105, 0.03775908052921295, -0.006786808837205172, 0.04415987804532051, -0.03961194306612015, -0.024845194071531296, 0.07484439760446548, 0.007958884350955486, 0.05086948350071907, -0.02455042116343975, 0.003979442175477743, -0.02834036573767662, -0.017672372981905937, -0.04707953706383705, 0.05241353437304497, 0.03259352594614029, -0.04772523418068886, -0.03113369643688202, -0.036832649260759354, 0.007839571684598923, -0.004228596109896898, 0.03983653336763382, -0.029842307791113853, -0.021434243768453598, 0.022795816883444786, -0.0015142234042286873, -0.03147057816386223, 0.03652384132146835, 0.006513090338557959, 0.0022458932362496853, 0.011769884265959263, 0.026094472035765648, 0.023722248151898384, -0.026894573122262955, -0.028508808463811874, -0.011313687078654766, -0.017939072102308273, -0.002098506549373269, 0.029505422338843346, 0.051374807953834534, 0.006372722331434488, -0.01566510647535324, 0.004916400648653507, -0.023483620956540108, -0.021279839798808098, 0.014780784957110882, -0.03554126247763634, 0.035092081874608994, -0.03166709467768669, -0.029814234003424644, 0.036832649260759354, -0.044356390833854675, -0.020521849393844604, -0.01758815161883831, -0.048146337270736694, 0.07321611791849136, 0.001609849277883768, 0.0026266423519700766, -0.027764854952692986, 0.007049999199807644, 0.039948828518390656, -0.03290233761072159, -0.017503930255770683, -0.012183970771729946, 0.023287106305360794, 0.028045592829585075, 0.01817769929766655, 0.0023195866961032152, -0.008618615567684174, 0.01329989917576313, -0.02078855037689209, -0.017447782680392265, 0.06024608761072159, -0.005779665894806385, 0.03130213916301727, 0.014486012049019337, 0.0013177077053114772, -0.022739669308066368, 0.015763362869620323, -0.03225664421916008, 0.002263439353555441, 0.0553051233291626, -0.016451168805360794, 0.0044531854800879955, -0.00208622426725924, -0.11077868938446045, -0.047837525606155396, -0.007579890079796314, -0.008457192219793797, 0.030123043805360794, -0.010717121884226799, 0.020451664924621582, 0.03992075473070145, -0.021897459402680397, 0.01746181957423687, -0.012478744611144066, 0.0024546911008656025, -0.004600571934133768, -0.06479401886463165, -0.0038460923824459314, -0.007923792116343975, 0.03599043935537338, 0.027554303407669067, -0.0320039801299572, 0.011840068735182285, 0.024466199800372124, 0.022108012810349464, -0.018977798521518707, -0.0018265428952872753, -0.011840068735182285, -0.04503016173839569, -0.024901341646909714, 0.00020068284356966615, -0.021279839798808098, -0.005056769121438265, -0.05179591476917267, -0.036495767533779144, -0.03287426382303238, -0.020465701818466187, 0.0025634765625, -0.021139470860362053, 0.0031723242718726397, 0.0022441386245191097, -0.052217017859220505, -0.00675171660259366, -0.017939072102308273, -0.03846092149615288, -0.04533896967768669, 0.024901341646909714, 0.023385364562273026, 0.04185783490538597, -0.0021651815623044968, 0.029280833899974823, 0.008351915515959263, -0.005751592572778463, -0.01920238696038723, -0.03669228032231331, -0.014071925543248653, 0.033014632761478424, 0.01814962550997734, -0.017812741920351982, 0.04250353202223778, 0.0002645065833348781, 0.0233011431992054, 0.01581951044499874, 0.01914624124765396, 0.00686752051115036, 0.015861621126532555, 0.012920904904603958, 0.016114285215735435, 0.0024546911008656025, -0.004990094341337681, -0.01497730053961277, -0.011313687078654766, 0.025589147582650185, -0.0030775757040828466, -0.02939312905073166, -0.04716375842690468, 0.02355380542576313, 0.014177201315760612, -0.0027529739309102297, 0.013075309805572033, 0.001663364702835679, 0.0055375308729708195, 0.012815628200769424, -0.03745026886463165, -0.015398405492305756, 0.010990840382874012, 0.010162667371332645, -0.040004976093769073, -0.011018914170563221, -0.03281811624765396, 0.035934291779994965, -0.029870381578803062, 0.012815628200769424, 0.00783255323767662, 0.009867893531918526, 0.03228471428155899, -0.02224837988615036, -0.017040714621543884, 0.015454553067684174, -0.011861124075949192, -0.0023880163207650185, 0.013875409960746765, 0.02053588628768921, 0.00837297085672617, -0.00036210642429068685, -0.023343253880739212, 0.03054414875805378, 0.010906619019806385, 0.0032881281804293394, -0.0234555471688509, 0.0008391394512727857, -0.02998267486691475, 0.03250930458307266, 0.025561073794960976, -0.0007470226846635342, 0.046096958220005035, -0.014963263645768166, 0.030600296333432198, -0.013573617674410343, -0.0010685538873076439, -0.05112214758992195, -0.02762448787689209, -0.02112543396651745, -0.01886550337076187, -0.01843036152422428, 0.013243751600384712, -0.023259032517671585, -0.020956991240382195, -0.02989845536649227, -0.0345025360584259, -0.051571324467659, 0.007671129424124956, 0.010232850909233093, -0.016226578503847122, -0.031049475073814392, -0.015889694914221764, 0.03613080829381943, 0.004144374746829271, 0.011089097708463669, 0.027512192726135254, 0.00172477588057518, -0.002907379064708948, 0.02867724932730198, 0.037309903651475906, 0.05429447069764137, 0.0016028308309614658, -0.016268689185380936, 0.022234342992305756, 0.023609953001141548, -0.006074439734220505, 0.0024441636633127928, -0.00028314924566075206, -0.03191975876688957, -0.006407814100384712, 0.034418314695358276, -0.014078943990170956, -0.02163076028227806, 0.009257291443645954, -0.03568163141608238, 0.0494096539914608, 0.02178516425192356, 0.018079441040754318, -0.012934941798448563, -0.008057142607867718, -0.006635912694036961, -0.0109557481482625, 0.023132700473070145, -0.03568163141608238, -0.028298255056142807, -0.008330860175192356, 0.0036987054627388716, -0.01618446782231331, 0.00022239607642404735, 0.03248123079538345, -0.0035390364937484264, 0.03876973316073418, 0.03194783255457878, -0.0034144597593694925, 0.04284041374921799, 0.02547685243189335, 0.03775908052921295, 0.029421202838420868, 0.008106270805001259, 0.007958884350955486, -0.012008510529994965, 0.020451664924621582, 0.0674329474568367, -0.047500643879175186, 0.013573617674410343, -0.04250353202223778, 0.0164652056992054, -0.0013984194956719875, 0.003754852805286646, -0.009594175033271313, 0.01587565802037716, 0.030319560319185257, 0.011797958053648472, 0.002821403555572033, 0.013419212773442268, -0.00924325454980135, -0.009039720520377159, 0.0005202401080168784, -0.03020726516842842, 0.00921518076211214, 0.03163902088999748, -0.022051865234971046, -0.0046110996045172215, -0.014191238209605217, -0.0008426486165262759, -0.047809451818466187, -0.023343253880739212, -0.028550919145345688, 0.008464210666716099, 0.0018405797891318798, -0.025673367083072662, 0.02106928639113903, -0.028859728947281837, -0.03834862634539604, 0.0019862118642777205, -0.036832649260759354, 0.026431357488036156, -0.0011817258782684803, -0.0020634145475924015, -0.02222030609846115, 0.03222857043147087, -0.04601274058222771, -0.018163662403821945, -0.07315997034311295, 0.01045744027942419, -0.05794404819607735, -0.040566448122262955, 0.030375706031918526, -0.008751965127885342, 0.020732402801513672, 0.036804575473070145, -0.00010390546231064945, -0.028859728947281837, 0.0032635636162012815, -0.005695444997400045, 0.009727525524795055, 0.019342755898833275, 0.022136086598038673, -0.008155399933457375, -0.011861124075949192, -0.012233099900186062, -0.017784668132662773, 0.009201143868267536, -0.037927523255348206, 0.010794324800372124, -0.006614857818931341, -0.03410950303077698, 0.007200895342975855, -0.04385106638073921, 0.009685414843261242, 0.04067874327301979, 0.014654453843832016, -0.008674763143062592, -0.017321452498435974, 0.013005126267671585, -0.010632901452481747, -0.015959879383444786, -0.014099998399615288, -0.02749815583229065, 0.011938326992094517, 0.0030951215885579586, 0.0050111492164433, 0.03377262130379677, -0.012169933877885342, 0.036158882081508636, -0.027680635452270508, 5.299452823237516e-05, -0.010387256741523743, 0.03860129043459892, -0.04682687669992447, 0.007958884350955486, -0.005253284703940153, -0.056540362536907196, -0.04284041374921799, -0.023230958729982376, -0.0035390364937484264, -0.00023094976495485753, 0.050729114562273026, 0.005053259897977114, 0.0011773393489420414, 0.0036074661184102297, 0.02560318447649479, -0.01668979413807392, 0.03166709467768669, 0.0002353362797293812, -0.02429775893688202, -0.026431357488036156, -0.014184219762682915, 0.0021213165018707514, 0.022444896399974823, 0.0034074413124471903, -0.033295366913080215, -0.03613080829381943, -0.03135828673839569, -0.013278843834996223, 0.006678023375570774, 0.006562219467014074, 0.02629098854959011, -0.024929415434598923, 0.01426142267882824, -0.07607963681221008, -0.015005374327301979, 0.03829248249530792, -0.020718365907669067, -0.01092065591365099, -0.00762200029566884, -0.003667122684419155, 0.047893673181533813, 0.03657998517155647, -0.01249278150498867, 0.008415081538259983, -0.050504524260759354, -0.029280833899974823, 0.004326853901147842, -0.03057222254574299, 0.027919260784983635, 0.012212044559419155, 0.014064907096326351, 0.024999599903821945, 0.021181581541895866, 0.0007180717657320201, 0.018556693568825722, -0.02793329767882824, 0.05390143766999245, 0.010394275188446045, -0.009657341055572033, -0.003553073387593031, 0.04042607918381691, 0.005053259897977114, 0.0001107045536627993, 0.02153250202536583, -0.005716500338166952, 0.008022050373256207, 0.011629516258835793, -0.009755599312484264, 0.024311795830726624, -0.0003449990472290665, 0.005256793927401304, -0.010808361694216728, -0.008787057362496853, -0.029224686324596405, -0.039696164429187775, 0.04867973551154137, -0.04211049899458885, 0.05030801147222519, -0.03899432346224785, -0.009067794308066368, 0.035569336265325546, -0.015173816122114658, -0.017265304923057556, 0.010969785042107105, 0.019595418125391006, -0.013306917622685432, -0.0116505715996027, -0.011889197863638401, 0.0003077136934734881, -0.050757188349962234, -0.029561569914221764, 0.0033986682537943125, 0.016016026958823204, -0.025673367083072662, 0.039443500339984894, 0.008134344592690468, -0.057719457894563675, -0.014008759520947933, -0.010218814946711063, -0.002045868430286646, 0.04797789454460144, 0.008625634014606476, -0.005467346403747797, 0.027975408360362053, 0.03638347238302231, 0.019721750169992447, -0.0233011431992054, 0.002407316816970706, 0.0023511694744229317, 0.0011404927354305983, -0.009783673100173473, -0.007790442556142807, -0.015861621126532555, 0.014626380056142807, 0.004467221908271313, -0.048090189695358276, 0.007172821555286646, -0.0060393474996089935, -0.008155399933457375, 0.00030091460212133825, 0.01199447363615036, 0.009902985766530037, 0.004312817007303238, 0.02936505526304245, 0.0023388874251395464, -0.005527003202587366, -0.005962145049124956, 0.030965253710746765, 0.026740167289972305, 0.03377262130379677, 0.0016379229491576552, -0.010934692807495594, -0.005853359587490559, 0.04157710075378418, -0.007699202746152878, 0.0003599131596274674, 0.016395021229982376, 0.001001878990791738, -0.041015625, 0.01008546445518732, 0.009334494359791279, 0.001330867293290794, 0.010218814946711063, -0.01656346395611763, 0.00396891450509429, 0.02995460107922554, 0.019623491913080215, -0.00019728329789359123, 0.015145743265748024, 0.007004379760473967, -0.0030828395392745733, 0.007235987577587366, -0.03287426382303238, 0.02678227797150612, -0.012619112618267536, -0.023567842319607735, 0.04073489084839821, -0.01556684821844101, 0.03147057816386223, 0.051374807953834534, 0.0022406294010579586, 0.01715300977230072, 0.0007110533188097179, 0.006369213107973337, 0.06316574662923813, -0.0007334245019592345, 0.058898553252220154, -0.0008483511046506464, -0.029280833899974823, 0.032397009432315826, -0.0007224582368507981, 0.013812243938446045, 0.007727276533842087, -0.009355549700558186, 0.004867271985858679, 0.0021423716098070145, 0.018725134432315826, 0.021364059299230576, -0.00614462373778224, 0.0071236928924918175, -0.007818516343832016, -0.025996215641498566, 0.051655545830726624, 0.004168939311057329, -0.03368839994072914, -0.017939072102308273, 0.05962846800684929, -0.013278843834996223, 0.0699034258723259, -0.05230123922228813, -0.00921518076211214, -0.006730661261826754, 0.003954877611249685, 0.007165803108364344, 0.022150123491883278, 0.024045094847679138, 0.007600944954901934, 0.017475856468081474, -0.03761871159076691, -0.019132204353809357, -0.0034109505359083414, -0.038180187344551086, 0.007678147871047258, 0.022037828341126442, 0.011201392859220505, 0.014766748063266277, 0.013250770047307014, 0.0310775488615036, 0.011861124075949192, 0.008183473721146584, -0.012963015586137772, -0.003026692196726799, 0.011334742419421673, -0.039948828518390656, 0.0018756717909127474, 0.009952114894986153, 0.049634240567684174, 0.038208261132240295, -0.01702667772769928, -0.0444406121969223, 0.00478656031191349, -0.003688177792355418, 0.017195120453834534, 0.004772523418068886, 0.006572747137397528, 0.022332601249217987, 0.03489556536078453, 0.009748580865561962, 0.018079441040754318, 0.02196764387190342, 0.0024862741120159626, -0.02585584670305252, 0.0024950471706688404, -0.011264558881521225, 0.03402528166770935, 0.001729162409901619, -0.023904725909233093, -0.007397410925477743, 0.055417418479919434, -0.008983572944998741, 0.012134842574596405, -0.032733894884586334, 0.020142855122685432, 0.012836683541536331, 0.011552313342690468, 0.011362816207110882, -0.019370829686522484, -0.020732402801513672, 0.002759992377832532, 0.03826440870761871, 0.018907614052295685, -0.008632652461528778, -0.03891010209918022, -0.04427217319607735, -0.03405335545539856, -0.011096116155385971, 0.00880811270326376, -0.02731567807495594, 0.03163902088999748, 0.001816015224903822, 0.0008527376339770854, -0.01777063123881817, 0.01814962550997734, 0.02685246244072914, 0.02224837988615036, 0.03051607497036457, 0.008934443816542625, 0.03585007041692734, 0.031245989724993706, -0.0039232950657606125, -0.012647186405956745, -0.008695818483829498, 0.011383871547877789, 0.004958511330187321, 0.015791436657309532, 0.007158784661442041, -0.021420206874608994, -0.01871109940111637, 0.003047747304663062, 0.023132700473070145, 0.020999101921916008, 0.050729114562273026, -0.02106928639113903, 0.019525235518813133, 0.0010439894394949079, 0.010324090719223022, -0.0061340960673987865, 0.03986460715532303, 0.005498929414898157, 0.022458933293819427, 0.020058633759617805, -0.0060393474996089935, -0.0027003358118236065, -0.01612832210958004, 0.025490889325737953, -0.0028354402165859938, 0.0062920106574893, 0.002526629948988557, -0.0043514184653759, -0.0073131900280714035, -0.01907605677843094, 0.017237231135368347, -0.016016026958823204, -0.03057222254574299, 0.031274065375328064, 0.014317569322884083, -0.020858734846115112, -0.0009202898945659399, 0.04912891611456871, -0.06569238007068634, -0.01805136725306511, -0.014317569322884083, -0.035934291779994965, -0.028691286221146584, 0.007902736775577068, -0.016352910548448563, -0.0005241879844106734, 0.05645614117383957, -0.02554703690111637, -0.009095868095755577, -0.035625483840703964, 0.010331109166145325, -0.028536882251501083, -0.007088600657880306, 0.03318307176232338, -0.005639297887682915, 0.04533896967768669, -0.022950222715735435, 0.014078943990170956, -0.004375982563942671, 0.02324499562382698, 0.007165803108364344, -0.01379820704460144, 0.009488899260759354, -0.022767743095755577, 0.0139034828171134, 0.03349188342690468, 0.0064744893461465836, 0.029000097885727882, -0.014099998399615288, -0.024620605632662773, -0.013384120538830757, 0.03497978672385216, -0.03085295855998993, 0.014429864473640919, 0.00014431618910748512, 0.046068884432315826, -0.005372597835958004, -0.01871109940111637, 0.0366642065346241, 0.03402528166770935, 0.027020903304219246, 0.04048222675919533, 0.019960377365350723, 0.0018756717909127474, 0.018935687839984894, 0.03177938982844353, -0.01527207437902689, 0.02905624359846115, 0.021279839798808098, -0.017756594344973564, -0.032088201493024826, 0.0161563940346241, 0.016647683456540108, -0.0037794173695147038, -0.002209046622738242, 0.025771625339984894, -0.006200770847499371, 0.0017598679987713695, 0.012534892186522484, -0.009376604110002518, -0.0021265801042318344, 0.008295767940580845, 0.014710601419210434, 0.00343376025557518, -0.016858236864209175, 0.004361945670098066, -0.01017670426517725, -0.014907117001712322, 0.03079681098461151, 0.008239621296525002, 0.006306047085672617, 0.03113369643688202, 0.05648421496152878, 0.010997858829796314, -0.01923046074807644, 0.0001969543081941083, -0.01569318026304245, -0.015763362869620323, 0.003105649258941412, -0.01727934181690216, -0.013047236017882824, 0.030740665271878242, -0.018402287736535072, -0.006270955316722393, -0.021981680765748024, 0.005239247810095549, 0.016451168805360794, -0.013454304076731205, -0.006383250001817942, 0.030010748654603958, 0.014015777967870235, -0.018598804250359535, 0.031863611191511154, 0.005597187206149101, -0.008127326145768166, -0.02426968514919281, -0.015987953171133995, 0.003965405281633139, 0.016577498987317085, -0.02591199427843094, 0.0034776253160089254, 0.008878297172486782, -0.009692433290183544, -0.014247385784983635, 0.009566102176904678, 0.05005534738302231, 0.012752463109791279, -0.0018756717909127474, -0.017082825303077698, 0.01431055087596178, 0.0036565950140357018, 0.007257042918354273, -0.014057888649404049, -0.017223194241523743, -0.012696315534412861, -0.0020721873734146357, -0.00608145771548152, 0.036467693746089935, -0.016086211428046227, -0.02961771748960018, -0.000702280318364501, -0.011868142522871494, -0.012387504801154137, -0.003621503012254834, 0.022767743095755577, -0.020592033863067627, 0.004656719509512186, 0.0064148325473070145, 0.06086370721459389, -0.007474613841623068, 0.030375706031918526, 0.023764358833432198, -0.010934692807495594, -0.007790442556142807, -0.012963015586137772, 0.0055094570852816105, -0.04191398248076439, -0.02992652729153633, 0.03888202831149101, -0.031863611191511154, 0.004681283608078957, -0.0403980053961277, 0.008878297172486782, 0.029477350413799286, 0.022416822612285614, 0.0043303631246089935, 0.029505422338843346, 0.02495748922228813, 0.0024476726539433002, 0.011229466646909714, 0.028073666617274284, -0.03700109198689461, -0.015651069581508636, 0.01272438932210207, -0.02414335310459137, 0.047500643879175186, -0.011425982229411602, -0.005488401744514704, 0.005811248905956745, 0.016759978607296944, -0.010801343247294426, 0.016633646562695503, 0.036158882081508636, -0.015959879383444786, -8.005381459952332e-06, 0.006856992840766907, -0.016858236864209175, -0.015356295742094517, -0.054266396909952164, -0.007846590131521225, 0.018009256571531296, -0.022767743095755577, 0.03486749157309532, -0.0015352786285802722, -0.037113387137651443, 0.03585007041692734, 0.03453060984611511, -0.0021827274467796087, -0.005730537232011557, -0.04713568463921547, -0.00704649044200778, -0.0010167930740863085, -0.041127920150756836, 0.022487007081508636, 0.02106928639113903, 0.006488526239991188, 0.03921891003847122, 0.023904725909233093, 0.005007639992982149, 0.005653334315866232, -0.03133021295070648, -0.018725134432315826, 0.021490391343832016, -0.007986958138644695, -0.007495668716728687, 0.008506320416927338, 0.016226578503847122, 0.011362816207110882, 0.030375706031918526, -0.017447782680392265, -0.015033448114991188, -0.006155151408165693, 0.023048479110002518, 0.01594584248960018, 0.03436216711997986, -0.0009018665296025574, 0.02094295434653759, 0.023034442216157913, -0.004411074798554182, -0.013924538157880306, 0.04295270889997482, -0.0016852972330525517, -0.05704569071531296, 0.025968141853809357, -0.02852284535765648, 0.010527624748647213, 0.016731904819607735, 0.0015335240168496966, 0.006832428276538849, 0.0077202580869197845, 0.02513996884226799, -0.002465218771249056, -0.03408142924308777, -0.008878297172486782, 0.05297500640153885, 0.011011895723640919, 0.02025515027344227, -0.01805136725306511, 0.005828795023262501, 0.0061025130562484264, -0.004035589285194874, -0.010660974308848381, -0.030375706031918526, 0.02998267486691475, -0.007586908061057329, -0.03057222254574299, 0.014064907096326351, -0.040706817060709, 0.006372722331434488, -0.023413438349962234, -0.02268352173268795, 0.00307231186889112, -0.0041513931937515736, -0.030431853607296944, 0.003986460622400045, -0.01092065591365099, 0.023441512137651443, 0.005527003202587366, -0.02227645367383957, 0.02716127224266529, -0.011966399848461151, -0.012169933877885342, 0.012254155240952969, 0.0005926175508648157, 0.014471975155174732, 0.038853954523801804, 0.004902363754808903, -0.015089595690369606, -0.010710103437304497, 0.014177201315760612, -0.01216291543096304, 0.001453689532354474, -0.0032372446730732918, -0.00048207747749984264, -0.018247883766889572, 0.04034185782074928, 0.021167544648051262, 0.018697062507271767, 0.01226117368787527, 0.019805971533060074, -0.03250930458307266, 0.01382628083229065, -0.029168538749217987, -0.009762617759406567, -0.034137576818466187, -0.00385311059653759, 0.003293392015621066, 0.0184865090996027, -0.016142357140779495, 0.005600696429610252, -0.004526878707110882, 0.011566350236535072, 0.016226578503847122, -0.01618446782231331, -0.03784330189228058, 0.033014632761478424, 0.012970034033060074, -0.020900843665003777, 0.007488650269806385, 0.04685495048761368, 0.0007343018078245223, -0.05081333592534065, 0.013054254464805126, -0.025813736021518707, 0.019567346200346947, -0.0038215278182178736, -0.002923170570284128, -0.0008492284105159342, 0.03377262130379677, -0.007165803108364344, 0.018135588616132736, 0.008758983574807644, 0.00024915378890000284, -0.028003482148051262, 0.019005872309207916, 0.022894075140357018, -0.005923543591052294, -0.019988451153039932, 0.020016523078083992, -0.034165650606155396, 0.03742219880223274, -0.015159780159592628, -0.010794324800372124, -0.010134593583643436, 0.020858734846115112, -0.020269187167286873, 0.04323344677686691, 0.007425484713166952, 0.044047582894563675, 0.013012144714593887, -0.01214887946844101, -0.005597187206149101, -0.03141443431377411, 0.0041408659890294075, 0.012829665094614029, 0.0010913637233898044, -0.033856842666864395, 0.03149865195155144, 0.03206012770533562, 0.0005167309427633882, 0.014570232480764389, 0.004239123780280352, -0.015033448114991188, -0.012569984421133995, 0.01817769929766655, -0.028354402631521225, 0.016942458227276802, -0.0050181676633656025, 0.00295650796033442, -0.05294693261384964, -0.03368839994072914, 0.03672035411000252, 0.004726903513073921, 0.009755599312484264, 0.018289992585778236, 0.014429864473640919, -0.005039223004132509, 0.008211547508835793, 0.016928421333432198, 0.013840317726135254, 0.004211049992591143, -0.009516973048448563, -0.0143737168982625, -0.01610024832189083, -0.04573200270533562, -0.046658433973789215, 0.01581951044499874, 0.006569237913936377, -0.021027175709605217, -0.004197013098746538, -0.0025406668428331614, 0.023034442216157913, 0.010759232565760612, 0.025336483493447304, 0.0035618464462459087, 0.003093366976827383, 0.010682029649615288, -0.004505823366343975, 0.014085962437093258, 0.03408142924308777, 0.003258299781009555, 0.0008974800002761185, -0.0025810226798057556, 0.007600944954901934, -0.008864260278642178, -0.009481880813837051, 0.03455868363380432, -0.00997317023575306, -0.023343253880739212, 0.03020726516842842, 0.00967839639633894, -0.012366450391709805, 0.018879540264606476, 0.008632652461528778, -0.013685911893844604, -0.014822895638644695, 0.017349526286125183, -0.015426479279994965, 0.018318066373467445, 0.04270004481077194, 0.0104855140671134, 0.018570730462670326, 0.01610024832189083, 0.009706470184028149, -0.00039610188105143607, -0.013292880728840828, 0.03638347238302231, -0.001416842802427709, 0.01861284114420414, -0.0011676891008391976, 0.01687227375805378, -0.022627374157309532, 0.021335985511541367, 0.00974156241863966, 0.026178693398833275, -0.02734375, 0.01979193463921547, -0.002040604595094919, 0.022669484838843346, 0.022388748824596405, 0.0006917527061887085, -0.011243503540754318, -0.018079441040754318, 0.03896624967455864, -0.03253737837076187, -0.009194125421345234, 0.0017151255160570145, 0.04149287939071655, 0.000702280318364501, 0.010646938346326351, -0.01886550337076187, -0.008211547508835793, -0.007228969130665064, 0.03166709467768669, 0.00012677014456130564, -0.00391627661883831, 0.012534892186522484, 0.002682789694517851, 0.022950222715735435, 0.02240278571844101, -0.02793329767882824, 0.011783921159803867, 0.05760716274380684, 0.0161563940346241, 0.0023809978738427162, 5.417340435087681e-05, -0.026698056608438492, 0.011840068735182285, 0.026150619611144066, 0.0002974054077640176, -0.03408142924308777, -0.024185463786125183, 0.010197759605944157, -0.00950995460152626, 0.021265802904963493, -0.024817120283842087, -0.00657976558431983, -0.0161563940346241, 0.01353150699287653, 0.009629267267882824, -0.019988451153039932, 0.026052361354231834, 0.015735289081931114, 0.023638026788830757, 0.01219800766557455, 0.006428869441151619, 0.03545704111456871, 0.0020142856519669294, 0.008541412651538849, 0.023946836590766907, 0.01923046074807644]" -How Octave Achieves a High Compression Ratio and Speedy Queries on Historical Data While Revolutionizing the Battery Market,"only the start, as we expect to triple or quadruple sales by the end of 2023.So far, we have found Timescale to be powerful, scalable, and pretty well-suited for our application. Timescale has proven to be a key enabler of Octave’s data-driven Battery Cloud technology.We have started to leverage the power of continuous aggregates. For example, continuous aggregates are queried behind the scenes of our customer-facing applications. They enable our clients to quickly and seamlessly inspect and download historical data of their second-life battery systems.SELECT time_bucket(INTERVAL '15 min', time) AS bucket, bms.iot_thing, bms.iot_device, bms.name, bms.string, bms.module, bms.cell, avg(bms.value_real) AS value_real, last(bms.value_str, time) AS value_str FROM public.bms GROUP BY bucket, iot_thing, iot_device, name, string, module, cell;✨Editor’s Note:Here are three reasons you should upgrade to the new version of continuous aggregates.RoadmapWe are very proud and honored to recently have won the competitive call from theEIC Accelerator, led by the European Innovation Council! We’re now working towards industrializing and scaling our battery cloud technology.Advice & ResourcesI believe that getting started with a hands-on example is always a good way to evaluate something. You can try Timescale for free with a demo dataset to get acquainted with the service.So I recommend quickly spinning up a first TimescaleDBinstance and having fun playing around with the service.Also,there is very extensive documentation and tons of examples and tutorialsavailable on the website, which helps you quickly master Timescale! So make sure to have a look at the website.Anything else you'd like to add?Thanks to Timescale for this opportunity to share our story and our mission at Octave!Want to read more developer success stories?Sign up for our newsletterfor more Developer Q&As, technical articles, tips, and tutorials to do more with your data—delivered straight to your inbox twice a month.We’d like to thank Nicolas and all the folks at Octave for sharing how they’re leveraging continuous aggregates and Timescale’s compression powers to handle their millions of battery cell data points daily.We’re always keen to feature new community projects and stories on our blog. If you have a story or project you’d like to share, reach out on Slack (@Ana Tavares), and we’ll go from there.The open-source relational database for time-series and analytics.Try Timescale for free",https://www.timescale.com/blog/high-compression-ratio-and-speedy-queries-on-historical-data-while-revolutionizing-the-battery-market/,524,"[0.018129948526620865, -0.003661799943074584, 0.06117277592420578, 0.01337627787142992, 0.02398601919412613, -0.0017993025248870254, -0.010981889441609383, -0.003753081662580371, -0.009703945368528366, -0.0029245249461382627, 0.004160338547080755, -0.04300069808959961, -0.01595322974026203, -0.0172592606395483, 0.06504873186349869, 0.054460059851408005, -0.018424857407808304, 0.00513635016977787, -0.025432482361793518, 0.01693626306951046, -0.009556490927934647, 0.012119399383664131, 0.05019088461995125, 0.04286026209592819, -0.030782993882894516, -0.049320198595523834, -0.024126451462507248, 0.03364783525466919, 0.03853491693735123, -0.07077841460704803, -0.009317753836512566, -0.04645535722374916, -0.06229624152183533, -0.006221198011189699, 0.025923999026417732, 0.014478679746389389, 0.047410305589437485, -0.001995909260585904, 0.018438901752233505, -5.140080611454323e-05, -0.0010716820834204555, -0.010967846028506756, 0.015279150567948818, 0.03058638796210289, -0.023410242050886154, -0.027187900617718697, -0.03485556319355965, -0.04482632875442505, 0.02275020442903042, 0.09313540905714035, -0.012463461607694626, -0.012266854755580425, -0.011859597638249397, -0.027918152511119843, 0.007730857003480196, -0.015447670593857765, 0.007758943364024162, 0.03693397715687752, 0.0008812193991616368, -0.04746647924184799, 0.0005845538689754903, -0.0590381883084774, 0.02699129283428192, 0.03510834276676178, -0.014576983638107777, 0.03954603523015976, 0.0031737941317260265, 0.031766027212142944, -0.025853782892227173, 0.01593918725848198, 0.028269236907362938, 0.028311366215348244, -0.005048579536378384, -0.006480999756604433, 0.004890591837465763, -0.06016165390610695, -0.006716225761920214, 0.036372240632772446, -0.010251635685563087, -0.022806378081440926, 0.009163277223706245, -0.012372179888188839, -0.008699847385287285, 0.015461714006960392, 0.011971944943070412, -0.006105340551584959, -0.0329737551510334, -0.027075553312897682, -0.0295190941542387, 0.023241722956299782, -0.040809936821460724, 0.027623243629932404, 0.0032440107315778732, 0.00827854685485363, 0.01839677058160305, 0.014008228667080402, 0.00024005328305065632, -0.009486273862421513, -0.008833258412778378, 0.034153394401073456, 0.007485098205506802, 0.01467528659850359, -0.00473260460421443, -0.008671760559082031, 0.03493982180953026, 0.02935057319700718, 0.027763675898313522, -0.028072629123926163, -0.02453370951116085, 0.016739657148718834, -0.07796860486268997, 0.022048039361834526, -0.01506850030273199, -0.015503843314945698, -0.0049362326972186565, 0.0006595979793928564, -0.015012326650321484, -0.0157144945114851, 0.019562367349863052, -0.04842142388224602, -0.02720194309949875, 0.00862963031977415, -0.03381635621190071, 0.008292590267956257, 0.027384506538510323, -0.033535487949848175, 0.013292018324136734, -0.0360071137547493, -0.026387428864836693, -0.025278005748987198, 0.02092457190155983, -0.0157144945114851, 0.06841913610696793, -0.029575267806649208, -0.025278005748987198, -0.04078184813261032, -0.05336467921733856, -0.0040163942612707615, -0.013425430282950401, 0.005185502115637064, 0.022174429148435593, -0.03718675673007965, 0.006990070920437574, -0.014956153929233551, -0.005006449297070503, -0.0015781199326738715, 0.00014076250954531133, 0.008103005588054657, -0.026555949822068214, -0.04401181638240814, 0.0019906428642570972, -0.010876564309000969, -0.06072338670492172, -0.01593918725848198, 0.07886737585067749, -0.008861345238983631, -0.00496080843731761, 0.055836305022239685, 0.0026366363745182753, -0.05187608674168587, 0.028873100876808167, 0.02790411002933979, -0.012035139836370945, -0.03738336265087128, -0.024084322154521942, 0.008032788522541523, -0.04976958408951759, -0.03979881480336189, -0.09998855739831924, -0.01702052354812622, -0.056763168424367905, -0.05740915983915329, -0.01801760122179985, -0.018832113593816757, 0.03999542444944382, 0.00014350534183904529, -0.024463491514325142, -0.05156713351607323, -0.02506735548377037, -0.018031643703579903, -0.014036314561963081, -0.008994757197797298, -0.016753701493144035, 0.04246705025434494, -0.03314227610826492, 0.005031025502830744, -0.048786550760269165, 0.038057442754507065, -0.0025137572083622217, 0.02599421702325344, -0.05176373943686485, 0.04844951257109642, 0.010033964179456234, 0.05665082111954689, 0.007941506803035736, -0.053842153400182724, 0.052859120070934296, 0.01810186170041561, -0.003991818521171808, 0.021107135340571404, 0.048646118491888046, 0.02237103506922722, 0.06707097589969635, -0.016191966831684113, 0.011087214574217796, -0.013846729882061481, 0.004620257765054703, 0.0008715645526535809, -0.04957297816872597, -0.05948757380247116, 0.0009128169040195644, 0.006080764811486006, 0.008650694973766804, 0.012035139836370945, -0.05909436196088791, -0.005294337868690491, -0.040444809943437576, -0.027861980721354485, 0.016121750697493553, -0.020868398249149323, -0.016725614666938782, 0.05830793455243111, 0.009991833940148354, -0.01832655444741249, 0.0009760119137354195, 0.036765456199645996, 0.027089595794677734, -0.004395564552396536, 0.04482632875442505, 0.0011796402977779508, 0.018495073541998863, -0.04207383841276169, -0.012533677741885185, -0.061678335070610046, -0.003925112541764975, 0.00812407024204731, 0.034462347626686096, -0.010055028833448887, 0.005368065554648638, -0.029322486370801926, -0.0024681163486093283, 0.026036346331238747, 0.02437923289835453, 0.016346443444490433, 0.011698099784553051, 0.01640261709690094, -0.05052792653441429, -0.073643259704113, 0.04182105511426926, 0.0635882318019867, 0.0037285059224814177, -0.035529643297195435, -0.005368065554648638, -0.02491287887096405, -0.012512613087892532, -0.07369942963123322, -0.002336460165679455, 0.02828327938914299, 0.011332972906529903, -0.0008978958358056843, 0.015307237394154072, -0.02668233960866928, -0.016992436721920967, -0.019744930788874626, -0.04477015882730484, 0.009998856112360954, 0.03319844603538513, -0.045556582510471344, 0.017357563599944115, -0.01832655444741249, 0.03170985355973244, 0.03005274012684822, 0.028550103306770325, -0.042495135217905045, -0.006635476369410753, -0.03724293038249016, -0.009760119020938873, -0.00832067709416151, -0.009753096848726273, -0.008756020106375217, 0.007709791883826256, -0.018579334020614624, -0.014106531627476215, -0.019211284816265106, 0.030080826953053474, 0.009479252621531487, 0.03182220086455345, 0.03418148308992386, 0.03861917555332184, -0.056538473814725876, 0.02589591220021248, 0.0022574663162231445, 0.017427781596779823, -0.05566778779029846, -0.00866473838686943, -0.014703373424708843, 0.006951451767235994, -0.021486304700374603, -0.03072682023048401, -0.024323059245944023, 0.03665310889482498, -0.0006271227612160146, -0.0063546099700033665, -0.036456502974033356, -0.0014684064080938697, 0.014324203133583069, -0.025193745270371437, -0.0006780298426747322, -0.0031158654019236565, -0.01031483057886362, 0.02560100331902504, -0.02921014092862606, 0.009746075607836246, -0.009626707062125206, -0.021907605230808258, -0.007569358218461275, 0.053701721131801605, -0.037523794919252396, -0.021668868139386177, -0.03519260138273239, 0.01475954707711935, -0.09139403700828552, -0.02621890977025032, 0.04968532547354698, 0.038197875022888184, -0.01770864799618721, 0.04134358465671539, 0.007787030190229416, 0.0022381567396223545, -0.06252093613147736, -0.011199560947716236, -0.01585492677986622, 0.02744068019092083, 0.007688726764172316, -0.023424286395311356, -0.00655121635645628, 0.02023644745349884, -0.020110057666897774, -0.020362837240099907, 0.04954489320516586, -0.033844441175460815, -0.030108913779258728, -0.04437694326043129, 0.0030245836824178696, 0.03013700060546398, 0.02023644745349884, -0.01157170906662941, 0.017427781596779823, -0.015461714006960392, 0.0025190236046910286, -0.021500349044799805, -0.025586958974599838, 0.021289698779582977, -0.017427781596779823, 0.02099478803575039, -0.012940934859216213, -0.0054417927749454975, -0.022399121895432472, -0.04269174486398697, 0.007021668367087841, -0.03968646749854088, 0.010504416190087795, 0.039433687925338745, 0.0016070842975750566, 0.0002068100729957223, 0.015391496941447258, -0.012779436074197292, 0.018986590206623077, -0.017722690477967262, 0.011038062162697315, 0.04271982982754707, -0.036456502974033356, -0.002043305430561304, -0.020980745553970337, -0.06100425496697426, -0.007457011844962835, 0.06111660227179527, 0.024042192846536636, 0.023283852264285088, 0.016234098002314568, 0.05165139213204384, 0.003844363382086158, 0.00820833072066307, -0.007920442149043083, 0.046118319034576416, 0.02283446490764618, -0.006407272536307573, 0.03611946105957031, -0.04814055934548378, 0.005968417972326279, 0.0015939186559990048, 0.008299611508846283, -0.007372751832008362, -0.028690537437796593, 0.02084031142294407, 0.03895621746778488, 0.006294925697147846, 0.011361059732735157, 0.06465552002191544, -0.009022844024002552, 0.03036169335246086, 0.005884157959371805, -0.044657811522483826, -0.016135793179273605, 0.028016457334160805, -0.0028946828097105026, 0.010469307191669941, -0.007197210099548101, -0.016613267362117767, -0.034153394401073456, -0.025320135056972504, -0.03359166160225868, 0.044180337339639664, -0.02238507941365242, 0.04853377118706703, -0.026008259505033493, -0.04769117012619972, 0.0751599371433258, -0.010911672376096249, 0.053448937833309174, -0.03977072983980179, -0.034378089010715485, -0.03510834276676178, -0.039349429309368134, -0.03878769651055336, 0.022876596078276634, 0.03156942129135132, -0.024435406550765038, -0.040669504553079605, -0.03474321588873863, -0.0229889415204525, 0.01137510221451521, 0.022328905761241913, -0.02797432616353035, -0.0038478742353618145, -0.008131091482937336, 0.009247536770999432, -0.001122589223086834, 0.05114583298563957, -0.0037881899625062943, 0.012976042926311493, -0.014148661866784096, 0.0054382821545004845, 0.024323059245944023, -0.016669441014528275, -0.02008197084069252, -0.012294941581785679, -0.014703373424708843, -0.023550676181912422, 0.025474613532423973, 0.012884761206805706, -0.0241545382887125, -0.0007631675689481199, 0.01916915364563465, -0.03971455618739128, -0.0295190941542387, 0.02843775600194931, -0.023803455755114555, 0.04316921532154083, -0.0022802867460995913, -0.051847998052835464, 0.01671157032251358, -0.016234098002314568, -0.020292621105909348, 0.021949734538793564, -0.03878769651055336, 0.03763614222407341, -0.02275020442903042, 0.001040962291881442, -0.023943889886140823, 0.01884615793824196, 0.03488364815711975, -0.033310793340206146, -0.0005217977450229228, -0.040585242211818695, 0.006305458024144173, 0.035445380955934525, 0.0042586419731378555, -0.015756623819470406, -0.012456439435482025, -0.008622609078884125, -0.017189044505357742, -0.02706150896847248, 0.07459820061922073, 0.02308724634349346, 0.06049869582056999, 0.006326523143798113, -0.04024820402264595, -0.058139413595199585, -0.019562367349863052, -0.0012586340308189392, 0.015405540354549885, 0.03586668148636818, -0.017048610374331474, -0.011255734600126743, 0.0008860467933118343, -0.09330392628908157, -0.03617563471198082, -0.016683483496308327, -0.01732947677373886, 0.03404104709625244, -0.01825633831322193, 0.011178496293723583, 0.06948643177747726, 0.005792876239866018, -0.007081352639943361, -0.019913451746106148, -0.025727393105626106, 0.0003574468137230724, -0.02697725035250187, -0.009008800610899925, -0.022258687764406204, 0.02553078532218933, 0.018073774874210358, -0.02491287887096405, 0.03302992880344391, 0.03159750625491142, 0.001662379945628345, -0.002727918094024062, 0.005153904668986797, -0.0063932291232049465, -0.027805807068943977, -0.011824489571154118, -0.01939384825527668, -0.016107706353068352, -0.012737306766211987, -0.033086102455854416, -0.03845065459609032, -0.03847874328494072, -0.0066003683023154736, 0.006375674623996019, -0.027314290404319763, 0.0005354022141546011, 0.008292590267956257, -0.025488656014204025, 0.013853752054274082, -0.021907605230808258, -0.019098937511444092, -0.025081399828195572, 0.01946406438946724, 0.023494502529501915, 0.04145592823624611, 0.02520778961479664, 0.02284850925207138, -0.0056454213336110115, -0.0005555895040743053, -0.025474613532423973, -0.026780642569065094, -0.01702052354812622, 0.050247058272361755, 0.012308984994888306, -0.009008800610899925, 0.051623307168483734, 0.002504980191588402, -0.00018102738249581307, 0.018298467621207237, 0.024393275380134583, -0.013481603004038334, 0.01738565042614937, -0.007864268496632576, 0.025025226175785065, -0.009458187036216259, 0.0023733237758278847, -0.010244614444673061, 0.008770063519477844, 0.033086102455854416, 0.00015096587594598532, -0.019042763859033585, -0.033535487949848175, 0.015672363340854645, 0.027918152511119843, -0.010462285950779915, 0.02252551168203354, 0.006442380603402853, 0.02178121544420719, 0.009458187036216259, -0.04229852929711342, -0.024266885593533516, 0.0005358410417102277, 0.015981316566467285, -0.029097793623805046, -0.015265107154846191, -0.03151324763894081, 0.015981316566467285, -0.02276424877345562, 0.0222306028008461, 0.03432191535830498, 0.03502408042550087, 0.04283217713236809, -0.03569816052913666, -0.02231486141681671, -0.0043885428458452225, -0.014843806624412537, 0.005915755406022072, 0.006312479730695486, 0.03541729599237442, 0.01004800759255886, -0.0101603539660573, -0.016529006883502007, 0.017877167090773582, 0.0226097721606493, -0.002678766380995512, 0.014815719798207283, 0.0018273892346769571, -0.037973180413246155, 0.017034567892551422, -0.0009101837640628219, -0.005311891902238131, 0.034378089010715485, -0.0095775555819273, 0.016992436721920967, 0.006031612865626812, -0.008271525613963604, -0.05412301793694496, -0.012028117664158344, -0.0023627914488315582, -0.024575838819146156, -0.0028034010902047157, 0.018228251487016678, -0.00672675808891654, -0.015391496941447258, -0.02467414177954197, -0.030698733404278755, -0.054628580808639526, 0.02314341813325882, 0.02904161997139454, -0.009338818490505219, -0.05566778779029846, 0.01970280148088932, 0.031316641718149185, 0.028100715950131416, -0.008538348600268364, 0.01937980391085148, -0.01710478402674198, 0.0042235334403812885, 0.020573487505316734, 0.023424286395311356, 0.02988422103226185, 0.00332651543430984, -0.02336811274290085, 0.026317212730646133, 0.004465781152248383, 0.0031966145616024733, 0.016964349895715714, 0.012814545072615147, -0.029603352770209312, -0.004500889219343662, 0.024407319724559784, -0.00931073259562254, -0.01460507046431303, 0.004915168043226004, -0.018874244764447212, 0.06561046838760376, 0.015208933502435684, 0.022792335599660873, -0.0099637471139431, -0.01746991090476513, -0.02881692722439766, -0.017582258209586143, 0.007281470112502575, -0.022033995017409325, -0.008194287307560444, 0.0071059283800423145, -0.021949734538793564, -0.019604498520493507, 0.019070850685238838, 0.014106531627476215, 0.003686375916004181, 0.03210306912660599, 0.04454546421766281, -0.008411958813667297, 0.030474040657281876, 0.021795257925987244, 0.01702052354812622, 0.0452195443212986, 0.016430703923106194, 0.0002668233937583864, -0.0014473414048552513, 0.028465842828154564, 0.05451623350381851, -0.04561275616288185, 0.0022767758928239346, -0.03159750625491142, 0.019716843962669373, -0.015770666301250458, 0.0027296736370772123, -0.010946781374514103, 0.011241691187024117, 0.01617792434990406, 0.002062615007162094, -0.007632553577423096, 0.013509689830243587, -0.00653366232290864, -0.01353075448423624, -0.011318929493427277, -0.038900043815374374, 0.023648979142308235, -0.01161383930593729, -0.034378089010715485, -0.04788777977228165, -0.016135793179273605, -0.020025797188282013, -0.04246705025434494, -0.02084031142294407, -0.02030666545033455, 0.023803455755114555, 0.004581638611853123, 0.010167376138269901, 0.032608628273010254, -0.023971974849700928, -0.041287411004304886, -0.012203659862279892, -0.025952085852622986, 0.020727964118123055, -0.013902903534471989, -0.004378010053187609, -0.029996566474437714, 0.013565863482654095, -0.014380376785993576, -0.022399121895432472, -0.06353205442428589, 0.010757195763289928, -0.029462920501828194, -0.019604498520493507, 0.03227158635854721, -0.0005656831781379879, 0.01984323374927044, 0.04022011533379555, -0.01130488608032465, -0.015925142914056778, -0.0014350534183904529, 0.009626707062125206, 0.014422507025301456, -0.010609740391373634, 0.013783534988760948, -0.006308969110250473, -0.03350740298628807, -0.025797609239816666, -0.018452944234013557, 0.0101603539660573, -0.009598620235919952, 0.004325347486883402, -0.0203207079321146, -0.020334752276539803, 0.039658382534980774, -0.05243781954050064, 0.007836181670427322, 0.037664227187633514, -0.007400838192552328, -0.006547705736011267, -0.01664135418832302, 0.013039237819612026, -0.008854323998093605, -0.016543051227927208, 0.01023759227246046, -0.026499776169657707, -0.005224121268838644, 0.006839104928076267, 0.024126451462507248, 0.026429560035467148, -0.020110057666897774, 0.022876596078276634, -0.03510834276676178, 0.012575807981193066, -0.018214207142591476, 0.04589362442493439, -0.0368216298520565, 0.010911672376096249, -0.012407287955284119, -0.033984873443841934, -0.019758975133299828, -0.010209505446255207, -0.01657113805413246, -0.014970196411013603, 0.039349429309368134, 0.010701022110879421, -0.012751349247992039, 0.015897057950496674, 0.010251635685563087, -0.01482976321130991, -0.005396151915192604, 0.004493867512792349, -0.030782993882894516, -0.01617792434990406, -0.007632553577423096, 0.0030667136888951063, 0.01916915364563465, -0.01498423982411623, -0.026485733687877655, -0.04277600347995758, -0.03595094010233879, -0.012259832583367825, -0.00827854685485363, 0.012807522900402546, 0.022623814642429352, -0.016809873282909393, 0.015012326650321484, -0.11459362506866455, -0.009675858542323112, 0.030108913779258728, -0.03901238739490509, -0.01256878674030304, -0.005276783835142851, 0.004701007157564163, 0.02560100331902504, 0.022413164377212524, 0.0016922220820561051, 0.022090168669819832, -0.053392764180898666, -0.009107103571295738, 0.0012884761672466993, -0.029603352770209312, 0.03977072983980179, 0.011887684464454651, 0.006740801502019167, 0.01294795610010624, 0.027946239337325096, -0.011213604360818863, 0.014113552868366241, -0.026246996596455574, 0.04471398517489433, -0.0023171505890786648, -0.03423765301704407, -0.02161269448697567, 0.044124163687229156, 0.01762438751757145, -0.002139853313565254, 0.04038863629102707, 0.005129328928887844, -0.007941506803035736, 0.024393275380134583, -0.003742549102753401, 0.034462347626686096, -0.012287919409573078, 0.008194287307560444, 0.012547721154987812, -0.00649504316970706, -0.022890638560056686, -0.04811247065663338, 0.04662387818098068, -0.028929272666573524, 0.053448937833309174, -0.006835594307631254, -0.017413737252354622, 0.03496790677309036, -0.013938011601567268, -0.007137525826692581, 0.03120429441332817, 0.02053135819733143, -0.004198957700282335, -0.019562367349863052, -0.004216511733829975, 0.007435946725308895, -0.06201537325978279, -0.029097793623805046, 0.02536226622760296, -0.00832067709416151, 0.00480984291061759, 0.053392764180898666, -0.004476313479244709, -0.038591090589761734, -0.012702197767794132, 0.016978394240140915, -0.00828556902706623, 0.04255130887031555, 0.004873037803918123, 0.006122894585132599, -0.004873037803918123, 0.027342377230525017, 0.019056808203458786, -0.0521007776260376, 0.008777085691690445, 0.005789365619421005, 0.014134618453681469, -0.01824229396879673, 0.01314456295222044, -0.03378826752305031, 0.01923937164247036, -0.004237576853483915, -0.03864726424217224, 0.019646627828478813, -0.01824229396879673, -0.008074918761849403, 0.00973203219473362, 0.010932737961411476, 0.023269807919859886, 0.0006078131846152246, 0.029996566474437714, -0.007183166686445475, -0.007709791883826256, -0.016388574615120888, -0.0012542455224320292, 0.0054031736217439175, 0.03581050783395767, 0.001286720740608871, 0.010012898594141006, -0.002819199813529849, 0.039517950266599655, 0.0010479839984327555, 0.003445883747190237, 0.039517950266599655, -0.026878945529460907, -0.032074980437755585, 0.02429497241973877, 0.003946177661418915, 0.0019063829677179456, -0.0034511499106884003, -0.007737878710031509, -0.0010514948517084122, 0.02346641570329666, 0.04207383841276169, -0.00801172386854887, 0.03485556319355965, 0.01893041841685772, 0.01294795610010624, 0.002650679787620902, -0.023410242050886154, 0.030923428013920784, -0.0187759418040514, -0.04162444919347763, -0.0012147485977038741, -0.015152759850025177, 0.0187759418040514, 0.02367706596851349, -0.012407287955284119, -0.0005174091784283519, -0.015391496941447258, 0.03356357291340828, 0.06336353719234467, -0.006312479730695486, 0.0268368162214756, -0.011620861478149891, -0.011016997508704662, 0.018677636981010437, -0.018874244764447212, 0.0026524350978434086, 0.018340596929192543, -0.010960823856294155, -0.0036407350562512875, 0.00800470169633627, 0.01664135418832302, 0.02054540067911148, -0.009781183674931526, -0.006832083221524954, 0.008875388652086258, -0.014899980276823044, 0.04853377118706703, 0.019562367349863052, -0.006280882284045219, -0.028325410559773445, 0.06617220491170883, -0.016444746404886246, 0.0804964080452919, -0.03732718899846077, -0.026092519983649254, -0.003021072829142213, 0.02704746648669243, 0.011466383934020996, 0.02720194309949875, 0.02230081893503666, -0.010953802615404129, 0.010672936215996742, -0.03401296213269234, -0.02867649309337139, -0.01901467703282833, -0.00467292033135891, 0.014942110516130924, -0.0018326553981751204, 0.035754334181547165, 0.040669504553079605, 0.008987735025584698, 0.02781984955072403, 0.007794051896780729, 0.008257482200860977, -0.02505331300199032, -0.008376850746572018, 0.009746075607836246, -0.03915282338857651, 0.004479824565351009, -0.005115285515785217, 0.044798243790864944, 0.001209482317790389, -0.014015249907970428, -0.034462347626686096, 0.034069135785102844, -0.004213001113384962, 0.011045084334909916, 0.010132267139852047, 0.00328789628110826, 0.013404364697635174, 0.03701823577284813, 0.017217131331562996, 0.022062081843614578, 0.022567642852663994, 0.008032788522541523, -0.014204834587872028, 0.014324203133583069, -0.011670012958347797, -0.003029849845916033, 0.013916946947574615, -0.022581685334444046, -0.01894446089863777, 0.04614640399813652, -0.009043908677995205, 0.01498423982411623, -0.01824229396879673, 0.007695748470723629, 0.012519634328782558, -0.001021652715280652, -0.01145936269313097, 0.0050275144167244434, -0.037355273962020874, -0.01417674869298935, 0.033226534724235535, 0.018270380795001984, 0.0009523137705400586, -0.024463491514325142, -0.038815781474113464, -0.036596935242414474, -0.041596364229917526, -0.003021072829142213, -0.021261611953377724, 0.033984873443841934, 0.004227044526487589, -0.007151569239795208, -0.004037459380924702, 0.012961999513208866, 0.007765965070575476, 0.016880091279745102, 0.011908749118447304, 0.008938583545386791, 0.04033246263861656, 0.03558581322431564, -8.085889567155391e-05, -0.01119253970682621, 0.010434199124574661, 0.009394992142915726, -0.0003401120484340936, 0.00942307896912098, 0.005431260447949171, -0.018972547724843025, -0.01800355687737465, 0.008685803972184658, 0.026120606809854507, 0.041736796498298645, 0.03227158635854721, -0.01884615793824196, -0.0029947415459901094, 0.01617792434990406, 0.0360352024435997, -0.0012726773275062442, 0.040500983595848083, 0.027651330456137657, 0.017427781596779823, 0.022595727816224098, 0.008348763920366764, 0.013615014962852001, 0.00989353097975254, 0.0383102223277092, 0.02430901490151882, -0.010820390656590462, -0.023340025916695595, -0.014478679746389389, 0.00014657732390332967, -0.002977187279611826, 0.0283534973859787, 0.015265107154846191, -0.019070850685238838, 0.030024653300642967, 0.007464033551514149, -0.02199186570942402, -0.006315990816801786, 0.017062654718756676, -0.03963029757142067, -0.034602779895067215, -0.022665945813059807, -0.010658892802894115, -0.016037490218877792, 0.015981316566467285, -0.02699129283428192, 0.0011796402977779508, 0.03471512719988823, -0.021247567608952522, -0.003918090835213661, -0.04030437767505646, 0.01295497827231884, -0.051932260394096375, -0.0004980996018275619, 0.03477130085229874, -0.004255130887031555, 0.033001840114593506, -0.01939384825527668, 0.02121948078274727, -0.014647199772298336, 0.019098937511444092, -0.004743136931210756, -0.004237576853483915, 0.0026383919175714254, -0.00643535889685154, 0.0024294971954077482, 0.04232661798596382, -0.005325935315340757, 0.03213115409016609, -0.00984437856823206, 0.001397312036715448, -0.026261039078235626, 0.023438328877091408, -0.039208997040987015, 0.014576983638107777, -0.013130519539117813, 0.05243781954050064, 0.008306633681058884, -0.011452341452240944, 0.01916915364563465, 0.019801104441285133, 0.016234098002314568, 0.02477244660258293, 0.026738513261079788, 0.003165016882121563, 0.004757180344313383, 0.03019317425787449, -0.014043336734175682, 0.023887716233730316, 0.019351717084646225, -0.007400838192552328, -0.05027514696121216, 0.03564198687672615, 0.005038047209382057, -0.003696908475831151, -0.004486846271902323, 0.02544652670621872, -0.029603352770209312, 0.030530214309692383, 0.01657113805413246, -0.0003245327388867736, 0.005950863938778639, 0.015040413476526737, 0.015349366702139378, -0.003040382405743003, -0.006059699691832066, 0.009556490927934647, 0.0012796990340575576, -0.002673500217497349, 0.02308724634349346, 0.011627882719039917, 0.017343521118164062, 0.040500983595848083, 0.06813827157020569, 0.009458187036216259, -0.02390175871551037, -0.003939155954867601, -0.02114926464855671, -0.02620486542582512, 0.011157430708408356, -0.008812193758785725, -0.019604498520493507, 0.03567007556557655, -0.02068583481013775, -0.00800470169633627, -0.0021890050265938044, -0.011143387295305729, 0.017750777304172516, -0.01593918725848198, -0.010511437430977821, 0.007941506803035736, 0.005975439678877592, 0.015040413476526737, 0.01978706195950508, 0.04179297015070915, -0.0012902315938845277, -0.008110026828944683, -0.0009514360572211444, -0.03350740298628807, 0.02400006167590618, -0.02467414177954197, 0.009191364049911499, 0.0176384299993515, -0.005750746466219425, -0.007913419976830482, 0.035529643297195435, 0.03786083683371544, 0.0031351749785244465, 0.00973203219473362, -0.03519260138273239, 0.011684056371450424, 0.008966670371592045, 0.009022844024002552, -0.012617938220500946, -0.0164868775755167, 0.006716225761920214, 0.00336337904445827, -0.0021696954499930143, 0.04232661798596382, 0.0017159201670438051, -0.0027753144968301058, -0.017301389947533607, -0.025418439880013466, -0.00026353198336437345, 0.009366905316710472, 0.0009918106952682137, -0.02798837050795555, -0.005912244785577059, 0.0218373890966177, 0.05302763730287552, 0.03255245462059975, 0.02008197084069252, 0.026022301986813545, -0.009254558943212032, 0.0031597507186233997, 0.0021187884267419577, 0.001987132243812084, -0.014942110516130924, -0.026949163526296616, 0.029013533145189285, -0.03128855302929878, -0.002799890236929059, -0.002124054590240121, 0.009142212569713593, 0.03159750625491142, 0.018579334020614624, 0.019506193697452545, 0.02661212347447872, 0.004420140292495489, 0.021753128618001938, 0.008713890798389912, 0.02965952642261982, -0.03673736751079559, -0.0264436025172472, -0.013916946947574615, -0.04086611047387123, 0.035838596522808075, -0.017666516825556755, -0.0020924571435898542, -0.00029161866405047476, 0.013320105150341988, -0.007737878710031509, 0.01425398699939251, 0.0072393398731946945, -0.007808095309883356, 0.006751334294676781, 0.004153316840529442, -0.015265107154846191, -0.018214207142591476, -0.04109080135822296, -0.0026945651043206453, 0.00874197669327259, -0.016669441014528275, 0.03923708200454712, -0.0003675404586829245, -0.037608057260513306, 0.04229852929711342, 0.019351717084646225, -0.02106500416994095, -0.0012647779658436775, -0.043730951845645905, -0.015826839953660965, 0.003742549102753401, -0.02675255574285984, 0.02062966115772724, 0.024730315431952477, 0.025558872148394585, 0.044489290565252304, 0.017062654718756676, -0.017975470051169395, -0.0023645467590540648, -0.012983065098524094, -0.009135190397500992, 0.0314009003341198, -0.005125817842781544, -0.011894705705344677, 0.01801760122179985, -0.0015552995027974248, 0.019674714654684067, 0.031457073986530304, -0.023283852264285088, 0.0009646016987971961, -0.01731543429195881, 0.018593378365039825, 0.009598620235919952, 0.04047289490699768, 0.01475954707711935, 0.009907574392855167, 0.007091884966939688, -0.007457011844962835, -0.023115331307053566, 0.029097793623805046, 0.0306706465780735, -0.05457240715622902, 0.005620845593512058, -0.022904682904481888, 0.001190172741189599, 0.02506735548377037, 0.00664951978251338, 0.007555315271019936, 0.005543607287108898, 0.017680561169981956, -0.014647199772298336, -0.016655396670103073, 0.012280898168683052, 0.057521507143974304, 0.018747854977846146, 0.016613267362117767, -0.0020801692735403776, 0.026696382090449333, -0.009352861903607845, 0.004493867512792349, -0.016543051227927208, -0.01985727809369564, -0.0009268602007068694, -0.01894446089863777, -0.021345872431993484, 0.017118826508522034, -0.030389780178666115, 0.0022908193059265614, -0.0034002428874373436, -0.02453370951116085, 0.011143387295305729, 0.0039005368016660213, -0.010216527618467808, 0.0003438423154875636, -0.0012691665906459093, 0.033451229333877563, -0.0013683476718142629, -0.008369828574359417, 0.025629090145230293, -0.019520238041877747, 0.007941506803035736, -0.01004800759255886, -0.007562336977571249, -0.00329667329788208, 0.020334752276539803, -0.013734383508563042, -0.011002954095602036, 0.004929210990667343, -0.011740229092538357, -0.0035108341835439205, 0.009100082330405712, -0.011852576397359371, -0.0023347046226263046, -0.010750174522399902, 0.03901238739490509, 0.03173794224858284, 0.0050661335699260235, 0.00835578516125679, 0.007730857003480196, -0.04145592823624611, 0.01793334074318409, -0.023817498236894608, -0.015391496941447258, -0.04252322390675545, -0.008482174947857857, 0.004760690964758396, 0.02857819013297558, -0.022342948243021965, 0.006200133357197046, 0.004497378598898649, 0.019646627828478813, 0.022960854694247246, -0.012056204490363598, -0.035922855138778687, 0.026401473209261894, 0.003714462509378791, -0.00461674714460969, -0.0030245836824178696, 0.04392755776643753, 0.024800533428788185, -0.04791586473584175, 0.01126977801322937, -0.021416088566184044, 0.03923708200454712, -0.00824343878775835, -0.01084145624190569, 0.030923428013920784, 0.03701823577284813, -0.021893562749028206, 0.012358136475086212, -0.004378010053187609, 0.008756020106375217, -0.017062654718756676, 0.007379773538559675, 0.026162736117839813, 0.01436633337289095, -0.01878998428583145, 0.015574060380458832, -0.04224235564470291, 0.010469307191669941, -0.029771873727440834, -0.00968990195542574, -0.017610345035791397, -0.013945032842457294, -0.012105355970561504, 0.041118890047073364, 0.005519031081348658, 0.030979599803686142, -0.012287919409573078, -0.014478679746389389, -0.028423713520169258, -0.025320135056972504, 0.034687042236328125, 0.01345351617783308, -0.0099707692861557, -0.03210306912660599, 0.030445953831076622, 0.031232381239533424, -0.010750174522399902, 0.01862146519124508, -0.0059473528526723385, -0.038815781474113464, 0.0008799028000794351, 0.02482861839234829, -0.040276288986206055, -0.008608565665781498, 0.0038864933885633945, 0.010097159072756767, -0.042495135217905045, -0.02116330899298191, 0.0436747781932354, -0.014141639694571495, -0.0023382154759019613, 0.013657145202159882, 0.006744312588125467, -0.006154492497444153, 0.021865475922822952, 0.008250460028648376, 0.008264503441751003, 0.006828572601079941, -0.019337674602866173, -0.035136427730321884, -0.0036688216496258974, -0.03496790677309036, -0.02345237135887146, 0.007716813590377569, 0.005339978728443384, -0.02391580305993557, -0.006990070920437574, 0.022890638560056686, 0.0027050976641476154, 0.010202484205365181, 0.03578242287039757, -0.01280050165951252, -0.0024663610383868217, 0.005220610182732344, 0.0030754907056689262, 0.002231135033071041, 0.03378826752305031, -0.0003791700873989612, 0.001797547098249197, 0.003970753401517868, 0.012617938220500946, -0.018888287246227264, -0.010342917405068874, 0.04760691151022911, 0.018354641273617744, -0.023943889886140823, 0.04148401692509651, -0.004718561191111803, -0.014647199772298336, 0.010750174522399902, 0.0039005368016660213, -0.0011067904997617006, -0.02845180034637451, -0.0003526194195728749, -0.01863550767302513, 0.01738565042614937, 0.015883013606071472, -0.010644849389791489, 0.025811653584241867, -0.001271799672394991, 0.020039841532707214, 0.02560100331902504, -0.028929272666573524, 0.030867254361510277, -0.014232921414077282, -0.007983637042343616, 0.004230555146932602, 0.02114926464855671, -0.03634415566921234, 0.023705152794718742, 0.0044271619990468025, 0.024632012471556664, -0.03904047608375549, 0.03199072182178497, -0.004128741100430489, 0.016206011176109314, 0.010371004231274128, -0.01533532328903675, -0.0134184081107378, 0.0021960267331451178, 0.02444944903254509, -0.010876564309000969, -0.0283534973859787, -0.007604466751217842, 0.038197875022888184, 0.031007686629891396, 0.03081108070909977, 0.004472802858799696, 0.0021117667201906443, -0.0026278593577444553, 0.042354702949523926, 0.01786312460899353, 0.008173221722245216, 0.0036372242029756308, 0.023017028346657753, 0.024477535858750343, 0.013762470334768295, -0.013994185253977776, 0.01886020042002201, 0.0287326667457819, -0.009872465394437313, -0.006874213460832834, -0.010932737961411476, -0.018818071112036705, 0.03763614222407341, 0.02714576944708824, -0.0038373416755348444, -0.010139289312064648, -0.04991002008318901, 0.010813369415700436, -0.010090137831866741, 0.004799310117959976, -0.03802935406565666, -0.0064318482764065266, -0.01709074154496193, -0.008657717145979404, 0.0014482190599665046, -0.017048610374331474, 0.018832113593816757, 0.01353075448423624, 0.007144547533243895, 0.024786489084362984, -0.00165272515732795, 0.03538920730352402, 0.02162673883140087, -0.006621433421969414, 0.009149233810603619, 0.02085435576736927]" -How Density Manages Large Real Estate Portfolios Using TimescaleDB,"This is an installment of our “Community Member Spotlight” series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition, part of the team atDensity—Shane Steidley, director of software, andBrock Friedrich, software engineer—explain how they are using TimescaleDB to query data from IoT devices to help companies with substantial real estate footprints make data-driven decisions to optimize their real estate usage while reducing carbon emissions.About the CompanyShane:Density builds technology that helps companies understand how people use physical space. Founded in 2014, our platform provides workplace analytics enabled by custom-built sensors which capture the complexities of how people move through and use space without invading privacy. These sensors feed raw data to Density’s analytics platform—a fast, data-rich system that provides comprehensive insights into how spaces are used, allowing companies to easily compare a space's performance against its intended purpose, another space, or portfolio benchmarks.The platform can reveal if employees are choosing focus space or collaborative space, which floors are the most popular (and why), and how one office’s occupancy rate compares to others in a portfolio or against industry benchmarks. Today, our technology is helping inform decisions for the workplaces of some of the largest companies in the world, spanning 32 countries, with more than 1.25 billion square feet under management. Our growing list of customers ranges from Fortune 100 to high-growth tech companies that see the value in understanding the performance of their office spaces to lower operational costs, improve employee experience, and reduce their carbon footprint.Our ultimate mission is to measure and improve humanity’s footprint on the world—optimizing commercial real estate portfolios is just the first step. Thirty-nine percent of CO2 emissions are directly or indirectly linked to real estate construction, so if we can help companies measure and optimize their use of real estate, we can have an outsized impact on the different issues that are impacting climate.A tweet from the Density Team on Earth DayWith Density, customers can understand how their space is used and right-size it. When we started, we needed to sell the problem and then sell our solution. Post-COVID, everybody understands the problem and the data that they could have access to, and how Density can provide value.Brock: Density",https://www.timescale.com/blog/density-measures-large-real-estate-portfolios-using-timescaledb/,472,"[0.034271880984306335, 0.01786038652062416, 0.04182283952832222, 0.05698048323392868, 0.06313827633857727, 0.04115412011742592, -0.028197677806019783, 0.043216004967689514, -0.03605513274669647, -0.026902033016085625, 0.013646059669554234, 0.0001965669944183901, -0.01244793739169836, -0.04098694026470184, 0.02245783433318138, 0.022081678733229637, 0.0118419099599123, -0.023224076256155968, -0.05151927471160889, 0.027124939486384392, -0.012566355988383293, 0.006931000389158726, 0.01873808167874813, 0.0006835220265202224, -0.017776796594262123, -0.0022569287102669477, -0.023850999772548676, 0.061745110899209976, 0.04934593662619591, -0.04494353011250496, -0.0006639306084252894, -0.04020676761865616, -0.01616072468459606, -0.0031293989159166813, 0.027250325307250023, -0.010170111432671547, -0.016606537625193596, 0.0030597406439483166, 0.034355469048023224, -0.0011093083303421736, -0.020786035805940628, 0.022722534835338593, 0.0028646972496062517, 0.034884873777627945, -0.03145768493413925, -0.018933124840259552, -0.046448152512311935, 0.0004246979078743607, 0.03254435583949089, 0.0270552821457386, -0.027584685012698174, 0.022569287568330765, -0.006328456103801727, -0.12282150238752365, -0.01051840279251337, -0.0219841580837965, -0.028866397216916084, 0.04711687192320824, -0.027417505159974098, 0.0030893452931195498, 0.008352029137313366, -0.04101480543613434, 0.04109839349985123, 0.05912595987319946, -0.006419011857360601, 0.020451676100492477, -0.023460913449525833, 0.07032701373100281, 0.0009856648975983262, 0.0345226489007473, 0.07840737700462341, 0.034271880984306335, -0.010177076794207096, 0.017846455797553062, 0.03850710391998291, -0.06057485193014145, -0.032237857580184937, 0.02158013917505741, -0.049903202801942825, -0.005300996359437704, -0.006380699574947357, -0.026498015969991684, -0.010267633013427258, 0.022987237200140953, -0.009696434251964092, -0.03638949245214462, 0.005767706781625748, -0.04207361117005348, -0.03059392236173153, 0.03783838450908661, -0.006349353585392237, 0.041850704699754715, 0.011988192796707153, -0.008414722047746181, 0.03051033243536949, -0.005670185200870037, 0.018431585282087326, 0.031234778463840485, 0.03694675862789154, -0.002906492445617914, 0.003956591244786978, -0.030064519494771957, 0.017846455797553062, 0.018724149093031883, 0.0026574640069156885, -0.008574935607612133, -0.0005594432004727423, 0.008574935607612133, 0.05542013794183731, -0.024923738092184067, -0.10242555290460587, 0.001279971213079989, -0.011730456724762917, -0.002457196358591318, -0.012308620847761631, -0.007752967998385429, -0.030566059052944183, -0.006495635956525803, -0.004360609222203493, -0.008672458119690418, -0.037308983504772186, 0.0020793001167476177, 0.012141440995037556, 0.027556821703910828, 0.017832523211836815, -0.02591288648545742, -0.00654787989333272, -0.07545386254787445, -0.06915675848722458, -0.02042381279170513, 0.015882091596722603, 0.0019748127087950706, 0.040708307176828384, -0.04363395646214485, -0.028323061764240265, -0.04146061837673187, -0.06185656413435936, -0.008951091207563877, 0.001281712669879198, -0.02450578846037388, 0.0016857307637110353, -0.00021136939176358283, 0.048677217215299606, 0.015492004342377186, -0.02591288648545742, 0.017902182415127754, -0.011166224256157875, 0.01441926695406437, 0.010629856027662754, 0.007968909107148647, -0.003362754127010703, -0.0043954383581876755, -0.04981961101293564, -0.007230530958622694, 0.04003958776593208, -0.01989440806210041, 0.05723125487565994, 0.08882825821638107, 0.003301803255453706, -0.041237711906433105, 0.023168349638581276, 0.04357822984457016, -0.0046462081372737885, -0.0003334890934638679, -0.038339924067258835, 0.018111156299710274, 0.002956994576379657, -0.04006744921207428, -0.09233903884887695, -0.02001979388296604, -0.06620324403047562, -0.01568704843521118, -0.0028664388228207827, 0.027013486251235008, 0.01887739822268486, 0.013855034485459328, 0.02719459868967533, -0.007411642465740442, 0.02070244587957859, -0.053079620003700256, -0.06146647781133652, -0.00784352421760559, -0.021162189543247223, 0.010434812866151333, 0.002098456025123596, 0.006889205425977707, -0.08358995616436005, 0.05218799412250519, 0.027696138247847557, 0.04040181264281273, -0.05940459296107292, 0.0433274582028389, 0.02287578396499157, 0.025885021314024925, -0.008797843009233475, -0.03215426951646805, 0.04254728555679321, 0.0048691146075725555, -0.02517450787127018, -0.002218616660684347, 0.01887739822268486, 0.0264004934579134, 0.038952916860580444, -0.04385686293244362, 0.037225391715765, -0.02564818412065506, -0.004221292678266764, -0.01319328136742115, -0.06982547789812088, 0.0032216960098594427, 0.028183745220303535, -0.0037127870600670576, 0.008365960791707039, -0.010100453160703182, -0.03131837025284767, 0.024032112210989, -0.01643935777246952, -0.013646059669554234, -0.0011641642777249217, 0.03945445641875267, 0.015101918019354343, 0.10532334446907043, 0.0005777284968644381, 0.009466562420129776, -0.028392720967531204, 0.01820867881178856, 0.031513411551713943, -0.03335238993167877, 0.05405483767390251, -0.005126850679516792, -0.014725763350725174, -0.021217916160821915, -0.005687599536031485, -0.02734784595668316, 0.01353460643440485, 0.0019870027899742126, 0.02984161302447319, -0.01582636497914791, -0.03017597272992134, -0.0034010661765933037, -0.006488670129328966, 0.017038417980074883, 0.01773500256240368, -0.0035473485477268696, 0.03577649965882301, 0.0016021407209336758, -0.04703328013420105, -0.03939872980117798, 0.004384989850223064, 0.0385628305375576, 0.024408265948295593, 0.010706479661166668, -0.013966487720608711, -0.02327980287373066, -0.011180155910551548, -0.05034901574254036, -0.026498015969991684, 0.04020676761865616, 0.026609469205141068, -0.003834689036011696, 0.011382165364921093, -0.03533068671822548, -0.019100304692983627, -0.008268439210951328, 0.0017144647426903248, -0.005698048509657383, 0.01889132894575596, -0.04926234483718872, -0.007007624488323927, -0.004782042000442743, 0.019713297486305237, 0.014391403645277023, -0.0018389789620414376, -0.06776358932256699, -0.01638363115489483, 0.0023178798146545887, -0.04190643131732941, 0.024380402639508247, -0.01745636947453022, 0.011612038128077984, -0.02903357706964016, 0.012503664009273052, 0.031847771257162094, -0.019587911665439606, 0.0031363647431135178, -0.026038270443677902, -0.018584832549095154, 0.04290951043367386, -0.04154420644044876, -0.006850893143564463, 0.005158196669071913, -0.010978147387504578, -0.010936352424323559, 0.006920551415532827, 0.008303268812596798, 0.009125236421823502, 0.012900715693831444, -0.039482321590185165, -0.01288678403943777, -0.0026522395201027393, 0.034355469048023224, -0.019378937780857086, -0.0016413235571235418, -0.01961577497422695, 0.0025094400625675917, 0.00040597724728286266, -0.00041446686373092234, 0.025662114843726158, 0.01193943154066801, -0.021872704848647118, -0.0058095017448067665, 0.037392571568489075, 0.04995892941951752, -0.0453614816069603, -0.02151048183441162, 0.022207064554095268, 0.0683765783905983, 0.017484232783317566, -0.01866842247545719, -0.050655510276556015, -0.033742476254701614, -0.05990613251924515, 0.01485114824026823, -0.03363102301955223, 0.020869625732302666, -0.04282591864466667, 0.013137554749846458, 0.007390744984149933, -0.006318007130175829, -0.020674582570791245, 0.014628241769969463, 0.018459448590874672, 0.0236838199198246, -0.010142248123884201, 0.0017031453317031264, 0.007927114143967628, 0.012183235958218575, -0.040568992495536804, -0.017512096092104912, 0.031095461919903755, 0.01699662394821644, -0.036500945687294006, -0.050850555300712585, -0.019518254324793816, 0.04561224952340126, 0.0025529765989631414, -0.010030793957412243, -0.03368674963712692, -0.01207874808460474, 0.02861562743782997, -0.04987533763051033, -0.004747212864458561, -0.006115998141467571, -0.03187563642859459, -0.028671354055404663, 0.0027584685012698174, 0.022165268659591675, -0.032990168780088425, -0.010880625806748867, -0.0012085713678970933, -0.031290505081415176, 0.019044578075408936, 0.023460913449525833, 0.03466196730732918, -0.0032338863238692284, 0.015756705775856972, -0.02889426052570343, 0.032182130962610245, -0.0016700576525181532, -0.012733535841107368, 0.007195701822638512, 0.024937668815255165, -0.045166436582803726, -0.0031955742742866278, -0.06129929795861244, 0.00239450391381979, 0.07110718637704849, 0.023196212947368622, 0.005955784115940332, 0.04912303015589714, 0.04424694925546646, 0.04541720822453499, -0.020869625732302666, 0.01377144455909729, 0.01840372197329998, 0.04742336645722389, 0.009591947309672832, 0.020855693146586418, -0.06737349927425385, -0.023042963817715645, 0.06982547789812088, -0.03513564541935921, 0.001777157187461853, -0.0026383078657090664, 0.01698269136250019, -0.01677371747791767, 0.046587467193603516, 0.01820867881178856, 0.05583808943629265, -0.04003958776593208, -0.006279695313423872, -0.01820867881178856, -0.020688513293862343, -0.02063278667628765, 0.006506084930151701, 0.0020932317711412907, 0.027306051924824715, -0.005367171484977007, -0.04689396545290947, 0.0027306051924824715, -0.009571049362421036, -0.03413256257772446, 0.03471769392490387, -0.03140195831656456, 0.0020914901979267597, -0.003660543356090784, -0.0040262495167553425, 0.06514443457126617, 0.003911313135176897, 0.04201788455247879, -0.01873808167874813, 0.005220889113843441, 0.01719166710972786, -0.03290657699108124, -0.008268439210951328, 0.06575743108987808, 0.011479686945676804, 0.008254507556557655, -0.030426742509007454, -0.06876666843891144, -0.03145768493413925, -0.001041391515173018, 0.048760805279016495, 0.011214985512197018, -0.052689533680677414, 0.02665126323699951, 0.00940386950969696, -0.02280612476170063, 0.01942073181271553, -0.003211247269064188, -0.04474848881363869, -0.020451676100492477, -0.006826512981206179, -0.03937086835503578, -0.0035525730345398188, -0.0460023358464241, -0.0018076327396556735, -0.000238144290051423, 0.002140250988304615, -0.00020755994773935527, 0.011214985512197018, -0.02293151058256626, -0.04681037366390228, 0.047339778393507004, -0.059181686490774155, -0.019058508798480034, 0.004635759629309177, -0.008191815577447414, 0.03273939713835716, -0.03051033243536949, -0.03903650864958763, 0.030844692140817642, -0.03106759861111641, -0.026344766840338707, -0.019950134679675102, -0.02233244851231575, 0.018250472843647003, -0.0014262535842135549, 0.009090407751500607, -0.019239621236920357, 0.013423153199255466, 0.0009969843085855246, -0.005482107866555452, -0.02719459868967533, -0.030008792877197266, -0.0041551170870661736, 0.038479242473840714, -0.0038172744680196047, -0.019922271370887756, -0.035553593188524246, -0.01075524091720581, -0.019392868503928185, -0.039816681295633316, 0.06603606045246124, 0.03168059140443802, -0.011291609145700932, -0.008115191012620926, 0.03064964897930622, -0.012162338010966778, 0.0006395502132363617, -0.027292119339108467, 0.0035577972885221243, 0.0723889023065567, -0.016676194965839386, -0.028058361262083054, -0.02050740271806717, -0.0006917939172126353, -0.020200906321406364, 0.0104835731908679, -0.014711831696331501, 0.05115704983472824, -0.01570097915828228, -0.006798649672418833, 0.03599940612912178, -0.012580287642776966, 0.034884873777627945, -0.0206467192620039, -0.01292857900261879, -0.007746002171188593, -0.035079918801784515, -0.010887591168284416, 0.00205491972155869, 0.02956297993659973, 0.040429674088954926, -0.0002832045138347894, 0.040568992495536804, 0.008303268812596798, 0.03193136304616928, -0.020117314532399178, -0.020186973735690117, 0.0001662003342062235, -0.022374244406819344, 0.0046218279749155045, 0.04229651764035225, -0.022095611318945885, 0.0006238771020434797, -0.07077282667160034, -0.02733391523361206, -0.026553742587566376, -0.0084565170109272, 0.0005315798334777355, -0.022290654480457306, 0.00666629895567894, 0.06414135545492172, -0.023990316316485405, 0.023391256108880043, -0.006230934523046017, -0.014809353277087212, -0.013137554749846458, 0.00603937404230237, 0.014934738166630268, 0.03154127672314644, 0.0053323423489928246, 0.03059392236173153, -0.011416994035243988, 0.005555248819291592, -0.015854228287935257, -0.018626628443598747, -0.001859876443631947, 0.03544213995337486, 0.056005269289016724, -0.02050740271806717, 0.026776649057865143, -0.03165272995829582, -0.0034446027129888535, 0.03335238993167877, 0.004851700272411108, -0.021357232704758644, 0.01880773901939392, 0.015742775052785873, -0.01929534785449505, 0.0036640262696892023, -0.006004544906318188, 0.024784421548247337, -0.02591288648545742, 0.05895878002047539, 0.0196297075599432, -0.010511436499655247, -0.029869476333260536, 0.014767558313906193, -0.01024673506617546, -0.008254507556557655, 0.008156985975801945, 0.00953622069209814, 0.028977850452065468, -0.0030092382803559303, -0.01712200790643692, 0.002695776056498289, 0.0013975194888189435, -0.0023631576914340258, -0.020061587914824486, -0.0063911485485732555, 0.014391403645277023, 0.03293444216251373, -0.04472062364220619, -0.015756705775856972, 0.029005713760852814, 0.006802132353186607, 0.024603309109807014, -0.022820057347416878, -0.022847920656204224, -0.01969936490058899, -0.002897785045206547, 0.018626628443598747, 0.011591140180826187, 0.013325631618499756, 0.03499632701277733, -0.0004216503584757447, -0.013987385667860508, 0.05285671353340149, -0.0011807080591097474, 0.02354450337588787, 0.0040262495167553425, -0.035832226276397705, 0.008505277335643768, 0.016063202172517776, 0.025898953899741173, 0.017693206667900085, 0.024408265948295593, -0.008637628518044949, 0.012057851068675518, -0.013186315074563026, -0.01577063836157322, -0.04343891143798828, -0.009835750795900822, 0.008526175282895565, 0.007335018366575241, -0.012893750332295895, 0.0500982441008091, 0.011716525070369244, -0.027501095086336136, -0.04636456072330475, -0.004054112825542688, -0.031095461919903755, 0.03012024611234665, 0.012907681986689568, -0.027459299191832542, -0.044414129108190536, -0.014962601475417614, -0.001739715924486518, -0.005969715770334005, -0.017205597832798958, 0.00568411685526371, 0.007112111896276474, 0.002589547075331211, 0.027292119339108467, 0.0253834817558527, 0.05912595987319946, 0.02124577946960926, -0.009369040839374065, 0.0253834817558527, -0.0010292013175785542, 0.022583218291401863, -0.035358551889657974, 0.03416042774915695, -0.014461061917245388, -0.003883449826389551, 0.02633083611726761, 0.003004014026373625, 0.009954170323908329, -0.002648756606504321, -0.03438333421945572, 0.027835454791784286, 0.03477342054247856, 0.009584981016814709, 0.03165272995829582, -0.04207361117005348, -0.0003132446436211467, -0.021677661687135696, 0.011660798452794552, -0.04474848881363869, 0.016355767846107483, -0.0104835731908679, -0.004430267494171858, -0.03875787556171417, 0.029284346848726273, 0.048955850303173065, -0.0169130340218544, 0.029256483539938927, 0.02883853390812874, -0.017372779548168182, 0.02719459868967533, 0.033798202872276306, 0.008651560172438622, 0.010532334446907043, 0.0065095676109194756, 0.003893898567184806, -0.009487459436058998, 0.01779072917997837, 0.015714911743998528, 0.00987754575908184, 0.016634400933980942, -0.015338756144046783, -0.00869335513561964, -0.00808732770383358, -0.0030597406439483166, 0.010225838050246239, 0.020284496247768402, 0.018180815503001213, 0.0338260680437088, 0.006805615499615669, -0.005119884852319956, 0.012991271913051605, -0.026776649057865143, -0.029535116627812386, -0.041181985288858414, 0.013917727395892143, -0.004876080434769392, -0.016146792098879814, -0.08626483380794525, -0.019880477339029312, 0.016801580786705017, -0.07500804960727692, -0.021956294775009155, 0.0019399834563955665, -0.018055429682135582, -0.0040366980247199535, -0.013269905000925064, 0.06692768633365631, 0.014119735918939114, -0.012071782723069191, 0.0004177320806775242, -0.018292268738150597, 0.014321745373308659, 0.006694162264466286, 0.008059464395046234, -0.032237857580184937, 0.030872555449604988, 0.015394482761621475, 0.005133816506713629, -0.03728111833333969, -0.032182130962610245, -0.018250472843647003, -0.03463410586118698, 0.03357529640197754, -0.0023736064322292805, -0.019977997988462448, 0.02375347912311554, 0.02180304564535618, -0.02490980550646782, 0.015575594268739223, 0.03566504642367363, 0.0324886292219162, -0.024923738092184067, 0.027863318100571632, -0.02490980550646782, -0.03764334321022034, -0.003550831461325288, -0.03906437009572983, 0.0018250473076477647, -0.04845431074500084, -0.01333259791135788, 0.013409221544861794, 0.0020584026351571083, 0.020618855953216553, -0.02998092956840992, 0.016536878421902657, 0.03466196730732918, -0.006614055018872023, 0.0009351625922136009, -0.007913182489573956, 0.012858920730650425, -0.03059392236173153, -0.010943317785859108, -0.002157665556296706, 0.004405887331813574, -0.008804808370769024, 0.007404676638543606, 0.021022872999310493, 0.0351913720369339, 0.007780831307172775, 0.021426891908049583, -0.01451678853482008, 0.0030858623795211315, 0.008533140644431114, 0.015659185126423836, -0.01288678403943777, -0.013221144676208496, 0.022569287568330765, -0.03686317056417465, -0.0392594151198864, -0.02178911492228508, 0.009410835802555084, -0.0011336887255311012, 0.03689103201031685, -0.030287425965070724, -0.005314928013831377, 0.008651560172438622, -0.003225178923457861, -0.02908930368721485, 0.027180666103959084, -0.003897381480783224, 0.009180963039398193, -0.005032811779528856, -0.013423153199255466, -0.020256632938981056, 0.021426891908049583, -0.022234927862882614, -0.012043919414281845, -0.03686317056417465, -0.03031528927385807, 0.031569138169288635, -0.0264004934579134, -0.001317412476055324, 0.012566355988383293, 0.0018720666412264109, 0.019852614030241966, -0.06737349927425385, -0.007202667649835348, 0.02362809330224991, -0.02727818861603737, -0.028128018602728844, 0.009264552965760231, 0.054026972502470016, 0.028378788381814957, 0.04109839349985123, -0.0270552821457386, 0.005562214646488428, -0.032237857580184937, -0.007439505774527788, 0.008338097482919693, -0.019950134679675102, -0.002662688260897994, 0.015185507945716381, 0.02585715800523758, 0.001077091321349144, 0.02836485765874386, -0.008909296244382858, -0.01437747199088335, -0.011953363195061684, 0.0344947874546051, -0.007530061528086662, 0.007968909107148647, 0.004061078652739525, 0.018905261531472206, 0.05341397970914841, -0.04093121364712715, 0.017498163506388664, 0.03524709865450859, -0.004642725456506014, -0.005635356064885855, -0.02610792964696884, 0.01847337931394577, 0.018320132046937943, 0.0024049526546150446, -0.027765795588493347, 0.011751354672014713, -0.030203836038708687, -0.01840372197329998, 0.025606388226151466, -0.05163072794675827, 0.03613872453570366, -0.013882897794246674, -0.0029639604035764933, -0.0005437700892798603, -0.002035763580352068, 0.05338611826300621, 0.037726931273937225, -0.002141992561519146, -0.01391076110303402, -0.007634548936039209, 0.0038869327399879694, 0.06625896692276001, -0.03494060039520264, 0.0029691848903894424, -0.005781638436019421, 0.012238962575793266, -0.008567970246076584, 0.01296340860426426, -0.0004344936169218272, -0.02680451236665249, -0.03903650864958763, 0.013283836655318737, -0.010204940102994442, 0.03418828919529915, 0.008623696863651276, 0.030343152582645416, 0.014948669821023941, 0.03873001039028168, 0.018710218369960785, 0.0013713976368308067, 0.025815363973379135, -0.002136768074706197, 0.03371461480855942, -0.01211357768625021, 0.011772251687943935, -0.004472062457352877, 0.013882897794246674, 0.015143712982535362, -0.012043919414281845, 0.04795277118682861, -0.028072291985154152, -0.0074743349105119705, -0.03443906083703041, 0.008512243628501892, -0.006502601783722639, 0.0013487586984410882, 0.03884146362543106, 0.005255718249827623, -0.017637480050325394, 0.00011096348316641524, -0.0003341421252116561, -0.0038033428136259317, 0.00362919713370502, -0.011012976057827473, 0.030677512288093567, -0.012803194113075733, 0.021440822631120682, 0.01400828268378973, -0.009278484620153904, 0.021621935069561005, -0.0358600914478302, -0.0038451377768069506, 0.006739439908415079, -0.012782297097146511, -0.0385628305375576, 0.007530061528086662, -0.031039735302329063, -0.0025390449445694685, 0.014168497174978256, 0.05135209485888481, 0.008888398297131062, 0.017679275944828987, -0.008916261605918407, -0.04187856614589691, 0.02063278667628765, -0.022220995277166367, 0.053971245884895325, -0.031290505081415176, 0.0015664409147575498, 0.01113836094737053, 0.01712200790643692, 0.04993106424808502, 0.04708900675177574, 0.006704610772430897, -0.022109542042016983, -0.010163145139813423, -0.0017588719492778182, 0.07422787696123123, 0.02922862023115158, 0.06748495250940323, 0.012698707170784473, 0.006070720497518778, 0.020465606823563576, 0.016731921583414078, 0.011214985512197018, 0.005294030532240868, 0.018626628443598747, -0.004482511430978775, -0.009076476097106934, -0.0044894772581756115, 0.018459448590874672, -0.002676619915291667, -0.009717332199215889, -0.011180155910551548, -0.032516490668058395, 0.033045895397663116, -0.015394482761621475, 0.0061682420782744884, -0.021217916160821915, 0.03098400868475437, -0.00822664424777031, 0.042519424110651016, -0.032711535692214966, -0.0013426636578515172, -0.00798284076154232, -0.013339563272893429, 0.006185656413435936, 0.052884578704833984, 0.004322297405451536, -0.0046218279749155045, 0.017553890123963356, -0.011570243164896965, -0.007056385278701782, 0.031039735302329063, -0.001368785509839654, -0.008303268812596798, -0.003263491205871105, -0.021886635571718216, -0.01512978132814169, 0.01499046478420496, 0.03207067772746086, 0.012420074082911015, -0.011549345217645168, 0.006248348858207464, 0.008156985975801945, 0.017846455797553062, -0.01630004122853279, -0.009961135685443878, 0.01908637210726738, 0.03870214894413948, 0.025146644562482834, -0.011827978305518627, -0.021956294775009155, 0.003657060442492366, -0.008163952268660069, 0.008003737777471542, 0.0392315499484539, 0.00627621216699481, 0.029145030304789543, -0.00460441317409277, 0.012301654554903507, 0.025759637355804443, 0.02782152220606804, 0.011834944598376751, -0.018389789387583733, 0.024854078888893127, -0.0014010024024173617, -0.0018685837276279926, 0.03134623169898987, -0.01241310779005289, -0.016007475554943085, 0.04001172259449959, -0.000501104339491576, -0.005973198916763067, -0.02247176505625248, 0.003260008292272687, -0.006669781636446714, -0.010650753043591976, -0.030231699347496033, -0.013750547543168068, 0.006662815809249878, 0.0046322764828801155, -0.013478879816830158, 0.00305277481675148, -0.013743581250309944, -0.02482621558010578, -0.01976902410387993, -0.04017890244722366, -0.013938624411821365, 0.054639965295791626, 0.0021994607523083687, 0.010601992718875408, -0.007697241380810738, 0.023906726390123367, -0.023795273154973984, 0.02571784146130085, -0.0062971096485853195, 0.015032259747385979, 0.013520674780011177, 0.012009089812636375, 0.03728111833333969, 0.0043954383581876755, -0.0169269647449255, -0.010699514299631119, -0.017177734524011612, 0.023042963817715645, -0.0077111730352044106, -0.013687854632735252, 0.015422346070408821, -0.015199439600110054, -0.03822847083210945, -0.006593157537281513, 0.029117166996002197, -0.005600526928901672, 0.01536661945283413, -0.012287722900509834, -0.010950284078717232, 0.017498163506388664, -0.009222758002579212, -0.00671854242682457, 0.016146792098879814, 0.030008792877197266, -0.008407755754888058, -0.007038970477879047, 0.012601185590028763, -0.042129337787628174, -0.01833406277000904, 0.017846455797553062, 0.0017971839988604188, 0.006875273771584034, -0.0011066962033510208, -0.020186973735690117, 0.015074054710566998, -0.0029395800083875656, 0.01650901511311531, 0.01018404308706522, -0.025801431387662888, 0.019601844251155853, 0.022820057347416878, -0.005429863929748535, 0.014586446806788445, 0.03850710391998291, -0.05188149958848953, -0.006213519722223282, -0.010344256646931171, -0.02158013917505741, -0.02043774351477623, -0.009619810618460178, 0.009334211237728596, 0.00920186098664999, 0.00681606400758028, -0.010372119955718517, -0.005729394499212503, 0.0031886084470897913, 0.0031172086019068956, -0.026024339720606804, -0.00076319370418787, -0.02057706005871296, -0.014474993571639061, 0.03388179466128349, -0.016188587993383408, -0.01826440542936325, -0.008038567379117012, 0.01780465990304947, 0.011688661761581898, 0.0027288636192679405, 0.008630662225186825, -0.02645622007548809, 0.005349757149815559, 0.03145768493413925, 0.04976388439536095, 0.01309575978666544, -0.020340222865343094, -0.009550152346491814, -0.043968316167593, 0.028977850452065468, -0.009766092523932457, -0.014266018755733967, 0.008916261605918407, 0.034216154366731644, -0.0033401153050363064, 0.007516129873692989, 0.03987240791320801, 0.030343152582645416, 0.025606388226151466, 0.025940749794244766, 0.013931659050285816, 0.022165268659591675, 0.03140195831656456, 0.011012976057827473, -0.021608002483844757, 0.0264004934579134, 0.02354450337588787, -0.007056385278701782, 0.0015507678035646677, 0.033129483461380005, 0.0067742690443992615, 0.007543993182480335, 0.02110646292567253, 0.022987237200140953, -0.02280612476170063, 0.006412046030163765, 0.013701786287128925, -0.006951897870749235, 0.004677554592490196, -0.01752602681517601, -0.015937818214297295, -0.011054771021008492, -0.02254142425954342, -0.02612186037003994, -0.002920424100011587, -4.318269930081442e-05, 0.006432943511754274, 0.017832523211836815, 0.013318666256964207, 0.0033105104230344296, 0.07484087347984314, -0.004266570322215557, 0.007195701822638512, -0.0030440674163401127, 0.013207213021814823, -0.009975067339837551, -0.008958056569099426, 0.03262794390320778, -0.005384586285799742, 0.024659035727381706, -0.02010338380932808, -0.02936793677508831, -0.028949987143278122, -0.0028664388228207827, 0.0006495636189356446, -0.02333552949130535, -0.0014750143745914102, 0.015338756144046783, 0.012573322281241417, -0.0050153969787061214, 0.015115849673748016, 0.003761547850444913, -0.0019068957772105932, -0.043884724378585815, -0.039621636271476746, -0.007690275553613901, -0.005513453856110573, -0.014391403645277023, -0.02003372460603714, 0.007133009377866983, 0.011786183342337608, -0.011897636577486992, 0.04182283952832222, 0.010713445954024792, 0.00808036234229803, 0.015352687798440456, -0.007300189230591059, -0.0067359572276473045, 0.020674582570791245, 0.005412449594587088, -0.02001979388296604, -0.015882091596722603, -0.004566101357340813, -0.014461061917245388, -0.017748933285474777, 0.02477048896253109, -0.025968613103032112, -0.025634251534938812, 0.012601185590028763, -0.04176711291074753, -0.0297858864068985, 0.004656657110899687, 0.006443392019718885, -0.014293882064521313, 0.0005886125727556646, -0.00047585321590304375, 0.06503298133611679, 0.03945445641875267, -0.008763013407588005, 0.016216451302170753, -0.026428356766700745, -0.015505935996770859, -0.02259715087711811, 0.019044578075408936, -0.031513411551713943, -0.04006744921207428, -0.0033557882998138666, -0.004684520419687033, 0.0032513008918613195, -0.044832076877355576, -0.0033418566454201937, 0.03605513274669647, 0.025118781253695488, 0.009194894693791866, 0.004437233321368694, 0.019643638283014297, 0.011521481908857822, 0.038005564361810684, 0.005541317164897919, -0.06369554251432419, -0.029925202950835228, 0.026344766840338707, -0.01976902410387993, 0.014447130262851715, -0.015589525923132896, -0.002169855870306492, 2.9114989956724457e-06, -0.002039246493950486, -0.010128316469490528, 0.016077134758234024, 0.0008820481598377228, -0.02443612925708294, 0.008999851532280445, 0.0018616179004311562, -0.00229175784625113, -0.005548282992094755, -0.017484232783317566, -0.02117612212896347, -0.018529105931520462, -0.04240797087550163, 0.013464948162436485, 0.02340518683195114, 0.006593157537281513, 0.015575594268739223, 0.0012756175128743052, -0.01684337481856346, -0.012733535841107368, -0.03845137730240822, -0.020005861297249794, -0.006328456103801727, -0.03622231259942055, 0.009153099730610847, 0.02307082712650299, -0.0022499628830701113, 0.0011267228983342648, 0.04756268486380577, -0.011458788998425007, -0.012545458972454071, 0.0009055578266270459, -0.027932975441217422, 0.019253551959991455, 0.014391403645277023, -0.029758023098111153, -0.004876080434769392, 0.012942510657012463, -0.0025233717169612646, 0.032182130962610245, 0.008839637972414494, 0.012984306551516056, 0.012907681986689568, 0.020061587914824486, -0.0018093741964548826, 0.06547879427671432, 0.014906874857842922, -0.024533651769161224, 0.015993544831871986, -0.016940897330641747, -0.015714911743998528, 0.0038451377768069506, -0.0031154672615230083, -0.03162486478686333, 0.007216599304229021, -0.01787431910634041, -0.003437636885792017, 0.02984161302447319, -0.030371015891432762, 0.006457323674112558, 0.015338756144046783, 0.026358699426054955, 0.032850850373506546, -0.023837069049477577, 0.010065623559057713, 0.012907681986689568, 0.02327980287373066, -0.014363540336489677, -0.025258097797632217, 0.006795166525989771, -0.0077111730352044106, -0.012023021467030048, -0.020061587914824486, 0.0022447386290878057, -0.0046078963205218315, -0.012865887023508549, -0.006575743202120066, 0.02001979388296604, -0.029340073466300964, 0.015185507945716381, -0.0351913720369339, -0.026205450296401978, 0.02842058427631855, -0.0030127211939543486, -0.03012024611234665, -0.015269097872078419, -0.0005794699536636472, 0.013562469743192196, -0.03240503743290901, -0.010441778227686882, 0.007718138862401247, -0.02110646292567253, -0.007300189230591059, 0.018793808296322823, 0.038813602179288864, 0.009703400544822216, 0.03661239892244339, 0.01052536815404892, 0.03683530539274216, -0.02245783433318138, -0.02463117241859436, 0.016467221081256866, -0.0069867270067334175, 0.01705235056579113, 7.412077684421092e-05, -0.01441926695406437, 0.011291609145700932, 0.01677371747791767, 0.0056910826824605465, 0.004318814259022474, 0.004597447346895933, -0.03399324789643288, 0.03909223526716232, -0.01866842247545719, 0.0007231401978060603, -0.042463697493076324, -0.041237711906433105, 0.023377323523163795, 0.016759784892201424, 0.0013914244482293725, -0.01160507183521986, 0.03262794390320778, 0.009271519258618355, -0.01154237985610962, -0.004949221853166819, -0.005126850679516792, 0.04324387013912201, -0.006098583806306124, -0.026943828910589218, -0.014962601475417614, 0.054444923996925354, 0.04538934305310249, -0.04159993305802345, 0.0074743349105119705, -0.016606537625193596, 0.02159407176077366, -0.02024270035326481, 0.028922123834490776, 0.02105073630809784, 0.05475141853094101, -0.03012024611234665, 0.020786035805940628, 0.009146134369075298, 0.00657922588288784, -0.013834137469530106, 0.027974771335721016, 0.0034411197993904352, -0.034550514072179794, 0.0016273919027298689, -0.00906950980424881, -0.012559390626847744, 0.022513560950756073, -0.027626479044556618, -0.017637480050325394, -0.016146792098879814, 0.03162486478686333, 0.0025251132901757956, 0.012559390626847744, -0.019239621236920357, 0.004179497715085745, 0.03672385215759277, 0.023976385593414307, 4.4298321881797165e-05, -0.007920147851109505, 0.005680633708834648, -0.009988998994231224, -0.0009874063543975353, -0.014335677027702332, 0.03939872980117798, 0.03892505541443825, -0.0018964470364153385, 0.0010544523829594254, 0.03240503743290901, -0.011765286326408386, 0.02633083611726761, 0.02245783433318138, -0.018013635650277138, -0.035079918801784515, -0.006819547154009342, 0.023433050140738487, -0.02950725331902504, -0.017080213874578476, 0.04017890244722366, -0.007160872686654329, -0.025355618447065353, 0.006345870438963175, 0.011709559708833694, -0.015868159011006355, 0.00856100395321846, 0.010351222939789295, 0.0005929662147536874, 0.008379892446100712, -0.00043427592027001083, -0.019434664398431778, -0.0028525071684271097, -0.01248973235487938, -0.011047805659472942, 0.0025251132901757956, -0.001725784270092845, -0.006833478808403015, 0.013715717941522598, 0.020604923367500305, 0.0018215643940493464, -0.015756705775856972, 0.049095164984464645, 0.011082634329795837, 0.0022708603646606207, -0.009473527781665325, -0.00798284076154232, -0.03243290260434151, 0.01875201240181923, 0.006540914066135883, -0.011646866798400879, -0.012712638825178146, 0.008365960791707039, 0.0032077643554657698, -0.02626117691397667, 0.0039182789623737335, 0.014091872610151768, 0.005959267262369394, 0.009821819141507149, 0.014461061917245388, 0.0009935013949871063, 0.01617465540766716, -0.00808036234229803, -0.02821160852909088, -0.0010379086015745997, 0.008944124914705753, -0.007077282760292292, 0.02626117691397667, 0.017303120344877243, 0.030148109421133995, 0.01765141263604164, 0.02449185587465763, 0.015171576291322708, 0.018166882917284966, -0.023196212947368622, 0.03499632701277733, 0.011660798452794552, 0.01942073181271553, -0.0068787564523518085, 0.009703400544822216, 0.006133412942290306, 0.02869921736419201, -0.009236689656972885, 0.010044725611805916, -0.018793808296322823, 0.03884146362543106, -0.009968101978302002, -0.010156179778277874, 0.042603012174367905, 0.013262939639389515, -0.017776796594262123, -0.006004544906318188, 0.025968613103032112, -0.001473272917792201, 0.005147748161107302, -0.004827319644391537, 0.02571784146130085, 0.010476607829332352, 0.007704207208007574, 0.004419818986207247, -0.00037027738289907575, 0.012064816430211067, 0.05745416134595871, 0.008700321428477764, -0.02003372460603714, -0.046113792806863785, -0.008839637972414494, 0.04664319381117821, 0.022346381098031998, 0.004081976134330034, 0.009626775979995728, 0.00749523239210248, 0.0019713297951966524, 0.0007649351609870791, 0.010023828595876694, -0.024617241695523262, 0.013325631618499756, 0.007122560404241085, 0.005492556374520063, -0.011988192796707153, -0.006070720497518778, 0.018960988149046898, 0.013005203567445278, 0.02382313646376133, -0.020395949482917786, -0.0061543104238808155, -0.04993106424808502, -0.008588867262005806, 0.02240210771560669, 0.012879818677902222, 0.0015176801243796945, 0.021343301981687546, 0.012482766062021255, 0.029813749715685844, 0.018710218369960785, 0.012622082605957985, -0.015296961180865765, -0.023739546537399292, 0.01935107447206974, -0.0009473527898080647]" -How Density Manages Large Real Estate Portfolios Using TimescaleDB,"also provides that value while maintaining the anonymity of each person that walks underneath our sensors.Shane: Privacy is very important to us; it’s one of our core tenets. And because of this, we don’t use cameras—we use other sensor types, namely infrared and radar, that don’t capture any personally identifiable information (PII).About the TeamShane: Density was born out of a web development consultancy. The consultancy founders got tired of walking to their favorite coffee shop during the cold, harsh winter in upstate New York only to find a long line. This unpleasant experience gave them the idea to create an occupancy sensor.As you might expect, given the company’s origin, the Density engineering team started with 4-5 engineers with a heavy web development background. We have since grown our engineering team into a team capable of performing what I call true full-stack development. We have an electrical engineering team that designs our hardware and lays out the boards, and our devices are manufactured in Syracuse, NY, where we also have an R&D lab. Our team includes experts in mechanical design and embedded software, and we now have a backend system with multiple pipelines (whose data typically ends up in TimescaleDB) and multiple React-based frontend applications.Brock: As a team, there are many different daily routines. It’s a mix of running production systems like Shane mentioned, live data pipelines, running historical analysis, or writing new features.Shane:And we’re hiring! If you are interested in joining the Density Team,please check out our jobs page!About the ProjectShane: We use different types of data at different stages. Our entry sensors generate infrared data that is very dense. It’s not feasible to send this dense data to the cloud, so we have to do all processing and machine learning at the edge (on the device). The results of this edge processing are +1/-1 counts that can be aggregated in our pipelines and TimescaleDB.Our radar-based sensors generate sparse data, so we do less processing at the edge and more processing in the backend. That data has to go through a pipeline and get transformed before it makes sense to insert it into TimescaleDB and perform any aggregations. TimescaleDB really provides value when it comes to querying the data, allowing customers to slice the data up in multiple dimensions. That is something that just",https://www.timescale.com/blog/density-measures-large-real-estate-portfolios-using-timescaledb/,474,"[0.03531432896852493, 0.03337012603878975, 0.02036629617214203, 0.02305949106812477, 0.05207907035946846, 0.011792690493166447, -0.0011852451134473085, 0.004629428032785654, -0.01992008648812771, -0.030230721458792686, 0.0282865222543478, -0.010055659338831902, -0.02903551608324051, -0.01128273643553257, 0.024095335975289345, 0.01827867142856121, 0.009035751223564148, -0.03614300489425659, -0.05810290575027466, 0.001285841572098434, 0.004577635787427425, 0.0026692915707826614, 0.015282689593732357, -0.018438031896948814, -0.00716326292604208, -0.021832413971424103, 0.013752827420830727, 0.05517067015171051, 0.03375259414315224, -0.044557247310876846, -0.003264901926741004, -0.03744976222515106, -0.0204619113355875, 0.006725020706653595, 0.029864192008972168, -0.01689223200082779, -0.005629416089504957, 0.018326478078961372, 0.02559332549571991, 0.009051687084138393, -0.01733844168484211, 0.006430203560739756, -0.04723450541496277, 0.027537526562809944, -0.0392027273774147, -0.04854126274585724, -0.03270081430673599, -0.009920202195644379, -0.031441863626241684, 0.040541358292102814, -0.056668657809495926, -9.76551109488355e-06, -0.023091362789273262, -0.016732871532440186, -0.0063186511397361755, -0.0013635298237204552, -0.011633330024778843, 0.013203032314777374, -0.010222988203167915, 0.03176058456301689, 0.01368908304721117, -0.025035563856363297, 0.016318533569574356, 0.04293176904320717, -0.003864496713504195, -0.005394359119236469, -0.03161716088652611, 0.05080418661236763, -0.018438031896948814, 0.046660806983709335, 0.07611066102981567, 0.0018635239684954286, -0.0007131390739232302, 0.002571683144196868, 0.021402139216661453, -0.021131226792931557, -0.04044574126601219, 0.026151088997721672, -0.03866090252995491, 0.011681138537824154, -0.003326654201373458, -0.013991868123412132, -0.005398343317210674, -0.013880315236747265, -0.012390293180942535, -0.06167258322238922, -0.004334610421210527, -0.050612952560186386, -0.040573231875896454, 0.04997551068663597, -0.01998382993042469, 0.06262874603271484, 0.0026254672557115555, -0.00457365158945322, 0.021991774439811707, -0.003986008930951357, 0.03164903074502945, 0.02825464867055416, 0.0417843721807003, -0.010748878121376038, -0.007474015932530165, -0.046214599162340164, -0.00105974858161062, -0.01196798775345087, 0.011489905416965485, -0.005685192532837391, -0.025051498785614967, 0.016669128090143204, 0.005681208334863186, 0.0011673170374706388, -0.09466024488210678, -0.024175016209483147, 0.02436624839901924, -0.011649265885353088, -0.02299574762582779, 0.0037469679955393076, -0.03907524049282074, -0.017099400982260704, -0.007003901991993189, -0.00031946838134899735, -0.029609214514493942, 0.026581361889839172, 0.006529803853482008, 0.007768833544105291, 0.0099759791046381, -0.0256251972168684, 0.003721072105690837, -0.06865258514881134, -0.07496326416730881, -0.0337207205593586, 0.05019861459732056, -0.03464501351118088, 0.03964893892407417, -0.023091362789273262, 0.00036603157059289515, -0.04117880016565323, -0.031059397384524345, -0.009697097353637218, -0.003191197756677866, -0.00663737254217267, 0.012724950909614563, -0.005744952708482742, 0.06151322275400162, 0.011888307519257069, -0.010517804883420467, 0.03439003601670265, -0.04615085572004318, 0.035792410373687744, 0.024860266596078873, 0.005171254277229309, 0.005517863668501377, 0.02605547197163105, -0.05431012064218521, -0.036270491778850555, 0.027904056012630463, 0.016175109893083572, 0.07470829039812088, 0.0945965051651001, -0.02908332459628582, -0.047585099935531616, 0.008605477400124073, 0.04439788684248924, -0.017290635034441948, -0.024127207696437836, -0.020270679146051407, 0.014119356870651245, -0.021848350763320923, -0.06450920552015305, -0.07897915691137314, -0.012732918374240398, -0.06304308772087097, 0.001099588698707521, -0.04133816063404083, 0.03910711035132408, 0.03563304990530014, -0.016382278874516487, 0.01956949196755886, -0.04066884517669678, 0.01565718650817871, -0.08216636627912521, -0.047935694456100464, 0.01544205006211996, -0.004633411765098572, 0.014159196987748146, -0.011896274983882904, 0.012087508104741573, -0.01610339805483818, 0.0348999910056591, 0.01819898933172226, 0.020653145387768745, -0.05979212746024132, 0.08006280660629272, 0.03897962346673012, 0.013736890628933907, 0.01496396865695715, -0.05960089713335037, 0.051441628485918045, -0.007972017861902714, -0.004207122139632702, -0.010294700041413307, 0.0625968798995018, 0.008685157634317875, 0.07604692131280899, 0.00892419833689928, 0.008956070058047771, -0.008446116000413895, 0.0168603602796793, -0.005067669786512852, -0.04745761305093765, -0.017210954800248146, -0.0004613989731296897, -0.006593548227101564, 0.012127348221838474, 0.024939946830272675, -0.009625385515391827, 0.03572866693139076, -0.03082035668194294, -0.012916183099150658, 0.02261328138411045, 0.043569210916757584, 0.015800612047314644, 0.08994317054748535, 0.00563738401979208, 0.01956949196755886, -0.04509907215833664, 0.06020646542310715, 0.05242966488003731, -0.02079656906425953, 0.05851724371314049, -0.019298579543828964, 0.01000785082578659, 0.007406287826597691, -0.009673194028437138, -0.012230932712554932, 0.026724787428975105, 0.030963780358433723, 0.03521871194243431, -0.02694789133965969, 0.008334564045071602, -0.02903551608324051, -0.022103326395154, 0.013561594299972057, -0.009577577002346516, 0.010454060509800911, 0.04289989545941353, -0.014677119441330433, -0.031107205897569656, -0.014119356870651245, 0.02694789133965969, 0.0010044702794402838, 0.028334328904747963, -0.010852462612092495, -0.017641227692365646, -0.028398074209690094, -0.017099400982260704, -0.023983782157301903, 0.005223046522587538, 0.023601317778229713, 0.03384821116924286, 0.011378352530300617, 0.001158352941274643, -0.0008271815604530275, -0.010565613396465778, -0.023330403491854668, -0.011043695732951164, -0.018820496276021004, 0.01730656996369362, -0.03697167709469795, 0.005900329444557428, -0.021912094205617905, 0.00693218968808651, 0.03639797866344452, -0.001196201192215085, -0.012159219942986965, -0.024637162685394287, 0.004836597014218569, -0.0033067341428250074, 0.028031544759869576, -0.02041410282254219, 0.007286767475306988, -0.05462884157896042, -0.009019814431667328, 0.04430226981639862, -0.011681138537824154, -0.005796744953840971, -0.025083372369408607, 0.006836573593318462, 0.02994387224316597, -0.008270819671452045, -0.013513785786926746, 0.026326384395360947, 0.0013934100279584527, -0.021545564755797386, 0.002577658975496888, 0.019760724157094955, -0.011800658889114857, 0.010103467851877213, -0.02994387224316597, -0.02215113490819931, -0.027537526562809944, 0.025497710332274437, -0.008509860374033451, 0.025035563856363297, -0.027919992804527283, 0.0007430192199535668, 0.0011633329559117556, -0.010063626803457737, 0.012900247238576412, -0.021099355071783066, -0.043632954359054565, -0.00827878713607788, 0.031473733484745026, 0.009593512862920761, -0.020175062119960785, -0.012844471260905266, -0.004916277248412371, 0.060174595564603806, 0.016294630244374275, -0.02342602051794529, -0.06616655737161636, -0.025864239782094955, -0.06020646542310715, -0.007784769404679537, -0.04439788684248924, 0.008629380725324154, -0.025051498785614967, 0.026246704161167145, 0.001877468079328537, 0.0141432611271739, -0.03349761664867401, 0.04117880016565323, -0.01454963069409132, 0.007151310797780752, -0.0321589857339859, -0.0009367419988848269, -0.03853341192007065, 0.033656977117061615, -0.021019674837589264, -0.025433965027332306, -0.013545658439397812, -0.018597392365336418, -0.05960089713335037, -0.06884381920099258, -0.01598387584090233, 0.0347406305372715, 0.0009676181362010539, 0.009274791926145554, -0.024605289101600647, 0.006892349570989609, 0.042294327169656754, -0.03598364442586899, 0.012924151495099068, -0.009019814431667328, -0.026135152205824852, -0.007529792375862598, -9.237939957529306e-05, 0.04720263555645943, -0.06020646542310715, -0.015928100794553757, 0.0010726966429501772, -0.06967248767614365, 0.009075591340661049, 0.06297934055328369, 0.024971818551421165, 0.018501775339245796, 0.013832507655024529, -0.030931908637285233, 0.0016712951473891735, -0.0048405807465314865, -0.021832413971424103, 0.03086816519498825, 0.00596008962020278, -0.015250817872583866, 0.010063626803457737, -0.04095569625496864, 0.006027817726135254, 0.040509484708309174, 0.02822277694940567, 0.006808685138821602, 0.04560902714729309, 0.049688663333654404, 0.04529030621051788, -0.0015467946650460362, -0.001511934446170926, 0.021163098514080048, 0.06371240317821503, -0.021179035305976868, 0.010438124649226665, -0.08726590871810913, -0.022932002320885658, 0.041051313281059265, -0.03770473971962929, 0.01698784902691841, 0.008087554946541786, -0.015131296589970589, -0.01019111555069685, 0.03340199962258339, 0.022708898410201073, 0.04130629077553749, -0.022007711231708527, -0.0017200993606820703, -0.012693078257143497, -0.014621342532336712, -0.01472492702305317, 0.007410272024571896, 0.03649359568953514, 0.037067294120788574, 0.008740933611989021, 0.0008371415897272527, -0.009649289771914482, 0.00891622994095087, -0.028844283893704414, 0.054979436099529266, -0.021784605458378792, 0.00319717382080853, -0.02565707080066204, 0.025959854945540428, 0.06215066835284233, -0.0037449761293828487, 0.006262874696403742, -0.021545564755797386, -0.047489482909440994, -0.028573371469974518, -0.032828301191329956, -0.01698784902691841, 0.04908309131860733, 0.025848302990198135, -0.011665201745927334, -0.01368908304721117, -0.06903504580259323, -0.01644602231681347, 0.04478035122156143, 0.05466071516275406, 0.013426138088107109, -0.0373222716152668, 0.002659331541508436, -0.009816618636250496, -0.0045377956703305244, -0.015967940911650658, -0.001040824456140399, 0.01869300752878189, -0.03652546927332878, -0.02165711671113968, 0.0024063463788479567, 0.0071393586695194244, -0.05373642221093178, -0.015386274084448814, -0.02481245808303356, 0.00047210603952407837, 0.005609496030956507, 0.008796709589660168, -0.010079563595354557, -0.03461313992738724, 0.0935765951871872, -0.04238994047045708, -0.046310216188430786, 0.015075520612299442, 0.026294512674212456, -0.01606355793774128, -0.022023646160960197, -0.029210813343524933, 0.024190951138734818, -0.036652956157922745, -0.004422259051352739, -0.012685110792517662, -0.006219050846993923, -0.0019910125993192196, -0.003219085745513439, 0.030931908637285233, -0.0037629040889441967, 0.01781652495265007, -0.03172871097922325, 0.002956140786409378, -0.02524273283779621, -0.026788530871272087, -0.007537760306149721, 0.015083489008247852, 0.0012619374319911003, 0.023298531770706177, 0.004051745403558016, -0.028063416481018066, -0.020175062119960785, -0.06119450181722641, 0.0390433669090271, 0.04943368583917618, 0.013792667537927628, 2.7981495804851875e-05, 0.044875968247652054, 0.012900247238576412, 0.01278072688728571, -0.011585521511733532, 0.012948055751621723, 0.09332161396741867, -0.02133839577436447, 0.002940204693004489, -0.007258879020810127, -0.03082035668194294, -0.02221488021314144, -0.0018127277726307511, -0.013394265435636044, 0.05612683296203613, -0.021370267495512962, 0.02989606373012066, 0.050612952560186386, -0.039298344403505325, 0.009322600439190865, -0.03611113131046295, 0.004848548676818609, -0.029816383495926857, -0.042358070611953735, 0.009131367318332195, 0.012326548807322979, 0.030708804726600647, 0.003982025198638439, -0.02513118088245392, 0.022485792636871338, 0.01821492612361908, 0.046246469020843506, -0.01829460635781288, -0.011840499006211758, -0.005983993876725435, -0.025258667767047882, -0.002902356442064047, 0.03160122409462929, -0.016270725056529045, -0.03547368943691254, -0.05029423162341118, 0.00446209916844964, -0.041465651243925095, -0.0011663209879770875, 0.014334493316709995, -0.03185620158910751, -0.020143190398812294, 0.05287587642669678, -0.029609214514493942, 0.02089218609035015, -0.0019780644215643406, -0.0435054674744606, -0.016262758523225784, -0.00017567025497555733, 0.005561687983572483, 0.01744999550282955, 0.0005428223521448672, 0.023091362789273262, -0.007752897217869759, 0.033210765570402145, -0.006286778952926397, -0.019649172201752663, 0.0012499854201450944, 0.02643793821334839, 0.0460871085524559, -0.00250395480543375, 0.03032633848488331, -0.029003644362092018, -0.015035680495202541, 0.030214786529541016, 0.009035751223564148, -0.010796686634421349, -0.013402233831584454, 0.01282056700438261, -0.01541017834097147, -0.0023744741920381784, 0.007689152844250202, 0.005589575972408056, -0.031043460592627525, 0.03827843815088272, 0.002282841829583049, -0.02819090522825718, -0.029386110603809357, -0.0008934158249758184, -0.026597298681735992, 0.0019382243044674397, 0.004625443834811449, -0.04226245358586311, 0.01955355517566204, 0.013179128989577293, -0.0390433669090271, -0.005482007749378681, -0.0002115264069288969, -0.002655347343534231, -0.04379231482744217, -0.006350523326545954, -0.012876342982053757, 0.0416250117123127, -0.05606308951973915, 0.013625338673591614, 0.011816594749689102, 0.01700378581881523, 0.021513693034648895, -0.0013934100279584527, -0.01960136368870735, 0.001989020500332117, -0.008119426667690277, 0.025338348001241684, 0.0005537783727049828, 0.024143144488334656, 0.011991891078650951, 0.011258832179009914, -0.025720814242959023, 0.04739386588335037, 0.00736644770950079, -0.0065576923079788685, -0.009991914965212345, -0.02124277874827385, -0.0024760665837675333, -0.0040597133338451385, 0.02688414789736271, 0.004438194911926985, 0.029274558648467064, -0.024461865425109863, 0.014230908825993538, -0.0038087202701717615, 0.00805568229407072, -0.0299279373139143, -0.014509790576994419, 0.01960136368870735, -0.007521824445575476, -0.004924245178699493, 0.03808720409870148, 0.01614323817193508, -0.036238618195056915, -0.05889970809221268, 0.00973693747073412, -0.000729573133867234, 0.009800681844353676, -0.00277686002664268, -0.04414290934801102, -0.05472445860505104, -0.025354284793138504, 0.007732977159321308, -0.010772782377898693, -0.002912316471338272, -0.00036105155595578253, 0.00037823262391611934, -0.007525808177888393, 0.022310495376586914, 0.028748666867613792, 0.0805090144276619, 0.0007245931192301214, -0.02651761844754219, 0.03429441899061203, 0.0044979555532336235, 0.010063626803457737, -0.05721048638224602, 0.036174874752759933, -0.017051592469215393, -0.005983993876725435, 0.021928030997514725, 0.00553379999473691, -0.0003712605976033956, -0.01131460815668106, -0.02251766435801983, 0.030071360990405083, 0.019856341183185577, 0.0025418028235435486, 0.020270679146051407, -0.031457800418138504, -0.027202868834137917, 0.014932096004486084, -0.009394312277436256, -0.02640606462955475, 0.007115454412996769, -0.0028107240796089172, -0.0041433777660131454, -0.01692410558462143, 0.02948172576725483, 0.06769642233848572, -0.013481914065778255, 0.013928123749792576, 0.03219085931777954, -0.004860500805079937, 0.047935694456100464, 0.005880409386008978, 0.056636787950992584, -0.011123375967144966, 0.015553602948784828, 0.01214328408241272, -0.010900271125137806, -0.0008012854377739131, 0.03356136009097099, 0.010924175381660461, 0.02522679604589939, -0.013290680944919586, -0.022358303889632225, -0.030485698953270912, -0.008199106901884079, 0.006717052776366472, 0.025848302990198135, 0.044589120894670486, 0.03770473971962929, 0.00024364754790440202, 0.0013117375783622265, 0.015792643651366234, -0.03461313992738724, -0.015242849476635456, -0.04997551068663597, -0.005565671715885401, 0.012876342982053757, 0.009282760322093964, -0.04831815883517265, -0.045354049652814865, 0.0182308629155159, -0.03808720409870148, -0.0069082858972251415, -0.03611113131046295, -0.029354238882660866, 0.002509930869564414, -0.0025378188583999872, 0.055808112025260925, 0.01861332729458809, -0.014804607257246971, -0.0002057993842754513, -0.022900130599737167, 0.007151310797780752, -0.0002778852067422122, -0.012995864264667034, -0.028876155614852905, 0.038023460656404495, 0.002746979705989361, -0.0221830066293478, -0.05909094214439392, 0.004836597014218569, -0.0320793054997921, -0.03569679334759712, 0.032860174775123596, -0.013784699141979218, -0.00866125337779522, 0.012055635452270508, 0.013410201296210289, -0.00206969678401947, 0.00847002025693655, 0.024206887930631638, 0.030087297782301903, -0.012860407121479511, -0.0032788461539894342, -0.009896298870444298, -0.03040601871907711, 0.012079539708793163, -0.03741788864135742, -0.02219894342124462, -0.028461817651987076, -0.0050079096108675, 0.004270866513252258, 0.016278693452477455, 0.029864192008972168, -0.020955929532647133, 0.016780680045485497, 0.048381902277469635, -0.0042549301870167255, -0.0010189124150201678, 0.0023186979815363884, 0.017226889729499817, -0.0366210862994194, -0.01600778102874756, 0.023617252707481384, -0.005207110196352005, 0.017704972997307777, 0.014302621595561504, 0.01565718650817871, 0.03729040175676346, 0.012039699591696262, 0.023792549967765808, -0.019840404391288757, 0.014103421010077, 0.014940064400434494, -0.0049959574826061726, -0.005063685588538647, -0.018071502447128296, 0.03266894072294235, -0.009226983413100243, -0.027904056012630463, -0.036652956157922745, -0.00010507844854146242, 0.01278869528323412, 0.04723450541496277, -0.0300076175481081, 0.0021513693500310183, 0.006740957032889128, 0.00040213673491962254, -0.013585498556494713, 0.029800448566675186, -0.022724833339452744, 0.016573511064052582, -0.014932096004486084, -0.005215078592300415, -0.0014691062970086932, 0.042740534991025925, -0.002946180757135153, -0.01655757427215576, -0.03435816243290901, -0.031919945031404495, 0.01816711761057377, -0.04025450721383095, -0.04267679154872894, 0.02909926138818264, -0.005513879470527172, 0.021641181781888008, -0.09134554117918015, 0.0014362381771206856, 0.013999836519360542, -0.022868258878588676, -0.00423899432644248, -0.020079446956515312, 0.040127020329236984, 0.011681138537824154, 0.044461630284786224, -0.032366156578063965, 0.017561547458171844, -0.008167235180735588, -0.018422095105051994, -3.6603156331693754e-05, 0.0023426020052284002, -0.024525608867406845, 0.015115360729396343, 0.02205551788210869, 0.002472082618623972, 0.02600766345858574, -0.016159173101186752, -0.0071393586695194244, -0.018995793536305428, 0.03077254816889763, -0.009760841727256775, -0.012884311378002167, -0.014454013668000698, 0.024892138317227364, 0.04172062873840332, -0.024079399183392525, 0.019649172201752663, 0.0016752792289480567, -0.026692913845181465, 0.012063603848218918, -0.007135374471545219, 0.009290727786719799, 0.008964038453996181, 0.01128273643553257, 0.004748948384076357, 0.03032633848488331, -0.027633143588900566, -0.04047761484980583, 0.020732825621962547, -0.021147163584828377, 0.02342602051794529, -0.015163169242441654, 0.008059666492044926, 0.012653238140046597, -0.008900294080376625, 0.046660806983709335, 0.03171277791261673, -0.021545564755797386, -0.0029641087166965008, -0.017689036205410957, -0.011218992061913013, 0.036174874752759933, -0.03722665458917618, 0.013617370277643204, 0.017067529261112213, -0.0011424169642850757, -0.011354449205100536, 0.02043003961443901, 0.01409545261412859, -0.037513505667448044, -0.018087437376379967, 0.00661745248362422, -0.021864285692572594, 0.02213519997894764, -0.003067693207412958, 0.014756799675524235, -0.012358421459794044, 0.022390175610780716, 0.012748855166137218, 0.021943965926766396, 0.035441815853118896, 0.021513693034648895, 0.027155060321092606, -0.01741812191903591, -0.019187025725841522, -0.011904243379831314, 0.020971866324543953, -0.011800658889114857, -0.005482007749378681, 0.0416250117123127, -0.024653097614645958, 0.002404354279860854, -0.028796475380659103, 0.00015164165233727545, 0.0011573570081964135, -0.013115384615957737, 0.03738601505756378, 0.006478011608123779, -0.017035657539963722, 0.010908238589763641, -0.017083466053009033, 0.003284822218120098, -0.002627459354698658, -0.017545610666275024, 0.04589587822556496, 0.008485956117510796, 0.03356136009097099, -0.010661229491233826, -0.012454037554562092, 0.032302409410476685, -0.02302761934697628, -0.006019849795848131, 0.024159079417586327, -0.010270795784890652, -0.019378259778022766, 0.010908238589763641, -0.01824679784476757, 0.0017928077140823007, -0.002912316471338272, 0.02261328138411045, 0.0009984943317249417, 0.031553417444229126, -0.02471684291958809, -0.011195087805390358, 0.017083466053009033, -0.01607949286699295, 0.031473733484745026, -0.02728254906833172, -0.007238958962261677, 0.021386204287409782, 0.027139125391840935, 0.03128250315785408, 0.030501635745167732, -0.009346503764390945, 0.012254836969077587, -0.025338348001241684, 0.0028545481618493795, 0.02266108989715576, 0.007772817276418209, 0.04544966667890549, 0.02262921631336212, 0.018453966826200485, 0.02294793911278248, 0.017609355971217155, -0.02823871374130249, 0.011824563145637512, 0.014748831279575825, -0.007549712434411049, 0.007999906316399574, -0.01300383172929287, -0.013497849926352501, -0.004037801176309586, -0.00162647501565516, 0.0014113381039351225, -0.037513505667448044, 0.03674857318401337, -0.001384445931762457, -0.014629310928285122, -0.006569644436240196, 0.028828347101807594, -0.02736222930252552, 0.025449901819229126, -0.023155108094215393, 0.010406252928078175, -0.00956164114177227, -0.004609507974237204, 0.009226983413100243, 0.0286371149122715, 0.0016533670714125037, 0.011123375967144966, 0.025290541350841522, -0.043696701526641846, -0.0005487983580678701, -0.022820450365543365, -0.02216707170009613, -0.01563328318297863, 0.00020729338575620204, -0.03257332369685173, -0.0029103246051818132, -0.0018625280354171991, 0.05166473239660263, 0.019442003220319748, -0.01323490496724844, 0.02731442078948021, -0.0001530111621832475, 0.018868304789066315, 0.00403580954298377, -0.00803177896887064, 0.014238877221941948, 0.06403112411499023, 0.03249364346265793, -0.006960077676922083, -0.025306476280093193, 0.003458126913756132, -0.015115360729396343, 0.031075334176421165, 0.03655734285712242, 0.002629451220855117, 0.006234986707568169, 0.024669034406542778, -0.003175261663272977, 0.017481867223978043, 0.006350523326545954, -0.006721036974340677, -0.013258809223771095, 0.037067294120788574, 0.017657164484262466, 0.026278577744960785, 0.012302644550800323, -0.02047784812748432, -0.0183105431497097, 0.030979717150330544, -0.002525866962969303, 0.0015477905981242657, -0.0010004863142967224, 0.018772687762975693, 0.006991949863731861, -1.0886015843425412e-05, -0.013497849926352501, -0.02127465233206749, -0.010677166283130646, -0.005350534804165363, 0.007565648294985294, 0.010709038004279137, 0.010709038004279137, -0.013617370277643204, 0.00391031289473176, -0.02995980903506279, -0.014422141946852207, 0.006223034579306841, -0.01735437847673893, 0.0299279373139143, -0.023091362789273262, 0.012677142396569252, -0.05427825078368187, 0.03697167709469795, 0.008629380725324154, 0.025864239782094955, 0.018342414870858192, 0.013593466021120548, 0.029800448566675186, 0.004470067098736763, -0.002880444284528494, 0.025816431269049644, 0.007968034595251083, -0.014286685734987259, -0.04293176904320717, -0.013290680944919586, -0.013107416220009327, -0.012979927472770214, -0.02736222930252552, 0.011155247688293457, 0.016222918406128883, 0.007976002059876919, 0.01413529273122549, -0.0015019744168967009, -0.03467688336968422, 0.03518683835864067, 0.018836433067917824, 0.018963921815156937, 0.004478035029023886, 0.023712869733572006, -0.01826273463666439, 0.010151275433599949, 0.003920272924005985, -0.04509907215833664, -0.006242954637855291, -0.010382348671555519, 0.010485933162271976, 0.020302550867199898, 0.020589400082826614, -0.015314562246203423, 0.00421110587194562, 0.02521086111664772, 0.0009974982822313905, -0.004529827274382114, -0.030931908637285233, 0.029354238882660866, -0.005131414160132408, 0.0035497592762112617, 0.0005766864633187652, 0.018995793536305428, -0.057975418865680695, -0.012342484667897224, -0.02473277784883976, -0.03426254540681839, -0.02693195641040802, -0.04251743108034134, -0.011466001160442829, 0.003864496713504195, -0.0046891882084310055, -0.00805568229407072, -0.036206748336553574, 0.013577530160546303, 0.0169400405138731, -0.016573511064052582, 0.01743405871093273, 0.0021673052106052637, 0.0007584572304040194, 0.0272666122764349, -0.01172894611954689, -0.007039758376777172, -0.0239041019231081, 0.0364617258310318, 0.019840404391288757, -0.0008680177270434797, -0.012119379825890064, -0.008215043693780899, 0.01644602231681347, 0.03477250039577484, 0.047489482909440994, -0.019760724157094955, -0.010406252928078175, -0.01909141056239605, -0.026788530871272087, 0.031409990042448044, 0.005238982383161783, -0.013171160593628883, 0.0383421815931797, 0.04391980543732643, -0.008059666492044926, 0.008059666492044926, 0.03086816519498825, 0.009983946569263935, 0.01609542965888977, 0.013370361179113388, 0.02221488021314144, 0.02256547287106514, 0.0265654269605875, 0.022342367097735405, -0.03266894072294235, 0.053162723779678345, -0.0010189124150201678, -0.009721001610159874, -0.009705065749585629, 0.03502747789025307, 0.0251949243247509, 0.002611523261293769, 0.019314514473080635, 0.018485838547348976, -0.021784605458378792, 0.0020995771046727896, 0.016764743253588676, -0.007932177744805813, -0.013035704381763935, -0.016621319577097893, 0.012238900177180767, -0.016334470361471176, -0.00413939356803894, 0.0010786725906655192, -0.006238970905542374, 0.01065326202660799, 0.02431843988597393, 0.00802381057292223, 0.015975909307599068, -0.005362486932426691, 0.08337751030921936, -0.0030258609913289547, 0.0075337765738368034, -0.01827867142856121, 0.010207051411271095, -0.031091269105672836, -0.0017340434715151787, 0.013099447824060917, -0.00013022756320424378, 0.013434105552732944, -0.022485792636871338, -0.018501775339245796, -0.05647742748260498, 0.018390223383903503, 0.019776660948991776, -0.025752685964107513, 0.0035637032706290483, 0.007075614295899868, -0.017720907926559448, 0.001490022405050695, 0.01956949196755886, 0.0015238865744322538, 0.016254790127277374, -0.03764099255204201, -0.04038199782371521, -0.013880315236747265, -0.003491990966722369, -0.0004987491411156952, -0.0031832295935600996, 0.02997574396431446, -0.00956164114177227, -0.046310216188430786, 0.031457800418138504, 0.005597543902695179, 0.004191185813397169, 0.02430250495672226, -0.001744003500789404, -0.012238900177180767, 9.679916547611356e-05, 0.0003969077079091221, -0.018135245889425278, -0.01196798775345087, -0.018326478078961372, -0.013115384615957737, 0.0058166650123894215, 0.026836339384317398, 0.014454013668000698, -0.01690816879272461, 0.03158528730273247, -0.024987755343317986, -0.009673194028437138, 0.0338800810277462, 0.002990004839375615, 0.002729051746428013, -0.002521882764995098, -0.001843603909946978, 0.058804091066122055, 0.020924057811498642, -0.012446069158613682, -0.002177265239879489, -0.023139171302318573, -0.007633376866579056, -0.008645317517220974, 0.02043003961443901, -0.009689129889011383, -0.04006327688694, 0.01780058816075325, 0.009131367318332195, 0.015099424868822098, -0.042326197028160095, 0.01174488291144371, 0.027649078518152237, 0.02430250495672226, 0.012995864264667034, 0.02999168075621128, 0.02258140966296196, 0.006067657843232155, 0.02815903350710869, 0.020605336874723434, -0.0529714934527874, -0.04159313812851906, 0.014525726437568665, 0.006589564494788647, -0.0032788461539894342, -0.01912328228354454, -0.024939946830272675, 0.015027713030576706, -0.004246962256729603, -0.04423852637410164, -0.01083652675151825, -0.0050318134017288685, -0.015051616355776787, 0.020286615937948227, 0.021912094205617905, 0.006657292600721121, -0.01608746126294136, -0.0099759791046381, -0.009370408020913601, -0.012238900177180767, -0.03486811742186546, -0.00400194525718689, 0.020095381885766983, -0.012358421459794044, 0.008908262476325035, 0.0019780644215643406, -0.0044939713552594185, -0.011975955218076706, -0.041943732649087906, -0.006645340472459793, 0.010183148086071014, -0.028079353272914886, 0.015561570413410664, 0.013840475119650364, 0.007286767475306988, 0.02127465233206749, 0.013314585201442242, -0.00914730317890644, -0.014151228591799736, -0.011019791476428509, -0.028541497886180878, 0.017147209495306015, -0.0012579533504322171, -0.024159079417586327, -0.0287167951464653, -0.005764872767031193, -0.010581549257040024, 0.021402139216661453, 0.005557703785598278, 0.01829460635781288, -0.009466025047004223, 0.007573616690933704, 0.014828511513769627, 0.05606308951973915, 2.399747791059781e-05, -0.005394359119236469, -0.0050397817976772785, -0.007725009229034185, -0.024924011901021004, 0.014844447374343872, 0.0024959866423159838, -0.030230721458792686, -0.007438160013407469, -0.015099424868822098, 0.0005756904720328748, 0.016222918406128883, -0.01387234777212143, 0.024047527462244034, 0.027505654841661453, 0.031489670276641846, 0.024637162685394287, -0.024063464254140854, 0.011298672296106815, 0.020971866324543953, 0.0264857467263937, -0.0383421815931797, -0.030517570674419403, 0.005649336148053408, -0.020159127190709114, -0.006378411315381527, 0.015362369827926159, -0.027665015310049057, -0.004964085295796394, -0.02127465233206749, -0.0373222716152668, 0.03591989725828171, -0.0216730535030365, 0.02208739146590233, -0.0373222716152668, -0.016199013218283653, 0.020653145387768745, 0.0011673170374706388, -0.023665061220526695, -0.0024840347468852997, 0.018119309097528458, 0.01993602141737938, -0.024939946830272675, -0.029433919116854668, -0.007390351966023445, -0.022039582952857018, -0.01213531568646431, 0.0005746944807469845, 0.011346480809152126, 0.037609122693538666, 0.021641181781888008, 0.021975837647914886, 0.0555531345307827, -0.044206652790308, -0.005306710954755545, 0.007979986257851124, 0.01387234777212143, 0.0024581386242061853, -0.020653145387768745, -0.014844447374343872, 0.023665061220526695, 0.006852509453892708, 0.016764743253588676, 0.0024402104318141937, 0.015370338223874569, -0.01827867142856121, 0.027919992804527283, -0.01564125157892704, 0.013306616805493832, -0.04003140330314636, -0.02602360025048256, 0.01606355793774128, 0.0014422142412513494, 0.004517875611782074, -0.03607925772666931, 0.0381828211247921, 0.025003692135214806, -0.012796662747859955, 0.01215125247836113, -0.01496396865695715, 0.032334282994270325, -0.00956164114177227, -0.030071360990405083, -0.005489975679665804, 0.056413684040308, 0.04168875515460968, -0.05472445860505104, 0.02741003781557083, -0.0015866347821429372, 0.008908262476325035, -0.009816618636250496, 0.02643793821334839, 0.02304355427622795, 0.061449479311704636, -0.003458126913756132, 0.01826273463666439, 0.017067529261112213, 0.0034083265345543623, -0.006063674110919237, -0.008147315122187138, 0.01436636596918106, -0.038437798619270325, -0.030230721458792686, -0.010350476019084454, -0.013975932262837887, 0.0030995653942227364, -0.03486811742186546, -0.003727047936990857, -0.0007051710272207856, 0.02216707170009613, 0.02392003871500492, 0.0029780527111142874, -0.024159079417586327, 0.027537526562809944, 0.026246704161167145, 0.010366412810981274, 0.003671271726489067, -0.03725852817296982, 0.03735414519906044, -0.01905953697860241, -0.015171137638390064, -0.01106759998947382, 0.029704831540584564, 0.040127020329236984, -0.015147233381867409, 0.01784839667379856, 0.010541709139943123, -0.024653097614645958, 0.012868375517427921, 0.0256251972168684, -0.02521086111664772, -0.02865305170416832, -0.011824563145637512, 0.011593489907681942, -0.01775277964770794, -0.009083558805286884, 0.005948137491941452, -0.006099530030041933, -0.007454095873981714, -0.0014641262823715806, -0.014517758041620255, -0.0015079504810273647, 0.010979951359331608, -0.0017589435447007418, 0.058357883244752884, -0.014613375067710876, -0.0004813190607819706, -0.02132245898246765, 0.020095381885766983, -0.0032768540550023317, -0.011434129439294338, 0.026708850637078285, 0.010756846517324448, 9.169464465230703e-05, -0.00421907426789403, 0.0287167951464653, 0.009258856065571308, -0.026119215413928032, 0.03789597004652023, 0.010294700041413307, -0.002723075682297349, 0.027951864525675774, -0.007613456808030605, -0.009824586100876331, -0.012693078257143497, 0.012438101693987846, -0.010079563595354557, 0.013657210394740105, -0.01646195910871029, 0.01738625019788742, 0.006478011608123779, 0.0239041019231081, 0.007215055171400309, -0.00015263765817508101, 0.013936092145740986, 0.019202962517738342, -0.0022410096134990454, 0.024031590670347214, -0.009466025047004223, 0.0018973881378769875, -0.014103421010077, 0.011203056201338768, -0.021784605458378792, 0.024190951138734818, 0.0005891365581192076, 0.031155014410614967, 0.0014442062238231301, 0.0330195352435112, 0.012653238140046597, 0.019457940012216568, 0.007171230856329203, 0.04038199782371521, -0.021003738045692444, 0.03083629161119461, -0.014079516753554344, 0.006569644436240196, -0.0023844342213124037, 0.01953762024641037, -0.010366412810981274, 0.029226750135421753, -0.04031825438141823, 0.03340199962258339, -0.0035577272064983845, -0.0006907289498485625, 0.027473781257867813, 0.02352163754403591, -0.016621319577097893, -0.011720978654921055, 0.005350534804165363, -0.015505794435739517, -0.006776812952011824, -0.0037250560708343983, 0.014191068708896637, 0.017704972997307777, 0.0025537549518048763, -0.01644602231681347, -0.0030876132659614086, 0.01598387584090233, 0.03381633758544922, -0.01993602141737938, -0.008677189238369465, -0.025800494477152824, -0.025083372369408607, 0.029210813343524933, 0.027696887031197548, -0.0256251972168684, 0.008517828769981861, 0.003653343766927719, -0.005995945539325476, -0.009824586100876331, 0.0001619752001715824, -0.022724833339452744, 0.0003715096099767834, 0.04299551248550415, 0.006266858894377947, -0.00325295003131032, 0.010964015498757362, 0.02133839577436447, 0.014374333433806896, 0.015975909307599068, -0.03725852817296982, -0.018406158313155174, -0.04806318134069443, -0.004051745403558016, -0.007039758376777172, 0.035441815853118896, -0.0004265388415660709, 0.028971772640943527, -0.000760449271183461, 0.04031825438141823, 0.006625420413911343, 0.01775277964770794, -0.0203822311013937, -0.02862117812037468, 0.006051721982657909, -0.025338348001241684]" -How Density Manages Large Real Estate Portfolios Using TimescaleDB,"wasn’t easy before we started using TimescaleDB.Brock:Yeah, to tack onto that, in TimescaleDB we store counts of people in spaces over time, and a wealth of derivative metrics off of those people counts, things like how long were people in spaces, not specific people, but how long was what we call dwell time?How long was this space used continuously, or what was its usage compared to similar space types throughout the day?One of the parts I think Shane was trying to highlight is that there's a real dynamism to how those queries can take shape in that they can be sliced and diced and composed in a more or less arbitrary number of ways. And TimescaleDB’s flexibility—it is built on a relational model at the end of the day—and its ability to do the partitioning under the covers and thehypertablesto let us access all of the data back in time very quickly is the magic combination that we were looking for in a time-series database to meet our use case.Choosing (and Using!) TimescaleDBBrock: I found out about Timescale back in a previous life, circa early 2019. I worked for an oil and gas firm and was doing a lot of research into time-series storage and the options available in that space because we were developing a data software solution for supervisory control and data acquisition. Essentially, it boiled down to real-time remote sensing and monitoring for industrial controls.During that research, I happened across TimescaleDB, which was still pretty early on. It was right about the timecontinuous aggregatescame out, which was one of the big selling points for me. So when I came to Density, they were just beginning to evaluate options for time-series databases for our applications. I was able to contribute my previous experience with TimescaleDB to that process. As we evaluated the options, TimescaleDB came out as the clear winner, and the rest is history.✨Editor’s Note:Read our documentationto learn more about continuous aggregates.Shane:As an IoT company, we’ve had sensors since the very beginning. And when we started, a lot of the engineering staff came from a web consultancy, so I don’t think we did realize from the beginning thatwe needed a time-series database or even quite knew what a time-series database was.“I think moving forward, TimescaleDB, at least in my opinion, is",https://www.timescale.com/blog/density-measures-large-real-estate-portfolios-using-timescaledb/,487,"[0.008549651131033897, 0.006548901554197073, 0.04177885875105858, 0.006129801273345947, 0.09003008902072906, 0.026574619114398956, -0.009956371039152145, 0.016545360907912254, -0.022186819463968277, 0.005182269494980574, 0.018892323598265648, -0.03737648203969002, 0.019373377785086632, -0.04507335275411606, 0.044810958206653595, 0.02772623486816883, 0.01452638953924179, -0.0034329802729189396, -0.023396743461489677, 0.0066545880399644375, -0.028076093643903732, 0.036880847066640854, 0.022711604833602905, 0.00030157019500620663, -0.02858630195260048, -0.026195606216788292, -0.0016782244201749563, 0.06769749522209167, 0.008156061172485352, -0.03137058764696121, 0.002272253856062889, -0.04259519279003143, -0.035014938563108444, 0.012828120961785316, 0.0011753037106245756, 0.024023571982979774, 0.030962420627474785, 0.007295994088053703, 0.05609387531876564, -0.01604972966015339, -0.028863273561000824, 0.037784647196531296, 0.010226053185760975, 0.023834066465497017, -0.024810751900076866, -0.033382270485162735, -0.05443204939365387, -0.005437374114990234, 0.006472370121628046, 0.0416039302945137, -0.03002946637570858, 0.00897239614278078, -0.034256916493177414, -0.054956838488578796, 0.0006568945827893913, -0.05705598369240761, -2.828644028340932e-05, 0.015320858918130398, -0.005645102355629206, -0.028294753283262253, -0.002206655452027917, -0.041516464203596115, 0.01956288516521454, 0.037463944405317307, -0.003314538626000285, 0.01857162080705166, -0.03367381915450096, 0.06501524895429611, -0.044257018715143204, 0.007820780389010906, 0.06058371812105179, 0.022390902042388916, -0.025102300569415092, 0.01419839821755886, 0.03416945040225983, -0.05172065272927284, -0.017128458246588707, 0.05454866960644722, -0.045044198632240295, 0.0008678114973008633, -0.013054070994257927, -0.018513310700654984, -0.02033548802137375, 0.00632659625262022, 0.01165463961660862, 0.0005849185981787741, 0.0013884983491152525, -0.023484207689762115, 0.01271150168031454, 0.029562989249825478, -0.02441716194152832, 0.07551098614931107, 0.036122824996709824, -0.012281468138098717, 0.03291579335927963, -0.007456345483660698, -0.006723830476403236, 0.02201188914477825, 0.00580180948600173, -0.015860222280025482, -0.011982631869614124, -0.02483990788459778, -0.01717218942940235, -0.019096408039331436, 0.017099302262067795, 0.004806901328265667, 0.0024799818638712168, -0.003115921514108777, -0.005794520489871502, 0.008454898372292519, -0.08723122626543045, -0.029883692041039467, -0.05212882161140442, 0.019096408039331436, -0.017420005053281784, 0.011005944572389126, -0.054257120937108994, 0.012011785991489887, -0.012594882398843765, 0.0066254329867661, -0.025364695116877556, -0.025146033614873886, -0.018994366750121117, 0.014067200943827629, 0.018192607909440994, -0.007073688320815563, 0.0013821207685396075, -0.053819797933101654, -0.05466528981924057, -0.022361747920513153, 0.028527991846203804, -0.02233259379863739, 0.021953580901026726, -0.04588968679308891, -0.02188069373369217, -0.014679452404379845, -0.06909692287445068, -0.00741990189999342, -0.014817938208580017, -0.02001478523015976, -0.0010595954954624176, -0.0391840785741806, 0.03650183603167534, -0.007317860145121813, -0.011793125420808792, 0.03705577924847603, -0.035044096410274506, 0.03912577033042908, 0.01061235461384058, -0.026807857677340508, -0.015481210313737392, -0.007711450103670359, -0.029096512123942375, -0.028615456074476242, 0.05865950137376785, -0.0015306280693039298, 0.0005461973487399518, 0.04606461897492409, 0.008272680453956127, -0.01705557107925415, 0.01583106815814972, 0.02880496345460415, -0.011129853315651417, 0.001371187623590231, -0.03212861344218254, 0.0023378522600978613, -0.016239235177636147, -0.043498992919921875, -0.07230395823717117, -0.008651693351566792, -0.06274117529392242, -0.026137297973036766, -0.038979995995759964, 0.025889480486512184, 0.036997467279434204, -0.00315054296515882, 0.002591134747490287, -0.05839710682630539, 0.028192711994051933, -0.0457439124584198, -0.04134153574705124, 0.016326699405908585, -0.03763887286186218, 0.005645102355629206, -0.015452055260539055, -0.00869542546570301, -0.055394161492586136, 0.018338382244110107, 0.03793042153120041, 0.01402346882969141, -0.06542342156171799, 0.0686887577176094, 0.025802016258239746, 0.02518976479768753, 0.008221659809350967, -0.0530034638941288, 0.03816366195678711, 0.010415559634566307, -0.02584574930369854, 0.019548308104276657, 0.07755182683467865, 0.03303241357207298, 0.04513166472315788, 0.016210081055760384, 0.02157456800341606, 0.029329750686883926, 0.007514655124396086, 0.0044606877490878105, -0.05982569232583046, -0.045364901423454285, -0.013717343099415302, -0.010459291748702526, 0.006807650905102491, 0.012449108995497227, -0.024140192195773125, -0.004078030586242676, -0.02572912909090519, -0.04851362109184265, -0.015481210313737392, -0.002563802059739828, 0.05463613569736481, 0.06909692287445068, -0.005178625229746103, -0.013651745393872261, 0.0020499483216553926, 0.010852881707251072, 0.018221763893961906, -0.033702973276376724, 0.03516071289777756, 0.01989816501736641, 0.014154666103422642, -0.022711604833602905, -0.009278521873056889, -0.03760971873998642, 0.020160559564828873, 0.014708607457578182, 0.024329697713255882, -0.02594779059290886, -0.025772862136363983, -0.04950488731265068, -0.024373430758714676, -0.005324399098753929, 0.0031250324100255966, 0.013272732496261597, 0.021297596395015717, 0.0026676661800593138, -0.021049780771136284, -0.04577307030558586, -0.005430085584521294, 0.04070013016462326, 0.027216024696826935, -0.03935900703072548, 0.0011470599565654993, 0.003145076334476471, -0.035802118480205536, -0.05688105523586273, -0.0049599637277424335, 0.02045210637152195, 0.025043990463018417, 0.021312173455953598, 0.004336779471486807, -0.03323649615049362, 0.004679348785430193, 0.017317963764071465, -0.04708503559231758, 0.009344120509922504, 0.004242026247084141, -0.043294910341501236, 0.008236236870288849, -0.014985578134655952, 0.010743551887571812, 0.05644373223185539, 0.003294494701549411, -0.05924259498715401, -0.02090400643646717, -0.03702662140130997, -0.012828120961785316, 0.0045080641284585, -0.010371827520430088, -0.007350659463554621, 0.007241328712552786, -0.031399741768836975, 0.017449161037802696, -0.010721685364842415, 0.011231894604861736, 0.006476014852523804, 0.0028298397082835436, 0.05014629289507866, -0.0014094533398747444, -0.020743655040860176, -0.00263851135969162, -0.012157560326159, 0.03265339881181717, -0.018323805183172226, 0.006563479080796242, 0.011457844637334347, 0.007459989748895168, -0.01747831515967846, -0.024912795051932335, -0.021151822060346603, 0.020714500918984413, -0.035452261567115784, 0.014533678069710732, -0.014446213841438293, 0.029329750686883926, 0.0017547558527439833, -0.006257353350520134, -0.007711450103670359, -0.01944626495242119, -0.0004657938261516392, 0.006224554497748613, -0.01714303530752659, 0.019737813621759415, -0.0391840785741806, -0.025102300569415092, 0.0005758077022619545, 0.08291631191968918, 0.015481210313737392, -0.03740563616156578, -0.060875266790390015, -0.05492768436670303, -0.0781349241733551, -0.022828225046396255, 0.004639260936528444, 0.021734919399023056, -0.00824352540075779, 0.0367642305791378, 0.007354303728789091, 0.012128405272960663, -0.03396536782383919, -0.009584647603332996, -0.009074438363313675, 0.03626859560608864, 0.013294598087668419, -0.0312248133122921, -0.04099167883396149, 0.03352804481983185, -0.012456397525966167, -0.005761721637099981, 0.012536573223769665, -0.016326699405908585, -0.03154551610350609, -0.08011744916439056, -0.0015597828896716237, 0.02497110515832901, 0.008505919016897678, -0.009395141154527664, -0.016734866425395012, -0.027565883472561836, 0.021385060623288155, -0.03090411052107811, -0.008075885474681854, 0.015087620355188847, 0.000518864719197154, -0.015000155195593834, 0.007798914797604084, 0.006942491978406906, -0.03218692168593407, -0.03682253882288933, 0.0036899070255458355, -0.042391110211610794, 0.032157767564058304, 0.02234717085957527, 0.003655285807326436, -0.005929361563175917, 0.020277177914977074, -0.02584574930369854, -0.0065707676112651825, -0.03207030147314072, -0.004263892769813538, 0.02102062664926052, 0.013899561017751694, -0.03935900703072548, -0.006811295170336962, -0.022390902042388916, -0.0035769320093095303, 0.05848457291722298, 0.018644507974386215, -0.02826559916138649, 0.0682222843170166, 0.05344078689813614, 0.0058236755430698395, -0.0010031081037595868, -0.009395141154527664, 0.0387176014482975, 0.009584647603332996, -0.02100604772567749, 0.052507832646369934, -0.06151667237281799, -0.024111036211252213, 0.05005882680416107, 0.006410416215658188, 0.011312070302665234, 0.00010540150833548978, 0.005131248384714127, -0.001947906450368464, 0.0023761179763823748, 0.025656241923570633, 0.06863044947385788, -0.019431687891483307, 0.001188970054499805, -0.01618092507123947, -0.029096512123942375, -0.02332385629415512, 0.02925686351954937, 0.014154666103422642, 0.0004282114387024194, -0.0004234282241668552, -0.0437905415892601, 0.0036716852337121964, -0.018280072137713432, 0.020510416477918625, 0.02552504651248455, -0.03553972765803337, 0.04177885875105858, -0.010240631178021431, -0.046356163918972015, 0.0820416659116745, -0.0009375096997246146, 0.07778505980968475, -0.018644507974386215, -0.013214422389864922, -0.003330938285216689, -0.030408479273319244, -0.031603824347257614, 0.0723622664809227, 0.033702973276376724, -0.016676558181643486, -0.015306280925869942, -0.0537031814455986, -0.025437582284212112, 0.009985526092350483, 0.03562719002366066, -0.006250064820051193, -0.023236392065882683, 0.02672039344906807, 0.02013140358030796, -0.0069461362436413765, 0.01946084387600422, -0.013914138078689575, -0.018075989559292793, 0.022361747920513153, -0.0033054277300834656, -0.006968002300709486, -0.019533731043338776, -0.045481521636247635, -0.02430054359138012, -0.060642026364803314, -0.009431584738194942, -0.00928581040352583, 0.0312248133122921, -0.04848446696996689, -0.02717229351401329, 0.01302491594105959, -0.030175240710377693, -0.025991523638367653, 0.016078883782029152, -0.024154769256711006, 0.025831172242760658, -0.026093564927577972, -0.06192484125494957, 0.0028134402818977833, -0.05545246973633766, -0.04443194717168808, -2.7830896215164103e-05, -0.02209935523569584, 0.05623964965343475, -0.0054993280209600925, 0.02265329658985138, -0.010809149593114853, 0.012055518105626106, 0.031166503205895424, 0.009591936133801937, -0.05638542398810387, -0.03495663031935692, 0.026195606216788292, 0.011494288221001625, 0.0120992511510849, 0.02673497051000595, -0.04358645901083946, -0.005816387012600899, -0.019096408039331436, -0.014387904666364193, 0.07521943747997284, 0.005863763391971588, -0.012048229575157166, -0.0023906952701509, 0.02749299630522728, -0.03428607061505318, 0.0071538640186190605, 0.0012691457523033023, 0.010809149593114853, 0.029111089184880257, -0.017784440889954567, -0.03807619586586952, -0.008950529620051384, -0.03772633895277977, -0.043178290128707886, 0.009970949031412601, -0.01556867454200983, 0.026560042053461075, 0.014774205163121223, 0.020524993538856506, 0.05113755539059639, -0.029081933200359344, 0.013046782463788986, -0.0158456452190876, 0.015102197416126728, -0.01215027179569006, -0.03889252990484238, -0.013629878871142864, 0.0016408697701990604, 0.04253688454627991, 0.03446099907159805, -0.013229000382125378, 0.035131558775901794, 0.00951904896646738, 0.003728172741830349, -0.01868824101984501, -0.0013848539674654603, -0.025787439197301865, -0.03577296435832977, -0.02099147066473961, 0.004314913414418697, -0.005881985183805227, 0.0013830318348482251, -0.0435573011636734, 0.015976842492818832, -0.021851537749171257, 0.001864997437223792, 0.014132799580693245, -0.03023354895412922, 0.01561240665614605, 0.018542466685175896, -0.02871749922633171, 0.028353063389658928, -0.019941898062825203, -0.027332644909620285, -0.01836753636598587, 0.008637115359306335, 0.010298940353095531, 0.024256810545921326, 0.03014608472585678, 0.02495652623474598, -0.0069461362436413765, 0.00660356692969799, -0.016866063699126244, -0.015903955325484276, 0.006005892995744944, 0.04256603866815567, 0.01352054812014103, -0.014220263808965683, 0.04099167883396149, -0.013484104536473751, -0.026151875033974648, 0.028994468972086906, 0.010524890385568142, 0.007277772296220064, 0.0291548203676939, -0.005226001609116793, 0.002164745470508933, -0.01868824101984501, 0.0028462393674999475, -0.007128353696316481, -0.011785836890339851, 0.04224533587694168, 0.002383406739681959, -5.711384073947556e-05, -0.005717989057302475, -0.0018294650362804532, 0.004588239826261997, -0.0072376844473183155, 0.019504575058817863, 0.02957756631076336, -0.002177500631660223, -0.0003919956798199564, -0.04058350995182991, 0.01914013922214508, -0.0202188678085804, -0.0010632398771122098, -0.018863169476389885, -0.01302491594105959, -0.03769718483090401, 0.02947552502155304, -0.018425846472382545, -0.008921375498175621, 0.020947739481925964, 0.0228719562292099, 0.034140296280384064, -0.01782817393541336, -0.010437426157295704, -0.01298118382692337, -0.0018522422760725021, 0.014089067466557026, 0.030845800414681435, 0.0024162058252841234, 0.022492945194244385, 0.008228948339819908, -0.024941949173808098, 0.036880847066640854, 0.02495652623474598, 0.02804693765938282, 0.0010641509434208274, -0.04125407338142395, -0.03486916422843933, 0.036910004913806915, -0.002674954943358898, -0.005182269494980574, 0.03390705585479736, -0.020393798127770424, 0.02750757336616516, 0.0059111397713422775, 0.0010076635517179966, -0.03259509056806564, -0.011552597396075726, -0.008002998307347298, -0.033586353063583374, -0.021487103775143623, 0.026312226429581642, -0.013134246692061424, -0.01992732100188732, -0.03186621889472008, 0.0006336618098430336, -0.04868854954838753, 0.011210029013454914, 0.01660367101430893, -0.01616634801030159, -0.04221618175506592, 0.008170638233423233, 0.030612561851739883, -0.0015843822620809078, 0.010699819773435593, 0.017347117885947227, 0.02836764045059681, -0.017230499535799026, 0.03224523365497589, 0.034723393619060516, 0.05242036655545235, 0.0064067719504237175, 0.020495839416980743, 0.01969408243894577, -0.0033200052566826344, -0.010736262425780296, -0.011822279542684555, 0.027230603620409966, -0.023484207689762115, -0.0011388602433726192, 0.02594779059290886, -0.018105143681168556, -0.0047522359527647495, -0.006282864138484001, -0.025787439197301865, 0.08449067175388336, 0.02905277907848358, 0.03055425174534321, 0.019489997997879982, -0.027740811929106712, -0.019402533769607544, -0.004398733843117952, 9.516600584902335e-06, -0.02979622781276703, 0.005382708739489317, -0.008338279090821743, 0.00045144418254494667, -0.037114087492227554, 0.019723236560821533, 0.03705577924847603, 0.005717989057302475, 0.034490153193473816, 0.0314580537378788, -0.025350116193294525, -0.003223429899662733, 0.03498578444123268, 0.013097803108394146, 0.04927164688706398, 0.006508813705295324, 0.02507314644753933, 0.013338330201804638, 0.013688188046216965, 0.04795968160033226, -0.03279917314648628, 0.022594986483454704, -0.004136340226978064, -0.0016126260161399841, -0.02396526373922825, -0.03067087195813656, -0.006796717643737793, 0.028994468972086906, 0.042187027633190155, 0.03297410160303116, 0.010116723366081715, -0.008156061172485352, 0.012266891077160835, -0.035568881779909134, 0.0013629879103973508, -0.031195659190416336, 0.0158456452190876, 0.019621195271611214, -0.03384874761104584, -0.017215922474861145, -0.00852049607783556, -0.007131997961550951, -0.06046709790825844, -0.03367381915450096, -0.023498786613345146, 0.011698371730744839, 0.004475264810025692, 0.01804683357477188, 0.03510240465402603, -0.013243577443063259, -0.04169139266014099, -0.007259550504386425, -0.013680899515748024, 0.017186766490340233, -0.0006728385924361646, 0.019183872267603874, -0.041079141199588776, 0.025160610675811768, -0.02860087901353836, 0.0014632075326517224, -0.052507832646369934, -0.023119773715734482, -0.012573016807436943, -0.04242026433348656, 0.04737658426165581, -0.021866116672754288, 0.02332385629415512, 0.01760951243340969, 0.039533939212560654, -0.026312226429581642, 0.001495095668360591, 0.02220139652490616, 0.026428844779729843, -0.02572912909090519, 0.013855828903615475, 0.0006359395338222384, -0.030525097623467445, -0.010313518345355988, -0.026195606216788292, -0.0003489467781037092, -0.0411374531686306, 0.013236288912594318, 0.0024016282986849546, -0.010984078980982304, 0.04486927017569542, -0.017522048205137253, 0.03935900703072548, 0.027755388990044594, 0.013855828903615475, -6.360534462146461e-05, -0.014606565237045288, 0.014657585881650448, -0.03443184494972229, -0.008061308413743973, -0.0064833033829927444, 0.0009197434992529452, -0.0010267964098602533, 0.014664875343441963, 0.009220211766660213, 0.020816542208194733, 0.01192432176321745, 0.0015807379968464375, -0.03670591861009598, 0.008316412568092346, 0.027769967913627625, 0.0089578190818429, -0.017434582114219666, -0.020204290747642517, 0.0046319724060595036, -0.06810566037893295, -0.035568881779909134, 0.0005152203375473619, 0.00196795049123466, -0.009249366819858551, 0.05498599261045456, 0.003207030240446329, 4.993901893612929e-05, -0.001858619856648147, 0.009001551195979118, -0.022492945194244385, 0.001975239021703601, -0.005623236298561096, 0.003010235261172056, -0.0028280175756663084, -0.011414112523198128, -0.01402346882969141, 0.00824352540075779, -0.014147376641631126, -0.026545464992523193, -0.037114087492227554, -0.012062807567417622, 0.005182269494980574, -0.015408323146402836, 0.004143628757447004, 0.011005944572389126, 0.015160506591200829, 0.01946084387600422, -0.08075885474681854, -0.040000416338443756, 0.029533833265304565, -0.015145929530262947, -0.01033538393676281, -0.01660367101430893, 0.006020470522344112, 0.03352804481983185, 0.023688292130827904, -0.01165463961660862, -0.00847676396369934, -0.027551306411623955, -0.015102197416126728, 0.018309228122234344, -0.042740967124700546, 0.025597933679819107, 0.022274283692240715, 0.030408479273319244, 0.02188069373369217, 0.034927476197481155, -0.013345619663596153, 0.0027806409634649754, -0.037463944405317307, 0.046356163918972015, 0.013046782463788986, -0.004413310904055834, -0.01836753636598587, 0.060642026364803314, 0.032274387776851654, -0.018003102391958237, 0.018761128187179565, 0.017769863829016685, 0.005273378454148769, -0.025058569386601448, -0.014898113906383514, 0.02189527079463005, 0.005758077371865511, 0.007088265847414732, -0.011399535462260246, -0.0017602223670110106, -0.05070023238658905, -0.03484001010656357, 0.04676433280110359, -0.04586053267121315, 0.04594799876213074, -0.005984026938676834, -0.0076166968792676926, 0.040641821920871735, 0.0019715947564691305, 0.014147376641631126, 0.033178187906742096, -0.0007726027397438884, -0.007197596598416567, -0.009263944812119007, -0.0003072644758503884, 0.03889252990484238, -0.04545236751437187, -0.006505169440060854, 0.010218764655292034, 0.006508813705295324, 0.0022740759886801243, 0.01060506608337164, 0.006734763737767935, -0.04268265888094902, -0.02023344673216343, 0.004570018034428358, 0.02276991493999958, 0.02629764936864376, 0.015131352469325066, 0.018965210765600204, 0.01683690957725048, 0.011319358833134174, 0.020831119269132614, -0.03297410160303116, 0.02144337072968483, 0.004599173087626696, -0.0008377455524168909, -0.006224554497748613, 0.00011764426017180085, -0.028411373496055603, 0.018950633704662323, -0.009978237561881542, -0.00662907725200057, 0.020641613751649857, -0.042945049703121185, -0.022944843396544456, -0.029227707535028458, 0.01247826311737299, 0.008024864830076694, -0.0015871155774220824, 0.0394173189997673, 0.007088265847414732, -0.015903955325484276, -0.005273378454148769, -0.0033236495219171047, 0.002419850090518594, 0.0021228354889899492, -0.0024490049108862877, 0.012390798889100552, -0.0010942168300971389, 0.02297399938106537, -0.014285862445831299, 0.0032161411363631487, 0.022070199251174927, -0.02198273502290249, -0.029344327747821808, 0.016443319618701935, -0.017682399600744247, -0.014679452404379845, 0.020539570599794388, -0.03664761036634445, -0.0029118377715349197, 0.021283019334077835, 0.02453378215432167, 0.01893605664372444, 0.014679452404379845, 0.024796174839138985, -0.004497131332755089, -0.006687386892735958, -0.012806255370378494, 0.02772623486816883, -0.04358645901083946, -0.006392194423824549, 0.013272732496261597, 0.0013074114685878158, 0.01969408243894577, 0.05309092998504639, -0.01836753636598587, 0.0031541872303932905, -0.027740811929106712, -3.781015766435303e-05, 0.04973812401294708, 0.008484052494168282, 0.05606472119688988, -0.0024453606456518173, 0.0030138795264065266, 0.01562698371708393, 0.014941846020519733, 0.004737658426165581, 0.014409770257771015, 0.014132799580693245, 0.0036407082807272673, 0.004515353124588728, -0.0071611530147492886, 0.030408479273319244, -0.02618102915585041, -0.01868824101984501, -0.006122512277215719, -0.04014618694782257, 0.02058330364525318, 0.009898061864078045, -0.03641436994075775, -0.014271285384893417, 0.060875266790390015, -0.02352794073522091, 0.038775913417339325, -0.029533833265304565, -0.00791553407907486, -0.009329542517662048, -0.0006537057342939079, 0.0012664125533774495, 0.039650555700063705, 0.035452261567115784, -0.015801912173628807, 0.03244931623339653, -0.01739085093140602, -0.0009557314915582538, -0.00024234944430645555, -0.024052727967500687, 0.00891408696770668, -0.013010338880121708, -0.0030776557978242636, -0.01638500951230526, 0.013812096789479256, 0.044723495841026306, 0.01981070078909397, -0.02243463508784771, 0.0290382020175457, 0.0116109075024724, 0.011457844637334347, -0.01978154666721821, -0.010371827520430088, 0.0036479970440268517, 0.03586043044924736, 0.015422900207340717, -0.022288860753178596, -0.038017887622117996, -0.004282114561647177, 0.002669488312676549, 0.03597705066204071, 0.04553982987999916, 0.012740656733512878, 0.024271389469504356, 0.0028025072533637285, 0.012135694734752178, 0.004103540908545256, 0.03959224745631218, -0.007740605156868696, 0.0009047105559147894, 0.03233269602060318, -0.044723495841026306, 0.0009529982344247401, 0.025787439197301865, -0.019650349393486977, 0.0026421556249260902, 0.03775549307465553, 0.014336883090436459, 0.018965210765600204, -0.02465040050446987, 0.006814939435571432, 0.030321013182401657, -0.004314913414418697, -0.010313518345355988, -0.0003548688255250454, -0.008046730421483517, 0.001112438621930778, 0.020845696330070496, 0.01529170386493206, -0.014001603238284588, -0.025816593319177628, -0.02551046758890152, -0.0319245308637619, -0.01672028936445713, 0.01771155372262001, -0.014985578134655952, 0.013331041671335697, -0.011122563853859901, 0.032157767564058304, -0.027361799031496048, 0.015000155195593834, 0.004518997389823198, 0.018979787826538086, 0.015801912173628807, 0.005717989057302475, 0.049096718430519104, 0.044373638927936554, -0.0004737658309750259, 0.012142983265221119, -0.016443319618701935, 0.0022011890541762114, 0.0008072241325862706, -0.009307676926255226, 0.008046730421483517, -0.012573016807436943, -0.022682450711727142, 0.005765365902334452, 0.04431532695889473, 0.03177875652909279, 0.023382166400551796, -0.03081664629280567, -0.008804756216704845, 0.01038640458136797, 0.009475316852331161, -0.009096303954720497, 0.04139984771609306, 0.027536729350686073, 0.003525911131873727, 0.020656190812587738, 0.0042894030921161175, -0.019271336495876312, 0.007077333051711321, 0.02803236059844494, 0.002004393842071295, 0.0016308478079736233, 0.007930111140012741, 0.0022941199131309986, 0.009912638925015926, 0.004088963847607374, 0.005980382673442364, 0.011946188285946846, -0.03682253882288933, 0.011756681837141514, 0.02211393229663372, 0.009424296207726002, 0.0028170845471322536, 0.029971156269311905, -0.06623975187540054, -0.008039441891014576, -0.0035331998951733112, -0.03390705585479736, -0.020641613751649857, -0.008163349702954292, -0.016632825136184692, -0.008877643384039402, 0.01870281808078289, 0.002700465265661478, 0.0007926467224024236, -0.008126906119287014, 0.004191005602478981, -0.05711429566144943, 0.0028644611593335867, 0.023717446252703667, -0.01903809793293476, 0.03209945932030678, -0.03717239573597908, 0.0007648585014976561, -0.010495735332369804, 0.05090431869029999, -0.004613750614225864, -0.01594768650829792, -0.0027733524329960346, -0.02300315350294113, 0.019008943811058998, 0.017099302262067795, 0.03297410160303116, 0.0035641768481582403, -0.014045335352420807, -0.008440320380032063, -0.016239235177636147, 0.018994366750121117, -0.012871853075921535, 0.00530253304168582, 0.016909796744585037, 0.052391212433576584, -0.0075292326509952545, -0.02189527079463005, 0.03775549307465553, 0.020597880706191063, 0.033178187906742096, 0.04072928428649902, 0.02542300336062908, 0.017128458246588707, 0.027872009202837944, 0.046706024557352066, -0.021035203710198402, 0.018396692350506783, 0.030175240710377693, 0.006042336579412222, -0.018834015354514122, 0.02957756631076336, 0.005521194078028202, 0.0016098928172141314, 0.01893605664372444, 0.03268255293369293, -0.02604983188211918, 0.0023706513457000256, 0.03288663923740387, 0.0020973249338567257, -0.0062354872934520245, 0.005433729849755764, 0.011866012588143349, -0.0042347377166152, -0.0017729775281623006, -0.004384156316518784, 0.006906048394739628, -0.023236392065882683, 0.026793280616402626, 0.024723287671804428, -0.009744998998939991, 0.024169346317648888, 0.07312028855085373, 0.017740707844495773, -0.0003496300778351724, -0.020087672397494316, -0.008950529620051384, -0.027769967913627625, -0.02211393229663372, 0.01452638953924179, -0.013323753140866756, 0.025802016258239746, -0.027478419244289398, -0.013578858226537704, -0.027536729350686073, 0.00869542546570301, -0.015466632321476936, -0.0194754209369421, -0.009686688892543316, 0.026997365057468414, 0.01629754528403282, 0.008134194649755955, 0.027755388990044594, 0.023396743461489677, 0.002842595102265477, -0.048571933060884476, -0.04303251579403877, -0.009905350394546986, -0.0010887503158301115, -0.01346952747553587, -0.008382011204957962, 0.017317963764071465, 0.0070663997903466225, -0.05303261801600456, 0.011567175388336182, 0.022463789209723473, 0.00736888125538826, 0.0051130265928804874, -0.006370328366756439, 0.03221607580780983, 0.008863065391778946, -0.009424296207726002, -0.010991367511451244, -0.033265650272369385, -0.004693926312029362, 0.005473817698657513, -0.0241985023021698, 0.03863013908267021, -0.0131925567984581, -0.017638666555285454, 0.01077999547123909, -0.03830943629145622, -0.04708503559231758, 0.017726130783557892, 0.008403876796364784, -0.006669165100902319, 0.012871853075921535, 0.01187330111861229, 0.06379074603319168, 0.004475264810025692, 0.01992732100188732, 0.027332644909620285, -0.026866167783737183, -0.0005366309196688235, -0.0084694754332304, -0.0013529659481719136, -0.041953787207603455, -0.021720342338085175, 0.035248178988695145, 0.001842220313847065, 0.00868813693523407, -0.04271181300282478, 0.00902341678738594, 0.041516464203596115, 0.005608658771961927, 0.02157456800341606, 0.04618123546242714, 0.011836857534945011, 0.020933162420988083, 0.03265339881181717, 0.029942002147436142, -0.05513176694512367, -0.03291579335927963, 0.009497183375060558, -0.01934422366321087, 0.01794479228556156, -0.009832463227212429, 0.009970949031412601, -0.010269785299897194, 0.011953476816415787, -0.004577307030558586, 0.01793021522462368, 0.03621028736233711, -0.008651693351566792, 0.012915586121380329, -0.0021246576216071844, -0.011567175388336182, -0.017638666555285454, -0.03277001902461052, -0.03014608472585678, -0.022492945194244385, -0.03889252990484238, 0.017959369346499443, 0.03373212739825249, -0.0035969761665910482, 0.024285966530442238, 0.024227656424045563, -0.026691239327192307, -0.004347712732851505, -0.03236185014247894, -0.017201343551278114, 0.019300492480397224, -0.054840218275785446, 0.020962316542863846, 0.013032205402851105, 0.016764022409915924, 0.014694029465317726, 0.0384843647480011, -0.01813429780304432, -0.03244931623339653, -0.008505919016897678, -0.0084111662581563, 0.028192711994051933, -0.002592956880107522, -0.018032256513834, 0.009161902591586113, 0.01241995394229889, 0.002469048835337162, 0.013075937516987324, -0.016866063699126244, 0.003422047011554241, 0.0023232747334986925, 0.03291579335927963, -0.017405427992343903, 0.04682264104485512, -0.005856474861502647, -0.014562833122909069, 0.018003102391958237, -0.0232218150049448, -0.007339726202189922, 0.022274283692240715, -0.009978237561881542, -0.029417214915156364, 0.014584699645638466, -0.01346952747553587, -0.004803256597369909, 0.04122491553425789, -0.007390747312456369, 0.038455210626125336, 0.03553972765803337, 0.01781359501183033, 0.016574515029788017, -0.02078738808631897, 0.00475952448323369, 0.05513176694512367, 0.02035006508231163, -0.004172783810645342, -0.027638770639896393, 0.025656241923570633, -0.021749496459960938, 0.0036789739970117807, -0.019650349393486977, -0.0011771259596571326, -0.009074438363313675, -0.017784440889954567, -0.018338382244110107, 0.031399741768836975, -0.026793280616402626, 0.0034165806137025356, -0.02255125343799591, -0.023906953632831573, 0.032944947481155396, 0.002069992246106267, -0.019387956708669662, 0.004325846675783396, -8.279513713205233e-05, 0.024883639067411423, -0.013484104536473751, -0.02937348186969757, 0.005076583009213209, -0.020539570599794388, -0.01714303530752659, 0.011895166710019112, -0.008301835507154465, 0.017070148140192032, 0.037901267409324646, -0.00473036989569664, 0.027799122035503387, -0.02539384923875332, -0.023455053567886353, 0.00928581040352583, 0.006676454097032547, -0.014752339571714401, -0.013294598087668419, -0.023076040670275688, 0.01769697666168213, 0.021414216607809067, 0.021035203710198402, 0.00583096407353878, 0.014227552339434624, -0.04046689346432686, 0.015524942427873611, -0.01989816501736641, -0.009045283310115337, -0.026705816388130188, -0.027128560468554497, 0.017959369346499443, 0.03551057353615761, -0.010984078980982304, -0.0013775653205811977, -0.007900956086814404, -0.0064942361786961555, -0.01501473318785429, -0.0003022534947376698, -0.02396526373922825, -0.004577307030558586, 0.014657585881650448, -0.013440372422337532, -0.0116109075024724, 0.05014629289507866, 0.038221970200538635, -0.034140296280384064, -0.013331041671335697, -0.0054555959068238735, 0.010852881707251072, -0.030175240710377693, 0.014635720290243626, 0.015408323146402836, 0.03763887286186218, -0.03233269602060318, 0.018017679452896118, 0.002135590650141239, -0.006337529048323631, -0.014358749613165855, 0.01749289222061634, 0.02707025222480297, -0.020933162420988083, -0.00897239614278078, 0.002102791564539075, -0.00868813693523407, 0.025466736406087875, -0.03775549307465553, -0.013717343099415302, -0.008505919016897678, 0.001803043414838612, -0.0034621350932866335, 0.03548141568899155, -0.007350659463554621, 0.008527785539627075, 0.019008943811058998, 0.013775653205811977, 0.0068185837008059025, -0.03113734908401966, 0.0202188678085804, 0.0050364951603114605, -0.012558438815176487, -0.019854433834552765, 0.021253865212202072, 0.033061567693948746, -0.010685241781175137, -0.005666968412697315, 0.010036546736955643, -0.03539395332336426, 0.019183872267603874, 0.0011388602433726192, -0.026151875033974648, -0.015204239636659622, -0.006840449757874012, 0.018834015354514122, -0.046589404344558716, -0.035044096410274506, 0.05507345870137215, 0.00263851135969162, 0.0067857843823730946, 0.016545360907912254, 0.009927216917276382, -0.0032926725689321756, 0.011800413951277733, 0.008338279090821743, 0.016851486638188362, 0.01407448947429657, 0.0014304084470495582, -0.024810751900076866, -0.017522048205137253, -0.006410416215658188, -0.02256583236157894, 0.026924477890133858, 0.015903955325484276, -0.021734919399023056, 0.0015725381672382355, 0.02881954051554203, 0.020641613751649857, -0.0030430343467742205, 0.030408479273319244, 0.016137193888425827, 0.010991367511451244, 0.008156061172485352, 0.006884182337671518, 0.015437478199601173, 0.010240631178021431, -0.012084673158824444, 0.007350659463554621, 0.01593310944736004, -0.006465081591159105, -0.002789751859381795, -0.021691186353564262, 0.024708710610866547, 0.008535074070096016, -0.026458000764250755, 0.027084829285740852, 0.004402378108352423, -0.0005120315472595394, 0.01237622182816267, 0.00305214524269104, -0.008505919016897678, 0.008338279090821743, 0.004067097324877977, -0.034927476197481155, 0.012463686056435108, 0.037463944405317307, 0.02979622781276703, 7.9093842941802e-05, 0.03186621889472008, 0.005353554151952267, 0.01451181247830391, -0.005787231959402561, 0.052303750067949295, 0.017755286768078804, 0.0022503877989947796, 0.00019144240650348365, 0.010743551887571812, -0.01629754528403282, 0.02660377509891987, -0.011858723126351833, 0.019489997997879982, -0.015466632321476936, 0.028615456074476242, -0.004052520263940096, 0.021501680836081505, 0.033382270485162735, 0.019329646602272987, -0.013731921091675758, -0.003174231154844165, 0.035802118480205536, -0.015204239636659622, 0.019883587956428528, -0.03320734202861786, 0.03419860452413559, 0.01297389529645443, 0.03081664629280567, -0.022478366270661354, 0.0011999030830338597, -0.014540966600179672, 0.0561230294406414, -0.010481158271431923, -0.013994313776493073, -0.023469630628824234, 0.006424993742257357, 0.03355719894170761, 0.014417058788239956, -0.017769863829016685, 0.02430054359138012, 0.03588958457112312, 0.007139286957681179, -0.009774154052138329, 0.004271181300282478, -0.033061567693948746, 0.02223055064678192, 0.02233259379863739, 0.008396588265895844, -0.02167660929262638, -0.019373377785086632, 0.011618196032941341, 0.013156113214790821, 0.00946073979139328, -0.017522048205137253, 0.00552848307415843, -0.06449046730995178, 0.013870405964553356, 0.0007871801499277353, -0.0019223960116505623, 0.022172240540385246, 0.015918532386422157, 0.013484104536473751, 0.0013675433583557606, 0.0012071918463334441, 0.02791574038565159, 0.004081674851477146, -0.019723236560821533, 0.021487103775143623, -0.0007666806923225522]" -How Density Manages Large Real Estate Portfolios Using TimescaleDB,"just going to be the default time-series database”Shane SteidleyWhat seems obvious to us now wasn’t obvious back in 2017, when we built an entire time-series database using stored procedures and vanilla PostgreSQL. It was pretty cool when we finally brought over TimescaleDB. We were like: “Oh, it just does all this for us! Look, there’s a bucket function, and it’s going to return the right size buckets that you need. And it handles all of the weirdness of time zones and daylight savings time.” And you can ingest all this data, whereas before, because of how we were using PostgreSQL, we would struggle with ingesting the amount of data we needed to ingest.I think moving forward, TimescaleDB, at least in my opinion, is just going to be the default time-series database. I think you're just going to have to have a reason not to use TimescaleDB because it's so simple and fits in with PostgreSQL.Brock:The top factors that led us to TimescaleDB specifically were its tolerance for high insert rates. It's just blown away all of our expectations, even based on benchmarks that we were able to see online at the time. It's built on top of PostgreSQL, as Shane talked about earlier. There's very little in the way of a special TimescaleDB domain-specific language, and it's operationally very familiar to operating vanilla PostgreSQL.Both of those were huge wins, just both operationally and development-wise. We always have the ability to fall back on core PostgreSQL principles or relational data models as we need to, but we also have the capability to dive deeper into TimescaleDB’s specific functionality to meet those big time-series use cases.“I get the most pride in doing plain SQL against TimescaleDB, getting time-series results at scale, and not having to do a bunch of backflips”Brock FriedrichShane:We use TimescaleDB like a time-series database should be used. We use it not just for the continuous aggregates of count data and other metrics that Brock's touched on, but the bucketing, the things that are so complicated if you push them to application code. When handled in TimescaleDB, it just gives you the right data the way that you want it. There are obviously some edge cases, but 99 % of the time, TimescaleDB just does what you want it to do.Brock: What would we",https://www.timescale.com/blog/density-measures-large-real-estate-portfolios-using-timescaledb/,494,"[-0.00672829570248723, 0.0026700966991484165, 0.04586651921272278, 0.0170747023075819, 0.09729936718940735, 0.02104070968925953, 0.0005949009791947901, 0.009274889715015888, -0.014820341020822525, -0.008794793859124184, 0.027539394795894623, -0.022181805223226547, 0.03696040064096451, -0.03504001721739769, 0.017394766211509705, 0.002602257067337632, 0.0003428943164180964, -0.0017577410908415914, -0.018257547169923782, 0.014848172664642334, -0.018730685114860535, 0.0091566052287817, 0.03932608664035797, 0.022515784949064255, -0.023267239332199097, -0.01399930752813816, -0.016364995390176773, 0.057555802166461945, 0.006853538099676371, -0.028722237795591354, 0.013296559453010559, -0.04956812784075737, -0.031895045191049576, -0.007180559448897839, 0.020831972360610962, -0.003635506145656109, 0.03559665009379387, 0.021026793867349625, 0.03874162212014198, 0.010200290940701962, -0.034093741327524185, 0.025257200002670288, 0.003327618818730116, 0.0004744422622025013, -0.0027274994645267725, 0.007222306914627552, -0.050570063292980194, -0.033537108451128006, -0.030002493411302567, 0.05905871093273163, -0.04901149496436119, 0.011633619666099548, -0.012600768357515335, -0.004139954224228859, -0.005027087405323982, -0.02780379354953766, -0.0025031068362295628, -0.007361465133726597, -0.00011621878365986049, -0.026022570207715034, -0.0013202627887949347, -0.0406620055437088, 0.005722878035157919, 0.022613195702433586, -0.0004390004032757133, 0.0180070623755455, -0.025285031646490097, 0.05140501260757446, -0.027261078357696533, 0.02386561967432499, 0.02252970077097416, -0.0126494737342, -0.00727797020226717, 0.011313555762171745, 0.02752547897398472, -0.058335088193416595, 0.0018264504615217447, 0.08761395514011383, -0.02598082274198532, -0.01868893764913082, -0.0180070623755455, -0.01591969095170498, -0.009963721968233585, 0.02600865438580513, 0.016253668814897537, -0.005528056528419256, -0.01483425684273243, -0.014653351157903671, 0.02048407681286335, 0.029529355466365814, -0.02411610446870327, 0.0568043477833271, 0.034650374203920364, -0.005931615363806486, 0.04291636869311333, -0.008773920126259327, 0.009414047934114933, 0.033286623656749725, 0.02573033794760704, -0.012183294631540775, -0.004428707528859377, -0.010673428885638714, -0.024686653167009354, -0.014486361294984818, 0.051599834114313126, -9.496455459157005e-05, 0.0034093742724508047, 0.008579098619520664, 0.012329410761594772, 0.024992799386382103, -0.10982359945774078, -0.004835744854062796, -0.039186928421258926, 0.014145423658192158, -0.028666574507951736, -0.012920832261443138, -0.02424134686589241, 0.04302769526839256, -0.002659659832715988, 0.018048809841275215, -0.011431840248405933, 0.008029423654079437, -0.037878844887018204, 0.02275235392153263, 0.007758065592497587, -0.026607034727931023, 0.027553310617804527, -0.05396552383899689, -0.06373442709445953, -0.04121863842010498, 0.023642966523766518, -0.01722777634859085, 0.018605442717671394, -0.01408976037055254, -0.006818748544901609, 0.037071727216243744, -0.078206866979599, -0.010464691556990147, 0.00242483033798635, -0.00795984547585249, -0.013226980343461037, -0.0397157296538353, 0.039465244859457016, -0.037071727216243744, -0.0029849419370293617, 0.03709955886006355, -0.04341733828186989, 0.03470603749155998, 0.0005314100999385118, -0.00146637880243361, -0.010116796009242535, 0.007097064517438412, -0.037016063928604126, -0.0024613593704998493, 0.04981860890984535, 0.009205310605466366, 0.0007192735793069005, 0.06122957915067673, 0.006042941939085722, -0.03799016773700714, 0.012037178501486778, 0.03448338434100151, -0.009045278653502464, 0.011765819974243641, -0.021054625511169434, -0.012398989871144295, -0.017603503540158272, -0.03556881844997406, -0.06495901197195053, -0.017770493403077126, -0.04472542181611061, -0.01267730537801981, -0.026774024590849876, 0.01246161013841629, 0.027567226439714432, -0.005646341014653444, -0.014416782185435295, -0.07319717854261398, 0.053186237812042236, -0.0434451699256897, -0.0471746064722538, 0.0018542821053415537, -0.037043895572423935, 0.024561410769820213, 0.007222306914627552, -0.011584914289414883, -0.03765619173645973, 0.01301824301481247, 0.011696240864694118, 0.019482137635350227, -0.061340902000665665, 0.04761991277337074, 0.023670798167586327, 0.031421907246112823, 0.013894938863813877, -0.06996870785951614, 0.010687344707548618, 0.03996621444821358, -0.031616728752851486, 0.02181999571621418, 0.07670395821332932, 0.0288613960146904, 0.07720492780208588, 0.005782020278275013, -0.014903835952281952, 0.015001246705651283, 0.0167546384036541, 0.013637497089803219, -0.06473635882139206, -0.022487953305244446, -0.014110634103417397, -0.011160481721162796, -0.0038477221969515085, 0.01289300061762333, -0.03362060338258743, -0.009080068208277225, -0.0512101911008358, -0.013867107219994068, -0.025243284180760384, -0.03261866420507431, 0.04286070540547371, 0.04817654564976692, -0.006669153459370136, -0.012934748083353043, -0.008460814133286476, 0.012886042706668377, 0.020651066675782204, -0.03715522214770317, 0.008481687866151333, 0.010457733646035194, -0.016490237787365913, -0.039743561297655106, 0.005729835946112871, -0.06468069553375244, 0.011056113056838512, 0.021889572963118553, 0.014263708144426346, -0.03740570694208145, -0.02098504640161991, -0.024408336728811264, -0.011772777885198593, 0.009664531797170639, -0.002235227497294545, -0.008516477420926094, -0.011557082645595074, -0.008105960674583912, -0.02154167927801609, -0.028666574507951736, 0.022849764674901962, 0.05115452781319618, 0.047536417841911316, -0.044892411679029465, -0.005493266973644495, -0.0011071768822148442, -0.041385628283023834, -0.06980171799659729, 0.00900353118777275, 0.00214129569940269, 0.0014350682031363249, 0.012913874350488186, -0.02911188080906868, -0.03014165163040161, -0.010047216899693012, 0.003586800768971443, -0.028750069439411163, 0.036765579134225845, 0.02321157604455948, -0.06195319816470146, 0.03281348571181297, -0.016086678951978683, 0.03587496653199196, 0.06551564484834671, 0.030920935794711113, -0.04280504211783409, -0.010311617515981197, -0.057277485728263855, -0.02833259478211403, 0.008092044852674007, -0.013185232877731323, -0.026927098631858826, 6.5176012867596e-05, -0.05018042027950287, 0.005521098617464304, 0.0026126939337700605, 0.014291539788246155, 0.003353710984811187, 0.010972618125379086, 0.056470368057489395, 0.002788380952551961, -0.04425228387117386, -0.028722237795591354, 0.013101737946271896, 0.020219676196575165, -0.021096372976899147, -0.002316982951015234, 0.01914815790951252, 0.015808364376425743, 0.005312361754477024, -0.028137773275375366, -0.03153323382139206, 0.038129325956106186, -0.023949114605784416, 0.006961385253816843, -0.02989116683602333, 0.029835503548383713, -0.011884104460477829, -0.03075394593179226, -0.025521600618958473, -0.004324338864535093, 0.016991207376122475, -0.011807567439973354, -0.013818402774631977, -0.014242834411561489, -0.03153323382139206, 0.008926994167268276, -0.023420313373208046, 0.05332539603114128, 0.02290542796254158, -0.028638742864131927, -0.059114374220371246, -0.02159734256565571, -0.04901149496436119, -0.01828537881374359, 0.0016872923588380218, 0.02477014809846878, -0.006797874812036753, -0.0011619704309850931, -0.006926596164703369, 0.04926197975873947, -0.015154320746660233, 0.005347151309251785, -0.03236817941069603, 0.007326675578951836, 0.030364304780960083, -0.03495652228593826, -0.05282442644238472, 0.016838133335113525, 0.005319319665431976, -0.03665425255894661, 0.037016063928604126, -0.026300886645913124, -0.005169724579900503, -0.07642564177513123, -0.002598778111860156, -0.001435937942005694, 0.023044586181640625, 0.01166840922087431, 0.0009793253848329186, -0.020929383113980293, 0.016865964978933334, -0.03748920187354088, -3.329466926516034e-05, 0.040328025817871094, 0.035401828587055206, -0.011410966515541077, -0.010666470974683762, 0.011313555762171745, -0.01985786482691765, -0.0446975901722908, 0.003983401693403721, -0.0033171819522976875, 0.03317529708147049, 0.000886698195245117, -0.004546992015093565, -0.019384726881980896, -0.0055350144393742085, -0.03690473735332489, -0.010012427344918251, -0.00795984547585249, -0.00012056747073074803, 0.02941802889108658, 0.024102188646793365, -0.02504846267402172, -0.01778440922498703, 0.0020195322576910257, -0.021054625511169434, 0.04684062674641609, 0.032757822424173355, -0.015474383719265461, 0.042471062391996384, 0.005997715517878532, -0.0014237615978345275, 0.004442623350769281, 0.004672234412282705, 0.07197258621454239, 0.06067294627428055, 0.0035972376354038715, 0.057555802166461945, -0.04709111154079437, -0.03824065253138542, 0.016518069431185722, -0.007375380955636501, 0.008043339475989342, -0.0038825117517262697, 0.0026144334115087986, 0.004439144395291805, -0.003642464056611061, 0.0456160344183445, 0.03824065253138542, -0.028944890946149826, 0.03584713488817215, -0.017867904156446457, -0.03097659908235073, -0.03718305379152298, 0.006808311678469181, 0.03211769461631775, 0.0029223207384347916, 0.02361513487994671, -0.05288008973002434, 0.008105960674583912, -0.023907367140054703, 0.012670347467064857, 0.028889227658510208, -0.04617266729474068, 0.02691318280994892, -0.012141547165811062, -0.030893104150891304, 0.0716942697763443, 0.003830327419564128, 0.08577707409858704, -0.0008597363485023379, -0.014500277116894722, -0.0332031287252903, 0.0009236620971933007, -0.03743353858590126, 0.072028249502182, 0.030392136424779892, -0.020094433799386024, -0.021263362839818, -0.0397157296538353, -0.014131507836282253, -0.017046870663762093, 0.023197660222649574, -0.010861292481422424, -0.0063282158225774765, -0.005374982953071594, 0.018174052238464355, -0.02671836130321026, 0.05691567435860634, 0.020845888182520866, -0.0428328737616539, 0.035958461463451385, -0.012746884487569332, -0.009984595701098442, -0.0285552479326725, -0.028109941631555557, -0.02290542796254158, -0.05733314901590347, -0.019871780648827553, -0.010388154536485672, 0.04013320431113243, -0.013978433795273304, -0.04453060030937195, -0.006749169435352087, 0.003103226190432906, -0.035151343792676926, 0.026217391714453697, -0.012642515823245049, 0.01379752904176712, -0.018146220594644547, -0.00040942931082099676, -0.0018264504615217447, -0.08082304149866104, -0.02414393611252308, -0.013908854685723782, -0.026760108768939972, 0.04497590661048889, 0.029195375740528107, 0.011042197234928608, -0.028917059302330017, -0.00020830232824664563, 0.03526267036795616, 0.00802246667444706, -0.02386561967432499, -0.015446552075445652, 0.017742661759257317, -0.02035883441567421, 0.028193436563014984, -0.010819545015692711, -0.05449432507157326, 0.040578510612249374, -0.03267432749271393, 0.0017516529187560081, 0.03982705622911453, 0.002562249079346657, -0.009441879577934742, 0.029557187110185623, 0.02467273734509945, -0.0015864026499912143, 0.014695098623633385, -0.005611551459878683, -0.006109042093157768, 0.02858307957649231, -0.0164484903216362, -0.040828995406627655, 0.005935094319283962, -0.06061728298664093, -0.011786693707108498, 0.011007407680153847, -0.01305303256958723, 0.012176336720585823, 0.012593810446560383, 0.02545202150940895, 0.058335088193416595, -0.014221960678696632, 0.01781224086880684, 0.00042791126179508865, 0.016768554225564003, -0.012350284494459629, -0.042665883898735046, -0.03175588697195053, -0.007625865750014782, 0.02616172842681408, 0.0015933605609461665, 0.006303863134235144, 0.032479505985975266, -0.02035883441567421, 0.0215695109218359, -0.016810301691293716, -0.019496053457260132, -0.01977436989545822, -0.03907560184597969, -0.022543616592884064, -0.0039138225838541985, -0.004400875885039568, 0.009052236564457417, -0.04828787222504616, 0.008300782181322575, -0.004324338864535093, -0.008739130571484566, 0.0050618769600987434, -0.010582976043224335, 0.022585364058613777, -0.0060011944733560085, -0.01713036559522152, 0.026328718289732933, -0.003576363902539015, -0.03075394593179226, -0.024199599400162697, -0.00514537189155817, 0.009650615975260735, 0.022140057757496834, 0.023642966523766518, 0.0328969806432724, 0.01379752904176712, -0.0144306980073452, 0.006251678802073002, 0.005301924888044596, 0.01305303256958723, 0.01632324792444706, 0.020901551470160484, -0.004143433179706335, 0.03860246390104294, -0.019482137635350227, 0.0173808503895998, 0.01713036559522152, 0.005879431031644344, 0.0268436037003994, 0.012698179110884666, 0.022237468510866165, 0.019941359758377075, -0.01520998403429985, -0.005663735792040825, -0.005054919049143791, -0.006811790633946657, 0.043834809213876724, 0.007424086332321167, -0.01980220153927803, 0.0015942302998155355, 0.020344918593764305, 0.002198698464781046, 0.01402713917195797, 0.012329410761594772, -0.005027087405323982, -0.010812587104737759, 0.011397050693631172, -0.042972031980752945, -0.0003294133930467069, 0.00022743656882084906, -0.0031728052999824286, -0.022543616592884064, -0.0054793511517345905, -0.02293325960636139, 0.028235184028744698, -0.04697978496551514, 0.008119876496493816, 0.025006715208292007, 0.011000449769198895, 0.03501218557357788, -0.026871435344219208, -0.03456687927246094, -0.0059698838740587234, -0.017923567444086075, -5.941400013398379e-05, 0.03292481228709221, 0.006422147620469332, 0.007361465133726597, 0.013637497089803219, -0.013414843939244747, 0.0304199680685997, 0.005949010141193867, 0.01483425684273243, -0.015363057143986225, -0.015697037801146507, -0.0353739969432354, 0.030948767438530922, -0.006157747469842434, -0.015683121979236603, 0.03793450817465782, -0.009991553612053394, 0.04508723318576813, -0.014542024582624435, 0.003447642782703042, -0.0487331785261631, -0.023851703852415085, -0.01806272566318512, -0.026147812604904175, -0.017895735800266266, -0.0021065061446279287, -0.02361513487994671, -0.030614789575338364, -0.0285552479326725, 0.014249792322516441, -0.03256300091743469, 0.010951744392514229, 0.010367280803620815, -0.028666574507951736, -0.02861091122031212, -0.0019934403244405985, 0.028193436563014984, -0.009622784331440926, 0.015836196020245552, 0.027845541015267372, 0.022794101387262344, 0.020998962223529816, 0.050848379731178284, 0.04016103595495224, 0.038157157599925995, -0.002659659832715988, 0.00930967926979065, 0.026996677741408348, 0.013915812596678734, 0.0018681979272514582, 0.01010288018733263, 0.008314698003232479, -0.03643159940838814, -0.0051488508470356464, 0.03470603749155998, -0.017617419362068176, -0.02989116683602333, 0.008606930263340473, -0.02535461075603962, 0.0791531428694725, 0.018048809841275215, 0.02575816959142685, 0.00010561884846538305, -0.025424189865589142, -0.029167544096708298, 0.00101237534545362, 0.019078578799962997, -0.0350678488612175, 0.004181701689958572, 0.0016281501157209277, 0.0048322658985853195, -0.023420313373208046, 0.0015124749625101686, 0.03556881844997406, 0.018800264224410057, 0.04642315208911896, 0.008989615365862846, -0.036264609545469284, -0.005385419819504023, 0.03103226236999035, -0.005510661751031876, 0.03604195639491081, 0.012795589864253998, 0.03286914899945259, -0.009414047934114933, 0.0019203821429982781, 0.06061728298664093, -0.029974661767482758, 0.024505747482180595, -0.018201883882284164, 0.0037433537654578686, -0.02550768479704857, -0.03643159940838814, -0.009754984639585018, 0.037322212010622025, 0.02833259478211403, 0.03231251612305641, -0.0008488646126352251, -0.020818056538701057, -0.004901845008134842, -0.015029078349471092, 2.561651126598008e-05, -0.009059194475412369, -0.0030301683582365513, 0.04235973581671715, -0.019259484484791756, -0.032729990780353546, -0.003750311676412821, -0.006394315976649523, -0.035179175436496735, -0.047313764691352844, -0.0394095815718174, 0.003101486712694168, -0.005110582336783409, 0.02355947159230709, 0.031171420589089394, -0.008975699543952942, -0.043250348418951035, 0.012579894624650478, -0.022863680496811867, 0.004755728878080845, -0.004571344703435898, 0.0020090953912585974, -0.01924556866288185, 0.02275235392153263, -0.010701260529458523, 0.002567467512562871, -0.06173054501414299, -0.013839276507496834, 0.0010497741168364882, -0.06384575366973877, 0.049985598772764206, -0.0167546384036541, 0.006258636713027954, 0.004160827957093716, 0.011751904152333736, -0.001238507335074246, 0.0013654892100021243, 0.013213064521551132, 0.0409681536257267, -0.025159789249300957, 0.015154320746660233, -0.013101737946271896, -0.02600865438580513, 0.012858211062848568, -0.019231652840971947, -0.0018768953159451485, -0.028777901083230972, 0.01889767497777939, -0.005277572199702263, -0.011278766207396984, 0.02799861505627632, -0.01930123195052147, 0.042665883898735046, 0.04611700400710106, 0.017450429499149323, -0.008092044852674007, -0.019259484484791756, 0.012760800309479237, -0.037600528448820114, 0.015168236568570137, 0.010360322892665863, -0.011473587714135647, 0.006644800771027803, 0.017241692170500755, -0.026064317673444748, 0.04425228387117386, -0.0052671353332698345, -0.0012741666287183762, -0.029195375740528107, -0.0008562573930248618, 0.019440390169620514, 0.007785897236317396, 0.0002746198733802885, -0.0038755538407713175, -0.0016698975814506412, -0.05844641476869583, -0.026203475892543793, -0.00023395961034111679, 0.006954427342861891, -0.02454749494791031, 0.042192745953798294, 0.023921282961964607, 0.016392827033996582, -0.011056113056838512, -0.02575816959142685, -0.030559126287698746, 0.006596095394343138, 0.004341733641922474, 0.015724869444966316, -0.01617017388343811, -0.0053158407099545, -0.0030284288804978132, -0.002421351382508874, -0.009351426735520363, -0.018828095868229866, -0.04528205469250679, -0.006843101233243942, 0.00406689615920186, -0.009692363440990448, 0.03548532351851463, -0.002426569815725088, 0.020247507840394974, 0.014068886637687683, -0.09473885595798492, -0.027817709371447563, 0.025535516440868378, -0.010923913680016994, -0.02433875761926174, -0.00734059140086174, 0.01740868203341961, 0.03860246390104294, 0.024811893701553345, -0.028777901083230972, -0.017450429499149323, -0.02308633364737034, -0.027956867590546608, -0.011758862063288689, -0.014075844548642635, -0.007472791709005833, 0.042471062391996384, 0.01793748326599598, 0.016643311828374863, -0.00025635535712353885, -0.017144281417131424, 0.005385419819504023, -0.027970783412456512, 0.04171960800886154, 0.011904978193342686, -0.0037920591421425343, -0.01629541628062725, 0.05705483257770538, 0.018786348402500153, -0.03966006636619568, -0.013108695857226849, 0.02197306789457798, 0.005242782644927502, -0.013616623356938362, -0.005541972350329161, 0.0037990170530974865, 0.0119467256590724, 0.004606134258210659, 0.00900353118777275, 0.01796531490981579, -0.02941802889108658, -0.03267432749271393, 0.050291746854782104, -0.06501467525959015, 0.051071032881736755, -0.028193436563014984, 0.0004627007874660194, 0.008697383105754852, -0.001128050615079701, -0.011473587714135647, 0.05794544517993927, -0.006759606301784515, -0.02010834962129593, -0.005945531185716391, 0.012002388946712017, -0.0001663374569034204, -0.0552457794547081, -0.019593464210629463, 0.010422944091260433, 0.012238957919180393, -0.028109941631555557, -0.009504499845206738, 0.015836196020245552, -0.04990210384130478, -0.002287411829456687, -0.010603849776089191, 0.02724716253578663, 0.02939019724726677, 0.010422944091260433, 0.010019385255873203, 0.023768208920955658, 0.02563292719423771, 0.023072417825460434, -0.019621295854449272, 0.03657075762748718, 0.0070901066064834595, 0.012691221199929714, -0.019509969279170036, -0.015627458691596985, -0.0068222275003790855, 0.020094433799386024, -0.018786348402500153, -0.022613195702433586, 0.00807117111980915, -0.023851703852415085, -0.0238934513181448, -0.013707076199352741, -0.005910741630941629, 0.016337163746356964, 0.0017716569127514958, 0.04603350907564163, -0.015571794472634792, -0.018758516758680344, 0.008766962215304375, -0.011689282953739166, -0.024227431043982506, 0.015655290335416794, 0.001523781567811966, -0.011696240864694118, -0.0006814399966970086, 0.03395458310842514, -0.017019039019942284, 0.0024004776496440172, -0.0022769749630242586, -0.025159789249300957, -0.006022068206220865, 0.011028281413018703, -0.014903835952281952, -0.014361118897795677, 0.03144973888993263, -0.03323096036911011, -0.016253668814897537, 0.024255262687802315, 0.0014228918589651585, 0.018299294635653496, -0.0028944890946149826, 0.01647632196545601, 0.02939019724726677, -0.019885696470737457, 0.001862979494035244, 0.02348989248275757, -0.03261866420507431, 0.0070622749626636505, 0.033564940094947815, -0.016406742855906487, 0.007486707530915737, 0.05143284425139427, -0.010172459296882153, -0.008426024578511715, -0.03451121598482132, 0.006178621202707291, 0.0577227920293808, 0.0076815285719931126, 0.03478953242301941, 0.018118388950824738, -0.031143588945269585, 0.009198352694511414, 0.0025326779577881098, 0.018953338265419006, 0.024811893701553345, 0.002652701921761036, 0.005900304764509201, 0.007945929653942585, 0.010617765597999096, 0.030058156698942184, -0.020901551470160484, -0.024589242413640022, -0.009560163132846355, -0.03364843502640724, 0.0197047907859087, 0.03309180215001106, -0.036014124751091, -0.01775657758116722, 0.07219523936510086, -0.029473692178726196, 0.0428328737616539, -0.03857463225722313, -0.002511804224923253, -0.00847472995519638, -0.04060634225606918, -0.00746583379805088, 0.02411610446870327, 0.04235973581671715, -0.02941802889108658, 0.011320513673126698, -0.019593464210629463, -0.018730685114860535, 0.0024404856376349926, -0.026092149317264557, 0.007072711829096079, -0.02547985315322876, 0.005500224884599447, 0.01273992657661438, 0.021764332428574562, 0.056442536413669586, 0.013171317055821419, -0.02479797974228859, 0.02250186912715435, -0.00434521259739995, -0.0037746643647551537, -0.01508474163711071, 0.01508474163711071, 0.018730685114860535, 0.031950708478689194, 0.04227624088525772, -0.013122611679136753, -0.03615328297019005, 0.00809900276362896, -0.003391979495063424, 0.008669551461935043, 0.036208946257829666, -0.008154666051268578, -0.0043312967754900455, 0.01072213426232338, -0.029585018754005432, -0.0048914081417024136, 0.04394613578915596, -6.757459232176188e-06, 0.01393668632954359, 0.02833259478211403, -0.03337011858820915, 0.009351426735520363, 0.003358929418027401, -0.01983003318309784, 0.009337510913610458, 0.04603350907564163, -0.01980220153927803, 0.006815269589424133, -0.008648677729070187, 0.0176869984716177, 0.02482580952346325, -0.012336368672549725, -0.0013907115207985044, -5.210276140132919e-05, -0.026676613837480545, 0.006971822120249271, -0.004943592473864555, 0.016643311828374863, -0.015557878650724888, -0.002028229646384716, -0.024032609537243843, -0.0164484903216362, -0.016239752992987633, 0.042164914309978485, -0.01025595422834158, 0.0183132104575634, -0.02104070968925953, 0.04249889403581619, -0.01104915514588356, -0.007201433181762695, -0.006425626575946808, 0.01579444855451584, 0.01868893764913082, 0.008669551461935043, 0.04397396743297577, 0.03643159940838814, -0.0011054374044761062, 0.01942647434771061, -0.016462406143546104, -0.0022734960075467825, 0.00982456374913454, -0.003969485871493816, 0.022362710908055305, -0.02479797974228859, -0.013414843939244747, 0.005778541322797537, 0.04171960800886154, 0.008920036256313324, 0.02585558034479618, -0.014221960678696632, -0.007479749619960785, -0.0008536481764167547, 0.02268277481198311, 0.0050618769600987434, 0.05822376161813736, 0.03267432749271393, -0.00569504639133811, 0.013324391096830368, 0.0002883182605728507, -0.01841062121093273, -0.015307394787669182, 0.033036138862371445, 0.015808364376425743, 0.003889469662681222, -0.0003839894779957831, 0.01821579970419407, 0.012879084795713425, 0.011355303227901459, -9.039842552738264e-05, -0.004094727803021669, -0.02368471398949623, 0.01992744393646717, 0.011682325042784214, 0.002450922504067421, -0.00795984547585249, 0.034873027354478836, -0.07225090265274048, -0.02532677911221981, -0.0009984596399590373, -0.03810149431228638, -0.0075841182842850685, -0.006488247774541378, -0.024408336728811264, -0.012691221199929714, 0.036737747490406036, -0.01846628449857235, -0.018243631348013878, -0.027330657467246056, 0.010562102310359478, -0.03726654872298241, -0.006401273887604475, 0.013094780035316944, -0.019537800922989845, 0.059448353946208954, -0.015571794472634792, 0.0075841182842850685, -0.004884450230747461, 0.0288613960146904, -0.010896082036197186, -0.02694101445376873, 0.012482483871281147, -0.02138860523700714, 0.028165604919195175, 0.0176869984716177, 0.021263362839818, 0.019231652840971947, -0.018452368676662445, -0.016935544088482857, 0.0026196518447250128, 0.0060881683602929115, 0.00951145775616169, 0.004828786943107843, 0.007646739482879639, 0.04288853704929352, 0.004400875885039568, -0.01113960798829794, 0.033008307218551636, 0.02300283871591091, 0.03239601105451584, 0.042443230748176575, 0.00786939263343811, 0.004494807682931423, 0.026370465755462646, 0.050792716443538666, -0.01591969095170498, 0.007250138558447361, 0.04363999143242836, 0.020567571744322777, -0.041886597871780396, 0.01292779017239809, 0.023475976660847664, 0.013226980343461037, 0.009796732105314732, 0.02852741628885269, -0.024728400632739067, 0.006258636713027954, 0.02104070968925953, 0.009657573886215687, 0.0008005941053852439, -0.009107899852097034, 0.014653351157903671, -0.0119467256590724, -0.0010045476956292987, -0.009518415667116642, 0.003750311676412821, -0.030503463000059128, 0.01843845285475254, 0.029779840260744095, -0.010944786481559277, 0.00909398403018713, 0.055078789591789246, 0.023364650085568428, 0.0007344940095208585, 0.004738334566354752, -0.01345659140497446, -0.019384726881980896, -0.017032954841852188, -0.007813729345798492, -0.010798671282827854, 0.0443914420902729, -0.04689629003405571, -0.004828786943107843, -0.028068194165825844, 0.0025796438567340374, -0.007486707530915737, -0.02557726390659809, -0.0007510190480388701, 0.042471062391996384, 0.015042994171380997, -0.00519059831276536, 0.01157795637845993, 0.022418374195694923, -0.032729990780353546, -0.05396552383899689, -0.03559665009379387, -0.015585710294544697, -0.00046139617916196585, -0.004369565285742283, -0.012357242405414581, 0.01219721045345068, -0.0029727655928581953, -0.03968789801001549, -0.008683467283844948, 0.045922182500362396, -0.03206203505396843, 0.012830379419028759, -0.016156258061528206, 0.018730685114860535, 0.011104818433523178, 0.007646739482879639, -0.018132304772734642, -0.023642966523766518, 0.006133394781500101, -0.00937230046838522, -0.020094433799386024, 0.03874162212014198, -0.016629396006464958, -0.02731674164533615, 0.0008880028035491705, -0.03721088543534279, -0.04288853704929352, 0.01806272566318512, -0.011772777885198593, 0.002958849770948291, 0.005848120432347059, -0.001776005607098341, 0.06295514106750488, 0.00828686635941267, 0.016392827033996582, 0.012037178501486778, -0.014242834411561489, 0.018048809841275215, -0.028416089713573456, -0.008509519509971142, -0.04060634225606918, -0.023726461455225945, 0.029000554233789444, -0.005037524271756411, 0.004167785868048668, -0.034900858998298645, 0.004783560521900654, 0.04199792444705963, -0.007813729345798492, -0.005281051155179739, 0.03334228694438934, 0.015251731500029564, 0.012357242405414581, 0.008648677729070187, 0.010930871590971947, -0.05883605778217316, -0.02380995638668537, 0.02045624516904354, -0.027817709371447563, 0.033008307218551636, -0.011932809837162495, -0.00021373819618020207, -0.0007462354842573404, -0.005399335641413927, -0.02237662672996521, 0.016337163746356964, 0.01654590107500553, -0.014778593555092812, 0.0031449736561626196, 0.005667214747518301, -0.01700512319803238, -0.015098657459020615, -0.034650374203920364, -0.0030423447024077177, -0.020957214757800102, -0.013226980343461037, 0.02744198404252529, 0.017673082649707794, -0.024964967742562294, 0.028666574507951736, 0.011431840248405933, -0.009052236564457417, 0.005893346853554249, -0.028917059302330017, 0.002687491476535797, -0.004769644699990749, -0.03712739050388336, 0.047592081129550934, 0.03075394593179226, 0.0030353867914527655, 0.00740321259945631, 0.01589185930788517, -0.00853735115379095, -0.0055941566824913025, -0.017993146553635597, -0.016768554225564003, 0.033592771738767624, 0.01756175607442856, 0.002026490168645978, -0.002715323120355606, 0.018800264224410057, -0.0016168435104191303, 0.0007184038404375315, 0.020845888182520866, 0.015279563143849373, -0.011960641480982304, 0.023531639948487282, -0.03234034776687622, 0.05015258863568306, -0.009901100769639015, 0.006390837021172047, 0.030670451000332832, 0.0023761249613016844, -0.0031171420123428106, 0.027608973905444145, 0.0075562866404652596, -0.041914429515600204, 0.01834104210138321, -0.009525373578071594, -0.0053158407099545, 0.027386320754885674, 0.006996174808591604, 0.03323096036911011, 0.03587496653199196, 0.012510315515100956, 2.272191341035068e-05, -0.027288910001516342, -0.006157747469842434, 0.04010537266731262, 0.010061132721602917, 0.011271808296442032, -0.03854680061340332, 0.03874162212014198, -0.04494807496666908, -0.001465509063564241, -0.01351921260356903, 0.003275434486567974, 0.009121815674006939, -0.00462352903559804, -0.041357796639204025, 0.014820341020822525, -0.03779534995555878, -0.009330553002655506, -0.047007616609334946, -0.028068194165825844, 0.021611258387565613, -0.025243284180760384, -0.03128274902701378, -0.002790120430290699, 0.02625913918018341, 0.02197306789457798, -0.007065753918141127, -0.017979230731725693, -0.015836196020245552, -0.017032954841852188, -0.020136181265115738, 0.012795589864253998, 0.0005827246932312846, 0.016865964978933334, 0.02184782736003399, -0.0021047666668891907, 0.020164012908935547, -0.01710253395140171, -0.005604593548923731, -0.0012793850619345903, -0.0002898403035942465, -0.003518961137160659, 0.004303465131670237, -0.013150443322956562, 0.020428413525223732, 0.024700568988919258, 0.03751703351736069, 0.025006715208292007, 0.031199252232909203, -0.03709955886006355, -0.017325187101960182, -0.02088763564825058, -0.006804832722991705, -0.003179763210937381, -0.02489538863301277, 0.019899612292647362, 0.015307394787669182, -0.010388154536485672, 0.003419811138883233, -0.024352673441171646, 0.0074380021542310715, 0.0002524415322113782, 0.007695444393903017, -0.012266789563000202, 0.01859152689576149, 0.031060094013810158, -0.0012750363675877452, -0.007751107681542635, 0.045449044555425644, -0.0031432341784238815, -0.039771392941474915, -0.008579098619520664, 0.0032058553770184517, 0.03768402338027954, -0.02393519878387451, 0.024533579126000404, 0.01622583717107773, 0.0193986427038908, -0.0010393372504040599, 0.03451121598482132, 0.00928184762597084, -0.017060786485671997, -0.01273992657661438, 0.025549432262778282, 0.025243284180760384, 0.007319717667996883, -0.014848172664642334, 0.001720342435874045, -0.030308641493320465, 0.004139954224228859, -0.046729300171136856, -0.01809055730700493, -0.002737936098128557, 0.007813729345798492, -0.006742211524397135, 0.02005268633365631, -0.004915760830044746, -0.0068500591441988945, -0.012531189247965813, 0.006543911062180996, 0.024436168372631073, -0.02964068204164505, 0.00930967926979065, 0.002998857758939266, -0.002423090860247612, -0.017993146553635597, -0.00542368832975626, 0.008544309064745903, 0.009949806146323681, -0.006470852997153997, 0.01728343963623047, -0.02144426852464676, 0.0006975301075726748, 0.005601114593446255, -0.014444613829255104, 0.004571344703435898, -0.006867453921586275, 0.01351921260356903, -0.049206316471099854, -0.03885294869542122, 0.03854680061340332, -0.006070773582905531, 0.01601710170507431, 0.0065299952402710915, -0.0060011944733560085, -0.007298843935132027, 0.008885246701538563, 0.02694101445376873, 0.03629244118928909, 0.014889920130372047, 0.003054521046578884, -0.0173808503895998, -0.007723276037722826, -0.024310925975441933, -0.03668208420276642, 0.02454749494791031, 0.004052980337291956, -0.03044779971241951, 0.024839725345373154, 0.012913874350488186, 0.026050401851534843, -0.003051042091101408, 0.022014815360307693, -0.011536208912730217, 0.019788285717368126, 0.0065021635964512825, -0.01660156436264515, 0.02507629431784153, 0.005333235487341881, -0.011821483261883259, 0.001157621736638248, 0.020567571744322777, -0.010513396933674812, -0.011118734255433083, -0.03504001721739769, 0.012350284494459629, 0.011661451309919357, -0.013693160377442837, 0.0010619504610076547, -0.011278766207396984, -0.013373096473515034, 0.033258792012929916, -0.006686548236757517, -0.009734110906720161, 0.004793997388333082, -0.013108695857226849, -0.023726461455225945, 0.00884349923580885, 0.04013320431113243, 0.03256300091743469, -0.002230009064078331, 0.02010834962129593, -0.0038790327962487936, 0.01728343963623047, -0.00048574883840046823, 0.033008307218551636, 0.03175588697195053, 0.008913078345358372, 0.01273992657661438, 0.0004853139689657837, -0.03256300091743469, 0.029278870671987534, 0.00988718494772911, 0.04277721047401428, -0.010262912139296532, 0.03392675146460533, -0.0038268486969172955, 0.03267432749271393, 0.04311119019985199, 0.015168236568570137, -0.008259034715592861, -0.02625913918018341, 0.009302721358835697, -0.01881418004631996, 0.02479797974228859, -0.01995527558028698, 0.05788978189229965, 0.016629396006464958, 0.02179216407239437, -0.004988818895071745, -0.0030893106013536453, -0.013254811987280846, 0.025994738563895226, -0.027205415070056915, -0.022487953305244446, -0.017422597855329514, 0.005068834871053696, 0.031421907246112823, 0.017895735800266266, 0.000990631990134716, 0.0070901066064834595, 0.05688784271478653, 0.015363057143986225, -0.00401123333722353, -0.012879084795713425, -0.01750609278678894, -0.0060290261171758175, 0.03829631581902504, 0.01376273948699236, -0.027414152398705482, -0.011821483261883259, 0.0033502320293337107, 0.008238160982728004, 0.01889767497777939, -0.006686548236757517, 0.0176869984716177, -0.04074550047516823, 0.020317086949944496, 0.03470603749155998, -0.004195617511868477, 0.04723026975989342, 0.039799224585294724, -0.0005240173195488751, 0.006731774657964706, -0.002059540245682001, 0.02774813026189804, 0.015822280198335648, -0.005823767744004726, 0.026245223358273506, 0.016907712444663048]" -How Density Manages Large Real Estate Portfolios Using TimescaleDB,"use if TimescaleDB didn't exist is one of those topics that I like not to think about because it gives me anxiety. There are plenty of other time-series database options, but none fit the cross-section of requirements that at least Density has in quite the manner that TimescaleDB does. So whenever somebody else asks me that question, like in passing, I just say, “Let's just pretend like that's not possible and go about our business.”I get really proud of querying against TimescaleDB whenever we run really simple queries, like selecting the data from one of our sensors for a day from six years ago, and we run that at scale, and it runs like it would run in a much smaller scale like we only had a few months of data. And that goes back to one of the things I was appreciating earlier, which is that chunk exclusion –– that ability to operate what would be these really large query plans for vanilla PostgreSQL, and trim them down to something that’s predictable and reasonable, and operates at relatively low latencies. So all that’s to say, I get the most pride in doing plain SQL against TimescaleDB, getting time-series results at scale, and not having to do a bunch of backflips./* This query yields space count aggregates at 10-minute resolution for a given set of spaces over a three-day period, where each 10-minute bucket is represented in the output, even if that bucket contains no data.The query first selects data from a sparse one-minute cagg and unions that data to a set of empty records, generated with the Postgres generate_series function, then rolls up the unioned records into 10-minute aggregates. The union against the set of empty records ensures that all 10-minute intervals are represented in the final results. This step is necessary as the one-minute data is sparse, meaning a given 10-minute interval could contain no data, and the time_bucket_gapfill function does not register that a bucket needs to be injected if no records exist within an interval. */ select und.space_id, time_bucket('10m', und.inner_bucket) as bucket, min(und.occupancy_min) as occupancy_min, max(und.occupancy_max) as occupancy_max, first(und.first_occupancy, und.inner_bucket) filter (where und.first_occupancy is not null) as first_occupancy, last(und.last_occupancy, und.inner_bucket) filter (where und.last_occupancy is not null) as last_occupancy from (select c1m.bucket as inner_bucket, c1m.space_id as space_id, c1m.occupancy_min as occupancy_min, c1m.occupancy_max",https://www.timescale.com/blog/density-measures-large-real-estate-portfolios-using-timescaledb/,552,"[-0.006320243701338768, -0.011803660541772842, 0.09225647151470184, 0.010328203439712524, 0.029817456379532814, 0.020098522305488586, 0.011708233505487442, 0.005531130824238062, -0.011275138705968857, 0.004301582928746939, 0.0230787992477417, -0.026793135330080986, 0.03652675077319145, -0.002890355419367552, 0.02975873276591301, 0.04838913679122925, 0.00784708559513092, 0.016619084402918816, -0.025031395256519318, 0.022829219698905945, -0.003787741996347904, 0.002180153736844659, 0.01545927207916975, 0.0022535596508532763, -0.01958468183875084, -0.029876181855797768, 0.03071300871670246, 0.045805253088474274, 0.05299902334809303, -0.01949659362435341, -0.0019452550914138556, -0.04662739858031273, -0.028819138184189796, -0.0014662818284705281, 0.03943362459540367, 0.03817104175686836, 0.03335561975836754, 0.0573740117251873, 0.01813124492764473, -0.006936852820217609, -0.002732532797381282, 0.037084635347127914, 0.018468912690877914, -0.019070839509367943, -0.01381498109549284, -0.01502617821097374, -0.0376131571829319, -0.03711399808526039, -5.981429785606451e-05, 0.050444502383470535, -0.03197558969259262, 0.01901211589574814, 0.0024223930668085814, -0.026103120297193527, 0.004206155426800251, -0.013859025202691555, -0.00462823873385787, 0.017030157148838043, 0.02111152373254299, -0.0521475151181221, 0.00852241925895214, -0.06547801941633224, 0.030566196888685226, 0.027204208076000214, 0.02858423814177513, 0.06882532685995102, 0.030360659584403038, 0.05341009795665741, -0.006496417801827192, 0.03884637728333473, 0.03596886619925499, 0.02228601649403572, 0.0005450384342111647, -0.00814070925116539, 0.05913575366139412, -0.044043511152267456, 0.008676571771502495, 0.008059962652623653, -0.0502389632165432, 0.010379587300121784, 0.028804456815123558, -0.03062492050230503, -0.004037322010844946, 0.03555779531598091, 0.002323295222595334, -0.042810291051864624, -0.0038721587043255568, -0.02074449323117733, 0.006173431873321533, -0.0007046961691230536, 0.003642765339463949, 0.05884213000535965, 0.025750773027539253, -0.016986114904284477, 0.029156804084777832, -0.022638363763689995, 0.011803660541772842, -0.0033216148149222136, -0.02172813192009926, 0.010798000730574131, -0.0009304191917181015, -0.021772176027297974, -0.005002608988434076, -0.031447067856788635, 0.012970813550055027, 0.017705490812659264, -0.02209516055881977, -0.008463694714009762, 0.0026352701243013144, 0.03743698447942734, -0.08280180394649506, -0.008456354029476643, -0.032416023313999176, 0.0275418758392334, -0.011502697132527828, -0.021258333697915077, -0.036291852593421936, -0.0015947421779856086, 0.007380958180874586, -0.006323914043605328, -0.023695409297943115, -0.01852763630449772, -0.008625187911093235, -0.004518130328506231, 0.0010102480882778764, -0.03062492050230503, 0.050561949610710144, -0.04718528315424919, -0.05819615721702576, 0.004885159432888031, 0.050561949610710144, 0.00887476745992899, 0.02083258144557476, -0.030977269634604454, -0.03332625702023506, 0.006936852820217609, -0.06841425597667694, 0.024091800674796104, 0.013198371976613998, 0.007116697262972593, 0.016354823485016823, -0.003982267342507839, 0.05972300097346306, 0.005997258238494396, 0.00656982371583581, 0.026264613494277, -0.024297336116433144, 0.039697885513305664, 0.0017296253936365247, 0.016354823485016823, 0.009366586804389954, 0.009718935005366802, -0.05799062177538872, -0.00944733340293169, 0.027086758986115456, -0.01336720585823059, 0.03438330069184303, 0.04228176921606064, -0.003393185557797551, -0.03103599324822426, 0.0051273987628519535, 0.012016537599265575, 0.0018351463368162513, -0.01283868309110403, -0.003497788915410638, 0.017705490812659264, -0.02906871773302555, -0.022843901067972183, -0.08368267118930817, -0.011598124168813229, -0.026616962626576424, -0.02114088460803032, -0.036115679889917374, -0.024649685248732567, 0.024546917527914047, -0.008845404721796513, -0.07041089236736298, -0.007788361050188541, 0.028613600879907608, -0.0476844422519207, -0.03752507269382477, -0.0035032941959798336, -0.00345374527387321, 0.023900944739580154, 0.009315202943980694, 0.011311842128634453, -0.08239072561264038, 0.04013831913471222, 0.009403289295732975, 0.038229767233133316, -0.028554875403642654, 0.041342176496982574, 0.005266869906336069, 0.07704678177833557, -0.02509012073278427, -0.04671548306941986, 0.035234808921813965, 0.035528432577848434, -0.00397859700024128, 0.017984433099627495, 0.027174845337867737, 0.026602281257510185, 0.05960555002093315, -0.015253735706210136, 0.009036260657012463, 0.013998495414853096, -0.00554948253557086, -0.0009033507667481899, -0.04204687103629112, -0.051325369626283646, -0.00949137657880783, 0.009094985201954842, 0.037554435431957245, -0.017191650345921516, -0.02849615179002285, -0.019643405452370644, -0.017030157148838043, -0.010878747329115868, -0.0035363268107175827, 0.01657504215836525, 0.07146793603897095, 0.10065410286188126, 0.024943308904767036, -0.006874457933008671, 0.006448703818023205, 0.007432342506945133, 0.016222693026065826, -0.024106482043862343, 0.04586397483944893, 0.03758379444479942, -0.0012497346615418792, 0.009439992718398571, -0.005226496607065201, -0.012567081488668919, -0.03103599324822426, 0.030125761404633522, 0.0204655509442091, -0.007641549222171307, -0.010034579783678055, -0.01917360909283161, -0.005648580379784107, 0.03288581967353821, -0.0001502525992691517, 0.03168196603655815, 0.008478376083076, -0.0011653178371489048, -0.04695038124918938, -0.05241177976131439, 0.02045086957514286, 0.06254178285598755, -0.0023673386313021183, 0.0047787209041416645, -0.029421065002679825, -0.015253735706210136, -0.07775148004293442, -0.020583000034093857, -0.04982789233326912, 0.048800211399793625, 0.022799856960773468, 0.01619333028793335, -0.010497036390006542, -0.011414609849452972, -0.008390288800001144, 0.003985937684774399, -0.050444502383470535, -0.002479282673448324, 0.05217687785625458, -0.07187900692224503, 0.012890067882835865, -0.008801361545920372, 0.00876465905457735, 0.03655611351132393, 0.019114883616566658, -0.07317095249891281, -0.029582558199763298, 0.01704483851790428, 0.002233373001217842, 0.006000928580760956, 0.0021416156087070704, -0.013910409063100815, -0.010306181386113167, -0.0021599670872092247, 0.01468117069453001, 0.014086582697927952, 0.019555319100618362, 0.004275890998542309, -0.016545679420232773, 0.04451330751180649, 0.03344370424747467, -0.0350586362183094, 0.04052003100514412, -0.01686866395175457, 0.039022549986839294, -0.009946492500603199, -0.019555319100618362, 0.006984566804021597, -0.001816794858314097, -0.02335774153470993, -0.01114300824701786, -0.025912266224622726, 0.01319103129208088, -0.005821084138005972, 0.007164411246776581, -0.010115326382219791, 0.017808260396122932, 0.04072556644678116, 0.04868276044726372, -0.007322233635932207, -0.006257848814129829, 0.03297390788793564, -0.031447067856788635, -0.008749977685511112, -0.00814804993569851, -0.02228601649403572, -0.02326965518295765, -0.009417970664799213, 0.04451330751180649, 0.011568762362003326, -0.007979216054081917, -0.04865339770913124, -0.0007212124764919281, -0.1155114471912384, -0.007758998312056065, 0.0007836074801161885, 0.06594781577587128, -0.012361545115709305, -0.00021964407642371953, 0.004184133373200893, -0.005083355121314526, -0.036673564463853836, -0.011282479390501976, -0.004173122812062502, 0.019716812297701836, 0.05182453244924545, 0.001759905251674354, -0.055876534432172775, -0.008984875865280628, 0.006646899972110987, -0.030272573232650757, 0.015011496841907501, -0.030155124142766, 0.01849827542901039, -0.06835553050041199, -0.005655921064317226, 0.029582558199763298, 0.026015033945441246, 0.03394286707043648, 0.0050503225065767765, 0.021390466019511223, -0.0036611168179661036, -0.03567524254322052, -0.004180463030934334, 0.010930131189525127, -0.0057476782239973545, -0.019658086821436882, -0.013550720177590847, 0.0017287078080698848, -0.010423630475997925, -0.07093941420316696, 0.006166091654449701, -0.0034005260095000267, -0.017778897657990456, 0.03364924341440201, -0.011642168276011944, 0.008786680176854134, -0.0019085521344095469, -0.026338020339608192, 0.021478552371263504, -0.02761528082191944, -0.008852745406329632, 0.02075917460024357, -0.03414840251207352, -0.025471830740571022, -0.04554098844528198, -0.05338073521852493, -0.018835941329598427, 0.026690367609262466, 0.05059131234884262, 0.01579693891108036, 0.06195453926920891, 0.03326753154397011, -0.0015167484525591135, -0.0004388293600641191, -0.02036278322339058, 0.06201326474547386, 0.016310779377818108, 0.022432828322052956, 0.023886263370513916, -0.05681612715125084, -0.012779958546161652, 0.00887476745992899, -0.005079684779047966, 0.028055716305971146, 0.004195144400000572, -0.02849615179002285, -0.012633146718144417, 0.029391702264547348, 0.030771732330322266, 0.03335561975836754, -0.01085672527551651, 0.023607321083545685, 0.003732687560841441, -0.03661483898758888, -0.04700910672545433, -0.04507119208574295, 0.02153727598488331, 0.03447138890624046, 0.004349296912550926, -0.03361988067626953, -0.008617847226560116, -0.016325460746884346, -0.0077443174086511135, 0.02638206258416176, -0.04098982736468315, 0.039697885513305664, -0.018057839944958687, -0.04786061495542526, 0.0818622037768364, 0.004587865900248289, 0.0599285364151001, -0.04680357128381729, -0.03778933361172676, -0.01502617821097374, 0.008324223570525646, -0.04712655767798424, 0.06835553050041199, 0.023989032953977585, -0.01763208582997322, -0.018395505845546722, -0.05496630072593689, -0.009373927488923073, 0.01821933314204216, 0.0283052958548069, -0.0019360793521627784, -0.022021755576133728, -0.02820252813398838, 0.027982311323285103, -0.025633323937654495, 0.0016176814679056406, 0.005160431377589703, -0.006030290853232145, -0.019995754584670067, -0.034265849739313126, 0.00397859700024128, -0.04709719493985176, 0.019995754584670067, 0.008052621968090534, -0.039228085428476334, 0.04709719493985176, -0.0009432652150280774, 0.039198726415634155, -0.0056889536790549755, -0.03702590987086296, -0.016442909836769104, -0.05273476243019104, -0.03855275362730026, 0.004408021457493305, 0.009307862259447575, 0.016795258969068527, 0.0010799835436046124, -0.00785442627966404, 0.0069882371462881565, -0.033208806067705154, 0.0034776022657752037, -0.0005032888730056584, -0.012244096025824547, 0.018057839944958687, 0.0008427909342572093, 0.015620765276253223, 0.00016401619359385222, 0.0036813034676015377, -0.016222693026065826, 0.021199610084295273, 0.028731049969792366, 0.0017892676405608654, 0.01986362412571907, 0.0236513651907444, -0.02802635356783867, 0.01308826357126236, -0.03749570995569229, 0.06900150328874588, -0.053938619792461395, -0.002086561406031251, 0.059957899153232574, 0.012691871263086796, 0.037936143577098846, 0.003431723453104496, -0.01241292990744114, 0.002899531042203307, 0.01666312851011753, -0.0178523026406765, 0.009608825668692589, -0.0016984278336167336, -0.019158927723765373, -0.005802732426673174, 0.019995754584670067, -0.043955422937870026, -0.022447509691119194, 0.012985494919121265, -0.021933669224381447, 0.03614504262804985, -0.0017516470979899168, 0.025222251191735268, 0.051237285137176514, 0.004092376213520765, 0.03294454514980316, -0.05420288071036339, -0.03596886619925499, -0.005813743453472853, -0.010981515049934387, -0.008324223570525646, 0.035322897136211395, 0.014314141124486923, 0.022344741970300674, -0.011855045333504677, 0.03602759167551994, -0.014512336812913418, -0.0018672613659873605, -0.02209516055881977, -0.03711399808526039, -0.011972494423389435, -0.00886742677539587, -0.010930131189525127, 0.007568143308162689, -0.005035641603171825, -0.0035326567012816668, -0.03790678083896637, -0.05561227351427078, -0.039492346346378326, -0.0251194816082716, 0.03153515234589577, -0.04377925023436546, 0.003644600510597229, 0.024091800674796104, -0.02200707420706749, 0.047067832201719284, -0.006922171916812658, -0.0075901648961007595, -0.017808260396122932, 0.014864685013890266, 0.011018218472599983, 0.039228085428476334, 0.021243654191493988, 0.00910966657102108, 0.015004156157374382, -0.007993897423148155, 0.03221048787236214, 0.012765277177095413, 0.00042231305269524455, 0.02867232635617256, 0.012486334890127182, -0.010944812558591366, 0.024737771600484848, 0.0006753338384442031, -0.01628141850233078, 0.044043511152267456, 0.03834721818566322, 0.017720172181725502, 0.023299017921090126, 0.004011629614979029, 0.016457591205835342, -0.018160607665777206, 0.005659590940922499, 0.002677478361874819, -0.02200707420706749, 0.023122843354940414, 0.013110284693539143, -0.007109356578439474, -0.030155124142766, -0.0004422702477313578, -0.00557150412350893, 0.02481117844581604, 0.027101440355181694, 0.023313699290156364, -0.00463190907612443, 0.0029619261622428894, -0.01144397258758545, -0.0022920977789908648, 0.0016057529719546437, -0.00949871726334095, -0.042487308382987976, -0.021067479625344276, 0.013455292209982872, 0.027776774019002914, -0.056258246302604675, 0.011289820075035095, 0.01725037582218647, 0.010210754349827766, 0.006823074072599411, -0.014292119070887566, 0.004954895004630089, 0.0006478066206909716, -0.00460254680365324, 0.0017901852261275053, 0.011965153738856316, 0.04354435205459595, 0.008639868348836899, 0.0030555184930562973, -0.017015475779771805, 0.043661799281835556, 0.03138834238052368, 0.027879541739821434, 0.020318739116191864, -0.007355266250669956, -0.03453011065721512, 0.009080303832888603, 0.0004941131337545812, 0.029920225962996483, 0.026587599888443947, -0.005523790139704943, -0.01047501526772976, 0.005461395252496004, -0.019731493666768074, -0.04225240647792816, -0.007883788086473942, 0.0008822465897537768, -0.048007428646087646, -0.02034810185432434, 0.01579693891108036, -0.03112408146262169, 0.004657601471990347, 0.004903510678559542, -0.02501671388745308, -0.0055458121933043, 0.017808260396122932, 0.039609797298908234, -0.02974405139684677, -0.057931896299123764, -0.009660210460424423, 0.014938090927898884, -0.024840539321303368, -0.011069602333009243, 0.02259432151913643, -0.0037620498333126307, -0.001185504486784339, 0.042898379266262054, 0.005681612994521856, 0.03849402815103531, 0.0010671375785022974, 0.007722295355051756, 0.030301935970783234, 0.04304519295692444, 0.017764216288924217, -0.02131705917418003, -0.001839734148234129, -0.02287326380610466, 0.007230476476252079, 0.01148801576346159, -0.04010895639657974, -0.010680551640689373, -0.019041478633880615, -0.039991509169340134, 0.05020960420370102, -0.00015988711675163358, 0.030478108674287796, -0.003257384756579995, -0.02821720950305462, -0.0195700004696846, -0.021449189633131027, 0.01187706645578146, -0.02045086957514286, 0.02576545439660549, -0.002519655739888549, 0.00886742677539587, -0.03191686421632767, 0.009748296812176704, 0.022344741970300674, -0.014615105465054512, 0.03209303691983223, 0.03511735796928406, 0.0025214909110218287, -0.00881604291498661, 0.04081365466117859, 0.013433271087706089, 0.027483150362968445, 0.021052798256278038, 0.020861942321062088, 0.01685398258268833, -0.01346997357904911, 0.04868276044726372, -0.017514636740088463, 0.00814804993569851, -0.03150578960776329, 0.018351463600993156, 0.010592464357614517, 0.02412116341292858, 0.01929105818271637, 0.012001857161521912, 0.013792959041893482, 0.008419651538133621, 0.009439992718398571, -0.003956575412303209, 0.02713080309331417, 0.01051171775907278, -0.0015818960964679718, -0.007186432834714651, 0.01472521387040615, 0.004764039535075426, -0.01579693891108036, 0.0032537144143134356, -0.017485274001955986, 0.005336605478078127, -0.048624034970998764, -0.01841018721461296, -0.002664632396772504, 0.003431723453104496, 0.023210929706692696, 0.014945431612432003, 0.004954895004630089, -0.030213847756385803, -0.03215176239609718, -0.001185504486784339, -0.02501671388745308, 0.02403307519853115, 0.004070354625582695, -0.005791721865534782, -0.016824621707201004, 0.017000794410705566, -0.009608825668692589, -0.026338020339608192, -0.040754929184913635, 0.006320243701338768, -0.021874943748116493, -0.017323780804872513, 0.05884213000535965, -0.017866984009742737, -0.012860705144703388, 0.03517608344554901, 0.012647828087210655, -0.022168567404150963, 0.009307862259447575, 0.017397187650203705, -0.005046652164310217, -0.023343060165643692, -0.0038941805250942707, -0.00035165989538654685, -0.015929069370031357, 0.013117625378072262, -0.03235729783773422, 0.009197752922773361, -0.023049436509609222, 0.005303572863340378, -0.01626673713326454, -0.029714688658714294, 0.03182877600193024, -0.014255416579544544, 0.02191898785531521, 0.018278056755661964, -0.027262933552265167, 0.003967586439102888, -0.014475634321570396, 0.013675509952008724, 0.012324842624366283, -0.010401609353721142, -0.0112531166523695, -0.025354381650686264, 0.0013167174765840173, -0.003556513460353017, 0.0320049524307251, 0.048212964087724686, 0.011605464853346348, -0.0006496417918242514, -0.05525992438197136, 0.004672282375395298, -0.02053895778954029, 0.024972669780254364, -0.03975661098957062, -0.02287326380610466, -0.008559122681617737, -0.05710975080728531, -0.03062492050230503, 0.0009836384560912848, -0.004319934174418449, -0.03373732790350914, 0.05819615721702576, -0.01958468183875084, 0.002167307771742344, -0.02102343551814556, -0.017221013084053993, -0.021067479625344276, 0.012699211947619915, 0.016222693026065826, -0.014659148640930653, 0.002152626635506749, -0.010739276185631752, 0.00010597969958325848, 0.031153444200754166, -0.007267179433256388, -0.02114088460803032, -0.03006703592836857, -0.03511735796928406, -0.006268859840929508, -0.0038097635842859745, 0.020318739116191864, 0.009285840205848217, -0.03221048787236214, 0.011840363964438438, -0.11257521063089371, -0.02024533413350582, 0.04709719493985176, -0.029832137748599052, -0.037671882659196854, 0.027306977659463882, -0.0013139647198840976, 0.04034385457634926, 0.02579481527209282, -0.006826744414865971, -0.012471654452383518, -0.055201198905706406, -0.027218889445066452, -0.002899531042203307, -0.017294418066740036, 0.015547359362244606, 0.015473953448235989, 0.02647015079855919, 0.03731953352689743, 0.02238878421485424, -0.0316232405602932, 0.002998629119247198, -0.03564587980508804, 0.044454582035541534, -0.0026683027390390635, -0.00593486288562417, -0.01726505532860756, 0.04524736851453781, -0.0013809475349262357, -0.04703846946358681, 0.00910232588648796, -0.00491819204762578, 0.023519234731793404, 0.008779339492321014, -0.006147739943116903, 0.03403095155954361, 0.0018122069304808974, -0.0020939018577337265, -0.002369173802435398, 0.002604072680696845, 0.00690382020547986, -0.0648907721042633, 0.024018393829464912, -0.05164835602045059, 0.03103599324822426, -0.0002819243527483195, -0.026705048978328705, 0.006430352572351694, 0.0014194856630638242, -0.01704483851790428, 0.028848499059677124, 0.026705048978328705, -0.012589103542268276, 0.004826434887945652, 0.002007649978622794, 0.030947906896471977, -0.06383372843265533, -0.025926947593688965, 0.008735296316444874, 0.020861942321062088, -0.012552401050925255, 0.012596444226801395, 0.02693994715809822, -0.04524736851453781, -0.02393030747771263, -0.025280974805355072, 0.011803660541772842, 0.014710532501339912, 0.054525867104530334, -0.012978154234588146, 0.0022058458998799324, 0.0055348011665046215, 0.005846776068210602, -0.03928681090474129, 0.015650127083063126, -0.001331398612819612, 0.016986114904284477, -0.013624126091599464, -0.02877509407699108, -0.001928738784044981, 0.02347519062459469, -0.011744935996830463, -0.011165030300617218, 0.01142929121851921, -0.004389669746160507, -0.021493233740329742, 0.002479282673448324, -0.018630405887961388, -0.0062138051725924015, 0.015297779813408852, 0.06001662462949753, -0.013844343833625317, -0.0073772878386080265, 0.0092124342918396, -0.017221013084053993, 0.001792020397260785, 0.008250817656517029, -0.01647227257490158, -0.007480056490749121, -0.004540151916444302, 0.023533916100859642, -0.02072981186211109, 0.009740956127643585, -0.02705739624798298, -0.024356061592698097, -0.007362606935203075, 0.01744122989475727, -0.00019876928126905113, 0.006793711334466934, 0.024987351149320602, 0.013491995632648468, -0.006492747459560633, 0.008074644021689892, 0.03558715805411339, 0.005604536738246679, -0.004228177014738321, 0.018263375386595726, -0.004987927619367838, -0.02065640687942505, -0.01948191225528717, 0.006837754976004362, -0.01619333028793335, 0.013345183804631233, 0.009939152747392654, -0.0035675244871526957, 0.029156804084777832, 0.020627044141292572, 0.017279736697673798, -0.005516449920833111, -0.026484830304980278, -0.016252055764198303, 0.06124984100461006, -0.009337224066257477, 0.03640930354595184, -0.00687812827527523, -0.033590517938137054, 0.022638363763689995, 0.011348544619977474, 0.021830899640917778, 0.014115945436060429, -0.003824444953352213, 0.015752894803881645, 0.0005198051803745329, -0.0018149596871808171, 0.008603165857493877, 0.02337242290377617, 0.01987830549478531, -0.017690809443593025, -0.03588078171014786, 0.0521475151181221, 0.0023508223239332438, -0.022241972386837006, -0.004059343598783016, 0.04031449183821678, -0.024972669780254364, 0.05834297090768814, -0.06524311751127243, -0.01927637681365013, -0.00785442627966404, -0.008353586308658123, -0.010350225493311882, 0.034559473395347595, 0.032797735184431076, -0.023210929706692696, 0.047067832201719284, 0.00463190907612443, -0.019437870010733604, 0.015195011161267757, -0.013792959041893482, 0.033003270626068115, 0.0005959637346677482, 0.024840539321303368, 0.024165205657482147, 0.014747235924005508, 0.051795169711112976, 0.02153727598488331, -0.004481427371501923, 0.007087334990501404, 0.006529450416564941, 0.007487396709620953, -0.021170247346162796, -0.029406383633613586, 0.02133174054324627, 0.012427610345184803, 0.032797735184431076, 0.0008262746268883348, -0.030125761404633522, 0.0335317924618721, -0.007678252179175615, 0.016046518459916115, 0.06095621734857559, 0.03138834238052368, 0.030022993683815002, 0.02034810185432434, 0.012478995136916637, 0.03432457521557808, 0.02586822211742401, 0.017764216288924217, 0.0003094515413977206, 0.013726893812417984, -0.028334658592939377, 0.012420269660651684, 0.02654355578124523, -0.02964128367602825, -0.034353937953710556, 0.027850180864334106, -0.0022627352736890316, 0.0064450339414179325, -0.03382541611790657, -0.005604536738246679, -0.008559122681617737, 0.005329264793545008, 0.01591438800096512, -0.014563720673322678, 0.003960245754569769, 0.0013965463731437922, 0.023886263370513916, -0.010577782988548279, -0.0010735605610534549, -0.029244890436530113, 0.004485097713768482, -0.029538514092564583, -0.004764039535075426, 0.05376244708895683, 0.001827805652283132, 0.05167771875858307, -0.027365701273083687, 0.005009949207305908, -0.010614486411213875, 0.019702130928635597, -0.0024444148875772953, 0.006845095660537481, 0.004716326016932726, 0.019907666370272636, 0.019056158140301704, 0.03541098162531853, 0.009131687693297863, -0.005556822754442692, -0.03197558969259262, 0.0020351773127913475, 0.02538374252617359, -0.007891128771007061, 0.021845581009984016, -0.034853097051382065, -0.0331500843167305, 0.0008987628971226513, 0.008647209033370018, 0.03711399808526039, 0.067827008664608, -0.0085738031193614, 0.013668169267475605, 0.01667780987918377, 0.009572123177349567, 0.007028610445559025, 0.04809551313519478, 0.03041938506066799, 0.008309542201459408, -0.004029981326311827, 0.015562040731310844, -0.01636950485408306, -0.012567081488668919, 0.009572123177349567, -0.013345183804631233, 0.014666489325463772, -0.03177005425095558, -0.003802423132583499, 0.0029270583763718605, -0.012809321284294128, 0.011179710738360882, -0.015004156157374382, -0.013403908349573612, 0.019437870010733604, 0.032504111528396606, -0.033296894282102585, -0.01076129823923111, 0.020377464592456818, -0.0640099048614502, -0.006826744414865971, 0.019511274993419647, -0.0010441982885822654, -0.0007083664531819522, 0.01007128320634365, 0.003462921129539609, -0.0085738031193614, 0.0536743588745594, -0.00012054617400281131, 0.0006120213074609637, -0.02557459846138954, 0.032239850610494614, -0.02820252813398838, -0.010335544124245644, 0.0005904583376832306, 0.008426991291344166, 0.02723357081413269, -0.03825912997126579, 0.006790041457861662, 0.014248075895011425, 0.021596001461148262, 0.0005932110361754894, -0.034442026168107986, -0.009403289295732975, -0.016648447141051292, 0.027967629954218864, 0.0036941494327038527, 0.03130025416612625, 0.021948348730802536, -0.009124347008764744, -0.002671973081305623, -0.06812062859535217, 0.020186608657240868, -0.0021819889079779387, -0.0015323471743613482, 0.03006703592836857, 0.0277327299118042, -0.005138409789651632, -0.004455734975636005, 0.02906871773302555, 0.005850446410477161, 0.025648005306720734, 0.045129917562007904, -0.0007744317408651114, 0.01667780987918377, 0.026000352576375008, -0.004330945201218128, -0.019423188641667366, 0.04756699129939079, 0.03867020085453987, -0.014211372472345829, -0.012427610345184803, 0.017309099435806274, -0.028540195897221565, 0.002662797225639224, 0.022153886035084724, 0.02150791510939598, -0.03802423179149628, 0.018351463600993156, 0.026514193043112755, -0.0004876901220995933, 0.000991896609775722, -0.018659766763448715, 0.012427610345184803, -0.03411903977394104, -0.017485274001955986, -0.0016626425785943866, -0.02531033754348755, 0.00863252766430378, -0.011649508960545063, 0.025750773027539253, -0.02877509407699108, 0.020671088248491287, 0.06124984100461006, 0.03103599324822426, -0.005138409789651632, 0.0006459715077653527, 0.0011258622398599982, -0.006529450416564941, -0.0032133411150425673, 0.0012111965334042907, -0.004422702360898256, 0.03840593993663788, -0.03103599324822426, -0.0034152071457356215, -0.041723884642124176, 0.004125408828258514, 0.012831342406570911, -0.0021361103281378746, -0.01381498109549284, 0.02306411787867546, 0.023034757003188133, 0.010063942521810532, 0.0171476062387228, 0.03218112513422966, -0.008338904939591885, -0.03303263336420059, -0.004209825769066811, -0.010445652529597282, 0.024003714323043823, -0.007131378632038832, -0.0015543688787147403, 0.0488295741379261, -0.004804412834346294, -0.027659324929118156, -0.000619820668362081, 0.0009698747890070081, 0.006389979273080826, 0.017367824912071228, -0.010526399128139019, 0.043221365660429, 0.008015918545424938, -0.0021471211221069098, -0.002677478361874819, -0.015195011161267757, 0.005788051523268223, 0.0008712356793694198, 0.006665251217782497, 0.03588078171014786, -0.01283868309110403, -0.029934905469417572, -0.0006739574600942433, -0.031358979642391205, -0.006129388697445393, 0.010313522070646286, -0.0022297026589512825, -0.03905191272497177, -0.004668612033128738, 0.005666931625455618, 0.054026708006858826, 0.04234049469232559, 0.014064561575651169, 0.034853097051382065, -0.020905986428260803, -0.011319181881844997, -0.01206058170646429, -0.009190412238240242, -0.00789846945554018, -0.05188325420022011, -0.0036941494327038527, -0.0007652560016140342, -0.013381886295974255, -0.026235250756144524, -0.014769257046282291, 0.010944812558591366, -0.01244963239878416, -0.014380206353962421, 0.03887574002146721, -0.01086406596004963, 0.008045281283557415, 0.03632121533155441, 0.007986556738615036, -0.025941627100110054, -0.018101882189512253, 0.004998938646167517, -0.02638206258416176, 0.018439549952745438, 0.015297779813408852, -0.03623312711715698, 0.01987830549478531, 0.012009196914732456, -0.011730254627764225, 0.013205712661147118, -0.0020131554920226336, -0.010922790504992008, -0.01979021728038788, -0.008500397205352783, -0.017411867156624794, -0.02790890447795391, -0.014512336812913418, -0.004980586934834719, 0.023313699290156364, -0.034265849739313126, 0.026205889880657196, 0.011106305755674839, -0.01153205893933773, 0.029421065002679825, 0.02831997722387314, -0.02306411787867546, -0.005123728420585394, -0.025956308469176292, -0.02877509407699108, -0.02491394616663456, -0.017764216288924217, 0.01648695394396782, 0.02143450826406479, 0.015547359362244606, 0.024884583428502083, 0.04157707467675209, -0.021654726937413216, -0.009043601341545582, -0.006415671203285456, -0.04013831913471222, 0.02557459846138954, 0.010203413665294647, -0.017793579027056694, -0.0037840716540813446, 0.009124347008764744, 0.017323780804872513, 0.016149288043379784, -0.003160121850669384, -0.025325018912553787, -0.03297390788793564, -0.002862828318029642, -0.03168196603655815, 0.07252497971057892, 0.02024533413350582, -0.018483594059944153, 0.010269478894770145, 0.00041933092870749533, -0.027674006298184395, 0.021449189633131027, 0.008471035398542881, -0.03273900970816612, 0.022080479189753532, -0.028158484026789665, 0.003916202113032341, 0.03558715805411339, 0.005072344560176134, 0.018542317673563957, 0.029391702264547348, 0.02442946657538414, -0.017088882625102997, -0.028173165395855904, 0.005780710838735104, 0.03041938506066799, 0.015752894803881645, 0.0041767931543290615, -0.021977711468935013, 0.04868276044726372, -0.008045281283557415, -0.004679623059928417, 0.0014249910600483418, 0.0036042272113263607, 0.0030977269634604454, 0.004624568857252598, -0.0030096399132162333, 0.03546970710158348, -0.01468117069453001, -0.020436188206076622, -0.03632121533155441, -0.01012266706675291, 0.033502429723739624, -0.01870381087064743, 0.0029178825207054615, 0.0110916243866086, -0.018865304067730904, 0.0230787992477417, 0.02627929486334324, -0.012735915370285511, 0.0010056601604446769, -0.04950490593910217, -0.005802732426673174, -0.008588484488427639, 0.008838064968585968, 0.007714955136179924, 0.02326965518295765, 0.024165205657482147, -0.0032335277646780014, 0.0038648180197924376, -0.0046429201029241085, 0.030360659584403038, -0.018865304067730904, 0.01502617821097374, -0.027556557208299637, 0.012824002653360367, 0.028173165395855904, 0.028745731338858604, 0.0024957989808171988, 0.02937702089548111, 0.03864084184169769, -0.04604015126824379, 0.007604846265166998, -0.013506677001714706, -0.027982311323285103, -0.038141679018735886, -0.010203413665294647, 0.005175112746655941, 0.020127885043621063, -0.012655168771743774, 0.014013176783919334, -0.0036684575024992228, -0.0230787992477417, 0.01148801576346159, 0.0012102789478376508, -0.026103120297193527, 0.030478108674287796, 0.018351463600993156, -0.014174669981002808, -0.013169010169804096, 0.048624034970998764, -0.01628141850233078, -0.029729370027780533, 0.00818475242704153, -0.0008960101986303926, -0.0007606681319884956, -0.02576545439660549, -0.010041920468211174, -0.006246837787330151, 0.03083045780658722, -0.027776774019002914, 0.05158963054418564, 0.013837003149092197, -0.009990536607801914, 0.013506677001714706, 0.019892985001206398, 0.01569417119026184, -0.0014699521707370877, 0.006122048012912273, 0.023871582001447678, 0.002868333598598838, 0.01352869812399149, -0.019511274993419647, -0.014842662960290909, -0.014879366382956505, 0.005648580379784107, -0.012023878283798695, 0.0026921594981104136, -0.013638807460665703, 0.008962854743003845, -0.0013341513695195317, -0.00785442627966404, 0.011656849645078182, -0.04680357128381729, 0.022946668788790703, -6.308315278147347e-06, -0.009006897918879986, -0.022638363763689995, 0.027556557208299637, 0.014248075895011425, -0.042898379266262054, 0.024253293871879578, 0.016310779377818108, -0.03177005425095558, 0.019423188641667366, 0.022212611511349678, -0.04107791557908058, -0.002202175557613373, -0.013308481313288212, 0.009058281779289246, -0.029802775010466576, -0.016648447141051292, 0.028437426313757896, -0.0036152382381260395, 0.010401609353721142, 0.011708233505487442, 0.033384982496500015, -0.006452374160289764, 0.0077443174086511135, 0.016633765771985054, 0.012912089005112648, 0.001533264759927988, -0.004140090197324753, 0.01181834191083908, 0.0012543224729597569, -0.006863446906208992, -0.014189351350069046, 0.001025846810080111, -0.00033996085403487086, -0.0003936388820875436, -0.0009909790242090821, 0.012581762857735157, 0.0030298265628516674, 0.01794039085507393, 0.010541080497205257, -0.020333420485258102, 0.006118377670645714, -0.02093534916639328, -0.02316688746213913, -0.015532677993178368, 0.03364924341440201, -0.004121738485991955, 0.006356946658343077, 0.0011543070431798697, 0.0204655509442091, -0.016398867592215538, -0.015224373899400234, -0.011172370985150337, 0.013301140628755093, -0.01726505532860756, 0.01686866395175457, -0.017602723091840744, 0.0024315689224749804, 0.01144397258758545, 0.014982134103775024, 0.005975236184895039, -0.019907666370272636, -0.017470592632889748, 0.010533739812672138, 0.008015918545424938, 0.01607588119804859, 0.014908728189766407, 0.029978949576616287, 0.0008840817026793957, 0.001069890335202217, 0.03306199610233307, 0.002192999701946974, 0.029024673625826836, 0.020304057747125626, 0.004463075660169125, 0.002538007218390703, -0.003574864938855171, -0.024767134338617325, 0.032915182411670685, -0.0053402758203446865, 0.0009662045049481094, -0.025148844346404076, 0.00394923472777009, -0.010357565246522427, 0.02024533413350582, 0.008654549717903137, 0.009939152747392654, -0.030947906896471977, -5.321924254531041e-05, -0.004536481574177742, -0.027306977659463882, 0.01735314354300499, 0.005079684779047966, 0.03541098162531853, 0.023431148380041122, -0.007839744910597801, 0.00750941876322031, 0.026778453961014748, -0.02761528082191944, 0.041342176496982574, -0.0019360793521627784, -0.02065640687942505, 0.017499955371022224, -0.01216334942728281, 0.010027239099144936, 0.025706728920340538, -0.03332625702023506, -0.0009597815223969519, 0.021405145525932312, 0.02259432151913643, -0.014571061357855797, 0.02617652714252472, -0.03734889626502991, 0.023915626108646393, 0.03491182252764702, -0.002908706897869706, -0.024062437936663628, -0.008206774480640888, 0.008683912456035614, -0.008603165857493877, 0.03564587980508804, -0.03218112513422966, 0.018292738124728203, -0.016428230330348015, 0.008588484488427639, 0.002881179563701153, -0.009946492500603199, 0.02908339910209179, 0.04571716487407684, 0.006467055529356003, 0.014211372472345829, -0.0015314295887947083, 0.006705624517053366, 0.016061199828982353, 0.002596731996163726, 0.0424579456448555, -0.005450384691357613]" -How Density Manages Large Real Estate Portfolios Using TimescaleDB,"as occupancy_max, c1m.first_occupancy as first_occupancy, c1m.last_occupancy as last_occupancy from cav_space_counts_1m c1m where c1m.bucket between '2022-05-22 13:00:00+0000' and '2022-05-25 13:00:00+0000' and c1m.space_id in (997969122178368367, 997969123637986180) union select time_bucket_gapfill('10m', generate_series, '2022-05-22 13:00:00+0000', '2022-05-25 13:00:00+0000') as inner_bucket, space_id, null as occupancy_min, null as occupancy_max, null as first_occupancy, null as last_occupancy from generate_series('2022-05-22 13:00:00+0000'::timestamptz, '2022-05-25 13:00:00+0000'::timestamptz, '10m') join unnest(array [997969122178368367, 997969123637986180]) as space_id on true) as und group by und.space_id, bucket order by bucket;✨Editor’s Note:Learn more about chunk exclusionin this blog post about how we fixed long-running now ( ) queries (and made them lightning fast), orread our docs for more info on hypertables and chunks.Current Deployment and Future PlansBrock:For data visualization, we useTableauandGrafana.The primary languages we use that interact with TimescaleDB are Rust and Python. Bonus: big shout out to JetBrains for their database IDE,DataGrip. It is the best on the market by a wide margin.✨Editor’s Note:Slow Grafana performance?Learn how to fix using downsampling in one of our recent blog posts.We find TimescaleDB to be very simple to use, just flat-out, dead simple. Any TimescaleDB-specific semantics, all of the defaults always take you a long way toward meeting whatever use case you're setting out to achieve. The narrative and API documentation online is first class, in my opinion.But maybe the most telling point is that there’s very little shock value whenever you’re discovering new feature value or features within TimescaleDB. And by shock value, I mean whenever I discover something like a continuous aggregate, for example, it operates conceptually almost identically to how vanilla PostgreSQL materialized view operates, but there’s extra pizazz on top that TimescaleDB does to meet the real-time component of the materialized view, refresh in the background, and all that.So I don't really want to undersell whatTimescaleDB is doing under the covers to make the magic happen. But, from an end perspective, coming from a PostgreSQL background, many of the features align conceptually with what I would expect if I was just writing something against the vanilla PostgreSQL.RoadmapShane:When we started, we threw everything at TimescaleDB, and now we’re being more responsible users of TimescaleDB. We’re at that sweet spot within TimescaleDB where it’s found product-market fit within Density.Brock:It’s hard to name my favorite TimescaleDB feature, but continuous aggregates have been a game-changer in a variety of different ways. Early on, whenever we first onboarded",https://www.timescale.com/blog/density-measures-large-real-estate-portfolios-using-timescaledb/,713,"[-0.0006839704001322389, 0.0024608673993498087, 0.07020805776119232, 0.023060446605086327, 0.048532869666814804, 0.02905779331922531, 0.004506158176809549, 0.01980101875960827, -0.0251464806497097, -0.016533443704247475, 0.03321356326341629, -0.029774866998195648, 0.019377294927835464, -0.027965884655714035, 0.048435088247060776, 0.039308689534664154, -0.025309450924396515, -0.005854745861142874, -0.023793818429112434, 0.02007807046175003, -0.01929580792784691, 0.014814096502959728, 0.019230619072914124, 0.0304267518222332, -0.026417655870318413, -0.018904676660895348, -0.02485313080251217, 0.06042977795004845, 0.023907897993922234, -0.028617769479751587, 0.023810114711523056, -0.052085645496845245, -0.026743600144982338, -0.010177561081945896, 0.023272309452295303, 0.012336931191384792, 0.042111799120903015, 0.02322341874241829, 0.028878524899482727, 0.017323855310678482, -0.027476970106363297, 0.04367632418870926, 0.003277761396020651, 0.00896342471241951, -0.012768805958330631, 0.0055939918383955956, -0.04836989939212799, -0.032007575035095215, -0.021626299247145653, 0.06701382249593735, -0.04390448331832886, 0.0025280930567532778, -0.030866773799061775, -0.01945878006517887, 0.0122472969815135, -0.041231751441955566, -0.022881178185343742, 0.0034061013720929623, -0.003133124206215143, -0.018138712272047997, 0.00927306991070509, -0.05831114947795868, 0.018269088119268417, 0.04074283689260483, 0.00252605602145195, 0.03435436263680458, -0.03204016759991646, 0.054725781083106995, -0.024461999535560608, 0.008930830284953117, 0.019165432080626488, 0.022555235773324966, -0.02234337292611599, -0.017095694318413734, 0.04025392606854439, -0.044360801577568054, 0.00971309281885624, 0.040351707488298416, -0.04207920283079147, -0.013428839854896069, -0.003994835540652275, -0.02398938313126564, -0.0351366251707077, 0.020045476034283638, 0.026955462992191315, -0.03393063694238663, -0.008784156292676926, -0.04377410560846329, -0.013591811060905457, 0.010267195291817188, -0.023647144436836243, 0.05948454514145851, 0.0050317407585680485, -0.006400700192898512, 0.03380025923252106, -0.0011479294626042247, 0.022066321223974228, 0.0030964557081460953, -0.021121088415384293, 0.014740759506821632, 0.026596924290060997, -0.011367252096533775, -0.017323855310678482, -0.030394157394766808, 0.07522758096456528, -0.009990143589675426, -0.013950347900390625, 0.007753362413495779, 0.00896342471241951, 0.015042255632579327, -0.11225467175245285, -0.02649914287030697, -0.03774416446685791, 0.011416143737733364, -0.024673862382769585, -0.02434791997075081, -0.032382410019636154, 0.010307937860488892, 0.0005912804626859725, -0.026156902313232422, -0.03265945985913277, 0.011953948996961117, -0.036668553948402405, -0.002603467321023345, 0.00031270127510651946, -0.04807655140757561, 0.021789269521832466, -0.08852604031562805, -0.06753532588481903, -0.0005841504316776991, 0.03748341277241707, -0.007961150258779526, 0.036896713078022, -0.04302443936467171, -0.019980287179350853, 0.002634024480357766, -0.058245960623025894, 0.010699069127440453, -0.004705797880887985, -0.0036261125933378935, -0.01356736570596695, -0.02627098187804222, 0.03647298738360405, -0.026922868564724922, -0.009623458608984947, 0.03497365117073059, -0.01401553675532341, 0.05609473958611488, -0.006543300114572048, -0.012068028561770916, -0.012027285993099213, 0.020550688728690147, -0.031502362340688705, -0.01955656334757805, 0.03699449822306633, -0.01730755716562271, 0.02056698501110077, 0.06160317361354828, -0.009346406906843185, -0.03140458092093468, 0.02917187288403511, 0.02310933731496334, 0.010682771913707256, 0.015685992315411568, -0.01401553675532341, -0.0008306446252390742, -0.05694219097495079, -0.044360801577568054, -0.09158989787101746, -0.03078528866171837, -0.03751600533723831, -0.03419138863682747, -0.04863065108656883, 0.0004229616024531424, 0.05267234146595001, -0.003587407059967518, -0.05277012288570404, -0.035397376865148544, 0.03217054530978203, -0.02651543915271759, -0.04762022942304611, 0.007908185012638569, -0.011033160611987114, 0.017193477600812912, -0.019996585324406624, 0.016639376059174538, -0.07477125525474548, 0.02904149517416954, 0.014545193873345852, 0.03637520596385002, -0.05035815015435219, 0.05896303802728653, 0.010291640646755695, 0.05860449746251106, 0.008873790502548218, -0.07581427693367004, 0.039699822664260864, 0.02398938313126564, -0.025162776932120323, 0.007953002117574215, 0.026222091168165207, 0.03412620350718498, 0.06075572222471237, -0.02715102769434452, 0.003361284267157316, 0.04762022942304611, 0.0130703030154109, 0.013200679793953896, -0.04938032105565071, -0.023810114711523056, 0.001713236328214407, 0.020990710705518723, 0.01034868136048317, 0.005634734407067299, -0.01841576397418976, -0.011465034447610378, -0.03989538922905922, -0.012263594195246696, -0.0001591517066117376, 0.019719533622264862, 0.018741706386208534, 0.09106839448213577, 0.004648758098483086, -0.004131323657929897, 0.002324379049241543, 0.034908466041088104, 0.02436421811580658, -0.03347431495785713, 0.04902178421616554, 0.03976501151919365, 0.014838541857898235, -0.028976306319236755, 0.005349534563720226, -0.053193848580121994, 0.00691405963152647, 0.006315140053629875, 0.020241042599081993, -0.019768426194787025, -0.006522928364574909, -0.031632740050554276, -0.030883071944117546, 0.0204366073012352, 0.005524728912860155, 0.00571622047573328, 0.004673203453421593, 0.00014972993812989444, -0.04080802574753761, -0.04250292852520943, 0.017372746020555496, 0.0558013916015625, 0.029090387746691704, -0.016117867082357407, -0.012768805958330631, -0.006873317062854767, -0.04530603811144829, -0.0588652528822422, -0.027965884655714035, 0.035299595445394516, 0.015025959350168705, -0.008283019065856934, -0.015653397887945175, -0.024217544123530388, -0.01579192467033863, -0.01337994821369648, -0.044491179287433624, 0.02511388622224331, 0.03296910598874092, -0.054236866533756256, 0.016981614753603935, -0.021610001102089882, 0.03748341277241707, 0.05958232656121254, 0.016639376059174538, -0.07627059519290924, -0.0200943686068058, -0.028813336044549942, 0.0023793817963451147, 0.004047801252454519, -0.013860713690519333, -0.05009739473462105, -0.016720861196517944, -0.03751600533723831, 0.020159557461738586, -0.00589956296607852, 0.016753455623984337, -0.0028214415069669485, -0.004665054846554995, 0.053584981709718704, 0.01293992530554533, -0.023288605734705925, -0.0055491747334599495, 0.009248624555766582, 0.035658132284879684, 0.003326652804389596, 0.01857873424887657, -0.006343659944832325, 0.029008900746703148, -0.026319874450564384, -0.022033726796507835, -0.03435436263680458, 0.024576080963015556, -0.017323855310678482, 0.003962241113185883, -0.01174208614975214, 0.03396322950720787, 0.03223573416471481, 0.0011204280890524387, -0.021169979125261307, -0.026059119030833244, 0.003069972852244973, -0.018350575119256973, -0.0336046926677227, 0.005349534563720226, -0.03166533261537552, -0.023696035146713257, -0.023761224001646042, 0.06825240701436996, 0.005292494781315327, -0.011962097138166428, -0.03973241522908211, -0.017633501440286636, -0.09295886009931564, -0.01091093197464943, 0.03228462487459183, 0.020876631140708923, -0.027297701686620712, 0.03634261339902878, 0.021153680980205536, 0.02222929336130619, -0.030328968539834023, 0.013013262301683426, -0.03409360721707344, 0.013216977007687092, 0.029840055853128433, -0.028177747502923012, -0.04429561272263527, 0.026564331725239754, -0.0007206389564089477, -0.021935943514108658, 0.017959443852305412, -0.02726510725915432, -0.020420311018824577, -0.062059491872787476, 0.007749287877231836, 0.0030149701051414013, 0.0018262977246195078, 0.013396245427429676, -0.005679551512002945, -0.0039989096112549305, 0.0032288699876517057, -0.02853628434240818, -0.025179075077176094, 0.010707218199968338, 0.018285386264324188, -0.01040572114288807, 4.548555807559751e-05, 0.00858044158667326, -0.029595598578453064, -0.06326548010110855, 0.001631750725209713, -0.01804092898964882, 0.0023325274232774973, 0.019670642912387848, 0.006486259866505861, -0.014838541857898235, 0.01730755716562271, -0.04038430005311966, 0.020355122163891792, -0.023696035146713257, -0.0038318638689816, 0.030377861112356186, 0.017519420012831688, -0.031241608783602715, -0.026466548442840576, -0.045403819531202316, -0.00946863554418087, 0.05247677490115166, 0.03598407655954361, 0.004974700510501862, 0.03777676075696945, 0.015694141387939453, 0.00520693464204669, 0.0005143783637322485, -0.01693272404372692, 0.05720294639468193, 0.03637520596385002, 0.017617203295230865, 0.03598407655954361, -0.0577896423637867, -0.026091713458299637, 0.01584896445274353, 0.002108441898599267, 0.003232944291085005, -0.008393025025725365, 0.01545783318579197, -0.004787283483892679, 0.001842594938352704, 0.030720099806785583, 0.05808299034833908, 0.0009569474495947361, 0.02333749830722809, -0.018595032393932343, -0.031877197325229645, -0.04093840345740318, 0.010593137703835964, 0.031371984630823135, 0.03458252176642418, 0.02234337292611599, -0.03960203751921654, -0.01110649760812521, -0.010633881203830242, 0.010397572070360184, 0.012206554412841797, -0.031779415905475616, 0.046903155744075775, -0.01185616571456194, -0.03800491988658905, 0.07509720325469971, 0.014349628239870071, 0.07913888990879059, -0.04820692539215088, -0.04732688143849373, -0.003732044016942382, -0.008201532997190952, -0.04924994334578514, 0.04625127092003822, 0.048532869666814804, -0.017111992463469505, 0.00020842508820351213, -0.0421769879758358, -0.02599393017590046, 0.007292968221008778, 0.05026036500930786, -0.024070868268609047, -0.0213166531175375, -0.007325562182813883, 0.014439262449741364, -0.001478965044952929, 0.03813529759645462, 0.0073663052171468735, -0.0648300051689148, 0.0007389732636511326, 0.0034672156907618046, 0.02601022832095623, -0.04970626160502434, -0.012613982893526554, 0.007785956375300884, -0.059549733996391296, 0.019882505759596825, 0.001640917849726975, 0.03169792890548706, -0.01596304401755333, -0.011334657669067383, -0.0031799785792827606, -0.02499980665743351, -0.027346594259142876, 0.029856352135539055, -0.013925902545452118, 0.019002459943294525, 0.00010612235928419977, -0.0338328517973423, -0.0014229436637833714, -0.06844796985387802, -0.009924955666065216, 0.013608108274638653, -0.00902046449482441, 0.0311927180737257, 0.007305190898478031, 0.027085838839411736, -0.006408848334103823, 0.0059199342504143715, 0.019214322790503502, 0.008335985243320465, -0.003654632717370987, -0.011147241108119488, 0.00935455597937107, 0.0004423144564498216, -0.003029230050742626, 0.004396152216941118, -0.021055899560451508, 0.019377294927835464, -0.04145991429686546, 0.006498482543975115, 0.06313510239124298, 0.018855785951018333, 0.03204016759991646, 0.00033510985667817295, -0.0035914811305701733, -0.0027745873667299747, 0.010454612784087658, -0.020257338881492615, 0.008955275639891624, 0.01249175425618887, -0.021919647231698036, -0.024657566100358963, 0.005948454607278109, -0.06786127388477325, -0.01779647171497345, 0.01691642589867115, -0.0318446010351181, 0.015889707952737808, -0.013208827935159206, 0.030834181234240532, 0.053715359419584274, -0.0101042240858078, 0.019507670775055885, -0.013249571435153484, -0.007818550802767277, 0.009778281673789024, -0.0027725500985980034, -0.028454799205064774, -0.00410687830299139, 0.028813336044549942, 0.034256577491760254, -0.01635417528450489, 0.03419138863682747, -0.011538372375071049, 0.02499980665743351, -0.016720861196517944, -0.01743793487548828, -0.0036790783051401377, -0.025537611916661263, -0.02235966920852661, -0.015351901762187481, -0.0010633880738168955, 0.00725629972293973, -0.03859161585569382, -0.035038840025663376, -0.020925521850585938, -0.008938978426158428, 0.012736211530864239, -0.03487586975097656, 0.002059550490230322, 0.01099241804331541, -0.042242176830768585, 0.028340717777609825, -0.03217054530978203, -0.03484327718615532, -0.020746253430843353, -0.0011020938400179148, 0.016158610582351685, 0.04237255081534386, 0.02737918682396412, 0.03813529759645462, -0.004306518007069826, -0.021805567666888237, 0.014113319106400013, 0.0070770313031971455, 0.014414816163480282, 0.023826412856578827, 0.021675189957022667, -0.014854839071631432, 0.035299595445394516, 0.013852565549314022, 0.002471053274348378, 0.01893727108836174, 0.016117867082357407, 0.01567784510552883, 0.01338809635490179, 0.005426946096122265, 0.019100243225693703, -0.014251844957470894, -0.018366871401667595, -0.013754782266914845, -0.03117641992866993, 0.050553712993860245, 0.014227399602532387, -0.03239870443940163, -0.02915557473897934, 0.009126395918428898, -0.011619857512414455, 0.006865168455988169, 0.030345266684889793, 0.023402687162160873, 0.0024792016483843327, 0.010959823615849018, -0.012605834752321243, 0.009142693132162094, 0.001896579167805612, 0.0001271940564038232, -0.04364372789859772, -0.014985215850174427, -0.017714986577630043, 0.03231722116470337, -0.04586013779044151, 0.006808128207921982, 0.02371233142912388, -0.004660980775952339, 0.018480950966477394, -0.027476970106363297, -0.011595412157475948, -0.011399846524000168, -0.0011805237736552954, 0.00959901325404644, 0.029709678143262863, 0.007826698943972588, 0.015140038914978504, -0.002656433032825589, -0.02752586267888546, 0.021365543827414513, 0.029367437586188316, 0.01198654342442751, -0.011391697451472282, -0.02956300415098667, -0.04305703192949295, 0.015588209964334965, -0.003736118320375681, 0.0057569630444049835, 0.021365543827414513, -0.01091093197464943, 0.018464654684066772, 0.010617583990097046, -0.013094748370349407, -0.06111425906419754, -0.031209014356136322, -0.012622131034731865, -0.043220002204179764, -0.020306231454014778, 0.01753571815788746, -0.031502362340688705, -0.025912445038557053, -0.02889482118189335, -0.011782828718423843, -0.027476970106363297, 0.024429406970739365, 0.039341285824775696, -0.02359825186431408, -0.062450625002384186, 0.0047220950946211815, 0.034028418362140656, -0.0044124494306743145, -0.0076189106330275536, 0.031257905066013336, 0.023663440719246864, 0.007240002509206533, 0.03244759514927864, 0.022555235773324966, 0.03878718242049217, -0.0005418797372840345, -0.012508051469922066, 0.043089624494314194, 0.004445043858140707, -0.008283019065856934, 0.0013149750884622335, 0.013811822049319744, -0.026596924290060997, 0.014422965236008167, 0.024331623688340187, -0.029220763593912125, -0.0025790217332541943, -0.0035792584531009197, -0.03976501151919365, 0.07281560450792313, -0.0015757293440401554, 0.024021977558732033, -0.0035711098462343216, -0.022408561781048775, -0.02651543915271759, -8.396844350500032e-05, 0.03810270130634308, -0.02410346269607544, 0.025553908199071884, 0.0023834560997784138, 0.007476310711354017, -0.04077543318271637, 0.015245970338582993, 0.03481068089604378, 0.015050404705107212, 0.03296910598874092, 0.0295467060059309, 0.00804671086370945, -0.002138999057933688, 0.04771801084280014, 0.013738485053181648, 0.045012686401605606, 0.015726735815405846, 0.022375967353582382, -0.0013730336213484406, -0.0006060497253201902, 0.058245960623025894, -0.021121088415384293, 0.0027949586510658264, -0.0340610146522522, 0.004082432482391596, -0.008808601647615433, -0.006074757315218449, -0.0040437267161905766, 0.024038275703787804, 0.052313804626464844, 0.007993744686245918, 0.019377294927835464, 0.0008474510395899415, 0.015034107491374016, -0.01667197048664093, -0.003921498078852892, -0.027118433266878128, 0.012328783050179482, 0.021903350949287415, -0.027558455243706703, -0.015197078697383404, -0.006233654450625181, 0.0032655384857207537, -0.061929114162921906, -0.03510402888059616, -0.017763877287507057, -0.003271650057286024, 0.03722265735268593, -0.0019363034516572952, 0.0204366073012352, -0.012833993881940842, -0.04142731800675392, 0.009053058922290802, -0.02879703789949417, 0.01676975190639496, 0.006441442761570215, 0.007500756531953812, -0.03270835056900978, 0.02552131377160549, -0.015767479315400124, -0.011448737233877182, -0.05368276312947273, -0.002346787601709366, -0.01243471447378397, -0.025912445038557053, 0.052835311740636826, -0.008360430598258972, 0.010951675474643707, 0.011016863398253918, 0.019784722477197647, -0.0019312105141580105, 0.0075292764231562614, -0.008193384855985641, 0.015474130399525166, -0.02372862957417965, 0.0057121459394693375, -0.00048254799912683666, -0.018872082233428955, 0.00419243797659874, -0.04579494893550873, 0.006714419927448034, -0.021756675094366074, 0.0031555327586829662, -0.003232944291085005, -0.023810114711523056, 0.04895659536123276, -0.02485313080251217, 0.03179571032524109, 0.028731849044561386, 0.00910195056349039, 0.005019517615437508, -0.020371418446302414, 0.018252791836857796, 0.003294058609753847, -0.010373126715421677, -0.009729390032589436, -0.01942618563771248, 0.004579495172947645, 0.00946048740297556, 0.010976120829582214, 0.04973885789513588, -0.0062947687692940235, 0.022946367040276527, -0.019507670775055885, 0.007724842056632042, 0.004868769086897373, 0.01805722527205944, -0.02335379458963871, 0.0012131179682910442, -0.010536097921431065, -0.05342201143503189, -0.01841576397418976, -0.014406668022274971, -0.007398899644613266, -0.02271820604801178, 0.06883910298347473, -0.0007048511179164052, 0.001052183797582984, 0.007785956375300884, -0.011350954882800579, -0.027851805090904236, -0.001312937936745584, 0.010707218199968338, -0.028601473197340965, -0.014162210747599602, -0.024787943810224533, -0.004999146331101656, 0.024021977558732033, -0.01073981262743473, -0.02144703082740307, -0.03280613198876381, -0.03432176634669304, -0.018122414126992226, -0.0034957355819642544, 0.025977633893489838, 0.0005617418792098761, -0.016720861196517944, 0.012459159828722477, -0.1028023287653923, -0.03784194961190224, 0.039439067244529724, -0.019866207614541054, -0.022783394902944565, 0.004392078146338463, 0.008930830284953117, 0.03244759514927864, 0.025700582191348076, -0.009533824399113655, -0.009150841273367405, -0.05104262754321098, -0.021512219682335854, -0.012556943111121655, -0.03500624746084213, 2.536878309911117e-05, 0.016500849276781082, 0.024315325543284416, 0.02904149517416954, 0.019540265202522278, -0.022392263635993004, 0.000656468968372792, -0.03272464871406555, 0.030328968539834023, -0.010642029345035553, -0.010120521299540997, -0.019735831767320633, 0.038037512451410294, 0.019670642912387848, -0.032137952744960785, 0.024282731115818024, 0.010967971757054329, 0.004335037898272276, -0.002014733385294676, -0.006196985952556133, 0.010919081047177315, -0.00201371475122869, 0.010079778730869293, 0.002894778735935688, 0.004624312277883291, -0.037059687077999115, -0.039471663534641266, 0.031388282775878906, -0.043350379914045334, 0.05241158604621887, -0.017633501440286636, -0.001253860886208713, 0.022701909765601158, -0.012084325775504112, 0.013086600229144096, 0.036570772528648376, 0.005740665830671787, 0.0010857966262847185, 0.007362231146544218, -0.015628952533006668, 0.016997912898659706, -0.054627999663352966, -0.024787943810224533, 0.013249571435153484, 0.0080752307549119, 0.00802633911371231, 0.026564331725239754, 0.025456124916672707, -0.05880006402730942, -0.01981731690466404, -0.011098349466919899, 0.011391697451472282, 0.013469582423567772, 0.013811822049319744, 0.0030231187120079994, 0.02576577104628086, 0.010226452723145485, 0.01870911195874214, -0.017519420012831688, 0.029579300433397293, 0.0013007151428610086, 0.012654725462198257, -0.010650178417563438, -0.01566154696047306, -0.010943526402115822, 0.01931210607290268, -0.028731849044561386, -0.023630846291780472, 0.03006821498274803, -0.02662951871752739, -0.030247483402490616, -0.014349628239870071, -0.023679737001657486, 0.008425619453191757, 0.009729390032589436, 0.055996958166360855, 0.004088543821126223, -0.0023610475473105907, -0.004241329617798328, -0.02337009273469448, -0.006865168455988169, 0.021528515964746475, -0.007928556762635708, 0.012149514630436897, -0.012002840638160706, 0.01895356923341751, -0.0032268327195197344, 0.01085389219224453, -0.005960677284747362, -0.026988055557012558, -0.013037708587944508, 0.02058328129351139, -0.009672350250184536, -0.0015675807371735573, 0.01198654342442751, -0.004783209413290024, -0.00026584701845422387, 0.007268522400408983, 0.025684285908937454, 0.006380328442901373, 0.007969299331307411, 0.016492700204253197, 0.00031397450948134065, -0.01185616571456194, -0.028357015922665596, 0.04181845113635063, -0.0204366073012352, -0.011929502710700035, 0.02260412648320198, -0.011424291878938675, 0.017780175432562828, 0.055736202746629715, 0.011318360455334187, 0.010242749936878681, -0.01831798069179058, 0.002697175834327936, 0.06456924974918365, -0.0033429500181227922, 0.06095128506422043, 0.009802727028727531, -0.03078528866171837, 0.020045476034283638, 0.013559216633439064, 0.007264448329806328, 0.03878718242049217, 0.0017101806588470936, 0.005879191681742668, -0.004958403296768665, -0.008629333227872849, 0.020892927423119545, 0.008450064808130264, -0.009819024242460728, -0.014920027926564217, -0.03572332113981247, 0.05091224983334541, 0.026303576305508614, -0.017372746020555496, -0.006999619770795107, 0.05707256868481636, -0.024315325543284416, 0.055996958166360855, -0.05935416743159294, -0.03295280784368515, -0.013225125148892403, -0.012345080263912678, 0.0033327641431242228, 0.030589723959565163, 0.034289173781871796, -0.026922868564724922, 0.03293650969862938, -0.018138712272047997, -0.03663596138358116, 0.00791633315384388, -0.024950914084911346, 0.012084325775504112, -0.009680498391389847, 0.014145913533866405, 0.010650178417563438, 0.03309948369860649, 0.043741513043642044, 0.03546256572008133, -0.010283492505550385, -0.004298369400203228, 0.0035711098462343216, 0.026711005717515945, -0.02486942894756794, -0.028373312205076218, 0.018741706386208534, 0.016362324357032776, 0.02310933731496334, -0.013942199759185314, -0.026613222435116768, 0.03445214405655861, -0.0015808221651241183, 0.014414816163480282, 0.026075417175889015, 0.02967708371579647, 0.010527949780225754, 0.035527754575014114, -0.005488060414791107, 0.00030888165929354727, 0.04775060713291168, -0.011310212314128876, -0.009933103807270527, 0.03197497874498367, -0.02185445837676525, 0.014007387682795525, 0.004522454924881458, -0.016142312437295914, -0.009590864181518555, 0.03562553972005844, -0.017959443852305412, 0.01805722527205944, -0.03334394097328186, 0.019393591210246086, -0.008001893758773804, -0.0010817223228514194, -0.003389804158359766, 0.013233274221420288, 0.002391604706645012, 0.01381997112184763, 0.029237061738967896, -0.0010058388579636812, 0.0015635064337402582, -0.026319874450564384, -0.034778088331222534, -0.03041045553982258, -0.01476520486176014, 0.010454612784087658, 0.007598539348691702, 0.02561909705400467, -0.012035434134304523, 0.00043314730282872915, -0.011538372375071049, 0.018350575119256973, 0.008450064808130264, 0.012198406271636486, 0.007908185012638569, 0.00757816806435585, 0.028715552762150764, 0.03520181402564049, -0.0025199446827173233, 0.013420690782368183, -0.026222091168165207, 0.013738485053181648, 0.008865641430020332, -0.0018140749307349324, 0.008022264577448368, -0.03432176634669304, -0.019996585324406624, -0.008230053819715977, 0.030377861112356186, 0.04207920283079147, 0.04351335018873215, 0.0010582952527329326, 0.002422161865979433, 0.01817130669951439, 0.02286488190293312, -0.011375400237739086, 0.032643161714076996, 0.03960203751921654, 0.00019301919382996857, 0.02410346269607544, 0.005659180227667093, -0.020518094301223755, 0.0035324040800333023, 0.014797799289226532, -0.00495432922616601, 0.0013832193799316883, -0.008686373010277748, 0.009623458608984947, 0.003815566888079047, 0.007288893684744835, 0.014137765392661095, -0.01792684942483902, -0.016981614753603935, 0.017731282860040665, 0.026613222435116768, -0.01199469156563282, -0.012165811844170094, 0.043382976204156876, -0.0668182522058487, -0.013086600229144096, 0.0012976593570783734, -0.008751561865210533, -0.007692248094826937, -0.003438695566728711, -0.005137672182172537, -0.002503647468984127, 0.026711005717515945, -0.008417470380663872, 0.006074757315218449, -0.028210341930389404, 0.019165432080626488, -0.03686412051320076, -0.011644302867352962, 0.019344700500369072, -0.004392078146338463, 0.024690160527825356, -0.025456124916672707, 0.0016348063945770264, -0.007737065199762583, 0.03319726511836052, -0.0027399559039622545, -0.02245745249092579, -0.008507104590535164, -0.01564525067806244, 0.025570206344127655, 0.017503123730421066, 0.023924194276332855, 0.018969865515828133, -0.013347353786230087, -0.001972971949726343, -0.02208261936903, 0.020632173866033554, -0.003699449822306633, -0.01244286261498928, 0.026482844725251198, 0.0476854182779789, -0.0011306137312203646, -0.020615875720977783, 0.035429973155260086, 0.015995638445019722, 0.02675989642739296, 0.031860899180173874, 0.007957076653838158, 0.01892097480595112, 0.014854839071631432, 0.02501610293984413, -0.012369525618851185, 0.02956300415098667, 0.02587985061109066, 0.0005714183207601309, -0.03168163076043129, 0.01501781027764082, -0.008168939501047134, 0.002778661670163274, 0.025439828634262085, 0.013893308117985725, -0.041981421411037445, 0.017258666455745697, 0.006722568534314632, 2.7501415388542227e-05, -0.010373126715421677, -0.0030944186728447676, 0.005443243309855461, -0.013591811060905457, -0.011399846524000168, -0.0026462473906576633, 0.013925902545452118, -0.021610001102089882, 0.006518854293972254, 0.017633501440286636, -0.02812885493040085, 0.00871081929653883, 0.07809587568044662, 0.0051091518253088, -0.009843469597399235, 0.0018914862303063273, -0.02462497167289257, -0.03575591370463371, -0.0004438422911334783, 0.002409938955679536, -0.0014198878780007362, 0.025439828634262085, -0.03142087906599045, -0.012019137851893902, -0.043252598494291306, 0.01641121506690979, -0.0009925974300131202, -0.012622131034731865, -0.0068936883471906185, 0.020518094301223755, 0.023141931742429733, -0.017617203295230865, 0.03197497874498367, 0.02069736272096634, -0.005231380462646484, -0.04471933841705322, -0.03285502642393112, -0.03204016759991646, 0.018269088119268417, -0.026417655870318413, 0.001955656334757805, 0.03261056914925575, -0.0037463039625436068, -0.04357853904366493, 0.012760656885802746, 0.023386389017105103, -0.014374073594808578, 0.016818644478917122, -0.0068122027441859245, 0.017584608867764473, 0.011758383363485336, -0.0033918414264917374, -0.006653305608779192, -0.034289173781871796, -0.004310592543333769, -0.010584989562630653, -0.01267917174845934, 0.041362129151821136, -0.00602586567401886, -0.029595598578453064, 0.00036923197330906987, -0.03885237127542496, -0.031094934791326523, 0.007614836562424898, 0.015751181170344353, -0.012671022675931454, 0.007321488112211227, -0.0031188642606139183, 0.05681181326508522, 0.038330864161252975, 0.008996019139885902, 0.025830959901213646, -0.025179075077176094, 0.0026014302857220173, -0.013787376694381237, -0.013086600229144096, -0.034908466041088104, -0.0522812120616436, 0.017600907012820244, 0.0003195766475982964, 0.00748038524761796, -0.025716880336403847, 0.003933721221983433, 0.03849383443593979, 0.0010318123968318105, -0.004084469750523567, 0.04595792293548584, 0.00321868434548378, 0.009085653349757195, 0.029888946563005447, 0.01633787900209427, -0.04869583994150162, -0.03474549204111099, -0.0038787182420492172, -0.02878074161708355, 0.03741822391748428, -0.018595032393932343, 0.008572293445467949, 0.011367252096533775, 0.012581388466060162, -0.016460107639431953, 0.03223573416471481, 0.008555996231734753, -0.018334276974201202, 0.023956788703799248, 0.00028749165358021855, -0.00197908328846097, -0.0303126722574234, -0.04093840345740318, -0.01768239215016365, -0.01540894154459238, -0.029481519013643265, 0.021528515964746475, 0.012467308901250362, -0.013591811060905457, 0.015816370025277138, 0.00902046449482441, -0.01743793487548828, -0.002454756060615182, -0.02576577104628086, -0.019654344767332077, -0.008890087716281414, -0.03344172239303589, 0.02372862957417965, 0.01490373071283102, 0.007871516048908234, 0.028748147189617157, 0.03624482825398445, -0.010805000551044941, -0.010055332444608212, -0.04442599043250084, -0.026026524603366852, 0.038819774985313416, 0.021381841972470284, -0.016818644478917122, -0.005818077363073826, 0.013982942327857018, 0.00890638493001461, 0.01895356923341751, 0.0008530531777068973, -0.001110242330469191, -0.00838487595319748, 0.005907711572945118, 0.006478111259639263, 0.0628417581319809, -0.0020035291090607643, -0.008063008077442646, 0.028960010036826134, 0.006596265360713005, 0.002077884739264846, 0.00940344762057066, 0.017894254997372627, -0.06199430301785469, 0.03549516201019287, -0.01646825484931469, 0.0061480943113565445, 0.02990524284541607, -0.0034549927804619074, 0.012597685679793358, 0.03160014748573303, 0.022115211933851242, -0.0034651784226298332, -0.021300356835126877, 0.00971309281885624, 0.05834374576807022, 0.022701909765601158, -0.004025392234325409, -0.014683718793094158, 0.033246155828237534, -0.029253358021378517, 0.01693272404372692, -0.014219250530004501, 0.0018823191057890654, -0.005007294937968254, -0.007651505060493946, -0.02649914287030697, 0.03243130072951317, -0.035429973155260086, -0.00514989485964179, -0.022164104506373405, -0.015384496189653873, 0.023435281589627266, 0.005361757706850767, -0.024527188390493393, -0.009126395918428898, 0.004074283875524998, 0.03166533261537552, -0.00431874068453908, -0.005573620554059744, 0.012964371591806412, -0.027819210663437843, 0.021039601415395737, 0.0015309121226891875, -0.0010644067078828812, 0.011513926088809967, 0.02879703789949417, 0.004999146331101656, 0.0011153352679684758, -0.009859766811132431, -0.0033022069837898016, 0.01376293133944273, 0.009680498391389847, -0.0038950154557824135, -0.013037708587944508, -0.0008393024909310043, 0.03487586975097656, 0.02284858375787735, 0.02812885493040085, 0.0262546855956316, 0.019719533622264862, -0.04354594647884369, 0.015995638445019722, -0.036310017108917236, -0.019475076347589493, -0.016883831471204758, -0.019540265202522278, -0.005121374968439341, 0.02235966920852661, -0.023777520284056664, -0.010079778730869293, -0.021235167980194092, -0.012206554412841797, -0.010128669440746307, 0.0007496682228520513, -0.02767253667116165, 0.014300736598670483, 0.03016599826514721, -0.002261227462440729, -0.007378527894616127, 0.06825240701436996, 0.012451011687517166, -0.03826567530632019, -0.0012375636724755168, 0.005728443153202534, 0.029693379998207092, -0.02649914287030697, 0.007614836562424898, 0.01895356923341751, 0.025162776932120323, -0.0325290821492672, 0.018366871401667595, -0.004302443936467171, -0.009110098704695702, -0.015319307334721088, 0.019035054370760918, 0.018399465829133987, 0.0010511652799323201, -0.023451577872037888, 0.025162776932120323, -0.02838961035013199, 0.02159370481967926, -0.019915100187063217, -0.027102136984467506, -0.012361377477645874, -0.00415373221039772, -0.005740665830671787, 0.023304903879761696, 0.006384402979165316, 0.007072956766933203, -0.005895488895475864, -0.0060951285995543, 0.0056306603364646435, -0.0474572591483593, 0.029237061738967896, 0.008107825182378292, -0.01781276986002922, -0.01740534044802189, 0.011595412157475948, 0.015857113525271416, -0.020925521850585938, 0.008352281525731087, 0.026466548442840576, -0.030980855226516724, 0.0026095788925886154, 0.009077504277229309, -0.017584608867764473, 0.007460013963282108, 0.0006279490189626813, 0.009093801490962505, -0.029954135417938232, -0.018839487805962563, 0.013803673908114433, -0.00871081929653883, 0.008018190972507, 0.02081144228577614, 0.015783775597810745, 0.0015604507643729448, 0.018725408241152763, 0.02033882588148117, 0.014064427465200424, -0.004072246607393026, -0.0014636864652857184, -0.007003693841397762, -0.006649231072515249, -0.010967971757054329, -0.028096262365579605, 0.00959901325404644, -0.006135871633887291, -0.0204366073012352, 0.01029978971928358, 0.00858044158667326, 0.009493081830441952, 0.011880612000823021, 0.022522641345858574, 0.00811189878731966, 0.013062153942883015, 0.004216883797198534, -0.013559216633439064, -0.006144020240753889, 0.014569639228284359, -0.004149658139795065, -0.00083624676335603, 0.0027582901529967785, 0.010324235074222088, -0.0008627296192571521, -0.022196698933839798, 0.021772973239421844, 0.028177747502923012, -0.012809548527002335, 0.020778847858309746, 0.012108772061765194, -0.010234600864350796, 0.014846689999103546, 0.01779647171497345, -0.005769186187535524, -0.026205793023109436, -0.009574566967785358, -0.021626299247145653, 0.013249571435153484, 0.028471095487475395, 0.014569639228284359, -0.001676567830145359, 0.02134924754500389, 0.01756831258535385, 0.014781502075493336, -0.011367252096533775, 0.02703694812953472, 0.013461434282362461, 0.0013465507654473186, -0.009737538173794746, 0.004921734798699617, -0.022375967353582382, 0.031763117760419846, -0.0061929114162921906, 0.01116353739053011, -0.019784722477197647, 0.018350575119256973, -0.0018283348763361573, 0.023630846291780472, 0.018106117844581604, 0.012850291095674038, -0.024021977558732033, -0.016305284574627876, 0.01635417528450489, -0.022408561781048775, 0.00763520784676075, -0.0016460106708109379, 0.05906081944704056, 0.01993139646947384, 0.020632173866033554, -0.004669129382818937, 0.008458212949335575, -0.0057569630444049835, 0.04784838855266571, -0.023386389017105103, -0.013225125148892403, 0.0015095222042873502, 0.01243471447378397, 0.016965318471193314, 0.014317033812403679, -0.016085272654891014, 0.02157740667462349, 0.027607347816228867, 4.402136255521327e-05, -0.01073981262743473, 0.010837594978511333, -0.03179571032524109, 0.018089819699525833, 0.03448474034667015, 0.016101568937301636, -0.015254118479788303, -0.017829066142439842, 0.002629950176924467, 0.00748038524761796, 0.010267195291817188, -0.015221524983644485, 0.009313812479376793, -0.03986279293894768, 0.005667328834533691, -0.003856309689581394, -9.899236465571448e-05, 0.03246389329433441, 0.014097021892666817, 0.022685613483190536, 0.00675923703238368, 0.0076189106330275536, 0.01791055127978325, 0.02007807046175003, -0.006038088817149401, 0.024706456810235977, 0.004420598037540913]" -How Density Manages Large Real Estate Portfolios Using TimescaleDB,"to TimescaleDB and deployed, it made development significantly faster, and we could just offload a lot of decision logic and complexity around time zone handling and bucketing (that’s a big one) to TimescaleDB and let it handle that complexity for us.Continuous aggregates come into play in that we were able to roll up multiple resolutions of our sensor account data, our people count data, and make that available in a much more efficient way with little-to-no effort so far as the code that we actually had to write to deliver those efficiencies.Continuous aggregates are becoming less important for us now than they were in our previous usage, just because as Shane was talking about earlier on, we're growing to such a size, and our use cases are becoming so complex that we're wanting to move to more the ETL (extract, transform, load) type of processing out of the database. So we're not monopolizing database resources to do some of those computations and move them upstream of the database into processing pipelines and still take advantage of continuous aggregates but to a lesser degree. We're doing less of the mathematical stuff in the database, but we're still using continuous aggregates to roll up high-resolution data to lower resolutions.Advice & ResourcesBrock:If I had to recommend resources, the first would probably be theTimescale blog. It’s been historically pretty informative over the years about the internals, like what’s happening in TimescaleDB underpinning a specific feature. One that I remember specifically is explaining thevarious compression algorithms in play for different data types within PostgreSQL. Being able to distill that knowledge down to a blog article that I could consume and then assimilate into my mental model of what was going on under the covers of the technology I was using has been helpful repeatedly.The advice that I would give for building a scalable database or a strategy around that is that when designing for an analytic workload specifically, don't direct any read load to the master or in standby notes. Always use a read replica for enough reasons that we probably don't have enough time to talk about here.The primary determinant of how efficient and scalable your solutions are going to be boils down to how many rows your queries have to touch for any given type of query",https://www.timescale.com/blog/density-measures-large-real-estate-portfolios-using-timescaledb/,452,"[0.02794598415493965, 0.014525596052408218, 0.0583607442677021, -0.00671378243714571, 0.06424561887979507, 0.01838664896786213, 0.015903517603874207, -0.0019107905682176352, -0.020754951983690262, 0.00733097642660141, 0.035194430500268936, -0.0009002245496958494, 0.004137354902923107, -0.01992245763540268, 0.03809380531311035, 0.034218400716781616, 0.010449242778122425, -0.002210416831076145, 0.005791579373180866, 0.038897596299648285, -0.002386245410889387, 0.013865342363715172, 0.04808374121785164, 0.01591787114739418, -0.014654777012765408, -0.024142345413565636, -0.004406480118632317, 0.06774783879518509, 0.008848844096064568, -0.06981472671031952, -0.0027038133703172207, -0.03307013213634491, -0.05371025949716568, 0.01118126418441534, 0.022907955572009087, 0.013355798088014126, 0.02239123545587063, 0.00894931796938181, 0.047394782304763794, 0.00823882594704628, 0.009150264784693718, 0.026051340624690056, -0.0062867701053619385, 0.030630061402916908, -0.011590334586799145, 0.0037713441997766495, -0.03875406086444855, -0.03906983509659767, 0.0005840021767653525, 0.06814973801374435, -0.04102189093828201, 0.014439476653933525, -0.019233496859669685, -0.04521307349205017, 0.013779222033917904, -0.024802599102258682, -0.009272268041968346, -0.014855723828077316, -0.0010971346637234092, -0.005368154961615801, 0.008956493809819221, -0.05457146093249321, 0.02392704412341118, 0.007065439596772194, -0.022678302600979805, 0.016506358981132507, -0.017582861706614494, 0.035337962210178375, -0.05448533967137337, 0.003495042212307453, 0.0319792777299881, 0.004234239924699068, 0.01940573751926422, 0.0019018197199329734, 0.020022932440042496, -0.0522175095975399, -0.02059706673026085, 0.05480111390352249, -0.04044775664806366, 0.0004575132334139198, -0.023309851065278053, -0.02531931921839714, -0.011360681615769863, 0.018587596714496613, 0.016836486756801605, -0.02239123545587063, -0.019821984693408012, -0.027931630611419678, -0.011260207742452621, 0.021558741107583046, -0.022333821281790733, 0.05557619407773018, 0.04090706631541252, 0.008296240121126175, 0.01745368167757988, -0.005490158684551716, 0.03401745483279228, 0.03884018212556839, 0.02431458607316017, 0.03846699371933937, 0.004223475232720375, -0.0133701516315341, -0.01318355742841959, -0.02564944699406624, 0.040361639112234116, -0.020798012614250183, 0.008303416892886162, 0.007126441225409508, -0.0019359089201316237, -0.001660503912717104, -0.1020236536860466, -0.003102119080722332, -0.024730833247303963, 0.017180968075990677, -0.01708049327135086, -0.011992229148745537, -0.03304142504930496, 0.020740600302815437, 0.01100902445614338, 0.005138501524925232, -0.016492005437612534, 0.01082243025302887, -0.05184432119131088, 0.024443766102194786, -0.001025367877446115, -0.0589635856449604, 0.02441505901515484, -0.03703165799379349, -0.03858182206749916, -0.013004140928387642, 0.06677181273698807, -0.023008430376648903, 0.04225628077983856, -0.042457226663827896, -0.04231369495391846, 0.008719664067029953, -0.04096447676420212, -0.014827016741037369, -0.009573688730597496, -0.013664394617080688, -0.009537804871797562, -0.009358388371765614, -0.007707752287387848, -0.018601950258016586, 0.013477801345288754, 0.03875406086444855, -0.03416098654270172, 0.028189990669488907, -0.0081455297768116, -0.009494745172560215, -0.007557041943073273, -0.010951610282063484, -0.03060135431587696, -0.030400408431887627, 0.03235246613621712, -0.022606536746025085, -0.012874959968030453, 0.04753831401467323, 0.019821984693408012, -0.05259069800376892, 0.018156995996832848, 0.041854385286569595, -0.03654364496469498, 0.02906554564833641, -0.03255341202020645, -0.007908699102699757, -0.031003249809145927, -0.025046605616807938, -0.07406331598758698, -0.01977892406284809, -0.05428439378738403, -0.023726098239421844, -0.01494184322655201, 0.004567955620586872, 0.03651493787765503, -0.02452988550066948, -0.004295242018997669, -0.06648474186658859, 0.015157143585383892, -0.013104613870382309, -0.030199460685253143, 0.0009661602671258152, -0.04122283682227135, 0.028333524242043495, -0.019377030432224274, -0.018759835511446, -0.06740336120128632, 0.011209971271455288, -0.01733885332942009, 0.012178822420537472, -0.03958655521273613, 0.042572055011987686, -0.0007387492805719376, 0.03218022361397743, 0.020281292498111725, -0.044437989592552185, 0.018415356054902077, 0.04377773776650429, -0.0218027476221323, 0.01087984349578619, 0.07193902134895325, 0.020984606817364693, 0.08698134124279022, 0.009300975129008293, 0.0006014953250996768, 0.004259358625859022, -1.489300871071464e-06, -0.006128882989287376, -0.05178690701723099, -0.022907955572009087, -0.01771204173564911, -0.00848283339291811, -0.006415950134396553, 0.009896638803184032, -0.026912542060017586, -0.008289063349366188, -0.05201656371355057, -0.01700872741639614, -0.019089963287115097, -0.00908567477017641, 0.023238083347678185, 0.035337962210178375, 0.007600102107971907, -0.0087627237662673, -0.0009930728701874614, 0.03209410235285759, 0.046016860753297806, -0.04219886660575867, 0.03502218797802925, 0.017956048250198364, -0.002431099768728018, -0.06229356676340103, -0.018788542598485947, -0.032869186252355576, 0.004804785829037428, -0.007191031239926815, 0.011906108818948269, -0.014654777012765408, -0.01647765189409256, -0.05178690701723099, -0.0018784954445436597, 0.006817844230681658, -0.02250606194138527, 0.013276854529976845, -0.020998960360884666, 0.027658917009830475, -0.0368594191968441, -0.06154718995094299, 0.015085376799106598, 0.05497335270047188, 0.03881147503852844, -0.042600762099027634, -0.0005095441592857242, -0.021817101165652275, -0.03786415234208107, -0.0946173220872879, 0.0016847251681610942, 0.009466038085520267, 0.01456865668296814, 0.00527126993983984, -0.017611568793654442, -0.0016147525748237967, -0.0031774742528796196, -0.01250895019620657, -0.04153861105442047, 0.04107930511236191, -0.002978321397677064, -0.041854385286569595, 0.02722831629216671, -0.03740484640002251, 0.038409579545259476, 0.0331849604845047, 0.002766609424725175, -0.041739560663700104, 0.005612162407487631, -0.03097454272210598, -0.0044028921984136105, -0.002743285149335861, -0.02378351055085659, -0.028936365619301796, -0.007269974797964096, -0.052303630858659744, 0.019463151693344116, 0.01850147545337677, 0.03665846958756447, 0.0075283353216946125, -0.019577978178858757, 0.05138501524925232, 0.015472917817533016, -0.015874812379479408, 0.011525744572281837, 0.007714929059147835, 0.019491856917738914, -0.016262352466583252, 0.005163619760423899, -0.005138501524925232, -0.00859765987843275, -0.0013761280570179224, -0.05112665519118309, -0.03855311498045921, 0.007180266547948122, 0.007280739955604076, 0.00945886131376028, -0.02259218320250511, 0.016305413097143173, -0.010169352404773235, -0.004941142629832029, -0.009824872016906738, 0.007309446576982737, -0.012630953453481197, 0.010011466220021248, -0.006846550852060318, -0.0356537364423275, -0.019204789772629738, -0.029654033482074738, -0.014827016741037369, 0.07176677882671356, -0.007557041943073273, -0.022491708397865295, -0.06975731253623962, 0.009229208342730999, -0.060054440051317215, -0.027989044785499573, 0.019147377461194992, 0.03703165799379349, 0.006950612645596266, 0.03628528490662575, -0.012243412435054779, 0.026094401255249977, -0.02678336203098297, -0.0014227763749659061, 0.0063334181904792786, 0.028118224814534187, 0.023324202746152878, -0.04940425232052803, -0.03809380531311035, 0.010111939162015915, 0.004503365606069565, -0.008698133751749992, 0.013111790642142296, -0.05023674666881561, -0.02408493123948574, -0.06573837250471115, 0.014547126367688179, -0.008640720508992672, 0.020008578896522522, 0.005834639072418213, -0.001401246408931911, 0.005160031374543905, 0.006372889969497919, -0.03984491527080536, 0.001080090063624084, 0.0169226061552763, -0.020884133875370026, 0.018444063141942024, 0.03097454272210598, 0.021300381049513817, -0.04311748221516609, -0.026682889088988304, -0.023797864094376564, 0.005339448340237141, 0.021616153419017792, 0.05531783401966095, 0.0026589592453092337, -0.012365416623651981, 0.02490307204425335, -0.019075609743595123, 0.017740748822689056, 0.0072735631838440895, 0.010829607024788857, 0.04337584227323532, 0.019577978178858757, -0.04291653633117676, -0.001215549884364009, -0.055116888135671616, 0.0027038133703172207, 0.045902032405138016, 0.02696995623409748, -0.01842970959842205, 0.06843680143356323, 0.010664543136954308, 0.024845659732818604, 0.008123999461531639, -0.01738191395998001, 0.04489729925990105, 0.04845692962408066, -0.03450546786189079, 0.03467770665884018, -0.07079075276851654, -0.026682889088988304, 0.01824311539530754, 0.017123553901910782, -0.010643013752996922, -0.017697688192129135, 0.013793575577437878, 0.011288914829492569, -0.030199460685253143, 0.04857175797224045, 0.07170936465263367, -0.009810518473386765, 0.0497487336397171, 0.005364567041397095, -0.05261940509080887, -0.00912155769765377, 0.029223432764410973, 0.027931630611419678, -0.00996122881770134, 0.011848695576190948, -0.024802599102258682, -0.020625771954655647, -0.008999554440379143, -0.032524704933166504, 0.041596025228500366, -0.02671159617602825, 0.018745483830571175, -0.013298384845256805, -0.000573237135540694, 0.0627528727054596, -0.01598963886499405, 0.058217212557792664, -0.03218022361397743, -0.023467736318707466, -0.03304142504930496, -0.013269677758216858, -0.04595944657921791, 0.04572979360818863, 0.008152706548571587, -0.009875109419226646, -0.016635539010167122, -0.026309702545404434, -0.021056372672319412, 0.020654479041695595, 0.026338407769799232, -0.018113935366272926, -0.011913285590708256, -0.0021368558518588543, 0.04584461823105812, -0.0015115877613425255, 0.04903106391429901, -0.025936514139175415, -0.03929948806762695, 0.026036987081170082, -0.02622358128428459, 0.014152409508824348, -0.034132279455661774, -0.022003695368766785, 0.0012801398988813162, -0.06430303305387497, -0.02306584268808365, -0.014016051776707172, 0.014554303139448166, -0.029826274141669273, -0.0026840774808079004, 0.023281143978238106, -0.017252733930945396, -0.02490307204425335, 0.037060365080833435, -0.021357793360948563, 0.03304142504930496, -0.01817134954035282, -0.02003728598356247, -0.0031362082809209824, -0.05976737290620804, -0.04380644112825394, 0.0028778479900211096, -0.04064870625734329, 0.04572979360818863, 0.0014227763749659061, 0.015759985893964767, -0.007478098385035992, 0.018142642453312874, 0.024601653218269348, -0.024257171899080276, -0.022635241970419884, -0.015071024186909199, 0.0018569654785096645, 0.016118818894028664, -0.009516275487840176, -0.006785549223423004, -0.03795027360320091, 0.011697985231876373, -0.03502218797802925, 0.015716925263404846, 0.06459010392427444, 0.033012717962265015, 0.02722831629216671, 0.003627810860052705, 0.002542338101193309, 0.0032797418534755707, 0.0002825816918630153, -0.02699866332113743, -0.006430303677916527, 0.03769191354513168, -0.017439328134059906, -0.045557551085948944, 0.02292230911552906, -0.09760282188653946, -0.048858825117349625, 0.032754357904195786, -0.002205034252256155, 0.009753105230629444, 0.004453128669410944, 0.007707752287387848, 0.06085823103785515, -0.027199609205126762, 0.001046897959895432, 0.0031290315091609955, -0.010312885977327824, -0.005744930822402239, -0.0276445634663105, 0.0016658863751217723, -0.013700278475880623, 0.025663800537586212, 0.02508966624736786, -0.015200204215943813, 0.030802302062511444, -0.0052246213890612125, 0.0037354608066380024, -0.008511540479958057, -0.005138501524925232, -0.018745483830571175, -0.037921566516160965, -0.019463151693344116, -0.008023525588214397, -0.008827313780784607, 0.013621334917843342, -0.041108012199401855, 0.015444210730493069, -0.036572352051734924, 0.014461006037890911, -0.00642312690615654, -0.028520118445158005, 0.006139648146927357, -0.009860755875706673, -0.03539537638425827, 0.020309999585151672, -0.013908402062952518, -0.04231369495391846, -0.04374903067946434, 0.0075283353216946125, 0.0004978820215910673, 0.017166614532470703, 0.015415504574775696, 0.02198934182524681, -0.010406183078885078, -0.03493607044219971, 0.015286324545741081, -0.017367560416460037, -0.005084676202386618, 0.008511540479958057, 0.005787990987300873, -0.0350508950650692, 0.013219441287219524, 0.0025082489009946585, 0.011568805202841759, -0.005429157055914402, 0.03157738223671913, 0.026022635400295258, 0.017611568793654442, 0.00587052246555686, 0.022448649629950523, -0.022118521854281425, 0.003109295852482319, -0.013685924932360649, -0.006882434245198965, 0.029280846938490868, -0.01647765189409256, -0.03737613931298256, -0.02378351055085659, 0.008863197639584541, -0.012257765978574753, -0.02089848555624485, 0.009896638803184032, 0.006060704588890076, -0.0013196116778999567, 0.010427713394165039, -0.0028276110533624887, -0.009609571658074856, 0.013908402062952518, 0.0012469477951526642, -0.020927192643284798, -0.013097437098622322, -0.04661970213055611, 0.0276445634663105, -0.024443766102194786, -0.012178822420537472, 0.05712635815143585, 0.018487121909856796, 0.016233645379543304, -0.032266344875097275, 0.004395715426653624, 0.008698133751749992, -0.0015645157545804977, 0.007542688399553299, 0.016865193843841553, 0.01548727136105299, 0.005888464394956827, 0.003023175522685051, -0.027213962748646736, 0.02322372980415821, 0.037806738168001175, 0.01647765189409256, -0.014417946338653564, -0.012272119522094727, -0.023683037608861923, 0.019865045323967934, -0.005630103871226311, -0.0015600303886458278, 0.049232009798288345, -0.015329384244978428, 0.043949976563453674, -0.01054253987967968, -0.017496740445494652, -0.03734743222594261, -0.02475953847169876, -0.025477206334471703, -0.010248295962810516, -0.005845404230058193, 0.0032976835500448942, 0.009896638803184032, -0.02041047252714634, -0.03809380531311035, -0.002956791315227747, -0.052418455481529236, 0.01940573751926422, 0.0285775326192379, -0.015271971002221107, -0.04521307349205017, 9.481064626015723e-05, 0.030314287170767784, -0.022147228941321373, 0.000649489345960319, 0.040734823793172836, 0.014181115664541721, -0.007643162272870541, 0.05147113651037216, 0.027501029893755913, 0.018300529569387436, 0.0035668089985847473, 0.006293946411460638, 0.055978089570999146, 0.01123867742717266, -0.013025670312345028, 0.011267384514212608, 0.007786695845425129, -0.01256636343896389, 0.004804785829037428, 0.030314287170767784, -0.021199906244874, -0.01857324317097664, -0.012709897011518478, -0.02280748263001442, 0.059193238615989685, 0.020869780331850052, 0.01989375241100788, -0.008052232675254345, -0.018860310316085815, -0.04219886660575867, -0.002876053797081113, 0.016721660271286964, -0.04214145243167877, 0.00236471532844007, -0.022836189717054367, -0.0014308501267805696, -0.024443766102194786, -0.007894345559179783, 0.034849949181079865, 0.023869631811976433, 0.020439179614186287, 0.018156995996832848, -0.036687176674604416, -0.010068879462778568, 0.03665846958756447, 0.02681206911802292, 0.04337584227323532, 0.015788691118359566, 0.029079899191856384, -0.0056444574147462845, 0.009200501255691051, 0.048370808362960815, -0.03726131096482277, 0.0054435101337730885, -0.011633395217359066, 0.023740451782941818, -0.03634269908070564, -0.028290465474128723, -0.012157293036580086, 0.002371892100200057, 0.04449540376663208, 0.027386203408241272, 0.01140374131500721, -0.014726543799042702, 0.001339347567409277, -0.030945835635066032, 0.003451982047408819, -0.02760150283575058, 0.0003124097711406648, 0.02142956107854843, -0.04274429380893707, -0.05201656371355057, -0.0015474711544811726, -0.0007095940527506173, -0.05592067539691925, -0.025850394740700722, -0.013937109149992466, 0.005676752422004938, 0.02201804891228676, 0.005770049057900906, 0.02790292352437973, -0.013980168849229813, -0.040246810764074326, 0.007266386412084103, -0.014094995334744453, 0.0042808884754776955, -0.014030405320227146, -0.019377030432224274, -0.025104019790887833, 0.028735419735312462, -0.0026158990804105997, -0.011611864902079105, -0.0589635856449604, -0.016204938292503357, -0.0038215811364352703, -0.03800768777728081, 0.05012191832065582, -0.01891772262752056, 0.033500734716653824, 0.017238380387425423, 0.0052676815539598465, 0.006430303677916527, -0.0068429624661803246, 0.02266394905745983, 0.027242669835686684, -0.004069176502525806, 0.035108309239149094, -0.012365416623651981, -0.01348497811704874, 0.016836486756801605, -0.04317489638924599, -0.00046468988875858486, -0.021860161796212196, -0.020195171236991882, -0.0294817928224802, -0.020841073244810104, 0.05798755958676338, -0.0362565778195858, 0.017668981105089188, 0.030055927112698555, 0.03209410235285759, -0.011906108818948269, -0.026697242632508278, 0.014138055965304375, -0.015458564274013042, -0.0014748073881492019, 0.01524326391518116, -0.026797715574502945, 0.002081236569210887, 0.015630804002285004, -0.001310640829615295, 0.028146931901574135, -0.0004992276662960649, 0.03289789333939552, -0.03295530378818512, 0.006154001224786043, 0.017324501648545265, 0.027759389951825142, -0.02906554564833641, -0.0020040874369442463, 0.007664692122489214, -0.056121621280908585, -0.015271971002221107, 0.0230371356010437, 0.02190322056412697, -0.010384652763605118, 0.057470839470624924, -0.013621334917843342, -0.004087117966264486, 0.008195766247808933, -0.0037641676608473063, -0.02415669895708561, -0.0041840034537017345, 0.007043909281492233, -0.027056075632572174, -0.011841518804430962, -0.009293798357248306, 0.005102618131786585, 0.02434329129755497, -0.02625228837132454, -0.014539949595928192, -0.032524704933166504, -0.040763530880212784, -0.0023593329824507236, -0.011798459105193615, 0.00912155769765377, 0.006006879732012749, -0.008174235932528973, 0.004628957249224186, -0.12137197703123093, -0.01142527163028717, 0.030945835635066032, -0.011453977786004543, -0.006990084424614906, -0.011540098115801811, 0.035223137587308884, 0.03183574229478836, 0.038294754922389984, -0.011446801014244556, -0.019147377461194992, -0.04489729925990105, -0.0202956460416317, -0.004977026022970676, -0.021257320418953896, -0.01151856780052185, 0.0012505361810326576, 0.016348471865057945, 0.02895071916282177, -0.0007203590357676148, -0.014016051776707172, 0.005378920119255781, -0.036572352051734924, 0.05442792549729347, 0.026080047711730003, -0.028032103553414345, -0.019276557490229607, 0.05712635815143585, 0.031003249809145927, -0.02715655043721199, 0.0008899080567061901, 0.025778627023100853, -0.008080939762294292, 0.004298829939216375, -0.014166762121021748, 0.0122864730656147, 0.0003707202849909663, 0.0008504363358952105, 0.005138501524925232, -0.0030124105978757143, -0.03674459084868431, -0.05712635815143585, 0.038409579545259476, -0.04808374121785164, 0.05569102242588997, -0.005368154961615801, 0.0043705967254936695, 0.04483988508582115, -0.0066743106581270695, 0.011662101373076439, 0.031634796410799026, 0.007908699102699757, -0.020123405382037163, -0.01756850816309452, -0.0029585855081677437, 0.022218994796276093, -0.05322224274277687, -0.010456419549882412, 0.011109497398138046, -0.0031613267492502928, -0.01148268487304449, -0.0029370554257184267, 0.02727137692272663, -0.04865787550806999, -0.01989375241100788, 0.0017923753475770354, 0.0029101429972797632, 0.02471647970378399, -0.005615750793367624, 0.022376881912350655, 0.012430006638169289, 0.018587596714496613, 0.01722402684390545, -0.009415801614522934, 0.02104201912879944, 0.01022676657885313, 0.015587744303047657, -0.005034439731389284, -0.02389833703637123, -0.035940803587436676, 0.020123405382037163, -0.008123999461531639, -0.00990381557494402, 0.023439031094312668, -0.01614752598106861, -0.045528843998909, 0.002402392914518714, 0.026266641914844513, -0.002248094417154789, 0.004679194185882807, 0.03823734074831009, -0.009595218114554882, -0.004600250627845526, 0.0043705967254936695, -0.02082671970129013, 0.0020363824442029, 0.019391383975744247, -0.00436342041939497, 0.00671378243714571, 0.0037031657993793488, 0.02082671970129013, -0.01677907258272171, 0.022147228941321373, 0.013972992077469826, -0.015386797487735748, -0.013004140928387642, 0.02415669895708561, -0.03157738223671913, 0.00617194315418601, 0.02052529901266098, -0.009509098716080189, 0.0004391229886095971, 0.030429115518927574, 0.037060365080833435, 0.02543414756655693, -0.0024633947759866714, 0.009351211600005627, 0.02299407683312893, -0.022262055426836014, -0.023840924724936485, 0.022864896804094315, -0.03961526229977608, -0.041481200605630875, 0.028477057814598083, 0.0009109895909205079, 0.019448798149824142, 0.021774040535092354, -0.0023754804860800505, 0.008884727023541927, -0.005317918490618467, 0.031175488606095314, 0.062121324241161346, -0.014798309653997421, 0.04349067062139511, -0.0075713954865932465, -0.008554600179195404, 0.008899080567061901, 0.004000998102128506, 0.03315625339746475, 0.0350508950650692, 0.011310444213449955, 0.023654330521821976, 0.012853430584073067, -0.009186147712171078, 0.019333969801664352, -0.005124147981405258, -0.011906108818948269, -0.009315327741205692, -0.013700278475880623, 0.04064870625734329, 0.03588338941335678, -0.05006450414657593, -0.01647765189409256, 0.07320211827754974, -0.016492005437612534, 0.0454714335501194, -0.04294523969292641, -0.03456288203597069, -0.009853579103946686, 0.0006064292974770069, 0.022534769028425217, 0.05454275384545326, 0.014532772824168205, -0.010951610282063484, 0.00707979267463088, -0.03708907216787338, -0.014138055965304375, 0.0009320710669271648, -0.016463300213217735, -0.010470773093402386, -0.006559483706951141, -0.006893199402838945, 0.010061702691018581, 0.022793129086494446, 0.053652845323085785, 0.02404187060892582, -0.008956493809819221, 0.013097437098622322, 0.0033963629975914955, 0.026237934827804565, -0.017884282395243645, -0.001144680194556713, -0.005795167293399572, 0.0387253537774086, 0.020726246759295464, -0.017539801076054573, -0.025563327595591545, 0.012049642391502857, -0.014999257400631905, 0.013319914229214191, 0.020998960360884666, -0.008604836650192738, 0.004058411344885826, 0.005658810492604971, -0.00990381557494402, 0.005360978655517101, 0.027730684727430344, 0.002165562706068158, -0.0029209079220891, 0.02082671970129013, -0.036457523703575134, 0.02681206911802292, 0.01910431683063507, -0.026194874197244644, 0.007499628700315952, 0.04684935510158539, -0.0058669340796768665, 0.019262203946709633, -0.021817101165652275, 0.010858314111828804, 0.023539504036307335, -0.001955644693225622, -0.004033293109387159, 0.0011931227054446936, -0.01524326391518116, 0.003019587369635701, 0.016865193843841553, -0.00495190778747201, -0.0007113881874829531, -0.0076072788797318935, -0.006398008670657873, -0.03665846958756447, -0.02052529901266098, 0.030630061402916908, -0.02929520048201084, 0.03573985770344734, -0.01488442998379469, 0.01432464923709631, -0.0016039875335991383, 0.006182708311825991, -0.0016945931129157543, 0.02801775187253952, 0.017137907445430756, 0.02285054326057434, 0.03749096766114235, 0.00784410908818245, 0.003642164170742035, 0.01462606992572546, -0.009753105230629444, 0.005529630463570356, 0.01644894666969776, 0.00973875168710947, 0.007216149941086769, -0.03298401087522507, -0.003943584393709898, -0.020955899730324745, 0.03011334128677845, 0.012910843826830387, 0.040878359228372574, -0.022893602028489113, -0.01082243025302887, 0.005508100613951683, 0.02142956107854843, -0.0010809871600940824, 0.0485430508852005, 0.011504215188324451, -0.014461006037890911, 0.015458564274013042, -0.0011509597534313798, -0.015645157545804977, 0.004847845993936062, 0.010815253481268883, 0.004894494544714689, 0.002124296734109521, -0.0003761027764994651, 0.009817695245146751, -0.004284476861357689, 0.00790152233093977, 0.011755398474633694, -0.021443914622068405, -0.02250606194138527, 0.024185404181480408, -0.013671571388840675, -0.019377030432224274, -0.025218846276402473, 0.04274429380893707, -0.04831339791417122, -0.02708478271961212, -0.010643013752996922, -0.041739560663700104, -0.012523302808403969, -0.008769900538027287, -0.017482386901974678, -0.023812217637896538, 0.030773594975471497, -0.02573556825518608, 0.0021924751345068216, 0.0008414654876105487, 0.021774040535092354, -0.04400739073753357, -0.015214557759463787, 0.027730684727430344, -0.021630506962537766, 0.04191179946064949, -0.015645157545804977, 0.005231798160821199, -0.0028778479900211096, 0.03269694373011589, 0.002102766651660204, -0.022305116057395935, -0.0006225768011063337, -0.034247107803821564, 0.015042317099869251, 0.02157309465110302, 0.012150116264820099, 0.009415801614522934, 0.007122852839529514, -0.016348471865057945, 0.0034107163082808256, 0.016190584748983383, 0.005235386546701193, 0.033730387687683105, 0.008590484037995338, 0.047136422246694565, -0.006369301583617926, -0.022534769028425217, 0.02145826816558838, 0.016506358981132507, 0.01722402684390545, 0.03134772926568985, 0.004284476861357689, 0.017625920474529266, 0.003195415949448943, 0.026166168972849846, 0.0023521562106907368, 0.0062078265473246574, 0.01831488311290741, 0.001284625381231308, -0.04501212388277054, 0.02880718559026718, -0.005917171016335487, -0.002657165052369237, 0.0004456268507055938, 0.027142196893692017, -0.0417969711124897, 0.009968405589461327, 0.023683037608861923, -0.004887317772954702, 0.004306006710976362, 0.007750812452286482, 0.003665488213300705, -0.017884282395243645, 0.005719812586903572, -0.007779519073665142, -0.0006288564181886613, -0.02064012549817562, 0.01992245763540268, 0.029051192104816437, -0.024702126160264015, 0.015415504574775696, 0.06413079798221588, -0.010126292705535889, -0.024845659732818604, -0.001201196457259357, 0.0025082489009946585, -0.02389833703637123, 0.00854024663567543, 0.008669426664710045, -0.016391532495617867, 0.022678302600979805, -0.02883589267730713, -0.0009392477222718298, -0.03482124209403992, 0.010126292705535889, -0.012150116264820099, -0.021329086273908615, -0.0018874662928283215, 0.039155956357717514, 0.020754951983690262, -0.0029908805154263973, 0.017281441017985344, 0.02831917069852352, -0.014417946338653564, -0.037663206458091736, -0.009753105230629444, -0.00614323653280735, 0.020984606817364693, -0.017999108880758286, -0.015458564274013042, 0.03763449937105179, -0.004589485470205545, -0.05859040096402168, 0.003774932585656643, 0.04779667407274246, -0.017023080959916115, -0.006053527817130089, -0.005170796532183886, 0.005195914767682552, 0.011697985231876373, 0.001715226098895073, -0.014468182809650898, -0.03284047916531563, -0.010499480180442333, 0.00850436370819807, -0.02157309465110302, 0.0411367192864418, 0.007657515350729227, -0.019865045323967934, 0.015716925263404846, -0.01943444460630417, -0.025190139189362526, -0.013197910971939564, 0.006006879732012749, -0.02164486050605774, 0.006408773362636566, -0.008030702359974384, 0.043691616505384445, 0.021099433302879333, 0.006469775456935167, 0.04064870625734329, -0.022836189717054367, -1.218773741129553e-05, -0.021774040535092354, 0.01260224636644125, -0.04285912215709686, -0.04842822253704071, 0.026280995458364487, -0.004209121689200401, -0.007223326247185469, -0.04595944657921791, -0.016563773155212402, 0.04587332531809807, 0.01164774876087904, 0.01174104493111372, 0.022907955572009087, 0.03772062063217163, 0.01614752598106861, 0.028218697756528854, 0.013470624573528767, -0.07021661847829819, -0.02247735485434532, 0.008669426664710045, -0.031290315091609955, 0.0205683596432209, -0.003014204790815711, 0.007119264453649521, 0.016434593126177788, 0.005472217220813036, -0.006645604036748409, 0.03404616191983223, -0.000337752397172153, -0.0005481187836267054, 0.021486973389983177, 0.016204938292503357, 0.002490307204425335, -0.0245729461312294, -0.013721808791160583, -0.0034143044613301754, -0.011131027713418007, -0.01220752950757742, 0.02715655043721199, 0.0036385757848620415, -0.03126160800457001, 0.021142493933439255, 0.007772342301905155, -0.04251464083790779, 0.009760282002389431, -0.019793277606368065, 0.01573127880692482, 0.004108648281544447, -0.035194430500268936, 0.008899080567061901, 0.011640571989119053, 0.018788542598485947, 0.018745483830571175, 0.04268687963485718, -0.007176678162068129, 0.010470773093402386, -0.01824311539530754, -0.036055631935596466, 0.020195171236991882, 0.021056372672319412, -0.00556192547082901, -0.004227063152939081, 0.008640720508992672, 0.01677907258272171, 0.004431598819792271, -0.01342756487429142, 0.0020112639758735895, -0.0015187645331025124, 0.028261758387088776, -0.006857316009700298, 0.051327601075172424, -0.0012451536022126675, 0.0122864730656147, 0.038036394864320755, -0.010973140597343445, 0.008195766247808933, 0.018458416685461998, -0.014475359581410885, -0.04679194092750549, 0.02404187060892582, -0.00559063209220767, -0.013836635276675224, 0.028520118445158005, 0.0007997510838322341, 0.020697539672255516, 0.031146783381700516, 0.05236104130744934, 0.000530625635292381, -0.01715226098895073, 0.0034771005157381296, 0.05988220125436783, 0.009509098716080189, -0.0015088965883478522, -0.022003695368766785, 0.017956048250198364, 0.0009473214740864933, 0.02438635192811489, -0.0017125348094850779, -0.008812960237264633, 0.0065774256363511086, -0.01603269949555397, -0.01778380759060383, 0.035825975239276886, -0.028965072706341743, -0.0035721915774047375, -0.005949466023594141, -0.027027370408177376, 0.032869186252355576, -0.011296091601252556, -0.0018964371411129832, 0.012221883051097393, -0.0031702974811196327, 0.04584461823105812, 0.004356243647634983, 0.00466125225648284, 0.01850147545337677, 0.0025656623765826225, 0.01617623306810856, 0.003957937937229872, 0.011769752018153667, -0.010384652763605118, 0.042112745344638824, -0.0020381766371428967, 0.008856020867824554, -0.023568211123347282, -0.015157143585383892, 0.010198059491813183, -0.018099581822752953, 0.003495042212307453, -0.012293649837374687, -0.0005884876009076834, 0.036084339022636414, 0.0063764783553779125, 0.03229505196213722, 0.020424826070666313, 0.028979426249861717, -0.049863558262586594, 0.004786844365298748, -0.013894048519432545, -0.02094154618680477, -0.024214111268520355, -0.014281589537858963, -0.01451124344021082, 0.012451536022126675, -0.009444508701562881, 0.015817398205399513, -0.006907552480697632, 0.009638278745114803, -0.002319861203432083, 0.006649192422628403, -0.017482386901974678, 0.014453829266130924, 0.01775510236620903, 0.0036672824062407017, -0.01172669231891632, 0.025290613994002342, 0.0036690765991806984, -0.030142048373818398, -0.003283330239355564, -0.008073762990534306, 0.016807779669761658, -0.03229505196213722, 0.006860904395580292, 0.013908402062952518, 0.02194628119468689, -0.023683037608861923, 0.028218697756528854, -0.0129036670550704, -0.020065991207957268, -0.022821836173534393, 0.017927341163158417, 0.005626515485346317, -0.015142790973186493, 0.002651782473549247, -0.009839225560426712, -0.0405338779091835, 0.02629534900188446, -0.022046754136681557, -0.02422846481204033, -0.006717370823025703, 0.006799902301281691, -0.005368154961615801, 0.03973009064793587, 0.0022247701417654753, 0.004725842271000147, 0.005005733110010624, 0.0062006497755646706, 0.00264101754873991, -0.022333821281790733, 0.02464471198618412, 0.004901671316474676, 0.009164617396891117, -0.046016860753297806, 0.02059706673026085, 0.027056075632572174, -0.024056224152445793, 0.004327537026256323, 0.02355385757982731, -0.01913302391767502, 0.002452629618346691, -0.00878425408154726, -0.017439328134059906, -0.013118967413902283, 0.013922755606472492, 0.008985200896859169, -0.03662976622581482, -0.022276408970355988, 0.022520415484905243, -0.0018354353960603476, 0.026525001972913742, 0.03875406086444855, -0.019606685265898705, -0.01052100956439972, 0.012193175964057446, -0.001532220747321844, 0.017109200358390808, 0.030170753598213196, 0.0014514831127598882, -0.019420091062784195, -0.01591787114739418, -0.030199460685253143, -0.02438635192811489, 0.0007620734977535903, 0.003059058915823698, -0.02632405422627926, -0.001225417829118669, -0.0002431099710520357, 0.012975433841347694, 0.020539652556180954, 0.029223432764410973, -0.005787990987300873, 0.0057772258296608925, -0.0008513334323652089, -0.011059260927140713, -0.0004669326008297503, 0.024285878986120224, 0.005762872286140919, -0.0006104661733843386, -0.022089814767241478, 0.013563921675086021, 0.005149266682565212, -0.03941431641578674, 0.027658917009830475, 0.005005733110010624, -0.00992534589022398, 0.016348471865057945, 0.0030267639085650444, -0.010420536622405052, 0.014956196770071983, 0.003321007825434208, -0.0021278851199895144, -0.004306006710976362, -0.008863197639584541, -0.015616451390087605, 0.012918020598590374, 0.02648194134235382, 0.015286324545741081, 0.007216149941086769, 0.021415207535028458, 0.01494184322655201, -0.002861700253561139, 0.0032653885427862406, 0.05457146093249321, 0.022707009688019753, 0.012071172706782818, 0.0038574645295739174, 0.01432464923709631, -0.046390045434236526, 0.03295530378818512, -0.007187442854046822, 0.03375909477472305, -0.02827611193060875, 0.024974839761853218, 0.01312614418566227, 0.04208403825759888, 0.03370168060064316, 0.019147377461194992, -0.014367709867656231, -0.025304967537522316, 0.020008578896522522, -0.02546285279095173, 0.0036367815919220448, -0.0070618512108922005, 0.059422895312309265, 0.01917608454823494, 0.039385609328746796, -0.029151666909456253, -0.002771992003545165, 0.0026015457697212696, 0.054743699729442596, -0.0162910595536232, -0.005350213497877121, 0.001998704858124256, 0.003468129551038146, 0.05953771993517876, 0.006053527817130089, -0.011669278144836426, 0.013305560685694218, 0.040361639112234116, 0.008102469146251678, 0.006900375708937645, -0.026266641914844513, -0.010068879462778568, 0.009480391629040241, 0.041739560663700104, -0.009559335187077522, -0.030142048373818398, -0.011353504844009876, -0.004474658984690905, 0.02231946960091591, -0.02138650044798851, 0.008116822689771652, 0.005414803512394428, -0.04963390529155731, 0.01198505237698555, 0.01903255097568035, -0.011819988489151001, 0.03108936920762062, 0.023568211123347282, 0.021860161796212196, 0.016018345952033997, 0.012688366696238518, 0.024630358442664146, 0.0030482939910143614, -0.016118818894028664, 0.01857324317097664, 0.008138353005051613]" -How Density Manages Large Real Estate Portfolios Using TimescaleDB,"you submit. Touching in that context includes both the scanning of index tuples and heap access for the rows, the end of the indexed contents of the rows, so be smart with your indexes and only index what you need and design towards the end of needing as few indexes as possible, because those are how you reduce that overhead that your database has to work through to fulfill a particular request or query.Shane: So my advice, at least for an IoT company, is to consider your real-time use cases and your historical use cases and consider them separately. What we found out is we treated everything the same. Everything went through the same pipeline, and it was just queries that were different. When you're using TimescaleDB—and really any architecture—it's extremely useful to consider those use cases separately and architect them separately. They have different requirements. If you try to shoehorn all data, in real time, into any time-series database, whether it's something awesome like TimescaleDB or something else, it's going to cause problems and it's not going to scale very well. You can do a lot more by separating historical and real-time use cases.We’d like to thank Shane, Brock, and all the folks at Density for sharing their experience with TimescaleDB in measuring and optimizing real estate usage.We’re always keen to feature new community projects and stories on our blog. If you have a story or project you’d like to share, reach out on Slack (@Ana Tavares), and we’ll go from there.The open-source relational database for time-series and analytics.Try Timescale for free",https://www.timescale.com/blog/density-measures-large-real-estate-portfolios-using-timescaledb/,321,"[0.025152739137411118, 0.02138984389603138, 0.06369738280773163, 0.021418457850813866, 0.07039333134889603, 0.011331609450280666, -0.0060056098736822605, 0.003242457052692771, -0.02516704611480236, -0.005776688456535339, 0.019014783203601837, -0.012612138874828815, 0.03508220613002777, -0.028529329225420952, 0.03359421715140343, -0.0001592836924828589, 0.00802655704319477, -0.030503777787089348, -0.03024624101817608, 0.04215015470981598, -0.0011463954579085112, 0.03711388260126114, 0.012798137031495571, -0.0026808842085301876, 0.005537036340683699, -0.023407213389873505, -0.0008115085074678063, 0.0655287504196167, 0.06507091224193573, -0.04114862158894539, -0.003145880764350295, -0.04449659585952759, -0.033308062702417374, 0.010544692166149616, 0.01572403870522976, 0.02475212700664997, 0.0012152506969869137, 0.027284570038318634, 0.07405607402324677, -0.011381685733795166, -0.01944401115179062, 0.03313637152314186, -0.005343883763998747, 0.01014408003538847, -0.012469062581658363, -0.01788448542356491, -0.028057178482413292, -0.04672858119010925, -0.001972658559679985, 0.07130901515483856, -0.028615174815058708, -0.016382187604904175, -0.028557945042848587, -0.04681442677974701, 0.029559476301074028, -0.0497904047369957, -0.0042207385413348675, 0.033365294337272644, 0.025395968928933144, 0.01881447806954384, -0.025496121495962143, -0.05574236065149307, 0.030818544328212738, 0.04681442677974701, -0.05851803347468376, 0.004878887441009283, -0.02804287150502205, 0.05731619521975517, -0.010873766615986824, 0.01384259108453989, 0.029817013069987297, -0.014185973443090916, -0.006109340116381645, 0.010895228013396263, 0.04481136426329613, -0.052566077560186386, -0.03459574654698372, 0.04609904810786247, -0.01572403870522976, -0.0027166532818228006, 0.003662742441520095, -0.011252917349338531, -0.01881447806954384, 0.03722834214568138, -0.014071512036025524, -0.021733226254582405, -0.03313637152314186, -0.026383191347122192, 0.0007538310019299388, 0.028500715270638466, -0.04518336057662964, 0.07336930930614471, 0.029502246528863907, 0.006849757395684719, 0.026669343933463097, 0.015051581896841526, 0.01818494312465191, 0.012755214236676693, 0.00471792696043849, 0.017741408199071884, 0.021046461537480354, -0.023721979930996895, -0.028271792456507683, 0.003587627550587058, 0.015266195870935917, -0.018800171092152596, 0.003684203838929534, -0.002289213938638568, 0.012683676555752754, 0.016324957832694054, -0.08767689764499664, -0.027799643576145172, -0.028901327401399612, 0.011653530411422253, 0.0030117472633719444, 0.002614711644127965, -0.03267852962017059, -0.0075186374597251415, -0.01496573630720377, -0.00651352945715189, -0.010244232602417469, 0.007257523946464062, -0.00862747523933649, 0.03170561417937279, 0.010308616794645786, -0.011903912760317326, 0.021933531388640404, -0.036884959787130356, -0.03728557378053665, -0.013499208725988865, 0.04735811427235603, -0.006728142965584993, 0.05033409222960472, -0.022090915590524673, -0.0065636057406663895, -0.02164738066494465, -0.022949371486902237, 0.0017133336514234543, -0.01845678873360157, -0.03293606638908386, -0.006492068059742451, -0.04750119149684906, 0.01077361311763525, -0.01439343299716711, -0.0002225500502390787, 0.025939656421542168, -0.024022439494729042, 0.05788850039243698, 0.033422525972127914, 0.008369938470423222, 0.016840031370520592, 0.0015389599138870835, -0.04215015470981598, -0.003147669369354844, 0.07273977249860764, 0.006323953624814749, 0.03036070056259632, 0.038458794355392456, -0.029287632554769516, -0.04383844882249832, 0.0041706617921590805, 0.03073269873857498, -0.01260498445481062, 0.014400587417185307, -0.03900248557329178, 0.015766961500048637, -0.029445014894008636, -0.03533974289894104, -0.06741735339164734, -0.009922311641275883, -0.06432691216468811, -0.029244709759950638, -0.014021435752511024, 0.00551557494327426, 0.03491051495075226, -0.007554406300187111, -0.0038952408358454704, -0.040862470865249634, 0.03476743772625923, -0.030160395428538322, -0.047730110585689545, -0.012948366813361645, -0.04232184588909149, 0.02847209945321083, -0.0044746981002390385, -0.008641783148050308, -0.046413812786340714, 0.02060292661190033, -0.008462938480079174, 0.008012249134480953, -0.07508622109889984, 0.05634327977895737, 0.03691357746720314, 0.04340922087430954, 0.021847685799002647, -0.04870302975177765, 0.011875297874212265, 0.027298877015709877, -0.059176184237003326, 0.01153191551566124, 0.06249554455280304, 0.01179660577327013, 0.050248246639966965, -0.006456298753619194, 0.006159416399896145, 0.01074499823153019, 0.007697482127696276, 0.011417455039918423, -0.05703004449605942, -0.021747533231973648, -0.017212027683854103, 0.006492068059742451, -0.006474183406680822, -0.011081226170063019, -0.009478776715695858, -0.030503777787089348, -0.029445014894008636, -0.042865533381700516, -0.0336514450609684, -0.010752151720225811, 0.03459574654698372, 0.058432187885046005, -0.0022570218425244093, -0.015509424731135368, -0.02438012883067131, 0.03511082008481026, 0.019100628793239594, -0.01766987144947052, 0.0334511399269104, -0.004689312074333429, -0.002078177174553275, -0.014908506534993649, 0.01379251480102539, -0.06243831291794777, 0.031963150948286057, 0.004628504626452923, -0.015280503779649734, -0.05016240105032921, -0.029845627024769783, -0.04263661056756973, -0.011088380590081215, -0.005011232569813728, -0.02081754058599472, -0.021246768534183502, -0.0021479264833033085, 0.016696954146027565, -0.046413812786340714, -0.08109540492296219, 0.023578904569149017, 0.05737342685461044, -0.004460390657186508, -0.034881897270679474, -0.014822660945355892, -0.01381397619843483, -0.0028168063145130873, -0.08109540492296219, -0.004041893407702446, 0.030818544328212738, 0.03628404065966606, -0.0003353340725880116, 0.027027033269405365, -0.03445266932249069, 0.0017732466803863645, -0.004446082748472691, -0.026254422962665558, 0.009292778559029102, 0.029115941375494003, -0.05147869884967804, 0.020059237256646156, -0.01814202032983303, 0.036198195070028305, 0.06003463640809059, 0.0017464199336245656, -0.07079394161701202, -0.0224342979490757, -0.01934385858476162, -0.032735761255025864, -0.004095546901226044, -0.0197730865329504, -0.026826726272702217, -0.012168603017926216, -0.0288297887891531, 0.03099023550748825, -0.004024009220302105, 0.03296468034386635, -0.00995808094739914, -0.001021204050630331, 0.03914555907249451, 0.013685207813978195, -0.03545420244336128, 0.026139963418245316, 0.0012742695398628712, 0.005351037718355656, -0.0334511399269104, 0.004903925582766533, 0.031333617866039276, 0.005258038640022278, -0.04177815467119217, -0.03768618404865265, -0.007947864942252636, 0.03605512157082558, -0.006574336439371109, 0.02422274649143219, -0.020102160051465034, 0.002319617662578821, 0.0015201811911538243, -0.004928963724523783, 0.005894726142287254, 0.006234531290829182, 0.011102687567472458, -0.0049933479167521, 0.020731694996356964, 0.027198724448680878, -0.05476944521069527, 0.005007655825465918, -0.009328546933829784, 0.07153794169425964, 0.002519923960790038, -0.01496573630720377, -0.04529782384634018, -0.012469062581658363, -0.09231255203485489, -0.012046989053487778, 0.0062631466425955296, 0.021675994619727135, -0.0166254173964262, 0.028958557173609734, -0.001796496449969709, 0.01887170784175396, -0.021060768514871597, 0.008226863108575344, -0.01332036405801773, 0.0015183927025645971, -0.0002807864220812917, -0.015423579141497612, -0.029702551662921906, 0.01496573630720377, -0.016711262986063957, -0.02910163253545761, 0.020002007484436035, -0.006881949491798878, -0.015595270320773125, -0.056486357003450394, 0.018328020349144936, 0.008892165496945381, 0.03224930167198181, -0.021747533231973648, -0.016925876960158348, -0.01940108835697174, -0.013756745494902134, -0.056658048182725906, -0.02867240644991398, 0.009249855764210224, -0.01625341922044754, 0.0029026519041508436, 0.02709857188165188, 0.032792989164590836, -0.02270614169538021, -0.05828911066055298, -0.010265693999826908, -0.03313637152314186, -0.013377594761550426, 0.05542759597301483, 0.021518612280488014, 0.01171791460365057, 0.02066015638411045, -0.03093300387263298, -0.01971585489809513, -0.027914103120565414, -0.010001003742218018, 0.04707196354866028, 0.01300559751689434, -0.035940662026405334, -0.030589621514081955, -0.04452521353960037, 0.004249353427439928, 0.048474106937646866, 0.04509751498699188, 0.01661110855638981, 0.028057178482413292, 0.013356133364140987, 0.02128969132900238, -0.02520996890962124, -0.03333668038249016, 0.03920279070734978, 0.051879312843084335, -0.0120541425421834, 0.029073018580675125, -0.05310976505279541, -0.02506689354777336, 0.04927533119916916, 0.012511985376477242, 0.0071430630050599575, -0.00354470475576818, 0.027055649086833, -0.00791209563612938, 0.03691357746720314, 0.04063354805111885, 0.05104947090148926, -0.025868117809295654, 0.02699841745197773, -0.006198762450367212, -0.0350249744951725, -0.04189261794090271, 0.011882451362907887, 0.024251360446214676, -0.007160947658121586, -0.02536735311150551, -0.02636888436973095, -0.008441477082669735, -0.013649438507854939, 0.0037378573324531317, 0.046843040734529495, -0.01802756078541279, 0.020116468891501427, -0.03605512157082558, -0.007185985799878836, 0.06438414752483368, 0.011424608528614044, 0.058060191571712494, -0.009156855754554272, -0.01960139535367489, -0.003575108479708433, -0.029759781435132027, -0.022920755669474602, 0.048102110624313354, 0.05657220259308815, -0.0002792215091176331, -0.048931948840618134, -0.08183940500020981, -0.019100628793239594, 0.010730690322816372, 0.016868645325303078, -0.024451667442917824, -0.02930193953216076, 0.016396494582295418, 0.0476156510412693, -0.027255954220891, 0.04578427970409393, 0.006842603906989098, -0.03199176490306854, -0.004517620895057917, -0.02038831263780594, 0.00812670961022377, -0.004721503704786301, -0.03239237889647484, -0.03150530904531479, -0.009536007419228554, -0.007540098857134581, -0.03199176490306854, 0.00786201935261488, -0.04712919518351555, -0.0303034707903862, 0.04240769147872925, -0.023092446848750114, -0.0493897907435894, 0.006452722009271383, -0.021890608593821526, 0.015952959656715393, -0.014042897149920464, -0.049046412110328674, 0.03874494880437851, -0.04881748929619789, 0.008062325417995453, 0.025710735470056534, -0.004138469696044922, 0.03737141937017441, 0.020688772201538086, 0.018857400864362717, -0.022162452340126038, 0.023865055292844772, 0.02249152772128582, 0.02542458288371563, -0.023450136184692383, -0.027642259374260902, 0.028543638065457344, 0.04114862158894539, -0.004996925126761198, -0.00029464688850566745, -0.05362483859062195, 0.010315770283341408, -0.04698611795902252, -0.0033354563638567924, 0.07331208139657974, 0.03099023550748825, 0.058060191571712494, 0.016654031351208687, 0.013177287764847279, -0.019000476226210594, 0.02213383838534355, -0.025710735470056534, 0.008992318995296955, 0.05783126875758171, -0.01735510304570198, -0.010859458707273006, 0.015051581896841526, -0.04423906281590462, -0.03728557378053665, 0.03393759950995445, -0.00941439252346754, 0.011782298795878887, 0.007482868153601885, -0.0005329576670192182, 0.041234467178583145, -0.053138379007577896, 0.03433820977807045, -0.007042909972369671, -0.005919764284044504, 0.013771053403615952, -0.01603880524635315, -0.011410301551222801, -0.005934072192758322, 0.03654157742857933, 0.028271792456507683, -0.016868645325303078, 0.029960088431835175, -0.01855694130063057, 0.009793544188141823, -0.020645849406719208, -0.018957553431391716, -0.016181882470846176, -0.012576369568705559, -0.038716331124305725, -0.009578930214047432, -0.0197730865329504, 0.003415936604142189, -0.03711388260126114, -0.02008785307407379, -0.013949898071587086, -0.02164738066494465, 0.004696465563029051, -0.03262129798531532, -0.004671427421271801, 0.00940723903477192, -0.015022967010736465, 0.020960615947842598, -0.0037378573324531317, -0.028057178482413292, -0.01940108835697174, 0.0379723384976387, -0.012011219747364521, 0.029902858659625053, 0.008827781304717064, 0.02380782552063465, -0.0028418446891009808, -0.009922311641275883, -0.03262129798531532, -0.018642786890268326, -0.0006089666858315468, 0.03422375023365021, 0.020574310794472694, -0.022305529564619064, 0.031476691365242004, -0.006892680190503597, -0.001194683602079749, 0.031161926686763763, 0.023707672953605652, 0.008498706854879856, -0.0003673025930766016, -3.096251384704374e-05, -0.02180476300418377, -0.0020370427519083023, 0.012361755594611168, -0.0025950386188924313, -0.017312180250883102, 0.015309118665754795, 0.011546223424375057, -0.0466427356004715, -0.03453851491212845, 0.00547980610281229, -0.00857024546712637, -0.0166254173964262, 0.011052611283957958, -0.02369336597621441, -0.002725595375522971, 0.011353070847690105, -0.05462636798620224, -0.0073111774399876595, 0.0020370427519083023, -0.005129270255565643, -0.025868117809295654, -0.00804801844060421, -0.021246768534183502, 0.017655562609434128, -0.0399467833340168, -0.01431474182754755, 0.04071939364075661, 0.03697080537676811, 0.034738823771476746, -0.026612112298607826, 0.012805290520191193, -0.010988227091729641, -0.0028686714358627796, 0.0047286576591432095, 0.027756720781326294, -0.00862747523933649, 0.023092446848750114, 0.01944401115179062, -0.02967393770813942, 0.030389316380023956, 0.034109290689229965, 0.028701020404696465, 0.0052401539869606495, -0.028343331068754196, -0.014429202303290367, 0.02601119503378868, -0.00964331440627575, 0.010287155397236347, 0.052508845925331116, -0.005233000032603741, 0.031533923000097275, -0.010036773048341274, 0.0028847672510892153, -0.0523371547460556, -0.027542106807231903, 0.007139486260712147, -0.0030260547064244747, 0.0028203832916915417, 0.03674188628792763, -0.009164010174572468, -0.024079669266939163, -0.03471020609140396, 0.004828810691833496, -0.028443483635783195, 0.026025502011179924, 0.023149676620960236, -0.028429176658391953, -0.05305253341794014, -0.007668866775929928, 0.01930093578994274, 0.023049524053931236, -0.005383229814469814, 0.041434772312641144, 0.022191068157553673, 0.0009916946291923523, 0.023707672953605652, 0.03711388260126114, 0.050105173140764236, -0.006134378258138895, -0.003998970612883568, 0.023893671110272408, 0.007228908594697714, 0.0024465974420309067, -0.026855342090129852, 0.028815481811761856, -0.02432289905846119, 0.012139988131821156, 0.033050525933504105, 0.00019885311485268176, -0.015409272164106369, -0.030704082921147346, -0.029015786945819855, 0.05871833860874176, 0.03828710317611694, 0.024136900901794434, 0.010923842899501324, -0.02925901673734188, -0.03024624101817608, 0.0020728118252009153, 0.009192625060677528, -0.004059778060764074, -0.003153034718707204, -0.013463440351188183, -0.0016587859718129039, -0.03390898182988167, 0.00838424637913704, 0.029817013069987297, 0.009829312562942505, 0.022577373310923576, 0.029273323714733124, -0.039403095841407776, 0.025653503835201263, 0.03496774286031723, 0.01331321056932211, 0.042436305433511734, 0.008849242702126503, 0.024523206055164337, -0.012125680223107338, -0.0038129722233861685, 0.0460418164730072, -0.017841562628746033, 0.0034105712547898293, -0.01945831999182701, -0.018013251945376396, -0.021432766690850258, -0.014665277674794197, -0.012197218835353851, 0.03548281639814377, 0.03376590833067894, 0.009514546021819115, 0.002310675336048007, 0.01908632181584835, 0.02536735311150551, -0.03073269873857498, -0.028801174834370613, -0.026755189523100853, 0.016654031351208687, 0.017011722549796104, -0.006796103902161121, -0.04051908850669861, -0.0049826172180473804, 0.028801174834370613, -0.06066417321562767, -0.016482340171933174, 0.0023822132498025894, -0.006917718797922134, 0.030131779611110687, 0.0032835914753377438, 0.04655689001083374, -0.009471623227000237, -0.020259544253349304, 0.003684203838929534, 0.001134770573116839, 0.017469564452767372, -0.017054645344614983, -0.019258012995123863, -0.04137754440307617, 0.024780740961432457, -0.027055649086833, -0.003181649837642908, -0.03605512157082558, -0.014200280420482159, -0.026454729959368706, -0.025038277730345726, 0.03805818408727646, -0.0167255699634552, 0.0024787895381450653, 0.008899319916963577, 0.021718917414546013, -0.0071931397542357445, 0.010730690322816372, 0.019830316305160522, 0.016711262986063957, -0.0064491452649235725, 0.023550288751721382, -0.0015380657278001308, -0.03264991566538811, 0.005472652148455381, -0.02396520972251892, -0.0001450878771720454, -0.02044554241001606, 0.02721303142607212, -0.001487094908952713, -0.00446754414588213, 0.028343331068754196, -0.013828283175826073, 0.03491051495075226, 0.022920755669474602, 0.01735510304570198, -0.004410313908010721, 0.005787419155240059, 0.013885513879358768, -0.01808479055762291, -0.006914141587913036, 0.010523230768740177, -0.02888701856136322, -0.027284570038318634, 0.04000401496887207, -0.003677050117403269, 0.01991616189479828, 0.0007305811741389334, 0.03533974289894104, -0.03722834214568138, 0.016210496425628662, 0.012111373245716095, 0.016367880627512932, -0.02180476300418377, 0.015266195870935917, 0.002571788849309087, -0.05348176136612892, -0.02737041562795639, -0.03923140466213226, 0.014371971599757671, -0.011496147140860558, 0.09088179469108582, -0.01918647438287735, -0.011131303384900093, 0.02731318399310112, 0.010187002830207348, -0.019587088376283646, 0.02453751303255558, -0.0060270712710917, -0.02947363071143627, -0.03708526864647865, -0.006431260611861944, -0.002593250246718526, 0.0016605743439868093, -0.01203268114477396, -0.013642285019159317, -0.022162452340126038, -0.012626445852220058, 0.010651999153196812, -0.025252891704440117, -0.012440447695553303, 0.006742450874298811, -0.003592992899939418, -0.01755541004240513, -0.09128241240978241, -0.00010015311272582039, 0.03654157742857933, -0.0070035639218986034, 0.004338775761425495, -0.01761263981461525, 0.018742939457297325, 0.023249829187989235, 0.03900248557329178, -0.026697957888245583, -0.022677525877952576, -0.04755842313170433, -0.02967393770813942, -0.019358165562152863, -0.019644318148493767, 0.013928436674177647, 0.018857400864362717, 0.005140000954270363, 0.03539697080850601, 0.02013077586889267, -0.007211024407297373, 0.0020388311240822077, -0.01666834019124508, 0.0592334121465683, 0.01439343299716711, -0.02475212700664997, -0.013441978953778744, 0.04481136426329613, 0.04629935324192047, -0.04775872826576233, 0.006917718797922134, 0.020631540566682816, 0.006624413188546896, -0.009614698588848114, -0.01714049093425274, 0.013470593839883804, -0.00940723903477192, 0.018385250121355057, -0.0017804004019126296, -0.010530384257435799, -0.040404628962278366, -0.05265192314982414, 0.04738673195242882, -0.02553904429078102, 0.04724365472793579, -0.02636888436973095, 0.000651889480650425, 0.018256481736898422, -0.010308616794645786, 0.002062081126496196, 0.0493897907435894, -0.0019976969342678785, -0.011739376001060009, -0.01019415631890297, 0.004202853888273239, 0.06175154820084572, -0.01761263981461525, -0.003337244736030698, 0.006248838733881712, 0.012619292363524437, -8.366585097974166e-05, -0.015337733551859856, 0.0037915108259767294, -0.05328145623207092, -0.009428700432181358, 0.0002519476693123579, 0.010630537755787373, 0.030589621514081955, 0.0054762293584644794, 0.020889077335596085, 0.0011294052237644792, 0.039603400975465775, 0.031161926686763763, 0.004320891574025154, 0.03390898182988167, -0.004832387901842594, 0.01198260486125946, -0.020002007484436035, -0.006316800136119127, -0.03099023550748825, 0.009450161829590797, -0.0035339740570634604, -0.02742764540016651, 0.032277919352054596, -0.016854338347911835, -0.015194658190011978, -0.0007274514064192772, 0.001417345367372036, 0.015380656346678734, -0.024408744648098946, 0.03539697080850601, -0.0075186374597251415, -0.013957051560282707, 0.023307060822844505, -0.006234531290829182, 0.006102186162024736, -0.0020799655467271805, -0.014007127843797207, -0.0015183927025645971, 0.01798463799059391, 0.026597805321216583, -0.012669368647038937, 0.02804287150502205, 0.020688772201538086, -0.008985165506601334, -0.013806821778416634, 0.03479605168104172, -0.020159391686320305, -0.018113406375050545, 0.014565124176442623, -0.027456261217594147, -0.0030940158758312464, 0.025081200525164604, 0.011775144375860691, 0.019944777712225914, 0.00022769183851778507, 0.0071466402150690556, -0.012118526734411716, 0.015094504691660404, -0.027985641732811928, 0.031533923000097275, -0.019930468872189522, -0.031591154634952545, 0.006356145720928907, -0.011231455951929092, 0.03602650389075279, 0.046585503965616226, -0.03319360315799713, -0.003285379847511649, -0.043809834867715836, 0.024623358622193336, 0.0682758092880249, 0.007189563009887934, 0.0466427356004715, 0.016138959676027298, -0.026197193190455437, 0.016224805265665054, 0.025195661932229996, 0.006874796003103256, 0.017526794224977493, 0.012826751917600632, 0.015323426574468613, -0.001995908562093973, -0.015051581896841526, 0.008470091968774796, -0.021747533231973648, -0.016739876940846443, -0.013420517556369305, -0.038144029676914215, -0.002285637194290757, 0.033680062741041183, -0.052566077560186386, -0.025825195014476776, 0.04535505175590515, -0.011059765703976154, 0.08132433146238327, -0.04707196354866028, -0.0007337110000662506, -0.017383718863129616, -0.015924345701932907, 0.009922311641275883, 0.04921810328960419, 0.016553878784179688, 0.0032388800755143166, 0.02489520236849785, -0.03533974289894104, 0.007869172841310501, 0.020517081022262573, -0.0015711520100012422, 0.002164022531360388, 0.001354749663732946, 0.02056000381708145, -0.009056703187525272, 0.016596801578998566, 0.0525374636054039, 0.022663218900561333, 0.005830341950058937, 0.017998944967985153, -0.0018474672688171268, -0.004088392946869135, -0.017684178426861763, -0.0017991791246458888, -0.005572805181145668, 0.057058658450841904, 0.03702803701162338, -0.002965247491374612, -0.042236000299453735, 0.024938125163316727, -0.008534476161003113, 0.022305529564619064, 0.03748587891459465, 0.018056174740195274, 0.024923818185925484, -0.002437655348330736, -0.007490022107958794, -0.0004891406279057264, 0.03708526864647865, -0.0012975193094462156, -0.009793544188141823, 0.04561258852481842, -0.03376590833067894, 0.018757248297333717, 0.024551820009946823, -0.0013538554776459932, 0.0012376062804833055, 0.04587012529373169, -0.010923842899501324, 0.003662742441520095, -0.029588092118501663, 0.009865081869065762, 0.010380154475569725, 0.016925876960158348, -0.02947363071143627, 0.00549053680151701, -0.01824217475950718, 0.005318845622241497, -0.010115464217960835, 0.0042886994779109955, 0.005816034507006407, -0.009900850243866444, -0.0432947613298893, -0.02166168764233589, -0.016239112243056297, 0.02443736046552658, -0.03219207376241684, 0.037886492908000946, -0.0049826172180473804, 0.027957025915384293, -0.015309118665754795, 0.015065889805555344, 0.01124576386064291, 0.0181992519646883, 0.02789979614317417, -0.010916689410805702, 0.02103215456008911, 0.031333617866039276, 0.00017426194972358644, 0.03119054064154625, 0.005072040017694235, 0.0135278245434165, 0.018642786890268326, 0.0007748453062959015, -0.005919764284044504, -0.018127713352441788, -0.017584025859832764, -0.002367905806750059, 0.05946233496069908, 0.01625341922044754, 0.018428172916173935, -0.021218152716755867, 0.00781194306910038, 0.027284570038318634, 0.016911568120121956, 0.0067031048238277435, 0.03654157742857933, 0.010072541423141956, -0.008985165506601334, 0.01741233468055725, 0.00781194306910038, -0.011882451362907887, 0.008162478916347027, 0.028443483635783195, 0.0003567954699974507, 0.012934058904647827, -0.01022277120500803, -0.008276939392089844, -0.0013404421042650938, 0.009371469728648663, 0.007397023029625416, 0.0024877318646758795, -0.0432947613298893, 0.025810888037085533, -0.0009165798546746373, 0.0017374777235090733, 0.0010507134720683098, 0.035883430391550064, -0.04701473191380501, -0.011753682978451252, -0.002745268400758505, -0.0255819670855999, -0.026182886213064194, -0.014500739984214306, -0.03119054064154625, 0.00010769812797661871, 0.011066919192671776, -0.009242701344192028, -0.004746542312204838, -0.02317829243838787, 0.009142548777163029, -0.02003062330186367, 0.03628404065966606, 0.01174652948975563, -0.019959084689617157, 0.027914103120565414, -0.03233514726161957, 0.004571274388581514, -0.012984136119484901, 0.03267852962017059, -0.0023214060347527266, -0.013384748250246048, 0.012690830044448376, -0.001917216693982482, 0.03199176490306854, 0.02427997626364231, 0.015580963343381882, -0.006599374581128359, -0.00789063423871994, -0.006327530834823847, -0.025252891704440117, 0.014736815355718136, 0.0024680588394403458, 0.005036270711570978, 0.035940662026405334, 0.04183538630604744, -0.014264664612710476, 0.008062325417995453, 0.017956022173166275, 0.026497652754187584, 0.017598332837224007, 0.027799643576145172, -0.00046678504440933466, 0.01975877769291401, 0.026597805321216583, 0.03894525393843651, -0.008162478916347027, 0.015394964255392551, 0.0332508347928524, -0.010008157230913639, -0.02678380347788334, 0.03459574654698372, 0.0074685607105493546, -0.012275910004973412, -0.001342230592854321, 0.02113230712711811, -0.018542634323239326, 0.0013440189650282264, 0.026855342090129852, -0.009593237191438675, -0.009092471562325954, -0.010995381511747837, 0.002407251624390483, 0.001793813775293529, -0.008291247300803661, 5.600079384748824e-05, -0.0016954491147771478, -0.007697482127696276, 0.032478224486112595, 0.020059237256646156, -0.007278985343873501, 0.004861002787947655, 0.060320790857076645, 0.01708325929939747, -0.008012249134480953, 0.009750621393322945, -0.004793041851371527, -0.00017437372298445553, -0.0018868130864575505, 0.03099023550748825, -0.005744496360421181, 0.029230400919914246, -0.02432289905846119, -0.01253344677388668, -0.034624360501766205, 0.006978525780141354, 0.005429729353636503, -0.0032621300779283047, 0.00048735219752416015, 0.009807851165533066, 0.0008343111840076745, -0.003278226125985384, 0.00948593020439148, 0.02117522992193699, -0.007969326339662075, -0.030532391741871834, -0.022920755669474602, -0.029902858659625053, 0.01305567380040884, -0.01725495047867298, -0.005669381469488144, 0.01641080342233181, 0.0058196112513542175, -0.03528251126408577, 0.013499208725988865, 0.03476743772625923, -0.014135896228253841, 0.010523230768740177, -0.022462911903858185, 0.02123245969414711, 0.004918233025819063, -0.001636430388316512, -0.00886355061084032, -0.022505834698677063, -0.0022140992805361748, -0.00869901292026043, -0.02369336597621441, 0.037514496594667435, 0.004163507837802172, 0.0012429716298356652, 0.01651095598936081, -0.030446546152234077, -0.031018849462270737, 0.019329551607370377, 0.007532944902777672, -0.01436481811106205, 0.02365044318139553, 0.012104218825697899, 0.05084916576743126, 0.0166254173964262, 0.02044554241001606, 0.011281533166766167, -0.0316770002245903, -0.010051080025732517, -0.02479504980146885, 0.004263661336153746, -0.02636888436973095, -0.027270261198282242, 0.006052109412848949, -0.015709731727838516, -0.0065671829506754875, -0.05044855549931526, 0.017212027683854103, 0.027084263041615486, 0.02332136780023575, 0.015080197714269161, 0.043437834829092026, 0.027456261217594147, 0.008327015675604343, 0.0476156510412693, 0.028772559016942978, -0.030847158282995224, -0.018585557118058205, 0.032220687717199326, -0.023664750158786774, 0.03293606638908386, -0.014794046059250832, -0.009743466973304749, 0.004546235781162977, -0.001259961980395019, 0.0038952408358454704, 0.008541629649698734, -0.0009299931698478758, 0.002675518859177828, 0.016396494582295418, -0.011181379668414593, -0.012483370490372181, -0.0052151158452034, -0.033107757568359375, -0.016181882470846176, -0.00019840600725729018, -0.03611234948039055, 0.012161449529230595, 0.012540600262582302, -0.006624413188546896, 0.043552298098802567, 0.009206932969391346, -0.017684178426861763, -0.00018700463988352567, -0.03611234948039055, -0.00497904047369957, 0.005873264744877815, -0.0336514450609684, 0.013778206892311573, 0.015423579141497612, -0.004245776683092117, 0.005805303808301687, 0.04140615835785866, -0.01121714897453785, -0.027012726292014122, -0.010945304296910763, -0.020059237256646156, 0.023292751982808113, 0.025810888037085533, -0.022691834717988968, 0.015051581896841526, 0.0034731668420135975, 0.008985165506601334, 0.014092973433434963, -0.02365044318139553, 0.02060292661190033, -0.015509424731135368, 0.021146614104509354, -0.004438929259777069, 0.06255277246236801, 0.005207961890846491, -0.0012671157019212842, 0.007304023485630751, -0.0008946713642217219, -0.006806834600865841, 0.04366675764322281, -0.02479504980146885, -0.013434824533760548, 0.018170636147260666, -0.018900323659181595, -0.013434824533760548, 0.0363985039293766, -0.003891663858667016, 0.016911568120121956, 0.0208604633808136, 0.03891663998365402, 0.0027363260742276907, -0.026068424805998802, 0.01751248724758625, 0.0289299413561821, 0.016324957832694054, -0.0038415873423218727, -0.013849744573235512, 0.017956022173166275, -0.033794522285461426, 0.0038880868814885616, 0.00338910985738039, -0.013434824533760548, 0.0011213571997359395, -0.02107507735490799, -0.015580963343381882, 0.02935916930437088, -0.020145082846283913, 0.007243216037750244, -0.03061823733150959, -0.023235522210597992, 0.030761312693357468, -0.000570962147321552, -0.014236049726605415, 0.007096563465893269, 0.0230209082365036, 0.012626445852220058, -0.005891149397939444, -0.025152739137411118, 0.0025360200088471174, 0.005118539556860924, 0.01332036405801773, 0.01279098354279995, 0.005973417777568102, 0.006288184784352779, 0.06432691216468811, 0.013720976188778877, 0.03585481643676758, -0.011102687567472458, -0.0120040662586689, 0.002609346294775605, -0.011016842909157276, -0.01077361311763525, -0.0007033073343336582, 0.002283848589286208, 0.02249152772128582, 0.009507391601800919, 0.021847685799002647, 0.012418986298143864, 0.018013251945376396, -0.04020432010293007, -0.0010605499846860766, -0.01849971152842045, 0.001583671080879867, -0.020359696820378304, -0.03596927598118782, 0.005665804725140333, 0.003068977501243353, -0.001813486684113741, 0.0016954491147771478, 0.003712818957865238, -0.010015311650931835, 0.014879890717566013, -0.012934058904647827, -0.0199733916670084, 0.01462950836867094, -0.0009080846793949604, 0.015495117753744125, -0.0010167330037802458, 0.04907502606511116, 0.031848691403865814, -0.045011669397354126, 0.017812946811318398, -0.001842101919464767, 0.011639222502708435, -0.043695371598005295, 0.017626948654651642, 0.008577398955821991, 0.03041793219745159, 0.008634628728032112, 0.029130248352885246, -0.004117008298635483, -0.010015311650931835, -0.02091769315302372, 0.035368356853723526, 0.007783327717334032, -0.008019402623176575, -0.01129584014415741, -0.01572403870522976, -0.013506363146007061, 0.0348246693611145, -0.03422375023365021, -0.019272319972515106, -0.01867140270769596, 0.009156855754554272, 0.00817678589373827, 0.0497904047369957, -0.014271819032728672, 0.012519138865172863, 0.0017267470248043537, 0.013520670123398304, -0.016840031370520592, -0.008005095645785332, 0.030704082921147346, -0.008069479838013649, -0.019944777712225914, -3.12140145979356e-05, 0.021246768534183502, 0.014708200469613075, -0.003870202461257577, 0.006874796003103256, 0.024365821853280067, -0.01417881902307272, -0.004839541390538216, 0.0020728118252009153, -0.03073269873857498, -0.01975877769291401, -0.00917831715196371, 0.015495117753744125, -0.03825848922133446, -0.03339390829205513, 0.048674412071704865, 0.0038809331599622965, 0.019987700507044792, 0.0012787407031282783, -0.006281030829995871, -0.025710735470056534, -0.007368407677859068, 0.0055441902950406075, 0.018056174740195274, 0.022047992795705795, 0.0049933479167521, -0.003017112612724304, -0.0070250253193080425, -0.03302191197872162, -0.027957025915384293, 0.01619618944823742, -4.3844931497005746e-05, -0.018385250121355057, 0.004642812069505453, 0.03018900938332081, 0.0031655537895858288, 0.011832375079393387, 0.04235045984387398, 0.017212027683854103, 0.0020495618227869272, 0.0022963678929954767, -0.009342854842543602, -0.00854878406971693, 0.017998944967985153, 0.0023142523132264614, -0.017283566296100616, 0.02375059574842453, -0.006441991310566664, 0.010623384267091751, -0.019272319972515106, 0.02191922441124916, 0.0023786365054547787, -0.00869901292026043, 0.02040261961519718, 0.012075603939592838, 0.01619618944823742, 0.01861417107284069, -0.003324725665152073, -0.02526720054447651, -0.007983634248375893, 0.009922311641275883, 0.0005736448219977319, 0.010651999153196812, 0.028958557173609734, 0.013120057992637157, 0.007933557033538818, 0.024938125163316727, -0.002233772072941065, 0.001021204050630331, -0.011961143463850021, 0.01849971152842045, 0.00914970226585865, 0.019114937633275986, 0.013957051560282707, 6.546000804519281e-06, -0.00732548488304019, 0.04518336057662964, 0.00888501200824976, 0.027985641732811928, -0.023307060822844505, 0.04126308113336563, -0.012926905415952206, 0.01755541004240513, 0.020989231765270233, 0.003254976123571396, -0.008234016597270966, -0.03287883475422859, 0.017712794244289398, -0.027799643576145172, 0.004549812991172075, -0.011961143463850021, 0.047415345907211304, 0.009028087370097637, 0.023349983617663383, -0.0031065349467098713, -0.0012027316261082888, -0.0003909995430149138, 0.058060191571712494, -0.0039167022332549095, -0.013849744573235512, -0.022005070000886917, 0.008470091968774796, 0.03628404065966606, 0.024337206035852432, -0.02066015638411045, 0.007955018430948257, 0.026340268552303314, 0.00012004960444755852, 0.02164738066494465, -0.004764426499605179, -0.021089384332299232, 0.015952959656715393, 0.02998870424926281, 0.007418484427034855, -0.022763371467590332, -9.517899161437526e-05, -0.006052109412848949, 0.014193126931786537, 0.008806319907307625, -0.032220687717199326, -0.0007681386196054518, -0.04813072457909584, -0.01355643942952156, 0.005587113089859486, -0.013663746416568756, 0.005587113089859486, 0.02742764540016651, 0.011903912760317326, 0.013720976188778877, -0.004589158575981855, 0.026726573705673218, -0.009328546933829784, -0.006356145720928907, 0.030818544328212738, -0.003228149376809597]" -How METER Group Brings a Data-Driven Approach to the Cannabis Production Industry,"This is an installment of our “Community Member Spotlight” series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition,Paolo Bergantino, Director of Software for the Horticulture business unit at METER Group, joins us to share how they make data accessible to their customers so that they can maximize their cannabis yield and increase efficiency and consistency between grows.AROYAis the leading cannabis production platform servicing the U.S. market today. AROYA is part ofMETER Group, a scientific instrumentation company with 30+ years of expertise in developing sensors for the agriculture and food industries. We have taken this technical expertise and applied it to the cannabis market, developing a platform that allows growers to grow more efficiently and increase their yields – and to do so consistently and at scale.About the teamMy name isPaolo Bergantino. I have about 15 years of experience developing web applications in various stacks, and I have spent the last four here at METER Group. Currently, I am the Director of Software for the Horticulture business unit, which is in charge of the development and infrastructure of the AROYA software platform. My direct team consists of about ten engineers, 3 QA engineers, and a UI/UX Designer. (We’re also hiring!)About the projectAROYA is built as a React Single-Page App (SPA) that communicates with a Django/DRF back-end. In addition to usingTimescale Cloudfor our database, we use AWS services such as EC2+ELB for our app and workers,ElastiCache for Redis,S3for various tasks,AWS IoT/SQSfor handling packets from our sensors, and some other services here and there.✨Editor’s Note:""Timescale Cloud"" is known as ""Managed Service for TimescaleDB"" as of September 2021.As I previously mentioned, AROYA was born out of our desire to build a system that leveraged our superior sensor technology in an industry that needed such a system. Cannabis worked out great in this respect, as the current legalization movement throughout the U.S. has resulted in a lot of disruption in the space.The more we spoke to growers, the more we were struck by how much mythology there was in growing cannabis and by how little science was being applied by relatively large operations. As a company with deeply scientific roots, we found it to be a perfect match",https://www.timescale.com/blog/how-meter-group-brings-a-data-driven-approach-to-the-cannabis-production-industry/,501,"[0.0038191722705960274, -0.0066579002887010574, 0.009660035371780396, 0.027026819065213203, 0.026981215924024582, 0.015337491407990456, -0.025962769985198975, 0.026662001386284828, -0.015170283615589142, 0.014934672974050045, -0.00781315192580223, -0.058127421885728836, 0.01196293905377388, -0.022238602861762047, 0.00948522798717022, -0.003885675221681595, 0.0109140919521451, -0.022375408560037613, -0.06414689123630524, 0.026966014876961708, 0.017389584332704544, 0.022086596116423607, 0.030386170372366905, -0.007676346227526665, -0.023409055545926094, -0.04514603689312935, -0.05466166511178017, 0.06198839470744133, -0.0029945350252091885, -0.050770290195941925, -0.008421179838478565, -0.03690726310014725, 0.0031655426137149334, 0.011347311548888683, 0.014045433141291142, -0.03523518890142441, 0.04168028011918068, -0.03827532380819321, 0.01851443387567997, 0.01805841363966465, -0.032438263297080994, -0.008938003331422806, 0.02435149811208248, 0.04125465825200081, -0.020125707611441612, -0.023029038682579994, -0.0541752427816391, 0.020125707611441612, 0.04028181731700897, 0.01139291375875473, -0.054114438593387604, 0.008459181524813175, 0.01562630385160446, -0.04149787127971649, -0.010617678984999657, -0.01775440014898777, 0.007300129160284996, 0.06584937125444412, -0.0022763025481253862, -0.02895730547606945, 0.025126732885837555, -0.023029038682579994, 0.024488303810358047, -0.002114795381203294, -0.026418790221214294, 0.0323166586458683, -0.003948377911001444, 0.010693682357668877, 0.02316584438085556, 0.02903330884873867, 0.06104595214128494, 0.028638090938329697, 0.028638090938329697, -0.018468832597136497, 0.042531516402959824, -0.08530624210834503, -0.015223486348986626, 0.029170114547014236, -0.018985655158758163, -0.012380958534777164, 0.018271224573254585, -0.026677202433347702, 0.009204015135765076, -0.00563945434987545, 0.02769564837217331, -0.0406162291765213, -0.029899748042225838, -0.03961298614740372, -0.055452100932598114, 0.027528440579771996, -0.019335271790623665, 0.07247686386108398, -0.003047737292945385, 0.023211445659399033, 0.010154057294130325, -0.018848849460482597, -0.027072420343756676, -0.009812042117118835, 0.02533954195678234, 0.009948848746716976, 0.008109565824270248, -0.03636004030704498, -0.028318876400589943, -7.879417535150424e-05, 0.007395133376121521, 0.02156977169215679, -0.003840073011815548, 0.02685961127281189, 0.041467469185590744, -0.0021470969077199697, -0.08336056023836136, 0.008451581001281738, -0.0014165138127282262, 0.007512938696891069, 0.009242016822099686, -0.009135612286627293, -0.017039967700839043, 0.008884800598025322, 0.034079935401678085, -0.018453631550073624, -0.04526764154434204, 0.022983435541391373, -0.014547055587172508, -0.0031218407675623894, 0.032559867948293686, -0.0059662689454853535, -0.03265107050538063, -0.03338070586323738, -0.01843843050301075, 0.0007880605407990515, 0.05533049255609512, -0.0066388994455337524, 0.02850128524005413, -0.03927857056260109, -0.028668493032455444, -0.05405363813042641, -0.025537151843309402, -0.04231870919466019, -8.538510155631229e-05, -0.03265107050538063, 0.004548804834485054, -0.01190973725169897, 0.03176943212747574, -0.006471691653132439, -0.042653121054172516, -0.039217766374349594, -0.03943057730793953, 0.020368918776512146, -0.014995476230978966, -0.015823913738131523, -0.03374551981687546, -0.0646333172917366, -0.07344970852136612, -0.010138857178390026, 0.052594371140003204, -0.009059607982635498, 0.042075496166944504, 0.0706527829170227, 0.013764220289885998, -0.04602767527103424, -0.021843384951353073, 0.03222545236349106, -0.013885825872421265, -0.0218281839042902, -0.013726218603551388, -0.013961829245090485, -0.043078742921352386, -0.02281622774899006, -0.066153384745121, 0.0023808074183762074, -0.07357131689786911, -0.04487242177128792, -0.027802053838968277, -0.003520858706906438, 0.042045094072818756, -0.027361232787370682, 0.019487278535962105, 0.013635015115141869, 0.014197439886629581, -0.03006695583462715, -0.03940017521381378, 0.03803211450576782, -0.005669855512678623, -0.029823744669556618, -0.020596928894519806, -0.013999830931425095, -0.043838776648044586, 0.01009325496852398, -0.001281607779674232, 0.017085570842027664, -0.013870625756680965, 0.08591427654027939, 0.03930897265672684, 0.033319901674985886, 0.016827158629894257, -0.03684646263718605, 0.02678360790014267, 0.02324184775352478, 0.00035769111127592623, -0.007148122414946556, 0.017571991309523582, 0.031222207471728325, 0.07612503319978714, -0.030583778396248817, 0.02796926163136959, -0.060863543301820755, 0.001192303723655641, -0.029474128037691116, -0.041771482676267624, -0.013733819127082825, 0.02976294234395027, 0.016143128275871277, 0.006863109301775694, 0.02511153183877468, -0.03639043867588043, -0.023074639961123466, -0.05311119556427002, 0.0157783105969429, 0.017252778634428978, 0.007756149861961603, -0.032590270042419434, 0.047334935516119, 0.02263382077217102, 0.016675151884555817, -0.0034866572823375463, 0.008823997341096401, 0.004043382126837969, -0.035417597740888596, 0.05116550624370575, -0.032711874693632126, 0.0316174253821373, 0.01095209363847971, -0.024108286947011948, -0.010997695848345757, 0.01950247958302498, -0.016507944092154503, 0.0028159269131720066, -0.029854146763682365, 0.014866270124912262, 0.04104185104370117, 0.019183265045285225, 0.007148122414946556, 0.003809671849012375, 0.0010184459388256073, 0.014121436513960361, -0.0011562021682038903, -0.03350231051445007, -0.06815987080335617, 0.030279764905571938, 0.02427549473941326, 0.012274553067982197, 0.002511913189664483, -0.02910931222140789, -0.03736328333616257, -0.015132281929254532, -0.04523723945021629, -0.026722805574536324, 0.027330832555890083, 0.01790640689432621, -0.009796842001378536, -0.01064808014780283, -0.0240474846214056, -0.031100602820515633, 0.01702476665377617, -0.014129037037491798, 0.03262067213654518, 0.0022059993352741003, -0.014075834304094315, 0.0004686086322180927, 0.005415244027972221, 0.04079863801598549, 0.015687108039855957, 0.034535955637693405, -0.026494793593883514, -0.017647994682192802, -0.004050982650369406, 0.028638090938329697, 0.014676261693239212, -0.00650589307770133, -0.01194773893803358, -0.0012322055408731103, 0.011704527772963047, 0.028820499777793884, -0.02003450319170952, 0.025461148470640182, 0.02122015692293644, 0.051682330667972565, -0.01691836304962635, -0.013574211858212948, -0.018909651786088943, -0.01714637316763401, 0.0022668021265417337, 0.04538924619555473, -0.015307090245187283, -0.002109094988554716, -0.024549106135964394, 0.011248507536947727, 0.02156977169215679, -0.03338070586323738, -0.03341110795736313, 0.03596482053399086, 0.0021489968057721853, 0.021782582625746727, -0.05384082719683647, -0.003891375381499529, -0.03310709074139595, -0.05098309740424156, 0.010708882473409176, -0.02983894571661949, 0.007357131689786911, 0.02807566523551941, 0.01970008760690689, 0.03246866539120674, -0.009416824206709862, -0.030614180490374565, -0.003285248065367341, 0.07144322246313095, -0.03319829702377319, 0.02582596428692341, -0.030507775023579597, -0.008367977105081081, -0.051074303686618805, -0.037089671939611435, -0.04134586453437805, 0.005232836119830608, -0.053932029753923416, 0.03675525635480881, -0.005844663362950087, 0.0361168272793293, -0.03216464817523956, 0.026266783475875854, -0.008086764253675938, 0.01293578278273344, 0.014744664542376995, 0.0029774343129247427, -0.011035697534680367, 0.006927712354809046, -0.02289223112165928, 0.027072420343756676, 0.006528694182634354, -0.024260293692350388, -0.07484817504882812, -0.03736328333616257, 0.008770795539021492, 0.02796926163136959, -0.047334935516119, -0.020657731220126152, -0.015231086872518063, 5.05304014950525e-05, 0.023713069036602974, -0.03125260770320892, 0.008557985536754131, -0.0017423785757273436, -0.005042827222496271, -0.012950983829796314, 0.006486892234534025, 0.02701161801815033, -0.010374467819929123, -0.04377797245979309, -0.008261572569608688, -0.05238156020641327, 0.04660530015826225, -0.012882580980658531, 0.022953035309910774, 0.002411208814010024, 0.03958258405327797, -0.020794536918401718, 0.035265590995550156, 0.008801196701824665, -0.06548455357551575, -0.01924406737089157, -0.03532639145851135, -0.016903162002563477, -0.022497015073895454, -0.041741080582141876, -0.010161657817661762, 0.0391569659113884, 0.016827158629894257, 0.013247396796941757, 0.06505893170833588, 0.04046422243118286, 0.014151837676763535, -0.017556792125105858, -0.023029038682579994, -0.0009063408360816538, 0.029428526759147644, 0.004811016842722893, 0.015747910365462303, -0.05508728325366974, -0.013999830931425095, 0.015056278556585312, -0.0323166586458683, -0.01527668908238411, 0.0036766657140105963, 0.033471908420324326, 0.004358796402812004, -0.008307174779474735, -0.007250726688653231, 0.05192553997039795, -0.0034372550435364246, 0.01714637316763401, -0.02590196765959263, -0.04748694226145744, 0.0221778005361557, 0.004940222483128309, 0.0195784829556942, -0.017343981191515923, 0.009287619031965733, -0.020475322380661964, 0.0008802146767266095, -0.04286593198776245, -0.0721120536327362, 0.06888950616121292, -0.020125707611441612, 0.006422289647161961, 0.003304248908534646, -0.03368471935391426, 0.003245346248149872, 0.029443727806210518, 0.0345967598259449, -0.0037944710347801447, 0.03075098618865013, 0.04095064476132393, -0.04347395896911621, -0.00306673813611269, 0.055908121168613434, 0.04909821227192879, -0.01874244585633278, -0.04718292877078056, -0.06022511422634125, -0.03636004030704498, -0.018757645040750504, 0.028744496405124664, -0.011286509223282337, -0.031830236315727234, 0.05624253675341606, 0.0028216273058205843, 0.03702886775135994, 0.015497098676860332, 0.0010526474798098207, -0.015747910365462303, 0.007585141807794571, 0.012988985516130924, -0.0043815975077450275, -0.046848513185977936, 0.013140992261469364, -0.007995560765266418, -0.005491247400641441, -0.03062938153743744, -0.045358844101428986, 0.008215970359742641, -0.011514519341289997, -0.04763894900679588, 0.05691136419773102, -0.02435149811208248, 0.06724783033132553, 0.06092434749007225, -0.018605638295412064, 0.010328865610063076, -0.008261572569608688, -0.03487037122249603, 0.014585057273507118, -0.04514603689312935, -0.007235526107251644, -0.019259268417954445, -0.06125876307487488, -0.01038206834346056, -0.0004296568804420531, -0.028166869655251503, 0.007645944599062204, 0.044902823865413666, 0.01780000329017639, -0.03265107050538063, -0.017571991309523582, -0.02701161801815033, -0.011271308176219463, 0.028896503150463104, -0.007178523577749729, 0.006327285431325436, -0.05642494186758995, 0.002325704786926508, 0.022846629843115807, -0.0676126480102539, 0.08019881695508957, 0.026616400107741356, 0.002635418903082609, -0.017207175493240356, 0.03684646263718605, -0.041133053600788116, 0.019517680630087852, -0.004077584017068148, 0.006703502032905817, 0.08202289789915085, -0.019411275163292885, 0.0009101410396397114, -0.022390609607100487, -0.04484201967716217, -0.04298753663897514, -0.031115802004933357, -0.008010760881006718, 0.03341110795736313, 0.002084393985569477, -0.047304533421993256, 0.035295989364385605, -0.02392587810754776, 0.0001638823887333274, -0.04058583080768585, 0.0072279260493814945, 0.011210504919290543, -0.03566080704331398, -0.02457950823009014, 0.031374216079711914, -0.020277714356780052, 0.005004825536161661, -0.02956533245742321, 0.015839114785194397, -0.0025993171148002148, -0.003978779539465904, 0.00044960775994695723, -0.01102809701114893, -0.02602357231080532, -0.03262067213654518, -0.03176943212747574, 0.016751155257225037, 0.027270030230283737, 0.0016635250067338347, -0.029139714315533638, -0.0007486337563022971, -0.0051872339099645615, 0.0006849808851256967, -0.006931512616574764, -0.015527499839663506, 0.0023485058918595314, 0.02819727174937725, -0.037545692175626755, 0.0029641336295753717, -0.015869515016674995, -0.02427549473941326, -0.021995391696691513, 0.00800316035747528, -0.00612587621435523, -0.0065628960728645325, 0.0244579017162323, 0.037849705666303635, -0.000600427039898932, 0.01954808086156845, -0.005555850453674793, -0.0240778848528862, 0.01562630385160446, 0.023439455777406693, 0.03356311470270157, -0.021630575880408287, 0.002549914875999093, -0.01108890026807785, 0.0023694068659096956, 0.03538719564676285, -0.016507944092154503, 0.0016388238873332739, 0.004651409573853016, 0.016751155257225037, 4.200970579404384e-05, 0.004096584860235453, 0.016583947464823723, 0.013498208485543728, 0.017252778634428978, 0.054996080696582794, 0.0065742963925004005, 0.020779335871338844, -0.0016530745197087526, -0.0010906491661444306, 0.03596482053399086, -0.013969429768621922, -0.013695817440748215, 0.01603672280907631, 0.04991905018687248, 0.004491802304983139, -0.01570230722427368, -0.01289778109639883, -0.004161187447607517, 0.014311444945633411, -0.01608232408761978, -0.023561062291264534, -0.02026251330971718, 0.028440482914447784, -0.02498992718756199, -0.010982494801282883, 0.027042018249630928, 0.025233138352632523, 0.030431771650910378, 0.021326560527086258, -0.026920413598418236, -0.003986379597336054, 0.028866101056337357, 0.0353567935526371, -0.012654570862650871, -0.012168148532509804, 0.02354586124420166, 0.005787660833448172, -0.008360376581549644, 0.03593441843986511, 0.04052502661943436, -0.007539540063589811, 0.021934589371085167, -0.007163322996348143, -0.010640479624271393, 0.025932369753718376, 0.012487363070249557, 0.005711657460778952, 0.041619475930929184, -0.03295508399605751, -0.0010231961496174335, -0.009249617345631123, -0.013414604589343071, -0.03900495916604996, -0.0428963340818882, 0.019487278535962105, -0.00534304091706872, -0.018499234691262245, 0.009386423043906689, 1.1281758816039655e-05, 0.006798506714403629, -0.022770626470446587, -0.009325620718300343, -0.02983894571661949, -0.016735954210162163, 0.0051112305372953415, 0.008345176465809345, -0.02030811458826065, -0.027710849419236183, 0.0124037591740489, 0.01207694411277771, -0.03338070586323738, 0.007763749919831753, 0.00026031173183582723, -0.006262682378292084, 0.0009505178313702345, 0.006863109301775694, 0.02865329198539257, -0.012054143473505974, 0.008033562451601028, 0.07040957361459732, 0.02746763825416565, -0.0028862301260232925, -0.012753374874591827, -0.005810461938381195, -0.02167617715895176, -0.009120411239564419, 0.029382925480604172, 0.039947401732206345, -0.0251875352114439, 0.017708798870444298, -0.015671906992793083, 0.009834843687713146, 0.03037096932530403, 0.006722502876073122, 0.01565670594573021, -0.0073039294220507145, 0.0017661296296864748, 0.005415244027972221, 0.01859043724834919, -0.0496150366961956, -0.016279933974146843, -0.0191984660923481, -0.017465587705373764, -0.027361232787370682, 0.008033562451601028, 0.026753205806016922, 0.03702886775135994, 0.03608642518520355, 0.04256191849708557, 0.039187368005514145, 0.011476517654955387, -0.002616418059915304, 0.028835700824856758, 0.008679591119289398, 0.009948848746716976, -0.013863025233149529, -0.03532639145851135, 0.004442400299012661, 0.024290695786476135, -0.005597652401775122, 0.028166869655251503, -0.02807566523551941, 0.020399319007992744, -0.012084544636309147, -0.0009832943323999643, 0.046240486204624176, -0.0073039294220507145, 0.026114776730537415, 0.013414604589343071, 0.006228480953723192, -0.02278582751750946, 0.010283263400197029, -0.02236020751297474, 0.008770795539021492, -0.03675525635480881, -0.004050982650369406, -0.0026563196443021297, -0.00038429233245551586, -0.07034876942634583, 0.01379462145268917, -0.00478061567991972, -0.03429274633526802, 0.0052442364394664764, -0.023682666942477226, 0.039947401732206345, -9.797317034099251e-05, 0.020368918776512146, 0.030507775023579597, 0.011172503232955933, -0.03642084077000618, -0.01546669751405716, -0.02635798789560795, 0.043078742921352386, -0.02476191706955433, 0.01710077002644539, 0.00047193377395160496, 0.01932007074356079, 0.010534075088799, 0.014007431454956532, -0.03359351307153702, 0.009226815775036812, -0.03584321588277817, -0.02918531559407711, 0.006186679005622864, -0.01669035293161869, -0.008345176465809345, 0.013026987202465534, -0.018301624804735184, 0.01131691038608551, 0.009204015135765076, 0.006528694182634354, -0.00032562718843109906, 0.0006203779485076666, -0.003914176486432552, -0.001236005686223507, -0.04438599944114685, -0.03699846938252449, -0.049432627856731415, -0.0044195991940796375, -0.03997780382633209, -0.029975751414895058, -0.03116140514612198, -0.012107346206903458, -0.007414134219288826, -0.026874812319874763, 0.022618619725108147, 0.04019061103463173, 0.016371138393878937, 0.02289223112165928, 0.005768659990280867, 0.01596071943640709, -0.037697698920965195, 0.018803248181939125, 0.004442400299012661, -0.0360560268163681, -0.013969429768621922, 0.007300129160284996, 0.019791292026638985, 0.05478326976299286, 0.004499402828514576, 0.04997985437512398, -0.012160548008978367, 0.021706579253077507, -0.006939112674444914, 0.05146951973438263, 0.018043212592601776, 0.0007305829203687608, 0.009492827579379082, -0.03371512144804001, -0.03353271260857582, -0.017845604568719864, -0.011704527772963047, -0.003967378754168749, 0.013087790459394455, -0.012016141787171364, 0.016933564096689224, -0.027498040348291397, 0.02377387136220932, 0.03487037122249603, 0.05140871927142143, -0.0072469268925487995, -0.028850900009274483, -0.010237661190330982, 0.004385397769510746, -0.01980649307370186, 0.016279933974146843, -0.03532639145851135, -0.02137216366827488, -0.04842938482761383, -0.018651241436600685, 0.01863604038953781, -0.027118021622300148, 0.009660035371780396, 0.018119215965270996, 0.023287449032068253, 0.020794536918401718, -0.07946918159723282, -0.04231870919466019, 0.038001712411642075, -0.019213665276765823, -0.026722805574536324, -0.005970069207251072, 0.01293578278273344, 0.028106067329645157, 0.026798808947205544, -0.0016986766131594777, 0.013414604589343071, -0.029170114547014236, 0.004833817947655916, -0.032590270042419434, -0.013901026919484138, -0.022527415305376053, -0.021113751456141472, -0.006194279063493013, -0.0025385143235325813, 0.020399319007992744, -0.02571955882012844, 0.007919557392597198, -0.008633988909423351, 0.04259232059121132, -0.011598123237490654, -0.017647994682192802, -0.0021755981724709272, 0.010123656131327152, 0.0360560268163681, -0.0030591378454118967, 0.009105210192501545, 0.01780000329017639, -0.0035436598118394613, 0.012380958534777164, -0.026342786848545074, 0.0006498292787000537, 0.027406835928559303, 0.03359351307153702, 0.023348253220319748, -0.013437406159937382, -0.030279764905571938, -0.019183265045285225, 0.019715288653969765, -0.06366047263145447, -0.005510248243808746, 0.010252862237393856, 0.007896755822002888, -0.0003006885526701808, -0.035569604486227036, 0.02483792044222355, 0.023226646706461906, -0.03642084077000618, -0.00944722630083561, -0.011286509223282337, 0.0012759075034409761, 0.02374347113072872, -0.03560000658035278, -0.002874829573556781, -0.006882110144942999, -0.004119385499507189, -0.05232075974345207, 0.02758924290537834, 0.010465672239661217, -0.022603418678045273, -0.013315800577402115, 0.017769601196050644, 0.003898975672200322, 0.037697698920965195, 0.03158702328801155, 0.03298548609018326, -0.02777165174484253, 0.023226646706461906, 0.016219131648540497, -0.006828907877206802, 0.010602477937936783, 0.004651409573853016, 0.054996080696582794, 0.005951068364083767, 0.03690726310014725, -0.05241196230053902, 0.006844108458608389, -0.0046476093120872974, -0.012912982143461704, -0.002255401574075222, -0.02751323953270912, -0.002544214716181159, -0.02792365849018097, 0.00504662748426199, -0.010199659503996372, -0.000470508704893291, 0.05554330348968506, 0.01729837991297245, 0.01679675653576851, -0.028090866282582283, -0.0011467017466202378, 0.01558070257306099, -0.014531855471432209, 0.009933647699654102, 0.027224427089095116, 0.019289670512080193, 0.006950513459742069, 0.015519899316132069, 0.0035835616290569305, 0.013057388365268707, 0.0008127616601996124, -0.032438263297080994, 0.022086596116423607, -0.021554572507739067, 0.0007495837635360658, -0.018879251554608345, -0.011005296371877193, 0.00937122292816639, -0.0065818969160318375, 0.011780531145632267, -0.011970539577305317, 0.016127927228808403, 0.006722502876073122, -0.026646802201867104, 0.027361232787370682, 0.004613407887518406, 0.0473957359790802, -0.010062853805720806, -0.024640310555696487, 0.023257048800587654, 0.022679422050714493, 0.022238602861762047, 0.02789325825870037, -0.01520068570971489, 0.01904645934700966, -0.012494963593780994, -0.01932007074356079, 0.043230749666690826, -0.0005063728312961757, 0.049888648092746735, -7.843790808692575e-05, -0.008976005017757416, 0.025081131607294083, -0.004529803991317749, -0.0007880605407990515, -0.02655559778213501, -0.01255576591938734, -0.011499318294227123, -0.029063710942864418, 0.022269003093242645, -0.00474261399358511, 0.010100855492055416, -0.019380873069167137, 0.026950815692543983, -0.03262067213654518, 0.04545005038380623, -0.026677202433347702, 0.007516738958656788, 0.0005690756370313466, 0.07539539784193039, -0.010997695848345757, 0.04271392524242401, -0.049888648092746735, -0.0191984660923481, -0.015010676346719265, -0.013391803950071335, 0.021311361342668533, 0.049584634602069855, -0.020900942385196686, -0.025734759867191315, -0.0008754644659347832, -0.010062853805720806, -0.021250557154417038, 0.0022212001495063305, 0.037697698920965195, -0.023880276829004288, -0.004073783755302429, -0.010921692475676537, -0.010769685730338097, -0.04240991175174713, 0.01112690195441246, -0.0005928267491981387, 0.007368532009422779, -0.009363622404634953, 3.7111049095983617e-06, 0.042805131524801254, -0.01767839677631855, 0.010404868982732296, 0.014775065705180168, 0.057701800018548965, 0.023211445659399033, -0.04225790500640869, -0.021417764946818352, -0.031222207471728325, -0.0236674677580595, 0.02225380390882492, 0.008550385013222694, 0.004727412946522236, 0.02339385449886322, 0.00975123979151249, -0.007037917152047157, -0.0032871481962502003, 0.013977030292153358, 0.030963795259594917, -0.03344150632619858, 0.017647994682192802, -0.02549154870212078, 0.029884546995162964, 0.0406162291765213, -0.0028976306784898043, 0.008823997341096401, 0.040981046855449677, 0.00017397658666595817, -0.011286509223282337, -0.05773220211267471, 0.0024511103983968496, 0.02632758766412735, 0.0046096076257526875, -0.014600258320569992, -0.042531516402959824, -0.006110675632953644, -0.02819727174937725, 0.002363706473261118, 0.01947207748889923, -0.017845604568719864, -0.03474876657128334, 0.0058332630433142185, -0.01825602352619171, -0.04095064476132393, -0.0005505498265847564, 0.008421179838478565, 0.03797131031751633, -0.007220325525850058, -0.006342486012727022, -0.0203385166823864, 0.02521793730556965, -0.006475491914898157, 0.002781725488603115, 0.023485058918595314, 0.003879974829033017, 0.02354586124420166, -0.0003724167763721198, 0.0051226308569312096, 0.021189754828810692, -0.004951623268425465, -0.021630575880408287, -0.015253887511789799, -0.010959694162011147, 0.01144611556082964, -0.031115802004933357, -0.041437067091464996, -0.018119215965270996, 0.04940222576260567, 0.03590402007102966, 0.00967523641884327, -0.029930150136351585, -0.04645329341292381, -0.015565501525998116, 0.027178825810551643, -0.0009937448194250464, 0.016705553978681564, 0.007300129160284996, 0.01593031734228134, 0.0038115717470645905, 0.030158160254359245, 0.017541591078042984, -0.013840223662555218, -0.008618788793683052, 0.03252946585416794, -0.01894005388021469, 0.02872929535806179, -0.02175218053162098, 0.014433050528168678, -0.0009685686673037708, -0.009850043803453445, 0.041437067091464996, 0.005453245714306831, -0.005761059932410717, 0.06682221591472626, 0.014676261693239212, 0.017115971073508263, 0.0248075183480978, -0.038883354514837265, -0.01005525328218937, -0.01558070257306099, -0.022421009838581085, -0.015443895943462849, 0.019441677257418633, -0.018620839342474937, 0.029595734551548958, 0.01263176929205656, 0.0051872339099645615, -0.007136721629649401, -0.004735013470053673, -0.012532965280115604, -0.01935047283768654, 0.003458155784755945, 0.018985655158758163, 0.0050352271646261215, 0.007068318780511618, -0.012494963593780994, -0.0021508969366550446, -0.006680701393634081, -0.00024511106312274933, 0.04693971574306488, -0.00982724316418171, 0.03395833075046539, -0.010252862237393856, -0.007132921367883682, 0.016249531880021095, 0.01871204376220703, 0.005772460252046585, -0.024093085899949074, -0.043078742921352386, 0.009196414612233639, 0.03702886775135994, -0.025476347655057907, 0.013262597844004631, -0.0022002991754561663, -0.003612062893807888, 0.006015671417117119, -0.004054782912135124, 0.0030895392410457134, 0.057975415140390396, 0.006730103399604559, 0.0012882581213489175, 0.01878804713487625, 0.03344150632619858, -0.018499234691262245, 0.03207344561815262, -0.017115971073508263, 0.018620839342474937, 0.005088429432362318, 0.01866644062101841, -0.017161574214696884, 0.004666610155254602, 0.030310166999697685, -0.02956533245742321, -0.0037944710347801447, 0.01848403364419937, 0.008025961928069592, 0.01947207748889923, 0.01664474979043007, -0.016629550606012344, 0.03116140514612198, -0.01980649307370186, -0.009948848746716976, -0.01177293062210083, -0.012570966966450214, 0.014197439886629581, 0.00959923304617405, 0.009014006704092026, 0.013809822499752045, -0.006771905347704887, 0.003488557180389762, 0.008101965300738811, 0.07600342482328415, -0.006232280749827623, 0.011856534518301487, 0.004632408730685711, 0.01631033606827259, -0.004799616523087025, -0.021098550409078598, 0.002063493011519313, 0.0028235272038728, 0.019532879814505577, 0.014562256634235382, -0.0229378342628479, 0.009044407866895199, 0.0005324989906512201, 0.005027626641094685, -0.0323774591088295, -0.015671906992793083, 0.03222545236349106, -0.020581727847456932, 0.0222082007676363, 0.024321096017956734, 0.008284373208880424, 0.004119385499507189, -0.027376433834433556, -0.02685961127281189, -0.011970539577305317, -0.0039027759339660406, -0.0058902655728161335, 0.0052556367591023445, 0.0065628960728645325, 0.014174639247357845, 0.0274372361600399, 0.016857560724020004, 0.040707435458898544, 0.03560000658035278, 0.027604443952441216, 0.010549275204539299, -0.01772399991750717, 0.027984460815787315, -0.0229378342628479, 0.0033327501732856035, 0.000805636344011873, -0.007224125787615776, 0.001214154763147235, -0.013923827558755875, -0.00572305778041482, 0.003304248908534646, -0.021083351224660873, -0.029139714315533638, -0.014585057273507118, -0.023880276829004288, -0.0043131946586072445, 0.0065742963925004005, -0.01200094074010849, 0.0008260622271336615, 0.029367724433541298, 0.0331374928355217, 0.028911704197525978, 0.03912656381726265, 0.009090010076761246, -0.014577456749975681, -0.016523145139217377, 0.024898722767829895, 0.01588471606373787, -0.042501114308834076, -0.01580871269106865, 0.026844410225749016, -0.00568505609408021, 0.004537404514849186, -0.0353567935526371, 0.002812126884236932, 0.054722465574741364, 0.01810401678085327, 0.0028653291519731283, -0.01099009532481432, 0.04380837455391884, 0.021402565762400627, 0.014638260006904602, 0.03645124286413193, -0.01634073629975319, 0.005707857199013233, 0.022086596116423607, -0.015869515016674995, 0.001435514772310853, -0.02754364162683487, -0.014820667915046215, -0.007170923054218292, -0.012236551381647587, -0.03295508399605751, 0.027908457443118095, 0.030538177117705345, -0.03523518890142441, -0.025309141725301743, 0.024032283574342728, -0.009728438220918179, -0.0011048997985199094, -0.0383969321846962, -0.002128095831722021, -0.004415798932313919, 0.0014820668147876859, 0.004556405358016491, 0.011119301430881023, -0.004275192506611347, 0.026084376499056816, -0.015003076754510403, -0.022527415305376053, -0.018271224573254585, 0.009021606296300888, 0.005742059089243412, 0.011704527772963047, -0.011514519341289997, 0.01714637316763401, 0.026844410225749016, 0.004655209835618734, 0.018088815733790398, 0.02263382077217102, 0.014379848726093769, -0.0033517510164529085, -0.02799966186285019, -0.019715288653969765, 0.017845604568719864, 0.015291889198124409, -0.03432314842939377, -0.044750817120075226, 0.0021698977798223495, 0.004088984336704016, 0.023181045427918434, -0.041771482676267624, 0.0029546332079917192, -0.008443980477750301, -0.008831597864627838, 0.023637065663933754, 0.021539371460676193, -0.005837063305079937, 0.0033821524120867252, 0.02511153183877468, 0.0034999577328562737, -0.02498992718756199, 0.003302348777651787, -0.0005182483582757413, -0.03563040494918823, 0.020779335871338844, -0.015823913738131523, -0.010511273518204689, 0.017617594450712204, -0.014448251575231552, -0.007091119885444641, 0.019228866323828697, 0.024032283574342728, 0.0031085400842130184, -0.014873870648443699, 0.0028805299662053585, 0.016097525134682655, 0.0240778848528862, -0.008124765940010548, -0.015261488035321236, -0.015991121530532837, -0.013475407846271992, -0.02270982414484024, -0.0406770333647728, 0.031830236315727234, 0.005156832281500101, 0.015018276870250702, 0.002530914032831788, 0.02739163488149643, 0.006099274847656488, -0.0052176350727677345, -0.0009315169882029295, -0.0019969900604337454, -0.015611103735864162, 0.011073699221014977, -0.016933564096689224, 0.004210589919239283, 0.005202434491366148, 0.01813441701233387, -0.021417764946818352, -0.00982724316418171, 0.02198019064962864, -0.001787030603736639, -0.013574211858212948, -0.028774896636605263, 0.015101880766451359, 0.039339374750852585, 0.0033631515689194202, -0.021311361342668533, 0.020672932267189026, -0.03462716192007065, -0.011727328412234783, 0.0059776692651212215, 0.010412469506263733, 0.012783776037395, -0.0005144482129253447, -0.008451581001281738, 0.04830777645111084, 0.04748694226145744, 0.018772846087813377, -0.007387532852590084, 0.004138386342674494, -0.026038773357868195, 0.025628356263041496, -0.0008336625760421157, 0.00994124822318554, -0.043230749666690826, -0.006213279906660318, 0.007934757508337498, 0.017389584332704544, 0.0023694068659096956, -0.004830017685890198, 0.034231942147016525, 0.02731563150882721, -0.00781315192580223, 0.016295135021209717, -0.016371138393878937, 0.04152827337384224, -0.03803211450576782, -0.03560000658035278, -0.02076413668692112, 0.05490487441420555, 0.032863881438970566, -0.016401538625359535, -0.0022611019667237997, -0.009363622404634953, 0.032590270042419434, -0.040859442204236984, -0.013521009124815464, 0.024366699159145355, 0.01184893399477005, -0.027650047093629837, -0.02784765511751175, -0.006730103399604559, 0.03017335943877697, -0.005434244871139526, -0.005681256297975779, 0.018909651786088943, -0.04508523270487785, -0.032590270042419434, -0.002755124121904373, -0.03143501654267311, 0.01550469920039177, -0.02781725488603115, 5.067884558229707e-05, 0.03335030376911163, 0.030203761532902718, -0.015003076754510403, 0.018149618059396744, 0.00396357849240303, -0.004028181545436382, 0.01608232408761978, -0.005373442079871893, 0.02187378518283367, -0.003971179015934467, 0.0001925024262163788, 0.01076208520680666, -0.03940017521381378, -0.018377628177404404, 0.022770626470446587, 0.034383948892354965, 0.005297438707202673, 0.01702476665377617, -0.006988515146076679, -0.008481982164084911, 0.013445005752146244, 0.03742408752441406, -0.050648681819438934, 0.007387532852590084, 0.024746716022491455, 0.024716313928365707, -0.04022101312875748, -0.02202579379081726, 0.03113100305199623, 0.028638090938329697, 0.0022991036530584097, 0.019380873069167137, -0.008329975418746471, 0.010830488055944443, 0.012540565803647041, -0.002660119906067848, 0.012373358011245728, -0.019532879814505577, -0.027862856164574623, -0.014493853785097599, -0.006980914622545242, 0.003746968926861882, -0.03350231051445007, -0.00788915529847145, 0.013475407846271992, -0.025810763239860535, -0.0067833056673407555, -0.002063493011519313, 0.020885741338133812, -0.0003500907914713025, 0.040859442204236984, -0.003898975672200322, 0.009652434848248959, 0.008147567510604858, 0.035569604486227036, -0.010047652758657932, -0.004738813731819391, -0.002173698041588068, -0.0051986342296004295, -0.0038951756432652473, 0.02270982414484024, -0.01535269245505333, -0.03523518890142441, 0.0368160605430603, 0.03170862793922424, 0.0004118435608688742, 0.017039967700839043, -0.022390609607100487, -0.02609957568347454, 0.03487037122249603, 0.011324510909616947, -0.017419984564185143, -0.02605397440493107, 0.02228420414030552, 0.0018592338310554624, 0.010929292999207973, 0.007079719100147486, -0.008732793852686882, 0.012798977084457874, 0.03401913493871689, -0.0015694707399234176, -0.0012645069509744644, 0.0037032668478786945, 0.04316994547843933, -0.010321265086531639, 0.035873617976903915, 0.020809737965464592, 0.006897310726344585, -0.02758924290537834, 0.027270030230283737, -0.014288644306361675, 0.051530323922634125, 0.005434244871139526, 0.021858585998415947, -0.006855509243905544, -0.008679591119289398, 0.041619475930929184, 0.022497015073895454, -0.007011316251009703, -0.0032947484869509935, 0.012814178131520748, 0.004613407887518406, 0.012259352952241898, -0.006179078482091427, 0.01859043724834919, 0.0011467017466202378, 0.003171243006363511, -0.0046476093120872974, 0.004621008411049843, 0.018073614686727524, 0.013695817440748215, 0.004697011783719063, 0.004769214894622564, -0.02953493222594261, 0.012753374874591827, -0.0014687662478536367, 0.01600632071495056, -0.0014450151938945055, 0.03280307725071907, 0.021858585998415947, -0.01669035293161869, -0.016067124903202057, -0.02053612656891346, -0.04110265150666237, 0.040099408477544785, 0.02945892885327339, 0.002844428177922964, 0.013262597844004631, 0.009500428102910519, 0.01787600666284561, 0.005730658303946257, 0.004522203933447599, 0.005552050191909075, -0.021736979484558105, -0.04934142529964447, -0.023500259965658188, 0.0015400194097310305, -0.026570796966552734, -0.0033403506968170404, 0.021615374833345413, 0.00952322967350483, 0.035569604486227036, 0.03675525635480881, 0.014417850412428379, 0.009302819147706032, -0.018240822479128838, 0.0018915352411568165, -0.006209480110555887]" -How METER Group Brings a Data-Driven Approach to the Cannabis Production Industry,"and an area where we could bring some of our knowledge to the forefront.We ultimately believe the only survivors in the space are those who can use data-driven approaches to their cultivation to maximize their yield and increase efficiency and consistency between grows.As part of the AROYA platform, we developed a wireless module (called a “nose”) that could be attached to our sensors. Using Bluetooth Low Energy (BLE) for low power consumption and attaching a solar panel to take advantage of the lights in a grow room, the module can run indefinitely without charging.The AROYA nose in its natural habitat (aroya.ioInstagram)The most critical sensor we attach to this nose is called the TEROS 12, the three-pronged sensor pictured below. It can be installed into any growing medium (like rockwool, coconut coir, soil, or mixes like perlite, pumice, or peat moss) and give insights into the temperature, water content (WC), and electrical conductivity (EC) of the medium. Without getting too into the weeds (pardon the pun), WC and EC, in particular, are crucial in helping growers make informed irrigation decisions that will steer the plants into the right state and ultimately maximize their yield potential.The AROYA nose with a connected TEROS 12 sensor (aroya.ioInstagram)We also have an ATMOS 14 sensor for measuring the climate in the rooms anda whole suite of sensorsfor other use cases.An AROYA repeater with an ATMOS 14 sensor for measuring the climate (aroya.ioInstagram)AROYA’s core competency is collecting this data - e.g., EC, WC, soil temp, air temperature, etc. - and serving it to our clients in real-time (or, at least “real-time” for our purposes, as our typical sampling interval is 3 minutes).Growers typically split their growing rooms into irrigation zones. We encourage them to install statistically significant amounts of sensors into each room and its zones, so that AROYA gives them good and actionable feedback on the state of their room. For example, there’s a concept in cultivation called ""crop steering"" that basically says that if you stress the plant in just the right way, you can ""steer"" it into generative or vegetative states at will and drive it to squeeze every last bit of flower. How and when you do this is crucial to doing it properly.Our data allows growers to dial in their irrigation strategy, so they can hit",https://www.timescale.com/blog/how-meter-group-brings-a-data-driven-approach-to-the-cannabis-production-industry/,504,"[0.01867528259754181, 0.0229243915528059, 0.0007860295590944588, 0.04272880777716637, 0.022448968142271042, 0.029149485751986504, -0.00904792919754982, 0.002533123129978776, -0.01099419966340065, 0.010073063895106316, -0.014968453906476498, -0.045403074473142624, 0.008371934294700623, -0.05966581776738167, -0.012361045926809311, -0.021616972982883453, 0.04843390733003616, -0.010154778137803078, -0.03075404465198517, 0.03824198618531227, 0.024826090782880783, 0.04064882546663284, 0.024142667651176453, -0.03244774788618088, 0.0045796786434948444, -0.0232512466609478, -0.009961636736989021, 0.04483850672841072, 0.01358675118535757, -0.020250126719474792, 0.0013092755107209086, -0.03978711739182472, -0.00774051109328866, 0.007012516725808382, -0.02241925336420536, 0.0009749923483468592, 0.04718591645359993, -0.03586486354470253, 0.02750035561621189, 0.0008213149849325418, -0.01665472611784935, -0.011699908412992954, 0.0006193522713147104, 0.027663784101605415, -0.03096204437315464, -0.010622774250805378, -0.0866461768746376, 0.030872901901602745, 0.01548102218657732, -0.005853668320924044, -0.05933896452188492, 0.002265696646645665, -0.006986516993492842, -0.035954006016254425, -0.007183372508734465, -0.02901577390730381, -0.012190190143883228, 0.07256171852350235, -0.014314745552837849, 0.00688623171299696, 0.0028451206162571907, -0.009501068852841854, 0.054525285959243774, -0.0235781017690897, -0.022463824599981308, 0.01665472611784935, -0.030263762921094894, 0.03586486354470253, -0.02057698182761669, 0.030159763991832733, 0.09324269741773605, 0.01928441971540451, 0.027188358828425407, -0.03128889948129654, 0.03479515761137009, -0.0835559144616127, -0.016209015622735023, 0.0191358495503664, -0.004687391687184572, -0.02307296171784401, 0.002926834160462022, -0.013542179949581623, 0.0070162308402359486, -0.0169370099902153, 0.00625480804592371, -0.03919283673167229, -0.029788337647914886, -0.05104874446988106, -0.07274000346660614, 0.024900376796722412, -0.009590210393071175, 0.04460079222917557, -0.005515671335160732, 0.0024421238340437412, -0.013906177133321762, -0.03348773717880249, 0.007799938786774874, -0.04712648689746857, 0.01252447348088026, 0.009671924635767937, -0.010533631779253483, -0.07767253369092941, -0.0402328297495842, 0.0075102271512150764, 0.03223974630236626, 0.007814795710146427, 0.02227068319916725, 0.018288999795913696, 0.009716495871543884, -0.0003298724186606705, -0.045224789530038834, -0.028391778469085693, 0.02238953858613968, -0.022939249873161316, 0.017219293862581253, -0.02252325229346752, -0.03173460811376572, 0.0267129335552454, 0.030293477699160576, -0.02840663492679596, -0.012175333686172962, 0.022760964930057526, 0.020770123228430748, 0.007435942068696022, 0.024320952594280243, -0.0049919611774384975, -0.03128889948129654, -0.043531086295843124, -0.03928197920322418, 0.0027132644318044186, 0.08123822510242462, -0.005861097015440464, 0.03354716673493385, -0.009345069527626038, -0.0267129335552454, -0.027693497017025948, -0.015287880785763264, -0.007023659534752369, 0.0037941131740808487, -0.047631628811359406, -0.010786201804876328, -0.01672901213169098, 0.031199755147099495, -0.028748346492648125, -0.030546046793460846, -0.0172638650983572, -0.04751276969909668, 0.022805536165833473, -0.015176452696323395, 0.028778061270713806, -0.008245649747550488, -0.03420087695121765, -0.05746698006987572, -0.011670194566249847, 0.05179159343242645, 0.031704895198345184, 0.023236390203237534, 0.04581907019019127, -0.00846850499510765, -0.02898605912923813, -0.03943054750561714, 0.0030846900772303343, -0.006979088298976421, -0.02285010740160942, -0.009753637947142124, 0.016105016693472862, -0.03550829365849495, -0.022285539656877518, -0.08510104566812515, 0.024350667372345924, -0.05568413436412811, -0.018140429630875587, -0.0496818982064724, 0.009181642904877663, -0.014597028493881226, -0.047601912170648575, 0.027886638417840004, 0.021141549572348595, 0.014515315182507038, -0.011402768082916737, -0.0036733997985720634, 0.029580339789390564, 0.011566195636987686, -0.023295817896723747, -0.020235270261764526, 0.02880777418613434, -0.010459346696734428, 0.002133840462192893, -0.034735728055238724, 0.005381958093494177, 0.003214689204469323, 0.06620290875434875, 0.048612192273139954, 0.03972768783569336, 0.04097567871212959, -0.058625828474760056, 0.018615854904055595, 0.04783962666988373, -0.029996337369084358, 0.00303640472702682, 0.02173583023250103, 0.017620433121919632, 0.07725653797388077, -0.02732207253575325, -0.004668820649385452, -0.02019069902598858, 0.016194159165024757, -0.02628207951784134, -0.0045091076754033566, -0.004174824338406324, 0.027277501299977303, -0.014961025677621365, 0.031853463500738144, -0.0027931209187954664, -0.03268545866012573, -0.00931535568088293, -0.05122702941298485, 0.03535972163081169, 0.025568943470716476, 0.017278721556067467, -0.03500315546989441, 0.041540246456861496, 0.0685800313949585, 0.02570265531539917, -0.03096204437315464, 0.0009592067799530923, 0.005166531074792147, -0.04926589876413345, 0.03987625986337662, -0.06887717545032501, 0.043560802936553955, 0.03622142970561981, 0.01701129600405693, -0.00946392584592104, 0.013037040829658508, -0.022434109821915627, -0.02201811410486698, -0.02851063385605812, 0.026103796437382698, -0.005029103718698025, 0.004876818973571062, 0.0033855449873954058, -0.005170245189219713, 0.022374682128429413, 0.026594078168272972, -0.0008575289975851774, -0.006098809652030468, -0.06834232062101364, 0.042342524975538254, -0.006756233051419258, 0.02170611545443535, -0.03075404465198517, -5.347949263523333e-05, -0.03625114634633064, -0.004237967077642679, -0.04567049816250801, -0.03277460113167763, 0.010422204621136189, 0.01701129600405693, -0.03571629151701927, -0.01310389768332243, -0.02350381575524807, -0.010050778277218342, 0.004178538918495178, 0.01744215004146099, 0.012546759098768234, -0.025212373584508896, -0.008097079582512379, -0.01863071136176586, -0.02191411517560482, 0.00668566208332777, 0.0018107001669704914, 0.024023812264204025, -0.051167599856853485, -0.011491910554468632, 0.02383067086338997, 0.03538943827152252, 0.030338048934936523, -0.01510216761380434, 0.008691360242664814, 0.014537600800395012, 0.008312506601214409, 0.052504733204841614, -0.013497608713805676, -0.02793120965361595, 0.0063476646319031715, -0.004471965134143829, -0.011499338783323765, 0.025152945891022682, 0.02188440039753914, 0.010065635666251183, -0.015555307269096375, 0.049147043377161026, 0.0065853772684931755, -0.026044366881251335, -0.039846546947956085, -0.002707693027332425, 0.006492520682513714, -0.023696957156062126, -0.02747064270079136, 0.04733448848128319, 0.009270784445106983, -0.0030846900772303343, -0.049979038536548615, -0.0017949144821614027, -0.017367864027619362, -0.03485458344221115, 0.025435229763388634, 0.03960883244872093, 0.0005125674069859087, 0.015614734962582588, 0.06703490763902664, 0.018794137984514236, 0.015629591420292854, -0.011135341599583626, -0.010295919142663479, 0.07018459588289261, -0.01409188937395811, 0.03283403068780899, -0.014389030635356903, -0.024380380287766457, -0.046769920736551285, -0.004442250821739435, -0.05363386496901512, -0.026668362319469452, -0.0534258671104908, 0.011239340528845787, 0.012167904525995255, -0.02282039262354374, -0.030664902180433273, 0.035419151186943054, -0.036964282393455505, 0.02656436339020729, 0.002976976800709963, -0.0057979547418653965, -0.018734710291028023, -0.005745955277234316, -0.044244226068258286, 0.014589600265026093, -0.022181540727615356, -0.021022692322731018, -0.05226701870560646, -0.03937112167477608, 0.039311692118644714, -0.007814795710146427, 0.0017401291988790035, -0.03434944525361061, -0.02501923218369484, -0.0031812607776373625, 0.0339631624519825, 0.008943930268287659, 0.009270784445106983, 0.011870764195919037, -0.020740408450365067, 0.015228452160954475, 0.01680329628288746, 0.051672738045454025, -0.03081347420811653, -0.025970082730054855, 0.004598249681293964, -0.06020067259669304, 0.025331230834126472, 0.03533000871539116, 0.0515538826584816, 0.016699297353625298, 0.02019069902598858, -0.01845242641866207, 0.031051184982061386, 0.035746004432439804, -0.05497099831700325, -0.017323292791843414, -0.049949321895837784, -0.021943828091025352, -0.016877582296729088, -0.03301231190562248, 0.018259285017848015, 0.024172382429242134, 0.0207255519926548, -0.024172382429242134, 0.06852060556411743, 0.04076768085360527, 0.010050778277218342, -0.015406737104058266, -0.025791797786951065, 0.013460465706884861, 0.03951968997716904, -0.011023913510143757, 0.012465045787394047, -0.053693294525146484, -0.01975984498858452, 0.024276381358504295, -0.006277093663811684, -0.005727383773773909, -0.01756100542843342, 0.04638363793492317, 0.0465024933218956, -0.019046708941459656, 0.011855906806886196, 0.018808996304869652, 0.00042644308996386826, -0.02408323995769024, -0.043025948107242584, -0.03521115332841873, 0.032061465084552765, 0.015451307408511639, 0.06382578611373901, -0.005909382365643978, -0.029045486822724342, 0.03470601513981819, 0.007889080792665482, -0.010518775321543217, -0.06964974105358124, 0.05749669298529625, -0.0020725552458316088, 0.0009053500834852457, -0.009701638482511044, -0.03345802426338196, -0.030724331736564636, 0.006005953066051006, -0.004542536102235317, 0.004044825676828623, -0.0057385265827178955, 0.012011906132102013, -0.052534446120262146, -0.011655337177217007, 0.04876076057553291, 0.05298015847802162, -0.04460079222917557, -0.04581907019019127, -0.09876951575279236, -0.01205647736787796, 0.04228309914469719, 0.006310522090643644, -0.018333571031689644, -0.029550626873970032, 0.030486619099974632, 0.00645166402682662, 0.04385794326663017, 0.001370560727082193, 0.013037040829658508, -0.00022900714247953147, 0.012576472945511341, -0.03304202854633331, -0.019908415153622627, -0.04867161810398102, 0.026683220639824867, -0.03553800657391548, 0.00899592973291874, -0.05939839407801628, -0.03167518228292465, -0.025970082730054855, -0.011135341599583626, -0.05324758216738701, 0.05327729880809784, -0.0033595452550798655, 0.010125063359737396, 0.00836450606584549, 0.005935382097959518, 0.02365238592028618, 0.0339631624519825, -0.019655846059322357, -0.013349038548767567, -0.0012702757958322763, -0.016491299495100975, -0.01910613663494587, -0.01943299174308777, -0.024885520339012146, 0.003502544015645981, -0.02681693248450756, -0.014983311295509338, 0.020056985318660736, -0.023295817896723747, -0.037796277552843094, -0.031526610255241394, 0.0008793502929620445, 0.003929683472961187, 0.025836369022727013, -0.023994097486138344, -0.022463824599981308, -0.05363386496901512, -0.01200447790324688, 0.014574742875993252, -0.06846117973327637, 0.03002605028450489, 0.03568657860159874, -0.01445588655769825, 0.0028692632913589478, -0.001094777137041092, -0.06947145611047745, -0.015986161306500435, -0.04564078524708748, 0.007777653634548187, 0.08718103170394897, -0.01834842748939991, 0.02721807360649109, -0.022255826741456985, -0.04258023947477341, 0.0036975424736738205, -0.015258166007697582, 0.01802157424390316, 0.07066001743078232, 0.03788541629910469, -0.023592958226799965, 0.05075160413980484, 0.008052508346736431, 0.01733814924955368, -0.011900478042662144, 0.02919405698776245, 0.0011978477705270052, 0.010600488632917404, -0.047423627227544785, 0.02307296171784401, -0.037796277552843094, -0.016283301636576653, -0.0254500862210989, 0.0008928144234232605, 0.006050524301826954, 0.010927342809736729, -0.001330632483586669, 0.000551567121874541, -0.036429427564144135, -0.04299623519182205, -0.012205047532916069, 0.011075912974774837, 0.042847663164138794, -0.0034765442833304405, -0.016877582296729088, -0.019403276965022087, -0.045908212661743164, 0.010919914580881596, -0.00814907904714346, -0.03512201085686684, -0.02400895580649376, 0.020784979686141014, -0.04662134870886803, 0.017174722626805305, -0.006615091115236282, -0.03598371893167496, -0.05092988908290863, 0.0061693801544606686, 0.010154778137803078, -0.03286374360322952, 0.004148824606090784, -0.014567314647138119, -0.006990231107920408, 0.05289101600646973, -0.04682934656739235, -0.01842271350324154, 0.028822632506489754, 0.040500253438949585, 0.030055765062570572, -0.04448193684220314, -0.011439910158514977, -0.02833234891295433, -0.009077643044292927, 0.03283403068780899, -0.013252467848360538, -0.006618805229663849, 0.0019369848305359483, 0.010489060543477535, -0.01629815809428692, 0.021750686690211296, 0.0333094522356987, -0.019076421856880188, -0.005682812537997961, 0.05280187353491783, 0.011907907202839851, 0.01607530191540718, -0.005107102915644646, -0.012977613136172295, 0.0077553680166602135, -0.03824198618531227, -0.010637630708515644, -0.04367965832352638, 0.027946067973971367, 0.015555307269096375, -0.012301618233323097, -0.012702757492661476, 0.0013557036872953176, -0.0037198280915617943, -0.021037550643086433, -0.011150198057293892, -0.009352498687803745, 0.034914012998342514, -0.02901577390730381, -0.013765035197138786, 0.016342729330062866, 0.018140429630875587, 0.018259285017848015, 0.029907194897532463, 0.008802788332104683, -0.00151355960406363, 0.05919039249420166, 0.010451918467879295, -0.029476340860128403, -0.0069679454900324345, 0.023236390203237534, 0.03806370124220848, -0.010221634060144424, 0.05835840106010437, 0.04311509057879448, -0.0018942708848044276, 0.010206777602434158, 0.011202198453247547, 0.0009332069894298911, -0.004746819846332073, 0.011202198453247547, -0.0029602625872939825, 0.0033725451212376356, -0.003290831344202161, -0.011521624401211739, -0.004795105196535587, 0.0023158390540629625, -0.02022041380405426, -0.06424178183078766, 0.0219883993268013, 0.0005938168033026159, -0.005329958163201809, 0.02396438457071781, -0.010674773715436459, -0.031378041952848434, -0.014515315182507038, 0.0013167039724066854, -0.011120484210550785, -0.05122702941298485, 0.04671049118041992, -0.007265085820108652, -0.026103796437382698, -0.02170611545443535, 0.005118245724588633, 0.0014513457426801324, -0.04195624217391014, 0.017471862956881523, -0.0020558410324156284, -0.03720199316740036, 0.00257769413292408, 0.012011906132102013, 0.023221531882882118, -0.04412537068128586, 0.0009345998405478895, 0.04127281904220581, 0.004278823733329773, -0.0005130317294970155, -0.03978711739182472, 0.005471100099384785, -0.004193395841866732, -0.015763305127620697, 0.023370102047920227, 0.013401038013398647, -0.0133564667776227, 0.004122824873775244, 0.020250126719474792, 0.0035935433115810156, 0.024320952594280243, -0.00921135675162077, 0.008193650282919407, -0.000580352614633739, 0.037291135638952255, 0.01715986616909504, -0.012576472945511341, -0.06655947864055634, -0.03990597277879715, -0.009954207576811314, -0.011439910158514977, -0.01718957908451557, 0.0024124097544699907, 0.02628207951784134, 0.029283199459314346, 0.032061465084552765, 0.06513320654630661, 0.0389254093170166, -0.005641955882310867, -0.0043419660069048405, 0.04602706804871559, 0.0053151012398302555, 0.01200447790324688, 0.006641090847551823, -0.0609138086438179, -0.0276043564081192, 0.01675872690975666, 0.020784979686141014, 0.018437569960951805, -0.027589498087763786, -0.020666124299168587, 0.007614226080477238, -0.013044469058513641, 0.03363630920648575, -0.024930091574788094, 0.00951592531055212, 0.0062213800847530365, -0.00840164814144373, -0.011922763660550117, 0.011127913370728493, 0.001701129600405693, 0.009909636341035366, -0.02206268534064293, -0.010266205295920372, -0.00024142667825799435, 0.008936501108109951, -0.02966948226094246, 0.027158644050359726, 0.00029365840600803494, -0.010489060543477535, 0.015362165868282318, -0.030159763991832733, 0.018303856253623962, 0.015629591420292854, 0.022775821387767792, 0.024736950173974037, 0.005667955614626408, -0.030159763991832733, 0.023132391273975372, -0.011179912835359573, 0.0383608415722847, -0.017962144687771797, -0.00668566208332777, 0.01574844866991043, 3.339929389767349e-05, 0.029312914237380028, -0.0005130317294970155, -0.0338740199804306, 0.04133224859833717, -0.029327770695090294, 0.006399664096534252, 0.022864963859319687, -0.036637429147958755, -0.023563243448734283, -0.001703915186226368, -0.026802076026797295, 0.02591065503656864, 0.013698178343474865, -0.009285641834139824, -0.019046708941459656, -0.0005269601824693382, 0.000785565294791013, 0.034557443112134933, -0.062340084463357925, -0.02181011438369751, -0.03535972163081169, -0.021096978336572647, 0.005705098155885935, -0.00773308239877224, -0.029892338439822197, -0.01574844866991043, 0.01189304981380701, -0.020339269191026688, 0.005003103520721197, 0.015332451090216637, 0.024454666301608086, 0.017278721556067467, -0.01267304364591837, 0.01531759463250637, -0.004382822662591934, -0.020814694464206696, 0.013274753466248512, -0.004917675629258156, -0.0351814404129982, -0.004869390279054642, 0.00793365202844143, 0.038955122232437134, -0.004839676432311535, 0.025672942399978638, 0.005467385984957218, 0.010154778137803078, 0.019224992021918297, 0.057823546230793, -0.0008956001256592572, 2.6710727979661897e-05, 0.0005752454744651914, -0.001970413140952587, -0.03521115332841873, -0.030694616958498955, 0.017783861607313156, -0.011766765266656876, -0.00517395930364728, -0.018363285809755325, 0.003305688500404358, -0.007718225475400686, 0.013467894867062569, 0.05045446380972862, 0.015436450950801373, -0.03850941359996796, -0.007283657323569059, 0.0022638393566012383, 0.0216615442186594, -0.020844409242272377, -0.008594789542257786, -0.005991096142679453, 0.016892438754439354, -0.05324758216738701, -0.02339981682598591, -0.0018032715888693929, -0.0175907202064991, -0.02183982916176319, 0.04867161810398102, 0.04091625288128853, -0.009144499897956848, -0.059606391936540604, -0.00537081528455019, 0.01167762279510498, -0.011803907342255116, -0.021542688831686974, 0.0075585125014185905, 0.006139666307717562, -0.009159357286989689, -0.0020131270866841078, -0.002410552464425564, 0.005032817833125591, -0.016892438754439354, -0.010481632314622402, -0.04367965832352638, 0.012576472945511341, -0.03125918284058571, -0.009456497617065907, 0.007643940392881632, 0.02087412215769291, 0.007105372846126556, -0.04632420837879181, 0.017962144687771797, 0.0017150579951703548, 0.03247746080160141, -0.027336928993463516, -0.006291950587183237, 0.006351378746330738, 0.0057385265827178955, 0.026683220639824867, 0.008683932013809681, -0.0006369950133375823, -0.004397680051624775, 0.009367355145514011, 0.02911977283656597, -0.010622774250805378, -0.006774804089218378, 0.013564465567469597, 0.05265330150723457, 0.0339631624519825, 0.011707336641848087, -0.01571873389184475, -0.006069095339626074, 0.030872901901602745, -0.0263860784471035, -0.011521624401211739, -0.012323903851211071, 0.024900376796722412, 0.013341610319912434, -0.06210236996412277, 0.027307214215397835, 0.03839055821299553, -0.03464658558368683, 0.020279841497540474, -0.0055788136087358, -0.0074990843422710896, 0.037647705525159836, -0.005092245992273092, -0.006303093396127224, -0.020814694464206696, -0.038301415741443634, -0.01548102218657732, 0.018333571031689644, 0.026088938117027283, -0.03316088393330574, -0.011142769828438759, -0.006611377000808716, 0.00843136291950941, 0.015109595842659473, 0.04801791161298752, -0.009508497081696987, -0.011967334896326065, 0.01315589714795351, -0.00042551453225314617, 0.00023144461738411337, -0.009174213744699955, 0.01355703640729189, 0.04501679167151451, 0.016164444386959076, 0.0018877709517255425, -0.04712648689746857, 0.017174722626805305, -0.029788337647914886, 0.01104619912803173, -0.008446219377219677, -0.029298055917024612, 0.009671924635767937, -0.03940083459019661, -0.03399287536740303, -0.014894168823957443, -0.011633051559329033, 0.05191045254468918, 0.0004642820858862251, 0.0320911779999733, -0.023191818967461586, -0.0407973937690258, 0.030263762921094894, -0.01809585839509964, 0.0008788859704509377, 0.06008181720972061, 0.012242189608514309, -0.011937621049582958, 0.028317492455244064, 0.027381500229239464, -0.005229673348367214, 0.014998168684542179, -0.011781621724367142, 0.017546148970723152, -0.030412333086133003, 0.003771827556192875, -0.025925511494278908, 0.009813065640628338, 0.017605576664209366, -0.011417624540627003, 0.014879312366247177, 0.0033261168282479048, -0.0013974891044199467, 0.015027882531285286, 0.014701027423143387, 0.012576472945511341, -0.01031077653169632, 0.024395238608121872, -0.011997048743069172, -0.021602116525173187, -0.009129642508924007, 0.05179159343242645, 0.0003971933329012245, -0.02790149673819542, -0.01100905705243349, 0.030516332015395164, 0.0037903988268226385, -0.01668444089591503, 0.022909535095095634, -0.002085555111989379, 0.02825806476175785, -0.0007312442758120596, -0.0007669940241612494, 0.05143502727150917, 0.022790679708123207, -0.017055867239832878, 0.012598758563399315, -0.021111834794282913, 0.0004926032852381468, -0.008624504320323467, 0.007320799864828587, -0.036280859261751175, 0.003350259503349662, -0.015778161585330963, 0.0075696553103625774, -0.01827414333820343, -0.008535361848771572, -0.03176432475447655, -0.011885621584951878, -0.010407347232103348, 0.0509001724421978, -0.0358351469039917, 0.06941203027963638, -0.024098096415400505, 0.010214205831289291, -0.020354125648736954, -0.02019069902598858, 0.013497608713805676, 0.07155144214630127, -0.013794749043881893, 0.0011792764998972416, 0.03218032047152519, -0.008282792754471302, -0.010489060543477535, -0.01467131357640028, 0.03247746080160141, -0.04786933958530426, -0.012197619304060936, -0.012546759098768234, -0.010667345486581326, -0.015926731750369072, -0.018288999795913696, -0.009203927591443062, -0.0020112700294703245, 0.010763916186988354, -0.015689020976424217, 0.027589498087763786, -0.008936501108109951, -0.020205555483698845, 0.02681693248450756, 0.04971161112189293, 0.04124310612678528, -0.0345277301967144, -0.03381459414958954, -0.017026152461767197, -0.02155754528939724, 0.02383067086338997, -0.009657067246735096, 0.017962144687771797, -0.015807876363396645, 0.023221531882882118, 0.007447084411978722, -0.003716113744303584, 0.028718631714582443, 0.02386038564145565, -0.008557647466659546, 0.012123333290219307, -0.023949526250362396, 0.021096978336572647, 0.021795257925987244, 0.009664495475590229, 0.005939096212387085, 0.014663885347545147, -0.019952986389398575, -0.009397068992257118, -0.037617992609739304, 4.541259113466367e-05, 0.023295817896723747, 0.004802533891052008, 0.011907907202839851, -0.038449984043836594, 0.03363630920648575, -0.0005696741282008588, -0.013334181159734726, -0.0005863882834091783, -0.009196499362587929, -0.021349547430872917, -0.006600234191864729, -0.027010073885321617, -0.0292386282235384, -0.004691106267273426, 0.020933549851179123, 0.0267129335552454, 0.027515213936567307, -0.01781357452273369, -0.010021064430475235, 0.029223771765828133, -0.004769105464220047, 0.0069085173308849335, 0.008661646395921707, -0.007168515585362911, 0.00541538605466485, -0.000415996735682711, -0.0015507021453231573, 0.04825562238693237, 0.003955683205276728, -0.025405514985322952, -0.008594789542257786, -0.004553678445518017, -0.022538108751177788, -0.029788337647914886, -0.03488430008292198, -0.003563829232007265, 0.04581907019019127, 0.03969797492027283, -0.004215681459754705, -0.007918795570731163, -0.03345802426338196, 0.0015395593363791704, 0.01938842050731182, 0.03223974630236626, 0.01715986616909504, -0.016669584438204765, -0.012606186792254448, 0.016847867518663406, -0.00035540794488042593, 0.021616972982883453, -0.03431973233819008, 0.00560481334105134, 0.015807876363396645, -0.030843187123537064, 0.034230589866638184, 0.006726518739014864, 0.009753637947142124, -0.0034988296683877707, -0.018942708149552345, 0.014329602010548115, -0.00041437175241298974, 0.000161105883307755, 0.032744888216257095, -0.00216726865619421, 0.013200468383729458, -0.002521980321034789, -0.0051962449215352535, -0.027559785172343254, -0.0175907202064991, -0.003911112435162067, -0.00926335621625185, -0.003810827387496829, -0.03767741844058037, 0.017546148970723152, -0.005842525511980057, 0.01614958792924881, -0.0036251144483685493, 0.0073987990617752075, -0.015585021115839481, 0.03717228025197983, 0.03437915816903114, 0.02504894696176052, 0.013349038548767567, -0.023206675425171852, -0.011142769828438759, 0.011090770363807678, 0.01362389326095581, -0.023295817896723747, 0.04097567871212959, -0.0032889742869883776, 0.02941691316664219, -0.0029082628898322582, -0.011239340528845787, 0.02646036446094513, 0.014864454977214336, -0.01683301106095314, -0.013705607503652573, -0.035240866243839264, 0.01472331304103136, 0.02772321179509163, -0.016372444108128548, 0.007606797851622105, 0.014426172710955143, -0.002213696949183941, -0.00010196795483352616, -0.020844409242272377, 0.0005297458847053349, 0.019522132351994514, -0.015540449880063534, -0.02851063385605812, 0.02782721072435379, 0.045224789530038834, -0.012242189608514309, 0.044422511011362076, 9.976261208066717e-05, 0.009382212534546852, 0.0033019741531461477, 0.022196397185325623, -0.02188440039753914, 0.008683932013809681, 0.005835097283124924, -0.030263762921094894, -0.007031087763607502, 0.009664495475590229, 0.015555307269096375, 0.02865920402109623, 0.010511346161365509, -0.0062808082439005375, 0.0270397886633873, -0.0027708355337381363, -0.010570774786174297, 0.019804416224360466, -0.006277093663811684, 0.02848092094063759, 0.027188358828425407, 0.004609392490237951, 0.021765543147921562, -0.00343383033759892, -0.0066522336564958096, 0.005393100902438164, 0.0811193659901619, 0.0026798362378031015, 0.0040968251414597034, -0.005277958698570728, -0.004059682600200176, -0.00846850499510765, -0.021527832373976707, -0.0070868018083274364, -0.020502697676420212, 0.0364888571202755, 0.023979241028428078, 0.0008700645994395018, 0.018288999795913696, -0.01867528259754181, 0.006808232516050339, -0.012063905596733093, -0.031170042231678963, 0.011328483000397682, -0.018734710291028023, -0.0150873102247715, 0.004609392490237951, -0.018081001937389374, 0.004672534763813019, -0.0015330594033002853, -0.007874224334955215, 0.001412346144206822, -0.006139666307717562, -0.009092500433325768, 0.018898138776421547, 0.0027596927247941494, -0.0013937747571617365, 0.004419965203851461, 0.021498117595911026, 0.03598371893167496, 0.045937925577163696, 0.04246138036251068, -0.009753637947142124, -0.034914012998342514, 0.00410796795040369, -0.015117025002837181, 0.00946392584592104, -0.00366782839410007, -0.020175842568278313, 0.007476798724383116, -0.03803398832678795, 0.0004972461028955877, 0.019923273473978043, -0.020309556275606155, -0.015911875292658806, 0.005861097015440464, 0.02082955092191696, -0.008572503924369812, -0.001741057843901217, 0.014344459399580956, 0.00538938632234931, 0.00216726865619421, -0.017932431772351265, 0.03485458344221115, 0.01447074394673109, -0.008193650282919407, -0.0007892795256339014, -0.014426172710955143, 0.019551847130060196, 0.02663864940404892, -0.03434944525361061, -0.027530070394277573, 0.020933549851179123, 0.011863335967063904, 0.026118652895092964, -0.038331128656864166, -0.03738027811050415, 0.021795257925987244, 0.007216800469905138, 0.001061348826624453, -0.041035108268260956, 0.039816830307245255, 0.007792510557919741, -0.00539681501686573, 0.00883250217884779, -0.03035290539264679, 0.021869543939828873, 0.020413555204868317, -0.018110714852809906, -0.01625358685851097, -0.00686766067519784, -0.0008510290645062923, -0.007725653704255819, -0.0013399181189015508, -0.032031748443841934, 0.02155754528939724, 0.01784328930079937, -0.038628268986940384, -0.0032295461278408766, 0.017026152461767197, 0.009775923565030098, 0.006199094466865063, -0.009553068317472935, 0.007528798189014196, -0.008624504320323467, -0.009085072204470634, -0.01132105477154255, -0.013304467312991619, -0.018185000866651535, 0.012279332615435123, -0.02317696250975132, -0.03681571036577225, -0.02130497619509697, -0.012465045787394047, 0.00926335621625185, 0.004078253637999296, -0.009872494265437126, 0.002622265135869384, 0.028867201879620552, 0.013274753466248512, 0.0076365116983652115, 0.026519792154431343, 0.011945049278438091, -0.005861097015440464, -0.011699908412992954, -0.01812557317316532, 0.00473196292296052, 0.003491401206701994, -0.009501068852841854, -0.06121094897389412, 0.00926335621625185, -0.015852447599172592, -0.004152538720518351, -0.03431973233819008, 0.003951969090849161, -0.02937234193086624, -0.0026204080786556005, 0.04115396365523338, 0.03743970766663551, -0.0185267124325037, -0.028376920148730278, 0.011922763660550117, -0.005846240092068911, -0.027054645121097565, -0.000604495289735496, -0.018719853833317757, -0.010407347232103348, 0.01658044196665287, -0.022151825949549675, -0.012286760844290257, 0.01531759463250637, -0.030323190614581108, 0.016030732542276382, -0.004772820044308901, 0.03158603981137276, 0.007328228559345007, -0.0002959798148367554, -0.0111576272174716, -0.012249618768692017, 0.04064882546663284, -0.018110714852809906, 0.004553678445518017, -0.02909005805850029, -0.03042719140648842, -0.03283403068780899, -0.013497608713805676, 0.026757504791021347, -0.003350259503349662, 0.005329958163201809, 0.013066754676401615, 0.02206268534064293, 0.0002855334896594286, -0.006648519542068243, -0.0095679247751832, -0.009359926916658878, -0.0005311386776156723, 0.010667345486581326, -0.01463417150080204, -0.024662664160132408, 0.004330823197960854, 0.006644804961979389, -0.023028390482068062, 0.017308436334133148, 0.006031952798366547, -0.01095705758780241, -0.0009684924152679741, -0.03259631618857384, 0.03726142272353172, 0.025940367951989174, 0.0003667828568723053, -0.018586140125989914, 0.014285030774772167, -0.03420087695121765, 0.014597028493881226, 0.03743970766663551, -0.007521369960159063, 0.01557016372680664, -0.0229243915528059, -0.011699908412992954, 0.02772321179509163, 0.028674062341451645, 0.0017401291988790035, -0.0017336292658001184, -0.013579322025179863, -0.02504894696176052, 0.0172638650983572, -0.00931535568088293, 0.016030732542276382, -0.045403074473142624, -0.017709575593471527, -0.004483107943087816, 0.014411316253244877, 0.010771344415843487, -0.004728248808532953, 0.013594179414212704, 0.03699399530887604, -0.009404498152434826, -0.014032461680471897, 0.015778161585330963, -0.0006829589256085455, -0.028822632506489754, -0.0025479800533503294, -0.037825990468263626, 0.017100438475608826, 0.029298055917024612, 0.0015507021453231573, 0.00814907904714346, -0.006132237613201141, 0.02241925336420536, -0.03954940661787987, -0.03114032745361328, 0.010236491449177265, -0.007725653704255819, 0.009909636341035366, -0.013542179949581623, -0.02183982916176319, 0.035597436130046844, 0.003307545557618141, -0.01892785169184208, 0.008453648537397385, -0.045729927718639374, -0.015807876363396645, -0.021319832652807236, -0.023919813334941864, 0.004954818170517683, 0.03717228025197983, 0.0395791195333004, 0.020680980756878853, 0.019418133422732353, -0.006949373986572027, 0.014247888699173927, -0.0027968352660536766, -0.004327109083533287, 0.003730970900505781, -0.016773583367466927, 0.020859265699982643, -0.021438689902424812, 0.002237839624285698, 0.007421084679663181, -0.08349648863077164, 0.002143125981092453, 0.00236598146148026, 0.022612394765019417, 0.005422814749181271, 0.01104619912803173, -0.011997048743069172, -0.011343339458107948, 0.03479515761137009, 0.04311509057879448, -0.027084359899163246, 0.0003449615905992687, 0.023711813613772392, 0.005092245992273092, -0.02112669125199318, -0.02429123781621456, -0.0027039789129048586, 0.03571629151701927, 0.010786201804876328, 0.0263860784471035, -0.01483474113047123, 0.016743868589401245, 0.007822224870324135, 0.013505036942660809, 0.018823852762579918, -0.026683220639824867, -0.03818256035447121, -0.015258166007697582, -0.032210033386945724, 0.01077877264469862, -0.04109453409910202, -0.01530273724347353, 0.005081103183329105, -0.016238730400800705, 0.016639869660139084, -0.0041636815294623375, 0.028778061270713806, -0.003305688500404358, 0.018140429630875587, -0.0010334919206798077, 0.019551847130060196, 0.0007493512821383774, 0.025747226551175117, 0.0008668146329000592, -0.011529052630066872, 0.0150873102247715, -0.009939351119101048, 0.00583881139755249, 0.011484481394290924, -0.02436552383005619, -0.014730742201209068, 0.028896916657686234, 0.03173460811376572, -0.016461584717035294, 0.056902412325143814, -0.026430649682879448, -0.036607712507247925, 0.016847867518663406, -0.0022099826019257307, -0.022478681057691574, -0.030872901901602745, 0.028882060199975967, -0.02825806476175785, 0.01824442856013775, 0.008319934830069542, -0.030516332015395164, 0.020027272403240204, 0.0052965302020311356, -0.01019934844225645, -0.009850208647549152, 0.02234496735036373, 0.014396458864212036, -0.010548489168286324, 0.007777653634548187, 0.0076365116983652115, -0.007621654774993658, -0.006269665434956551, 0.02183982916176319, -0.014693599194288254, 0.0458487831056118, 0.007528798189014196, 0.014322173781692982, -0.009077643044292927, 0.005994810257107019, 0.018898138776421547, 0.01425531692802906, -0.01574844866991043, 0.03268545866012573, -0.009976493194699287, 0.00994677934795618, -0.01326732523739338, -0.015347308479249477, 0.021691258996725082, 0.01273990049958229, -0.005667955614626408, -0.02916434407234192, 0.008238221518695354, 0.022805536165833473, 0.019373562186956406, 0.007970795035362244, 0.016372444108128548, -0.0009870637441053987, 0.015146738849580288, -0.019522132351994514, 0.014500457793474197, 0.008914216421544552, 0.014730742201209068, -0.009055357426404953, -0.008758217096328735, -0.014500457793474197, -0.0021876972168684006, -0.02987748011946678, 0.00888450164347887, 0.030486619099974632, -0.03437915816903114, 0.004995675291866064, 0.00516281696036458, 0.008119365200400352, 0.008275363594293594, 0.008906787261366844, 0.012784471735358238, -0.016417015343904495, -0.04757219925522804, -0.014693599194288254, -0.002989976666867733, -0.016773583367466927, -0.02252325229346752, 0.02342953160405159, -0.01458217203617096, 0.012851327657699585, 0.04281795024871826, 0.03316088393330574, -0.013207896612584591, -0.026579219847917557, 0.00301040499471128, -0.00621023727580905]" -How METER Group Brings a Data-Driven Approach to the Cannabis Production Industry,"their target ""dryback"" for the plant (this is more or less the difference between the water content at the end of irrigation until the next irrigation event). Optimizing dryback is one of the biggest factors in making crop steering work, and it's basically impossible to do well without good data. (We provide lots of other data that helps growers make decisions, but this is one of the most important ones.)Graph showing electrical conductivity (EC) and water content (WC) data related to a room in AROYA.This can be even more important when multiple cultivars (“strains”) of cannabis are grown in the same room, as the differences between two cultivars regarding their needs and expectations can be pretty dramatic. For those unfamiliar with the field, an example might be that different cultivars ""drink"" water differently, and thus must be irrigated differently to achieve maximum yields. There are also ""stretchy"" cultivars that grow taller faster than ""stocky"" ones, and this also affects how they interact with the environment. AROYA not only helps in terms of sensing, but in documenting and helping understand these differences to improve future runs.The most important thing from collecting all this data is making it accessible to users via graphs and visualizations in an intuitive, reliable, and accurate way, so they can make informed decisions about their cultivation.We also have alerts and other logic that we apply to incoming data. These visualizations and business logic can happen at the sensor level, at the zone level, at the room level, or sometimes even at the facility level.A typical use case with AROYA might be that a user logs in to their dashboard to view sensor data for a room. Initially, they view charts aggregated to the zone level, but they may decide to dig deeper into a particular zone and view the individual sensors that make up that zone. Or, vice versa, they may want to pull out and view data averaged all the way up to the room. So, as we designed our solution, we needed to ensure we could get to (and provide) the data at the right aggregation level quickly.Choosing and using TimescaleDBThe initial solutionDuring the days of our closed alpha and beta of AROYA with early trial accounts (late 2017 through our official launch December 2019), the amount of data",https://www.timescale.com/blog/how-meter-group-brings-a-data-driven-approach-to-the-cannabis-production-industry/,470,"[0.007557332515716553, 0.022263702005147934, 0.029705479741096497, 0.01754903607070446, 0.052724145352840424, 0.032447997480630875, 0.0006755184731446207, -0.039905183017253876, -0.019397923722863197, 0.025745775550603867, -0.008266073651611805, -0.022510221228003502, -0.0032336292788386345, -0.044219255447387695, 0.023419257253408432, -0.02241777628660202, 0.03599170222878456, -0.014791109599173069, -0.05901036411523819, 0.01506073959171772, 0.01856592483818531, 0.028673183172941208, 0.03002903424203396, -0.024405330419540405, -0.01676325872540474, -0.020306961610913277, 0.0012248888378962874, 0.043325625360012054, 0.007014221511781216, -0.04674607142806053, -0.006887110415846109, -0.04021333158016205, -0.011640295386314392, -0.039011552929878235, -0.007965628989040852, -0.0130192581564188, 0.04249362647533417, -0.03235555440187454, 0.016824888065457344, -0.0019336295081302524, -0.00772681413218379, 0.022587256506085396, -0.01982933096587658, 0.022833775728940964, -0.0014386666007339954, -0.03247881308197975, -0.07863940298557281, 0.03728592395782471, 0.010061035864055157, 0.020306961610913277, -0.09404680877923965, 0.004687703214585781, -0.005184592213481665, -0.05503525584936142, 0.005007407162338495, -0.009953184053301811, 0.00405214773491025, 0.0581783652305603, -0.032447997480630875, -0.022463997825980186, -0.008474073372781277, -0.0010303702438250184, 0.022001776844263077, -0.017471998929977417, -0.018596738576889038, 0.015130072832107544, -0.019567405804991722, 0.0251602940261364, -0.004841777496039867, 0.02537599764764309, 0.06927169859409332, 0.01810370199382305, 0.026546960696578026, -0.013974517583847046, 0.031215405091643333, -0.07900917530059814, -0.022618072107434273, -0.0004759443982038647, -0.019105182960629463, -0.04098369926214218, 0.008967109955847263, -0.02004503458738327, -0.04742399603128433, -0.005604444071650505, 0.04372621700167656, -0.06575880944728851, -0.013766516931355, -0.018288591876626015, -0.027224887162446976, 0.02141629531979561, -0.009390814229846, 0.041969772428274155, 0.004445036873221397, 0.007337776944041252, 0.015045331791043282, 0.011632591485977173, 0.005477332975715399, -0.030753182247281075, -0.020753776654601097, 0.004965036641806364, -0.009329183958470821, -0.04643792286515236, -0.04135347902774811, -0.006702221464365721, 0.03904236853122711, 0.016593776643276215, 0.012726517394185066, 0.005916444119066, -0.0061090365052223206, -0.00859733298420906, -0.04945777356624603, -0.02006044238805771, 0.008635851554572582, -0.0022976293694227934, 0.02321896143257618, -0.02580740489065647, -0.046499550342559814, -0.004834073595702648, 0.022463997825980186, -0.027563849464058876, -0.019505776464939117, 0.04166162759065628, 0.012487703002989292, 0.010053332895040512, 0.050104886293411255, 0.0004184073768556118, -0.03642310947179794, -0.04215466231107712, -0.04539021849632263, -0.0013279258273541927, 0.06317036598920822, 0.00889777671545744, 0.03565273806452751, -0.02614636905491352, -0.034728292375802994, -0.015345776453614235, -0.00787703599780798, 0.004980443976819515, -0.0066367401741445065, -0.028041478246450424, -0.0019191850442439318, 0.0035783699713647366, 0.05947258695960045, -0.022386960685253143, -0.0341736264526844, 0.0026885922998189926, -0.049303699284791946, 0.04788621887564659, -0.04563673585653305, 0.01688651740550995, -0.0362074039876461, -0.030059849843382835, -0.035837627947330475, -0.030260145664215088, 0.037902217358350754, 0.03454340621829033, 0.03235555440187454, 0.021123554557561874, 0.02266429364681244, -0.031307850033044815, -0.05941095948219299, 0.01482962816953659, 0.005727703217417002, -0.009829925373196602, -0.03469747677445412, 0.0008599258726462722, -0.05965747684240341, -0.027348145842552185, -0.07438695430755615, 0.005793184507638216, -0.06797747313976288, -0.021709036082029343, -0.038888294249773026, -0.012079406529664993, 0.036638811230659485, -0.02412799745798111, 0.015615406446158886, 0.013666369020938873, 0.041384294629096985, -0.008489481173455715, 0.0004735369875561446, 0.01754903607070446, 0.004776295740157366, -0.04813273623585701, -0.016008295118808746, 0.019629035145044327, -0.01663999818265438, 0.004483554977923632, -0.04009006917476654, -0.006598221603780985, 0.012241183780133724, 0.05697658658027649, 0.05552829056978226, 0.01734873838722706, 0.047516439110040665, -0.06092088297009468, 0.031554367393255234, 0.051029328256845474, -0.009244443848729134, -0.008890073746442795, 0.017872590571641922, 0.029135404154658318, 0.09497125446796417, -0.018072888255119324, -0.008974813856184483, -0.007884739898145199, 0.010523258708417416, 0.005797036457806826, -0.01403614692389965, -0.0097991107031703, 0.014814221300184727, 0.0051075550727546215, -0.010615702718496323, 0.026901330798864365, -0.03645392134785652, -0.029951997101306915, -0.06002725288271904, 0.02175525762140751, 0.0073955547995865345, -0.0007554444018751383, -0.00335496268235147, 0.05007407069206238, 0.024050960317254066, 0.01359703578054905, -0.01643970236182213, 0.030075257644057274, 0.0047724442556500435, -0.05904117971658707, 0.04073718190193176, -0.05444977432489395, 0.05096770077943802, 0.026300441473722458, 0.008504888042807579, -0.000953333277720958, 0.013550813309848309, -0.034019552171230316, -0.011540147475898266, -0.014806517399847507, 0.030290961265563965, -0.007511110510677099, -0.001127629540860653, -0.02546844258904457, -0.045821625739336014, 0.017025183886289597, 0.013034665957093239, 0.017579849809408188, -0.026639405637979507, -0.07068917900323868, 0.03614577651023865, 0.013404442928731441, 0.0034974811132997274, -0.02625421993434429, -0.00951407290995121, -0.05820918083190918, -0.037316735833883286, -0.06162962317466736, -0.01594666577875614, 0.012895998544991016, 0.02491377480328083, -0.010654221288859844, -0.009383110329508781, -0.03509807214140892, -0.005053629167377949, 0.016223998740315437, 0.01160948071628809, 0.02026073820888996, -0.0216319989413023, -0.02455940470099449, -0.039473775774240494, -0.0195982214063406, 0.036176588386297226, 0.024497775360941887, 0.075126513838768, -0.06129066273570061, -0.03235555440187454, 0.03033718280494213, 0.012680294923484325, 0.02455940470099449, -0.03207821771502495, 0.0030679998453706503, -0.0059549626894295216, -0.0059896293096244335, 0.029042961075901985, -0.004691555164754391, -0.011239702813327312, 0.028349626809358597, 0.012788146734237671, -0.009105777367949486, 0.03864177316427231, -0.004622221924364567, -0.014536887407302856, -0.023018665611743927, 0.042062219232320786, -0.03036799654364586, -0.0027559997979551554, -0.0277333315461874, -0.017471998929977417, 0.02138547971844673, -0.04357214272022247, -0.013758813962340355, 0.01958281360566616, 0.02309570088982582, -0.01031525805592537, -0.019213035702705383, 0.024513183161616325, -0.0004735369875561446, -0.0022128887940198183, 0.03067614510655403, 0.019382517784833908, 0.013774220831692219, 0.011054813861846924, 0.024821331724524498, 0.027656294405460358, 0.011570962145924568, -0.03728592395782471, -0.0010919999331235886, 0.1162334755063057, -0.023927701637148857, 0.02423585020005703, -0.009306073188781738, -0.017610665410757065, -0.05811673775315285, -0.0321398489177227, -0.02989036776125431, -0.026701034978032112, -0.045020442456007004, -0.00285807391628623, 0.014290369115769863, -0.019906368106603622, -0.02402014657855034, 0.02546844258904457, -0.012564740143716335, 0.03386547788977623, 0.01182518433779478, -0.03666962683200836, -0.027147850021719933, -0.0071028140373528, -0.04711584746837616, -0.0019644442945718765, 0.017487406730651855, -0.03081481158733368, -0.0663134753704071, -0.029859552159905434, 0.0364847369492054, 0.01284977700561285, 0.008196740411221981, -0.03303347900509834, -0.011016295291483402, -0.010769776999950409, 0.0012094813864678144, -0.024944590404629707, -0.013142517767846584, -0.007957925088703632, 0.009999406524002552, 0.007045036647468805, 0.026901330798864365, 0.0344509594142437, -0.018288591876626015, -0.024728886783123016, -0.0019105183891952038, -0.021462516859173775, 0.0022398517467081547, 0.037748146802186966, 0.03331081196665764, 0.008443258702754974, 0.030537478625774384, -0.03771733120083809, 0.027086220681667328, 0.0547887347638607, -0.05257007107138634, 0.01867377571761608, -0.0391964428126812, -0.0341736264526844, -0.0385185144841671, -0.033464886248111725, 0.0005127777112647891, 0.03036799654364586, 0.048502516001462936, -0.0023284442722797394, 0.0939851775765419, 0.019629035145044327, 0.023157332092523575, -0.012741925194859505, -0.051583994179964066, 0.04452740401029587, 0.03814873844385147, -0.03235555440187454, 0.04452740401029587, -0.04973510652780533, -7.643517892574891e-05, 0.022001776844263077, 0.012610961683094501, -0.019166812300682068, -0.0395970344543457, 0.010631110519170761, 0.027563849464058876, 0.00671377731487155, 0.012811258435249329, 0.054634660482406616, -0.0031642960384488106, -0.019336294382810593, -0.032232291996479034, -0.050228144973516464, 0.003304888727143407, 0.015715554356575012, 0.04406518116593361, -0.019336294382810593, -0.02365036867558956, 0.0067561473697423935, 0.006070517934858799, -0.010392295196652412, -0.023727405816316605, 0.04995081201195717, -0.016131553798913956, 0.032232291996479034, -0.024605628103017807, -0.030383404344320297, 0.010869924910366535, 7.354628905886784e-05, 0.044465772807598114, -0.015391998924314976, 0.016794072464108467, -0.015045331791043282, -0.028919700533151627, -0.017240887507796288, 0.07993362098932266, 0.05503525584936142, -0.01597747951745987, -0.06147554889321327, -0.0958956927061081, -0.009860740043222904, 0.04452740401029587, 0.029951997101306915, -0.0025711108464747667, -0.03614577651023865, 0.0489647351205349, 0.02070755325257778, -0.011663406156003475, 0.01813451759517193, 0.017287109047174454, -0.006921777036041021, 0.007079703267663717, -0.019274665042757988, -0.011062517762184143, -0.05087525397539139, 0.051676440984010696, -0.031323257833719254, 0.0077306660823524, -0.056237030774354935, -0.036299847066402435, 0.004957332741469145, 0.007850073277950287, -0.07198340445756912, 0.031107552349567413, -0.00855111051350832, 0.017302516847848892, 0.045451849699020386, -0.01677866466343403, 0.0007607406587339938, 0.008435554802417755, -0.020584294572472572, 0.0013009628746658564, -0.010800591669976711, -0.01018429547548294, -0.01731792464852333, -0.03451259061694145, 0.00407911092042923, 0.012919110246002674, -0.002301481319591403, -0.006717629265040159, 0.006151407025754452, -0.006632888223975897, -0.007826962508261204, -0.019644442945718765, -0.013119406066834927, 0.027455998584628105, 0.03984355181455612, -0.03361896052956581, -0.005642962642014027, -0.04674607142806053, -0.005481184925884008, 0.0009374443907290697, -0.06215347722172737, 0.04329480975866318, 0.0771602913737297, 0.04227792099118233, -0.019752293825149536, -0.01935170218348503, -0.041045330464839935, 0.017148442566394806, -0.04495881125330925, -0.0029331848490983248, 0.06335525214672089, -0.020229924470186234, 0.020568886771798134, -0.004645333159714937, -0.04492799565196037, -0.02887347899377346, 0.006082073785364628, 0.008566517382860184, 0.055898070335388184, 0.012934517115354538, -0.014113184064626694, 0.03568355366587639, -0.024728886783123016, 0.034019552171230316, -0.040583107620477676, 0.006490369793027639, 0.01788799837231636, -0.008936295285820961, -0.02468266524374485, 0.02445155382156372, -0.023665776476264, -0.007815406657755375, -0.04600651562213898, 0.02368118241429329, 0.003320296062156558, -5.980902187729953e-06, -0.015345776453614235, -0.0101380730047822, -0.03796384856104851, -0.060859255492687225, -0.013173332437872887, -0.006078221835196018, -0.006001184694468975, -0.0035745182540267706, -0.02198636904358864, -0.028395850211381912, -0.03666962683200836, -0.0016524443635717034, 0.009383110329508781, -0.03802547976374626, -0.011393777094781399, 0.025560887530446053, -0.050228144973516464, -0.0010091850999742746, -0.007337776944041252, -0.019166812300682068, -0.02063051611185074, 0.03217066451907158, 0.0074302214197814465, -0.000371944421203807, 0.005280888639390469, 0.0017468146979808807, 0.0013799257576465607, 0.02252562716603279, -0.023989330977201462, -0.011894517578184605, 0.02289540506899357, 0.01901273988187313, 0.01697896234691143, -0.031076738610863686, 2.1651618226314895e-05, -0.03636147826910019, -0.016578368842601776, 0.04622221738100052, -0.03192414715886116, 0.018273184075951576, -0.01576177589595318, -0.007368592079728842, -0.0025884441565722227, 0.02751762792468071, 0.034605033695697784, -0.02999822050333023, -0.0013799257576465607, 0.044095996767282486, 0.03442014381289482, -0.01665540598332882, -0.016855701804161072, -0.004706962499767542, -0.002074222080409527, -0.013943702913820744, -0.0016572590684518218, -0.011617184616625309, 0.014298073016107082, 0.02241777628660202, -0.02104651741683483, 0.009930073283612728, -0.01767229475080967, 0.009498666040599346, -0.029274072498083115, -0.020753776654601097, -0.024282071739435196, 0.019736887887120247, -0.047608885914087296, -0.007911702618002892, 0.020984886214137077, 0.01677866466343403, -0.012603257782757282, 0.0055312588810920715, -0.012141035869717598, -0.011517035774886608, 0.028796441853046417, 0.02593066543340683, -0.006837036460638046, 0.002384296152740717, 0.011039406061172485, 0.028365034610033035, -0.0256995540112257, 0.025221923366189003, 0.051245033740997314, 3.1386571208713576e-05, 0.0070334807969629765, 0.011740443296730518, 0.00611674040555954, 0.026454515755176544, -0.0053155552595853806, 0.016239406540989876, 0.028611553832888603, -0.004753184970468283, 0.010161184705793858, -0.02184770256280899, -0.006424888502806425, -0.02534518390893936, -0.037409182637929916, 0.02332681231200695, -0.04831762611865997, -0.01466014701873064, 0.005527406930923462, -0.03691614419221878, -0.017718516290187836, 0.011355258524417877, 0.0005368518177419901, -0.01697896234691143, -0.012456887401640415, 0.04825599491596222, -0.016393480822443962, -0.01562310941517353, -0.04572918266057968, -0.0019875552970916033, -0.023295998573303223, -0.01822696067392826, 0.017718516290187836, 0.01606992445886135, -0.022494813427329063, 0.004757036454975605, 0.011933036148548126, 0.018488887697458267, -0.01779555343091488, -0.0050690365023911, 0.032571256160736084, 0.021431701257824898, -0.020137479528784752, -0.03229392319917679, 0.00671377731487155, -0.047608885914087296, -0.0019384443294256926, 0.01575407199561596, 0.0006480740266852081, -0.010284443385899067, -0.003075703512877226, 0.002646222012117505, 0.039935994893312454, 0.010646517388522625, 0.0010005184449255466, -0.007387851364910603, -0.002530666533857584, 0.027918219566345215, 0.0014425184344872832, 0.02050725743174553, -0.04616058990359306, -0.025853628292679787, -0.01745659112930298, -0.01947496086359024, -0.03340325504541397, 0.0047108144499361515, 0.04847170040011406, 0.01821155473589897, 0.014529184438288212, 0.05654517933726311, 0.0254992563277483, 0.023696590214967728, -0.015807999297976494, 0.05756206810474396, 0.0018113332334905863, -0.011139554902911186, -0.0014559999108314514, -0.037902217358350754, -0.0068794069811701775, 0.05460384860634804, 0.01722547970712185, 0.014852739870548248, -0.021231405436992645, 0.0051691848784685135, 0.0013202221598476171, -0.018997332081198692, 0.03771733120083809, 0.00791940651834011, 0.028580738231539726, 0.016362665221095085, -0.004375703167170286, 0.0036592590622603893, 0.020183702930808067, 0.013620146550238132, 0.0012354813516139984, 0.004013629164546728, -0.003220147918909788, 0.02935110777616501, -0.004679999779909849, -0.036854516714811325, 0.02334222011268139, 0.008404740132391453, -0.008227555081248283, -0.0008796665933914483, -0.011909925378859043, 0.009722073562443256, 0.002946666441857815, -0.009383110329508781, 0.03497481346130371, -0.024759702384471893, -0.02150873839855194, 0.034266069531440735, -0.040274959057569504, 0.039566218852996826, 0.004714666400104761, 0.008019554428756237, 0.0005045925499871373, 0.027702515944838524, 0.022263702005147934, -0.0012951850658282638, -0.04107614606618881, 0.011116443201899529, -0.048071108758449554, -0.026531552895903587, 0.023958517238497734, -0.015130072832107544, -0.018411850556731224, 0.01261866558343172, -0.014791109599173069, 0.001529185101389885, 0.035837627947330475, 0.0016890368424355984, -0.005785481072962284, -0.009529480710625648, 0.0034974811132997274, 0.01597747951745987, -0.050443846732378006, -0.007746073417365551, -0.04702340438961983, 0.008612739853560925, 0.008011851459741592, -0.0032162959687411785, -0.03161599859595299, -0.0167478509247303, 0.0049611846916377544, -0.027363553643226624, 0.018719999119639397, 0.027440590783953667, 0.01721007190644741, 0.010785183869302273, -0.0009364814031869173, 0.016116145998239517, -0.0288888867944479, -0.015777183696627617, 0.004587555304169655, -0.010600295849144459, -0.017271703109145164, 0.0038383700884878635, 0.009629628621041775, 0.026023108512163162, -0.01324266567826271, 0.02354251593351364, -0.014860442839562893, 0.031554367393255234, -0.0022167405113577843, 0.04369540512561798, 0.004140740260481834, -0.011370665393769741, 0.008420147001743317, -0.03546784818172455, -0.054757922887802124, -0.024143405258655548, 0.025453034788370132, -0.01244918443262577, 0.016809480264782906, -0.005735407117754221, 0.013674072921276093, -0.004606814589351416, 0.00996088795363903, 0.0507211796939373, 0.02446696162223816, -0.02696296013891697, -0.020769182592630386, 0.010607998818159103, 0.020106665790081024, -0.00974518433213234, 0.015422813594341278, -0.013065480627119541, 0.008142814040184021, -0.0604894757270813, -0.029381923377513885, -0.009714369662106037, -0.016223998740315437, -0.004429629072546959, 0.04736236482858658, 0.0015648147091269493, -0.006270814221352339, -0.09238280355930328, -0.013489183969795704, 0.029751701280474663, -0.007349332794547081, -0.018273184075951576, -0.0010409628739580512, 0.02377362735569477, -0.0030063700396567583, 0.021801479160785675, -0.018981924280524254, -0.021138960495591164, -0.028118515387177467, -0.034142810851335526, -0.04656118154525757, 0.0014579257695004344, -0.03217066451907158, 0.011755851097404957, 0.01936710998415947, 0.045451849699020386, 0.012202665209770203, -0.03836444020271301, 0.012017777189612389, -0.026701034978032112, 0.03364977613091469, -0.013396739959716797, -0.0174257755279541, 0.0034917034208774567, -7.41406165616354e-06, 0.036299847066402435, 0.010970072820782661, 0.031307850033044815, 0.004818666260689497, 0.032447997480630875, 0.020877035334706306, 0.0053232586942613125, 0.0024324441328644753, 0.00871288776397705, 0.03207821771502495, 0.023804442957043648, -0.020014220848679543, -0.010561777278780937, -0.02818014658987522, 0.04465066269040108, -0.04782458767294884, 0.030614515766501427, -0.014621628448367119, 0.01961362734436989, 0.009044147096574306, -0.06267733126878738, -0.006860147695988417, 0.020461035892367363, -0.024821331724524498, 0.024050960317254066, -0.008566517382860184, -0.01115496177226305, 0.05605214461684227, -0.027271108701825142, -0.020522665232419968, -0.034820739179849625, -0.02818014658987522, -0.029274072498083115, 0.03420444205403328, 0.02152414619922638, -0.039134811609983444, 0.019521184265613556, -0.010292147286236286, -0.01606992445886135, 0.03207821771502495, 0.026562368497252464, 0.00427170330658555, -0.021539553999900818, 0.022587256506085396, -0.0364847369492054, 0.003632296109572053, 0.00974518433213234, 0.03623821958899498, 0.0277333315461874, 0.00589333288371563, 0.01719466596841812, -0.03275614604353905, 0.02252562716603279, -0.00444888835772872, -0.0256995540112257, -0.010122666135430336, -0.013751110062003136, -0.0008685925276950002, -0.01585422083735466, -0.02061511017382145, -0.0146139245480299, -0.012271999381482601, 0.04372621700167656, 0.015515257604420185, 0.012780443765223026, -0.01630103588104248, 0.000883518427144736, 0.02150873839855194, 0.01890488713979721, -0.008705184794962406, 0.06033540144562721, 0.01982933096587658, 0.0024208887480199337, 0.002449777675792575, 0.04086044058203697, 0.017826369032263756, 0.0024786663707345724, -0.02309570088982582, 0.019906368106603622, -0.04452740401029587, 0.009490962140262127, -0.014413628727197647, -0.0071798511780798435, 0.01949036866426468, -0.002043407177552581, -0.0013914813753217459, 0.01177125796675682, 0.004741629119962454, 0.012410665862262249, 0.01733333244919777, 0.022725924849510193, -0.01879703626036644, 0.014798813499510288, -0.022494813427329063, -0.027117034420371056, -0.010785183869302273, 0.0243437010794878, 0.009005628526210785, 0.01347377710044384, -0.014274961315095425, 0.028488293290138245, 0.022802961990237236, -0.015931257978081703, 0.03750162571668625, -0.009067258797585964, 0.05075199529528618, -0.01041540689766407, -0.010685035958886147, 0.03666962683200836, 0.01890488713979721, -0.010168887674808502, 0.005874073598533869, -0.02377362735569477, -0.005022814497351646, -0.0216319989413023, -0.0063863699324429035, -0.015499850735068321, 0.008851555176079273, 0.0035591109190136194, 0.00934459175914526, -0.03306429460644722, 0.03158518299460411, -0.013905184343457222, -0.01845807209610939, -0.03454340621829033, 0.05223110690712929, -0.008705184794962406, 0.0885617733001709, -0.04825599491596222, 0.00020450924057513475, 0.012926814146339893, -0.01799585111439228, 0.017857182770967484, 0.05867140367627144, -0.013065480627119541, -0.014652443118393421, 0.04465066269040108, -0.022279109805822372, -0.016285628080368042, 0.009021036326885223, 0.009976295754313469, -0.03817955404520035, 4.6011569793336093e-05, 0.0009682591771706939, 0.0008493332425132394, -0.012903702445328236, 0.014652443118393421, 0.034605033695697784, 0.0012508888030424714, -0.013789628632366657, 0.0012142962077632546, 0.0297671090811491, -0.02853451669216156, -0.0025730368215590715, 0.032571256160736084, 0.05346369743347168, 0.049642663449048996, -0.024436146020889282, -0.031107552349567413, -0.012295110151171684, -0.02287999726831913, 0.004730073735117912, -0.024944590404629707, 0.026439109817147255, -0.007453332655131817, 0.01387436967343092, -0.009537184610962868, -0.001891259104013443, 0.01036148052662611, 0.0288888867944479, -0.0006302592228166759, 0.02130844257771969, 0.0010139999212697148, 0.02422044239938259, 0.033341627568006516, 0.03546784818172455, 0.01867377571761608, 0.047608885914087296, -0.01594666577875614, -0.000367611093679443, -0.032417181879282, 0.002565333154052496, 0.024775108322501183, 0.004375703167170286, -0.008759110234677792, -0.0007063332595862448, 0.005076740402728319, 0.014251850545406342, -0.007264592219144106, 0.008181332610547543, -0.00671377731487155, -0.05753125622868538, -0.01913599856197834, -0.02625421993434429, -0.020337775349617004, 0.000591259216889739, 0.00304488861002028, 0.012264295481145382, 0.014683257788419724, -0.017718516290187836, -0.006363258697092533, 0.02717866376042366, -0.003435851540416479, 0.00029153699870221317, 0.03589925542473793, -0.005184592213481665, -0.015338072553277016, 0.016254814341664314, 0.007965628989040852, 0.04757807031273842, 0.005400295834988356, -0.013450665399432182, -0.011239702813327312, -0.015130072832107544, -0.03104592300951481, -0.010685035958886147, -0.04431169852614403, -0.00871288776397705, 0.030660737305879593, 0.00889777671545744, 0.005858666263520718, -0.00529629597440362, -0.03565273806452751, 0.007461036555469036, 0.02716325782239437, 0.01935170218348503, 0.00633629597723484, 0.006471110507845879, 0.004406518302857876, 0.013396739959716797, -0.004156147595494986, 0.015992887318134308, -0.01949036866426468, 0.020676739513874054, -0.0009687406709417701, -0.012248887680470943, 0.018858665600419044, 0.013727999292314053, 0.0018864442827180028, -0.011701924726366997, -0.02639288641512394, -0.005662221927195787, -0.0216319989413023, 0.011540147475898266, 0.04532858729362488, 0.011986961588263512, 0.008050370030105114, 0.00042587032658047974, -0.02842666395008564, -0.016008295118808746, -0.002763703465461731, -0.003383851610124111, -0.027810368686914444, 0.014729480259120464, -0.018381034955382347, 0.0006394073716364801, 0.013805035501718521, 0.004044444300234318, -0.015299553982913494, -0.007842369377613068, -0.01606992445886135, -0.013034665957093239, 0.03263288736343384, 0.04076799750328064, 0.01036918442696333, -0.0014791110297665, -0.03768651559948921, 0.01018429547548294, 0.026562368497252464, -0.018642961978912354, 0.04668444022536278, -0.009706665761768818, 0.010723554529249668, -0.014559999108314514, 0.008928591385483742, 0.014382814057171345, 0.021215997636318207, -0.017364146187901497, -0.023696590214967728, -0.03238636627793312, 0.014452147297561169, 0.03113836795091629, -0.006243851501494646, -0.012318220920860767, 0.027086220681667328, 0.004679999779909849, -0.01137836929410696, -0.027117034420371056, 0.01510696206241846, 0.036731258034706116, -0.009267554618418217, -0.002060740487650037, 0.025899849832057953, 0.04292503371834755, 0.011016295291483402, 0.012464591301977634, 0.005442666355520487, -0.023141924291849136, -0.009945481084287167, 0.03070696070790291, -0.023496294394135475, -0.0019095554016530514, 0.0023573332000523806, -0.01545362826436758, -0.024158813059329987, 0.02357333153486252, 0.013912887312471867, 0.028611553832888603, 0.019998813048005104, -0.015653925016522408, 0.0027694811578840017, 0.021554961800575256, 0.021000294014811516, -0.010970072820782661, -0.005974221508949995, 0.018550517037510872, 0.009621924720704556, 0.0024594073183834553, 0.029397331178188324, 0.004302517976611853, -0.01449066586792469, 0.030260145664215088, 0.07900917530059814, 0.005569777451455593, -0.0023399998899549246, -0.0030352589674293995, -0.019428739324212074, -0.006347851362079382, -0.026007700711488724, 0.0008917036466300488, -0.009583406150341034, 0.03589925542473793, 0.005974221508949995, 0.0016110369469970465, -0.018365629017353058, -0.01925925724208355, 0.011694220826029778, -0.02277214638888836, -0.02130844257771969, 0.029505182057619095, -0.014590813778340816, -0.006655999459326267, 0.004356443881988525, 0.0004509073623921722, 0.004360295832157135, -0.01346607320010662, 0.007957925088703632, 0.00469925906509161, 0.009537184610962868, -0.018750812858343124, 0.015515257604420185, 0.025329776108264923, -0.010900739580392838, 0.012302814051508904, 0.01001481432467699, 0.028935108333826065, 0.02694755420088768, 0.006031999364495277, 0.014282665215432644, -0.015176295302808285, 0.027486812323331833, -0.017857182770967484, 0.006898666266351938, -0.00916740670800209, -0.013296591117978096, 0.01114725787192583, -0.030876442790031433, 0.01563081331551075, 0.030968885868787766, -0.011986961588263512, -0.03204740583896637, -0.018149923533201218, 0.00022485182853415608, 0.0016062221257016063, 0.000674073991831392, -0.004183110781013966, -0.01080829557031393, -0.01013036910444498, 0.007538073230534792, 0.03491318225860596, 0.03571436554193497, 0.02152414619922638, -0.004968888591974974, 0.0006418147822842002, 0.006798517890274525, 0.025853628292679787, -0.048071108758449554, -0.029397331178188324, -0.004976592026650906, 0.011794369667768478, -0.020137479528784752, -0.030152292922139168, -0.006790814455598593, 0.02639288641512394, 0.0022822220344096422, -0.0085434066131711, -0.02512948028743267, 0.03069155290722847, 0.005773925222456455, 0.016223998740315437, 0.018612146377563477, -0.016470517963171005, -0.00631318474188447, 0.016208590939641, -0.018257776275277138, -0.004730073735117912, -0.013065480627119541, 0.008281480520963669, -0.001151703647337854, 0.01890488713979721, -0.018966516479849815, 0.012302814051508904, 0.024266663938760757, -0.03808710724115372, -0.0006398888071998954, 0.002698221942409873, -0.010908443480730057, -0.013111702166497707, -0.01856592483818531, 0.0010111110750585794, 0.0023091849870979786, -0.0062399995513260365, -0.00889777671545744, 0.01734873838722706, -0.00025687034940347075, -0.0013057776959612966, -0.0037035553250461817, -0.026223404332995415, -0.016732443124055862, -0.020538073033094406, 0.005850962363183498, 0.01733333244919777, -0.023496294394135475, 0.007911702618002892, 0.01676325872540474, 0.02448236756026745, 0.004922666121274233, 0.03916562721133232, -0.002072296105325222, -0.0334957018494606, -0.02818014658987522, -0.017179258167743683, -0.007688295561820269, 0.00996088795363903, -0.019906368106603622, -0.0466536246240139, 0.010145776905119419, -0.002879258943721652, -0.01365096215158701, -0.04566755145788193, -0.016039108857512474, -0.014290369115769863, 0.033588144928216934, 0.02674725651741028, 0.034235257655382156, 0.0023111109621822834, -0.023172738030552864, 0.01665540598332882, 0.0043217772617936134, -0.026069331914186478, -0.0017949627945199609, -0.020676739513874054, -0.02787199802696705, 0.02422044239938259, -0.01257244311273098, -0.021570367738604546, 0.04249362647533417, -0.020692147314548492, 0.011270517483353615, -0.006609777454286814, 0.02432829514145851, 0.008628147654235363, -0.013897480443120003, -0.021138960495591164, 0.02264888770878315, 0.03192414715886116, 0.004383407067507505, -0.0014454072806984186, -0.00284459232352674, -0.002929333131760359, -0.01341214682906866, -0.020692147314548492, 0.027579257264733315, -0.009822221472859383, 0.010176591575145721, 0.004302517976611853, 0.019890962168574333, 0.0017805183306336403, 0.002388147870078683, 0.0046838512644171715, -0.006921777036041021, 0.0009851109934970737, 0.018288591876626015, -0.009013332426548004, 0.007318518124520779, -0.002775259083136916, 0.011486221104860306, -0.0014945183647796512, 0.003940443973988295, -0.003208592301234603, -0.011709628626704216, 0.009498666040599346, -0.03021392412483692, 0.009806813672184944, 0.030506664887070656, 0.03700859099626541, 0.010053332895040512, 0.028272589668631554, -0.02851910889148712, 0.0008546295575797558, 0.00036159256706014276, -0.019459553062915802, 0.019644442945718765, -0.02967466413974762, 0.002155110938474536, 0.04175407066941261, 0.039905183017253876, 0.017810961231589317, 0.009506369940936565, 0.01573096215724945, -0.01699436828494072, 0.024651849642395973, -0.018858665600419044, -0.0011025924468412995, -0.022587256506085396, -0.018303997814655304, 0.004263999871909618, 0.009306073188781738, -0.003093036822974682, -0.0014194073155522346, 0.020014220848679543, 0.02287999726831913, -0.003326073754578829, -0.02651614509522915, 0.007788443937897682, 0.038456887006759644, -0.027579257264733315, 0.007291554939001799, -0.022109627723693848, 0.02833421900868416, 0.026300441473722458, 0.002072296105325222, 0.012949924916028976, -0.02331140637397766, 0.040274959057569504, -0.059626661241054535, -0.01881244219839573, 0.014991406351327896, -0.00916740670800209, 0.002628888702020049, -0.0012316295178607106, -0.004887999501079321, 0.00486874021589756, -0.005754666402935982, -0.025730367749929428, 0.00859733298420906, -0.022787554189562798, -0.034142810851335526, -0.043664589524269104, -0.013034665957093239, -0.005874073598533869, 0.008219851180911064, 0.019505776464939117, 0.017410369589924812, 0.02063051611185074, -0.025853628292679787, 0.0412302203476429, 0.006051258649677038, -0.007649776991456747, -0.007865481078624725, 0.0005089258775115013, 0.015076146461069584, -0.038795847445726395, -0.006952592171728611, 0.0074571846053004265, -0.05740799382328987, -0.04622221738100052, 0.004044444300234318, 0.005434962455183268, -0.008242961950600147, 0.01687110960483551, 0.010153480805456638, 0.0004480184870772064, 0.03036799654364586, 0.014136294834315777, -0.024081775918602943, -0.011840591207146645, 0.02127762697637081, 0.0008907406590878963, -0.02448236756026745, -0.04166162759065628, 0.0018161480547860265, 0.047855403274297714, 0.012949924916028976, 0.0348515510559082, 0.0028426663484424353, 0.011763554997742176, 0.029474368318915367, 0.003701629349961877, 0.03275614604353905, -0.007680592127144337, -0.048625774681568146, -0.026916738599538803, -0.004764740355312824, 0.02164740487933159, -0.028904294595122337, -0.012133331969380379, 0.01961362734436989, -0.03047584928572178, 0.01488355454057455, 0.023280590772628784, 0.017040591686964035, 0.008281480520963669, 0.024420738220214844, 0.004633777309209108, 0.035621922463178635, 0.007653628941625357, 0.006994962226599455, 0.011124147102236748, 0.01596207357943058, 0.005180740263313055, 0.0005729629192501307, -3.776620133066899e-06, 0.018273184075951576, -0.02095407247543335, -0.00548888836055994, 0.014344295486807823, 0.003274073824286461, -0.012926814146339893, 0.06625184416770935, -0.01845807209610939, -0.03161599859595299, 0.02391229383647442, -0.012788146734237671, -0.010631110519170761, -0.032571256160736084, 0.0263774786144495, -0.009028740227222443, 0.005723851267248392, 0.016501331701874733, 0.00956799928098917, 0.013057776726782322, 0.005935703404247761, -0.0191205907613039, -0.01346607320010662, 0.01722547970712185, 0.026300441473722458, 0.006987258791923523, -0.005924147553741932, 0.02220207266509533, -0.0182423684746027, -0.012194962240755558, 0.01240296196192503, 0.014552295207977295, 0.04200058802962303, -0.01234903559088707, 0.012048591859638691, 0.017502812668681145, -0.0029890367295593023, 0.01398992445319891, 0.012980739586055279, -0.012533924542367458, 0.002915851539000869, -0.00872829556465149, -0.00996088795363903, -0.005119110457599163, -0.010238220915198326, 0.02275673858821392, 0.01425955444574356, -0.0046761478297412395, -0.02243318408727646, 0.008296888321638107, 0.01041540689766407, 0.01719466596841812, -0.010430813767015934, 0.01319644320756197, 0.0029697774443775415, 0.011594072915613651, -0.010053332895040512, 0.01528414711356163, 0.011755851097404957, 0.024836739525198936, 0.0024247404653578997, 0.006082073785364628, -0.010877628810703754, -0.008682073093950748, -0.035375405102968216, -0.004206222016364336, 0.03534458950161934, -0.041507553309202194, -0.005581332836300135, -0.004764740355312824, 0.02015288732945919, 0.02560710906982422, 0.019182220101356506, -0.0068447403609752655, -0.0039038516115397215, -0.06209184601902962, -0.012479999102652073, 0.010446221567690372, -0.01341985072940588, -0.01619318313896656, 0.001668814686127007, 0.008335406892001629, -0.0014415554469451308, 0.030491257086396217, 0.020892443135380745, -0.017117628827691078, -0.005049777217209339, 0.0019394072005525231, -0.0081042954698205]" -How METER Group Brings a Data-Driven Approach to the Cannabis Production Industry,"coming into the system was not significant. Our nose was still being developed (and hardware development is nice and slow), so we had to make due with some legacy data loggers that METER also produces. These data loggers only sampled every 5 minutes and, at best, reported every 15 minutes. We usedAWS’ RDS Aurora PostgreSQLservice and cobbled together a set of triggers and functions that partitioned our main readings table by each client facility – but no more. Because we have so many sensor models and data types we can collect, I chose to use anarrow data modelfor our main readings table.This overall setup worked well enough at first, but as we progressed from alpha to beta and our customer base grew, it became increasingly clear that it was not a long-term solution for our time series data needs. I could have expanded my self-managed system of triggers and functions and cobbled together additional partitions within a facility, but this did not seem ideal. There had to be a better way!I started looking into specific time-series solutions. I am a bit of a home automation aficionado, and I was already familiar with InfluxDB – butI didn’t wish to split my relational data and readings data or teach my team a new query language.TimescaleDB, being built on top of PostgreSQL, initially drew my attention: it “just worked” in every respect, I could expect it to, and I could use the same tools I was used to for it.At this point, however, I had a few reservations about some non-technical aspects of hosting TimescaleDB that prevented me from going full steam ahead with it.✨Editor’s Note:For more comparisons and benchmarks, seehow TimescaleDB compares to InfluxDB, MongoDB, AWS Timestream, and other time-series database alternativeson various vectors, from performance and ecosystem to query language and beyond.Applying a band-aid and setting a goalBefore this point, if I am perfectly truthful, I did not have any serious requirements or standards about what I considered to be the adequate quality of service for our application. I had a bit of an “I know it when I see it” attitude towards the whole thing.When we had a potential client walk away during a demo due to a particularly slow loading graph, I knew that we had a problem on our hands and that",https://www.timescale.com/blog/how-meter-group-brings-a-data-driven-approach-to-the-cannabis-production-industry/,477,"[-0.009234797209501266, 0.005673241335898638, 0.03804093971848488, -0.017765698954463005, 0.06579888612031937, 0.0263348575681448, -0.022738872095942497, -0.006564586888998747, -0.012157492339611053, 0.012761923484504223, 0.040244437754154205, -0.04642647132277489, -0.007031299639493227, -0.04486566036939621, 0.04960929974913597, 0.0269316378980875, 0.015699921175837517, -0.03253219276666641, -0.06677822023630142, 0.028018085286021233, -0.007115460932254791, 0.022999007254838943, 0.013289845548570156, 0.01909697987139225, 0.0014909951714798808, -0.020642489194869995, -0.019846780225634575, 0.06077980995178223, 0.013259241357445717, -0.0950564369559288, 0.009640302509069443, -0.041101351380348206, -0.05848449841141701, 0.010650238953530788, 0.04036685451865196, 0.03583744168281555, 0.044467806816101074, -0.009747416712343693, 0.01285373605787754, -0.014766494743525982, -0.02829352207481861, 0.026396065950393677, 0.004854580853134394, 0.02994614467024803, -0.023152027279138565, 0.0014058774104341865, -0.01532502006739378, -0.004288404248654842, 0.0038905504625290632, 0.043182432651519775, -0.05655644088983536, 0.014988374896347523, 0.0022704442963004112, -0.027834460139274597, 0.04431478679180145, -0.04630405455827713, -0.014644077979028225, 0.03599046170711517, 0.023886526003479958, -0.01573052443563938, 0.0167863667011261, -0.043029412627220154, 0.02090262435376644, 0.007739020511507988, -0.015179650858044624, 0.03718402236700058, -0.0216677263379097, 0.017138315364718437, -0.02267766371369362, 0.04416176676750183, 0.04480445384979248, 0.006973917130380869, -0.012256955727934837, -0.01055842638015747, 0.02454451471567154, -0.048568759113550186, -0.014835353940725327, 0.03510294109582901, -0.006924185436218977, 0.0024712837766855955, 0.011744336225092411, 0.007742845918983221, -0.027329491451382637, 0.0006345575675368309, 0.017199523746967316, -0.04263155907392502, -0.04514109715819359, -0.015631061047315598, 0.016250794753432274, 0.008852245286107063, -0.01009171362966299, 0.06252424418926239, 0.013917230069637299, 0.012394674122333527, 0.026686804369091988, -0.011690779589116573, 0.0003789652546402067, 0.018408386036753654, -0.015424483455717564, 0.018913354724645615, -0.016526231542229652, -0.01518730167299509, -0.016526231542229652, -0.03022158145904541, 0.0466713048517704, -0.008584459312260151, 0.01557750441133976, 0.04566136747598648, 0.00655311020091176, -0.006250894162803888, -0.055240463465452194, 0.002532492158934474, -0.026977544650435448, 0.0019538826309144497, -0.031552862375974655, 0.016771065071225166, -0.06904292851686478, 0.009647953324019909, 0.011422992683947086, -0.021300477907061577, -0.006002235691994429, 0.017826907336711884, -0.006270022131502628, 0.009778020903468132, 0.04893600940704346, -0.049854133278131485, 0.028599563986063004, -0.0424785390496254, -0.03813274949789047, 0.01169843040406704, 0.07063434273004532, -0.015539249405264854, 0.037428855895996094, -0.03669435530900955, -0.026457274332642555, 0.0034104480873793364, -0.03724523261189461, -0.01794932410120964, -0.023442765697836876, -0.02922694757580757, -0.018178856000304222, -0.039295706897974014, 0.05680127441883087, -0.021652424708008766, -0.013289845548570156, 0.035439588129520416, -0.007004521321505308, 0.05025198683142662, -0.021132154390215874, -0.010206478647887707, 0.0010520170908421278, -0.009624999947845936, -0.022432830184698105, -0.0390508733689785, 0.06726788729429245, 0.0009869833011180162, 0.024391494691371918, 0.0334809236228466, -0.01623549312353134, -0.03146104887127876, -0.006885929964482784, 0.00889815203845501, -0.010252384468913078, -0.009938692674040794, -0.029043322429060936, 0.0055661266669631, -0.04651828482747078, -0.06298330426216125, -0.0845286175608635, -0.01730663701891899, -0.010933326557278633, -0.051874008029699326, 0.0197396669536829, 0.009517885744571686, 0.03595985844731331, -0.002804103773087263, 0.018132949247956276, -0.06463593244552612, 0.026166534051299095, -0.015263811685144901, -0.04866057261824608, 0.012708366848528385, -0.02771204337477684, 0.02619713917374611, -0.019066374748945236, -0.021713633090257645, -0.07283783704042435, 0.03213433921337128, 0.02269296534359455, 0.0035825965460389853, -0.04465143010020256, 0.07950954139232635, 0.006981567945331335, 0.0030757153872400522, 0.015745826065540314, -0.03547019138932228, 0.025309618562459946, 0.05254729837179184, -0.034429650753736496, 0.018546104431152344, 0.027757950127124786, 0.0009745503775775433, 0.08893561363220215, -0.014598172158002853, 0.022019675001502037, 0.00484692957252264, -0.007081031333655119, 0.001169651746749878, -0.05765818804502487, -0.05591375380754471, 0.006231766659766436, 0.0040665240958333015, 0.014789448119699955, 0.0032057829666882753, -0.029119834303855896, -0.014307432807981968, -0.034062400460243225, -0.023274444043636322, 0.01274662185460329, 0.004915789235383272, 0.036082275211811066, 0.05407750606536865, -0.010497217997908592, -0.012195747345685959, -0.007880564779043198, 0.038959063589572906, 0.002398598939180374, -0.02592170238494873, 0.0301450714468956, -0.006147605367004871, -0.002662559738382697, -0.03706160560250282, 0.0034066226799041033, -0.024957671761512756, -0.011093998327851295, 0.011690779589116573, 0.02039765566587448, -0.024452703073620796, -0.014957770705223083, -0.017474960535764694, -0.02261645533144474, 0.008967011235654354, -0.005837738513946533, 4.9373076763004065e-05, -0.01564636267721653, 0.0011792154982686043, -0.03323609009385109, -0.07546979188919067, 0.015256160870194435, 0.03323609009385109, 0.0235498808324337, -0.007643382530659437, 0.01730663701891899, -0.004548539407551289, -0.046701908111572266, -0.03195071592926979, -0.009548489935696125, 0.044406596571207047, 0.006055792793631554, -0.022295111790299416, -0.004781895782798529, -0.003467830829322338, 0.00572297303006053, 0.028033386915922165, -0.03770429268479347, 0.015761129558086395, 0.013305147178471088, -0.057688791304826736, 0.01693938858807087, -0.024085452780127525, 0.027314189821481705, 0.026151232421398163, 0.030328696593642235, -0.038377583026885986, -0.01987738534808159, -0.026396065950393677, 0.008622714318335056, 0.01787281408905983, -0.006361834239214659, -0.011430644430220127, -0.009449026547372341, -0.04529411718249321, 0.018500199541449547, 0.0035749454982578754, 0.022218601778149605, 0.0063312300480902195, 0.01532502006739378, 0.023733505979180336, 0.013083267025649548, -0.01324393879622221, -0.012616554275155067, 0.015883546322584152, 0.03926510363817215, -0.02563096210360527, 0.004296055529266596, 0.0005116628599353135, -0.0025898749008774757, 0.016618045046925545, -0.02491176500916481, -0.012723668478429317, 0.04560016095638275, 0.019938593730330467, 0.03706160560250282, -0.008622714318335056, 0.011981518007814884, -0.0007292391383089125, -0.0027084657922387123, 0.0057153222151100636, -0.011468899436295033, 0.00620881374925375, -0.008079491555690765, -0.03488871455192566, -0.006136128678917885, -0.009426073171198368, -0.02807929366827011, -0.007035125512629747, 0.059984102845191956, -0.028813792392611504, -0.00560055673122406, -0.07400079816579819, -0.04608982428908348, -0.08471224457025528, -0.02195846661925316, 0.008630366064608097, 0.033419713377952576, -0.026441970840096474, 0.029686009511351585, -0.012830783613026142, 0.037428855895996094, -0.0011897357180714607, -0.010849165730178356, -0.03975477069616318, 0.03332790359854698, 0.018500199541449547, -0.03553139790892601, -0.05383267253637314, -0.005730624310672283, 0.023136725649237633, -0.022494038566946983, 0.024284379556775093, -0.011109300889074802, -0.002716116840019822, -0.06136128678917885, 0.030466414988040924, 0.04165222495794296, -0.002486585872247815, 0.0036074623931199312, -0.024314984679222107, 0.008875198662281036, -0.006094048265367746, -0.055454690009355545, 0.01202742476016283, 0.010933326557278633, 0.00016449722170364112, -0.0032555146608501673, -0.02498827502131462, 0.01105574332177639, -0.004992299247533083, -0.028538355603814125, -0.014399245381355286, -0.007700765039771795, 0.0555771067738533, 0.01363414153456688, -0.016556836664676666, -0.017000596970319748, 0.02053537406027317, -0.023014308884739876, -0.017903419211506844, -0.060351353138685226, -0.0360516682267189, 0.02621244080364704, 0.003773872274905443, -0.03286883980035782, -0.028890302404761314, -0.06653338670730591, -0.004445250611752272, 0.04887480288743973, 0.033205486834049225, -0.020290540531277657, 0.06506438553333282, 0.040305644273757935, 0.024957671761512756, 0.005634986329823732, -0.001617237227037549, 0.03767368942499161, 0.04630405455827713, -0.004674781579524279, 0.029686009511351585, -0.055393483489751816, -0.01954074017703533, 0.03274642303586006, -0.023534579202532768, -0.020627185702323914, -0.021208664402365685, -0.005726798437535763, -0.0008856071508489549, -0.012218700721859932, 0.051659777760505676, 0.06971621513366699, 0.015248510055243969, 0.0322873629629612, -0.005164447706192732, -0.05615858733654022, -0.011040441691875458, 0.009158287197351456, -0.0023469545412808657, 0.006071094889193773, 0.03158346563577652, -0.020045707002282143, -0.024299683049321175, -0.02965540625154972, -0.017490262165665627, 0.05098648741841316, -0.018576709553599358, 0.020657790824770927, -0.02642666921019554, -0.029318761080503464, 0.08140699565410614, 0.027252981439232826, 0.05964745581150055, -0.028262916952371597, -0.0068629770539700985, -0.01141534186899662, 0.006132303271442652, -0.04615103453397751, 0.03926510363817215, 0.02957889623939991, -0.03840818628668785, -0.001633495674468577, -0.06151431053876877, -0.0237641092389822, -0.0429069958627224, 0.01987738534808159, 0.01865321956574917, -0.016097774729132652, 0.024146661162376404, 0.002687425585463643, -0.028676073998212814, 0.0235498808324337, 0.03179769590497017, -0.0007493231096304953, 0.0034123610239475965, 0.006828547455370426, 0.020198728889226913, -0.028905604034662247, -0.013672396540641785, -0.05371025577187538, -0.02133108116686344, 0.0035328646190464497, -0.024085452780127525, 0.048997219651937485, -0.031828299164772034, -0.03525596112012863, 0.023534579202532768, -0.01917348988354206, -0.02576868049800396, 0.04639586806297302, -0.008844594471156597, 0.030741851776838303, -0.04939507320523262, -0.03461327403783798, 0.02485055662691593, -0.06096343323588371, 0.007241703104227781, -0.014445151202380657, -0.03641891852021217, 0.04434539005160332, 0.020795509219169617, 0.017107710242271423, -0.031124403700232506, 0.015485691837966442, 0.029471781104803085, -0.01435333862900734, -0.017857512459158897, -0.03932631388306618, 0.016281399875879288, 0.03250158950686455, 0.020841415971517563, 0.03057353012263775, -0.027604928240180016, 0.009571443311870098, -0.023320350795984268, -0.0076280804350972176, 0.040948331356048584, -0.0034793075174093246, 0.01274662185460329, -0.0080718407407403, 0.031063195317983627, -0.03028278984129429, 0.010374801233410835, -0.03158346563577652, -0.010015202686190605, 0.05141494423151016, -0.019969196990132332, -0.006488076411187649, -0.01902046985924244, -0.05141494423151016, -0.0032612530048936605, 0.00242346478626132, -0.00048440604587085545, 0.024651629850268364, -0.024942368268966675, -0.007490361575037241, 0.06604371964931488, -0.036786168813705444, 0.01382541749626398, -0.040030207484960556, -0.004793372470885515, -0.02289189212024212, -0.07020588219165802, -0.011568362824618816, 0.036571938544511795, 0.023213235661387444, 0.042172495275735855, -0.022845985367894173, 0.015699921175837517, -0.00925775058567524, 0.03072655014693737, -0.0029303457122296095, 0.00559673085808754, -0.03286883980035782, -0.0373370423913002, -0.022937798872590065, 0.002991554094478488, 0.012203398160636425, 0.009800974279642105, -0.050496820360422134, 0.010436009615659714, -0.012662460096180439, -0.0032995082437992096, 0.026870429515838623, -0.01894395984709263, 0.008048887364566326, 0.0009511191165074706, -0.02979312464594841, 0.01779630407691002, -0.03360334038734436, -0.0466713048517704, -0.05046621710062027, 0.02605942077934742, -0.00010556034976616502, 0.024376193061470985, 0.010673191398382187, 0.016388513147830963, 0.003576858201995492, -0.01787281408905983, 0.019999802112579346, -0.007276132702827454, -0.007708416320383549, 0.03849999979138374, 0.022999007254838943, -0.023014308884739876, 0.016847575083374977, -0.004479680210351944, 0.004024443682283163, 0.025569753721356392, 0.031216217204928398, 0.015631061047315598, 0.01388662587851286, -0.0006106481305323541, -0.008156001567840576, -0.013259241357445717, 0.0062279412522912025, 0.0014852568274363875, -0.01736784540116787, 0.006006061099469662, 0.0017539993859827518, -0.03565381467342377, -0.03788791969418526, 0.0011486114235594869, 0.007436804473400116, -0.010107015259563923, -0.006488076411187649, 0.037000399082899094, 0.01946422830224037, 0.004330485127866268, -0.033419713377952576, -0.017260732129216194, 0.011422992683947086, 0.0026147407479584217, -0.012501788325607777, -0.004751291591674089, -0.03574562817811966, 0.04486566036939621, -0.0322873629629612, 0.014812400564551353, 0.011292925104498863, -0.0021422894205898046, 0.04492686688899994, -0.027834460139274597, -0.012050378136336803, 0.021193362772464752, -0.0035175627563148737, 0.009380167350172997, 0.027727345004677773, 0.01989268697798252, 0.006063444074243307, 0.01069614477455616, -0.01967845857143402, 0.03378696367144585, 0.0518127977848053, -0.007337341085076332, 0.00024411578488070518, -0.01989268697798252, -0.023595787584781647, 0.04113195464015007, -0.009571443311870098, 0.010374801233410835, 0.045630764216184616, -0.02131577953696251, 0.030343998223543167, -0.0032229977659881115, -0.008171304129064083, -0.04893600940704346, -0.04306001588702202, 0.012899642810225487, -0.02656438760459423, -0.02160651795566082, 0.017781002447009087, 0.005631160456687212, -0.0301450714468956, -0.004866057075560093, -0.015608108602464199, -0.012073330581188202, 0.0163579098880291, 0.02784976176917553, -0.021790143102407455, -0.023305047303438187, -0.03393998369574547, 0.02081081084907055, -0.008209559135138988, 0.023228537291288376, 0.036571938544511795, 0.012325814925134182, 0.006178209558129311, 0.04143799841403961, 0.03660254552960396, 0.032991256564855576, -0.0030776283238083124, -0.006771164480596781, 0.020412957295775414, 0.019433625042438507, -0.005898946896195412, -0.026151232421398163, 0.00644217012450099, -0.04284578934311867, -0.018041137605905533, 0.046977344900369644, -0.014230921864509583, -0.03329729661345482, 0.01730663701891899, -0.012891991063952446, 0.08165182918310165, 0.026962241157889366, 0.029043322429060936, -0.004732164088636637, -0.0014756930759176612, -0.023932432755827904, -0.008913453668355942, 0.0040129669941961765, -0.03323609009385109, 0.0025344048626720905, -0.027191773056983948, 0.03109380044043064, -0.018056439235806465, 0.017689188942313194, 0.0347662977874279, -0.003873335663229227, 0.031185612082481384, 0.026533784344792366, -0.009494932368397713, 0.030405206605792046, 0.034429650753736496, 0.0007144152768887579, 0.025646263733506203, -0.019005166366696358, 0.017276033759117126, -0.010206478647887707, 0.009456677362322807, 0.056678857654333115, -0.03302185982465744, 0.020688394084572792, -0.0267633143812418, 0.0034027970395982265, -0.014345687814056873, -0.0033741057850420475, 0.00047818958410061896, 0.023580485954880714, 0.046701908111572266, 0.03188950940966606, 0.024835254997015, 0.00011345047823851928, 0.009831578470766544, -0.03525596112012863, 0.011797893792390823, -0.02160651795566082, -0.00022714005899615586, 0.04967050999403, -0.006377136334776878, -0.012891991063952446, 0.00754009373486042, -0.0109180249273777, -0.03831637650728226, -0.009158287197351456, -0.024284379556775093, -0.008347277529537678, 0.02240222692489624, -0.019709061831235886, 0.02778855338692665, -0.015478041023015976, -0.038163356482982635, 0.012409976683557034, -0.006977742537856102, 0.02944117598235607, 0.004713036585599184, -0.007295260205864906, -0.0018945871852338314, 0.038806043565273285, -0.024942368268966675, -0.002289571799337864, -0.06292209774255753, 0.0013924881350249052, -0.019800875335931778, -0.03201192244887352, 0.03706160560250282, -0.03308307006955147, 0.017337242141366005, 0.04832392930984497, 0.011040441691875458, -0.03920389711856842, 0.029624801129102707, 0.026503179222345352, 0.011859102174639702, -0.0014804749516770244, 0.02705405466258526, 0.00280027836561203, -0.014514010399580002, -0.005034380126744509, -0.03804093971848488, 0.019862083718180656, -0.03473569080233574, 0.012815481051802635, -0.020856717601418495, -0.002000745153054595, 0.0006273847538977861, -0.04058108106255531, 0.012203398160636425, 0.05511804670095444, 0.02218799665570259, -0.012800179421901703, -0.024207869544625282, 0.015883546322584152, -0.002995379501953721, -0.014001390896737576, 0.0001404681970598176, -0.01637321151793003, -0.015531597658991814, 0.009716812521219254, -0.0059257252141833305, 0.015194952487945557, 0.010872118175029755, 0.026503179222345352, -0.03302185982465744, 0.018393084406852722, -0.01831657439470291, 0.016250794753432274, -0.023580485954880714, -0.009747416712343693, 0.0034946096129715443, -0.039662957191467285, -0.011354133486747742, -0.0063809617422521114, 0.009716812521219254, -0.013794813305139542, 0.05704610422253609, -0.0017712143016979098, -0.010068760253489017, -0.02361108921468258, 0.01238702330738306, 0.014406896196305752, 0.031032592058181763, 0.006556935608386993, -0.03488871455192566, -0.028415938839316368, 0.009885135106742382, 0.014521661214530468, 0.01191265881061554, 0.0025975259486585855, -0.03167527914047241, -0.021774841472506523, -0.013519376516342163, 0.0029093055054545403, -0.027666136622428894, 0.019188791513442993, 0.012119237333536148, -0.005730624310672283, -0.006461297627538443, -0.1252933293581009, -0.03317487984895706, 0.03687798231840134, 0.0006732909241691232, -0.021927861496806145, 0.010887420736253262, 0.019188791513442993, 0.026013514026999474, 0.00843143928796053, -0.023167328909039497, -0.001788429100997746, -0.035439588129520416, -0.026732711121439934, -5.424463233794086e-05, 0.0020122218411415815, 0.012264606542885303, 0.007911168970167637, 0.027941573411226273, 0.013473469763994217, 0.030665341764688492, -0.01802583411335945, 0.004560016095638275, -0.04786486551165581, 0.06377901881933212, 0.010137619450688362, -0.0072723072953522205, -0.01374125573784113, 0.02820170857012272, 0.01180554460734129, -0.026120629161596298, 0.0024292031303048134, 0.0005020990502089262, 0.0028653121553361416, 0.0029341713525354862, -0.001446045353077352, 0.026717409491539, -0.005405455362051725, 0.01664864830672741, 0.019479531794786453, 0.005374851170927286, -0.03599046170711517, -0.04618163779377937, 0.038438793271780014, -0.062279414385557175, 0.05426112934947014, -0.017995230853557587, 0.019403021782636642, 0.03158346563577652, -0.015194952487945557, -0.018117647618055344, 0.017704490572214127, -0.002444505225867033, -0.016908783465623856, 0.009900437667965889, 0.0035290392115712166, 0.03164467588067055, -0.04847694933414459, -0.026258347555994987, -0.02153000794351101, 0.0019376241834834218, -0.029992051422595978, -0.007199622690677643, 0.0237641092389822, -0.06622734665870667, -0.02454451471567154, -0.003844644408673048, 0.026686804369091988, 0.0163579098880291, 0.008928756229579449, -0.011583664454519749, 0.018041137605905533, 0.03828577324748039, 0.036082275211811066, -0.012050378136336803, 0.0030317220371216536, 0.009211844764649868, 0.018714427947998047, -0.01216514315456152, -0.019709061831235886, -0.01765858568251133, 0.0012184270890429616, 0.0006995913572609425, -0.004204242955893278, 0.0016143680550158024, -0.004713036585599184, -0.018637917935848236, -0.002505713375285268, 0.006878279149532318, 0.01600596122443676, 0.013228637166321278, 0.03207313269376755, -0.015416832640767097, -0.012846085242927074, -0.008944057859480381, 0.024927066639065742, 0.017429053783416748, 0.007138414308428764, -0.008439090102910995, -0.00789586640894413, 0.008462043479084969, 0.03170588240027428, 0.008806339465081692, 0.009043521247804165, 0.011384737677872181, -0.019647853448987007, -0.015883546322584152, 0.006009886972606182, -0.005007601343095303, 0.016388513147830963, 0.0031904808711260557, -0.02635015919804573, -0.00426927674561739, 0.024957671761512756, 0.025891097262501717, 0.017934022471308708, 0.02590639889240265, 0.016526231542229652, -0.018117647618055344, 0.029701311141252518, -0.02749781496822834, 0.008890501223504543, -0.011009837500751019, -0.02442209981381893, 0.028890302404761314, -0.01600596122443676, 0.017673887312412262, 0.05921899899840355, -0.009326609782874584, 0.029808426275849342, -0.010214129462838173, 0.0023603439331054688, 0.05285333842039108, -0.00023742113262414932, 0.047711845487356186, 0.01352702733129263, -0.03057353012263775, 0.001825727871619165, 0.0023048738949000835, 0.010787957347929478, 0.025034181773662567, 0.012716017663478851, 0.01888275146484375, -0.0005762184737250209, 0.004820151254534721, 0.030741851776838303, -0.02003040537238121, 0.010122316889464855, 0.019066374748945236, -0.03415421396493912, 0.04186645522713661, 0.005730624310672283, -0.028905604034662247, -0.017918720841407776, 0.06292209774255753, 0.0030986685305833817, 0.055087439715862274, -0.05349602550268173, -0.021193362772464752, -0.03231796622276306, -0.005397804081439972, -0.007903517223894596, 0.04970111325383186, 0.01446810457855463, 0.009969296865165234, 0.05242488160729408, -0.039234500378370285, -0.02419256791472435, -0.002892090706154704, -0.004885185044258833, 0.014651728793978691, -0.004602096509188414, -0.01686287857592106, 0.010520171374082565, -0.013083267025649548, 0.06567647308111191, 0.03764308616518974, 0.003873335663229227, 0.013565282337367535, 0.00364380469545722, 0.009211844764649868, -0.022417528554797173, 0.00792647060006857, 0.0017903418047353625, 0.040519874542951584, 0.03675556555390358, -0.017995230853557587, -0.01410085428506136, 0.0027008147444576025, -0.0182400643825531, 0.02067309245467186, 0.024284379556775093, 0.009908088482916355, -0.002716116840019822, 0.01643441990017891, -0.013259241357445717, -0.0023259141016751528, 0.03764308616518974, 0.020841415971517563, -0.016281399875879288, 0.013657094910740852, -0.01958664506673813, 0.021422894671559334, 0.02893620915710926, -0.012738971039652824, 0.018790937960147858, 0.02592170238494873, -0.004716861993074417, 0.014276828616857529, -0.04486566036939621, 0.018132949247956276, 0.022356320172548294, 0.03123151883482933, -0.01886744797229767, -0.018362481147050858, -0.015485691837966442, 0.03274642303586006, 0.028018085286021233, 0.020489467307925224, -0.01787281408905983, -0.0299308430403471, -0.01554690022021532, -0.03531717136502266, -0.02224920503795147, 0.02339686080813408, -0.015279114246368408, 0.04330484941601753, -0.009770370088517666, 0.001186866546049714, -0.02024463377892971, 0.0020734299905598164, -0.0053557236678898335, 0.02082611247897148, 0.009012917056679726, -0.010397754609584808, 0.033909380435943604, 0.039601750671863556, 0.012578299269080162, 0.01758207567036152, 0.004693909082561731, 0.011629571206867695, 0.026809221133589745, 0.006656398996710777, 0.001103661605156958, -0.022509340196847916, -0.01801053248345852, 0.0002971948415506631, 0.04615103453397751, 0.04122376814484596, 0.020336447283625603, 0.0002408880100119859, -0.00012074287224095315, 0.011063394136726856, 0.035929251462221146, 0.021009737625718117, 0.027742646634578705, 0.027451908215880394, -0.013427563942968845, 0.027115263044834137, 0.0030699772760272026, -0.003844644408673048, -0.006660224869847298, 0.0037585701793432236, -0.009349563159048557, -0.003245950909331441, 0.00018230978457722813, -0.003456354374065995, -0.015883546322584152, 0.001960577443242073, 0.01285373605787754, -0.007696939632296562, -0.03216494619846344, 0.00915063638240099, 0.03043581172823906, 0.008232511579990387, -0.002318263053894043, 0.022570548579096794, -0.056525833904743195, -0.008967011235654354, -0.005424582865089178, -0.033205486834049225, -0.01435333862900734, -0.00850794930011034, -0.008890501223504543, -0.023702900856733322, 0.04042806103825569, -0.013511724770069122, -0.00936486478894949, -0.01758207567036152, 0.03846939653158188, -0.046120431274175644, 0.012012122198939323, 0.01335105299949646, -0.00315031292848289, 0.012096283957362175, -0.029992051422595978, -0.0016851400723680854, -0.012371720746159554, 0.01543978601694107, 0.00972446333616972, -0.01388662587851286, 0.01680167019367218, -0.006484251003712416, 0.018714427947998047, 0.027038753032684326, 0.018760334700345993, 0.01680167019367218, -0.020443562418222427, -0.015837639570236206, -0.037796106189489365, 0.04532472416758537, -0.0007995329797267914, 0.009494932368397713, 0.03828577324748039, 0.012731319293379784, -0.016204889863729477, -0.0010013290448114276, 0.011576013639569283, 0.02849244885146618, 0.03179769590497017, 0.0420500785112381, 0.005937201902270317, 0.013519376516342163, 0.010290640406310558, 0.029395271092653275, 0.0024330285377800465, 0.014062599278986454, 0.006820896174758673, 0.009770370088517666, -0.016679253429174423, 0.0124176274985075, -0.007478885352611542, -0.0082860691472888, 0.02160651795566082, 0.03207313269376755, -0.019005166366696358, -0.0004884706577286124, 0.023152027279138565, -0.004494982305914164, 0.0025592707097530365, 0.009074125438928604, 0.012463533319532871, 0.007807879708707333, -0.013481120578944683, 0.016281399875879288, -0.008546204306185246, -0.011323529295623302, 0.046548888087272644, 0.03375636041164398, -0.024360891431570053, 0.02748251147568226, 0.07706120610237122, 0.018255366012454033, 0.016388513147830963, 0.016633346676826477, 0.013412261381745338, 0.0037375299725681543, 0.017995230853557587, -0.010910374112427235, 0.01019882783293724, 0.021086247637867928, -0.015171999111771584, -0.003680146997794509, -0.028232313692569733, 0.020734300836920738, 0.020198728889226913, -0.016816971823573112, -0.019632551819086075, 0.028048688545823097, 0.0062776729464530945, 0.002276182407513261, 0.03620469197630882, 0.023886526003479958, -0.003083366435021162, -0.014001390896737576, -0.025569753721356392, -0.01216514315456152, 0.0037126638926565647, -0.011943263001739979, -0.013549980707466602, 0.03023688495159149, -0.0024636327289044857, -0.022218601778149605, -0.01045131217688322, 0.044835057109594345, 0.0063312300480902195, 0.007972377352416515, -0.016924086958169937, 0.032195549458265305, -0.0026510830502957106, -0.006748211570084095, 0.0018046875484287739, -0.02218799665570259, -0.0057650539092719555, -0.009961646050214767, -0.017934022471308708, 0.03418481722474098, -0.011836148798465729, -0.002285746159031987, -0.015960056334733963, -0.03308307006955147, -0.04694674164056778, -0.022065579891204834, 0.011392388492822647, -0.011767289601266384, 0.00897466205060482, -0.00886754784733057, 0.052792131900787354, 0.012203398160636425, 0.039938393980264664, 0.03087957203388214, -0.009012917056679726, -0.0071651930920779705, -0.019280605018138885, -0.011185810901224613, -0.0356232114136219, -0.015807034447789192, 0.03146104887127876, -0.009471979923546314, 0.005937201902270317, -0.045477744191884995, -0.021147456020116806, 0.030910175293684006, 0.010267687030136585, 0.015761129558086395, 0.03559260815382004, 0.015531597658991814, -0.002941822400316596, 0.026610294356942177, 0.03087957203388214, -0.04082591459155083, -0.008653318509459496, 0.0023603439331054688, -0.02475874498486519, 0.020504768937826157, -0.017765698954463005, 0.0015235120663419366, 0.020428258925676346, -0.0030183326452970505, -0.003188568167388439, 0.009816275909543037, 0.010068760253489017, -0.0026013513561338186, -0.005791832227259874, 0.015355624258518219, -0.007612778339534998, -0.013435214757919312, -0.04716097190976143, -0.0026090024039149284, -0.0018945871852338314, -0.04661009460687637, 0.009992249310016632, 0.0006575107108801603, -0.01083386316895485, 0.02893620915710926, 0.00680176867172122, -0.01288434024900198, -0.0009142985218204558, -0.02094852924346924, -0.009502583183348179, -0.0025592707097530365, -0.025508545339107513, 0.038163356482982635, 0.005072635132819414, -3.54159164999146e-05, 0.025891097262501717, 0.034490857273340225, 0.01231051329523325, -0.00036916235694661736, -0.008806339465081692, -0.015990659594535828, 0.024529213085770607, 0.01504193153232336, -0.007023648824542761, -0.01622019149363041, 0.004946392960846424, 0.00958674494177103, 0.03941812366247177, -0.005983108188956976, -0.011874403804540634, -0.0073947240598499775, 0.0027218551840633154, 0.004299880936741829, 0.027115263044834137, -0.015286765061318874, 0.02232571505010128, 0.018546104431152344, 0.009387818165123463, -0.03136923909187317, -0.003496522316709161, -0.022417528554797173, -0.04884419962763786, 0.025095390155911446, -0.0033243740908801556, 0.011285274289548397, 0.021514706313610077, -0.0016908784164115787, 0.021086247637867928, 0.009242448024451733, 0.02635015919804573, 0.02749781496822834, -0.012562996707856655, 4.127373904339038e-05, 0.014230921864509583, 0.01302971038967371, -0.020550675690174103, -0.01886744797229767, 0.006342706736177206, -7.64505603001453e-05, 0.0017415664624422789, -0.01687818020582199, 0.0011438295478001237, 0.018622616305947304, 0.009747416712343693, -0.0250494834035635, 0.014873608946800232, -0.004934916738420725, 0.010925675742328167, -0.014735890552401543, -0.008706876076757908, 0.023014308884739876, 0.0009515972924418747, -0.014016693457961082, 0.022356320172548294, 0.009984598495066166, 0.015118442475795746, 0.009341912344098091, -0.006908883340656757, -0.006889755837619305, 0.006159082055091858, 0.0020715172868222, -0.004491156432777643, -0.002077255630865693, 0.017429053783416748, 0.03791852295398712, 0.006476599723100662, 0.01155306026339531, -0.00019330813665874302, -0.004043571185320616, 0.006794117856770754, -0.025753378868103027, -0.0071651930920779705, -0.01715361699461937, -0.012264606542885303, 0.051292527467012405, 0.0347662977874279, 0.011706081219017506, 0.018500199541449547, 0.021086247637867928, -0.054016295820474625, 0.017107710242271423, -0.025646263733506203, -0.008921105414628983, 0.007811705116182566, -0.014399245381355286, -0.0006914621335454285, 0.026579691097140312, -0.029272854328155518, 0.002695076633244753, -0.0001380772446282208, 0.002364169340580702, -0.013771859928965569, -0.0010787957580760121, -0.025447336956858635, 0.005011426750570536, 0.01837778277695179, -0.029196344316005707, -0.002469371072947979, 0.05735214799642563, -0.02440679632127285, -0.04293759912252426, 0.0052868640050292015, -0.021805444732308388, -0.0029437351040542126, -0.0318589024245739, -0.002807929180562496, -0.00024722403031773865, 0.04116256162524223, -0.012540044263005257, 0.016526231542229652, 0.0012012122897431254, -0.00266638514585793, -0.010275337845087051, 0.0035118244122713804, 0.028155803680419922, -0.010520171374082565, -0.01894395984709263, 0.0015780256362631917, -0.01615898311138153, 0.04829332232475281, -0.031139707192778587, 0.0006804637960158288, -0.0007923601660877466, 0.022738872095942497, -0.001797036500647664, 0.049639906734228134, 0.02175953984260559, 0.011331181041896343, 0.022953100502490997, 0.01252474170178175, 0.005891295615583658, -0.019800875335931778, -0.010458962991833687, 0.01736784540116787, -0.022601153701543808, -0.04070349782705307, 0.024942368268966675, -0.017138315364718437, -0.011017488315701485, -0.0017597377300262451, -0.007880564779043198, -0.01822476089000702, 0.0022207123693078756, 0.0060481419786810875, -0.018760334700345993, 0.008056538179516792, -0.0007254136144183576, 0.021637123078107834, -0.04682432487607002, -0.03703100234270096, 0.02899741753935814, 0.010015202686190605, 0.019112281501293182, 0.014628776349127293, -0.002201584866270423, -0.010244733653962612, -0.016771065071225166, 0.0109180249273777, -0.0031656150240451097, 0.0027715868782252073, 0.001896499888971448, -0.005592905450612307, -0.013542328961193562, -0.022999007254838943, -0.02599821239709854, 0.022371621802449226, 0.008982312865555286, -0.03222615271806717, 0.0003493175026960671, 0.002886352362111211, 0.028538355603814125, 0.003706925781443715, 0.02247873693704605, 0.004024443682283163, 0.010290640406310558, 0.00403592037037015, 0.00279071438126266, 0.008377881720662117, 0.03179769590497017, 0.00897466205060482, -0.015508645214140415, -0.01960194855928421, 0.012103934772312641, -0.02442209981381893, -0.029334062710404396, 0.02024463377892971, 0.008944057859480381, -0.0002610915107652545, 0.0033741057850420475, -0.003345414297655225, -0.018393084406852722, 0.019969196990132332, -0.002568834461271763, 0.007972377352416515, -0.02950238436460495, 0.005661764647811651, -0.0017893854528665543, 0.013595886528491974, 0.05285333842039108, 0.02440679632127285, 0.0080718407407403, 0.027941573411226273, -0.005768879316747189, 0.0011887793662026525, 0.0012557258596643806, 0.06653338670730591, 0.026120629161596298, 0.022631756961345673, -0.0038044764660298824, -0.0008669577073305845, -0.011514805257320404, 0.03675556555390358, 0.01022943202406168, 0.022019675001502037, -0.025217806920409203, 0.018285969272255898, 0.01493481732904911, 0.0020944704301655293, 0.02800278179347515, 0.01274662185460329, -0.011292925104498863, -0.0066334460861980915, 0.026885731145739555, -0.04070349782705307, 0.01938771829009056, -0.008936407044529915, 0.03323609009385109, 5.2541083277901635e-05, 0.00861506350338459, -0.02039765566587448, 0.0013982263626530766, -0.00037872616667300463, 0.02174423635005951, -0.01687818020582199, -0.024605723097920418, -0.025447336956858635, 0.013450517319142818, 0.034643881022930145, 0.013978438451886177, -0.04198887199163437, 0.0056961942464113235, 0.0453859306871891, -0.0006460341392084956, -0.001842942670919001, -0.015745826065540314, -0.033205486834049225, 0.017903419211506844, 0.008783386088907719, -0.012103934772312641, -0.02032114565372467, -0.015393879264593124, 0.00705042714253068, 0.02498827502131462, -0.004120081663131714, -0.026365460827946663, 0.0025764855090528727, -0.05126192420721054, 0.029410572722554207, 0.0032268234062939882, -0.011422992683947086, 0.002641519298776984, 0.010038156062364578, 0.034337837249040604, 0.026365460827946663, 0.025355525314807892, 0.0475282184779644, -0.0024139010347425938, -0.006407740525901318, 0.015378577634692192, -0.0015761129325255752]" -How METER Group Brings a Data-Driven Approach to the Cannabis Production Industry,"we needed something really solid for the long term.Still, at the time, we also needed something to get us by until we could perform a thorough evaluation of the available solutions and build something around that. At this point, I decided to stand aRedis clusterbetween RDS and our application which stored the last 30 days of sensor data (at all the aggregation levels required) as a Pandas dataframe. Any chart request coming in for data within the first 30 days - which accounted for something like 90% of our requests - would simply hit Redis. Anything longer would cobble together the answer using both Redis and querying the database.Performance for the 90% use case was adequate, but it was getting increasingly dreadful as more and more historical data piled up for anything that hit the database.At this point, I set the goalposts for what our new solution would need to meet:Any chart request, which is an integral part of AROYA, needs to take less than one second for the API to serve.The research and the first solutionWe looked at other databases at this point, InfluxDB was looked at again, we got in a beta of Timestream for AWS and looked at that. We even considered going NoSQL for the whole thing. We ran tests and benchmarks, created matrices of pros and cons, estimated costs, the whole shebang.Nothing compared favorably to what we were able to achieve with TimescaleDB.Ultimately,the feature that really caught our attention wascontinuous aggregatesin TimescaleDB. The way our logic works, more or less, we see the timeframe that the user is requesting and sample our data accordingly. In other words, if a user fetches three months worth of data, we would not send three months worth of raw data to be graphed to the front-end. Instead, we would bucket our data into appropriately sized buckets that would give us the right amount of data we want to display in the interface.Although it would require quite a few views, if we created continuous aggregates for every aggregation level and bucket size we cared about, and then directly queried the right aggregation/bucket combination (depending on the parameters requested), that should do it, right? The answer was a resoundingyes.The performance we were able to achieve using these views shattered the competition.Although I admit we were",https://www.timescale.com/blog/how-meter-group-brings-a-data-driven-approach-to-the-cannabis-production-industry/,470,"[0.005881692748516798, -0.012108264490962029, 0.04027591273188591, 0.004082322120666504, 0.06489729881286621, 0.04090569168329239, 0.005454342346638441, -0.008569502271711826, -0.024441450834274292, 0.02096266858279705, 0.021487483754754066, -0.04996252432465553, 0.009514172561466694, -0.03601740300655365, 0.030979163944721222, 0.01748388446867466, 0.04405459016561508, -0.03430800139904022, -0.04237517714500427, 0.031249070540070534, -0.00101589469704777, 0.011665919795632362, 0.018338585272431374, -0.005945420358330011, -0.019808072596788406, -0.020932678133249283, -0.005799221806228161, 0.06567703187465668, 0.013832662254571915, -0.09206780046224594, -0.020872699096798897, -0.035177696496248245, -0.05545060709118843, 0.0008279916364699602, 0.018728449940681458, 0.017408911138772964, 0.02160744182765484, -0.022867001593112946, 0.01718398928642273, -0.0038986364379525185, 0.005068227183073759, 0.009424204006791115, 0.03232869133353233, 0.019553160294890404, -0.001515407464466989, 3.6315421311883256e-05, -0.042914990335702896, 0.009079324081540108, -0.007737293839454651, 0.061958327889442444, -0.05185186490416527, 0.023676719516515732, -0.032598599791526794, -0.025611042976379395, 0.04546409845352173, -0.040755745023489, -0.024081576615571976, 0.040185943245887756, 0.014559907838702202, -0.02096266858279705, -0.0017328314715996385, -0.07275455445051193, 0.0279502235352993, -0.012153249233961105, -0.007452393416315317, 0.02643575333058834, -0.025790980085730553, 0.04951268061995506, -0.041115619242191315, 0.039286259561777115, 0.053561266511678696, 0.00995651725679636, 0.016074378043413162, -0.033378325402736664, 0.04378468543291092, -0.06285801529884338, 0.005293148569762707, 0.05212176963686943, -0.021367525681853294, 0.0009980883914977312, -0.0029127311427146196, 0.00046436881530098617, -0.021487483754754066, 0.009506674483418465, 0.042765043675899506, -0.05928926169872284, -0.014949770644307137, -0.00821712613105774, -0.004685861058533192, 0.0275303702801466, -0.041565462946891785, 0.04237517714500427, -0.016479237005114555, 0.01556455623358488, 0.020302899181842804, 0.022222228348255157, -0.0007562979590147734, 0.030289405956864357, 0.003992353565990925, 0.01640426181256771, 0.005045735277235508, -0.05530065670609474, -0.0007117823115549982, 0.0022454645950347185, 0.026810621842741966, 0.010916181840002537, 0.022102270275354385, 0.0331084206700325, -0.0038574007339775562, 0.008547010831534863, -0.056020405143499374, -0.011141102761030197, -0.04300495982170105, -0.012887991964817047, -0.012573102489113808, 0.009469187818467617, -0.05698006972670555, 0.026075879111886024, -0.008314591832458973, -0.0010646276641637087, -0.0063540274277329445, 0.015272158198058605, -0.014747342094779015, -0.004929525777697563, 0.026555711403489113, -0.04228521138429642, 0.017363926395773888, -0.060098979622125626, -0.033198390156030655, -0.007849754765629768, 0.07629331201314926, 0.002479757647961378, 0.03069426491856575, -0.033498283475637436, -0.050382379442453384, 0.012790526263415813, -0.05059230327606201, 0.006395263131707907, -0.028235124424099922, -0.024996256455779076, -0.0257010105997324, -0.04045585170388222, 0.019688114523887634, -0.032898493111133575, -0.02067776769399643, 0.039256270974874496, -0.019358228892087936, 0.03181887045502663, -0.0011602191952988505, -0.03523767367005348, -0.025251168757677078, -0.008944371715188026, -0.024111567065119743, -0.03508772701025009, 0.038836415857076645, -0.023676719516515732, 0.05701005831360817, 0.025491084903478622, 0.007032540161162615, -0.03829660639166832, -0.0014676116406917572, 0.013187887147068977, -0.030199436470866203, -0.014447446912527084, -0.01671915128827095, 0.0009718475630506873, -0.04987255483865738, -0.031698912382125854, -0.08055182546377182, -0.030319394543766975, -0.05317140370607376, -0.02252212166786194, -0.006980058737099171, 0.013690211810171604, 0.07077524811029434, -0.029449699446558952, 0.01184585690498352, -0.0419253371655941, 0.05245165526866913, -0.002453516935929656, -0.04180537909269333, 0.017828764393925667, -0.049482692033052444, 0.013615237548947334, -0.024696361273527145, 0.010128957219421864, -0.014582399278879166, 0.048073187470436096, 0.0048320600762963295, 0.04099566116929054, -0.026630684733390808, 0.06411757320165634, -0.002841506153345108, 0.033198390156030655, 0.002371045760810375, -0.056560218334198, 0.01931324414908886, 0.016209330409765244, -0.027575355023145676, 0.006485231686383486, 0.04405459016561508, 0.03178888186812401, 0.04699356481432915, 0.012820515781641006, 0.01716899499297142, 0.008389565162360668, 0.005495578050613403, -0.048852913081645966, -0.06393763422966003, -0.04813316464424133, 0.002699055941775441, 0.0029333489947021008, 0.018968366086483, 0.01427500694990158, -0.031548965722322464, -0.0462438240647316, -0.07323438674211502, 0.0035799979232251644, -0.0011789626441895962, -0.008232120424509048, 0.023601744323968887, 0.05940921977162361, 0.005371870938688517, -0.002682186895981431, -0.002161119133234024, 0.05671016499400139, 0.018638480454683304, -0.03301845118403435, 0.020782731473445892, 0.005525567568838596, 0.018758438527584076, -0.025940926745533943, -0.013727698475122452, -0.010661271400749683, 0.03415805101394653, 0.010061481036245823, 0.002294197678565979, -0.030034495517611504, 0.00872694794088602, -0.022237222641706467, -0.022687064483761787, -0.015077226795256138, -0.0198830459266901, -0.00429974589496851, 0.004224772099405527, 0.010406360030174255, -0.03607738018035889, -0.033378325402736664, 0.01628430373966694, 0.03208877518773079, 0.00828460231423378, -0.0397660918533802, 0.0026934328489005566, -0.05287150666117668, -0.053891152143478394, -0.04954267293214798, -0.018323590978980064, 0.04090569168329239, 0.0007159995730035007, 0.01977808214724064, -0.029269762337207794, -0.010361376218497753, 0.010683762840926647, 0.0011602191952988505, -0.022732049226760864, 0.029404714703559875, -0.011216077022254467, -0.00835207849740982, 0.017438899725675583, 0.0033363329712301493, 0.02325686626136303, 0.030289405956864357, 0.0301094688475132, -0.039256270974874496, -0.004697107244282961, -0.014852304942905903, 0.050052493810653687, -0.006717650219798088, -0.01565452478826046, -0.013000452890992165, 0.012295699678361416, -0.0198830459266901, 0.008831910789012909, 0.007767283357679844, 0.0257010105997324, 0.029059836640954018, 0.020557809621095657, 0.02277703396975994, 0.03781677410006523, -0.030334390699863434, -0.024231525138020515, -0.009169292636215687, 0.040815725922584534, -0.024441450834274292, -0.023826666176319122, 0.0032407415565103292, -0.015624535270035267, 0.014102566987276077, -0.02126256376504898, -0.02646574378013611, 0.01761883683502674, -0.00596791272982955, 0.008606989867985249, -0.008434549905359745, 0.03484781086444855, 0.014829813502728939, -0.008839407935738564, -0.009056832641363144, -0.008891889825463295, 0.01085620280355215, 0.017064031213521957, -0.03370821103453636, -0.004464688245207071, -0.010706255212426186, -0.049932535737752914, -0.017124010249972343, 0.10184437781572342, -0.039136312901973724, 0.009446695446968079, -0.04090569168329239, -0.020887693390250206, -0.07539363205432892, -0.03280852362513542, 0.013180390000343323, -0.001184585620649159, -0.035657528787851334, 0.0602189376950264, -0.027080528438091278, 0.01701904647052288, -0.05503075197339058, 0.01734893210232258, -0.009686611592769623, 0.054940782487392426, 0.020182941108942032, -0.04039587080478668, -0.06525717675685883, -0.011853354051709175, -0.017243968322873116, -0.002181736985221505, 0.024666372686624527, -0.025925932452082634, -0.03175889328122139, -0.0726945772767067, -0.008614487014710903, 0.04240516945719719, 0.008966864086687565, -0.006830111145973206, 0.0016269308980554342, 0.000470226164907217, -0.007186236325651407, -0.013112913817167282, -0.0059641641564667225, 0.03529765456914902, -0.018113665282726288, 0.02780027687549591, -0.0270355436950922, 0.004056081175804138, -0.01718398928642273, -0.07365424185991287, 0.005971661303192377, -0.0148073211312294, 0.037007056176662445, 0.009739093482494354, -0.011366024613380432, -0.03436797857284546, 0.023751692846417427, -0.026990558952093124, 0.020092971622943878, 0.015444598160684109, -0.01670415699481964, 0.00897436123341322, -0.008119660429656506, -0.04306493699550629, -0.009784078225493431, -0.05425102636218071, 0.002927725901827216, 0.04555406793951988, 0.04165542870759964, 0.021817369386553764, 0.05170191824436188, 0.031548965722322464, 0.011725898832082748, 0.0041872854344546795, -0.0322687141597271, 0.04585396125912666, 0.037157002836465836, -0.01025641243904829, 0.04636378213763237, -0.04198531433939934, -0.007186236325651407, 0.00524441571906209, -0.011051135137677193, -0.03418804332613945, -0.0072574615478515625, 0.00379742169752717, 0.002389789093285799, -0.006290299817919731, 0.02645074762403965, 0.05877944082021713, 0.04633379355072975, 0.011553458869457245, 0.020242920145392418, -0.04819314554333687, -0.02613585814833641, 0.006204079836606979, 0.02186235412955284, -0.046903595328330994, 0.008277105167508125, -0.02372170239686966, -0.012100767344236374, -0.013105415739119053, -0.027890244498848915, 0.03100915439426899, -0.023946624249219894, 0.03949618712067604, -0.009851554408669472, -0.05269157141447067, 0.06231820210814476, -0.028085175901651382, 0.06609687954187393, -0.00592292845249176, -0.024951273575425148, -0.025356130674481392, -0.0009015596588142216, -0.018053686246275902, 0.050532326102256775, 0.06723648309707642, -0.03646724671125412, -0.008906885050237179, -0.03157895430922508, -0.027140507474541664, -0.006485231686383486, 0.0419253371655941, -0.000604944652877748, -0.01126106083393097, 0.07599341869354248, 0.012753039598464966, 0.008479533717036247, 0.027620339766144753, -0.01261808630079031, -0.006117860320955515, -0.003465662943199277, 0.0017778156325221062, 0.0016803498147055507, -0.06543711572885513, -0.0173039473593235, -0.008209628984332085, -0.021382521837949753, -0.026090873405337334, 0.0035368879325687885, 0.020242920145392418, -0.008951868861913681, -0.0562303327023983, 0.024726351723074913, -0.04576399177312851, -0.020032992586493492, 0.031998809427022934, 0.007609838154166937, 0.004224772099405527, 0.0026540716644376516, -0.01535462960600853, 0.008299597539007664, -0.06303795427083969, 0.02217724360525608, 0.002820888301357627, -0.05913931503891945, 0.0602189376950264, -0.0021123860497027636, 0.003302594879642129, -0.015017247758805752, -0.024111567065119743, 0.04603390023112297, -0.026390768587589264, -0.00604663509875536, -0.031698912382125854, 0.039466194808483124, 0.026645680889487267, 0.014792325906455517, 0.01976308785378933, -0.037186991423368454, -0.01321787666529417, -0.020242920145392418, -0.023226875811815262, 0.03316839784383774, 0.010451344773173332, 0.02310691773891449, -0.0013720201095566154, -0.0026465742848813534, -0.0400959774851799, 0.01977808214724064, -0.021517474204301834, 0.019178291782736778, 0.04987255483865738, -0.019073328003287315, -0.014604891650378704, 0.00874194223433733, -0.07311442494392395, -0.02721548080444336, 0.010496328584849834, -0.023316845297813416, 0.04132554680109024, 0.01623932085931301, 0.022986959666013718, 0.05665018409490585, -0.02187734842300415, 0.013780180364847183, -0.04198531433939934, -0.002571600489318371, 0.011448496021330357, -0.026225827634334564, 0.010076475329697132, 0.0419253371655941, 0.020587798207998276, 0.02872995100915432, -0.045524075627326965, 0.016224324703216553, -0.028520025312900543, 0.0065527078695595264, -0.01581946760416031, -0.006706404499709606, -0.03202879801392555, -0.05242166295647621, -0.038986362516880035, 0.0019661872647702694, 0.01901334896683693, 0.01931324414908886, -0.02946469374001026, 0.002893987810239196, -0.02949468418955803, 0.015347132459282875, -0.0071974825114011765, -0.015849456191062927, -0.015399613417685032, 0.03757685795426369, -0.03238867223262787, 0.0026596947573125362, -0.030574306845664978, -0.02855001389980316, -0.05104214698076248, 0.016614189371466637, 0.01761883683502674, 0.008839407935738564, 0.014672367833554745, 0.005761734675616026, -0.008232120424509048, -0.006575200241059065, 0.008119660429656506, -0.017228974029421806, -0.007246215362101793, 0.01306043192744255, 0.0022023546043783426, -0.04084571450948715, 0.01526466105133295, -0.03757685795426369, 0.022702058777213097, 0.008944371715188026, 0.015324640087783337, 0.022237222641706467, 0.013802672736346722, -0.013112913817167282, 0.004839557223021984, 0.007992204278707504, 0.012288201600313187, -0.01685410551726818, -0.022852007299661636, 0.019838061183691025, 0.011336035095155239, -0.023796677589416504, -0.030304400250315666, 0.011336035095155239, 0.029404714703559875, -0.022852007299661636, 0.0057767294347286224, 0.017693812027573586, 0.002880867337808013, 0.02675064280629158, -0.0074149067513644695, -0.01689908839762211, 0.0008603240712545812, 0.01292547956109047, -0.040335893630981445, -0.008037189021706581, -0.037786781787872314, 0.030274411663413048, -0.029659627005457878, -0.0045434110797941685, 0.01255061011761427, 0.000885159126482904, 0.031099122017621994, 0.012872997671365738, -0.0033382074907422066, 0.001309229526668787, -0.009244266897439957, 0.030589301139116287, 0.0020992658101022243, 0.017888743430376053, 0.020272908732295036, 0.008539512753486633, 0.0019699360709637403, 0.03505773842334747, 0.05149199068546295, 0.004877044353634119, -0.006732644978910685, -0.024891294538974762, -0.041745398193597794, 0.030499331653118134, 0.0036137360148131847, 0.02871495671570301, 0.02947968989610672, -0.041415512561798096, 0.003070176113396883, -0.008367073722183704, -0.005491829011589289, -0.039586152881383896, -0.02871495671570301, -0.0008968738256953657, -0.03649723529815674, 0.003849903354421258, 0.03691708669066429, -0.014035090804100037, -0.008209628984332085, -0.022747043520212173, 0.0010702506406232715, -0.030154453590512276, -0.008591994643211365, 0.030589301139116287, -0.027755292132496834, -0.03694707900285721, -0.012715552933514118, 0.01055630762130022, -0.00964162778109312, -0.0014629258075729012, 0.018413560464978218, 0.021997306495904922, 0.006174090318381786, 0.02418654039502144, 0.0059341746382415295, 0.028639983385801315, 0.006057881284505129, -0.0009484182810410857, 0.035807475447654724, 0.004663368687033653, -0.010766234248876572, -0.028055187314748764, -0.0007797272992320359, -0.03172890096902847, -0.00026732837432064116, 0.0319388285279274, 0.00046858610585331917, -0.028969867154955864, 0.015167195349931717, -8.938279643189162e-05, 0.06897587329149246, 0.020452845841646194, 0.020482836291193962, 0.002605338813737035, -0.005229420959949493, -0.027905238792300224, 0.002648448571562767, 0.011583448387682438, -0.03895637392997742, 0.013712704181671143, -0.016374273225665092, 0.022372175008058548, -0.03661719337105751, 0.018278606235980988, 0.011673416942358017, 0.009589145891368389, 0.03037937358021736, 0.04876294359564781, -0.009139303117990494, 0.005671766120940447, 0.002022417727857828, 0.03469786420464516, 0.018953369930386543, 0.0009296748321503401, 0.024351483210921288, -0.01581946760416031, 0.006616435945034027, 0.044594403356313705, -0.016989057883620262, 0.016029393300414085, -0.04273505136370659, 0.0005135703831911087, -0.01734893210232258, -0.033678218722343445, 0.015287153422832489, 0.027140507474541664, 0.019793076440691948, 0.02051282487809658, 0.0015144703211262822, 0.023976614698767662, -0.01420753076672554, -0.0037355683743953705, 0.027425408363342285, -0.019403213635087013, 0.0135177718475461, 0.04021593555808067, -0.03307843208312988, -0.026720654219388962, -0.01701904647052288, 0.012783029116690159, -0.0194631926715374, -0.021322542801499367, -0.023001953959465027, 0.0077447909861803055, 0.01300795003771782, -0.026945576071739197, 0.03145899623632431, -0.023511776700615883, -0.039736103266477585, 0.0031770137138664722, -0.027725303545594215, 0.026825617998838425, -0.0019530669087544084, 0.00949917733669281, -0.012055783532559872, 0.02433648705482483, -0.012505626305937767, -0.02252212166786194, -0.055870458483695984, 0.022687064483761787, -0.04966263100504875, -0.030769238248467445, 0.051282063126564026, -0.02917979471385479, 0.005675514694303274, 0.04495427757501602, 0.0061253574676811695, -0.019178291782736778, 0.01566951908171177, 0.008921879343688488, 0.028235124424099922, 0.008891889825463295, 0.006286551244556904, -0.013270358555018902, -0.001209889305755496, -0.00865197367966175, -0.037157002836465836, 0.015219676308333874, -0.014874797314405441, 0.008577000349760056, -0.021202584728598595, -0.004682112485170364, 0.019103318452835083, -0.022402163594961166, 0.018788428977131844, 0.03202879801392555, 0.013180390000343323, 0.011238569393754005, -0.025626037269830704, 0.015384619124233723, 0.004284751135855913, 0.010563804768025875, -0.011958317831158638, -0.01422252506017685, 0.0013120410731062293, 0.009814067743718624, -0.0007361487951129675, 0.018938375636935234, -0.012685563415288925, 0.002579097868874669, -0.02934473566710949, 0.005375619977712631, -0.0060241431929171085, 0.03724697232246399, -0.01839856430888176, -0.012513123452663422, -0.00474209152162075, -0.025296151638031006, -0.03070925921201706, 0.006751388777047396, -0.00189027632586658, -0.009169292636215687, 0.045973919332027435, 0.010181439109146595, 0.014215027913451195, 0.017258962616324425, 0.009904036298394203, 0.03802669793367386, 0.0008383005624637008, -0.004869546741247177, -0.009004350751638412, -0.01746889017522335, -0.002412281231954694, 0.007977209985256195, 0.02175739035010338, -0.011568454094231129, -0.028475040569901466, -0.022417159751057625, -0.017543863505125046, -0.020902689546346664, 0.0026971816550940275, -9.998455789173022e-05, 0.029419710859656334, 0.010391365736722946, 0.007947220467031002, -0.10922180116176605, -0.04213526099920273, 0.035177696496248245, -0.0334383025765419, -0.019373223185539246, -0.016344282776117325, 0.002910856856033206, -0.00880941841751337, 0.018458543345332146, -0.019508177414536476, -0.001326098688878119, -0.05910932645201683, -0.0355975478887558, -0.011006150394678116, -0.016974063590168953, 0.01929824985563755, -0.018458543345332146, 0.03268856555223465, 0.029059836640954018, 0.016344282776117325, -0.05629030987620354, 0.016779130324721336, -0.022417159751057625, 0.043094925582408905, 0.01731894165277481, -0.017408911138772964, -0.007954717613756657, 0.026480738073587418, 0.01087869517505169, -0.02280702255666256, 0.023961618542671204, 0.002652197377756238, -0.001782501582056284, 0.018173644319176674, -0.00965662207454443, -0.007977209985256195, -0.01689908839762211, -0.004453442525118589, 0.005274405237287283, 0.0007108451100066304, -0.034727852791547775, -0.04540411755442619, 0.049902547150850296, -0.05335133895277977, 0.040965672582387924, -0.023316845297813416, -0.015864450484514236, 0.024831315502524376, -0.038086678832769394, -0.014290002174675465, 0.0018068680074065924, 0.00760608958080411, -0.018728449940681458, 0.01473984494805336, 0.014537415467202663, 0.020632782950997353, -0.04714351147413254, -0.006807618774473667, -0.015429602935910225, -0.024726351723074913, -0.04030590131878853, 0.04165542870759964, 0.03490779176354408, -0.07683312892913818, 0.005128206219524145, -0.010818716138601303, -0.016509225592017174, 0.03706703707575798, 0.03370821103453636, -0.0018846533494070172, 0.01947818696498871, 0.016224324703216553, 0.01527965534478426, -0.01625431515276432, 0.013877646066248417, 0.008082172833383083, 0.011058632284402847, 0.013165394775569439, -0.01593942567706108, -0.0562303327023983, 0.03069426491856575, -0.01578947715461254, 0.01230319682508707, -0.020767735317349434, -0.01518968679010868, -0.03286850452423096, -0.01836857572197914, 0.0007263084407895803, -0.004134804010391235, 0.004228521138429642, 0.02675064280629158, -0.012880494818091393, 0.0073174405843019485, -0.0015922555467113853, -0.007381168194115162, 0.020572803914546967, 0.007092519197613001, -0.007699806708842516, 0.02157745324075222, 0.017049036920070648, 0.036407265812158585, 0.015047237277030945, 0.0331084206700325, 0.02232719026505947, -0.03391813486814499, -0.027740297839045525, 0.01898336037993431, 0.00680387020111084, -0.007992204278707504, 0.017528869211673737, -0.0050307405181229115, -0.014402462169528008, 0.023016950115561485, 0.006054132245481014, 0.021097620949149132, 0.0312790609896183, 0.008681963197886944, 0.03463788330554962, -0.0011142977746203542, -0.011073626577854156, 0.009994004853069782, -0.029059836640954018, -0.019493181258440018, 0.003109537297859788, 0.0009390465565957129, 0.03358825296163559, 0.028609992936253548, -0.009626632556319237, 0.03772680461406708, -0.010871198028326035, 0.0009802820859476924, 0.03997601941227913, -0.01929824985563755, 0.06609687954187393, -0.00018204569641966373, -0.01117859035730362, 0.009866548702120781, -0.020182941108942032, -0.010166443884372711, 0.02264207974076271, -0.006200331263244152, 0.013277855701744556, 0.011590945534408092, -0.02006298303604126, -0.007677314803004265, -0.02006298303604126, 0.0051619443111121655, -0.008397063240408897, -0.03373819962143898, 0.049302756786346436, -0.001153658959083259, -0.02112760953605175, 0.008412057533860207, 0.0756935253739357, -0.019253265112638474, 0.08157146722078323, -0.05521069094538689, 0.0013064180966466665, -0.013315342366695404, 0.007917230948805809, 0.022087274119257927, 0.07431400567293167, 0.013780180364847183, 0.009649124927818775, 0.038056690245866776, -0.03388814628124237, -0.027170496061444283, -0.02964463084936142, -0.018818417564034462, 0.020003003999590874, -0.004918279591947794, 0.006927576847374439, -0.023736698552966118, -0.000995276845060289, 0.04165542870759964, 0.02902984619140625, 0.011898338794708252, 0.010128957219421864, 0.006605189759284258, 0.019328240305185318, -0.03355826064944267, 0.0038124164566397667, 0.004490929190069437, 0.03724697232246399, 0.02433648705482483, -0.025356130674481392, -0.03157895430922508, 0.020467840135097504, -0.009409208782017231, 0.01643425226211548, 0.018503528088331223, -0.012138254009187222, -0.005716750398278236, 0.029269762337207794, -0.018803423270583153, -0.01473234687000513, 0.019538166001439095, -0.010916181840002537, -0.02172739990055561, 0.04939272254705429, -0.02856500819325447, 0.039736103266477585, 0.034128062427043915, -0.009124308824539185, -0.0037261967081576586, 0.04516420140862465, 0.002209851983934641, 0.009416705928742886, -0.0027103021275252104, 0.011748391203582287, 0.02189234271645546, 7.509092392865568e-05, 0.007512372452765703, -0.008097168058156967, -0.002980207558721304, 0.020032992586493492, -0.007100016809999943, 0.022896992042660713, 0.015167195349931717, -0.02172739990055561, -0.03298846259713173, -0.05035238713026047, -0.03811666741967201, 0.0203778725117445, -0.030469343066215515, 0.002738417126238346, 0.0027740297373384237, 0.011530966497957706, -0.014357478357851505, 0.01578947715461254, 0.007253712974488735, 0.024651378393173218, 0.0001301497977692634, 0.0006935074343346059, 0.0069613149389624596, 0.019553160294890404, -0.019223276525735855, 0.036227330565452576, 9.553298878017813e-05, -0.023196887224912643, 0.0029127311427146196, -0.006331535521894693, -0.007737293839454651, -0.015249665826559067, -0.030889196321368217, -0.004955766722559929, 0.024036593735218048, 0.045674026012420654, 0.017288953065872192, -0.015909435227513313, -0.007167492993175983, 0.009296747855842113, 0.018968366086483, 0.014657373540103436, 0.016344282776117325, 0.02310691773891449, -0.0022848257794976234, 0.024861304089426994, -0.014649876393377781, 0.0017084649298340082, -0.016299299895763397, -0.008112162351608276, 0.020887693390250206, -0.013660222291946411, -0.014679865911602974, -0.0033063434530049562, 0.00296146422624588, -0.028160151094198227, 0.0038873902522027493, 0.015534566715359688, 0.006683912128210068, 0.013120410963892937, 0.042645085602998734, 0.004753337241709232, -0.02658570185303688, 0.03208877518773079, -0.048732955008745193, -0.019403213635087013, -0.0297795832157135, -0.018113665282726288, -0.03751687705516815, 0.018758438527584076, -0.018818417564034462, -0.0014751090202480555, 0.03541761264204979, -0.013067929074168205, -0.006012897007167339, -0.0008532953215762973, 0.017109015956521034, -0.03136902675032616, -0.007002550642937422, 0.0173039473593235, -0.017513874918222427, 0.010961166583001614, -0.03055931068956852, 0.021637432277202606, 0.002399160759523511, 0.012768033891916275, 0.005416855216026306, 0.0007905047386884689, 0.00156695197802037, -0.02217724360525608, 0.0191333070397377, -0.0017553234938532114, 0.027725303545594215, 0.025760989636182785, -0.008067178539931774, -0.010661271400749683, 0.020542815327644348, 0.011006150394678116, 0.003379442961886525, -0.009559156373143196, 0.0185485128313303, 0.004172290675342083, 0.006429001223295927, -0.022252216935157776, 0.0288649033755064, 0.022312195971608162, 0.004104814492166042, 0.011673416942358017, 0.011036139912903309, 0.026240821927785873, 0.00688259257003665, 0.04372470825910568, -0.0006321226828731596, 0.01087869517505169, 0.012348180636763573, 0.01307542622089386, -0.03727696090936661, 0.005368122365325689, -0.01703404262661934, -0.031848859041929245, 0.011306045576930046, 0.02540111541748047, -0.0244564451277256, 0.011193584650754929, 0.024441450834274292, 0.010751239955425262, 0.014574902132153511, -0.013862651772797108, 0.014245017431676388, -0.020317893475294113, 0.009844057261943817, -0.009806569665670395, -0.0018912134692072868, 0.001593192806467414, 0.01658419892191887, 0.0039061338175088167, -0.011096118949353695, 0.027095522731542587, 0.07821264117956161, -0.004022343084216118, -0.0003399592242203653, 0.017513874918222427, -0.0039586154744029045, -0.009386716410517693, 0.006399011705070734, 0.008666968904435635, -0.014319991692900658, 0.018608491867780685, -0.001864972640760243, -0.011755888350307941, -0.024546414613723755, 0.008944371715188026, -0.0011545962188392878, 0.0006321226828731596, -0.015879446640610695, 0.04867297410964966, -0.010211428627371788, -0.004738342482596636, 0.011186087504029274, 0.017663821578025818, 0.00828460231423378, 0.00913180597126484, -0.00180405646096915, -0.016824115067720413, 0.016944073140621185, -0.027020549401640892, 0.00760608958080411, 0.03814665600657463, 0.008539512753486633, -0.033948127180337906, 0.002828385680913925, 0.04138552397489548, 0.0026878099888563156, 0.031249070540070534, -0.00994152296334505, 0.026870600879192352, 0.003943620715290308, -0.004768332000821829, 0.010001501999795437, -0.016494231298565865, -0.010608789511024952, 0.0150547344237566, -0.030199436470866203, 0.05164193734526634, 0.010428852401673794, -0.0011827113339677453, -0.012400662526488304, -0.029419710859656334, -0.025341136381030083, -0.001282988698221743, -0.002730919746682048, -0.005514321383088827, -0.0024216528981924057, 0.01658419892191887, 0.03523767367005348, 0.012190735898911953, 0.03904634341597557, 0.03967612236738205, 0.007557356730103493, -0.00694632064551115, -0.029824567958712578, 0.016299299895763397, -0.049632638692855835, -0.057070039212703705, 0.013795174658298492, -0.009094319306313992, -0.006402760744094849, -0.0327785350382328, 0.006211577448993921, 0.01823362335562706, 0.009491680189967155, 0.004918279591947794, 0.01556455623358488, 0.02019793540239334, 0.027875250205397606, 0.028954872861504555, 0.022267211228609085, -0.03325836732983589, -0.012280704453587532, 0.024201534688472748, -0.012280704453587532, 0.009701606817543507, -0.016464240849018097, 0.0021648677065968513, -0.0061553469859063625, 0.022567106410861015, -0.03133903816342354, 0.03232869133353233, 0.014477436430752277, -0.014529918320477009, 0.02156245894730091, 0.01836857572197914, -0.014859802089631557, -0.006796373054385185, -0.023676719516515732, -0.0076735662296414375, -0.0003448793722782284, -0.016974063590168953, -0.000370183028280735, 0.011988307349383831, -0.02021292969584465, 0.020587798207998276, 0.0030776734929531813, -0.012663071043789387, -0.0222072321921587, -0.010833710432052612, -0.020167946815490723, -0.0023373074363917112, -0.019703108817338943, 0.020572803914546967, 0.0014394965255632997, 0.027575355023145676, 0.011485982686281204, 0.04267507418990135, -0.01749887876212597, -0.018518522381782532, -0.020003003999590874, -0.0389263853430748, 0.025341136381030083, 0.02157745324075222, -0.015242168679833412, -0.009004350751638412, 0.005615535657852888, 0.0004409395332913846, 0.026570705696940422, -0.013900138437747955, -0.026705659925937653, -0.020452845841646194, 0.021622437983751297, -0.006466488353908062, 0.03802669793367386, 0.001696281717158854, 0.023346833884716034, 0.014852304942905903, -0.008959366008639336, -0.006237818393856287, 0.024381471797823906, -0.024201534688472748, -0.03142900764942169, 0.02402159757912159, -0.020242920145392418, -0.014559907838702202, 0.03130904957652092, -0.014424954541027546, 0.03448793664574623, 0.007452393416315317, 0.0349377803504467, -0.0027740297373384237, -0.018938375636935234, -0.027920234948396683, 0.02765032835304737, 0.01459739450365305, -0.00379742169752717, -0.01566951908171177, 0.0076435767114162445, 8.381834049941972e-05, 0.00964162778109312, -0.0019137056078761816, -0.014177541248500347, 0.0037786783650517464, 0.015182189643383026, -0.015024744905531406, 0.028370076790452003, -0.017049036920070648, -0.01715400069952011, -0.013787677511572838, -0.0015088472282513976, 0.007032540161162615, -0.014252514578402042, 0.010938674211502075, 0.021022647619247437, -0.011538464576005936, 0.03904634341597557, 0.009011847898364067, -0.006597692146897316, -0.015399613417685032, -0.0035874953027814627, 0.027995208278298378, -0.022372175008058548, -0.017723800614476204, 0.019823066890239716, 0.03439796715974808, 0.0007548921857960522, -0.007932225242257118, -0.0078047700226306915, -0.005124457646161318, 0.005907933693379164, -0.025716004893183708, 0.018923381343483925, -0.027095522731542587, -0.0028396318666636944, 0.031668923795223236, 0.037157002836465836, 0.04609387740492821, 0.029434705153107643, 0.046423763036727905, -0.05110212787985802, 0.02673564851284027, -0.02355676144361496, -0.0073549277149140835, -0.023751692846417427, -0.002346679102629423, -0.009581648744642735, 0.00874194223433733, -0.0148073211312294, 0.015084723941981792, -0.005499326623976231, 0.0015725749544799328, 0.009806569665670395, 0.020752741023898125, -0.007242466788738966, 0.02887989953160286, 0.0009624758386053145, -0.0064252526499331, -0.0019736846443265676, 0.04393463209271431, 0.011028642766177654, -0.028055187314748764, 0.00796971283853054, -0.014372472651302814, -0.009139303117990494, -0.026480738073587418, -0.0163892675191164, -0.00010631047189235687, 0.02462138794362545, -0.01901334896683693, -0.007789775263518095, -0.01475483924150467, 0.0037580605130642653, -0.00565677136182785, 0.004779578186571598, 0.019958019256591797, 0.002230469835922122, -0.03208877518773079, -0.0002605338813737035, -0.023481786251068115, 0.05026242136955261, -0.0022229724563658237, -0.0016522345831617713, 0.004922028630971909, 0.021547462791204453, -0.005585546139627695, 0.059649135917425156, -0.006623933091759682, 0.0024572655092924833, 0.005109462887048721, -0.0047645834274590015, 0.019328240305185318, -0.022312195971608162, 0.018728449940681458, 0.013720201328396797, -0.03628730773925781, -0.04615385830402374, 0.015114713460206985, 0.00835207849740982, -0.0097315963357687, 0.016989057883620262, 0.012655573897063732, -0.024696361273527145, 0.0032351184636354446, 0.008209628984332085, -0.019358228892087936, 0.001381391892209649, -0.012378170154988766, 0.0037786783650517464, -0.0233768243342638, -0.02658570185303688, 0.03466787561774254, 0.009769083000719547, 0.018923381343483925, 0.026045890524983406, 0.001790936104953289, 0.014552409760653973, -0.009551659226417542, -0.003521893173456192, -0.0004514827160164714, -0.0005131018115207553, -0.023031944409012794, -0.02156245894730091, -0.009949020110070705, -0.029434705153107643, -0.023916635662317276, 0.011695909313857555, 0.0019108941778540611, -0.02810017205774784, -0.015332137234508991, -0.00041329293162561953, 0.007051283493638039, 0.01557955052703619, 0.03430800139904022, -0.003754311939701438, 0.02007797732949257, 0.016779130324721336, -0.02082771435379982, -0.0005388740100897849, 0.00044867119868285954, 0.010226422920823097, -0.018923381343483925, -0.01626930944621563, 0.026360780000686646, -0.007819765247404575, -0.035177696496248245, 0.013937625102698803, 0.0022923231590539217, -0.019388219341635704, 0.03538762405514717, -0.020617788657546043, -0.005431849975138903, 0.018638480454683304, -0.011800872161984444, -0.0031563960947096348, -0.019403213635087013, 0.019388219341635704, 0.0027590349782258272, 0.017363926395773888, 0.007107513956725597, -0.001661606365814805, 0.007418655324727297, 0.03907633200287819, -0.019073328003287315, -0.00474209152162075, -0.012595594860613346, 0.03556755930185318, 0.024276508018374443, 0.025865953415632248, -0.005225672386586666, -0.008299597539007664, -0.04303494840860367, 0.02645074762403965, -0.004817065317183733, 0.04267507418990135, -0.018188638612627983, 0.0016306795878335834, -0.0028789930511265993, 0.03994602710008621, 0.030769238248467445, -0.0008054994978010654, -0.010728747583925724, 0.006995053496211767, 0.004768332000821829, -0.02082771435379982, 0.00023909605806693435, 0.013795174658298492, 0.03814665600657463, 0.0018153025303035975, 0.008959366008639336, -0.029074830934405327, -0.002264208160340786, 0.008472036570310593, 0.04831309989094734, -0.00020067200239282101, -0.012048286385834217, -0.0017497005173936486, 0.0036568460054695606, 0.015399613417685032, 0.02219223789870739, -0.026105869561433792, 0.021202584728598595, 0.0141400545835495, 0.0007361487951129675, -0.008239618502557278, -0.009371722117066383, -0.0437546968460083, 0.0064514935947954655, 0.024546414613723755, 0.0077148014679551125, -0.041865356266498566, -0.012453144416213036, 0.01625431515276432, 0.01429749932140112, -0.010436349548399448, -0.006781378295272589, -0.007159995846450329, -0.05581047758460045, 0.003992353565990925, 0.015062231570482254, -0.004809567704796791, -0.00370183028280735, -0.011268558911979198, 0.03904634341597557, 0.014657373540103436, 0.016779130324721336, 0.04861299693584442, 0.007107513956725597, 0.008944371715188026, 0.028684966266155243, 0.0028789930511265993]" -How METER Group Brings a Data-Driven Approach to the Cannabis Production Industry,"kind of “cheating” by precalculating the data, the point is that we could easily do it. Not only this, but when we ran load tests on our proposed infrastructure, we were blown away by how much more traffic we could support without any service degradation. We could also eliminate all the complicated infrastructure that our Redis layer required, which was quite a load off (literally and figuratively).Grafana dashboard for the internal team showing app server load average before and after deployment of initial TimescaleDB implementation.The Achilles’ heel of this solution, an astute reader may already notice, is that we were paying for this performance in disk space.I initially brushed this off as fair trade and moved on with my life.We foundTimescaleDB’s compressionto be as good as advertised, which gave us 90%+ space savings in our underlying hypertable,but our sizable collection of uncompressed continuous aggregates grew by the day (keep reading to learn why this is a “but”...).✨Editor’s Note: We’ve put together resources aboutcontinuous aggregatesandcompressionto help you get started.The “final” solutionAROYA has been on an amazing trajectory since launch, and our growth was evident in the months before and after we deployed our initial TimescaleDB implementation. Thousands upon thousands of sensors hitting the field was great for business – but bad for our disk space.Our monitoring told a good story of how long our chart requests were taking, as 95%+ of them were under 1 second, and virtually all were under 2 seconds. Still, within a few months of deployment, we needed to upgrade tiers in Timescale Cloud solely to keep up with our disk usage.✨Editor’s Note:""Timescale Cloud"" is known as ""Managed Service for TimescaleDB"" as of September 2021.We had adequate computing resources for our load, but 1 TB was no longer enough, so we doubled our total instance size to get another 1 TB. While everything was running smoothly, I felt a dark cloud overhead as our continuous aggregates grew and grew in size.The clock was ticking, and before we knew it, we were coming up on 2 TB of readings. So, we had to take action.We had attended a webinar hosted by Timescale and heard someone make a relatively off-hand comment about rolling their own compression for continuous aggregates. This planted a seed that was all we needed to get going.The plan was",https://www.timescale.com/blog/how-meter-group-brings-a-data-driven-approach-to-the-cannabis-production-industry/,492,"[0.018410813063383102, 0.003920115064829588, 0.05716961994767189, -0.0008470385218970478, 0.04597364738583565, 0.031452443450689316, 0.0063225203193724155, -0.010311275720596313, -0.025671416893601418, 0.02092761918902397, 0.02336815744638443, -0.02071407251060009, -0.011813732795417309, -0.044661857187747955, 0.04392969608306885, 0.024207092821598053, -0.0013832896947860718, -0.009952821768820286, -0.042556893080472946, 0.016397370025515556, 0.002947713015601039, 0.026967952027916908, 0.030888067558407784, -0.00739025603979826, -0.016809210181236267, -0.029271211475133896, -0.01393395010381937, 0.03058299981057644, 0.04591263458132744, -0.10543127357959747, -0.004236622713506222, -0.036211494356393814, -0.03831645846366882, -0.006112786941230297, 0.036150477826595306, 0.03142193704843521, 0.040909528732299805, -0.008541885763406754, 0.03419804945588112, -0.004065022338181734, -0.00974690169095993, 0.030781293287873268, 0.00669241463765502, 0.03590642660856247, -0.011973893269896507, -0.006665721070021391, -0.03303879126906395, -0.0016902637435123324, 0.011081570759415627, 0.06619960814714432, -0.031635481864213943, 0.01076124981045723, -0.0402078740298748, -0.0361199714243412, 0.014521204866468906, -0.015710968524217606, -0.014178004115819931, 0.03319132700562477, -0.015649953857064247, -0.024344373494386673, 0.030506733804941177, -0.055491749197244644, 0.019814124330878258, 0.01723630353808403, 0.00021914798708166927, 0.012599281035363674, 0.002934366464614868, 0.051678407937288284, -0.021476740017533302, 0.030674520879983902, 0.026967952027916908, 0.024847734719514847, -0.005594172049313784, -0.029423745349049568, 0.045210979878902435, -0.04380767047405243, 0.007443643175065517, 0.03910963237285614, -0.0022002982441335917, -0.006433107424527407, 0.009762154892086983, -0.005704759154468775, -0.03700466826558113, 0.014536458067595959, 0.049634456634521484, -0.0374927744269371, -0.06165410950779915, 0.0002514422230888158, 0.004476862959563732, 0.02037849836051464, 0.01202727947384119, 0.031025348231196404, -0.0019657777156680822, 0.012820454314351082, 0.017953213304281235, 0.009449460543692112, 0.00987655483186245, 0.034930210560560226, 0.0011468625161796808, 0.031452443450689316, 0.007558043114840984, -0.02745606005191803, -0.009632500819861889, -0.014345791190862656, 0.03242865949869156, -0.003988755401223898, 0.02242244966328144, 0.008770685642957687, -0.002892419695854187, 0.015955021604895592, -0.038865577429533005, -0.0057276394218206406, -0.04469236359000206, 0.015390646643936634, 0.0043052625842392445, 0.022315675392746925, -0.02411557361483574, 0.03276423364877701, -0.005372998304665089, -0.0156652070581913, -0.007264415733516216, 0.011523918248713017, -0.005819159559905529, -0.0073101758025586605, 0.016321102157235146, -0.04716340824961662, 0.02065305784344673, -0.05070219188928604, -0.06147106736898422, 0.005708572454750538, 0.04807861149311066, -0.00502598425373435, 0.0538138784468174, -0.05707809701561928, -0.013987337239086628, -0.02515280246734619, -0.039018113166093826, -0.0027284459210932255, -0.01921924203634262, -0.014055977575480938, -0.005803905893117189, -0.03169649466872215, 0.01711427792906761, -0.006806815043091774, -0.04402121528983116, 0.03126940131187439, -0.02617477811872959, 0.0626608282327652, -0.027150992304086685, -0.029179690405726433, -0.01792270503938198, 0.0013651762856170535, -0.03483869135379791, -0.057139113545417786, 0.0599457323551178, -0.04481439292430878, 0.016778703778982162, 0.04240436106920242, 0.012393360957503319, -0.0674808919429779, -0.012622160837054253, 0.015817740932106972, -0.020866606384515762, -0.007535163313150406, -0.0008541885181330144, 0.005975506268441677, -0.035540346056222916, -0.05845090001821518, -0.1151934266090393, -0.024771466851234436, -0.03944520652294159, -0.04331956058740616, -0.006440734025090933, 0.024191839620471, 0.039292674511671066, 0.0005572245572693646, -0.03319132700562477, -0.058847490698099136, 0.03073553368449211, -0.0016978903440758586, -0.05308171734213829, 0.03221511095762253, -0.014612725004553795, 0.03422855585813522, -0.05506465584039688, 0.005270038265734911, -0.056315429508686066, 0.03468615561723709, 0.02098863199353218, 0.054942626506090164, -0.04621770232915878, 0.05442401394248009, 0.015451660379767418, 0.025244321674108505, -0.013537363149225712, -0.04054344817996025, 0.04545503109693527, 0.018502334132790565, -0.03392348811030388, 0.025839203968644142, 0.05668151006102562, 0.02092761918902397, 0.0735822394490242, 0.007985137403011322, 0.010227382183074951, -0.007199589163064957, 0.00807665754109621, -0.0046980371698737144, -0.034655649214982986, -0.030506733804941177, 0.005453078541904688, 0.012858588248491287, -0.0003734691417776048, 0.00030244566733017564, -0.03535730391740799, 0.0006435014074668288, -0.04469236359000206, -0.02124794013798237, -0.005937372799962759, -0.004232809413224459, 0.024024052545428276, 0.059244077652692795, 0.005155637860298157, -0.03782834857702255, -0.003927742131054401, 0.04856672137975693, 0.0028142461087554693, -0.008450365625321865, 0.031910043209791183, 0.02303258329629898, 0.02568667009472847, -0.024268105626106262, -0.036974161863327026, -3.303903213236481e-05, 0.009487594477832317, 0.0017264904454350471, 0.010410422459244728, -0.015848247334361076, -0.0010238823015242815, -0.04094003513455391, -0.02527482807636261, -0.0016063702059909701, -0.023215623572468758, -0.02120218053460121, -0.010090102441608906, 0.0334048718214035, -0.02881360985338688, -0.0680910274386406, 0.023932533338665962, 0.06894521415233612, -0.024847734719514847, -0.019081961363554, -0.0020858978386968374, -0.027166245505213737, -0.03865203261375427, -0.05820684880018234, -0.016854969784617424, 0.014566965401172638, 0.00848087202757597, 0.01874638721346855, 0.012256080284714699, -0.032672710716724396, -0.024786721915006638, -0.0004785743949469179, -0.03413703665137291, 0.027379794046282768, 0.04353310912847519, -0.02657136507332325, -0.003563567763194442, -0.0006782981799915433, 0.05417995899915695, 0.020347991958260536, 0.03309980407357216, -0.034167543053627014, -0.0066809747368097305, 0.007470336277037859, 0.023139357566833496, 0.005506465211510658, -0.016992250457406044, 0.009144393727183342, 0.008015643805265427, -0.04264841228723526, 0.022788530215620995, 0.0018942775204777718, 0.04243486747145653, 0.009022366255521774, 0.001754137221723795, 0.03563186526298523, 0.018685374408960342, -0.014650858938694, 0.012347600422799587, 0.015848247334361076, 0.05677302926778793, -0.0058763595297932625, -0.015108459629118443, 0.013499229215085506, -0.05485110729932785, -0.010677356272935867, -0.04890229552984238, -0.05378337204456329, 0.008396978490054607, 0.03395399451255798, 0.021080153062939644, -0.013979710638523102, 0.018685374408960342, 0.011203598231077194, -0.026876432821154594, 0.015131339430809021, -0.023398663848638535, -0.010875650681555271, -0.0002862389665096998, 0.008839325979351997, 0.007100442424416542, 0.012850961647927761, -0.029255958274006844, -0.009357940405607224, 0.07407034933567047, -0.023459678515791893, 0.008351217955350876, -0.03923165798187256, -0.03456413000822067, -0.06717582792043686, -0.01294248178601265, 0.025290081277489662, 0.039079125970602036, 0.0024138453882187605, 0.052776649594306946, -0.007763963658362627, 0.008419858291745186, -0.03331335261464119, -0.0131178954616189, -0.01627534255385399, 0.04911584034562111, 0.028661075979471207, -0.014566965401172638, -0.06284387409687042, 0.014658485539257526, -0.010105355642735958, 0.008396978490054607, 0.01743459887802601, -0.02609851025044918, -0.026312056928873062, -0.029789825901389122, 0.006654281169176102, 0.036760613322257996, 0.004194675944745541, 0.011180717498064041, 0.007092815358191729, 0.019920896738767624, -0.00018721124797593802, -0.028462782502174377, -0.03367943316698074, 0.007916497066617012, -0.005857293028384447, 0.03602845221757889, 0.024344373494386673, 0.0008074751240201294, -0.029286464676260948, -0.01799897290766239, 0.006288200616836548, -0.006173800211399794, 0.04258739948272705, 0.03557085245847702, -0.02240719646215439, -0.021141165867447853, 0.05064117908477783, -0.045271992683410645, 0.05353931710124016, 0.02288004942238331, -0.005571292247623205, 0.04307550936937332, 0.01654990203678608, -0.024481654167175293, -0.006787748076021671, -0.09377770125865936, -0.02603749744594097, 0.0749855488538742, 0.04286196082830429, -0.00752753671258688, 0.0334048718214035, 0.04304499924182892, 0.015726221725344658, 0.006837321445345879, 0.016931237652897835, 0.03209308534860611, 0.04039091616868973, -0.010921410284936428, 0.04661428928375244, -0.05817634239792824, -0.024100320413708687, 0.01471949927508831, 0.027013711631298065, -0.03468615561723709, -0.022300422191619873, -0.008168177679181099, 0.01729731820523739, -0.002434818772599101, 0.011607811786234379, 0.06314893811941147, 0.036425039172172546, 0.006253880448639393, 0.02480197511613369, -0.06296589970588684, -0.024679947644472122, 0.01586350053548813, 0.021476740017533302, 0.012858588248491287, -0.020073430612683296, -0.02718149870634079, -0.03352690115571022, -0.016992250457406044, -0.012736561708152294, 0.04380767047405243, -0.029454251751303673, 0.03073553368449211, -0.030750786885619164, -0.037980884313583374, 0.05607137456536293, -0.023490184918045998, 0.06443022191524506, -0.03038470633327961, 0.008747805841267109, -0.008953725919127464, -0.016793956980109215, -0.05161739140748978, 0.048536211252212524, 0.053112223744392395, -0.010570582933723927, 0.013979710638523102, -0.04685834422707558, -0.022773277014493942, -0.005319611635059118, 0.001618763548322022, -0.013682270422577858, 0.0010439022444188595, 0.046370234340429306, -0.016931237652897835, -0.006982228718698025, 0.034991223365068436, -0.01670243591070175, -0.02140047401189804, 0.013072134926915169, 0.012988241389393806, 0.026068003848195076, -0.040299393236637115, -0.02403930574655533, -0.02596122957766056, -0.040787503123283386, -0.031055854633450508, 0.017739664763212204, 0.010517196729779243, -0.026556111872196198, -0.030399959534406662, 0.02269700914621353, -0.0681520402431488, -0.02881360985338688, 0.013537363149225712, -0.00947234034538269, 0.050519149750471115, -0.0021202180068939924, -0.04133662208914757, 0.0041908626444637775, -0.0579322874546051, -0.019783616065979004, 0.00567043898627162, -0.03255068510770798, 0.08602898567914963, 0.010181622579693794, -2.3609947675140575e-05, -0.012965361587703228, 0.00548358540982008, 0.02991185151040554, -0.027303526178002357, -0.015032192692160606, -0.018304040655493736, 0.02008868381381035, 0.023276638239622116, 0.013773790560662746, -0.0010782224126160145, -0.016748197376728058, 0.016946490854024887, -0.0442652702331543, -0.022986823692917824, 0.0320015624165535, -0.0060975332744419575, 0.005090811289846897, 0.006284387316554785, -0.005563665647059679, -0.025564642623066902, 0.009190153330564499, -0.04688885062932968, 0.0032070204615592957, 0.05710860341787338, -0.019661590456962585, -0.009640127420425415, 0.0003341440751682967, -0.08120892196893692, -0.019920896738767624, 0.00432814285159111, -0.0066809747368097305, 0.02358170412480831, -0.01140951830893755, 0.008686792105436325, 0.02834075503051281, 0.0007088048732839525, 0.012553520500659943, -0.0038171550258994102, -0.008907966315746307, -0.034716662019491196, -0.05982370302081108, -1.7875039702630602e-05, 0.008061404339969158, 0.032398149371147156, 0.037035174667835236, -0.04542452469468117, 0.02071407251060009, -0.014879658818244934, 0.024024052545428276, 0.002617859048768878, 0.007977510802447796, -0.029316971078515053, -0.05115979164838791, -0.02515280246734619, -0.013026375323534012, -0.009525727480649948, 0.013872937299311161, -0.05472908169031143, 0.0016130434814840555, -0.02391727827489376, 0.008648659102618694, 0.008099537342786789, -0.035936933010816574, 0.018410813063383102, 0.026144269853830338, -0.039414700120687485, -0.007169082295149565, -0.03673010692000389, -0.036211494356393814, -0.017678651958703995, 0.02902715653181076, 0.029118677601218224, 0.0340760201215744, 0.02336815744638443, 0.005830599460750818, 0.004678970202803612, -0.02474096044898033, 0.004370089620351791, -0.01764814555644989, -0.0004580776731017977, 0.006803001742810011, 0.018685374408960342, -0.0333743654191494, 0.008572392165660858, 0.003965875133872032, 0.002167884726077318, 0.020256470888853073, 0.0354488231241703, 0.011020557023584843, 0.014063604176044464, 0.009289300069212914, 0.009670634754002094, -0.005148011259734631, 0.006757241673767567, -0.00987655483186245, -0.0027150993701070547, 0.03508274257183075, -0.013621256686747074, -0.014147497713565826, -0.03529629111289978, 0.02173604816198349, 0.009922315366566181, -0.0034434476401656866, 0.003977315500378609, 0.01613806188106537, 0.01045618299394846, 0.02554938942193985, -0.0036226746160537004, -0.02146148681640625, -0.013613630086183548, 4.826260556001216e-05, -0.04399070888757706, -0.021827567368745804, -0.0221478883177042, 0.033221833407878876, -0.022666502743959427, 0.017770173028111458, 0.03358791396021843, 0.00020163043518550694, 0.034442100673913956, 0.0026159523986279964, -0.006543694529682398, 0.01995140314102173, 0.006986042018979788, 0.02185807377099991, 0.009907062165439129, 0.011630692519247532, 0.003271847264841199, 0.004015448968857527, -0.01709902472794056, 0.015177099965512753, 0.04335006698966026, -0.0009271187009289861, -0.004541689995676279, -0.039353687316179276, -0.02562565542757511, 0.01995140314102173, 0.008389351889491081, 0.013850056566298008, 0.04182473197579384, -0.026891686022281647, 0.02554938942193985, -0.013819550164043903, -0.003620767965912819, -0.0402078740298748, -0.031238894909620285, -0.010707863606512547, -0.017739664763212204, -0.01886841468513012, 0.014856779016554356, -0.030827054753899574, -0.01375853642821312, -0.035052236169576645, -0.029606785625219345, -0.05375286564230919, 0.0029095797799527645, 0.020668311044573784, -0.026967952027916908, -0.03785885497927666, -0.009853675030171871, 0.00916727352887392, -0.004469236359000206, 0.00283521949313581, 0.03468615561723709, 0.009724020957946777, -0.015352513641119003, 0.013834803365170956, 0.024268105626106262, 0.04298398643732071, -0.0007607616716995835, -0.015695715323090553, 0.03227612376213074, 0.009594367817044258, 0.006429294124245644, -0.0017922705737873912, 0.012843335047364235, -0.010776503942906857, 0.0037504215724766254, 0.03862152621150017, -0.01609230227768421, -0.0207750853151083, 0.007775403559207916, -0.02364271879196167, 0.05942711606621742, 0.02432912029325962, 0.02106489986181259, -0.002797086024656892, -0.014300031587481499, -0.029240703210234642, -0.028432276099920273, 0.016199074685573578, -0.043441589921712875, 0.00026383556541986763, -0.03514375537633896, 0.002966779749840498, -0.04518047347664833, 0.023352904245257378, 0.04148915782570839, 0.003298540599644184, 0.04011635482311249, 0.03483869135379791, -0.010326528921723366, 0.015337260439991951, 0.023413918912410736, 0.04307550936937332, 0.03447260707616806, 0.008351217955350876, 0.0090299928560853, -0.02371898479759693, 0.017343077808618546, 0.06327096372842789, -0.030674520879983902, 0.016992250457406044, -0.03126940131187439, 0.015894008800387383, -0.0005510278861038387, -0.0058420393615961075, -0.005201397929340601, 0.029515264555811882, 0.01949380338191986, 0.021080153062939644, -0.0043090758845210075, 0.023047836497426033, -0.006600894499570131, -0.028127208352088928, 0.012301839888095856, -0.02248346246778965, 0.009922315366566181, 0.029057662934064865, -0.014559338800609112, -0.031025348231196404, -0.0008227284415625036, 0.00011451941827544942, -0.06558948010206223, -0.014704245142638683, -0.027623847126960754, 0.018624361604452133, -0.008259697817265987, -0.02324613183736801, 0.04075699672102928, -0.022666502743959427, -0.033618420362472534, 0.006349213887006044, -0.019875137135386467, 0.014528831467032433, -0.01607704907655716, 0.008816446177661419, -0.014391551725566387, 0.030552493408322334, -0.025854457169771194, -0.02193434163928032, -0.0442652702331543, 0.003916301764547825, -0.047651518136262894, -0.027334032580256462, 0.050519149750471115, -0.01103581115603447, 0.011821359395980835, 0.042617905884981155, 0.026937445625662804, -0.01236285362392664, 0.01682446338236332, -0.0032241803128272295, 0.017632892355322838, 0.009136767126619816, 0.02194959484040737, -0.005201397929340601, -0.021019140258431435, -0.014391551725566387, -0.035662371665239334, 0.03309980407357216, -0.029927104711532593, 0.009830795228481293, -0.007043241988867521, -0.012378106825053692, 0.0035445010289549828, -0.029606785625219345, 0.021156419068574905, -0.0037218215875327587, 0.011081570759415627, 0.013163655065000057, -0.018776893615722656, 0.015924515202641487, -0.005140384659171104, -0.018853161484003067, -0.007180522195994854, -0.02118692733347416, -0.00814529787749052, 0.02649509720504284, 0.012972988188266754, 0.011226478032767773, 0.008702045306563377, 0.011691705323755741, -0.025915469974279404, 0.02310885116457939, -0.003710381453856826, 0.012393360957503319, -0.04878026619553566, -0.0005133711383678019, 0.005102251190692186, -0.02377999946475029, -0.030949080362915993, 0.012263706885278225, 0.02138522081077099, -0.006844948511570692, 0.031055854633450508, -0.012492507696151733, -0.013880563899874687, -0.012797574512660503, 0.035113248974084854, 0.004126035608351231, 0.0029610597994178534, 0.014345791190862656, -0.049970030784606934, -0.010212128981947899, -0.007504656445235014, 0.01114258449524641, 0.024283360689878464, -0.009312180802226067, -0.03194054961204529, -0.019234495237469673, -0.020759832113981247, -0.04216030612587929, -0.0077029503881931305, 0.0017922705737873912, 0.023185117170214653, 0.012073040008544922, 0.004873450845479965, -0.09579114615917206, -0.03978078067302704, 0.04536351189017296, -0.013659389689564705, -0.012736561708152294, -0.002888606395572424, -0.005697132553905249, 0.01902094855904579, 0.015832994133234024, -0.01902094855904579, -0.009144393727183342, -0.029011903330683708, -0.03981128707528114, 0.001432863180525601, -0.0231698639690876, 0.022025860846042633, -0.016870222985744476, -0.0033233272843062878, 0.009190153330564499, 0.03206257522106171, -0.021491993218660355, -0.004263315815478563, -0.02336815744638443, 0.05115979164838791, 0.009990954771637917, -0.018715880811214447, 0.0005929746548645198, 0.01600078120827675, 0.01709902472794056, -0.04014686122536659, 0.04347209632396698, 0.012149306945502758, 0.001459556515328586, 0.010463809594511986, -0.033557407557964325, 0.0070508685894310474, -0.01012060884386301, 0.006501747760921717, 0.009152020327746868, 0.003199393628165126, -0.033618420362472534, -0.04402121528983116, 0.05021408200263977, -0.05155637860298157, 0.026952698826789856, 0.0026864991523325443, 0.003023979952558875, 0.03172700107097626, -0.03581490367650986, -0.0007860250771045685, 0.037157200276851654, 0.01921924203634262, 0.013834803365170956, 0.00572382565587759, -0.013606003485620022, 0.029057662934064865, -0.03959773853421211, -0.014528831467032433, -0.003504460910335183, -0.009243540465831757, -0.018304040655493736, 0.030293187126517296, 0.016046542674303055, -0.04518047347664833, -0.019997164607048035, -0.0019886577501893044, 0.004637023434042931, 0.03752328082919121, 0.024649441242218018, -0.01629059575498104, 0.006982228718698025, 0.0269069392234087, 0.020485270768404007, -0.019707350060343742, 0.008175804279744625, 0.008313084952533245, -0.010860397480428219, 0.008335964754223824, -0.008526631630957127, -0.03325233981013298, 0.04304499924182892, -0.006722921505570412, -0.00936556700617075, 0.003531154477968812, -0.005529345478862524, -0.031360920518636703, -0.021430980414152145, 0.009579114615917206, -0.013926323503255844, -0.0056895059533417225, 0.028630569577217102, 0.007687696721404791, 0.0076343100517988205, -0.008846952579915524, 0.01744985207915306, 0.04243486747145653, 0.017083771526813507, -0.011973893269896507, 0.0022632183972746134, 0.007294922601431608, 0.029332224279642105, -0.014536458067595959, 0.01812100037932396, 0.009731647558510303, -0.027166245505213737, -0.026113763451576233, 0.012759441509842873, -0.009083379991352558, 0.0023375784512609243, -0.006982228718698025, -0.013537363149225712, 0.0010172089096158743, 0.02458842657506466, 0.021568261086940765, 0.012118799611926079, 0.009647754020988941, 0.0006172846769914031, 0.01338482927531004, 0.008976606652140617, -0.038926590234041214, 0.02991185151040554, -0.007561856415122747, -0.026678139343857765, 0.01990564353764057, -0.01804473251104355, 0.03447260707616806, 0.03871304541826248, -0.002457698807120323, 0.01969209685921669, -0.0033862474374473095, 0.01819726638495922, 0.05366134271025658, -0.011249357834458351, 0.06168461591005325, -0.003454887541010976, -0.010890903882682323, 0.01989039033651352, 0.012271333485841751, 0.01236285362392664, 0.03627250716090202, -0.0017875039484351873, -0.010707863606512547, 0.011485785245895386, -0.03965875506401062, 0.027562834322452545, -0.009884181432425976, 0.007855484262108803, -0.010517196729779243, -0.02208687551319599, 0.04203828051686287, 0.022742770612239838, -0.033221833407878876, 0.012134052813053131, 0.0538443848490715, -0.020546285435557365, 0.0688231885433197, -0.052502088248729706, -0.004846757277846336, -0.013972084037959576, -0.007321616169065237, 0.0038934219628572464, 0.05485110729932785, -0.011607811786234379, -0.008488498628139496, 0.03828595206141472, -0.022910557687282562, -0.016519395634531975, -0.009853675030171871, -0.0327032171189785, -0.01393395010381937, -0.00032747071236371994, -0.007150015793740749, -0.010959544219076633, 0.008694418705999851, 0.030506733804941177, 0.028981396928429604, -0.014437311328947544, -0.00027551394305191934, 0.008526631630957127, 0.008641032502055168, -0.031788017600774765, -0.007664816919714212, -0.004473049659281969, 0.05231904983520508, 0.022102128714323044, -0.015817740932106972, -0.031086361035704613, 0.011226478032767773, -0.0032299004960805178, 0.030750786885619164, 0.004949717316776514, 0.0006287246942520142, 0.005815346259623766, 0.01338482927531004, -0.007401696406304836, 0.016946490854024887, 0.02922545000910759, 0.010181622579693794, -0.013613630086183548, -0.0035139943938702345, -0.05030560493469238, 0.017831185832619667, 0.019081961363554, -0.035601358860731125, 0.010486689396202564, 0.0497259758412838, 0.008915592916309834, 0.040024835616350174, -0.03590642660856247, 0.0046293968334794044, 0.030476227402687073, 0.009304553270339966, 0.013361949473619461, 0.008968980051577091, 0.005796279292553663, 0.021019140258431435, 0.0006587547832168639, -0.002947713015601039, -0.001471949857659638, -0.04817013069987297, -0.026739152148365974, -0.03450311720371246, -0.039292674511671066, 0.011157837696373463, -0.03258119150996208, 0.03236764296889305, 0.01140951830893755, 0.004293822683393955, 4.9565992412681226e-06, 0.029454251751303673, 0.0005996479885652661, 0.01874638721346855, 0.011157837696373463, 0.006562761031091213, 0.00929692666977644, 0.04518047347664833, -0.008114791475236416, 0.009510474279522896, -0.01089853048324585, -0.0039696888998150826, 0.011226478032767773, -0.008290205150842667, 0.014605098403990269, -0.030766040086746216, -0.0422518253326416, -0.011508665047585964, 0.03126940131187439, 0.03046097420156002, 0.028722088783979416, -0.012584027834236622, 0.01874638721346855, 0.009632500819861889, 0.0064216675236821175, -0.0012946295319125056, 0.03194054961204529, 0.02492400072515011, 0.003550221212208271, 0.024847734719514847, -0.023124104365706444, 0.003523527644574642, -0.004621770232915878, 0.02173604816198349, -0.007027988787740469, 0.0010953823802992702, -0.006345400586724281, -0.0085190050303936, -0.002307071816176176, -0.003977315500378609, 0.01831929385662079, -0.0008503752178512514, -0.010990050621330738, 0.009380820207297802, -0.0008742085774429142, -0.010242635384202003, 0.0059831333346664906, 0.03126940131187439, -0.033343859016895294, -0.019402282312512398, -0.015512674115598202, -0.024069812148809433, -0.040299393236637115, -0.007111882325261831, -0.00586110632866621, -0.002663619117811322, 0.05900002270936966, -0.019798869267106056, -0.003109780140221119, -0.014292404986917973, 0.011394265107810497, -0.011462905444204807, -0.012584027834236622, 0.041184090077877045, -0.003876261878758669, 0.03392348811030388, -0.01920398883521557, 0.008816446177661419, -0.00655894773080945, 0.013972084037959576, -0.0061699869111180305, -0.0005662812618538737, 0.008816446177661419, -0.017556624487042427, 0.009411327540874481, 0.027105232700705528, 0.013285682536661625, 0.005395878572016954, -0.026006991043686867, 0.0074131363071501255, -0.006703854538500309, 0.03352690115571022, -0.013590749353170395, 0.026418831199407578, 0.015848247334361076, 0.026754405349493027, -0.00016623786359559745, -0.027303526178002357, 0.022513968870043755, 0.02582395076751709, 0.002688405802473426, 0.03215409815311432, 0.006730548106133938, 0.025701923295855522, 0.01813625358045101, 0.028523795306682587, -0.004366276320070028, 0.022651249542832375, 0.016168568283319473, 0.0024119385052472353, -0.015894008800387383, 0.017541371285915375, 0.0015463100280612707, -0.020866606384515762, 0.006093719974160194, 0.037431761622428894, -0.027135739102959633, 0.01607704907655716, 0.01522285956889391, -0.00892321951687336, -0.0028638197109103203, -0.002242245012894273, 0.019265001639723778, 0.0016082768561318517, -0.0014309564139693975, 0.0007812583935447037, -0.019722603261470795, -0.0019066708628088236, 0.021553007885813713, 0.0016549902502447367, -0.02004292421042919, 0.02670864574611187, 0.08053777366876602, -0.02079033851623535, -0.021888582035899162, -0.0016607103170827031, -0.0014995966339483857, -0.019676843658089638, 0.002821872942149639, -0.02324613183736801, -0.001552983419969678, 0.03392348811030388, -0.029805079102516174, -0.0006787748425267637, -0.016321102157235146, 0.0100519685074687, -0.0017207704950124025, 0.008259697817265987, -0.016519395634531975, 0.034106526523828506, 0.015695715323090553, -0.01063159666955471, 0.02834075503051281, -0.015421153977513313, -0.009815541096031666, -0.02220890112221241, -0.01955481618642807, -0.007150015793740749, 0.03578439727425575, -0.02705947309732437, -0.0036417413502931595, 0.037157200276851654, 0.01982937753200531, -0.00974690169095993, 0.003977315500378609, 0.04353310912847519, 0.023795252665877342, 0.004720916971564293, -0.01790745183825493, 0.02301733009517193, 0.00257972558028996, -0.007142389193177223, -0.016671929508447647, -0.01195863913744688, -0.01045618299394846, 0.00987655483186245, -0.03843848407268524, 0.047682024538517, -0.0051098777912557125, -0.013659389689564705, 0.00024619887699373066, -0.03663858771324158, -0.015695715323090553, -0.006509374361485243, 0.004038328770548105, -0.015283873304724693, -0.019112467765808105, 0.005006917752325535, 0.04453983157873154, 0.004099342506378889, 0.025778189301490784, 0.026601871475577354, -0.004324329551309347, -0.016336355358362198, 0.005266224965453148, 0.01325517613440752, -0.05710860341787338, -0.03865203261375427, 0.01845657452940941, -0.010646849870681763, -0.005056491121649742, -0.04341108351945877, -0.011562052182853222, 0.031086361035704613, 0.022178394719958305, 0.005380624905228615, 0.004351022653281689, 0.024710454046726227, 0.008457992225885391, 0.027212006971240044, 0.028996650129556656, -0.0166871827095747, -0.004709477070719004, 0.01717529073357582, -0.011813732795417309, 0.03572338446974754, -0.014727125875651836, 0.01670243591070175, 0.007306362502276897, 0.02670864574611187, -0.02506128139793873, 0.027440806850790977, 0.02091236598789692, -0.026312056928873062, 0.03181852400302887, 0.010471436195075512, -0.005822972860187292, -0.019676843658089638, -0.035052236169576645, -0.02063780464231968, 0.012591654434800148, -0.019051454961299896, 0.03187953680753708, 0.013018748722970486, -0.006307267118245363, 0.018959935754537582, 0.030949080362915993, -0.006551321130245924, -0.017144784331321716, -0.032672710716724396, -0.009533354081213474, 0.0061318534426391125, -0.019844630733132362, 0.006803001742810011, 0.007992764003574848, 0.007584736682474613, 0.0238410122692585, 0.04109257087111473, -0.0036646213848143816, -0.02330714464187622, -0.017937960103154182, -0.035387810319662094, 0.0282797422260046, -0.0051785181276500225, 0.004282382782548666, -0.00674580130726099, 0.011790852062404156, 0.00790124386548996, 0.033496394753456116, -0.014498325064778328, -0.014574592001736164, 0.0036226746160537004, 0.030201666057109833, -0.006688601337373257, 0.03535730391740799, -0.009891808032989502, 0.00011511525372043252, 0.0401773676276207, 0.010570582933723927, -0.023673225194215775, 0.029744064435362816, -0.012103546410799026, -0.04844469204545021, 0.05021408200263977, -0.025839203968644142, 0.009159646928310394, 0.027410300448536873, -0.013239922001957893, 0.024969762191176414, 0.006993668619543314, 0.03584541007876396, -0.009540980681777, -0.024710454046726227, -0.009800287894904613, 0.04585162177681923, 0.003395780688151717, 0.016732944175601006, -0.03569287806749344, -0.005857293028384447, -0.018624361604452133, 0.02234618179500103, -0.0044463565573096275, -0.005502651911228895, 0.015138966962695122, 0.009739275090396404, -0.007077562157064676, 0.040909528732299805, -0.02106489986181259, 0.00018363623530603945, -0.015680460259318352, 0.0018923708703368902, 0.003567381063476205, 0.011592558585107327, -0.0019371776143088937, 0.00834359135478735, -0.008137671276926994, 0.028172967955470085, 0.01995140314102173, -0.013209415599703789, 0.009182526730000973, 0.005819159559905529, 0.03654706850647926, -0.0068678283132612705, -0.017815932631492615, 0.014254271052777767, 0.0340455137193203, 0.005887799430638552, 0.00400400860235095, 0.006417854223400354, -0.005300545133650303, 0.005449265241622925, -0.014178004115819931, 0.01772441156208515, -0.01593976840376854, -0.016717689111828804, 0.03227612376213074, 0.01382717676460743, 0.012400987558066845, -0.002900046296417713, 0.024954507127404213, -0.05308171734213829, 0.02385626547038555, -0.011203598231077194, -0.009960448369383812, -0.019875137135386467, -0.030964335426688194, 0.016854969784617424, 0.014528831467032433, -0.024420639500021935, -0.004293822683393955, 0.002633112482726574, 0.0028047128580510616, 0.01121122483164072, 0.012141680344939232, -0.020683566108345985, 0.029423745349049568, 0.01914297603070736, -0.02501552179455757, 0.006055586505681276, 0.04481439292430878, 0.008648659102618694, -0.03052198700606823, 0.003534967778250575, -0.010212128981947899, 0.0012526827631518245, -0.029622038826346397, -0.002320418367162347, 0.007531350012868643, 0.03489970415830612, -0.01757187768816948, 0.012767068110406399, -0.0023185117170214653, 0.010669729672372341, -0.012934855185449123, 0.02083609811961651, -0.001153535908088088, -0.015138966962695122, -0.012202693149447441, 0.016107555478811264, -0.021003885194659233, 0.049695469439029694, -0.015649953857064247, -0.02603749744594097, -0.00987655483186245, 0.015413527376949787, -0.010433303192257881, 0.04658378288149834, 0.015405900776386261, 0.01375853642821312, -0.002467232057824731, -0.018578600138425827, -0.0022937250323593616, -0.03395399451255798, 0.010677356272935867, 0.01635160855948925, -0.010776503942906857, -0.04170270636677742, 0.02704421989619732, 0.015245740301907063, -0.026586618274450302, 0.020317483693361282, 0.017632892355322838, -0.01298061478883028, 0.012896721251308918, 0.004747610539197922, -0.030064385384321213, -0.009884181432425976, -0.0007497983169741929, 0.02167503349483013, -0.039475712925195694, -0.025991737842559814, 0.032947272062301636, -0.01682446338236332, 0.027776381000876427, 0.03483869135379791, -0.003729448188096285, 0.023459678515791893, 0.0006654281169176102, -0.003538781078532338, -0.007394069340080023, -0.014902539551258087, -0.02547312341630459, -0.002947713015601039, -0.017465105280280113, -0.015817740932106972, -0.051678407937288284, -0.005613239016383886, 0.01426952425390482, -0.00865628570318222, -0.011554425582289696, -0.0017569971969351172, 0.029622038826346397, 0.017327824607491493, 0.021019140258431435, -0.005319611635059118, 0.01906670816242695, -0.015299126505851746, 0.005498838610947132, -0.006658094469457865, 0.0470108762383461, 0.010357036255300045, -0.0005791512667201459, -0.011623065918684006, 0.040848515927791595, -0.007855484262108803, -0.023474931716918945, 0.029866091907024384, -0.01642787642776966, -0.008846952579915524, 0.04502793774008751, 0.005205211229622364, -0.003515901044011116, 0.002636925783008337, 0.010296022519469261, 3.5899035992770223e-06, 0.00019436125876381993, -0.004892517346888781, -0.01205778680741787, 0.0021716980263590813, 0.018898921087384224, 0.010601090267300606, 0.014795766212046146, 0.02731877937912941, -0.008152924478054047, 0.010509570129215717, -0.023215623572468758, 0.03581490367650986, 0.017815932631492615, 0.012355227023363113, -0.01784643903374672, 0.003920115064829588, -0.02390202507376671, 0.02541210874915123, -0.015436407178640366, 0.040024835616350174, -0.04591263458132744, 0.003208927111700177, 0.017770173028111458, 0.00957148801535368, 0.02535109594464302, 0.01799897290766239, -0.010807010345160961, 0.0005395878688432276, 0.03422855585813522, -0.026678139343857765, 0.0007293015951290727, 0.009312180802226067, 0.026342565193772316, -0.007127135526388884, 0.019936149939894676, -0.030842307955026627, -0.015894008800387383, 0.0031727002933621407, 0.04621770232915878, 0.00014109363837633282, -0.005678065586835146, -0.00803852453827858, 0.0007798283477313817, 0.0248629879206419, 0.013575496152043343, -0.007333056069910526, 0.009426580742001534, 0.030216919258236885, 0.006280573550611734, 0.0010477156611159444, -0.014559338800609112, -0.03046097420156002, 0.022803783416748047, 0.031635481864213943, -0.004034515470266342, -0.013346696272492409, -0.03630301356315613, -0.010029088705778122, 0.005872546229511499, -0.01928025484085083, -0.009487594477832317, -0.007756337057799101, -0.04865824058651924, -0.002238431479781866, 0.012721307575702667, -0.014803392812609673, 0.018654868006706238, -0.005933559499680996, 0.03673010692000389, 0.014101737178862095, 0.004766677040606737, 0.05204448848962784, 0.01440680492669344, 0.0015930235385894775, 0.003512087743729353, 0.01478051207959652]" -How METER Group Brings a Data-Driven Approach to the Cannabis Production Industry,"thus: first, after consulting with Timescale staff, we were alerted we had way too many bucket sizes. We could useTimescaleDB’s time_bucket functionsto do some of this on the fly without affecting performance or keeping as many continuous aggregates. That was an easy win.Next, we split each of our current continuous aggregates into three separate components:First, we kept the original continuous aggregate.Then, we leveraged theTimescaleDB job schedulerto move and compress chunks from the original continuous aggregate into ahypertablefor that specific bucket/aggregation view.Finally, we created a plain old view that UNIONed the two and made it a transparent change for our application.This allowed us to compress everything but the last week of all of our continuous aggregates, and the results were as good as we could have hoped for.The 1.83TB database was compressed into 700 GB.We were able to take our ~1.83 TB database and compress it down to 700 GB. Not only that, about 300 GB of that is log data that’s unrelated to our main reading pipeline.We will be migrating out this data soon, which gives us a vast amount of room to grow. (We think we can even move back the 1TB plan at this point, but have to test to ensure that compute doesn’t become an issue.) The rate of incrementation in disk usage was also massively slowed, which bodes well for this solution in the long term. What’s more, there was virtually no penalty for doing this in terms of performance for any of the metrics we monitor.Our monitoring shows how long sampling of chart requests takes to serve.Ultimately TimescaleDB had wins across the board for my team.Performance was going to be the driving force behind whatever we went with, and TimescaleDB has delivered that in spades.Current deployment & future plansWe currently ingest billions of readings every month using TimescaleDB and couldn’t be happier.Our data ingest and charting capabilities are two of the essential aspects of AROYA’s infrastructure.While the road to get here has been a huge learning experience, our current infrastructure is straightforward and performant, and we’ve been able to rely on it to work as expected and to do the right thing. I am not sure I can pay a bigger compliment than that.The current architecture diagramWe’ve recently gone live with our AROYA Analytics release, which is building upon",https://www.timescale.com/blog/how-meter-group-brings-a-data-driven-approach-to-the-cannabis-production-industry/,485,"[0.0026104156859219074, -0.005973449442535639, 0.044777125120162964, 0.02002110332250595, 0.049599725753068924, 0.03729478642344475, -0.008373790420591831, 0.004325727466493845, -0.02216935344040394, 0.014109763316810131, 0.03492732718586922, -0.022768525406718254, 0.007781925145536661, -0.021570181474089622, 0.04685230553150177, 0.021365586668252945, 0.004117478616535664, 0.00012045086623402312, -0.02425914816558361, 0.01800437830388546, -0.007949985563755035, 0.007665013894438744, 0.056906700134277344, 0.0022615077905356884, -0.023338468745350838, -0.03226758912205696, -0.0342843122780323, 0.04398797079920769, -0.003967685624957085, -0.10025165975093842, -0.0031821862794458866, -0.04322804510593414, -0.04945358633995056, -0.006178044714033604, 0.03188762441277504, 0.008132659830152988, 0.04577087238430977, 0.0036808871664106846, 0.027035797014832497, 0.001877891831099987, 0.003832506947219372, 0.026538923382759094, -0.004720304161310196, 0.01940731704235077, -0.023396924138069153, 0.016089951619505882, -0.04965818300843239, 0.007098723202943802, -0.00439514359459281, 0.053253211081027985, -0.043841831386089325, 0.01296987570822239, -0.03621335327625275, -0.04825524240732193, 0.02320694364607334, -0.02383534237742424, 0.013481363654136658, 0.028979450464248657, -0.006733374670147896, -0.0503888800740242, 0.0048116412945091724, -0.06319069117307663, 0.04059753566980362, -0.0027876098174601793, -0.014197446405887604, 0.04100672900676727, -0.01465778611600399, 0.058338865637779236, -0.02861410193145275, 0.013773642480373383, 0.061612389981746674, 0.021044079214334488, 0.010244375094771385, -0.015607692301273346, 0.043958742171525955, -0.06821788847446442, -0.015110818669199944, 0.044923264533281326, -0.026918884366750717, -0.028555646538734436, 0.002575707621872425, -0.027854178100824356, -0.01987496390938759, 0.015330027788877487, 0.04869366064667702, -0.037791658192873, 0.0034196628257632256, -0.009900947101414204, -0.005556952208280563, 0.02861410193145275, -0.0017317524179816246, 0.04907362535595894, 0.0044170645996928215, -0.022637000307440758, 0.03331979364156723, 0.012443773448467255, -0.012816429138183594, 0.01298448909074068, -0.006156124174594879, 0.036096442490816116, 0.028321823105216026, -0.032442957162857056, -0.013832097873091698, -0.0056921313516795635, 0.025647472590208054, 0.00933100376278162, 0.026933498680591583, 0.005984410177916288, -0.0012421852443367243, -0.008994882926344872, -0.0640675276517868, -0.01232686173170805, -0.036768682301044464, 0.004303806461393833, -0.00923601258546114, -0.001550904824398458, -0.017273681238293648, 0.04036371409893036, 0.007321585901081562, -0.0189396720379591, -0.020050331950187683, -0.005275633651763201, -0.019758053123950958, 0.00820572953671217, 0.01807744801044464, -0.025223666802048683, 0.015359255485236645, -0.04524477198719978, -0.051148805767297745, 0.00010515189205761999, 0.05377931520342827, 0.0029264423064887524, 0.03416740149259567, -0.027079638093709946, -0.023002348840236664, -0.013072173111140728, -0.053019389510154724, 0.008541850373148918, -0.01359096821397543, -0.03367052599787712, 0.003434276906773448, -0.03048468753695488, 0.023075418546795845, -0.0423804372549057, -0.019538844004273415, 0.033378247171640396, -0.03381666541099548, 0.035950303077697754, -0.037236329168081284, -0.03732401505112648, -0.02406916581094265, -0.016893720254302025, -0.06430135667324066, -0.040100663900375366, 0.03869772329926491, -0.0234846081584692, 0.02931557223200798, 0.03106924518942833, 0.04106518253684044, -0.0447186678647995, -0.0036699266638606787, 0.03977915644645691, -0.04056830704212189, 0.0005398025386966765, -0.010865467600524426, -0.013576353900134563, -0.0528147928416729, -0.03226758912205696, -0.09832261502742767, -0.025048300623893738, -0.04235120862722397, -0.02360151894390583, -0.019772665575146675, 0.001147194649092853, 0.052551742643117905, -0.011369648389518261, -0.006974504794925451, -0.04331573098897934, 0.03305674344301224, -0.003673580242320895, -0.04983355104923248, 0.018208974972367287, -0.017010631039738655, 0.028760241344571114, -0.053837768733501434, 0.009564826264977455, -0.047729142010211945, 0.046560026705265045, 0.027108866721391678, 0.03767474740743637, -0.03498578071594238, 0.07704471051692963, 0.008914506062865257, 0.028877153992652893, -0.006156124174594879, -0.0515579953789711, 0.022812366485595703, 0.026538923382759094, -0.0189396720379591, 0.0034708117600530386, 0.0767524316906929, 0.021745549514889717, 0.07418037950992584, 0.001395631697960198, 0.006594542413949966, -0.01229032687842846, -0.01349597703665495, -0.004274578765034676, -0.050096601247787476, -0.04045139625668526, -0.004157667048275471, 0.00047677994007244706, 0.025837453082203865, 0.017361365258693695, -0.04281885549426079, -0.02962246537208557, -0.07605096697807312, 0.003384954761713743, 0.00783307384699583, -0.03974992781877518, 0.018603550270199776, 0.04989200457930565, 0.008775673806667328, -0.011873829178512096, -0.030543142929673195, 0.040919043123722076, 0.01641145907342434, -0.039136141538619995, 0.04615083709359169, -0.002166517311707139, 0.013744414784014225, -0.036534860730171204, -0.026845814660191536, -0.0035822431091219187, -0.0026725251227617264, 0.008702604100108147, 0.016279933974146843, -0.031858399510383606, 0.0052646733820438385, -0.03720710054039955, -0.023630747571587563, 0.0026944458950310946, 0.0010814318666234612, -0.01589997112751007, -0.01912965252995491, 0.01636761799454689, -0.018048221245408058, -0.06266459077596664, 0.028833311051130295, 0.0732450857758522, -0.00430746003985405, -0.021789390593767166, -0.01924656517803669, -0.03817162290215492, -0.052551742643117905, -0.05319475755095482, -0.04600469768047333, 0.040655992925167084, -0.010448969900608063, 0.029227888211607933, -0.002241413574665785, -0.018033606931567192, -0.01332060992717743, 0.002643297193571925, -0.01812129095196724, 0.02729884721338749, 0.04103595390915871, -0.0014111589407548308, 0.006682225968688726, -0.006386293563991785, 0.03521960601210594, 0.01858893781900406, 0.014380120672285557, -0.06617193669080734, -0.006371679715812206, -0.0005585266626439989, 0.007869608700275421, 0.0027492481749504805, -0.03133229538798332, -0.01850125379860401, 0.015461552888154984, -0.026188187301158905, 0.02329462766647339, 0.01133311353623867, 0.033232107758522034, 0.010047086514532566, 0.009301775135099888, 0.010880080983042717, 0.012706824578344822, -0.0027492481749504805, -0.005710398778319359, 0.029184047132730484, 0.03814239427447319, -0.023806115612387657, -0.01452626008540392, 0.00783307384699583, -0.01074855588376522, -0.0015536448918282986, -0.018881216645240784, -0.04995046183466911, 0.017054472118616104, 0.02224242314696312, 0.0251944400370121, -0.018793532624840736, 0.045361682772636414, 0.039253052324056625, -0.027313461527228355, -0.007672320585697889, -0.035833392292261124, -0.0022889089304953814, 0.0037210755981504917, -0.024872932583093643, 0.002352844923734665, 0.013094093650579453, -0.04968741163611412, -0.020591046661138535, 0.061963122338056564, -0.03986683860421181, -0.018837373703718185, -0.02088332548737526, -0.03875618055462837, -0.07406347244977951, -0.022578543052077293, -0.004161320626735687, 0.036534860730171204, 0.015300799161195755, 0.04512786120176315, -0.001350876409560442, 0.020050331950187683, -0.03299828618764877, -0.0038142395205795765, -0.010310137644410133, 0.03907768800854683, 0.030163180083036423, -0.052084095776081085, -0.04746609181165695, 0.013576353900134563, -0.03238449990749359, -0.010448969900608063, 0.011442718096077442, -0.019728824496269226, -0.045010946691036224, -0.06810098141431808, 0.008673375472426414, 0.02219858020544052, 0.012575298547744751, 0.01800437830388546, 0.011369648389518261, 0.0032716968562453985, 0.003556668758392334, -0.03720710054039955, -0.006992772221565247, 0.023119259625673294, 0.01074855588376522, 0.03200453892350197, 0.012122266925871372, 0.0015810460317879915, -0.009279854595661163, -0.045624732971191406, 0.004376876167953014, -0.023163100704550743, 0.042205069214105606, 0.025223666802048683, -0.0050893062725663185, -0.014613944105803967, 0.035248834639787674, -0.052931707352399826, 0.03732401505112648, 0.03410894423723221, -0.02088332548737526, 0.04264348745346069, -0.013116015121340752, -0.03744092583656311, 0.0007512480369769037, -0.059011105448007584, -0.02193553000688553, 0.06681495159864426, 0.02219858020544052, -0.009433301165699959, 0.045975469052791595, 0.00985710509121418, 0.011873829178512096, 0.010609723627567291, -0.010668179020285606, 0.0332905650138855, 0.04860597848892212, -0.028599489480257034, 0.046209290623664856, -0.035482656210660934, -0.015227729454636574, 0.010010551661252975, 0.014643171802163124, -0.035131920129060745, -0.024317603558301926, 0.006448403000831604, 0.015534622594714165, 2.5645758796599694e-05, 0.03229681774973869, 0.05591294914484024, 0.026772744953632355, 0.02982706017792225, 0.01541771087795496, -0.037499379366636276, -0.038434673100709915, 0.010492811910808086, 0.013116015121340752, -0.0014550008345395327, 0.012224564328789711, -0.021204832941293716, -0.019626526162028313, -0.019451159983873367, -0.04015911743044853, 0.04837215319275856, -0.06026790663599968, 0.053048618137836456, -0.016309160739183426, -0.06476899981498718, 0.061495475471019745, -0.03612567111849785, 0.04594624042510986, -0.05734511837363243, -0.019816508516669273, -0.019582685083150864, 0.0036534860264509916, -0.02854103222489357, 0.04670616611838341, 0.06085246428847313, -0.03378744050860405, -0.01758057437837124, -0.039369966834783554, -0.028438735753297806, -0.007555409334599972, 0.02873101457953453, -0.027152707800269127, -0.01699601672589779, 0.03966224566102028, -0.0020952741615474224, -0.010668179020285606, 0.041357461363077164, 0.007511567324399948, -0.03013395331799984, -0.00034571110154502094, 0.017639029771089554, 0.0005617234855890274, -0.05684824287891388, -0.01465778611600399, -0.020634889602661133, -0.025486718863248825, -0.032676778733730316, -0.01205650344491005, 0.023630747571587563, -0.019100425764918327, -0.03399203345179558, 0.0367102287709713, -0.047378405928611755, -0.03533651679754257, 0.034313540905714035, 0.0005009842570871115, 0.017127541825175285, -0.0022852555848658085, -0.02896483801305294, 0.007723469287157059, -0.0514703094959259, -0.027050411328673363, -0.008293413557112217, -0.044777125120162964, 0.05635136738419533, 0.0030835422221571207, 0.017010631039738655, -0.026042047888040543, -0.013722493313252926, 0.028687171638011932, -0.020269541069865227, 0.0003950331883970648, -0.02227165177464485, 0.0008599392604082823, 0.010799705050885677, 0.0041467067785561085, 0.015578464604914188, -0.026845814660191536, 0.00995209626853466, -0.033845894038677216, -0.03764551877975464, 0.050914980471134186, -0.0054400404915213585, -0.0033995688427239656, 0.020094173029065132, -0.01332060992717743, -0.020517976954579353, 0.026538923382759094, -0.0165575984865427, 0.010390514507889748, 0.05217178165912628, -0.01781439781188965, -0.0003310971660539508, -0.0017217053100466728, -0.0685686245560646, -0.03472273051738739, 0.037353239953517914, -0.008556464686989784, 0.047144584357738495, -0.007781925145536661, 0.0246537234634161, 0.026232030242681503, -0.02184784598648548, -0.0009553866111673415, -0.038785409182310104, 0.005845577456057072, -0.015140046365559101, -0.03644717484712601, -0.009177557192742825, 0.01126004382967949, 0.04059753566980362, 0.011091983877122402, -0.040685221552848816, 0.030747737735509872, -0.005922300741076469, 0.008498008362948895, -0.016586827114224434, 0.005750587210059166, -0.03238449990749359, -0.061027832329273224, -0.03364130109548569, -0.0045924317091703415, 0.0027163669001311064, 0.021862460300326347, -0.06085246428847313, -0.009184863418340683, -0.01613379456102848, 0.014979292638599873, 0.0062949564307928085, -0.011588857509195805, 0.008468780666589737, 0.010799705050885677, -0.04778759554028511, 0.019758053123950958, -0.016279933974146843, -0.03621335327625275, -0.03215067833662033, 0.02437605895102024, 0.02523828111588955, 0.03200453892350197, 0.018325885757803917, 0.012926033698022366, -0.0013052078429609537, -0.01047819759696722, 0.02041568048298359, 0.0021957450080662966, 0.009031417779624462, 0.011873829178512096, 0.004698383156210184, -0.028979450464248657, 0.015432325191795826, 0.00900218915194273, 0.014511646702885628, 0.018764303997159004, 0.025676699355244637, 0.020824870094656944, -0.002047778805717826, 0.0007517047342844307, 0.012904112227261066, 0.006360718980431557, -0.01218802947551012, -0.013956316746771336, -0.002835105173289776, 0.025603629648685455, 0.0011207067873328924, -0.011289271526038647, -0.039720699191093445, 0.018267430365085602, 0.010025165975093842, -0.014190140180289745, 0.010960457846522331, -0.014124376699328423, 0.011545015498995781, 0.01702524535357952, -0.035131920129060745, -0.028161071240901947, 0.014307050965726376, 0.00266887154430151, -0.03410894423723221, -0.028555646538734436, -0.018954286351799965, 0.040685221552848816, -0.011398876085877419, -0.008848743513226509, 0.03688559681177139, 0.027269620448350906, 0.024785248562693596, 0.0086149200797081, 0.009162942878901958, 0.003562148893252015, 0.013649423606693745, 0.022534701973199844, -0.0012823735596612096, 0.022227808833122253, 0.03416740149259567, -0.006561661139130592, -0.009981323964893818, 0.02154095284640789, 0.04439716041088104, 0.0037229021545499563, -0.005721359048038721, -0.022373948246240616, -0.03709018975496292, 0.02317771501839161, -0.01047819759696722, 0.0019637488294392824, 0.0343719981610775, -0.024902161210775375, 0.021745549514889717, -0.01952422969043255, -0.008424938656389713, -0.03381666541099548, -0.025837453082203865, -0.008804901503026485, -0.029490938410162926, -0.0005950615159235895, 0.010237067937850952, -0.010419742204248905, -0.02371843159198761, -0.02931557223200798, -0.03223836049437523, -0.05790044739842415, -0.01074855588376522, 0.02149711176753044, -0.016937561333179474, -0.0493074469268322, 0.0010713847586885095, 0.012641062028706074, -0.0036534860264509916, -0.008709910325706005, 0.04188356548547745, 0.02748882956802845, 0.014738162979483604, 0.008607612922787666, 0.024405287578701973, 0.027576511725783348, -0.004691075999289751, -0.0148696880787611, 0.024624496698379517, 0.01071202103048563, -0.012166108936071396, -0.007803846150636673, 0.0007845861255191267, -0.031975310295820236, -0.0064776306971907616, 0.03144920617341995, -0.016616053879261017, -0.023733045905828476, 0.014548181556165218, -0.011866522952914238, 0.052785567939281464, 0.03603798523545265, 0.01648452877998352, -0.004702036734670401, -0.009177557192742825, -0.003839813871309161, -0.00779653899371624, 0.009842491708695889, -0.051499538123607635, 0.007032960653305054, -0.03191685304045677, 0.0016047937097027898, -0.04530322551727295, 0.016630668193101883, 0.0023455379996448755, 0.02383534237742424, 0.026173574849963188, 0.040100663900375366, -0.006824711803346872, -0.000374025636119768, 0.011640006676316261, 0.021920915693044662, 0.04799219220876694, 0.01129657868295908, 0.008366483263671398, -0.021087922155857086, 0.022213194519281387, 0.05874805524945259, -0.019348861649632454, 0.017156770452857018, -0.024566039443016052, 0.0015143699711188674, -0.01983112283051014, -0.04658925533294678, 0.0005169682553969324, 0.022330107167363167, 0.02341153845191002, 0.028526419773697853, -0.002895387588068843, 0.0052025639452040195, -0.0014047654112800956, -0.020868713036179543, 0.011223508976399899, -0.026465853676199913, 0.012239178642630577, 0.04188356548547745, -0.038551583886146545, -0.03150766342878342, 0.0038142395205795765, 0.005304861813783646, -0.025106756016612053, -0.02889176830649376, -0.023820728063583374, 0.0022395870182663202, 0.007942678406834602, -0.012750666588544846, 0.03036777675151825, -0.01702524535357952, -0.0344596803188324, 0.015330027788877487, -0.026743518188595772, 0.016119180247187614, 0.01547616720199585, 0.005034503526985645, -0.015914585441350937, 0.01197612751275301, -0.028409507125616074, -0.019801894202828407, -0.04486480727791786, -0.0014577409019693732, -0.02671428956091404, -0.011800759471952915, 0.054217733442783356, -0.011347727850079536, 0.022257037460803986, 0.017565960064530373, 0.014029386453330517, -0.009250626899302006, 0.022929279133677483, -0.0046618483029305935, -0.0024277414195239544, -0.012027275748550892, 0.02425914816558361, -0.00909718032926321, -0.006543393712490797, -0.013035638257861137, -0.050564248114824295, 0.0047495318576693535, -0.03635949268937111, 0.00569578493013978, 0.004596085287630558, -0.004311113618314266, 0.010587802156805992, -0.04436793550848961, 0.01610456593334675, 0.02608589082956314, 0.028248753398656845, 0.009162942878901958, -0.01277258712798357, 0.014957372099161148, -0.0013810177333652973, -0.01683526299893856, -0.0009147415403276682, -0.0034324501175433397, -0.011808066628873348, 0.008015748113393784, 0.01613379456102848, 0.010339365340769291, -0.008329948410391808, 0.007599250879138708, -0.025925137102603912, 0.008797594346106052, -0.0005877545918338001, 0.0356287956237793, -0.03498578071594238, 0.007193713914602995, -0.006850286386907101, -0.044075656682252884, -0.03627181053161621, 0.0015536448918282986, 0.0009453395032323897, -0.013912474736571312, 0.03852235525846481, -0.001517110038548708, 0.007496953476220369, 0.0017509331228211522, -0.007138911634683609, -0.014314358122646809, -0.0007380041643045843, 4.997854557586834e-05, -0.03516114875674248, -0.018442798405885696, -0.01667451113462448, 0.0014084188733249903, 0.018369726836681366, -0.0041722808964550495, -0.03472273051738739, -0.030660055577754974, -0.025910522788763046, -0.023689202964305878, 1.7197072565977578e-06, 0.018282044678926468, 0.036651771515607834, 0.0026889657601714134, 0.007555409334599972, -0.09738732129335403, -0.031712260097265244, 0.0354534275829792, -0.033962804824113846, -0.025530559942126274, -0.022067055106163025, 0.008724524639546871, 0.017288295552134514, 0.0033813014160841703, -0.011873829178512096, -0.018442798405885696, -0.05778353661298752, -0.031975310295820236, -0.014650478959083557, -0.03758706524968147, 0.011216201819479465, -0.01917349547147751, 0.0229438915848732, 0.02259315736591816, 0.03413817286491394, -0.04460175707936287, -0.001695217564702034, -0.015651533380150795, 0.04045139625668526, 0.013992851600050926, -0.005838270764797926, -0.008424938656389713, 0.034430451691150665, 0.02395225502550602, -0.034313540905714035, 0.025399034842848778, 0.024434514343738556, 0.0032990979962050915, 0.016732966527342796, 0.0004475520399864763, -0.008556464686989784, -0.004296499770134687, 0.014153605327010155, 0.013079480268061161, -0.0019509615376591682, -0.03285214677453041, -0.05059347301721573, 0.03118615597486496, -0.06488591432571411, 0.048664435744285583, -0.0342843122780323, 0.006992772221565247, 0.030543142929673195, -0.028818698599934578, -0.0036096442490816116, 0.030104724690318108, 0.01645530015230179, -0.011903057806193829, 0.005363317672163248, -0.0053596640937030315, 0.021511726081371307, -0.04460175707936287, -0.02130713127553463, -0.004997968673706055, -0.0025519600603729486, -0.03624258190393448, 0.04927821829915047, 0.014460497535765171, -0.05380854383111, -0.006758949253708124, 0.003368514124304056, -0.006517819128930569, 0.043023452162742615, 0.03229681774973869, -0.029490938410162926, 0.026568150147795677, 0.028277982026338577, 0.008125352673232555, -0.03565802425146103, 0.012224564328789711, 0.0009197650942951441, 0.01629454828798771, 0.006130549591034651, -0.01500852033495903, -0.028234140947461128, 0.04235120862722397, -0.03060159832239151, -0.009418686851859093, -0.007920757867395878, -0.028877153992652893, -0.029169432818889618, -0.014979292638599873, -0.006740681827068329, -0.017039859667420387, -0.013992851600050926, 0.037236329168081284, -0.0012668463168665767, -0.006072093732655048, -0.00180573551915586, -0.005553298629820347, 0.024434514343738556, 0.023382309824228287, -0.0056848241947591305, 0.02123406156897545, -0.004807987716048956, 0.03282291814684868, -0.002100754529237747, 0.027854178100824356, 0.006137856747955084, -0.0038178928662091494, -0.03916537016630173, 0.0280733872205019, -0.008592999540269375, 0.00892181321978569, 0.0055898334830999374, -0.003461678046733141, -0.010383207350969315, 0.027211163192987442, -0.0009928348008543253, 0.01094584446400404, 0.005673863925039768, 0.009009496308863163, 0.0322091318666935, -0.005586180370301008, -0.026451239362359047, 0.0004900238127447665, -0.026611993089318275, -0.024697566404938698, 0.015797672793269157, -0.000542999361641705, 0.043257273733615875, 0.03399203345179558, -0.004154013469815254, 0.028482576832175255, -0.0014312531566247344, -0.002696272684261203, 0.04664770886301994, -0.02612973190844059, 0.061495475471019745, -0.011640006676316261, -0.024098394438624382, 0.005436387378722429, -0.011574244126677513, 0.012429159134626389, 0.021204832941293716, -0.008227650076150894, 0.004164974205195904, 0.011910364031791687, -0.0026907925494015217, 0.011859215795993805, -0.010565881617367268, 0.006481284275650978, 0.008600305765867233, -0.027108866721391678, 0.05424696207046509, 0.021175604313611984, -0.024478357285261154, 0.008052282966673374, 0.06728260219097137, -0.020152628421783447, 0.06342452019453049, -0.053603947162628174, -0.023733045905828476, -0.02252008765935898, 0.005282940808683634, 0.02184784598648548, 0.06751642376184464, 2.534605846449267e-05, -0.004658194724470377, 0.025165211409330368, -0.017244454473257065, -0.02542826347053051, -0.01129657868295908, -0.0016605093842372298, 0.004628967028111219, -0.008015748113393784, 0.008446860127151012, -0.006167084444314241, 0.013196391984820366, 0.03048468753695488, 0.010390514507889748, 0.007409269455820322, -0.0009051511879079044, 0.021204832941293716, 0.015768446028232574, -0.036184124648571014, -0.005293901078402996, -0.004475520458072424, 0.04740763455629349, 0.00681375153362751, -0.024741407483816147, -0.03817162290215492, 0.02332385443150997, -0.01664528250694275, 0.03469350188970566, -0.001273239846341312, 0.008556464686989784, 0.0005023543490096927, 0.04045139625668526, -0.01629454828798771, 0.005637329071760178, 0.021833231672644615, 0.010025165975093842, -0.01823820173740387, 0.02959323674440384, -0.03483964130282402, 0.02018185704946518, 0.024624496698379517, -0.028058772906661034, 0.017083700746297836, 0.026363555341959, -0.004102864768356085, 0.036534860730171204, -0.043491099029779434, 0.005988063756376505, 0.024273760616779327, -0.001789294765330851, 0.012889498844742775, -0.008154580369591713, -0.0012065637856721878, 0.011829988099634647, 0.00596979632973671, -0.006484937854111195, 0.011552322655916214, -0.03858081251382828, -0.01758057437837124, -0.0332905650138855, -0.038902319967746735, 0.015578464604914188, -0.019568070769309998, 0.02013801410794258, 0.009601361118257046, -0.005688477773219347, -0.006550700403749943, 0.02111714892089367, 0.007964599877595901, 0.03615489602088928, 0.005392545368522406, 0.004574164282530546, 0.012253792025148869, 0.02095639519393444, 0.0029154818039387465, 0.010237067937850952, -0.011420797556638718, -0.010785090737044811, 0.0039092302322387695, -0.017697487026453018, -0.00903872400522232, -0.030543142929673195, -0.035833392292261124, -0.00026213761884719133, 0.031595345586538315, 0.04945358633995056, 0.03232604265213013, -0.02252008765935898, -0.002922788728028536, 0.022739296779036522, 0.0003733405901584774, -0.0021519032306969166, 0.030747737735509872, 0.028131842613220215, 0.013846712186932564, 0.027240391820669174, -0.011844601482152939, 0.0033137118443846703, -0.0063826399855315685, 0.02158479578793049, 0.01931963488459587, -0.004055369645357132, -0.004486480727791786, 0.014825846068561077, -0.008739138953387737, -0.024756021797657013, 0.0052719805389642715, 0.006386293563991785, 0.00046056759310886264, 0.012429159134626389, 0.032179903239011765, -0.007738083600997925, -0.009827877394855022, 0.024902161210775375, -0.02496061660349369, 0.0013664037687703967, -0.0200649444013834, -0.013430214487016201, -0.022213194519281387, 0.019684983417391777, -0.015739217400550842, -0.006832018960267305, 0.03369975462555885, -0.003428796539083123, -0.005578873213380575, -0.011435410939157009, 0.00762117188423872, -0.027094252407550812, -0.021643251180648804, 0.023119259625673294, 0.0013691438362002373, 0.029300957918167114, -0.02760574035346508, 0.01126004382967949, -9.773074998520315e-05, 0.021453270688652992, -0.0005895813228562474, -0.003770397510379553, -0.012041890062391758, -0.018749689683318138, 0.01139156986027956, 0.002546479692682624, 0.017799783498048782, 0.016659896820783615, -0.013554433360695839, -0.018764303997159004, 0.004369569476693869, 0.028394892811775208, -0.011866522952914238, -0.0006197225884534419, 0.008519929833710194, 0.025603629648685455, -0.010003244504332542, -0.03390435129404068, 0.019451159983873367, 0.029169432818889618, 0.010514732450246811, 0.02161402255296707, 0.007361774332821369, 0.028716400265693665, 0.022637000307440758, 0.04433870688080788, -0.006441095843911171, 0.009214092046022415, 0.01714215613901615, 0.014891608618199825, -0.02896483801305294, 0.010229760780930519, 0.008636840619146824, -0.020649503916502, 0.015140046365559101, 0.02336769737303257, -0.029885515570640564, 0.023806115612387657, 0.01547616720199585, -0.010003244504332542, -0.0013463095529004931, -0.01905658282339573, 0.02484370581805706, -0.00946983601897955, -0.026685062795877457, -0.0023455379996448755, 0.006397253833711147, -0.010595109313726425, 0.029841674491763115, -0.004786066710948944, -0.014131683856248856, 0.037733204662799835, 0.0652366429567337, -0.010419742204248905, -0.01842818409204483, 0.02332385443150997, -0.02146788313984871, -0.0034580244682729244, 0.009170250035822392, 0.004274578765034676, -0.001135320751927793, 0.035394974052906036, -0.018618164584040642, -0.002818664535880089, -0.0014111589407548308, 0.0014714414719492197, 0.01394170243293047, 0.012575298547744751, -0.029154818505048752, 0.047144584357738495, 0.0088633568957448, 0.010368593037128448, 0.018691234290599823, 0.013057558797299862, 0.0005101179704070091, -0.017624417319893837, -0.018413569778203964, -0.01197612751275301, 0.01702524535357952, -0.010668179020285606, 0.00865145493298769, 0.03162457421422005, 0.019611913710832596, -0.016382230445742607, 0.010595109313726425, 0.0481383316218853, 0.0025391727685928345, 0.01625070534646511, -0.01421206071972847, 0.014679706655442715, 0.013313302770256996, 0.00042060756823047996, -0.011004299856722355, -0.005925954319536686, -0.005991716869175434, 0.0025629205629229546, -0.019495001062750816, 0.04404642805457115, -0.0003386324970051646, -0.007058535236865282, 0.0031931467819958925, -0.020459521561861038, -0.01687910594046116, -0.013656730763614178, 0.0015518182190135121, -0.02165786549448967, -0.007672320585697889, 0.02048875018954277, 0.05673133209347725, 0.01442396268248558, 0.018603550270199776, 0.03916537016630173, -0.004435332026332617, -0.004376876167953014, 0.0024843704886734486, 0.000576337450183928, -0.035716477781534195, -0.05003814399242401, 0.026728903874754906, 0.005381585098803043, 0.004164974205195904, -0.035599566996097565, -0.0028771201614290476, 0.04001297801733017, 0.005626368336379528, 0.005213524680584669, 0.023733045905828476, 0.012684903107583523, 0.010222453624010086, 0.02383534237742424, 0.025282124057412148, -0.024156849831342697, -0.021687092259526253, 0.0027492481749504805, -0.013137935660779476, 0.031040016561746597, -0.016586827114224434, -0.008154580369591713, 0.009842491708695889, 0.006612809840589762, -0.04217584431171417, 0.024522198364138603, 0.021687092259526253, -0.023499222472310066, 0.01641145907342434, 0.009798649698495865, -0.0004813467967323959, -0.012684903107583523, -0.034898098558187485, -0.017449049279093742, -0.0003845294122584164, -0.005947875324636698, 0.012487615458667278, 0.009338309988379478, -0.014065921306610107, 0.03270600736141205, 0.011713076382875443, -0.02320694364607334, -0.0051769898273050785, -0.01294795423746109, -0.01524234376847744, 0.0034269699826836586, -0.01617763563990593, 0.016806036233901978, 0.02577899768948555, 0.02376227267086506, 0.01483315322548151, 0.06108628585934639, -0.005750587210059166, -0.0023729391396045685, -0.02889176830649376, -0.022417791187763214, 0.01667451113462448, 0.019582685083150864, 0.006583581678569317, -0.010419742204248905, 0.013620195910334587, 0.02079564332962036, 0.040100663900375366, -0.01987496390938759, -0.005798082333058119, -0.020985623821616173, 0.03413817286491394, -0.0017253587720915675, 0.03817162290215492, -0.026509694755077362, -0.00013666320592164993, 0.04357878118753433, -0.012706824578344822, -0.013510591350495815, 0.01500852033495903, -0.000858569226693362, -0.05617600306868553, 0.024624496698379517, -0.01366403792053461, 0.002614069264382124, 0.023966867476701736, -0.009974016807973385, 0.016221478581428528, 0.014862380921840668, 0.028862539678812027, -0.011501174420118332, -0.017916696146130562, -0.010719328187406063, 0.042555805295705795, 0.017244454473257065, 0.035716477781534195, -0.018866602331399918, 0.018208974972367287, -0.025530559942126274, -0.006123242434114218, -0.010156691074371338, 0.00954290572553873, 0.014460497535765171, 0.0031054632272571325, -0.025048300623893738, 0.030513916164636612, -0.025135984644293785, -0.0038069323636591434, -0.013824790716171265, 0.0008718130993656814, 0.008819514885544777, 0.007076802663505077, 0.007233902346342802, 0.010178612545132637, 0.004892017692327499, 0.037031736224889755, 0.006276689004153013, -0.004201509058475494, 0.0024441820569336414, 0.0011371475411579013, 0.023338468745350838, -0.02189168892800808, -0.022257037460803986, 0.003770397510379553, 0.026144346222281456, 0.0009014976676553488, -0.008958348073065281, -0.004829908721148968, -0.004117478616535664, -0.0048116412945091724, -0.010178612545132637, 0.005714052356779575, -0.01983112283051014, -0.0061999657191336155, 0.04734917730093002, 0.030981561169028282, 0.03580416366457939, 0.007781925145536661, 0.03481041640043259, -0.04927821829915047, 0.017668258398771286, -0.03448890894651413, -0.009250626899302006, -0.0411236397922039, -0.013912474736571312, -0.0008686162764206529, 0.017858238890767097, -0.011398876085877419, 0.0009161116322502494, -0.015885356813669205, 0.0166014414280653, 0.007665013894438744, 0.015110818669199944, -0.01403669361025095, 0.016747580841183662, -0.0031438246369361877, -0.009477143175899982, -0.01758057437837124, 0.03729478642344475, 0.01664528250694275, -0.028804084286093712, 0.01578306034207344, -0.007964599877595901, 0.018208974972367287, -0.02966630645096302, -0.008972961455583572, 0.00803036242723465, 0.018881216645240784, -0.028950223699212074, 0.018252816051244736, 0.009462528862059116, 0.017215225845575333, -0.031858399510383606, 0.020474135875701904, 0.022154739126563072, -0.010697406716644764, -0.023586906492710114, 0.013715186156332493, -0.03934073820710182, 0.026363555341959, -0.01873507723212242, -0.011384262703359127, -0.010558574460446835, 0.010894695296883583, -0.010719328187406063, 0.05053501948714256, -0.009747500531375408, 0.005451001226902008, -0.0032698700670152903, -0.025954363867640495, 0.01304294541478157, -0.02437605895102024, 0.017595188692212105, 0.017083700746297836, -0.01917349547147751, -0.02643662504851818, 0.019509615376591682, 0.01679142192006111, -0.01990419253706932, 0.009637895971536636, 0.0131817776709795, -0.021029464900493622, 0.007219288498163223, -0.012173415161669254, -0.03641794994473457, -0.002294389298185706, 0.012487615458667278, 0.027225777506828308, -0.024902161210775375, -0.04486480727791786, 0.032676778733730316, -0.004000567365437746, 0.015622306615114212, 0.013912474736571312, -0.005922300741076469, 0.0189396720379591, 0.014928143471479416, -0.009309082292020321, -0.0038251997902989388, -0.009287161752581596, -0.028161071240901947, -0.008943733759224415, -0.007752697449177504, -0.017595188692212105, -0.029067134484648705, 0.007277744356542826, 0.01617763563990593, -0.008081510663032532, -0.01676219329237938, 0.001191036426462233, 0.01006900705397129, 0.011135825887322426, 0.015140046365559101, -0.018252816051244736, 0.0009425993775948882, 0.003982299938797951, -0.002592148259282112, 0.00434399489313364, 0.01730290986597538, -0.007957292720675468, -0.0034963861107826233, -0.0134521359577775, 0.03118615597486496, -0.015461552888154984, -0.03516114875674248, 0.03358284384012222, 0.020035717636346817, -0.023163100704550743, 0.04957049712538719, 0.005483882501721382, -0.016075339168310165, 0.012209950014948845, -0.011983433738350868, 0.003777704667299986, -0.025106756016612053, 0.005184296518564224, -0.01092392299324274, 0.021526340395212173, 0.010273602791130543, 0.030338548123836517, 0.01273605227470398, 0.04249734804034233, 0.022154739126563072, -0.0013179951347410679, -0.0020422986708581448, 0.05486074462532997, 0.016893720254302025, 0.005407159216701984, 0.0037356894463300705, -0.009184863418340683, -0.03288137540221214, 0.02390841208398342, -0.0008316247840411961, 0.04176665097475052, -0.018603550270199776, 0.01589997112751007, 0.006554353982210159, 0.019758053123950958, 0.017478277906775475, -6.873120582895353e-05, -0.01999187469482422, -0.0028497190214693546, 0.017785169184207916, -0.03168303146958351, 0.0017436261987313628, 0.00982057023793459, 0.045595504343509674, -0.004643580876290798, 0.03387512266635895, -0.026962727308273315, -0.0240253247320652, 0.028511805459856987, 0.046443115919828415, 0.00010035669401986524, -0.016279933974146843, -0.005224484950304031, 0.00770885543897748, 0.029987813904881477, 0.016031496226787567, -0.018457410857081413, 0.017799783498048782, 0.0322091318666935, 0.009243319742381573, -0.013905167579650879, -0.011413490399718285, -0.042088158428668976, 0.004391490016132593, 0.047027673572301865, 0.012831042520701885, -0.03568725287914276, -0.02819029800593853, 0.0013307823101058602, -0.0012065637856721878, -0.017317524179816246, -0.023966867476701736, 0.004537629429250956, -0.053603947162628174, 0.00033269557752646506, 0.028336437419056892, -0.013700572773814201, 0.0033539002761244774, -0.003518307115882635, 0.04015911743044853, 0.02593975141644478, 0.021555567160248756, 0.03627181053161621, 0.006291302852332592, -0.020751800388097763, 0.03250141069293022, 0.001965575385838747]" -How METER Group Brings a Data-Driven Approach to the Cannabis Production Industry,"what we’ve done to deliver deeper insights into the environment and the operations at the facilities using our service. Every step of the way, it’s been straightforward (and performant!) to calculate the metrics we need with our TimescaleDB setup.Getting started advice & resourcesI think it’s worth mentioning that there were many trade-offs and requirements that guided me to where AROYA is today with our use of TimescaleDB. Ultimately, my story is simply the set of decisions that led me to where we are now and people’s mileage may vary depending on their requirements.I am sure that the set of functionality offered means that, with a little bit of creativity, TimescaleDB can work for just about any time-series use case I can think of.The exercise we went through when iterating from our initial non-Timescale solution to Timescale was crucial to get me to be comfortable with that migration. Moving such a critical part of my infrastructure was scary, and it isstillscary.Monitoring everything you can, having redundancies, and being vigilant about any unexpected activity - even if it’s not something that may trigger an error - has helped us stay out of trouble.We have a bigGrafanadashboard on a TV in our office that displays various metrics and multiple times we’ve seen something odd and uncovered an issue that could have festered into something much more if we hadn’t dug into it right away. Finally, diligent load testing of the infrastructure and staging runs of any significant modifications have made our deployments a lot less stressful, since they instill quite a bit of confidence.✨ Editor’s Note:Check outGrafana 101 video seriesandGrafana tutorialsto learn everything from building awesome, interactive visualizations to setting up custom alerts, sharing dashboards with teammates, and solving common issues.I would like to give a big shout-out to Neil Parker, who is my right-hand man in anything relating to AROYA infrastructure and did virtually all of the actual work in getting many of these things set up and running. I would also like to thankMike FreedmanandPriscila Fletcherfrom Timescale, who have given us a great bit of time and information and helped us in our journey with TimescaleDB.We’d like to give a big thank you to Paolo and everyone at AROYA for sharing their story, as well as for their efforts to help transform the cannabis production",https://www.timescale.com/blog/how-meter-group-brings-a-data-driven-approach-to-the-cannabis-production-industry/,485,"[0.010616706684231758, -0.009144041687250137, 0.03083578310906887, 0.005909440573304892, 0.04529193416237831, 0.023427382111549377, -0.020512107759714127, 0.007784082088619471, -0.02733444981276989, 0.023983387276530266, 0.0236978717148304, -0.04916894808411598, 0.021969744935631752, -0.04384932667016983, 0.03357073292136192, 0.0024832424242049456, 0.007449727039784193, -0.019069498404860497, -0.027319421991705894, 0.04919900372624397, 0.01095481775701046, 0.027379531413316727, 0.037898559123277664, 0.002526445547118783, -0.03621551766991615, -0.04138486832380295, -0.01665012165904045, 0.043969545513391495, -0.01481680478900671, -0.05848580598831177, -0.011277902871370316, -0.03420187160372734, -0.02987404353916645, 0.006461689714342356, 0.03919089958071709, 0.005315866786986589, 0.06365515291690826, -0.050972212105989456, 0.0322783924639225, 0.010519029572606087, -0.004583291243761778, 0.01139811985194683, 0.019084524363279343, 0.0228413213044405, -0.008077112026512623, -0.021128222346305847, -0.04330834746360779, -0.0032195744570344687, 0.02912268415093422, 0.0360652431845665, -0.050250906497240067, 0.02743964083492756, -0.013742361217737198, -0.027003850787878036, 0.006070982664823532, -0.02538091503083706, 0.01888917200267315, 0.04015263915061951, -0.005379732232540846, -0.037207309156656265, -0.0022371720988303423, -0.03450241684913635, 0.041895791888237, 0.0017027679132297635, -0.017521698027849197, 0.012502618134021759, -0.03952149674296379, 0.041535139083862305, -0.005699059925973415, 0.009452098980545998, 0.06810320168733597, 0.04460068419575691, 0.02864181436598301, -0.033089861273765564, 0.03254888206720352, -0.09316854923963547, -0.0035858619958162308, 0.020211564376950264, -0.013592088595032692, -0.030505185946822166, -0.0035126046277582645, -0.038649920374155045, -0.03910073637962341, 0.016184277832508087, 0.04604329541325569, -0.03904062509536743, -0.042737312614917755, -0.015034698881208897, 0.010736923664808273, 0.008678199723362923, -0.005702816881239414, 0.06161145865917206, -0.0003954028070438653, 0.03278931975364685, 0.021744336932897568, 0.013021055608987808, -0.0019591692835092545, 0.003272169502452016, 0.011585960164666176, 0.00171685591340065, 0.04000236839056015, -0.03251883015036583, -0.015838652849197388, 0.010195945389568806, 0.0312565453350544, 0.004226395860314369, 0.022375479340553284, 0.024058522656559944, 0.014726641587913036, 0.013021055608987808, -0.07778070867061615, -0.01205180212855339, -0.03131665289402008, 0.001855857321061194, -0.012735539115965366, 0.03426198288798332, -0.03636578842997551, 0.02108314074575901, 0.030054369941353798, -0.009301827289164066, -0.04198595508933067, 0.009301827289164066, -0.012750566937029362, 0.007096588145941496, 0.03904062509536743, -0.03522372245788574, -0.0152826476842165, -0.0333002433180809, -0.06134096905589104, -0.01713099144399166, 0.05677270516753197, -0.013501925393939018, 0.025741567835211754, -0.02420879527926445, -0.02578664943575859, -0.03357073292136192, -0.06515787541866302, -0.027379531413316727, -0.017491644248366356, -0.01696569286286831, -0.011450715363025665, -0.021143250167369843, 0.0036647547967731953, -0.02070746198296547, -0.028251107782125473, 0.015222538262605667, -0.044660795480012894, 0.0236978717148304, -0.013607116416096687, -0.030760647729039192, -0.010421352460980415, -0.03067048452794552, -0.08295006304979324, -0.021729309111833572, 0.046133458614349365, 0.004286504350602627, 0.035043396055698395, 0.03423192724585533, 0.03396143764257431, -0.03522372245788574, 0.008963716216385365, 0.012111911550164223, -0.027770237997174263, -0.011292929761111736, -0.015538109466433525, -0.009579830802977085, -0.04937933012843132, -0.03582480922341347, -0.0776003822684288, 0.02778526581823826, -0.05638199672102928, -0.05716341361403465, -0.06022895872592926, 0.01012832298874855, 0.04099415987730026, -0.02658309042453766, 0.015598217956721783, -0.024990208446979523, 0.02973879873752594, -0.04042312875390053, -0.05965792387723923, 0.028145918622612953, -0.019550368189811707, -0.006525555159896612, -0.025020264089107513, 0.017566779628396034, -0.04622362181544304, -0.0018699453212320805, 0.021518928930163383, 0.04093405231833458, -0.0271240696310997, 0.06167156621813774, 0.01232980564236641, 0.017326343804597855, 0.024539392441511154, -0.044149868190288544, 0.031226491555571556, 0.009572316892445087, -0.03275926411151886, 0.036035191267728806, 0.04958971217274666, 0.013238949701189995, 0.06563874334096909, -0.011270388960838318, 0.00800197571516037, -0.040092531591653824, -0.001074443687684834, -0.03110627271234989, -0.042256444692611694, -0.03230844810605049, 0.013111218810081482, -0.02410360425710678, 0.027800291776657104, 0.009249232709407806, -0.04694492742419243, 0.011548391543328762, -0.05445851758122444, 0.010691842064261436, 0.005052891094237566, -0.004372911062091589, -0.0021996041759848595, 0.07056766003370285, 0.015245079062879086, -0.014185662381350994, -0.004470587708055973, 0.03549421206116676, 0.008625604212284088, -0.03110627271234989, 0.03684665635228157, -0.003319129580631852, 0.02623746544122696, 0.0015928816283121705, -0.01755175180733204, 0.004425506107509136, 0.02225526049733162, -0.018934253603219986, 0.004876321647316217, -0.018393274396657944, 0.03543410077691078, -0.012111911550164223, 0.03540404886007309, 0.009068906307220459, 0.001024666242301464, -0.01356203481554985, 0.017777159810066223, 0.009745129384100437, -0.015493027865886688, -0.06503766030073166, 0.023412354290485382, 0.05514976754784584, -0.008347601629793644, -0.01081957295536995, -0.019249824807047844, -0.005436084233224392, -0.03387127444148064, -0.050190798938274384, -0.04312802106142044, -0.00047100833035074174, 0.011766285635530949, 0.002413741545751691, -0.003165100933983922, -0.04195589944720268, -0.027109041810035706, 0.022826293483376503, -0.03224834054708481, 0.04264715313911438, -0.006796044297516346, -0.016319522634148598, 0.0029509635642170906, 0.012412454932928085, 0.02778526581823826, 0.024809882044792175, 0.034051600843667984, -0.028656842187047005, -0.014876913279294968, -0.02524567022919655, 0.02840138040482998, 0.03612535446882248, -0.0137348473072052, -0.01723618060350418, 0.02362273447215557, -0.020136427134275436, 0.029828961938619614, -0.015973897650837898, 0.0020267916843295097, 0.012570240534842014, 0.030159560963511467, 0.011217793449759483, 0.007645080331712961, -0.02324705570936203, -0.01747661642730236, 0.03519366681575775, 0.06690102815628052, -0.02918279357254505, 0.004399208351969719, -0.025831731036305428, 0.0028570436406880617, -0.01157093234360218, -0.02386317029595375, -0.056712597608566284, 0.0140804722905159, 0.004117448814213276, 0.0429176390171051, -0.021473847329616547, 0.02441917546093464, 0.014621451497077942, -0.03149697929620743, -0.0004487023688852787, -0.023397326469421387, 0.024885019287467003, 0.02465961128473282, 0.007220562547445297, 0.003321007825434208, 0.0038582298438996077, -0.011931585147976875, -0.0018248638371005654, 0.08505386859178543, -0.03783845156431198, 0.01248007733374834, -0.049499548971652985, -0.053346507251262665, -0.08216864615678787, -0.02239050529897213, 0.005496193189173937, 0.010173404589295387, -0.02476480044424534, 0.03510350361466408, 0.007731486577540636, 0.045622535049915314, -0.023742953315377235, 0.0007522984524257481, -0.027139095589518547, 0.02417874149978161, 0.04679465293884277, -0.027214232832193375, -0.0134793845936656, -0.010556597262620926, -0.033119916915893555, 0.028206026181578636, 0.01875392720103264, -0.0271240696310997, -0.06954581290483475, -0.06185189262032509, 0.009121501818299294, 0.014839345589280128, -0.0034205629490315914, -0.016424713656306267, -0.05638199672102928, -0.022270288318395615, 0.009895401075482368, -0.04424003139138222, 0.016154224053025246, -0.011322983540594578, -0.0068674236536026, -0.020962923765182495, 0.0030974785331636667, 0.02263094112277031, -0.004846267402172089, -0.052625201642513275, 0.016214333474636078, -0.03086583875119686, 0.05301591008901596, 0.007506079040467739, 0.002954720286652446, -0.009324368089437485, 0.015778545290231705, -0.03059534914791584, 0.04820720851421356, 0.014298366382718086, -0.02682352624833584, 0.027078988030552864, -0.03546415641903877, -0.03690676763653755, -0.022480668500065804, -0.0659392848610878, -0.0190544705837965, 0.04508155584335327, -0.004425506107509136, 0.0017685118364170194, 0.05908689275383949, 0.02572654001414776, 0.013456844724714756, 0.01830311119556427, 0.003865743288770318, 0.03579475358128548, 0.023442408069968224, -0.01531270146369934, 0.012562726624310017, -0.030986055731773376, -0.005901927128434181, 0.027184177190065384, -0.014275825582444668, -0.041565194725990295, 0.006495500914752483, 0.009444586001336575, 0.016289468854665756, -0.010195945389568806, 0.014072959311306477, 0.06768244504928589, -0.005075431894510984, 0.034352146089076996, -0.010549084283411503, -0.03375105932354927, -0.0039371224120259285, 0.010428866371512413, 0.03218822926282883, -0.01937004178762436, 0.01469658687710762, -0.03314996883273125, 0.0015609489055350423, -0.031406816095113754, -0.03567453846335411, 0.05226454883813858, -0.0266131442040205, 0.05704319477081299, -0.030580321326851845, -0.03444230929017067, 0.029438255354762077, 0.004508155398070812, 0.0525350384414196, -0.03411170840263367, 0.010346217080950737, 0.007881758734583855, -0.01840830221772194, -0.04799683019518852, 0.07844190299510956, 0.0525350384414196, -0.03825921192765236, -0.027980618178844452, -0.07826157659292221, -0.029573500156402588, 0.003491942072287202, 0.011105089448392391, -0.008903606794774532, -0.023773007094860077, 0.04937933012843132, 0.018934253603219986, -0.0056953029707074165, 0.03645595163106918, -0.008730794303119183, -0.00641285115852952, -0.0035464155953377485, -0.020046265795826912, 0.009489667601883411, -0.026913689449429512, -0.005499949678778648, -0.01330657210201025, -0.0501306913793087, -0.04895856976509094, -0.01672525703907013, 0.02925792895257473, -0.02252575010061264, -0.06467700749635696, 0.04144497588276863, -0.028686895966529846, 0.024464257061481476, 0.012164506129920483, 0.019820857793092728, 0.012900838628411293, -0.007460997439920902, -0.04598318785429001, 0.0009363814606331289, -0.06738189607858658, -0.012337318621575832, -0.001498022465966642, -0.05677270516753197, 0.02145881950855255, -0.004556993953883648, 0.005368461832404137, -0.02572654001414776, 0.0209478959441185, 0.016740284860134125, -0.04583291336894035, -0.040543343871831894, -0.048086993396282196, 0.0034975772723555565, 0.00304300501011312, -0.008107166737318039, 0.007261887192726135, -0.04114443436264992, -0.002254077699035406, -0.01782224141061306, -0.04646405577659607, 0.06792287528514862, 0.016259415075182915, -0.034562524408102036, 0.01899436116218567, 0.016680175438523293, -0.028251107782125473, 0.028671870008111, -0.002051210729405284, 0.0072881849482655525, 0.04907878488302231, -0.019219769164919853, -0.03014453314244747, -0.008039544336497784, -0.06954581290483475, -0.03925100713968277, -0.010639247484505177, 0.004703509155660868, 0.025155507028102875, 0.009053879417479038, -0.017281262204051018, 0.064556784927845, -0.03372100368142128, 0.029002467170357704, -0.016079088672995567, 0.012299750931560993, 0.012202074751257896, -0.021894609555602074, -0.0363958440721035, 0.0274696946144104, 0.004248936660587788, -0.0004552767495624721, -0.03302975371479988, 0.029949180781841278, -0.01696569286286831, -0.015583191066980362, -0.0069162617437541485, -0.0071905083023011684, -0.02774018421769142, -0.04523182660341263, -0.004459317307919264, -0.013314086012542248, 0.011931585147976875, 0.02874700538814068, -0.019926046952605247, 0.010083241388201714, -0.028686895966529846, 0.00825743842869997, 0.01713099144399166, -0.023607708513736725, 0.010857141576707363, 0.013802469708025455, -0.056502215564250946, 0.007427186239510775, -0.0199110209941864, -0.04333840310573578, -0.03453247249126434, 0.015853680670261383, 0.0199110209941864, 0.02300661988556385, 0.03257893770933151, 0.01330657210201025, -0.003168857656419277, -0.01093979086726904, -0.021548982709646225, -0.020617298781871796, 0.020767569541931152, 0.03423192724585533, 0.03014453314244747, -0.026733363047242165, -0.019700638949871063, 0.008114679716527462, -0.008753335103392601, 0.0357045903801918, -0.006923775654286146, 0.012878297828137875, 0.00640533771365881, 0.015072266571223736, -0.00764883728697896, 0.012487591244280338, 0.008039544336497784, -0.009519721381366253, 0.015342756174504757, 0.05620167404413223, -0.005300839431583881, 0.013960255309939384, -0.03155709058046341, -0.01634957827627659, 0.03660622239112854, -0.021518928930163383, -0.008452791720628738, 0.00076075125252828, 0.025155507028102875, 0.0206022709608078, -0.040873944759368896, -0.021744336932897568, 0.0030956000555306673, 0.027379531413316727, -0.02420879527926445, -0.03131665289402008, -0.0425870418548584, 0.033841222524642944, -0.021969744935631752, -0.014072959311306477, 0.009895401075482368, 0.028311217203736305, 0.031887687742710114, -0.01317132730036974, 0.007919326424598694, 0.01809273101389408, 0.008482846431434155, 0.018768955022096634, 0.011330497451126575, -0.010669301263988018, 0.007160453591495752, 0.017521698027849197, -0.006735935807228088, 0.02709401398897171, 0.050701722502708435, 0.0047335634008049965, 0.007994462735950947, -0.022886402904987335, -0.01713099144399166, 0.023502517491579056, -0.007652594242244959, 0.010398811660706997, 0.04799683019518852, -0.031917739659547806, 0.010887195356190205, -0.024043496698141098, 0.007100345101207495, -0.03774828836321831, -0.03561442717909813, -0.007584971841424704, -0.003332278225570917, -0.001769451075233519, 0.011593473143875599, -0.02327710948884487, -0.015523082576692104, -0.014005336910486221, -0.005973306018859148, -0.056021347641944885, -0.010751950554549694, 0.014320907182991505, -0.0131337596103549, -0.01755175180733204, -0.033630840480327606, -0.0027894212398678064, -0.0017243694746866822, 0.0035332669503986835, 0.04123459756374359, 0.009159069508314133, 0.008580522611737251, 0.01710093580186367, 0.020451998338103294, 0.02562135085463524, -0.004463073797523975, -0.02156401053071022, 0.050731778144836426, 0.022691048681735992, 0.0042940182611346245, -0.01819792203605175, 0.013682251796126366, -0.038890354335308075, 0.0006518041482195258, 0.053226288408041, 0.001436035381630063, -0.03275926411151886, -0.009437072090804577, -0.018137812614440918, 0.0467044897377491, 0.025350861251354218, 0.007776568178087473, 0.020406916737556458, -0.0187088456004858, 0.006097280420362949, 0.004883835092186928, 0.017671968787908554, -0.05325634405016899, 0.0064504193142056465, -0.038199104368686676, 0.013629657216370106, -0.050671666860580444, 0.011345524340867996, 0.026387736201286316, 0.03453247249126434, 0.040363017469644547, 0.03137676417827606, 0.0013909537810832262, -0.005064161494374275, 0.0031801280565559864, 0.040122583508491516, 0.022240234538912773, -0.004451803397387266, 0.0022202664986252785, -0.048778243362903595, 0.02009134739637375, 0.05109243094921112, -0.007896785624325275, 0.029543446376919746, -0.017461588606238365, 0.025501133874058723, 0.01000810507684946, -0.04186573624610901, 0.03372100368142128, 0.013163814321160316, 0.03822916001081467, 0.025636378675699234, -0.008798416703939438, -0.012615322135388851, 0.01600395143032074, -0.013321599923074245, 0.008234897628426552, -0.024028468877077103, 0.0012998514575883746, 0.016334550455212593, -0.011105089448392391, -0.0467044897377491, 0.0004357883590273559, -0.0013120610965415835, -0.04619356617331505, -0.004083637613803148, -0.02976885437965393, 0.013877605088055134, -0.001252891612239182, 7.4255425715819e-05, 0.03083578310906887, -0.024990208446979523, -0.05148313567042351, 0.00013606646098196507, -0.03281937167048454, 0.0384695939719677, -0.014666533097624779, 0.018363220617175102, 0.018107758834958076, 0.028311217203736305, -0.013885118998587132, 0.006878694053739309, -0.04378921911120415, 0.022480668500065804, -0.017085909843444824, -0.01464399229735136, 0.03024972416460514, -0.013156300410628319, 0.023186946287751198, 0.013847551308572292, 0.002013642806559801, 0.007269400637596846, 0.02551615983247757, 0.005729114171117544, 0.002648541470989585, -0.0005672762636095285, 0.015215025283396244, -0.01744656264781952, -0.020992977544665337, -0.01565832644701004, -0.04937933012843132, -0.0048500238917768, -0.026192383840680122, -0.0007584032719023526, -0.030760647729039192, -0.012818189337849617, 0.0008790903375484049, -0.04267720505595207, -0.0001326618657913059, 0.027890454977750778, 0.012953433208167553, 0.031166382133960724, 0.0005240730824880302, 0.01543291937559843, -0.02538091503083706, -0.01937004178762436, -0.028206026181578636, -0.015019671060144901, -0.01464399229735136, 0.011300443671643734, 0.01203677523881197, 0.03314996883273125, -0.010068213567137718, 0.03185763210058212, -0.029032520949840546, 0.029543446376919746, 0.019069498404860497, 0.043488673865795135, 0.004744833800941706, 0.009196637198328972, -0.0031970336567610502, -0.05992841348052025, -0.0097000477835536, -0.012712998315691948, 0.005962035618722439, -0.0077540273778140545, 0.047756392508745193, -0.014260798692703247, -0.003450617427006364, -0.003918338567018509, 0.029783880338072777, 0.009767670184373856, 0.01246505044400692, -0.0037323771975934505, -0.024885019287467003, -0.004857537802308798, 0.01610914245247841, -0.009422045201063156, -0.0007917447946965694, -0.021969744935631752, -0.025471078231930733, -0.025005236268043518, -0.024614529684185982, -0.012314777821302414, -0.008069598115980625, 0.009467126801609993, 0.011751258745789528, 0.002930301008746028, 0.009331881999969482, -0.08288995176553726, -0.048507753759622574, 0.03387127444148064, -0.02239050529897213, -0.03149697929620743, 0.0032176959794014692, 0.0168304480612278, 0.017221154645085335, 0.005514977034181356, -0.011480769142508507, 0.0034956990275532007, -0.022059908136725426, -0.025951948016881943, -0.016499849036335945, -0.025320807471871376, -0.01387009210884571, -0.010564111173152924, -0.001802323036827147, 0.03636578842997551, 0.04306791350245476, -0.007690161932259798, 0.008077112026512623, -0.01143568754196167, 0.0259218942373991, 0.0047899154014885426, -0.027274340391159058, -0.0009546958608552814, 0.020286699756979942, 0.009737616404891014, -0.0020643596071749926, 0.008760849013924599, 0.0031707361340522766, 0.013051110319793224, -0.010090754367411137, -0.022450614720582962, 0.00904636550694704, -0.0025658919475972652, 0.029483336955308914, 0.008490359410643578, -0.0010941668879240751, -0.03837943077087402, -0.024975182488560677, 0.044690847396850586, -0.045382097363471985, 0.0453219898045063, -0.013809982687234879, -0.004425506107509136, 0.016079088672995567, -0.012712998315691948, 0.011330497451126575, 0.021248439326882362, 0.000720365671440959, -0.007971921935677528, -0.014411070384085178, -0.01624438725411892, 0.026282547041773796, -0.04165535792708397, -0.013103705830872059, -0.020662380382418633, -0.013223922811448574, -0.014411070384085178, 0.023066729307174683, 0.005684032570570707, -0.03218822926282883, -0.009279286488890648, 0.0016126048285514116, -0.007821650244295597, 0.03519366681575775, 0.01281067542731762, -0.00808462593704462, 0.005406029988080263, 0.03759801760315895, -0.002013642806559801, -0.022029852494597435, 0.01246505044400692, 0.00939199049025774, 0.019114580005407333, -0.0066908542066812515, 0.018107758834958076, -0.04261709749698639, 0.004662184044718742, -0.013366681523621082, -0.017867323011159897, 0.015057239681482315, -0.024749774485826492, -0.005511220078915358, -0.04093405231833458, -0.00014592806110158563, -0.0281609445810318, -0.011285415850579739, 0.0738135352730751, 0.004726049490272999, 0.006055955775082111, -0.02177439071238041, -0.004402965307235718, 0.019670585170388222, 0.006608204450458288, -0.0026184869930148125, 0.02097794972360134, -0.00034163365489803255, 0.017987539991736412, -0.0018126541981473565, 0.0035126046277582645, 0.02829618938267231, 0.0051317838951945305, -0.00887355301529169, 0.0019986156839877367, -0.025906866416335106, -0.001387197058647871, -0.006266336422413588, -0.027154123410582542, -0.005608896724879742, 0.021233413368463516, -0.0014961441047489643, 0.0058380612172186375, 0.0028269891627132893, 0.00968502089381218, 0.030986055731773376, 0.013809982687234879, -0.010481461882591248, 0.023081757128238678, -0.015583191066980362, -0.027905482798814774, 0.03272920846939087, 0.02420879527926445, 0.011668609455227852, 0.02324705570936203, -0.015447946265339851, 0.02441917546093464, -0.022991593927145004, -0.012878297828137875, 0.05830547958612442, -0.03024972416460514, 0.048056937754154205, -0.005657735280692577, -0.019670585170388222, 0.028686895966529846, -0.0062926337122917175, -0.008287492208182812, 0.0035144828725606203, -0.010496488772332668, -0.0021826985757797956, -0.009925455786287785, 0.01344181690365076, -0.011428174562752247, -0.013967768289148808, -0.00421512546017766, 0.026628172025084496, -0.005845575127750635, 0.0360652431845665, -0.008092138916254044, -0.029077602550387383, -0.0031463168561458588, 0.07994462549686432, -0.013051110319793224, 0.047065142542123795, -0.04264715313911438, -0.019324960187077522, -0.012570240534842014, -0.012427481822669506, 0.001220958773046732, 0.05172356963157654, -0.014824317768216133, -0.016875529661774635, 0.01809273101389408, -0.026733363047242165, -0.008745822124183178, -0.000988976564258337, 0.02324705570936203, -0.024869991466403008, -0.01600395143032074, -0.001822985359467566, 0.006927532143890858, -0.013607116416096687, 0.023923277854919434, 0.014155608601868153, 0.006600691005587578, 0.004384181462228298, -0.01047394797205925, 0.04015263915061951, -0.01779218763113022, 0.007310725748538971, 0.008009489625692368, 0.044209979474544525, 0.021684227511286736, -0.05542025715112686, -0.041775573045015335, -0.020992977544665337, -0.023637762293219566, 0.038890354335308075, 0.024614529684185982, -0.005969549063593149, 0.016094114631414413, 0.04231655225157738, -0.0030185857322067022, 0.0023498761001974344, 0.05160335451364517, 0.01616925187408924, -0.006022144574671984, 0.019835883751511574, -0.028626788407564163, 0.020557189360260963, 0.0398220419883728, -0.0013608994195237756, 0.0285065695643425, 0.028852194547653198, 0.009008797816932201, -0.0011232821270823479, -0.05076183006167412, 0.01592881605029106, 0.02423884905874729, 0.003101235255599022, 0.002729312516748905, 0.001497083343565464, -0.004583291243761778, 0.02338230051100254, -0.005958279129117727, -0.008219869807362556, -0.005638951435685158, -0.04021274670958519, -0.03471279889345169, -0.025215616449713707, -0.03107621893286705, 0.003475036472082138, -0.007081560790538788, 0.03588491678237915, 0.0005865298444405198, -0.0047598606906831264, -0.02036183513700962, 0.007299455348402262, -0.003414927748963237, 0.0014219473814591765, 0.011473256163299084, 0.011931585147976875, 0.027755210176110268, 0.02864181436598301, -0.0052294605411589146, 0.005383489187806845, 0.0005170290824025869, -0.0202566459774971, 0.0029772610869258642, -0.018498465418815613, 0.013855064287781715, -0.0023254568222910166, -0.02565140463411808, -0.0051317838951945305, 0.04983014613389969, 0.06092020869255066, 0.002708650194108486, -0.023547599092125893, -0.03714720159769058, 0.018964307382702827, 0.014929508790373802, 0.003292831825092435, 0.01864873617887497, 0.015064752660691738, 0.03396143764257431, -0.00033247648389078677, -0.026282547041773796, 0.009211664088070393, -0.02586178481578827, 0.01943015120923519, 0.01854354701936245, -0.02610222063958645, 0.008047057315707207, -0.007337023038417101, -0.0020455755293369293, -0.018874144181609154, 0.015613245777785778, 0.02193969115614891, -0.003758674720302224, 0.0024569446686655283, 0.038169048726558685, 0.012066829949617386, -0.0001324270706390962, 0.021233413368463516, -0.044149868190288544, -0.010045673698186874, -0.010271080769598484, -0.028040727600455284, -0.04111437872052193, 0.01640968583524227, -0.016064060851931572, -0.009542262181639671, 0.01686050184071064, 0.013208895921707153, -0.006074739620089531, -0.0076713780872523785, -0.03321008011698723, -0.016439739614725113, 0.00020779779879376292, 0.025125453248620033, 0.00856549572199583, -8.036022336455062e-05, -0.016710229218006134, 0.0015966384671628475, 0.013223922811448574, 0.008663171902298927, 0.02455442026257515, -0.0036234299186617136, 0.0228413213044405, -0.03257893770933151, 0.010864654555916786, 0.03278931975364685, 0.02001621015369892, -0.0021996041759848595, -0.010248539969325066, -0.03396143764257431, 0.026042111217975616, 0.038920409977436066, -0.02070746198296547, -0.0025658919475972652, 0.001668017590418458, 0.020932868123054504, 0.00921917799860239, -0.029167765751481056, 0.005943251773715019, 0.05292574688792229, 0.01693563722074032, 0.015012158080935478, 0.02290143072605133, 0.010060700587928295, 0.014591396786272526, 0.042016010731458664, -0.01782224141061306, 0.002605338115245104, 0.012758079916238785, 0.013637170195579529, -0.01238240022212267, -0.0003543128550518304, -0.00033905086456798017, -0.031677305698394775, 0.006206227466464043, 0.047576069831848145, -0.016845474019646645, 0.01926485076546669, 0.00641285115852952, -0.007160453591495752, 0.02706396020948887, -0.008851012215018272, 0.0036591195967048407, -0.006059712264686823, 0.00766762113198638, -0.005522490479052067, 0.01217202004045248, 0.0010105782421305776, 0.019655557349324226, -0.012487591244280338, -0.0032646560575813055, 0.03591497242450714, 0.07501570880413055, 0.011578446254134178, 0.0034806716721504927, 0.01867879182100296, 0.0005254818825051188, -0.008557981811463833, -0.016094114631414413, -0.001359021058306098, 0.006127334665507078, 0.046584274619817734, -0.00469599524512887, -0.01761186122894287, 0.0008546711760573089, -0.007164210546761751, 0.00451566930860281, -0.013021055608987808, -0.025155507028102875, 0.024599501863121986, -0.006754719652235508, 0.018934253603219986, 0.021248439326882362, 0.02009134739637375, 0.00908393319696188, -0.029137711971998215, -0.01344181690365076, -0.004726049490272999, 0.013524466194212437, -0.01741650700569153, -0.001020909403450787, 0.02784537337720394, 0.010113295167684555, -0.005124269984662533, 0.02431398630142212, 0.01851349137723446, 0.020001184195280075, 0.035013340413570404, 0.02410360425710678, -0.014103013090789318, 0.00877587590366602, -0.022826293483376503, 0.011533364653587341, -0.014516260474920273, -0.015357783064246178, 0.0025865542702376842, -0.02891230396926403, 0.0467044897377491, 0.016875529661774635, -0.017656942829489708, -0.03083578310906887, -0.022615913301706314, -0.009985564276576042, -0.006454175803810358, 0.011413146741688251, -0.019490258768200874, -0.01246505044400692, 0.014170635491609573, 0.027650021016597748, 0.012442509643733501, 0.0329696424305439, 0.023427382111549377, -0.01768699660897255, -0.008114679716527462, 0.008978743106126785, 0.0026673253159970045, -0.041805628687143326, -0.028957385569810867, 0.04117448627948761, 0.001350568258203566, -0.007874244824051857, -0.045412153005599976, -0.01737142540514469, 0.024013441056013107, 0.008129707537591457, 0.019956102594733238, 0.02987404353916645, 0.034292034804821014, 0.02139871194958687, 0.03612535446882248, 0.03185763210058212, -0.041895791888237, -0.0017591199139133096, 0.01624438725411892, -0.030204642564058304, 0.0212935209274292, -0.02976885437965393, 0.001078200526535511, -0.01689055562019348, 0.004684724844992161, -0.026492927223443985, 0.035764701664447784, 0.03630568087100983, -0.016499849036335945, 0.005462381988763809, 0.028145918622612953, -0.008452791720628738, -0.008715767413377762, -0.034081656485795975, 0.003929608967155218, 0.006672070361673832, -0.012104397639632225, 0.018047649413347244, 0.011195252649486065, -0.0006865545292384923, 0.042496878653764725, 0.01205180212855339, -0.03453247249126434, 0.006799801252782345, -0.016364604234695435, -0.01143568754196167, 0.018423328176140785, -0.006983884144574404, 0.005849331617355347, 0.01998615637421608, 0.008114679716527462, 0.01440355647355318, 0.03858981281518936, -0.005774195771664381, 0.006938802544027567, -0.007761541288346052, -0.012457536533474922, 0.01665012165904045, 0.009805237874388695, -0.015718435868620872, -0.04270726069808006, 0.023923277854919434, 0.005834304727613926, 0.039882149547338486, -0.022104989737272263, 0.0017422143137082458, -0.020692434161901474, 0.022676022723317146, 0.007104101590812206, 0.01961047574877739, -0.03248877450823784, -0.0019075133604928851, 0.030956001952290535, -0.007889272645115852, 0.008798416703939438, 0.004560750909149647, -0.02520058862864971, -0.04342856630682945, 0.04198595508933067, -0.020451998338103294, -0.008009489625692368, 0.03922095149755478, -0.019084524363279343, 0.0228413213044405, 0.02115827612578869, 0.014493719674646854, -0.013952741399407387, -0.012232128530740738, -0.014238257892429829, 0.03717725723981857, 0.02671833522617817, -0.0020042508840560913, -0.03245871886610985, 0.006273849867284298, -0.03248877450823784, -0.018363220617175102, -0.02212001569569111, 0.011600987054407597, -0.0012566483346745372, 0.009835292585194111, -0.0027969349175691605, 0.022300342097878456, -0.025110425427556038, 0.004008501768112183, 0.001582550466991961, -0.01693563722074032, 0.007152940146625042, 0.016544930636882782, -0.010564111173152924, -0.008024516515433788, 0.0029678691644221544, 0.02853662520647049, -0.012224615551531315, -0.009384477511048317, -0.0013421154581010342, 0.014914480969309807, 0.013802469708025455, -0.01672525703907013, -0.002139495452865958, 0.020046265795826912, 0.012307264842092991, -0.01378744188696146, 0.01888917200267315, -0.020782597362995148, -0.010120809078216553, 0.01610914245247841, -0.0024174985010176897, -0.004853780847042799, -0.03471279889345169, -0.014719127677381039, 0.040122583508491516, 0.022676022723317146, 0.023923277854919434, -0.006668313406407833, 0.022089961916208267, -0.04691487178206444, 0.017656942829489708, 0.0007137912907637656, -0.008475332520902157, -0.03441225364804268, -0.0061348481103777885, 0.00383381056599319, 0.008234897628426552, -0.017161045223474503, 0.0012096883729100227, -0.00046560793998651206, 0.00249826954677701, -0.01961047574877739, 0.012337318621575832, -0.0043503702618181705, 0.025471078231930733, -0.012743053026497364, -0.0071153719909489155, -0.005901927128434181, 0.04574275016784668, 0.042556989938020706, -0.019805829972028732, -0.011135144159197807, -0.023367272689938545, 0.014298366382718086, -0.06293385475873947, 0.0013045475352555513, 0.009534749202430248, 0.0030486402101814747, -0.040363017469644547, -0.005026593338698149, -0.004846267402172089, 0.01409549918025732, 0.002240929054096341, 0.0025414726696908474, 0.021729309111833572, -0.02949836477637291, -0.028867222368717194, -0.0014820561045780778, -0.011217793449759483, 0.024990208446979523, -0.01016589067876339, -0.014290853403508663, -0.016905583441257477, 0.012510132044553757, -0.013862578198313713, 0.028281161561608315, 0.013975282199680805, 0.005037863738834858, -0.013269004411995411, -0.011631040833890438, 0.015252592973411083, -0.017566779628396034, -0.017626889050006866, 0.005725357681512833, -0.036996930837631226, -0.03278931975364685, 0.004658427555114031, 0.029137711971998215, -0.004872564692050219, 0.008182302117347717, 0.011300443671643734, -0.022480668500065804, -0.009159069508314133, 0.026778444647789, -0.03474285081028938, 0.030039342120289803, 0.008986257016658783, 0.031647250056266785, -0.045442208647727966, -0.053586941212415695, 0.03173741325736046, 0.004365397151559591, 0.007584971841424704, 0.031136328354477882, -0.004654670599848032, 0.018844090402126312, 0.004357883706688881, -0.008032030425965786, 0.005443597678095102, -0.00625882251188159, -0.026763416826725006, -0.006642015650868416, -0.01269045751541853, 0.00012303507537581027, -0.03567453846335411, -0.010947304777801037, 0.007716459687799215, -0.03324013203382492, -0.004147503059357405, -0.009827778674662113, 0.02493010088801384, 0.011082548648118973, 0.020527135580778122, 0.001932871644385159, 0.001065990887582302, 0.001737518236041069, 0.022706076502799988, 0.006863666698336601, 0.014929508790373802, 0.016094114631414413, 0.005289569031447172, 0.004711022600531578, 0.02212001569569111, 0.0051317838951945305, -0.01592881605029106, 0.04288758710026741, 0.02444923110306263, -0.010173404589295387, 0.027139095589518547, -0.01047394797205925, -0.019820857793092728, 0.02925792895257473, 0.0011054372880607843, -0.0006611961289308965, -0.020106373354792595, 0.007269400637596846, -0.012555212713778019, -0.002958477009087801, 0.02022659033536911, 0.012074342928826809, 0.01390765979886055, 0.031647250056266785, 0.009579830802977085, -0.007904299534857273, -0.003101235255599022, 0.030204642564058304, 0.008482846431434155, 0.0032947103027254343, -0.007836677134037018, 0.017055854201316833, -0.044480469077825546, 0.013509439304471016, -0.00560514023527503, 0.04700503498315811, -0.0012726146960631013, -0.009467126801609993, 0.006371526513248682, 0.002564013469964266, 0.0326089933514595, 0.02829618938267231, -0.001643598428927362, 0.0044179921969771385, 0.042556989938020706, -0.01330657210201025, 0.01517745666205883, 0.004632129799574614, 0.04330834746360779, -0.006112307775765657, 0.016469795256853104, -0.0202566459774971, -0.01568838208913803, 0.01985091157257557, 0.01172871794551611, -0.013246463611721992, -0.004316559061408043, -0.02541097067296505, 0.024629555642604828, 0.02517053484916687, 0.01758180744946003, -0.011443201452493668, 0.030369941145181656, 0.013494412414729595, 0.00920415110886097, -0.009482153691351414, -0.01651487685739994, -0.034051600843667984, 0.02070746198296547, 0.0597480870783329, -0.01157093234360218, -0.007592485286295414, -0.022465642541646957, -0.0034675230272114277, 0.009286800399422646, -0.0035126046277582645, -0.005424813833087683, -0.016544930636882782, -0.07579711824655533, -0.002736826194450259, 0.014411070384085178, -0.01827305741608143, -0.00211695465259254, 0.002811962040141225, 0.03378111124038696, 0.01359960250556469, 0.010271080769598484, 0.02949836477637291, 0.005578842479735613, 0.012525158934295177, 0.0015844288282096386, 0.0044179921969771385]" -How METER Group Brings a Data-Driven Approach to the Cannabis Production Industry,"industry, equipping growers with the data they need to improve their crops, make informed decisions, and beyond.We’re always keen to feature new community projects and stories on our blog. If you have a story or project you’d like to share, reach out on Slack (@Lucie Šimečková), and we’ll go from there.Additionally, if you’re looking for more ways to get involved and show your expertise, check out theTimescale Heroesprogram.The open-source relational database for time-series and analytics.Try Timescale for free",https://www.timescale.com/blog/how-meter-group-brings-a-data-driven-approach-to-the-cannabis-production-industry/,109,"[-0.010468360967934132, 0.004885013215243816, 0.05078551545739174, 0.00627503078430891, 0.033041179180145264, -0.011419425718486309, 0.0051709976978600025, 0.02567209117114544, -0.018449321389198303, -0.0034417896531522274, 0.0034850197844207287, -0.024395138025283813, 0.004602354485541582, -0.02705545909702778, 0.044932812452316284, 0.016640303656458855, 0.01487119123339653, -0.011672155931591988, -0.02373005822300911, 0.08906752616167068, -0.005480260122567415, 0.04038366302847862, 0.04235230013728142, 0.005892609711736441, 0.0021764745470136404, -0.04426773265004158, -0.03437133878469467, 0.07326522469520569, 0.03152479603886604, -0.05831422284245491, -0.0037410755176097155, -0.03453096002340317, -0.02095002308487892, 0.05884628742933273, 0.04719408601522446, -0.0345841646194458, 0.03971858322620392, -0.02427542395889759, 0.04256512597203255, 0.013979983516037464, -0.032881561666727066, 0.006481205578893423, 0.017731035128235817, 0.028279205784201622, -0.021668309345841408, -0.04062309116125107, -0.046662021428346634, -0.021814627572894096, 0.012377141043543816, 0.04815179854631424, -0.008486421778798103, -0.04296417534351349, -0.008273596875369549, -0.05099834129214287, 0.020790403708815575, -0.02814619056880474, -0.008945327252149582, 0.012962411157786846, -0.006614221725612879, 0.002434193156659603, 0.010661234147846699, 0.015855509787797928, 0.04309719055891037, 0.003212336916476488, -0.04221928492188454, 0.002884784946218133, 0.00603560172021389, 0.0015313469339162111, -0.031711019575595856, 0.0019004663918167353, 0.04418792203068733, -0.008945327252149582, -0.014246015809476376, -0.028970889747142792, 0.0009377629612572491, -0.07252033799886703, -0.05278075858950615, 0.035408865660429, 0.01511062029749155, -0.0527009479701519, 0.038973692804574966, 0.002650344278663397, -0.018914878368377686, 0.040011219680309296, -0.009424185380339622, -0.03354664146900177, -0.009710169397294521, -0.03673902526497841, -0.04357604682445526, 0.0370582640171051, -0.01882176660001278, 0.03085971623659134, 0.027374697849154472, 0.039053503423929214, 0.003913996275514364, 0.02358373999595642, 0.0008122290601022542, -0.01799706742167473, -0.005423728376626968, 0.053233012557029724, 0.00610543554648757, -0.028864476829767227, -0.01805027388036251, -0.027933364734053612, 0.01640087552368641, 0.005184299312531948, 0.016214653849601746, -0.019127704203128815, 0.055866729468107224, 0.0025206536520272493, -0.0932176262140274, 0.009078343398869038, -0.01171871181577444, -0.025685394182801247, 0.00717621436342597, -0.01806357502937317, -0.0045591238886117935, -0.05051948502659798, 0.013620840385556221, -0.05560069531202316, -0.05179644003510475, 0.0034318133257329464, -0.03160460665822029, 0.009676915593445301, 0.012410394847393036, 0.01127310749143362, -0.009251263923943043, -0.030673494562506676, 0.005207577254623175, -0.027587521821260452, 0.018728654831647873, -0.024328630417585373, 0.03782975673675537, 0.02075049839913845, -0.04849763959646225, -0.05214228108525276, -0.05325961485505104, -0.018861671909689903, -0.009417533874511719, -0.052541326731443405, 0.01783744804561138, 3.244863546569832e-05, 0.001388354692608118, -0.008439866825938225, 0.008958629332482815, -0.03857464715838432, -0.009663613513112068, 0.01971297338604927, -0.02926352433860302, -0.011572393588721752, -0.010368598625063896, -0.027241680771112442, -0.07299919426441193, -0.0016843153862282634, 0.019420338794589043, 0.013807062990963459, 0.005766244605183601, 0.01626785844564438, -0.013687348924577236, -0.04094232991337776, 0.030833113938570023, 0.015123921446502209, 0.00484510837122798, -0.0064878566190600395, -0.03716467693448067, 0.029795588925480843, -0.04892329126596451, -0.0510515496134758, -0.06842344254255295, 0.005001402460038662, -0.04730049520730972, -0.06890229880809784, -0.01272963359951973, 0.029423143714666367, -0.0004113104660063982, 0.017903955653309822, -0.021561896428465843, -0.01508401706814766, -0.039106711745262146, -0.049428753554821014, -0.051716629415750504, -0.009577153250575066, -0.027095362544059753, -0.04307058826088905, 0.00403038552030921, 0.018103480339050293, -0.047832559794187546, -0.00781469140201807, 0.007016594987362623, 0.006963388528674841, -0.06608235836029053, 0.03878747299313545, 0.054350346326828, 0.015735795721411705, 0.0569840632379055, -0.03743070736527443, 0.01020897924900055, 0.020723896101117134, -0.015855509787797928, 0.037031661719083786, 0.009823232889175415, 0.059378352016210556, 0.012536760419607162, -0.035408865660429, -0.003671242156997323, -0.021694913506507874, 0.005653181113302708, 0.015097318217158318, -0.04365585744380951, -0.011652203276753426, -0.0057230144739151, 0.014019888825714588, 0.007701627444475889, 0.0016768332570791245, -0.014671667478978634, -0.02157519944012165, -0.0005175154656171799, -0.010814202949404716, 0.0018971409881487489, 0.010355297476053238, -0.041873443871736526, 0.046449195593595505, 0.011160043999552727, -0.028545238077640533, 0.009390930645167828, 0.03822880610823631, 0.004366250708699226, -0.024820789694786072, 0.011632250621914864, -0.013966682367026806, 0.023477327078580856, -0.0345841646194458, -0.0032173250801861286, -0.025924822315573692, 0.029795588925480843, 0.015562874265015125, -0.015669288113713264, -0.046449195593595505, 0.024169011041522026, 0.014817984774708748, 0.024780884385108948, -0.012603268027305603, -0.007096404675394297, 0.018169987946748734, 0.007601865567266941, 0.023783264681696892, -0.04192664846777916, -0.08369368314743042, -0.007269325666129589, 0.054962221533060074, 0.030327653512358665, -0.005802823696285486, 0.00035082976683042943, -0.05299358442425728, 0.01915430650115013, -0.04706106707453728, 0.01228402927517891, -0.015123921446502209, 0.012869300320744514, -0.03163120895624161, 0.027028854936361313, -0.033520035445690155, -0.05408431589603424, -0.009497343562543392, -0.00809402484446764, 0.008360057137906551, -0.0061453403905034065, -0.04985440522432327, -0.004369576461613178, -0.008513025008141994, 0.055653903633356094, 0.0012586640659719706, 0.05041307210922241, -0.060495685786008835, -0.04094232991337776, -0.03493000566959381, 0.01923411712050438, 0.0009718483197502792, 0.008393310941755772, -0.022519612684845924, -0.026882538571953773, -0.019939102232456207, -0.00404701242223382, -0.012616569176316261, 0.006837023422122002, -0.012563362717628479, 0.027507713064551353, 0.016307763755321503, 0.04761973395943642, -0.03242930769920349, 0.0004709598433692008, 0.018702052533626556, 0.04365585744380951, -0.023197993636131287, 0.006348189432173967, 0.004665536805987358, -0.0018738631624728441, -0.0112398536875844, -0.05110475420951843, -0.029689176008105278, 0.03636658191680908, -0.03463737294077873, 0.005377172492444515, -0.03673902526497841, -0.01737189292907715, -0.008905422873795033, -0.031711019575595856, -0.03112574853003025, 0.013221792876720428, -0.02697564847767353, 0.009277867153286934, 0.03264212980866432, 0.009071692824363708, -0.015004207380115986, 0.009770026430487633, 0.0020550976041704416, 0.046928051859140396, -0.005496887024492025, -0.0080275172367692, -0.05560069531202316, -0.04570430517196655, -0.04370906576514244, 0.006215173751115799, -0.020630784332752228, -0.0070897541008889675, -0.045677702873945236, -0.005762919317930937, 0.001688472111709416, 0.012390442192554474, 0.004206631798297167, -0.014791381545364857, -0.04993421584367752, 0.0012994002318009734, 0.029768984764814377, 0.0032173250801861286, -0.017664527520537376, 0.01730538345873356, -0.02373005822300911, 0.0021798000670969486, 0.015483064576983452, -0.04894989728927612, -0.049987420439720154, -0.028252603486180305, 0.04716747999191284, 0.04179363325238228, 0.006471229251474142, -0.015190429985523224, -0.004658886231482029, -0.06273035705089569, 0.015004207380115986, -0.04871046543121338, -0.015669288113713264, -0.020112022757530212, 0.00534059340134263, -0.028332412242889404, -0.0014257654547691345, 0.0017707757651805878, 0.0009011835209093988, -0.01068783737719059, 0.01145267952233553, -0.05174323171377182, 0.008266945369541645, 0.022878754884004593, -0.021841229870915413, 0.02670961618423462, 0.02524644136428833, -0.021827928721904755, -0.008998533710837364, -0.00386411533690989, -0.038707662373781204, -0.00352824991568923, -0.030540477484464645, -0.01950014941394329, -0.0690087080001831, -0.03878747299313545, -0.006225149612873793, 0.0637412741780281, 0.029502954334020615, -0.004519219510257244, 0.03671242296695709, 0.01441893633455038, 0.0025040265172719955, -0.01020232867449522, -0.01065458357334137, 0.03336041793227196, 0.0312853679060936, -0.010521567426621914, 0.0267628226429224, -0.03923972696065903, 0.013634142465889454, 0.04543827101588249, -0.004738695919513702, 0.022812247276306152, -0.008413263596594334, 0.013993285596370697, -0.003930623643100262, -0.004439409822225571, 0.03301457688212395, 0.06086813285946846, -0.017624622210860252, 0.009045089595019817, -0.02220037393271923, -0.0527009479701519, 0.009364327415823936, 0.03285495564341545, 0.019606562331318855, -0.016227954998612404, 0.007668373640626669, -0.012051251716911793, -0.01666690781712532, -0.05057268962264061, -0.04950856417417526, 0.04910951480269432, -0.011865029111504555, -0.012084505520761013, -0.06874267756938934, -0.04086252301931381, 0.009484042413532734, 0.0077548339031636715, 0.03370625898241997, -0.0015679263742640615, -0.0019337204284965992, 0.050812121480703354, -0.03450435400009155, -0.02551247365772724, 0.04432093724608421, 0.036419786512851715, 0.000727015663869679, -0.0335998460650444, -0.060974545776844025, -0.052754152566194534, 0.0042465366423130035, 0.04245871305465698, -0.046928051859140396, -0.023676851764321327, -0.0167999230325222, 0.06517785042524338, -0.021947642788290977, 0.07448897510766983, 0.032136671245098114, 0.009211359545588493, 0.021881135180592537, 0.002640367951244116, -0.0020600855350494385, 0.023557137697935104, -0.018369512632489204, -0.028864476829767227, -0.01840941794216633, -0.050173643976449966, -0.02870485745370388, 0.038148995488882065, -0.025831710547208786, -0.0050778863951563835, 0.03362644836306572, -0.026403680443763733, -0.01874195784330368, 0.03325400501489639, -0.011978092603385448, 0.007408992387354374, 0.012104458175599575, -0.025645488873124123, 0.029369937255978584, -0.012057902291417122, -0.027068760246038437, 0.011918235570192337, -0.03085971623659134, -0.008772406727075577, 0.017105860635638237, -0.02878466621041298, -0.0036014087963849306, 0.033227402716875076, 0.056345585733652115, -0.02704215794801712, 0.003044404089450836, -0.04926913231611252, 0.011426076292991638, 0.015616080723702908, -0.026310568675398827, -0.009577153250575066, -0.015097318217158318, -0.005260783713310957, -0.0022695858497172594, -0.049003101885318756, 0.08656682819128036, 0.028252603486180305, 0.04690144956111908, 0.0018688751151785254, -0.03016803413629532, -0.029689176008105278, -0.02371675707399845, -0.004908291157335043, 0.016081636771559715, 0.059378352016210556, -0.014618461020290852, 0.01799706742167473, 0.00637811841443181, -0.09210029244422913, -0.014299222268164158, -0.02310488373041153, -0.0021265936084091663, 0.018436020240187645, 0.00965031236410141, -0.02662980742752552, 0.03397229313850403, -0.0036014087963849306, 0.00025127557455562055, -0.035515278577804565, -0.002056760247796774, 0.002008541952818632, -0.012410394847393036, -0.014379031956195831, -0.0011331302812322974, 0.02061748318374157, 0.0001876772876130417, -0.006757213734090328, 0.017877353355288506, -0.03181743249297142, -0.003993805963546038, -0.004509243182837963, -0.018648846074938774, -0.020457863807678223, 0.012290680781006813, -0.02318469248712063, -0.0006280850502662361, -0.00610543554648757, -0.03543546795845032, -0.03679222986102104, -0.043203603476285934, -0.01331490371376276, -0.00891872402280569, -0.00575626827776432, -0.030939526855945587, 0.009357676841318607, -0.010667884722352028, -0.040516678243875504, 0.0228920578956604, -0.020231736823916435, -0.019593259319663048, -0.022705834358930588, 0.00279333651997149, -0.007635119371116161, 0.0329347662627697, -0.0018256448674947023, 0.04309719055891037, -0.01660040020942688, 0.0009893066016957164, -0.03681883588433266, -0.02704215794801712, -0.0128027917817235, 0.02995520830154419, 0.04538506641983986, -0.043948493897914886, 0.024248819798231125, -0.002485736971721053, 0.0050246804021298885, 0.029077302664518356, -0.004609005060046911, 0.003295471891760826, 0.010734393261373043, 0.02913050912320614, -0.0024474947713315487, 0.001730870921164751, 0.016001828014850616, -0.0026320545002818108, 0.0005586672923527658, 0.03402549773454666, 0.004256512504070997, -0.011253155767917633, -0.059112317860126495, 0.006670753471553326, 0.00550021231174469, 0.0063947453163564205, -0.012470251880586147, -0.0029429795686155558, 0.01145267952233553, 0.026789426803588867, -0.03631337359547615, -0.01951345056295395, 0.006464578676968813, 0.009277867153286934, -0.0036413136404007673, -0.03256232291460037, -0.03500981628894806, 0.017757639288902283, -0.01709255948662758, -0.017824146896600723, 0.025206536054611206, 0.02261272445321083, 0.04307058826088905, -0.04205966740846634, -0.005480260122567415, 7.949785504024476e-05, 0.0008820624789223075, 0.004825156182050705, 0.0312853679060936, -0.008772406727075577, -0.0007336664712056518, 0.02317139133810997, -0.040011219680309296, 0.027028854936361313, 0.02150868996977806, 0.017385194078087807, 0.020923420786857605, -0.004938219673931599, 0.01542985811829567, -0.002332768402993679, -0.0071429600939154625, -0.022093961015343666, 0.007927754893898964, -0.02539275772869587, 0.016932940110564232, 0.012683077715337276, 0.023876376450061798, -0.06267715245485306, -0.0056797838769853115, 0.005506863351911306, 0.018289702013134956, 0.023756660521030426, 0.03942594677209854, -0.03234949707984924, -0.02780034765601158, 0.0017258828738704324, -0.016720114275813103, -0.023211294785141945, 0.017624622210860252, 0.0023360939230769873, -0.0026154275983572006, -0.05506863445043564, -0.01352772954851389, 0.025007011368870735, 0.010288788937032223, -0.0339190848171711, 0.013494475744664669, 0.009104946628212929, -0.009537248872220516, 0.023743359372019768, 0.03160460665822029, 0.039053503423929214, -0.0177842415869236, -0.0019769505597651005, 0.04607674852013588, -0.002492387779057026, -0.030380859971046448, -0.0250336155295372, 0.02484739199280739, -0.035728104412555695, 0.015536271035671234, 0.03466397523880005, 0.02712196670472622, 0.007442246191203594, -0.03141838312149048, 0.0007407329394482076, 0.03314759209752083, 0.023876376450061798, 0.004017083905637264, -0.000552016485016793, -0.011658853851258755, 0.013979983516037464, 0.04546487703919411, 0.006388094276189804, -0.021016530692577362, -0.031578004360198975, -0.019540052860975266, -0.01660040020942688, -0.005114465951919556, 0.0012412057258188725, 0.019699672237038612, 0.051078151911497116, 0.011499235406517982, 0.04953516647219658, 0.016786621883511543, 0.031790830194950104, 0.0032322893384844065, 0.01584220863878727, -0.00717621436342597, 0.019207512959837914, -0.005387148819863796, -0.026230759918689728, 0.04400169849395752, 0.04879027605056763, -0.03077990747988224, 0.007009944412857294, -0.02710866555571556, 0.028066379949450493, -0.011372869834303856, 0.010834154672920704, -0.006221824325621128, 0.02019183151423931, 0.04738030582666397, 0.0066441502422094345, -0.012377141043543816, 0.01407309528440237, -0.007502103690057993, -0.023424120619893074, -0.0028714833315461874, 5.76749152969569e-05, -0.012822744436562061, 0.0010516579495742917, -0.04272474721074104, -0.02607114054262638, 0.008559580892324448, -0.012177616357803345, -0.05554749071598053, -0.007109706290066242, -0.00806077104061842, 0.017890654504299164, 0.02302507311105728, 0.007182864937931299, 0.060016829520463943, 0.005852704867720604, -0.03921312466263771, -0.0030294398311525583, -0.05629238113760948, 0.020803704857826233, -0.03479699045419693, -0.008200437761843204, -0.005746291950345039, 5.242701809038408e-05, -0.021548595279455185, 0.02089681662619114, -0.060016829520463943, 0.006414697505533695, -0.04094232991337776, -0.03570149838924408, 0.011751965619623661, -0.0032406027894467115, 0.016507288441061974, 0.009078343398869038, 0.00279333651997149, -0.015496366657316685, 0.027082061395049095, 0.00745554780587554, 0.011339616030454636, 0.02220037393271923, 0.05804819241166115, -0.013328204862773418, -0.036073945462703705, -0.0077747865580022335, -0.021149547770619392, -0.01714576594531536, -0.021761421114206314, 0.009424185380339622, -0.014192809350788593, 0.026802727952599525, 0.0042265839874744415, -0.04698126018047333, -0.00573964137583971, 0.04639598727226257, 0.024195613339543343, -0.013088776730000973, 0.029103904962539673, 0.011552441865205765, -0.017052654176950455, -0.01715906709432602, 0.0066341739147901535, -0.03147159144282341, -0.03963877260684967, 0.013148633763194084, 0.01928732357919216, 0.020630784332752228, 0.0017524861032143235, 0.06065530702471733, -0.005141069181263447, 0.024435043334960938, -0.008705898188054562, 0.04464017599821091, 0.0003797191602643579, 0.01303557027131319, -0.018662147223949432, -0.05591993406414986, -0.006797118578106165, -0.02905069850385189, 0.013807062990963459, -0.0005553418886847794, 0.03208346292376518, -0.018382813781499863, -0.00912489928305149, -0.002703550737351179, 0.011618949472904205, -0.004914942197501659, 0.05948476493358612, 0.007442246191203594, -0.04344303160905838, -0.021681610494852066, 0.011805172078311443, -0.0018572361441329122, -0.0007465524249710143, -0.0065709915943443775, -0.0177044328302145, -0.022466406226158142, -0.026802727952599525, 0.011406123638153076, -0.03860124945640564, 0.010568123310804367, 0.012855998240411282, -0.01407309528440237, 0.0017042678082361817, -0.04261833429336548, -0.00279333651997149, 0.01584220863878727, -0.01176526676863432, 0.014844588004052639, 0.011585695669054985, 0.009863138198852539, 0.030327653512358665, 0.04059648886322975, -0.013474523089826107, 0.01681322418153286, -0.027294887229800224, -0.005480260122567415, -0.012603268027305603, 0.006211847998201847, 0.015123921446502209, -0.017172368243336678, 0.032056860625743866, -0.004602354485541582, 0.031657811254262924, -0.0012046262854710221, 0.000455579865956679, -0.00693678529933095, 0.0604424811899662, -0.007003293372690678, -0.03649959713220596, -0.01127310749143362, 0.012995664961636066, 0.020218435674905777, 0.01668020896613598, 0.02137567475438118, 0.003907345701009035, -0.020391356199979782, 0.008938676677644253, -0.011991394683718681, 0.04158080741763115, 0.00496482290327549, 0.03894709050655365, -0.019952403381466866, 0.003814234398305416, -0.016720114275813103, -0.009577153250575066, 0.03700505569577217, -0.01463176216930151, 0.04030385613441467, 0.021535294130444527, 0.02318469248712063, -0.003754377132281661, -0.012157664634287357, -0.0029546183068305254, 0.034823592752218246, -0.00588263338431716, -0.005609950516372919, -0.012330585159361362, -0.02814619056880474, 0.013022268190979958, -0.022253580391407013, -0.029024096205830574, 0.017677828669548035, -0.005360545590519905, -0.020843610167503357, 0.008998533710837364, 0.014512048102915287, -0.034690577536821365, -0.044853001832962036, 0.020085418596863747, -0.003754377132281661, 0.034131910651922226, -0.006843674462288618, 0.00042336503975093365, 0.0016876407898962498, 0.05283396318554878, 0.04030385613441467, 0.015469763427972794, 0.02952955663204193, -0.0030061621218919754, 0.027853554114699364, 0.0002876471553463489, 0.014312523417174816, -0.04272474721074104, -0.019726276397705078, 0.011100186966359615, -0.0606020987033844, 0.011253155767917633, -0.01459185779094696, 0.005127767566591501, -0.006876928266137838, 0.030806509777903557, 0.01964646577835083, 0.01327499933540821, 0.03554188087582588, 0.017132462933659554, -0.01562938280403614, -0.00881896261125803, -0.012443648651242256, 0.017544813454151154, 0.014831285923719406, -0.018143385648727417, -0.002139895223081112, -0.004206631798297167, -0.004369576461613178, 0.0030144755728542805, 0.05416412279009819, 0.032056860625743866, 0.021003229543566704, 0.005456982180476189, 0.05671803280711174, -0.0015870473580434918, -0.029236922040581703, 0.011359567753970623, -0.019420338794589043, 0.004978124517947435, -0.00909164547920227, 0.0018705377588048577, -0.007535357493907213, -0.030061621218919754, -0.0007137141074053943, -0.019141005352139473, 0.029715778306126595, -0.024581361562013626, 0.07395690679550171, -0.017558114603161812, -0.033998895436525345, 0.039798393845558167, 0.03176422417163849, 0.010129169560968876, 0.010189027525484562, -0.03269533812999725, 0.007615167181938887, -0.0011497571831569076, 0.02593812346458435, 0.03522264212369919, 0.014964302070438862, 0.056611619889736176, 0.015735795721411705, -0.040915727615356445, 0.026869235560297966, -0.007741532288491726, -0.007242722436785698, 0.0033071108628064394, 0.009736772626638412, 0.017664527520537376, -0.038627851754426956, -0.023743359372019768, 0.01576239801943302, 0.024049296975135803, -0.03415851294994354, 0.011193297803401947, -0.022226976230740547, 0.013807062990963459, 0.01612154208123684, -0.013687348924577236, -0.02795996703207493, 0.026589902117848396, -0.00428644148632884, 0.07927754521369934, -0.06294318288564682, 0.009224660694599152, -0.0071629127487540245, -0.00968356616795063, 0.012510157190263271, 0.023131486028432846, 0.00442943349480629, 0.00917145423591137, -0.0029496303759515285, -0.015815604478120804, -0.022466406226158142, -0.005816125310957432, 0.029316730797290802, -0.01172536239027977, -0.003004499478265643, 0.014272619038820267, 0.01687973365187645, -0.020032212138175964, 0.03298797458410263, 0.019885895773768425, 0.02261272445321083, -0.0030211263801902533, -0.012104458175599575, 0.002568871947005391, -0.03657940402626991, 0.014099698513746262, -0.0022014151327311993, 0.07975640892982483, 0.032748542726039886, -0.013301601633429527, -0.0277471411973238, -0.0028299158439040184, -0.012370489537715912, -0.0007706615724600852, -0.003325400408357382, 0.022373294457793236, 0.008619437925517559, 0.0255257748067379, 0.00834010448306799, -0.00117137236520648, -0.015243636444211006, 0.05490901321172714, -0.02317139133810997, -0.0017026050481945276, -0.03389248251914978, 0.02032484859228134, 0.00717621436342597, -0.02075049839913845, 0.015589477494359016, 0.030114827677607536, -0.00805412046611309, 0.00627503078430891, -0.029502954334020615, -0.002099990379065275, 0.007355785928666592, 0.034557562321424484, -0.013953380286693573, 0.006358165759593248, 0.018648846074938774, -0.0008155544637702405, 0.01956665702164173, 0.036978453397750854, -0.025978028774261475, -0.018143385648727417, -0.017651226371526718, -0.01151253655552864, -0.029210317879915237, 0.005081212148070335, -0.020843610167503357, 0.04687484726309776, -0.005081212148070335, -0.028651650995016098, -0.026816029101610184, 0.028811270371079445, 0.00995624903589487, 0.004751997534185648, 0.018449321389198303, -0.017198972404003143, 0.026656409725546837, 0.006471229251474142, 0.04557128995656967, 0.01709255948662758, -0.017677828669548035, 0.015522969886660576, -0.00667407875880599, 0.03256232291460037, -0.002442506607621908, -0.006102109793573618, -0.011007076129317284, 0.008266945369541645, 0.051503803580999374, 0.002464121673256159, 0.030247842893004417, -0.019353831186890602, -0.016906335949897766, -0.005982395727187395, 0.015310144051909447, 0.019899196922779083, 0.021974246948957443, -0.001958661014214158, 0.015509667806327343, -0.004658886231482029, 0.0026835983153432608, 0.01687973365187645, 0.008266945369541645, 0.03176422417163849, 0.014498746022582054, -0.030407462269067764, 0.007083103060722351, -0.0025289671029895544, -0.02007211744785309, -0.007269325666129589, 0.021269261837005615, 0.043256811797618866, -0.01673341542482376, 0.048311419785022736, -0.022665929049253464, -0.012643172405660152, -0.010880710557103157, 0.02745450660586357, -0.02918371558189392, -0.018502527847886086, -0.01197144202888012, -0.02353053353726864, -0.026337172836065292, -0.0015579501632601023, -0.00015151356637943536, 0.006408046931028366, 0.022373294457793236, -0.012270728126168251, 0.019127704203128815, -0.019726276397705078, -0.001078261062502861, 0.010122518986463547, 0.0078213419765234, 0.03200365602970123, -0.013102077879011631, 0.016307763755321503, -0.001321846735663712, -0.0010017768945544958, 0.006517785135656595, 0.022093961015343666, 0.0007544502150267363, 0.006567665841430426, 0.04698126018047333, -0.0032056861091405153, 0.00038429160485975444, 0.020045515149831772, -0.0023194667883217335, -0.015855509787797928, -0.012024648487567902, -0.027507713064551353, -0.021947642788290977, 0.011884981766343117, -0.023158088326454163, 0.024807488545775414, 0.006391420029103756, 0.02835901640355587, 0.004648909904062748, -0.0042265839874744415, 0.019739577546715736, 0.0398515984416008, 0.006102109793573618, 0.02277234196662903, 0.014472142793238163, 0.019939102232456207, 0.0034002219326794147, 0.059378352016210556, -0.0380425825715065, 0.00339689664542675, 0.001958661014214158, 0.0030809836462140083, -0.04136798158288002, 0.002791673643514514, 0.024927202612161636, -0.02380986697971821, -0.019327227026224136, -0.010760996490716934, -0.01439233310520649, 0.014778079465031624, 0.013221792876720428, -0.021601801738142967, 0.006687380373477936, -0.005473609082400799, 0.015536271035671234, 0.001454031327739358, -0.03383927419781685, 0.021535294130444527, 0.022386595606803894, -0.006910182069987059, 0.010228931903839111, 0.010155772790312767, -0.00992964580655098, 0.01846262440085411, 0.059591177850961685, 0.012117759324610233, -0.03147159144282341, 0.008951977826654911, 0.022665929049253464, 0.016360970214009285, -0.00520425196737051, -0.0019869268871843815, 0.008991883136332035, 0.0712965875864029, 0.007435595616698265, -0.008739152923226357, 0.007508754264563322, -0.005869331769645214, 0.011033679358661175, -0.02061748318374157, 0.017677828669548035, -0.005437029991298914, -0.00693678529933095, -0.018316306173801422, 0.00808737426996231, 0.04192664846777916, -0.02918371558189392, -0.012403744272887707, -0.0035515278577804565, -0.030274447053670883, 0.03253571689128876, -0.018914878368377686, 0.016440780833363533, -0.003235614625737071, 0.012742934748530388, 0.010760996490716934, 0.0329347662627697, 0.0319504477083683, -0.010667884722352028, 0.008685946464538574, -0.007369087543338537, -0.00471874326467514, 0.012443648651242256, 0.005563395097851753, -0.00261043943464756, 0.0002645771892275661, -0.015749096870422363, -0.035116229206323624, -0.013979983516037464, 0.010608027689158916, -0.004778600763529539, -0.021216055378317833, 0.002776709385216236, -0.03394568711519241, -0.028811270371079445, -0.0009693542378954589, 0.006098784506320953, -0.01826309971511364, 0.007561960723251104, -0.006371467374265194, 0.034956611692905426, -0.0034650673624128103, 0.02580510824918747, 0.0083999615162611, -0.03410530835390091, -0.011366219259798527, -0.02061748318374157, 0.007980961352586746, -0.020338149741292, -0.005570045672357082, 0.0078213419765234, -0.0067272852174937725, -0.009277867153286934, -0.0319504477083683, 0.025406060740351677, 0.012623220682144165, 0.016307763755321503, 0.02261272445321083, 0.016015129163861275, 0.03602073714137077, 0.04184684157371521, 0.026536695659160614, 0.014379031956195831, -0.01282939501106739, -0.02399609051644802, 0.012975713238120079, -0.027587521821260452, 0.017331987619400024, -0.028518635779619217, -0.05251472443342209, 0.0040503377094864845, 0.03203025832772255, 0.004572425503283739, 0.0034151864238083363, 0.007342484313994646, 0.011013726703822613, -0.010075964033603668, 0.008586184121668339, -0.01576239801943302, 0.004219933412969112, -0.03687204048037529, -0.010840805247426033, 0.003950575832277536, -0.013241744600236416, 0.013993285596370697, 0.007009944412857294, 0.0006700681988149881, 0.03570149838924408, -0.030593683943152428, -0.02414240688085556, -0.012902554124593735, -0.008067421615123749, -0.01145267952233553, -0.016028430312871933, -0.024248819798231125, 0.01695954240858555, 0.020910117775201797, -0.011126790195703506, 0.00025896556326188147, 0.021269261837005615, 0.010707790032029152, -0.01660040020942688, -0.019220814108848572, -0.019872592762112617, 0.014605158939957619, 0.006085482891649008, -0.027175173163414, 0.003990480676293373, 0.010794250294566154, -0.0016577121568843722, 0.012942458502948284, -0.062145084142684937, 0.06837023794651031, -0.019633164629340172, 0.00035498649231158197, 0.02442174218595028, 0.044374145567417145, 0.016507288441061974, 0.015310144051909447, 0.0083999615162611, 0.010022757574915886, -0.01846262440085411, 0.025765202939510345, -0.0044028302654623985, -0.059804003685712814, 0.00888547021895647, 0.0043097189627587795, -0.01950014941394329, 0.014525349251925945, -0.01576239801943302, 0.028518635779619217, 0.010428455658257008, 0.010042709298431873, -0.023969486355781555, -0.028864476829767227, 0.013467872515320778, 0.04378887265920639, 0.018688751384615898, 0.0023360939230769873, -0.009996154345571995, 0.01880846545100212, -0.01065458357334137, -0.008712549693882465, -0.0026802727952599525, 0.0052840616554021835, 0.017691131681203842, -0.00917145423591137, -0.022945264354348183, 0.015722494572401047, 0.015230334363877773, 0.013740555383265018, -0.012456950731575489, 0.001262820791453123, 0.027587521821260452, 0.017185669392347336, -0.0026885862462222576, 0.022519612684845924, -0.0023793240543454885, 0.023916279897093773, -0.012969061732292175, -0.03543546795845032, 0.044161319732666016, 0.013713952153921127, -0.011891632340848446, 0.004525870084762573, -0.0018771885661408305, 0.004761973395943642, 0.019247418269515038, -0.019047893583774567, -0.007987611927092075, -0.009543899446725845, -0.010115868411958218, -0.02987539768218994, 0.004615656100213528, -0.002791673643514514, 0.015443160198628902, 0.012915855273604393, 0.04695465415716171, 0.01903459243476391, -0.006055554375052452, 0.003501646686345339, -0.01411299966275692, -0.017531512305140495, 0.0138735705986619, -0.02579180710017681, 0.0016992796445265412, -0.007043198216706514, 0.004203306045383215, -0.014857889153063297, 0.009936296381056309, -0.0030826462898403406, 0.01441893633455038, -0.011179996654391289, 0.004136798437684774, 0.010894011706113815, -0.023224597796797752, -0.032748542726039886, 0.015443160198628902, -0.004635608289390802, -0.004352949094027281, 9.415040403837338e-05, 0.05169002711772919, 0.020763801410794258, -0.04019744321703911, 0.020364752039313316, -0.015376651659607887, 0.015163826756179333, -0.044719986617565155, -0.0001263652229681611, 0.009291169233620167, 0.015722494572401047, -0.01610824093222618, -0.010102566331624985, -0.024328630417585373, 0.011525838635861874, -0.01590871624648571, -0.006251752842217684, -0.005543442443013191, -0.008699247613549232, 0.01487119123339653, -0.022785644978284836, -0.02899749204516411, 0.016999447718262672, -0.024022692814469337, 0.0021049785427749157, 0.003012812929227948, 0.015217033214867115, -0.011126790195703506, 0.03312098979949951, 0.019260719418525696, 0.012410394847393036, -0.0007132983882911503, 0.016972843557596207, 0.003337039379402995, -0.022253580391407013, -0.003137515392154455, 0.0033835950307548046, -0.015935318544507027, -0.04049007594585419, -0.0073491353541612625, 0.002951293019577861, 0.035116229206323624, -0.017065955325961113, -0.002148208674043417, 0.0016028430545702577, -0.02185453288257122, 0.02974238246679306, -0.03591432422399521, 0.0004821830661967397, 0.01303557027131319, 0.01834290847182274, -0.044108111411333084, -0.025539075955748558, 0.05506863445043564, 0.03453096002340317, 0.0064878566190600395, 0.013434617780148983, -0.010222281329333782, -0.035515278577804565, 0.026722919195890427, 0.007668373640626669, 0.03578130900859833, 0.039612170308828354, -0.021282562986016273, -0.01985929161310196, -0.014738175086677074, -0.012703030370175838, -0.014951000921428204, 0.013341506943106651, -0.005899260751903057, -0.027095362544059753, 0.004316370002925396, 0.023370914161205292, 0.01127310749143362, 0.018090179190039635, 0.02102983370423317, 0.02995520830154419, -0.016068335622549057, 0.018103480339050293, 0.00676053948700428, -0.013155284337699413, 0.03727108985185623, 0.014538651332259178, -0.015961922705173492, 0.012895903550088406, -0.0038408376276493073, -0.03184403479099274, 0.0005324797821231186, 0.038015980273485184, 0.04847103729844093, 0.027082061395049095, 0.003721123095601797, -0.005410426761955023, -0.005433704238384962, 0.02144218236207962, 0.02608444169163704, -0.01805027388036251, -0.034690577536821365, 0.016480684280395508, -0.006391420029103756, 0.03245590999722481, 0.03367965668439865, -0.007801389787346125, -0.01023558247834444, 0.0062284753657877445, 0.0045591238886117935, 0.016134843230247498, 0.005503538064658642, -0.010860757902264595, -0.014684968627989292, 0.014192809350788593, -0.018036972731351852, 0.008685946464538574, -0.016839828342199326, 0.02532625012099743, 0.002174811903387308, 0.016241256147623062, -0.016480684280395508, 0.026749521493911743, -0.02504691667854786, 0.001304388395510614, -0.0027218402829021215, 0.0010499951895326376, -0.02241319976747036, -0.04626297205686569, 0.004146774299442768, 0.005889284424483776, -0.022705834358930588, -0.020338149741292, 0.05512183904647827, -0.015097318217158318, 0.01463176216930151, 0.006876928266137838, 0.03216327354311943, -0.00384748843498528, 0.033440228551626205, 0.0030327653512358665, -6.048072100384161e-05, -0.01577569916844368, 0.021322468295693398, -0.0009153165156021714, 0.007808040361851454, -0.017677828669548035, 0.02995520830154419, 0.03830861300230026, -0.03522264212369919, 0.019939102232456207, 0.01044175773859024, -0.02483409084379673, 0.038148995488882065, 0.021056436002254486, -0.029024096205830574, 0.018289702013134956, -0.020590880885720253, 0.02053767442703247, 0.00012459860590752214, 0.012576664797961712, -0.0028382292948663235, 0.013195189647376537, -0.04080931469798088, -0.008739152923226357, -0.0015787339070811868, -0.03445114940404892, -0.03493000566959381, 0.03535565733909607, 0.020870214328169823, 0.004868386313319206, 0.013580936007201672, 0.0004115183255635202, 0.01777094043791294, -0.011492583900690079, 0.01283604558557272, -0.0036413136404007673]" -How Flowkey Scaled Its AWS Redshift Data Warehouse With Timescale,"This is an installment of our “Community Member Spotlight” series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition, Nikola Chochkov, lead data scientist atflowkey, shares how his team migrated from Amazon Redshift to TimescaleDB and is driving rapid growth and experimentation by analyzing the users’ behavioral data using TimescaleDB along with Metabase or Jupyter/Rmarkedown Notebooks.About the CompanyFlowkeyis a leading app for learning to play the piano, with over 10 million registered users in more than 100 countries. The company was launched in 2015 and quickly became one of the global leaders in its category.Here is a video from our founder, Jonas Gößling, explaining how it all started.About the TeamWe are a team of around 40 people, with more than 10 of us working in Data and Engineering.We have a Marketing team (responsible for user acquisition, customer relationship management, collaborations, etc.), a Creative team (building all of our visual content, our design, and advertising), Course and Song teams (creating our in-app learning content—e.g., the courses series and the piano renditions of the songs in our library). We also have Customer Support, Product, Engineering, Data, and Operations teams.Many of us take on more than one role, and for many of us, flowkey has been the first significant career step. Not for me personally, though, but still.🙂About the ProjectThe flowkey appWe are a business that depends heavily on analytics for business decision-making. Our experimentation—a major driver of our growth—is powered by the data analysis of user behavioral data (app usage). This data consists of user events, which we track from our product.“We realized we needed to scale our previous Amazon Redshift data warehouse model into a more suitable solution for categorical, time-series data analysis. We found out about TimescaleDB from being part of the PostgreSQL community”For example, a Learn Session starts at a given timestamp for a user, and we record this event.✨Editor’s Note:Time-series data is a sequence of data points collected over time intervals, allowing us to track changes over time. To learn more, readWhat Is Time-Series Data (With Examples).When we launch a new feature, we typically A/B test it and evaluate its impact based on measuring key performance indicators (KPIs), which are predefined for",https://www.timescale.com/blog/how-flowkey-solved-its-time-series-data-problem-by-migrating-from-aws-redshift-to-timescale/,509,"[0.0024707484990358353, 0.0002519798872526735, 0.04822734370827675, -0.0013734097592532635, 0.07122978568077087, -0.0066465395502746105, -0.026641719043254852, 0.051394347101449966, -0.05575592443346977, 0.002654796000570059, 0.0144320884719491, -0.03186449781060219, -0.026725061237812042, -0.01494603231549263, 0.05044980347156525, 0.04619935154914856, -0.026975087821483612, -0.03628163039684296, -0.05611707270145416, 0.03442032262682915, -0.013550050556659698, -0.013827857561409473, 0.02964203804731369, 0.04458807036280632, 0.0067993332631886005, -0.03442032262682915, -0.04556039720773697, 0.040282055735588074, -0.003069770522415638, -0.0897873193025589, 0.01454321201890707, -0.025641612708568573, -0.04817178472876549, 0.04772729054093361, 0.028266891837120056, -0.017515748739242554, 0.018626978620886803, -0.014723786152899265, -0.003625385230407119, -0.018807552754878998, -0.0425322949886322, 0.012827751226723194, 0.02129392884671688, 0.07923063635826111, -0.01650175265967846, 0.01426540408283472, -0.04211558401584625, -0.01468211505562067, 0.010862264782190323, 0.04431026428937912, -0.05650600418448448, 0.018710320815443993, -0.026947306469082832, -0.053700149059295654, 0.022669075056910515, -0.011765138246119022, 0.02482208050787449, 0.016376739367842674, -0.009744090959429741, -0.01221657544374466, 0.02226625382900238, -0.05928407609462738, 0.037920694798231125, 0.02933645062148571, -0.013515324331820011, 0.024558164179325104, -0.053616806864738464, 0.04981084540486336, 0.005632543005049229, 0.03008652850985527, 0.0621732696890831, 0.018613088876008987, -0.003996952436864376, 0.0042122527956962585, 0.01722405105829239, -0.04144884645938873, -0.01508493535220623, 0.03047545999288559, -0.00036549021024256945, -0.03403139114379883, 0.02930866926908493, -0.026586158201098442, 0.006927819456905127, 0.02936423011124134, 0.01156372856348753, -0.04186555743217468, -0.04706055298447609, -0.04617157205939293, 0.0036635836586356163, -0.017543530091643333, -0.019363168627023697, 0.04378242790699005, -0.01652953401207924, 0.021891213953495026, 0.04519924521446228, 0.040365397930145264, -0.0019429146777838469, -0.004431026056408882, 0.03303128480911255, 0.0029169765766710043, 0.008646751753985882, -0.006868785247206688, 0.009382940828800201, -0.024141453206539154, 0.039059706032276154, 0.007084086071699858, -0.021752310916781425, 0.010542786680161953, -0.019168702885508537, -0.03108663484454155, -0.08039742708206177, -0.0022328761406242847, -0.0334479957818985, -0.004632436670362949, -0.01622394658625126, -0.004257396794855595, -0.013647283427417278, -0.017293503507971764, -0.0016364585608243942, -0.024780409410595894, -0.051894400268793106, 0.003972644452005625, 0.003375358646735549, 0.01641841046512127, 0.021613407880067825, -0.028266891837120056, -0.0035107897128909826, -0.02889195829629898, -0.019474290311336517, 0.0028839868027716875, 0.02786407060921192, -0.02021048031747341, 0.020891107618808746, -0.038476310670375824, -0.022002337500452995, -0.0023353174328804016, -0.01705736666917801, -0.01203600037842989, -0.023613618686795235, -0.014237623661756516, -0.02989206463098526, 0.00028822507010772824, 0.013181955553591251, 0.009063462726771832, -0.02986428327858448, -0.011209524236619473, 0.005750610958784819, 0.07956400513648987, -0.024224795401096344, -0.03308684751391411, 0.023085786029696465, -0.04556039720773697, -0.04097657650709152, -0.0003986968658864498, 0.07500796765089035, 0.018557526171207428, 0.03461478650569916, 0.06095091998577118, 0.004719251301139593, -0.04136550426483154, 0.010674744844436646, 0.03211452439427376, 0.005333899985998869, 0.004931079223752022, -0.06867396086454391, -0.008382834494113922, -0.038893021643161774, -0.04931079223752022, -0.07750823348760605, -0.0061117601580917835, -0.0566171258687973, -0.05022755637764931, -0.004174054600298405, 0.04861627519130707, 0.038504090160131454, -0.004944969899952412, 0.005201941356062889, -0.04692165181040764, 0.007896672002971172, -0.026558376848697662, -0.08545352518558502, 0.01038304716348648, -0.04897742345929146, -0.0024672760628163815, -0.04886630177497864, -0.007952233776450157, -0.025419367477297783, 0.009438502602279186, 0.023641400039196014, 0.017904680222272873, -0.026544487103819847, 0.0555058978497982, 0.014008432626724243, 0.0040664044208824635, -0.010334431193768978, -0.055478114634752274, 0.05520030856132507, 0.003955281339585781, -0.05639487877488136, 0.024863751605153084, 0.025766626000404358, 0.01636284962296486, 0.02997540682554245, -0.051949962973594666, 0.014154281467199326, 0.0032399275805801153, -0.004399772733449936, -0.013126394711434841, -0.07511909306049347, -0.037865132093429565, 0.022835759446024895, -0.006424293387681246, -0.000559955311473459, -0.009424611926078796, -0.03458700701594353, -0.017265722155570984, -0.04536592960357666, -0.006788915488868952, 0.001421157969161868, 0.02226625382900238, -0.009632967412471771, 0.04383799061179161, 0.013807022012770176, -0.011640124954283237, -0.007459125481545925, 0.019015908241271973, 0.02866971306502819, -0.009966336190700531, 0.0414210669696331, 0.013119448907673359, 0.020724423229694366, -0.04203224182128906, -0.00010103069507749751, -0.04228226840496063, 0.03347577899694443, -0.018029693514108658, 0.020307712256908417, -0.0483662486076355, 0.005785336717963219, 0.006702100858092308, -0.01038304716348648, 0.020113248378038406, 0.03200339898467064, 0.027877962216734886, 0.009188476018607616, 0.01445986982434988, -0.06239551678299904, -0.04536592960357666, 0.024835972115397453, 0.04950525984168053, 0.026183336973190308, -0.007521632127463818, 0.00021106842905282974, -0.0029916372150182724, -0.009889939799904823, -0.06178434193134308, 0.014821019023656845, 0.020807765424251556, 0.018279720097780228, -0.020182698965072632, 0.05056092515587807, -0.052533358335494995, -0.03272569924592972, 0.003319797106087208, -0.051449909806251526, 0.02212735079228878, 0.0315033458173275, -0.009605186991393566, 0.016043370589613914, -0.00033792652538977563, 0.03980978578329086, 0.04794953763484955, 0.008396725170314312, -0.039004143327474594, -0.010223308578133583, -0.010605293326079845, 0.023974768817424774, 0.0069243465550243855, -0.0015487755881622434, -0.02434980869293213, 0.021307818591594696, -0.0070111616514623165, 0.026280568912625313, -0.03128110244870186, 0.009313489310443401, 0.020266041159629822, 0.01032748632133007, 0.016515642404556274, -0.01750185899436474, -0.03561489284038544, -0.03955975919961929, 0.009403776377439499, 0.039254169911146164, -0.02523879148066044, 0.012042946182191372, 0.018029693514108658, -0.01641841046512127, 0.02223847433924675, -0.04075432941317558, -0.00825087632983923, 0.013480599038302898, -0.06484021991491318, 0.014418198727071285, -0.019932672381401062, 0.003533361479640007, 0.013723679818212986, -0.0033059066627174616, 0.010431664064526558, 0.0160294808447361, 0.00023917471116874367, 0.017071258276700974, 0.026600047945976257, 0.04453250765800476, -0.009216256439685822, -0.025127669796347618, -0.0017718896269798279, 0.0641179233789444, 0.0025106833782047033, 0.006021473091095686, -0.06306225806474686, -0.0652291551232338, -0.09651025384664536, 0.012876368127763271, 0.024585945531725883, 0.02855858951807022, -0.001132932840846479, 0.044199138879776, 0.02351638674736023, 0.03236455097794533, 0.007806384935975075, 0.00809808261692524, -0.037003930658102036, 0.006104815285652876, 0.002239821245893836, -0.04025427624583244, -0.03080882877111435, -0.0032416637986898422, -0.03408695384860039, -0.035559333860874176, 0.03350355848670006, -0.02451649308204651, -0.02958647534251213, -0.0638401135802269, 0.010084404610097408, 0.027461251243948936, 0.023419154807925224, -0.014404308050870895, -0.019057579338550568, 0.009382940828800201, -0.0035559332463890314, -0.04539371281862259, -0.006792388390749693, 0.019279826432466507, 0.006556252017617226, 0.01544608548283577, -0.015626659616827965, -0.0074938517063856125, 0.00042495832894928753, 0.007341057527810335, -0.010431664064526558, -0.03367024287581444, 0.018932566046714783, -0.0030645616352558136, 0.006497217807918787, -0.001295276451855898, 0.01766854338347912, -0.04553261399269104, -0.002156479051336646, -0.028072426095604897, -0.018182486295700073, 0.01066085509955883, -0.0320589616894722, -0.0022849650122225285, 0.0050665102899074554, -0.06639593839645386, -0.04042096063494682, 0.04686608910560608, 0.02340526320040226, 0.003515998600050807, 0.09239870309829712, 0.03414251655340195, 0.03319796919822693, 0.024197014048695564, -0.012987490743398666, -0.019293716177344322, 0.036476098001003265, 0.016404520720243454, 0.01551553700119257, -0.04231005162000656, 0.017710214480757713, 0.04328237473964691, -0.03203118219971657, 0.009806597605347633, -0.0038198502734303474, 0.009285708889365196, 0.0328923836350441, 0.018585307523608208, 0.03386470675468445, 0.07495240867137909, -0.01730739325284958, 0.01605726219713688, -0.016626765951514244, -0.023752523586153984, 0.006802806165069342, 0.02173842117190361, -0.02157173678278923, 0.007278550881892443, 0.014723786152899265, -0.023224689066410065, -0.00866758730262518, -0.018821444362401962, -0.02282186970114708, 0.04130994528532028, -0.01780744642019272, 0.04089323431253433, -0.00875092949718237, -0.04667162522673607, 0.04750504717230797, 0.03153112903237343, 0.06267332285642624, -0.024724848568439484, -0.03275347873568535, -0.0230718944221735, -0.023696960881352425, -0.019557632505893707, 0.04083767160773277, 0.053950175642967224, -0.0331701897084713, 0.0011016795178875327, -0.04194889962673187, -0.035753797739744186, -0.013459763489663601, 0.038337405771017075, -0.03611494600772858, -0.036087166517972946, 0.001170263160020113, 0.02725289575755596, 0.009348215535283089, 0.03133666142821312, -0.019849330186843872, 0.0035264163743704557, -0.01789078861474991, -0.03183671459555626, 0.039948686957359314, 0.013112504035234451, -0.028586370870471, -0.052199989557266235, -0.018182486295700073, -0.01691846363246441, 6.858367123641074e-05, 0.04233783110976219, -0.004121965728700161, -0.02332192100584507, 0.028266891837120056, -0.021418942138552666, -0.051033198833465576, 0.02187732420861721, -0.04289344698190689, 0.03586491942405701, -0.02869749255478382, -0.07784160226583481, 0.007361893076449633, -0.04042096063494682, -0.0170018058270216, -0.0006623967783525586, -0.04772729054093361, 0.026225008070468903, -0.02259962260723114, 0.03314241021871567, -0.03619828820228577, 0.00746607081964612, 0.034975938498973846, -0.009091243147850037, -0.0063583143055438995, -0.05822840705513954, -0.01236936915665865, 0.04458807036280632, -0.00701463408768177, 0.026725061237812042, 0.026808403432369232, 0.02925310842692852, 0.008327273651957512, -0.038809679448604584, 0.06584032624959946, -0.005483221262693405, -0.011119237169623375, -0.00021258769265841693, 0.01630728878080845, -0.0014202897436916828, 0.028294673189520836, -0.01697402447462082, 0.016862902790308, 0.06150653213262558, -0.016432300209999084, -0.023335812613368034, -0.008959284983575344, -0.013154175132513046, -0.03033655509352684, -0.011445660144090652, 0.005965911317616701, 0.054033517837524414, -0.02828078158199787, -0.02151617407798767, 0.10673356056213379, -0.04289344698190689, 0.020557738840579987, -0.019293716177344322, 0.003451755503192544, -0.006302752997726202, -0.011251195333898067, 0.0032711809035390615, 0.009000956080853939, 0.026586158201098442, 0.008209205232560635, 0.0018057473935186863, 0.019029799848794937, 0.009348215535283089, 0.009987171739339828, -0.028016865253448486, 0.002340526320040226, -0.016932353377342224, -0.027350127696990967, -0.02966981753706932, 0.02750292234122753, 0.016071151942014694, -0.0018022748408839107, -0.04797731712460518, -0.050088655203580856, -0.0143626369535923, -0.0022884374484419823, 0.037976257503032684, -0.01106367539614439, -0.004503950476646423, 0.015071045607328415, -0.05592260882258415, -0.02076609432697296, -0.02471095882356167, -0.03628163039684296, -0.037448421120643616, 0.018265828490257263, 0.026947306469082832, 0.03258679434657097, 0.025294354185461998, 0.05620041489601135, 0.013181955553591251, 0.004306012764573097, -0.009000956080853939, -0.025044327601790428, -0.02087721787393093, 0.03272569924592972, 0.038254063576459885, -0.02828078158199787, 0.013001381419599056, -0.0045074233785271645, 0.010119130834937096, 0.03542042896151543, 0.005438077729195356, -0.0075702485628426075, 0.028127988800406456, 0.007910562679171562, 0.0027068848721683025, -0.00768137164413929, -0.016237836331129074, -0.004597710445523262, -0.02365528978407383, 0.021613407880067825, 0.009396831505000591, -0.04047652333974838, -0.03278125822544098, 0.02107168361544609, 0.009737145155668259, 0.005924240220338106, 0.013133339583873749, 0.008292547427117825, 0.021335599943995476, 0.004819956608116627, -0.019960453733801842, 0.01527940109372139, 0.03419807553291321, 0.0236275102943182, -0.026697279885411263, -0.010709471069276333, -0.03267013654112816, 0.019057579338550568, -0.03375358507037163, 0.007236879784613848, -9.289180889027193e-05, 0.027766838669776917, 0.014987703412771225, -0.02966981753706932, -0.013077777810394764, -0.012709683738648891, -0.0006537152803502977, 0.027113990858197212, 0.012654121965169907, 0.009244037792086601, 0.01500159315764904, -0.021057792007923126, -0.017043476924300194, 0.028378015384078026, -0.0030228905379772186, -0.007306331768631935, -0.0062367734499275684, -0.039865344762802124, -0.004111547954380512, 0.036448314785957336, 0.004792175721377134, 0.0170018058270216, 0.040448740124702454, -0.015154387801885605, 0.035059280693531036, -0.011508166790008545, -0.0340036116540432, -0.04856071248650551, -0.01597392000257969, 0.011994329281151295, -0.015904467552900314, -0.019682645797729492, 0.006552779581397772, -0.0065597244538366795, -0.016765668988227844, -0.019349277019500732, -0.02515544928610325, -0.038170721381902695, 0.014216788113117218, 0.023474715650081635, -0.020529959350824356, -0.00696601765230298, -0.03405917435884476, 0.0027502921875566244, 0.004104602616280317, 0.0026947306469082832, 0.038198500871658325, 0.004316430538892746, 0.03030877560377121, 0.03542042896151543, 0.021863434463739395, 0.027058430016040802, -0.00793139822781086, 0.004538676701486111, 0.022030118852853775, 0.001758867409080267, 0.008959284983575344, -0.005969384219497442, 0.02426646649837494, -0.018821444362401962, -0.027002869173884392, 0.03286460041999817, -0.0006788915488868952, -0.011660960502922535, -0.004649799317121506, -0.04922745004296303, 0.04411579668521881, 0.013084723614156246, 0.009549625217914581, -0.006893093232065439, -0.036531656980514526, -0.0045421491377055645, 0.018335280939936638, 0.005250557791441679, -0.04139328747987747, 0.012980545870959759, -0.012918039225041866, 0.0020609828643500805, -0.03080882877111435, 0.04325459524989128, 0.027780728414654732, 0.010508060455322266, 0.04383799061179161, 0.04508812353014946, -0.022919101640582085, 0.012195739895105362, 0.02750292234122753, 0.0013048261171206832, 0.008868997916579247, 0.007966124452650547, 0.0025558271445333958, -0.01246660202741623, 0.03494815528392792, 0.04906076565384865, -0.0226551853120327, 0.013306968845427036, -0.023308031260967255, -0.018154706805944443, 0.008153644390404224, 1.2561013136291876e-05, 0.001086920965462923, -0.003774706507101655, 0.02947535365819931, 0.004062931519001722, 0.00754941301420331, -0.0037052547559142113, 0.007028524298220873, -0.012223520316183567, -0.008382834494113922, -0.030531020835042, 0.0030228905379772186, 0.02861415036022663, -0.023613618686795235, -0.06211771070957184, -0.015071045607328415, -0.00808419194072485, -0.06156209483742714, -0.018821444362401962, -0.051477689296007156, 0.0032468726858496666, -0.009466283023357391, -0.02032160386443138, 0.04994975030422211, -0.03000318631529808, -0.0632845014333725, -0.0015453030355274677, -0.015473865903913975, 0.01647397130727768, -0.014140390790998936, 0.0042504514567554, -0.021891213953495026, 0.006424293387681246, -0.011042839847505093, -0.004545621573925018, -0.051894400268793106, -0.0017284821951761842, 0.011098401620984077, -0.02964203804731369, 0.04005981236696243, -0.0483662486076355, -0.002396087860688567, 0.019307605922222137, 0.0022120405919849873, -0.028211330994963646, 0.00775082316249609, 0.01099422387778759, 0.016321178525686264, -0.050699830055236816, 0.002479430055245757, -0.009424611926078796, -0.01636284962296486, -0.006045781075954437, -0.039337512105703354, -0.01138315349817276, -0.018835334107279778, -0.01525161974132061, 0.004663689993321896, 0.02251628041267395, 0.011827644892036915, -0.03208674117922783, 0.014904361218214035, 0.040115371346473694, 0.011167853139340878, -0.013890364207327366, 0.00416710926219821, 0.012834697030484676, -0.02140505239367485, 0.0015687430277466774, 0.005028312094509602, -0.001514917821623385, -0.003250345354899764, 0.02248850092291832, 0.006709046196192503, 0.02132171019911766, 0.0007973937317728996, 0.028072426095604897, -0.024530382826924324, 0.027364017441868782, 0.010771977715194225, 0.0010791076347231865, 0.018390841782093048, -0.002837107051163912, -0.009945500642061234, -0.04272676259279251, -0.037170615047216415, -0.03464256972074509, 0.0027659188490360975, 0.0036705287639051676, 0.04461584985256195, -0.017529640346765518, 0.026766732335090637, 0.028183549642562866, 0.01552942767739296, 0.013702844269573689, 0.02816965989768505, -0.004819956608116627, -0.04339350014925003, -0.007035469636321068, 0.00416710926219821, -0.002514156047254801, 0.035059280693531036, -0.02387753687798977, -0.022002337500452995, -0.022557951509952545, 0.005722830072045326, 0.009646858088672161, -0.03230898827314377, -0.010487224906682968, -0.0020696641877293587, -0.007723042741417885, 0.01755741983652115, -0.06961850821971893, -0.01508493535220623, 0.024669287726283073, -0.01675177924335003, -0.007018106523901224, 0.0055526732467114925, 0.011890151537954807, 0.009869104251265526, 0.017376845702528954, -0.03036433644592762, 0.0295586958527565, -0.036726124584674835, -0.005052620079368353, -0.010598348453640938, -0.03242010995745659, 0.008792600594460964, 0.007028524298220873, 0.024141453206539154, 0.0040177879855036736, 0.038559652864933014, 0.0013091668952256441, -0.019474290311336517, -0.0416988730430603, 0.04803287982940674, -0.005521419923752546, 0.013827857561409473, 0.01550164632499218, 0.04211558401584625, 0.02944757230579853, -0.007743878290057182, 0.0101469112560153, -0.0013621238758787513, 0.008327273651957512, 0.002602707128971815, -0.013334750197827816, 0.036614999175071716, 0.0015730838058516383, -0.0011963075958192348, -0.01107756607234478, -0.014640443958342075, -0.04733836278319359, -0.019571524113416672, 0.04908854886889458, -0.05511696636676788, 0.06506247073411942, -0.01633506827056408, -0.012494382448494434, 0.0017510540783405304, -0.0028666239231824875, 0.0015591933624818921, 0.038031816482543945, 0.01056362222880125, -0.0067229364067316055, -0.01558498851954937, -0.015154387801885605, 0.037615105509757996, -0.06211771070957184, 0.0035055808257311583, 0.012924984097480774, 0.028072426095604897, 0.0034986354876309633, 0.011910987086594105, 0.021057792007923126, -0.02493320405483246, -0.02101612091064453, 0.011723467148840427, 0.004069876857101917, 0.038142941892147064, -0.011772084049880505, -0.0007769922376610339, 0.038865238428115845, -0.0007374915294349194, 0.014473759569227695, 0.002628751564770937, 0.003509053261950612, 0.013647283427417278, 0.026405582204461098, 0.007556358352303505, -0.02173842117190361, -0.009035682305693626, -0.0004844264476560056, 0.0006042308523319662, -0.014737676829099655, 0.038198500871658325, -0.019877111539244652, -0.0051116542890667915, -0.009091243147850037, 0.00599021976813674, 0.018251938745379448, 0.004698415752500296, 0.051922183483839035, -0.017293503507971764, -0.03167003020644188, -0.0118137551471591, 0.009577406570315361, 0.021168915554881096, 0.006330533418804407, 0.016154494136571884, 0.0328923836350441, -0.021085573360323906, 0.02916976623237133, 0.0006571878911927342, 0.013647283427417278, 0.00858424510806799, 0.0007166559807956219, -0.02118280529975891, 0.015710001811385155, -0.015265510417521, -0.00738272862508893, -0.011945713311433792, -0.02966981753706932, -0.01702958717942238, 0.02933645062148571, 0.025794407352805138, -0.01229991763830185, 0.010403882712125778, -0.004312958102673292, -0.028239110484719276, 0.009480173699557781, -0.02822522073984146, 0.038198500871658325, -0.020974449813365936, -0.017543530091643333, 0.04450472816824913, -0.00042387316352687776, 0.039670880883932114, 0.015321072190999985, -0.01775188557803631, 0.011917932890355587, -0.0160294808447361, 0.005868678912520409, 0.03180893510580063, 0.016293397173285484, 0.02121058665215969, 0.01493214163929224, 0.0049831680953502655, 0.003969171550124884, 0.002279756125062704, 0.021224476397037506, 0.02387753687798977, -0.007736932951956987, 0.020182698965072632, 0.018738102167844772, -0.004226143471896648, 0.014133445918560028, -0.021974556148052216, -0.0038788842502981424, 0.00731327710673213, -0.02501654624938965, 0.05442244932055473, 0.022780198603868484, -0.0014524111757054925, -0.014821019023656845, 0.04997752979397774, -0.009889939799904823, 0.04581042006611824, -0.04464363306760788, -0.02930866926908493, -0.008466176688671112, -0.007938343100249767, 0.04442138597369194, 0.011667906306684017, 0.03486481308937073, -0.03011430986225605, 0.016182275488972664, -0.0070111616514623165, -0.025738844648003578, 0.023919207975268364, -0.003979589324444532, 0.017779666930437088, -0.011403989046812057, -0.017904680222272873, 0.012459657154977322, 0.009702419862151146, 0.05056092515587807, -0.0007817670702934265, 0.003349314210936427, 0.010765032842755318, 0.0016347222262993455, 0.01377924159169197, -0.01063307374715805, -0.009695474058389664, 0.016682326793670654, 0.013091668486595154, 0.018835334107279778, -0.020752204582095146, -0.02226625382900238, -0.004351156763732433, -0.027211224660277367, 0.003135749837383628, -0.0014958186075091362, -0.009389886632561684, 0.026266679167747498, -0.001111229183152318, 0.0028353706002235413, 0.010771977715194225, 0.02290521003305912, 0.006854895036667585, -0.02143283188343048, -0.011084510944783688, -0.008341163396835327, 0.006212465465068817, 0.017543530091643333, -0.0019116613548249006, 0.00751468725502491, 0.036642782390117645, -0.013556995429098606, 4.305470429244451e-05, -0.051199883222579956, 0.03036433644592762, 0.00875092949718237, 0.008764820173382759, -0.005813117604702711, -0.017960241064429283, -0.037559546530246735, 0.006851422134786844, 0.037059493362903595, 0.00381637760438025, -0.007257715333253145, -0.01411261036992073, -0.038420747965574265, -0.024030329659581184, -0.05839509144425392, 0.03083660826086998, -0.00599021976813674, 0.026572266593575478, 0.00021931582887191325, 0.0004957123892381787, -0.008313382975757122, 0.004156691487878561, -0.018363062292337418, -0.0054311323910951614, 0.013563941232860088, 0.004045568872243166, 0.03375358507037163, 0.004246979020535946, 0.013188901357352734, -0.004208780359476805, 0.011008113622665405, 0.0153349619358778, -0.0012223520316183567, 0.010042733512818813, -0.006535416468977928, -0.03419807553291321, -0.018279720097780228, 0.0035976043436676264, 0.038087379187345505, 0.012487437576055527, 0.02207178995013237, 0.0015279400395229459, -0.03030877560377121, -0.00535820797085762, 0.02894751913845539, -0.009195420891046524, -0.01124425046145916, 0.026975087821483612, 0.01462655421346426, -0.0002654361887834966, -0.0048303743824362755, 0.004580347798764706, -0.012806915678083897, 0.019377058371901512, 0.006090924609452486, -0.026211118325591087, 0.0029933734331279993, -0.005181105807423592, -0.0070875585079193115, 0.0025766626931726933, 0.025433257222175598, 0.04428248107433319, -0.019377058371901512, 0.038031816482543945, 0.01379313226789236, 0.013411146588623524, 0.007875836454331875, 0.03000318631529808, -0.06295113265514374, 0.000928918132558465, -0.008966229856014252, -0.020099356770515442, 0.003524679923430085, 0.015571098774671555, 0.013175010681152344, 0.00299510988406837, 0.018640868365764618, -0.009250982664525509, 0.014793237671256065, -0.0009158959146589041, -0.008639806881546974, -0.03353133797645569, -0.0151960588991642, 0.019613195210695267, -0.040365397930145264, 0.02484986186027527, -0.017682433128356934, 0.01427929475903511, -0.005535310134291649, 0.002522837370634079, 0.012459657154977322, -0.01204989105463028, 0.0067229364067316055, -0.007577193900942802, 0.024502603337168694, 0.04906076565384865, -0.003573296358808875, 0.020196590572595596, -0.02107168361544609, -0.012716628611087799, -0.014418198727071285, 0.020196590572595596, -0.017015695571899414, -0.002647850662469864, 0.020335493609309196, 0.03133666142821312, -0.008361998945474625, 0.004326848313212395, 0.03225342556834221, -0.009987171739339828, 0.0211272444576025, 0.03025321289896965, 0.02229403518140316, 0.020863328129053116, 0.006955599877983332, 0.06806278228759766, -0.025363804772496223, 0.009028736501932144, 0.02980872243642807, -0.004719251301139593, -0.008480067364871502, 0.02540547586977482, -0.012931928969919682, -0.01452932134270668, 0.01426540408283472, 0.003366677090525627, -0.04167109355330467, 0.01644619181752205, 0.024141453206539154, -0.009417667053639889, 0.014501540921628475, -0.006709046196192503, 0.007250770460814238, 0.02234959602355957, -0.025308243930339813, -0.003990007098764181, 0.01370979007333517, 0.02340526320040226, 0.03136444464325905, 0.009299598634243011, 0.002446440514177084, 0.034892596304416656, 0.06534027308225632, 0.022530172020196915, 0.018210267648100853, -0.003990007098764181, -0.013161120004951954, -0.0022780196741223335, -0.03367024287581444, 0.001816165167838335, 0.006177739705890417, 0.008292547427117825, -0.006202047690749168, 0.009028736501932144, -0.011522057466208935, 0.009632967412471771, 0.01516827754676342, -0.02323857881128788, -0.018765881657600403, 0.02415534295141697, 0.0030558800790458918, 0.0007505137473344803, 0.02171063981950283, 0.017349064350128174, -0.004840792156755924, -0.02301633358001709, -0.03100329264998436, -0.02850302867591381, -0.01228602696210146, -0.010181637480854988, -0.010987278074026108, 0.0003359731927048415, 0.01153594721108675, -0.019557632505893707, 0.037837352603673935, 0.02109946310520172, 0.003924028016626835, 0.01680734008550644, -0.03128110244870186, -0.00036549021024256945, -0.00589298689737916, 0.00726466067135334, -0.007820275612175465, -0.019724316895008087, -0.012834697030484676, 0.0033614682033658028, 0.00031123097869567573, 0.010056624189019203, -0.023419154807925224, -0.019168702885508537, -0.018154706805944443, -0.025641612708568573, -0.06117316335439682, -0.01658509485423565, 0.00697990832850337, -0.020154919475317, 0.009077353402972221, 0.017154600471258163, 0.038170721381902695, 0.01484879944473505, 0.01711292937397957, 0.03028099425137043, -0.014584883116185665, 0.01203600037842989, -0.026197226718068123, 0.00044340649037621915, -0.035392649471759796, -0.04236561059951782, 0.022641293704509735, -0.02482208050787449, 0.008153644390404224, -0.037698447704315186, 0.004917189013212919, 0.05019977688789368, 0.0062402463518083096, 0.009375995956361294, 0.03517040237784386, 0.009598242118954659, 0.016862902790308, 0.02384975552558899, 0.017946351319551468, -0.037531763315200806, -0.02733623795211315, 0.024724848568439484, -0.04489365965127945, 0.01238325983285904, -0.0018404732691124082, -0.01758520118892193, -0.016862902790308, 0.008473122492432594, -0.005465858615934849, 0.025252683088183403, 0.01236936915665865, -0.008730093948543072, 0.017960241064429283, 0.004163636825978756, -0.009341269731521606, -0.02301633358001709, -0.03203118219971657, 0.01041082851588726, 0.011403989046812057, -0.026544487103819847, 0.0006220279028639197, 0.03447588533163071, -0.019488181918859482, 0.006879203021526337, 0.008945394307374954, -0.0236275102943182, -0.038948580622673035, -0.0049414969980716705, -0.003311115549877286, -0.010702526196837425, -0.013411146588623524, 0.02794741280376911, 0.017932459712028503, 0.025613831356167793, 0.038781896233558655, 0.026169447228312492, -0.005368625745177269, -0.006004109978675842, -0.01462655421346426, -0.03417029604315758, 0.019863221794366837, -0.014570992439985275, -0.0016937563195824623, 0.007806384935975075, 0.01550164632499218, 0.01148038636893034, 0.05597816780209541, -0.03480925410985947, -0.015904467552900314, -0.02148839458823204, -0.004406718071550131, -0.001750185969285667, 0.023530276492238045, -0.0012171431444585323, 0.00825087632983923, 0.026627829298377037, -0.012056835927069187, -0.007813329808413982, 0.02401643991470337, 0.03467034921050072, -0.04069876670837402, 0.015459975227713585, -0.019752098247408867, -0.0070528327487409115, 0.013640337623655796, -0.009278763085603714, 0.01694624498486519, 0.004778285510838032, 0.010271924547851086, 0.01129981130361557, -0.002712093759328127, 0.014063994400203228, 0.03283682093024254, 0.018043583258986473, -0.0004931079456582665, -0.02418312430381775, -0.009862158447504044, 0.018529746681451797, -0.012209630571305752, 0.009542680345475674, 0.017876898869872093, 0.005049147643148899, -0.004503950476646423, -0.026475034654140472, -0.006493745371699333, -0.03447588533163071, -0.01054973155260086, -0.017696324735879898, 0.006889620795845985, 0.006261081900447607, -0.007855000905692577, -0.006146486382931471, 0.004924134351313114, -0.004441443830728531, 0.02443315088748932, -0.025280462577939034, -0.016682326793670654, 0.02766960673034191, -0.017626872286200523, 0.006379149854183197, 0.0057124122977256775, 0.006257608998566866, 0.012167959474027157, 0.01476545725017786, 0.013445872813463211, 0.00247769383713603, -0.03011430986225605, 0.0030003187712281942, 0.010091349482536316, 0.005535310134291649, -0.00808419194072485, 0.018238049000501633, -0.005524892359972, 0.05645044147968292, 0.015821125358343124, 0.021085573360323906, 0.010133020579814911, 0.037642888724803925, -0.03439254313707352, 0.023419154807925224, -0.025891639292240143, -0.0018144288333132863, -0.0593951977789402, 0.0036358030047267675, 0.018349170684814453, 0.0226551853120327, -0.010674744844436646, 0.0002860546810552478, -0.01196654886007309, 0.011577618308365345, -0.013619502075016499, 0.008077247068285942, -0.024224795401096344, 0.01477934792637825, -0.002479430055245757, -0.04050430282950401, 0.009473228827118874, 0.054089080542325974, 0.018113035708665848, -0.04350462183356285, 0.0118832066655159, -0.012417986057698727, 0.017432406544685364, -0.03172559291124344, 0.026822293177247047, 0.02964203804731369, 0.018918676301836967, -0.04333793744444847, 0.00726466067135334, -0.007038942072540522, 0.002554090693593025, -0.002554090693593025, 0.027100101113319397, 0.009195420891046524, -0.002439495176076889, 0.00794528890401125, 0.006549306679517031, -0.021696750074625015, 0.04311569035053253, -0.03014209121465683, -0.009091243147850037, -0.006083979737013578, 0.016515642404556274, 0.02936423011124134, 0.036865025758743286, 0.01805747300386429, 0.007320221979171038, 0.023835865780711174, 0.01057751290500164, 0.011167853139340878, 0.0037851242814213037, 0.014876579865813255, 0.006087452173233032, -0.013112504035234451, -0.03100329264998436, 0.011119237169623375, 0.022585732862353325, 0.004375464748591185, -0.0014663016190752387, -0.009105133824050426, -0.009438502602279186, -0.009320434182882309, 0.0022276672534644604, -0.02407200075685978, 0.020779985934495926, 0.018613088876008987, 0.0076049743220210075, -0.036226071417331696, -0.05581148341298103, 0.04130994528532028, 0.035670455545186996, 0.0003055880079045892, 0.0004718383133877069, 0.018654759973287582, -0.0001800321479095146, 0.004476170055568218, 0.026627829298377037, 0.01494603231549263, -0.019765987992286682, -0.02964203804731369, -0.01577945426106453, -0.021113354712724686, -0.036531656980514526, -0.010119130834937096, 0.013529215008020401, 0.002602707128971815, -0.027127882465720177, -0.0041358559392392635, -0.010890046134591103, 0.016321178525686264, 0.0014003224205225706, 0.052700042724609375, -0.00520541425794363, 0.01362644787877798, -7.357552385656163e-05, 0.005576981231570244, 0.00743134506046772, 0.01395981665700674, -0.01750185899436474, -0.01393203530460596, -0.010292760096490383, -0.011841535568237305, 0.0014992911601439118, -0.04180999845266342, 0.02764182537794113, 0.018460294231772423, 0.004917189013212919, 0.009042627178132534, -0.01204989105463028, 0.0014376527396962047, 0.035559333860874176, -0.011577618308365345, -0.008813436143100262, -0.01572389341890812, 0.003972644452005625, 0.0069694905541837215, 0.004038623534142971, 0.01750185899436474, 0.01362644787877798, 0.009799651801586151, 0.008431451395154, 0.005344317760318518, -0.007031997200101614, -0.006431238725781441, 0.03153112903237343, 0.008841216564178467, -0.007521632127463818, -0.01404315885156393, 0.011570673435926437, -0.013418092392385006, 0.03250345215201378, 0.01462655421346426, 0.009882993996143341, -0.006597923114895821, 0.04508812353014946, -0.007459125481545925, -0.01468211505562067, 0.016154494136571884, -0.00282842549495399, -0.01789078861474991, -0.02021048031747341, 0.023613618686795235, -0.03083660826086998, -0.0027659188490360975, -0.011890151537954807, 0.04461584985256195, -0.0003835042880382389, -0.00577491894364357, -0.009146804921329021, -0.006167321931570768, -0.004580347798764706, 0.052366673946380615, -0.0153349619358778, 0.017946351319551468, -0.036142729222774506, 0.013695899397134781, 0.02833634428679943, -0.006215937901288271, -0.011501221917569637, -0.008618971332907677, 0.02309967577457428, 0.03183671459555626, 0.0025402004830539227, 0.002074873074889183, -0.026600047945976257, 0.002290173899382353, -0.00034508874523453414, -0.011834590695798397, -0.01501548383384943, -0.038615211844444275, 0.0004080294456798583, -0.024697067216038704, 0.007104921620339155, -0.017779666930437088, -0.024308137595653534, -0.04728280007839203, -0.00032815986196510494, 0.012244355864822865, 0.0004186642763670534, 0.018571417778730392, 0.00750079657882452, 0.016960134729743004, 0.01412650104612112, 0.013751461170613766, 0.023224689066410065, -0.0031565853860229254, 0.003170475596562028, 0.02071053348481655, 0.0076466454192996025]" -How Flowkey Scaled Its AWS Redshift Data Warehouse With Timescale,"the test. Every day, we receive millions of incoming events, tracked around our product, in the format:(user_id, event, timestamp, properties)Thepropertiesfield is a schemaless object that depends on the particular event type that we track from the app. For example, a Learn Session event would have asongIdand alearnMode, while a Subscription Offer interaction event would have aproductId, etc.Choosing (and Using!) TimescaleDBWith time, we realized we needed to scale our previous Amazon Redshift data warehouse model into a more suitable solution for categorical, time-series data analysis.We found out about TimescaleDB from being part of the PostgreSQL community, and when we were faced with the problem at hand, it was a natural way forward for us.After doing our research, we realized that TimescaleDB suited our needs perfectly. Here's a list of our arguments:Our data analysts are well-versed in SQL and PostgreSQL.The events’ raw data is available in a PostgreSQL schema alongside all our other business intelligence data.TimescaleDB is an actively developed, open-source solution. It allowed us to deploy it on our self-hosted PostgreSQL data warehouse.A TimescaleDB hypertable model would allow us to accommodate the schemaless JSON structure of our events.select event, platform, time, jsonb_pretty(data) from events_today limit 5; event | platform | time | jsonb_pretty ------------------------------+----------+-------------------------+--------------------------------------------------------- SONG_OPEN_UI_ELEMENT_CLICKED | ios | 2022-11-03 00:00:00.034 | { + | | | ""songId"": ""E2kCpqHCwB2xYf7LL"", + | | | ""context"": ""song-cover"", + | | | ""listIndex"": 6, + | | | ""routeName"": ""Songs"", + | | | ""currentTab"": ""SongsTab"" + | | | } ONBOARDING_QUESTION_VIEWED | web | 2022-11-03 00:00:00.145 | { + | | | ""context"": ""preferredCategories"" + | | | } SONG_PLAYER_SCROLLED | ios | 2022-11-03 00:00:00.157 | { + | | | ""level"": 1, + | | | ""songId"": ""Lui27TDJ4vZBevxzc"", + | | | ""direction"": ""backwards"", + | | | ""songGroupId"": ""vhisAJBkPwvn6tdoq"", + | | | ""loopBoundsMs"": null, + | | | ""finalPositionMs"": 0, + | | | ""initialPositionMs"": 24751 + | | | } AB_TEST_VARIANT_ASSIGNED | ios | 2022-11-03 00:00:00.249 | { + | | | ""variant"": ""CONTROL"", + | | | ""experimentName"": ""player_onboarding_video_09_2022""+ | | | } ONBOARDING_ANSWER_SUBMITTED | web | 2022-11-03 00:00:00.314 | { + | | | ""answers"": [ + | | | ""dont-know"" + | | | ], + | | | ""context"": ""learningGoals"" + | | | }TimescaleDB offers a great set of",https://www.timescale.com/blog/how-flowkey-solved-its-time-series-data-problem-by-migrating-from-aws-redshift-to-timescale/,697,"[-0.02763054333627224, -0.018888676539063454, 0.04271594062447548, -0.011615613475441933, 0.055743589997291565, 0.01605040766298771, -0.005672988947480917, -0.02450844831764698, -0.013950088992714882, 0.020832890644669533, 0.04527037963271141, -0.0540122464299202, 0.006460608448833227, 0.01647614873945713, 0.03306582570075989, 0.03882751241326332, 0.0063790082931518555, -0.002573954639956355, -0.05316076800227165, 0.05863862484693527, 0.0013916384195908904, 0.007968438789248466, 0.000733514956664294, 0.02604111284017563, 0.005417544860392809, -0.017682412639260292, -0.020818699151277542, 0.05685051530599594, 0.024621978402137756, -0.034967467188835144, 0.0182074923068285, -0.04365256801247597, -0.04995352402329445, -0.008713483810424805, -0.018321022391319275, 0.007940055802464485, 0.0466611310839653, 0.019498903304338455, -0.003707488067448139, -0.0270061232149601, -0.03493908420205116, 0.0034484961070120335, 0.02174113504588604, 0.026395896449685097, 0.019328607246279716, 0.01900220662355423, -0.06306632608175278, -0.02741767279803753, -0.02100318670272827, 0.08020946383476257, -0.05960363522171974, 0.03650012984871864, 0.0077697597444057465, -0.02608368545770645, 0.036386601626873016, -0.028482023626565933, 0.01460289116948843, 0.04805188253521919, 0.0004727490886580199, -0.020690975710749626, -0.02977343462407589, -0.05001028999686241, 0.027190610766410828, 0.052791792899370193, 0.005967459175735712, 0.019839495420455933, -0.02273453027009964, 0.02648104354739189, 0.005545266903936863, 0.027545394375920296, 0.059263043105602264, 0.028340110555291176, -0.001850196160376072, 0.0030546863563358784, 0.04737069830298424, -0.006886348593980074, -0.010948619805276394, 0.04433375224471092, -0.003643627045676112, -0.009515294805169106, 0.03454172611236572, -0.007251775823533535, -0.051457807421684265, -0.007940055802464485, 0.0079187685623765, -0.028325919061899185, -0.038884278386831284, -0.023997558280825615, 0.005768780596554279, -0.0004310620133765042, -0.035762179642915726, 0.013836557976901531, -0.016603870317339897, 0.024011749774217606, 0.021102525293827057, -0.024153664708137512, 0.014333255589008331, -0.03173184022307396, -0.012701250612735748, 0.010735750198364258, 0.006151946727186441, -0.03127771615982056, -0.0466611310839653, -0.006095181219279766, 0.021414734423160553, 0.006059702951461077, 0.014744804240763187, 0.02997211366891861, -0.03508099541068077, 0.010537071153521538, -0.07964181154966354, 0.010338392108678818, -0.0380895622074604, 0.008848302066326141, 0.006375460419803858, -0.01138145662844181, 0.0052437009289860725, -0.030028879642486572, 0.0015007343608886003, -0.019300224259495735, -0.0419212244451046, -0.013240521773695946, -0.0012071509845554829, 0.007812333758920431, 0.014042332768440247, -0.031022273004055023, 0.009529486298561096, -0.0509469173848629, -0.05699243023991585, -0.009621730074286461, 0.024182045832276344, -0.0051940311677753925, 0.024536829441785812, -0.02193981409072876, -0.02960313856601715, 0.01029581855982542, -0.0636339783668518, 0.020918037742376328, -0.04387962818145752, 0.00021619621838908643, -0.02230878919363022, -0.02625398151576519, 0.027687307447195053, 0.010650602169334888, -0.025927580893039703, -0.001483882195316255, -0.01558209303766489, 0.0814015343785286, -0.014773187227547169, 0.002854233607649803, 0.03570541739463806, -0.0004935925826430321, -0.006943114101886749, 0.016121365129947662, 0.04175092652440071, -0.030823593959212303, 0.00949400756508112, 0.05239443480968475, -0.01244580652564764, -0.023032547906041145, 0.014801569283008575, 0.013893323950469494, -0.01783851720392704, 0.00921018049120903, -0.034371428191661835, -0.011707857251167297, -0.03726646304130554, -0.005793615244328976, -0.08072035014629364, -0.013063129968941212, -0.008323222398757935, -0.031050655990839005, -0.039906054735183716, 0.013212139718234539, 0.012772208079695702, -0.00359750515781343, -0.0021198317408561707, -0.0313628651201725, 0.002259971108287573, -0.03726646304130554, -0.047938354313373566, 0.009827503934502602, -0.029517991468310356, -0.029092250391840935, 0.0051159788854420185, 0.0020701619796454906, -0.05137265846133232, 0.003313678316771984, -0.002971312263980508, 0.0005166535265743732, -0.030057262629270554, 0.0229473989456892, 0.021599221974611282, 0.0497264601290226, -0.0026715199928730726, -0.05270664393901825, 0.03133448213338852, 0.03996281698346138, -0.05080500245094299, 0.043028149753808975, 0.028127240017056465, 0.010310010053217411, 0.06215807795524597, -0.0073440195992589, -0.01800881326198578, 0.007163079921156168, -0.012616102583706379, 0.009451434016227722, -0.013751409947872162, -0.03269685059785843, 0.023784689605236053, -0.0160645991563797, -0.0021730491425842047, -0.019839495420455933, -0.029347695410251617, -0.012836068868637085, -0.05622609704732895, -0.0024533281102776527, 0.014524837955832481, -0.011175681836903095, 0.0031930520199239254, 0.05239443480968475, 0.02917739935219288, -0.04336874186992645, -0.012857356108725071, 0.04597994685173035, -0.010636410675942898, -0.012999269179999828, 0.01381527166813612, -0.016916079446673393, -0.01177171804010868, -0.01860484853386879, 0.005672988947480917, -0.0333496518433094, 0.0021109620574861765, 0.0011370813008397818, 0.006577686872333288, -0.03386054188013077, -0.023217035457491875, -0.0481937974691391, -0.03505261614918709, -0.01941375620663166, -0.012963790446519852, 0.07033228874206543, 0.025814050808548927, 0.014758995734155178, -0.015071204863488674, -0.05052117630839348, 0.02524639666080475, 0.0371813140809536, 0.014986056834459305, -0.012814781628549099, -0.0017694829730316997, -0.03295229747891426, -0.035762179642915726, -0.07186495512723923, 0.007613654714077711, 0.04703010618686676, 0.027162227779626846, 0.0031433822587132454, 0.023273801431059837, -0.03621630370616913, -0.032810382544994354, 0.012601912021636963, -0.051060449331998825, 0.01380108017474413, 0.04924395680427551, -0.039906054735183716, 0.018179109320044518, -0.020832890644669533, 0.017384393140673637, 0.04336874186992645, -0.000633732124697417, -0.055573295801877975, -0.027701498940587044, -0.026523618027567863, -0.008493518456816673, 0.002776181325316429, 0.01078541949391365, -0.021641796454787254, 0.013588209636509418, -0.03681233897805214, 0.015823345631361008, 0.01585172861814499, 0.010700271464884281, -0.0011140203569084406, -0.0015858825063332915, 0.016334233805537224, 0.021641796454787254, -0.031220952048897743, 0.004676047246903181, -0.01800881326198578, 0.02470712549984455, -0.04649083688855171, 0.0031912780832499266, 0.02216687612235546, 0.03550673648715019, 0.015071204863488674, -0.0403885580599308, -0.048080265522003174, 0.012119405902922153, -0.0038316622376441956, 0.027900177985429764, -0.043595802038908005, 0.004119037184864283, 0.017682412639260292, 0.004119037184864283, -0.01125373411923647, 0.017299246042966843, -0.0002636485151015222, -0.011502082459628582, 0.0026218504644930363, 0.016490338370203972, -0.021599221974611282, -0.018264256417751312, -0.03451334312558174, 0.07515734434127808, -0.004807317163795233, 0.0014563864096999168, -0.031448014080524445, -0.026750680059194565, -0.062044546008110046, -0.015596284531056881, 0.05040764808654785, 0.015184735879302025, -0.010778323747217655, 0.016320042312145233, 0.01590849459171295, 0.022464893758296967, 0.018278447911143303, -0.0162916611880064, -0.0466611310839653, 0.01028162706643343, 0.04129680618643761, -0.014368733391165733, -0.04194960743188858, -0.003340287134051323, 0.003152251709252596, -0.03448496013879776, 0.034371428191661835, -0.03408760204911232, -0.011665282770991325, -0.05863862484693527, -0.0063293385319411755, -0.010104235261678696, 0.025728903710842133, -0.030284322798252106, 0.0019584051333367825, -0.016405191272497177, -0.019896261394023895, -0.027942752465605736, -0.02917739935219288, 0.016972845420241356, -0.009742355905473232, 0.026935167610645294, -0.04799511656165123, -0.005552362650632858, -0.0030919385608285666, -0.036954253911972046, 0.010998290032148361, -0.002919868566095829, 0.005956815555691719, 0.052195753902196884, 0.010572549887001514, -0.017923664301633835, 0.022677764296531677, -0.06641548126935959, -0.0160645991563797, -0.024394916370511055, -0.04382286220788956, -0.000502905691973865, -0.03312259167432785, -0.021897239610552788, -0.009387572295963764, -0.032271113246679306, -0.025345737114548683, -0.001910509425215423, 0.07544117420911789, -0.014986056834459305, 0.06153365969657898, 0.0288368072360754, 0.013942993246018887, 0.023089313879609108, -0.030284322798252106, 0.0403885580599308, 0.02643846906721592, -0.01430487260222435, 0.04317006096243858, -0.03783411905169487, -0.020719358697533607, 0.058298032730817795, -0.02507610060274601, 0.012218745425343513, -0.04546906054019928, -0.027971135452389717, 0.0188177190721035, 0.015823345631361008, 0.04600832983851433, 0.040842682123184204, -0.005999389570206404, -0.002100318670272827, -0.03865721449255943, -0.034570109099149704, 0.0010545940604060888, -0.010522879660129547, 0.00471152551472187, -0.0014599342830479145, 0.026168834418058395, -0.00499889999628067, -0.018278447911143303, -0.01563885807991028, 0.01937118172645569, 0.05795744061470032, -0.03451334312558174, 0.05852509289979935, -0.011665282770991325, -0.04822218045592308, 0.03428628295660019, 0.035762179642915726, 0.07731442898511887, -0.006205164361745119, -0.04915880784392357, -0.0174411591142416, 0.016490338370203972, -0.05761684849858284, 0.03428628295660019, 0.0348823182284832, -0.013346957042813301, -0.007471741642802954, -0.03215758129954338, -0.014617081731557846, 0.004278689622879028, 0.07004846632480621, -0.007705898489803076, 0.014233916066586971, -0.003418339416384697, 0.04308491572737694, -0.014340351335704327, 0.02290482632815838, 0.025728903710842133, -0.008167116902768612, 0.017980430275201797, 0.015837537124753, 0.03093712590634823, -0.011374360881745815, -0.005612675566226244, -0.01205554511398077, -0.013396626338362694, 0.0052543445490300655, -0.009054075926542282, 0.03562026843428612, -0.017341820523142815, -0.05134427547454834, 0.00015976346912793815, -0.019328607246279716, -0.035563502460718155, -0.006982140243053436, -0.04609347879886627, 0.026140451431274414, -0.04353903606534004, -0.05679374933242798, 0.02250746823847294, -0.03706778585910797, 0.006528017111122608, -0.005304013844579458, -0.0030050165951251984, 0.01843455247581005, -0.003902619006112218, 0.021854666993021965, -0.023217035457491875, -0.004984708968549967, 0.008692196570336819, 0.01609298214316368, 0.01008294802159071, -0.003682653186842799, 0.04285785183310509, 0.026750680059194565, -0.00519757904112339, 0.02821238711476326, -0.032413024455308914, 0.02682163566350937, -0.02273453027009964, 0.019498903304338455, 0.039253249764442444, 0.0035123571287840605, 0.08111771196126938, 0.007014070637524128, 0.01844874396920204, -0.022436510771512985, 0.026935167610645294, -0.04921557381749153, 0.0067728180438280106, 0.03661366179585457, -0.01762564666569233, -0.01206973660737276, 0.010572549887001514, -0.056169331073760986, -0.04172254353761673, 0.001032420084811747, -0.025203824043273926, 0.009032788686454296, -0.015085396356880665, 0.007478837389498949, 0.08253684639930725, 0.011899440549314022, 0.02074774168431759, -0.02902129478752613, -0.03740837797522545, 0.029049675911664963, -0.021883049979805946, -0.009238563477993011, 0.03127771615982056, 0.0033083565067499876, 0.024778082966804504, -0.012807685881853104, 0.010608027689158916, -0.01430487260222435, 0.005467214621603489, -0.049839992076158524, 0.00949400756508112, -0.034797169268131256, -0.022592615336179733, -0.014971865341067314, -0.010231957770884037, -0.0015610476257279515, 0.005992294289171696, -0.0264668520539999, -0.07107023894786835, -0.03153316304087639, -0.042801085859537125, 0.004910204093903303, -0.013666261918842793, -0.011317594908177853, -0.01646195724606514, -0.040842682123184204, 0.0015149257378652692, -0.020648403093218803, -0.021670179441571236, -0.00291809462942183, 0.023415714502334595, 0.00431062001734972, 0.018122343346476555, -0.010175191797316074, 0.022578425705432892, 0.02524639666080475, -0.0022369101643562317, -0.0066521912813186646, -0.023614393547177315, 0.006705408915877342, 0.032271113246679306, 0.031079038977622986, -0.020889654755592346, 0.05131589248776436, -0.025799859315156937, 0.014134576544165611, 0.0174411591142416, 0.04251725971698761, 0.006187424995005131, -0.013708836399018764, -0.011679474264383316, -0.013559827581048012, -0.00989136565476656, 0.02469293400645256, 0.0029908253345638514, -0.02957475557923317, 0.016731591895222664, 0.011033767834305763, -0.03019917570054531, -0.04064400494098663, 0.03647174686193466, -0.027162227779626846, 0.012374849990010262, 0.018661614507436752, 0.050634708255529404, 0.02409689873456955, 0.01098409853875637, -0.03269685059785843, -0.013155373744666576, 0.025615371763706207, -0.015127970837056637, -0.02547345869243145, -0.022578425705432892, -0.025402501225471497, 0.036131154745817184, -0.043624185025691986, -0.0062406426295638084, 0.04308491572737694, 0.01663225330412388, 0.006091633345931768, -0.005389161873608828, -0.005328848958015442, -0.007212749682366848, -0.007791046518832445, 0.01076413318514824, 0.02290482632815838, 0.00950819905847311, 0.0008603500900790095, 0.02255004271864891, -0.02994373068213463, 0.027871794998645782, 0.0388558954000473, 0.018377788364887238, -0.009919747710227966, 0.01350306160748005, -0.022691955789923668, 0.025132866576313972, 0.009373381733894348, 0.027162227779626846, 0.010338392108678818, 0.0006301842513494194, 0.031192569062113762, 0.0008270891266874969, -0.014070715755224228, -0.03232787549495697, -0.01741277612745762, -0.02290482632815838, -0.01439002063125372, -0.009933939203619957, 0.003941645380109549, -0.040842682123184204, -0.04393639415502548, 0.007273062597960234, -0.021074142307043076, -0.002295449608936906, 0.003611696418374777, 0.04583803564310074, -0.005591388791799545, -0.021230246871709824, 0.002460423856973648, 0.013985567726194859, -0.010600931942462921, -0.0006532451952807605, 0.045554205775260925, -0.021684370934963226, 0.009465624578297138, 0.04507170245051384, 0.023202843964099884, 0.025019336491823196, -0.009068267419934273, -0.0052543445490300655, 0.014382924884557724, 0.03567703440785408, 0.004576707724481821, -0.007273062597960234, 0.041410334408283234, -0.025374120101332664, -0.00011885249114129692, 0.009181798435747623, -0.031192569062113762, -0.004757647402584553, 0.000587166752666235, -0.04095621407032013, 0.05455151945352554, -0.009877174161374569, 0.022393938153982162, -0.001446629874408245, -0.050237350165843964, -0.019953027367591858, 0.01155884750187397, 0.030114026740193367, -0.021428925916552544, 0.0063009560108184814, -0.001372125349007547, -0.0002290571283083409, 0.006350625306367874, 0.029120633378624916, 0.013283096253871918, 0.0048605347983539104, 0.01029581855982542, 0.01978273130953312, 0.00781942903995514, 0.018675806000828743, 0.035364825278520584, 0.019356990233063698, 0.045383911579847336, -0.007443358656018972, 0.012899929657578468, -0.022209450602531433, 0.004473820328712463, 0.05724787339568138, -0.03803279623389244, 0.009905556216835976, -0.047285549342632294, -0.026594575494527817, 0.015269883908331394, -0.02250746823847294, -0.002854233607649803, 0.025033526122570038, 0.033009059727191925, 0.02702031470835209, -0.010253244079649448, -0.0023894670885056257, 0.021045759320259094, -0.0025970155838876963, 0.014758995734155178, -0.003732322948053479, 0.005002447869628668, 0.038316622376441956, -0.03522291034460068, -0.01762564666569233, -0.006730244029313326, -0.0043602897785604, -0.016220703721046448, -0.04081429913640022, -0.03681233897805214, 0.026339130476117134, 0.0012967338552698493, -0.008429656736552715, 0.03860044851899147, -0.03255493938922882, -0.03036947175860405, 0.010373870842158794, -0.029461225494742393, 0.015269883908331394, -0.012864451855421066, 0.019711773842573166, -0.02764473482966423, 0.002871972741559148, -0.004147419705986977, -0.006794104818254709, -0.04081429913640022, 0.001083863782696426, -0.03039785474538803, -0.03093712590634823, 0.0411548912525177, -0.032838765531778336, 0.02822657860815525, 0.0416090153157711, -0.008372891694307327, -0.018505509942770004, 0.0020630662329494953, 0.00509823951870203, 0.011416934430599213, 0.009933939203619957, -0.00538206659257412, 0.004080010578036308, -0.017327629029750824, -0.0011858639772981405, -0.03246979042887688, 0.01243161503225565, -0.010508689098060131, 0.01566724106669426, -0.015724007040262222, -0.00587166752666235, -0.0077200899831950665, -0.0006936018471606076, -0.003097260370850563, 0.01244580652564764, -0.026126259937882423, -0.00860704854130745, -0.005839737132191658, 0.012914121150970459, -0.008174212649464607, -0.03749352693557739, -0.0048782736994326115, -0.016901887953281403, -6.801865674788132e-05, -0.005421092733740807, -0.011878153309226036, 0.05159971863031387, 0.005190483294427395, 0.039678990840911865, -0.0174411591142416, 0.003955836407840252, -0.016405191272497177, -0.005687180440872908, 0.010274531319737434, 0.004356741905212402, 0.003430756973102689, -0.035989243537187576, -0.026537809520959854, -0.026410087943077087, -0.017171524465084076, -0.006343530025333166, 0.08730513602495193, 0.0001506721309851855, 0.0014226820785552263, -0.007450454402714968, 0.03388892486691475, -0.01294250413775444, 0.014872525818645954, 0.008472231216728687, 0.003693296806886792, -0.023373140022158623, -0.016547104343771935, -0.0016595000633969903, -0.012048449367284775, 0.015326648950576782, -0.030681680887937546, -0.03587571159005165, -0.015369223430752754, 0.008259360678493977, -0.027091272175312042, 0.01864742301404476, 0.007038905750960112, -0.03644336760044098, -0.0037678012158721685, -0.11727724969387054, -0.03621630370616913, 0.053387828171253204, -0.034768786281347275, 0.005875215400010347, -0.022379746660590172, 0.009352094493806362, 0.04010473191738129, -0.005548814777284861, -0.007329828105866909, 0.020676784217357635, -0.05290532112121582, -0.02428138628602028, -0.012495476752519608, -0.008394178934395313, 0.013439200818538666, 0.03661366179585457, 0.015610476024448872, 0.012381945736706257, 0.007578176446259022, -0.00018670484132599086, 0.0033314174506813288, -0.04308491572737694, 0.05392709746956825, -0.002318510552868247, 0.004324811510741711, -0.010693175718188286, 0.05074824020266533, 0.04725717008113861, -0.00850770901888609, 0.03113580495119095, -8.509261533617973e-05, 0.0016488565597683191, 0.02074774168431759, -0.009628825820982456, 0.014198437333106995, -0.019498903304338455, 0.004189993720501661, 0.014702229760587215, -0.022677764296531677, -0.031873755156993866, -0.045951563864946365, 0.041012976318597794, -0.041438717395067215, 0.06193101406097412, -0.03984928876161575, -0.04546906054019928, 0.007329828105866909, 0.008912162855267525, -0.0185906570404768, 0.019101547077298164, 0.023188652470707893, 0.0011521595297381282, -0.0006541321636177599, -0.004448985680937767, 0.01803719624876976, -0.04606509581208229, -0.022833868861198425, 0.006978592369705439, 0.0014865431003272533, -0.01722828857600689, 0.005577197298407555, -0.013964280486106873, -0.05971716716885567, -0.011275021359324455, -0.015113779343664646, -0.01825006492435932, 0.041807692497968674, 0.009472720324993134, 0.0009038110729306936, 0.038912657648324966, 0.028127240017056465, 0.00041243588202632964, -0.021258629858493805, 0.005907146260142326, 0.035194527357816696, 0.007067288272082806, 0.012892833910882473, -0.0010599158704280853, -0.007791046518832445, 0.026339130476117134, 0.0008607935742475092, -0.010991194285452366, 0.03150478005409241, -0.013183756731450558, 0.00025566588738001883, 0.015255692414939404, -0.011906535364687443, 0.03113580495119095, 0.0015078301075845957, 0.046178627759218216, -0.018931249156594276, -0.012559337541460991, 0.023614393547177315, -0.016334233805537224, 0.027389289811253548, 0.00362234003841877, 0.015496945008635521, 0.006176781374961138, -0.019300224259495735, 0.011374360881745815, -0.007464645896106958, 0.0032533651683479548, 0.01685931347310543, -0.03482555225491524, -0.03740837797522545, -0.005371422972530127, -0.0007379497983492911, 0.024480065330863, 0.022791294381022453, 0.005591388791799545, -0.0048498911783099174, 0.005396257620304823, -0.015553710982203484, -0.023231226950883865, 0.012956694699823856, 0.03956546261906624, -0.002320284489542246, 0.006616713013499975, -0.025572797283530235, 0.01860484853386879, -0.00616968609392643, -0.004168706480413675, 0.04200637340545654, -0.018959632143378258, 0.031249335035681725, 0.03701101988554001, -0.004264498129487038, -0.019697582349181175, 0.033037442713975906, 0.011793005280196667, 0.07782531529664993, 0.013247617520391941, 0.0122400326654315, 0.00781942903995514, -0.017696604132652283, 0.00940885953605175, 0.010253244079649448, -0.016717400401830673, 0.022408129647374153, 0.004743455909192562, -0.0050450218841433525, -0.0015539518790319562, 0.006630904506891966, 0.024962570518255234, 0.010558358393609524, -0.013872036710381508, 0.006393199320882559, -0.06039835140109062, 0.031873755156993866, 0.020435532554984093, -0.04626377299427986, -0.04053047299385071, 0.032640084624290466, 0.0076207504607737064, 0.06442869454622269, -0.03800441324710846, -0.03522291034460068, 0.021627604961395264, -0.00729434983804822, -0.01049449760466814, 0.007663324475288391, 0.042233433574438095, -0.0092953285202384, 0.019924644380807877, -0.025955963879823685, -0.019271843135356903, 0.0009472720557823777, -0.013212139718234539, 0.018959632143378258, -0.0225642342120409, 0.025218013674020767, 0.01903058961033821, -0.006886348593980074, 0.03860044851899147, 0.05196869373321533, 0.02273453027009964, 0.022024963051080704, -0.008784440346062183, 0.016206512227654457, -0.013020556420087814, -0.013708836399018764, 0.009146319702267647, 0.029659904539585114, 0.045752886682748795, -0.005218865815550089, -0.033236123621463776, 0.015993641689419746, -0.016149746254086494, 0.01685931347310543, 0.001580560696311295, 0.018377788364887238, 0.04782482236623764, 0.012509668245911598, -0.013063129968941212, 0.0031965996604412794, 0.020279427990317345, 0.0026661984156817198, 0.006925374735146761, 0.004817960783839226, -0.0239407941699028, 0.023202843964099884, -0.006194520741701126, -0.00028471380937844515, -0.012665772810578346, 0.034371428191661835, 0.0017402132507413626, 0.02781503088772297, -0.020080748945474625, 0.03269685059785843, 0.00020000922086182982, 0.011565943248569965, 0.018136534839868546, -0.007237584330141544, -0.032838765531778336, 0.010913142003118992, 0.019513094797730446, 0.0064357733353972435, -0.005875215400010347, -0.03607439249753952, -0.05185516178607941, -0.03292391449213028, -0.028709083795547485, 0.041410334408283234, -0.004580255597829819, 0.042375348508358, 0.021031567826867104, 0.0049882568418979645, -0.02000979147851467, -0.0049066562205553055, 0.013723027892410755, -0.010317105799913406, 0.003760705702006817, -0.003991314675658941, 0.03661366179585457, 0.01360240112990141, 0.013382435776293278, -0.0028595554176717997, -0.0019584051333367825, 0.03158992528915405, 0.023969177156686783, -0.008365795947611332, -0.00499889999628067, -0.011047959327697754, -0.0027336073108017445, -0.014524837955832481, 0.038543686270713806, 0.03130609914660454, 0.06329338252544403, 0.010359679348766804, 0.006017128936946392, 0.003661366179585457, 0.04649083688855171, -0.020690975710749626, 0.02957475557923317, 0.006059702951461077, -0.008954736404120922, -0.0067018610425293446, -0.009465624578297138, 0.005020187236368656, -0.015042822808027267, 0.030483001843094826, -0.003994862549006939, -0.012956694699823856, -0.008578666485846043, -0.005406901240348816, -0.03053976781666279, -0.009564964100718498, 0.04172254353761673, 0.0034644613042473793, -0.018363596871495247, 0.025771476328372955, 0.023600202053785324, -0.003468009177595377, 0.0009259850485250354, 0.05194031074643135, -0.06772108376026154, -0.005080500617623329, -0.00801810808479786, 0.014233916066586971, -0.010260339826345444, 0.017795942723751068, -0.012204553931951523, -0.018902868032455444, 0.03405921906232834, -0.018093960359692574, 0.01609298214316368, -0.0662451833486557, 0.013375340029597282, -0.04433375224471092, -0.006247738376259804, 0.007684611715376377, -0.026296555995941162, 0.018321022391319275, -0.02702031470835209, 0.007727185729891062, -0.008103256113827229, 0.015170544385910034, 0.03624468669295311, -0.02250746823847294, 0.019484711810946465, -0.01705799251794815, 0.022010771557688713, 0.01409200206398964, 0.022805485874414444, 0.02764473482966423, 0.014900908805429935, -0.010728654451668262, 0.005832641385495663, 0.03235625848174095, -0.01371593214571476, -0.0008461587713100016, 0.04098459705710411, 0.013545636087656021, -0.009862982667982578, 0.015979450196027756, 0.030028879642486572, 0.022223642095923424, 0.01724248006939888, 0.027304140850901604, 0.0064357733353972435, -0.011189873330295086, 0.00548495352268219, 0.021301204338669777, -0.010324201546609402, -0.0036276618484407663, 0.04643407091498375, -0.017100566998124123, -0.012878642417490482, 0.014354541897773743, -0.018576467409729958, -0.004473820328712463, 0.011913631111383438, 0.013751409947872162, -0.03312259167432785, 0.006013581063598394, -0.008777344599366188, -0.024934187531471252, -0.0009126806980930269, -0.008096160367131233, 0.017753368243575096, 0.007521411404013634, -0.02880842424929142, -0.011289212852716446, 0.006027772556990385, 0.0034112439025193453, 0.04484463855624199, 0.024224620312452316, -0.012779302895069122, 0.044560812413692474, 0.05699243023991585, 0.0182074923068285, -0.01138145662844181, -0.0010927333496510983, 0.00410839356482029, -0.0035744442138820887, -0.01785270869731903, -0.024352341890335083, -0.029461225494742393, 0.014255203306674957, -0.011374360881745815, 0.008379987441003323, -0.01701541803777218, 0.03073844686150551, 0.008280647918581963, -0.00044015335151925683, -0.006921826861798763, 0.02782922051846981, 0.037748970091342926, -0.01302765216678381, 0.0341159850358963, 0.032242730259895325, 0.008089064620435238, -0.017682412639260292, -0.02276291325688362, -0.03039785474538803, 0.008287743665277958, -0.025728903710842133, 0.0007308541098609567, 0.015539519488811493, 0.015170544385910034, -0.027885986492037773, 0.01939956471323967, 0.029517991468310356, -0.014915100298821926, 0.010522879660129547, -0.02507610060274601, 0.024196237325668335, 0.008954736404120922, -0.016320042312145233, -0.009302424266934395, -0.030823593959212303, 0.008528996258974075, 0.0008825240656733513, -0.004236115608364344, 0.037635438144207, -0.010345487855374813, -0.025530224665999413, -0.002018718281760812, -0.03133448213338852, -0.0225642342120409, 0.019953027367591858, -0.013205043971538544, -0.013425009325146675, 0.001498073572292924, -0.007727185729891062, 0.04961293190717697, -0.0004026793176308274, 0.021400542929768562, 0.011097629554569721, -0.016192320734262466, 0.019342798739671707, -0.024210428819060326, 0.024834848940372467, -0.035393208265304565, -0.03661366179585457, 0.011998779140412807, -0.03190213814377785, 0.006332886405289173, -0.026608765125274658, 0.006350625306367874, 0.022833868861198425, 0.022620998322963715, 0.0006652191514149308, 0.021443117409944534, 0.030114026740193367, 0.026594575494527817, 0.012814781628549099, 0.015326648950576782, -0.0021606318186968565, -0.013183756731450558, 0.020109131932258606, -0.03783411905169487, 0.04158063232898712, -0.012885738164186478, -0.010111331008374691, -0.007996820844709873, 0.005662345327436924, -0.02548765018582344, 0.011374360881745815, 0.0486479215323925, -0.003265782492235303, 0.013148277997970581, 0.01702960953116417, 0.004328359384089708, -0.015000248327851295, -0.025359928607940674, -0.019300224259495735, 0.020875463262200356, -0.05270664393901825, 0.03000049665570259, 0.024934187531471252, -0.0050556655041873455, 0.0368691049516201, 0.01108343806117773, -0.008571570739150047, -0.03238464146852493, -0.037635438144207, -0.004786029923707247, 0.00901859812438488, -0.019470520317554474, 0.02706288918852806, 0.018874485045671463, 0.014432595111429691, 0.002103866543620825, 0.04521361365914345, -0.02567213773727417, -0.007152436301112175, -0.03133448213338852, -0.048137031495571136, 0.03351994976401329, 0.001388977630995214, -0.02076193317770958, 0.019882069900631905, 0.001860839664004743, 0.02467874437570572, 0.02997211366891861, -0.013510157354176044, 0.004743455909192562, -0.012566433288156986, 0.029262546449899673, -0.011133107356727123, 0.022578425705432892, -5.316209717420861e-05, 0.028950337320566177, 0.0062690251506865025, -0.013985567726194859, -0.023997558280825615, 0.039253249764442444, 0.0027495725080370903, -0.036954253911972046, 0.019257651641964912, -0.011587230488657951, -0.008926354348659515, 0.0341159850358963, 0.01175752654671669, 0.016618061810731888, -0.003693296806886792, 0.016007833182811737, -0.021031567826867104, 0.0038671407382935286, -0.012417424470186234, 0.023869836702942848, -0.004725717008113861, 0.029745051637291908, 0.014758995734155178, 0.035960860550403595, -0.001448403811082244, -0.015780773013830185, 0.011104725301265717, 0.009685590863227844, 0.015496945008635521, -0.01566724106669426, -0.0026821636129170656, 0.017341820523142815, -0.01558209303766489, 0.018945440649986267, -0.0248632300645113, 0.023202843964099884, 0.00912503246217966, 0.01996721886098385, -0.02059163711965084, 0.026892593130469322, 0.008656718768179417, 0.029120633378624916, 0.006641548126935959, -0.003682653186842799, 0.02702031470835209, -0.01586592011153698, -0.003838757984340191, -0.0013428557431325316, -0.024607786908745766, 0.004424151033163071, 0.003123869188129902, 0.03505261614918709, 0.017682412639260292, -0.003838757984340191, -0.008152926340699196, 0.0027992422692477703, -0.008245169185101986, -7.594585622427985e-05, 0.007528506685048342, -0.004654760006815195, 0.03386054188013077, 0.008550283499062061, 0.03879912942647934, 0.03567703440785408, 0.03979252278804779, -0.034768786281347275, -0.017952047288417816, -0.036528512835502625, -0.0024284934625029564, -0.03590409457683563, -0.0052933706901967525, 0.008990215137600899, 0.02236555516719818, -0.029659904539585114, 0.016575487330555916, -0.0015592736890539527, -0.01643357425928116, 0.006854418199509382, -0.00912503246217966, -0.023614393547177315, 0.03193051740527153, 0.028382683172822, -0.012807685881853104, 0.013361148536205292, 0.058298032730817795, -0.019356990233063698, -0.019924644380807877, 0.012956694699823856, -0.018108151853084564, 0.03371862694621086, -0.03729484602808952, -0.009011502377688885, 0.019286032766103745, 0.034995850175619125, 0.007613654714077711, 0.04387962818145752, -0.00019524182425811887, 0.007049548905342817, -0.0209606122225523, 0.01883191056549549, 0.010757037438452244, 0.0019229268655180931, -0.004622829612344503, 0.010813802480697632, 0.0031256431248039007, 0.034201133996248245, -0.028311727568507195, -0.014283585362136364, 0.014510647393763065, 0.0032427215483039618, 0.0030901646241545677, 0.028765849769115448, 0.0341159850358963, -0.00696085300296545, 0.02134377881884575, -0.004101297818124294, -0.016007833182811737, 0.008748962543904781, 0.018704188987612724, 0.014524837955832481, -0.018335213884711266, -0.015837537124753, 0.026892593130469322, 0.022620998322963715, 0.009976513683795929, -0.005832641385495663, -0.01566724106669426, -0.016788357868790627, -0.010906046256422997, 0.010757037438452244, -0.03266846761107445, 0.017497925087809563, -0.010998290032148361, 0.005162100773304701, -0.04231858253479004, -0.03317935764789581, 0.03905457258224487, -0.011920726858079433, 0.01917250268161297, 0.0027885986492037773, 0.018193300813436508, -0.011480795219540596, 0.00397357577458024, 0.03530805930495262, 0.015766581520438194, 0.017966238781809807, -0.01588011160492897, -0.013091512955725193, -0.029489608481526375, -0.0403885580599308, -0.011424030177295208, 0.021712753921747208, 0.013084417209029198, -0.016972845420241356, -0.002946477383375168, 0.005311109591275454, 0.005843285005539656, 0.014815760776400566, 0.018306830897927284, -0.015596284531056881, -0.008876684121787548, 0.020719358697533607, -0.005108883138746023, 0.021230246871709824, 0.023188652470707893, -0.006403842940926552, 0.0022227189037948847, 0.0009463850874453783, 0.0014058297965675592, -0.0014679168816655874, 0.0026928072329610586, 0.012467093765735626, 0.01146660465747118, -0.012034257873892784, 0.03178860619664192, -0.035137761384248734, -0.010771228931844234, 0.031845372170209885, -0.004147419705986977, -0.008074873127043247, 0.003099034307524562, 0.004640568979084492, 0.014453881420195103, -0.009039884433150291, 0.04958454892039299, 0.012616102583706379, 0.0051833875477313995, -0.019087355583906174, -0.01460289116948843, -0.012999269179999828, -0.00804649107158184, 0.04010473191738129, 0.018193300813436508, 0.01177171804010868, 0.024352341890335083, 0.0014945256989449263, -0.011714952997863293, 0.021854666993021965, 0.007741376757621765, 0.02412528172135353, -0.001625795615836978, 0.027148036286234856, 0.004062271676957607, -0.015496945008635521, -0.01204135362058878, -0.0166748259216547, -0.014560316689312458, 0.012566433288156986, 0.009784930385649204, -0.048903364688158035, 0.010941524989902973, -0.020676784217357635, 0.03879912942647934, -0.00015721346426289529, -0.003824566723778844, 0.0050840480253100395, 0.0030138862784951925, -0.02824077010154724, 0.04348227009177208, -0.022578425705432892, 0.0009552547126077116, -0.007734281476587057, 0.006744435057044029, 0.021428925916552544, 0.015965258702635765, -0.036528512835502625, -0.019271843135356903, 0.04152386635541916, -0.0015787867596372962, 0.018732571974396706, 0.01900220662355423, -0.03215758129954338, 0.03357671573758125, 0.016703208908438683, 0.018917059525847435, -0.009373381733894348, -0.010409349575638771, -0.0023149626795202494, -0.0010457244934514165, 0.028921954333782196, -0.030057262629270554, -0.011580134741961956, -0.04708687216043472, -0.008124543353915215, -0.011636900715529919, -0.01609298214316368, 0.023245418444275856, 0.010636410675942898, 0.010359679348766804, 0.03502423316240311, -0.014744804240763187, 0.022237833589315414, -0.024480065330863, 0.016206512227654457, 0.0293760783970356, 0.003821018850430846]" -How Flowkey Scaled Its AWS Redshift Data Warehouse With Timescale,"SQL analytical functions.TimescaleDB offers continuous aggregates, which integrate very well with how we do analytics and real-time data monitoring.Data migration and update (e.g., renaming of events or JSON properties) are available.✨Editor’s Note:Faster queries, reduced storage costs, and greater flexibility. Learn more abouthierarchical continuous aggregates.“We use compression, which has cut our disk space usage by 28 percent”Current Deployment & Future PlansOur data warehouse is deployed on self-hosted machines and works well for us. We employ other PostgreSQL extensions that aren't currently supported by the Timescale cloud offering, which was important to us when we launched. These includeMongo FDWandAdjust’siStore extensionfor cohort analysis data storage.✨Editor's Note:We're working on expanding the catalog of PostgreSQL extensions offered in Timescale's cloud offering. Stay tuned!We employ TimescaleDB's awesome data retention (automated through a user action), and thanks to that, our most recent (and more relevant to our analytics) data is available to us on SSD chunks, while historical data is kept on HDDs.Furthermore, we use compression, which has cut our disk space usage by 28 percent. Our data contains JSONB fields, which are difficult to be compressed. We are pretty happy with it, though, so it's a win. 🙂When we do business analytics, we employMetabaseorJupyter/Rmarkdown Notebooksto derive insights. We established a workflow of writing custom continuous aggregates for the duration of experiments, which are then easy to keep and fully deploy or discard, depending on the decision made for the experiment.✨Editor's Note:Learn how toconnect to Timescale from a Jupyter notebookfor better data querying, cleaning, and analysis.This allows us to iterate our experiments quickly and increase the bandwidth of change, which we can successfully bring to the product.RoadmapWe just finished migrating our setup to a more powerful cluster of machines, which allowed us to benefit from the data tiering options mentioned above. Right now, our system is scalable, and we don't expect any major upgrades to this system to come up soon.Advice & ResourcesWe recommend theTimescale documentationas well as theSlack Community.Want more insider tips?Sign up for our newsletterfor more Developer Q&As, technical articles, and tutorials to help you do more with your data. We deliver it straight to your inbox twice a month.We’d like to thank Nikola and all of the folks at flowkey for sharing their story on how they’re improving their online piano lessons by analyzing millions of user events",https://www.timescale.com/blog/how-flowkey-solved-its-time-series-data-problem-by-migrating-from-aws-redshift-to-timescale/,528,"[0.002735680667683482, 0.014756875112652779, 0.05985059216618538, 0.008730661123991013, 0.04332994669675827, 0.015241911634802818, 0.0013072106521576643, 0.027529507875442505, -0.01203772984445095, 0.016197286546230316, 0.027632394805550575, -0.036627620458602905, -0.0046115233562886715, -0.025001438334584236, 0.06143798306584358, 0.07354920357465744, -0.02112114429473877, -0.008311765268445015, -0.02504553273320198, 0.024001969024538994, -0.011890748515725136, 0.009671337902545929, 0.013779452070593834, 0.031542085111141205, 0.00039133644895628095, -0.033188268542289734, -0.028146827593445778, 0.046504732221364975, 0.015873929485678673, -0.06114402413368225, 0.028911128640174866, -0.04033153876662254, -0.04744540899991989, 0.013904386200010777, 0.036921583116054535, 0.028190921992063522, 0.030395634472370148, 0.011626183055341244, 0.0010839835740625858, -0.009009924717247486, -0.03512841835618019, 0.023428743705153465, 0.001986078452318907, 0.043682701885700226, -0.005339078605175018, 0.001711408025585115, -0.050708383321762085, -0.0276911873370409, 0.000809313147328794, 0.06672929227352142, -0.045916810631752014, 0.013889688067138195, -0.03207121416926384, -0.05338343605399132, 0.0152566097676754, -0.02561875805258751, 0.010185770690441132, 0.020298052579164505, 0.0005856266943737864, -0.03836199641227722, 0.01612379588186741, -0.04888582229614258, 0.027426620945334435, 0.018152132630348206, -0.006790514104068279, 0.022473368793725967, -0.03157148137688637, 0.058351386338472366, -0.03636305779218674, 0.01634426787495613, 0.04097825288772583, 0.008135388605296612, 0.0012768958695232868, -0.02494264580309391, 0.021253427490592003, -0.04394726827740669, -0.009744828566908836, 0.021356314420700073, -0.01907811127603054, -0.027132660150527954, 0.0010003882925957441, -0.011155844666063786, -0.028587769716978073, 0.023899082094430923, 0.021856049075722694, -0.019871806725859642, -0.05391256511211395, -0.03571633994579315, -0.026236077770590782, 0.012221455574035645, -0.009810970164835453, 0.04820971190929413, -0.01325767021626234, 0.012206757441163063, 0.02688279189169407, 0.020856579765677452, 0.010193119756877422, -0.010678157210350037, -0.020709598436951637, 0.019298581406474113, -0.0018289926229044795, -0.02298780158162117, -0.018534282222390175, -0.0210182573646307, 0.033688005059957504, -0.005728577729314566, -0.006143798585981131, -0.022443972527980804, -0.005287635140120983, 0.0007055079331621528, -0.0831911489367485, 0.0021036630496382713, -0.0502968393266201, -0.003509167116135359, -0.0025721644051373005, 0.004699711687862873, -0.02181195467710495, 0.018328508362174034, -0.00885559432208538, -0.022737933322787285, -0.05303068086504936, 0.016579436138272285, -0.023031895980238914, 0.0069926124997437, 0.009840366430580616, -0.0326591394841671, 0.007576861418783665, -0.061085231602191925, -0.05467686802148819, -0.006948518566787243, 0.027235547080636024, -0.01878414861857891, 0.06696446239948273, -0.03753890097141266, -0.027896961197257042, -0.035157814621925354, -0.03845018520951271, -0.007374763023108244, -0.012236153706908226, -0.021694369614124298, 0.0032335780560970306, -0.0265006422996521, 0.010626713745296001, 0.0007440904155373573, -0.058145612478256226, 0.015800438821315765, -0.02150329388678074, 0.04647533595561981, -0.022150009870529175, -0.014404120855033398, 0.009913856163620949, -0.02542768232524395, -0.05038502812385559, -0.03530479222536087, 0.04668110981583595, 0.0006049179355613887, 0.017549511045217514, 0.05758708715438843, -0.00861307606101036, -0.05626425892114639, 0.007709144148975611, 0.0564994290471077, -0.025089627131819725, 0.012192059308290482, -0.031218726187944412, -0.020694900304079056, -0.043565116822719574, -0.03651003539562225, -0.09136328101158142, -0.017446624115109444, -0.03968482092022896, -0.06414242833852768, -0.020694900304079056, 0.03962603211402893, 0.036715809255838394, -0.01202303171157837, 0.012346389703452587, -0.053941961377859116, -0.0005259157624095678, -0.0035900066141039133, -0.05182543769478798, -0.0025886998046189547, -0.020474428310990334, 0.013757404871284962, -0.061673153191804886, 0.004648268688470125, -0.06279020756483078, 0.03362921252846718, 0.006213614251464605, 0.047592390328645706, -0.04130161181092262, 0.06343692541122437, 0.015815136954188347, 0.026721114292740822, 0.009891809895634651, -0.034187741577625275, 0.03354102373123169, -0.0007316889241337776, -0.058733537793159485, 0.0023866011761128902, 0.047474805265665054, -0.0020062881521880627, 0.04312417283654213, -0.01857837662100792, -0.009134857915341854, 0.02445760928094387, 0.003613891080021858, 0.009862413629889488, -0.06202590838074684, -0.019783619791269302, 0.02269383892416954, 0.005949048791080713, -0.004809947684407234, 0.013132737018167973, -0.029469655826687813, -0.01691749319434166, -0.0671408399939537, -0.016358966007828712, 0.019636638462543488, -0.010597317479550838, -0.005904954392462969, 0.043770890682935715, 0.01178786251693964, -0.020004089921712875, -0.007044055964797735, 0.046298958361148834, 0.034658078104257584, -0.030542615801095963, 0.028102733194828033, -8.68105489644222e-05, 0.004049321636557579, -0.04956193268299103, -0.019313279539346695, -0.03462868183851242, 0.01218471024185419, -0.004468217026442289, -0.006775815971195698, -0.007205734960734844, 0.013632471673190594, -0.01956314779818058, -0.02522191032767296, 0.020606711506843567, -0.01550647709518671, 0.022429274395108223, 0.00992855429649353, 0.030836576595902443, -0.04118402674794197, -0.06625895202159882, 0.03786225989460945, 0.05056140199303627, 0.01399257406592369, -0.022076519206166267, 0.016065003350377083, -0.04365330561995506, -0.01975422352552414, -0.09736009687185287, -0.009774224832654, 0.03630426526069641, 0.005449314136058092, 0.008069247007369995, 0.03698037564754486, -0.04409424588084221, -0.03412894904613495, -0.018534282222390175, -0.0348050594329834, 0.008429350331425667, 0.05106113851070404, -0.024472307413816452, 0.025177815929055214, -0.015815136954188347, 0.04506431892514229, 0.03942025825381279, -0.005228842608630657, -0.03930267319083214, -0.012206757441163063, -0.010068186558783054, 0.002669539302587509, -0.01888703554868698, -0.004328585229814053, -0.015785740688443184, -0.010450336150825024, -0.04882702976465225, 0.00315273879095912, -0.004482915159314871, 0.023325856775045395, 0.0032409271225333214, 0.008715962991118431, 0.0056146676652133465, -0.005445639602839947, -0.029205089434981346, -0.0025721644051373005, 0.0017600953578948975, 0.016858700662851334, -0.02572164498269558, 0.009943252429366112, 0.02866126038134098, 0.005622016731649637, 0.004780551418662071, -0.048444878309965134, -0.03377619385719299, 0.004262444097548723, -0.010825137607753277, -0.005728577729314566, -0.05279551073908806, 0.01771118864417076, 0.04039033129811287, -0.01888703554868698, -0.00721675856038928, -0.002768751233816147, 0.002972687128931284, 0.011288126930594444, 0.006151147652417421, 0.025074928998947144, -0.006389991380274296, -0.03783286362886429, -0.012625652365386486, 0.07472505420446396, -0.01602090895175934, 0.0015074721304699779, -0.054618075489997864, -0.010097582824528217, -0.09430290013551712, -0.012552162632346153, 0.019519053399562836, 0.008230926468968391, -0.02267914079129696, 0.044241227209568024, -0.013382604345679283, 0.02395787462592125, -0.007576861418783665, 0.00675009423866868, -0.02482506074011326, 0.01563875935971737, 0.04059610515832901, -0.027264943346381187, -0.050326235592365265, 0.02483975887298584, -5.7242141338065267e-05, -0.03230638429522514, 0.0412428192794323, -0.04729842767119408, -0.011964239180088043, -0.07207939773797989, 0.010038790293037891, 0.01613849401473999, 0.016682323068380356, -0.006496552377939224, 0.01897522434592247, -0.008510190062224865, 0.017916962504386902, -0.030248653143644333, -0.02112114429473877, 0.011898097582161427, 0.006026213988661766, 0.027338434010744095, 0.002215735847130418, 0.00967868696898222, -0.026191983371973038, -0.01741722784936428, 0.003586332080885768, -0.024722173810005188, 0.0030149442609399557, 0.024325326085090637, -0.0003380558919161558, -0.017858169972896576, 0.014602544717490673, -0.05602908879518509, 0.006198916118592024, 0.012339040637016296, -0.013911735266447067, 0.036539431661367416, -0.025471776723861694, 0.010332752019166946, 0.003753522876650095, -0.05890991538763046, -0.013316462747752666, 0.04397666081786156, 0.04976770654320717, 0.018122736364603043, 0.06173194572329521, 0.032218195497989655, 0.028484884649515152, 0.005820440594106913, -0.008583679795265198, 0.04235987365245819, 0.03586332127451897, -0.019254488870501518, 0.04462337866425514, -0.046416543424129486, -0.005140654277056456, 0.03157148137688637, 0.015227213501930237, -0.01702038012444973, -0.026191983371973038, -0.01762300170958042, -0.00861307606101036, 0.003825176041573286, 0.01193484291434288, 0.06267262250185013, -0.0020136372186243534, 0.024134252220392227, -0.004508636891841888, -0.04394726827740669, -0.017843471840023994, 0.039655424654483795, 0.002959826262667775, 0.01729964278638363, 0.026779906824231148, -0.01721145398914814, -0.021664973348379135, -0.011662928387522697, -0.03362921252846718, 0.03071899153292179, -0.030983557924628258, 0.03703916817903519, -0.03139510378241539, -0.044241227209568024, 0.0628490000963211, 0.008201530203223228, 0.06161436066031456, -0.03489324823021889, -0.01693219132721424, -0.019107507541775703, -0.01506553404033184, -0.03492264449596405, 0.02181195467710495, 0.050238046795129776, -0.026427151635289192, -0.009840366430580616, -0.022840820252895355, -0.02680930308997631, 0.012824077159166336, 0.048562463372945786, -0.031453896313905716, -0.005886582192033529, 0.014837713912129402, 0.021547388285398483, 0.007264527026563883, 0.0401257649064064, -0.008488142862915993, -0.03621607646346092, 0.003514678915962577, -0.018019849434494972, 0.03806803375482559, -0.022282293066382408, -0.04694567620754242, -0.02689749002456665, -0.02466338314116001, -0.01643245667219162, 0.011537994258105755, 0.029601937159895897, 0.010406242683529854, -0.017858169972896576, 0.044447001069784164, -0.03357041999697685, -0.03454049304127693, 0.011751117184758186, -0.059527233242988586, 0.06402485072612762, -0.010678157210350037, -0.029307976365089417, 0.0022469693794846535, -0.05544116720557213, -0.028146827593445778, 0.009722781367599964, -0.02954314649105072, 0.04115463048219681, 3.7060985050629824e-05, 0.014477611519396305, -0.00881150085479021, 0.00787082314491272, 0.042595043778419495, -0.01965133659541607, 0.015873929485678673, -0.03598090633749962, -0.0035404006484895945, 0.0305132195353508, -0.0005406138370744884, -0.011905446648597717, -0.011435108259320259, 0.001901564421132207, 0.0020650806836783886, -0.006154822185635567, 0.07789983600378036, 0.021929539740085602, 0.0164471548050642, -0.0002176005218643695, -0.0070073106326162815, -0.019195696339011192, 0.014837713912129402, -0.028014544397592545, 0.007080801296979189, 0.053354039788246155, -0.018607772886753082, -0.016314871609210968, 0.005644063465297222, -0.08971709758043289, -0.021547388285398483, 0.006246685050427914, -0.004457193426787853, 0.013147435151040554, -0.020592013373970985, 0.016285475343465805, 0.08571922034025192, -0.0014247953658923507, 0.013272368349134922, -0.016300173476338387, -0.01050912868231535, -0.00675009423866868, -0.028102733194828033, 0.000959968485403806, -0.006154822185635567, 0.015565269626677036, 0.028602467849850655, -0.017343737185001373, 0.025060230866074562, 0.00750704575330019, 0.012882869690656662, -0.00821622833609581, -0.010185770690441132, -0.017476020380854607, -0.03239457309246063, -0.024678081274032593, -0.0053831725381314754, -0.023031895980238914, -0.004798924084752798, -0.05576452612876892, -0.05341283231973648, -0.01888703554868698, -0.007110197562724352, 0.014734827913343906, -0.02603030391037464, 0.007562163285911083, 0.0057175541296601295, -0.045622847974300385, -0.018622471019625664, -0.01947495900094509, -0.047386616468429565, -0.03806803375482559, 0.020474428310990334, 0.019901202991604805, 0.03571633994579315, 0.0043579814955592155, 0.04929737001657486, 0.010847184807062149, -0.007760587614029646, 0.006588415242731571, -0.012949010357260704, -0.00895113218575716, 0.024722173810005188, 0.025853926315903664, -0.0311893317848444, 0.027059169486165047, 0.01159678678959608, 0.029469655826687813, 0.007731191348284483, 0.01001674309372902, 0.016211984679102898, 0.005508106201887131, -0.012941661290824413, 0.0074592768214643, -0.02260565012693405, -0.016182588413357735, -0.002009962685406208, -0.021194634959101677, 0.015388892032206059, 0.010193119756877422, -0.041536781936883926, -0.06355451047420502, 0.031159935519099236, -0.0030369912274181843, -0.0024619288742542267, 0.013617773540318012, 0.00286245159804821, 0.016079701483249664, 0.014587846584618092, -0.019092809408903122, -0.0067537687718868256, 0.020974162966012955, 0.014984695240855217, -0.025971511378884315, -0.021562086418271065, -0.033599816262722015, 0.03542237728834152, -0.02904340997338295, 0.020386239513754845, 0.03445230424404144, 0.03324706107378006, 0.019342675805091858, -0.021400408819317818, -0.0017417228082194924, 0.0045196604914963245, -0.011302825063467026, 0.0029855479951947927, 0.00687135336920619, 0.015462382696568966, 0.010781043209135532, -0.0037516856100410223, -0.008039850741624832, 0.03492264449596405, 0.020077580586075783, 0.0026456548366695642, -0.0016801744932308793, -0.042800817638635635, -0.01596211828291416, 0.03795044869184494, 0.0029800361953675747, 0.005173725076019764, 0.04765118286013603, -0.003224391723051667, 0.020224561914801598, -0.013287066482007504, -0.004872414283454418, -0.03977300971746445, -0.025898020714521408, -0.014396771788597107, -0.02992529608309269, -0.006886051502078772, 0.011986286379396915, -0.026721114292740822, -0.029793012887239456, -0.017534812912344933, -0.029499052092432976, -0.03912629559636116, 0.015771042555570602, 0.031336311250925064, -0.007271876093000174, -0.028514279052615166, -0.030777784064412117, 0.022620348259806633, -0.003869270207360387, 0.004541707690805197, 0.03627486899495125, 0.0021330593153834343, 0.024281231686472893, 0.020797787234187126, 0.035657547414302826, 0.016799908131361008, 0.006584740709513426, 0.002404973842203617, 0.030748387798666954, 0.017725886777043343, 0.01349283941090107, 0.001335688284598291, 0.02201772667467594, -0.015565269626677036, -0.008392604999244213, 0.027132660150527954, -0.02894052490592003, -0.00861307606101036, -0.0058388132601976395, -0.05899810418486595, 0.05191362649202347, 0.026471246033906937, 0.014279186725616455, -0.01655004173517227, -0.019915901124477386, -0.03215940296649933, 0.006287104915827513, 0.014021970331668854, -0.04388847574591637, 0.004159557167440653, -0.01693219132721424, 0.008370557799935341, -0.029205089434981346, 0.03310008347034454, 0.012794680893421173, 0.02504553273320198, 0.048650652170181274, 0.026853397488594055, -0.0009645616519264877, 0.031453896313905716, 0.03680399805307388, 0.024898551404476166, 0.027500111609697342, -0.007146942429244518, 0.028690656647086143, -0.032218195497989655, 0.01719675585627556, 0.05341283231973648, -0.03245336562395096, 0.010656110011041164, -0.021179936826229095, 0.013198877684772015, -0.004413099028170109, -0.010986817069351673, -0.012934312224388123, 0.014639290049672127, 0.04744540899991989, 0.015094930306077003, 0.011993635445833206, -0.0028073338326066732, 0.009546404704451561, -0.011956890113651752, -0.012941661290824413, -0.011288126930594444, 0.007834077812731266, 0.03601030260324478, -0.029087504372000694, -0.020018788054585457, 0.012596257030963898, -0.012059777043759823, -0.0696101188659668, -0.029322674497961998, -0.02307598851621151, 0.00978892296552658, 0.00157636939547956, -0.03204181790351868, 0.03136570751667023, -0.03915569186210632, -0.05597029626369476, 0.007099173963069916, -0.03454049304127693, 0.013184179551899433, -0.007518069352954626, 0.0003104969800915569, -0.029263881966471672, 0.007334343157708645, -0.017681792378425598, -0.018313810229301453, -0.04394726827740669, -0.012691793963313103, -0.03551056608557701, -0.02894052490592003, 0.044417604804039, -0.0332176648080349, 0.027426620945334435, 0.04244806244969368, -0.0023627167101949453, -0.018328508362174034, -0.009377376176416874, 0.007069777697324753, 0.0015460544964298606, -0.014271837659180164, 0.012008333578705788, -0.0002689289685804397, -0.008973179385066032, 0.002586862538009882, -0.04374149441719055, 0.0037314756773412228, -0.010531175881624222, 0.004850367084145546, -0.013874989934265614, -0.019989391788840294, 0.0283672995865345, -0.035069625824689865, 0.016755813732743263, 0.03430532291531563, 0.01759360544383526, -0.017358435317873955, -0.021473897621035576, 0.014404120855033398, -0.006698651239275932, -0.0152566097676754, 0.014595195651054382, -0.023355253040790558, -0.01596211828291416, 0.00547503586858511, 0.01682930439710617, 0.026236077770590782, 0.004295514430850744, 0.03215940296649933, -0.037009771913290024, 0.02874944917857647, -0.003880293807014823, 0.017049776390194893, -0.025545267388224602, 0.008201530203223228, -0.022635046392679214, -0.023796195164322853, -0.01612379588186741, -0.01975422352552414, 0.0025593035388737917, -0.0037167775444686413, 0.04744540899991989, -0.009568451903760433, -0.008730661123991013, -0.0002459632232785225, 0.002250643912702799, -0.004229373298585415, 0.02248806692659855, 0.004251420497894287, -0.018622471019625664, -0.03354102373123169, -0.019489657133817673, 0.0011620671721175313, 0.033305853605270386, -0.018651867285370827, -0.03598090633749962, -0.01641775853931904, -0.03260034695267677, -0.001555240829475224, -0.005195772275328636, -0.0002749000850599259, 0.008649821393191814, -0.015271307900547981, 0.014470262452960014, -0.10711962729692459, -0.012566860765218735, 0.026750510558485985, -0.02483975887298584, -0.004328585229814053, -0.02817622385919094, 0.003891317406669259, 0.023605121299624443, 0.038185618817806244, -0.014536403119564056, 0.026824001222848892, -0.06349571794271469, -0.032923705875873566, -0.003261137055233121, -0.02084188163280487, 0.02181195467710495, 0.010171073488891125, 0.0155946658924222, 0.021650275215506554, 0.014984695240855217, -0.007183687761425972, 0.0016140331281349063, -0.02072429656982422, 0.05347162485122681, 0.005092885345220566, -0.003586332080885768, -0.0018528769724071026, 0.05411833897233009, 0.024178344756364822, -0.009994695894420147, 0.02065080590546131, 0.008965830318629742, -0.008730661123991013, 0.010185770690441132, 0.003946435172110796, -0.004729107953608036, -0.007562163285911083, 0.029410863295197487, -0.0038766192737966776, -0.022179406136274338, -0.019283883273601532, -0.042889002710580826, 0.04089006409049034, -0.04391787201166153, 0.06484793871641159, -0.001113379723392427, -0.008201530203223228, -0.00011201546294614673, -0.011707022786140442, 0.013963178731501102, 0.012449275702238083, 0.023120082914829254, 0.009487612172961235, -0.006977914832532406, 0.008532237261533737, 0.019519053399562836, -0.036333661526441574, -0.010898628272116184, 0.014800968579947948, 0.009068717248737812, -0.026544736698269844, 0.026485944166779518, 0.01869596168398857, -0.03915569186210632, -0.024575194343924522, 0.014756875112652779, -0.011758466251194477, 0.03680399805307388, 0.009465564973652363, 0.0029432910960167646, 0.026294870302081108, 0.014257139526307583, 0.007936964742839336, -0.005618342198431492, 0.02093006856739521, 0.009708083234727383, 0.014521704986691475, 0.004218349698930979, -0.010589968413114548, -0.026677019894123077, 0.03533418849110603, 0.014896506443619728, -0.024134252220392227, 0.024001969024538994, -0.015462382696568966, -0.012633001431822777, -0.001224534003995359, 0.008238275535404682, 0.02924918383359909, 0.003740662010386586, 0.05664641037583351, -0.009112810716032982, -0.011964239180088043, 0.0076283048838377, 0.013919084332883358, 0.011405711993575096, 0.028484884649515152, -0.011405711993575096, 0.018343206495046616, -0.007128569763153791, 0.043271154165267944, -0.006283430382609367, 0.012015682645142078, 0.025662852451205254, -0.011501249857246876, -0.01721145398914814, 0.006996287032961845, -0.0018308298895135522, -0.008157435804605484, 0.01001674309372902, -0.010788392275571823, 0.009987346827983856, 0.025986209511756897, 0.036921583116054535, -0.008782104589045048, -0.004188953433185816, 0.003994204103946686, -0.0031986702233552933, -0.0025354193057864904, -0.032923705875873566, 0.03495204076170921, -0.0031012953259050846, -0.046210769563913345, 0.041889533400535583, -0.007297597825527191, 0.020092278718948364, 0.019048715010285378, -0.019386770203709602, 0.0038839683402329683, 0.005897605791687965, 0.01671171933412552, 0.058233801275491714, -0.0061621712520718575, 0.05338343605399132, -0.011427759192883968, -0.010825137607753277, 0.01907811127603054, -0.009039320982992649, 0.01334585901349783, 0.04703386500477791, -0.002485813107341528, 0.01847548969089985, 0.01612379588186741, -0.017931660637259483, 0.03101295419037342, -0.003861921140924096, -0.011846654117107391, 0.0032354153227061033, -0.015330100432038307, 0.04723963513970375, 0.03260034695267677, -0.029895899817347527, -0.028088035061955452, 0.06296658515930176, -0.007900219410657883, 0.0693749487400055, -0.04829790070652962, -0.03645124286413193, -0.0009080658783204854, -0.002309436211362481, 0.0328943096101284, 0.030983557924628258, 0.021856049075722694, -0.007518069352954626, 0.011662928387522697, -0.021371012553572655, -0.04920918121933937, 0.009142206981778145, -0.021341616287827492, 0.002880824264138937, -0.00028661260148510337, 0.01456579938530922, 0.010420940816402435, 0.03939086198806763, 0.0457698293030262, 0.021106446161866188, 0.00254460540600121, 0.010597317479550838, -0.0115820886567235, 0.008128039538860321, -0.025074928998947144, -0.012985755689442158, 0.013911735266447067, 0.038979314267635345, 0.039567239582538605, -0.0050157206133008, -0.027426620945334435, 0.018666565418243408, -0.008091294206678867, 0.029014015570282936, 0.005203121341764927, 0.004409424960613251, 0.01837260276079178, 0.03874414414167404, -0.012603606097400188, 0.016373664140701294, 0.015521175228059292, 0.006198916118592024, -0.020312750712037086, 0.01482301577925682, 0.0013742706505581737, 0.015212515369057655, 0.01408811192959547, -0.02269383892416954, 0.017137963324785233, 0.0693749487400055, -0.016741115599870682, 0.012625652365386486, -0.03912629559636116, 0.019871806725859642, 0.012772633694112301, 0.0077458894811570644, 0.006970565766096115, -0.037509504705667496, -0.03980240598320961, 0.009693385101854801, 0.019004620611667633, 0.01660883240401745, -0.007393135689198971, -0.018931129947304726, -0.035539962351322174, -0.039861198514699936, -0.04647533595561981, 0.03171846270561218, -0.02357572503387928, 0.039185088127851486, -7.700704372837208e-06, -0.01829911209642887, -0.0045821270905435085, 0.01810803823173046, -0.0152566097676754, 0.018166830763220787, 0.010406242683529854, 0.020988861098885536, 0.031836047768592834, 0.0181962251663208, 0.01779937744140625, -0.009708083234727383, -0.007789983879774809, 0.0032703233882784843, -0.0023186225444078445, 0.017828773707151413, -0.0030167815275490284, -0.022649744525551796, -0.028132129460573196, -0.0007799169979989529, 0.023722704499959946, 0.024516401812434196, 0.03627486899495125, -0.023061292245984077, -0.012581558898091316, 0.01075899600982666, 0.018255017697811127, 0.00787082314491272, 0.003084760159254074, 0.026647623628377914, 0.0029028712306171656, 0.029014015570282936, 0.0014275512658059597, -0.0028183571994304657, -0.0010086558759212494, 0.019930599257349968, 0.014455564320087433, -0.01762300170958042, -0.00010725006723077968, -0.002653003903105855, -0.011508598923683167, -0.013272368349134922, 0.02336995117366314, 0.025898020714521408, -0.02436942048370838, 0.03198302909731865, -0.007466625887900591, -0.01878414861857891, -0.008987877517938614, 0.02298780158162117, -0.047386616468429565, -9.588202374288812e-05, -0.011244033463299274, -0.02757360227406025, -0.007606257684528828, -0.0049054850824177265, -0.011280777864158154, -0.016961587592959404, 0.03892052173614502, -0.03698037564754486, 0.00904667004942894, -0.016564738005399704, 0.030101673677563667, -0.04274202510714531, -0.020092278718948364, 0.0332176648080349, -0.01653534360229969, 0.0393320694565773, -0.024178344756364822, 0.011177891865372658, -0.003964807838201523, 0.02300249971449375, -0.009553753770887852, -0.006761117838323116, 0.010075535625219345, -0.01897522434592247, 0.022855518385767937, 0.041918929666280746, 0.02307598851621151, 0.007731191348284483, -0.015080232173204422, -0.013301764614880085, 0.005688157863914967, 0.027323735877871513, -0.022914310917258263, 0.020106976851820946, 0.01506553404033184, 0.039949387311935425, -0.002542768372222781, 0.002551954472437501, 0.03142450004816055, 0.0022341085132211447, 0.012192059308290482, 0.03433471918106079, 0.014925902709364891, 0.016579436138272285, 0.018622471019625664, 0.04315356910228729, -0.0007422531489282846, 0.006643533241003752, 0.03021925687789917, -0.0012814890360459685, -0.025192514061927795, 0.012735888361930847, -0.0026272821705788374, -0.004152208101004362, -0.00358082028105855, 0.016388362273573875, -0.030101673677563667, 0.011376315727829933, 0.007231456693261862, -0.006614136975258589, -0.0018271553562954068, -0.0024215090088546276, 0.015241911634802818, 0.0051002344116568565, -0.019930599257349968, -0.008870292454957962, 0.007055079564452171, -0.022238198667764664, 0.037597693502902985, 0.02603030391037464, 0.002099988516420126, 0.03286491334438324, 0.06708204746246338, 0.004993673413991928, -0.016902795061469078, -0.01443351712077856, -0.009546404704451561, -0.012890218757092953, -0.0025593035388737917, -0.018666565418243408, -0.0012640351196750998, 0.0030774110928177834, -0.025104325264692307, 0.0031747857574373484, -0.027735281735658646, 0.01500674244016409, 0.006617811508476734, -0.02278202772140503, -0.018725357949733734, 0.034981437027454376, 0.0313069149851799, -0.00483934348449111, 0.0185930747538805, 0.02093006856739521, -0.0056146676652133465, -0.014036668464541435, -0.019504355266690254, -0.026970980688929558, 0.01984241046011448, -0.02172376587986946, -0.007371088489890099, 0.01719675585627556, 0.005963746923953295, -0.023428743705153465, 0.029499052092432976, 0.04853306710720062, 0.0010196794755756855, 0.013647169806063175, -0.034187741577625275, 0.0021146866492927074, 0.01369126420468092, -0.003507329849526286, -0.003404443385079503, -0.025383587926626205, -0.023810893297195435, 0.015271307900547981, 0.0077164932154119015, 0.030983557924628258, -0.005570573266595602, -0.02553056925535202, 0.0010518315248191357, -0.02444291114807129, -0.025119023397564888, -0.027059169486165047, 0.028205620124936104, -0.02514841966331005, 0.009950601495802402, 0.006691302172839642, 0.046328354626894, 0.011773164384067059, 0.0019474959699437022, 0.013977876864373684, -0.01119993906468153, 0.014337979257106781, -0.010553223080933094, 0.007033032365143299, -0.03968482092022896, -0.0377446748316288, 0.03698037564754486, -0.018710659816861153, 0.0013476304011419415, -0.04626956209540367, 0.012361086905002594, 0.04782756045460701, 0.013507537543773651, 0.0003169274132233113, 0.028411393985152245, 0.028720052912831306, 0.018828243017196655, 0.023031895980238914, 0.035657547414302826, -0.03883233293890953, -0.03589271754026413, 0.026059700176119804, -0.04341813549399376, 0.02034214697778225, -0.013573679141700268, -0.002526232972741127, -0.009583150036633015, 0.004909159615635872, -0.016197286546230316, 0.030954161658883095, 0.01159678678959608, -0.009524357505142689, 0.02669171802699566, 0.012508068233728409, 0.005302333272993565, -0.013860291801393032, -0.03815622255206108, 0.0009847715264186263, 0.010560572147369385, -0.009972648695111275, 0.017872868105769157, 0.0024674406740814447, -0.017755283042788506, 0.029910597950220108, 0.02259095199406147, -0.02378149703145027, -0.03421713411808014, -0.008164784871041775, 0.005364799872040749, -0.00020140966807957739, -0.017079172655940056, 0.018622471019625664, 0.02015107125043869, 0.025471776723861694, 0.04544647037982941, 0.04535828158259392, -0.005294984206557274, 0.0214151069521904, -0.03127751871943474, -0.04450579360127449, 0.030395634472370148, -0.0022598302457481623, -0.01119258999824524, -0.0011528808390721679, -0.0015883115120232105, 0.0012833263026550412, 0.03489324823021889, -0.022252896800637245, -0.011221986263990402, -0.005853511393070221, 0.003909689839929342, 0.00643408577889204, 0.0305132195353508, -0.006367944180965424, 0.014440866187214851, 0.01613849401473999, -0.005085536744445562, -0.004515985958278179, 0.018710659816861153, 0.02483975887298584, -0.05438290536403656, 0.03792105242609978, -0.024883853271603584, -0.0016599646769464016, 0.01965133659541607, 6.757672963431105e-05, 0.006772141437977552, -0.0034669102169573307, 0.04430001974105835, -0.004574778024107218, -0.026236077770590782, 0.02151799201965332, 0.03795044869184494, 0.020459730178117752, 0.03142450004816055, -0.0061327749863266945, 0.015771042555570602, 0.0003589547413866967, 0.0033952570520341396, 0.012221455574035645, -0.006731721572577953, 0.01178051345050335, -0.024898551404476166, -0.03286491334438324, 0.013977876864373684, -0.031130539253354073, 0.006911773234605789, -0.01788756623864174, -0.0013301764847710729, 0.0041558826342225075, -0.008664519526064396, -0.01722615212202072, 0.006801537703722715, -0.008840896189212799, 0.044153038412332535, 6.263909017434344e-05, -0.008414652198553085, 0.03648063912987709, -0.017681792378425598, 0.02348753623664379, -0.0016121958615258336, -0.022252896800637245, -0.013581028208136559, 0.02817622385919094, 0.0038949919398874044, -0.015726948156952858, -0.002684237202629447, 0.0052619134075939655, 0.0025997234042733908, -0.0014523542486131191, -0.011567390523850918, 0.0082235774025321, -0.009950601495802402, 0.04785695672035217, 0.02670641615986824, 0.02670641615986824, 0.014448215253651142, 0.0328943096101284, -0.027264943346381187, 0.014374724589288235, -0.03374679759144783, 0.001155636738985777, -0.0543535090982914, 0.00987711176276207, 0.013955829665064812, 0.02473687194287777, -0.009156905114650726, 0.006977914832532406, -0.024487005546689034, 0.022252896800637245, -0.001956682186573744, 0.016667624935507774, -0.03136570751667023, 0.014859761111438274, 0.025119023397564888, -0.017931660637259483, 0.005294984206557274, 0.04374149441719055, 0.0005690913530997932, -0.03795044869184494, -0.0009324096026830375, -0.02492794767022133, 0.005868209525942802, -0.02942556142807007, 0.0037921052426099777, 0.023296460509300232, 0.02357572503387928, -0.013242972083389759, 0.019401468336582184, -0.007319645024836063, -0.002105500316247344, -0.018460791558027267, 0.011405711993575096, 0.0016039282782003284, -0.0036837069783359766, 0.008738010190427303, 0.011530646122992039, -0.011501249857246876, 0.022370481863617897, -0.022032424807548523, -0.01613849401473999, -0.014007272198796272, 0.029410863295197487, 0.01643245667219162, 0.04888582229614258, 0.01800515130162239, 0.0286465622484684, 0.0049054850824177265, -0.023840289562940598, 0.004806273151189089, -0.009494961239397526, 0.018063943833112717, 0.027367830276489258, -0.0047180843539536, -0.04062550142407417, 0.03871474787592888, 0.024722173810005188, -0.004137510433793068, 0.0011831956217065454, 0.004431471694260836, -0.021562086418271065, -0.005096559878438711, 0.01144980639219284, -0.026677019894123077, 0.015888627618551254, 0.016403060406446457, 0.010310704819858074, -0.03442290797829628, -0.03680399805307388, 0.026074398308992386, 0.001542380079627037, 0.002509697573259473, 0.011302825063467026, 0.006239335983991623, 0.0025960488710552454, 0.015579967759549618, 0.020812485367059708, 0.012316993437707424, -0.007885521277785301, -0.021385710686445236, -0.01144980639219284, -0.011244033463299274, -0.03786225989460945, -0.044858548790216446, -0.002254318445920944, -0.006044586189091206, -0.017182057723402977, -0.0014100972330197692, -0.010648760944604874, 0.010839835740625858, 0.027162056416273117, 0.03395257145166397, -0.00399052957072854, -0.011405711993575096, 0.02132691815495491, -0.009127508848905563, 0.010156375356018543, 0.014227744191884995, -0.012838775292038918, 0.0012364762369543314, -0.012133266776800156, 0.005177399609237909, -0.005511780735105276, -0.024295929819345474, 0.020180467516183853, 0.02632426656782627, 0.0006990775582380593, 0.021635577082633972, -0.003349325619637966, -0.005504431668668985, 0.018357904627919197, 0.0010904140071943402, 0.009252442978322506, -0.01433063019067049, -0.0038839683402329683, -0.006401014979928732, 0.008047199808061123, 0.03953784331679344, 0.012133266776800156, 0.004148533567786217, 0.01227289903908968, 0.008789453655481339, 0.008194181136786938, -0.017916962504386902, 0.04009636864066124, -0.0022653420455753803, 0.006672929506748915, 0.008039850741624832, -0.0009884460596367717, -0.015418288297951221, 0.029190391302108765, -0.005662436131387949, 0.009318584576249123, -0.036333661526441574, 0.01781407557427883, 0.011126448400318623, 0.018813544884324074, 0.012228804640471935, -0.009076066315174103, -0.02200302854180336, -0.007047730498015881, 0.036715809255838394, -0.038185618817806244, -0.013860291801393032, -0.002382926642894745, 0.03656882792711258, 0.00953905563801527, 0.01946026086807251, 0.0039023407734930515, 0.006937494967132807, -0.0125154173001647, 0.039361465722322464, -0.012353737838566303, 0.0018005151068791747, -0.015227213501930237, 0.020944766700267792, 0.01613849401473999, 0.005456663202494383, -0.008679217658936977, 0.0041852788999676704, 0.0305132195353508, 0.008370557799935341, 0.01051647774875164, -0.006702325772494078, -0.02072429656982422, 0.007525418419390917, 0.020180467516183853, -0.0034871201496571302, -0.021738464012742043, -0.025177815929055214, -0.0010389706585556269, -0.00953905563801527, -0.00389866647310555, -0.018431395292282104, -0.0025537917390465736, -0.052472155541181564, -0.003369535319507122, 0.019225092604756355, -0.014095460996031761, 0.024428213015198708, 0.007044055964797735, 0.027941055595874786, 0.02250276505947113, 0.015212515369057655, 0.03189484030008316, 0.008179483003914356, -0.005923327058553696, 0.002961663529276848, 0.016652926802635193]" -How Flowkey Scaled Its AWS Redshift Data Warehouse With Timescale,"daily using TimescaleDB.We’re always keen to feature new community projects and stories on our blog. If you have a story or project you’d like to share, reach out on Slack (@Ana Tavares), and we’ll go from there.The open-source relational database for time-series and analytics.Try Timescale for free",https://www.timescale.com/blog/how-flowkey-solved-its-time-series-data-problem-by-migrating-from-aws-redshift-to-timescale/,64,"[0.01494413148611784, -0.009204450994729996, 0.06446197628974915, 0.010289503261446953, 0.048999983817338943, 0.025375431403517723, 0.012884997762739658, 0.016584040597081184, -0.035436827689409256, -0.02125716395676136, -0.007607697509229183, -0.04626268893480301, 0.009562024846673012, -0.01695394515991211, 0.0627850815653801, 0.013439854606986046, 0.0038439217023551464, -0.004216908477246761, -0.010234017856419086, 0.06539907306432724, -0.0019866940565407276, 0.011035476811230183, 0.008920857682824135, 0.029641659930348396, 0.008464641869068146, -0.02559737302362919, -0.024302707985043526, 0.03647255897521973, 0.038149457424879074, -0.05711321532726288, -0.01800200715661049, -0.038864605128765106, -0.037976834923028946, 0.051638633012771606, 0.04150325432419777, 0.01800200715661049, 0.01796501688659191, -0.004226156044751406, 0.05454854667186737, -0.0017863292014226317, -0.03223098814487457, -0.00631303247064352, 0.0365712009370327, 0.011238924227654934, -0.03245293349027634, -0.027718158438801765, -0.03462303802371025, -0.037557609379291534, 0.051490671932697296, 0.06751985102891922, -0.0007255517411977053, -0.03583139181137085, -0.03178710490465164, -0.039481114596128464, 0.03390789031982422, -0.02986360341310501, 0.02840864658355713, 0.014007040299475193, 0.008020756766200066, -0.028211364522576332, -0.016559379175305367, -0.048975322395563126, 0.027693497017025948, 0.03171312436461449, -0.03269953653216362, -0.005995531100779772, -0.015498987399041653, 0.02707699127495289, -0.03060341067612171, 0.011910916306078434, 0.029641659930348396, 0.011972567066550255, 0.014179662801325321, -0.0028328499756753445, 0.029025152325630188, -0.08098436892032623, -0.0618479885160923, 0.035609450191259384, -0.006417838856577873, -0.025042517110705376, -0.0027095486875623465, 0.011645819060504436, -0.06559634953737259, 0.06258779764175415, 0.0031719289254397154, -0.05080018192529678, -0.024623293429613113, -0.01121426373720169, 0.012102033942937851, 0.005887642502784729, -0.000814559985883534, 0.03124457783997059, -0.0013039124896749854, 0.013489174656569958, 0.024167077615857124, 0.03906188905239105, -0.00528346560895443, 0.008446146734058857, -0.014709859155118465, 0.05573223903775215, 0.014228982850909233, -0.027545535936951637, -0.025301450863480568, 7.911037755548023e-06, -0.000407279992941767, -0.026287861168384552, 0.013785097748041153, -0.021824350580573082, 0.0067569175735116005, 0.00650414964184165, -0.07452337443828583, -0.021170852705836296, -0.037237025797367096, -0.03760693222284317, 0.027126310393214226, 0.0022672046907246113, 0.05178659409284592, -0.03462303802371025, 0.016534719616174698, -0.04892599955201149, -0.04507899656891823, 0.024475330486893654, -0.035634107887744904, 0.03178710490465164, 0.0023149840999394655, -0.02366154082119465, -0.005989366210997105, -0.02900049276649952, -0.05247708037495613, 0.02557271346449852, 0.03284749761223793, -0.030085545033216476, 0.02929641678929329, -0.007102161645889282, -0.01840890198945999, -0.024771254509687424, -0.04118267074227333, -0.009457218460738659, -0.02870456874370575, -0.015301705338060856, 0.043476078659296036, -0.03408051282167435, 0.01563461869955063, -0.010005909949541092, -0.004895066376775503, -0.017459480091929436, 0.0015443501761183143, 0.014487916603684425, -0.014327624812722206, -0.029222434386610985, 0.014426265843212605, -0.012126694433391094, -0.03792751580476761, 0.03938247263431549, 0.050898823887109756, -0.011238924227654934, 0.02796476148068905, 0.01902540773153305, -0.011134117841720581, -0.027027670294046402, 0.05341417342424393, 0.043204814195632935, -0.012471938505768776, 0.0012253078166395426, -0.0368424616754055, 0.012268491089344025, -0.04419122636318207, -0.0318610854446888, -0.0668293684720993, -0.009037993848323822, -0.018766475841403008, -0.05711321532726288, -0.014142672531306744, 0.03896324709057808, 0.029049813747406006, 0.004670041147619486, 0.01367412693798542, -0.05158931016921997, -0.011158778332173824, -0.027323594316840172, -0.04996173456311226, -0.01651006005704403, -0.0294443778693676, -0.030504770576953888, -0.02008580043911934, 0.017286857590079308, -0.06786509603261948, 0.011134117841720581, 0.03168846294283867, 0.05415398254990578, -0.05933263897895813, 0.0362999364733696, 0.018840456381440163, 0.022194255143404007, 0.021207842975854874, -0.05622544512152672, 0.029641659930348396, 0.03408051282167435, -0.03003622405230999, 0.03420381247997284, 0.0026478979270905256, 0.018655503168702126, -0.0031272321939468384, -0.03758227080106735, 0.026263201609253883, 0.01099232118576765, 0.0005741221830248833, 0.0027804470155388117, -0.052230481058359146, -0.036053333431482315, 0.0021207842510193586, 0.022354546934366226, 0.015807241201400757, -0.03923451155424118, -0.04103470966219902, -0.04359938204288483, -0.02663310617208481, -0.046607933938503265, -0.003957975190132856, -0.016090834513306618, 0.007052841130644083, 0.04996173456311226, -0.005881477613002062, -0.02675640769302845, 0.013143930584192276, 0.02734825387597084, -0.0016137072816491127, -0.013526164926588535, 0.0348203182220459, 0.008131728507578373, 0.027594856917858124, -0.0510961078107357, -0.013156261295080185, -0.04505433514714241, 0.03955509513616562, 0.0272249523550272, -0.006793907843530178, -0.048704057931900024, 0.015400346368551254, -0.026189221069216728, 0.012823347002267838, -0.011140283197164536, -0.003258239943534136, 0.04717512056231499, -0.008396826684474945, 0.017607441172003746, -0.046780556440353394, -0.06880219280719757, 0.013378203846514225, 0.09701355546712875, 0.02229289524257183, -0.002646356588229537, 0.011115622706711292, -0.00937707256525755, 0.019703565165400505, -0.047051820904016495, -0.024931546300649643, 0.014882480725646019, 0.02766883745789528, -0.02363688126206398, 0.040492184460163116, -0.05099746584892273, -0.009118139743804932, -0.003384623909369111, -0.02692902833223343, -0.012687715701758862, 0.02885253168642521, -0.05617612600326538, 0.025375431403517723, -0.0009663748205639422, 0.04027024284005165, 0.006682936567813158, 0.016855303198099136, -0.07141617685556412, -0.002036014571785927, -0.03348866477608681, -0.004910478834062815, -0.036497220396995544, 0.016325106844305992, -0.03356264531612396, 0.009944259189069271, -0.01563461869955063, -0.01680598221719265, -0.021035220474004745, 0.0348203182220459, 0.000761386239901185, 0.029666319489479065, 0.002096123993396759, 0.03553546592593193, -0.03822343796491623, -0.014068691059947014, 0.023106684908270836, 0.020924249663949013, -0.04177451878786087, 0.006405508611351252, 0.02140512503683567, 0.01085052452981472, -0.009124305099248886, -0.022551828995347023, -0.024869894608855247, 0.02109687216579914, -0.027027670294046402, 0.01766909286379814, -0.05020833760499954, 0.0030362973921000957, 0.020887259393930435, -0.008809885941445827, -0.02154075726866722, 0.030110204592347145, -0.004337127320468426, -0.004808755125850439, -0.011695139110088348, 0.01590588316321373, -0.015351026318967342, 0.014438595622777939, -0.0079652713611722, 0.034721679985523224, 0.01665802113711834, 0.004864240996539593, -0.047471046447753906, -0.028433306142687798, -0.08404224365949631, -0.00598011864349246, -0.0017339261248707771, 0.011066301725804806, -0.024154746904969215, 0.05469650775194168, -0.01752113178372383, 0.013822088949382305, -0.02276144176721573, -0.0011189603246748447, -0.049443867057561874, 0.00431554950773716, 0.06170002743601799, 0.013217912055552006, -0.05232911929488182, 0.04152791574597359, -0.018544532358646393, -0.014993452467024326, 0.02019677124917507, -0.022675130516290665, -0.04064014554023743, -0.06821034103631973, 0.01918569952249527, 0.023119015619158745, 0.041552577167749405, 0.00661512091755867, -0.019826866686344147, -0.01919803023338318, -0.02038172446191311, -0.06727325171232224, 0.0014919470995664597, -0.012724705971777439, -0.024278048425912857, -0.035436827689409256, -0.007675513159483671, 0.018211618065834045, -0.015844231471419334, -0.0535128153860569, -0.012650725431740284, -0.016830643638968468, -0.0017878705402836204, 0.0529702864587307, -0.023156005889177322, 0.03228031098842621, 0.0006585066439583898, -0.01992550864815712, -0.0326748751103878, -0.006417838856577873, -0.040664806962013245, 0.023414937779307365, -0.008957847952842712, -0.01752113178372383, -0.01606617495417595, -0.06120682135224342, 0.002012895653024316, 0.054055340588092804, 0.028014080598950386, 0.02991292253136635, 0.040072958916425705, 0.007706338539719582, 0.0008369083516299725, 0.00650414964184165, -0.01427830383181572, 0.027915440499782562, 0.03134321793913841, -0.02007346972823143, 0.026189221069216728, -0.020542016252875328, -0.010801203548908234, 0.03864266350865364, -0.006929539609700441, 0.017188217490911484, 0.004028873518109322, -0.009506539441645145, -0.00988260842859745, 0.011954071931540966, 0.030652731657028198, 0.050035715103149414, -0.015560638159513474, 0.011004650965332985, -0.01681831292808056, -0.0260165985673666, -0.02410542592406273, 0.007996096275746822, 0.03866732493042946, -0.0008661924512125552, -0.006454829126596451, -0.016534719616174698, -0.0022487095557153225, -0.07309307903051376, -0.02572067454457283, 0.022243576124310493, -0.012798686511814594, 0.00164607388433069, -0.03736032918095589, -0.042317043989896774, 0.05602816119790077, 0.01757045090198517, 0.04922192543745041, -0.01004290021955967, -0.019703565165400505, 0.010943000204861164, -0.007737163919955492, -0.012416452169418335, 0.047791630029678345, 0.04500501602888107, 0.02572067454457283, -0.028901850804686546, -0.033685944974422455, -0.030677391216158867, -0.009185954928398132, 0.03639857843518257, -0.033957209438085556, 0.004602225497364998, -0.01858152262866497, 0.052378442138433456, -0.021010560914874077, 0.05341417342424393, 0.032625555992126465, -0.020615996792912483, 0.03195972740650177, -0.002966940402984619, 0.0012021887814626098, 0.01724986732006073, -0.0215777475386858, -0.014833159744739532, -0.021935321390628815, -0.03506692126393318, 0.005301960743963718, 0.044955696910619736, -0.057902343571186066, -0.020270751789212227, 0.012521258555352688, -0.044092584401369095, -0.031121276319026947, -0.009031828492879868, 0.0007417351007461548, 0.0031333970837295055, -0.003085617907345295, -0.03622595593333244, 0.011423876509070396, -0.04298287257552147, -0.011158778332173824, 0.04239102452993393, -0.06737188994884491, 0.02678106725215912, 0.019247351214289665, -0.014265974052250385, -0.02527678944170475, 0.035634107887744904, 0.05158931016921997, -0.02123250439763069, 0.009118139743804932, -0.0505535788834095, 0.012058878317475319, 0.043056853115558624, -0.01813763752579689, 0.01782938465476036, 0.002301112748682499, 0.018939096480607986, -0.016127824783325195, 0.007379589602351189, 0.08300650864839554, 0.006276042200624943, 0.04744638502597809, 0.027150971814990044, -0.015992192551493645, -0.008057747036218643, 0.0038315914571285248, -0.015104423277080059, 0.012909658253192902, 0.02737291343510151, -0.012515093199908733, -0.009617510251700878, -0.008094738237559795, -0.08315447717905045, -0.0101846968755126, 0.0033568809740245342, -0.03208302706480026, -0.024499991908669472, -0.00980246253311634, -0.006226721219718456, 0.046583276242017746, -0.03373526781797409, 0.014044031500816345, -0.02246551774442196, -0.03139254078269005, 0.011861596256494522, -0.018482882529497147, 0.007521386258304119, -0.007650852669030428, 0.04411724582314491, 0.00650414964184165, -0.02826068364083767, 0.012995969504117966, -0.019382981583476067, -0.002069922396913171, -0.03269953653216362, -0.01153484731912613, -0.00899483822286129, -0.0041768355295062065, -0.038716644048690796, -0.015708601102232933, -0.004078194499015808, -0.009592849761247635, -0.030085545033216476, -0.033390022814273834, 0.006331527605652809, 0.0031595986802130938, -0.009198285639286041, -0.022786101326346397, 0.011288244277238846, 0.006174318492412567, -0.05800098553299904, -0.0011890879832208157, -0.025375431403517723, -0.02692902833223343, -0.025819316506385803, 0.03807547688484192, 0.014438595622777939, 0.046040747314691544, 0.013402863405644894, 0.040936071425676346, -0.012114363722503185, -0.035288866609334946, -0.03425313159823418, -0.012687715701758862, -0.014130341820418835, 0.05972720682621002, 0.022194255143404007, -0.019210360944271088, 0.01622646674513817, 0.0014626630581915379, 0.014993452467024326, -0.002912995871156454, 0.014981121756136417, -0.006479489151388407, 0.012385627254843712, 0.005462252534925938, -0.02052968554198742, 0.008304350078105927, 0.010690232738852501, -0.005730433389544487, -0.02186134085059166, 0.004081276711076498, 0.0017308435635641217, -0.042588308453559875, -0.05341417342424393, -0.003002389334142208, -0.004105937201529741, 0.004611473064869642, -0.002556963125243783, -0.007379589602351189, -0.013637136667966843, 0.02466028369963169, -0.04056616500020027, -0.028753889724612236, 0.010653242468833923, -0.0044450159184634686, -0.008421486243605614, -0.007996096275746822, -0.03375992551445961, 0.027594856917858124, -0.05129338800907135, 0.013698787428438663, 0.040516845881938934, 0.016559379175305367, 0.04059082642197609, -0.04088674858212471, 0.01048678532242775, -0.0032274145632982254, -0.019272010773420334, -0.023760182783007622, 0.036349255591630936, -0.013883739709854126, 0.01929667219519615, 0.016177145764231682, -0.019124049693346024, 0.02082560956478119, 0.016411418095231056, 0.016460739076137543, -0.009685326367616653, -0.019407643005251884, 0.016867633908987045, 0.0237971730530262, -0.00705900602042675, 0.005764340981841087, 0.006738422438502312, -0.014512576162815094, 0.013402863405644894, -0.004210743121802807, 0.009796297177672386, -0.06653344631195068, 0.0015582216437906027, 0.01367412693798542, 0.0013062243815511465, 0.04162655770778656, 0.025745335966348648, -0.02927175536751747, -0.03600401431322098, -0.011578002944588661, -0.023994455114006996, -0.04623803123831749, 0.02705232985317707, 0.012034217827022076, -0.02749621495604515, -0.04537491872906685, -0.008896197192370892, 0.013994710519909859, 0.01796501688659191, -0.01649772934615612, 0.04313083365559578, -0.00041652758955024183, 0.0066891019232571125, 0.02454931102693081, 0.01680598221719265, 0.04744638502597809, 0.019136380404233932, -0.020899590104818344, 0.039012566208839417, 0.002162398537620902, -0.015844231471419334, -0.011121788062155247, 0.02242852747440338, -0.020431043580174446, 0.02167638950049877, 0.005921550560742617, -0.003329138271510601, 0.005560894031077623, -0.013316553086042404, -0.009531199000775814, 0.048679400235414505, 0.02557271346449852, 0.014191992580890656, -0.015807241201400757, -0.02483290433883667, 0.0008823757525533438, 0.025646694004535675, 0.01844589225947857, -0.008341340348124504, 0.0023827997501939535, -0.011485526338219643, 0.009543529711663723, -0.02499319612979889, 0.012971309013664722, 0.007515221368521452, 0.020480364561080933, 0.0011651983950287104, 0.0446351133286953, -0.006356188096106052, 0.01605384424328804, 0.02172570861876011, 0.01383441872894764, 0.025671355426311493, -0.007558376528322697, 0.010221687145531178, -0.008076243102550507, 0.034549057483673096, 0.04414190724492073, -0.03403118997812271, -0.007657018024474382, -0.02986360341310501, 0.01858152262866497, 0.00883454643189907, -0.027323594316840172, -0.020258422940969467, 0.01093067042529583, 0.01798967644572258, 0.027298932895064354, -0.010573096573352814, 0.016719670966267586, -0.0005872229812666774, -0.04325413703918457, -0.021959982812404633, -0.005326621234416962, 0.028137382119894028, 0.007231628056615591, -0.02362455055117607, -0.02156541682779789, 0.008211874403059483, -0.008063912391662598, -0.06219323351979256, -0.008569448255002499, 0.0011775285238400102, 0.03124457783997059, 0.05218115821480751, -0.020739298313856125, 0.012558248825371265, -0.018939096480607986, -0.03506692126393318, -0.003090241691097617, -0.03674381971359253, 0.022625809535384178, -0.01724986732006073, -0.01813763752579689, -0.026805726811289787, 0.004975212272256613, -0.04061548784375191, 0.022033963352441788, -0.03748362883925438, 0.013698787428438663, -0.03124457783997059, -0.034721679985523224, -0.00631303247064352, -0.007983766496181488, 0.012884997762739658, 0.01602918468415737, -0.0019866940565407276, -0.018963757902383804, 0.018544532358646393, 0.013267232105135918, 0.03938247263431549, 0.009605180472135544, 0.008569448255002499, -0.036645181477069855, -0.01560995914041996, 0.0032983128912746906, -0.02752087637782097, -0.01757045090198517, 0.002162398537620902, 0.03716304525732994, -0.008452312089502811, 0.003948727622628212, 0.014981121756136417, -0.049887754023075104, 0.02288474328815937, 0.04253898933529854, 0.014155002310872078, 0.000537517131306231, 0.0024814410135149956, 0.008797556161880493, -0.005650287494063377, -0.018088318407535553, -0.020295413210988045, -0.04061548784375191, -0.028038742020726204, 0.028803210705518723, -7.691889186389744e-05, 0.022971052676439285, -0.008877702057361603, 0.04241568595170975, -0.007706338539719582, 0.015141413547098637, -0.02257648855447769, 0.02705232985317707, -0.026707086712121964, 0.025622034445405006, -0.022564159706234932, -0.05676797032356262, 0.003880911972373724, -0.02230522595345974, 0.007515221368521452, 0.010542270727455616, 0.05829690769314766, 0.0011544094886630774, -0.025622034445405006, 0.03990033641457558, 0.01383441872894764, -0.0294443778693676, 0.02646048367023468, 0.016534719616174698, -0.027446893975138664, -0.05533767491579056, 0.007897455245256424, -0.019000748172402382, 0.008544787764549255, -0.0054560876451432705, -0.01949395425617695, 0.0013278020778670907, -0.028457965701818466, -0.01046829018741846, 0.005539316218346357, 0.008766730315983295, 0.023156005889177322, -0.026287861168384552, -0.0049505517818033695, -0.05548563599586487, -0.011275914497673512, 0.035584788769483566, -0.011423876509070396, 0.01798967644572258, -0.004059698898345232, 0.01738549955189228, 0.014093351550400257, 0.005517738405615091, -0.030060885474085808, 0.003547998145222664, -0.06623751670122147, -0.026361841708421707, 0.004004213493317366, -0.002791235689073801, 0.022181924432516098, -0.01842123083770275, 0.011312904767692089, 0.04024558141827583, 0.03149118274450302, -0.006047934293746948, 0.001575946225784719, -0.0021038304548710585, 0.03967839479446411, 0.030406128615140915, -0.04552288353443146, -0.01678132265806198, 0.03659585863351822, 0.008982508443295956, -0.010671737603843212, 0.04283491149544716, -0.011578002944588661, -0.014376944862306118, -0.009777802042663097, -0.026583785191178322, 0.05301960930228233, -0.014376944862306118, 0.019530944526195526, -0.021738039329648018, -0.0027557865250855684, -0.04115801304578781, -0.02643582411110401, 0.04742172360420227, -0.026090579107403755, 0.0404675230383873, -0.00024660283816047013, -0.008421486243605614, 0.015856562182307243, -0.010295667685568333, 0.012379461899399757, 0.026953689754009247, 0.03403118997812271, 0.021910661831498146, 0.017582781612873077, -0.014611217193305492, 0.009722316637635231, -0.030504770576953888, -0.03346400335431099, 0.026090579107403755, 0.0019373734248802066, -0.0006770018371753395, 0.007823474705219269, 0.01648539863526821, -0.034869641065597534, -0.037828873842954636, 0.013353543356060982, 0.004762517288327217, 0.0225888192653656, -0.015129083767533302, 0.0005718102911487222, 0.017792394384741783, 0.06002312898635864, 0.05326621234416962, 0.004109019413590431, 0.017175886780023575, -0.011343729682266712, 0.004414190538227558, -0.008674254640936852, 0.0028143548406660557, -0.035288866609334946, -0.008859206922352314, 0.006602790672332048, -0.07121890038251877, 0.011627322994172573, -0.006627451162785292, -0.01827326975762844, -0.002968481509014964, 0.021491436287760735, 0.0027958594728261232, 0.011781450361013412, 0.043032195419073105, -0.002863675355911255, -0.019839197397232056, 0.011904751881957054, 0.012527423910796642, 0.023723192512989044, 0.004762517288327217, -0.004321714397519827, -0.014808500185608864, -0.00034177611814811826, 0.007447405252605677, -0.02616455964744091, 0.025449411943554878, 0.030578751116991043, 0.031762443482875824, -0.03183642402291298, 0.03556012734770775, -0.012737035751342773, -0.002667934400960803, 0.013624805957078934, -0.006719927303493023, 0.00672609219327569, -0.005924632772803307, -0.016386758536100388, -0.014191992580890656, 0.012237665243446827, 0.010012075304985046, -0.0016198722878471017, 0.005773588549345732, -0.01663336157798767, 0.014796169474720955, -0.0046392157673835754, -0.03773023188114166, 0.04626268893480301, 0.001236867276020348, 0.02495620585978031, 0.025474071502685547, -0.002675640629604459, -0.015129083767533302, -0.03109661675989628, 0.014796169474720955, 0.0657443106174469, 0.003853169269859791, 0.04771764576435089, 0.011226593516767025, -0.03257623314857483, 0.026534464210271835, 0.011171108111739159, 0.0017031007446348667, 0.03060341067612171, -0.0032397445756942034, 0.004016543738543987, -0.010209357365965843, -0.018482882529497147, 0.03425313159823418, 0.001347838551737368, -0.015351026318967342, -0.005311208311468363, -0.018680164590477943, 0.015067433007061481, 0.03773023188114166, -0.025301450863480568, -0.03622595593333244, 0.033217400312423706, 0.030529430136084557, 0.05459786579012871, -0.04285957291722298, -0.006174318492412567, -0.018976088613271713, -0.01137455552816391, 0.005089265760034323, 0.03348866477608681, 0.04172519966959953, 0.011362225748598576, 0.015671608969569206, -0.030578751116991043, -0.009340082295238972, 0.020603666082024574, -0.006223639007657766, -0.002368928398936987, -0.007237792946398258, 0.05824758857488632, 0.014771509915590286, 0.005637957248836756, 0.023390278220176697, 0.009709986858069897, 0.02156541682779789, 0.009931929409503937, -0.014093351550400257, 0.012379461899399757, -0.02392047457396984, 0.00863109901547432, 0.0013871409464627504, 0.045251619070768356, 0.020874928683042526, -0.012502763420343399, -0.02853194810450077, 0.01917337067425251, -0.03304477781057358, -0.017656762152910233, 0.014956461265683174, 0.006020191591233015, 0.022921733558177948, 0.008489302359521389, -0.010795039124786854, -0.017052585259079933, 0.028926512226462364, 0.013291892595589161, -0.012176014482975006, 0.02244085818529129, -0.028877191245555878, 0.012083538807928562, 0.029247095808386803, -0.015461997129023075, 0.007675513159483671, 0.044511809945106506, 0.005560894031077623, 0.03331604227423668, -0.01383441872894764, 0.019432302564382553, -0.009512703865766525, 0.013526164926588535, -0.011201933957636356, 0.01010455098003149, 0.011843101121485233, 0.015437337569892406, 0.014623547904193401, 0.004250816069543362, -0.0035233378876000643, -0.007225462701171637, -0.022095613181591034, -0.02246551774442196, -0.055978842079639435, 0.007132987026125193, -0.02692902833223343, 0.0549924299120903, -0.02035706304013729, -0.005903055425733328, -0.016547050327062607, 0.0072624534368515015, -0.0020899588707834482, 0.010314163751900196, 0.02604125812649727, 0.012650725431740284, 0.026855047792196274, 0.02124483324587345, 0.030554089695215225, -0.0018356498330831528, 0.0073734247125685215, 0.021195512264966965, -0.014598887413740158, 0.017484141513705254, -0.0030039306730031967, -0.03787819296121597, -0.03644789755344391, 0.008680419996380806, 0.03260089457035065, 0.013304222375154495, 0.04056616500020027, -0.00542526226490736, 0.016140155494213104, 0.014907141216099262, 0.007022015750408173, 0.02273678034543991, 0.015314036048948765, 0.011195768602192402, 0.017619771882891655, -0.004121349658817053, -0.0066891019232571125, 0.003313725581392646, 0.0225888192653656, 0.04061548784375191, -0.002117701806128025, 0.002729585161432624, -0.014302964322268963, 0.0006222868105396628, -0.015203064307570457, -0.021158521994948387, 0.018939096480607986, 0.024610962718725204, -0.006855558604001999, 0.04680521786212921, 0.011781450361013412, -0.017336178570985794, -0.006812402978539467, 0.022810760885477066, -0.0380508154630661, -0.020998230203986168, 0.0012915823608636856, 0.00475943461060524, -0.027890779078006744, -0.009543529711663723, -0.003233579685911536, -0.019247351214289665, 0.027866119518876076, -0.01752113178372383, 0.010714893229305744, -0.01975288614630699, -0.002912995871156454, -0.006590460427105427, -0.02424105815589428, 0.03849470242857933, -0.023242317140102386, 0.027471555396914482, -0.02366154082119465, 0.011695139110088348, -0.008674254640936852, 0.033537983894348145, -0.01902540773153305, -0.009574354626238346, 0.028285345062613487, -0.0018418148392811418, 0.02023376151919365, -0.011633488349616528, -0.0022995714098215103, -0.0012884997995570302, 0.0007617715746164322, -0.005927715450525284, -0.007465900853276253, 0.0006558094173669815, -0.016732001677155495, 0.0022548746783286333, 0.007194637320935726, 0.060861580073833466, -0.002691053319722414, 0.0017940355464816093, 0.011935576796531677, 0.03499294072389603, 0.004451181273907423, 0.035313524305820465, 0.009753141552209854, -0.006732257083058357, 0.01933366246521473, 0.05785302445292473, -0.028162043541669846, 0.048358816653490067, 0.0231929961591959, 0.0072624534368515015, -0.011442371644079685, 0.027989421039819717, -0.018248610198497772, -0.03911120817065239, -0.017434820532798767, 0.007231628056615591, -0.019210360944271088, 0.005021450109779835, 0.015042772516608238, 0.0074843959882855415, 0.015301705338060856, -0.012811017222702503, 0.004808755125850439, -0.02392047457396984, -0.020640656352043152, 0.02406843565404415, 0.007385754957795143, -0.003474017372354865, 0.024302707985043526, 0.01856919378042221, 0.020406384021043777, 0.03790285438299179, 0.05563359707593918, 0.019888518378138542, -0.030948655679821968, 0.025326110422611237, -0.008859206922352314, 0.007626192644238472, -0.01860618405044079, 0.0011821523075923324, -0.012052712962031364, 0.04389530420303345, -0.010918340645730495, -0.004161422606557608, -0.034549057483673096, 0.014327624812722206, 0.016867633908987045, 0.001673816703259945, 0.020455705001950264, 0.004990624729543924, 0.025067176669836044, -0.0038654992822557688, 0.024352028965950012, 0.02350124903023243, -0.01932133175432682, -0.024154746904969215, 0.003023967146873474, -0.032625555992126465, 0.02927175536751747, -0.02350124903023243, 0.0018526037456467748, 0.0027372913900762796, 0.012521258555352688, -0.023686202242970467, 0.024586301296949387, 0.047051820904016495, -0.0065781306475400925, -0.014302964322268963, -0.019087059423327446, 0.007539881393313408, 0.013686456717550755, -0.002919160993769765, -0.007669347804039717, -0.023686202242970467, 0.011337565258145332, -0.02303270436823368, -0.013020629063248634, 0.017027925699949265, -0.01692928373813629, -0.02351357974112034, 0.014364615082740784, -0.02124483324587345, -0.0163374375551939, 0.01692928373813629, -0.010375813581049442, -0.021368134766817093, 0.012157519347965717, 0.014931801706552505, 0.053463492542505264, 0.012126694433391094, 0.03033214807510376, 0.017311519011855125, -0.01932133175432682, 0.01766909286379814, -0.023131344467401505, -0.013143930584192276, -0.01903773844242096, -0.008396826684474945, 0.019826866686344147, -0.03151584044098854, -0.001690770615823567, -0.010425134561955929, 0.01647306978702545, 0.02277377061545849, 0.01456189714372158, 0.002524596406146884, 0.042711611837148666, 0.014586557634174824, 0.020098131150007248, 0.02351357974112034, 0.025646694004535675, -0.03109661675989628, -0.01768142357468605, 0.03319274261593819, -0.027446893975138664, 0.029764961451292038, -0.025498732924461365, -0.04552288353443146, -0.018038997426629066, 0.0169416144490242, 0.014413935132324696, 0.005690360441803932, -0.009629840031266212, 0.020998230203986168, 0.010240182280540466, 0.02215726487338543, 0.0007459735497832298, -0.0027280438225716352, -0.02484523504972458, -0.004136762581765652, -0.00042616052087396383, -0.03393254801630974, 0.034105170518159866, -0.001172904740087688, -0.023562900722026825, 0.04357472062110901, 0.00498137716203928, -0.0035048427525907755, 0.003130314638838172, -0.02366154082119465, -0.04754502698779106, -0.017656762152910233, -0.007558376528322697, 0.014401605352759361, 0.030677391216158867, 0.006350022740662098, 0.012108199298381805, 0.026213880628347397, 0.01901307888329029, -0.02392047457396984, -0.005825991742312908, -0.012330141849815845, 0.010591591708362103, 0.0021454445086419582, -0.015178403817117214, 0.000786817166954279, -0.0075090560130774975, 0.011602663435041904, 0.04330345615744591, -0.029666319489479065, 0.03923451155424118, -0.007206967566162348, 0.0027665754314512014, 0.0027095486875623465, 0.04456113278865814, -0.0005644892808049917, 0.03420381247997284, 0.002623237669467926, -0.006303784903138876, -0.01678132265806198, 0.04562152177095413, 0.009457218460738659, -0.024450670927762985, 0.03284749761223793, -0.00794677622616291, -0.003695959923788905, 0.01844589225947857, -0.00899483822286129, 0.024290379136800766, 0.025375431403517723, 0.01796501688659191, -0.020850269123911858, -0.013587815687060356, 0.00012465001782402396, 0.025967277586460114, 0.03464769572019577, 0.014327624812722206, -0.027446893975138664, 0.019358322024345398, 0.00456831743940711, -0.0024197902530431747, 0.009494208730757236, 0.0039333151653409, 0.009968919679522514, -0.007638522423803806, -0.025227470323443413, 0.014981121756136417, 0.0042446511797606945, -0.0006812403444200754, -0.021898331120610237, -0.02215726487338543, 0.036497220396995544, 0.01888977736234665, -0.022095613181591034, 0.012219170108437538, -0.004925891291350126, 0.014870150946080685, -0.01829792931675911, -0.030110204592347145, 0.012909658253192902, 0.008193379268050194, 0.0053235385566949844, 0.008359835483133793, 0.009506539441645145, -0.006596625782549381, 0.03869198262691498, 0.01153484731912613, -0.0012653807643800974, 0.003825426334515214, -0.015363356098532677, -0.0175457913428545, -0.005844486877322197, -0.017299188300967216, 0.037409648299217224, -0.004349457565695047, 0.03210768848657608, 0.004035038873553276, 1.9891986084985547e-05, 0.02377251349389553, 0.006479489151388407, -0.04399394616484642, 0.01707724668085575, -0.028630588203668594, -0.0074412403628230095, -0.028581267222762108, -0.0013216370716691017, 0.010536106303334236, -0.0055917189456522465, 0.004626885522156954, 0.01647306978702545, -0.012700045481324196, -0.013501505367457867, 0.029617000371217728, -0.008982508443295956, -0.022823091596364975, 0.01591821201145649, 0.016904624179005623, -0.015178403817117214, 0.015215395018458366, 0.05065222084522247, 0.025017857551574707, -0.05020833760499954, 0.02405610680580139, -0.004238486289978027, -0.0016815230483189225, -0.039037227630615234, -0.013489174656569958, -0.0074843959882855415, 0.011997227557003498, -0.022181924432516098, 0.005604049190878868, 0.015646949410438538, -0.012299316003918648, -0.019802207127213478, 0.03736032918095589, 0.0019080893835052848, -0.009512703865766525, 0.0036836296785622835, -0.015412677079439163, 0.003230497008189559, 0.03686712309718132, -0.021947652101516724, -0.022514838725328445, -0.016263457015156746, 0.0043772002682089806, -0.014771509915590286, 0.031589820981025696, 0.032033707946538925, 0.01739783026278019, 0.00802692212164402, -0.004189165774732828, -0.009352412074804306, -0.02648514322936535, 0.01636209711432457, 0.004090524278581142, -0.01696627400815487, -0.037680912762880325, 0.007786484435200691, 0.006436333991587162, 0.02366154082119465, 0.0007906703394837677, 0.02572067454457283, -0.013353543356060982, -0.03289681673049927, 0.014302964322268963, -0.04088674858212471, 0.019703565165400505, 0.002840556437149644, 0.023377947509288788, -0.04574482515454292, -0.020899590104818344, 0.046928517520427704, 0.00047162792179733515, 0.022268235683441162, 0.009586685337126255, -0.005866064690053463, -0.05371009558439255, -0.020098131150007248, 0.014549567364156246, -0.0032644050661474466, 0.01099232118576765, -0.01681831292808056, -0.008624933660030365, -0.00905648898333311, -0.0598258450627327, -0.003751445561647415, 0.0008191837696358562, -0.006608956027776003, -0.012663055211305618, -0.0353628471493721, -0.010240182280540466, 0.0014326083473861217, 0.019148709252476692, 0.027101650834083557, 0.0041336799040436745, -0.004854993429034948, 0.030677391216158867, 0.009001003578305244, -0.014487916603684425, 0.04549822211265564, -0.008513962849974632, -0.014586557634174824, 0.014956461265683174, 0.008236534893512726, -0.010505280457437038, -0.0062298038974404335, 0.02110920287668705, 0.044067926704883575, 0.009931929409503937, 0.026213880628347397, -0.003591153770685196, 0.0030547925271093845, 0.021738039329648018, 0.007743328809738159, 0.008384495973587036, -0.048235513269901276, 0.01618947647511959, -0.006602790672332048, 0.03015952557325363, 0.018470551818609238, -0.0009247605921700597, 0.005539316218346357, 0.024413680657744408, 0.005175577010959387, 0.0023704697377979755, -0.007022015750408173, 0.009746977128088474, 0.015437337569892406, 0.005693442653864622, 0.00572735071182251, 0.010973826050758362, -0.022835422307252884, 0.02050502598285675, 0.005893807392567396, 0.020542016252875328, -0.028655249625444412, 0.01786637492477894, -0.03417915105819702, 0.01173829473555088, 0.014463256113231182, -0.010079890489578247, -0.010252512991428375, -0.023266976699233055, 0.02468494325876236, -0.01726219803094864, 0.004195330664515495, -0.003168846247717738, 0.03612731397151947, 0.002413625130429864, 0.021935321390628815, 0.007922115735709667, 0.007576872128993273, -0.015116753056645393, 0.01692928373813629, 0.008544787764549255, -0.004657710902392864, -0.023266976699233055, 0.032921478152275085, 0.022379206493496895, 0.0046392157673835754, -0.03595469146966934, 0.0019142545061185956, 0.04811221361160278, -0.008951682597398758, 0.015178403817117214, 0.0003065196215175092, -0.034869641065597534, 0.02752087637782097, 0.036645181477069855, -0.02020910196006298, -0.009679161012172699, -0.030208846554160118, 0.01278635673224926, -0.02599193900823593, 0.004744022153317928, -0.02202163264155388, 0.0014857820933684707, -0.03385856747627258, -0.003874746849760413, 0.013402863405644894, -0.017607441172003746, -0.02067764662206173, -0.0009440264548175037, 0.015535978600382805, 0.013378203846514225, -0.004716278985142708, 0.022416196763515472, 0.0010627040173858404, 0.007712503429502249, 0.027718158438801765, -0.0010180072858929634]" -How United Manufacturing Hub Is Introducing Open Source to Manufacturing and Using Time-Series Data for Predictive Maintenance,"This is an installment of our “Community Member Spotlight” series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition, we speak with Jeremy Theocharis, co-founder and CTO ofUnited Manufacturing Hub, about how they are bringing open source to the world of manufacturing by combining information and operational tools and technologies in an open-source Helm chart for Kubernetes.The team uses TimescaleDB to store both relational and time-series data coming fromMQTTandKafkaand then visualizes it usingGrafanaand their own REST API. With the data, they can prevent and predict maintenance issues, analyze and optimize production losses such as changeovers or micro-stops and reduce resource consumption, and much more.About the CompanyWe believe that open source is the future: we live in a world where 100 percent of all supercomputers useLinux, 95 percent of all public cloud providers useKubernetes, and the Mars Helicopter, Ingenuity, usesf-prime.We are confident that open source will also find its place in manufacturing, and we were among the first to use it in this field, making us the experts.Our story goes back to 2016, when we had the pain of integrating and maintaining various costly Industrial IoT solutions (IIoT). Existing vendors focused only on the end result, which resulted in large-scale IIoT projects failing because they did not address the real challenges.After suffering for years, in 2021, we were fed up and decided to do something about it. Since then, all our products and services have been focused on efficiently integrating and operating large-scale IIoT infrastructures.About the TeamWe are a team of 11 people with different backgrounds, from mechanical engineering to business administration to cybersecurity.Me, personally? I am an IT nerd that learned programming at 14 and then studied Mechanical Engineering and Business Administration atRWTH Aachenin Germany. I did my internship first as a technical project manager in theDigital Capability Center Aachen, where I was responsible for the technical integration of various Industrial IoT solutions. I later did another internship at McKinsey & Company in Singapore and decided I needed a solid technical part in my future profession.I started my own business as a system integrator in the Industrial IoT sector, metChristianandAlex, and founded theUMH Systems GmbHtogether in 2021.About the ProjectUnited Manufacturing Hub's architectureTheUnited Manufacturing Hub(UMH)",https://www.timescale.com/blog/how-united-manufacturing-hub-is-introducing-open-source-to-manufacturing-and-using-time-series-data-for-predictive-maintenance/,508,"[-0.008383229374885559, 0.0046215238980948925, 0.050987228751182556, 0.012997588142752647, 0.03582576662302017, -0.0028015747666358948, -0.028660612180829048, 0.06414245069026947, -0.023258086293935776, -0.009379185736179352, 0.02032037451863289, -0.042847614735364914, -0.03854852542281151, -0.022068671882152557, 0.037287455052137375, 0.027313563972711563, -0.03447871655225754, -0.04720402881503105, -0.06259477883577347, 0.03393416479229927, 0.017182037234306335, 0.01711038500070572, 0.029577752575278282, 0.037373438477516174, -0.020435016602277756, -0.011521565727889538, -0.041013337671756744, 0.03894977271556854, -0.01934591308236122, -0.06288138031959534, -0.001215389114804566, -0.04181583225727081, -0.030007660388946533, 0.029248155653476715, 0.017482973635196686, 0.02335839904844761, 0.01784123107790947, -0.007967649959027767, 0.012933101505041122, 0.04493983834981918, -0.02387429028749466, -0.014817536808550358, 0.07440295070409775, 0.04806384816765785, -0.022498581558465958, -0.025608256459236145, -0.012073283083736897, -0.005216231569647789, 0.04181583225727081, -0.0010801468743011355, 0.02285683900117874, 0.03462202101945877, 0.010561435483396053, -0.030752837657928467, -0.023845629766583443, -0.06270942091941833, -0.0012718146899715066, 0.06293870508670807, -0.0065167066641151905, 0.01438046246767044, 0.015648694708943367, -0.06649261713027954, 0.02833101525902748, -0.0011285116197541356, -0.01174368616193533, -0.0312400683760643, 0.014688563533127308, 0.0014491522451862693, -0.010661748237907887, -0.0010111822048202157, 0.057063277810811996, 0.019403234124183655, 0.013692607171833515, -0.04453859105706215, 0.001030886429361999, -0.0597287155687809, -0.03628433495759964, 0.07337116450071335, -0.017998864874243736, 0.008526531979441643, -0.02305746264755726, -0.018844353035092354, -0.010267664678394794, -0.014559591189026833, -0.025780221447348595, -0.04981214553117752, -0.012266742065548897, -0.019030647352337837, -0.02798708714544773, -0.004205944947898388, -0.03966628760099411, 0.06958796828985214, 0.010153021663427353, 0.007774190977215767, 0.04359279200434685, 0.0033228397369384766, -0.019116628915071487, 0.02238393761217594, 0.009278872981667519, 0.0010470079723745584, -0.03238649293780327, -0.034507378935813904, 0.011163308285176754, 0.0021728326100856066, -0.0038082788232713938, -0.0323578305542469, 0.045083142817020416, 0.02477709949016571, 0.031841941177845, 0.006040223874151707, -0.09515323489904404, -0.022584563121199608, -0.057837117463350296, 0.033103007823228836, -0.012524687685072422, 0.0024128654040396214, -0.035883087664842606, -0.02473410777747631, 0.033131666481494904, -0.013513478450477123, -0.015233115293085575, -0.04270431399345398, 0.01091252826154232, -0.014330306090414524, -0.009350525215268135, -0.031555335968732834, -0.043793413788080215, -0.008548027835786343, -0.06242281198501587, -0.0001633430947549641, 0.03548183664679527, -0.026854993775486946, 0.020649971440434456, -0.030265606939792633, 0.010676078498363495, -0.015720345079898834, -0.025393301621079445, -0.002531090285629034, 0.025622587651014328, -0.010196012444794178, -0.01395055279135704, -0.043621450662612915, -0.006785399746149778, -0.006735243834555149, -0.016365209594368935, -0.012223751284182072, -0.012546182610094547, 0.02361634373664856, -0.0063841515220701694, 0.008755817078053951, -0.02884690649807453, -0.031010782346129417, -0.049611520022153854, -0.008268586359918118, 0.02499205432832241, 0.02292848937213421, 0.03072417713701725, 0.04984080418944359, -0.011700695380568504, -0.058209702372550964, 0.03439273312687874, 0.055859532207250595, -0.001453630393370986, -0.00504785031080246, -0.0061226231046020985, -0.005474176723510027, -0.009730277583003044, -0.035883087664842606, -0.06712315231561661, -0.021036889404058456, -0.0650595873594284, -0.047519296407699585, -0.016193246468901634, 0.04800652712583542, 0.03533853590488434, 0.016336549073457718, -0.013377340510487556, -0.03958030417561531, 0.002676184754818678, -0.025350311771035194, -0.05608882009983063, 0.011901319026947021, -0.04485385864973068, -0.013570799492299557, -0.045369748026132584, 0.010439627803862095, -0.039179056882858276, -0.011392593383789062, -0.019861804321408272, 0.05313677713274956, -0.05405391380190849, 0.0654035210609436, -0.003772453172132373, -0.013592295348644257, 0.07537741214036942, -0.015562712214887142, 0.04611492529511452, -3.0843744752928615e-05, 0.017139045521616936, 0.02079327404499054, 0.016150254756212234, 0.04706072434782982, 0.07337116450071335, -0.03393416479229927, 0.018672388046979904, -0.009730277583003044, -0.006484463345259428, -0.004496133420616388, -0.049267593771219254, -0.011729355901479721, -0.009121240116655827, 0.023501701653003693, 0.026038166135549545, 0.044137343764305115, 0.007308456115424633, -0.002529299119487405, -0.06832689791917801, 0.024461831897497177, -0.0026994713116437197, 0.002020573243498802, -0.029377127066254616, 0.07732633501291275, 0.0064271423034369946, -0.023759648203849792, -0.013183881528675556, 0.02596651390194893, 0.02678334154188633, -0.025708569213747978, 0.05027071386575699, 0.023859959095716476, -0.013921892270445824, -0.04714670777320862, -0.0001979373482754454, -0.04720402881503105, -0.019403234124183655, -0.011643373407423496, 0.02314344421029091, -0.03470800071954727, 0.015204454772174358, 0.00554224569350481, -0.0031795366667211056, -0.011843997985124588, 0.03731611743569374, 0.008497871458530426, 0.020033767446875572, -0.006255178712308407, -0.04542706906795502, -0.006387733854353428, 0.008626844733953476, 0.027055617421865463, 0.015605702996253967, -0.0028535223100334406, -0.014960839413106441, -0.0011303029023110867, 0.001101642264984548, -0.004087720066308975, -0.04548439010977745, 0.03169863671064377, 0.0032261102460324764, 0.0011132856598123908, 0.016752127557992935, -0.057149261236190796, -0.03657094016671181, 0.02186804637312889, -0.03674290329217911, 0.054197218269109726, -0.016422530636191368, -0.01762627623975277, 0.009866415522992611, -0.03178462013602257, 0.0334755964577198, 0.023114783689379692, 0.022484250366687775, -0.014745885506272316, -0.04376475512981415, -0.03273041918873787, -0.020263053476810455, 0.009508158080279827, 0.004564202390611172, -0.009895076043903828, 0.018328461796045303, -0.012653660029172897, 0.008626844733953476, 0.0056031495332717896, 0.044481270015239716, 0.028861235827207565, 0.028216373175382614, 0.030494891107082367, -0.022054340690374374, -0.02712726965546608, 0.015347758308053017, 0.013613791204988956, 0.03877780959010124, 0.0007886146777309477, 0.015562712214887142, 0.017139045521616936, -0.0015378210227936506, 0.010690408758819103, -0.025522274896502495, -0.016752127557992935, 0.013248368166387081, -0.033389613032341, -0.00945800170302391, -0.018457435071468353, 0.0011938936077058315, -0.024934733286499977, -0.009228717535734177, -0.008075127378106117, 0.009515323676168919, 0.01174368616193533, -0.03573978319764137, -0.02656838856637478, -0.008060797117650509, 0.03393416479229927, -0.025493614375591278, 0.017898552119731903, 0.05669069290161133, 0.001572751090861857, -0.012073283083736897, -0.06391316652297974, -0.030236946418881416, -0.04545573145151138, 0.005527915433049202, -0.04072672873735428, 0.04215976223349571, 0.009515323676168919, 0.05382462963461876, -0.018428774550557137, -0.008870459161698818, -0.004044728819280863, -0.0034589776769280434, -0.020635640248656273, 0.015376418828964233, -0.03594040870666504, 0.0006936764111742377, -0.007061258424073458, 0.01702440343797207, 0.0022140322253108025, 0.010353646241128445, -0.03556782007217407, 0.000575003563426435, -0.037803348153829575, -0.07692508399486542, -0.0077168699353933334, 0.06288138031959534, -0.01706739515066147, -0.015519721433520317, -0.03995289281010628, 0.009228717535734177, 0.004044728819280863, -0.04104199633002281, -0.0019310087664052844, -0.010274829342961311, -0.0303802490234375, -0.010926858521997929, -0.011600382626056671, 0.015304766595363617, 0.02550794556736946, 0.002661854261532426, -0.005753617733716965, -0.0320998840034008, 0.0959557294845581, 0.0014410914154723287, -0.01852908544242382, 0.027585839852690697, 0.03029426746070385, 0.002253440674394369, 0.02529299072921276, -0.038491200655698776, -0.040239498019218445, 0.009629965759813786, -0.032243188470602036, -0.00717948330566287, -0.016408201307058334, -0.08552327007055283, 0.02118019200861454, 0.0590408630669117, -0.009766103699803352, 0.006172779481858015, 0.07256866991519928, 0.08237060159444809, 0.007888833992183208, 0.00813244841992855, -0.010403802618384361, 0.008762982673943043, 0.012066117487847805, 0.01895899511873722, 0.03126872703433037, -0.040583427995443344, -0.014702893793582916, 0.0008629531366750598, -0.061161745339632034, -0.015562712214887142, -0.0033604567870497704, -0.01119196880608797, -0.0161359254270792, 0.010704739019274712, 0.029190832749009132, 0.041529227048158646, 0.002244484145194292, 0.021624432876706123, 0.006968111265450716, -0.05717791989445686, 0.042417705059051514, -0.0011007466819137335, -0.008060797117650509, -0.021624432876706123, 0.03361889719963074, -0.04849375784397125, -0.003018320770934224, -0.03791799023747444, -0.044997163116931915, 0.03614103049039841, -0.0065704453736543655, -0.007129327394068241, -0.007358612027019262, -0.025737229734659195, 0.026711691170930862, 0.02191103808581829, 0.017640607431530952, -0.04860839992761612, 0.008655505254864693, 0.006677922792732716, -0.0042704311199486256, -0.022570231929421425, -0.0032332753762602806, 0.04012485593557358, -0.020248722285032272, 0.010790720582008362, -0.07296992093324661, -0.0309821218252182, 0.008017806336283684, 0.010425297543406487, 0.008805973455309868, -0.04539841040968895, 0.0007720452267676592, 0.016752127557992935, -0.01306923944503069, 0.03419211134314537, 0.021194523200392723, 0.01377858966588974, 0.010081370361149311, 0.012796963565051556, -0.0038190265186131, -0.05052866041660309, 0.00013882483472116292, -0.0050406851805746555, -0.022770855575799942, -0.043019577860832214, 0.010977014899253845, 0.05259222537279129, -0.04095601662993431, 0.008053632453083992, 0.026625709608197212, -0.011048666201531887, -0.022799517959356308, 0.03530987352132797, 0.02845998853445053, -0.0028857653960585594, 0.004707505460828543, -0.07887400686740875, 0.052649546414613724, -0.06156299635767937, 0.031727299094200134, -0.03384818136692047, -0.031985241919755936, -0.0144807742908597, -0.048121169209480286, 0.017597615718841553, -0.03625567629933357, 0.004406569059938192, -0.0004339395964052528, -0.04055476561188698, -0.02837400697171688, -0.023000141605734825, 0.00879164319485426, 0.018672388046979904, -0.010790720582008362, -0.004546289797872305, -0.0014339262852445245, 0.003962329588830471, -0.012331228703260422, -0.040927354246377945, 0.05468444898724556, 0.01887301355600357, 0.016365209594368935, -0.009787599556148052, 0.04531242698431015, 0.022828178480267525, 0.02191103808581829, 0.0032189451158046722, -0.00031952105928212404, 0.06718047708272934, -0.01741132140159607, -0.011643373407423496, -0.01797020435333252, -0.03886378929018974, -0.05133115500211716, -0.03808995336294174, -7.495421596104279e-05, 0.04445261135697365, -0.01682377979159355, 0.006344743072986603, 0.054913733154535294, -0.017597615718841553, 0.03659960255026817, -0.02643941529095173, -0.0328737236559391, 0.001916678505949676, -0.025823211297392845, -0.007974815554916859, 0.04416600242257118, 0.026897985488176346, 0.03178462013602257, -0.01680944859981537, 0.012567678466439247, 0.013979213312268257, 0.018127838149666786, -0.0006193378940224648, -0.005420438479632139, -0.039866913110017776, -0.008562358096241951, -0.034937284886837006, 0.02191103808581829, 0.004643019288778305, 0.03909307345747948, -0.03751674294471741, 0.0016336549306288362, -0.005527915433049202, 0.027012627571821213, 0.021423807367682457, 0.01223808154463768, 0.0302082858979702, 0.008934945799410343, -0.04299091920256615, 0.003435690887272358, -0.010081370361149311, -0.042818956077098846, -0.045627694576978683, 0.007046928163617849, 0.004660931881517172, 0.0322718508541584, 0.0032637272961437702, 0.05565891042351723, 0.010991345159709454, 0.008920615538954735, 0.008827468380331993, -0.03427809104323387, 0.00967295654118061, 0.07749829441308975, 0.022684874013066292, -0.04072672873735428, 0.03436407446861267, 0.0044137341901659966, 0.018500424921512604, 0.006488046143203974, -0.013692607171833515, -0.004291926510632038, 0.013219707645475864, 0.012925935909152031, 0.023043131455779076, 0.022240635007619858, 0.006907207425683737, 0.025192677974700928, -0.009214387275278568, 0.04218842089176178, 0.015061152167618275, -0.026253120973706245, -0.01775524951517582, 0.027872445061802864, 0.028818245977163315, -0.030494891107082367, 0.0055780718103051186, 0.03909307345747948, 0.028302354738116264, -0.009171395562589169, -0.031211405992507935, -0.011564557440578938, 0.016494182869791985, 0.04677411913871765, -0.04167253151535988, -0.020349035039544106, -0.025106696411967278, -0.0007913016015663743, -0.0009050483931787312, -0.004051893949508667, 0.024504823610186577, 0.016193246468901634, 0.018514756113290787, 0.021724743768572807, 0.020091088488698006, -0.003145502181723714, 0.010160187259316444, 0.011399758979678154, 0.0030290684662759304, 0.004732583649456501, 0.006717331241816282, -1.6058619394243578e-06, -0.011779511347413063, 0.01976149156689644, 0.011700695380568504, 0.025350311771035194, 0.03169863671064377, -0.02738521434366703, -0.04046878591179848, 0.026511065661907196, 0.04941089451313019, 0.005631810519844294, 0.01976149156689644, -0.0009592348942533135, 0.0042704311199486256, 0.03513791039586067, -0.0078530078753829, -0.045169126242399216, -0.032243188470602036, 0.011027170345187187, 0.007021849974989891, -0.01540507934987545, 0.045971620827913284, 0.0159209705889225, -0.024232547730207443, -0.03456469997763634, -0.014215664006769657, -0.02408924512565136, -0.012574844062328339, 0.0040303985588252544, 0.01693842187523842, -0.012617834843695164, -0.0074445940554142, 0.0036667671520262957, 0.0037975311279296875, -0.010267664678394794, -0.005334456451237202, -0.024289868772029877, -0.02109421044588089, 0.01557704247534275, 0.008999432437121868, 0.03522389382123947, 0.01682377979159355, -0.005402525421231985, 0.03496594727039337, 0.005434768740087748, -0.012410045601427555, -0.002969956025481224, 0.0299503393471241, -0.01011719647794962, -0.011363932862877846, 0.06104710325598717, 0.019919125363230705, -0.013277028687298298, -0.01943189464509487, 0.009823424741625786, 0.027671821415424347, 0.014072360470890999, 0.01617891527712345, 0.010145856998860836, -0.02122318372130394, 0.0053272913210093975, -0.011987301521003246, 0.02969239465892315, -0.02811606042087078, 0.02019140124320984, 0.007910328917205334, 0.004546289797872305, -0.0020438600331544876, 0.013277028687298298, 0.011249290779232979, 0.025063704699277878, 0.021982690319418907, 0.04129994288086891, 0.0026009506545960903, 0.007544906344264746, 0.008168274536728859, -0.00022391103266272694, 0.03029426746070385, -7.708137127337977e-05, -0.011277951300144196, -0.017697928473353386, 0.029405787587165833, 0.005434768740087748, 0.013749929144978523, 0.02178206481039524, -0.031469352543354034, 0.020606979727745056, -0.009809094481170177, 0.012417210265994072, 0.0052735526114702225, 0.009622800163924694, 0.014874857850372791, -0.0012691277079284191, -0.008920615538954735, -0.022197645157575607, -0.0025615422055125237, -0.017225027084350586, 0.0004225201264489442, -0.04012485593557358, 0.025407632812857628, 0.019145289435982704, -0.012660825625061989, -0.04895232617855072, -0.002008034149184823, 0.004087720066308975, -0.06465834379196167, -0.016035612672567368, -0.010375142097473145, -0.02234094776213169, 0.017726588994264603, 0.010038379579782486, 0.02833101525902748, 0.018371451646089554, -0.04895232617855072, 0.0005109650082886219, -0.01917394995689392, -0.0006977067678235471, 0.0044137341901659966, -0.013212542049586773, -0.010640252381563187, 0.001619324553757906, -0.018715379759669304, 0.02100822888314724, -0.03952298313379288, -0.0015351340407505631, -0.029921678826212883, -0.028087399899959564, 0.01980448327958584, -0.004331334959715605, -0.005101589020341635, 0.06815493851900101, 0.0166948065161705, -0.054369181394577026, 0.010833711363375187, 0.01822814904153347, 0.04261833056807518, -0.012746807187795639, 0.0321858674287796, 0.005366699770092964, -0.020392024889588356, -0.01814216747879982, -0.021968359127640724, -0.010196012444794178, -0.058209702372550964, 0.010633086785674095, -0.03820459544658661, 0.00928603857755661, -0.001526177627965808, -0.018815692514181137, 0.00733711663633585, 0.05348070338368416, 0.02010541968047619, 0.0156630240380764, -0.01080505084246397, 0.013871736824512482, -0.0061512840911746025, 0.015462400391697884, -0.024877412244677544, -0.02674035169184208, 0.0033801610115915537, 0.009235882200300694, -0.002681558486074209, 0.03487996384501457, -0.0024630213156342506, 0.05373864993453026, -0.04244636744260788, 0.015648694708943367, -0.004528376739472151, 0.013119394890964031, -0.01954653672873974, -0.01091252826154232, 0.037545401602983475, -0.022813847288489342, 0.009816260077059269, -0.012410045601427555, -0.0005741078639402986, 0.0034607688430696726, 0.02036336436867714, -0.027829455211758614, -0.011148978024721146, -0.009042423218488693, -0.002163876313716173, -0.009536818601191044, 0.04740465432405472, 0.004313422366976738, -0.016451191157102585, -0.02404625341296196, 0.001286144950427115, -0.01749730296432972, 0.016666145995259285, 0.01835712231695652, -0.01665181666612625, -0.027227582409977913, -0.003869182663038373, 0.019732831045985222, -0.022011350840330124, 0.018127838149666786, -0.017855562269687653, 0.013685442507266998, 0.010919692926108837, -0.06689386814832687, -0.031641315668821335, 0.017783910036087036, -0.009149900637567043, -0.0005776904872618616, -0.006394898984581232, 0.008075127378106117, 0.038233257830142975, 0.022197645157575607, -0.04115663841366768, 0.004488968290388584, -0.029319806024432182, -0.01917394995689392, 0.028918558731675148, -0.01273247692734003, -0.008784477598965168, 0.0316699780523777, 0.05184704810380936, -0.008275751955807209, 0.04124262183904648, -0.012223751284182072, -0.014573921449482441, 0.004571367520838976, 0.04714670777320862, -0.01294743176549673, -0.040325481444597244, -0.008848964236676693, 0.04138592258095741, 0.02361634373664856, -0.029162172228097916, -0.016250567510724068, 0.023630674928426743, -0.010833711363375187, 0.021036889404058456, -0.035883087664842606, 0.01622190698981285, 0.019575199112296104, 0.028732264414429665, -0.018944663926959038, 0.002722758101299405, -0.03940834105014801, -0.026683030650019646, 0.004574950318783522, -0.05927014723420143, -0.0003658706264104694, -0.004603610839694738, 0.024934733286499977, -0.0007214413490146399, -0.00877014733850956, 0.011514401063323021, -0.017611946910619736, -0.02284250780940056, -0.015003830194473267, 0.006556115113198757, -0.029721055179834366, 0.009608469903469086, -0.050987228751182556, 0.0076380530372262, -0.007695374544709921, 0.018113506957888603, -0.00817544013261795, -0.019188279286026955, 0.015018160454928875, -0.049697503447532654, -0.04814982786774635, 0.016666145995259285, -0.013549304567277431, 0.046315550804138184, 0.012768303044140339, -0.008540862239897251, 0.04539841040968895, 0.04442394897341728, 0.016121594235301018, 0.010790720582008362, 0.016379540786147118, -0.03462202101945877, 0.00877014733850956, 0.009866415522992611, 0.04293359816074371, -0.037975311279296875, -0.0018092012032866478, 0.00576794845983386, -0.00887762475758791, 0.022785186767578125, 0.00017431474407203496, -0.039866913110017776, -0.0043349177576601505, 0.01438046246767044, 0.006574028171598911, 0.008454880677163601, 0.011707860045135021, -0.00495112081989646, -0.023344067856669426, -0.008397559635341167, 0.05405391380190849, 0.02909052185714245, 0.0036130284424871206, -0.008705660700798035, 0.01650851219892502, -0.0014912474434822798, 0.0041378759779036045, 0.0309821218252182, 0.0160499420017004, 0.012180760502815247, -0.013334349729120731, 0.014817536808550358, 0.008196935057640076, -0.02212599292397499, -0.015763336792588234, -0.007888833992183208, -0.004617941100150347, 0.0020259469747543335, 0.03161265701055527, 0.013628121465444565, 0.012467366643249989, 0.017139045521616936, -0.00898510217666626, -0.05752184987068176, 0.00031661021057516336, -0.01818515919148922, 0.0641997680068016, -0.04038280248641968, -0.005037102848291397, 0.02264188416302204, 0.01397204864770174, 0.00457853265106678, 0.04425198584794998, 0.016365209594368935, 0.00978043396025896, -0.002948460401967168, 0.016322217881679535, 0.03995289281010628, 0.017654936760663986, 0.04132860153913498, -0.016107264906167984, -0.018858682364225388, 0.010138691402971745, -0.022025680169463158, 0.010625922121107578, -0.004607193637639284, 0.007989145815372467, -0.0161359254270792, -0.011163308285176754, 0.03533853590488434, 0.011120317503809929, 0.03674290329217911, -0.01112748309969902, 0.043879397213459015, -0.03003632090985775, 0.04602894186973572, 0.030580872669816017, 0.006523871794342995, 0.004005320370197296, 0.07228206098079681, 0.008075127378106117, 0.011571722105145454, -0.030408909544348717, -0.03665692359209061, -0.028431328013539314, 0.024117905646562576, 0.0021119287703186274, 0.05113053321838379, 0.016107264906167984, -0.017525965347886086, 0.011843997985124588, -0.019073637202382088, -0.05537230148911476, -0.008483541198074818, 0.018844353035092354, 0.0008486228180117905, -0.0006372507777996361, -0.023458711802959442, -0.003346126526594162, -0.010547105222940445, 0.02854597009718418, -0.008462045341730118, 0.01984747312963009, -0.003505551256239414, 0.008648339658975601, 0.043191540986299515, -0.029893018305301666, -0.012911605648696423, 0.00556374154984951, 0.017597615718841553, 0.017038734629750252, -0.017096055671572685, -0.0040483116172254086, -0.016565833240747452, -0.011600382626056671, -0.011578887701034546, 0.02858895994722843, 0.004614358767867088, 0.02760016918182373, 0.001286144950427115, -0.008411889895796776, -0.001673063263297081, -0.004091302398592234, 0.03178462013602257, -0.03556782007217407, 0.026640038937330246, -0.02378830872476101, 0.0151041429489851, -0.006222935393452644, -0.01031065545976162, 0.008497871458530426, -0.0009466958581469953, -0.02566557750105858, -0.009594139643013477, -0.04582832008600235, 0.02169608324766159, 0.013921892270445824, 0.02105122059583664, 0.006258761044591665, -0.013929057866334915, -0.0011643373873084784, 0.027628829702734947, 0.004026816226541996, 0.011980135925114155, -0.014989499934017658, 0.004886634182184935, -0.02301447093486786, 0.0019739996641874313, -0.008512201718986034, 0.03384818136692047, -0.019489215686917305, 0.021495459601283073, -0.041959136724472046, -0.014817536808550358, -0.025866203010082245, 0.027915436774492264, 0.016680477187037468, 0.019718501716852188, 0.012030292302370071, -0.0026690196245908737, 0.0071436576545238495, 0.00950099341571331, 0.009952398017048836, -0.02049233764410019, -0.041185300797224045, 0.009536818601191044, -0.014265819452702999, 0.006376986391842365, 0.03960896655917168, -0.03029426746070385, -0.007466089446097612, -0.010518444702029228, 0.05565891042351723, 0.01870105043053627, 0.005853930022567511, -0.02391728013753891, -0.020678631961345673, 0.029377127066254616, 0.007709704805165529, -0.00815394427627325, 0.01557704247534275, 0.018758371472358704, 0.031555335968732834, 0.04055476561188698, -0.0034786819014698267, -0.006018728483468294, 0.0314980112016201, -0.012073283083736897, 0.02297148108482361, -0.01397204864770174, -0.02469111792743206, -0.01059009600430727, 0.008161108940839767, -0.007480419706553221, -0.01283995434641838, 0.02430419996380806, -0.021036889404058456, 0.016236236318945885, 0.003908590879291296, 0.00580735644325614, -0.007702539674937725, -0.007845842279493809, -0.042675651609897614, 0.02126617357134819, 0.0009171395795419812, 0.0161359254270792, -0.04714670777320862, 0.0144807742908597, -0.001991912489756942, 0.03731611743569374, 0.04852241650223732, -0.009020927362143993, -0.011500070802867413, -0.0030326510313898325, 0.008089457638561726, -0.03384818136692047, -0.00011531418567756191, -0.026195799931883812, -0.021509788930416107, -0.012574844062328339, 0.005098006222397089, -0.012288237921893597, -0.026812002062797546, -0.004886634182184935, 0.010869537480175495, -0.012847119942307472, 0.031555335968732834, -0.0050406851805746555, 0.004066224209964275, 0.0009502784232608974, 0.03247247263789177, -0.0018038272392004728, 0.006634931545704603, -0.01989046484231949, -0.013577965088188648, 0.014022205024957657, 0.007315621245652437, -0.003482264466583729, 0.02122318372130394, 0.028689272701740265, 0.02305746264755726, 0.011328106746077538, 0.030838819220662117, 0.029835697263479233, 0.011492905206978321, 0.02648240514099598, -0.006050971802324057, 0.011464244686067104, 0.006380568724125624, 0.053939271718263626, -0.019231270998716354, -0.00849070679396391, 0.002629611175507307, 0.0037151318974792957, -0.012273907661437988, -0.001786809996701777, -0.019704170525074005, 0.0009198265033774078, 0.024719778448343277, 0.01304774358868599, -0.025536606088280678, 0.013764259405434132, 0.008913450874388218, -0.018285470083355904, 0.019661180675029755, -0.02451915293931961, 0.003381952177733183, 0.019876135513186455, -0.018127838149666786, -0.007304873783141375, -0.006903625093400478, -0.033131666481494904, -0.001241362770088017, 0.01857207715511322, 0.035195231437683105, 0.01779823936522007, 0.07256866991519928, -0.019145289435982704, 0.011492905206978321, -0.006846303585916758, 0.019532207399606705, -0.019231270998716354, -0.00224090158008039, 0.04279029369354248, -0.003199240891262889, 0.022197645157575607, -0.0080464668571949, -0.02284250780940056, -0.00988791137933731, 0.037029512226581573, -0.019288592040538788, -0.04316288232803345, -0.020821934565901756, 0.016336549073457718, 1.8192771733538393e-07, -0.011750850826501846, 0.054025255143642426, 0.0005933642387390137, -0.0011159726418554783, -0.010919692926108837, 0.00046573494910262525, -0.007845842279493809, 0.00534878671169281, 0.008017806336283684, -0.007673879154026508, 0.02391728013753891, 0.02182505652308464, 0.007387273013591766, 0.03548183664679527, 0.01262499950826168, 0.003772453172132373, 0.028918558731675148, -0.008598183281719685, -0.020463677123188972, -0.006978859193623066, -0.026324773207306862, 0.001598724746145308, 0.0006381464190781116, -0.010991345159709454, -0.007802851498126984, -0.004671679809689522, -0.005581654142588377, 0.008626844733953476, -0.027098609134554863, -0.010260499082505703, -0.06139103323221207, -0.02378830872476101, -0.01967551000416279, 0.03178462013602257, -0.018586406484246254, 0.014237158931791782, 0.02883257530629635, 0.04359279200434685, 0.025937853381037712, 0.012675155885517597, 0.03551049903035164, -0.011643373407423496, -0.01519012451171875, -0.013771424070000648, 0.015003830194473267, -0.038405220955610275, -0.013162386603653431, -0.004406569059938192, -0.013162386603653431, -9.616978786652908e-05, -0.010833711363375187, 0.03582576662302017, 0.015247445553541183, 0.002049233764410019, 0.029334137216210365, 0.011206299066543579, 0.031039442867040634, 0.0035395855084061623, 0.04087003320455551, 0.027069948613643646, -0.02986435778439045, -0.06551816314458847, -0.002102972473949194, -0.02292848937213421, 0.018801361322402954, -0.03817593678832054, -0.015032490715384483, 0.012954596430063248, -0.002543629379943013, -0.020850595086812973, 0.024848751723766327, 0.0330456867814064, 0.00898510217666626, -0.004650184419006109, 0.007480419706553221, -0.009207221679389477, -0.0082399258390069, -0.02318643592298031, -0.006162031553685665, 0.02764316089451313, 0.010575765743851662, -0.0065704453736543655, 0.02036336436867714, 0.02152412012219429, 0.015319096855819225, -0.024848751723766327, -0.027184590697288513, -0.02221197448670864, 0.0045677851885557175, -0.019202610477805138, -0.0156630240380764, -0.016021281480789185, 0.020893586799502373, 0.029577752575278282, 0.013893231749534607, 0.0293484665453434, 0.0032583533320575953, 0.010547105222940445, -0.007157987914979458, -0.02764316089451313, -0.011987301521003246, 0.031899262219667435, 0.01099850982427597, 0.0007129327277652919, -0.00155394256580621, -0.014946509152650833, 0.03012230433523655, 0.02036336436867714, -0.016494182869791985, 0.005739287473261356, 0.0019435477443039417, -0.0056927138939499855, 0.028889896348118782, 0.02490607276558876, -0.030666856095194817, 0.013957718387246132, 0.021968359127640724, 0.0020420686341822147, -0.019933456555008888, 0.0009153482969850302, 0.013076404109597206, -0.032329171895980835, -0.004112797789275646, -0.02588053233921528, 0.0167377982288599, 0.013499148190021515, -0.009020927362143993, 0.0032314839772880077, 0.032759081572294235, 0.00928603857755661, 0.005062180571258068, -0.031641315668821335, 0.003116841660812497, 0.01758328638970852, 0.029577752575278282, -0.029162172228097916, -0.032157208770513535, 0.01964684948325157, 0.008168274536728859, 0.004965451080352068, 0.003437482286244631, 0.012080447748303413, 0.004177284426987171, -0.026797672733664513, -0.00040169639396481216, 0.03894977271556854, -0.023587683215737343, 0.020649971440434456, -0.011005675420165062, -0.004080554470419884, -0.02001943811774254, 0.012295402586460114, -0.008039302192628384, -0.001410639495588839, 0.008949276059865952, 0.014179837889969349, -0.03958030417561531, -0.022140322253108025, 0.019331583753228188, 0.0021943282335996628, -0.002821278991177678, -4.3102874769829214e-05, -0.0008517575915902853, 0.025235669687390327, 0.02216898277401924, 0.009916571900248528, 0.017683597281575203, 0.001321075134910643, 0.0013461530907079577, 0.011492905206978321, 0.0034983858931809664, -0.018213819712400436, -0.01805618591606617, -0.04915295168757439, 0.014430617913603783, 0.01660882495343685, 0.014846197329461575, 0.012904440984129906, 0.025221338495612144, -0.043449487537145615, 0.019532207399606705, 0.016293557360768318, -0.010167351923882961, -0.025135356932878494, -0.009164230898022652, 0.008677000179886818, 0.006093962583690882, -0.010439627803862095, 0.021724743768572807, 0.01480320654809475, 0.015118473209440708, 0.005886173341423273, -0.0012709189904853702, -0.01883002184331417, 0.011457080021500587, 0.0033837435767054558, -0.015519721433520317, -9.510621021036059e-05, 0.041185300797224045, 0.001025512581691146, -0.036513619124889374, -0.01059009600430727, 0.012496027164161205, -0.006695835385471582, -0.014960839413106441, -0.0021262592636048794, 0.0595567524433136, 0.03370488062500954, -0.02854597009718418, -0.009250212460756302, 0.019718501716852188, 0.0015682728262618184, -0.014667068608105183, -0.003358665620908141, 0.0316699780523777, -0.04539841040968895, -0.010367976501584053, -0.00978043396025896, -0.04542706906795502, 0.02751418761909008, -0.005610314663499594, -0.009558314457535744, -0.005975737702101469, 0.005427603609859943, 0.013706937432289124, 0.020721621811389923, -0.0024522736202925444, 0.013234037905931473, 0.01728234998881817, 0.0011616504052653909, 0.0072224740870296955, -0.0022391104139387608, 0.049439556896686554, 0.0016184289706870914, 0.00015707359125372022, -0.029276816174387932, 0.007802851498126984, 0.025006383657455444, -0.011449914425611496, -0.00495112081989646, 0.02618146874010563, 0.001073877327144146, -0.007967649959027767, 0.02096523717045784, -0.001365857315249741, -0.008089457638561726, 0.014731554314494133, 0.030523551627993584, -0.012546182610094547, -0.03662826120853424, 0.037631385028362274, -0.022613223642110825, -0.006534619722515345, 0.014294479973614216, -0.008920615538954735, -0.012410045601427555, -0.011449914425611496, 0.008970771916210651, 0.013635286130011082, 0.006452220492064953, -0.007168735843151808, -0.019403234124183655, -0.02686932496726513, 0.007168735843151808, 0.012510357424616814, 0.003955164458602667, -0.0160499420017004, -0.005137414671480656, -0.01754029467701912, 0.006402064114809036, 0.03367621824145317, -0.011148978024721146, 0.03344693407416344, -0.0016829153755679727, 0.03350425511598587, 0.0012807711027562618, 0.0036148198414593935, -0.014287315309047699, 0.028932888060808182, 0.011621878482401371, -0.00697527639567852, -0.016838109120726585, -0.024848751723766327, -0.011220629326999187, -0.037975311279296875, 0.027614500373601913, 0.02331540733575821, 0.012933101505041122, -0.022441258653998375, -0.021667422726750374, -0.02096523717045784, 0.03740210086107254, 0.024404510855674744, -0.004299091640859842, -0.03479398414492607, 0.0025991592556238174, 0.03344693407416344, 0.005621062591671944, 0.011270785704255104, 0.0022713534999638796, 0.018156498670578003, 0.03740210086107254, -0.011449914425611496, 0.01900198683142662, -0.012266742065548897, 0.029377127066254616, 0.0012888319324702024, 0.01204462256282568, -0.0045319595374166965, 0.021122870966792107, -0.023329738527536392, 0.05439784377813339, -0.021724743768572807, 0.028918558731675148, 0.0009189308620989323, 0.039437003433704376, 0.023630674928426743, -0.009515323676168919, 0.0024074914399534464, 0.012653660029172897, -0.008426220156252384, -0.0032905966509133577, 0.01364961639046669, -0.013119394890964031, 0.01852908544242382, -0.015634363517165184, 0.025522274896502495, 0.01080505084246397, -0.017812570556998253, -0.00296279089525342, -0.013520644046366215, 0.02883257530629635, 0.056289441883563995, -0.02622446045279503, -0.009744607843458652, -0.019876135513186455, 0.01702440343797207, -0.0003508685913402587, 0.014638408087193966, -0.031383369117975235, 0.023473041132092476, 0.004829313140362501, -0.002479142975062132, -0.025106696411967278, -0.006745991762727499, -0.0167377982288599, 0.028660612180829048, 0.031096763908863068, 0.007057675626128912, -0.002626028610393405, -0.02255590260028839, 0.018844353035092354, 0.008060797117650509, 0.014874857850372791, -0.028775254264473915, -0.03565380349755287, -0.04359279200434685, 0.008419054560363293, -0.011886988766491413, -0.009816260077059269, 0.0022606058046221733, 0.029463108628988266, 0.00515532772988081, 0.01540507934987545, 0.032845061272382736, 0.005520750302821398, -0.0008513097418472171, 0.009185725823044777, -0.006652844604104757, -0.03298836573958397]" -How United Manufacturing Hub Is Introducing Open Source to Manufacturing and Using Time-Series Data for Predictive Maintenance,"is an open-source Helm chart for Kubernetes. It combines state-of-the-art information and operational tools (IT/OT) and technologies, bringing them into the engineer's hands.I assume most of the readers here will come from traditional IT, so let me explain the world of manufacturing, especially OT, first, as it will help you understand our usage of TimescaleDB.OT means Operational Technology. OT is the hardware and software to manage, monitor, and control industrial operations like production machines. Due to different requirements, OT has its own ecosystems.OT comes originally from the field of electronics, and this background is still evident today. For example, the computer that controls the production machine is called aPLC (Programmable Logic Controller). It runs some peculiar flavors of Windows and Linux, which are completely hidden from the system's programmer. The programmer of the PLC will use programming languages likeladder logic, which is like drawing electrical schematics.Because OT is an entirely different world, it is pretty hard to integrate it with the traditional IT world. During system integration, we felt all these pains and decided to develop a tool that allows an easy combination between both fields—the United Manufacturing Hub (UMH).With UMH, one can now easily extract data from the shopfloor, from the PLC tovarious IO-link compatible or analog (4-20mA / 0-10V) sensorstobarcodereaderand different manufacturing execution or enterprise resource planning systems. Using aUnified Namespacebased onMQTTandKafka, the data is aggregated and can then be contextualized through tools likeNode-RED.From there on, the processed data is stored automatically in a TimescaleDB running either in the cloud or on-premise. To visualize the data, we useGrafanawith our ownREST APIfor manufacturing specific logics (also calledfactoryinsight) and our own Grafana data source.Choosing (and Using!) TimescaleDBManufacturing data is mainly relational: orders, products, production plans, and shifts are good examples of this. However, due to the growth of analytics, time-series data gets more and more important, e.g., for preventive or predictive maintenance.✨Editor's Note:Want to learn more about time-series forecasting?Check out this blog post.During one of those earlier system integrator projects, I realized that we needed a time-series database and a relational one.Due to the strong marketing, we chose InfluxDB at first. We did not scan vendors; we just started with whatever we knew from home automation. It sounded perfect: a beautiful user interface, continuous queries to process data, etc.We wanted to process raw sensor",https://www.timescale.com/blog/how-united-manufacturing-hub-is-introducing-open-source-to-manufacturing-and-using-time-series-data-for-predictive-maintenance/,541,"[-0.038243841379880905, 0.022256191819906235, 0.041148073971271515, -0.016634633764624596, 0.04413856938481331, 0.004744536709040403, -0.01664901152253151, 0.005801274441182613, -0.020602792501449585, 0.0017567366594448686, 0.04848054051399231, -0.019984563812613487, -0.004733753856271505, -0.02349264547228813, 0.06268540024757385, 0.028984807431697845, -0.013644138351082802, -0.02271626703441143, -0.04871057718992233, 0.051586054265499115, 0.0005643123295158148, 0.021666718646883965, 0.014837460592389107, 0.007084456272423267, -0.024096496403217316, -0.01636146381497383, -0.013593817129731178, 0.0483655221760273, -0.01437019556760788, -0.04819299280643463, -0.0016138614155352116, -0.05020582675933838, -0.020372753962874413, 0.007706278003752232, 0.04917065426707268, 0.03605848178267479, 0.047617897391319275, 0.006034906953573227, 0.01653399132192135, 0.0285247303545475, -0.0374099537730217, 0.006232596002519131, 0.025232309475541115, 0.026253104209899902, -0.013327835127711296, -0.04215449094772339, -0.018359920009970665, -0.0003043961769435555, 0.01419047825038433, 0.03275168314576149, -0.004252111539244652, 0.004622329026460648, -0.02359328791499138, -0.026928842067718506, -0.005161480978131294, -0.0460938960313797, -0.014161723665893078, 0.056848179548978806, 0.041780680418014526, -0.015628216788172722, 0.0032744493801146746, -0.056445613503456116, 0.007548126857727766, 0.006699861027300358, -0.044972460716962814, 0.016879050061106682, -0.017986107617616653, 0.01815863698720932, -0.034275684505701065, -0.004521687515079975, 0.06423815339803696, 0.0145714795216918, -0.006347615271806717, -0.026655670255422592, 0.024053364992141724, -0.07217446714639664, -0.03893395885825157, 0.05733700841665268, -0.017655428498983383, 0.0013110378058627248, 0.013759156689047813, -0.01716659776866436, -0.02944488264620304, 0.015240027569234371, 0.006401530466973782, -0.042873360216617584, -0.03263666108250618, -0.03050881065428257, -0.023018192499876022, -0.008094467222690582, -0.054490286856889725, 0.04988952353596687, -0.013629760593175888, 0.016260821372270584, 0.017928598448634148, 0.020602792501449585, -0.012156078591942787, 0.018057994544506073, -0.03913524001836777, 0.013284703716635704, -0.03039379045367241, -0.030940132215619087, 0.009136827662587166, -0.004924254026263952, 0.033326778560876846, -0.02517480030655861, 0.022443097084760666, -0.0073899757117033005, 0.02227056957781315, -0.004029261879622936, -0.08862219750881195, -0.03628851845860481, -0.039681579917669296, 0.040084149688482285, 0.009632847271859646, -7.991804159246385e-05, 0.0038207899779081345, -0.01771293766796589, 0.021048491820693016, -0.027259521186351776, -0.01856120303273201, -0.03833010792732239, 0.014880592934787273, 0.028323447331786156, -0.01572885923087597, 0.029243599623441696, -0.024800987914204597, -0.016634633764624596, -0.03393062576651573, 0.006455445662140846, 0.014398951083421707, -0.04428234323859215, 0.0008837598725222051, -0.04189569875597954, -0.02595117874443531, 0.0019499327754601836, -0.04373600333929062, -0.002598712220788002, 0.016893425956368446, -0.004712187685072422, -0.01955324225127697, -0.04422483593225479, 0.004708593245595694, -0.014398951083421707, -0.03013499826192856, 0.004812829662114382, -0.003691393416374922, 0.01676402986049652, -0.005891133099794388, 0.006042095832526684, -0.001150190713815391, -0.024973517283797264, -0.033096738159656525, -0.01811550371348858, 0.06268540024757385, -0.016375841572880745, -0.007339654956012964, 0.010926811955869198, 0.0211347546428442, -0.056848179548978806, 0.027690842747688293, 0.030882621183991432, 0.027360163629055023, 0.008957110345363617, 0.005998963490128517, 0.00856173224747181, -0.029617412015795708, -0.040716752409935, -0.0789605975151062, -0.010847737081348896, -0.032809190452098846, -0.004011290147900581, -0.026382500305771828, 0.024067740887403488, 0.01595889776945114, 0.02316196635365486, -0.03674859553575516, -0.04586385563015938, 0.0037848465144634247, -0.025232309475541115, -0.038128823041915894, 0.022989436984062195, -0.051557302474975586, -0.012537078931927681, -0.031198924407362938, 0.005693444050848484, -0.07050669193267822, 0.0012454409152269363, 0.01053143385797739, 0.04534627124667168, -0.06124765798449516, 0.07568255066871643, 0.010315773077309132, 0.012688041664659977, 0.05572674423456192, -0.03631727397441864, 0.0445411391556263, 0.01745414547622204, 0.021551700308918953, 0.0005144407623447478, 0.04626642167568207, 0.01952448859810829, 0.06694110482931137, -0.03275168314576149, -0.009790998883545399, 0.03804256021976471, 0.025016648694872856, 0.01442770566791296, -0.03818633407354355, -0.021781736984848976, -0.00714915432035923, 0.029674921184778214, 0.009568149223923683, 0.029128581285476685, -0.0015141182811930776, -0.02562049962580204, -0.07171439379453659, -0.011235926300287247, -0.0016264416044577956, 0.003022845136001706, -0.019682640209794044, 0.06797627359628677, -0.01628957688808441, -0.006049284711480141, -0.01391011942178011, 0.015441310591995716, -0.0016686752205714583, -0.0039034599903970957, 0.05075216665863991, -0.015254405327141285, -0.004697810392826796, -0.05742327496409416, -0.0020919095259159803, -0.01981203630566597, 0.0025394055992364883, -0.019898300990462303, 0.004133497830480337, -0.017655428498983383, -0.01531191449612379, -0.06533083319664001, -0.01801486313343048, 0.014981234446167946, 0.009208714589476585, 0.021522944793105125, 0.0006460837321355939, -0.001815144787542522, -0.03536836430430412, -0.03398813679814339, -0.005758142564445734, 0.021666718646883965, 0.019351959228515625, -0.030048733577132225, 0.0015671348664909601, -0.019323205575346947, -0.00739716412499547, -0.03643229231238365, -0.03217658773064613, 0.020315244793891907, 0.01493810210376978, 0.03815757855772972, 0.02441279962658882, -0.03755372762680054, -0.00012243242235854268, -0.013054665178060532, -0.038128823041915894, 0.0339018739759922, 0.024326534941792488, -0.05851595476269722, -0.0015464674215763807, -0.02587929181754589, 0.04928567260503769, 0.020976604893803596, 0.03752497211098671, -0.04344845563173294, -0.06337551027536392, -0.03180277347564697, -0.02999122440814972, -0.0025717546232044697, -0.0038890824653208256, 0.0036356812343001366, -0.0076487683691084385, -0.025778651237487793, 0.03853138908743858, -0.013478797860443592, 0.0379275418817997, 0.020818453282117844, 0.037697501480579376, 0.028898542746901512, 0.03620225563645363, -0.02871163748204708, 0.007109616883099079, 0.010574566200375557, 0.02219868265092373, -0.053685154765844345, 0.016850294545292854, 0.01584387756884098, -0.019797658547759056, 0.019466979429125786, -0.04502996802330017, -0.03579968586564064, 0.0034559639170765877, 0.0026041038800030947, -0.0024531411472707987, -0.02051652781665325, -0.004985358100384474, 0.010905246250331402, -0.006875984370708466, -0.019898300990462303, 0.009179960004985332, 0.004410262685269117, -0.011465963907539845, -0.04546128958463669, 0.03145771846175194, 0.017295993864536285, -0.035454630851745605, 0.010517057031393051, 0.04833676666021347, 0.03562716022133827, -0.013227193616330624, -0.0967310443520546, -0.01373040210455656, -0.08482656627893448, 0.0024711128789931536, 0.0006910130614414811, 0.045748837292194366, -0.0039933184161782265, 0.0015132196713238955, 0.01679278537631035, -0.0007139269728213549, -0.02040150947868824, -0.015613839961588383, -0.023722684010863304, 0.020760944113135338, 0.02540483884513378, -0.010006659664213657, -0.01080460473895073, 0.017180973663926125, 0.015599462203681469, -0.01479432824999094, -0.001367648714222014, -0.022299323230981827, -0.022558117285370827, -0.09069254249334335, 0.005006924271583557, 0.0384451262652874, -0.01728161610662937, -0.04649646207690239, -0.02425464801490307, 0.014046704396605492, 0.0028305475134402514, -0.02911420352756977, -0.020157093182206154, -0.0010459547629579902, -0.01584387756884098, 0.01981203630566597, 0.017367880791425705, 0.0003715655184350908, 0.01992705464363098, -0.0013820261228829622, -0.007842862978577614, -0.028237182646989822, 0.03516708314418793, 0.0009866480249911547, 0.0006357499514706433, 0.014585856348276138, 0.0036195064894855022, -0.02595117874443531, -0.011365322396159172, -0.06630849838256836, -0.022443097084760666, 0.041694413870573044, -0.035195838660001755, -0.012989967130124569, -0.025304196402430534, -0.09563836455345154, -0.005330415442585945, 0.04635268822312355, 0.007145560346543789, -0.004809235222637653, 0.08948484063148499, 0.04741661250591278, -0.009395620785653591, 0.02620997279882431, -0.003319378709420562, 0.028610995039343834, 0.026440009474754333, -0.00717790937051177, 0.03686361387372017, -0.038761429488658905, 0.004108337685465813, 0.03608723357319832, -0.012666475959122181, -0.015009989030659199, -0.004036450758576393, -0.0511547327041626, -0.010279829613864422, -0.022299323230981827, 0.01827365532517433, 0.04968824237585068, 0.024024609476327896, 0.05083843320608139, 0.008741449564695358, -0.04715782031416893, 0.007950693368911743, 0.002631061477586627, -0.014628988690674305, 0.006498578004539013, 0.019308827817440033, -0.03464949503540993, -0.006225407589226961, -0.026856955140829086, -0.01676402986049652, 0.02094784937798977, 0.010718340054154396, 0.0509534515440464, -0.022586870938539505, -0.02462846040725708, 0.0471290647983551, 0.034419458359479904, 0.035224590450525284, -0.03197530284523964, -0.002111678244546056, -0.024542195722460747, -0.0011043628910556436, -0.05308130383491516, 0.03950905427336693, 0.07200194150209427, -0.020904717966914177, -0.01988392323255539, -0.08614929020404816, 0.014909347519278526, 0.005571236368268728, 0.022730644792318344, 0.011767889373004436, -0.04462740197777748, 0.018762486055493355, 0.022371210157871246, -0.04566257447004318, 0.021091623231768608, 0.028510354459285736, 0.019826414063572884, 0.025519857183098793, 0.029315486550331116, -0.003202562453225255, -0.029559902846813202, 0.01224234327673912, -0.03424692898988724, -0.047100313007831573, -0.025893669575452805, 0.0026400473434478045, 0.0422695092856884, -0.010416415520012379, -0.006135548930615187, 0.04002663865685463, -0.010006659664213657, -0.021149132400751114, 0.028941676020622253, -0.007684711832553148, 6.941580795682967e-05, 0.009568149223923683, -0.07625764608383179, 0.03694987669587135, -0.05371391028165817, -0.008662373758852482, -0.026914464309811592, -0.010100112296640873, 0.04859555885195732, -0.04252830520272255, 0.01756916381418705, -0.019970187917351723, 0.011537850834429264, 0.011660058982670307, -0.020760944113135338, -0.031889040023088455, -0.004870338831096888, 0.02290317416191101, 0.062282830476760864, -0.01060332078486681, 0.017152220010757446, -0.0017863900866359472, 0.019941432401537895, -0.042470794171094894, -0.04370724782347679, 0.06423815339803696, 0.01570010371506214, 0.05098220705986023, 0.002145824721083045, 0.015556329861283302, -0.02165234088897705, 0.022687513381242752, -0.03341304138302803, -0.020272111520171165, 0.035195838660001755, -0.01723848469555378, -0.023679552599787712, 0.021566076204180717, -0.08120346814393997, -0.04399479553103447, -0.025979934260249138, 0.0011465963907539845, 0.04244203865528107, -0.023320117965340614, 0.015196895226836205, 0.0509534515440464, -0.010466735810041428, 0.025663631036877632, 0.00746186263859272, 0.0037381199654191732, -0.0017585338791832328, -0.03209032118320465, -0.012378928251564503, 0.02840971201658249, 0.015930142253637314, 0.0356559120118618, -0.04477117583155632, -0.002436966635286808, 0.014779951423406601, 0.019826414063572884, -0.008935544639825821, -0.004798451904207468, -0.048653069883584976, -0.023205097764730453, -0.050637148320674896, -0.0013263137079775333, 0.00228780135512352, 0.009036186151206493, -0.031745266169309616, -0.021091623231768608, -0.0273889172822237, 0.008676751516759396, 0.03542587533593178, -0.004399479832500219, 0.009323733858764172, -0.0064302850514650345, -0.05020582675933838, 0.01422642171382904, -0.0024531411472707987, -0.021221019327640533, -0.031141415238380432, 0.016519615426659584, 0.014017949812114239, 0.03459198772907257, 0.022414343431591988, 0.040601734071969986, 0.009798187762498856, -0.0030048734042793512, 0.0031971707940101624, -0.02117788791656494, 0.012436437420547009, 0.08729948103427887, 0.024671591818332672, -0.02080407552421093, 0.012997156009078026, -0.010488302446901798, 0.009560960344970226, 0.030077489092946053, -0.002997684758156538, 0.004974575247615576, 0.03539711982011795, -0.0030138592701405287, 0.01225672010332346, -0.0019139893120154738, 0.007048512808978558, -0.005186641588807106, 0.00859767571091652, 0.01870497688651085, -0.00030821518157608807, -0.03763999417424202, -0.03755372762680054, 0.005855189636349678, 0.011185605078935623, -0.03050881065428257, 0.031198924407362938, 0.03528210148215294, -0.016045160591602325, 0.00425570597872138, -0.0019553243182599545, -0.009920394979417324, -0.004345564637333155, 0.012558645568788052, -0.040199168026447296, -0.021379170939326286, -0.030336281284689903, -0.01702282391488552, -0.015211272984743118, 0.010445170104503632, 0.02158045396208763, 0.01936633698642254, 0.0002334078453714028, 0.00025452463887631893, 0.0069802203215658665, -0.010380472056567669, -0.005887539125978947, 0.01281024981290102, 0.014456460252404213, 0.0021799709647893906, 0.016303954645991325, -0.0018762486288323998, -0.017109086737036705, 0.016936559230089188, 0.0029240006115287542, 0.02264438010752201, 0.02514604479074478, -0.03025001659989357, -0.03142896294593811, 0.02767646498978138, 0.021954266354441643, 0.022428719326853752, 0.02250060625374317, 0.01653399132192135, 0.0043275929056108, -0.0006254162290133536, 0.006351209711283445, -0.0521899051964283, -0.014765573665499687, 0.0032546804286539555, -0.009000242687761784, -0.01570010371506214, 0.03421817347407341, 0.003488312941044569, -0.0399978831410408, -0.01284619327634573, -0.012903702445328236, -0.04005539417266846, -0.026109330356121063, 0.03209032118320465, 0.009596903808414936, -0.0016893426654860377, -0.01749727688729763, 0.0017207931960001588, 0.009632847271859646, -0.011444398202002048, 0.012235154397785664, -0.010294207371771336, -0.020933471620082855, 0.03683485835790634, 0.005797680467367172, 0.04652521759271622, 0.011875719763338566, -0.005736576393246651, 0.02698635123670101, 0.021997397765517235, -0.011386888101696968, 0.010948378592729568, 0.04097554460167885, -0.019711393862962723, -0.00692989956587553, 0.04353472217917442, -0.01719535142183304, -0.011113718152046204, -0.02002769708633423, 0.0043168095871806145, 0.03815757855772972, 0.01955324225127697, 0.01620331220328808, 0.0033768881112337112, -0.006868795491755009, -0.011049020104110241, 0.0006267640856094658, 0.03186028450727463, -0.014132969081401825, 0.009474696591496468, 0.008626430295407772, 0.0007080861832946539, -0.0044785551726818085, 0.00043491588439792395, 0.04120558500289917, 0.012026682496070862, 0.04086052626371384, 0.02782023884356022, 0.007684711832553148, 0.02066030167043209, -0.0047049992717802525, 0.019280072301626205, 0.022112417966127396, 0.00841795839369297, -0.0032241283915936947, -0.02554861269891262, 0.010315773077309132, 0.03925025835633278, -0.027777107432484627, 0.023765817284584045, -0.035857196897268295, 0.03496579825878143, 0.01493810210376978, 0.012285474687814713, 0.03197530284523964, 0.02602306567132473, 0.015038744546473026, 2.1867945179110393e-06, 0.00013344010221771896, -0.014485214836895466, 0.0039717527106404305, -0.03140020743012428, -0.01768418215215206, -0.04270083084702492, 0.024455931037664413, 0.027245143428444862, -0.041406866163015366, -0.03180277347564697, 0.0006245176191441715, 0.0006824765005148947, -0.08810461312532425, -0.01319843903183937, -0.003125283867120743, -0.028869789093732834, 0.017152220010757446, 0.01804361678659916, 0.030738847330212593, -0.004607951734215021, -0.02771959826350212, -0.004176630172878504, -0.018575580790638924, 0.00665313471108675, -0.004949414636939764, -0.00703772995620966, -0.01291808020323515, 0.02002769708633423, -0.017554786056280136, 0.027072615921497345, -0.049343183636665344, 0.010330150835216045, -0.03827259689569473, -0.02922922372817993, 0.03485077992081642, -0.0014323468785732985, 0.0032169397454708815, 0.04195320978760719, 0.022730644792318344, -0.04373600333929062, -0.006832852028310299, 4.782165342476219e-05, 0.012041059322655201, -0.013090608641505241, 0.030278772115707397, 0.023334495723247528, -0.03787003085017204, -0.017267238348722458, 0.0068939561024308205, -0.0010145042324438691, -0.0544615313410759, 0.04042920470237732, -0.045892611145973206, -0.02436966635286808, 0.0037596861366182566, -0.042470794171094894, -0.00200384808704257, 0.038617655634880066, 0.009726300835609436, -0.006113982759416103, -0.014909347519278526, 0.014125780202448368, -0.0233057402074337, 0.010028225369751453, -0.005467000417411327, -0.03936528041958809, -0.004388696514070034, 0.0008594980463385582, 0.009165582247078419, 0.03953780606389046, -0.018029240891337395, 0.036662328988313675, -0.04304588958621025, 0.008921166881918907, -0.007756598759442568, -0.01877686381340027, -0.02514604479074478, -0.0025070563424378633, 0.013507552444934845, -0.015254405327141285, -0.005732981953769922, 0.005837217904627323, -0.0033157842699438334, -0.02326260879635811, 0.044713664799928665, -0.0024962734896689653, -0.009632847271859646, -0.009028997272253036, 0.01595889776945114, 0.008957110345363617, 0.032694172114133835, -0.005927076563239098, 0.01853244937956333, -0.025232309475541115, 0.000528368866071105, 0.008238241076469421, 0.008856468833982944, 0.0389627106487751, -0.03487953543663025, -0.01650523766875267, -0.01976890303194523, 0.018101127818226814, -0.016375841572880745, 0.036806102842092514, 0.009560960344970226, -0.035713423043489456, 0.011207171715795994, -0.07453235983848572, -0.016275199130177498, -0.0020775320008397102, -0.00743310758844018, 0.007368409540504217, 0.008957110345363617, 0.004873933270573616, 0.0366910845041275, 0.011559417471289635, -0.04474242031574249, 0.0031109065748751163, -0.048653069883584976, -0.030048733577132225, 0.024872874841094017, -0.018474938347935677, -0.0038064124528318644, 0.03200405836105347, 0.04109056666493416, 0.004978169221431017, 0.04111931845545769, -0.014197667129337788, -0.021364793181419373, -0.011329378932714462, 0.08568920940160751, -0.020602792501449585, -0.0440235510468483, 0.002560971537604928, 0.04770416021347046, 0.01955324225127697, -0.01940946839749813, -0.004942225757986307, -0.017411012202501297, -0.015743236988782883, 0.023061323910951614, -0.020847206935286522, 0.020085206255316734, 0.011178416199982166, 0.022227436304092407, -0.02514604479074478, 0.007842862978577614, -0.03220534324645996, -0.033326778560876846, 0.025016648694872856, -0.06343302130699158, 0.026842577382922173, 0.004935037344694138, 0.02970367670059204, 0.014779951423406601, -0.03211907669901848, -0.017540408298373222, -0.0008150179637596011, -0.026914464309811592, 0.00907931849360466, -0.007655957248061895, 0.0018510882509872317, 0.016749652102589607, -0.037323690950870514, -0.011890096589922905, 0.004525281954556704, 0.005330415442585945, -0.015484442934393883, 0.01926569454371929, 0.01264490932226181, -0.061477694660425186, -0.015038744546473026, -0.022960683330893517, -0.013133740983903408, 0.04410981759428978, -0.02021460235118866, -0.00851141195744276, 0.02451344020664692, 0.042585812509059906, 0.016045160591602325, 0.008432336151599884, 0.0008186123450286686, -0.000522528076544404, 0.004625923465937376, 0.010366094298660755, 0.031658999621868134, -0.024168383330106735, 0.006685483735054731, -0.009230281226336956, -0.02848159894347191, 0.026181217283010483, 0.018762486055493355, -0.02028648927807808, -0.02043026313185692, 0.023578910157084465, 0.012781495228409767, 0.0018942203605547547, 0.02172422781586647, -0.004525281954556704, -0.0070772673934698105, -0.01049549039453268, 0.03723742440342903, 0.03723742440342903, 0.006013341248035431, -0.02378019317984581, -0.010301396250724792, -0.00450371578335762, 0.024757856503129005, 0.0014350427081808448, 0.015556329861283302, 0.012163267470896244, -0.012472380883991718, 0.01823052391409874, 0.011731945909559727, -0.010322961956262589, 0.002145824721083045, -0.017741693183779716, -3.0664265068480745e-05, 0.01122873742133379, 0.052621226757764816, 0.02198302187025547, 0.008022580295801163, 0.016519615426659584, 0.017209729179739952, -0.027705220505595207, 0.011940417811274529, -0.03145771846175194, 0.047071557492017746, -0.026971973478794098, -0.02918609045445919, 0.025893669575452805, -0.01650523766875267, 0.006879578344523907, 0.026842577382922173, 0.010783038102090359, -0.0035709829535335302, -0.02465721406042576, -0.006757370661944151, 0.03654731065034866, -0.009352488443255424, 0.044167324900627136, -0.009553772397339344, -0.014449271373450756, 0.00749780610203743, 0.012321418151259422, -0.003033628221601248, 0.021120378747582436, 0.006006152369081974, -0.00887803453952074, -0.016447728499770164, 0.017526032403111458, 0.026598161086440086, 0.01049549039453268, -2.642406070663128e-05, 0.018661845475435257, -0.04500121250748634, 0.02779148519039154, 0.03344179689884186, -0.03022126294672489, 0.0025717546232044697, 0.06941401213407516, -0.00364286988042295, 0.03217658773064613, -0.03076760284602642, -0.0330679826438427, -0.02389521338045597, 0.011221548542380333, 0.0002749674895312637, 0.03893395885825157, 0.03654731065034866, -0.016778407618403435, 0.028352202847599983, -0.014693686738610268, -0.036144744604825974, 0.009093695320189, 0.01794297620654106, 0.006502171978354454, -0.0024783017579466105, -0.004525281954556704, 0.010452358983457088, -0.013586628250777721, 0.04373600333929062, 0.010818981565535069, 0.0028934485744684935, 0.019064411520957947, 0.011444398202002048, 0.02524668723344803, -0.03398813679814339, -0.013313458301126957, 0.010013848543167114, 0.042183246463537216, 0.03807131573557854, -0.02124977484345436, -0.03384436294436455, 0.008108844980597496, -0.011293435469269753, 0.026511896401643753, -0.005398707929998636, 0.010380472056567669, 0.03620225563645363, 0.005980991758406162, -0.02569238655269146, -0.0161745585501194, -0.008820525370538235, 0.029559902846813202, -0.008108844980597496, 0.025332951918244362, -0.006239784881472588, 0.026670048013329506, 0.0031791990622878075, -0.020128337666392326, 0.01756916381418705, 0.03191779553890228, -0.012407682836055756, -0.013687269762158394, -0.030336281284689903, 0.047215331345796585, 0.031658999621868134, 0.04931442812085152, -0.003774063428863883, 0.013033099472522736, 0.012084191665053368, 0.0027065426111221313, 0.005988180637359619, 0.01376634556800127, -0.0049637919291853905, -0.016260821372270584, -0.03913524001836777, -0.0199989415705204, -0.007821297273039818, 0.023032570257782936, -0.03858890011906624, 0.033470552414655685, -0.012472380883991718, 0.00461154617369175, -0.011516285128891468, 0.019093167036771774, 0.024455931037664413, -0.016893425956368446, 0.0318315289914608, -0.0018241306534036994, 0.0009740677778609097, 0.03749622032046318, 0.004428234416991472, -0.004482149612158537, -0.009618470445275307, -0.018661845475435257, -0.012026682496070862, 0.009532205760478973, 0.03292420879006386, -0.023981478065252304, -0.0254767257720232, -0.016447728499770164, 0.032147832214832306, 0.049055635929107666, 0.02918609045445919, -0.004413857124745846, 2.5988807465182617e-05, 0.018834372982382774, 0.023722684010863304, -0.003748903051018715, 0.023090079426765442, 0.009898829273879528, 0.019308827817440033, 0.036403536796569824, -0.0031684162095189095, -0.009604092687368393, -0.0017423592507839203, 0.01823052391409874, -0.005546076223254204, -0.009740677662193775, -0.022960683330893517, -0.011221548542380333, 0.004996140953153372, -0.0025268252938985825, 0.005298066418617964, 0.009108073078095913, -0.031083906069397926, 0.032435379922389984, 0.016605878248810768, -0.009316544979810715, 0.002343513770028949, -0.004615140613168478, -0.05034960061311722, 0.02264438010752201, 0.011451587080955505, 0.005316038150340319, -0.027633333578705788, 0.016850294545292854, -0.02753269113600254, 0.021264152601361275, 0.06837884336709976, -0.00306058581918478, 0.0008446713327430189, -0.022701891139149666, -0.013263137079775333, -0.03329802304506302, 0.015642594546079636, 0.008439525030553341, -0.017741693183779716, 0.0012975590070709586, -0.005032084416598082, -0.005998963490128517, -0.018920637667179108, 0.01742538996040821, 0.017109086737036705, -0.013629760593175888, 0.03953780606389046, -0.003910648636519909, -0.013090608641505241, 0.008504223078489304, 0.023765817284584045, 0.0012616155436262488, -0.005650312174111605, -0.03884769231081009, -0.013615382835268974, 0.02503102645277977, -0.003109109355136752, 0.00262387259863317, 0.029674921184778214, 0.03476451709866524, -0.009201525710523129, 0.011465963907539845, 0.03476451709866524, 0.03907773271203041, 0.02859661728143692, 0.040227923542261124, 0.001460203086026013, -0.012623343616724014, 0.017583541572093964, 0.03568466752767563, -0.02359328791499138, 0.00900743156671524, 0.010847737081348896, 0.013363778591156006, -0.002045182976871729, -0.0008419755613431334, -0.011279058642685413, 0.010021037422120571, 0.021307284012436867, 0.01224234327673912, 0.0011762498179450631, -0.01119279395788908, 0.03157273679971695, -0.013263137079775333, 0.007044918369501829, 0.0004564819682855159, 0.015398179180920124, 0.01391011942178011, -0.014650554396212101, -0.015642594546079636, 0.009194337762892246, -0.034131910651922226, -0.0018124490743502975, 0.009690357372164726, 0.021623587235808372, 0.019121920689940453, 0.06774623692035675, -0.0027676464524120092, -0.02748955972492695, -0.003723742673173547, -0.019251318648457527, -0.00647701183333993, -0.0019032062264159322, 0.024240270256996155, -0.01775606907904148, 0.030997641384601593, -0.010251075029373169, 0.0009255441254936159, -0.015671350061893463, 0.024384044110774994, -0.0041550640016794205, -0.02996246889233589, -0.01716659776866436, 0.015815123915672302, 0.002618481172248721, -0.002997684758156538, 0.05888976529240608, 0.019610753282904625, -0.01811550371348858, -0.0039933184161782265, 0.011293435469269753, -0.001274195732548833, -0.0030120620504021645, 0.0029869016725569963, -0.00405082805082202, 0.02701510488986969, 0.016677765175700188, -0.01709471084177494, 0.026526274159550667, 0.029200468212366104, 0.012659287080168724, 0.01797172985970974, -0.0011762498179450631, -0.012630532495677471, -0.02782023884356022, -0.0057725198566913605, 0.0020793292205780745, -0.028956051915884018, -0.00961128156632185, -0.011509096249938011, -0.005269311368465424, 0.025002270936965942, 0.03013499826192856, -0.016232067719101906, 0.008130410686135292, -0.036259762942790985, 0.0018762486288323998, -0.0074762399308383465, 0.041004300117492676, -0.009654413908720016, 0.015009989030659199, 0.02370830625295639, 0.0351383276283741, 0.03490829095244408, 0.023090079426765442, 0.044167324900627136, -0.028467221185564995, -0.00267419358715415, -0.013701647520065308, 0.022213058546185493, -0.046697743237018585, -0.0022105227690190077, 0.0072174472734332085, -0.002046980196610093, 0.0007633492350578308, -0.018733732402324677, 0.03694987669587135, 0.018216146156191826, -0.0043060267344117165, 0.014032327570021152, 0.008331694640219212, 0.03660482168197632, 0.008791770786046982, 0.021810492500662804, 0.04356347396969795, -0.013335024006664753, -0.039825353771448135, -0.005416679661720991, -0.02987620420753956, 0.03646104782819748, -0.0276477113366127, -0.012321418151259422, -0.00040279142558574677, -0.005244151223450899, -0.008770204149186611, -0.010330150835216045, 0.040630489587783813, -0.001448521506972611, 0.0038639220874756575, 0.006520143710076809, -0.011221548542380333, -0.008288562297821045, -0.044454872608184814, -0.010617698542773724, 0.04117682948708534, -0.010294207371771336, 0.0016902412753552198, 0.0069155218079686165, -0.005082405637949705, 0.0405154712498188, -0.01493810210376978, -0.017957353964447975, -0.03870391845703125, -0.00028148223645985126, -0.008274184539914131, -0.03266541659832001, -0.026641294360160828, 0.019064411520957947, -0.004288055002689362, 0.005984586197882891, 0.01712346449494362, 0.005905510857701302, -0.001330806640908122, 0.004126309417188168, -0.02679944410920143, 0.0021979426965117455, 0.025304196402430534, 0.009841320104897022, -0.0004816423752345145, -0.01778482459485531, -0.00559639697894454, 0.00946750771254301, -0.00040301604894921184, -0.02620997279882431, -0.015470066107809544, -0.027432050555944443, 0.025261064991354942, 0.011703191325068474, 0.013097797520458698, -0.03329802304506302, 0.025936800986528397, 0.02826593816280365, 0.008288562297821045, -0.018460562452673912, 0.0051902360282838345, -0.005754548124969006, -0.02484412118792534, 0.008425147272646427, -0.011063397862017155, 0.027561446651816368, 0.03263666108250618, -0.011631304398179054, 0.00742591917514801, 0.0341031551361084, 0.007720655295997858, 0.010775850154459476, 0.0007763787871226668, 0.002188956830650568, 0.0323491171002388, -0.008295751176774502, -0.03145771846175194, -0.03424692898988724, 0.017482899129390717, -0.021149132400751114, 0.021292906254529953, -0.000789408280979842, 0.014240799471735954, 0.016735276207327843, -0.02429777942597866, -0.012501135468482971, 0.037726256996393204, -0.039279013872146606, 0.01229266356676817, -0.010739906691014767, -0.013069042935967445, -0.016706520691514015, -0.009855696931481361, -0.009302168153226376, 0.02198302187025547, 0.009194337762892246, 0.014470838010311127, 0.004446206148713827, -0.03789878636598587, 0.022773776203393936, -0.0020110367331653833, -0.01422642171382904, 0.00668907817453146, 0.0014871606836095452, 0.005941454321146011, 0.03841637074947357, -0.0002655323187354952, 0.013687269762158394, -0.008540166541934013, 0.0037021765019744635, -0.012537078931927681, -0.0005611673113889992, -0.001511422568000853, -0.02304694801568985, -0.05325383320450783, -0.0006851722137071192, 0.01003541424870491, 0.011386888101696968, 0.029128581285476685, 0.021192265674471855, -0.02715887874364853, 0.010883680544793606, -0.009776621125638485, -0.01893501542508602, -0.03528210148215294, -0.0006222711526788771, 0.0022662351839244366, 0.021824870258569717, -0.01837429776787758, 0.01877686381340027, 0.00812322273850441, 0.013205627910792828, -0.005711415782570839, -0.021163510158658028, -0.03801380470395088, 0.006315266247838736, 0.007735033053904772, -0.010610509663820267, 0.00622900202870369, 0.043390948325395584, -0.011113718152046204, -0.029099825769662857, -0.014420516788959503, 0.002144027501344681, 0.010754283517599106, -0.005873161368072033, 0.012091380544006824, 0.026670048013329506, 0.03879018500447273, -0.024570949375629425, 0.025979934260249138, 0.017439767718315125, -0.004665461368858814, -0.01020075473934412, -0.009805376641452312, 0.03168775513768196, -0.029171712696552277, -0.015153762884438038, -0.0211347546428442, -0.0030138592701405287, 0.05181609466671944, -0.005963020026683807, -0.012565834447741508, -0.005150698125362396, -0.013162495568394661, -0.008094467222690582, 0.02996246889233589, 0.016188934445381165, 0.01856120303273201, 0.024542195722460747, 0.007447485346347094, 0.008676751516759396, -0.04215449094772339, 0.01877686381340027, 0.006782531272619963, 0.004891905002295971, -0.03674859553575516, 0.035080816596746445, 0.030307525768876076, 0.006933493539690971, -0.0014682903420180082, 0.019208185374736786, -0.011775078251957893, -0.013385345228016376, -0.006387153174728155, -0.011530661955475807, -0.0026472359895706177, 0.005154292564839125, 0.03180277347564697, -0.007278550881892443, -0.03275168314576149, 0.034131910651922226, -0.025059781968593597, 0.011609737761318684, 0.00010260735143674538, 0.020085206255316734, -0.006185869686305523, -0.011509096249938011, 0.0288841649889946, 0.01775606907904148, 0.01639021746814251, -0.0221699271351099, 0.0005634137778542936, -0.03697863221168518, 0.019941432401537895, -0.011257492005825043, 0.014118591323494911, -0.017065955325961113, -0.00419100746512413, -0.014779951423406601, 0.015355046838521957, 0.011171228252351284, -0.017856711521744728, 0.022701891139149666, 0.013521930202841759, 0.01062488742172718, -0.02127852849662304, -0.009790998883545399, 0.007864429615437984, 0.028208428993821144, -0.004769697319716215, 0.005183047149330378, -0.015053121373057365, -0.03010624274611473, -0.0031306755263358355, -0.023693930357694626, 0.02073218859732151, -0.00616430351510644, -0.004431828856468201, -0.013608194887638092, -0.011099341325461864, -0.022543739527463913, 0.03395938128232956, 0.021451057866215706, 0.013047476299107075, -0.04620891436934471, 0.0288841649889946, 0.00177830271422863, 0.002636452903971076, -0.001398200634866953, 0.009898829273879528, 0.011803832836449146, 0.018661845475435257, -0.0061714923940598965, 0.016562746837735176, -0.026598161086440086, 0.04862431436777115, -0.002138635842129588, 0.016634633764624596, -0.0021242585498839617, 0.030566319823265076, -0.026310613378882408, 0.045490045100450516, 0.002580740489065647, 0.011904474347829819, 0.007706278003752232, 0.017698559910058975, 0.0020847206469625235, 0.002560971537604928, 0.0015770193422213197, 0.012062625959515572, -0.012357361614704132, -0.013356590643525124, 0.01570010371506214, -0.01631833054125309, 0.016002029180526733, -0.03787003085017204, 0.042988378554582596, 0.016879050061106682, -0.012867758981883526, -0.024240270256996155, -0.006850823760032654, 0.0018259278731420636, 0.05980991944670677, -0.05149979144334793, -0.02863975055515766, 0.012105757370591164, 0.0072390129789710045, 0.009675979614257812, 0.019423846155405045, -0.030336281284689903, 0.009992281906306744, 0.02705823816359043, 0.020228980109095573, -0.01115685049444437, 0.006919116247445345, -0.010437981225550175, 0.022428719326853752, 0.014600234106183052, -0.0014044907875359058, -0.015182518400251865, -0.013054665178060532, -0.009215903468430042, 0.0003619057242758572, 0.019711393862962723, -0.04344845563173294, -0.005905510857701302, -0.05707821622490883, 0.017540408298373222, -0.013493175618350506, -0.025591744109988213, 0.016922181472182274, 0.01771293766796589, 0.019136298447847366, -0.009927583858370781, 0.008957110345363617, 0.035742178559303284, 0.0045432536862790585, 0.03735244646668434, 0.009920394979417324, -0.01472244132310152]" -How United Manufacturing Hub Is Introducing Open Source to Manufacturing and Using Time-Series Data for Predictive Maintenance,"data, e.g., converting the distance of a light barrier into the machine status (running/not running). We also needed to store shifts, orders, and products and model the data. We did that via InfluxDB as well.The project was a nightmare. To be fair, InfluxDB was not its main driver, but it definitely was in the top five. Modeling relational data into a time-series database is a bad idea. The continuous queries were failing too often without even throwing error messages. The system could not handle the data buffered somewhere in the system and arrived late.“The stability of TimescaleDB allows us to focus on developing our microservices instead of running around fixing breaking API changes”Additionally, Flux as a query language is comparatively new and not as easy to work with as SQL. It quickly reached the point where we had to implement Python scripts to process data because Flux had reached its limits in use cases that would work seamlessly using SQL. So we felt like InfluxDB was putting unnecessary obstacles in our way.We even wrote a blog article aboutwhy we chose TimescaleDB over InfluxDB for the field of Industrial IoT.One of the main factors for us to use TimescaleDB as our database is the reliability and fault tolerance [the ability of a system to continue operating properly in case of failure] it offers to our stack. Since PostgreSQL has been in development for over 25 years, it is already very robust.“The reliability also manifests in the ease of horizontal scaling across multiple servers, which we are very interested in”The stability of TimescaleDB allows us to focus on developing our microservices instead of running around fixing breaking API changes, which newer, less stable databases like InfluxDB have shown to bring forth.The reliability also manifests in the ease of horizontal scaling across multiple servers, which we are very interested in.Being based on SQL was also a factor for us as SQL is the most well-known query language for relational databases—making working with it much easier. Almost any possible problem is already documented and solved somewhere on the Internet.Now, TimescaleDB is used in our stack as our main database to store the data coming in via MQTT/Kafka. We are storing (among others) machine states, product states, orders, worker shifts, and sensor data. Some are relational; some are time-series.If",https://www.timescale.com/blog/how-united-manufacturing-hub-is-introducing-open-source-to-manufacturing-and-using-time-series-data-for-predictive-maintenance/,468,"[-0.03603917360305786, -0.01188451424241066, 0.039460793137550354, -0.01088887918740511, 0.0955248475074768, 0.014808314852416515, -0.024680525064468384, 0.002843168331310153, -0.021469252184033394, 0.01247348077595234, 0.0024172188714146614, -0.03230905160307884, 0.011449799872934818, -0.028536856174468994, 0.03587089851498604, 0.056176237761974335, 0.01982855796813965, -0.017094068229198456, -0.05645669996738434, 0.029700767248868942, -0.02186189591884613, 0.01918349787592888, 0.022773392498493195, -0.0029500939417630434, -0.03267364948987961, -0.007060592994093895, -0.022282587364315987, 0.05129622668027878, 0.02630719542503357, -0.0817822813987732, 0.02440006285905838, -0.039432745426893234, -0.042181260883808136, 0.0167434923350811, 0.027919843792915344, 0.010846810415387154, 0.04347137734293938, 0.012010721489787102, 0.011428765952587128, -0.004890529904514551, -0.026629725471138954, 0.024217763915657997, 0.02052970789372921, 0.0007756485720165074, -0.023362359032034874, 0.0021560401655733585, -0.036375727504491806, -0.004091217648237944, -0.003905412508174777, 0.052333928644657135, -0.01981453411281109, -0.002843168331310153, -0.0187347624450922, -0.021637527272105217, 0.05844796821475029, -0.043331146240234375, -0.011260489001870155, 0.04627598449587822, 0.0009430484496988356, -0.02636328712105751, 0.02821432612836361, -0.0554470419883728, 0.037721939384937286, 0.03331870958209038, -0.0333467535674572, 0.04055459052324295, -0.016477053984999657, 0.031804222613573074, -0.029812950640916824, 0.060803838074207306, 0.05833578482270241, 0.0007037805626168847, 0.0056092101149261, -0.005837084259837866, 0.050314612686634064, -0.06366453319787979, -0.0015872311778366566, 0.06215004622936249, 0.022829484194517136, -0.007418180350214243, 4.204168726573698e-05, 0.00755841052159667, -0.021525343880057335, 0.007621514145284891, 0.00996335968375206, -0.02500305324792862, -0.019576143473386765, -0.02055775560438633, -0.007158754393458366, -0.021707642823457718, -0.0258023664355278, 0.06478637456893921, 0.01188451424241066, 0.015495442785322666, 0.035057563334703445, 0.0050132316537201405, 0.012193020433187485, 0.004448804538697004, -0.031187208369374275, 0.0185244157910347, -0.0022682242561131716, -0.0137916449457407, 0.007859905250370502, -0.01614050194621086, 0.026082826778292656, -0.012389342300593853, 0.03598308190703392, 0.0025364146567881107, 0.0006788020837120712, 0.008217493072152138, -0.0838576927781105, -0.014682107605040073, -0.0422653965651989, 0.007127202581614256, -0.013420035131275654, -0.01604234054684639, -0.04568701609969139, 0.0077827791683375835, 0.01349716167896986, 0.004073688760399818, -0.015607627108693123, 0.00968991033732891, -0.02637731097638607, 0.028480764478445053, 0.023292245343327522, -0.005616221576929092, 0.03814262896776199, -0.03076651692390442, -0.02503109909594059, -0.010363015346229076, 0.038927916437387466, -0.049220819026231766, 0.025157306343317032, -0.020431548357009888, -0.036908600479364395, -0.009907267056405544, -0.031720083206892014, -0.0003797172394115478, 0.009058874100446701, -0.012157962657511234, -0.031299393624067307, -0.046556442975997925, 0.03157985210418701, -0.01614050194621086, -0.011183362454175949, 0.022198447957634926, -0.008133354596793652, 0.054970256984233856, 0.0025101215578615665, 0.0014627767959609628, -0.0037231130991131067, 0.005651279352605343, -0.0218899417668581, -0.010524280369281769, 0.052305884659290314, -0.0032796349842101336, 0.03777803108096123, 0.05202542245388031, 0.011085201054811478, -0.029644675552845, 0.01349014975130558, 0.03399181365966797, -0.02173568867146969, -0.01514486689120531, -0.02434397116303444, -0.0011095718946307898, -0.031692035496234894, -0.05771877244114876, -0.06949811428785324, -0.012697849422693253, -0.034328363835811615, -0.04220930486917496, -0.008217493072152138, 0.03270169347524643, 0.016336824744939804, 0.0001858050818555057, -0.012157962657511234, -0.0528387576341629, 0.03923642262816429, -0.03090674802660942, -0.06035510078072548, -0.012845090590417385, -0.01287313736975193, 0.006688983179628849, -0.008210481144487858, -0.03483319282531738, -0.09042046964168549, 0.03295410796999931, 0.00021111225942149758, 0.04431276023387909, -0.060186825692653656, 0.05783095583319664, 0.007586456835269928, 0.026054780930280685, 0.00612105056643486, -0.04689299687743187, 0.009612783789634705, 0.028677087277173996, -0.04557483270764351, 0.0332065224647522, 0.05278266593813896, 0.035618484020233154, 0.03682446479797363, -0.021483274176716805, 0.004231447819620371, 0.007390134036540985, 0.007109673693776131, 0.0067801326513290405, -0.06433764100074768, -0.036375727504491806, -0.019744418561458588, 0.006057946942746639, 0.00088520348072052, 0.004231447819620371, -0.012038767337799072, -0.00464512687176466, -0.042041029781103134, -0.012739918194711208, 0.002352362498641014, -0.017711080610752106, 0.03387963026762009, 0.06938593089580536, -0.01602831855416298, -0.033066295087337494, -0.027765590697526932, 0.04445299133658409, 0.030962839722633362, -0.024035464972257614, 0.02577432058751583, -0.007151742931455374, -0.005037772003561258, -0.04863185063004494, 0.014878429472446442, -0.05985027179121971, 0.015747856348752975, -0.004697713535279036, -0.0011788106057792902, -0.029139846563339233, -0.04380793124437332, -0.0048204148188233376, -0.05600796267390251, -0.004736276809126139, -0.000645059160888195, 0.006881799548864365, -0.018159817904233932, 0.009724968113005161, -0.04627598449587822, -0.05056702718138695, 0.00021516579727176577, 0.03805848956108093, 0.02183385007083416, -0.02707846090197563, 0.028691109269857407, -0.04282631725072861, -0.029083754867315292, -0.06310361623764038, -0.017206251621246338, 0.0019772464875131845, 0.0093673812225461, 0.01157600712031126, -0.008357723243534565, -0.02002488076686859, -0.00022546395484823734, 0.026223057880997658, -0.06029900908470154, 0.0006980837206356227, 0.006496166344732046, -0.026082826778292656, -0.009528645314276218, -0.04288241267204285, 0.048463575541973114, 0.01253658439964056, 0.020655915141105652, -0.04100332409143448, -0.014738199301064014, -0.035590436309576035, 0.005041277501732111, 0.014149232767522335, -0.001021927921101451, 0.015341189689934254, 0.011807386763393879, -0.05272657424211502, 0.0041122520342469215, 4.045314199174754e-05, 0.017767172306776047, 0.015817971900105476, 0.011106235906481743, 0.02899961546063423, 0.0015232510631904006, -0.031103068962693214, -0.01064347568899393, 0.028677087277173996, 0.013062448240816593, -0.023488566279411316, -0.003449664218351245, 0.010405085049569607, -0.0071342140436172485, 0.04509804770350456, -0.029672721400856972, -0.002348856767639518, 0.02503109909594059, 0.013041413389146328, 0.002038597362115979, -0.02322212979197502, 0.016925791278481483, 0.005672313738614321, 0.0014601474395021796, 1.1181445188412908e-05, 0.018748784437775612, 0.029364215210080147, 0.004939610604196787, -0.03603917360305786, 0.0046486328355968, 0.003184979548677802, -0.06540338695049286, -0.01607038639485836, 0.04557483270764351, -0.014268428087234497, -0.010138647630810738, -0.07359283417463303, -0.023334313184022903, -0.08817677944898605, -0.0014829349238425493, -0.007397145964205265, -0.0009789824252948165, -0.03278583288192749, 0.001656469888985157, 0.008273584768176079, 0.0016994153847917914, -0.009479564614593983, -0.0060088662430644035, -0.01349014975130558, 0.03716101497411728, 0.023993395268917084, -0.027302829548716545, -0.06624477356672287, -0.01793544925749302, 0.04125573858618736, -0.015565558336675167, 0.00839278008788824, -0.00992830190807581, -0.02641937881708145, -0.0835772305727005, 0.01922556757926941, 0.03469296544790268, 0.021721666678786278, -0.013777622021734715, 0.0005350660649128258, 0.020066948607563972, -0.0077196755446493626, -0.051155995577573776, 0.0034198651555925608, 0.0010981782106682658, -0.009788071736693382, 0.01925361342728138, -0.022380748763680458, -0.0016336824046447873, 0.015930157154798508, -0.03584285080432892, -0.019632235169410706, -0.025283513590693474, 0.03990953043103218, 0.005121910013258457, 0.013321873731911182, -0.02444213256239891, -0.010720603168010712, -0.0004386577638797462, -0.026545586064457893, -0.040750909596681595, -0.03323457017540932, 0.02120281383395195, -0.011225431226193905, -0.03766584396362305, -0.01872073858976364, -0.03710492327809334, -0.021034536883234978, 0.017542803660035133, 0.02444213256239891, -0.008757378906011581, 0.05738221853971481, 0.05258634313941002, 0.04159229248762131, -0.017220275476574898, -0.028130188584327698, 0.03466491773724556, 0.04420057684183121, 3.226391345378943e-05, 0.04004976153373718, -0.06686178594827652, 0.008757378906011581, 0.0476221926510334, -0.008582090958952904, 0.0020824193488806486, -0.023446498438715935, -0.02116074413061142, -0.0070921448059380054, 0.016308778896927834, 0.029953181743621826, 0.0461077056825161, 0.03584285080432892, 0.03143962100148201, -0.008490941487252712, -0.05090358108282089, 0.007852894254028797, 0.004575011786073446, -0.0010403331834822893, 0.007915997877717018, 0.016224639490246773, -0.019744418561458588, -0.011022097431123257, -0.03940470144152641, -0.016477053984999657, 0.03390767425298691, 0.008652206510305405, 0.017122114077210426, -0.05505439639091492, -0.022128334268927574, 0.0657399445772171, 0.003374290419742465, 0.055475085973739624, 0.006163119338452816, -0.002997421659529209, -0.04285436496138573, -0.00932531151920557, -0.025367652997374535, 0.05387646332383156, 0.04708931967616081, -0.04577115550637245, -0.03258951008319855, -0.05334358662366867, 0.0017651482485234737, -0.039432745426893234, 0.030514102429151535, 0.015551534481346607, -0.0012208796106278896, 0.0187347624450922, 0.02242281660437584, -0.055531181395053864, 0.01127451192587614, 0.0020403501112014055, 0.003842308884486556, 0.029981227591633797, 0.04540655389428139, 0.010930947959423065, -0.019155452027916908, -0.007789790630340576, -0.035674575716257095, 0.01442969311028719, 0.025213399901986122, 0.0008843270479701459, 0.053624048829078674, -0.01320267841219902, -0.019646259024739265, 0.025886503979563713, -0.007684617768973112, -0.033711351454257965, 0.03202858939766884, -0.012017732486128807, 0.052922897040843964, -0.014233370311558247, -0.02814421057701111, 0.03219686448574066, -0.060186825692653656, -0.038843780755996704, -0.0053007034584879875, -0.025311561301350594, 0.06097211316227913, 0.007565421983599663, 0.017136136069893837, -0.02378305047750473, -0.028074096888303757, 0.031131116673350334, 0.006078981328755617, -0.0031902382615953684, -0.02498903125524521, 0.030962839722633362, 0.029644675552845, 0.0075513990595936775, 0.032533418387174606, -0.0005284927319735289, 0.019702350720763206, 0.007120191119611263, -0.04607966169714928, 0.04262999817728996, 0.012852102518081665, 0.048491619527339935, -0.0013716270914301276, 0.035001471638679504, -0.014170266687870026, 0.04055459052324295, -0.016589239239692688, -0.009437495842576027, 0.06243050843477249, -0.016967860981822014, -0.012480492703616619, 0.0008593485108576715, -0.07510732114315033, -0.0336272157728672, -0.014373600482940674, -0.02061384730041027, 0.06085992977023125, 0.0023330808617174625, 0.009731979109346867, 0.0345807783305645, -0.02303983084857464, 0.0051359329372644424, 0.0027713002637028694, -0.002273482969030738, -0.0074462261982262135, -0.05990636348724365, 0.045266326516866684, 0.019674304872751236, 0.05631646886467934, 0.03615135699510574, -0.01792142540216446, 0.016491077840328217, -0.00959876086562872, 0.01670142263174057, -0.02064189314842224, -0.01028588879853487, -0.029981227591633797, -0.03539411723613739, -0.036936648190021515, -0.0011849455768242478, -0.022240517660975456, 0.011561984196305275, -0.06478637456893921, -0.006036912556737661, -0.013013367541134357, -0.008785425685346127, 0.02766742929816246, -0.01860855519771576, 0.018201885744929314, -0.009724968113005161, -0.03155180811882019, 0.018243955448269844, -0.027120530605316162, -0.030037319287657738, -0.05196933075785637, 0.026461448520421982, 0.0036600094754248857, 0.023264199495315552, 0.02501707710325718, 0.05410083010792732, 0.018426254391670227, 0.004518919624388218, 0.0015995013527572155, -0.011856467463076115, -0.039460793137550354, 0.044649310410022736, 0.018973153084516525, -0.020151088014245033, -0.013742564246058464, -0.011828421615064144, 0.029420306906104088, 0.02828444167971611, 0.026110872626304626, 0.009774048812687397, 0.014044059440493584, 0.004992196802049875, 0.0062577747739851475, 0.0007423438946716487, 0.005977314431220293, 0.012788998894393444, -0.008084273897111416, -0.0032025084365159273, -0.008848529309034348, -0.022633163258433342, -0.03867550194263458, 0.0029132834170013666, -0.00932531151920557, -0.015004636719822884, 0.010601406916975975, 0.0256621353328228, 0.002454029396176338, 0.013083482161164284, -0.05474589020013809, -0.01803361065685749, 0.03648791089653969, -0.009844163432717323, -0.03850722685456276, -0.04434080421924591, -0.015214982442557812, 0.04478954151272774, -0.028018003329634666, 0.009402438066899776, 0.018468324095010757, -0.006022889167070389, 0.013840725645422935, -0.030065365135669708, -0.011330604553222656, 0.00497817387804389, -0.006345418747514486, -0.01353221945464611, 0.023614773526787758, 0.0013251758646219969, 0.007642548531293869, 0.0358148068189621, -0.023923281580209732, 0.030037319287657738, 0.008483930490911007, -0.021413158625364304, 0.002816875232383609, -0.038955964148044586, -0.02127292938530445, 0.025549951940774918, 0.015775904059410095, 0.0102578429505229, 0.04246171936392784, -0.0034514169674366713, 0.016406940296292305, -0.005665302276611328, -0.0030745482072234154, -0.06770316511392593, -0.022142356261610985, -0.003234060248360038, -0.026741908863186836, -0.001968482043594122, 0.03236514329910278, -0.01670142263174057, -0.02322212979197502, -0.01346210390329361, -0.02944835275411606, -0.04779047146439552, -0.0083366883918643, 0.03452468663454056, -0.021020514890551567, -0.030654333531856537, -0.045350462198257446, 0.0166733767837286, 0.013258770108222961, 0.005356795620173216, 0.02128695137798786, 0.0018510393565520644, 0.01287313736975193, 0.06243050843477249, 0.022731324657797813, 0.05309117212891579, -0.002454029396176338, -0.008743355982005596, 0.03615135699510574, 0.018889015540480614, 0.006096510216593742, -0.009788071736693382, 0.010762671940028667, -0.0425458587706089, -0.013665437698364258, 0.03477710112929344, -0.012438423000276089, -0.013153597712516785, 0.026587655767798424, -0.01853843964636326, 0.05895279720425606, 0.01933775097131729, 0.027218692004680634, 0.009164046496152878, -0.014338543638586998, -0.021946033462882042, 0.015789926052093506, 0.01740257441997528, -0.04159229248762131, 0.0020683961920440197, -0.0042419652454555035, 0.011758306995034218, -0.016981882974505424, 0.014177278615534306, 0.02647547237575054, 0.014303485862910748, 0.05070725828409195, 0.021623505279421806, 0.004164838697761297, 0.013258770108222961, 0.013286815956234932, 0.00867324136197567, -0.011926583014428616, 0.011323592625558376, 0.029728813096880913, -0.022128334268927574, 0.02567615918815136, 0.05415692180395126, -0.033683307468891144, 0.026699839159846306, -0.037525616586208344, 0.016911767423152924, -0.001655593398027122, -0.017865333706140518, -0.03331870958209038, 0.01730441302061081, 0.028635017573833466, 0.0256621353328228, 0.013307850807905197, -0.0005083346622996032, 0.016911767423152924, -0.020838215947151184, -0.00998439360409975, -0.03679641708731651, -0.00038935805787332356, 0.05738221853971481, -0.03141157701611519, -0.02371293492615223, 0.003579377196729183, -0.011141293682157993, -0.051099903881549835, -0.01919752173125744, -0.0408911406993866, -0.01992671936750412, 0.022661209106445312, -0.02503109909594059, 0.02894352376461029, -0.035113655030727386, -0.023362359032034874, 0.029027661308646202, -0.0011025603162124753, 0.0137916449457407, -0.01257164217531681, -0.001262072240933776, -0.015565558336675167, 0.04543460160493851, -0.014864406548440456, 0.011477845720946789, -0.05656888335943222, 0.0009781060507521033, -0.02759731374680996, -0.053539909422397614, 0.034917332231998444, -0.03648791089653969, 0.012445434927940369, 0.046500351279973984, 0.011646122671663761, -0.04305068776011467, 0.012718884274363518, 0.005475991405546665, -0.0013041413621976972, -0.008175423368811607, 0.03216882050037384, -0.01939384452998638, -0.018776830285787582, -0.002853685524314642, -0.02179178036749363, -0.0008124590385705233, -0.04582724720239639, 0.02110465243458748, -0.03085065446794033, -0.019015222787857056, -0.005412887781858444, -0.03617940470576286, 0.01932372897863388, 0.04565896838903427, 0.02306787669658661, -0.016869699582457542, -0.009079908952116966, 0.012936240993440151, 0.02700834721326828, 0.002352362498641014, -0.019015222787857056, -0.02441408671438694, 0.00560570415109396, 0.023558681830763817, -0.016911767423152924, 0.03270169347524643, -0.0005328749539330602, 0.035057563334703445, -0.022310633212327957, -0.0012550607789307833, 0.005475991405546665, 0.011688191443681717, -0.020992469042539597, -0.013258770108222961, -0.008119331672787666, -0.03867550194263458, -0.009879221208393574, -0.001831757603213191, 2.649858834047336e-05, 0.012788998894393444, 0.055531181395053864, 0.004620586987584829, -0.0008295495645143092, -0.0008400668739341199, 0.02626512572169304, 0.011891525238752365, 0.02110465243458748, -0.006285821087658405, 0.006100015714764595, -0.014499807730317116, 0.012690837495028973, -0.008021170273423195, -0.0008781919605098665, 0.0015337683726102114, -0.020291317254304886, -0.022002127021551132, -0.004357655066996813, 0.0084068039432168, -0.004140298347920179, 0.02064189314842224, 0.0061385794542729855, 0.002059631748124957, -0.00305877230130136, -0.10236808657646179, -0.027344899252057076, 0.03738538548350334, -0.004255988169461489, 0.004932599142193794, -0.017080044373869896, 0.03800239786505699, 0.03208468109369278, 0.03786216676235199, -0.02689616195857525, 0.020459594205021858, -0.04880012571811676, -0.03606722131371498, 0.018328092992305756, -0.005220070946961641, 0.02702236920595169, 0.025423744693398476, 0.034412503242492676, 0.012781986966729164, 0.01789337955415249, -0.01385474856942892, 0.001061367685906589, -0.01923959143459797, 0.06444982439279556, 0.01346911583095789, -0.016883721575140953, -0.015523488633334637, 0.012606699950993061, 0.0013689978513866663, -0.006976454984396696, -0.0024067016784101725, -0.02318006008863449, 0.0237409807741642, 0.007768755778670311, -0.008434849791228771, 0.016491077840328217, 0.011807386763393879, 0.001527633285149932, -0.013483138754963875, 0.010902902111411095, -0.02180580422282219, -0.03744147717952728, 0.053624048829078674, -0.05390450730919838, 0.0539325550198555, -0.027302829548716545, 0.01031393464654684, 0.0027870761696249247, -0.005048288963735104, -0.030458010733127594, 0.0030622780323028564, 0.004890529904514551, -0.01800556480884552, -0.024133626371622086, 0.016266709193587303, 0.027302829548716545, -0.05609210208058357, -0.00224894261918962, -0.013300839811563492, -0.017051998525857925, -0.03292606398463249, 0.023670867085456848, -0.005535589065402746, -0.058784522116184235, 0.012887160293757915, -0.013356931507587433, 0.0121789975091815, 0.034328363835811615, -0.001489946385845542, -0.024554317817091942, 0.03135548532009125, 0.024189718067646027, 0.023362359032034874, 0.008105308748781681, 0.004490873776376247, 0.024638455361127853, 0.03421618044376373, -0.01472417637705803, -0.013931875117123127, -0.03163594380021095, 0.014352566562592983, 0.008441860787570477, -0.013553253374993801, -0.013749576173722744, 0.004000067710876465, -0.012277158908545971, -0.00965485256165266, 0.01932372897863388, 0.014976590871810913, 0.02319408394396305, 0.04672471806406975, -0.014962567947804928, -0.01442969311028719, 0.0018177346792072058, 0.01793544925749302, 0.03026168793439865, 0.014710153453052044, -0.01058037206530571, 0.010229797102510929, -0.015733834356069565, 0.019435912370681763, -0.014023025520145893, 0.020431548357009888, 0.008315653540194035, -0.004943116568028927, 0.0057178884744644165, 0.017206251621246338, -0.0008286731317639351, -0.00863117165863514, -0.011064167134463787, -0.028508810326457024, -0.01257164217531681, 0.042125169187784195, 0.0410313718020916, 0.011961640790104866, 0.0025504378136247396, 0.008231515996158123, -0.03803044557571411, 0.0046591502614319324, -0.01609843224287033, 0.02180580422282219, -0.034412503242492676, -0.0319724977016449, 0.03850722685456276, -0.002461040858179331, 0.026223057880997658, 0.04347137734293938, -0.01220704335719347, 0.025928573682904243, -0.00770565215498209, 0.004073688760399818, 0.045967474579811096, -0.012228078208863735, 0.06158912554383278, 0.00902381632477045, -0.035001471638679504, 0.020459594205021858, -0.015481419861316681, 0.02494696155190468, 0.03584285080432892, 0.014016013592481613, 0.011316581629216671, 0.010419107973575592, -0.011302558705210686, 0.010089566931128502, 0.002815122250467539, 0.014023025520145893, 0.0001631272170925513, -0.028564902022480965, 0.007120191119611263, 0.02632121741771698, -0.028803294524550438, -0.010299911722540855, 0.07202225923538208, -0.004101735074073076, 0.06237441673874855, -0.04686494916677475, -0.036880556493997574, -0.029840998351573944, 0.014443716034293175, -0.004767828620970249, 0.04941714182496071, 0.021048560738563538, -0.013994978740811348, 0.03267364948987961, -0.020221201702952385, -0.00800013542175293, -0.008525999262928963, -0.012922218069434166, 0.03682446479797363, -0.008231515996158123, -0.011442788876593113, 0.009220139123499393, 0.005507543217390776, 0.04950127750635147, 0.017220275476574898, -0.00564076192677021, 0.02828444167971611, 0.024063510820269585, -0.0019106371328234673, -0.025157306343317032, -0.002466299571096897, 0.021455228328704834, 0.04507000371813774, 0.03385158255696297, -0.011779340915381908, -0.02508719265460968, 0.015803949907422066, -0.024708570912480354, 0.03786216676235199, 0.027288807556033134, 0.00863117165863514, 0.02563408948481083, 0.016911767423152924, 0.008490941487252712, 0.004434781614691019, 0.02570420503616333, 0.010440141893923283, -0.03915228694677353, 0.003940470051020384, -0.045294370502233505, 0.018762808293104172, 0.0035653540398925543, -0.024778684601187706, -0.00026315083960071206, 0.02633524127304554, -0.023474544286727905, 0.017206251621246338, -0.016561193391680717, 0.03359916806221008, 0.024063510820269585, 0.03516974672675133, 0.01807567849755287, -0.027821682393550873, -0.010419107973575592, 0.012824056670069695, 0.03149571269750595, 0.009486576542258263, -0.00873634498566389, -0.0319724977016449, -0.020992469042539597, -0.03331870958209038, -0.026489494368433952, 0.012094859033823013, -0.0256621353328228, 0.042097121477127075, -0.011001063510775566, -0.004133286885917187, -0.03357112035155296, -0.002865955699235201, 0.012354285456240177, -0.009009793400764465, 0.007789790630340576, -0.00497817387804389, 0.025493860244750977, 0.031299393624067307, -0.014555900357663631, -0.003402336500585079, 0.009192093275487423, 0.01055933814495802, 0.007852894254028797, -0.0023961844854056835, 0.024848800152540207, -0.02383914217352867, -0.009710945188999176, -0.011204397305846214, 0.03407594934105873, 0.029784904792904854, 0.019590165466070175, 0.0003775261284317821, 0.019688326865434647, -0.006962432060390711, 0.013146585784852505, 0.02378305047750473, 0.03385158255696297, 0.0237409807741642, 0.011646122671663761, 0.020347408950328827, 0.009647841565310955, -0.005335761234164238, -0.013595323078334332, 0.018398208543658257, 0.013896818272769451, 0.020221201702952385, -0.015649696812033653, 0.0042034019716084, -0.017122114077210426, -0.001227014698088169, -0.007053581532090902, 0.009809105657041073, -0.0370488315820694, 0.019786488264799118, 0.01797751896083355, -0.015327166765928268, -0.008932666853070259, 0.021721666678786278, -0.07168570160865784, 0.008771401830017567, -0.004964150954037905, -0.04731368646025658, -0.01794947311282158, 0.00048072682693600655, -0.007817836478352547, 0.0034829687792807817, 0.04543460160493851, -0.0019053785363212228, -0.006331395823508501, -0.012999344617128372, 0.023474544286727905, -0.0476221926510334, 0.004550471436232328, 0.0006428680499084294, -0.00963381864130497, 0.009872209280729294, -0.02449822425842285, 0.01995476521551609, -0.008883586153388023, 0.011148304678499699, 0.010734626092016697, -0.036964695900678635, 0.014079117216169834, -0.014205324463546276, 0.02313799224793911, 0.01511682104319334, -0.0021192296408116817, -0.003793228417634964, -0.02636328712105751, -0.020810170099139214, -0.0068467422388494015, 0.014303485862910748, -0.01600027084350586, 0.014331531710922718, 0.0066153621301054955, 0.02066993899643421, -0.013328885659575462, 0.018889015540480614, 0.030401919037103653, 0.024357995018363, 0.03284192457795143, 0.022899599745869637, 0.015621650032699108, 0.015046706423163414, 0.027821682393550873, 0.036263544112443924, -0.010019451379776001, 0.001831757603213191, 0.015074752271175385, 0.015032682567834854, -0.020894307643175125, 0.019113384187221527, 0.014373600482940674, -0.0014093139907345176, 0.008680252358317375, 0.0199687872081995, -0.021343044936656952, -0.006857259199023247, 0.03194444999098778, 0.004126274958252907, 0.006205188576132059, -0.005735417362302542, 0.026096850633621216, 0.00623674038797617, -0.010517268441617489, -0.002427736297249794, 0.0008475165814161301, -0.02376902848482132, 0.02700834721326828, 0.03671228140592575, -0.008722322061657906, 0.01678556017577648, 0.056344516575336456, 0.01475222222507, -0.009682898409664631, 0.013406012207269669, -0.013672449626028538, -0.0014338543405756354, -0.011029109358787537, -0.0121789975091815, 0.00468369061127305, 0.015341189689934254, -0.01614050194621086, 0.006503177806735039, -0.033739399164915085, 0.013903829269111156, 0.0030798069201409817, -0.002262965776026249, -0.018762808293104172, 0.04260195046663284, -0.019113384187221527, -0.0014478773809969425, 0.03393572196364403, 0.0180476326495409, -0.029420306906104088, -0.004809897858649492, -0.017711080610752106, 0.009213127195835114, -0.010720603168010712, -0.020151088014245033, 0.004291045479476452, 0.014107163064181805, 0.003249836154282093, -0.02508719265460968, 0.013945898972451687, 0.03988148272037506, -0.01121140830218792, 0.013784633949398994, -0.02316603809595108, 0.008561057038605213, -0.009374392218887806, 0.005700359586626291, -0.0024820754770189524, -0.022857531905174255, -0.013567277230322361, -0.008266573771834373, -0.020235225558280945, 0.03738538548350334, -0.024820754304528236, -0.027148576453328133, 0.0024855812080204487, -0.03421618044376373, -0.023418452590703964, -0.03494537994265556, 0.010012440383434296, -0.02306787669658661, 0.02511523850262165, -0.0033532558009028435, 0.0500902459025383, -0.004673173185437918, 0.017598897218704224, 0.032533418387174606, -0.029336169362068176, -0.027274783700704575, -0.019477982074022293, -0.0067170290276408195, -0.0256621353328228, 0.002781817689538002, 0.04055459052324295, -0.01672946847975254, 0.01919752173125744, -0.029784904792904854, 0.014541877433657646, 0.021679596975445747, -0.00797208957374096, 0.01352520752698183, 0.027765590697526932, 0.035674575716257095, 0.016547169536352158, 0.02259109355509281, 0.02128695137798786, -0.022927645593881607, -0.01987062580883503, 0.03727320209145546, -0.01736050471663475, 0.023404428735375404, -0.004224436357617378, -0.03233709558844566, -0.010089566931128502, -0.006667948327958584, -0.025381674990057945, 0.015214982442557812, 0.03494537994265556, -0.005149955861270428, -0.00597380893304944, 0.005083346739411354, -0.008112319745123386, 0.009199104271829128, -0.04414448142051697, -0.017781196162104607, 0.01982855796813965, -0.029167892411351204, 0.003575871465727687, 0.011393708176910877, -0.021090630441904068, 0.04052654281258583, 0.018370162695646286, -0.004837943706661463, -0.018384186550974846, -0.01799154095351696, -0.004582023248076439, 0.0003012759261764586, -0.04248976707458496, 0.011176351457834244, -0.001807217369787395, 0.01661728508770466, 0.020810170099139214, 0.038170672953128815, -0.009542668238282204, 0.006790650077164173, -0.009206116199493408, -0.02113269828259945, 0.020361432805657387, 0.011379685252904892, -0.00969692226499319, 0.0010394566925242543, -0.004126274958252907, 0.007334042340517044, 0.016308778896927834, -0.02447017841041088, -0.002908024936914444, -0.015214982442557812, 0.011821410618722439, 0.004035125486552715, 0.013714518398046494, -0.015285097062587738, 0.022661209106445312, 0.013686472550034523, 0.0018860968993976712, -0.02563408948481083, 0.020361432805657387, -0.000776963250245899, -0.022773392498493195, 0.007369099650532007, 0.0014890700113028288, 0.009100942872464657, 0.029869044199585915, -0.025269491598010063, 0.02632121741771698, 0.016911767423152924, 0.011646122671663761, 0.03219686448574066, -0.004336620680987835, 0.0029395767487585545, 0.019169475883245468, -0.003726618830114603, -0.010271865874528885, 0.0017984529258683324, 0.0185244157910347, -0.009640829637646675, 0.00675208680331707, -0.013742564246058464, -0.004711736459285021, 0.02569018118083477, -0.002276988700032234, -0.04133987799286842, -0.0015942426398396492, -0.025255467742681503, -0.0030675367452204227, -0.012354285456240177, -0.011835433542728424, 0.0023663854226469994, -0.011155316606163979, -0.013952909968793392, 0.01923959143459797, 0.0001319040748057887, 0.013279804959893227, -0.012024744413793087, -0.027358921244740486, 0.003020209027454257, -0.015607627108693123, -0.018762808293104172, -0.0015916133997961879, -0.0023278221487998962, 0.01055232621729374, 0.04248976707458496, -0.007817836478352547, 0.013125551864504814, -0.02891547791659832, 0.004122769460082054, -0.01665935479104519, -0.027863750234246254, -0.02691018581390381, -0.0028624499682337046, -0.010061520151793957, 0.03076651692390442, 0.021665573120117188, 0.019646259024739265, 0.01160405296832323, 0.029083754867315292, -0.0410313718020916, 0.005854613147675991, -0.028719155117869377, 0.007509329821914434, -0.024806732311844826, -0.017037974670529366, -0.006352430209517479, 0.014086129143834114, -0.010433130897581577, 0.022254541516304016, -0.009234162047505379, 0.010776694864034653, 0.021693620830774307, -0.005283174570649862, -0.038899872452020645, 0.012277158908545971, 0.01594417914748192, -0.01663130708038807, 0.010853821411728859, 0.04220930486917496, -0.013483138754963875, -0.03146766871213913, -0.0030254677403718233, -0.010187727399170399, -0.02242281660437584, -0.013048425316810608, 0.026489494368433952, 0.010636464692652225, 0.04807092994451523, -0.005412887781858444, 0.014170266687870026, -0.015046706423163414, -0.006173636764287949, -0.020179133862257004, 0.009079908952116966, 0.0060088662430644035, 0.0003060963354073465, -0.009851175360381603, -0.012522561475634575, -0.015649696812033653, 0.05314726382493973, -0.03744147717952728, 0.008918643929064274, -0.003020209027454257, -0.00641903979703784, 0.004140298347920179, 0.047958746552467346, 0.008455883711576462, 0.037020787596702576, 0.021399136632680893, 0.005528577603399754, 0.028130188584327698, -0.014212336391210556, -0.022689254954457283, 0.004245470743626356, -0.003477710299193859, -0.03648791089653969, 0.009150023572146893, -0.02124488353729248, -0.016575215384364128, 0.004227941855788231, -0.024119602516293526, -0.008722322061657906, -0.003803745610639453, -0.006096510216593742, -0.00992128998041153, 0.010860833339393139, 0.005107887089252472, 0.017009928822517395, -0.01872073858976364, -0.023404428735375404, 0.018384186550974846, -0.005977314431220293, 0.016280733048915863, 0.004701219033449888, 0.009128989651799202, -0.006005360744893551, -0.009121977724134922, 0.021385112777352333, 0.017654988914728165, 0.022002127021551132, -0.0119406059384346, -0.027134554460644722, -0.026699839159846306, -0.014583946205675602, -0.04195689037442207, 0.03017755039036274, -0.0001838330936152488, -0.0006897575221955776, 0.010727614164352417, -0.0150607293471694, 0.03208468109369278, -0.001807217369787395, 0.03592699021100998, 0.008953701704740524, 0.017051998525857925, 0.012326238676905632, -0.005381335970014334, 0.007965078577399254, 0.035702623426914215, 0.0019229073077440262, -0.009570715017616749, 0.002932565053924918, -0.0025732251815497875, 0.01157600712031126, -0.014990613795816898, 0.015032682567834854, -0.0043015629053115845, -0.002517133019864559, -0.012354285456240177, -0.013749576173722744, -0.004399724304676056, 0.004736276809126139, 0.0046556442975997925, 0.0045329430140554905, -0.0021209826227277517, 0.004070183262228966, -0.01992671936750412, 0.016392916440963745, 0.04636012017726898, 0.02127292938530445, 0.008469907566905022, 0.03026168793439865, -0.003172709373757243, -0.0013453339925035834, -0.00930427759885788, 0.05051093548536301, 0.020109018310904503, 0.020347408950328827, 2.4136311367328744e-06, -0.00013146585843060166, -0.018398208543658257, 0.02183385007083416, -4.464361700229347e-05, 0.010573361068964005, -0.01797751896083355, 0.004504896700382233, 0.006590821780264378, 0.025914549827575684, 0.0450139120221138, 0.01058037206530571, -0.017122114077210426, -0.014247393235564232, 0.011786352843046188, -0.04114355519413948, 0.006510189268738031, -0.018300047144293785, 0.021427182480692863, 0.0042034019716084, 0.017486711964011192, -0.018173839896917343, -0.0017660247394815087, 0.006958926096558571, 0.01724832132458687, -0.021385112777352333, -0.013847737573087215, -0.012859114445745945, 0.014878429472446442, 0.02825639583170414, 0.0007787161157466471, -0.02569018118083477, 0.004550471436232328, 0.03962906822562218, 6.502082396764308e-05, 0.0008413814939558506, -0.015439351089298725, -0.027947889640927315, 0.016392916440963745, 0.012620722874999046, -0.009234162047505379, -0.02440006285905838, -0.005328749772161245, -0.008589102886617184, 0.00498167984187603, 0.017865333706140518, -0.01352520752698183, 0.0036600094754248857, -0.051184043288230896, 0.030317779630422592, -0.006703006103634834, -0.01984257996082306, -0.00930427759885788, 0.035029515624046326, 0.02888743206858635, 0.0014855642803013325, 0.007565421983599663, 0.031720083206892014, 0.0072008236311376095, 0.00563725596293807, 0.02313799224793911, 0.01860855519771576]" -How United Manufacturing Hub Is Introducing Open Source to Manufacturing and Using Time-Series Data for Predictive Maintenance,"TimescaleDB didn’t exist, we probably would have to employ a PostgreSQL-based relational database system in addition to InfluxDB for time-series data. That would mean a lot of additional effort as we would have to manage two separate databases and the creation of datasets that span the two. This would also make the system more prone to errors as we would have to employ multiple querying languages.Current Deployment & Future PlansAs I mentioned, the United Manufacturing Hub is an open-source Helm chart for Kubernetes, which combines state-of-the-art IT/OT tools and technologies and brings them into the hands of the engineer.This allows us to standardize the IT/OT infrastructure across customers and makes the entire infrastructure easy to integrate and maintain.We typically deploy it on the edge and on-premise usingk3sas light Kubernetes. In the cloud, we use managed Kubernetes services likeAKS. If the customer is scaling out and okay with using the cloud, we recommend services likeTimescale.We are using TimescaleDB with MQTT, Kafka, and Grafana. We have microservices to subscribe to the messages from the message brokers MQTT and Kafka and insert the data into TimescaleDB, as well as a microservice that reads out data and processes it before sending it to a Grafana plugin, which then allows for visualization.✨Editor’s Note:Learn how you can improve your Grafana performance using downsampling in TimescaleDB.RoadmapWe are currently positioning the United Manufacturing Hub with TimescaleDB as an open-source Historian. To achieve this, we are currently developing a user interface on top of the UMH so that OT engineers can use it and IT can still maintain it.We can recommend our blog articlefor a good comparison between Historians and Open-Source databases.Furthermore, we are developing a Management Console on top of the Helm chart, which makes a lot of the typical operation tasks (monitoring, logging, changing the configuration, etc.) easily accessible for the OT engineer, reducing the workload of maintaining all the edge devices, servers, and so on for the IT person.Advice & ResourcesFor manufacturing, we recommend the previously mentioned blog articles and the official TimescaleDB documentation. For data models and data ingestions from MQTT and Kafka into TimescaleDB, we can also recommend looking at the United Manufacturing Hub source code (or using it directly).One last piece of advice: I can strongly recommend the bookDesigning Data-Intensive Applicationsby Martin Kleppmann. It really helped me",https://www.timescale.com/blog/how-united-manufacturing-hub-is-introducing-open-source-to-manufacturing-and-using-time-series-data-for-predictive-maintenance/,502,"[-0.03870213031768799, 0.011219186708331108, 0.057285062968730927, -0.019808990880846977, 0.040888357907533646, 0.017992058768868446, -0.018848823383450508, 0.021271400153636932, -0.018819279968738556, 0.0002679697936400771, 0.031168509274721146, -0.03096170537173748, 0.005018720868974924, -0.023132648319005966, 0.05291260778903961, 0.023088332265615463, -0.030016308650374413, -0.015362678095698357, -0.0499582476913929, 0.05105135962367058, -0.01366392057389021, 0.025791572406888008, 0.037402212619781494, 0.029115227982401848, -0.009284080006182194, -0.009882338345050812, -0.029927678406238556, 0.05914631113409996, -0.00420257868245244, -0.04540853202342987, 0.006706399843096733, -0.04591077193617821, -0.04174512252211571, 0.025466592982411385, 0.042808692902326584, 0.041863296180963516, 0.03929300233721733, 0.02333945222198963, 0.012105494737625122, 0.022674720734357834, -0.030607180669903755, -0.0009370864136144519, 0.013013960793614388, 0.037136320024728775, -0.00923976395279169, -0.019114715978503227, -0.029602698981761932, -0.015584254637360573, 0.002069899346679449, 0.044758569449186325, -0.02208384871482849, 0.017312556505203247, -0.025156384333968163, -0.029602698981761932, 0.008648891933262348, -0.020577125251293182, -0.006414656527340412, 0.017445502802729607, 0.03028220124542713, -0.00037668104050680995, 0.022719036787748337, -0.07758152484893799, 0.035718224942684174, 0.01748981699347496, -0.03639772906899452, -0.0007376670255325735, -0.023383768275380135, 0.037697646766901016, -0.040179312229156494, 0.010318106040358543, 0.045054007321596146, 0.007312043569982052, 0.0023819536436349154, -0.040888357907533646, 0.007947231642901897, -0.05568970739841461, -0.02666310966014862, 0.07746335119009018, 0.0034455235581845045, 0.0019997332710772753, -0.017135294154286385, -0.00777735561132431, -0.042011015117168427, 0.009653374552726746, 0.017283013090491295, -0.042276907712221146, -0.03205481916666031, -0.025569995865225792, -0.011071468703448772, -0.013257695361971855, -0.03152303397655487, 0.05843726173043251, -0.0022693185601383448, 0.0059271869249641895, 0.04221782088279724, 0.01858293078839779, -0.01227537076920271, 0.02094642072916031, -0.029883362352848053, 0.02472800202667713, -0.0058237845078110695, -0.03000153787434101, -0.0005821014638058841, -0.019646501168608665, 0.03799308463931084, -0.02611655183136463, 0.021300943568348885, -0.007792127318680286, 0.0201339703053236, 0.008013704791665077, -0.11084762960672379, -0.01732732728123665, -0.03958844020962715, 0.035186439752578735, -0.013058275915682316, -0.01694326102733612, -0.022275883704423904, -0.025363190099596977, 0.022246338427066803, -0.006950134411454201, -0.015185415744781494, -0.00805063359439373, -0.006643619388341904, 0.027800537645816803, -0.0038258975837379694, -0.008900012820959091, -0.0022102314978837967, -0.036722708493471146, -0.052262648940086365, -9.630525164538994e-05, 0.0346841998398304, -0.04375408962368965, 0.015318362042307854, -0.04245416820049286, -0.01055445522069931, -0.004948555026203394, -0.0457925982773304, 0.003955150954425335, 0.010502753779292107, -0.03438876196742058, 0.0009610906126908958, -0.05303078144788742, -0.01068740151822567, -0.021980445832014084, -0.0333251953125, 0.024329163134098053, -0.007020300719887018, 0.03926346078515053, 0.0022213102784007788, 0.0050815013237297535, -0.01227537076920271, 0.007193869445472956, -0.021758869290351868, -0.031700294464826584, 0.04174512252211571, 0.011957776732742786, 0.020074883475899696, 0.016071723774075508, 0.01929197832942009, -0.0555124469101429, 0.021847501397132874, 0.04951509088277817, -0.0005894873756915331, 0.0002922047860920429, 0.015000768937170506, -0.011056696064770222, -0.026013148948550224, -0.05022414028644562, -0.08987166732549667, -0.0061783078126609325, -0.040179312229156494, -0.02028168924152851, -0.0002453504712320864, 0.032261624932289124, 0.03040037676692009, 0.003958844114094973, -0.033088844269514084, -0.05303078144788742, 0.02861298806965351, -0.006654698401689529, -0.05619194731116295, 0.018627246841788292, -0.038643043488264084, 0.012127652764320374, -0.05246945470571518, 0.0026423067320138216, -0.07297272235155106, 0.005291999317705631, -0.003873906098306179, 0.056546472012996674, -0.05010596290230751, 0.05205584317445755, -0.005945651791989803, 0.014882594347000122, 0.024624599143862724, -0.026485847309231758, 0.017017120495438576, -0.010288562625646591, 0.008257439360022545, -0.0005617902497760952, 0.05778730288147926, 0.035895489156246185, 0.06280972063541412, -0.03775673359632492, 0.0006614999147132039, 0.008021090179681778, 0.015658114105463028, 0.003637557150796056, -0.03997250646352768, -0.025732485577464104, -0.005314156878739595, 0.02593929134309292, -0.005491418763995171, 0.02610178105533123, -0.010576613247394562, -0.0026570784393697977, -0.09353507310152054, -0.003622785210609436, -0.008560261689126492, -0.02886410802602768, -0.0016719837440177798, 0.07645886391401291, -0.001724608358927071, -0.01416616141796112, 0.007991546764969826, 0.043517738580703735, 0.03619092330336571, -0.02195090241730213, 0.04044520482420921, 0.015015540644526482, -0.013353711925446987, -0.06416872143745422, -0.005650215782225132, -0.03403424099087715, -0.0037077232263982296, -0.033679716289043427, 0.011861760169267654, -0.043931350111961365, -0.001311920932494104, -0.05382845923304558, -0.006765487138181925, 0.0011466614669188857, -0.00027212436543777585, 0.009040345437824726, -0.007131088990718126, 0.0036781795788556337, -0.028406182304024696, -0.044640395790338516, 0.0016498260665684938, 0.03938163444399834, 0.0485696978867054, -0.01955787092447281, 0.011403833515942097, -0.017932971939444542, -0.02317696250975132, -0.04898330569267273, -0.03497963398694992, -0.0015334980562329292, -0.009594287723302841, 0.017297783866524696, -0.003231332404538989, -0.018848823383450508, -0.009941425174474716, -0.0010340263834223151, -0.05220356211066246, 0.037284038960933685, 0.0263529010117054, -0.04481766000390053, -0.010798189789056778, -0.05456705018877983, 0.03539324551820755, 0.020429406315088272, 0.01886359602212906, -0.04316321760416031, -0.05152405798435211, -0.016559194773435593, -0.01695803366601467, 0.00015568098751828074, -0.006506980396807194, -0.019070401787757874, -0.008936942555010319, -0.05444887652993202, 0.034477394074201584, 0.006765487138181925, 0.03805217146873474, 0.0023616424296051264, 0.02010442689061165, 0.0333251953125, -0.003500917926430702, -0.018966998904943466, 0.010007898323237896, 0.017932971939444542, 0.008589805103838444, -0.032557059079408646, 0.02388601005077362, 0.015288818627595901, -0.00999312661588192, 0.021005507558584213, -0.05025368183851242, -0.03376834839582443, 0.016854630783200264, -0.018110234290361404, 0.01109362579882145, -0.012592963874340057, 0.009343166835606098, 0.023103103041648865, 0.0032793409191071987, -0.0019258741522207856, -0.0011854374315589666, 0.007131088990718126, -0.020769158378243446, -0.040740638971328735, 0.005820091348141432, 0.011086240410804749, -0.03164120763540268, -0.0086710499599576, 0.06023942306637764, 0.0013368483632802963, -0.016588738188147545, -0.06269153952598572, -0.010273790918290615, -0.08496742695569992, 0.0030079088173806667, 0.0025573689490556717, 0.04133151099085808, -0.025451820343732834, 0.031316228210926056, 0.011344746686518192, 0.0012537570437416434, 0.0022767046466469765, -0.013294625096023083, -0.011123169213533401, 0.03542279079556465, 0.004645732697099447, -0.01917380280792713, -0.022940613329410553, 0.004257972817867994, 0.02177364192903042, -0.02762327715754509, -0.007851215079426765, -0.011403833515942097, -0.0012020557187497616, -0.07468625158071518, -0.00707938801497221, 0.030843529850244522, 0.0044426205568015575, -0.03140486031770706, -0.026574477553367615, 0.0057831620797514915, -0.0073637450113892555, -0.04139059782028198, -0.02805165946483612, 0.0037169556599110365, -0.016322845593094826, 0.01263727992773056, 0.012917944230139256, 0.0215225201100111, 0.02249746024608612, -0.014594543725252151, -0.011285659857094288, -0.0332956500351429, 0.04050429165363312, 0.010096529498696327, -0.029779959470033646, 0.012164581567049026, -0.004660504870116711, -0.02542227692902088, -0.005151667166501284, -0.0374612994492054, -0.024772318080067635, 0.046442557126283646, -0.017430730164051056, -0.04360637068748474, -0.013006574474275112, -0.06907296180725098, 0.008080177940428257, 0.05958946421742439, 0.008730136789381504, -0.00887785479426384, 0.06706399470567703, 0.027165351435542107, 0.008427315391600132, 0.01818409189581871, -0.0013516201870515943, 0.04313367232680321, 0.028923194855451584, 0.002562908222898841, 0.045054007321596146, -0.035334158688783646, -0.012393545359373093, 0.02401895634829998, -0.015200188383460045, 0.002199152484536171, 0.00034621419035829604, -0.017977287992835045, 0.010030056349933147, -0.017947744578123093, 0.042424626648426056, 0.05051957443356514, 0.030577637255191803, 0.04653118923306465, -0.0008221432799473405, -0.05734414979815483, 0.020458951592445374, 0.011041924357414246, 0.008848311379551888, 0.00420257868245244, 0.032261624932289124, -0.03625001013278961, -0.020518038421869278, -0.02621995471417904, -0.04868787154555321, 0.029115227982401848, -0.021315716207027435, 0.06038714200258255, -0.037136320024728775, -0.017283013090491295, 0.058673612773418427, 0.021847501397132874, 0.02277812361717224, -0.037845365703105927, 0.011677112430334091, -0.019114715978503227, -0.011780515313148499, -0.04777202010154724, 0.02138957381248474, 0.060062162578105927, -0.02359057404100895, -0.014254792593419552, -0.06192341074347496, -0.011920846998691559, -0.0015916620614007115, 0.015584254637360573, 0.020577125251293182, -0.0361318364739418, 0.006894740276038647, 0.04233599454164505, -0.038672588765621185, 0.04954463616013527, 0.01546608004719019, 0.007902915589511395, 0.017135294154286385, 0.022792896255850792, 0.03790445253252983, -0.031463947147130966, -0.008722751401364803, -0.028937967494130135, -0.012135038152337074, -0.023945096880197525, 0.016426248475909233, 0.05164223164319992, -0.015510396100580692, -0.012755454517900944, 0.04410861060023308, -0.02164069563150406, -0.04774247482419014, 0.026160867884755135, -0.002158530056476593, 0.02025214582681656, -0.0058311703614890575, -0.04136105626821518, 0.048658326268196106, -0.06984109431505203, -0.009513042867183685, -0.024240532889962196, -0.03110942244529724, 0.042690519243478775, -0.01449852716177702, -0.00044338498264551163, -0.04109516367316246, 0.030341288074851036, 0.031848013401031494, -0.01858293078839779, -0.015406993217766285, -0.012364001013338566, 0.004383533261716366, 0.040858812630176544, -0.02107936702668667, 0.025599539279937744, -0.0033827435690909624, 0.005159053020179272, -0.02650061994791031, -0.03110942244529724, 0.06263245642185211, 0.03669316694140434, 0.03527507185935974, -0.009128975681960583, 0.006577146239578724, -0.005288306623697281, 0.030311744660139084, -0.022571319714188576, 0.0015805831644684076, 0.050992272794246674, -0.01844998449087143, -0.034920547157526016, -0.0050334925763309, -0.09542586654424667, -0.02206907793879509, -0.01621944271028042, 0.0006735019851475954, 0.03695905581116676, -0.022970158606767654, 0.02246791683137417, 0.06428689509630203, -0.0019849613308906555, 0.012999189086258411, -0.030208341777324677, 4.945092587149702e-05, -0.019779447466135025, -0.024905264377593994, -0.017992058768868446, 0.015392221510410309, 0.036161381751298904, 0.040061138570308685, -0.024092815816402435, 0.011728813871741295, 0.004605110269039869, 0.017829569056630135, -0.004571873694658279, 0.00012890707876067609, -0.02220202423632145, -0.019203348085284233, -0.04245416820049286, 0.007998933084309101, -0.007492998614907265, 0.02941066585481167, -0.04744704067707062, -0.021478205919265747, -0.011669726110994816, 0.006817188113927841, 0.02288152649998665, -0.015909234061837196, 0.029233403503894806, -0.008434700779616833, -0.035747770220041275, 0.0018594010034576058, -0.0070646158419549465, -0.024801861494779587, -0.038790762424468994, 0.022423600777983665, 0.016352389007806778, 0.03081398643553257, 0.012112881056964397, 0.04789019376039505, 0.008205737918615341, -0.0187306497246027, 0.007256649434566498, -0.022142937406897545, 0.00208282470703125, 0.06322332471609116, 0.020163515582680702, -0.026013148948550224, 0.002808489603921771, 0.0019092558650299907, 0.0037335739471018314, 0.0020551274064928293, 0.008382999338209629, 0.016869401559233665, 0.014070144854485989, 0.0066620842553675175, 0.03096170537173748, -0.0022803975734859705, -0.003174091689288616, -0.010532297194004059, 0.0069132051430642605, 0.007585322018712759, 0.00697967829182744, -0.039913419634103775, -0.05105135962367058, 0.01930674910545349, 0.01844998449087143, -0.0312275979667902, 0.012733296491205692, 0.03246842697262764, 0.012267984449863434, 0.013700849376618862, -0.017105750739574432, -0.03692951425909996, 0.029056141152977943, 0.019602185115218163, -0.03362062945961952, -0.010355035774409771, -0.01652965135872364, 0.0037224949337542057, -0.009764163754880428, 0.0009804785950109363, 0.040031593292951584, 0.0222315676510334, 0.007696110755205154, -0.022674720734357834, 0.010665243491530418, 0.007733040023595095, 0.0031814775429666042, 0.024343935772776604, 0.011219186708331108, 0.008634120225906372, 0.007241877727210522, 0.014941681176424026, -0.008065406233072281, 0.017829569056630135, 0.013553131371736526, 0.015510396100580692, 0.015185415744781494, -0.05122862011194229, -0.020163515582680702, 0.03302975744009018, 0.008220509625971317, 0.008301754482090473, 0.0415974035859108, 0.011728813871741295, 0.027239209040999413, -0.0026866220869123936, -0.004221043549478054, -0.057550955563783646, -0.03551141917705536, -0.0043872264213860035, -0.01485305093228817, 0.008139264769852161, 0.02554045245051384, -0.001247294363565743, -0.02734261192381382, -0.02387123741209507, -0.03264569118618965, -0.046028945595026016, -0.010857277549803257, 0.02889365144073963, 0.0074523757211863995, -0.009682918898761272, -0.030311744660139084, 0.009778935462236404, 0.01353097427636385, -0.004021624103188515, 0.017031891271471977, 0.016455791890621185, -0.01760799251496792, 0.03834760561585426, 0.035452332347631454, 0.04561533406376839, -0.007223412860184908, -0.006606690119951963, 0.03651590272784233, 0.0007861370104365051, -0.007190176285803318, 0.0047897580079734325, 0.02621995471417904, -0.014978610910475254, -0.0037889680825173855, 0.05424207076430321, -0.004025316797196865, -0.016308072954416275, -0.007659181021153927, -0.014749648049473763, 0.0444040484726429, 0.045881226658821106, 0.014468983747065067, -0.004110254812985659, -0.0201191995292902, -0.005362165626138449, -0.012460017576813698, 0.00986018031835556, -0.04183375462889671, 0.01214980985969305, -0.014661016874015331, 0.001063570030964911, -0.003981001675128937, 0.01069478690624237, 0.010864662937819958, 0.030164027586579323, 0.030873073264956474, 0.022807667031884193, -0.010539683513343334, 0.004708513151854277, 0.007577936165034771, 0.010613542050123215, 0.016145583242177963, 0.01026640459895134, 0.014247406274080276, -0.031020792201161385, 0.012002091854810715, 0.04534944146871567, -0.022851983085274696, 0.007814285345375538, -0.02316219173371792, 0.019602185115218163, -0.005373244173824787, 0.0013885496882721782, 0.00034944553044624627, 0.02041463553905487, 0.024373479187488556, -0.011743585579097271, 0.005140588153153658, -0.013073047623038292, 0.00436876155436039, -0.029779959470033646, -0.010665243491530418, -0.01997148059308529, 0.019188575446605682, 0.03152303397655487, -0.02970610186457634, -0.04053383320569992, 0.01227537076920271, 0.0022711651399731636, -0.07864509522914886, -0.01485305093228817, -0.011425991542637348, -0.026825599372386932, 0.028391409665346146, -0.0014282489428296685, 0.03873167559504509, -0.0201339703053236, -0.008331298828125, 0.006012124940752983, -0.018937455490231514, 0.012039021588861942, 0.010236861184239388, -0.021862272173166275, -0.022438373416662216, 0.03495009243488312, -0.011684497818350792, 0.02580634504556656, -0.06582316756248474, -0.0034473701380193233, -0.026707423850893974, -0.021980445832014084, 0.05397617816925049, -0.0006416502874344587, 0.019129488617181778, 0.035334158688783646, 0.022379284724593163, -0.039617981761693954, -0.012437860481441021, -0.001078341854736209, 0.025909747928380966, -0.0058717927895486355, 0.03149348869919777, 0.009719847701489925, -0.012541263364255428, -0.012866242788732052, -0.015746744349598885, -0.008545489981770515, -0.03681134060025215, 0.03415241464972496, -0.041981469839811325, -0.0221872515976429, 0.014764419756829739, -0.04248371347784996, 0.01747504621744156, 0.047565214335918427, 0.0004870079574175179, -0.001102345995604992, -0.03373880311846733, 0.014897366054356098, 0.00048746957327239215, -0.004738056566566229, -0.004645732697099447, -0.031198052689433098, -3.1794003007235005e-05, 0.01151462271809578, -0.005051957443356514, 0.04416769742965698, -0.0005243991035968065, 0.06186432018876076, -0.05040140077471733, 0.014572386629879475, -0.00937271025031805, -0.002930356888100505, -0.03994296118617058, 0.0131764505058527, 0.010295948944985867, -0.02427007630467415, 0.0025979913771152496, 0.006824573967605829, 0.010968065820634365, -0.008412543684244156, 0.048658326268196106, -0.030031081289052963, -0.0058311703614890575, 0.0061635361053049564, 0.012895786203444004, -0.010030056349933147, 0.033088844269514084, -0.0023320987820625305, 0.004468471277505159, -0.019897622987627983, 0.007666567340493202, 0.001824317965656519, 0.007755198050290346, 0.017800025641918182, -0.027830081060528755, -0.022453144192695618, -0.004690048284828663, 0.002821414964273572, -0.014402510598301888, 0.029322033748030663, -0.014712718315422535, -0.009188063442707062, 0.0048303804360330105, -0.06919113546609879, -0.04679708182811737, 0.019247662276029587, 0.009313623420894146, 0.009867565706372261, -0.0013876265147700906, -0.00416934210807085, 0.05051957443356514, 0.03235025331377983, -0.038790762424468994, -0.014380352571606636, -0.06150979921221733, -0.037549931555986404, 0.004117640666663647, -0.020606668666005135, 0.013811638578772545, 0.019203348085284233, 0.04750612750649452, 0.014336037449538708, 0.03495009243488312, 0.011536779813468456, -0.013294625096023083, -0.013183836825191975, 0.0777587816119194, 0.0059678093530237675, -0.03350245580077171, -0.01360483281314373, 0.025584766641259193, 0.01889313943684101, -0.019070401787757874, -0.004324445966631174, 0.015200188383460045, -0.008818767964839935, 0.0027604810893535614, -0.023280365392565727, 0.01366392057389021, 0.007537313736975193, 0.022423600777983665, -0.004173035267740488, 0.0035563122946769, -0.03911574184894562, -0.047978825867176056, 0.012460017576813698, -0.07238184660673141, 0.04969235509634018, -0.00013467732060234994, 0.02234974130988121, 0.014284336008131504, -0.01844998449087143, -0.004261665977537632, 0.01227537076920271, -0.012090723030269146, -0.011477692984044552, -0.015569482930004597, 0.012954873964190483, 0.01568765752017498, -0.037402212619781494, -0.01611603982746601, 0.009468727745115757, -0.008936942555010319, -0.008479016833007336, 0.018568160012364388, 0.004656811710447073, -0.07143644988536835, -0.022733809426426888, -0.006665777415037155, -0.0023690282832831144, 0.03565913811326027, 0.004634654149413109, -0.010849891230463982, 0.02902659773826599, 0.03873167559504509, 0.019941937178373337, 0.00048562310985289514, 0.011418606154620647, -0.007230798713862896, 0.01062092836946249, -0.009919267147779465, 0.023147419095039368, -0.013316783122718334, 0.012881014496088028, -0.009904495440423489, -0.022733809426426888, 0.021581608802080154, 0.01763753592967987, -0.006942748557776213, 0.0007690571364946663, 0.024358706548810005, 0.008486402221024036, 0.0033938223496079445, 0.0471516028046608, -0.01062831375747919, 0.002904506167396903, -0.004992870148271322, 0.037697646766901016, 0.022689493373036385, 0.027948256582021713, -0.006828267127275467, 0.016839858144521713, -0.0015150333056226373, 0.014276949688792229, -0.006506980396807194, 0.013915040530264378, 0.019823763519525528, -0.013338940218091011, 0.013567903079092503, 0.012467403896152973, -0.01970558799803257, -0.0012002092553302646, 0.00979370716959238, -0.015362678095698357, 0.021433889865875244, 0.054212525486946106, 0.024506425485014915, 0.018937455490231514, 0.004582952708005905, 0.004623575136065483, -0.025909747928380966, -0.009335781447589397, -0.01887836679816246, 0.03861349821090698, -0.038258977234363556, -0.044906288385391235, 0.029322033748030663, -0.0005931803025305271, 0.011263501830399036, 0.035629596561193466, 0.0048857745714485645, 0.002775253029540181, -0.005520962178707123, 0.015643341466784477, 0.04508354887366295, -0.014505913481116295, 0.054596591740846634, -0.006857810541987419, -0.02124185673892498, 0.012371387332677841, -0.005207061301916838, 0.012895786203444004, 0.04596985876560211, -0.002525978721678257, 0.0013414645800366998, -0.014978610910475254, 0.03152303397655487, 0.012364001013338566, 0.019055629149079323, -0.01650010608136654, 0.013508816249668598, -0.04248371347784996, 0.028627758845686913, 0.022955385968089104, -0.025171156972646713, -0.0010164849227294326, 0.0624551959335804, 0.01986807771027088, 0.04428587481379509, -0.04839243367314339, -0.048806045204401016, -0.032704778015613556, 0.020089656114578247, 0.0045792595483362675, 0.04009068012237549, 0.022512231022119522, -0.019631730392575264, 0.019380608573555946, -0.006141378078609705, -0.037963539361953735, -0.0013165371492505074, 0.012541263364255428, 0.006813495419919491, -0.013523587957024574, -0.001276837894693017, 0.009682918898761272, 0.021758869290351868, 0.06041668355464935, 0.03985433280467987, -0.006396191660314798, 0.007470840588212013, 0.01970558799803257, 0.03666362166404724, -0.027977799996733665, -0.013590061105787754, 0.02125662751495838, 0.02887888066470623, 0.03243888542056084, -0.019099945202469826, -0.012888400815427303, 0.014284336008131504, -0.007998933084309101, 0.03633864223957062, 0.019498784095048904, 0.016603508964180946, 0.010849891230463982, 0.018405670300126076, -0.029070913791656494, -0.008552875369787216, 0.025569995865225792, 0.016027409583330154, -0.021980445832014084, 0.031286682933568954, -0.011802672408521175, 0.03899756819009781, -0.0017015273915603757, -0.016869401559233665, 0.009668147191405296, 0.02028168924152851, -0.023398540914058685, 0.010702173225581646, -0.029056141152977943, 0.0361318364739418, 0.033797889947891235, 0.04183375462889671, -0.0023357917089015245, -0.012341843917965889, 0.014011058025062084, 0.017179610207676888, 0.022689493373036385, -0.0004553870821837336, -0.0013183836126700044, -0.030843529850244522, -0.04177466779947281, -0.01816932111978531, -0.007374824024736881, 0.02261563390493393, -0.0415974035859108, 0.029632242396473885, -0.02249746024608612, -0.01373777911067009, -0.0049263969995081425, 0.016559194773435593, 0.021847501397132874, 0.006924283690750599, 0.033945608884096146, 0.0017356871394440532, 0.011795287020504475, 0.03497963398694992, -0.008058019913733006, -0.004715899005532265, -0.02330990880727768, 0.0012943794718012214, 0.002830647164955735, 0.012954873964190483, 0.023132648319005966, -0.026057465001940727, -0.0100595997646451, -0.013139520771801472, 0.03220253437757492, 0.043665457516908646, 0.03382743522524834, -0.020030569285154343, -0.008752294816076756, 0.02929249033331871, 0.021020280197262764, -0.006831960286945105, 0.023413311690092087, 0.018656790256500244, 0.0402088537812233, 0.01819886453449726, -0.0070092217065393925, -0.01777048222720623, 0.01158109586685896, 0.009970968589186668, 0.009948811493813992, -0.01681031472980976, -0.021064594388008118, 0.008523331955075264, -0.014070144854485989, 0.0007482842775061727, 0.00579424062743783, -0.0007958310307003558, -0.026751739904284477, 0.032970670610666275, 0.025067754089832306, -0.003840669523924589, -0.006846731994301081, 0.019646501168608665, -0.04806745424866676, 0.013013960793614388, 0.010030056349933147, -0.009712462313473225, -0.02081347443163395, 0.020621441304683685, -0.023812150582671165, 0.009697690606117249, 0.0596780963242054, -0.008707979694008827, -0.0008359918720088899, -0.01271113846451044, 0.0034787601325660944, -0.03619092330336571, 0.0040474748238921165, 0.00638511311262846, -0.022866755723953247, 0.01290317252278328, -0.016588738188147545, 0.007300965022295713, -0.02859821543097496, 0.0032590297050774097, 0.012829313054680824, -0.016441019251942635, 0.02958792634308338, -0.01639670506119728, -0.002906352747231722, 0.02319173514842987, 0.022999702021479607, 0.01353835966438055, -0.0028343400917947292, -0.029957221820950508, 0.0027475557290017605, 0.027682363986968994, 0.0014614855172112584, -0.009453956037759781, 0.020237373188138008, 0.041006531566381454, -0.004874696023762226, 0.0022065385710448027, 0.031552575528621674, 0.03716586157679558, 0.017519362270832062, 0.025333646684885025, -0.00413241283968091, 0.006850424688309431, 0.022807667031884193, 0.025481363758444786, 0.003969922661781311, -0.004014238249510527, 0.02775622345507145, 0.01691371761262417, -0.026988089084625244, 0.0003635249158833176, -0.014129231683909893, -0.0026349208783358335, 0.006632540840655565, 0.009402254596352577, -0.02902659773826599, -0.009402254596352577, 0.035481877624988556, -0.00500025600194931, 0.014491140842437744, -0.0073083508759737015, 0.00860457681119442, 0.02208384871482849, -0.015791060402989388, 0.002751248888671398, 0.016145583242177963, -0.049190111458301544, 0.01567288488149643, 0.025348419323563576, 0.0025813730899244547, 0.022719036787748337, 0.06481868028640747, -0.0030079088173806667, -0.022984929382801056, 0.0006707322900183499, -0.012437860481441021, -0.003918221220374107, 0.002527825301513076, 0.026825599372386932, -0.013723007403314114, 0.020650984719395638, -0.018420441076159477, -0.005550506059080362, -0.00420257868245244, 0.0256733987480402, -0.014845664612948895, -0.025038210675120354, -0.0034104406367987394, 0.02565862610936165, 0.006296481937170029, -0.012519105337560177, 0.05300123989582062, 0.005812705494463444, -0.01986807771027088, -0.011544166132807732, 0.0069205909967422485, -0.00655498867854476, 0.01847952790558338, 0.002843572525307536, -0.0017347639659419656, 0.022275883704423904, 0.03096170537173748, -0.013560517691075802, 0.04387226328253746, 0.04771293327212334, 0.005037185736000538, 0.01763753592967987, -0.017932971939444542, 0.0026127630844712257, -0.01691371761262417, -0.011507236398756504, -0.002184380777180195, -0.03178892657160759, -0.029484523460268974, -0.016884174197912216, -0.01998625323176384, 0.03660453483462334, 0.015244503505527973, -0.03246842697262764, 0.004221043549478054, -0.03941117599606514, -0.018922682851552963, -0.015200188383460045, 0.020237373188138008, -0.012090723030269146, 0.01152200810611248, 0.025304103270173073, 0.048096999526023865, 0.016765998676419258, 0.01026640459895134, 0.04706297442317009, -0.01986807771027088, -0.011189642362296581, -0.011647569015622139, 0.005207061301916838, -0.040474746376276016, -0.012245826423168182, 0.014742261730134487, 0.006012124940752983, 0.0022213102784007788, -0.02762327715754509, 0.023708747699856758, 0.026840370148420334, -0.01088682096451521, 0.01902608573436737, 0.024491652846336365, 0.03013448417186737, 0.005594821181148291, 0.027386927977204323, 0.029661785811185837, -0.024343935772776604, -0.0360727496445179, 0.016175126656889915, -0.0208430178463459, 0.03627955541014671, -0.02330990880727768, -0.01691371761262417, 0.0215225201100111, -0.01019993145018816, -0.012681595049798489, 0.011197028681635857, 0.035747770220041275, -0.002086517633870244, -0.0070572299882769585, 0.023561030626296997, 0.005362165626138449, 0.00011569324124138802, -0.0256733987480402, -0.013708235695958138, 0.028805021196603775, 0.007422832306474447, 0.0073083508759737015, 0.007094159722328186, -0.014062758535146713, 0.039765700697898865, -0.0037575780879706144, -0.005103658884763718, 0.00023104027786757797, -0.0014457905199378729, -0.020857788622379303, -0.021877044811844826, -0.015997866168618202, 0.020518038421869278, -0.003870213171467185, 0.014387738890945911, 0.026190411299467087, 0.03040037676692009, 0.01290317252278328, -0.0016821393510326743, -0.018243180587887764, -0.01102715265005827, 0.03181846812367439, 0.02969132922589779, -0.012386159040033817, 0.0006878122221678495, 0.00105064467061311, 0.0039994665421545506, 0.006012124940752983, -0.026559706777334213, -0.002452119719237089, -0.010857277549803257, 0.009889723733067513, 0.03695905581116676, 0.016426248475909233, -0.0221872515976429, 0.029189087450504303, 0.03799308463931084, 0.0003769118629861623, -0.013242923654615879, 0.006241087801754475, 0.0008733830181881785, -0.030208341777324677, 0.02304401621222496, -0.016308072954416275, 0.01304350420832634, 0.0346546545624733, 0.0026607715990394354, -0.0074117532931268215, 0.021433889865875244, 0.014624087139964104, 0.01019993145018816, -0.012267984449863434, 0.005458182189613581, 0.03152303397655487, 0.007289886008948088, -0.00433921767398715, -0.027386927977204323, 0.0298390481621027, -0.007300965022295713, 0.01102715265005827, -5.519231126527302e-05, -0.0033107309136539698, 0.01983853429555893, -0.023206505924463272, -0.027268752455711365, 0.026677880436182022, -0.04230645298957825, 0.012932715937495232, -0.0173420999199152, -0.01583537645637989, -0.01611603982746601, -0.003910835366696119, -0.005269841756671667, 0.0003607551916502416, 0.009815865196287632, 0.016972804442048073, -0.001724608358927071, -0.02593929134309292, 0.025097297504544258, -0.0023856465704739094, 0.004294902551919222, 0.006724864710122347, -0.011004995554685593, 0.017519362270832062, 0.05438978970050812, 0.003561851568520069, 0.010325492359697819, -0.019114715978503227, 0.004121333826333284, 0.012386159040033817, -0.006569760385900736, -0.012556035071611404, -0.003548926208168268, -0.027844853699207306, 0.012585578486323357, 0.015599026344716549, 0.0360432043671608, 0.033945608884096146, 0.046413011848926544, -0.030489007011055946, 0.007131088990718126, -0.01929197832942009, -0.007031379267573357, -0.02292584255337715, 0.004509093705564737, -0.0008904628921300173, 0.02264517731964588, -0.020636212080717087, 0.018627246841788292, 0.000436229893239215, 0.018848823383450508, 0.009616445749998093, -0.009815865196287632, -0.03536370396614075, 0.0005668680532835424, 0.005764697212725878, -0.01416616141796112, 0.018006831407546997, 0.05022414028644562, -0.012334457598626614, -0.0374317541718483, -0.0017458427464589477, -0.0012786844745278358, 0.014040601439774036, -0.008656278252601624, 0.0008710749098099768, 0.02818460576236248, 0.04626529663801193, -0.025776801630854607, 0.027963027358055115, 0.006927976850420237, 0.002176994923502207, -0.018006831407546997, -0.0005027030128985643, 0.024358706548810005, -0.0443745031952858, -0.017150066792964935, -0.0062743243761360645, -0.0263529010117054, 0.0388203039765358, -0.0006005662144161761, -0.00437245424836874, -0.025067754089832306, 0.006687934976071119, -0.007300965022295713, 0.043635912239551544, 0.013501429930329323, 0.022807667031884193, 0.012341843917965889, -0.018627246841788292, 0.01181005872786045, -0.024801861494779587, -0.00032705700141377747, 0.017268240451812744, 0.007991546764969826, -0.03592503070831299, 0.029351577162742615, 0.016721684485673904, 0.01000051200389862, 0.0014319418696686625, 0.024092815816402435, -0.0022748580668121576, -0.026692653074860573, -0.0061302995309233665, 0.001254680217243731, -0.011765743605792522, 0.01347188651561737, 0.039913419634103775, -0.013390641659498215, -0.03941117599606514, 0.03149348869919777, -0.008227895945310593, 0.02122708410024643, 0.01942492462694645, -0.003836976597085595, -0.0005128586199134588, -0.009092045947909355, 0.03899756819009781, 0.02333945222198963, 0.01972036063671112, -0.008707979694008827, -0.0029968300368636847, -0.02527455985546112, 0.003685565432533622, -0.020488495007157326, 0.0017541518900543451, -0.0071052382700145245, -0.0064220423810184, -0.0023025551345199347, -0.00825005304068327, 0.02709149196743965, 0.0023801070638000965, 0.01957264170050621, 0.0007252033101394773, 0.008168808184564114, 0.010945907793939114, -0.0017172223888337612, -0.0009629370761103928, 0.028849337249994278, 0.0018178552854806185, 0.009158519096672535, -0.020458951592445374, -0.01568765752017498, -0.007323122583329678, -0.03385697677731514, 0.026027921587228775, 0.021596379578113556, -0.001846475643105805, -0.02777099423110485, -0.022674720734357834, -0.01957264170050621, 0.031434401869773865, 0.013183836825191975, 0.018287494778633118, -0.014949067495763302, 0.008900012820959091, 0.005070422310382128, 0.012157196179032326, 0.018789736554026604, 0.01000051200389862, 0.016337616369128227, 0.030902616679668427, 0.008818767964839935, 0.006348183378577232, -0.026279041543602943, 0.06275063008069992, 0.006647312548011541, 0.01570243015885353, 0.012386159040033817, 0.02025214582681656, -0.023915553465485573, 0.048510611057281494, -0.004974405746906996, 0.024240532889962196, -0.015333134680986404, 0.03110942244529724, 0.015022926032543182, 0.02041463553905487, 0.024225762113928795, 0.010384579189121723, -0.011123169213533401, -0.011824830435216427, 0.02735738456249237, -0.031198052689433098, 0.006547602824866772, -0.01861247420310974, 0.03843623772263527, 0.0027401698753237724, -0.0016682908171787858, -0.017386415973305702, -0.016972804442048073, 0.016189899295568466, 0.04233599454164505, -0.0346841998398304, -0.02264517731964588, 0.011647569015622139, 0.00406593969091773, 0.012127652764320374, 0.015894463285803795, -0.025318874046206474, 0.0037206485867500305, 0.036309096962213516, 0.004261665977537632, -0.009601674042642117, 0.0030891539063304663, -0.008863083086907864, 0.026899458840489388, 0.025171156972646713, 0.004383533261716366, -0.017711395397782326, -0.028288008645176888, -0.004682662431150675, 0.013375869952142239, 0.014380352571606636, -0.031552575528621674, 0.011625410988926888, -0.05701917037367821, 0.010923750698566437, -0.0013654688373208046, -0.020237373188138008, 0.02359057404100895, 0.013708235695958138, 0.01651487872004509, 0.011536779813468456, 0.01429910771548748, 0.01929197832942009, 0.005554198753088713, 0.03681134060025215, 0.016160355880856514, -0.016012636944651604]" -How United Manufacturing Hub Is Introducing Open Source to Manufacturing and Using Time-Series Data for Predictive Maintenance,"understand the fundamental principles in designing large-scale architectures so you can join discussions on the technical level. It explains the fundamental choices behind databases (from log-based approaches over WAL to binary trees) and the problems and solutions for distributed systems.We’d like to thank Jeremy Theocharis and the folks and United Manufacturing Hub for sharing their story on how they are using TimescaleDB to store their data, and why they chose us over other databases.We’re always keen to feature new community projects and stories on our blog. If you have a story or project you’d like to share, reach out on Slack (@Ana Tavares), and we’ll go from there.The open-source relational database for time-series and analytics.Try Timescale for free",https://www.timescale.com/blog/how-united-manufacturing-hub-is-introducing-open-source-to-manufacturing-and-using-time-series-data-for-predictive-maintenance/,146,"[0.01799076423048973, -0.0010476289317011833, 0.07532580941915512, 0.00450739124789834, 0.03761117160320282, 0.002007955452427268, -0.01818476803600788, 0.0091053182259202, -0.059339772909879684, 0.0063375080935657024, 0.023642785847187042, -0.016956068575382233, -0.011510984040796757, -0.020577501505613327, 0.046535417437553406, 0.0005197727004997432, 0.014278794638812542, 0.02409546449780464, -0.004158181603997946, 0.01528762187808752, 0.016981935128569603, 0.02397906221449375, 0.028764527291059494, 0.041517145931720734, -0.003128336276859045, -0.028169577941298485, -0.014731473289430141, 0.06109875440597534, 0.029126670211553574, -0.07729173451662064, -0.01906425878405571, -0.03321371600031853, -0.03018723428249359, 0.030109630897641182, 0.0482167974114418, 0.03155820444226265, 0.020991379395127296, -0.00920232106000185, 0.059339772909879684, 0.015662699937820435, -0.041336074471473694, 0.006550914142280817, 0.00033809474552981555, 0.02466454729437828, 0.000701652723364532, -0.00988133903592825, -0.014563335105776787, -0.028505854308605194, 0.01228700578212738, 0.04901868477463722, 0.008064156398177147, -0.005267245229333639, 7.790527888573706e-05, -0.028790395706892014, -0.015636831521987915, -0.04420735314488411, 0.01818476803600788, 0.026358861476182938, 0.021392323076725006, 0.0008568569901399314, -0.010023609735071659, -0.04418148472905159, 0.02545350231230259, 0.02507842518389225, -0.0361625999212265, 0.0007521749357692897, -0.027729831635951996, 0.009952474385499954, -0.0056196884252130985, 0.019892016425728798, 0.040922194719314575, 0.011750257574021816, 0.017085405066609383, 0.0037540036719292402, 0.03882693871855736, -0.05799466744065285, -0.04309505596756935, 0.051889967173337936, -0.013968385756015778, -0.007883084006607533, 0.010528024286031723, -0.006159670185297728, -0.03246356174349785, 0.035619381815195084, -0.0021259754430502653, -0.04281051456928253, -0.000556148705072701, -3.761379775824025e-05, 0.00231028045527637, 0.002101724734529853, 0.006056200712919235, 0.0387493371963501, 0.02401786297559738, 0.026229524984955788, 0.020409364253282547, 0.005794293247163296, 0.03176514431834221, 0.023358244448900223, -0.008717306889593601, 0.006476545240730047, -0.027729831635951996, -0.05227797478437424, -0.029437080025672913, -0.0025624874979257584, -0.0032010884024202824, -0.04487990587949753, 0.03624020144343376, -0.028661057353019714, -0.007928351871669292, 0.010476289317011833, -0.12892302870750427, -0.013787314295768738, -0.02445760928094387, -0.0004611668991856277, 0.023177172988653183, 0.0004918844206258655, -0.026177790015935898, -0.017434613779187202, 0.021107783541083336, -0.022569289430975914, -0.03269637003540993, -0.005422449670732021, -0.04358653724193573, 0.022633958607912064, 0.027755700051784515, -0.020913777872920036, -0.0053254468366503716, -0.014498666860163212, -0.02500082366168499, 0.03109259158372879, 0.04475056752562523, -0.00970673467963934, 0.020655103027820587, -0.016244715079665184, -0.022685693576931953, -0.00983607117086649, -0.06368549168109894, -0.011659721843898296, 0.010540957562625408, -0.028635190799832344, 0.021870870143175125, -0.07573968917131424, 0.01844344288110733, -0.0356452502310276, -0.008057689294219017, 0.009021248668432236, 0.004054712131619453, 0.05458017438650131, -0.022983167320489883, -0.005635855719447136, 0.0062502059154212475, -0.034222543239593506, -0.026074320077896118, 0.00970673467963934, 0.05018271878361702, -0.013696778565645218, 0.03717142716050148, 0.026371793821454048, 0.014356396161019802, -0.03688688576221466, 0.046069804579019547, 0.041517145931720734, 0.0008786825928837061, 0.039396021515131, -0.002164776436984539, 0.004581759683787823, -0.040482450276613235, -0.022905565798282623, -0.07330815494060516, -0.016464587301015854, -0.06451325118541718, -0.053235068917274475, 0.008296962827444077, 0.023720387369394302, 0.05706344172358513, 0.015908438712358475, -0.010437488555908203, -0.05038965865969658, 0.013851982541382313, -0.046069804579019547, -0.046716488897800446, -0.005761959124356508, -0.022220080718398094, -0.028091976419091225, -0.017408747225999832, 0.006680251099169254, -0.06120222434401512, -0.003724902868270874, 0.00026857617194764316, 0.05737385153770447, -0.05103634297847748, 0.047906387597322464, 0.01528762187808752, 0.019943751394748688, 0.034507084637880325, -0.041853420436382294, 0.022646890953183174, 0.034274280071258545, -0.03595566004514694, 0.023435847833752632, 0.02436707355082035, 0.011245843954384327, 0.03256703168153763, -0.03833545744419098, -0.002526919823139906, 0.027652230113744736, 0.01887025497853756, 0.020461097359657288, -0.06497886031866074, -0.05680476874113083, -0.01791316084563732, -0.01990494877099991, 0.01779675856232643, -0.00023240224982146174, -0.034041471779346466, -0.010534490458667278, -0.04622500762343407, -0.021599262952804565, -0.0018462842563167214, 0.001471207244321704, 0.0037410699296742678, 0.0382319875061512, -0.021288855001330376, -0.0055550201795995235, -0.010528024286031723, 0.03083391860127449, 0.003909207880496979, -0.023345310240983963, 0.03911148011684418, 0.005221977364271879, 0.028971467167139053, -0.0613056942820549, 0.021780334413051605, -0.06197824329137802, -0.002997382776811719, 0.016296450048685074, -0.005968898069113493, -0.040870461612939835, 0.008322829380631447, -0.046302612870931625, 0.008432766422629356, -0.012261138297617435, 0.007314002141356468, 0.010489222593605518, -0.003676401451230049, 0.03228249028325081, -0.040973931550979614, -0.05090700462460518, 0.010786698199808598, 0.059029363095760345, -0.0023135137744247913, -0.03750770166516304, -0.013890783302485943, 1.3097887858748436e-05, 0.003214022144675255, -0.04480230435729027, -0.022582223638892174, 0.017318211495876312, 0.06177130341529846, 0.003627900267019868, 0.0034209610894322395, -0.05520099028944969, -0.005070006474852562, 0.007883084006607533, -0.058046404272317886, 0.009719667956233025, 0.021030180156230927, -0.05031205713748932, 0.022155411541461945, -0.03197208419442177, 0.05026032030582428, 0.014175324700772762, 0.010217615403234959, -0.035334840416908264, -0.03859413042664528, -0.029307741671800613, -0.028712792322039604, 0.019853215664625168, 0.00980373751372099, 0.007915418595075607, 0.00764381093904376, -0.0052834125235676765, 0.0075080073438584805, -0.0010573292383924127, 0.040792860090732574, 0.03034243732690811, 0.004639961291104555, 0.03085978515446186, 0.013813181780278683, -0.02493615448474884, 0.004403921775519848, 0.021857935935258865, -0.011174708604812622, -0.03272223845124245, -0.011704989708960056, 0.010573292151093483, 0.005031205713748932, -0.00377663760446012, -0.011472183279693127, -0.00019228759629186243, 0.015843771398067474, 0.001813950133509934, 0.010560357943177223, -0.03903387859463692, -0.005994765553623438, 0.003191388212144375, -0.021301787346601486, -0.013185896910727024, 0.0368092842400074, 0.005474184639751911, -0.013502772897481918, -0.02503962442278862, 0.011362247169017792, 0.017318211495876312, -0.020461097359657288, -0.0072363996878266335, 0.04971710592508316, -0.0023620151914656162, -0.04221556708216667, -0.05664956569671631, -0.03608499467372894, -0.06513406336307526, 0.0011559486156329513, -0.01187959499657154, 0.03854239732027054, 0.006641449872404337, 0.010941902175545692, -0.0015568929957225919, 0.020706837996840477, 0.00467229587957263, -0.006311641074717045, -0.027833301573991776, 0.02597085013985634, -0.003941542003303766, 0.0024283004458993673, -0.047544244676828384, 0.05789119750261307, 0.0197626780718565, -0.02523363009095192, 0.00377663760446012, -0.004846900701522827, -0.03321371600031853, -0.052536651492118835, 0.023086637258529663, 0.05238144472241402, 0.00928638968616724, -0.006913057528436184, -0.022414084523916245, -0.014421064406633377, -0.010107679292559624, -0.07289428263902664, -0.02531123161315918, -0.03171340748667717, -0.027833301573991776, 0.009454527869820595, 0.013890783302485943, 0.005018271971493959, -0.05540793016552925, -0.010553891770541668, -0.01967214234173298, -0.03150647133588791, 0.0370679572224617, 0.04480230435729027, -0.029178405180573463, 0.017085405066609383, 0.020318828523159027, -0.047182101756334305, 0.006137036252766848, -0.012726751156151295, -0.03142886608839035, 0.015908438712358475, -0.014511601068079472, -0.04883761331439018, -0.01809423230588436, -0.05126914754509926, 0.021663932129740715, 0.05165715888142586, 0.03220488876104355, -0.00032354434370063245, 0.053907621651887894, 0.0252077616751194, 0.0007921885116957128, 0.021793268620967865, -0.008219360373914242, 0.03600739315152168, 0.047233838587999344, -0.00988133903592825, 0.02522069588303566, -0.005758725572377443, -0.0035147303715348244, 0.028298914432525635, 0.03303264454007149, 0.039602961391210556, 0.00941572617739439, -0.01196366362273693, -0.013082427904009819, 0.02462574653327465, 0.017085405066609383, 0.05566660314798355, 0.01787436008453369, 0.005095873959362507, -0.0001827894157031551, -0.03225662559270859, -0.0193099994212389, -0.0019917883910238743, 0.007896018214523792, 0.00961619894951582, 0.016490455716848373, -0.029256008565425873, -0.01852104440331459, -0.06451325118541718, -0.029256008565425873, 0.041155003011226654, -0.023280642926692963, 0.003718435997143388, -0.04190515726804733, -0.027109015733003616, 0.04407801851630211, 0.01938760280609131, 0.0620817132294178, -0.003356292610988021, 0.00096113485051319, -0.015727367252111435, -0.01555922906845808, 0.005212277173995972, 0.05494231730699539, 0.01933586783707142, 0.02421186864376068, -0.052872925996780396, -0.0877421572804451, -0.026436462998390198, 0.021832069382071495, 0.03101499006152153, -0.005179943051189184, -0.026423528790473938, -0.001200408092699945, 0.06503059715032578, -0.020086022093892097, 0.04482816904783249, 0.023474648594856262, -0.013683844357728958, 0.04870827868580818, 0.01810716651380062, 0.0009344591526314616, 0.016024842858314514, 0.002415366703644395, -0.01274615153670311, 0.016218848526477814, -0.01982734724879265, -0.005095873959362507, 0.052847057580947876, -0.05082940310239792, -0.01283668726682663, 0.013567441143095493, -0.02558283880352974, -0.001859217998571694, 0.00606913398951292, 0.00971320178359747, 0.0123452078551054, -0.005551786627620459, -0.04563006013631821, 0.02542763575911522, -0.07098009437322617, 0.009486861526966095, 0.009318724274635315, -0.04863067716360092, 0.027755700051784515, -0.0030588177032768726, 0.006706118583679199, -0.05468364432454109, 0.011459250003099442, 0.033187851309776306, -0.005593820940703154, -0.01927119866013527, -0.021004313603043556, 0.020512832328677177, 0.02416013367474079, -0.016736194491386414, 0.026617534458637238, -0.046328477561473846, 0.020680971443653107, -0.040275510400533676, 0.022646890953183174, 0.059339772909879684, 0.010560357943177223, 0.06202998012304306, -0.003191388212144375, -0.002869662595912814, 0.014433998614549637, 0.011452782899141312, -0.030057895928621292, -0.0037443034816533327, 0.05504578724503517, -0.013580375351011753, -0.011433382518589497, 0.012222337536513805, -0.06937631219625473, -0.0756879597902298, -0.004811333026736975, -0.005794293247163296, 0.008219360373914242, 0.004397454671561718, 0.004814566113054752, 0.06109875440597534, -0.040922194719314575, 0.01945227012038231, -0.021172450855374336, 0.008038288913667202, 0.021030180156230927, -0.01874091662466526, 0.008167625404894352, -0.01920652948319912, 0.04231903329491615, 0.020874977111816406, -0.004491223953664303, 0.007566208951175213, -0.01894785650074482, -0.01770622283220291, -0.009868405759334564, -0.023138372227549553, -0.0178226251155138, -0.0019998718053102493, -0.03647300601005554, -0.0127655528485775, -0.010353418998420238, 0.007773147895932198, -0.040249645709991455, 0.004232550039887428, -0.005842794664204121, 0.016089510172605515, -0.003931841813027859, -0.029049068689346313, 0.008562102913856506, -0.01887025497853756, -0.03895627707242966, 0.015197086147964, -0.0022827964276075363, -0.01817183569073677, -0.01881852000951767, 0.03135126456618309, 0.004930969327688217, 0.03119606152176857, 0.004669062327593565, 0.01958160661160946, -0.005519452504813671, -0.026281258091330528, -0.03768877312541008, -0.034817494451999664, 0.013476905412971973, 0.09498502314090729, 0.027703965082764626, -0.03122192807495594, 0.0310408566147089, 0.00041994077037088573, 0.00962266605347395, 0.006861322559416294, -0.0014469566522166133, -0.0006632558070123196, 0.034196678549051285, -0.003951242193579674, -0.014718540012836456, 0.028298914432525635, 0.00937692541629076, -0.006486245896667242, 0.0022941133938729763, 0.01778382435441017, -0.008083556778728962, -0.04200862720608711, -0.02529829926788807, 0.0061823041178286076, -0.0029585817828774452, 0.0007841049809940159, -0.003967409487813711, -0.0018430509371683002, -0.0032382726203650236, 0.004471823573112488, -0.03243769705295563, -0.01896079070866108, 0.0032415061723440886, -0.0063148741610348225, -0.010017143562436104, -0.017318211495876312, -0.053700681775808334, 0.022452887147665024, -0.022401152178645134, -0.006040033418685198, 0.04420735314488411, 0.03008376434445381, 0.04325025901198387, -0.014550401829183102, 0.012862554751336575, 0.013851982541382313, -0.014809075742959976, -0.016451654955744743, 0.04487990587949753, -0.0032916241325438023, 0.021366456523537636, 0.034636422991752625, -0.021405257284641266, 0.03158407285809517, 0.01945227012038231, 0.007119996473193169, -0.003960942849516869, -0.017292344942688942, -0.020241225138306618, 0.0007222657441161573, -0.008355163969099522, 0.011530385352671146, 0.021689798682928085, -0.0003182900254614651, 0.020086022093892097, 0.003699035383760929, 0.005441850051283836, -0.054166294634342194, -0.014356396161019802, 0.0016652126796543598, -0.014278794638812542, 0.005920396652072668, 0.011814925819635391, 0.007152330595999956, -0.028169577941298485, -0.017318211495876312, -0.01561096403747797, -0.040378980338573456, 0.01929706521332264, 0.022892631590366364, -0.014007186517119408, -0.04206036031246185, -0.011853727512061596, 0.040818728506565094, 0.011278177611529827, -0.006738452706485987, 0.03740423172712326, 0.005571187008172274, 0.007035927381366491, 0.047311440110206604, 0.020965512841939926, 0.029230140149593353, -0.00900831539183855, -0.027988506481051445, 0.034144941717386246, 0.01870211586356163, -0.015598030760884285, 0.006596182007342577, 0.028040241450071335, -0.027471158653497696, -0.001636920147575438, 0.03559351712465286, -0.0025091359857469797, -0.0010678378166630864, -0.020202424377202988, 0.0034694625064730644, 0.05628741905093193, 0.04560419172048569, 0.00918291974812746, -0.009499795734882355, -0.012506878934800625, -0.020965512841939926, 0.020150689408183098, 0.021068980917334557, -0.017331145703792572, 0.0009304173290729523, -0.011886061169207096, 0.009958941489458084, -0.014628004282712936, -0.003977109678089619, 0.0015108167426660657, 0.023526383563876152, 0.007721412926912308, 0.019840281456708908, -0.01831410638988018, 0.01901252567768097, 0.011329912580549717, 0.014162391424179077, 0.026294192299246788, -0.010974235832691193, -0.008600903674960136, -0.021767400205135345, 0.013347568921744823, 0.033524125814437866, -0.0014251309912651777, 0.002075857250019908, -0.021961405873298645, 0.0020952578634023666, -0.001569018349982798, -0.011426915414631367, -0.015184152871370316, 0.034300148487091064, 0.04759598150849342, 0.026695137843489647, -0.011433382518589497, 0.0012198087060824037, 0.005276945885270834, -0.0364212729036808, -0.014809075742959976, -0.029488814994692802, 0.028066108003258705, 0.028066108003258705, -0.014304661191999912, -0.045992203056812286, 0.0011785825481638312, 0.007766681257635355, -0.08422419428825378, -0.017486348748207092, 0.0024622513446956873, -0.0012295088963583112, 0.013425170443952084, -0.01863744854927063, 0.015442825853824615, -0.027962638065218925, -0.0361625999212265, 0.003306174650788307, -0.022427018731832504, 0.01859864592552185, -0.016374051570892334, -0.01945227012038231, -0.003202705178409815, 0.0049924044869840145, -0.03673167899250984, 0.026824474334716797, -0.07863683998584747, -0.007837816141545773, -0.011976596899330616, -0.021922605112195015, 0.029618151485919952, -0.008769041858613491, 0.0006592140416614711, 0.03375693038105965, -0.004449189640581608, -0.011827860027551651, 0.0058686621487140656, 0.01990494877099991, 0.01945227012038231, 0.01206066645681858, 0.023681586608290672, -0.04868241026997566, -0.027703965082764626, 0.002635239390656352, -0.0383613258600235, -0.023306509479880333, -0.020512832328677177, 0.029669886454939842, -0.011569186113774776, 0.005493585020303726, -0.011213509365916252, -0.034144941717386246, -0.0011842410312965512, 0.040042705833911896, 0.03717142716050148, 0.008161158300936222, 0.015960173681378365, 0.010560357943177223, -0.020357629284262657, -0.021056048572063446, -0.010851366445422173, -0.047440774738788605, -0.01903839223086834, 0.017201807349920273, -0.0006854856037534773, 0.0388786718249321, 0.001522942096926272, 0.040482450276613235, -0.03980989754199982, 0.009538596495985985, -0.017175940796732903, 0.017072470858693123, -0.014162391424179077, -0.0008576653199270368, 0.010159414261579514, -0.059857118874788284, -0.015184152871370316, -0.009958941489458084, 0.009596798568964005, 0.002096874639391899, 0.06653090566396713, -0.02562164142727852, 0.005137908272445202, -0.008497434668242931, 0.008322829380631447, -0.029514681547880173, 0.016878465190529823, -0.0014776741154491901, -0.020370561629533768, -0.04495750740170479, 0.006017399486154318, -0.0065444475039839745, -0.021262986585497856, -0.011310512199997902, -0.029437080025672913, -0.01228053867816925, -0.026617534458637238, -0.003462995635345578, 0.0035890990402549505, 0.03269637003540993, 0.0021453758236020803, -0.015649765729904175, 0.00045308333938010037, -0.047440774738788605, -0.05551140010356903, 0.047906387597322464, 0.000477738183690235, -0.00029787904350087047, -0.022142477333545685, 0.03893040865659714, 0.01889612153172493, 0.03678341582417488, -0.03761117160320282, -0.0010217615636065602, -0.06068487465381622, -0.035541780292987823, 0.007430405355989933, -0.007216999307274818, 0.012629748322069645, 0.023086637258529663, 0.021948471665382385, 0.020486965775489807, 0.02573804371058941, 0.0017977829556912184, 0.009958941489458084, -0.02537590079009533, 0.03649887442588806, -0.0006115210708230734, -0.053131598979234695, -0.0007832966512069106, 0.029540548101067543, 0.00774081377312541, -0.030290702357888222, 0.007204065565019846, 0.011232909746468067, -0.027833301573991776, 0.010398686863481998, -0.012998359277844429, 0.023474648594856262, 0.007844283245503902, 0.004061178769916296, -0.021340589970350266, 0.0019513705046847463, -0.04405215010046959, -0.06321987509727478, 0.04811332747340202, -0.04301745444536209, 0.04257771000266075, -0.0018640680937096477, 0.008697906509041786, 0.034144941717386246, -0.026281258091330528, -0.01275908574461937, 0.019892016425728798, 0.013476905412971973, -0.03238596022129059, -0.011569186113774776, -0.015908438712358475, 0.02435413934290409, -0.023435847833752632, -0.026695137843489647, 0.03768877312541008, -0.005115274339914322, -0.013554507866501808, -0.004374820739030838, 0.01270735077559948, -0.03882693871855736, -0.017357012256979942, -0.00312025286257267, 0.0004251950595062226, 0.034791626036167145, -0.005629388615489006, 0.021353522315621376, 0.021819135174155235, 0.0669965147972107, 0.014395197853446007, -0.0028195444028824568, 0.025944983586668968, -0.00603033322840929, -0.0015471926890313625, -0.008128824643790722, 0.014446931891143322, -0.03285157307982445, 0.014058921486139297, 0.011265244334936142, -0.06228865310549736, 0.017369946464896202, -0.01859864592552185, -0.03243769705295563, 0.0009756852523423731, 0.029359476640820503, -0.005587354302406311, -0.006282540038228035, 0.029333610087633133, 0.015921372920274734, -0.027471158653497696, 0.0027451757341623306, 0.039887502789497375, 0.017395813018083572, 0.021870870143175125, -0.023629851639270782, -0.014602136798202991, -0.011672655120491982, 0.011207042261958122, -0.013282899744808674, 0.006725518964231014, 0.016710327938199043, 0.00229896348901093, -0.03285157307982445, 0.02562164142727852, -0.013554507866501808, -0.004196982365101576, 0.01839170791208744, -0.0077537475153803825, -0.005694057326763868, 0.004850133787840605, -0.005803993437439203, -0.003915674984455109, -0.0011583736632019281, -0.006525046657770872, 0.008581503294408321, 0.022310616448521614, -0.03225662559270859, 0.014692672528326511, -0.01760275289416313, -0.04480230435729027, 0.046845827251672745, 0.0020726239308714867, 0.01947813853621483, 0.023319443687796593, -0.021288855001330376, 0.027755700051784515, -0.0011656488059088588, 0.0017379646888002753, 0.06865202635526657, 0.014472799375653267, 0.034584689885377884, 0.01942640356719494, -0.006809588056057692, -0.0034403617028146982, 0.03171340748667717, 0.020745638757944107, 0.01812010072171688, 0.0020273560658097267, 0.0019158029463142157, -0.028402384370565414, -0.007669678423553705, 0.03908561170101166, -0.0022827964276075363, -0.014925478957593441, -0.005157309118658304, -0.013942518271505833, -0.0013992636231705546, 0.041439544409513474, -0.010165880434215069, -0.01831410638988018, 0.06197824329137802, 0.0008176517440006137, 0.047906387597322464, -0.0381026528775692, 0.0018899354618042707, -0.0056423223577439785, 0.008516835048794746, 0.017046604305505753, 0.03644714131951332, 0.016348185017704964, 0.019930817186832428, 0.0009425426833331585, -0.027807435020804405, -0.011989531107246876, 0.012319340370595455, -0.008898379281163216, 0.0010815798304975033, -0.002814694307744503, -0.003277073847129941, -0.01209946721792221, -0.0015609347028657794, 0.01889612153172493, 0.023875592276453972, -0.000710140448063612, 0.015119483694434166, -0.01770622283220291, 0.03168754279613495, -0.028661057353019714, -0.0034371281508356333, 0.008853111416101456, 0.05106221139431, 0.021754467859864235, 0.00642157718539238, -0.021146584302186966, 0.005820160731673241, -0.022595157846808434, 0.007857216522097588, 0.03251529857516289, -0.00918291974812746, 0.026746870949864388, -0.010482756420969963, -0.010605625808238983, 0.004239017143845558, 0.03223075717687607, 0.026953810825943947, -0.01918066293001175, 0.013554507866501808, -0.026281258091330528, 0.007178198080509901, -0.001702397014014423, -0.017680354416370392, 0.0029391811694949865, 0.013813181780278683, 0.012261138297617435, 0.01787436008453369, -0.028117842972278595, 0.03179101273417473, 0.034351881593465805, 0.034662291407585144, 0.014860810711979866, 0.020849108695983887, 0.0247550830245018, 0.016102444380521774, 0.03049764223396778, -0.007326935417950153, -0.01297895796597004, 0.006803120952099562, -0.028428250923752785, -0.027497025206685066, -0.027445290237665176, 0.023345310240983963, -0.01949107088148594, 0.06223691627383232, -0.028531720861792564, 0.01879265159368515, -0.007928351871669292, 0.005761959124356508, 0.013580375351011753, 0.012823753990232944, 0.01959454081952572, 0.0002621093299239874, 0.022103676572442055, 0.022582223638892174, 0.004914802499115467, 0.008465100079774857, -0.006977725774049759, 0.0037087358068674803, 0.013761446811258793, -0.007773147895932198, 0.011271711438894272, -0.010456888936460018, -0.028971467167139053, -0.020344695076346397, 0.033524125814437866, 0.022595157846808434, 0.022633958607912064, 0.0030960021540522575, 0.02566044218838215, 0.016244715079665184, 0.013851982541382313, -0.010133546777069569, 0.02600965090095997, 0.014162391424179077, 0.009719667956233025, 0.01271381787955761, -0.0019610708113759756, 0.007398070767521858, 0.022349417209625244, 0.039758164435625076, 0.022090742364525795, -0.014265860430896282, 0.006550914142280817, 0.004009443800896406, -0.016555123031139374, 0.003087918506935239, -0.002146992599591613, -0.006078834645450115, -0.027264218777418137, 0.04806159436702728, 0.005768425762653351, -0.016774997115135193, -0.0026594900991767645, 0.005212277173995972, -0.039758164435625076, -0.014149457216262817, -0.013839048333466053, -0.00026938453083857894, -0.046871695667505264, 0.00447829021140933, -0.026876209303736687, 0.007514473982155323, 0.03220488876104355, -0.01890905573964119, 0.021547527983784676, -0.012034798972308636, 0.008672039024531841, -0.017175940796732903, -0.011692056432366371, 0.009118251502513885, -0.0396546944975853, 0.009532129392027855, -0.029644018039107323, 0.006816054694354534, -0.003306174650788307, 0.01896079070866108, -0.020512832328677177, -0.013670911081135273, 0.029669886454939842, -0.01562389824539423, 0.015442825853824615, -0.014045988209545612, 0.014136523939669132, -0.008975980803370476, 0.012267605401575565, -0.029178405180573463, -0.0007893592701293528, 0.015080682933330536, -0.001471207244321704, 0.015636831521987915, 0.0180166307836771, 0.06125395745038986, -0.011472183279693127, -0.008251694031059742, 0.011679122224450111, 0.041258472949266434, 0.011032437905669212, 0.03937015309929848, 0.013237631879746914, 0.002646556356921792, 0.022983167320489883, 0.04557832330465317, -0.020590435713529587, 0.021909670904278755, 0.02453521080315113, 0.003485629567876458, -0.01806836575269699, 0.027626363560557365, -0.015016014687716961, -0.0059365639463067055, -0.008814309723675251, 0.01876678504049778, -0.022323548793792725, 0.007391604129225016, 0.016994869336485863, -0.0020225057378411293, 0.034455351531505585, 0.0009255672339349985, 0.01823650300502777, -0.013981319032609463, -0.013567441143095493, 0.010489222593605518, 0.002522069728001952, -0.005606754682958126, 0.03057524375617504, 0.030109630897641182, 0.005167009308934212, 0.023914393037557602, 0.04265531152486801, 0.010094745084643364, -0.022142477333545685, 0.023371178656816483, 0.00038457519258372486, 0.012306406162679195, -0.01521002035588026, -0.0017977829556912184, -0.016063643619418144, 0.04555245861411095, -0.03049764223396778, -0.00616613682359457, -0.04552659019827843, -0.005522685591131449, -0.011769657954573631, -0.01914186216890812, -0.013451037928462029, 0.028040241450071335, 0.0013394453562796116, -0.008445699699223042, 0.03160993754863739, 0.04832026734948158, -0.022685693576931953, -0.029669886454939842, -0.004426555708050728, -0.028531720861792564, 0.027652230113744736, 0.0026772739365696907, -0.026565799489617348, 0.0251430943608284, 0.015455760061740875, -0.01841757446527481, 0.008471567183732986, 0.053338538855314255, 0.0029440312646329403, -0.004960070364177227, -0.01521002035588026, 0.010637960396707058, 0.008568570017814636, -0.014201192185282707, -0.021185385063290596, -0.027807435020804405, 0.008355163969099522, -0.0012173836585134268, -1.4638815628131852e-05, 0.020680971443653107, -0.0254017673432827, -0.029514681547880173, 0.0029844490345567465, -0.02515602856874466, -0.035283107310533524, -0.029049068689346313, 0.005383648443967104, -0.016438720747828484, 0.005134675186127424, 0.0071911318227648735, 0.06140916049480438, 0.017020735889673233, 0.009991276077926159, 0.017680354416370392, -0.0008358397171832621, 0.003918908070772886, -0.02610018663108349, -0.0008786825928837061, -0.022582223638892174, -0.02463868074119091, 0.01940053515136242, -0.020448165014386177, 0.01523588690906763, -0.022233013063669205, 0.017486348748207092, 0.017318211495876312, 0.005289879161864519, 0.008180559612810612, 0.03675754740834236, 0.021741533651947975, -0.003217255463823676, 0.03295504301786423, 0.004158181603997946, -0.029152538627386093, -0.03375693038105965, 0.0244964100420475, -0.03559351712465286, 0.017589818686246872, -0.029876824468374252, -0.021469926461577415, 0.009590331465005875, 0.005082940217107534, 0.017020735889673233, -0.0003944775671698153, 0.034093208611011505, 0.011375180445611477, 0.012125334702432156, 0.0182753037661314, -0.033653464168310165, -0.022155411541461945, -0.021586328744888306, -0.029359476640820503, 0.009726135060191154, -0.010405153967440128, 0.0015237503685057163, 0.003825139021500945, -0.007178198080509901, 0.04412975162267685, -0.011737324297428131, -0.027083147317171097, -0.0008455400238744915, -0.010301684029400349, -0.011135907843708992, -0.033368922770023346, -0.027419423684477806, 0.017227675765752792, 0.033653464168310165, 0.021120715886354446, 0.021676864475011826, 0.04563006013631821, 0.0036861018743366003, -0.0307821836322546, -0.013619176112115383, -0.0188573207706213, 0.019853215664625168, -0.0012173836585134268, -0.004035311285406351, -0.011556251905858517, -0.005018271971493959, 0.02485855296254158, 0.03080805018544197, -0.027445290237665176, 0.033446524292230606, -0.03060111217200756, 0.017641553655266762, 0.007152330595999956, 0.02567337453365326, 0.0025624874979257584, 0.02478095144033432, 0.00886604469269514, -0.0029213973321020603, 0.0010516707552596927, 0.03872346878051758, 0.0006741686374880373, -0.008413366042077541, 0.03093738667666912, -0.014136523939669132, 0.00645067822188139, 0.03856826573610306, -0.01210593432188034, 0.023642785847187042, 0.01555922906845808, 0.01870211586356163, -0.03132539987564087, -0.016878465190529823, 0.026850340887904167, 0.03815438598394394, 0.001633686712011695, 0.008846644312143326, -0.021819135174155235, 0.01506774965673685, 0.0010629877215251327, -0.008329296484589577, 0.0028211611788719893, 0.007837816141545773, 0.01954280585050583, -0.01831410638988018, -0.026436462998390198, 0.00923465471714735, -0.007721412926912308, 0.006945391651242971, -0.019930817186832428, -0.023306509479880333, 0.015222953632473946, 0.01853397861123085, -0.01863744854927063, 0.016658592969179153, 0.014485733583569527, 0.033627595752477646, -0.03184274584054947, -0.02610018663108349, 0.014433998614549637, 0.005697290413081646, 0.0019287365721538663, 0.0017589818453416228, -0.005571187008172274, 0.011834327131509781, 0.01271381787955761, -0.006744919344782829, 0.022026075050234795, -0.0024622513446956873, -0.011491583660244942, 0.014899611473083496, -0.013709711842238903, -0.01769328862428665, 0.021211251616477966, -0.01197013072669506, 0.028350649401545525, 0.01843050867319107, -0.003679635003209114, -0.008840177208185196, 0.0370679572224617, -0.034429483115673065, -0.017253542318940163, -0.016438720747828484, -0.03722316026687622, -0.021715665236115456, -0.010864299722015858, 0.013916650786995888, -0.0310408566147089, -0.004284285008907318, 0.03184274584054947, -0.003037800546735525, 0.006567081436514854, 0.028531720861792564, -0.020629236474633217, -0.015365224331617355, 0.0006818479741923511, -0.0025026691146194935, 0.0032819239422678947, 0.01537815760821104, 0.04270704463124275, -0.0077537475153803825, -0.053442008793354034, 0.022051941603422165, 0.009254055097699165, -0.0008980831480585039, -0.022207146510481834, -0.007365736644715071, 0.0032819239422678947, 0.010249949991703033, -0.020189490169286728, 0.014149457216262817, 0.014886677265167236, -0.02461281232535839, -0.015649765729904175, 0.023086637258529663, 0.03217902034521103, -0.020551633089780807, -0.011750257574021816, -0.004348953254520893, 0.0032188722398132086, 0.029385345056653023, -0.010217615403234959, -0.03727489709854126, -0.013981319032609463, 0.007288134656846523, -0.004892168566584587, 0.05613221600651741, -0.0012254671892151237, -0.0008875745115801692, -0.011207042261958122, 0.0046334946528077126, 0.00016530872380826622, -0.028402384370565414, 0.014602136798202991, -0.015753235667943954, -0.020668037235736847, -0.03323958441615105, 0.007921885699033737, 0.020758572965860367, 0.01232580654323101, 0.006059433799237013, 0.01248101145029068, 0.009965408593416214, -0.02503962442278862, -1.2441098988347221e-05, -0.020719772204756737, 0.010120612569153309, -0.0024088998325169086, 0.020098954439163208, -0.05134674906730652, -0.03626606613397598, 0.05644262582063675, -0.007061794865876436, 0.01187959499657154, 0.01542989257723093, 0.0011898995144292712, -0.054062824696302414, -0.015598030760884285, 0.01770622283220291, 0.014304661191999912, 0.006117635406553745, -0.006731986068189144, -0.013851982541382313, -0.015261754393577576, -0.034714024513959885, -0.01906425878405571, 0.016154179349541664, 0.008128824643790722, -0.023203041404485703, -0.03300677612423897, -0.012319340370595455, 0.011155308224260807, 0.03274810314178467, 0.0359039232134819, -0.008607370778918266, -0.0016296450048685074, 0.021728599444031715, 0.0029246306512504816, -0.01232580654323101, 0.07325642555952072, 0.017201807349920273, 0.007708479650318623, -0.012784953229129314, 0.011562719009816647, 0.008051222190260887, -0.020267093554139137, 0.02518189512193203, 0.03194621577858925, 0.01239047572016716, 0.016593925654888153, -0.007275200914591551, -0.011582119390368462, 0.028350649401545525, 0.0020467564463615417, 0.004468590021133423, -0.02513016015291214, 0.013438104651868343, -0.0025301531422883272, 0.010877233929932117, 0.04811332747340202, 0.00593979749828577, 0.026617534458637238, 0.040404848754405975, -0.004229316953569651, -0.0014582736184820533, -0.00942866038531065, 0.0625990629196167, 0.005697290413081646, 0.007598543073982, 0.016477521508932114, 0.005480651278048754, -0.03743010014295578, 0.023578116670250893, -0.0190513264387846, 0.041594747453927994, -0.0182106364518404, 0.01875385083258152, -0.016335250809788704, -0.005852494854480028, 0.014472799375653267, 0.0017783824587240815, 0.00386717333458364, -0.03678341582417488, 0.015003080479800701, -0.013619176112115383, 0.016180045902729034, 0.010502156801521778, 0.052459049969911575, 0.001625603181309998, 0.01562389824539423, 0.0024477008264511824, 0.003796038217842579, -0.003912441432476044, 0.01861158013343811, -0.026979677379131317, -0.01868918351829052, -0.015766168013215065, 0.0177579578012228, 0.021521661430597305, 0.004914802499115467, -0.046250876039266586, 0.009254055097699165, 0.046276744455099106, -0.004930969327688217, 0.0178226251155138, -0.0030555843841284513, -0.0009942774195224047, 0.022039009258151054, 0.047906387597322464, 0.003796038217842579, -0.03021310083568096, 0.0006604265654459596, 0.034222543239593506, -0.016606858000159264, 0.00020895992929581553, -0.0010961302323266864, -0.02498788945376873, -0.0482167974114418, 0.013645043596625328, 0.005907462909817696, -0.01901252567768097, 0.027393557131290436, 0.016154179349541664, 0.023293577134609222, 0.02474214881658554, -0.014188257977366447, 0.00010912801371887326, -0.0029181637801229954, 0.017007803544402122, 0.01867624931037426, -0.010553891770541668]" -How Edeva Uses Continuous Aggregations and IoT to Build Smarter Cities,"This is an installment of our “Community Member Spotlight” series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition, John Eskilsson, software architect at Edeva, shares how his team collects huge amounts of data (mainly) from IoT devices to help build safer, smarter cities and leverages continuous aggregations for lightning-fast dashboards.Founded in 2009 in Linköping,Edevais a Swedish company that creates powerful solutions for smart cities. It offers managed services and complete systems, including hardware and software platforms.As the creators of the dynamic speed bumpActibumpand the smart city platformEdevaLive, the Edeva team works mainly for municipal, regional, and national road administrations, toll stations, environmental agencies, and law enforcement agencies.The team also solves many other problems, from obtaining large amounts of environmental data for decision-making to developing a screening scale to help law enforcement agencies assess vehicle overloading. The latter, for instance, decreased the amount of time needed to control each vehicle, speeding up traffic checks and allowing law enforcement agencies to control more vehicles.About the TeamTheteam at Edevais a small but impactful group of 11 working on everything from creating hardware IoT devices to analyzing time-series data and making it accessible to customers—and, sometimes—the public.As a software architect, I am in charge of building the best possible solution to receive, store, analyze, visualize, and share the customers’ event data. Our team then comes together to create solutions that work and that the customer actually wants.About the ProjectEdeva has created a dynamic speed bump calledActibumpand the smart city platformEdevaLive.The Actibump has been used in Sweden since 2010. Speeding vehicles activate a hatch in the road that lowers a few centimeters, creating an inverted speed bump. Providing good accessibility for public transportation, such as buses and emergency vehicles, the Actibump still ensures a safe speed for pedestrians and other vulnerable road users. It is also an environmentally friendly solution, helping decrease noise and emissions.The Actibump can be combined with the EdevaLive system, delivering valuable remote monitoring services and statistics to Edeva’s customers.Most of the data we collect is based on IoT devices:Traffic flow data: The Actibump measures the speed of oncoming traffic to decide if it needs to activate the speed bump or not. We capture radar",https://www.timescale.com/blog/how-edeva-uses-continuous-aggregations-and-iot-to-build-smarter-cities/,508,"[0.014689087867736816, -0.030145075172185898, 0.016591589897871017, 0.021178241819143295, 0.02694474160671234, 0.001876693102531135, -0.07138070464134216, 0.02846379391849041, -0.006644010078161955, 0.0023486316204071045, 0.05335855111479759, -0.033006202429533005, -0.05672111362218857, -0.027490420266985893, 0.055983711034059525, 0.08707266300916672, 0.013184783048927784, -0.05680960416793823, -0.05843189358711243, 0.039377372711896896, 0.016075406223535538, 0.0022380209993571043, 0.052562154829502106, 0.006013529375195503, -0.0014674339909106493, -0.056190185248851776, -0.03698818385601044, 0.048786647617816925, 0.01868581771850586, -0.07580512762069702, 0.029968097805976868, -0.02930443361401558, -0.02044083923101425, -0.0033625622745603323, 0.008966832421720028, 0.011289655230939388, 0.011016815900802612, 0.0033533447422087193, 0.007639505434781313, 0.03483496606349945, -0.021119249984622, -0.036958687007427216, 0.006249498575925827, 0.029053717851638794, -0.05061541125178337, -0.014696461148560047, -0.03527740761637688, 0.017623955383896828, 0.01716676540672779, 0.029038969427347183, -0.02470303326845169, -0.021546944975852966, 0.02793286368250847, -0.03619178757071495, -0.014593224972486496, -0.016370369121432304, 0.043300360441207886, 0.04215001314878464, -0.05421394109725952, -0.024068865925073624, 0.01036052592098713, -0.019305236637592316, 0.020883280783891678, 0.007727993652224541, 0.025101231411099434, -0.00472307251766324, -0.015691956505179405, 0.012513745576143265, -0.004125775303691626, 0.024747278541326523, 0.061646971851587296, 0.02555842138826847, 0.0031063142232596874, -0.014674339443445206, -0.0012028903001919389, -0.0411471426486969, -0.006924223620444536, 0.023567430675029755, -0.02812458761036396, -0.006054086610674858, -5.755207530455664e-05, -0.0060798958875238895, -0.03863997012376785, -0.003922989126294851, -0.005301934666931629, -0.05194273591041565, -0.03793206065893173, -0.03049902804195881, 0.004299065098166466, 0.02231384441256523, -0.015426491387188435, 0.07326845824718475, -0.026959490031003952, 0.03244577720761299, 0.019496960565447807, 0.044126253575086594, -0.006492841988801956, -0.021532196551561356, 0.05849088355898857, 0.021399464458227158, 0.01491030864417553, -0.019437968730926514, 0.02089802920818329, -0.030558021739125252, 0.020780043676495552, -0.018597329035401344, 0.0030620701145380735, 0.0219303946942091, 0.030646510422229767, -0.034687481820583344, -0.0683131068944931, -0.04925858601927757, -0.02712171897292137, -0.005548965185880661, 0.048462189733982086, 0.006750933360308409, -0.04660393297672272, -0.00685785710811615, 0.014032797887921333, -0.06135201081633568, -0.020499831065535545, 0.022594058886170387, -0.013487119227647781, -0.0274314284324646, 0.02620733715593815, -0.010205671191215515, -0.011112677864730358, -0.05123483017086983, -0.04442121461033821, -0.034392520785331726, 0.06418364495038986, 0.01971818320453167, 0.08807553350925446, -0.017019284889101982, -0.003270386718213558, -0.012897195294499397, -0.01852358877658844, -0.01815488561987877, -0.03141340985894203, 0.004634583834558725, -0.02433433197438717, 0.012196661904454231, 0.00536092696711421, 0.0038566228467971087, -0.03049902804195881, -0.032298292964696884, 0.011982814408838749, 0.014231896959245205, 0.003790256567299366, -0.0001451764110242948, -0.017402734607458115, 0.020160624757409096, -0.04831470921635628, -0.004464981146156788, 0.08483095467090607, 0.031796861439943314, 0.04958304390311241, 0.04477516934275627, -0.003570878878235817, -0.0024905819445848465, -0.016694827005267143, -0.0024721468798816204, -0.007602635305374861, -0.03067600540816784, -0.05076289176940918, 0.03807954117655754, -0.06524550169706345, -0.03875795379281044, -0.06601240485906601, 0.013708340004086494, -0.037666596472263336, -0.03070550225675106, 0.0229480117559433, 0.0384334959089756, 0.005183950066566467, -0.017196260392665863, -0.0060614608228206635, 0.00020105780276935548, 0.014054919593036175, -0.03633926808834076, -0.050851378589868546, -0.0022988568525761366, 0.016208140179514885, -0.006349048111587763, 0.0049553546123206615, -0.00934290885925293, -0.0257353987544775, 0.0510578528046608, -0.025440437719225883, 0.020367098972201347, -0.04908160865306854, 0.052031226456165314, 0.023287218064069748, 0.01712252013385296, 0.019172504544258118, 0.007484650705009699, 0.01387794315814972, -0.009807473048567772, 0.001592792570590973, -0.01631137542426586, 0.02044083923101425, 0.010449014604091644, 0.0665433332324028, -0.033035699278116226, -0.002798448083922267, -0.04681040346622467, -0.011451884172856808, 0.04309388995170593, -0.001780830672942102, -0.029186449944972992, 0.03167887404561043, -0.014195026829838753, 0.012432631105184555, -0.01595742255449295, -0.03359612450003624, 0.0008623017929494381, -0.0069021014496684074, 0.03619178757071495, 0.04150109738111496, 0.00032560995896346867, -0.03905291482806206, 0.025868132710456848, 0.015441239811480045, 0.012580111622810364, -0.03583783283829689, 0.05775348097085953, 0.024732530117034912, -0.03153139352798462, 0.018656320869922638, -0.018125390633940697, 0.02039659395813942, -0.02964363992214203, -0.016901299357414246, -0.028567031025886536, 0.005143392831087112, 0.049819014966487885, 0.012307272292673588, -0.022933263331651688, -0.006529712118208408, 0.028213076293468475, -0.004265882074832916, -0.0037036114372313023, 0.013243775814771652, 0.006242124829441309, -0.03651624545454979, 0.02813933603465557, -0.031295426189899445, -0.01834661141037941, 0.034923452883958817, 0.027859123423695564, 0.011378143914043903, -0.01597217097878456, 0.010684983804821968, -0.028050847351551056, 0.0018186225788667798, 0.021709173917770386, -0.02607460506260395, -0.012027058750391006, -0.020455585792660713, -0.022092623636126518, 0.02951090782880783, 0.012543241493403912, -0.0006807160680182278, -0.002365223364904523, -0.009453519247472286, -0.0038013176526874304, 0.046928390860557556, 0.015485484153032303, 0.042798928916454315, 0.042444974184036255, 0.02815408445894718, 0.009136435575783253, 0.0171815138310194, -0.013383882120251656, 0.017948413267731667, -0.005113896448165178, 0.008856222033500671, -0.007455154322087765, -0.014364629983901978, -0.034038569778203964, -0.005604270379990339, -0.012041807174682617, 0.007661627605557442, -0.017756687477231026, -0.011621486395597458, -0.00787547416985035, -0.005121270660310984, 0.028537534177303314, -0.008826726116240025, -0.02673826925456524, -0.017535466700792313, -0.01768294721841812, 0.019172504544258118, -0.012462127022445202, 0.05964123457670212, -0.007624757010489702, 0.0048004998825490475, 0.006942658685147762, 0.011127426289021969, -0.04937656968832016, 0.021384716033935547, 0.016414612531661987, -0.012159791775047779, -0.023773904889822006, -0.01700453646481037, 0.03495294973254204, -0.01870056428015232, 0.015116781927645206, 0.0020260175224393606, -0.040380243211984634, -0.00741459708660841, 0.021473204717040062, -0.0006042104214429855, -0.013966431841254234, -0.03223930299282074, -0.05430242791771889, 0.06441961228847504, 0.006769368425011635, -0.006183132529258728, -0.05710456520318985, 0.014165530912578106, -0.03996729478240013, -0.02368541620671749, -0.019349480047822, 0.015854185447096825, -0.051470797508955, 0.02725445106625557, 0.024408072233200073, 0.008598130196332932, -0.0035782528575509787, 0.019437968730926514, 0.06854907423257828, -0.010205671191215515, -0.003049165476113558, -0.0036261840723454952, -0.003051009029150009, -0.015647713094949722, -0.03704717755317688, -0.01235889084637165, 0.00926916766911745, 0.023095492273569107, -0.044480208307504654, -0.02899472415447235, -0.006271620746701956, 0.08347412943840027, 0.01884804666042328, -0.028227824717760086, -0.037106167525053024, 0.0435953252017498, 0.04887513816356659, -0.04332985728979111, 0.0010959666687995195, -0.0217976626008749, -0.021561693400144577, -0.020824288949370384, 0.00926179438829422, -0.00884147360920906, -0.010227792896330357, -0.051382310688495636, -0.010308907367289066, -0.03415655344724655, -0.01054487656801939, 0.035247910767793655, -0.0025053301360458136, -0.001753177959471941, 0.06099805608391762, -0.05781247094273567, 0.06135201081633568, -0.012653852812945843, -0.03445151448249817, 0.032327789813280106, 0.009254420176148415, -0.012631730176508427, 0.02041134238243103, -0.02967313677072525, -0.022431829944252968, 0.045866526663303375, 0.029230693355202675, 0.03961334377527237, 0.07633606344461441, 0.058756351470947266, 0.056013207882642746, -0.04377230256795883, -0.06294480711221695, 0.04663342982530594, 0.044155750423669815, 0.027342939749360085, -0.01887754164636135, -0.035424888134002686, -0.025691155344247818, 0.06005417928099632, -0.051854249089956284, -0.024098362773656845, -0.0037552297580987215, -0.024245843291282654, 0.044480208307504654, 0.03819752484560013, -0.02368541620671749, 0.055098824203014374, -0.007727993652224541, 0.0054457285441458225, -0.017550215125083923, -0.035926323384046555, 0.01729949750006199, 0.002643593354150653, 0.016665330156683922, -0.030071334913372993, 0.01580994203686714, 0.0022380209993571043, -0.0370766706764698, -0.017579711973667145, -0.05315208062529564, 0.05421394109725952, -0.03607380390167236, -0.010493258945643902, -0.0325932577252388, -0.013251150026917458, 0.060644105076789856, 0.02162068523466587, 0.038698960095644, -0.03418605029582977, 0.010913578793406487, -0.0030049211345613003, 0.004136836156249046, -0.017564963549375534, 0.007551016751676798, 0.012019684538245201, 0.0007871787529438734, 0.005891857668757439, -0.011982814408838749, 0.0073334826156497, 0.025337200611829758, 0.015426491387188435, 0.012108173221349716, -0.05793045833706856, 0.01800740510225296, 0.007138070650398731, -0.004251134116202593, 0.04917009919881821, 0.022063126787543297, -0.026118848472833633, -0.032150812447071075, 0.00319664622657001, 0.05763549730181694, -0.05040893703699112, -0.03760760277509689, -0.03018931858241558, 0.00822942890226841, 0.01294881384819746, 0.008037703111767769, 0.007838604040443897, 0.0192167479544878, -0.05061541125178337, 0.06931597739458084, -0.03176736459136009, -0.02883249521255493, 0.04737083241343498, 0.004472355358302593, 0.026148345321416855, -0.015573971904814243, -0.016591589897871017, 0.013973805122077465, -4.893942968919873e-05, 0.016031162813305855, -0.0021771853789687157, 0.017417483031749725, -0.0012886134209111333, 0.02931918203830719, 0.038315512239933014, 0.004070470109581947, -0.029628891497850418, 0.028670266270637512, 0.00806719996035099, 0.02589762769639492, -0.0343630276620388, -0.005202385131269693, -0.0026140972040593624, -0.042238499969244, -0.013170035555958748, -0.019954152405261993, -0.03182635456323624, 0.017609206959605217, -0.044657185673713684, 0.0045350342988967896, 0.05265064537525177, -0.005169202107936144, -0.015824690461158752, 0.015131529420614243, -0.003974607679992914, 0.00338837131857872, -0.015220018103718758, 0.0033183179330080748, 0.1048293486237526, -0.018420351669192314, -0.00728555116802454, -0.048786647617816925, 0.01019829697906971, -0.0181991308927536, 0.03689969703555107, 0.011223288252949715, 0.01070710550993681, -0.003014138899743557, -0.015220018103718758, 0.029614144936203957, 0.02930443361401558, 0.016060659661889076, -0.0011568025220185518, 0.0023265096824616194, 0.024599796161055565, -0.0528276227414608, -0.00170616852119565, -0.04704637452960014, 0.0036962374579161406, 0.024909507483243942, -0.010618617758154869, 0.025927124544978142, 2.5060213374672458e-05, 0.012661226093769073, 0.013745210133492947, 0.002510860562324524, -0.029628891497850418, -0.019319985061883926, 0.0020297043956816196, 0.04076369106769562, 0.029864860698580742, -0.013914813287556171, -0.03722415491938591, -0.0021200363989919424, -0.03415655344724655, 0.005766499321907759, 0.01902502216398716, -0.038846440613269806, 0.032475270330905914, 0.03430403396487236, -0.05253266170620918, -0.006699315272271633, -0.00797133706510067, -0.020706303417682648, 0.0024739904329180717, 0.01613439992070198, 0.006780429743230343, 0.028552282601594925, 0.04424424096941948, 0.04548307880759239, -0.026000864803791046, 0.020780043676495552, -0.002780013019219041, -0.03253426402807236, -0.009239671751856804, 0.01713726855814457, 0.04315287992358208, 0.007786985952407122, 0.04801974818110466, -0.002064731204882264, 0.011075807735323906, 0.05722254887223244, -0.020485082641243935, -0.001913563348352909, 0.00018124007328879088, 0.007860726676881313, 0.005604270379990339, -0.02588287927210331, 0.021900897845625877, -0.0024481811560690403, -0.006592391524463892, 0.06359372287988663, 0.0011650982778519392, 0.009814847260713577, -0.021974638104438782, 0.04557156562805176, 0.006596078630536795, -0.021664928644895554, -0.018656320869922638, -0.03657523915171623, 0.02570590376853943, 0.0017983439611271024, -0.03017457202076912, -0.044303230941295624, -0.039377372711896896, -0.03563136234879494, -0.03126592934131622, -0.014209775254130363, 0.00419951556250453, 0.018464595079421997, -0.05058591440320015, 0.010028693825006485, 0.0339500792324543, 0.011016815900802612, 0.025779644027352333, -0.006732498295605183, 0.02094227261841297, 0.003685176372528076, 0.007646879181265831, 0.014873438514769077, 0.024762025102972984, 0.012329394929111004, 0.021679677069187164, -0.005349866114556789, -0.01988041214644909, 0.0013088920386508107, 0.01509465929120779, -0.034716978669166565, -0.002013112884014845, -0.020971769466996193, -0.009807473048567772, -0.008760359138250351, -0.011083181947469711, -0.005508407950401306, 0.013804202899336815, -0.025764895603060722, 0.02985011413693428, 0.026620283722877502, -0.014836568385362625, -0.006946345791220665, -0.0018066397169604897, 0.013177408836781979, 0.01148875430226326, 3.249186192988418e-05, 0.011038937605917454, 0.014674339443445206, -0.029746877029538155, -0.03675221651792526, -0.013037302531301975, 0.0010083999950438738, 0.0012664913665503263, -0.00374785577878356, -0.005198698025196791, -0.03085298277437687, 0.0013890847330912948, 0.007713245693594217, 0.02163543365895748, 0.016149146482348442, 0.0028943107463419437, -0.0018647103570401669, 0.011164296418428421, -0.01576569676399231, -0.009652618318796158, 0.02195989154279232, -0.05223769694566727, -0.04300539940595627, 0.028198327869176865, 0.011687853373587132, 0.012823455035686493, -0.004162645433098078, -0.0020426090341061354, -0.013870568946003914, -0.05088087543845177, 0.041943538933992386, 0.00924704596400261, 0.021045509725809097, -0.030764494091272354, -0.0021126624196767807, 0.03657523915171623, 0.044303230941295624, 0.01784517616033554, 0.016576841473579407, -0.026354817673563957, -0.016355620697140694, 0.013804202899336815, 0.005475224461406469, -0.02265305072069168, -0.00016626155411358923, -0.0062089418061077595, -0.0005230959504842758, -0.02639906294643879, 0.02280053123831749, 0.03226879984140396, 0.01990990713238716, 0.003744168672710657, 0.051028355956077576, -0.02434908039867878, 0.018833298236131668, 0.016208140179514885, 0.03212131932377815, 0.04170756787061691, 0.006879979278892279, -0.003323848359286785, -0.029776373878121376, 0.02107500657439232, 0.014475240372121334, 0.00685785710811615, 0.017609206959605217, -0.04008528217673302, -0.002708116080611944, -0.027490420266985893, 0.03173786774277687, 0.0060098422691226006, 0.006087270099669695, 0.008177810348570347, -0.0022122119553387165, 0.020101632922887802, -0.042267996817827225, 0.034687481820583344, 0.018081145361065865, -0.024319583550095558, -0.035395391285419464, -0.00263990624807775, 0.005689071957021952, 0.006135201081633568, -0.05645564943552017, -0.0181991308927536, 0.0009927301434800029, -0.028050847351551056, -0.004077843856066465, -0.03015982359647751, -0.009468266740441322, 0.028758754953742027, -0.015264262445271015, 0.027903366833925247, 0.009645244106650352, -0.02365591935813427, -0.017358489334583282, -0.039849311113357544, 0.01551498007029295, -0.0015153652057051659, 0.03223930299282074, -0.02005738765001297, 0.03451050817966461, 0.02142895944416523, -0.032652247697114944, -0.02694474160671234, 0.04822622239589691, -0.03170837089419365, -0.04822622239589691, 0.032298292964696884, -0.010736602358520031, -0.013435500673949718, 0.06530449539422989, -0.00652233837172389, -0.003963546361774206, -0.00028297878452576697, 0.03893493115901947, 0.03126592934131622, -0.005172888748347759, -0.003310943953692913, -0.0059434762224555016, -0.03241628035902977, -0.0026270016096532345, -0.0363982617855072, -0.008266299031674862, -0.04253346100449562, -0.0036354016046971083, -0.005913979839533567, -0.010906204581260681, 0.0456305593252182, -0.04548307880759239, -0.03908241167664528, 0.05073339492082596, -0.018567832186818123, 0.0166358333081007, -0.0027412993367761374, 0.014784949831664562, -0.006131513975560665, 0.038345009088516235, 0.0020149564370512962, 0.011179044842720032, 0.015161026269197464, 0.015854185447096825, 0.02810983918607235, 0.008598130196332932, 0.02126673050224781, 0.02231384441256523, -0.0267530158162117, 0.011894326657056808, 0.007355604786425829, -1.8809561879606918e-05, 0.0038639968261122704, -0.003830813802778721, 0.007307673338800669, 0.0035321651957929134, -0.018597329035401344, -0.03359612450003624, -0.004022538661956787, 0.010043442249298096, 0.0435953252017498, -0.007049581967294216, 0.0007959354552440345, 0.0212519820779562, -0.022166363894939423, 0.023242972791194916, 0.028920983895659447, -0.0012572738341987133, -0.030115578323602676, -0.031088951975107193, 0.00118076812941581, 0.010308907367289066, 0.03981981426477432, -0.010331030003726482, -0.023434698581695557, -0.06890302896499634, 0.006699315272271633, -0.008037703111767769, -0.05262114852666855, -0.04533559828996658, 0.010766098275780678, -0.0272986963391304, 0.024629293009638786, -0.057694487273693085, 0.009055321104824543, 0.018774306401610374, -0.002569852862507105, -0.0013632755726575851, 0.0008830412989482284, 0.05279812589287758, 8.627050192444585e-06, 0.04925858601927757, -0.040026288479566574, 0.02930443361401558, -0.04008528217673302, -0.004269569180905819, 0.002612253651022911, 0.016016414389014244, -0.024791521951556206, -0.02470303326845169, 0.0013135008048266172, 0.006511277053505182, 0.019924655556678772, -0.008524389937520027, -0.026030361652374268, -0.013066798448562622, 0.016045911237597466, 0.007845978252589703, 0.0014757297467440367, -0.021664928644895554, 0.009438770823180676, 0.05368300899863243, 0.012381012551486492, -0.011304402723908424, -0.00766900135204196, -0.014040172100067139, -0.02195989154279232, 0.004332248587161303, 0.012137670069932938, 0.017255254089832306, -0.016208140179514885, -0.006526025477796793, -0.007267116103321314, -0.014180278405547142, -0.008959458209574223, 0.01088408287614584, 0.004911110736429691, 0.003716516075655818, -0.042592454701662064, 0.0010987319983541965, 0.04008528217673302, -0.011016815900802612, 0.03563136234879494, 0.014961927197873592, -0.025514177978038788, -0.035601865500211716, -0.008458023890852928, -0.037991054356098175, 0.0028519099578261375, -0.0272986963391304, 0.028095092624425888, 0.01509465929120779, -0.012159791775047779, -0.007565764710307121, 0.006769368425011635, -0.0022933264262974262, -0.02535194903612137, -0.012557989917695522, 0.020204870030283928, 0.003589313942939043, 0.0524146743118763, -0.007307673338800669, 0.0034916079603135586, 0.010611243546009064, 0.03052852489054203, 0.016429360955953598, 0.005961911287158728, 0.01294881384819746, 0.009114312939345837, 0.004612462129443884, 0.0025901314802467823, 0.02620733715593815, -0.039524853229522705, 0.030292555689811707, -0.008745611645281315, -0.013066798448562622, 0.017211008816957474, 0.013221653178334236, -0.018818549811840057, -0.013000432401895523, -0.01235889084637165, 0.027844374999403954, 0.024747278541326523, 0.02350843884050846, -0.015529727563261986, -0.024142606183886528, 0.015279010869562626, 0.007838604040443897, 0.03964283689856529, 0.012668600305914879, -0.003261169185861945, 0.03922989219427109, -0.006076208781450987, 0.03743062540888786, 0.037843573838472366, 0.016562093049287796, 0.02299225702881813, -0.04748881608247757, -0.004590339958667755, 0.003036260837689042, -0.02126673050224781, -0.031649380922317505, -0.014866064302623272, 0.0037202031817287207, 0.03049902804195881, 0.013575606979429722, 0.04831470921635628, -0.02588287927210331, 0.033684615045785904, -0.01304467674344778, -0.02934867888689041, 0.013147912919521332, -0.015205270610749722, 0.030558021739125252, -0.006691941060125828, -0.06093906611204147, 0.0332716666162014, 0.0032169248443096876, 0.02038184553384781, 0.00881935190409422, -0.032327789813280106, -0.011953318491578102, -0.021340470761060715, 0.03943636640906334, 0.04164857789874077, 0.030351547524333, 0.021192990243434906, -0.008354786783456802, 0.011444509960711002, -0.016326123848557472, -0.027844374999403954, -0.00736666563898325, 0.010972571559250355, 0.015588720329105854, 0.0173142459243536, 0.011938570998609066, -0.017373237758874893, 0.013236401602625847, 0.028508037328720093, -0.021900897845625877, -0.0019651816692203283, -0.017373237758874893, 0.027829626575112343, -0.012108173221349716, 0.01802215352654457, -0.040468730032444, 0.0391119085252285, 0.005198698025196791, 0.031088951975107193, -0.029053717851638794, -0.049819014966487885, -0.009903335943818092, 0.01302992831915617, 0.006865231320261955, 0.049494557082653046, 0.007801734376698732, -0.008509642444550991, 0.013310141861438751, -0.05040893703699112, -0.034569498151540756, -0.03545438498258591, 0.011127426289021969, 0.018405603244900703, 0.013081546872854233, -0.025823887437582016, 0.021296227350831032, -0.006666132248938084, 0.045188117772340775, -0.0016029318794608116, 0.013678844086825848, -0.005814430303871632, 0.02589762769639492, 0.03905291482806206, -0.05129382014274597, 0.017225757241249084, 0.0018969717202708125, 0.02315448597073555, 0.010552250780165195, 0.0020573572255671024, 0.011813212186098099, 0.006179445423185825, -0.015028293244540691, -0.013789454475045204, 0.015721453353762627, 0.009888587519526482, 0.04778377711772919, 0.033861592411994934, -0.027814878150820732, 0.010345777496695518, -0.020234365016222, 0.007565764710307121, -0.03858097642660141, -0.010050816461443901, -0.04542408511042595, 0.004022538661956787, -0.006975841708481312, -0.014416247606277466, -0.03551337495446205, 0.013059424236416817, -0.01054487656801939, -0.01681281067430973, -0.03858097642660141, 0.01363459974527359, -0.02162068523466587, -0.007868100889027119, -0.008885717950761318, -0.012830829247832298, -0.03159038722515106, 0.022151615470647812, 0.00375338620506227, -0.011444509960711002, -0.008281046524643898, -0.02639906294643879, -0.008303169161081314, -0.018818549811840057, -0.028861992061138153, 0.020470334216952324, -0.017373237758874893, 0.017417483031749725, -0.043978773057460785, -0.024304835125803947, -0.032298292964696884, 0.029068464413285255, -0.002350475173443556, 0.048432692885398865, 0.012498997151851654, 0.005980346351861954, 0.003744168672710657, -0.03418605029582977, -0.008834099397063255, 0.0171815138310194, -0.007646879181265831, 0.016149146482348442, -0.04309388995170593, -0.005349866114556789, -0.03563136234879494, -0.022933263331651688, -0.02128147892653942, -0.00037169770803302526, 0.04666292294859886, -0.008325290866196156, -0.008251550607383251, -0.016916047781705856, -0.024216346442699432, -0.004708324559032917, 0.026974238455295563, 0.010684983804821968, 0.014541606418788433, -0.00023228225472848862, -0.018744809553027153, 0.017063528299331665, 0.009224924258887768, -0.0019025022629648447, 0.015426491387188435, -0.03244577720761299, 0.015824690461158752, 0.03807954117655754, -0.02038184553384781, -0.017048779875040054, -0.006607139948755503, 0.023626424372196198, -0.005261377431452274, 0.02968788519501686, 0.000621262879576534, 0.028876740485429764, -0.0024500247091054916, -0.03088247962296009, 0.006319552194327116, 0.030646510422229767, -0.04648594558238983, -0.01594267413020134, -0.04052772372961044, -0.043801795691251755, -0.008428527973592281, 0.00035971487523056567, -0.017564963549375534, 0.022594058886170387, -0.005755438003689051, -0.011953318491578102, -0.00968948844820261, 0.01474807970225811, 0.014121286571025848, -0.0076837497763335705, -0.0020444525871425867, -0.0028777190018445253, -0.0217976626008749, 0.00918067991733551, 0.008848847821354866, -0.0005327743710950017, -0.02176816575229168, -0.02555842138826847, 0.04338885098695755, -0.0026270016096532345, 0.008288420736789703, 0.004553469829261303, -0.012875073589384556, 0.0411471426486969, 0.04595501720905304, -0.011975441128015518, -0.012469501234591007, -0.007779612205922604, -0.023036500439047813, 0.009652618318796158, -0.009999197907745838, 0.02380339987576008, 0.03501193970441818, 0.027741137892007828, -0.006868917960673571, 0.003342283656820655, -0.010891457088291645, 0.034215543419122696, 0.013229027390480042, 0.015079911798238754, 0.02454080432653427, 0.04660393297672272, 0.01763870380818844, 0.030646510422229767, -0.00510652270168066, -0.011363395489752293, -0.011518250219523907, -0.02449656091630459, -0.03341914713382721, 0.0031155317556113005, -0.006419101729989052, -0.01114217471331358, 0.025986116379499435, 0.03220980614423752, -0.005961911287158728, -0.0012701783562079072, 0.02005738765001297, -0.013236401602625847, 0.004715698305517435, 0.0019393725087866187, 0.013015180826187134, -0.005430980585515499, 0.018789052963256836, -0.0029367113020271063, -5.176230479264632e-05, -0.018449848517775536, 0.03896442800760269, -0.019836166873574257, -0.019172504544258118, -0.013229027390480042, 0.07863675802946091, -0.00246661645360291, -0.007794360164552927, 0.009962327778339386, 0.005254003219306469, -0.011709975078701973, 0.021340470761060715, 0.012469501234591007, -0.0071159484796226025, 0.011429761536419392, -0.014335133135318756, 0.000797778950072825, -0.02948141098022461, -0.020278610289096832, -0.0005355396424420178, -0.014298263005912304, -0.013229027390480042, 0.00970423687249422, -0.004288004245609045, -0.0245113093405962, -0.03430403396487236, -0.0122556546702981, 0.0068246740847826, -0.003397588850930333, -0.021723922342061996, 0.01884804666042328, 0.00690578855574131, -0.006102018058300018, 0.014408874325454235, -0.00036178884329274297, -0.0315018966794014, 0.021679677069187164, 0.020116381347179413, 0.025986116379499435, -0.0028002916369587183, 0.013855820521712303, -0.01628188043832779, -0.03719465807080269, 0.027505168691277504, -0.0032814478036016226, -0.03279972821474075, -0.0009162244386970997, -0.009792724624276161, -0.030086083337664604, 0.010441640391945839, 0.006710376124829054, 0.023287218064069748, -0.009578878059983253, -0.02709222212433815, -0.048757150769233704, -0.027033230289816856, -0.0019375289557501674, 0.005655888468027115, 0.0020426090341061354, -0.022225355729460716, -0.011687853373587132, 0.017225757241249084, 0.03566085547208786, -0.006514964159578085, 0.02349369041621685, -0.05235568434000015, 0.012218784540891647, -0.007853352464735508, -0.0034215545747429132, 0.0007060643401928246, -0.039849311113357544, 0.017800932750105858, -0.05760600045323372, 0.02690049819648266, -0.020204870030283928, -0.0014121286803856492, 0.036604732275009155, 0.058933325111866, -0.010876708664000034, -0.008207306265830994, 0.03427453711628914, -0.002575383521616459, 0.024983247742056847, 0.03200333192944527, -0.00205920054577291, -0.03389108553528786, 0.01837610825896263, -0.02141421101987362, -0.0005949928308837116, -0.021340470761060715, 0.0022859524469822645, 0.013273271732032299, -0.014902934432029724, -0.0245113093405962, -0.02433433197438717, -0.008870969526469707, -0.001632428029552102, 0.00857600849121809, 0.0014351725112646818, 0.02673826925456524, -0.0011853768955916166, 0.010190922766923904, -0.01889229007065296, -0.026871001347899437, -0.03613279387354851, 0.011156922206282616, 0.0003408188931643963, -0.014217148534953594, -0.0053756749257445335, -0.02042609080672264, 0.011695227585732937, -0.03200333192944527, -0.03961334377527237, 0.012646478600800037, 0.00475625554099679, -0.03501193970441818, 0.011510876007378101, 0.015898430719971657, 0.00995495356619358, 0.008251550607383251, -0.04108814895153046, 0.0009779820684343576, -0.0157509483397007, -0.0076911235228180885, -0.007027459796518087, 0.005062278360128403, 0.024275340139865875, -0.009940206073224545, 0.01713726855814457, 0.018228625878691673, 0.039495356380939484, 0.016429360955953598, 0.010095060802996159, -0.0025366696063429117, 0.026974238455295563, -0.009409274905920029, 0.020234365016222, 0.03940686956048012, 0.002643593354150653, -0.02349369041621685, 0.010684983804821968, -0.009394526481628418, -0.02775588631629944, -0.007639505434781313, 0.011046311818063259, -0.027062727138400078, -0.028375305235385895, -0.008568634279072285, 0.007127009332180023, -0.004538721404969692, -0.005552651826292276, 0.0016407239018008113, 0.008303169161081314, 0.021310975775122643, 0.020322853699326515, 0.01971818320453167, 0.003867683932185173, 0.011525624431669712, -0.0014148938935250044, 0.0007281864527612925, 0.0014858690556138754, 0.007720619905740023, 0.012889822013676167, 0.012373639270663261, -0.016753818839788437, -0.014689087867736816, -0.006739872507750988, -0.021340470761060715, 0.0228152796626091, 0.013774706050753593, -0.03996729478240013, 0.02333146147429943, 0.013501866720616817, -0.01576569676399231, 0.014954552985727787, 0.005766499321907759, -0.009379778988659382, 0.0020260175224393606, -0.014150782488286495, 0.0096083739772439, -0.03636876493692398, 0.018081145361065865, 0.000667811487801373, -0.008207306265830994, 0.0031210624147206545, -0.021119249984622, 0.021296227350831032, 0.005261377431452274, 0.006400666665285826, 0.007661627605557442, 0.03135441616177559, -0.03855147957801819, -0.00856126006692648, -0.018081145361065865, -0.003941424190998077, 0.01626713201403618, -0.03630977123975754, 0.02163543365895748, 0.07014186680316925, -0.00244265072979033, 0.01311104279011488, -0.00536092696711421, -0.012889822013676167, -0.0031763676088303328, 0.032681744545698166, 0.018818549811840057, -0.023537935689091682, -0.025853384286165237, -0.00977060291916132, -0.0006069756345823407, 0.03262275084853172, -0.01715201698243618, 0.014091790653765202, 0.03018931858241558, 0.020883280783891678, -0.02265305072069168, -0.0024500247091054916, -0.0020831662695854902, 0.023390455171465874, 0.004520286340266466, -0.006747246719896793, -0.01096519734710455, 0.015691956505179405, 0.01407704222947359, -0.022771034389734268, 0.01785992458462715, -0.004881614353507757, 0.017093025147914886, -0.021030761301517487, 0.017211008816957474, 0.02398037724196911, 0.06554046273231506, -0.0017983439611271024, -0.001808483269996941, -0.028847243636846542, 0.008177810348570347, 0.00010375504643889144, -0.022903768345713615, 0.01414340827614069, -0.021989386528730392, -0.001994677819311619, -0.00924704596400261, -0.021325724199414253, -0.0045497827231884, -0.017623955383896828, 0.01440150011330843, 0.006750933360308409, -0.005206072237342596, 0.01903977058827877, 0.014416247606277466, 0.03914140537381172, 0.01054487656801939, 0.03981981426477432, 0.025587918236851692, -0.012757088989019394, -0.026015613228082657, 0.024054117500782013, 0.0002454172645229846, 0.011429761536419392, -0.011518250219523907, 0.023773904889822006, 0.035955820232629776, -0.009195427410304546, 0.021016012877225876, -0.005102835595607758, -0.0209127776324749, 0.005143392831087112, 0.031088951975107193, -0.02231384441256523, -0.02315448597073555, 0.010390021838247776, 0.03377310186624527, 0.011724723502993584, -0.035218413919210434, 0.049465060234069824, 0.0008567712502554059, 0.01781568117439747, 0.015500231646001339, -0.004276942927390337, -0.03672271966934204, -0.012653852812945843, -0.002964364131912589, 0.001344840507954359, -0.030970968306064606, -0.03223930299282074, -0.01732899434864521, -0.004236385691910982, -0.011717349290847778, 0.019836166873574257, -0.0001358436420559883, 0.015898430719971657, -0.022195860743522644, 0.007525207474827766, 0.0037036114372313023, 0.010736602358520031, 0.007532581686973572, 0.03309468924999237, -0.023390455171465874, 0.017933664843440056, -0.009372404776513577, 0.01114954799413681, -0.008671870455145836, 0.02159118838608265, 0.0063637965358793736, -0.010972571559250355, -0.017977910116314888, -0.017889421433210373, 0.0072523681446909904, -0.036958687007427216, 0.026885749772191048, 0.02060306817293167, 0.012145043350756168, -0.022018883377313614, -0.02899472415447235, -0.006245811935514212, 0.014357255771756172, -0.016001665964722633, 0.007444093469530344, 0.0021808722522109747, -0.0009623122168704867, 0.013251150026917458, 0.033507637679576874, -0.02004264108836651, 0.010390021838247776, 0.03760760277509689, 0.03427453711628914, 0.0319148451089859, 5.105658601678442e-06, 0.005707507021725178, -0.010028693825006485, -0.02142895944416523, -0.005242942366749048, -0.04560106247663498, 0.0025643224362283945, 0.0033164743799716234, 0.023036500439047813, 0.004052035044878721, 0.03235728666186333, -0.0221368670463562, 0.007351917680352926, 0.011953318491578102, -0.008863596245646477, 0.024142606183886528, 0.018287619575858116, -0.009409274905920029, 0.013103668577969074, 0.005080713424831629, -0.034215543419122696, 0.001981773180887103, -0.008288420736789703, 0.02712171897292137, 0.00043115089647471905, 0.002925650216639042, 0.02691524475812912, -0.004645645152777433, 0.0059434762224555016, 0.016031162813305855, -0.004217950627207756, 0.005670636892318726, -0.02967313677072525, 0.006463346071541309, 0.04011477530002594, -0.017727192491292953, 0.011680479161441326, -0.004796812776476145, -0.014003301970660686, 0.013074172660708427, 0.026000864803791046, -0.006703002378344536, -0.01662108674645424, 0.023095492273569107, -0.0009659992065280676, 0.010013946332037449, -0.0036962374579161406, -0.03274073824286461, -0.012734967283904552, 0.014578476548194885, 0.005692758597433567, -0.018464595079421997, -0.021119249984622, -0.03657523915171623, -0.004638270940631628, 0.04324137046933174, -0.012639104388654232, -0.008612878620624542, 0.04515862092375755, -0.006234750617295504, 0.03619178757071495, 0.008199932053685188, 0.012432631105184555, 0.00943139661103487, -0.010441640391945839, 0.006242124829441309, 0.011171670630574226]" -How Edeva Uses Continuous Aggregations and IoT to Build Smarter Cities,"data, among others, and send an event to our smart city platform EdevaLive. The data treats the oncoming traffic as a flow rather than a single vehicle to create the smoothest possible traffic flow.Vehicle classification data (weigh-in-motion): Actibump can be configured with weigh-in-motion. This means that the lid of the speed bump is equipped with a very sensitive high sampling scale. The scale records several weight measurements when the vehicle passes over the speed bump. This way, it can detect how many axles a vehicle has and classify the type of vehicle. At the same time, it fires off one event for each axle with the scale fingerprint so we can analyze if the weight measurements are correct.Vehicle classification data (radar): If we want to classify vehicles in places where we do not yet have an Actibump installed, we can introduce a radar that can classify vehicle types. A roadside server controls the radar, gathers its data, and pushes it to EdevaLive.Bike and pedestrian data: We use cameras installed above a pedestrian and cycle path. The camera can detect and count pedestrians and bicycles passing in both directions. We push this data to EdevaLive for analysis.Number plate data:We can use a camera to detect the number plate of a vehicle. This way, we can control devices like gates to open automatically. It can also be used to look up the amount of electric vs. petrol or diesel vehicles passing the camera or determine if a specific vehicle exceeds the cargo weight limit.Gyroscopic data: We offer a gyroscopic sensor that can gather data for acceleration in all different planes. This device generates a lot of data that can be uploaded to EdevaLive in batches or as a stream (if the vehicle has an Internet connection). This data is GPS-tagged and can be used to calculate jerk to provide indications on working conditions to a bus driver, for instance. The data can also be used to calculate the wear and tear of vehicles and many other things.Environmental data: It is important to monitor environmental data in a smart city platform. This is why we use small portable devices that can measure the occurrence of different particle sizes in the air. It can also measure CO2 and other gasses. On top of that, it measures the usual",https://www.timescale.com/blog/how-edeva-uses-continuous-aggregations-and-iot-to-build-smarter-cities/,462,"[0.030862195417284966, -0.00825247447937727, 0.00770083861425519, -0.00841428805142641, 0.015519359149038792, -0.007281595375388861, -0.06248932704329491, -0.04468987137079239, 0.02110927179455757, 0.028037820011377335, 0.03542238473892212, -0.011341636069118977, -0.03545180708169937, -0.04201259836554527, 0.012753824703395367, 0.031862497329711914, 0.01211392693221569, 0.02065325155854225, -0.03686399385333061, 0.03654037043452263, 0.03677573427557945, 0.038011398166418076, 0.03630500286817551, -0.02349233813583851, 0.002697500167414546, -0.05342778563499451, 0.007605221588164568, 0.026669761165976524, 0.013761479407548904, -0.05745840445160866, 0.04327768459916115, -0.036805152893066406, -0.010223654098808765, -0.02518402226269245, -0.0008371076546609402, 0.01255523506551981, 0.014864751137793064, 0.008870307356119156, 0.0021752845495939255, 0.018358446657657623, -0.018564390018582344, -0.030450306832790375, -0.008289250545203686, 0.015740014612674713, -0.05695825442671776, -0.03262742981314659, -0.046866994351148605, 0.005637719761580229, -0.010709093883633614, 0.040629830211400986, -0.033068738877773285, -0.019682371988892555, 0.014416087418794632, -0.013746769167482853, 0.003414626931771636, 0.034892816096544266, -0.0037658351939171553, 0.025919536128640175, -0.006387944798916578, -0.02652265876531601, -0.0068255760706961155, -0.0026294649578630924, 0.038717493414878845, 0.017740614712238312, 0.004972079303115606, -0.005895149894058704, -0.025331124663352966, 0.02256559021770954, -0.03521644324064255, 0.02062383107841015, 0.0538690946996212, 0.020726803690195084, 0.011584356427192688, -0.04719062149524689, 0.009510205127298832, -0.02169768325984478, -0.011054785922169685, 0.015475228428840637, -0.01866736263036728, -0.00590250501409173, 0.006461496464908123, -0.013555535115301609, -0.06831460446119308, -0.029420586302876472, -0.025845985859632492, -0.03918822109699249, -0.021300503984093666, -0.05495765805244446, -0.03271569311618805, 0.031038718298077583, -0.002570623764768243, 0.028626231476664543, -0.0259342473000288, 0.07096245884895325, 0.039629530161619186, 0.004909560550004244, 0.01791713759303093, -0.06284237653017044, 0.01999128796160221, -0.0016282455762848258, -0.01230516005307436, -0.016225453466176987, -0.004740391857922077, -0.0342455618083477, 0.07025635987520218, -0.022506749257445335, -0.020815065130591393, 0.015740014612674713, 0.025081049650907516, 0.005965023767203093, -0.019638242200016975, -0.060841772705316544, -0.005273640155792236, 0.0030670962296426296, 0.03433382511138916, 0.024389665573835373, -0.013224553316831589, -0.021021008491516113, -0.011827075853943825, -0.054104458540678024, -0.05010325834155083, 0.05278053134679794, 0.006001799833029509, -0.05257458984851837, 0.04410145804286003, -0.005913537926971912, -0.028243763372302055, -0.06454876810312271, -0.02722875401377678, -0.010495794005692005, -0.012143347412347794, 0.0018819981487467885, 0.0865553691983223, -0.01657850109040737, 0.0008122840081341565, -0.017549380660057068, -0.006376912351697683, 0.004129915032535791, -0.03342178836464882, -0.017652351409196854, -0.00036637825542129576, 0.0029071217868477106, 0.0022653851192444563, 0.03401019796729088, -0.06607864052057266, -0.016284294426441193, -0.01824076473712921, 0.005825276020914316, 0.00640265503898263, -0.002326065208762884, -0.012915637344121933, 0.08320141583681107, -0.04151244834065437, -0.019388167187571526, 0.057517245411872864, 0.04663163051009178, 0.03601079806685448, 0.04822034016251564, -0.0279348473995924, -0.019932447001338005, -0.016151901334524155, -0.0017955751391127706, 0.015372256748378277, -0.04148302599787712, -0.03392193838953972, 0.03733472526073456, -0.03945300728082657, -0.034981079399585724, -0.06360730528831482, 0.020976878702640533, -0.012856796383857727, -0.010944458656013012, 0.01903511956334114, 0.01450434885919094, -0.022712692618370056, -0.014923593029379845, 0.013408432714641094, -0.0047330367378890514, 0.015210443176329136, -0.06272469460964203, -0.039835475385189056, -0.014857396483421326, 0.02044730819761753, -0.012592011131346226, -0.023477628827095032, 0.039011698216199875, -0.002429037122055888, 0.0745517686009407, -0.02889101579785347, 0.05054456740617752, -0.03412787988781929, 0.05404561758041382, 0.037011098116636276, 0.05748782679438591, 0.025948958471417427, -0.006163612939417362, -0.008223053999245167, -0.007546380627900362, 0.0005189975490793586, -0.03312757983803749, 0.05566374957561493, -0.018137792125344276, 0.07408104091882706, -0.03889401629567146, -0.02386009506881237, -0.026919836178421974, 0.01092974841594696, 0.03662863001227379, 0.00899534486234188, -0.002999061020091176, 0.005225831642746925, -0.028905726969242096, 0.01379825547337532, 0.01515160221606493, -0.04371899366378784, 0.028861595317721367, -0.031774234026670456, 0.031774234026670456, 0.046366844326257706, 0.003175584599375725, -0.011613776907324791, -0.0008458418888039887, 0.024080749601125717, 0.00529938330873847, -0.0634307861328125, 0.07390451431274414, 0.019961867481470108, -0.028964567929506302, 0.014997144229710102, -0.07578743249177933, 0.03392193838953972, 0.007568445987999439, -0.011724104173481464, 0.0004757860442623496, 0.013187778182327747, 0.011790299788117409, 0.034686870872974396, -0.03827618435025215, 0.02394835837185383, 0.009819121100008488, -0.015489938668906689, -0.002451102714985609, -0.0037051551043987274, 0.020182522013783455, -0.017402276396751404, 0.02486039511859417, -0.023051029071211815, -0.007171268109232187, 0.037746611982584, -0.0006196711328811944, 0.02880275435745716, -0.04218912124633789, 0.005895149894058704, -0.03483397513628006, -0.0038320315070450306, 0.03050914779305458, -0.03977663442492485, 0.006075351033359766, -0.02112398110330105, -0.0033870451152324677, 0.02611077018082142, 0.037305302917957306, -0.01878504455089569, 0.018402576446533203, -0.011716748587787151, -0.03604022040963173, 0.045749012380838394, -0.03342178836464882, 0.012437553144991398, 0.015328126028180122, -0.01382032036781311, -0.010900327004492283, 0.018226053565740585, -0.03727588430047035, -0.016034219413995743, 0.04563133046030998, 0.04004141688346863, -0.031185822561383247, 0.018358446657657623, -0.024742713198065758, -0.005277317948639393, -0.020932747051119804, 0.027493538334965706, 0.009289550594985485, -0.03551064804196358, 0.010892972350120544, 0.0051375702023506165, 0.029023408889770508, 0.03300989791750908, -0.008068596012890339, 0.02447792887687683, 0.0029236709233373404, -0.0016686988528817892, -0.017564089968800545, 0.08243648707866669, -0.011922692880034447, -0.01034869160503149, 0.031244663521647453, 0.00789942778646946, -0.032274384051561356, 0.02397777885198593, 0.014313115738332272, -0.010723804123699665, -0.016431396827101707, -0.028287895023822784, 0.05957668647170067, -0.02652265876531601, 0.004196111112833023, 0.003219715552404523, -0.046366844326257706, -0.03642268478870392, 0.027949556708335876, -0.021506449207663536, -0.015181022696197033, -0.04610205814242363, -0.027375856414437294, 0.06154786795377731, 0.011393122375011444, 0.02132992632687092, -0.017549380660057068, 0.008303960785269737, -0.021138692274689674, -0.018152501434087753, -0.02568417228758335, 0.013165712356567383, -0.04418972134590149, -0.01782887615263462, 0.03139176592230797, 0.005670818034559488, -0.004839686676859856, 0.01556349080055952, 0.0643722414970398, 0.00053140934323892, 0.020256074145436287, 0.040011998265981674, -0.005847341846674681, -0.007737614214420319, -0.031274084001779556, -0.011209243908524513, 0.029979577288031578, 0.014791199937462807, -0.03280395269393921, -0.029273483902215958, 0.022683272138237953, 0.03142118826508522, 0.005626687314361334, -0.025448808446526527, -0.007539025507867336, 0.02294805832207203, 0.025125181302428246, -0.0011896949727088213, -0.03571659326553345, -0.010378112085163593, -0.0016778928693383932, 0.011540224775671959, -0.0006559871253557503, 0.006082706153392792, 0.012768534943461418, -0.046278584748506546, -0.003002738580107689, -0.036687470972537994, 0.003184778615832329, 0.045660749077796936, 0.0015013692900538445, 0.0193734560161829, 0.04892643541097641, -0.07625816017389297, 0.025948958471417427, -0.025537069886922836, -0.0568699948489666, 0.037187620997428894, -0.014371956698596478, -0.007715548854321241, 0.006634342484176159, -0.011135691776871681, -0.023712992668151855, 0.04027678444981575, 0.04792613536119461, 0.00643207598477602, 0.0407475121319294, 0.047367144376039505, 0.04104171693325043, -0.015990089625120163, -0.05848812684416771, 0.03577543422579765, 0.04966194927692413, 0.005582556128501892, 0.00042131199734285474, -0.04089461639523506, -0.013607021421194077, 0.027199331670999527, -0.04418972134590149, -0.03039146587252617, -0.04301289841532707, -0.04377783462405205, 0.03939416632056236, 0.05163313075900078, -0.012952413409948349, 0.020638542249798775, 0.0013386367354542017, -0.022727403789758682, -0.03698167949914932, -0.037805452942848206, 0.02185949683189392, 0.024889815598726273, 0.04519002139568329, 0.010157457552850246, -0.032568588852882385, 0.018196633085608482, -0.017564089968800545, 0.04698467627167702, -0.033568888902664185, 0.04321884363889694, -0.01621074415743351, 0.005828953813761473, -0.03671689331531525, -0.017652351409196854, 0.05739956349134445, -0.010275140404701233, 0.04068867117166519, -0.015122181735932827, -0.0020631186198443174, -0.028905726969242096, 0.024139590561389923, -0.037805452942848206, 0.014791199937462807, 0.028405576944351196, 0.0035837951581925154, 0.016784444451332092, -0.03492223471403122, -0.00466684065759182, 0.042424485087394714, 0.02233022451400757, 0.013945357874035835, -0.04086519405245781, -0.0025522359646856785, 0.011069496162235737, -0.016725603491067886, 0.023051029071211815, 0.03845270723104477, -0.027493538334965706, -0.0017817843472585082, -0.002804149640724063, 0.08714377880096436, -0.038511548191308975, -0.05881175398826599, -0.01084884162992239, 0.026493238285183907, 0.007568445987999439, 0.0002799552748911083, -0.016696183010935783, 0.05304531753063202, -0.059664949774742126, 0.037393566220998764, -0.01625487394630909, -0.07443408668041229, 0.011922692880034447, 0.0020557634998112917, 0.02622845396399498, -0.028817465528845787, -0.015041274949908257, 0.037481825798749924, 0.02210957184433937, 0.031362347304821014, -0.015136891975998878, 0.04245390743017197, 0.009774990379810333, -0.008061240427196026, 0.043042317032814026, -0.003319009905681014, -0.03365715220570564, 0.029700081795454025, 0.030832774937152863, 0.015813564881682396, -0.0014535608934238553, -0.023374656215310097, 0.0008743430371396244, -0.031950756907463074, -0.03433382511138916, 0.0037400920409709215, -0.04048272594809532, 0.00016008935926947743, -0.05248632654547691, -0.026875706389546394, 0.04201259836554527, 0.030362045392394066, -0.004681550897657871, -0.0031571967992931604, -0.012275739572942257, -0.0234040766954422, -0.05728188157081604, -0.01001770980656147, 0.09279253333806992, -0.018549680709838867, 0.011319571174681187, -0.04845570772886276, -0.03683457523584366, -0.022786244750022888, 0.02522815391421318, 0.00664905272424221, 0.02110927179455757, -0.005913537926971912, 0.002237803302705288, -0.016740314662456512, 0.04933832585811615, 0.021888917312026024, -0.029023408889770508, -0.014908882789313793, -0.007013132330030203, -0.033068738877773285, 0.019976578652858734, -0.03715820237994194, -0.010797355324029922, 0.01716691255569458, -0.007950913161039352, 0.003824676387012005, 0.0035929891746491194, 0.03383367508649826, -0.021638842299580574, 0.02677273377776146, -0.049073539674282074, -0.026655051857233047, -0.0018829175969585776, 0.020726803690195084, -0.01361437700688839, -0.03495165705680847, -0.013827675953507423, -0.048396866768598557, -0.045778434723615646, -0.024257274344563484, 0.014349890872836113, -0.0382467620074749, -0.023051029071211815, 0.01907925121486187, -0.03733472526073456, -0.014526414684951305, -0.00783323124051094, -0.018858596682548523, -0.0036628630477935076, 0.008885017596185207, -0.004747746977955103, -0.0007152880425564945, 0.02925877273082733, 0.03092103637754917, 0.006656407844275236, 0.04448392614722252, -0.032274384051561356, -0.02486039511859417, 0.001702716457657516, -0.0005006096907891333, 0.027258174493908882, -0.026625631377100945, 0.02964124083518982, -0.005968701560050249, -0.0017698322189971805, 0.06407804042100906, -0.017564089968800545, -0.02024136297404766, -0.0047220042906701565, -0.014268985018134117, 0.008281894959509373, -0.014783845283091068, 0.03071509301662445, -0.008620232343673706, 0.0032693627290427685, 0.04774961248040199, 0.010150102898478508, -0.005604621954262257, -0.02897927723824978, 0.03671689331531525, -0.011025364510715008, -0.03233322501182556, -0.0056009441614151, -0.05475171282887459, -0.020476728677749634, 0.0057296594604849815, -0.024536769837141037, -0.05578143149614334, -0.04468987137079239, -0.03877633437514305, -0.016740314662456512, -0.025904826819896698, 0.01556349080055952, 0.015181022696197033, -0.06960910558700562, 0.02402190864086151, 0.034598611295223236, 0.018902726471424103, -0.0016374395927414298, 0.015416387468576431, 0.023683572188019753, -0.03200959786772728, 0.007943558506667614, 0.0036242485512048006, 0.014658807776868343, 0.027920136228203773, 0.026802154257893562, 0.009826475754380226, -0.044748712331056595, 0.01853496953845024, -0.006976356729865074, -0.009488139301538467, -0.025993088260293007, 0.00025811968953348696, -0.006178323179483414, -0.004714649170637131, 0.00962053146213293, -0.0068145436234772205, 0.00924541987478733, -0.006461496464908123, 0.03695225715637207, 0.028317315503954887, -0.01662263087928295, -0.00983383134007454, -0.003245458472520113, 0.012319870293140411, -0.00883353129029274, -0.015269284136593342, 0.03442208841443062, -0.026831574738025665, -0.028449706733226776, 0.013195132836699486, -8.400956721743569e-05, 0.0004822218033950776, -0.014055685140192509, 0.026051929220557213, -0.03536354377865791, -0.028155501931905746, -0.032774534076452255, 0.005034598056226969, -0.020638542249798775, -0.0011087884195148945, 0.015813564881682396, -0.0042292093858122826, -0.003210521535947919, -0.0022892893757671118, 0.012099216692149639, -0.006251874845474958, -0.04913238063454628, -0.04521944373846054, -0.011944758705794811, 0.007847941480576992, 0.012216898612678051, -0.04583727568387985, 0.02664034068584442, -0.01675502397119999, -0.029979577288031578, 0.03345120698213577, 0.02427198365330696, 0.0014544802252203226, -0.0331864207983017, 0.00014871187158860266, 0.034274984151124954, 0.030862195417284966, -0.0014949336182326078, -0.014158657751977444, -0.03133292496204376, -0.007811165880411863, -0.0017753485590219498, 0.01616661250591278, -0.020314915105700493, -0.00899534486234188, -0.014291049912571907, -0.018858596682548523, -0.006755702197551727, 0.047278884798288345, 0.05634042248129845, 0.03351004794239998, -0.005593589041382074, 0.04489581659436226, -0.012268384918570518, 0.038011398166418076, 0.010650251992046833, 0.05625216290354729, 0.019049830734729767, -4.75786036986392e-05, 0.01916751265525818, -0.03142118826508522, -0.024933947250247, 0.034686870872974396, 0.0047220042906701565, 0.006641697604209185, -0.06631400436162949, -0.014791199937462807, -0.006148902699351311, 0.02365415170788765, 0.013423142954707146, 0.0028593132738023996, 0.004376312252134085, 0.010959168896079063, 0.018358446657657623, -0.03630500286817551, 0.007972978986799717, 0.04145360738039017, -0.01903511956334114, -0.0028593132738023996, -0.003964424133300781, 0.01034869160503149, 0.01540167722851038, -0.03059741109609604, -0.010569346137344837, 0.000630703812930733, -0.009885316714644432, -0.024080749601125717, -0.025139890611171722, -0.004420442972332239, 0.018799755722284317, -0.033863093703985214, 0.032862793654203415, 0.01957940123975277, -0.0010793678229674697, -0.01500449888408184, -0.01944700814783573, 0.00818627793341875, -0.02178594470024109, 0.01899098791182041, -0.018226053565740585, 0.03704052045941353, 0.008929148316383362, -0.031744811683893204, -0.037305302917957306, 0.07814107835292816, -0.04845570772886276, -0.03909996151924133, 0.03395135700702667, -0.015269284136593342, -0.027670061215758324, 0.055134180933237076, -0.027258174493908882, -0.01675502397119999, 0.019917737692594528, 0.01479855552315712, 0.01721104420721531, -0.005979734472930431, -0.032774534076452255, 0.004699938930571079, -0.05275111272931099, 0.004273340106010437, -0.018696783110499382, -0.026860995218157768, -0.010723804123699665, 0.014629386365413666, -0.011657907627522945, -0.012209543958306313, 0.02818492241203785, -0.05013268068432808, -0.010282495059072971, 0.014195432886481285, -0.025081049650907516, -0.001789139467291534, -0.010569346137344837, 0.014291049912571907, -0.007664063014090061, 0.014967723749577999, 0.02431611530482769, 0.012422842904925346, 0.01253317017108202, 0.017858296632766724, -0.0023389365524053574, 0.0163431353867054, 0.03471629321575165, -0.005247897002846003, 0.011260729283094406, -0.006888094823807478, -0.01907925121486187, -0.010039775632321835, -0.0036977999843657017, -0.01490152720361948, 0.01632842607796192, 0.00140851060859859, -0.04227738454937935, -0.030362045392394066, 0.0016530691646039486, -0.006549758370965719, 0.054398663341999054, -0.003212360432371497, 0.00033580840681679547, 0.0025007498916238546, -0.02007955126464367, 0.021168112754821777, 0.0016668600728735328, -0.029199931770563126, -0.00875262450426817, -0.017770035192370415, 0.006325426045805216, 0.033068738877773285, 0.01363644190132618, 0.0019141769735142589, -0.0007166670984588563, -0.057752612978219986, -0.0037419309373944998, -0.01807895116508007, -0.022271383553743362, -0.03706993907690048, 0.017446408048272133, -0.015283995307981968, 0.018652651458978653, -0.060547567903995514, 0.0054391310550272465, 0.020153101533651352, -0.0036224096547812223, 0.0030395144131034613, -0.01423956360667944, 0.04792613536119461, 0.011084206402301788, 0.03030320443212986, -0.03121524304151535, 0.025698883458971977, -0.026449106633663177, -0.007075651083141565, 0.014202788472175598, 0.025890115648508072, -0.039923734962940216, 0.0038173210341483355, 0.004574901424348354, 0.0029236709233373404, 0.0023187100887298584, 0.0001693982194410637, -0.003692283760756254, -0.0007364340708591044, 0.02149173803627491, -0.016857996582984924, 0.0023867450654506683, -0.026581499725580215, -0.0025743013247847557, 0.06001799553632736, 0.001482062041759491, 0.00458225654438138, -0.02107985131442547, -0.016446107998490334, -0.007796455640345812, 0.011944758705794811, 0.0015583717031404376, -0.0022138990461826324, 0.0089365029707551, 0.019476428627967834, 0.0008449224987998605, -0.0013432336272671819, 0.01379825547337532, 0.007546380627900362, 0.027493538334965706, 0.0032693627290427685, -0.02344820834696293, 0.00483233155682683, 0.008031819947063923, -0.019358746707439423, 0.018799755722284317, 0.0006159935146570206, -0.017549380660057068, -0.019638242200016975, -0.006270262412726879, -0.01307009533047676, 0.018564390018582344, -0.010113326832652092, 0.013003899715840816, 0.010466373525559902, -0.020932747051119804, -0.015519359149038792, 0.02062383107841015, 0.015681173652410507, -0.036393266171216965, -0.02925877273082733, -0.00488381739705801, 0.0054501635022461414, 0.06048872694373131, 0.004707294050604105, 0.0009350230102427304, 0.017446408048272133, 0.00446825148537755, 0.028714492917060852, 0.023668862879276276, -0.007395599968731403, 0.016063639894127846, 0.009458718821406364, 0.008987989276647568, 0.007575801108032465, -0.013673217967152596, 0.014210143126547337, -0.02119753323495388, -0.045366544276475906, 0.015136891975998878, -0.0003817780816461891, 0.03250974789261818, 0.011569646187126637, -0.03321584314107895, 0.008598166517913342, 0.0030928391497582197, 0.014776489697396755, -0.0072117215022444725, -0.023551179096102715, 0.01579885557293892, -0.026037219911813736, 0.050485726445913315, 0.02069738321006298, -0.017299305647611618, 0.06001799553632736, -0.003052385989576578, 0.048367444425821304, 0.010922392830252647, -0.004056363366544247, 0.007870007306337357, -0.022727403789758682, -0.023830674588680267, 0.001344153075478971, -0.02024136297404766, -0.0178730059415102, -0.05681115388870239, 0.020314915105700493, 0.03059741109609604, -0.0034808232448995113, 0.026213742792606354, -0.000368446868378669, 0.014077750965952873, 0.000792976759839803, 0.013768834993243217, 0.03221554309129715, -0.041129980236291885, 0.03451034799218178, 0.017887717112898827, -0.049573689699172974, 0.036393266171216965, 0.014452863484621048, 0.00816421303898096, -0.035098761320114136, -0.032745111733675, -0.012224254198372364, -0.0134672736749053, 0.01261407695710659, 0.014761779457330704, 0.03542238473892212, 0.0046925838105380535, -0.01612248085439205, 0.017284594476222992, -0.002765535144135356, -0.014989788644015789, -0.0069395811296999454, 0.01700509898364544, 0.006159935146570206, 0.0203737560659647, 0.02497807890176773, -0.015372256748378277, 0.01450434885919094, 0.034392666071653366, -0.0017937363591045141, -0.008899727836251259, -0.0032344257924705744, 0.021830076351761818, -0.020594410598278046, -0.009546980261802673, -0.030273783951997757, 0.007458118721842766, -0.03562832996249199, 0.01871149241924286, -0.013018609955906868, -0.023051029071211815, 0.005078728776425123, 0.019020410254597664, -0.001128095667809248, 0.0578702948987484, -0.02231551520526409, -0.031156402081251144, 0.027317015454173088, -0.03945300728082657, -0.002134831389412284, -0.01654908061027527, 0.007730259094387293, 0.010657607577741146, 0.006946936249732971, -0.011010654270648956, 0.037746611982584, -0.0060606407932937145, 0.030450306832790375, 0.020476728677749634, -0.002561429748311639, -0.008642297238111496, 0.02194775827229023, 0.02561062015593052, -0.04154186695814133, -0.005678173154592514, 0.002861152170225978, 0.023124581202864647, 0.03089161589741707, 0.029023408889770508, -0.0046079992316663265, -3.0972063541412354e-05, 0.0038651295471936464, 0.02689041569828987, -0.028832174837589264, 0.02572830393910408, 0.05578143149614334, 0.03848212584853172, -0.028993988409638405, 0.014526414684951305, 0.003935003653168678, 0.01891743764281273, -0.03592253476381302, -0.010231008753180504, 0.005490616895258427, 0.01184914167970419, -0.02752295881509781, -0.00775232445448637, -0.015622331760823727, 0.005509004928171635, -0.0028850561939179897, -0.023595310747623444, -0.005553135648369789, -0.01473971363157034, -0.020667962729930878, -0.0009892672533169389, -0.016225453466176987, -0.013526114635169506, -0.018976278603076935, 0.02502220869064331, 0.0028335703536868095, -0.01609306037425995, -0.011694683693349361, -0.030023708939552307, -0.02614019066095352, 0.0060312203131616116, -0.011459318920969963, 0.003942358773201704, -0.00739927776157856, 0.002561429748311639, -0.01556349080055952, -0.012849441729485989, -0.01228309515863657, 0.029420586302876472, -0.0038651295471936464, 0.029332324862480164, 0.019005699083209038, 0.02386009506881237, -0.015181022696197033, -0.03351004794239998, 0.0004615354700945318, 0.034069038927555084, 0.012238964438438416, -0.006737314164638519, -0.05025036260485649, -0.02032962627708912, -0.05710535869002342, -0.03665805235505104, -0.026669761165976524, 0.012253674678504467, 0.05166254937648773, -0.00576643506065011, 0.007818521000444889, 0.015534069389104843, -0.0028023109771311283, 0.0008559551788493991, 0.028464417904615402, 0.018888017162680626, 0.05760550871491432, -0.033362943679094315, -0.034069038927555084, 0.005483261775225401, -0.004773490130901337, 0.007803810760378838, 0.02947942726314068, -0.02099158801138401, -0.002969640539959073, 0.04307173937559128, 0.00491691567003727, -0.027876006439328194, -0.0249045267701149, 0.02581656537950039, 0.021962467581033707, 0.013379012234508991, 0.008127436973154545, 0.035069338977336884, -0.016652051359415054, -0.017975978553295135, -0.009157157503068447, 0.014945657923817635, -0.03736414387822151, -0.014077750965952873, -0.03686399385333061, -0.0249045267701149, -0.007612576708197594, -0.005424420814961195, -0.014254274778068066, -0.02481626532971859, -0.015725303441286087, -0.013504049740731716, -0.007075651083141565, 0.014379311352968216, 0.007436053361743689, 0.0068439641036093235, -0.015813564881682396, -0.0013625408755615354, 0.008178923279047012, -0.001421382068656385, 0.018446708098053932, -0.00037051551043987274, -0.03059741109609604, -0.023668862879276276, 0.042924635112285614, -0.011790299788117409, -0.009716148488223553, 0.00875262450426817, -5.7548277254682034e-05, 0.03171539306640625, 0.033774834126234055, 0.013776189647614956, -0.021432897076010704, -0.003111226949840784, -0.009708793833851814, 0.004549158271402121, -0.01554878056049347, 0.04621974006295204, 0.023801254108548164, 0.020256074145436287, -0.012371356599032879, 0.013025964610278606, -0.0022138990461826324, 0.03150944784283638, -0.014305760152637959, 0.019594110548496246, 0.031068138778209686, 0.016269585117697716, 0.011481383815407753, 0.014997144229710102, 0.016519660130143166, -0.01903511956334114, -0.013018609955906868, -0.007347791455686092, -0.023139292374253273, 0.008649652823805809, 0.01253317017108202, 0.0107017382979393, 0.009201288223266602, 0.040335625410079956, -0.0060128322802484035, -0.007906782440841198, -0.0007148283184505999, -0.027714192867279053, -0.0024621353950351477, 0.024374956265091896, -0.0004704995371866971, 0.003638958791270852, 0.013805610127747059, -0.011841786094009876, 0.017696483060717583, -0.027817165479063988, 0.022418487817049026, -0.017181621864438057, -0.023712992668151855, -0.00968672800809145, 0.07920022308826447, 0.008554035797715187, -0.0011924532009288669, 0.009399877861142159, -0.0158429853618145, -0.020108971744775772, 0.03960011154413223, 0.010289850644767284, -0.012349291704595089, 0.030273783951997757, -0.007789100520312786, 0.011062140576541424, -0.025213442742824554, -0.03200959786772728, 0.0056928833946585655, -0.01866736263036728, -0.017063939943909645, -0.02065325155854225, -0.013629087246954441, -0.04457218945026398, -0.029155801981687546, 0.0001119361404562369, 0.003155357902869582, -0.011716748587787151, -0.0068733845837414265, -0.006354846525937319, 0.012349291704595089, 0.01354818046092987, 0.00446825148537755, 0.008377511985599995, 0.0035580522380769253, 0.02062383107841015, 0.017681771889328957, 0.029126381501555443, -0.008098016493022442, 0.010995944030582905, -0.03080335445702076, -0.05716419965028763, 0.019255774095654488, -0.005674495827406645, -0.014423443004488945, 0.009804410859942436, -0.017358146607875824, -0.023389367386698723, 0.00529938330873847, 0.006472528912127018, 0.048190921545028687, -0.005869407206773758, -9.952433174476027e-05, -0.04451334848999977, 0.009488139301538467, 0.02971479296684265, 0.004817621316760778, -0.012047730386257172, -0.031774234026670456, -0.003960746340453625, -0.018402576446533203, 0.027155201882123947, -0.02968537248671055, -0.010988589376211166, -0.043954357504844666, -0.008289250545203686, -0.0033024607691913843, -0.002912638010457158, 0.0193734560161829, -0.02777303382754326, -0.005953991319984198, -0.028332024812698364, 0.027508249506354332, -0.018343735486268997, 0.004527092911303043, 0.01440137717872858, 0.05528128147125244, -0.01679915562272072, -0.011577000841498375, 0.029832474887371063, -0.006465173792093992, -0.007208043709397316, -0.004527092911303043, -0.001080287154763937, -0.04551364853978157, 0.004913237877190113, -0.02135934680700302, 0.02224196307361126, -0.02631671540439129, 0.005626687314361334, 0.024433797225356102, -0.003081806469708681, -0.01332017034292221, -0.023536469787359238, 0.0117020383477211, -0.03121524304151535, -0.0016668600728735328, 0.00900269951671362, 0.032568588852882385, 0.02094745822250843, -0.008782044984400272, -0.000435562600614503, -0.013202488422393799, -0.03353947028517723, -0.0064945947378873825, 0.00025030484539456666, -0.01982947625219822, 0.010503149591386318, -0.02199188806116581, 0.02734643593430519, -0.020726803690195084, -0.0684322863817215, -0.013540824875235558, -0.0002611077215988189, -0.02203601971268654, -0.009554335847496986, 0.04477813467383385, -0.009318971075117588, 0.0075610908679664135, -0.06372499465942383, 0.00883353129029274, -0.0010922392830252647, -0.011981533840298653, -0.009951513260602951, 0.01045166328549385, 0.02511047013103962, -0.004567546304315329, 0.021800654008984566, 0.03742298483848572, 0.0028409254737198353, -0.018888017162680626, 0.002956768963485956, -0.000194451684365049, 0.005531070288270712, -0.01187120657414198, 0.04972079023718834, 0.037305302917957306, 0.02447792887687683, -0.037805452942848206, 0.006895449943840504, -0.01059876661747694, -0.0372464619576931, -0.006332781165838242, 0.005847341846674681, -0.0107017382979393, -0.012775889597833157, 0.012334581464529037, -0.015328126028180122, -0.016181323677301407, -0.01662263087928295, -0.0057296594604849815, -0.0045969667844474316, 0.02235964685678482, 0.02361002005636692, 0.002272740239277482, -0.005957668647170067, 0.0060790288262069225, 0.0031351312063634396, 0.017725903540849686, -0.005310415755957365, 0.010525214485824108, -0.005303060635924339, 0.004854396916925907, -0.007281595375388861, 0.0015326286666095257, -0.0018902727169916034, -0.022094860672950745, 0.039717793464660645, 0.012930347584187984, -0.02664034068584442, 0.027508249506354332, 0.0029181544668972492, -0.015055985189974308, -0.020432597026228905, 0.020094260573387146, -0.007575801108032465, 0.005067695863544941, -0.002809666097164154, -0.023668862879276276, -0.016696183010935783, -0.003370495978742838, 0.012981833890080452, -0.012775889597833157, -0.021682972088456154, -0.025948958471417427, 0.020005999132990837, 0.011334281414747238, -0.006674795411527157, 0.02427198365330696, 0.02352175861597061, -0.025537069886922836, 0.012150702066719532, -0.008965923450887203, 0.0006569065153598785, 0.010407532565295696, -0.02925877273082733, 0.031450606882572174, 0.051515448838472366, 0.008075950667262077, 0.008796755224466324, 0.009451363235712051, -0.00458225654438138, 0.013982133939862251, 0.016446107998490334, 0.002881378633901477, 0.0012540525058284402, -0.035598911345005035, -0.00010739663412095979, -0.017240464687347412, 0.01666676253080368, -0.007042552810162306, -0.0008954891236498952, 0.025081049650907516, 0.001629165024496615, -0.03421614319086075, -0.012827375903725624, -0.011238664388656616, 0.017196333035826683, 0.009230708703398705, 0.018181921914219856, -0.003561729798093438, 0.023286394774913788, 0.000470039842184633, 0.005310415755957365, 0.02547822892665863, -0.006101094186306, 0.018064239993691444, -0.02734643593430519, -0.004534448031336069, 0.03100929781794548, 0.05298647657036781, 0.010841486044228077, 0.02165355160832405, -0.03480455279350281, 0.017608221620321274, -0.019049830734729767, -0.017593510448932648, -0.007358824368566275, -0.015622331760823727, -0.007634642068296671, -0.008826175704598427, -0.00933368131518364, -0.0067777675576508045, -0.02868507243692875, 0.022521458566188812, 0.02199188806116581, 0.0019472751300781965, 0.0043064383789896965, 0.009326325729489326, 0.03059741109609604, -0.012003599666059017, 0.03092103637754917, 0.01188591681420803, -0.03353947028517723, -0.03862923011183739, 0.024625031277537346, -0.01899098791182041, -0.028788045048713684, 0.011959468945860863, 0.037893716245889664, 0.033274684101343155, -0.006604921538382769, 0.012694982811808586, -0.013496694155037403, -0.0107017382979393, 0.011974179185926914, 0.034981079399585724, -0.037217043340206146, -0.03798197582364082, 0.01824076473712921, 0.005266285035759211, 0.0239042267203331, -0.04271869361400604, 0.037893716245889664, 0.003776867873966694, 0.009451363235712051, 0.007708193734288216, -0.003990167286247015, -0.018740912899374962, 0.020594410598278046, 0.017902426421642303, 0.0208739060908556, -0.02618432231247425, 0.005288350395858288, -0.01330546010285616, 0.002230448182672262, -0.013048030436038971, 0.044748712331056595, 0.004777167923748493, 0.012437553144991398, -0.014452863484621048, 0.02082977630198002, -0.0015694043831899762, 0.023389367386698723, -0.0007516040350310504, 0.013592311181128025, -0.01896156743168831, -0.0023610021453350782, -0.013776189647614956, 0.009090960957109928, -0.013481983914971352, 0.01762293092906475, 0.007171268109232187, -0.033362943679094315, 0.006501949857920408, -0.01921164244413376, 0.025036919862031937, -0.005696561187505722, 0.02394835837185383, -0.015225153416395187, 0.0033098161220550537, -0.021638842299580574, -0.03536354377865791, -0.010503149591386318, 0.01404833048582077, -0.0023757123854011297, -0.0089365029707551, -0.010642897337675095, -0.003037675516679883, 0.0049941446632146835, 0.009208643808960915, -0.03912938013672829, 0.01771119236946106, 0.02814079076051712, 0.007347791455686092, 0.01932932622730732, -0.0026809510309249163, 0.00043050592648796737, 0.017358146607875824, -0.02664034068584442, 0.004791878163814545, -0.06290121376514435, -0.0037364144809544086, 0.024257274344563484, 0.0208739060908556, 0.014283695258200169, 0.022006599232554436, -0.026051929220557213, 0.008377511985599995, -0.004630065057426691, -0.013084805570542812, 0.009973579086363316, 0.018181921914219856, -0.015931248664855957, -0.012290449813008308, 0.003162713022902608, -0.05154486745595932, -0.02481626532971859, -0.01932932622730732, 0.01255523506551981, 0.013893872499465942, 0.007491216994822025, 0.028905726969242096, 0.011422542855143547, 0.010782645083963871, -0.0018121242756024003, -0.012584656476974487, 0.016196032986044884, -0.020417887717485428, 0.014658807776868343, 0.014423443004488945, 0.011260729283094406, 0.004659485537558794, -0.016843285411596298, -0.02477213367819786, 0.027949556708335876, -0.019814765080809593, -0.004148302599787712, -0.019358746707439423, -0.008355447091162205, -0.03209786117076874, -0.016063639894127846, -0.022786244750022888, -0.008421642705798149, -0.016563789919018745, 0.008826175704598427, 0.031362347304821014, -0.0005447405274026096, -0.0003171907155774534, -0.016681471839547157, -0.016240164637565613, -0.002947574947029352, 0.003692283760756254, -0.011731458827853203, 0.06178323179483414, 0.004328503739088774, 0.02805252932012081, 0.0043542468920350075, 0.002362840808928013, -0.010554635897278786, 0.01278324518352747, 0.014188078232109547, 0.0034293371718376875]" -How Edeva Uses Continuous Aggregations and IoT to Build Smarter Cities,"things like temperature, wind speed, etc. All this data is pushed to EdevaLive.Alarm data: Our IoT devices and roadside servers can send alarm information if a sensor or other parts malfunction. All this data comes to EdevaLive in the same way as a regular IoT event, but these events are only used internally so that we can react as quickly as possible if there is a problem.Status data: If the alarm data detects anomalies, the status data just reports on the status of the server or IoT device. The devices run self-checks and report statistical data, like disk utilization, temperature, and load. This is also just for internal use to spot trends or troubleshoot in case any problems arise. For instance, it is incredibly useful to correlate CPU load with the version number of firmware or other software versions.Administrative data: This is where the power of SQL and time-series data really shines. Let’s say we added a new device, and it has a configuration object that is persistent in a regular table in Timescale. This object keeps some metadata, such as the date it was added to the system or the device's display name. This way, we can use a join easily to pick up metadata about the device and, at the same time, get time-series data for the events that are coming in. There is only one database connection to handle and one query to run.Choosing (and Using!) TimescaleDBWe realized we needed a time-series database a few years ago when we started storing our data in MySQL. At the time, we made a move to MongoDB, and it worked well for us but required quite a bit of administration and was harder to onboard other developers.I looked at InfluxDB but never considered it in the end because it was yet another system to learn, and we had learned that lesson with MongoDB.✨Editor’s Note:For more comparisons and benchmarks,see how TimescaleDB compares to InfluxDB, MongoDB, AWS Timestream, vanilla PostgreSQL, and other time-series database alternatives on various vectors, from performance and ecosystem to query language and beyond.Learning from this journey, I looked for a solution that plugged the gaps the previous systems couldn’t. That is when I found Timescale and discovered that there was a hosted solution.We are a small team that creates software with a",https://www.timescale.com/blog/how-edeva-uses-continuous-aggregations-and-iot-to-build-smarter-cities/,472,"[0.0038375321310013533, -0.017841942608356476, 0.04510046914219856, -0.018585357815027237, 0.06586100161075592, 0.014331375248730183, -0.02599196694791317, -0.01718113012611866, -0.016382647678256035, 0.03306816890835762, 0.02647380903363228, -0.016423949971795082, 0.002693156013265252, -0.04113559052348137, 0.043558571487665176, 0.06206132844090462, 0.017731808125972748, 0.014455278404057026, -0.044549789279699326, 0.025097116827964783, -0.0037859061267226934, 0.024918146431446075, 0.013353923335671425, 0.012190617620944977, 0.006067775189876556, -0.010958477854728699, -0.025468822568655014, 0.09014586359262466, 0.05415910854935646, -0.061180245131254196, 0.05115791782736778, -0.04011683911085129, -0.004395092837512493, 0.004615363664925098, 0.046724963933229446, 0.038905348628759384, 0.060849837958812714, -0.020898202434182167, 0.01632758043706417, -0.0002770595019683242, -0.042980361729860306, 0.008377177640795708, -0.002219917718321085, 0.047137971967458725, -0.023142211139202118, -0.03824453428387642, -0.04997396096587181, -0.013718747533857822, -0.0005205621127970517, 0.04691770300269127, -0.028965624049305916, -0.016754355281591415, 0.0003028725041076541, -0.0006380112026818097, 0.008728234097361565, -0.03678524121642113, 0.005596257746219635, 0.0636032223701477, -0.0027533862739801407, -0.02976410649716854, -0.0004390360554680228, -0.02871781960129738, 0.040337108075618744, 0.028800420463085175, 0.0007197523955255747, 0.016520317643880844, -0.018929529935121536, 0.006866257172077894, -0.031388603150844574, 0.041631199419498444, 0.023293647915124893, 0.028800420463085175, 0.008170673623681068, -0.01508855726569891, 0.009368397295475006, -0.047027837485075, -0.01572183519601822, 0.0098158223554492, -0.016892025247216225, -0.011784492991864681, 0.01194281317293644, -0.007537394762039185, -0.06800863891839981, 0.03824453428387642, 0.008948505856096745, -0.04595401883125305, -0.027616463601589203, -0.023651588708162308, 0.01766297221183777, 0.041521064937114716, -0.038795214146375656, 0.03785905987024307, -0.0010901688365265727, 0.022027090191841125, 0.03251749277114868, 0.060849837958812714, 0.014964654110372066, -0.011268232949078083, -0.023940693587064743, 0.017401400953531265, -0.020457660779356956, -0.025317387655377388, -0.040061771869659424, -0.030782857909798622, 0.023968227207660675, -0.003699862863868475, 0.01660291850566864, -0.026996953412890434, 0.009994791820645332, 0.007544278632849455, -0.07450663298368454, -0.012156200595200062, -0.042071741074323654, -0.00628460431471467, -0.002295635873451829, -0.016506550833582878, -0.010930943302810192, -0.010979128070175648, 0.02113224007189274, -0.03623456507921219, -0.03637223318219185, 0.04157613217830658, -0.00048227282240986824, 0.009561133570969105, 0.041383396834135056, 0.008287692442536354, -0.00967815238982439, -0.041493531316518784, -0.028800420463085175, 0.02065039798617363, 0.05173612758517265, 0.0010471472050994635, 0.04994642734527588, -0.007847150787711143, -0.024298634380102158, 0.010228830389678478, -0.026005733758211136, -0.004632572643458843, -0.02568909339606762, 0.0037033045664429665, 0.016754355281591415, -0.03191174566745758, 0.03425212576985359, -0.004136962816119194, -0.005073114298284054, 0.004739266354590654, -0.03912561759352684, 0.024739176034927368, -0.008033004589378834, -0.0314987376332283, -0.004522436764091253, 0.01201164722442627, -0.03229722008109093, -0.012810129672288895, 0.0803438127040863, 0.027024487033486366, 0.025303620845079422, 0.016451483592391014, -0.006763005163520575, -0.03334350883960724, -0.031719010323286057, 0.017428934574127197, 0.007564928848296404, -0.03116833232343197, -0.044522255659103394, 0.014813218265771866, -0.037914130836725235, -0.03664757311344147, -0.08998066186904907, 0.01404915377497673, -0.029351098462939262, -0.036014292389154434, 0.03367391601204872, 0.006436040624976158, 0.04242968186736107, -0.0057511357590556145, 0.015308828093111515, -0.001392180914990604, 0.031113265082240105, -0.03202188387513161, -0.04083271697163582, 0.0022990775760263205, -0.009540483355522156, -0.000967987347394228, -0.005331244319677353, 0.014689316041767597, -0.04347597062587738, 0.04041970893740654, -0.024670341983437538, 0.0257579293102026, -0.05041450262069702, 0.06062956526875496, 0.030562587082386017, 0.046697430312633514, 0.030837927013635635, -0.013601728715002537, -0.004835634492337704, 0.03323337435722351, -0.029929308220744133, -0.0024814894422888756, 0.07604853063821793, -0.018158582970499992, 0.08441882580518723, -0.01724996417760849, 0.011915279552340508, 0.016823189333081245, 0.013794464990496635, 0.04204420745372772, -0.03824453428387642, -0.023224813863635063, 0.011350834742188454, -0.0008432245231233537, 0.013071701861917973, -0.03673017397522926, -0.027258524671196938, -0.005857829470187426, -0.04576127976179123, -0.020636629313230515, 0.021627848967909813, -0.020223623141646385, -0.015322594903409481, 0.06492485105991364, -0.01632758043706417, -0.024849310517311096, -0.03359131142497063, 0.027230991050601006, -0.00467043137177825, -0.025152184069156647, 0.013071701861917973, -0.02071923203766346, 0.013464058749377728, -0.018048446625471115, 0.00022306731261778623, -0.022371264174580574, -0.015377662144601345, 0.003572518704459071, 0.015391428954899311, -0.04099792242050171, -0.015267526730895042, 0.013161186128854752, -0.02765776589512825, -0.004691082052886486, -0.02500074729323387, 0.0404747799038887, -0.011901511810719967, 0.021889420226216316, -0.017167363315820694, -0.03755619004368782, 0.002743061166256666, 0.05327802523970604, 0.02048519439995289, -0.02622600458562374, 0.05793124809861183, -0.05864712968468666, -0.0023541452828794718, -0.02714838832616806, -0.025165950879454613, 0.03130600228905678, 0.029075758531689644, -0.007902218960225582, 0.011660590767860413, 0.006494550034403801, -0.013291972689330578, 0.04157613217830658, -0.04576127976179123, -0.001208048197440803, 0.03136106953024864, -0.06646674871444702, -0.009258260950446129, 0.008370294235646725, 0.038492340594530106, 0.004408859647810459, 0.013553543947637081, -0.03562881797552109, -0.017194896936416626, -0.02428486756980419, 0.011412786319851875, 0.00916877668350935, -0.001827560132369399, 0.022137226536870003, -0.004615363664925098, -0.04405418038368225, 0.0075029777362942696, 0.005114415194839239, 0.01572183519601822, 0.01139901950955391, 0.003149185562506318, 0.01819988340139389, 0.015515332110226154, -0.01731880009174347, 0.016781888902187347, 0.016823189333081245, 0.016823189333081245, -0.014675549231469631, 0.04292529076337814, 0.010628070682287216, 0.01401473581790924, 0.05311281979084015, -0.03455499932169914, -0.011405902914702892, 0.02139381133019924, 0.021311210468411446, -0.01357419416308403, -0.003541543148458004, -0.018736794590950012, 0.03237982094287872, 0.0034124781377613544, 0.018020913004875183, -0.018227417021989822, 0.018695492297410965, 0.009802055545151234, -0.009106825105845928, 0.02504204772412777, -0.02504204772412777, -0.025358688086271286, -0.009182543493807316, 0.07439649850130081, 0.011075496673583984, 0.023142211139202118, -0.07246913015842438, -0.015487797558307648, -0.06393363326787949, -0.011956579983234406, 0.0056134662590920925, 0.00841847900301218, -0.040639981627464294, 0.00475303316488862, 0.03193927928805351, -0.015542865730822086, 9.136725566349924e-05, -0.004494903143495321, 0.011777609586715698, 0.03133353590965271, 0.04490773007273674, 0.02150394767522812, -0.05093764513731003, 0.012548558413982391, 0.011949696578085423, -0.027781667187809944, 0.03196681663393974, 0.020526494830846786, -0.0541040413081646, -0.07384581863880157, 0.01748400367796421, 0.03885028138756752, -0.028332345187664032, -0.030397385358810425, -0.031113265082240105, -0.00048227282240986824, 0.006060891784727573, -0.06266707181930542, -1.0210922482656315e-05, -0.016781888902187347, -0.008390944451093674, 0.0042987242341041565, -0.03105819784104824, 0.011536688543856144, 0.008191323839128017, -0.012259452603757381, -0.0017742132768034935, -0.014276308007538319, 0.004205797333270311, 0.06415390223264694, -0.0029237521812319756, 0.00628460431471467, 0.02684551663696766, -0.060574498027563095, -0.011454086750745773, -0.016437716782093048, -0.05771097540855408, 0.021765518933534622, -0.03909808397293091, -0.015350128524005413, 0.000578641309402883, -0.05085504427552223, -0.010366499423980713, 0.03389418497681618, 0.052369408309459686, 0.005121298599988222, 0.06789850443601608, 0.036454834043979645, 0.024573972448706627, -0.0057855527848005295, -0.012651810422539711, 0.08083941787481308, 0.0779208317399025, -0.029571369290351868, 0.02344508469104767, -0.05561840161681175, -0.004832192789763212, 0.058977533131837845, -0.022398797795176506, -0.023142211139202118, -0.03695044293999672, -0.05559086799621582, 0.02422979846596718, 0.011103030294179916, 0.02962643653154373, 0.05627921596169472, -0.0014007852878421545, 0.037170715630054474, -0.017814408987760544, -0.0417688712477684, -0.006718262564390898, 0.017084762454032898, 0.010180645622313023, 0.004956095479428768, -0.013484708964824677, 0.005651325453072786, -0.05146079137921333, -0.011867094784975052, 0.0064842249266803265, 0.02289440669119358, 0.010848342441022396, 0.01697462610900402, -0.047440845519304276, -0.0437513068318367, 0.0900907963514328, 0.024339934810996056, 0.05396636947989464, -0.018888229504227638, -0.02201332338154316, -0.026184704154729843, -0.00014831717999186367, -0.041521064937114716, 0.03276529535651207, 0.025193484500050545, -0.0002478047681506723, -0.031994350254535675, -0.06332788616418839, 0.020980803295969963, -0.014937120489776134, 0.011350834742188454, -0.0030304458923637867, -0.008783302269876003, 0.0030906761530786753, -0.009925957769155502, -0.0443570539355278, 0.03466513380408287, 0.030232181772589684, 0.009375280700623989, 0.016066009178757668, 0.01486828550696373, 0.020319990813732147, -0.023568985983729362, -0.01766297221183777, -0.046559762209653854, -0.0009524995693936944, 0.02962643653154373, -0.0010901688365265727, 0.03802426531910896, -0.00035535890492610633, -0.05881233140826225, 0.04058491438627243, -0.019535275176167488, -0.05382870137691498, 0.008714467287063599, 0.001263976446352899, 0.030810393393039703, -0.016547851264476776, -0.03554621711373329, 0.03237982094287872, -0.05052463710308075, 0.01891576312482357, -0.006793980486690998, -0.00957490038126707, 0.0501391626894474, 0.018447687849402428, 0.02592313103377819, -0.021256141364574432, -0.002003088593482971, 0.015253759920597076, -0.014895820058882236, 0.013051050715148449, 0.004116312600672245, 0.030094511806964874, 0.032132018357515335, -0.020264923572540283, 0.02030622400343418, 0.0039029251784086227, 0.020843133330345154, 0.02456020563840866, -0.031994350254535675, 0.03403185307979584, 0.023045843467116356, 0.04950588569045067, -0.0080467713996768, 0.012417771853506565, 0.023004543036222458, 0.028222208842635155, -0.049340683966875076, -0.02943369932472706, 0.03896041586995125, -0.015873271971940994, 0.01568053476512432, 0.001651171362027526, -0.0674028992652893, -0.022908173501491547, 0.020361291244626045, -0.011977230198681355, 0.027175921946763992, 0.010414683260023594, -0.014021619223058224, 0.05787618085741997, 0.0018809069879353046, 0.0483219288289547, -0.01972801238298416, -0.001992763252928853, 0.011316417716443539, -0.036895375698804855, 0.010400916449725628, -0.005255525931715965, 0.030948061496019363, 0.02712085470557213, -0.05297515168786049, -0.004212681204080582, -0.011867094784975052, 0.019824381917715073, -0.019604111090302467, 0.008370294235646725, -0.019645411521196365, -0.03755619004368782, 0.006814631167799234, 0.016341347247362137, -0.017952078953385353, -0.010421566665172577, -0.026528876274824142, -0.006246745120733976, -0.0209257360547781, -0.0286076832562685, 0.006349997129291296, -0.03540854901075363, 0.01819988340139389, 0.0020770858973264694, -0.01861289143562317, 0.016492784023284912, -0.021448878571391106, -0.02789180353283882, -0.0009516391437500715, 0.01663045398890972, 0.026583945378661156, 0.05113038420677185, 0.01406980399042368, 0.026996953412890434, -0.0014128313632681966, 0.009788287803530693, -0.023789256811141968, -0.024133430793881416, -0.0019273704383522272, 0.02409213036298752, 0.0321044847369194, -0.012761945836246014, 0.012665577232837677, -0.008397827856242657, -0.0014154126401990652, 0.07037655264139175, 0.0006367205642163754, 0.010056743398308754, 0.012163084000349045, 0.0024900936987251043, 0.00555495684966445, 0.009010456502437592, 0.02858014963567257, -0.010628070682287216, -0.01752530410885811, 0.004945769906044006, -0.001030799001455307, 0.0009568017558194697, -0.07059682160615921, 0.03304063528776169, 0.012913381680846214, 0.00037213737959973514, -0.0032300662714987993, 0.020898202434182167, -0.008005470968782902, 0.008659400045871735, -0.026349905878305435, -0.026886817067861557, -0.0173463337123394, -0.019989583641290665, -0.027781667187809944, -0.027630232274532318, -0.039180688560009, 0.03653743490576744, -0.044825129210948944, 0.02354145236313343, 0.019535275176167488, 0.02065039798617363, 0.025950666517019272, -0.023252347484230995, 0.017208663746714592, -0.00237651658244431, -0.010579886846244335, -0.015184924937784672, 0.03854740783572197, 0.010063626803457737, 0.017002159729599953, 0.01676812209188938, -0.013794464990496635, 0.005314035341143608, 0.01507478952407837, 0.005417287349700928, -0.006401623133569956, -0.033150769770145416, -0.011763842776417732, 0.026418741792440414, 0.025083350017666817, 0.004911352880299091, 0.026322372257709503, -0.03524334356188774, 0.006236420013010502, -0.01588703878223896, -0.011302650906145573, -0.05776604264974594, -0.0021734542679041624, -0.0038616242818534374, 0.0054757967591285706, -0.023830559104681015, 0.005131623707711697, -0.03389418497681618, -0.0443570539355278, 0.022701669484376907, -0.014179939404129982, -0.005716718267649412, -0.0050180465914309025, 0.012617392465472221, -0.018227417021989822, -0.02724475786089897, -0.03061765618622303, 0.0054551465436816216, -0.0225226990878582, 0.00017240930174011737, 0.024381235241889954, -0.00688002398237586, 0.004116312600672245, 0.024670341983437538, 0.02800193801522255, 0.03923575580120087, -0.0076544140465557575, -0.015198692679405212, -0.0074960943311452866, 0.035573750734329224, -0.003199090715497732, -0.021903187036514282, -0.005823411978781223, -0.05765590816736221, -0.012610509060323238, 0.025661559775471687, -0.01202541496604681, 0.0029616111423820257, 0.006442924030125141, -0.020526494830846786, 0.09433101117610931, 0.04909287765622139, 0.026528876274824142, 0.003706746269017458, -0.024794243276119232, -0.01442774385213852, 0.005844062194228172, 0.00485628517344594, -0.017635438591241837, -0.016272513195872307, -0.02027869038283825, 0.018007146194577217, -0.014413977041840553, 0.03364637866616249, 0.024298634380102158, 0.005107531789690256, 0.04226448014378548, 0.03612442687153816, -0.017580371350049973, 0.028249742463231087, 0.004085336811840534, 0.02745126187801361, 0.028277277946472168, -0.013078585267066956, 0.020898202434182167, -0.04102545604109764, 0.007551162037998438, 0.03047998622059822, -0.01602470874786377, 0.03304063528776169, -0.04653222858905792, 0.009113708510994911, 0.013023517094552517, 0.01905343309044838, 0.00563067477196455, 0.0022233594208955765, 0.03361884504556656, 0.02453267201781273, 0.011571105569601059, -0.015900805592536926, 0.03014957904815674, -0.004250539932399988, -0.029791640117764473, -0.01592833921313286, -0.0037721393164247274, 0.0553155317902565, 0.002593345707282424, -0.019025899469852448, 0.0008260158938355744, 0.005093764513731003, -0.03593169152736664, 0.012190617620944977, -0.011034195311367512, 0.006319021340459585, 0.016355114057660103, -0.01211489923298359, 0.019136033952236176, -0.04818426072597504, -0.031526271253824234, -0.007792083080857992, -0.029406165704131126, 0.03345364332199097, -0.0183375533670187, -0.005723601672798395, -0.02874535322189331, 0.031278468668460846, -0.014372676610946655, -0.007537394762039185, -0.06371335685253143, 0.04804658889770508, -0.06371335685253143, -0.038932882249355316, 0.05000149458646774, -0.017470236867666245, 0.009430347941815853, 0.044659923762083054, -0.010407799854874611, -0.0333985760807991, 0.0075098611414432526, 0.011867094784975052, 0.02374795638024807, -0.011199398897588253, 0.007571812253445387, -0.02571662701666355, -0.056829892098903656, -0.0012631159042939544, -0.030424918979406357, -0.001188258291222155, -0.014730616472661495, 0.010139345191419125, -0.03403185307979584, -0.024408768862485886, 0.006742354482412338, -0.052644744515419006, 0.0019308121409267187, 0.01817234978079796, 0.0147994514554739, 0.008955389261245728, -0.009499182924628258, 0.01219750102609396, -0.01727749966084957, 0.0039476677775382996, -0.017360100522637367, -0.01592833921313286, 0.010469751432538033, 0.023211047053337097, -0.007785199675709009, 0.03483033552765846, 0.025730395689606667, 0.006821514572948217, -0.034720201045274734, 0.007096853107213974, -0.00298570329323411, 0.006535850930958986, -0.015474030748009682, 0.0019583459943532944, 0.006129726301878691, -0.04529320448637009, -0.056554555892944336, -0.03232475370168686, -0.012644926086068153, -0.02361028827726841, 0.06442923843860626, 0.012761945836246014, 0.007385958917438984, -0.009024223312735558, -0.0017742132768034935, 0.0098158223554492, 0.013457175344228745, -0.022095924243330956, -0.01824118383228779, -0.0212286077439785, 0.025262318551540375, -0.01246595662087202, 0.024656573310494423, 0.011268232949078083, -0.014978421851992607, -0.04187900573015213, -0.006897232495248318, -0.017098529264330864, -0.025152184069156647, 0.007434142753481865, 0.027368659153580666, -0.042236946523189545, 0.016423949971795082, -0.08441882580518723, -0.027024487033486366, 0.024064596742391586, -0.005386312026530504, 0.006122842896729708, -0.009395930916070938, 0.015061022713780403, 0.01653408445417881, 0.06261200457811356, -0.03510567545890808, 0.0019824381452053785, -0.052204202860593796, -0.00467043137177825, 0.009671268984675407, 0.0006203723605722189, 0.004315933212637901, 0.010139345191419125, 0.03276529535651207, 0.001954904291778803, 0.027230991050601006, 0.003534659743309021, 5.358885755413212e-05, -0.03670264035463333, 0.03320583701133728, 0.007537394762039185, 0.007344658020883799, -0.031113265082240105, 0.01932877115905285, 0.019383840262889862, 0.02139381133019924, -0.020911969244480133, -0.018048446625471115, 0.020870668813586235, -0.015942106023430824, -0.003238670527935028, 0.03193927928805351, -0.006401623133569956, 0.009409697726368904, 0.007571812253445387, -0.012720644474029541, -0.019604111090302467, -0.034307193011045456, 0.044384587556123734, -0.011254466138780117, 0.017979612573981285, -0.024064596742391586, -0.003042491851374507, 0.029130827635526657, -0.026446275413036346, -0.00307518825866282, 0.028525082394480705, 0.006852489896118641, -0.013987202197313309, -0.01762167178094387, 0.003624144708737731, 0.03524334356188774, -0.06855931878089905, -0.013932134956121445, -0.009808938950300217, -0.008177557028830051, -0.010380266234278679, 0.00251762755215168, -0.01000167615711689, -0.055260464549064636, -0.018736794590950012, -0.009244494140148163, 0.02962643653154373, 0.05016670003533363, -0.012335170991718769, -0.019645411521196365, 0.010249480605125427, 0.03697797656059265, 0.02885548770427704, -0.009299562312662601, -0.0011211445089429617, 0.016506550833582878, 0.015047255903482437, 0.02409213036298752, 0.0016331021906808019, -0.009994791820645332, 0.01792454533278942, 0.0008458058582618833, -0.04501786455512047, 0.0017311916453763843, 0.012617392465472221, -0.02303207665681839, -0.00508688110858202, -0.031526271253824234, 0.01810351572930813, 0.011268232949078083, 0.01090340968221426, -0.029048224911093712, -0.01357419416308403, 0.020319990813732147, 0.04592648148536682, 0.028194675222039223, 0.02599196694791317, -0.0010669372277334332, 0.010834574699401855, 0.01136460155248642, 0.01928747072815895, -0.015377662144601345, 0.023775490000844002, 0.013670562766492367, -0.022412564605474472, -0.002560649299994111, -0.012273219414055347, -0.005912897177040577, 0.0026088336016982794, -0.000396874820580706, 0.0031130474526435137, 0.026749147102236748, 0.04127325862646103, 0.04127325862646103, -0.00301151629537344, 0.030424918979406357, 0.021614082157611847, -0.010194412432610989, 0.025840530171990395, -0.05181872844696045, 0.0034141989890486, -0.002909985138103366, -0.04845959693193436, 0.02793310396373272, -0.0036275864113122225, 0.009533599950373173, 0.03758372366428375, 0.006119401194155216, -0.0033625729847699404, -0.013718747533857822, 0.00979517214000225, 0.056554555892944336, 0.0017165642930194736, 0.03725331649184227, -0.005062789190560579, -0.023390017449855804, -0.005616907961666584, 0.0019755547400563955, 0.010263247415423393, 0.006621893960982561, -0.001296672853641212, 0.008198207244277, 0.00045645982027053833, -0.017057228833436966, 0.036041826009750366, 0.01775934174656868, 0.007330891210585833, 0.008728234097361565, -0.04003423824906349, 0.017979612573981285, 0.027437495067715645, -0.038354672491550446, -0.03931835666298866, 0.033728983253240585, -0.01694709248840809, 0.0623917318880558, -0.03304063528776169, -0.025372454896569252, -0.0048803770914673805, -0.009740103967487812, 0.00628460431471467, 0.03488540276885033, -0.00757869565859437, 0.012218151241540909, 0.02374795638024807, -0.04328323155641556, -0.025634026154875755, -0.0027723158709704876, -0.0015350128524005413, 0.020815599709749222, 0.013477825559675694, -5.006645733374171e-05, 0.013546660542488098, 0.006401623133569956, 0.053663499653339386, 0.02279803901910782, 0.01359484437853098, 0.010394033044576645, -0.0018378853565081954, 0.01796584576368332, -0.043971579521894455, 0.01378069818019867, 0.014248774386942387, 0.04198914021253586, 0.03262762725353241, -0.00757869565859437, -0.02687305025756359, -0.008012354373931885, -0.01891576312482357, 0.01552909892052412, 9.556186705594882e-05, 0.004818425979465246, 0.028965624049305916, 0.00711750378832221, -0.027065787464380264, 0.0018292809836566448, 0.013932134956121445, 0.007358424831181765, -0.026143403723835945, 0.007372191641479731, -0.015997175127267838, 0.019824381917715073, 0.012156200595200062, -0.001088447985239327, -0.010201295837759972, 0.01598340831696987, -0.01588703878223896, -0.005465471651405096, -0.018392620608210564, 0.03130600228905678, -0.015694301575422287, 0.02943369932472706, 0.004987070802599192, -0.02453267201781273, -0.037446051836013794, 0.037170715630054474, 0.0044570439495146275, 0.016479017212986946, 0.0011968625476583838, -0.049285613000392914, -0.043420903384685516, -0.023073377087712288, -0.00027641418273560703, -0.008033004589378834, -0.012527907267212868, 0.05225927010178566, 0.003689537523314357, -0.01394590176641941, -0.018599124625325203, 0.008363410830497742, 0.0027740367222577333, 0.0022422890178859234, 0.029351098462939262, -0.0003848287451546639, 0.0034933588467538357, 0.013119885697960854, 0.013051050715148449, 0.036454834043979645, -0.0029392398428171873, 0.007014251779764891, 0.004790892358869314, -0.012052948586642742, -0.001049728482030332, -0.02657017856836319, -0.025881830602884293, -0.0025451614055782557, 0.05099271237850189, 0.03144367039203644, 0.02809830754995346, 0.007048668805509806, 0.016988392919301987, -0.0014033665647730231, 0.023775490000844002, 0.02490437962114811, 0.02282557263970375, 0.019783079624176025, -0.013739397749304771, 0.030287249013781548, -0.010917176492512226, -0.001745818997733295, 0.009533599950373173, 0.018943296745419502, -0.009519833140075207, 0.03273776173591614, -0.008225741796195507, -0.0011331905843690038, -0.010524818673729897, 0.006656311452388763, 0.023045843467116356, 0.020567795261740685, -0.023500151932239532, 0.034086924046278, -0.000967987347394228, -0.007317123934626579, -0.004973303992301226, 0.021848119795322418, -0.05636181682348251, -0.015694301575422287, -0.01435890980064869, -0.017800642177462578, -0.003906366880983114, -0.031416136771440506, -0.020017119124531746, -0.03367391601204872, 0.02402329444885254, 0.0016967742703855038, 0.006391298025846481, -0.017511537298560143, 0.019067199900746346, -0.03403185307979584, -0.007069319486618042, -0.018488988280296326, -0.022481398656964302, 0.021820586174726486, -0.015942106023430824, -0.006164143327623606, -0.007915985770523548, 0.006408506538718939, 0.02568909339606762, -0.03014957904815674, 0.019480207934975624, -0.018667958676815033, 0.025055814534425735, 0.036041826009750366, 0.01598340831696987, 0.006418831646442413, -0.010834574699401855, -0.016575384885072708, -0.016410183161497116, 0.019920749589800835, -0.01507478952407837, 0.025730395689606667, 0.03997916728258133, 0.03378405049443245, -0.03595922514796257, 0.0012321403482928872, 0.03692290931940079, 0.03196681663393974, 0.03480280190706253, 0.050882577896118164, 0.008039887994527817, 0.010394033044576645, 0.03714318200945854, 0.038051798939704895, 0.005486122332513332, 0.013773814775049686, 0.02099457010626793, -0.010573003441095352, -0.026680313050746918, 0.031719010323286057, -0.007138154003769159, -0.0147994514554739, -0.004367559216916561, 0.03755619004368782, 0.010662488639354706, -0.014937120489776134, 0.030948061496019363, -0.01796584576368332, 0.008205091580748558, 0.027905570343136787, 0.011123680509626865, -0.00721387192606926, 0.013223137706518173, 0.010221946984529495, 0.005871596280485392, -0.00415072962641716, 0.04130079597234726, 0.01105484552681446, -0.0033057844266295433, 0.021517714485526085, 0.047027837485075, 0.009010456502437592, -0.01194281317293644, 0.017291266471147537, 0.01459294743835926, 0.01192216295748949, 0.003723955014720559, -0.02462903968989849, -0.014826985076069832, 0.02670784667134285, -0.010008559562265873, 0.02153148129582405, -0.039070550352334976, -0.0067526800557971, 0.00534845283254981, -0.014620481058955193, -0.006694170646369457, 0.023362481966614723, 0.006081542000174522, -0.010972244665026665, -0.004691082052886486, 0.012706877663731575, -0.017208663746714592, -0.006725145969539881, -0.012982216663658619, 0.0007115782937034965, 0.00812937319278717, -0.031691476702690125, 0.00812937319278717, 0.021448878571391106, -0.01508855726569891, 0.014124871231615543, 0.033150769770145416, 0.055645935237407684, -0.008645633235573769, -0.011495388112962246, -0.01127511728554964, 0.0035828438121825457, 0.025840530171990395, 0.0025262318085879087, -0.02007218636572361, -0.023059610277414322, -0.021104706451296806, -0.010786390863358974, -0.02173798531293869, 0.018075980246067047, -0.0012200942728668451, -0.02551012486219406, -0.010875876061618328, -0.029956843703985214, -0.020223623141646385, -0.008872787468135357, 0.00443983543664217, -0.011282000690698624, -0.002028901595622301, -0.016823189333081245, 0.008576798252761364, 0.021077172830700874, -0.011481620371341705, 0.01000167615711689, -0.046009086072444916, -0.006109075620770454, -0.003446895396336913, 0.026611478999257088, -0.011254466138780117, -0.02139381133019924, 0.03562881797552109, -0.02367912232875824, 0.019521508365869522, -0.04735824465751648, 0.022206060588359833, 0.02296324074268341, 0.03984149917960167, -0.022853106260299683, 0.012452189810574055, 0.028690285980701447, -0.0024487930350005627, 0.02180681936442852, 0.021476412191987038, -0.011041078716516495, -0.03741851821541786, 0.024505138397216797, -0.03326090797781944, 0.02337624877691269, -0.0002783501404337585, 0.001637404435314238, 0.01192216295748949, 0.007186338305473328, -0.013904600404202938, -0.028057007119059563, 0.015047255903482437, -0.009671268984675407, 0.01782817579805851, 0.010738206095993519, 0.0032989010214805603, 0.0010574724292382598, -0.05024930089712143, 0.002137316158041358, -0.002390283392742276, -0.032269686460494995, 0.015102324075996876, 0.016437716782093048, -0.012390238232910633, 0.02728605829179287, 0.00674579618498683, 0.00349163799546659, 0.00461880536749959, -0.03334350883960724, 0.002877288730815053, 0.003699862863868475, -0.019452674314379692, 0.01144720334559679, 0.024918146431446075, -0.008225741796195507, 0.003957992885261774, 0.012913381680846214, -0.0005158297135494649, -0.016892025247216225, -0.0033677355386316776, -0.023706655949354172, 0.00776454946026206, -0.0028790095821022987, -0.004935444798320532, 0.00960931833833456, 0.006584034767001867, 0.025165950879454613, -0.0026983185671269894, 0.0002460838877595961, 0.005651325453072786, -0.0016675195656716824, 0.02027869038283825, 0.009554250165820122, 0.03741851821541786, -0.00877641886472702, 0.014207473024725914, 0.011302650906145573, -0.00035535890492610633, -0.029406165704131126, 0.030066978186368942, 0.0056065828539431095, -0.025565192103385925, 0.008060538209974766, -0.018530290573835373, 0.0007614833884872496, 0.025771696120500565, 0.013408991508185863, 0.019989583641290665, 0.02139381133019924, 0.009368397295475006, 0.006890349090099335, -0.02374795638024807, 0.012156200595200062, 0.022577768191695213, -0.00046248285798355937, 0.014076687395572662, -0.03851987421512604, 0.04119065776467323, -0.015212459489703178, 0.017442701384425163, -0.01277571264654398, -0.019672945141792297, 0.02303207665681839, -0.008604331873357296, -0.0002781350340228528, 0.023665355518460274, -0.010951593518257141, 0.025221018120646477, -0.012500373646616936, -0.0037101879715919495, 0.018144816160202026, 0.010807041078805923, -0.011151214130222797, 0.03309570252895355, -0.001910161692649126, 0.0034107572864741087, -0.006356880534440279, -0.0017019369406625628, 0.011873978190124035, -0.02800193801522255, -0.02041635848581791, 0.01202541496604681, -0.001542756799608469, 0.01108926348388195, 0.032132018357515335, 0.015405196696519852, 0.014648014679551125, -0.041080523282289505, 0.0002295205631526187, -0.024642806500196457, -0.020636629313230515, 0.018819395452737808, -0.02555142529308796, -0.01870925910770893, 0.03527087718248367, -0.0015221063513308764, 0.009974141605198383, 0.010249480605125427, -0.003896041540428996, -0.007971053011715412, 0.008941621519625187, -0.02694188430905342, -0.004092220216989517, -0.02888302132487297, -0.01663045398890972, 0.013168069534003735, 0.03309570252895355, -0.02020985446870327, 0.01552909892052412, 0.010868992656469345, 0.017497770488262177, -0.012397121638059616, -0.013773814775049686, -0.030397385358810425, 0.011695008724927902, 0.017718041315674782, -0.01115809753537178, 0.014854518696665764, 0.04278762266039848, -0.006277720909565687, -0.033728983253240585, 0.019645411521196365, -0.016010941937565804, 0.01813104934990406, -0.02847001515328884, 0.031140798702836037, 0.019370073452591896, 0.061180245131254196, -0.007358424831181765, 0.024863077327609062, -0.02204085700213909, 0.025221018120646477, -0.017883243039250374, -0.0033539687283337116, 0.015831971541047096, -0.014937120489776134, 0.016451483592391014, -0.0021562455222010612, -0.0005919780232943594, 0.046559762209653854, -0.023692889139056206, 0.010414683260023594, -0.00420235563069582, 0.005561840254813433, -0.009210077114403248, 0.014441510662436485, 0.03953862562775612, 0.008480429649353027, 0.025386221706867218, 0.00952671654522419, -0.008397827856242657, -0.038795214146375656, -0.017098529264330864, -0.0015771740581840277, -0.02055402845144272, -0.03116833232343197, 0.027162155136466026, -0.003269646316766739, 0.011240699328482151, 0.004773683380335569, 0.007131270598620176, -0.00522110890597105, -0.018186116591095924, 0.02358275279402733, -0.022054623812437057, -0.0059163388796150684, 0.011763842776417732, 0.01144720334559679, -0.012431538663804531, -0.04270502179861069, 0.02527608536183834, -0.0028807304333895445, 0.01253479067236185, 0.0031887656077742577, -0.0014661782188341022, -0.03634469956159592, -0.025193484500050545, -0.0007490071002393961, 0.024642806500196457, -0.004828751087188721, -0.0076681808568537235, -0.02115977369248867, -0.004832192789763212, -0.030232181772589684, -0.01451034564524889, 0.027809200808405876, 0.007998587563633919, -0.02802947163581848, 0.004904469475150108, 0.027878036722540855, 0.00022070111299399287, 0.009368397295475006, 0.0405573807656765, -0.007730131968855858, 0.009657502174377441, 0.011385252699255943, 0.003472708398476243, 0.004952653776854277, 0.0566096231341362, 0.004174822010099888, -0.02416096441447735, -0.004835634492337704, -0.0007636344525963068, 0.01755283772945404, -0.002061598002910614, 0.0056341164745390415, -0.006597802042961121, -0.0038409738335758448, -0.018516521900892258, -0.028910556808114052, -0.0024746060371398926, 0.04490773007273674, -0.012982216663658619, -0.004794334061443806, -0.003018399700522423, 0.012245685793459415, 0.010992894880473614, 0.00301151629537344, 0.027671532705426216, 0.01612107641994953, 0.013443408533930779, 0.014634247869253159, 0.004828751087188721, -0.011777609586715698, -0.0022990775760263205, 0.0136567959561944, -0.020457660779356956, -0.009437231346964836, -0.028277277946472168, -0.006425715051591396, 0.01061430387198925, 0.04110805690288544, 0.02589559741318226, 0.04537580534815788, -0.02534492127597332, -0.008927854709327221, 0.006570267956703901, 0.003156068967655301, 0.02354145236313343, 0.004360675346106291, 0.0032524375710636377, -0.007055552210658789, 0.025468822568655014, -0.05330555886030197, -0.0014050874160602689, -0.022261127829551697, 0.021903187036514282, 0.020223623141646385, 0.0067526800557971, 0.009368397295475006, 0.00106349540874362, -0.006838723085820675, 0.011522921733558178, -0.02786426991224289, -0.009891539812088013, -0.01612107641994953, -0.01486828550696373, 0.024518905207514763, 0.03670264035463333, -0.016244979575276375, 0.0035759604070335627, 0.029130827635526657, 0.034417327493429184, 0.013250671327114105, 0.009485416114330292, -0.04980875924229622, 0.03595922514796257, -0.012892731465399265, -0.0026208795607089996, -0.021311210468411446, -0.010490401647984982, 0.000406339589972049, 0.013911483809351921, 0.010118694975972176, -0.011901511810719967, -0.016754355281591415, -0.039483558386564255, -0.0048459600657224655, 0.020540261641144753, -0.0359867587685585, 0.005747694056481123, 0.027602696791291237, 0.006349997129291296, 0.018447687849402428, 0.012293869629502296, 0.03381158411502838, -0.008845253847539425, 0.013512243516743183, 0.02416096441447735, 0.0032300662714987993]" -How Edeva Uses Continuous Aggregations and IoT to Build Smarter Cities,"big impact, and this means that we don’t really have time to put a lot of effort into tweaking and administering every single tool we use, but we still like to have control.""With Timescale, our developers immediately knew how to use the product because most of them already knew SQL""Also, since TimescaleDB is basically PostgreSQL with time-series functionality on steroids, it is much easier to onboard new developers if needed. With Timescale, our developers immediately knew how to use the product because most of them already knew SQL.Edeva uses TimescaleDB as the main database in our smart city system. Our clients can control their IoT devices (like the Actibump from EdevaLive) and—as part of that system—see the data that has been captured and quickly get an overview of trends and historical data. We offer many graphs that show data in different time spans, like day, week, month, and years. To get this to render really fast, we use continuous aggregations.""Timescale is basically PostgreSQL with time-series functionality on steroids, it is much easier to onboard new developers if needed""✨Editor’s Note:Learn how you can use continuous aggregates for distributed hypertables.Current Deployment and Future PlansOne of the TimescaleDB features that has had the most impact on our work is continuous aggregations. It changed our dashboards from sluggish to lightning fast. If we are building functionality to make data available for customers, we always aggregate it first to speed up the queries and take the load off the database. It used to take minutes to run some long-term data queries. Now, almost all queries for long-term data are subsecond.For example, we always struggled with showing the 85th percentile of speed over time. To get accurate percentile data, you had to calculate it based on the raw data instead of aggregating it. If you had 200 million events in a hypertable and wanted several years’ data for a specific sensor, it could take you a long time to deliver—users don’t want to wait that long.""It changed our dashboards from sluggish to lightning fast""Now that Timescale introducedpercentile_aggandapprox_percentile, we can actually query continuous aggregations andget reasonably accurate percentile valueswithout querying raw data.✨Editor’s Note:Percentile approximations can be more useful for large time-series data sets than averages. Read how their work in this blog post.Note that “vehicles” is a hypertable where actibump_id is",https://www.timescale.com/blog/how-edeva-uses-continuous-aggregations-and-iot-to-build-smarter-cities/,502,"[-0.019230345264077187, -0.013686141930520535, 0.05263791233301163, 0.036553315818309784, 0.07897110283374786, 0.030204880982637405, -0.01654008962213993, 0.015401357784867287, -0.016696665436029434, 0.020497186109423637, 0.028752997517585754, -0.032169193029403687, -0.0008905244176276028, -0.03512989729642868, 0.06063750758767128, 0.05124296620488167, -0.0026635664980858564, -0.040766626596450806, -0.03831835091114044, 0.015814147889614105, -0.0016787408385425806, 0.007693561725318432, 0.03475981205701828, 0.008739772252738476, -0.0056687528267502785, -0.017394140362739563, -0.026048507541418076, 0.06519243866205215, 0.006291497498750687, -0.049079373478889465, -6.098863650549902e-06, -0.039172399789094925, -0.016710899770259857, -0.017693057656288147, 0.03965635970234871, 0.011458496563136578, 0.03362107649445534, 0.024653559550642967, 0.006860863417387009, 0.004882315639406443, -0.01574297808110714, 0.021522045135498047, -0.01920187659561634, 0.03273855894804001, -0.015586401335895061, -0.004736415576189756, -0.04643182083964348, -0.023671403527259827, 0.02276041731238365, 0.0714554637670517, -0.03709421306848526, 0.0014438772341236472, -0.013913888484239578, -0.05084440857172012, 0.02503788098692894, -0.018575575202703476, 0.009721929207444191, 0.032823964953422546, -0.019187644124031067, -0.05605410784482956, -0.00878247432410717, -0.0670144110918045, 0.03740736469626427, 0.04079509153962135, -0.004757767077535391, 0.02489553950726986, -0.025251394137740135, 0.024582387879490852, -0.048139918595552444, 0.02957857772707939, 0.04210463538765907, 0.016041895374655724, -0.016155768185853958, -0.0013638101518154144, 0.017038285732269287, -0.05722131207585335, -0.008625899441540241, 0.03185604140162468, 0.0007081492803990841, -0.015871085226535797, 0.02481013536453247, 0.003099487628787756, -0.03145748749375343, 0.04022572562098503, 0.026802917942404747, -0.02775660529732704, -0.013835600577294827, -0.0169528815895319, -0.0013086528051644564, 0.02522292546927929, -0.00936607550829649, 0.06530631333589554, 0.0019322867738083005, -0.001962534384801984, 0.013145243749022484, 0.03424737975001335, -0.006857304833829403, -0.0034606794361025095, -0.005191908683627844, 0.016611261293292046, 0.024169597774744034, 0.001726781134493649, -0.01461847871541977, -0.02448274940252304, 0.03259621933102608, -0.008270044811069965, -0.018433233723044395, -0.0007953335298225284, 0.012938848696649075, 0.01948656141757965, -0.04831072688102722, -0.03925780579447746, -0.051186028867959976, 0.009842919185757637, 0.00298917293548584, 0.010839310474693775, -0.027201473712921143, 0.02065376192331314, 0.0022810236550867558, -0.02219104953110218, -0.03703727573156357, 0.010853544808924198, -0.03925780579447746, 0.007992479018867016, 0.01020589005202055, -0.0153017183765769, -0.0018273098394274712, -0.06063750758767128, -0.06872250884771347, -0.01324488315731287, 0.034731343388557434, -0.015472528524696827, 0.041734546422958374, -0.01635504700243473, -0.018376296386122704, -0.0008429289446212351, -0.05383358150720596, -0.00039499785634689033, -0.018575575202703476, -0.008654367178678513, -0.022062942385673523, -0.018376296386122704, 0.01979971118271351, -0.012227140367031097, -0.02270347997546196, 0.016597026959061623, -0.019173409789800644, 0.0360693521797657, -0.010049314238131046, -0.028610656037926674, 0.0010239696130156517, 0.004530020523816347, -0.03629710152745247, -0.0389731228351593, 0.051271431148052216, 0.017294500023126602, 0.025948867201805115, 0.03615475818514824, -0.01924457959830761, -0.027685435488820076, -0.011792998760938644, 0.04856694117188454, -0.005501501727849245, -0.013743078336119652, -0.03558539226651192, -0.002275685779750347, -0.06211785972118378, -0.04503687098622322, -0.09246508032083511, -0.046460289508104324, -0.05770527198910713, -0.04896549880504608, -0.0020942003466188908, 0.01760765165090561, 0.048139918595552444, -0.009124094620347023, -0.00815617199987173, -0.048652347177267075, 0.017636120319366455, -0.042019229382276535, -0.03672412410378456, 0.015202078968286514, -0.030717309564352036, 0.02419806644320488, -0.0069284760393202305, -0.004035383462905884, -0.08176099509000778, 0.039827171713113785, -0.002836155705153942, 0.038802310824394226, -0.05759139731526375, 0.043755799531936646, 0.005618933588266373, 0.020724931731820107, 0.021180424839258194, -0.04751361533999443, 0.04680190607905388, 0.014020644128322601, -0.031144335865974426, -0.0065263607539236546, 0.06906412541866302, 0.030005602166056633, 0.05508618801832199, -0.004426822531968355, -0.0063911364413797855, -0.004352093208581209, 0.020297907292842865, -0.01184281799942255, -0.03803366795182228, -0.01728026568889618, -0.011252100579440594, -0.00540897948667407, -0.002688476350158453, -0.009850036352872849, -0.037635110318660736, 0.0027382958214730024, -0.061947051435709, -0.006497892551124096, 0.032681625336408615, -0.018618276342749596, 0.0024393785279244184, 0.023671403527259827, -0.005693662911653519, -0.024582387879490852, -0.03672412410378456, 0.03729349002242088, 0.03083118423819542, 0.002314829733222723, 0.009138328954577446, 0.016653964295983315, 0.0028450521640479565, -0.046545691788196564, -0.0011494081700220704, -0.05030351132154465, 0.0033521440345793962, 0.020340610295534134, 0.02392761781811714, -0.02728687785565853, -0.02200600691139698, -0.024269238114356995, -0.019927820190787315, -0.011365974321961403, -0.010647148825228214, 0.010341115295886993, -0.012070564553141594, 0.02882416732609272, -0.03461746871471405, -0.03313711658120155, 0.01952926255762577, 0.051186028867959976, 0.002353973686695099, -0.03461746871471405, 0.0013264454901218414, -0.05121449753642082, -0.0481114499270916, -0.04014032334089279, -0.027856245636940002, 0.013558034785091877, 0.01270398497581482, 0.009209499694406986, 0.02428347058594227, -0.017493778839707375, 0.002165371086448431, -0.0005377842462621629, -0.01817701756954193, 0.031087398529052734, 0.04116518050432205, -0.03598394989967346, 0.020240971818566322, 0.01259011123329401, 0.04993342235684395, 0.05559861660003662, 0.035158365964889526, -0.04765595868229866, -0.004665244836360216, -0.011864169500768185, -0.011323271319270134, -0.0066758194006979465, -0.019685838371515274, -0.006003255490213633, 0.004501551855355501, -0.040624283254146576, 0.00754410307854414, -0.004878757055848837, 0.024938242509961128, 0.0035354087594896555, -0.012839209288358688, 0.04455291107296944, 0.036183226853609085, -0.03498755767941475, -0.006547712255269289, 0.01967160403728485, 0.02863912284374237, -0.023771042004227638, 0.021479342132806778, 0.02153627946972847, 0.017508013173937798, 0.003917951602488756, -0.03988410905003548, -0.04808298125863075, 0.020824572071433067, 0.010661383159458637, -5.209923619986512e-05, -0.0444675050675869, 0.022433031350374222, 0.04190535843372345, -0.023557528853416443, -0.00023308431264013052, -0.03222613036632538, 0.0002562148147262633, -0.0015479645226150751, -0.014718118123710155, 0.019372686743736267, -0.016995582729578018, -0.051869265735149384, -0.02065376192331314, 0.07897110283374786, -0.031030461192131042, 0.00026310948305763304, -0.04788370430469513, -0.023329783231019974, -0.08711303770542145, -0.03783438727259636, 0.01401352696120739, 0.005889382213354111, -0.020682230591773987, 0.02611967734992504, 0.002426923718303442, 0.02036907896399498, -0.011572369374334812, 0.029265426099300385, 0.004341417923569679, 0.02046871744096279, 0.04256013035774231, -0.01952926255762577, -0.04717199504375458, -0.0014741248451173306, -0.02364293485879898, -0.02690255641937256, 0.029137318953871727, -0.015515230596065521, -0.010988769121468067, -0.07919884473085403, 0.012333896942436695, 0.05161305144429207, -0.0038788076490163803, -0.012632814235985279, -0.0017694836715236306, 0.0055833482183516026, 0.003864573547616601, -0.03484521433711052, -0.02008439600467682, -0.004081644583493471, 0.021151956170797348, 0.00190381845459342, -0.011736062355339527, 0.006885773502290249, -0.03723655268549919, -0.03157135844230652, 0.00017903900879900903, -0.044211290776729584, -0.010177422314882278, 0.03214072436094284, -0.01719486154615879, -0.02278888411819935, 0.029692450538277626, -0.04227544739842415, 0.043613456189632416, -0.03695186972618103, -0.006234560627490282, 0.019458092749118805, -0.02157898247241974, -0.022575372830033302, -0.008533377200365067, -0.029863260686397552, -0.0107467882335186, 0.04757055267691612, 0.0349590890109539, 0.0028788582421839237, 0.05044585093855858, 0.020255204290151596, 0.020767634734511375, 0.01578567922115326, -0.021593214944005013, 0.05639572814106941, 0.034788280725479126, 0.006234560627490282, 0.01961466856300831, -0.053975921124219894, -0.021607449278235435, 0.034218911081552505, 0.019956286996603012, -0.0193015169352293, -0.02882416732609272, -0.018376296386122704, -0.002629760419949889, 0.008704186417162418, 0.0020265879575163126, 0.05312187224626541, 0.0021048758644610643, 0.017863865941762924, -0.011515432968735695, -0.04167761281132698, -0.025991570204496384, 0.019116472452878952, 0.027813542634248734, 0.005839562974870205, 0.012618579901754856, -0.013472629711031914, 0.001345127820968628, -0.02298816293478012, -0.006953385658562183, 0.03678106144070625, -0.02761426381766796, 0.036467909812927246, -0.04204769805073738, -0.048652347177267075, 0.10151800513267517, 0.01681053824722767, 0.06889332085847855, -0.05087287724018097, -0.022646542638540268, -0.03379188850522041, 0.0048467302694916725, -0.03265315666794777, 0.04093743488192558, 0.026148146018385887, -0.007999596185982227, -0.038745373487472534, -0.013287585228681564, -0.0066900537349283695, 0.0056082578375935555, 0.04768442362546921, -0.004451732616871595, 0.001801510457880795, 0.0218636654317379, 0.03359261155128479, -0.017209095880389214, 0.07230951637029648, -0.006277263164520264, -0.026831384748220444, 0.0019376245327293873, 0.008597430773079395, 0.020525654777884483, -0.03396269679069519, -0.03985564038157463, -0.038147538900375366, -0.0375497043132782, 0.009430129081010818, 0.014960099011659622, 0.03373495116829872, 0.02163591794669628, -0.033194053918123245, 0.00645874859765172, -0.013259117491543293, -0.037777453660964966, 0.035243771970272064, -0.03726502135396004, 0.032026853412389755, -0.006280821748077869, -0.025934632867574692, -0.008682835847139359, -0.07168321311473846, -0.02415536344051361, -0.0022703479044139385, -0.009736163541674614, 0.06473694741725922, 0.009394543245434761, 0.007764732465147972, -0.011458496563136578, -0.029123084619641304, 0.06382595747709274, -0.014732352457940578, 0.017322968691587448, -0.02278888411819935, 0.021806728094816208, 0.02116619050502777, -0.00856896210461855, 0.006188299506902695, -0.04532155394554138, 0.012910380028188229, -0.014362264424562454, -0.029322363436222076, 0.06809620559215546, 0.03125820681452751, 0.018205486238002777, 0.013899654150009155, -0.004558488726615906, -0.0074373469687998295, -0.022247986868023872, -0.003978446591645479, -0.0005537976394407451, 0.0678115263581276, -0.017579182982444763, -0.014803523197770119, 0.004818262066692114, -0.08301360160112381, -0.01095318328589201, 0.007828786037862301, -0.01686747558414936, 0.031599827110767365, 0.001624473137781024, 0.013707493431866169, 0.06809620559215546, 0.0048467302694916725, 0.03009100817143917, -0.002537238411605358, -0.009686343371868134, -0.0029998484533280134, -0.014362264424562454, -0.025251394137740135, -0.025706887245178223, 0.031030461192131042, 0.02229068987071514, -0.028525250032544136, 0.03441819176077843, -0.012476238422095776, 0.02471049688756466, -0.00750851770862937, 0.005597582086920738, -0.015913786366581917, -0.01644045114517212, -0.026034273207187653, -0.0055335285142064095, -0.01149408146739006, 0.01345127820968628, -0.044780656695365906, 0.00571145536378026, -0.025379501283168793, -0.014632713049650192, 0.006803927011787891, -0.05036044493317604, 0.03285243362188339, 0.006223884876817465, -0.04176301509141922, -0.0004372555122245103, -0.018945662304759026, -0.028368674218654633, -0.031229740008711815, 0.02573535591363907, 0.011970926076173782, 0.03518683463335037, 0.028325971215963364, 0.024553921073675156, -0.0033112207893282175, -0.007045907434076071, -0.004583398345857859, -0.023415187373757362, -0.010718320496380329, 0.025436438620090485, 0.016041895374655724, -0.02438311092555523, 0.02424076944589615, 0.015871085226535797, 0.008426620624959469, 0.013771547004580498, 0.013230648823082447, 0.03746430203318596, 0.02550760842859745, 0.000597834587097168, 0.015942255035042763, -0.004426822531968355, -0.008768240921199322, -0.014860459603369236, -0.0236856359988451, 0.056367259472608566, 0.012141735292971134, -0.02779930830001831, -0.05574095621705055, 0.03430431708693504, 0.004668803419917822, 0.0070032053627073765, 0.012127501890063286, 0.024824369698762894, -0.0020283672492951155, 0.0027578677982091904, -0.045008402317762375, -0.014348030090332031, -0.0007481828797608614, -0.0031439694575965405, -0.03661024942994118, -0.006932034157216549, -0.01324488315731287, 0.03308017924427986, -0.039030056446790695, -0.008846528828144073, 0.0260627418756485, 0.01081084180623293, 0.02251843549311161, -0.018433233723044395, 0.00768644455820322, 0.0035567600280046463, -0.007149105425924063, 0.004814703483134508, 0.02564994990825653, 0.01747954450547695, 0.007536985911428928, -0.005391187034547329, -0.01224137470126152, 0.029208490625023842, 0.018333593383431435, -0.015002801083028316, -0.014775054529309273, -0.01413451787084341, -0.03920086845755577, 0.015472528524696827, -0.020639527589082718, 0.007622390985488892, 0.03811907023191452, -0.009850036352872849, 0.030774246901273727, 0.009544001892209053, -0.006490775384008884, -0.029493173584342003, -0.012276960536837578, -0.017394140362739563, -0.013308936730027199, -0.005063801072537899, 0.018162783235311508, -0.016283875331282616, -0.0356992669403553, -0.013081190176308155, -0.031315144151449203, -0.02821209840476513, 0.006544153671711683, 0.016383513808250427, -0.008882113732397556, -0.03737889602780342, 0.0005707007367163897, 0.007451580837368965, 0.013614971190690994, 0.00035096093779429793, 0.02532256580889225, 0.012689750641584396, 0.024582387879490852, 0.0375497043132782, 0.01011336874216795, 0.016796305775642395, -0.003510498907417059, -0.021194659173488617, 0.004572723060846329, 0.027856245636940002, -0.0029927315190434456, 0.0028290387708693743, -0.013728844001889229, -0.032396942377090454, -0.0020568356849253178, 0.0046972716227173805, -0.011657774448394775, -0.017835399135947227, -0.008063649758696556, -0.04014032334089279, 0.05836004391312599, 0.018846023827791214, 0.027728136628866196, -0.008604547940194607, -0.024795901030302048, -0.0207818690687418, 0.005216818302869797, 0.00896751880645752, -0.025991570204496384, 0.0018539988668635488, -0.0026404361706227064, -0.008939050137996674, -0.023956086486577988, 0.02943623624742031, 0.03783438727259636, 0.018347827717661858, 0.03293783962726593, 0.013437043875455856, 0.006216768175363541, 0.037777453660964966, 0.02130853198468685, 0.03615475818514824, 0.043471116572618484, 0.00765085918828845, 0.02194906957447529, -0.012554526329040527, 0.0033130000811070204, 0.05961264669895172, -0.02411266230046749, 0.02116619050502777, -0.0276996698230505, 0.024881305173039436, -0.004885874222964048, 0.005515735596418381, -0.00960093829780817, 0.02176402509212494, 0.019500793889164925, 0.011728945188224316, 0.006174065638333559, -0.0023290638346225023, 0.009629406966269016, -0.005921408999711275, -0.010447870939970016, -0.029066147282719612, 0.01728026568889618, 0.03040415793657303, -0.02219104953110218, -0.01113822776824236, -0.006892890203744173, 0.008931932970881462, -0.03979870304465294, -0.046374883502721786, -0.010049314238131046, 0.013280468061566353, 0.018490169197320938, -0.022447265684604645, 0.02251843549311161, -0.029493173584342003, -0.0408235602080822, 0.006070867646485567, -0.022902758792042732, 0.005715013947337866, 0.0059676701202988625, 0.009216616861522198, -0.032539281994104385, 0.0182197205722332, 0.004106554202735424, -0.004533579107373953, -0.06291497498750687, -0.006234560627490282, -0.047542084008455276, -0.033706482499837875, 0.033991165459156036, -0.01715215854346752, 0.006818160880357027, 0.046460289508104324, 0.004743532743304968, -0.02639012597501278, 0.025564545765519142, 0.011387325823307037, 0.02714453637599945, -0.019358452409505844, 0.008070766925811768, -0.0027382958214730024, -0.020169800147414207, -0.011230750009417534, -0.0397132970392704, 0.01231254544109106, -0.030147943645715714, -0.0017125470330938697, -0.01113822776824236, -0.027571560814976692, 0.02518022246658802, -0.018091613426804543, 0.011913989670574665, 0.032482344657182693, 0.019045302644371986, -0.007109961472451687, -0.008519142866134644, 0.013287585228681564, 0.005263079423457384, -0.0030905914027243853, 0.010924715548753738, -0.01967160403728485, -0.013010019436478615, 0.004871640354394913, -0.0004421485064085573, 0.0298917293548584, 0.021507810801267624, 0.008447972126305103, -0.0309735257178545, 0.014511723071336746, 0.01700981706380844, 0.0298917293548584, 0.002330843126401305, 0.0024162482004612684, -0.024539686739444733, -0.047627490013837814, -0.016098830848932266, -0.003003407036885619, 0.010917598381638527, -0.012732453644275665, 0.06018201634287834, 0.011807233095169067, 0.01155813504010439, -0.003563876962289214, -0.0013211077312007546, 0.01399217639118433, -0.00025399072910659015, 0.006074426230043173, -0.026190849021077156, -0.03157135844230652, -0.009287787601351738, 0.0034855890553444624, 0.029607046395540237, -0.021664386615157127, -0.02261807583272457, -0.041933827102184296, -0.017778461799025536, -0.014234156347811222, -0.007038790732622147, 0.004761325661092997, 0.0273295808583498, -0.026005804538726807, 0.02667480893433094, -0.10265673696994781, -0.024838604032993317, 0.03638250380754471, -0.011330388486385345, -0.00836256705224514, -0.0187748521566391, 0.003985563758760691, 0.02364293485879898, 0.047997575253248215, -0.016326578333973885, 0.01455442514270544, -0.054545287042856216, -0.03074577823281288, -0.00306034367531538, -0.02681715227663517, 0.021692855283617973, -0.015401357784867287, 0.016269640997052193, 0.02808399125933647, 0.015387123450636864, -0.02835443988442421, -0.012106150388717651, -0.032823964953422546, 0.011038588359951973, 0.008661484345793724, -0.0035798903554677963, -0.023059334605932236, 0.04788370430469513, 0.021052317693829536, -0.005401862319558859, 0.017024051398038864, 0.008796708658337593, 0.00407452741637826, -0.00789283961057663, -0.008939050137996674, 0.023201676085591316, 0.000999059877358377, -0.01709522306919098, 0.009700577706098557, -0.012632814235985279, -0.03017641231417656, -0.05332115292549133, 0.03868843987584114, -0.02014133147895336, 0.05810382962226868, -0.00965075846761465, 0.00322937429882586, 0.042531661689281464, -0.013607854023575783, 0.002873520366847515, 0.020354844629764557, 0.004223986063152552, -0.01813431642949581, -0.005092269740998745, 0.0035887868143618107, 0.007042348850518465, -0.0517553947865963, -0.010967417620122433, 0.011992276646196842, 0.003679529530927539, -0.021095020696520805, 0.030489563941955566, 0.010476339608430862, -0.0830705389380455, -0.005448123440146446, -0.009615172632038593, 0.003044330282136798, 0.04574858024716377, 0.017166392877697945, 0.01345839537680149, 0.023699870333075523, 0.030660374090075493, 0.006729197688400745, -0.031799107789993286, 0.03162829577922821, 0.0012365924194455147, 0.018233954906463623, -0.005690104328095913, -0.011387325823307037, -0.026418594643473625, 0.031087398529052734, -0.01088201254606247, -0.026404360309243202, 0.007907073944807053, -0.017621885985136032, -0.027870478108525276, -0.011316155083477497, 0.0022098529152572155, 0.03774898499250412, 0.016796305775642395, 0.0306034367531538, -0.0039499783888459206, -0.01006354857236147, 0.013002902269363403, 0.009451479651033878, 0.02475319802761078, 0.025208691135048866, 0.0023842211812734604, 0.004978396464139223, -0.005715013947337866, 0.027785073965787888, -0.005149206146597862, 0.015059737488627434, 0.023201676085591316, -0.04221851006150246, -0.03367801383137703, 0.012647048570215702, -0.007380410097539425, 0.0016787408385425806, 0.01631234399974346, -0.01081795897334814, 0.004092319868505001, 0.018817555159330368, 0.02344365604221821, 0.0005818211357109249, 0.016127299517393112, 0.010227241553366184, -0.0115652522072196, 0.0012819637777283788, -0.014497488737106323, 0.02424076944589615, -0.030717309564352036, -0.045008402317762375, 0.04816838726401329, -0.012689750641584396, 0.024041490629315376, 0.03456053137779236, -0.007359059061855078, 0.01271110214293003, -0.006195416674017906, 0.022219518199563026, 0.05875859782099724, 0.018048910424113274, 0.04677343741059303, -0.014191454276442528, -0.020539889112114906, 0.008597430773079395, -0.023472124710679054, -0.0009910531807690859, 0.02845408022403717, 0.009309138171374798, 0.011088408529758453, 0.0320553220808506, -0.013052721507847309, 0.012106150388717651, 0.009963910095393658, -0.007907073944807053, -0.0075725712813436985, -0.01737990602850914, 0.043101027607917786, 0.017579182982444763, -0.025493374094367027, -0.014746586792171001, 0.0736190602183342, -0.016326578333973885, 0.061947051435709, -0.02845408022403717, -0.045890919864177704, -0.01515937689691782, -0.004266688600182533, 0.009124094620347023, 0.04628947749733925, 0.037350427359342575, -0.026760214939713478, 0.00822022557258606, -0.01920187659561634, -0.030888119712471962, -0.0017783800140023232, -0.03612628951668739, 0.0052203768864274025, -0.005124296527355909, 0.024938242509961128, 0.0021351235918700695, 0.026233550161123276, 0.05730671435594559, 0.024838604032993317, 0.002147578401491046, 0.018105847761034966, -0.025564545765519142, 0.02620508335530758, -0.038802310824394226, -0.012419302016496658, 0.030916588380932808, 0.04039653763175011, 0.019315751269459724, -0.02798435278236866, -0.02069646306335926, 0.010903364047408104, -0.007657976355403662, 0.010013729333877563, 0.023372486233711243, 0.005501501727849245, 0.013693259097635746, 0.032254599034786224, -0.011486964300274849, 0.009309138171374798, 0.03302324190735817, -0.0037827270571142435, -0.022945459932088852, 0.010575978085398674, -0.04833919554948807, 0.0032418291084468365, 0.021479342132806778, -0.0107467882335186, 0.01170047651976347, 0.05796148627996445, -0.010376700200140476, -0.004159932490438223, -0.022361859679222107, 0.020354844629764557, -0.005263079423457384, 0.00957958772778511, 0.01184281799942255, -0.0025657068472355604, -0.043471116572618484, 0.013906771317124367, 0.00929490476846695, -0.00428803963586688, -0.0032809730619192123, -0.042901746928691864, -0.03194144740700722, -0.03521530330181122, -0.03222613036632538, 0.023514827713370323, -0.020909976214170456, 0.03191297873854637, -0.0038147540763020515, -0.014077581465244293, -0.016013426706194878, 0.01380713190883398, 0.002275685779750347, 0.03438972309231758, 0.01733720302581787, 0.01649738848209381, 0.015145142562687397, 0.01863251067698002, -0.001111153862439096, 0.007280771154910326, -0.027087600901722908, 0.0024322615936398506, 0.009622289799153805, -0.018618276342749596, 0.002163591794669628, -0.024824369698762894, -0.03979870304465294, -0.00017158831178676337, 0.027272643521428108, 0.02540796995162964, 0.023187441751360893, -0.023372486233711243, 0.010839310474693775, 0.004316507838666439, 0.032311536371707916, 0.00057826261036098, 0.02980632334947586, 0.015757212415337563, -0.0008887451840564609, 0.028439845889806747, -0.004042500630021095, 0.005558438133448362, 0.008597430773079395, 0.008739772252738476, 0.00612068735063076, 0.024454280734062195, -0.007907073944807053, -0.015629103407263756, -0.014276859350502491, 0.01570027507841587, 0.006369784940034151, 0.003971329890191555, -0.025963101536035538, 0.033706482499837875, 0.02438311092555523, -0.042901746928691864, -0.024468515068292618, 0.02574959024786949, -0.0685516968369484, -0.00428803963586688, -0.010910481214523315, -0.026603639125823975, -0.003974888473749161, 0.010568861849606037, -0.028795698657631874, 0.0029553668573498726, 0.04389813914895058, -0.018604042008519173, 0.008931932970881462, -0.013223531655967236, 0.017693057656288147, -0.03128667548298836, -0.012120384722948074, 0.027158770710229874, -0.023002397269010544, 0.037578172981739044, -0.03293783962726593, 0.007814551703631878, -0.009337606839835644, 0.01948656141757965, -0.006586856208741665, -0.019472327083349228, 0.00012187996617285535, -0.02288852445781231, 0.025393735617399216, 0.03979870304465294, 0.02742921933531761, -0.0013477967586368322, 0.0013718168484047055, -0.00244649569503963, -0.003081694943830371, 0.018006207421422005, -0.0204117801040411, 0.014533073641359806, 0.004462408367544413, 0.036040883511304855, 0.0023255052510648966, -0.001829089131206274, 0.048196855932474136, 0.024966711178421974, 0.01981394551694393, 0.04031113162636757, 0.0063911364413797855, 0.04896549880504608, 0.01114534493535757, 0.04677343741059303, -0.00815617199987173, -0.012362365610897541, 0.017024051398038864, 0.004017590545117855, -0.029692450538277626, 0.003455341560766101, -0.00615627272054553, 0.006003255490213633, 0.0021938395220786333, 0.030574968084692955, -0.0010497691109776497, -0.009956792928278446, 0.006586856208741665, -0.014369381591677666, 0.005544204264879227, 0.005216818302869797, 0.014497488737106323, -0.008988870307803154, -0.0014954761136323214, -0.01373596116900444, 0.002425144426524639, -0.011323271319270134, 0.024966711178421974, 0.01999898999929428, -0.015543699264526367, 0.0276996698230505, 0.06496468931436539, 0.004672362003475428, -0.034503597766160965, 0.0034589001443237066, -0.01004219800233841, -0.004220427479594946, -0.005896499380469322, -0.018333593383431435, -0.014227040112018585, 0.0033503647428005934, -0.02937929891049862, 0.0020853038877248764, -0.024326173588633537, -0.005113620776683092, -0.008519142866134644, 0.002428703010082245, -0.006768341641873121, 0.04116518050432205, 0.013437043875455856, -0.0023432981688529253, 0.005643843207508326, 0.01032688096165657, -0.01905953511595726, -0.018789086490869522, -0.021806728094816208, -0.0022543345112353563, 0.02564994990825653, -0.011216515675187111, -0.014846225269138813, 0.011479847133159637, -0.012227140367031097, -0.014362264424562454, 0.029180021956562996, 0.04839613288640976, -0.011045705527067184, 0.028098225593566895, -0.024553921073675156, 0.021607449278235435, 0.02798435278236866, 0.006697170902043581, -0.02358599752187729, -0.022134114056825638, -0.01564333774149418, -0.005376952700316906, -0.01184281799942255, 0.02392761781811714, -0.01182146742939949, -0.03009100817143917, -0.003971329890191555, -0.04147833213210106, -0.032681625336408615, 0.0060317241586744785, 0.015614870004355907, -0.010611563920974731, 0.0058822655119001865, 0.0027596470899879932, 0.037720516324043274, 0.0165827926248312, 0.014533073641359806, 0.03871690481901169, -0.02130853198468685, 0.026845619082450867, -0.02611967734992504, -0.004206193145364523, -0.029720919206738472, -0.04364192485809326, 0.03171370178461075, -0.035898543894290924, 0.020497186109423637, -0.03470287472009659, 0.01419857144355774, 0.03957095742225647, 0.016554323956370354, -0.008141937665641308, 0.027173005044460297, 0.02943623624742031, 0.006544153671711683, 0.015002801083028316, 0.027343815192580223, -0.04227544739842415, -0.03962789103388786, 0.004793352447450161, -0.03769204765558243, 0.02527986280620098, -0.01584261655807495, 0.003508719615638256, 0.002035484416410327, 0.017920803278684616, -0.023059334605932236, 0.01733720302581787, 0.025621483102440834, -0.015500996261835098, 0.011921105906367302, -0.007109961472451687, 0.0020123538561165333, -0.025521842762827873, -0.03572773188352585, -0.004394795745611191, -0.001270398497581482, -0.004875198472291231, 0.012369481846690178, 0.009942558594048023, -0.01570027507841587, 0.01760765165090561, 0.023386718705296516, 0.009337606839835644, -0.006992529612034559, -0.03635403513908386, 0.005544204264879227, -0.01377866417169571, -0.03974176570773125, 0.02429770492017269, 0.02438311092555523, 0.015629103407263756, 0.014732352457940578, 0.020198268815875053, 0.011928223073482513, -0.008611665107309818, -0.036980338394641876, -0.015728743746876717, 0.026233550161123276, -0.005181232932955027, -0.01541559211909771, 0.00608510198071599, 0.022447265684604645, 0.029749387875199318, 0.008889230899512768, -0.02620508335530758, -0.005839562974870205, -0.0007254972006194293, 0.006700729485601187, 0.000630306254606694, 0.03922933712601662, 0.010946066118776798, -0.010704086162149906, 0.025023648515343666, 0.00023486358986701816, -0.010092017240822315, 0.0335356742143631, 0.026076974347233772, -0.05366276949644089, 0.0028272594790905714, -0.012369481846690178, -0.004729298409074545, 0.023529062047600746, 0.0006609986303374171, 0.03504449501633644, 0.020055927336215973, 0.00871130358427763, -0.026603639125823975, -0.008469323627650738, 0.00861878227442503, 0.06957656145095825, -0.012810741551220417, 0.020297907292842865, 0.006714963354170322, 0.0524955689907074, 0.0023183883167803288, 0.008077884092926979, -0.01277515571564436, -0.006245236378163099, 0.007985361851751804, -0.013138126581907272, -0.027585795149207115, 0.02153627946972847, -0.0360693521797657, 0.017735758796334267, -0.010419403202831745, -0.019358452409505844, -0.004277363885194063, -0.011123993434011936, -0.0020799662452191114, 0.02004169300198555, -0.013771547004580498, 0.033336393535137177, -0.001679630484431982, -0.005473033059388399, 0.017436841502785683, -0.010597329586744308, 0.006544153671711683, 0.001018631854094565, -0.005850238259881735, 0.00918103102594614, 0.010469222441315651, 0.012177321128547192, 0.010661383159458637, -0.03171370178461075, -0.0007779856096021831, -0.009138328954577446, -0.004085203167051077, 0.00604951661080122, -0.019258813932538033, 0.013273350894451141, 0.04785523563623428, 0.01441208366304636, 0.03470287472009659, 0.011195164173841476, 0.013579385355114937, -0.025479139760136604, 0.022603841498494148, -0.019700072705745697, -0.015145142562687397, -0.04757055267691612, 0.0012543851044028997, 0.011593720875680447, 0.04144986346364021, -0.015871085226535797, 0.018945662304759026, 0.009558236226439476, 0.01760765165090561, 0.0006814602529630065, 0.00028179181390441954, -0.02845408022403717, 0.023657169193029404, 0.023742573335766792, -0.0022810236550867558, -0.0026262018363922834, 0.051869265735149384, 0.010027963668107986, -0.03871690481901169, -0.003921510186046362, -0.008319864980876446, 0.01114534493535757, -0.012981550768017769, 0.012817857787013054, 0.02251843549311161, 0.046317946165800095, -0.003325454890727997, 0.010511924512684345, -0.015572167932987213, -0.01830512471497059, -0.02616238035261631, 0.011365974321961403, 0.011970926076173782, -0.00120545516256243, -0.004839613102376461, 0.007629508152604103, -0.00929490476846695, 0.042446255683898926, -0.02671751193702221, -0.035670798271894455, -0.013024253770709038, 0.02026943862438202, 0.007017439231276512, 0.040481943637132645, 0.02321591041982174, 0.030631905421614647, 0.006935592740774155, -0.004490876570343971, 0.010540393181145191, -0.02261807583272457, 0.02653246745467186, 0.013558034785091877, -0.01224137470126152, -0.022959694266319275, 0.021707089617848396, 0.018063144758343697, 0.006843070965260267, -0.0047862352803349495, 0.002298816340044141, -0.03549998626112938, -0.003321896307170391, 0.0074231126345694065, -0.02247573435306549, 0.007458698004484177, -6.75010378472507e-05, 0.02200600691139698, -0.021038083359599113, -0.049164775758981705, 0.04144986346364021, 0.025721121579408646, 0.03965635970234871, 0.0415637381374836, -0.0031688790768384933, 0.005430330988019705, 0.016981348395347595, 0.016155768185853958, 0.024496983736753464, -0.016013426706194878, -0.009771748445928097, -0.03219766169786453, -0.016056129708886147, -0.024881305173039436, -0.036553315818309784, 0.020240971818566322, 0.006658026948571205, -0.020966913551092148, 0.011116876266896725, -0.004017590545117855, -0.0013406795915216208, 0.0023094918578863144, 0.02527986280620098, -0.018006207421422005, -0.0018984806956723332, -0.004369886126369238, -0.013565151020884514, 0.019700072705745697, 0.006775458808988333, 0.0033165584318339825, 0.0005720351473428309, -0.012148852460086346, 0.015031269751489162, -0.011551017872989178, -0.007216717582195997, 0.026048507541418076, 0.015045504085719585, -0.022304924204945564, 0.003900158917531371, -0.005515735596418381, -0.012746687047183514, 0.029920198023319244, 0.002555031096562743, -0.0021208892576396465, 1.997508115891833e-05, -0.019515028223395348, -0.004497993737459183, 0.020027458667755127, 0.04153526946902275, 0.034133508801460266, -0.004693713039159775, 0.02923695743083954, 0.011857052333652973, 0.01259011123329401, -0.023201676085591316, 0.03652484714984894, 0.02802705392241478, 0.0008865210693329573, -0.0029197814874351025, 0.006661585532128811, -0.009138328954577446, 0.03564232960343361, 0.00015824378351680934, 0.040339600294828415, -0.02098114788532257, 0.011195164173841476, 0.009003103710711002, 0.030660374090075493, 0.020810337737202644, 0.008270044811069965, -0.012433536350727081, -0.02102384902536869, 0.02957857772707939, -0.0455777682363987, 0.007729147095233202, -0.0005444564740173519, 0.02587769739329815, 0.02059682458639145, 0.024511218070983887, 0.011444262228906155, 0.006455190014094114, -0.023102035745978355, 0.039172399789094925, -0.009949675761163235, -0.013856952078640461, -0.00322937429882586, -0.0035763320047408342, 0.03746430203318596, 0.009173913858830929, -0.01588531956076622, 0.020283672958612442, 0.021934835240244865, 0.016041895374655724, 0.00503533286973834, 0.006803927011787891, -0.02358599752187729, 0.015771444886922836, 0.025863463059067726, 0.0032738561276346445, -0.03584160655736923, -0.030204880982637405, -0.015899553894996643, -0.0012259167851880193, -0.011301920749247074, -0.017621885985136032, -0.0005391187150962651, -0.04102284088730812, 0.0007677548564970493, 0.025763824582099915, -0.017863865941762924, 0.019956286996603012, 0.010718320496380329, 0.027600029483437538, 0.00761527381837368, 0.01081795897334814, 0.02878146432340145, 0.004316507838666439, -0.0021778258960694075, 0.031742170453071594, 0.007978244684636593]" -How Edeva Uses Continuous Aggregations and IoT to Build Smarter Cities,"the ID of the dynamic speed bump containing several hundred million records.This is how we build the continuous aggregate:CREATE MATERIALIZED VIEW view1 WITH (timescaledb.continuous) AS SELECT actibump_id, timescaledb_experimental.time_bucket_ng(INTERVAL '1 month', time, 'UTC') AS bucket, percentile_agg(vehicle_speed_initial) AS percentile_agg FROM vehicles GROUP BY actibump_id, bucketAnd this is the query that fetches the data for the graph:SELECT TIMESCALEDB_EXPERIMENTAL.TIME_BUCKET_NG(INTERVAL '1 month', bucket) AS date, actibump_id, APPROX_PERCENTILE(0.85, ROLLUP(PERCENTILE_AGG)) AS p85, MAX(signpost_speed_max) FROM vehicles_summary_1_month WHERE actibump_id in ('16060022') AND bucket >= '2021-01-30 23:00:00' AND bucket <= '2022-04-08 21:59:59' GROUP BY date, actibump_id ORDER BY date ASCHere is an example of the graph:At the moment, we use PHP and Yii 2 to deploy TimescaleDB. We connect to TimescaleDB with Qlik Sense for business analytics. In Qlik Sense, you can easily connect to TimescaleDB using the PostgreSQL integration.It is especially convenient to be able to connect to the continuous aggregations for long-term data without overloading the system with too much raw data. We often use Qlik Sense to rapidly prototype graphs that we later add to EdevaLive.Advice and ResourcesThe next step for us is to come up with a good way of reducing the amount of raw data we store in TimescaleDB. We are looking at how we can integrate it with a data lake. Apart from that, we are really excited to start building even more graphs and map applications.If you are planning to store time-series data, Timescale is the way to go. It makes it easy to get started because it is “just” SQL, and at the same time, you get the important features needed to work with time-series data. I recommend you have a look, especially at continuous aggregations.Think about the whole lifecycle when you start. Will your use cases allow you to use features like compression, or do you need to think about how to store long-term data outside of TimescaleDB to make it affordable right from the start? You can always work around things as you go along, but it is good to have a plan for this before you go live.💻If you want to learn more about how Edeva handles time-series data with Actibump and EdevaLive, the team hostsvirtual biweekly webinars, or you can alsorequest a demo.We’d like to thank John and all the folks from Edeva for sharing their story. We are amazed to see",https://www.timescale.com/blog/how-edeva-uses-continuous-aggregations-and-iot-to-build-smarter-cities/,596,"[0.006677227094769478, -0.013564475812017918, 0.043742358684539795, -0.003465350717306137, 0.034269675612449646, 0.02092970348894596, -0.003921603783965111, -0.0031322133727371693, -0.010501062497496605, -0.0032336029689759016, 0.05330194532871246, -0.02598469890654087, -0.026390256360173225, -0.04582808539271355, 0.07537589967250824, 0.09043949842453003, 0.008190828375518322, 0.006525143049657345, -0.03316887468099594, 0.028012489899992943, 0.0022649704478681087, 0.01810527965426445, 0.018235638737678528, 0.03038790263235569, -0.022725747898221016, -0.03238672390580177, -0.017888016998767853, 0.05880594998598099, 0.011152852326631546, -0.07647670060396194, 0.02749105729162693, -0.040874481201171875, -0.0288236066699028, -0.015425698831677437, 0.0019517492037266493, 0.032241884618997574, 0.01962612383067608, 0.01126148458570242, -0.0005060425610281527, -0.008256007917225361, -0.009356808848679066, 0.03696373850107193, 0.0027664867229759693, 0.04695785418152809, -0.021567009389400482, -0.01127596851438284, -0.04032408073544502, -0.012210200540721416, 0.032212913036346436, 0.05211423709988594, -0.04800071939826012, -0.022682294249534607, -0.02175530418753624, -0.020741408690810204, -0.022696780040860176, -0.016120942309498787, 0.023420989513397217, 0.037253424525260925, -0.008045986294746399, -0.029258131980895996, -0.006213732063770294, -0.0362105593085289, 0.00505861546844244, 0.032792285084724426, 0.00034988453262485564, 0.02822975255548954, -0.03322681039571762, 0.053186070173978806, -0.04643642157316208, 0.013108222745358944, 0.03931018337607384, 0.01158013753592968, -0.0018557911971583962, -0.0051346574909985065, 0.02037930302321911, -0.024145200848579407, -0.007307291030883789, 0.04904358461499214, -0.02017652429640293, -0.035776033997535706, 0.029243648052215576, -0.000939664023462683, -0.06581631302833557, 0.019220564514398575, 0.02036481909453869, -0.03748517110943794, -0.028374595567584038, -0.01481736171990633, -0.023493411019444466, 0.02471008710563183, -0.010602451860904694, 0.05582220107316971, -0.013151675462722778, 0.019930291920900345, 0.04542252793908119, 0.04698682203888893, 0.022928526625037193, -0.01451319269835949, -0.004794278182089329, 0.010957315564155579, -0.018221154808998108, 0.0152518879622221, -0.013832434080541134, -0.028389079496264458, 0.07166793942451477, 0.005402615759521723, -0.040932416915893555, 0.01411487627774477, -0.012717149220407009, 0.020495176315307617, -0.06477344781160355, -0.020060651004314423, -0.05425790324807167, -0.0004195898654870689, 0.0017381069483235478, 0.007158827967941761, -0.01872810162603855, -0.024463854730129242, 0.008473271504044533, -0.034385547041893005, -0.04579911753535271, 0.014295929111540318, -0.03693477064371109, -0.006047163624316454, 0.005837142467498779, -0.019684061408042908, -0.005069478414952755, -0.04991263523697853, -0.0389915332198143, -0.008480513468384743, 0.030648618936538696, -0.010037567466497421, 0.08041641116142273, -0.022609874606132507, -0.02098764106631279, -0.012101569212973118, -0.06541075557470322, -0.0019028648966923356, -0.02531842328608036, -0.006242700386792421, -0.007589733228087425, 0.0035576876252889633, 0.012260896153748035, -0.006090616341680288, -0.01451319269835949, 0.022059474140405655, 0.004109898582100868, 0.01949576660990715, 0.008183586411178112, -0.043858230113983154, -0.0031919609755277634, 0.00543158408254385, -0.039397090673446655, -0.03519666567444801, 0.0637885257601738, 0.011543926782906055, 0.009697187691926956, -0.01743900589644909, -0.024362465366721153, -0.04414791613817215, -0.021567009389400482, 0.025028739124536514, 0.012029147706925869, -0.025854339823126793, -0.003228171495720744, 0.02159597910940647, -0.0827338919043541, -0.03041687048971653, -0.07172587513923645, -0.024072781205177307, -0.04203321784734726, -0.059675004333257675, 0.0002611686650197953, -0.00652152206748724, 0.041569724678993225, 0.002304802183061838, -0.022638842463493347, -0.04614673927426338, 0.02017652429640293, -0.0417725034058094, -0.04278639703989029, -0.006333226803690195, 0.002324718050658703, 0.022016020491719246, -0.02972162701189518, 0.02240709401667118, -0.04432172700762749, 0.04278639703989029, 0.012412980198860168, 0.023710675537586212, -0.05063684657216072, 0.04611777141690254, 0.0073435017839074135, 0.03988955169916153, 0.016338204964995384, -0.04110622778534889, 0.03771692141890526, 0.004051961470395327, -0.005989226512610912, 0.022073958069086075, 0.05257773399353027, 0.008784681558609009, 0.05495314672589302, -0.01882949098944664, 0.001971665071323514, 0.0045263199135661125, 0.019394375383853912, 0.023493411019444466, -0.036442309617996216, -0.028548406437039375, 0.010348978452384472, -0.019264018163084984, 0.037340328097343445, -0.00704657519236207, -0.026332318782806396, -0.010211378335952759, -0.06089167669415474, -0.0038274561520665884, 0.019104691222310066, -0.017714206129312515, -0.03374824300408363, 0.0022486757952719927, -0.0001605712022865191, -0.013528265058994293, -0.022754715755581856, 0.04440863057971001, 0.03122798725962639, -0.018351512029767036, 0.012941653840243816, 0.013260306790471077, 0.014918751083314419, -0.049014613032341, -0.01878603920340538, -0.0225664209574461, -0.002799076260998845, 0.04101932421326637, 0.02036481909453869, -0.021219387650489807, 0.0077490597032010555, -0.018525322899222374, -0.00485945725813508, 0.003099624067544937, -0.006217353045940399, 0.03180735558271408, 3.61822712875437e-05, 0.024275559931993484, -0.03261847421526909, -0.042409807443618774, 0.01234780065715313, 0.04933326691389084, -0.006340469233691692, -0.048811834305524826, 0.00908885058015585, -0.04571221023797989, -0.011703252792358398, -0.03739826753735542, -0.03736929967999458, 0.03273434564471245, 0.02175530418753624, -0.0037333087529987097, 0.022609874606132507, -0.019119175150990486, -0.0003023581812158227, 0.01193500030785799, -0.03763001412153244, 0.006999501492828131, 0.06164485961198807, -0.0363554023206234, 0.025144612416625023, 0.012434706091880798, 0.03345855697989464, 0.016917573288083076, 0.0238120649009943, -0.02681029960513115, -0.02037930302321911, 0.0003831530048046261, 0.006673606112599373, -0.01736658439040184, -1.606843579793349e-05, -0.053099166601896286, -0.00225410726852715, -0.05304122716188431, 0.004939120262861252, 0.0026415602769702673, 0.004725478123873472, 0.01809079572558403, -0.0010528219863772392, 0.054692428559064865, 0.021914631128311157, -0.024927349761128426, -0.00043724250281229615, 0.00689449068158865, 0.00389263522811234, -0.044698316603899, 0.04046892374753952, 0.004204045981168747, 0.005742995068430901, -0.004414067137986422, -0.012478158809244633, -0.026274383068084717, -0.00021500019647646695, 0.012565064243972301, 0.0005780110950581729, -0.0362105593085289, 0.004663920029997826, 0.0682496652007103, -0.014071423560380936, -0.0036047613248229027, -0.022682294249534607, -0.0021056439727544785, -0.006811206229031086, -0.014759424142539501, 0.040237173438072205, -0.012369527481496334, -0.03258950263261795, -0.027331730350852013, 0.0855148583650589, -0.018308058381080627, -0.010211378335952759, -0.044640377163887024, -0.02185669355094433, -0.06882902979850769, -0.046088799834251404, 0.0448431596159935, 0.025579139590263367, -0.04371338710188866, 0.03027202934026718, 0.0180328581482172, 0.022001536563038826, -0.02607160434126854, 0.005326573271304369, 0.015483635477721691, 0.015396730042994022, 0.04125107079744339, 0.014904266223311424, -0.045364588499069214, 0.024130716919898987, -0.03311093524098396, -0.00940750353038311, 0.05263566970825195, -0.02165391482412815, -0.02688271924853325, -0.0505499430000782, 0.010928346775472164, 0.04116416350007057, 0.01746797375380993, -0.020466208457946777, -0.00011338431795593351, 0.030243059620261192, -0.0031829082872718573, -0.04185940697789192, -0.028026973828673363, 0.005561942234635353, 0.007155206520110369, 0.052519798278808594, -0.004432172514498234, -0.004573393613100052, -0.0252749715000391, -0.03849906846880913, -0.0029710764065384865, -0.02104557678103447, -0.018641196191310883, 0.0316045768558979, -0.008480513468384743, -0.021219387650489807, 0.03172045201063156, -0.038701847195625305, 0.023710675537586212, -0.02540532872080803, -0.013477570377290249, 0.044582441449165344, -0.031401798129081726, -0.025723982602357864, 0.02171185240149498, -0.04788484424352646, -0.017047932371497154, 0.056778158992528915, 0.06002262607216835, 0.01588919386267662, 0.07960529625415802, 0.04148281738162041, 0.00012232379231136292, 0.01444077119231224, -0.040208205580711365, 0.06772822886705399, 0.04834834113717079, -0.00721314363181591, 0.050868596881628036, -0.04043995216488838, -0.02685375139117241, 0.04779794067144394, -0.010971799492835999, -0.015787804499268532, -0.03241569176316261, -0.019350923597812653, 0.020060651004314423, 0.01965509168803692, 0.0130575280636549, 0.05078168958425522, -0.006666364148259163, 0.01813424937427044, -0.003019960829988122, -0.0388466902077198, -0.025695012882351875, 0.005924047902226448, 0.033603399991989136, -0.002639749785885215, 0.00616303738206625, -0.020422756671905518, -0.025695012882351875, -0.04128003865480423, -0.04226496443152428, 0.02387000061571598, -0.017612816765904427, 0.030822429805994034, -0.018279090523719788, -0.05559045076370239, 0.098318912088871, 0.01800389029085636, 0.06616393476724625, -0.041714563965797424, -0.026636488735675812, -0.03340062126517296, 0.002889602677896619, -0.03739826753735542, 0.02037930302321911, 0.03994749113917351, 0.003722445573657751, -0.021364230662584305, 0.007647670339792967, 0.0013108223211020231, 0.028664279729127884, 0.030648618936538696, 0.013274791650474072, -0.02469560131430626, 0.027230340987443924, 0.01948128081858158, -0.04568324238061905, 0.06390439718961716, -0.021204903721809387, -0.03600778058171272, -0.008603628724813461, 0.0014366540126502514, 0.03710858151316643, -0.0408165417611599, -0.04655229672789574, -0.029200196266174316, -0.06390439718961716, -0.006199248135089874, 0.01053727325052023, 0.018308058381080627, 0.025521202012896538, -0.04154075309634209, 0.03244466334581375, 0.0015000224811956286, -0.04368441924452782, 0.03670302405953407, -0.022754715755581856, 0.046639200299978256, -0.00037704245187342167, -0.029113290831446648, -0.006257184781134129, -0.0345303900539875, 0.03548634797334671, 0.003994024824351072, -0.02452179230749607, 0.06668537110090256, -9.873035742202774e-05, 0.01087765209376812, -0.005768342409282923, -0.008444302715361118, 0.03247363120317459, -6.4464697970834095e-06, 0.02599918283522129, 0.005924047902226448, 0.013629655353724957, -0.0007663060096092522, -0.0016774542164057493, -0.01085592620074749, -0.02462318167090416, -0.018264606595039368, -0.005456931423395872, -0.013282033614814281, 0.06697504967451096, 0.03907843679189682, 0.0476241298019886, 0.0029040868394076824, -0.011000768281519413, -0.030156154185533524, 0.006144932005554438, -0.021567009389400482, -0.005467794835567474, 0.03305299952626228, -0.01807631179690361, -0.04226496443152428, 0.0003793056239373982, -0.06790204346179962, -0.019061239436268806, 0.01306477002799511, 0.006427374668419361, -0.0015914541436359286, 0.021219387650489807, 0.016946543008089066, 0.04403204098343849, 0.005196215584874153, 0.014802876859903336, -0.01597609929740429, -0.019292986020445824, 0.024434886872768402, -0.019379891455173492, -0.00022337389236781746, -0.03707961365580559, 0.021943598985671997, 0.0406717024743557, -0.016454078257083893, 0.024246592074632645, -0.00972615648061037, 0.009566830471158028, -0.009494408965110779, 0.006134069059044123, -0.04443759843707085, -0.024130716919898987, -0.03232878819108009, 0.006304258480668068, 0.0005924953147768974, 0.004356130491942167, -0.03250259906053543, -0.018308058381080627, -0.024898381903767586, -0.02471008710563183, 0.016845151782035828, -0.04565427452325821, 0.012702664360404015, 0.003950572106987238, -0.05002851039171219, -0.00015423435252159834, -0.024927349761128426, -0.020437240600585938, -0.020017197355628014, 0.004251119680702686, 0.01580228842794895, 0.03751413896679878, 0.02237812615931034, 0.03597881272435188, 0.00837188120931387, -0.012811296619474888, -0.0023138548713177443, -0.011674284934997559, 0.0029855608008801937, 0.018438417464494705, 0.025448782369494438, -0.0034363821614533663, 0.03490697965025902, 0.01652649976313114, 0.027954552322626114, 0.046639200299978256, -0.0034906980581581593, 0.015309824608266354, 0.010812473483383656, -0.017888016998767853, 0.0016892226412892342, -0.014469739980995655, 0.004229393322020769, -0.008733986876904964, -0.011428052559494972, 0.02818630076944828, 0.013854159973561764, -0.03841216117143631, -0.07097269594669342, 0.020509662106633186, -0.002916760742664337, -0.017844563350081444, 0.022580904886126518, -0.00413524592295289, -0.0048775626346468925, 0.020524146035313606, -0.013405149802565575, -0.023565832525491714, -0.009161272086203098, -0.01943782903254032, -0.03641333803534508, -0.014071423560380936, -0.027042046189308167, 0.009277145378291607, -0.048811834305524826, 0.013202370144426823, 0.02457972802221775, 0.018351512029767036, 0.02740415185689926, -0.016338204964995384, -0.011044220998883247, -0.013528265058994293, -0.008538450114428997, -0.0031883397605270147, 0.027013078331947327, 0.013890370726585388, 0.019307469949126244, -0.01885846070945263, -0.024811476469039917, 0.005978363566100597, 0.027693836018443108, -0.005275878589600325, -0.02749105729162693, -0.02094418741762638, -0.03458832576870918, 0.03125695511698723, -0.012384011410176754, 0.023768611252307892, 0.03267640992999077, -0.004041098523885012, 0.014194539748132229, 0.008523966185748577, -0.009110577404499054, -0.04119313508272171, 0.01160186342895031, 0.0063730585388839245, -0.022971980273723602, -0.007057438138872385, 0.023580316454172134, -0.028707731515169144, -0.022769199684262276, -0.014042455703020096, -0.023638254031538963, -0.0034400031436234713, 0.01297062262892723, 0.030735524371266365, -0.014339381828904152, -0.04840627685189247, -0.005366405006498098, 0.010689357295632362, -0.007180554326623678, 0.004805141128599644, 0.03105417639017105, 0.008161860518157482, 0.024072781205177307, 0.010906620882451534, 0.016164394095540047, 0.0042800880037248135, -0.01298510655760765, 0.003812971990555525, 0.02321821078658104, 0.02812836319208145, -0.016816183924674988, -0.007727333344519138, 0.030909333378076553, -0.029982343316078186, -0.028664279729127884, 0.019046755507588387, -0.010073778219521046, -0.0031720451079308987, -0.023551348596811295, -0.012391253374516964, 0.06772822886705399, 0.03032996505498886, 0.019162628799676895, -0.01955370232462883, -0.03542841225862503, -0.034385547041893005, 0.026404740288853645, 0.013760012574493885, -0.027346214279532433, 0.0066156694665551186, -0.007383333053439856, -2.9675686164409854e-05, -0.02681029960513115, 0.048174530267715454, 0.03334268555045128, 0.002549223368987441, 0.01596161536872387, 0.021567009389400482, -0.01664237305521965, 0.023044399917125702, 0.012079843319952488, 0.04713166505098343, 0.045190777629613876, -0.012854749336838722, 0.016251299530267715, -0.02324718050658703, 0.007336259353905916, 0.03476213663816452, -0.021987052634358406, 0.0027592447586357594, -0.05301225930452347, 0.005844384431838989, -0.006152173969894648, 0.007430406752973795, 0.0031086765229701996, -0.0011696011060848832, 0.028693247586488724, 0.020480692386627197, 0.01583125628530979, -0.00979857798665762, 0.025086676701903343, -0.016120942309498787, -0.013636897318065166, -0.01593264564871788, 0.004616846330463886, 0.02737518399953842, -0.005764721427112818, -0.01959715597331524, -0.006633774843066931, 0.001638527843169868, -0.04472728446125984, -0.03974471241235733, -0.006539626978337765, 0.009617525152862072, 0.024449370801448822, -0.023681705817580223, 0.014875298365950584, -0.024319011718034744, -0.028751185163855553, -0.012079843319952488, -0.036587148904800415, 0.00652152206748724, -0.016309237107634544, 0.010088262148201466, -0.04333679750561714, 0.02106006257236004, -0.0073471227660775185, -0.024101749062538147, -0.043134018778800964, 0.037919700145721436, -0.020857281982898712, -0.04180147126317024, 0.039483994245529175, 0.002417054958641529, 0.02762141451239586, 0.03690580278635025, 0.013108222745358944, -0.035138726234436035, 0.01581677235662937, 0.01966957561671734, 0.04695785418152809, 0.013245822861790657, -0.004511835984885693, 0.003700719214975834, -0.022262252867221832, -0.003143076552078128, -0.03858597204089165, 0.01084868423640728, -0.014071423560380936, 0.010964557528495789, -0.03476213663816452, -0.019336439669132233, 0.03667405620217323, -0.0534757561981678, 0.00432716216892004, 0.028678763657808304, 0.005210699513554573, -0.011008010245859623, -0.013593444600701332, 0.014020728878676891, 0.0007586112478747964, -0.00900194514542818, 0.0056452262215316296, -0.011464263312518597, -0.001638527843169868, 0.003957814071327448, -0.0006526953657157719, 0.01894536428153515, 0.012869233265519142, 0.0017987595638260245, -0.027679352089762688, 0.017757657915353775, -0.002192549407482147, 0.007079164497554302, -0.011232515797019005, 0.017931468784809113, 0.00450097257271409, -0.020582081750035286, -0.0419173464179039, -0.0167147945612669, -0.009914451278746128, -0.01813424937427044, 0.05738649517297745, -0.01523740403354168, -0.005659710615873337, 0.02604263462126255, -0.00527225760743022, 0.007698365021497011, 0.008487755432724953, -0.004323540721088648, -0.017554879188537598, -0.04061376303434372, -0.008965734392404556, 0.01658443734049797, 0.03114108182489872, -0.003697098232805729, -0.04119313508272171, -0.027172405272722244, -0.020495176315307617, -0.04029511287808418, -0.018322544172406197, -0.009248177520930767, 0.03954193368554115, -0.038643911480903625, 0.03545738011598587, -0.10260624438524246, -0.03180735558271408, 0.018481869250535965, -0.012811296619474888, 0.010826957412064075, -0.024840444326400757, 0.007430406752973795, 0.0027664867229759693, 0.0491594560444355, -0.02896844781935215, 0.003648214042186737, -0.06442582607269287, -0.020726924762129784, -0.019336439669132233, -0.03470420092344284, -0.004316298756748438, -0.015367762185633183, 0.0288960263133049, 0.020625535398721695, 0.019046755507588387, -0.012094327248632908, -0.007325396407395601, -0.02391345426440239, 0.04626261070370674, 0.013680350035429, -0.005109310150146484, -0.02746208943426609, 0.04101932421326637, 0.027882130816578865, 0.002000633394345641, 0.016497531905770302, -0.013549991883337498, 0.004406825173646212, 0.011500474065542221, -0.0039107403717935085, 0.01654098369181156, -0.019046755507588387, -0.00668084854260087, 0.003277055686339736, -0.012116053141653538, -0.024883897975087166, -0.03783279284834862, 0.024999771267175674, -0.01370207592844963, 0.03861493989825249, -0.014027970843017101, -0.027157919481396675, 0.04278639703989029, -0.03742723539471626, 0.0031249714083969593, 0.007227628026157618, -0.000915221928153187, -0.006919838022440672, -0.008096680976450443, 0.006803964264690876, 0.03415380045771599, -0.03119901940226555, -0.006905353628098965, 0.036471277475357056, -0.0194233451038599, -0.017916984856128693, 0.023565832525491714, 0.025159098207950592, -0.051795586943626404, -0.013173402287065983, 6.302900874288753e-05, -0.0024514549877494574, 0.04339473694562912, -0.010312767699360847, 0.006105100270360708, 0.013108222745358944, 0.019292986020445824, 0.010052051395177841, -0.00971167255192995, 0.01596161536872387, 0.007397817447781563, 0.0015787804732099175, -0.005026025697588921, -0.013521023094654083, -0.029982343316078186, 0.008444302715361118, -0.01943782903254032, -0.06465757638216019, 0.00827049184590578, -0.004287330433726311, -0.03108314424753189, 0.01875706948339939, -0.013195128180086613, 0.03681889921426773, 0.020509662106633186, 0.02035033516585827, -0.010102746076881886, -0.016367172822356224, 0.022783685475587845, 0.010826957412064075, 0.007560764905065298, 0.046726107597351074, -0.027071014046669006, 0.02174082025885582, -0.01727967895567417, 0.04559633880853653, 0.0042728460393846035, 0.02906983718276024, 0.011377357877790928, -0.03748517110943794, -0.024970801547169685, 0.014889782294631004, -0.005710405297577381, -0.0027049288619309664, -0.0019191596657037735, -0.008234281092882156, 0.01337618101388216, 0.012767843902111053, 0.04061376303434372, -0.00019202912517357618, 0.022914042696356773, -0.012297105975449085, 0.02391345426440239, -0.020625535398721695, -0.029200196266174316, 0.033516496419906616, -0.003990403842180967, -0.05735752731561661, 0.02530393935739994, -0.015599509701132774, 0.011739463545382023, 0.017685238271951675, -0.01591816172003746, -8.967771282186732e-05, -0.005518489517271519, 0.019930291920900345, 0.0704512670636177, 0.0056090159341692924, 0.05260670185089111, -0.021958082914352417, -0.010218620300292969, -0.003099624067544937, -0.006449101027101278, 0.011152852326631546, 0.02027791365981102, 0.0034707821905612946, 0.021567009389400482, 0.02541981264948845, -0.026593035086989403, 0.01336893904954195, 0.021581493318080902, -0.014947718940675259, -0.01807631179690361, -0.00865432433784008, 0.02977956458926201, 0.010370704345405102, -0.023565832525491714, -0.03421173617243767, 0.038643911480903625, 0.0013044854858890176, 0.05787895992398262, -0.03696373850107193, -0.02686823531985283, 0.01804734393954277, -0.00615579541772604, 0.022146379575133324, 0.04542252793908119, 0.03693477064371109, -0.01816321723163128, 0.023029915988445282, -0.050897564738988876, -0.04495903104543686, -0.0057610999792814255, -0.02107454650104046, 0.031546641141176224, -0.010711084119975567, 0.03331371396780014, 0.03534150868654251, 0.03377721086144447, 0.049014613032341, 0.04713166505098343, 0.01191327441483736, -0.004928257316350937, -0.0027357079088687897, 0.024275559931993484, -0.05767618119716644, -0.02831665799021721, 0.009936178103089333, 0.007227628026157618, 0.016149910166859627, -0.001297243288718164, -0.016772732138633728, 0.00909609254449606, 0.0014701487962156534, 0.03169148415327072, 0.0033784452825784683, 0.011044220998883247, 0.04290227219462395, 0.05353369191288948, -0.02311682142317295, 0.021914631128311157, -0.002219707239419222, 0.007864933460950851, -0.024652149528265, 0.008538450114428997, -0.023507894948124886, 0.027027562260627747, -0.007437649182975292, 0.006811206229031086, -0.016236815601587296, 0.028591858223080635, -0.009306114166975021, -0.0033820662647485733, -0.008379124104976654, 0.02019100822508335, -0.01486081350594759, -0.0025021496694535017, 0.01658443734049797, 0.004435793496668339, -0.04924636334180832, 0.023305116221308708, 0.01307925395667553, -0.002907708054408431, -0.008451544679701328, -0.03244466334581375, -0.032270852476358414, -0.03594984486699104, -0.02101660892367363, 0.03777485713362694, -0.01516498252749443, 0.014730456285178661, -0.030040280893445015, -0.017801111564040184, -0.01594713144004345, 0.019061239436268806, 0.008386366069316864, 0.046755075454711914, -0.01307925395667553, 0.011123884469270706, 0.011949485167860985, -0.00523242587223649, 0.012021905742585659, 0.008820892311632633, 0.009277145378291607, 0.012108811177313328, -0.008299460634589195, -0.01654098369181156, -0.01594713144004345, -0.02896844781935215, -0.035833969712257385, -0.015049109235405922, 0.052461858838796616, 0.017685238271951675, 0.02310233749449253, 0.0026053497567772865, 0.01877155527472496, 0.005688678938895464, 0.012072600424289703, 0.007459375541657209, 0.024883897975087166, 0.01593264564871788, 0.003251708345487714, 0.00982754584401846, -0.017076900228857994, 0.002791834296658635, 0.00792287103831768, -0.004254740662872791, 0.011312179267406464, 0.024898381903767586, -0.022957494482398033, -0.0041207619942724705, -0.011058704927563667, 0.022595388814806938, 0.011015252210199833, 0.025695012882351875, -0.0003206897818017751, 0.03852803632616997, -0.0014113065553829074, -0.03609468787908554, -0.030590681359171867, 0.042438775300979614, -0.04692888632416725, -0.01584574207663536, -0.011218031868338585, -0.016135426238179207, -0.0006241795490495861, 0.00617027934640646, -0.030764492228627205, -0.02017652429640293, 0.027925584465265274, -0.0021346125286072493, 0.019104691222310066, -0.0077418177388608456, 0.011724979616701603, -0.02817181684076786, -0.005257773213088512, 0.031459733843803406, -0.014006244949996471, 0.03316887468099594, -0.012536096386611462, 0.014781150966882706, -0.008045986294746399, 0.005080341827124357, 0.00900194514542818, -0.02972162701189518, 0.010320009663701057, -0.013245822861790657, 0.004978951998054981, 0.03531253710389137, 0.03566015884280205, -0.008074955083429813, 0.015222919173538685, -4.268885459168814e-05, -0.006307879462838173, 0.01444077119231224, -0.012355043552815914, 0.04994160309433937, 0.021190419793128967, 0.03493594750761986, -0.0041243829764425755, 0.00040035301935859025, 0.017018962651491165, 0.05269360914826393, 0.002295749494805932, 0.03316887468099594, 0.0022016020957380533, 0.02683926746249199, -0.0006608427502214909, 0.03238672390580177, 0.006304258480668068, 0.0042800880037248135, 0.016975510865449905, -0.007539038546383381, -0.016946543008089066, 0.01381070725619793, -0.015642961487174034, 0.02453627623617649, -0.02184220962226391, 0.030069248750805855, -0.016888605430722237, -0.01192051637917757, -0.003228171495720744, -0.021349746733903885, 0.0004508214769884944, 0.003613814013078809, 0.019336439669132233, 0.005891458131372929, 0.005315710324794054, -0.021320777013897896, 0.0008654323755763471, -0.022812653332948685, 0.04475625231862068, -0.0061087217181921005, -0.01583125628530979, 0.0033693925943225622, 0.06141310930252075, 0.0071298591792583466, -0.03986058384180069, 4.011451164842583e-05, -0.026274383068084717, -0.020596567541360855, 0.014295929111540318, 0.021204903721809387, -0.0318942628800869, 0.010602451860904694, -0.0217263363301754, -0.01379622332751751, -0.031343862414360046, 0.0023518758825957775, -0.002844339469447732, -0.02178427390754223, -0.016367172822356224, 0.009914451278746128, 0.024912865832448006, -0.011811885051429272, -0.004736341070383787, 0.01583125628530979, 1.2928301657666452e-05, -0.010298283770680428, -0.008806408382952213, -0.004609604366123676, 0.019756481051445007, -0.03739826753735542, -0.021480103954672813, 0.004797899164259434, -0.01943782903254032, -0.016236815601587296, 0.025130128487944603, 0.04579911753535271, -0.013941065408289433, 0.00396143551915884, -0.023478927090764046, 0.016830667853355408, 0.027824195101857185, 0.007995291613042355, -0.000769474427215755, -0.020828314125537872, 0.00029126869048923254, -0.0058624898083508015, 0.01085592620074749, 0.03736929967999458, 0.002703118370845914, -0.0037369297351688147, -0.02250848338007927, -0.025564655661582947, -0.018394963815808296, 0.012108811177313328, 0.013144433498382568, -0.008951250463724136, -0.02471008710563183, -0.002670528832823038, 0.021262841299176216, 0.037166520953178406, 0.011254241690039635, 0.02017652429640293, -0.04180147126317024, 0.016178878024220467, -0.030764492228627205, 0.010052051395177841, -0.017149321734905243, -0.05139002576470375, 0.02892499603331089, -0.029243648052215576, 0.009921693243086338, -0.021378714591264725, 0.014013486914336681, 0.02459421195089817, 0.032154977321624756, -0.02163943089544773, 0.024362465366721153, 0.011630832217633724, 0.008089439012110233, 0.010399673134088516, 0.027911100536584854, -0.037977635860443115, -0.023420989513397217, 0.007122617214918137, -0.032212913036346436, 0.03626849874854088, -0.016323721036314964, 0.012775085866451263, 0.02036481909453869, 0.00907436665147543, 0.0009695377666503191, 0.000328610825818032, 0.010348978452384472, -0.01442628726363182, 0.012847506441175938, 0.006825690623372793, 0.011884305626153946, -0.010841441340744495, -0.01662788912653923, 0.006742406170815229, -0.008516724221408367, -0.027940068393945694, 0.011044220998883247, 0.025477750226855278, -0.005971121601760387, 0.020104102790355682, 0.009364050813019276, -0.0027393288910388947, -0.009552345611155033, -0.04924636334180832, -0.0017725069774314761, -0.014578371308743954, -0.014665276743471622, 0.019828902557492256, 0.022812653332948685, 0.00941474549472332, 0.01959715597331524, 0.011674284934997559, -0.013912097550928593, -0.01736658439040184, -0.030011313036084175, -0.013586202636361122, 0.01816321723163128, 0.0009351377375423908, -0.013941065408289433, 0.013332728296518326, 0.02666545659303665, 0.03618159145116806, 0.0167147945612669, -0.006485311314463615, -0.010522788390517235, -0.007057438138872385, -0.007423164788633585, 0.012731633149087429, 0.0406717024743557, 0.014476981945335865, -0.0004965373082086444, 0.015309824608266354, -0.024652149528265, -0.0047797937877476215, 0.023478927090764046, 0.012861991301178932, -0.04348164051771164, 0.00867605023086071, -0.01661340519785881, -0.021219387650489807, 0.009697187691926956, 0.0004300003929529339, 0.007734575774520636, 0.019264018163084984, 0.022638842463493347, -0.009487167000770569, 0.007147964555770159, 0.00381659297272563, 0.047479286789894104, -0.01940886117517948, 0.02744760550558567, 0.011790158227086067, 0.03676095977425575, -0.011384599842131138, 0.020668987184762955, 0.00308513967320323, -0.004453898873180151, 0.0008894219063222408, -0.019336439669132233, 0.0011849906295537949, 0.029258131980895996, -0.027969036251306534, 0.005981984548270702, -0.007582491263747215, -0.011102157644927502, 0.022276736795902252, -0.004443035926669836, 0.002033222932368517, 0.023334085941314697, -0.01583125628530979, 0.017525911331176758, -0.002304802183061838, -0.007300049066543579, 0.0188005231320858, -0.010696599259972572, 0.03395102173089981, -0.010291040875017643, 0.0017064226558431983, 0.005127415526658297, 0.014571129344403744, 0.016034036874771118, 0.01409315038472414, -0.020611051470041275, -0.0012257274938747287, -0.012557822279632092, -0.010595209896564484, 0.0063621955923736095, -0.009994114749133587, 0.021335262805223465, 0.047479286789894104, 0.01412211824208498, 0.018583260476589203, 0.012282622046768665, 0.005076720379292965, -0.005196215584874153, 0.025579139590263367, -0.017859049141407013, -0.030851397663354874, -0.048724930733442307, 2.81763423117809e-05, 0.010066535323858261, 0.024854928255081177, -0.039483994245529175, 0.012724391184747219, 0.0012854748638346791, -0.02182772569358349, -0.019061239436268806, 0.002038654638454318, -0.02389897033572197, 0.03253156691789627, 0.01881500706076622, 0.00971891451627016, 0.004403204191476107, 0.04072963818907738, 0.00453356234356761, -0.03183632344007492, 0.022146379575133324, -0.0003729687596205622, 0.023392021656036377, -0.020495176315307617, 0.004656678065657616, 0.01055899914354086, 0.0548662394285202, 0.008770197629928589, 0.016946543008089066, -0.016106456518173218, -0.02176978811621666, -0.018438417464494705, 0.006192005705088377, 0.010008598677814007, -0.009168514050543308, -0.0020802966319024563, -0.0062608057633042336, -0.021407682448625565, 0.024941833689808846, -0.015309824608266354, -0.006438237614929676, -0.0006938848528079689, 0.020813830196857452, 0.0004257003893144429, 0.02612954005599022, 0.025159098207950592, -0.000196442284504883, 0.02599918283522129, -0.003295161062851548, -0.010696599259972572, -0.0520852692425251, 0.040961384773254395, 0.008024260401725769, -0.00121486431453377, -0.02392793819308281, 0.03632643446326256, 0.013006833381950855, 0.0077418177388608456, 0.009349566884338856, 0.02614402398467064, -0.03968677297234535, -0.008784681558609009, 0.033661335706710815, -0.04119313508272171, -0.0025962970685213804, -0.018351512029767036, 0.012485400773584843, 0.0006952427793294191, -0.03786176070570946, 0.05191145837306976, -0.006923459004610777, 0.0196406077593565, 0.024217622354626656, 0.012485400773584843, -0.02087176777422428, -0.00043611094588413835, 0.027042046189308167, 0.0022559179924428463, 0.020697956904768944, 3.440003274590708e-05, -0.014918751083314419, -0.025637077167630196, -0.02898293174803257, -0.011326663196086884, 0.0013615171192213893, -0.018308058381080627, -0.024999771267175674, 0.0027664867229759693, -0.006159416399896145, 0.007097269874066114, 0.030243059620261192, 0.030735524371266365, -0.013028559274971485, -0.007676638662815094, -0.007376091089099646, 0.0007323586032725871, 0.02016204036772251, 0.029982343316078186, 0.01120354700833559, -0.002250486286357045, -0.0034979400224983692, 0.006753269582986832, -0.008531208150088787, -0.019959261640906334, 0.02182772569358349, 0.011645316146314144, 0.004721857141703367, -0.0013026748783886433, -0.0016213278286159039, -0.012695422396063805, 0.011094915680587292, -0.004924636334180832, 0.009211966767907143, -0.017496943473815918, 0.012550580315291882, -0.006963290739804506, 0.027766257524490356, 0.019264018163084984, 0.012927169911563396, 0.022754715755581856, 0.015034624375402927, 0.0194233451038599, 0.014650792814791203, -0.014687003567814827, 0.04582808539271355, 0.0014547592727467418, 0.0037695192731916904, -0.023565832525491714, 0.01442628726363182, -0.02316027507185936, 0.03490697965025902, 0.008712260983884335, 0.014324897900223732, -0.03322681039571762, 0.010971799492835999, 0.00970443058758974, 0.03455935791134834, 0.0036898560356348753, 0.0013008643873035908, -0.0101317148655653, -0.010711084119975567, 0.014708729460835457, -0.04110622778534889, -0.010015840642154217, -0.012289864011108875, 0.023449959233403206, 0.023768611252307892, 0.03389308601617813, 0.024058295413851738, 0.02094418741762638, -0.017916984856128693, 0.031401798129081726, -0.015729866921901703, 0.0025130128487944603, 0.010377946309745312, 0.002869686810299754, 0.026288866996765137, 0.019959261640906334, -0.017815595492720604, 0.02610057219862938, 0.013303759507834911, 0.01742452196776867, 0.007452133111655712, 0.0003197845071554184, -0.020813830196857452, 0.026926172897219658, 0.008379124104976654, -0.011254241690039635, -0.02185669355094433, -0.0422070287168026, -0.005848005414009094, 0.01444077119231224, -0.018597744405269623, -0.03108314424753189, -0.022189831361174583, -0.03539944440126419, 0.0006459058495238423, 0.03893359377980232, -0.013492055237293243, 0.02524600178003311, 0.012818538583815098, -0.002500339178368449, 0.026201961562037468, 0.00361019279807806, 0.0025926760863512754, -0.000923369312658906, 0.016772732138633728, 0.0231892429292202, 0.0035703612957149744]" -How Edeva Uses Continuous Aggregations and IoT to Build Smarter Cities,"how their work truly impacts the way people live and enjoy their city with a little help from time-series data.🙌We’re always keen to feature new community projects and stories on our blog. If you have a story or project you’d like to share, reach out on Slack (@Ana Tavares), and we’ll go from there.The open-source relational database for time-series and analytics.Try Timescale for free",https://www.timescale.com/blog/how-edeva-uses-continuous-aggregations-and-iot-to-build-smarter-cities/,84,"[0.018626686185598373, -0.01976792700588703, 0.03896523267030716, 0.01830061711370945, 0.029536407440900803, -0.015270892530679703, -0.021534133702516556, 0.002399663208052516, -0.027607165277004242, -0.024645373225212097, -0.01269630715250969, -0.022403649985790253, -0.011786031536757946, -0.044780127704143524, 0.05437198653817177, 0.013667721301317215, -0.02324599400162697, -0.0023826805409044027, 0.026547441259026527, 0.057170744985342026, 0.018259858712553978, 0.016466479748487473, 0.009883963502943516, 0.01092330738902092, -0.009374480694532394, -0.01341637596487999, -0.03939998894929886, 0.08233239501714706, 0.0370359905064106, -0.035813234746456146, -0.018123995512723923, -0.0469810925424099, -0.023572063073515892, 0.039590198546648026, 0.023680754005908966, 0.024156270548701286, 0.016208341345191002, -0.042144402861595154, 0.07570232450962067, 0.010739893652498722, -0.012098514474928379, 0.003821119898930192, 0.026683304458856583, 0.02948206290602684, -0.021004270762205124, -0.03276992216706276, -0.025093717500567436, -0.0031927579548209906, 0.04779626429080963, 0.08341929316520691, 0.001177754020318389, -0.02256668359041214, -0.03877502679824829, -0.06874619424343109, 0.008518549613654613, -0.01570565067231655, 0.007411274127662182, 0.013504686765372753, 0.002248516771942377, -0.045269232243299484, -0.010936894454061985, -0.02498502843081951, 0.047144126147031784, 0.04507902264595032, -0.056899022310972214, 0.011799617670476437, -0.02446875348687172, 0.00948316976428032, -0.041030336171388626, 0.017200134694576263, 0.06151833012700081, 0.027471303939819336, 0.027036545798182487, -0.019863029941916466, -0.006575722713023424, -0.08059336245059967, -0.05200798809528351, 0.04545943811535835, -0.011867549270391464, -0.04747019708156586, 0.004670257680118084, 0.022865580394864082, -0.03665557876229286, 0.054779574275016785, -0.008151722140610218, -0.04687240347266197, -0.026737648993730545, -0.021235236898064613, -0.00737051572650671, 0.04021516442298889, 0.01589585840702057, 0.042198747396469116, 0.005719791632145643, 0.03586757928133011, 0.04540509358048439, 0.0518721267580986, -0.014564410783350468, -0.006623274181038141, 0.02093634009361267, 0.030596131458878517, 0.03306882083415985, -0.03168302774429321, -0.005828481167554855, -0.020732546225190163, -0.0029023527167737484, -0.02020268514752388, 0.03013419918715954, -0.01367451436817646, 0.04521488770842552, -0.011011618189513683, -0.07532191276550293, -0.010250790975987911, -0.032688405364751816, -0.006402498576790094, 0.03209061175584793, 0.01463234145194292, -0.016996340826153755, -0.050296127796173096, 0.035079579800367355, -0.051464539021253586, -0.028612544760107994, -0.007812066935002804, -0.020759718492627144, 0.03404702618718147, 0.010128514841198921, -0.03866633400321007, -0.024061167612671852, -0.013681307435035706, -0.027906062081456184, 0.001335693639703095, 0.01032551471143961, -0.020732546225190163, 0.0341557152569294, -0.005254464223980904, -0.02563716657459736, -0.017227306962013245, -0.06668108701705933, -0.03233516588807106, -0.023884546011686325, -0.040514059364795685, 0.03654688969254494, -0.040323853492736816, -0.017159374430775642, -0.007479205261915922, -0.02258026972413063, -0.04230744019150734, 0.01667027175426483, 0.0413564033806324, -0.007689791265875101, -0.0021890769712626934, 0.024414408951997757, 0.009612238965928555, -0.0451061949133873, 0.03344923257827759, 0.03211778402328491, -0.015596961602568626, 0.04298674687743187, 0.03801419958472252, -0.036492541432380676, -0.019129374995827675, 0.04915488511323929, 0.022267788648605347, -0.013579410500824451, -0.013389203697443008, -0.04749736934900284, 0.007139550056308508, -0.06537681072950363, -0.03820440545678139, -0.06450729817152023, -0.0041132234036922455, -0.04116619750857353, -0.04630178213119507, 0.011487135663628578, 0.07597405463457108, 0.042905230075120926, -0.002367395907640457, 0.0045615676790475845, -0.04165530204772949, -0.004446085076779127, -0.020528754219412804, -0.04825819656252861, -0.026194199919700623, -0.04844840243458748, -0.03450895845890045, -0.025827372446656227, 0.034807853400707245, -0.061246607452631, 0.042878057807683945, 0.01804247871041298, 0.045758333057165146, -0.07162646949291229, 0.03638385236263275, 0.026968615129590034, 0.0438019223511219, 0.024387234821915627, -0.004221912939101458, 0.010896135121583939, 0.05138302221894264, -0.03662840649485588, 0.03467199206352234, -0.0031638871878385544, 0.03543281927704811, 0.014537237584590912, -0.029373371973633766, 0.017933789640665054, -0.016452893614768982, 0.009333722293376923, 0.00032521976390853524, -0.036247991025447845, -0.033585093915462494, -0.009455997496843338, -3.383283183211461e-05, 0.018884822726249695, -0.0004154406487941742, -0.03548716381192207, -0.021737925708293915, -0.001673650462180376, 0.008409860543906689, 0.012404204346239567, 0.015053513459861279, 0.014645927585661411, 0.025474131107330322, 0.007818860001862049, -0.025474131107330322, 0.02088199555873871, 0.03263406082987785, 0.015135031193494797, -0.03279709443449974, 0.027444131672382355, -0.012424583546817303, 0.04448123276233673, -0.0407857820391655, -0.006127377972006798, -0.023123718798160553, 0.023857373744249344, 0.0033812664914876223, -0.011120308190584183, -0.03521544113755226, -0.002888766583055258, -0.006171532906591892, 0.01281858328729868, -0.013137859292328358, 0.02781095914542675, 0.025745855644345284, 0.0030874647200107574, 0.02778378687798977, -0.040758609771728516, -0.030541785061359406, 0.01059723924845457, 0.08086508512496948, 0.030107026919722557, -0.008600067347288132, 0.020814064890146255, -0.007336549926549196, 0.018721789121627808, -0.03445461392402649, -0.012879720889031887, 0.015420340932905674, 0.026452338322997093, -0.015257306396961212, 0.05437198653817177, -0.042687851935625076, -0.02141185663640499, -0.0030297234188765287, -0.02114013209939003, -0.019536960870027542, 0.006212291773408651, -0.024292131885886192, 0.03380247578024864, -0.005818291567265987, 0.027647923678159714, 0.022430822253227234, 0.002632326912134886, -0.0740719810128212, -0.028911441564559937, 0.009883963502943516, 0.005760550498962402, 0.0029244304168969393, 0.010515721514821053, -0.020148340612649918, 0.0341557152569294, -0.014116065576672554, 0.002335128840059042, -0.008525342680513859, 0.006765929516404867, -0.0024998614098876715, -0.012166445143520832, 0.03320468217134476, 0.003923016134649515, -0.04401930049061775, -0.012057756073772907, 0.0010979351354762912, -0.014170410111546516, -0.02467254549264908, 0.011262962594628334, 0.03937281668186188, -0.006358343176543713, -0.052388399839401245, -0.03421005979180336, -0.015121445059776306, 0.03350357711315155, -0.05108412727713585, 0.008844618685543537, -0.03162868320941925, 0.005138981621712446, 0.0366012342274189, -0.01662951335310936, -0.013586203567683697, 0.014156823977828026, 0.003722619730979204, -0.0025762838777154684, -0.012207204475998878, 0.009693756699562073, -0.03578605875372887, 0.005499016027897596, -0.0025491113774478436, 0.053583987057209015, 0.004028309602290392, -0.003021232085302472, -0.05116564407944679, -0.05385570973157883, -0.08015859872102737, 0.009184273891150951, -0.007221067324280739, -0.005709602031856775, -0.03187323361635208, 0.045513782650232315, -0.009890756569802761, 0.00024816050427034497, -0.0026747838128358126, 0.014211169444024563, -0.020066823810338974, 0.011480342596769333, 0.06374646723270416, -0.0020090597681701183, -0.04154660925269127, 0.007655825931578875, -0.018952753394842148, 0.0015827927272766829, 0.04016081988811493, -0.01993096061050892, -0.05586646869778633, -0.0831475630402565, 0.032471027225255966, 0.0657028779387474, 0.009442411363124847, -0.0003073878469876945, -0.031737372279167175, -0.04021516442298889, -0.020093996077775955, -0.05532302334904671, 0.0012677626218646765, -0.0550512969493866, 0.0017016719793900847, -0.04988854005932808, 0.01295444555580616, 0.015352410264313221, -0.02497144229710102, -0.04062274843454361, -0.009985859505832195, -0.03016137145459652, -0.01618116907775402, 0.05233405530452728, -0.018721789121627808, 0.026071924716234207, 0.018477236852049828, -0.02609909698367119, 0.008138136006891727, -0.008110963739454746, -0.020827651023864746, 0.01128334179520607, -0.03377530351281166, -0.01245854888111353, -0.016724616289138794, -0.05515998601913452, 0.011955859139561653, 0.055920813232660294, 0.022661788389086723, 0.04206288605928421, 0.03559585288167, 0.0037633783649653196, 0.03236233815550804, -0.010128514841198921, -0.04238895699381828, 0.038883715867996216, 0.028449511155486107, 0.0004077983903698623, -0.007064825855195522, -0.011976238340139389, 0.005665447097271681, 0.03687295690178871, -0.020596684888005257, 0.0017262969631701708, 0.022729719057679176, -0.010760273784399033, -0.0032369131222367287, 0.03513392433524132, 0.00866120494902134, 0.05760550498962402, -0.0074656191281974316, 0.020718960091471672, -0.02302861586213112, -0.030324406921863556, -0.027199579402804375, -0.0025932665448635817, 0.03632950782775879, -0.007771308533847332, -0.030949372798204422, -0.022240616381168365, 0.020569512620568275, -0.05141019448637962, -0.02804192528128624, 0.024604614824056625, -0.008776688016951084, 0.0001862795907072723, -0.048883162438869476, -0.008858204819262028, 0.022267788648605347, 0.0054786368273198605, 0.04344867914915085, -0.010128514841198921, 0.0014265513746067882, 0.02422420121729374, 0.008504963479936123, -0.024794822558760643, 0.06102922558784485, 0.04964398965239525, 0.02681916579604149, -0.03276992216706276, -0.05535019561648369, -0.03825874999165535, 0.026982201263308525, 0.04934509098529816, -0.009320136159658432, -0.026574615389108658, -0.009245411492884159, 0.04276936873793602, -0.01213927287608385, 0.08293018490076065, 0.02324599400162697, -0.022023236379027367, 0.009116342291235924, -0.04037819802761078, 0.006555343512445688, 0.039345644414424896, -0.0442366786301136, 0.004333999007940292, -0.023137304931879044, -0.02349054627120495, -0.0033337147906422615, 0.03725337237119675, -0.012370238080620766, -0.014401376247406006, -0.005111809354275465, -0.044780127704143524, -0.005811498500406742, -0.019577719271183014, -0.03486219793558121, 0.04722564294934273, -0.030487440526485443, -0.04271502420306206, 0.01589585840702057, -0.05399157479405403, -0.01573282480239868, 0.04154660925269127, -0.06075750291347504, 0.009551101364195347, 0.008212859742343426, 0.01921089179813862, -0.036709923297166824, 0.03964454308152199, 0.04304109513759613, -0.006256446707993746, 0.02563716657459736, -0.05673598498106003, -0.006745550315827131, 0.03589475154876709, -0.015352410264313221, 0.02736261487007141, -0.028884269297122955, 0.032661233097314835, -0.02569151110947132, -0.014265513978898525, 0.08423446118831635, 0.011962652206420898, -0.01269630715250969, 0.016086064279079437, -0.023898132145404816, 0.012526479549705982, 0.009408446028828621, -0.015365996398031712, 0.02732185646891594, 0.013131066225469112, -0.015814341604709625, 0.010264377109706402, -0.02781095914542675, -0.05543171241879463, -0.015501858666539192, 0.008824239484965801, -0.009795652702450752, 0.0030670855194330215, -0.007628653198480606, -0.0003470850351732224, 0.04863860830664635, -0.012118893675506115, 0.026561027392745018, -0.010868962854146957, -0.03350357711315155, 0.007309377659112215, -0.011738480068743229, -0.022892752662301064, -0.0073433429934084415, 0.04021516442298889, -0.012852548621594906, -0.01802889257669449, 0.008369101211428642, -0.04007929936051369, 0.008219652809202671, -0.005906601902097464, -0.02688709646463394, -0.013803582638502121, 0.011711307801306248, -0.027906062081456184, 0.00868837721645832, -0.01734958216547966, 0.011622997000813484, -0.011602617800235748, -0.04342150688171387, -0.015420340932905674, -9.584642248228192e-05, -0.004500430077314377, -0.03154716640710831, 0.011860756203532219, 0.03548716381192207, -0.0409216471016407, -0.01010134257376194, -0.031764544546604156, -0.05116564407944679, 0.002535525243729353, 0.02759357914328575, 0.0208955816924572, 0.02540620043873787, 0.024373648688197136, 0.018232684582471848, -0.030568959191441536, -0.018911994993686676, -0.047904953360557556, -0.03393833711743355, -0.014197583310306072, 0.044562749564647675, 0.03994343802332878, -0.0351610966026783, 0.02662895992398262, 0.01451006531715393, 0.01566489227116108, 0.028829924762248993, 0.01475461758673191, -0.008416653610765934, 0.015135031193494797, 0.011093134991824627, -0.01233627274632454, 0.0009221635991707444, 0.004014723002910614, 0.007309377659112215, 0.007682998199015856, 0.042416129261255264, 0.01058365311473608, -0.01661592721939087, -0.03450895845890045, -0.010135307908058167, 0.015270892530679703, 0.017431098967790604, -0.021452615037560463, 0.0024200426414608955, -0.019428271800279617, 0.02402040734887123, -0.044780127704143524, -0.03309599310159683, -0.014550823718309402, -0.013810375705361366, -0.016466479748487473, 0.006793101783841848, -0.024862753227353096, 0.017159374430775642, -0.05393723025918007, -0.0064500500448048115, 0.031737372279167175, 0.017268065363168716, 0.047198470681905746, -0.017689237371087074, -0.00511860242113471, 0.0019003702327609062, -0.01969999447464943, -0.005278239957988262, 0.02609909698367119, 0.00415737833827734, 0.012506100349128246, -0.005366550292819738, -0.02948206290602684, 0.023395443335175514, 0.000878857565112412, -0.004055481869727373, 0.0023215424735099077, -0.01804247871041298, 0.007920756936073303, 0.013484307564795017, -0.018708202987909317, -0.0014622152084484696, 0.007411274127662182, -0.01518937572836876, 0.029400544241070747, 0.0029583957511931658, 0.019401099532842636, -0.06521377712488174, -0.018436478450894356, -0.006725170649588108, 0.007078411988914013, 0.016344202682375908, 0.036519717425107956, -0.036519717425107956, -0.02282482199370861, -0.007513170596212149, -0.0010104739340022206, -0.021208064630627632, 0.04377475008368492, -0.009095963090658188, -0.03749792277812958, -0.03497088700532913, 0.009897549636662006, 0.004140395671129227, 0.03967171534895897, -0.013035962358117104, 0.014374203979969025, 0.0005977929686196148, 0.006266636308282614, 0.02539261430501938, 0.010080963373184204, 0.04594854265451431, 0.013993789441883564, -0.026465924456715584, 0.03632950782775879, 0.001502973842434585, -0.0044324989430606365, -0.006324377842247486, 0.013368824496865273, -0.016575168818235397, 0.037443578243255615, 0.04994288459420204, 0.0020209478680044413, -0.008831032551825047, -0.02589530497789383, -0.017865857109427452, 0.0009722627000883222, 0.016113238409161568, 0.00564846396446228, -0.00309086125344038, -0.007064825855195522, 0.003078973386436701, 0.019536960870027542, 0.004143792204558849, -0.008572894148528576, 0.017702823504805565, -0.02468613162636757, -0.00809058453887701, -0.03877502679824829, 0.011371652595698833, 0.024754062294960022, 0.02589530497789383, 0.02349054627120495, 0.04608440399169922, -0.00760827399790287, 0.011127101257443428, 0.03065047599375248, 0.03157433867454529, 0.05007874593138695, 0.007649032864719629, -0.0016795943956822157, -0.029291855171322823, 0.016738202422857285, 0.03706316277384758, -0.00031120897619985044, 0.0028378183487802744, -0.031954750418663025, 0.01690123789012432, 0.006905187852680683, -0.0063719297759234905, -0.01296803168952465, 0.024360062554478645, 0.011195031926035881, 0.022390063852071762, -0.03382964804768562, 0.017159374430775642, -0.01342996209859848, -0.019305994734168053, -0.013103893026709557, -0.0013238057726994157, 0.015963789075613022, 0.00032670574728399515, -0.0062598432414233685, -0.03298730403184891, 0.009958687238395214, 0.003542602527886629, -0.03939998894929886, -0.028666889294981956, 0.00033562167664058506, 0.0032572923228144646, 0.028177786618471146, -0.022947097197175026, 0.01402096264064312, -0.007710170466452837, -0.023191649466753006, -0.010407032445073128, -0.01573282480239868, 0.01688765175640583, -0.002187378704547882, -0.0011446377029642463, -0.006575722713023424, 0.018123995512723923, -0.038367439061403275, 0.010508928447961807, -0.04592137038707733, 0.005230688489973545, -0.03798702731728554, -0.04067709296941757, -0.0034848612267524004, -0.014428548514842987, -0.00975489430129528, 0.026180613785982132, -0.01997171901166439, -0.016452893614768982, 0.02779737301170826, 0.025039372965693474, 0.025066545233130455, -0.003776964731514454, 0.028694061562418938, -0.016941996291279793, -0.018952753394842148, 0.004337395541369915, -0.02709089033305645, -0.0020090597681701183, -0.02757999300956726, 0.02256668359041214, -0.0035731715615838766, 0.01802889257669449, 0.04162812978029251, -0.06054012477397919, -0.005451464094221592, 0.013029169291257858, -0.003841499099507928, 0.00013989544822834432, 0.01589585840702057, 0.011772445403039455, 0.0012227583210915327, -0.018572339788079262, -0.02253951132297516, -0.022294960916042328, -0.03657406195998192, 0.011609410867094994, 0.026234960183501244, 0.025039372965693474, 0.007859618403017521, 0.055757779628038406, -0.0033439043909311295, 0.006592705380171537, 0.012444962747395039, 0.03252537176012993, -0.008287584409117699, 0.018626686185598373, -0.024577442556619644, -0.061898745596408844, 0.007085205055773258, -0.024292131885886192, 0.013742445036768913, 0.006616481114178896, 0.06233350187540054, -0.011038790456950665, -0.004259274806827307, 0.020324960350990295, 0.006134171038866043, -0.009652997367084026, 0.04920922964811325, 0.016289858147501945, -0.023463374003767967, -0.03776964545249939, 0.003987550735473633, -0.007920756936073303, 0.009469583630561829, -0.051437366753816605, 0.003454292193055153, -0.0074248602613806725, -0.004673654213547707, -0.016317030414938927, -0.008756307885050774, 0.0031791715882718563, -0.010658376850187778, 0.01356582436710596, -0.010726307518780231, -0.038584817200899124, -0.027729442343115807, 0.03918261080980301, 0.02184661477804184, -0.0006266636191867292, 0.0009518833830952644, 0.0013976807240396738, 0.0052238954231143, 0.018354961648583412, -0.023123718798160553, 0.0010750084184110165, -0.054806746542453766, -0.0228384081274271, -0.014822548255324364, -0.004911412484943867, 0.006779515650123358, -0.030731992796063423, 0.02611268311738968, 0.02804192528128624, 0.040975991636514664, 0.01925165019929409, 0.013409582898020744, -0.006385515909641981, 0.008960101753473282, 0.033150337636470795, -0.038856543600559235, -0.01687406562268734, 0.023015029728412628, -0.0010325515177100897, -0.009401652961969376, 0.010013031773269176, -0.00434418860822916, -0.029346199706196785, -0.021751511842012405, -0.016928410157561302, 0.054317642003297806, 0.006779515650123358, 0.015814341604709625, -0.007397687993943691, -0.010705928318202496, -0.03755226731300354, -0.01164337620139122, 0.03880219906568527, -0.024849167093634605, 0.06695280969142914, -0.010936894454061985, 0.0036750680301338434, 0.011106721125543118, -0.026520268991589546, 0.007078411988914013, 0.028857097029685974, 0.027960406616330147, 0.007716963533312082, -0.0036716714967042208, -0.026751235127449036, 0.008627239614725113, -0.022512339055538177, -0.018259858712553978, 0.008545721881091595, -0.008756307885050774, -0.011894721537828445, 0.012920479290187359, 0.0021364304702728987, -0.06564853340387344, -0.04021516442298889, 0.015175789594650269, -0.003559585427865386, 0.025963235646486282, -0.0026747838128358126, 0.007329756859689951, -0.013103893026709557, 0.028938613831996918, 0.061463985592126846, 0.0058488608337938786, 0.01756696216762066, 0.00011006947897840291, 0.033367715775966644, -0.0047449818812310696, -0.004670257680118084, -0.03869350999593735, 0.004972550552338362, 0.006657239980995655, -0.03915543854236603, 0.026737648993730545, 0.01661592721939087, -0.00017768207180779427, -0.013226169161498547, 0.0005714697181247175, -0.009415239095687866, 0.003058594185858965, 0.039590198546648026, 0.03211778402328491, -0.022050408646464348, -0.010305135510861874, -0.008138136006891727, 0.021316753700375557, 0.020854823291301727, -0.009286169894039631, 0.002651008078828454, -0.0030653872527182102, 0.013953031040728092, -0.006443256977945566, 0.028367992490530014, 0.018667444586753845, 0.003462783759459853, -0.010216825641691685, 0.03160151094198227, -0.006894998252391815, -0.011670549400150776, 0.020596684888005257, -0.010916514322161674, -0.005111809354275465, -0.019075030460953712, -0.023612821474671364, -0.021275995299220085, -0.009225032292306423, 0.025542063638567924, 0.007533549796789885, 0.025311097502708435, -0.006945946719497442, 0.04293240234255791, -0.01806965097784996, -0.032960131764411926, 0.02137109823524952, 0.020161926746368408, 0.021737925708293915, 0.02566433884203434, -0.020542340353131294, 0.0060594468377530575, -0.029563579708337784, 0.034590475261211395, 0.036220818758010864, 0.02661537379026413, 0.045731160789728165, 0.004707619547843933, -0.024889925494790077, 0.02495785616338253, 0.004215119872242212, 0.0013713574735447764, 0.017906617373228073, -0.003157094120979309, -0.009734515100717545, -0.013307686895132065, -0.01664309948682785, 0.03872068226337433, -0.005760550498962402, -0.004850274883210659, -0.006990101654082537, -0.026316476985812187, 0.03939998894929886, 0.021547719836235046, -0.012309100478887558, -0.005047274753451347, 0.03203626722097397, 0.006517981179058552, 0.04377475008368492, -0.03021571785211563, -0.005842067766934633, -0.03146564960479736, -0.021248823031783104, -0.006799894850701094, 0.03700881823897362, 0.007642239797860384, -0.017988134175539017, 0.0337209589779377, -0.04187268018722534, -0.012567238882184029, 0.012546858750283718, -0.0031248268205672503, -0.01319220382720232, -0.009150308556854725, 0.040323853492736816, 0.005560154095292091, -0.0027325251139700413, 0.02942771650850773, -0.01853158138692379, 0.012057756073772907, 0.006324377842247486, 0.00558392982929945, 0.017186548560857773, -0.03967171534895897, 0.03801419958472252, 0.010033411905169487, 0.03524261340498924, 0.022172683849930763, -0.025976821780204773, -0.023857373744249344, 0.004901222884654999, -0.024074753746390343, -0.0322808213531971, 0.012730272486805916, 0.013362031430006027, 0.009462790563702583, 0.031927578151226044, -0.028694061562418938, -0.024754062294960022, 0.026561027392745018, 0.020759718492627144, -0.012730272486805916, 0.008097377605736256, -0.03206343948841095, 0.014836134389042854, 0.014863306656479836, -0.02328675240278244, 0.010196445509791374, 0.04535074904561043, -0.009191066958010197, 0.016099652275443077, -0.019075030460953712, -0.00498274015262723, 0.006884808652102947, 0.011038790456950665, -0.02302861586213112, 0.01737675443291664, 0.01926523633301258, 0.005590722896158695, -0.007268618792295456, 0.002297766739502549, -0.018463650718331337, -0.014197583310306072, -0.017009926959872246, -0.022254202514886856, -0.04703543707728386, 0.008240032941102982, -0.01896633952856064, 0.0513015054166317, -0.01971358247101307, -0.010977652855217457, -0.03399268165230751, 0.011337687261402607, -0.013307686895132065, 0.007329756859689951, 0.01569206453859806, 0.004602326545864344, 0.03597626835107803, -0.006436463911086321, 0.023911718279123306, 0.005363153759390116, -0.002781775314360857, 0.0002759697672445327, -0.019102202728390694, 0.0035629819612950087, -0.008973687887191772, -0.02736261487007141, -0.018911994993686676, -0.010536100715398788, 0.05494260787963867, -0.004612516146153212, 0.03018854558467865, -0.00759468786418438, 0.009591859765350819, 0.030297234654426575, 0.015556203201413155, 0.02066461555659771, 0.013606582768261433, -0.002932921750470996, 0.016724616289138794, -0.009360894560813904, -0.0013093703892081976, 0.01162979006767273, 0.024183442816138268, 0.01922447793185711, -0.00403849920257926, -0.018871236592531204, -0.010855376720428467, -0.018001720309257507, -0.028639717027544975, -0.016480065882205963, 0.027906062081456184, 0.01828703097999096, -0.010142100974917412, 0.03565019741654396, 0.021235236898064613, -0.010508928447961807, -0.011962652206420898, 0.02902013063430786, -0.03801419958472252, -0.017186548560857773, -0.010366273112595081, -0.003603740595281124, -0.02543337270617485, 0.0221183393150568, 0.014061721041798592, -0.01364054810255766, 0.009245411492884159, -0.021669995039701462, 0.015012755058705807, -0.005611102096736431, -0.007479205261915922, 0.011099928058683872, -0.030514612793922424, 0.022281374782323837, -0.03263406082987785, 0.011996617540717125, -0.02757999300956726, 0.006667429581284523, -0.002105861669406295, 0.02825930342078209, -0.025990407913923264, -0.00759468786418438, 0.019781513139605522, -0.001379848807118833, 0.012743859551846981, 0.002007361501455307, 0.005149171222001314, 0.01808323711156845, -0.020257029682397842, -0.005675636697560549, -0.01896633952856064, -0.005441274493932724, -0.030514612793922424, 0.007411274127662182, -0.0016456289449706674, 0.03203626722097397, 0.018463650718331337, 0.0026578011456876993, 0.002627232111990452, 0.024767650291323662, -0.004914809018373489, 0.030270062386989594, 0.012560444884002209, 0.004490240477025509, 0.018137581646442413, 0.07249598205089569, -0.03831309452652931, 0.02997116558253765, 0.01032551471143961, 0.009537515230476856, -0.01449647918343544, 0.008579687215387821, -0.022498752921819687, -0.030079854652285576, -0.002219646004959941, 0.007418067194521427, -0.03382964804768562, 0.017308823764324188, 0.011127101257443428, -0.014374203979969025, 0.013042755424976349, -0.009557894431054592, -0.003770171431824565, -0.005712998565286398, -0.022403649985790253, -0.00010019825276685879, -0.0013212582562118769, 0.004459671210497618, 0.009510342963039875, 0.013654135167598724, -0.002428533975034952, 0.0273762010037899, 0.08081074059009552, 0.014944824390113354, -0.02119447849690914, 0.0237758569419384, -0.0026306286454200745, 0.013348445296287537, -0.014577996917068958, 0.018681030720472336, 0.008430239744484425, 0.020066823810338974, -0.010624411515891552, -0.015488272532820702, -0.027484890073537827, -0.0067727225832641125, 0.0050133089534938335, 0.010359480045735836, 0.006738757248967886, -0.0016176074277609587, 0.011690928600728512, -0.01781151257455349, 0.003498447360470891, 0.024346476420760155, -0.019102202728390694, -0.0006377024110406637, -0.004133602604269981, -0.028177786618471146, 0.02855820022523403, -0.020080409944057465, 0.002177189104259014, 0.008701963350176811, 0.0048231021501123905, -0.014577996917068958, 0.027036545798182487, 0.031764544546604156, -0.03255254402756691, 0.019604891538619995, -0.007085205055773258, -0.00565186096355319, 0.018640272319316864, 0.0017373358132317662, -0.012071342207491398, -0.02349054627120495, -0.005125395487993956, -0.03467199206352234, 0.017213720828294754, 0.011602617800235748, -0.006854239851236343, -0.0337209589779377, 0.01521654799580574, -0.04070426523685455, -0.030514612793922424, 0.008844618685543537, 0.0028921631164848804, -0.008932928554713726, 0.014224755577743053, -0.008844618685543537, 0.032960131764411926, 0.005923585034906864, 0.028476683422923088, 0.016792546957731247, -0.01461875531822443, 0.003705637063831091, -0.033856820315122604, -0.013226169161498547, 0.001463913475163281, -0.016276272013783455, 0.013633755035698414, -0.035025231540203094, 0.0001683415612205863, -0.018178340047597885, 0.008172101341187954, 0.027688683941960335, -0.0037531887646764517, 0.018599512055516243, 0.03969888761639595, 0.02661537379026413, 0.03711750730872154, 0.011955859139561653, 0.005451464094221592, -0.03206343948841095, -0.020066823810338974, 0.023680754005908966, -0.03021571785211563, 0.008158515207469463, -0.03657406195998192, -0.030596131458878517, -0.010434204712510109, 0.017499029636383057, 0.021955305710434914, 0.014768203720450401, -0.014985582791268826, -0.009089170023798943, 0.005488826427608728, 0.009116342291235924, 0.014292686246335506, 0.0010053790174424648, -0.023164477199316025, -0.019672822207212448, -0.012866134755313396, -0.03834026679396629, 0.030704820528626442, -0.0006202951190061867, -0.025501305237412453, 0.04948095232248306, -0.00807699840515852, -0.0034254216589033604, -0.01615399681031704, -0.04304109513759613, -0.03325902670621872, -0.009911135770380497, -0.03214495629072189, 0.01804247871041298, 0.031438473612070084, 0.002825930481776595, 0.015026341192424297, 0.016330616548657417, 0.009428825229406357, -0.026207786053419113, -0.016711030155420303, -0.018354961648583412, 0.0003290408640168607, -0.012791411019861698, -0.02425137348473072, -0.009714135900139809, 0.00688820518553257, 0.02230854704976082, 0.03187323361635208, -0.0417911633849144, 0.03086785413324833, -0.004857067950069904, 0.010305135510861874, 0.008226446807384491, 0.03016137145459652, -0.00041268093627877533, 0.010631204582750797, -0.019835857674479485, -0.014048134908080101, -0.015800755470991135, 0.019088616594672203, 0.02331392467021942, -0.0221183393150568, 0.022294960916042328, -0.027906062081456184, 0.011894721537828445, 0.005522791761904955, -0.019401099532842636, 0.016086064279079437, 0.019903788343071938, -0.0024557062424719334, -0.026180613785982132, -0.032661233097314835, 0.021330339834094048, 0.023694340139627457, 0.029074475169181824, 0.002866688882932067, -0.03834026679396629, 0.021534133702516556, -0.006140964105725288, -0.013803582638502121, 0.004347585141658783, -0.013219376094639301, 0.011446376331150532, -0.013375617563724518, -0.02880275249481201, 0.008803860284388065, -0.004160774871706963, 0.007003687787801027, -0.0010546291014179587, -0.03116675093770027, 0.02611268311738968, 0.01661592721939087, -0.019292408600449562, 0.007907170802354813, -0.007051239721477032, 0.0337209589779377, -0.013341652229428291, -0.015624133870005608, 0.029536407440900803, 0.033394888043403625, -0.003362585324794054, 0.01737675443291664, 0.015284479595720768, 0.0017729995306581259, 0.026180613785982132, 0.022756891325116158, 0.019401099532842636, -0.03230799362063408, -0.015501858666539192, -0.020243443548679352, -0.0069629293866455555, -0.015882272273302078, 0.011935479938983917, 0.00015974404232110828, 0.052361227571964264, -0.01154148019850254, 0.0027902666479349136, 0.011459962464869022, -0.00393320620059967, -0.055920813232660294, 0.02661537379026413, -0.0028157406486570835, -0.01997171901166439, -0.037688128650188446, -0.016058892011642456, 0.014374203979969025, -0.00809058453887701, 0.011792824603617191, 0.02111295983195305, 0.01566489227116108, 0.0028921631164848804, 0.0005200968589633703, -0.002273990772664547, -0.0034305164590477943, 0.0019733961671590805, 0.007778101600706577, -0.00043199880747124553, -2.5712952265166678e-05, 0.07526756823062897, 0.03491654247045517, -0.05635557323694229, 0.010210031643509865, -0.018830478191375732, 0.0056688436307013035, -0.03282426670193672, 0.001276253955438733, 0.01876254752278328, 0.023599235340952873, -0.026724062860012054, -0.0007255881791934371, 0.0034950508270412683, 0.0018782926490530372, -0.017865857109427452, 0.02115372009575367, -0.015583375468850136, 0.000903482548892498, 0.019142961129546165, 0.0059439642354846, 0.0016719521954655647, 0.023164477199316025, -0.0055975159630179405, -0.02213192544877529, -0.01732240989804268, 0.007879998534917831, -0.017213720828294754, 0.036737095564603806, 0.029780957847833633, 0.012275135144591331, 0.013395996764302254, 0.0016031720442697406, 0.0007778101717121899, -0.03700881823897362, 0.03200909495353699, -0.003325223457068205, -0.034345924854278564, -0.04896467924118042, 0.02825930342078209, 0.017634892836213112, 0.017281651496887207, 0.0021924737375229597, 0.029862476512789726, -0.0208955816924572, -0.029183166101574898, 0.012180031277239323, -0.020596684888005257, -0.004785740282386541, 0.0034916542936116457, 0.0389108881354332, -0.03499805927276611, -0.06102922558784485, 0.05776853859424591, 0.023925304412841797, 0.016018133610486984, -0.009856791235506535, -0.009320136159658432, -0.04869295284152031, 0.005862446967512369, 0.008824239484965801, 0.003369378624483943, 0.005369946826249361, -0.02260744385421276, -0.009782066568732262, -0.022865580394864082, -0.047904953360557556, -0.010060584172606468, -0.002961792517453432, -0.013029169291257858, -0.004415516275912523, -0.02116730622947216, -0.015121445059776306, 0.013518272899091244, 0.01389868650585413, 0.022227028384804726, -0.004337395541369915, -0.008321549743413925, 0.025297511368989944, -0.006575722713023424, -0.01948261633515358, 0.037633784115314484, 0.016534410417079926, -0.012648755684494972, 0.007988687604665756, -0.0006576571613550186, -0.016276272013783455, -0.012879720889031887, 0.047198470681905746, 0.046437643468379974, -0.006327774375677109, 0.015257306396961212, -0.0036920509301126003, 0.01637137494981289, 0.015257306396961212, 0.023178063333034515, -0.0005150020588189363, -0.023341098800301552, -0.008009066805243492, 0.00011060018732678145, 0.023680754005908966, 0.03562302514910698, -0.011480342596769333, -0.013029169291257858, 0.03605778515338898, 0.006287015974521637, 0.004666861146688461, -0.015719236806035042, -0.004527602344751358, 0.016466479748487473, 0.006331170909106731, -0.024332890287041664, 0.011290134862065315, -0.007907170802354813, 0.010386652313172817, 0.01305634155869484, 0.006765929516404867, 0.001932637533172965, 0.0027410166803747416, -0.04233461245894432, 0.0025338269770145416, 0.01118144579231739, -0.007526756729930639, -0.004507223144173622, -0.009680170565843582, 0.034074198454618454, -0.011595824733376503, 0.017729995772242546, 0.013076720759272575, 0.06624633073806763, -0.016588754951953888, 0.020501581951975822, 0.01162979006767273, 0.023599235340952873, -0.015420340932905674, 0.027403373271226883, 0.00606284337118268, -0.028829924762248993, -0.023015029728412628, 0.02518882229924202, 0.0170778576284647, 0.007873205468058586, -0.03937281668186188, 0.013341652229428291, 0.029536407440900803, -0.007723756600171328, 0.017974548041820526, 0.016996340826153755, -0.03393833711743355, 0.013728858903050423, 0.018667444586753845, -0.005043878220021725, -0.021765097975730896, -0.03605778515338898, 0.011745273135602474, -0.032960131764411926, 0.00201924960128963, -0.01899351365864277, -0.005210309289395809, -0.05138302221894264, 0.00731617072597146, 0.006185119040310383, -0.016439305618405342, -0.01565130613744259, 0.017770754173398018, 0.01451006531715393, 0.012146065942943096, 0.005614498630166054, 0.021710753440856934, 0.014129651710391045, 0.010318721644580364, 0.033883992582559586, -0.01660234108567238]" -How Everactive Powers a Dense Sensor Network With Virtually No Power at All,"📬This blog post was originally published in February 2021 and updated in February 2023 to reflect Everactive's data stack and business evolution.This is an installment of our “Community Member Spotlight” series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition,Carlos Olmos,Dan Wright, andClayton Yochumfrom Everactive join us to share how they’re bringing analytics and real-time device monitoring to scenarios and places never before possible. Learn how they’ve set up their data stack (moving from six to only three instances), their database evaluation criteria, their advice for fellow developers, and more.About the CompanyEveractivecombines battery-free, self-powered sensors and powerful cloud analytics to provide “end-to-end” hyperscale IoT solutions to our customers. Our company is undergoing a huge transformation from focusing only on industrial monitoring services (read more about Industrial IoT) to opening our platform to developers that can leverage our technology to create their own solutions and services.It is not easy to build a platform, less to build an open platform. Flexibility and stability are key factors. We have found so far that with Timescale (and PostgreSQL underneath), we have been able to bend our data models and data serving needs to implement the new use cases for the platform without pain.We design and build our sensors in-house (down to the chip), and they’re ruggedized for harsh settings and can operate indefinitely from low levels of energy harvested from heat or light. This means our customers’ devices can continuously stream asset health data, despite radio interference and physical obstacles—like equipment, ducts, and pipes—common in industrial settings.Since they charge themselves, these sensors stay operational well beyond what’s possible with traditional, battery-powered Industrial IoT devices. We ingest data from thousands of sensorsinto Timescale, then surface it to our customers through dashboards, charts, and automated alerts.Ourinitial productsare designed to monitor steam systems, which are used in various industries and applications, like process manufacturing, chemical processing, and district energy, as well as a range of rotating equipment, such as motors, pumps, fans, and compressors. Currently, we serve large, Fortune 500 manufacturers in many sectors, including Food & Beverage, Consumer Packaged Goods, Chemical Process Industries, Pharmaceuticals, Pulp & Paper, and Facilities Management.We show customers their data through a web-based dashboard, and we",https://www.timescale.com/blog/how-everactive-powers-a-dense-sensor-network-with-virtually-no-power-at-all/,501,"[0.005319457501173019, 0.003946227952837944, 0.030962713062763214, -0.0010570253944024444, 0.04926280304789543, 0.0408499650657177, -0.04642961546778679, -0.014368318021297455, -0.013479332439601421, 0.014744148589670658, 0.051575612276792526, -0.04313386231660843, -0.0013804570771753788, -0.02701648510992527, 0.043654244393110275, 0.06811218708753586, 0.0007363040349446237, -0.020540622994303703, -0.060479920357465744, 0.004094392526894808, 0.003434880869463086, -0.010479910299181938, 0.0391731821000576, 0.007408211939036846, -0.015221165493130684, -0.029300382360816002, -0.05018792673945427, 0.05576757714152336, 0.013464877381920815, -0.06152068451046944, 0.03665800020098686, -0.04385661706328392, -0.03330443054437637, 0.042411111295223236, 0.03633999079465866, 0.012901130132377148, 0.008196012116968632, -0.017505062744021416, 0.020150337368249893, 0.017490608617663383, -0.005290547385811806, -0.014043078757822514, 0.0030427875462919474, 0.016247473657131195, -0.026958664879202843, -0.00010248403123114258, -0.058369483798742294, 0.006114485207945108, 0.039115361869335175, 0.024255570024251938, -0.026915298774838448, 0.00371856102719903, 0.0035812382120639086, -0.055883217602968216, 0.020800814032554626, -0.03211911767721176, 0.025238513946533203, 0.06741834431886673, -0.016392024233937263, -0.01334923692047596, 0.0060964166186749935, -0.04220873862504959, 0.036368902772665024, 0.016392024233937263, -0.004535271320492029, 0.0027500728610903025, -0.02520960383117199, 0.03142527490854263, -0.04183290898799896, 0.014642964117228985, 0.06053774058818817, 0.014505640603601933, 0.0038992492482066154, 0.009655972011387348, 0.022419780492782593, -0.048193130642175674, -0.04894479364156723, 0.007798498496413231, -0.015394626185297966, -0.023908648639917374, -0.0213790163397789, 0.007285344414412975, -0.03139636293053627, 0.007010698318481445, -0.004430472385138273, -0.027204399928450584, -0.009684882126748562, -0.04923389479517937, -0.018141085281968117, 0.04593814164400101, -0.015683727338910103, 0.03928881883621216, 0.003209020709618926, 0.00460031908005476, 0.026207001879811287, 0.05206708237528801, 0.02270887978374958, -0.004238942638039589, 0.01786644011735916, 0.04197746142745018, -0.009207865223288536, -0.04836659133434296, -0.009569241665303707, -0.02575889602303505, -0.018141085281968117, -0.017909804359078407, 0.03876844048500061, 0.025339698418974876, 0.03165655583143234, -0.053281307220458984, -0.06828564405441284, -0.03376699239015579, -0.02632264234125614, -0.016016192734241486, -0.028143977746367455, 0.0230124369263649, -0.04229547083377838, -0.007704540621489286, 0.011795319616794586, -0.04079214483499527, -0.005333912558853626, 0.0469789057970047, 0.006631253287196159, 0.018589191138744354, 0.02733449637889862, -0.010436545126140118, -0.010313676670193672, -0.019702229648828506, -0.03350680321455002, -0.04836659133434296, 0.04677653685212135, -0.030557971447706223, 0.06574156135320663, -0.04385661706328392, -0.0033318884670734406, -0.04183290898799896, -0.02648164890706539, -0.016406480222940445, -0.03275514021515846, -0.013594972901046276, -0.009901707991957664, -0.014635736122727394, -0.008752531372010708, -0.013811798766255379, -0.008138191886246204, -0.016102923080325127, -0.030500151216983795, -0.020381618291139603, -0.006327697075903416, -0.014932064339518547, 0.025628799572587013, 0.005984389688819647, -0.06701360642910004, 0.007299799472093582, 0.06389131397008896, 0.022217409685254097, 0.054466620087623596, 0.058456216007471085, -0.03130963444709778, -0.044434819370508194, -0.009504194371402264, 0.009106680750846863, -0.02788378857076168, -0.01565481722354889, -0.0770743191242218, -0.015915008261799812, -0.008506795391440392, -0.05021683871746063, -0.09031514078378677, -0.01854582689702511, -0.04119688645005226, -0.04296040162444115, 0.01510552503168583, 0.031222904101014137, 0.024472396820783615, -0.01064614299684763, -0.0007990931044332683, -0.010675053112208843, -0.02233305014669895, -0.029488297179341316, -0.052471823990345, -0.014158719219267368, -0.034576475620269775, 0.015264530666172504, -0.006587888114154339, 0.015322350896894932, -0.047181278467178345, 0.026279278099536896, -0.004441313445568085, 0.008701939135789871, -0.04394334554672241, 0.0379011370241642, 0.02325817197561264, 0.03937555104494095, 0.039809200912714005, -0.03940445929765701, 0.0033192404080182314, 0.024472396820783615, -0.0022658288944512606, 0.008000869303941727, 0.03729402273893356, 0.01777970977127552, 0.09285923093557358, -0.01487424410879612, 0.015365716069936752, 0.011238799430429935, 0.005879590753465891, 0.01682567596435547, -0.050534848123788834, 0.006905899383127689, 0.03740966320037842, 0.008152646943926811, 0.0460248738527298, 0.022752245888113976, -0.03327552229166031, 0.0025802261661738157, -0.05134433135390282, -0.017837530001997948, 0.05010119825601578, 0.019080663099884987, -0.034807756543159485, 0.08447530120611191, -0.00311144907027483, 0.0016858199378475547, -0.0053519816137850285, 0.06718706339597702, 0.027305586263537407, -0.02937265858054161, 0.06227234750986099, -0.002161029726266861, 0.008116509765386581, -0.035443779081106186, -0.03203238546848297, -0.028563175350427628, 0.012684304267168045, 0.01973113976418972, 0.004650911781936884, -0.023055801168084145, 0.01675340160727501, -0.004130530171096325, -0.00442324485629797, 0.02765250764787197, -0.011968779377639294, 0.01338537409901619, 0.00013969448627904058, 0.017721889540553093, -0.023677369579672813, -0.06973115354776382, 0.046313975006341934, 0.016551030799746513, 0.05536283552646637, -0.015712637454271317, -0.017664069309830666, -0.01840127632021904, 0.013609427958726883, -0.04249783977866173, -0.009352415800094604, 0.001086838892661035, 0.009699337184429169, -0.026655107736587524, 0.0056808339431881905, 0.027782602235674858, 0.0006152429850772023, -0.019846780225634575, 0.008991040289402008, -0.009309050627052784, 0.02357618324458599, -0.03602198138833046, 0.002083333907648921, -0.01682567596435547, 0.029777398332953453, 0.019947966560721397, 0.016102923080325127, -0.04657416418194771, -0.002177291549742222, -0.021075459197163582, 0.025021689012646675, -0.018502460792660713, -0.012416886165738106, 0.015047704800963402, -0.003398743225261569, -0.03255276754498482, 0.017028046771883965, -0.009836659766733646, -0.004575022496283054, -0.025484248995780945, 0.020815270021557808, -0.005395346786826849, -0.013240824453532696, -0.0006414427771233022, -0.005691675003618002, 0.007057677023112774, 0.02811506763100624, 0.0010091430740430951, 0.019788959994912148, 0.0074660321697592735, -0.005612172186374664, 0.008557388558983803, -0.035039037466049194, -0.04313386231660843, 0.011802546679973602, 0.001706599141471088, -0.024226659908890724, -0.009070542640984058, -0.0032523858826607466, 0.023995378986001015, -0.021884942427277565, 0.035819608718156815, 0.015062159858644009, -0.037322934716939926, -0.023388268426060677, 0.0010705769527703524, 0.07106101512908936, 0.014657419174909592, -0.05244291573762894, -0.011376122944056988, 0.050534848123788834, -0.0005041197873651981, -0.009056087583303452, -0.06273490935564041, 0.0067541212774813175, -0.04986991733312607, 0.034721024334430695, -0.016738945618271828, 0.013847935944795609, -0.018748197704553604, 0.02568661980330944, -0.003145779948681593, 0.01605955883860588, -0.027854878455400467, -0.006324083544313908, 0.009923390112817287, 0.028780000284314156, -0.016319749876856804, 0.010479910299181938, -0.008918765000998974, -0.00149248365778476, -0.02434230037033558, -0.006602343171834946, -0.00290727149695158, -0.0138551639392972, -0.04975427687168121, -0.0385371595621109, 0.004242556635290384, 0.06626193970441818, -0.009605379775166512, -0.010718418285250664, -0.020945364609360695, -0.022188499569892883, 0.021350106224417686, 0.002451937645673752, 0.0010055293096229434, 0.0002394117327639833, -0.03015322983264923, -0.0009133783751167357, -0.031193993985652924, 0.012012144550681114, -0.015596996992826462, 0.009135589934885502, 0.002312807599082589, 0.015033249743282795, 0.02434230037033558, 0.04157271981239319, -0.018271179869771004, 0.01714368723332882, 0.04839549958705902, -0.06209888681769371, 0.022101769223809242, -0.0189505685120821, -0.019991330802440643, 0.03665800020098686, 0.014592370949685574, -0.014006941579282284, 0.014715239405632019, -0.055565204471349716, -0.012850537896156311, 0.05715525895357132, 0.013363691978156567, 0.004726800601929426, 0.05761782079935074, 0.053281307220458984, 0.059381335973739624, -0.00857184361666441, -0.008983812294900417, -0.005857908166944981, 0.05611449480056763, -0.030904892832040787, 0.0039534554816782475, -0.07956058531999588, -0.026727383956313133, 0.022665515542030334, -0.025888990610837936, -0.02749350108206272, -0.04345187544822693, -0.004379879683256149, -0.009655972011387348, 0.025411974638700485, 0.02536860853433609, 0.06036427989602089, -0.023908648639917374, 0.030557971447706223, -0.0022170429583638906, -0.04165944829583168, 0.002412186237052083, 0.02419774979352951, -0.020873090252280235, 0.008622435852885246, 0.0018113981932401657, -0.015568086877465248, -0.025802260264754295, 0.011831456795334816, -0.026712927967309952, 0.038479339331388474, -0.01339260209351778, 0.01659439504146576, -0.016565484926104546, -0.007805726025253534, 0.027146579697728157, -0.010053485631942749, 0.06660886108875275, -0.022694425657391548, -0.02616363763809204, -0.001743640168569982, -0.02951720729470253, -0.040445223450660706, 0.004607546608895063, 0.029170287773013115, -0.029777398332953453, -0.03232148662209511, -0.051402151584625244, -0.03437410295009613, 0.007596127688884735, 0.03570396825671196, -0.014642964117228985, -0.030644701793789864, 0.021624751389026642, -0.002049003029242158, -0.0043654246255755424, 0.015336805954575539, 0.013457649387419224, 0.00260371551848948, 0.0008284549694508314, -0.017895350232720375, 0.03102053329348564, -0.03070252202451229, -0.04596705362200737, -0.038161326199769974, -0.02067071944475174, -0.014137037098407745, 0.005832612048834562, 0.027363406494259834, -0.0059590935707092285, -0.0388551689684391, 0.05432207137346268, -0.05949697643518448, -0.017360512167215347, 0.056721609085798264, -0.01126770954579115, 0.033246610313653946, 0.010588322766125202, -0.029430478811264038, 0.008073144592344761, -0.01249638944864273, -0.03905754163861275, -0.01193986926227808, -0.03937555104494095, 0.027305586263537407, -0.016955770552158356, 0.04356751590967178, -0.03703383356332779, 0.018661467358469963, 0.02318589761853218, -0.04469500854611397, -0.02804279327392578, -0.034027181565761566, -0.007827408611774445, 0.02161029726266861, 0.01769297942519188, -0.019456494599580765, 0.005055652931332588, -0.009207865223288536, -0.011115931905806065, -0.06788090616464615, 0.04981209710240364, 0.04958081617951393, 0.020497258752584457, -0.02944493293762207, 0.026597289368510246, -0.036311082541942596, -0.012568664737045765, -0.0009102163021452725, 0.014202084392309189, 0.08135300874710083, -0.017577338963747025, 0.00888985488563776, -0.006360221188515425, -0.0709453746676445, -0.042093098163604736, 0.003841429017484188, 0.01428881473839283, 0.0466608963906765, 0.015221165493130684, -0.013045680709183216, 0.043422963470220566, 0.020468348637223244, 0.0033156266435980797, -0.02004915103316307, -0.0041738953441381454, 0.02278115600347519, -0.053050026297569275, 0.010024575516581535, 0.028057247400283813, 0.00500867422670126, 0.03501012548804283, -0.025079509243369102, 0.010031803511083126, 0.012069964781403542, 0.019861236214637756, -0.008644118905067444, -0.022810066118836403, -0.015307895839214325, -0.039259910583496094, 0.01723041757941246, 0.01643539033830166, 0.0010028189281001687, -0.03703383356332779, -0.039202090352773666, -0.005966321099549532, -0.03454756364226341, -0.004047413356602192, -0.011954324319958687, -0.012727669440209866, 0.0038233601953834295, 0.0168401300907135, -0.06845910847187042, 0.028953460976481438, -0.0225354190915823, -0.0566926971077919, -0.03342007100582123, 0.05209599435329437, -0.00798641424626112, 0.06412259489297867, 0.015206710435450077, 0.03379590064287186, 0.001366002019494772, -0.001098583685234189, -0.01689795032143593, -0.007473259698599577, 0.001265720115043223, 0.04839549958705902, 0.022694425657391548, -0.060248639434576035, 0.020396072417497635, -0.010537729598581791, -0.00207429938018322, 0.028852276504039764, -0.008868171833455563, 0.0036697753239423037, 0.012395204044878483, 0.017056956887245178, 0.022665515542030334, -0.016579940915107727, 0.022506508976221085, 0.008622435852885246, -0.010501592420041561, 0.03914427012205124, 0.009916163049638271, -0.0268719345331192, -0.06579937785863876, 0.03633999079465866, 0.0026055225171148777, -0.0037474711425602436, -0.01581382192671299, -0.002999422373250127, 0.021899398416280746, 0.00884648971259594, -0.018849382176995277, -0.017562882974743843, -0.008665801025927067, 0.008051461540162563, -0.019687775522470474, -0.02905464731156826, -0.023272627964615822, 0.01689795032143593, -0.016334204003214836, 0.008174329996109009, 0.03515467792749405, 0.01100029144436121, 0.04972536489367485, -0.01738942228257656, 0.008333335630595684, 0.0012702373787760735, -0.01519225537776947, 0.025874536484479904, -0.010125760920345783, 0.0026109430473297834, 0.01393466629087925, -0.012004917487502098, -0.012546981684863567, 0.03697601333260536, 0.02997976914048195, 0.015756001695990562, 0.0032035999465733767, -0.0018881906289607286, 0.012619256973266602, 0.010205264203250408, 0.010198036208748817, 0.014505640603601933, 0.015524721704423428, -0.029025737196207047, 0.002726583508774638, -0.00775513332337141, -0.016854586079716682, -0.008745304308831692, -0.016869040206074715, 0.0025332472287118435, 0.030557971447706223, 0.00869471114128828, 0.019774505868554115, 0.007921366021037102, -0.038479339331388474, -0.043972257524728775, -0.03232148662209511, -0.03952009975910187, 0.01581382192671299, -0.003928159363567829, -0.01244579628109932, -0.033073149621486664, -0.0007137180073186755, 0.021812668070197105, -0.004770165774971247, -0.0028873959090560675, 0.005568807478994131, 0.01519225537776947, -0.007993641309440136, 0.009099452756345272, 0.013363691978156567, 0.030095409601926804, 0.016493210569024086, -0.04481064900755882, 0.03217693790793419, 0.0051965899765491486, 0.007914138957858086, -0.028606539592146873, 0.007841863669455051, -0.0076539479196071625, -0.02889564074575901, 0.006237353198230267, 0.007093814667314291, 0.013183004222810268, -0.02302689105272293, -0.03697601333260536, 0.043654244393110275, 0.030124319717288017, 0.02568661980330944, -0.015452446416020393, -0.026814114302396774, 0.0013840708415955305, 0.01217115018516779, 0.0019947965629398823, -0.052038174122571945, -0.005510987248271704, -0.023272627964615822, -0.0005267058149911463, -0.02013588137924671, 0.016738945618271828, 0.06163632497191429, -0.004889420233666897, 0.04744146764278412, 0.04900261387228966, -0.026640653610229492, 0.0330442413687706, 0.02742122672498226, 0.027377860620617867, 0.014780286699533463, -0.013927439227700233, 0.024457940831780434, -0.026047997176647186, 0.029098011553287506, 0.03859497979283333, -0.00032727132202126086, 0.019629955291748047, -0.05186471343040466, 0.017187051475048065, -0.017664069309830666, 0.015698181465268135, 0.004202805459499359, -0.0010443772189319134, 0.010342586785554886, 0.009164500050246716, -0.007639492861926556, 0.005373664200305939, -0.000776507135014981, -0.014664646238088608, -0.021711481735110283, -0.055565204471349716, 0.00771176815032959, 0.020323798060417175, -0.026207001879811287, -0.0644116923213005, 0.005612172186374664, 0.007494942285120487, -0.04457936808466911, -0.001895418157801032, -0.03454756364226341, -0.0065192268230021, 0.015596996992826462, -0.04559122025966644, 0.02246314473450184, 0.010226946324110031, -0.02584562636911869, 0.00045443058479577303, -0.04440590739250183, 0.02958948351442814, -0.02019370160996914, -0.011621858924627304, -0.009894479997456074, 0.024139929562807083, -0.02921365201473236, 0.0024591649416834116, -0.015640361234545708, 0.030933802947402, -0.04345187544822693, -0.03133854269981384, 0.030239960178732872, -0.011520673520863056, -0.002339910948649049, 0.07140793651342392, -0.02348945289850235, -0.029228108003735542, 0.005377277731895447, 0.004705118015408516, 0.018502460792660713, -0.018675921484827995, 0.020453892648220062, -0.01613183319568634, -0.04813531041145325, -0.01429604273289442, -0.031280722469091415, -0.009019950404763222, -0.03897080942988396, -0.03761203587055206, 0.0028729408513754606, -0.012677077203989029, 0.02389419451355934, -0.02997976914048195, -0.02357618324458599, 0.04958081617951393, -0.002439289353787899, -0.0027464590966701508, -0.016666671261191368, 0.01429604273289442, 0.031222904101014137, 0.012416886165738106, 0.003035560017451644, 0.006833624094724655, 0.005662764888256788, 0.033246610313653946, 0.009019950404763222, 0.01194709725677967, 0.018965022638440132, 0.035588327795267105, -0.007892455905675888, 0.017172597348690033, 0.01033535972237587, 0.035212498158216476, -0.016652215272188187, 0.01092078909277916, 0.014816423878073692, -0.02412547543644905, -0.022174043580889702, -0.045215390622615814, 0.015481356531381607, -0.01334923692047596, 0.020396072417497635, -0.00924400333315134, -0.0008962129941210151, -0.01637757010757923, 0.010205264203250408, 0.018039900809526443, 0.023590639233589172, -0.008015324361622334, 0.00016973388846963644, -0.008622435852885246, 0.015553631819784641, -0.007097428664565086, 0.043018221855163574, 0.0026832183357328176, -0.015307895839214325, -0.044116806238889694, -0.011874821968376637, -0.004625615198165178, -0.039259910583496094, -0.004683435428887606, 0.0317721962928772, -0.01838682033121586, 0.011137614957988262, -0.08979475498199463, 0.012236198410391808, 0.02302689105272293, -0.031280722469091415, -0.026452738791704178, 0.029083557426929474, 0.024154385551810265, 0.0317721962928772, 0.04492628946900368, -0.03584852069616318, 0.032379306852817535, -0.03139636293053627, -0.0041269161738455296, -0.0205839890986681, 0.020555078983306885, -0.003528838511556387, 0.00018509237270336598, 0.0197455957531929, 0.009692110121250153, 0.0285053551197052, -0.02240532450377941, -0.020497258752584457, -0.005182134918868542, 0.05972825735807419, 0.007086587138473988, -0.0019044525688514113, 0.0007376591674983501, 0.028013883158564568, 0.04160162806510925, 0.0037221747916191816, 0.015842732042074203, -0.010754555463790894, -0.04093669727444649, -0.004567794967442751, -0.007523852400481701, 0.009496966376900673, 0.0027464590966701508, 0.030557971447706223, 0.012966178357601166, -0.0003071697719860822, -0.014577915892004967, -0.01980341598391533, 0.052414003759622574, -0.04171726852655411, 0.037004921585321426, -0.009583696722984314, -0.014115354046225548, 0.01809772104024887, 0.007451577112078667, 0.022737789899110794, 0.04027176275849342, -0.006558977998793125, -0.02052616886794567, -0.003794450080022216, -0.014339407905936241, 0.028837820515036583, -0.05773346126079559, 0.004614774137735367, -0.008687484078109264, -0.0005271575064398348, -0.019629955291748047, 0.0207429938018322, 0.024154385551810265, -0.033477891236543655, -0.028071703389286995, 0.014368318021297455, -0.0003037818823941052, 0.07082973420619965, -0.01213501300662756, 0.0022260774858295918, 0.0343162827193737, 0.045128658413887024, 0.019369764253497124, -0.013739523477852345, 0.022116223350167274, 0.006728824693709612, 0.03405609354376793, -0.02215958945453167, 0.0038269739598035812, -0.03978029265999794, 0.01068228017538786, 0.008174329996109009, 0.004260625224560499, 0.010154671035706997, 0.00042303602094762027, -0.016565484926104546, -0.02896791696548462, 0.011072566732764244, 0.017909804359078407, -0.0060132998041808605, 0.026669563725590706, -0.01689795032143593, -0.008080371655523777, -0.016854586079716682, 0.009562014602124691, 0.028794456273317337, 0.0033174336422234774, 0.0010172739857807755, 0.026828568428754807, 0.027536867186427116, 0.018993932753801346, 0.030875982716679573, 0.021566931158304214, 0.02733449637889862, -0.023272627964615822, -0.0046472977846860886, -0.00043703935807570815, -0.007812953554093838, -0.03651345148682594, -0.00014375997125171125, -0.0019008388044312596, 0.010053485631942749, 0.03420064225792885, 0.04807749018073082, 0.0005985293537378311, 0.01793871447443962, 0.00156656582839787, -0.032379306852817535, 0.02497832290828228, -0.023691823706030846, 0.0469789057970047, -0.01935531012713909, -0.06140504404902458, 0.03162764385342598, -0.012966178357601166, 0.011433943174779415, 0.016493210569024086, -0.012243425473570824, -0.0015313316835090518, -0.03564614802598953, 0.014310497790575027, 0.07250652462244034, 0.007296185474842787, 0.040213942527770996, 0.007863545790314674, -0.011571265757083893, 0.025354154407978058, -0.0028277686797082424, -0.002175484783947468, 0.012734897434711456, -0.0031764968298375607, -0.02308471128344536, 0.005619399715214968, 0.0038594978395849466, 0.03506794571876526, 0.007914138957858086, -0.03038451075553894, 0.014050306752324104, -0.021494656801223755, 0.028331894427537918, -0.008832034654915333, 0.009439146146178246, -0.03573288023471832, 0.06383349001407623, -0.011968779377639294, 0.04405898600816727, -0.030818162485957146, -0.059786077588796616, -0.021393470466136932, 0.015915008261799812, 0.00896935723721981, 0.05753109231591225, 0.0015367523301392794, -0.0006292462931014597, 0.004246170166879892, -0.057444360107183456, -0.028996827080845833, -0.03625326231122017, 0.008954902179539204, 0.010010120458900928, 0.014816423878073692, -0.014729693531990051, 0.004719573073089123, -0.01675340160727501, 0.02810061350464821, 0.015770457684993744, 0.033477891236543655, 0.0063421521335840225, 0.002891009673476219, 0.021595841273665428, -0.011578493751585484, 0.0035071559250354767, 0.004625615198165178, 0.042873673141002655, 0.045388851314783096, 0.017056956887245178, -0.029155831784009933, 0.011224344372749329, -0.0346342958509922, 0.010067940689623356, 0.022029493004083633, 0.037380754947662354, 0.0006608667317777872, 0.01225788053125143, -0.003892021719366312, 0.010805148631334305, 0.015495811589062214, -0.001047087600454688, -0.03584852069616318, 0.009460829198360443, -0.0007805725908838212, 0.009952300228178501, 0.011376122944056988, -0.017259327694773674, -0.021176645532250404, 0.02898237109184265, -0.012987860478460789, -0.01496097445487976, -0.04611160233616829, 0.024154385551810265, 0.011614630930125713, 0.004119688645005226, 0.015278985723853111, -0.014035851694643497, -0.03451865538954735, -0.015568086877465248, -0.0015846346504986286, 0.02233305014669895, 0.006107257679104805, -0.004188350401818752, -0.03052906133234501, -0.010299221612513065, -0.02223186381161213, -0.006909512914717197, -0.0024609719403088093, 0.05001446604728699, -0.008094826713204384, -0.018039900809526443, -0.032466039061546326, 0.029690667986869812, -0.004018503241240978, 0.022029493004083633, 0.010501592420041561, 0.018459096550941467, 0.01754842884838581, 0.007144407369196415, 0.01308181881904602, -0.003310206113383174, -0.003946227952837944, 0.022145133465528488, -0.01582827791571617, 0.03784331679344177, 0.003653513500466943, -0.006204829551279545, -0.00919341016560793, -0.002768141683191061, 0.04348078370094299, 0.008716394193470478, 0.04070541635155678, -0.027392316609621048, -0.03509685769677162, 0.002536860993131995, 0.02992194890975952, 0.008174329996109009, 0.019702229648828506, 0.02042498253285885, -0.008521250449120998, 0.018690377473831177, 0.000366345135262236, -0.013183004222810268, -0.007209455128759146, 0.013674475252628326, 0.013782888650894165, 0.0018213361036032438, -0.004564181435853243, -0.02114773541688919, -0.015958372503519058, -0.010277539491653442, 0.019673319533467293, 0.010111305862665176, -0.02692975476384163, 0.01613183319568634, 0.006591502111405134, -0.021899398416280746, 0.02224631980061531, 0.013479332439601421, -0.0469789057970047, -0.008116509765386581, -0.025961266830563545, -0.02912692166864872, -0.011433943174779415, 0.01487424410879612, -0.009504194371402264, 0.024862682446837425, 0.029155831784009933, 0.0017156335525214672, -0.018733741715550423, -0.010884650982916355, 0.03287078067660332, -0.03529922664165497, 0.00726004783064127, 0.008550160564482212, -0.04194854944944382, 0.007885228842496872, -0.02372073382139206, 0.011188207194209099, -0.005583262536674738, 0.007382915820926428, 0.019528770819306374, -0.017476152628660202, 0.013226369395852089, -0.01964440941810608, 0.010913561098277569, 0.04700781777501106, 0.011571265757083893, 0.006024141330271959, -0.005305002443492413, -0.030875982716679573, -0.017418332397937775, 0.035906340926885605, -0.021566931158304214, 0.028722180053591728, 0.030008679255843163, 0.05695289000868797, 0.0017535779625177383, -0.005294161383062601, 0.0314541831612587, 0.027132125571370125, 0.020338252186775208, 0.02373518981039524, 0.013284189626574516, 0.012322928756475449, 0.00860798079520464, 0.03819023817777634, -0.005655537359416485, -0.0023923104163259268, 0.02059844322502613, -0.03498121723532677, -0.01659439504146576, 0.008983812294900417, 0.004701504483819008, -0.01457068882882595, 0.003805291373282671, 0.014006941579282284, -0.014715239405632019, 0.010125760920345783, 0.01276380755007267, -2.607272836030461e-05, 0.007473259698599577, 0.0034692115150392056, -0.005272478796541691, -0.005550738424062729, -0.022188499569892883, 0.010797920636832714, 0.0061108716763556, -0.02701648510992527, -0.0034312671050429344, -0.004856896121054888, 0.0023489452432841063, -0.004383493214845657, 0.06487425416707993, 0.01420931238681078, 0.0023742415942251682, -0.0012738511431962252, -0.010111305862665176, -0.0048677376471459866, 0.009590924717485905, -0.014751376584172249, -0.006837237626314163, 0.015495811589062214, 0.006848079152405262, -0.002892816439270973, -0.014975429512560368, -0.015264530666172504, 0.006938423030078411, -0.02168257161974907, -0.0239664688706398, 0.005908500868827105, 0.019384220242500305, -0.0008334238664247096, 0.013248051516711712, -0.008730849251151085, 0.016074012964963913, -0.018502460792660713, -0.009287368506193161, -0.00016363566101063043, 0.005810929462313652, -0.017953170463442802, -0.017823074012994766, 0.02648164890706539, -0.014440593309700489, -0.011296619661152363, 0.03232148662209511, 0.04619833454489708, 0.014946519397199154, 0.020222611725330353, -0.02043943852186203, -0.039202090352773666, 0.005413415376096964, 0.008102054707705975, -0.015206710435450077, -0.009648744948208332, -0.006508385296911001, -0.025195149704813957, -0.029719578102231026, 0.01538017112761736, -0.0038089051377028227, 0.0004397496522869915, -0.028707725927233696, -0.05675051733851433, -0.03995375335216522, -0.03584852069616318, 0.014071988873183727, -0.015409081242978573, 0.008940447121858597, 0.0158860981464386, 0.009655972011387348, 0.038248058408498764, -0.02240532450377941, 0.02239087037742138, -0.015481356531381607, 0.01001734845340252, -0.0006247290875762701, 0.03492339700460434, -0.029069101437926292, -0.02200058288872242, 0.018025444820523262, -0.029950859025120735, 0.016869040206074715, -0.022116223350167274, 0.009692110121250153, 0.030933802947402, 0.0262359119951725, 0.007072132080793381, 0.006302400957792997, 0.021538021042943, -0.0008429099689237773, 0.037062741816043854, 0.030326690524816513, -0.05192253366112709, -0.03492339700460434, 0.003729402320459485, -0.013645565137267113, 0.013009543530642986, -0.021205555647611618, 0.009186183102428913, 0.019124029204249382, -0.013327553868293762, -0.03639781102538109, -0.011665224097669125, 0.01014021597802639, 0.000175154535099864, 0.012055509723722935, 0.005623013712465763, -0.015712637454271317, -0.0024103792384266853, -0.05533392354846001, -0.012633712030947208, -0.006627639755606651, -0.025802260264754295, 0.05527610331773758, -0.005062880460172892, -0.027189945802092552, 0.01249638944864273, 0.004719573073089123, -0.02427002601325512, -0.01989014632999897, -0.019832326099276543, 0.00608918908983469, 0.005951866041868925, -0.012568664737045765, 0.019687775522470474, 0.01856028102338314, 0.03819023817777634, 0.016970226541161537, -0.0009404815500602126, -0.007400984410196543, 0.005666378885507584, -0.01042209006845951, -0.03677364066243172, 0.001693950966000557, 0.004517202731221914, -0.009352415800094604, -0.009056087583303452, 0.023243717849254608, 0.014758603647351265, -0.003574010683223605, -0.011845911853015423, -0.004462996032088995, -0.003978752065449953, 0.011021974496543407, 0.005644696298986673, 0.03249494731426239, -0.00888985488563776, 0.032148025929927826, 0.008152646943926811, -0.0118242297321558, -0.05021683871746063, 0.019311944022774696, -0.008766986429691315, -0.044608280062675476, 0.0019695002119988203, -0.019369764253497124, 0.016406480222940445, 0.041312526911497116, -0.018141085281968117, 0.005424256902188063, 0.010588322766125202, 0.014989884570240974, 0.00654090940952301, -0.020468348637223244, 0.014635736122727394, 0.02849089913070202, 0.031743284314870834, 0.0006468634237535298, -0.017982080578804016, -0.011925414204597473, -0.005847067106515169, -0.004907488822937012, -0.005062880460172892, -0.016623305156826973, -0.011795319616794586, -0.017577338963747025, -0.005326685030013323, -0.0023037733044475317, -0.02278115600347519, 0.010877423919737339, -0.009395780973136425, -0.011036429554224014, 0.007072132080793381, 0.011072566732764244, -0.010573867708444595, -0.005478463135659695, 0.007538307458162308, 0.04348078370094299, -0.014310497790575027, 0.0020869476720690727, 0.010667825117707253, -0.015264530666172504, -0.019774505868554115, -0.011238799430429935, 0.027681417763233185, 0.03116508387029171, 0.03414282202720642, 0.008181557059288025, 0.017346058040857315, -0.039259910583496094, 0.004809917416423559, -0.003489087335765362, -0.022260773926973343, 0.004893033765256405, -0.02997976914048195, -0.025961266830563545, 0.028534265235066414, 0.041225798428058624, 0.005286933854222298, 0.01551026664674282, -0.0031692693009972572, -0.038566067814826965, 0.012424114160239697, -0.026351552456617355, -0.012864992953836918, -0.026279278099536896, 0.008405610918998718, -0.006815555039793253, 0.00869471114128828, -0.018820472061634064, 0.0021321196109056473, 0.013949121348559856, 0.01848800666630268, 0.011665224097669125, -0.014491185545921326, -0.01980341598391533, 0.005886818282306194, 0.013840708881616592, -0.004289535339921713, -0.002695866394788027, 0.05481354147195816, 0.018661467358469963, -0.04082105681300163, -0.006511999294161797, -0.014353862963616848, 0.03466320410370827, -0.005926569923758507, 0.033159881830215454, 0.030268870294094086, 0.05036138743162155, -0.0026344323996454477, -0.0023471384774893522, -0.019398674368858337, 0.003106028540059924, -0.009178955107927322, -0.012395204044878483, 0.021162189543247223, -0.023128077387809753, -0.01863255724310875, -0.0017337023746222258, -0.03498121723532677, 0.0286643598228693, -0.013905756175518036, -0.01799653470516205, -0.020265977829694748, 0.014122582040727139, 0.003881180426105857, 0.002753686625510454, -0.013696158304810524, 0.01863255724310875, 0.021639207378029823, 0.0005461297696456313, -0.01643539033830166, -0.011795319616794586, 0.01746169850230217, -0.0028223481494933367, -0.02184157818555832, -0.031107263639569283, 0.03047124110162258, 0.03142527490854263, 0.001404849928803742, 0.012373520992696285, -0.00318914488889277, 0.021422380581498146, 0.016637761145830154, 0.025252968072891235, -0.03365135192871094, -0.00924400333315134, 0.01139780506491661, 0.0034041637554764748, -0.032379306852817535, -0.012980633415281773, 0.014903154224157333, -0.012930040247738361, 0.010841285809874535, 0.002126698847860098, 0.011296619661152363, -0.006920354440808296, -0.005145997274667025, 0.0009224127279594541, -0.0005660054739564657, 0.004603932611644268, -0.021480200812220573, -0.02567216567695141, -0.007509397342801094, -0.015091069974005222, -0.0014211118686944246, 0.028476445004343987, 0.0004639166872948408, -0.004383493214845657, -0.001428339397534728, 0.02747904695570469, 0.01689795032143593, -0.006631253287196159, 0.03798786550760269, 0.004553340375423431, 0.0027717554476112127, 0.006074734032154083, 0.008145419880747795, -0.0103714969009161, 0.016796765848994255, 0.014035851694643497, -0.012937268242239952, 0.015481356531381607, -0.018184451386332512, 0.003599307034164667, -0.011014746502041817, 0.026568379253149033, 0.02685747854411602, 0.00888985488563776, -0.008174329996109009, -0.010516047477722168, 0.0025729986373335123, 0.02325817197561264, -0.008716394193470478, -0.01799653470516205, -0.03538595885038376, -0.0049400124698877335, 0.005669992417097092, 0.018589191138744354, 0.005366436671465635, 0.011954324319958687, 0.011303847655653954, 0.024096565321087837, 0.008586298674345016, 0.0068914443254470825, -0.012525299564003944, 0.03015322983264923, -0.004144985228776932, -0.0005199300358071923, -0.0021790985483676195, 0.027912698686122894, -0.009569241665303707, 0.00888262689113617, -0.0046436842530965805, 0.03923100233078003, -0.022593239322304726, 0.019210759550333023, -0.008333335630595684, -0.0036697753239423037, 0.030557971447706223, -0.0015765037387609482, -0.010624459944665432, -0.013399829156696796, 0.027392316609621048, -0.010248629376292229, -0.013276961632072926, -0.02577335014939308, 0.016247473657131195, 0.023821920156478882, 0.025946810841560364, -0.010870195925235748, 0.017042500898241997, 0.01033535972237587, 0.024862682446837425, -0.0028241549152880907, 0.021884942427277565, -0.03070252202451229, 0.005894045811146498, 0.021754847839474678, 0.007021539378911257, -0.0042317151091992855, 0.0160451028496027, 0.024053199216723442, -0.002643466927111149, 0.021104369312524796, -0.015134435147047043, -0.05420643091201782, 0.0039534554816782475, 0.020482802763581276, 0.013753978535532951, -0.018603647127747536, -0.016189653426408768, 0.01542353630065918, 0.008514023385941982, 0.01973113976418972, -0.015553631819784641, -0.039809200912714005, -0.042555660009384155, -0.012163923121988773, 0.017013590782880783, -0.033073149621486664, 0.00974270235747099, 0.03501012548804283, 0.01366724818944931, 0.028794456273317337, 0.027811512351036072, 0.022492054849863052, 0.018198905512690544, -0.004947239998728037, 0.01186036691069603, -0.002291125012561679]" -How Everactive Powers a Dense Sensor Network With Virtually No Power at All,"also have internal applications to help our in-house domain experts review and label customer data to improve our automated failure detection.About the TeamWe’re a small team of software and data engineers, spanning the Cloud and Data Science teams at Everactive.Between us, we’ve got several decades of experience managing databases, pipelines, APIs, and various other bits of backend infrastructure.About the ProjectOur key differentiator is that our sensors are batteryless: the custom low-power silicon means that they can be put in more places, without requiring servicing for well over a decade.In turn, this means that we can monitor factory devices that were formerly cost-prohibitive to put sensors on, due to the difficulty or cost associated with charging batteries; being able to collect dataeconomicallyfrom more equipment also means that our industrial data streams are more detailed and cover more equipment than our competitors’.Today, customers place our sensors on steam traps and motors, and we capture a range of metrics – from simple ones, like temperature, to more complex ones, like 3D vibrational data. (You can learn more about steam trap systems and the need for batteryless systems inthis overview video.)Everactive’s new generation of sensors in the wild, including a sensor on a hydraulic arm with a shipping container and, below, a sensor on a shipping container clasp closer upWe then use this data to inform our customers about the health of their industrial systems, so they can take action when and where required. “Action” in this sense could mean replacing a steam trap, replacing a bad bearing in a machine, or various other solutions to problems.For example, we’ll automatically alert customers if their monitored equipment has failed or if machines are off when they should be on, so customers can send a crew to fix the failure, or power on the machine remotely.In addition to receiving alerts from us, customers can use our dashboards to check the latest data and current status of their equipment at any time.One of Everactive’s dashboards, tracking the overall vibration levelAs mentioned earlier, our team’s responsible for delivering these intuitive visualizations to our customers and in-house domain experts – as well as for feeding sensor metrics into our custom analytics to automate failure detection and improve our algorithms.Using (and Choosing!) TimescaleDBBefore TimescaleDB, we stored metadata in PostgreSQL and our sensor data in",https://www.timescale.com/blog/how-everactive-powers-a-dense-sensor-network-with-virtually-no-power-at-all/,474,"[0.008111521601676941, 0.03626498952507973, 0.04110420495271683, -0.007102136500179768, 0.04906268045306206, 0.03416604921221733, 0.0009046205086633563, -0.007335351780056953, -0.0358860120177269, 0.024414733052253723, 0.037693433463573456, -0.053289707750082016, -0.010225036181509495, -0.02234494686126709, 0.060402777045965195, 0.048508793115615845, 0.00012104878987884149, -0.008876759558916092, -0.06349287927150726, -0.025566233322024345, 0.049120984971523285, 0.007739834487438202, 0.06162715703248978, -0.01074977032840252, -0.009306750260293484, -0.02544962614774704, -0.03626498952507973, 0.05923670157790184, 0.02732992358505726, -0.072413370013237, 0.01864265277981758, -0.052590060979127884, -0.05052027478814125, 0.03635244444012642, 0.03369962051510811, 0.04445667564868927, 0.015319333411753178, -0.014677991159260273, -0.005276497453451157, 0.01642710715532303, -0.0014175120741128922, 0.009000655263662338, -0.0011997836409136653, 0.013220395892858505, -0.07107237726449966, -0.00874557625502348, -0.0669328048825264, 0.004930318333208561, 0.007965762168169022, 0.011238064616918564, -0.03302912414073944, 0.005349377170205116, -0.0031046795193105936, -0.02902073599398136, 0.04232858866453171, -0.03060951456427574, 0.0019969064742326736, 0.05477645620703697, 6.109377136453986e-05, -0.01150771975517273, -0.023569326847791672, -0.024064909666776657, 0.0362066850066185, 0.009569117799401283, -0.008315584622323513, 0.020566679537296295, -0.02749026007950306, 0.04952911287546158, -0.037839192897081375, 0.0051926858723163605, 0.07340453565120697, 0.008949639275670052, 0.01598982699215412, 0.01734539121389389, 0.03469078242778778, -0.04235773906111717, -0.017476575449109077, 0.016529139131307602, -0.024108637124300003, -0.02438558079302311, -0.017301663756370544, -0.005855891853570938, -0.008308297023177147, -0.002649180591106415, -0.0324169360101223, -0.04057947173714638, -0.018001310527324677, -0.05349377170205116, -0.017666062340140343, 0.038888659328222275, -0.027912963181734085, 0.05145313963294029, 0.006209359038621187, 0.007922033779323101, 0.01954636164009571, 0.05334801226854324, 0.010203171521425247, -0.029224799945950508, 0.0022446978837251663, 0.021251749247312546, -0.03203795850276947, -0.03868459537625313, 0.0016151985619217157, -0.03090103529393673, -0.0031921351328492165, 0.0006395202362909913, 0.020654134452342987, 0.01734539121389389, 0.010800786316394806, -0.020435495302081108, -0.059499066323041916, -0.006781465373933315, -0.03189219906926155, -0.027854658663272858, -0.013905465602874756, -0.005014129914343357, -0.04060862213373184, -0.00013528313138522208, 0.003306920873001218, -0.04740102216601372, -0.020697861909866333, 0.044281765818595886, 0.027898386120796204, 0.0005989808705635369, 0.005535220727324486, -0.0035875081084668636, 0.0003154328733216971, -0.027213316410779953, -0.02999732457101345, -0.036614809185266495, 0.04795490577816963, -0.034107744693756104, 0.0527358204126358, -0.032154567539691925, -0.0006208447739481926, -0.019138235598802567, -0.02832108922302723, -0.012404141947627068, -0.031396616250276566, 0.009139127098023891, 0.005502424668520689, -0.03454502299427986, 0.023758813738822937, 0.007550347130745649, -0.010669602081179619, -0.004995909985154867, -0.035098910331726074, -0.0068251932971179485, -0.008060505613684654, -0.015887796878814697, 0.004270756151527166, 0.014867478981614113, -0.08045929670333862, -0.019371449947357178, 0.07503703981637955, 0.03617753088474274, 0.03247523680329323, 0.0772525891661644, -0.0358860120177269, -0.04512717202305794, -0.019254842773079872, 0.02023143135011196, 0.023583902046084404, -0.012702949345111847, -0.056088291108608246, -0.008672695606946945, 7.259511039592326e-05, -0.05393105000257492, -0.08080912381410599, -0.004124996718019247, -0.028977008536458015, -0.025187257677316666, 0.009109974838793278, 0.05302734300494194, 0.042678408324718475, 0.004121352452784777, 0.02734450064599514, -0.02681976556777954, -0.0021408440079540014, -0.026469942182302475, -0.07066424936056137, -0.01234583742916584, -0.01590237207710743, 0.017826398834586143, -0.007747122552245855, 0.017899278551340103, -0.014889342710375786, 0.021455813199281693, -0.002827736083418131, 0.009044382721185684, -0.05197787284851074, 0.06844870746135712, 0.030696971341967583, 0.03871374949812889, 0.007499331142753363, -0.040783535689115524, -0.005363953299820423, 0.03576940670609474, 0.00803135335445404, 0.01907993108034134, 0.07521194964647293, 0.015581700950860977, 0.09859178960323334, 0.010844513773918152, 0.0016935443272814155, 0.021980546414852142, 0.009948092512786388, 0.017447423189878464, -0.06267662346363068, -0.03232947736978531, 0.012513461522758007, -0.024035757407546043, 0.031688135117292404, 0.014065801165997982, -0.025347594171762466, -0.009255734272301197, -0.024181516841053963, -0.005156245548278093, 0.06827379763126373, -0.00040994887240231037, -0.018278254196047783, 0.08372431248426437, 0.008884047158062458, -0.0036294138990342617, -0.03416604921221733, 0.05702115595340729, 0.05022875592112541, -0.04955826327204704, 0.05568016692996025, -0.018832139670848846, -0.018234524875879288, -0.046847134828567505, -0.02333611063659191, 0.006970952730625868, 0.0062567307613790035, -0.006460794247686863, 0.021761907264590263, -0.016018979251384735, 0.04847964271903038, -0.028962431475520134, 0.007659666705876589, 0.032154567539691925, -0.004842862486839294, 0.021703604608774185, -0.0009556363802403212, 0.02394830249249935, -0.04197876527905464, -0.050928402692079544, 0.046089183539152145, 0.032999973744153976, 0.047080349177122116, -0.03037630021572113, -0.006755957379937172, -0.04014219343662262, -0.007302555721253157, -0.03262099623680115, -0.033524706959724426, 0.03667311370372772, 0.019298570230603218, 0.000557074963580817, -0.01140568871051073, 0.014000209048390388, 0.002984427846968174, -0.02377339079976082, -0.01749115251004696, -0.022534433752298355, 0.04804236441850662, -0.041395723819732666, 0.0007766253547742963, -0.025201834738254547, 0.002228299854323268, 0.0011278148740530014, 0.009671148844063282, -0.041016750037670135, -0.009554541669785976, 0.004347280133515596, 0.014102241024374962, -0.011842967011034489, -0.002731170505285263, 0.01549424510449171, 0.014000209048390388, -0.007047476712614298, 0.029487166553735733, -0.005032350309193134, -0.029428862035274506, -0.027927538380026817, -0.00814796146005392, -0.01992533728480339, -0.0017600471619516611, 0.015115270391106606, -0.001280862488783896, 0.021922243759036064, 0.014641551300883293, -0.011420264840126038, -0.003195779165253043, -0.006963664665818214, -0.003594796173274517, 0.017374543473124504, -0.027752626687288284, -0.04317399114370346, 0.006595621816813946, -0.00213902210816741, -0.02407948486506939, -0.010232323780655861, 0.014415624551475048, 0.018657227978110313, -0.030172236263751984, -0.010407235473394394, 0.007987625896930695, -0.0351572148501873, 0.015261029824614525, -0.010757057927548885, 0.03337894752621651, 0.03075527586042881, -0.040870990604162216, -0.0287875197827816, 0.04334890469908714, -0.020435495302081108, -0.007353571709245443, -0.06681619584560394, -0.025114377960562706, -0.06897344440221786, 0.015319333411753178, -0.04037540778517723, -0.0012917944695800543, 0.004139572381973267, 0.024137789383530617, 0.007353571709245443, 0.004861082416027784, -0.004653375130146742, -0.006737737450748682, 0.005954279564321041, 0.03626498952507973, -0.0027967621572315693, -0.0044274479150772095, -0.02279680036008358, 0.012455157935619354, -0.02492489106953144, -0.02635333500802517, -0.0002687442465685308, -0.023846270516514778, -0.05264836549758911, -0.06267662346363068, 0.01635422743856907, 0.05976143479347229, 0.008133385330438614, -0.0046060034073889256, -0.004660663194954395, 0.004649731330573559, 0.02182021178305149, -0.022242914885282516, -0.014816462993621826, -0.01476544700562954, -0.034195203334093094, 0.00411042058840394, -0.01469985581934452, -0.0031921351328492165, -0.012229230254888535, -0.01045825146138668, -0.028131602331995964, -0.01954636164009571, 0.010509266518056393, 0.03938424214720726, -0.019283995032310486, 0.017928430810570717, 0.033670466393232346, -0.01750572770833969, -0.0071968799456954, 0.029443439096212387, -0.010851802304387093, 0.034195203334093094, 0.008993366733193398, -0.019254842773079872, -0.005473272874951363, -0.06477556377649307, -0.017709791660308838, 0.04296993091702461, 0.00829372089356184, -0.02324865572154522, 0.049266744405031204, 0.05119077116250992, 0.04189130663871765, 0.0015896905679255724, -0.027971265837550163, 0.024575067684054375, 0.06413422524929047, -0.03947169706225395, 0.0047043911181390285, -0.0692649632692337, -0.02082904614508152, 0.02909361571073532, -0.04270756244659424, -0.009437933564186096, -0.0358860120177269, -0.018890444189310074, 0.00047144119162112474, 0.028364816680550575, 0.0006372427451424301, 0.06133563816547394, -0.011544160544872284, 0.044281765818595886, -0.01832198165357113, -0.05891602858901024, 0.0022355879191309214, 0.005673692096024752, 0.01074977032840252, 0.007623226847499609, -0.0004475275054574013, 0.02098938263952732, -0.009911652654409409, 0.020187703892588615, -0.0076086511835455894, 0.05387274548411369, -0.010144867934286594, 0.04075438156723976, -0.035273823887109756, 0.00039787814603187144, 0.03833477571606636, -0.009160990826785564, 0.03574025258421898, -0.03690633177757263, -0.026149271056056023, -0.002388635417446494, -0.015231877565383911, -0.018424013629555702, 0.024341853335499763, 0.027315348386764526, -0.04005473852157593, -0.03320403769612312, -0.06664128601551056, -0.01810334250330925, -0.003917288966476917, 0.026907222345471382, -0.010669602081179619, -0.02173275500535965, 0.001691722311079502, 0.002046100329607725, -0.009255734272301197, 0.018132494762539864, 0.002871464006602764, 0.03536127880215645, -0.010538418777287006, -0.0012435115640982985, 0.032970819622278214, -0.024881163612008095, -0.01590237207710743, -0.05407680943608284, -0.02990986965596676, 0.0008340181666426361, 0.016470834612846375, 0.018496893346309662, -0.0022829596418887377, -0.030580364167690277, 0.04591427370905876, -0.0486254021525383, -0.014925782568752766, 0.04917928948998451, 0.020639559254050255, 0.04436922073364258, 0.007506619207561016, -0.011770087294280529, 0.03664396330714226, -0.023919150233268738, -0.028918704017996788, -0.03250439092516899, -0.042678408324718475, 0.005006842315196991, 0.00632596667855978, 0.01985245756804943, -0.05081179738044739, 0.026834342628717422, 0.027927538380026817, -0.043290600180625916, -0.029880717396736145, -0.017476575449109077, -0.006216646637767553, 0.010771634057164192, -0.02377339079976082, 0.007820002734661102, 0.005662760231643915, -0.04084184020757675, -0.008002202026546001, -0.04527293145656586, 0.032970819622278214, 0.026324182748794556, 0.03734361007809639, -0.019648393616080284, 0.013730553910136223, -0.013234971091151237, -0.022840529680252075, 0.0035255602560937405, -0.008891335688531399, 0.08092572540044785, -0.017622334882616997, 0.019808730110526085, 0.00015589444956276566, -0.06267662346363068, -0.018890444189310074, 0.00207343022339046, 0.011558735743165016, 0.04460243508219719, 0.009795044548809528, -0.003255904885008931, 0.07124729454517365, -0.01566915586590767, 0.010006396099925041, -0.01924026757478714, -0.00927759800106287, 0.0122365178540349, -0.032300326973199844, -0.006832480896264315, 0.014379184693098068, 0.011332808993756771, 0.014196984469890594, -0.02712586149573326, -0.011770087294280529, 0.005498780868947506, 0.029632925987243652, -0.00038740166928619146, -0.02893327921628952, -0.014211560599505901, -0.05005384609103203, 0.018511468544602394, 0.01651456207036972, -0.0006249442812986672, -0.04952911287546158, -0.04929589480161667, 0.0042525362223386765, -0.013737842440605164, -0.014940358698368073, 0.010771634057164192, -0.0298369899392128, 0.015231877565383911, 0.01703929714858532, -0.05879942327737808, 0.023452719673514366, -0.0081844013184309, -0.05142398551106453, -0.05416426807641983, 0.04880031198263168, 0.021470388397574425, 0.0707225576043129, 0.027606867253780365, 0.04011303931474686, 0.021601572632789612, 0.01970669813454151, -0.029210222885012627, 0.00212080217897892, -0.0031137894839048386, 0.05678793787956238, 0.01719963178038597, -0.028000418096780777, 0.022082578390836716, -0.04474819451570511, 0.005087010096758604, 0.020931078121066093, -0.004533123690634966, -0.011223489418625832, 0.0005434100166894495, 0.004321772139519453, 0.025245562195777893, 0.011019425466656685, 0.006402490194886923, -0.01613558828830719, -0.029108190909028053, 0.03597346693277359, 0.013694114051759243, -0.01938602700829506, -0.0489460714161396, 0.03626498952507973, -0.01340988278388977, -0.02848142571747303, 0.0010594900231808424, -0.014371896162629128, 0.029501741752028465, 0.00932132638990879, -0.035098910331726074, -0.028816672042012215, -0.012506172992289066, 0.015363061800599098, -0.025114377960562706, -0.02727162092924118, -0.011857543140649796, 0.04815896973013878, -0.02853972837328911, 0.014488504268229008, 0.028219057247042656, 0.014677991159260273, 0.04536038637161255, -0.015333909541368484, 0.006992816459387541, 0.009999108500778675, -0.015537973493337631, 0.0358860120177269, -0.016980992630124092, 0.026076391339302063, 0.016325075179338455, -0.002964385785162449, -0.027840083464980125, 0.02781093120574951, 0.012367702089250088, -0.006712229456752539, 0.005363953299820423, -0.0035219162236899137, -0.007776274345815182, 0.005925127770751715, 0.008468632586300373, 0.02476455643773079, 0.036090075969696045, -0.016980992630124092, 0.0006449862266890705, -3.219806603738107e-05, -0.010144867934286594, -0.016456259414553642, -0.01938602700829506, -0.005068790167570114, 0.0163688026368618, 0.016237618401646614, 0.002550792880356312, 0.023729661479592323, -0.04407770186662674, -0.037227001041173935, -0.002605452900752425, -0.035565342754125595, -0.004106776788830757, -0.0011250819079577923, -0.017534879967570305, -0.03880120441317558, -0.02429812401533127, 0.016456259414553642, -0.024035757407546043, 0.028598032891750336, 0.023744238540530205, -0.011216200888156891, 0.006836125161498785, 0.017316240817308426, 0.026601126417517662, 0.026178423315286636, 0.021689027547836304, -0.03023054078221321, 0.016543714329600334, 0.005637252237647772, 0.00924115814268589, -0.0231028962880373, 0.03582770749926567, -0.022694768384099007, -0.020348040387034416, 0.02786923572421074, 0.011077729053795338, 0.0035765760112553835, -0.028874976560473442, -0.03877205401659012, 0.052910733968019485, 0.02149954065680504, 0.020012792199850082, -0.0014767269603908062, -0.02786923572421074, -0.006606553681194782, 0.013089211657643318, -0.014240712858736515, -0.06460065394639969, -0.012914299964904785, -0.013533778488636017, -0.006799685303121805, -0.023277807980775833, 0.015363061800599098, 0.046992894262075424, 0.003135653445497155, 0.05066603422164917, 0.036323290318250656, -0.044573284685611725, 0.02977868542075157, 0.018059613183140755, 0.0327376052737236, 0.005549796856939793, -0.0066284178756177425, 0.0047226110473275185, -0.013038195669651031, 0.00931403785943985, 0.02824820950627327, -0.02189309149980545, 0.018219949677586555, -0.03128001093864441, 0.011668055318295956, -0.02757771499454975, 0.009816909208893776, -0.009940804913640022, 0.009124550968408585, 0.020741591230034828, 0.026382487267255783, 0.000947437365539372, -0.025945208966732025, 0.004846506752073765, -0.005815807729959488, -0.0015988005325198174, -0.0327376052737236, 0.013985632918775082, 0.03740191087126732, -0.025114377960562706, -0.021572420373558998, -0.028612608090043068, -0.012600917369127274, -0.03256269544363022, -0.00025781229487620294, -0.030259693041443825, -0.000920562946703285, 0.014437488280236721, -0.016150163486599922, 0.02386084571480751, 0.0024560492020100355, -0.0407252311706543, 0.01779724657535553, -0.03891781345009804, 0.02763601951301098, 0.0016452614217996597, -0.012382278218865395, -0.019181963056325912, 0.02779635600745678, -0.01907993108034134, 0.0004709856875706464, -0.04993723705410957, 0.023000864312052727, -0.051686353981494904, -0.05046197399497032, 0.04294077679514885, 0.004861082416027784, -0.004573207348585129, 0.05200702324509621, -0.001754581113345921, -0.023379839956760406, 0.01597525179386139, -1.759363840392325e-05, 0.013759706169366837, -0.014444775879383087, 0.02409406192600727, -0.01620846800506115, -0.054339177906513214, -0.02014397643506527, -0.029793262481689453, -0.00427804421633482, -0.03265015035867691, -0.011179761029779911, 0.004861082416027784, 0.0022392317187041044, 0.013271410949528217, -0.02394830249249935, -0.0025271070189774036, 0.041016750037670135, 0.017972158268094063, -0.02999732457101345, -0.022986289113759995, 0.014568671584129333, 0.0066466378048062325, -0.008038641884922981, 0.012586341239511967, -0.010443675331771374, 0.012790404260158539, 0.012710236944258213, 0.015086118131875992, 0.0036950057838112116, -0.005655472166836262, 0.049645718187093735, -0.01953178644180298, 0.03877205401659012, 0.016908112913370132, 0.016325075179338455, -0.02364220656454563, 0.007623226847499609, 0.025522505864501, -0.00803135335445404, -0.03235863149166107, -0.04740102216601372, 0.014124104753136635, -0.01718505658209324, 0.02839396893978119, -0.02098938263952732, 0.022024275735020638, -0.023831693455576897, 0.011952286586165428, 0.02218461036682129, 0.03871374949812889, 0.003851697314530611, 0.010443675331771374, -0.0033615806605666876, 0.0056846244260668755, -0.0029151919297873974, 0.021689027547836304, -0.00935047771781683, -0.007109424564987421, -0.0386262945830822, -0.0057830121368169785, -0.0015186327509582043, -0.031396616250276566, -0.0007998557994142175, 0.023977452889084816, -0.023350687697529793, 0.015217302367091179, -0.08232501894235611, -0.009518101811408997, 0.027475684881210327, -0.031250856816768646, -0.014036648906767368, 0.006595621816813946, 0.05034536495804787, 0.027519412338733673, 0.0469345897436142, -0.03626498952507973, 0.018905019387602806, -0.027446532621979713, 0.003953729290515184, -0.010574858635663986, 0.018190797418355942, -0.024589644744992256, -0.008862183429300785, 0.04317399114370346, 0.019604666158556938, 0.04311569035053253, -0.018963323906064034, -0.005538864526897669, -0.026528246700763702, 0.05553440749645233, -0.015946099534630775, -0.010297915898263454, -0.004930318333208561, 0.045564450323581696, 0.030842730775475502, 0.022898832336068153, 0.014459352008998394, -0.010873666033148766, -0.04014219343662262, -0.006759601179510355, 0.00744102755561471, 0.021878516301512718, 0.005130738019943237, 0.024371003732085228, 0.014984086155891418, 0.015348485670983791, -0.03133831173181534, -0.03160068020224571, 0.06022786721587181, -0.03028884343802929, 0.03993812948465347, -0.01674777828156948, 0.006486302241683006, 0.021222596988081932, 0.0015988005325198174, 0.025945208966732025, 0.046613920480012894, 0.016004404053092003, -0.0016953663434833288, -0.0035492461174726486, -0.02053752727806568, 0.03970491513609886, -0.027096709236502647, -0.024210669100284576, -0.007965762168169022, -0.005877755582332611, -0.01362852193415165, 0.002020592335611582, 0.008075081743299961, -0.04906268045306206, -0.031921353191137314, 0.017768094316124916, -0.014452064409852028, 0.053960204124450684, -0.007674242835491896, 0.0061765629798173904, 0.005305649247020483, 0.036702267825603485, 0.0005488760070875287, 0.010472826659679413, 0.013234971091151237, 0.0019222047412768006, 0.03113424964249134, -0.03576940670609474, -0.002208257792517543, -0.037518519908189774, 0.021878516301512718, 0.008198977448046207, -0.011114168912172318, 0.02915192022919655, -0.0034071304835379124, 0.0011177939595654607, -0.043144840747117996, 0.015946099534630775, 0.017709791660308838, -0.009707588702440262, 0.043290600180625916, -0.004952182527631521, -0.01606270670890808, -0.00954725407063961, 0.020654134452342987, 0.029210222885012627, 0.020814470946788788, -0.008672695606946945, 0.03364131599664688, 0.014998662285506725, 0.03932593762874603, 0.004347280133515596, 0.017097601667046547, 0.02492489106953144, -0.016835233196616173, -0.004485751502215862, -0.023292383179068565, -0.007462891284376383, -0.02976411022245884, -0.007127644494175911, -0.009416069835424423, 0.022140882909297943, 0.025566233322024345, 0.031629834324121475, -0.010064700618386269, 0.018045037984848022, -0.01629592292010784, -0.023729661479592323, 0.01667489856481552, -0.023598479107022285, 0.031250856816768646, -0.020624982193112373, -0.052152782678604126, 0.03498230502009392, 0.01337344292551279, 0.014852902851998806, 0.02673231065273285, -0.012396853417158127, 0.003920933231711388, -0.0019877965096384287, -0.0007174105267040431, 0.07439570128917694, 0.00020326631783973426, 0.03643989935517311, 0.004026609007269144, -0.006161986850202084, 0.03235863149166107, -0.009824196808040142, -0.01953178644180298, 0.0019586444832384586, -0.02378796599805355, -0.007287980057299137, -0.016922689974308014, 0.019327722489833832, 0.010757057927548885, -0.002341263461858034, -0.024487612769007683, 0.009918940253555775, -0.03506975993514061, 0.021310053765773773, 0.014277152717113495, -0.0075357710011303425, -0.06057768687605858, 0.0631430596113205, -0.011449416168034077, 0.0551554299890995, -0.03743106499314308, -0.039355091750621796, -0.005797587800770998, 0.025522505864501, 0.013992921449244022, 0.05232769623398781, -0.017359968274831772, 0.012163638137280941, 0.02340899221599102, -0.03259184584021568, -0.03705209121108055, -0.03075527586042881, -0.0032668369822204113, 0.01362852193415165, 0.0144739281386137, -0.00837388914078474, 0.013169379904866219, -0.01983788050711155, 0.03227117657661438, 0.01386173814535141, 0.022140882909297943, 0.013366155326366425, -0.002605452900752425, 0.028204482048749924, -0.007681530900299549, 0.0046460870653390884, -0.003532848320901394, 0.05716691538691521, 0.029414286836981773, 0.01264464482665062, -0.03221287205815315, 0.0015022348379716277, -0.030113933607935905, 0.03434096276760101, 0.032533541321754456, 0.023277807980775833, 0.004452955909073353, 0.005043282173573971, -0.026615701615810394, 0.012994468212127686, -0.006595621816813946, 0.01318395510315895, -0.0007816358120180666, -0.0027657884638756514, -0.016995569691061974, -0.0005520644481293857, 0.017462000250816345, -0.02846684865653515, -0.02644079178571701, 0.0033907326869666576, 0.004380075726658106, -0.012010591104626656, -0.025843176990747452, 0.007951186038553715, 0.012047030963003635, 0.012753964401781559, 0.013220395892858505, -0.027694324031472206, -0.016223043203353882, -0.002379525452852249, 0.016762353479862213, 0.012790404260158539, 0.008191688917577267, -0.01045096293091774, -0.011034001596271992, -0.009969956241548061, -0.01582949236035347, 0.0018966967472806573, 0.006402490194886923, 0.061918675899505615, 0.001450308016501367, -0.022986289113759995, -0.014299016445875168, 0.020872773602604866, 0.022242914885282516, 0.018584348261356354, 0.005003198049962521, 0.005199973471462727, 0.02855430543422699, -0.0017737121088430285, 0.01916738785803318, 0.004872014746069908, -0.0010941079817712307, 0.02066871151328087, -0.020027369260787964, 0.015100694261491299, -0.018992476165294647, -0.01772436685860157, 0.00045048826723359525, 0.005673692096024752, 0.06256002187728882, 0.016004404053092003, 0.04317399114370346, -0.01781182363629341, -0.027315348386764526, 0.008075081743299961, 0.030113933607935905, 0.01907993108034134, 0.015640005469322205, 0.013264123350381851, 0.005527932662516832, 0.01998363994061947, -0.009372342377901077, -0.02990986965596676, -0.005006842315196991, 0.014131393283605576, 0.0074155195616185665, 0.023379839956760406, -0.0272570438683033, -0.0055133565329015255, -0.009984532371163368, -0.004063048865646124, 0.00639884639531374, 0.012170926667749882, -0.032679300755262375, 0.020945653319358826, 0.008067794144153595, -0.021951396018266678, 0.01272481307387352, -0.005360309034585953, -0.07404587417840958, -0.011923135258257389, -0.03113424964249134, -0.04745932295918465, -0.022286642342805862, -0.0023157557006925344, -0.013198531232774258, 0.014269864186644554, 0.01629592292010784, -0.00855608843266964, -0.016456259414553642, -0.022855104878544807, 0.04057947173714638, -0.031921353191137314, 0.0031757373362779617, 0.0014229781227186322, -0.022665617987513542, 0.0057866559363901615, -0.0030755274929106236, 0.00924115814268589, -0.0024979549925774336, 0.019867032766342163, 0.018380284309387207, -0.04401939734816551, -0.0007456514285877347, 0.0034836544655263424, 0.0031739152036607265, 0.03955915570259094, 0.0263679102063179, -0.013300563208758831, -0.021951396018266678, -0.02066871151328087, -0.0146561274304986, 0.02788381092250347, -3.6760172861249885e-06, 0.03133831173181534, 0.04885861650109291, 0.05705030634999275, -0.021951396018266678, -0.011092305183410645, 0.021455813199281693, 0.019036203622817993, 0.027096709236502647, 0.03970491513609886, 0.02364220656454563, 0.014087664894759655, 0.03279590979218483, 0.036556508392095566, 0.014408336021006107, 0.0070438324473798275, 0.02915192022919655, -0.009190142154693604, -0.02884582430124283, 0.0018292829627171159, 0.0037751735653728247, -0.02082904614508152, 0.026950949802994728, 0.026921797543764114, 0.0031392972450703382, 0.028729217126965523, 0.02333611063659191, -0.013249547220766544, -0.0015696486225351691, -0.0024760912638157606, 0.022053426131606102, -0.020027369260787964, -0.018657227978110313, 0.02053752727806568, 0.004299907945096493, -0.021922243759036064, 0.021076837554574013, 0.003910001367330551, 0.013978345319628716, -0.0044493116438388824, 0.06739924103021622, 0.00950352568179369, -0.008228129707276821, -0.008111521601676941, -0.013497338630259037, -0.010698754340410233, 0.004066692665219307, -0.007302555721253157, -0.007827290333807468, 0.030026476830244064, -0.008789303712546825, 0.01045825146138668, -0.01803046278655529, 0.018977899104356766, 0.0077325464226305485, -0.02696552500128746, -0.02469167485833168, 0.009452509693801403, 0.0003657655033748597, -0.0043327040039002895, 0.00632596667855978, 0.006169274915009737, 0.0012817734386771917, -0.025478778406977654, -0.02394830249249935, -0.0041359285824000835, 0.01808876544237137, -0.017549455165863037, -0.008133385330438614, 0.038888659328222275, -0.012812268920242786, -0.0034636124037206173, 0.020639559254050255, 0.04460243508219719, 0.00039423417183570564, 0.016266770660877228, -0.009386918507516384, -0.021951396018266678, 0.0038772053085267544, 0.01871553249657154, -0.016572866588830948, -0.01253532525151968, -0.007973049767315388, -0.008242704905569553, -0.005185397807508707, 0.0182636771351099, -0.001140568871051073, -0.00042042534914799035, -0.01810334250330925, -0.016645746305584908, -0.03880120441317558, -0.01366496179252863, 0.004482107702642679, -0.024720827117562294, -0.0053894612938165665, 0.006413422059267759, 0.010407235473394394, 0.018992476165294647, -0.023744238540530205, 0.015873219817876816, -0.020187703892588615, -0.004401939921081066, -0.0019914405420422554, 0.02409406192600727, -0.02326323091983795, -0.020420920103788376, 0.021003957837820053, -0.03235863149166107, 0.01612101122736931, -0.019969064742326736, 0.014408336021006107, 0.021178869530558586, 0.04413600638508797, -0.003649455960839987, 0.022024275735020638, 0.013103787787258625, 0.01743284799158573, 0.028612608090043068, 0.017520302906632423, -0.058128926903009415, -0.054047659039497375, 0.01056028250604868, -0.012819556519389153, 0.012484309263527393, -0.017534879967570305, 0.010013684630393982, 0.018773837015032768, -0.007462891284376383, -0.04183300584554672, -0.010764346458017826, 0.004106776788830757, -0.005673692096024752, 0.00012150428665336221, 0.026703158393502235, -0.0024924890603870153, -0.013074635528028011, -0.04221197962760925, 0.018380284309387207, -0.001677146414294839, -0.054572392255067825, 0.03323318809270859, -0.0013264123117551208, -0.04498141258955002, 0.026980102062225342, -0.003673141822218895, -0.002785830292850733, -0.01900705136358738, -0.03839307650923729, 0.007798138540238142, -0.0013145693810656667, -0.015960676595568657, 0.028233634307980537, 0.00725518399849534, 0.04028795287013054, 0.013402595184743404, 0.0009729453013278544, -0.010079275816679, -0.017738942056894302, 0.0004882946377620101, -0.020931078121066093, 0.0028423122130334377, -0.00950352568179369, -0.0163688026368618, 0.0017855550395324826, 0.006555537693202496, -0.011791951023042202, 0.0012462445301935077, -0.005061502102762461, -0.004846506752073765, 0.004842862486839294, 0.01359208207577467, 0.000938327400945127, 0.032825060188770294, -0.0008276412263512611, 0.004270756151527166, 0.013730553910136223, -0.022155458107590675, -0.045710209757089615, 0.014969510957598686, -0.008045929484069347, -0.0236276313662529, -0.028816672042012215, -0.01041452307254076, 0.01687896065413952, 0.025056075304746628, -0.0008321962086483836, 0.009809620678424835, 0.02149954065680504, 0.022913409397006035, 0.007284335792064667, -0.015275605954229832, 0.016018979251384735, 0.01976500079035759, 0.019881609827280045, -0.005127093754708767, -0.02422524429857731, 0.002288425574079156, -0.006369694601744413, -0.016543714329600334, -0.0048027788288891315, -0.017913853749632835, 0.004117708653211594, -0.04052116721868515, -0.015844067558646202, 0.010297915898263454, -0.005367597099393606, 0.020712438970804214, 0.00034595129545778036, -0.014058513566851616, 0.005108873825520277, 0.007696106564253569, -0.020624982193112373, 0.004463887773454189, 0.006497234106063843, 0.02476455643773079, -0.021149717271327972, -0.0049193864688277245, 0.0021408440079540014, -0.023365262895822525, -0.037547674030065536, 0.015363061800599098, 0.022665617987513542, 0.02530386671423912, 0.004405583720654249, -0.012877860106527805, 0.02460421994328499, -0.037693433463573456, 0.005531576927751303, 0.004004744812846184, -0.016223043203353882, -0.003678607754409313, -0.030551211908459663, -0.034807391464710236, 0.030084781348705292, 0.028670912608504295, 0.030726123601198196, 0.015144421719014645, 0.016980992630124092, -0.0345158725976944, 0.01363581046462059, -0.022971712052822113, -0.0014703499618917704, -0.008803879842162132, -0.0011023069964721799, 0.0018602568889036775, 0.007167728152126074, -0.013256835751235485, -0.007051120512187481, 0.004292620345950127, 0.013089211657643318, 0.016310498118400574, -0.02301543951034546, -0.013060060329735279, 0.029487166553735733, 0.0027512123342603445, -0.030580364167690277, -0.01945890672504902, 0.026921797543764114, 0.01629592292010784, -0.04579766467213631, 0.004602359142154455, -0.020246008411049843, 0.02939971163868904, -0.011026713065803051, 0.02523098699748516, 0.00833744928240776, 0.04568105936050415, -2.6646675905794837e-05, 0.006872565019875765, -0.007025612518191338, -0.004864726681262255, -0.01711217686533928, -0.014218849129974842, 0.02112056501209736, -0.023656781762838364, -0.015086118131875992, -0.002951631788164377, -0.016572866588830948, 0.01970669813454151, -0.01549424510449171, -0.029443439096212387, -0.007105780299752951, -0.004019320942461491, 0.015931524336338043, 0.011566024273633957, -0.021222596988081932, 0.011952286586165428, 0.004270756151527166, -0.013912753202021122, -0.0018156180158257484, -0.01795758306980133, 0.008308297023177147, -0.004321772139519453, -0.02182021178305149, -0.021718179807066917, 0.029968172311782837, 0.030405452474951744, 0.019444329664111137, 0.008505072444677353, -0.013825297355651855, 0.001224380568601191, -0.002683798549696803, 0.01674777828156948, -0.0437861829996109, -0.01953178644180298, 0.0012681084917858243, -0.001423889072611928, -0.022082578390836716, -0.020318888127803802, 0.007929322309792042, -0.004591427277773619, 0.01242600567638874, 0.005746572278439999, 0.005823095794767141, 0.0023376194294542074, 0.015552548691630363, 0.001581491669639945, -0.007171371951699257, -0.01687896065413952, -0.0348365418612957, -0.026630278676748276, -0.007298911921679974, -0.0013847161317244172, -0.01477273553609848, 0.029793262481689453, -0.009088111110031605, -0.02165987528860569, -0.003428994445130229, 0.017855551093816757, 0.018875867128372192, -0.011529584415256977, 0.02445846050977707, -0.010079275816679, -0.0014712609117850661, 0.002886040136218071, 0.02537674643099308, 0.006315034348517656, 0.014852902851998806, 0.01246244553476572, -0.011493144556879997, 0.006803329102694988, -0.025522505864501, 0.008767439983785152, -0.014597823843359947, 0.015800340101122856, 0.019954489544034004, 0.007557635195553303, 0.009649285115301609, -0.016485409811139107, 0.010319779627025127, 0.007295267656445503, -0.010006396099925041, -0.01253532525151968, -0.0313674658536911, 0.028729217126965523, 0.002279315609484911, 0.013052771799266338, -0.004485751502215862, 0.014590535312891006, 0.007871017791330814, 0.012396853417158127, 0.0029406999237835407, 0.0003949174133595079, -0.004478463437408209, 0.03690633177757263, -0.008862183429300785, -0.010246899910271168, -0.019488058984279633, 0.006522742100059986, -0.002749390434473753, 0.019327722489833832, 0.0011569667840376496, 0.03486569598317146, -0.04194961115717888, 0.033145733177661896, -0.005772080272436142, -0.017097601667046547, 0.016645746305584908, 0.028117027133703232, -0.011872119270265102, -0.007153152022510767, 0.032446086406707764, -0.011930422857403755, -0.011944998987019062, -0.020697861909866333, 0.006143766921013594, 0.02082904614508152, 0.019356874749064445, -0.0007588609005324543, -0.0025744789745658636, -0.006070887204259634, 0.01712675206363201, -0.0003789749462157488, 0.004172368440777063, -0.030317995697259903, 0.001444841967895627, 0.024516765028238297, 0.01351920235902071, -0.021572420373558998, 0.02097480557858944, 0.015450517646968365, 0.010786210186779499, 0.013205819763243198, -0.004536767490208149, -0.05014130100607872, 0.008461344987154007, 0.008206265047192574, 0.002406855346634984, -0.01687896065413952, -0.031396616250276566, 0.010480115190148354, -0.013774282298982143, 0.002836846048012376, -0.027840083464980125, -0.021951396018266678, -0.042532648891210556, -0.011376536451280117, -0.003119255416095257, -0.004503971431404352, 0.004493039567023516, 0.04337805509567261, 0.008155249059200287, 0.04387363791465759, 0.008738287724554539, 0.015814917162060738, 0.0024505832698196173, -0.004522191360592842, 0.02543504908680916, 0.002100760117173195]" -How Everactive Powers a Dense Sensor Network With Virtually No Power at All,"OpenTSDB. Over time, OpenTSDB became an increasingly slow and brittle system.Our data is very well-suited to traditional relational database models: we collect dozens of metrics in one packet of data, so it makes sense to store those together. Other time-series databases would force us to either bundle metrics into JSON blobs (making it hard to work with in-database) or to store every metric separately (forcing heavy, slow joins for most queries of interest).TimescaleDB was an easy choice because it let us double down on PostgreSQL, which we already loved using for metadata about our packet streams.We looked briefly at competitors like Influx but stopped considering them once it was clear TimescaleDB would exceed our needs.Our evaluation criteria were pretty simple: will it handle our load requirements, and can we understand how to use it? The former was easy to test empirically, and the latter was essentially “free” as TimescaleDB is “just” a PostgreSQL extension.This “just PostgreSQL” concept also lets us carefully manage our schema as code, testing and automating changes through CI/CD pipelines. We usesqitch, but popular alternatives includeFlywayandLiquibase. We like sqitch because it encourages us to write tests for each migration and is lightweight (no JVM).We previously usedAlembic, the migration component of the popularSQLALchemy Python ORM, but as our TimescaleDB database grew to support many clients, it made less sense to tie our schema management to any one of them.We maintain a layer of abstraction within TimescaleDB by separating internal and external schemas.“The capacity of Timescale to support both traditional schemas and time-series data in the same database allowed us to consolidate into one storage solution”Our data is stored as (hyper)tables in internal schemas like “packets” and “metadata,” but we expose them to clients through an “API” schema only containing views, functions, and procedures. This allows us to refactor our data layout while minimizing interruption in downstream systems by maintaining an API contract. This is a well-known pattern in the relational database world—yet another advantage of TimescaleDB being “simply” a PostgreSQL extension.Current Deployment & Future PlansAnother example of an Everactive dashboardWe useTimescaleand love it. We already used PostgreSQL on Amazon RDS and didn’t want to have to manage our own database (OpenTSDB convinced us of that!).It had become normal for OpenTSDB to crashmultiple times per weekfrom users asking for slightly too much data",https://www.timescale.com/blog/how-everactive-powers-a-dense-sensor-network-with-virtually-no-power-at-all/,507,"[-0.005802582483738661, -0.017297323793172836, 0.05608094483613968, -0.0008437610813416541, 0.06736552715301514, 0.009710153564810753, -0.021301070228219032, 0.0046449159272015095, -0.0377577506005764, -0.0032485914416611195, 0.02369477041065693, -0.04434042423963547, 0.008292457088828087, -0.0188788753002882, 0.04861488565802574, 0.020346440374851227, 0.003341204719617963, -0.006586234085261822, -0.045138321816921234, 0.0025860497262328863, -0.015359568409621716, 0.024122215807437897, 0.03513608127832413, 0.005980685353279114, -0.01397036761045456, -0.0021425741724669933, -0.028995102271437645, 0.03490810841321945, 0.018793385475873947, -0.07420466840267181, 0.033540282398462296, -0.04619269073009491, -0.04790247604250908, 0.026188205927610397, 0.03807121142745018, 0.0319729782640934, 0.054599132388830185, 0.019619781523942947, 0.015288326889276505, -0.006889008451253176, -0.014903625473380089, 0.022626154124736786, 0.04060739278793335, 0.01996173895895481, -0.014704150147736073, 0.01335057057440281, -0.01980500854551792, -0.025589780882000923, 0.0008050237665884197, 0.031431544572114944, -0.030690640211105347, 0.02757028117775917, -0.01541656069457531, -0.03151703625917435, 0.03242892026901245, -0.05323130264878273, -0.020417680963873863, 0.02875288389623165, 0.03285636752843857, -0.030491163954138756, 0.013094102963805199, -0.046420659869909286, 0.030063718557357788, 0.04416944459080696, -0.016257205978035927, 0.02637343294918537, -0.03735880181193352, 0.051806483417749405, -0.03653240576386452, 0.03476562723517418, 0.02048892341554165, 0.007850762456655502, 0.0004924536915495992, -0.020460426807403564, 0.04741803556680679, -0.065769724547863, -0.021429304033517838, 0.08115778863430023, 0.018479924649000168, -0.028795627877116203, 0.015373815782368183, 0.014390690252184868, -0.028852621093392372, 0.014575916342437267, 0.020303696393966675, -0.033226821571588516, -0.030377179384231567, -0.022640401497483253, 0.00430652080103755, 0.010921251028776169, -0.012061107903718948, 0.04072137922048569, 0.0052682748064398766, 0.0004902274231426418, 0.03624743968248367, 0.008520428091287613, 0.005642290227115154, -0.00174629595130682, -0.01176901999861002, 0.013649783097207546, -0.01417696662247181, -0.013101226650178432, -0.036133453249931335, -0.004698346368968487, 0.02302510291337967, -0.008370822295546532, 0.02611696533858776, 0.018736394122242928, 0.022626154124736786, 0.011106478050351143, -0.08850986510515213, -0.005453501362353563, -0.057648248970508575, -0.004652039613574743, -0.021030355244874954, -0.005717093590646982, -0.029265819117426872, 0.017097849398851395, 0.005189909599721432, -0.02348104678094387, -0.03430968523025513, -0.007822265848517418, -0.012837635353207588, 0.018280450254678726, 0.04211770370602608, -0.017140593379735947, -0.007800893858075142, -0.030405675992369652, -0.03408171236515045, 0.010066358372569084, 0.052119944244623184, -0.015502050518989563, 0.038242191076278687, -0.019007109105587006, -0.02202772907912731, -0.005916568450629711, -0.07072810083627701, -0.04211770370602608, -0.01649942435324192, -0.023452550172805786, -0.012538422830402851, -0.04550877586007118, 0.030947107821702957, 0.008584544993937016, -0.0508945994079113, 0.023623527958989143, 0.0032592774368822575, 0.059614501893520355, -0.019163839519023895, 0.0010436811717227101, 0.0155732911080122, -0.0033216134179383516, -0.01872214488685131, -0.023110592737793922, 0.05052414536476135, -0.027997728437185287, 0.0427161268889904, 0.04904233291745186, -0.024378683418035507, -0.03402471914887428, -0.017112096771597862, 0.029607776552438736, -0.01243868563324213, 0.019477300345897675, -0.012317575514316559, 0.010686155408620834, -0.03470863401889801, -0.03165951743721962, -0.0876549705862999, -0.026572907343506813, -0.0062727732583880424, -0.04308658093214035, -0.01567302830517292, 0.02752753719687462, 0.028681641444563866, -0.01459016464650631, -0.016798637807369232, -0.05673636496067047, 0.04357101768255234, -0.059671495109796524, -0.07260886579751968, -0.003243248211219907, -0.015046107582747936, 0.0344521664083004, -0.025575533509254456, -0.0018665152601897717, -0.06349001079797745, 0.04308658093214035, 0.016527920961380005, 0.04237417131662369, -0.059044573456048965, 0.05858863145112991, 0.018750641494989395, 0.027499040588736534, 0.001056148437783122, -0.04411245137453079, 0.005371574312448502, 0.029778754338622093, -0.03707383573055267, 0.03202997148036957, 0.0443689189851284, 0.003608358558267355, 0.05551101639866829, -0.018080975860357285, 0.003907571081072092, 0.011049484834074974, 0.0019235080108046532, 0.011277456767857075, -0.042089205235242844, -0.03191598504781723, 0.010871382430195808, 0.008627289906144142, -0.009467934258282185, 0.0016278577968478203, 0.0030847368761897087, -0.015815511345863342, -0.033967725932598114, -0.030605150386691093, 0.009218590334057808, -0.016314197331666946, 0.019676774740219116, 0.027242572978138924, 0.008320953696966171, -0.017625033855438232, -0.021500544622540474, 0.052319418638944626, 0.007523053791373968, -0.022098969668149948, 0.034537654370069504, -0.028325436636805534, -0.02162878029048443, -0.05950051546096802, -0.011270332150161266, -0.0434570349752903, -0.0014942807611078024, 0.003499716054648161, -0.003245029365643859, -0.02214171551167965, -0.02033219300210476, -0.04912782087922096, 0.0019056977471336722, 0.02694336138665676, -0.00349259190261364, 0.00990962889045477, -0.007131228223443031, 0.004484623204916716, -0.032514411956071854, -0.05271836742758751, -0.005717093590646982, 0.041148822754621506, 0.027598777785897255, -0.0075729223899543285, 0.03097560442984104, -0.02276863530278206, -0.03487961366772652, -0.07414767146110535, -0.02483462542295456, 0.014718398451805115, -0.01507460419088602, 0.00331092718988657, 0.016670404002070427, -0.04664863273501396, -0.0005815049516968429, -0.006404569372534752, -0.048500899225473404, 0.006995869800448418, 0.052632879465818405, -0.060127437114715576, 0.02570376731455326, -0.010308578610420227, 0.04670562595129013, 0.028724387288093567, 0.02275438793003559, -0.04439741373062134, -0.004787398036569357, -0.04798796400427818, -0.01367827970534563, -0.017140593379735947, 0.013664031401276588, -0.011996991001069546, 0.015402312390506268, -0.04713307321071625, 0.012061107903718948, 0.007494557183235884, 0.02747054398059845, -0.012581167742609978, -0.00017487448349129409, 0.016884125769138336, 0.009161598049104214, -0.007138351909816265, -0.01159091666340828, 0.010101979598402977, 0.01362841110676527, 0.0024827502202242613, 0.009717277251183987, 0.0029315687716007233, -0.007843638770282269, 0.01665615476667881, -0.038726627826690674, -0.028938110917806625, 0.03168801590800285, 0.008413566276431084, 0.017454054206609726, -0.04904233291745186, 0.022113218903541565, 0.0065541756339371204, 0.0026840062346309423, 0.015872502699494362, -0.01500336267054081, 0.0017151279607787728, -0.026202453300356865, -0.019220832735300064, -0.011890129186213017, 0.005018931347876787, -0.008135726675391197, -0.01795274205505848, 0.03146004304289818, 0.012068231590092182, -0.01738281361758709, -0.05858863145112991, -0.03961001709103584, -0.08822490274906158, -0.013029986061155796, 0.030947107821702957, 0.01986200176179409, 0.010187468491494656, 0.026758134365081787, -0.00990250427275896, 0.027869494631886482, 0.017183339223265648, 0.009289831854403019, -0.036703381687402725, 0.029408300295472145, 0.021486297249794006, -0.023267323151230812, -0.05588147044181824, -0.012965869158506393, 0.01422683522105217, -0.02105885185301304, 0.03051966056227684, -0.0029778755269944668, 0.012937372550368309, -0.06616867333650589, 0.025618277490139008, 0.008912254124879837, 0.027299566194415092, -0.021757014095783234, 0.0020517418161034584, 0.012688028626143932, 0.002000092063099146, -0.03553503006696701, -0.01815221644937992, 0.0002687122905626893, 0.03248591348528862, 0.015231333673000336, -0.02597448229789734, 0.000618906517047435, -0.032257940620183945, -0.02529056929051876, -0.0027748383581638336, -0.0045701125636696815, 0.021557537838816643, 0.00618372205644846, -0.013101226650178432, -0.010151848196983337, 0.019078349694609642, -0.017040856182575226, 0.028938110917806625, -0.02896660566329956, -0.033141329884529114, 0.009353948757052422, 0.026102716103196144, -0.034110210835933685, -0.005781210493296385, -0.03584849089384079, 0.010094854980707169, 0.04243116453289986, 0.04245965927839279, -0.012346072122454643, 0.05685034766793251, 0.023039352148771286, 0.023936988785862923, -0.02400822937488556, 0.007084921468049288, 0.032656893134117126, 0.0393250547349453, 0.005870261695235968, 0.024250449612736702, -0.05183497816324234, -0.025062598288059235, 0.019990235567092896, 0.006693095434457064, -0.02700035460293293, -0.032713886350393295, -0.016584914177656174, -0.00013101672811899334, -0.014362193644046783, 0.02752753719687462, 0.04545178264379501, -0.009453685954213142, 0.04123431444168091, -0.011484055779874325, -0.055738989263772964, -0.012951620854437351, 0.0012707620626315475, 0.022127466276288033, 0.02772701159119606, 0.0155732911080122, -0.008320953696966171, -0.016128970310091972, -0.0069495635107159615, -0.035563524812459946, 0.031574029475450516, -0.029465293511748314, 0.04864338040351868, -0.01675589196383953, -0.0336257703602314, 0.05300333350896835, 0.03368276357650757, 0.0780801773071289, -0.02503410167992115, -0.011904377490282059, -0.01753954403102398, -0.007138351909816265, -0.048956841230392456, 0.061324287205934525, 0.03901159390807152, -0.027684267610311508, -0.02819720283150673, -0.05197746306657791, 0.008826764300465584, -0.007914879359304905, 0.0402369387447834, -0.014369317330420017, -0.012958744540810585, 0.013500177301466465, 0.023680521175265312, -0.03844166547060013, 0.03428118675947189, 0.004990434739738703, -0.023053599521517754, 0.014604412950575352, 0.007808018010109663, 0.024692144244909286, -0.020560164004564285, -0.054285671561956406, -0.03336930274963379, -0.03077612817287445, -0.004420506302267313, 0.026102716103196144, 0.0484154112637043, 0.011419938877224922, -0.028425173833966255, 0.013357695192098618, 0.0006723373080603778, -0.038555651903152466, 0.025775007903575897, -0.033141329884529114, 0.04379899054765701, -0.030947107821702957, -0.0041747246868908405, 0.020004482939839363, -0.04724705591797829, -0.028168706223368645, 0.009809890761971474, -0.04251665249466896, 0.05639440566301346, 0.013728148303925991, 0.025775007903575897, -0.024392932653427124, 0.0019751577638089657, 0.018123719841241837, -0.013065606355667114, -0.03089011460542679, -0.011284580454230309, 0.017183339223265648, 0.05400070920586586, 0.013514424674212933, 0.006422379519790411, -0.01882188208401203, 0.02332431636750698, -0.0042566522024571896, -0.0225976575165987, 0.07209593057632446, -0.0027089405339211226, -0.0016812884714454412, 0.009361072443425655, 0.015145844779908657, -0.0002724969817791134, 0.03570600971579552, -0.031374555081129074, 0.002135450253263116, 0.052119944244623184, -0.01712634600698948, -0.03770075738430023, -0.0036867237649858, -0.08258261531591415, -0.013464556075632572, -0.013984615914523602, -0.006953125353902578, 0.049070827662944794, -0.02137231081724167, 0.0010703966254368424, 0.07637039572000504, -0.017154842615127563, 0.0011095792287960649, -0.00758004654198885, -0.008962122723460197, 0.023623527958989143, -0.05881660059094429, -0.037843238562345505, 0.015217086300253868, 0.031260568648576736, 0.0053751361556351185, -0.013664031401276588, 0.00030411017360165715, -0.015915248543024063, 0.01981925778090954, -0.01448330283164978, -0.022526416927576065, -0.03547803685069084, -0.039439037442207336, -0.048757366836071014, 0.01742555759847164, 0.0022173773031681776, 0.0014515361981466413, -0.06736552715301514, -0.004548740107566118, -0.015644531697034836, -0.017354317009449005, 0.008385070599615574, -0.02876713126897812, 0.01417696662247181, -0.018351690843701363, -0.05075211450457573, 0.00031034377752803266, -0.037273310124874115, -0.036503907293081284, -0.0458507314324379, 0.023723265156149864, 0.006197970360517502, 0.04131980240345001, 0.02001873217523098, 0.047617509961128235, 0.016513673588633537, -0.015844007954001427, 0.012331823818385601, -0.009332575835287571, -0.00531458156183362, 0.042089205235242844, 0.017354317009449005, -0.005410756915807724, 0.004498871508985758, 0.000818826665636152, 0.040692880749702454, 0.002513027749955654, -0.005368012469261885, 0.011142098344862461, 0.00629770802333951, 0.021685771644115448, 0.009638912975788116, -0.018992861732840538, -0.01407010480761528, -0.016798637807369232, -0.0015975802671164274, 0.012916000559926033, 0.0005583516322076321, -0.026615651324391365, -0.031374555081129074, 0.0213580634444952, -0.008499056100845337, -0.008784020319581032, -0.0061765979044139385, 0.035933978855609894, -0.008912254124879837, 0.007914879359304905, -0.01159091666340828, -0.020659901201725006, 0.015445057302713394, 0.012638160027563572, -0.02809746563434601, -0.033853743225336075, -0.030035221949219704, 0.04795946925878525, -0.0402369387447834, -0.0013090540887787938, 0.020346440374851227, 0.017211835831403732, 0.027071595191955566, -0.004534492269158363, -0.003914695233106613, 0.03348328918218613, -0.009503554552793503, -0.00024043850135058165, 0.020032979547977448, -0.014618661254644394, 0.012061107903718948, -0.0032895549666136503, -0.016641907393932343, 0.025903241708874702, 0.01319384016096592, -0.0002640371094457805, -0.0025201516691595316, -0.03046266734600067, -0.02281138114631176, 0.03570600971579552, 0.0077510252594947815, -0.0069709355011582375, 0.05759125575423241, 0.01582975871860981, 0.04080686718225479, 0.012773518450558186, 0.007544426247477531, -0.0442834310233593, -0.014718398451805115, 0.0015245582908391953, -0.03864113986492157, 0.011327325366437435, 0.0012048641219735146, -0.03413870558142662, -0.04824443161487579, -0.023865748196840286, -0.015373815782368183, -0.019577037543058395, 0.002730312757194042, 0.02204197831451893, -0.025361809879541397, -0.020873624831438065, -0.027897991240024567, 0.02776975743472576, -0.012296203523874283, 0.012018362991511822, 0.03989498317241669, -0.002960065146908164, 0.0188788753002882, 0.03425269201397896, 0.03735880181193352, 0.021016106009483337, 0.015373815782368183, -0.00226902705617249, 0.01862240768969059, 0.03254290670156479, 0.017468303442001343, 0.01000936608761549, 0.019648278132081032, -0.02120133303105831, -0.02540455386042595, 0.0369313545525074, -0.013856382109224796, -0.00824971217662096, 0.012688028626143932, -0.018223457038402557, 0.0622931644320488, 0.019149592146277428, 0.031631022691726685, -0.014262456446886063, -0.023196082562208176, -0.005428567063063383, -0.0004657382960431278, 0.037843238562345505, -0.07431865483522415, -0.020702645182609558, -0.002194223925471306, 0.02932281233370304, -0.012787766754627228, -0.006401007529348135, 0.037415795028209686, 0.008698530495166779, 0.03864113986492157, -0.0028906052466481924, -0.018650904297828674, 0.019463051110506058, 0.04864338040351868, 0.019591284915804863, 0.047816984355449677, -0.013728148303925991, 0.024920115247368813, -0.017682025209069252, -0.010258710011839867, 0.07004418969154358, -0.02306784875690937, 0.010130475275218487, -0.025262072682380676, -0.0026661958545446396, -0.007508805487304926, 0.0030829559545964003, -0.01376376859843731, 0.0005979794659651816, 0.029807250946760178, 0.028938110917806625, 0.016613410785794258, 0.0014399595092982054, 0.016998112201690674, -0.03146004304289818, 0.0072808340191841125, -0.028268443420529366, 0.00897637102752924, 0.04154777526855469, -0.015331071801483631, -0.009931000880897045, 0.012061107903718948, -0.004017994739115238, -0.0500682033598423, -0.022953862324357033, -0.0311465822160244, -0.0002785079414024949, 0.031232072040438652, -0.018494173884391785, 0.0192920733243227, -0.030747631564736366, -0.03627593815326691, 0.00799324456602335, -0.021044602617621422, 0.019562790170311928, -0.0032468102872371674, 0.005706407129764557, -0.030405675992369652, 0.012011239305138588, -0.041205815970897675, -0.008285332471132278, -0.05343078076839447, 2.4252563889604062e-05, -0.033340808004140854, -0.03667488694190979, 0.05209144949913025, -0.010572169907391071, 0.03134605661034584, 0.03661789372563362, -0.006782147102057934, -0.020816631615161896, 0.017824508249759674, -0.009496430866420269, 0.00938956905156374, -0.0025753634981811047, 0.03801421821117401, -0.01094262395054102, -0.026302192360162735, 0.004285148344933987, -0.03906858712434769, 0.00031501895864494145, -0.015060355886816978, 0.014269580133259296, -0.0069602495059370995, 0.0026002980303019285, 0.011484055779874325, -0.024378683418035507, 0.017511047422885895, 0.07015817612409592, 0.02306784875690937, -0.0151600930839777, 0.0010285425232723355, 0.013699651695787907, 0.011142098344862461, -0.018964365124702454, -0.018579663708806038, 0.0015575072029605508, 0.0014301638584583998, 0.0040999217890203, -0.01924932934343815, 0.03656090050935745, -0.008776895701885223, 0.025632526725530624, -0.037159327417612076, 0.024236202239990234, -0.0021924430038779974, 0.01934906654059887, -0.02161453105509281, -0.012139473110437393, -0.017397060990333557, -0.03057665377855301, -0.012445809319615364, -0.00600205734372139, 0.004566550720483065, -0.020702645182609558, 0.03168801590800285, 0.008812516927719116, -0.02115858905017376, -0.008157098665833473, 0.024791881442070007, -0.013329198583960533, 0.027328062802553177, 0.0066681611351668835, -0.005877385847270489, -0.03351178392767906, -0.0005303004872985184, 0.011491179466247559, 0.019078349694609642, 0.013478804379701614, -0.015373815782368183, -0.01541656069457531, -0.021870998665690422, -0.0050509897992014885, -0.010493804700672626, 0.03356877714395523, 0.024806130677461624, -0.007138351909816265, -0.011804640293121338, -0.1155814602971077, -0.032571401447057724, 0.03844166547060013, -0.004117731936275959, -0.013934747315943241, 0.0230108555406332, 0.018793385475873947, 0.016014985740184784, 0.04881436005234718, -0.020816631615161896, 0.017909998074173927, -0.06993020325899124, -0.028154458850622177, 0.00038047166890464723, -0.010158971883356571, -0.003797147423028946, 0.006921066902577877, 0.039182569831609726, 0.03627593815326691, 0.0059771230444312096, -0.0029565030708909035, -0.0036902858410030603, -0.020446177572011948, 0.056052450090646744, 0.008078733459115028, 0.006326204165816307, -0.012139473110437393, 0.038299184292554855, -0.0019306321628391743, -0.023452550172805786, 0.003982373978942633, -0.005432129371911287, 0.0013553607277572155, 0.0017026608111336827, -0.004185411147773266, 0.004890697542577982, 0.0022405306808650494, 0.010030738078057766, -0.0004670740745496005, 0.004976186435669661, -0.04186123609542847, -0.056764859706163406, 0.06035540997982025, -0.05525454878807068, 0.06747951358556747, -0.032713886350393295, 0.0016893030842766166, 0.013165343552827835, -0.015345320105552673, 0.011448434554040432, 0.022013481706380844, 0.012053984217345715, -0.001467565423808992, 0.009795642457902431, -0.014305200427770615, 0.00224409275688231, -0.020303696393966675, -0.012381692416965961, -0.0040714251808822155, 0.008064485155045986, -0.029037848114967346, 0.012873255647718906, 0.009980869479477406, -0.059671495109796524, -0.022882621735334396, -0.002498779445886612, 0.025618277490139008, 0.036646392196416855, -0.0020250265952199697, 0.003754402743652463, 0.033540282398462296, 0.031260568648576736, 0.030434172600507736, -0.012659532949328423, 0.011576669290661812, -0.0034836868289858103, 0.017468303442001343, -0.03647541254758835, -0.003166664158925414, -0.02322457917034626, 0.021172836422920227, 0.004381323698908091, -0.024079471826553345, 0.013571417890489101, 0.007070673163980246, -0.02487737126648426, -0.03336930274963379, 0.004516681656241417, 0.04516682028770447, 0.025076845660805702, 0.023808754980564117, -0.007106293458491564, 0.001359813380986452, 0.019890498369932175, 0.013151096180081367, 0.00714903837069869, 0.018736394122242928, -0.016285700723528862, -0.008655786514282227, -0.007765273097902536, 0.03827068582177162, -0.010358447209000587, 0.02586049772799015, 0.020104221999645233, -0.0028888240922242403, 0.0032770878169685602, -0.0011799297062680125, 0.015844007954001427, -0.0021799758542329073, 0.009710153564810753, -0.03151703625917435, -0.0065719857811927795, 0.01897861249744892, 0.01218221802264452, 0.018793385475873947, -0.0033340805675834417, 0.024891618639230728, 0.0102658336982131, -0.00014871566963847727, -0.017909998074173927, 0.02503410167992115, -0.001680398010648787, -0.02529056929051876, 0.05388672277331352, -0.02658715657889843, 0.035763002932071686, 0.02581775188446045, -0.028952358290553093, 0.027840998023748398, -0.006465124431997538, 0.0058524515479803085, 0.04719006270170212, -0.014347945339977741, 0.04072137922048569, 0.003330518491566181, -0.024806130677461624, 0.010622038505971432, 0.015658780932426453, 0.013856382109224796, 0.04103484004735947, 0.006557737477123737, 0.009589043445885181, -0.006579109933227301, 0.015544794499874115, 0.03636142611503601, -0.007644163444638252, -0.0020179024431854486, -0.004181848838925362, -0.025589780882000923, 0.008121478371322155, 0.035620518028736115, -0.0037722131237387657, -0.017553791403770447, 0.0747745931148529, 0.019719518721103668, 0.0655987486243248, -0.05266137421131134, -0.02932281233370304, -0.032314933836460114, -0.03097560442984104, 0.004310082644224167, 0.02937980368733406, 0.028624650090932846, -0.010436812415719032, 0.023210329934954643, -0.030662143602967262, -0.0369313545525074, 0.006636102683842182, -0.0023028666619211435, 0.01629994995892048, 0.010850010439753532, 0.017083602026104927, 0.011191966943442822, 0.018693648278713226, 0.026145461946725845, 0.026259446516633034, -0.009767146781086922, 0.017824508249759674, 0.009382444433867931, 0.007238089572638273, -0.0051542893052101135, 0.0024417866952717304, 0.015046107582747936, 0.033283814787864685, 0.05271836742758751, -0.023053599521517754, -0.023139089345932007, 0.0022298444528132677, -0.03490810841321945, 0.016157466918230057, 0.020403433591127396, 0.005781210493296385, 0.001850486034527421, 0.022668898105621338, -0.02202772907912731, 0.008876633830368519, 0.029864244163036346, -0.012481429614126682, -0.011783268302679062, 0.030747631564736366, -0.0007288848864845932, 0.02385149896144867, 0.007644163444638252, -0.01604348234832287, -0.0025094656739383936, 0.01919233612716198, 0.003118576481938362, 0.003939629532396793, -0.03191598504781723, 0.025931738317012787, 0.017881501466035843, 0.031175078824162483, 0.0026840062346309423, -0.036845866590738297, -0.02389424480497837, 0.020104221999645233, 0.01743980683386326, -0.0011247178772464395, -0.02208472229540348, -0.003620825707912445, -0.02711433917284012, -0.03744428977370262, -0.018579663708806038, 0.019377563148736954, -0.012859007343649864, 0.032770879566669464, -0.0006313737249001861, 0.021757014095783234, -0.0045701125636696815, 0.009239962324500084, 0.01429807674139738, 0.005916568450629711, 0.006368949078023434, 0.003166664158925414, 0.023409806191921234, 0.012880380265414715, 0.007088483311235905, -0.003978812135756016, -0.008491931483149529, 0.019691023975610733, -0.0011674625566229224, 0.0023865748662501574, 0.02670114114880562, -0.027299566194415092, -0.0022601219825446606, -0.006144539453089237, 0.05112256854772568, 0.0106790317222476, 0.03989498317241669, -0.0025379620492458344, 0.00430652080103755, -0.0168128851801157, 0.02235543727874756, 0.013642659410834312, 0.03083312138915062, 0.016328446567058563, -0.006995869800448418, 0.006889008451253176, 0.005446377210319042, -0.011569544672966003, -0.019619781523942947, 0.02013271674513817, 0.002929787617176771, 0.008776895701885223, -0.02483462542295456, 0.0023135526571422815, -0.009197218343615532, -0.010379819199442863, 0.011826012283563614, 0.008214091882109642, -0.029237322509288788, 0.012253458611667156, 0.011334449052810669, -0.012980117462575436, 0.00799324456602335, 0.0467626191675663, -0.048443906009197235, -0.005845327395945787, 0.0016198430676013231, -0.025689518079161644, -0.00866291020065546, 0.006450876127928495, -0.016171716153621674, -0.012495677918195724, 0.03140304982662201, -0.02343830093741417, 0.02446417324244976, -0.02653016336262226, 0.02333856374025345, -0.04183273762464523, 0.00204996089451015, 0.009154473431408405, -0.02530481666326523, 0.017682025209069252, -0.030177704989910126, 0.017824508249759674, 0.019648278132081032, 0.02963627129793167, 0.004505995661020279, -0.032457418739795685, 0.012866131961345673, -0.005400070920586586, 0.008128602989017963, 0.019277825951576233, 0.030491163954138756, -0.005343077704310417, -0.012360320426523685, -0.014511799439787865, -0.0026341374032199383, 0.022797131910920143, 0.007914879359304905, 0.0019840628374367952, 0.03134605661034584, 0.031887490302324295, -0.004794521722942591, 0.014974866062402725, 0.029351308941841125, 0.032314933836460114, 0.027185579761862755, 0.03661789372563362, -0.013222336769104004, 0.008206967264413834, 0.02611696533858776, 0.0466771274805069, 0.011476931162178516, 0.024093719199299812, 0.03425269201397896, 0.011462682858109474, -0.02658715657889843, -0.0102658336982131, 0.010151848196983337, -0.0009359291289001703, 0.016855629161000252, 0.023965485394001007, -0.031232072040438652, -0.0037508406676352024, 0.04325756058096886, -0.01011622790247202, 0.0018130844691768289, -0.01872214488685131, 0.01145555917173624, -0.009681656956672668, -0.000764505413826555, -0.008021741174161434, 0.0005668115336447954, -0.018964365124702454, 0.02648741751909256, 0.01422683522105217, 0.004527368117123842, 0.030918611213564873, 0.06656762957572937, 0.019334817305207253, -0.005685035139322281, 0.014134221710264683, -0.013735271990299225, -0.007694032043218613, -0.021543290466070175, -0.0005659210146404803, -0.018536917865276337, 0.029351308941841125, -0.02776975743472576, 0.008185595273971558, -0.021386560052633286, 0.023352812975645065, 0.007515929639339447, -0.016128970310091972, -0.0030598025768995285, 0.03202997148036957, 0.024820378050208092, 0.002146136248484254, 0.024193456396460533, 0.013934747315943241, -0.02013271674513817, -0.020887872204184532, -0.019733767956495285, -0.003627949859946966, 0.012381692416965961, -0.009532051160931587, 0.004805208183825016, 0.010386943817138672, 0.010857134126126766, -0.038726627826690674, -0.002935130847617984, 0.04402696341276169, 2.6103161872015335e-05, 0.0058524515479803085, -0.009410941042006016, 0.018807634711265564, 0.006639664992690086, -0.004221031442284584, -0.0213580634444952, -0.039951976388692856, -0.022683147341012955, 0.002523713745176792, -0.02271164394915104, 0.02188524790108204, -0.02078813500702381, -0.03399622440338135, -0.018508421257138252, -0.02654441073536873, -0.030690640211105347, -0.013514424674212933, -0.00809298176318407, -0.023196082562208176, 0.01541656069457531, 0.011035236530005932, 0.05143602937459946, -0.026458922773599625, 0.008570296689867973, 0.013977492228150368, -0.023652024567127228, 0.0008664691122248769, -0.02499135583639145, 0.009125976823270321, -0.03180199861526489, -0.008520428091287613, 0.04636366665363312, -0.024392932653427124, 0.004495309665799141, -0.037472788244485855, 0.002388355787843466, 0.02690061554312706, 0.004032242577522993, -0.006739402189850807, 0.023566536605358124, 0.033397797495126724, 0.012338947504758835, 0.015373815782368183, 0.009524926543235779, -0.028695890679955482, -0.025333313271403313, 0.02747054398059845, -0.04117732122540474, 0.035107582807540894, -0.03014920838177204, -0.015302575193345547, -0.0032592774368822575, 0.0021621654741466045, -0.020702645182609558, 0.013899127021431923, 0.017154842615127563, -0.02348104678094387, 0.005075924098491669, 0.014903625473380089, 0.00207489519380033, -0.0032592774368822575, -0.05277536064386368, -0.0014399595092982054, 0.006885446608066559, -0.03781474381685257, 0.02794073522090912, 0.02192799188196659, -0.018964365124702454, 0.035449542105197906, 0.007081359159201384, 0.0014212587848305702, -0.006643226835876703, -0.025532787665724754, -0.01052942592650652, 0.0014969523763284087, -0.03573450446128845, 0.011875880882143974, 0.02007572539150715, 0.02472064085304737, 0.027840998023748398, 0.04137679561972618, -0.0031346057076007128, 0.019434554502367973, -0.02235543727874756, -0.031574029475450516, 0.017568040639162064, 0.008014616556465626, -0.018750641494989395, -0.0069709355011582375, 0.016698898747563362, 0.012224962003529072, 0.017881501466035843, -0.009660284966230392, -0.02440718002617359, -0.010201716795563698, 0.009717277251183987, -0.008541801013052464, 0.032656893134117126, -0.01991899497807026, -0.0061659119091928005, 0.03886910900473595, 0.013635534793138504, -0.005688596982508898, 0.016157466918230057, 0.005699282977730036, -0.036959849298000336, 0.02560403011739254, -0.03812820464372635, 0.010914127342402935, 0.007248775567859411, -0.018280450254678726, 0.021144339814782143, 0.004580799024552107, 0.018921619281172752, -0.00061267294222489, -0.021329566836357117, -0.006162350066006184, 0.032200951129198074, 0.002534399973228574, 0.002491655293852091, -0.02845367044210434, 0.03046266734600067, -0.005282523110508919, 8.020182576728985e-05, -0.01659916155040264, -0.004000184126198292, 0.022526416927576065, -0.02013271674513817, -0.02296811155974865, 0.006244277115911245, -0.022469423711299896, -0.002206691075116396, -0.02859615348279476, -0.009125976823270321, -2.7619817046797834e-06, -0.003287774045020342, -0.04662013426423073, 0.0023972608614712954, -0.008413566276431084, 0.025874745100736618, 0.004766025580465794, -0.02013271674513817, 0.0012128787348046899, -0.011498304083943367, -0.005784772336483002, 0.018950115889310837, -0.0032254380639642477, 0.013257957063615322, 0.0217712614685297, 0.022825628519058228, 0.014547419734299183, -0.0045701125636696815, 0.013136847876012325, -0.013699651695787907, -0.0048622009344398975, -0.010643411427736282, 0.01573002152144909, -0.03485111519694328, 0.029109088703989983, 0.011327325366437435, 0.03128906339406967, 0.02861040085554123, 0.014989114366471767, -0.0516355037689209, 0.005442815367132425, -0.029607776552438736, -0.012766393832862377, -0.008727027103304863, -0.015687277540564537, -0.00662185437977314, 0.009824139066040516, -0.02369477041065693, 0.01981925778090954, -0.00840644259005785, 0.0059699988923966885, 0.028054721653461456, -0.0002798437199089676, -0.03490810841321945, 0.012552671134471893, 0.023053599521517754, -0.007551549933850765, 0.004648477770388126, 0.06405994296073914, -0.0025254948996007442, -0.04548028111457825, -0.005140041001141071, -0.019733767956495285, 0.01407010480761528, -0.010622038505971432, 0.02286837436258793, 0.005346640013158321, 0.03316982835531235, -0.008855260908603668, 0.010379819199442863, -0.0036297310143709183, -0.026102716103196144, -0.022939614951610565, 0.023709017783403397, 0.006205094512552023, -0.01099249254912138, -0.015331071801483631, 0.01923508010804653, -0.011932874098420143, 0.0394105426967144, -0.020104221999645233, -0.018707897514104843, -0.025903241708874702, 0.017653528600931168, -0.007715404499322176, 0.04163326323032379, 0.01779601164162159, 0.014775391668081284, 0.0151600930839777, -0.004313644953072071, 0.002167508704587817, -0.014704150147736073, -0.00430652080103755, -0.002961846301332116, -0.005093734245747328, -0.041775744408369064, 0.03656090050935745, -0.01466140616685152, 0.022683147341012955, 0.010743148624897003, -0.008933626115322113, -0.007223841268569231, -0.011120726354420185, 0.012538422830402851, -0.024293193593621254, 0.013792265206575394, 0.013778016902506351, 0.019434554502367973, -0.04821593686938286, -0.04288710653781891, 0.028368182480335236, -0.01181888859719038, 0.021073099225759506, 0.018764888867735863, 0.02788374200463295, -0.0027712765149772167, -0.011569544672966003, 0.02286837436258793, 0.020916368812322617, 0.013229461386799812, -0.005987809505313635, 0.010044986382126808, -0.02043193019926548, -0.023823004215955734, -0.03661789372563362, 0.020916368812322617, -0.0015307918656617403, -0.01042256411164999, 0.0049583762884140015, -0.0077723972499370575, 0.02483462542295456, -4.059486855112482e-06, 0.007651287596672773, -0.011911502107977867, 0.0018068508943542838, -0.00680351909250021, 0.002814020961523056, 0.015844007954001427, 0.008442062884569168, -0.011227588169276714, 0.0023847937118262053, 0.0009599730256013572, 0.00662185437977314, -0.002238749759271741, -0.01691262237727642, 0.013065606355667114, 0.007059987168759108, -0.015174341388046741, 0.009467934258282185, -0.022227203473448753, -0.026202453300356865, 0.02943679690361023, 0.006753650493919849, -0.005407195072621107, -0.006311955861747265, 0.005303895566612482, -0.005578173324465752, 0.011512551456689835, 0.051293548196554184, 0.018294699490070343, 0.019406059756875038, 0.010016489773988724, 0.012880380265414715, 0.008534676395356655, -0.002746341982856393, 0.04243116453289986, 0.018764888867735863, 0.012381692416965961, -0.0023687644861638546, 0.006992307957261801, -0.023196082562208176, 0.016228709369897842, 0.005389384459704161, 0.040322426706552505, -0.024335939437150955, 0.025475796312093735, 0.011127850040793419, 0.018337443470954895, 0.02835393324494362, -0.005514056421816349, -0.016385439783334732, -0.018850378692150116, 0.03750128298997879, -0.03533555567264557, 0.012702276930212975, -0.009161598049104214, 0.035449542105197906, 0.004847952630370855, 0.021657275035977364, -0.01706935279071331, 0.001085535273887217, -0.015245581977069378, 0.027598777785897255, -0.02664414793252945, -0.010358447209000587, -0.020916368812322617, 0.0013090540887787938, 0.0376722626388073, 0.014476179145276546, -0.0418897308409214, 0.0007502571679651737, 0.06554175913333893, 0.0038256437983363867, 0.007736776955425739, -0.022854125127196312, -0.04525230824947357, 0.00016797300486359745, 0.02001873217523098, 6.918172584846616e-05, -0.031260568648576736, -0.02654441073536873, 0.006725153885781765, 0.005870261695235968, 0.006557737477123737, -0.03177350386977196, 0.00508304825052619, -0.05160700902342796, 0.021543290466070175, 0.012980117462575436, -0.014718398451805115, 0.015559042803943157, 0.030120711773633957, 0.031004101037979126, 0.007077797316014767, 0.0036689136177301407, 0.028410926461219788, 0.012217838317155838, 0.017724771052598953, 0.02462090365588665, 0.0037579648196697235]" -How Everactive Powers a Dense Sensor Network With Virtually No Power at All,"at once.TimescaleDB is clearly much faster than our previous OpenTSDB system. More importantly, nobody has ever crashed it.One not-very-carefully-benchmarked but huge performance increase we’ve seen?We have a frontend view that requires the last data point from all sensors: in OpenTSDB, it required nearly 10minutesto load (due to hard-to-fix tail latencies in HBase), and our first TimescaleDB deployment brought that down to around 7seconds. Further improvements to our schema and access patterns have brought these queries into the sub-second range.""We moved those schemas from Amazon RDS for PostgreSQL to Timescale. The migration was very simple: moving among PostgreSQL schemas was straightforward""We have been able to maintain sub-second responses even with the growth of data volume: that's very good for us. Also, thanks to compression andcontinuous aggregates, we have been keeping our table sizes in check and with great performance.✨Editor’s Note:For more comparisons and benchmarks, seehow Timescale compares to Amazon RDS for PostgreSQL. To learn more and try Timescale yourself, see ourstep-by-step Timescale tutorial.Timescale has been so good for us that it’s triggered a wave of transitions to managed solutions for other parts of our stack.We’ve recently moved our Amazon RDS data into Timescale to further simplify our data infrastructure and make it easier and faster to work with our data.About 20 % of our data is metadata kept in a relational database. We moved those schemas from Amazon RDS for PostgreSQL to Timescale. The migration was very simple: moving among PostgreSQL schemas was straightforward.We chose RDS from the beginning for simplicity. Eventually, once we had Timescale up and running, it became evident that we didn't need two separate PostgreSQL vendors when we were having such good results with Timescale.The capacity of Timescale to support both traditional schemas and time-series data in the same database allowed us to consolidate into one storage solution. The instances multiply because we keep three environments (development, staging, and production) for each database, so we went from six (three RDS plus three Timescale) to only three Timescale instances.As you’ll see in the below diagram, our sensors don’t talk directly to TimescaleDB; they pass packets of measurements to gateways via our proprietary wireless protocol. From there, we useMQTTto send those packets to our cloud.From our cloud data brokers,Kafkaprocesses and routes packets into TimescaleDB (and Timescale), and our TimescaleDB database powers our dashboard",https://www.timescale.com/blog/how-everactive-powers-a-dense-sensor-network-with-virtually-no-power-at-all/,519,"[0.013106008060276508, -0.016448145732283592, 0.06261365115642548, -0.0038743261247873306, 0.0833902582526207, 0.030228259041905403, -0.011388815939426422, 0.014255532994866371, -0.021514572203159332, -0.004637128207832575, 0.025034107267856598, -0.02415422350168228, -0.003510664450004697, -0.03420192748308182, 0.05086294934153557, 0.013843975029885769, -0.0007011572597548366, -0.007329998072236776, -0.04467537999153137, 0.01782473921775818, -0.014773529022932053, 0.014915445819497108, 0.048166532069444656, -0.0005831889575347304, -0.02052115648984909, -0.00032685190672054887, -0.021287506446242332, 0.025672731921076775, 0.023061465471982956, -0.07203692197799683, 0.017782162874937057, -0.04464699700474739, -0.04700281471014023, 0.01276540756225586, 0.028142083436250687, 0.052906546741724014, 0.024281948804855347, -0.001035991939716041, -0.0055737788788974285, 0.007134862244129181, -0.018406596034765244, 0.03133520856499672, -0.008685302920639515, 0.009444557130336761, -0.01979738101363182, -0.018009230494499207, -0.03201640769839287, -0.037976909428834915, 0.012190645560622215, 0.06528168171644211, -0.027546033263206482, 0.036586128175258636, -0.02150038070976734, -0.05347421392798424, 0.036500975489616394, -0.03584815934300423, 0.0058753518387675285, 0.04166674613952637, 0.03335042670369148, -0.02625459060072899, 0.029802508652210236, -0.0622730515897274, 0.022380264475941658, 0.0183214470744133, 0.005250918213278055, 0.02025151439011097, -0.008763357065618038, 0.05304846540093422, -0.057305965572595596, 0.03255569189786911, 0.023586556315422058, 0.018690429627895355, 0.005179959814995527, -0.009707102552056313, 0.044050946831703186, -0.07799742370843887, -0.03987859562039375, 0.0772026851773262, -0.0023966184817254543, -0.0020861756056547165, 0.011800373904407024, -0.006219499744474888, -0.016831321641802788, 0.011672649532556534, 0.018449172377586365, -0.03255569189786911, -0.009728390723466873, -0.017171921208500862, -0.003498246893286705, 0.013169870711863041, 0.010516027919948101, 0.03669966012239456, -0.0021748736035078764, 0.01955612190067768, 0.024438057094812393, -0.0049103181809186935, -0.008493714965879917, 0.0094232689589262, -0.022536372765898705, 0.02700674906373024, 0.018619472160935402, -0.019243905320763588, -0.02797178365290165, 0.0035727531649172306, 0.01155911572277546, -0.01788150519132614, 0.04484567791223526, 0.0033882614225149155, 0.01521347090601921, 0.014688379131257534, -0.07669179141521454, 0.015582454390823841, -0.01739898882806301, -0.010948874056339264, -0.021812597289681435, 0.012935708276927471, -0.01519927941262722, 0.005900186952203512, 0.005297041032463312, 0.005701503716409206, -0.011800373904407024, -0.007855089381337166, -0.008593056350946426, 0.0072448477149009705, 0.033889710903167725, -0.03252730891108513, 0.021542957052588463, -0.04339813068509102, -0.021883556619286537, 0.015043171122670174, 0.052963316440582275, -0.02243703231215477, 0.0342303104698658, -0.025956565514206886, -0.0014865775592625141, -0.0068865083158016205, -0.04697443172335625, -0.0467473641037941, -0.022749248892068863, -0.0004073453019373119, -0.004892578348517418, -0.05117516592144966, 0.03502504155039787, -0.003835299052298069, -0.017242880538105965, 0.030199876055121422, -0.019655464217066765, 0.04822329804301262, -0.02821304090321064, -0.03454252704977989, -0.018903305754065514, -0.004229117650538683, -0.03616037592291832, -0.028993582352995872, 0.04107069596648216, -0.0038211073260754347, 0.035592708736658096, 0.051231931895017624, -0.013205349445343018, -0.019698038697242737, -0.027673758566379547, 0.0370970256626606, -0.005126741249114275, -0.0068865083158016205, -0.0015477790730074048, -0.0024409673642367125, -0.02365751564502716, -0.04226279631257057, -0.1096164658665657, -0.01568179577589035, -0.005357355810701847, -0.039935361593961716, -0.0017038874793797731, 0.028411725535988808, 0.03973667696118355, -0.016504913568496704, -0.016093354672193527, -0.06340838223695755, 0.04266016185283661, -0.028851667419075966, -0.048336829990148544, -0.004949345253407955, -0.019371630623936653, 0.05205504968762398, -0.026907406747341156, -0.002229866338893771, -0.05600033327937126, 0.06397604942321777, 0.02218158170580864, 0.031505510210990906, -0.032470542937517166, 0.07129895687103271, -0.007315806113183498, 0.02293374016880989, 0.006400443613529205, -0.054183799773454666, 0.005658928770571947, 0.031931258738040924, -0.05304846540093422, 0.023799432441592216, 0.066644087433815, 0.004878386855125427, 0.06914182007312775, 0.011211419478058815, -0.014248437248170376, 0.014177478849887848, -0.0024941861629486084, -0.01048764493316412, -0.05094809830188751, -0.04532819613814354, 0.0016621993854641914, 0.015497304499149323, -0.010040607303380966, -0.005857612006366253, -0.04484567791223526, -0.008387277834117413, -0.05977531522512436, -0.011864236555993557, -0.00036144410842098296, -0.009919977746903896, 0.019882529973983765, 0.05182798206806183, -0.004857099149376154, -0.018903305754065514, -0.022749248892068863, 0.04924509674310684, 0.016973238438367844, -0.020379239693284035, 0.042773693799972534, -0.012729928828775883, -0.013361457735300064, -0.027091899886727333, -0.0071419584564864635, -0.04155321046710014, 0.003345686476677656, -0.006865220610052347, 0.004715182818472385, -0.022110622376203537, -0.016547488048672676, -0.04600939527153969, -0.02313242293894291, 0.003845942672342062, 0.0012470930814743042, 0.018619472160935402, -0.008720781654119492, 0.013162774965167046, -0.025686923414468765, -0.057022131979465485, 0.002093271352350712, 0.03380455821752548, 0.022366072982549667, 0.01375882513821125, 0.01434068288654089, -0.03616037592291832, -0.035337261855602264, -0.04084362834692001, -0.01685970462858677, 0.024920573458075523, 0.01062246598303318, 0.029348375275731087, -0.0055702305398881435, -0.020819181576371193, 0.0005548056215047836, -0.00869239866733551, -0.03936769440770149, 0.007904760539531708, 0.04317106306552887, -0.045214664191007614, 0.017980847507715225, -0.012467382475733757, 0.06369221955537796, 0.02966059185564518, 0.0013677222887054086, -0.0535309836268425, -0.01663263887166977, -0.017512520775198936, 0.004044626373797655, -0.016476530581712723, -0.0004368373774923384, -0.001182343577966094, 0.01387235801666975, -0.04004889354109764, 0.027063516899943352, -0.0004171020700596273, 0.023331107571721077, -0.032186709344387054, -0.0011504122521728277, 0.03153389319777489, 0.011821662075817585, -0.028823282569646835, -0.021344272419810295, 0.021301697939634323, 0.015057362616062164, -0.02125912345945835, 0.0019832858815789223, 0.01026767399162054, -0.012325465679168701, 0.014035562053322792, -0.06698468327522278, -0.039169009774923325, 0.017796354368329048, 0.01710096374154091, 0.018917497247457504, -0.03837427869439125, 0.022068047896027565, 0.006982301827520132, -0.040389493107795715, -0.013226636685431004, -0.021401040256023407, 0.005428314208984375, -0.02892262488603592, -0.010161235928535461, -0.011140461079776287, -0.004580361768603325, -0.0003984755021519959, -0.007528681308031082, 0.05179959908127785, -0.014645803719758987, -0.016476530581712723, -0.06868768483400345, -0.011899716220796108, -0.07345608621835709, -0.01688808761537075, 0.020677264779806137, 0.019357439130544662, -0.018406596034765244, 0.008507906459271908, -0.007436435669660568, 0.02531794086098671, -0.016235271468758583, 0.0005885108257643878, -0.02746088244020939, 0.04748532921075821, 0.015965629369020462, -0.027318965643644333, -0.04359681159257889, -0.006191116292029619, 0.043057527393102646, -0.031051374971866608, 0.03888517618179321, -0.016802938655018806, 0.017171921208500862, -0.07215045392513275, 0.010672136209905148, 0.02581464871764183, 0.011779086664319038, -0.015397963114082813, -0.011779086664319038, 0.010189619846642017, 0.01954193040728569, -0.022139007225632668, -0.004495211876928806, 0.030682392418384552, 0.007606735453009605, 0.014440025202929974, -0.016504913568496704, 0.01637718826532364, -0.014915445819497108, -0.02868136577308178, 0.009437461383640766, -0.0022972766309976578, 0.041354529559612274, 0.027787290513515472, 0.002311468357220292, -0.011956482194364071, 0.03425869345664978, -0.043795496225357056, 0.024792848154902458, -0.018676238134503365, -0.012573820538818836, 0.03763630986213684, 0.014887062832713127, -0.021770022809505463, 0.003356330096721649, -0.04311429709196091, -0.007156149949878454, 0.058015551418066025, 0.039424460381269455, -0.005634093191474676, 0.041099078953266144, 0.026424890384078026, 0.021330080926418304, -0.016292037442326546, 0.011296570301055908, 0.02607009932398796, 0.041127461940050125, 0.00765640614554286, 0.023018889129161835, -0.04654867947101593, -0.026368124410510063, 0.018988454714417458, 0.006375608034431934, -0.02602752484381199, -0.026708723977208138, -0.013191157951951027, 0.006879412569105625, 0.018420789390802383, 0.014376162551343441, 0.04126937687397003, 0.03127844259142876, 0.05886704847216606, 0.0003984755021519959, -0.06601965427398682, -0.016476530581712723, 0.010175428353250027, 0.01710096374154091, 0.006542360410094261, 0.025928182527422905, -0.024707699194550514, -0.037749845534563065, -0.01928647980093956, -0.026949983090162277, 0.036784809082746506, -0.028652982786297798, 0.02534632384777069, -0.02994442544877529, -0.05983208492398262, 0.06437341868877411, 0.016064971685409546, 0.05915088206529617, -0.03828912600874901, 0.007259039673954248, -0.03130682557821274, 0.01135333627462387, -0.041865427047014236, 0.05429733172059059, 0.028170466423034668, -0.021386846899986267, -0.017952462658286095, -0.030568858608603477, -0.008742068894207478, -0.012140974402427673, 0.031817726790905, -0.007883473299443722, -0.007975718937814236, 0.03519534319639206, -0.017257072031497955, -0.020847564563155174, 0.03207317739725113, 0.00598178943619132, 0.018704621121287346, 0.01856270618736744, 0.0243529062718153, 0.004296528175473213, -0.01998187229037285, -0.03970829397439957, -0.022082239389419556, -0.01641976274549961, 0.0032569884788244963, 0.006474949885159731, 0.04490244761109352, 0.005250918213278055, -0.03973667696118355, 0.03062562458217144, -0.049585696309804916, -0.049046412110328674, 0.02246541529893875, -0.016760362312197685, 0.02294793166220188, -0.03888517618179321, -0.02269248105585575, 0.02118816412985325, -0.044760528951883316, -0.03059724159538746, -0.018236296251416206, -0.041127461940050125, 0.06267041712999344, 0.010899202898144722, 0.028354957699775696, -0.03445737808942795, -0.008444043807685375, 0.024182606488466263, -0.03335042670369148, -0.017214495688676834, -0.02748926542699337, 0.016959046944975853, 0.030909458175301552, 0.023969732224941254, 0.032924674451351166, -0.008720781654119492, 0.023302722722291946, -0.015610837377607822, -0.029149692505598068, 0.06193245202302933, -0.001359739457257092, -0.008685302920639515, 0.01957031339406967, 0.03042694181203842, -0.009813540615141392, 0.015383770689368248, -0.03230024129152298, 0.020109597593545914, 0.0502101294696331, -0.017313838005065918, -0.013219540938735008, -0.018207913264632225, -0.07169631868600845, -0.010359919629991055, -0.008969135582447052, -0.01147396583110094, 0.04842197895050049, -0.00842275656759739, 0.008706590160727501, 0.05043719708919525, -0.028596216812729836, 0.03550755977630615, -0.0515725314617157, -0.002036504680290818, -0.0065494561567902565, -0.058015551418066025, -0.015270237810909748, -0.001124689937569201, 0.04339813068509102, 0.018704621121287346, -0.028823282569646835, 0.010991448536515236, 0.008280839771032333, 0.01880396343767643, -0.0065352641977369785, -0.01999606378376484, -0.016022395342588425, -0.04490244761109352, -0.037522777915000916, -0.000925119558814913, -0.00796862319111824, 0.011495253071188927, -0.04913156479597092, -0.015880480408668518, -0.021301697939634323, -0.02487799897789955, -0.006553004030138254, -0.035110194236040115, 0.021770022809505463, 0.001852013054303825, -0.03587654232978821, 0.014099424704909325, -0.018179530277848244, -0.036529362201690674, -0.04995468258857727, 0.03474121168255806, 0.01373753696680069, 0.03854457661509514, 0.033407192677259445, 0.03465605899691582, 0.013900741003453732, -0.018874922767281532, 0.009096860885620117, -0.014383258298039436, -0.016362996771931648, 0.026396507397294044, 0.008898177184164524, -0.01782473921775818, 0.015582454390823841, 0.0068510291166603565, 0.01976899802684784, -0.002144716214388609, 0.015426346100866795, 0.013510470278561115, 0.011516541242599487, 0.029490292072296143, 0.008174402639269829, 0.006141445599496365, 0.0011504122521728277, -0.019627081230282784, -0.0025438570883125067, 0.027659567072987556, -0.012183548882603645, -0.01569598726928234, -0.04095716029405594, 0.008287935517728329, 0.0052686575800180435, -0.004857099149376154, 0.0033439123071730137, 0.02192613109946251, -0.006783618591725826, -0.0003740835818462074, -0.024665122851729393, -0.022578947246074677, 0.026353932917118073, -0.0017712978878989816, -0.030540475621819496, -0.019201330840587616, -0.017782162874937057, 0.044306397438049316, -0.027404116466641426, 0.0058966390788555145, 0.009153627790510654, -0.003047661390155554, 0.0229195486754179, -0.004963536746799946, 0.0015939020086079836, 0.008415660820901394, 0.005353807937353849, 0.009125243872404099, 0.030994608998298645, 0.007805418688803911, 0.02361493930220604, 0.009047189727425575, -0.018250487744808197, 0.016959046944975853, 0.013006665743887424, -0.01120432373136282, -0.01714353822171688, -0.04285884648561478, -0.02436709776520729, 0.02917807549238205, 0.012403519824147224, -0.011644265614449978, 0.06000238284468651, -0.014787720516324043, 0.04200734570622444, 0.005644736811518669, -0.0017242879839614034, -0.025204407051205635, -0.012850557453930378, -0.006911343429237604, -0.02023732289671898, -0.0028454300481826067, 0.019016839563846588, -0.023983923718333244, -0.039225779473781586, -0.022110622376203537, -0.024991532787680626, -0.04203572869300842, -0.01207711175084114, 0.03491150960326195, -0.024168414995074272, -0.031505510210990906, -0.032924674451351166, 0.014220054261386395, 0.0029625112656503916, -0.00494224950671196, 0.03346395865082741, -0.0004055713361594826, 0.012722833082079887, 0.04785431548953056, 0.03806206211447716, 0.032697610557079315, 0.026694532483816147, -0.011317857541143894, 0.03613199293613434, 0.011615882627665997, -0.00292348419316113, -0.006623962428420782, 0.003675642656162381, -0.036075226962566376, -0.0039559281431138515, 0.04535657912492752, -0.026183633133769035, -0.025204407051205635, 0.01328340359032154, -0.0253321323543787, 0.06346514821052551, 0.03914062678813934, 0.03130682557821274, -0.01169393677264452, -0.02531794086098671, -0.013418224640190601, -0.014425833709537983, 0.0019478067988529801, -0.03885679319500923, -0.007471914403140545, -0.03230024129152298, 0.016547488048672676, -0.01813695579767227, -0.0015291525050997734, 0.026879023760557175, -0.006439470686018467, 0.028809091076254845, 0.019428396597504616, -0.005988885182887316, 0.017171921208500862, 0.04078686237335205, 0.024012306705117226, 0.031448740512132645, 0.007315806113183498, 0.021074630320072174, -0.023955540731549263, 0.0007987249409779906, 0.07487525790929794, -0.053445830941200256, 0.020081214606761932, -0.02267828956246376, 0.004633580334484577, 0.004743565805256367, -0.0012701544910669327, -0.019101988524198532, 0.011750703677535057, 0.02169906534254551, 0.02023732289671898, 0.01712934672832489, 0.008330510929226875, 0.0035301779862493277, -0.00842275656759739, -0.005832776892930269, -0.05182798206806183, -0.012020344845950603, 0.033918093889951706, -0.013198253698647022, -0.006748139392584562, 0.014901254326105118, 0.005201247520744801, -0.04924509674310684, -0.017711205407977104, -0.0333220437169075, -0.003870778251439333, 0.016717787832021713, -0.006843933369964361, 0.03493989259004593, -0.019825764000415802, -0.034883126616477966, 0.005286397412419319, -0.018179530277848244, 0.001905231736600399, -0.001608093734830618, 0.0006869655335322022, -0.03684157878160477, 0.026921600103378296, -0.0405597947537899, 0.0012036310508847237, -0.05886704847216606, 0.011786182411015034, -0.03306659311056137, -0.03252730891108513, 0.04728664830327034, -0.011403007432818413, 0.016292037442326546, 0.026637766510248184, -0.0007033746805973351, -0.012183548882603645, 0.016206888481974602, 0.002446289174258709, 0.014071041718125343, 0.004143967758864164, 0.03817559406161308, -0.008011197671294212, -0.0033864874858409166, -0.0037785323802381754, -0.03127844259142876, 0.005517011974006891, -0.04129776358604431, -0.0003115515282843262, -0.0012603977229446173, -0.007947335951030254, -0.005116097163408995, -0.02387038990855217, 0.014787720516324043, 0.05818584933876991, 0.01424134150147438, -0.004672607406973839, -0.014440025202929974, 0.01325502060353756, 0.002038278616964817, -0.004434897098690271, -0.016036588698625565, -0.0005791975418105721, 0.006084678694605827, -0.00869239866733551, 0.013702058233320713, 0.03369102627038956, -0.010196715593338013, 0.01979738101363182, -0.04785431548953056, 0.006801357958465815, 0.009182010777294636, 0.029774125665426254, -0.052679482847452164, 0.001111385179683566, -0.017044195905327797, -0.026183633133769035, -0.02287697233259678, -0.017711205407977104, 0.002302598673850298, -0.00867111049592495, 0.04774077981710434, 0.008316319435834885, -0.005297041032463312, 0.0035727531649172306, 0.034173544496297836, -0.017909888178110123, 0.0033190769609063864, -0.007642214652150869, -0.014234245754778385, -0.030824309214949608, 0.0074790106154978275, 0.015369579195976257, 0.017540905624628067, -0.009465844370424747, -0.013184062205255032, -0.026424890384078026, -0.044050946831703186, 0.0029163884464651346, -0.023203382268548012, 0.04033272713422775, 0.010395398363471031, 0.006499784998595715, 0.004857099149376154, -0.09769546240568161, -0.03130682557821274, 0.03380455821752548, -0.027659567072987556, 0.0052225347608327866, -0.0006053634569980204, 0.01932905614376068, 0.030341792851686478, 0.038487810641527176, -0.035081811249256134, 0.021358463913202286, -0.03352072462439537, -0.04745694622397423, 0.0021056891418993473, -0.017299646511673927, 0.0014094102662056684, 0.0042823366820812225, 0.026353932917118073, 0.018406596034765244, 0.008117635734379292, -0.023728473111987114, 0.00675168726593256, -0.01883234642446041, 0.056057099252939224, 0.01026767399162054, -0.00639334786683321, -0.018733005970716476, 0.04178027808666229, 0.008365989662706852, -0.024650931358337402, 0.011395911686122417, 0.01690227910876274, 0.006563647650182247, -0.005587970372289419, -0.020393431186676025, 0.008983328007161617, -0.003987859468907118, 0.008515002205967903, 0.008039581589400768, 0.013922029174864292, -0.047144729644060135, -0.0563976988196373, 0.03562109172344208, -0.0375511609017849, 0.05903735011816025, -0.029603825882077217, -0.007436435669660568, 0.013801399618387222, -0.015114129520952702, -0.0004184325516689569, 0.025984948500990868, 0.00723065622150898, -0.010090277530252934, -0.0029376759193837643, -0.006577839143574238, 0.0061769247986376286, -0.0521685816347599, -0.02101786434650421, 0.009401981718838215, -0.007450627163052559, -0.03721056133508682, 0.020109597593545914, 0.0007051486172713339, -0.05106163024902344, -0.012502862140536308, 0.0034858291037380695, 0.0008248908561654389, 0.04365357756614685, 0.02340206503868103, -0.006581387482583523, 0.02392715774476528, 0.050295282155275345, 0.028170466423034668, -0.04490244761109352, 0.008883985690772533, -0.0020489224698394537, 0.01860528066754341, -0.008103444240987301, -0.009338119067251682, -0.015085745602846146, 0.01243190374225378, 0.0010129305301234126, -0.02242283895611763, 0.01302085816860199, 0.0027141571044921875, -0.041609980165958405, -0.018193721771240234, 0.010317344218492508, 0.021656488999724388, 0.013219540938735008, 0.02097528986632824, -0.008593056350946426, -0.011019832454621792, 0.018420789390802383, 0.00940907746553421, 0.02191193960607052, 0.017980847507715225, -0.013773016631603241, -0.012027440592646599, 0.0069326311349868774, 0.048819348216056824, -0.01143848616629839, 0.02406907267868519, 0.01881815493106842, 0.0005485967849381268, -0.024665122851729393, 0.01592305488884449, 0.022735057398676872, 0.016476530581712723, 0.012091303244233131, -0.017895696684718132, 0.0005503707216121256, 0.039935361593961716, 0.003661450929939747, 0.014887062832713127, -0.005045138765126467, 0.01975480653345585, 0.0023451736196875572, -0.0006723303813487291, -0.05378643050789833, 0.018023421987891197, -0.009472940117120743, -0.003102653892710805, 0.051231931895017624, -0.0013579655205830932, 0.03014310821890831, 0.044221244752407074, -0.005992433056235313, 0.012346753850579262, -8.376412006327882e-05, 0.007046164479106665, 0.050522346049547195, -0.003657903056591749, 0.043965794146060944, -0.00519060343503952, -0.020804990082979202, 0.0328679084777832, -0.009806444868445396, 0.02125912345945835, 0.033180125057697296, 0.0071419584564864635, 0.005800845567137003, 0.0058859954588115215, 0.015355387702584267, 0.02029408887028694, -0.0061875684186816216, 0.011750703677535057, 0.007585448212921619, -0.02801435813307762, 0.016717787832021713, 0.023756856098771095, -0.03380455821752548, -0.021046247333288193, 0.06783618777990341, -0.002082627732306719, 0.06550875306129456, -0.041382912546396255, -0.013723345473408699, -0.013290499337017536, -0.013446607626974583, 0.008798835799098015, 0.04459023103117943, 0.027418307960033417, -0.0023948445450514555, 0.025630157440900803, -0.017938271164894104, -0.04104231297969818, -0.0031505508814007044, -0.018676238134503365, 0.022139007225632668, 0.008124731481075287, -0.0040517221204936504, -0.008834315463900566, 0.014468408189713955, 0.034854743629693985, 0.014986404217779636, -0.0043532950803637505, 0.008827218785881996, 0.01024638582020998, -0.0011548472102731466, -0.031022991985082626, -0.004420705605298281, 0.0055844224989414215, 0.0453849621117115, 0.036529362201690674, -0.023316914215683937, -0.03735247626900673, 0.006265622563660145, -0.028894241899251938, 0.023941349238157272, 0.01714353822171688, -0.008245361037552357, 0.008919465355575085, 0.03454252704977989, 0.011516541242599487, 0.014872871339321136, 0.038203977048397064, 0.00560216186568141, -0.017753779888153076, 0.03212994337081909, -0.016760362312197685, 0.02124493196606636, 0.01314858254045248, -0.01637718826532364, -0.0014679509913548827, 0.03474121168255806, -0.002703513251617551, 0.01072180736809969, -0.04359681159257889, 0.00952970702201128, 0.03931092843413353, 0.011743607930839062, 0.029547058045864105, -0.04058817774057388, -0.012942804023623466, -0.0007867507520131767, 0.023558173328638077, 0.00506642647087574, -0.003244570689275861, -0.028880050405859947, -0.02191193960607052, -0.03931092843413353, -0.006673633120954037, 0.029348375275731087, -0.025715306401252747, 0.03300982713699341, -0.0008257778245024383, 0.0071526020765304565, -0.028880050405859947, 0.00416170759126544, 0.024764465168118477, 0.010338632389903069, 0.013340170495212078, 0.013184062205255032, 0.02392715774476528, 0.020393431186676025, -0.0006900699809193611, 0.015426346100866795, -0.026864832267165184, 0.01024638582020998, 0.012992474250495434, -0.0037501489277929068, 0.006063391454517841, -0.027631182223558426, -0.01732802949845791, 0.0019158755894750357, 0.044505078345537186, 0.022791823372244835, 0.035365644842386246, -0.02364332415163517, 0.007088739424943924, 0.00104042689781636, 0.020365048199892044, 0.0036206499207764864, 0.02196870557963848, 0.006709112320095301, 0.005822132807224989, 0.01805180497467518, 0.023274339735507965, 0.003533726092427969, -0.01447550393640995, 0.028397532179951668, 0.012403519824147224, 0.009735486470162868, -0.005992433056235313, -0.013723345473408699, -0.0021571340039372444, -0.01556826289743185, -0.0024924122262746096, 0.0035035687033087015, -0.032697610557079315, 0.0361887589097023, 0.023501407355070114, -0.014972212724387646, -0.007457722909748554, 0.02824142388999462, -0.046208079904317856, 0.003029921790584922, -0.018874922767281532, -0.023018889129161835, -0.004147515632212162, -0.006496237125247717, -0.01617850549519062, -0.014745146036148071, 0.03139197453856468, -0.028056932613253593, 0.00645011430606246, -0.02287697233259678, 0.02460835687816143, -0.03757954388856888, -0.011374624446034431, 0.0032126393634825945, -0.01291442010551691, 0.021415231749415398, -0.03300982713699341, 0.015866287052631378, 0.011779086664319038, 0.01556826289743185, -0.0029288060031831264, -0.016334613785147667, -0.0003700921661220491, -0.020166363567113876, 0.022380264475941658, 0.01120432373136282, 0.021401040256023407, 0.022791823372244835, -0.004431349225342274, -0.011736511252820492, -0.0034592198207974434, 0.02406907267868519, -0.008578864857554436, 0.0026059455703943968, 0.01484448742121458, 0.03786337748169899, -0.012084207497537136, 0.006166280712932348, 0.04813814535737038, 0.03789176046848297, 0.03235701099038124, 0.03306659311056137, -0.007706077303737402, 0.02509087324142456, 0.01785312220454216, 0.03760792687535286, -0.01194229070097208, 0.029050350189208984, 0.02723381668329239, -0.0007942900410853326, -0.026112673804163933, 0.019669655710458755, 0.005683764349669218, -0.006758783012628555, 0.01313439104706049, 0.02800016663968563, -0.03161904215812683, 0.023756856098771095, 0.03465605899691582, -0.007961527444422245, 0.0072235604748129845, -0.011183036491274834, 0.014432929456233978, 0.004129776265472174, -0.020918522030115128, -0.006822645664215088, 0.003429062431678176, -0.015156704001128674, 0.03130682557821274, 0.0296322088688612, 0.008600152097642422, 0.03065400943160057, 0.06636025011539459, -0.0010040607303380966, 0.003700478235259652, 0.012971187010407448, 0.0037891760002821684, -0.0024853162467479706, -0.012495766393840313, -0.007578352000564337, -0.014958021230995655, 0.02795759215950966, -0.015752755105495453, -0.001758880214765668, -0.014432929456233978, 0.010558603331446648, 0.0004461506614461541, 0.008578864857554436, 0.003714669728651643, 0.0361887589097023, 0.0014723858330398798, -0.008096348494291306, 0.029717357829213142, 0.00445263646543026, -0.02506249025464058, -0.02680806629359722, -0.019598696380853653, 0.0019673204515129328, 0.008018294349312782, -0.012992474250495434, 0.009451652877032757, 0.01422715000808239, 0.005279301665723324, -0.033378809690475464, 0.023089848458766937, 0.04796784743666649, 0.009366502985358238, 0.013957507908344269, -0.023685898631811142, 0.016746170818805695, 0.00927425641566515, -0.0017863765824586153, -0.009678719565272331, -0.02825561724603176, -0.023345299065113068, -0.001106950337998569, -0.0231466144323349, 0.025658540427684784, -0.013098912313580513, -0.047400180250406265, -0.009976744651794434, -0.021315889433026314, -0.019712230190634727, -0.005662476643919945, -0.003207317553460598, -0.029263224452733994, 0.006364964414387941, 0.029149692505598068, 0.07271812111139297, -0.01302085816860199, 0.029263224452733994, 0.02553081512451172, -0.02384200692176819, -0.01595143787562847, -0.011516541242599487, -0.004147515632212162, -0.0453849621117115, -0.02966059185564518, 0.027872441336512566, -0.013815591111779213, -0.007557064760476351, -0.03854457661509514, -0.0006474949768744409, 0.027844058349728584, 0.018619472160935402, 0.004541334696114063, 0.03624552860856056, 0.020833373069763184, 0.0038069155998528004, 0.03616037592291832, -0.0011060633696615696, -0.03732409328222275, -0.0195277389138937, 0.032470542937517166, -0.027631182223558426, 0.04439154639840126, -0.02994442544877529, -0.006333033088594675, 0.005768914241343737, -0.0043071722611784935, -0.006691372953355312, 0.0035479175858199596, 0.03139197453856468, -0.03198802471160889, -0.008933656848967075, 0.01853432133793831, -0.007138410583138466, -0.007961527444422245, -0.06443018466234207, -0.0062585268169641495, 0.016760362312197685, -0.010707615874707699, 0.03576301038265228, 0.0037785323802381754, -0.016022395342588425, 0.04288722947239876, 0.02560177445411682, -0.006808454170823097, -0.012453190982341766, -0.033662643283605576, 0.005495724268257618, 0.002852525794878602, -0.028071124106645584, 0.028099507093429565, 0.019882529973983765, 0.020336663350462914, 0.026197824627161026, 0.025516623631119728, -0.013432416133582592, 0.021656488999724388, -0.02192613109946251, -0.022280922159552574, 0.02506249025464058, 0.013780112378299236, -0.009827732108533382, 0.004073009360581636, 0.0159088633954525, 0.013240829110145569, 0.028582025319337845, -0.009416173212230206, -0.022323498502373695, -0.006854576990008354, 0.013290499337017536, 0.001958450535312295, 0.040900394320487976, -0.025871416553854942, 0.015412154607474804, 0.0351385772228241, 0.00415106350556016, -0.0039914073422551155, 0.02846849150955677, -0.0027585059870034456, -0.03431545943021774, -0.0018697526538744569, -0.03187449276447296, -0.014532270841300488, 0.024977341294288635, -0.01219774130731821, 0.025658540427684784, 0.014255532994866371, 0.016746170818805695, -0.017980847507715225, -0.024296140298247337, -0.0028809092473238707, 0.04615131393074989, 0.011885523796081543, 0.003696930129081011, -0.03210156038403511, 0.01616431213915348, -0.009316831827163696, 0.007301614619791508, -0.017285455018281937, -0.02433871477842331, 0.0173422209918499, -0.01473095454275608, -0.022124813869595528, 0.006893604062497616, -0.02727639116346836, 0.007443531416356564, -0.02311823144555092, -0.00024258886696770787, -0.012070016004145145, 0.01619269698858261, -0.01785312220454216, 0.005623449571430683, -0.008962039835751057, 0.02673710696399212, 0.008124731481075287, -0.01087081991136074, 0.01519927941262722, -0.01954193040728569, -0.002451611217111349, 0.02460835687816143, -0.009983840398490429, 0.003021051874384284, 0.0328679084777832, 0.014773529022932053, -0.002481768373399973, -0.01684551313519478, 0.003714669728651643, 0.00019580070511437953, -0.016235271468758583, -0.006304649636149406, 0.00742224371060729, -0.023217573761940002, 0.04853551462292671, 0.01949935592710972, 0.022366072982549667, 0.019201330840587616, 0.04004889354109764, -0.05475146695971489, 0.005109001416712999, -0.02195451408624649, -0.010941778309643269, -0.039935361593961716, -0.006130801513791084, -0.007273231167346239, 0.021287506446242332, -0.022522181272506714, 0.003178934333845973, 0.011821662075817585, 0.007273231167346239, 0.021840982139110565, -0.004544882569462061, -0.035110194236040115, 0.02097528986632824, 0.02002444677054882, -0.026382315903902054, 0.016263654455542564, 0.04470376297831535, 0.009827732108533382, -0.05617063120007515, 0.002637876896187663, -0.01881815493106842, 0.012737024575471878, -0.018662046641111374, 0.01566760428249836, -0.00031132978620007634, 0.038970328867435455, -0.00031132978620007634, 0.009359407238662243, -0.021401040256023407, -0.003721765708178282, -0.009103956632316113, 0.019456781446933746, 0.029376758262515068, 0.005744078662246466, -0.022621523588895798, 0.0313635915517807, -0.02849687449634075, 0.03516696020960808, -0.001789924455806613, -0.01932905614376068, -0.030313408002257347, 0.03130682557821274, -0.010792765766382217, 0.032953061163425446, 0.0164339542388916, 0.035564325749874115, 0.01932905614376068, -0.0031576466280966997, 0.011481061577796936, -0.029518675059080124, -0.0014732728013768792, -0.0007180098327808082, -0.013262116350233555, -0.04731503129005432, 0.03085269220173359, 0.025686923414468765, -0.00274608819745481, 0.03545079380273819, -0.0010883237700909376, -0.013730441220104694, -0.009692911058664322, 0.007982814684510231, -0.041893813759088516, 0.009352310560643673, 0.0032906937412917614, 0.02246541529893875, -0.03400324285030365, -0.03479797765612602, 0.0342303104698658, -0.01860528066754341, 0.025757882744073868, 0.009948360733687878, 0.015057362616062164, 0.01231127418577671, -0.009032998234033585, 0.009579378180205822, 0.01834983006119728, -0.0032108654268085957, -0.001745575456880033, -0.015738563612103462, -0.018619472160935402, -0.030795926228165627, -0.047116346657276154, 0.020648881793022156, 0.01949935592710972, -0.0010040607303380966, 0.0004450419219210744, -0.019896721467375755, 0.026410698890686035, 0.0077912271954119205, 0.006638153921812773, -0.002002799417823553, -0.004097844939678907, -0.008947848342359066, -0.000737523369025439, 0.005662476643919945, 0.016206888481974602, 0.002517247572541237, -0.008614344522356987, -0.0002441410906612873, 0.01781054586172104, -0.0037927241064608097, -0.01326921209692955, 0.021131398156285286, -0.022607332095503807, -0.02729058265686035, 0.028284000232815742, -0.0036898343823850155, -0.025658540427684784, 0.027829866856336594, -0.008444043807685375, -0.014184574596583843, -0.012247411534190178, 0.010076086036860943, 0.009579378180205822, 0.028539448976516724, 0.04876258224248886, 0.016306228935718536, 0.012424807995557785, 0.034116774797439575, -0.0014058623928576708, 0.013702058233320713, -0.010047703050076962, 0.04240471124649048, 0.0033722957596182823, 0.017782162874937057, -0.011062406934797764, 0.007113575004041195, -0.026623575016856194, 0.014482599683105946, -0.0034876030404120684, 0.04129776358604431, -0.027418307960033417, 0.037011876702308655, -0.0018981359899044037, 0.020379239693284035, 0.018874922767281532, 0.014560653828084469, -0.02581464871764183, -0.0049457973800599575, 0.03232862427830696, -0.026836449280381203, 0.00869239866733551, -0.0025101518258452415, 0.043284595012664795, 0.018023421987891197, 0.015781138092279434, -0.01147396583110094, -0.022820206359028816, -0.010792765766382217, 0.025005724281072617, -0.011701032519340515, -0.003668546909466386, -0.019116180017590523, 0.008238265290856361, 0.033123359084129333, 0.021074630320072174, -0.018222104758024216, 0.012850557453930378, 0.05477984994649887, 0.00021187720994930714, 0.00651752483099699, -0.015128321014344692, -0.018690429627895355, -0.004048174247145653, 0.04126937687397003, 0.0029110664036124945, -0.015965629369020462, -0.00928135309368372, 0.012148070149123669, -0.010906298644840717, 0.006769427098333836, -0.015028979629278183, 0.012985378503799438, -0.034883126616477966, 0.026623575016856194, 0.012701544910669327, -0.009948360733687878, 0.022366072982549667, 0.003579848911613226, 0.03300982713699341, 0.0074790106154978275, 0.007266135420650244, 0.044221244752407074, 0.015142512507736683, 0.01038120687007904, 0.016973238438367844, 0.0075712562538683414]" -How Everactive Powers a Dense Sensor Network With Virtually No Power at All,"and analytics tools. We also added a third component: outbound channels for our platform users.Everactive architecture diagramCompared to Amazon RDS for PostgreSQL, Timescale also consolidates a lot of the costs associated with operating our instance in AWS—we now have a simpler bill that makes it easier to forecast costs.From the operation point of view, dealing with fewer instances and relying more on the Timescale Support Team for infrastructure maintenance has reduced our database maintenance workload significantly. Our security operations also benefited from the migration, again thanks to the consolidation and the transfer of certain responsibilities to Timescale.✨Editor’s Note:Read how our Support Team is raising the baron hosted database support.We’ll continue to innovate on our technology platform and increase Everactive’s product offerings, including improving our sensors’ wireless range, lowering power requirements to increase energy harvesting efficiency, integrating with additional sensors, and shrinking device form factor. These successive chip platform enhancements will allow us to monitor the condition of more and more assets, and we’re also developing a localization feature to identifywhereassets are deployed.Ultimately, Everactive’s mission is to generate new, massive datasets from a wealth of currently un-digitized physical-world assets. Transforming that data into meaningful insights has the potential to fundamentally improve the way that we live our lives—impacting how we manage our workplaces, care for our environment, interact with our communities, and manage our own personal health.Advice & ResourcesIf you’re evaluating your database options, here are two recommendations based on our experiences. First, if you have enough time-series data that a general database won’t cut it (millions of rows), TimescaleDB should be your first choice. It’s easy to try out,the docs are great, and thecommunityis very helpful.Second, don’t underestimate the importance of using solutions that leverage a wide knowledge base shared by many/most backend developers. The increase in team throughput and decrease in onboarding time afforded by TimescaleDB—everyone knows at leastsomeSQL—in contrast to OpenTSDB—an esoteric thing built on HBase—has been a huge advantage. We expected this to some degree, but actually experiencing it firsthand has confirmed its value.Additionally, the use of schema-as-code tools and an internal/external schema separation discussed above have also been cornerstones of our success. We hadn’t been using these tools and patterns at Everactive previously but have since seen them catch on in other projects and teams.Want to read more developer success",https://www.timescale.com/blog/how-everactive-powers-a-dense-sensor-network-with-virtually-no-power-at-all/,498,"[0.02805035561323166, -0.0037357453256845474, 0.06149280443787575, -0.00044209606130607426, 0.07021193206310272, 0.03355717658996582, -0.00946484412997961, -0.0039902920834720135, -0.016979357227683067, 0.024536890909075737, 0.05466664582490921, -0.027175575494766235, 0.016878971830010414, -0.028107719495892525, 0.05848126485943794, 0.057391371577978134, 0.01332965586334467, -0.018284358084201813, -0.047066088765859604, -0.013437210582196712, -0.0002545469324104488, 0.016247982159256935, 0.036884211003780365, 0.027318982407450676, 0.0073997871950268745, -0.012963968329131603, -0.046119604259729385, 0.06206643208861351, 0.0035295982379466295, -0.06252533197402954, 0.005517574027180672, -0.05191323533654213, -0.041243776679039, 0.03481915220618248, 0.029140247032046318, 0.029513105750083923, 0.035335417836904526, -0.023991946130990982, 0.021597053855657578, 0.005757780279964209, -0.00354573130607605, 0.03883454203605652, 0.002050716197118163, 0.04178871959447861, -0.022084636613726616, 0.0027211427222937346, -0.03315563499927521, -0.004538822919130325, 0.005772120784968138, 0.036740805953741074, -0.03436025232076645, 0.013516084291040897, -0.015803420916199684, -0.010913251899182796, 0.020105622708797455, -0.03235255926847458, -0.011701988987624645, 0.04944663867354393, -0.004137284122407436, 0.0002639580052345991, 0.009192371740937233, -0.039838388562202454, 0.032868821173906326, 0.04419795423746109, -0.021955570206046104, 0.030086731538176537, -0.03562223166227341, 0.04178871959447861, -0.03407343849539757, 0.006417450960725546, 0.019589358940720558, 0.009013112634420395, 0.013774216175079346, -0.012225423939526081, 0.029068544507026672, -0.058309175074100494, -0.05050785094499588, 0.04758235439658165, 0.012289957143366337, -0.010282262228429317, 0.015602651983499527, 0.0036084719467908144, -0.01971842534840107, 0.0024002701975405216, 0.016262322664260864, -0.03831827640533447, -0.008016436360776424, -0.03005805052816868, -0.0007430261466652155, 0.037658605724573135, 0.011343472637236118, 0.044714219868183136, 0.010267921723425388, 0.012834901921451092, 0.03622454032301903, 0.040125202387571335, 0.00627045938745141, -0.01555963046848774, -0.013831579126417637, 0.04342355951666832, 0.014290480874478817, -0.03545014187693596, -0.02539733238518238, -0.010303773917257786, 0.01693633571267128, -0.017280511558055878, 0.027806565165519714, -0.014218777418136597, 0.012999820522964, 0.002032790333032608, -0.10789922624826431, -0.005804387386888266, -0.04465685412287712, -0.0021403455175459385, -0.028236785903573036, -0.014756552875041962, -0.03077508509159088, 0.022729966789484024, 0.001800650730729103, -0.023977605625987053, -0.020105622708797455, 0.007349594961851835, -0.02156837284564972, 0.024063648656010628, 0.038605090230703354, -0.012605451978743076, -0.006134222727268934, -0.028107719495892525, -0.0400104783475399, -0.02019166760146618, 0.03109057992696762, 0.009228223003447056, 0.056588295847177505, -0.025210903957486153, -0.028580961748957634, -0.01804056577384472, -0.06424621492624283, -0.01646309345960617, -0.01448407955467701, -0.01600419171154499, 0.008367782458662987, -0.050134994089603424, -0.0076866005547344685, -0.012268445454537868, -0.04402586445212364, 0.010146026499569416, -0.013508914038538933, 0.025010133162140846, -0.018556831404566765, -0.025153540074825287, -0.0030330524314194918, -0.01723748818039894, -0.03338508680462837, -0.01738089509308338, 0.05544104054570198, 0.024522550404071808, 0.028265466913580894, 0.02816508151590824, -0.018700238317251205, -0.0579649992287159, -0.028294147923588753, 0.03338508680462837, -0.0038612261414527893, 0.006274044513702393, -0.02773486077785492, -0.007105803582817316, -0.037830695509910583, -0.03255332633852959, -0.11793769150972366, -0.033356405794620514, -0.01616193912923336, -0.05641620606184006, -0.004248424433171749, 0.02063622884452343, 0.04729554057121277, -0.009378800168633461, -0.008102480322122574, -0.0498768612742424, 0.015043365769088268, -0.048299387097358704, -0.05174114927649498, -0.002629720838740468, -0.020091282203793526, 0.03375794366002083, -0.03129134699702263, 0.0021062863525003195, -0.047668397426605225, 0.016362708061933517, 0.018585512414574623, 0.01208201702684164, -0.03676948696374893, 0.06155017018318176, 0.029197610914707184, 0.02142496593296528, 0.04560333862900734, -0.05584258213639259, 0.012074846774339676, 0.021037766709923744, -0.03372926265001297, 0.017768094316124916, 0.06866314262151718, -0.006944471038877964, 0.07675128430128098, 0.0020919456146657467, -0.007959073409438133, 0.006700679659843445, -0.0030097486451268196, 0.013336826115846634, -0.051999282091856, -0.030287500470876694, 0.0025687729939818382, -0.011357813142240047, 0.005886846221983433, -0.003742915578186512, -0.035966407507658005, 0.020421117544174194, -0.04646378010511398, -0.013910452835261822, 0.020880019292235374, -0.00719901779666543, 0.0006708746077492833, 0.018685897812247276, -0.005517574027180672, -0.030115412548184395, -0.02693178318440914, 0.05340466648340225, 0.029627829790115356, -0.03530673682689667, 0.039809707552194595, -0.007758304011076689, 0.003249955130741, -0.031004535034298897, -0.018556831404566765, -0.023834198713302612, 0.020679250359535217, -0.006302725989371538, 0.02310282364487648, -0.012175231240689754, 0.013838749378919601, -0.04345224052667618, 0.007751133758574724, 0.004624866880476475, -0.020263370126485825, 0.028552280738949776, -0.022916395217180252, 0.0431654267013073, -0.017194466665387154, -0.06040291488170624, 0.022127658128738403, 0.05558444932103157, 0.045201800763607025, -0.0036210198886692524, 0.02142496593296528, 0.0031029630918055773, -0.01587512530386448, -0.05248686298727989, -0.014828256331384182, 0.020822657272219658, 0.019316885620355606, -0.019904853776097298, 0.003097585402429104, 0.0018105099443346262, 0.0010011582635343075, -0.01155141182243824, -0.032094426453113556, 0.015946827828884125, 0.03252464532852173, -0.037658605724573135, 0.02680271863937378, -0.00861874409019947, 0.05466664582490921, 0.025483375415205956, 0.033643219619989395, -0.06900731474161148, 0.008798003196716309, -0.025655463337898254, 0.010303773917257786, -0.004180306103080511, -0.0021582713816314936, 0.01723748818039894, 0.011063829064369202, -0.027448048815131187, 0.01633402705192566, -0.005377752240747213, 0.02569848671555519, -0.02019166760146618, -0.010189048014581203, 0.009665613994002342, -0.007120144087821245, -0.03034486435353756, -0.007277891505509615, 0.023045461624860764, 0.005782876163721085, -0.012684325687587261, 0.010949104093015194, 0.013365507125854492, 0.012146550230681896, -0.01723748818039894, -0.0461769662797451, -0.010884570889174938, 0.012806220911443233, 0.012060506269335747, 0.003402324626222253, -0.028136400505900383, 0.025497715920209885, 0.0350772850215435, -0.025655463337898254, -0.0014224154874682426, 0.005807972513139248, 0.0029900302179157734, 0.0005462900153361261, -0.006291970144957304, 0.014053859747946262, 0.002199500799179077, -0.04568938538432121, -0.011644626036286354, 0.05171246826648712, -0.034245528280735016, -0.027992993593215942, -0.026774035766720772, -0.021009085699915886, -0.07141654938459396, -0.005033576395362616, -0.002762372139841318, 0.018743259832262993, -0.008002095855772495, 0.013731194660067558, -0.01008149329572916, 0.0382322333753109, -0.0027318981010466814, -0.004216157831251621, -0.024680297821760178, 0.02265826240181923, 0.023791177198290825, -0.0072850617580115795, -0.05311785265803337, 0.0018481542356312275, -0.007794155739247799, -0.009228223003447056, -0.0003502261242829263, -0.021668756380677223, 0.002615380333736539, -0.05879675969481468, 0.009758828207850456, 0.04267784208059311, 0.015072047710418701, -0.01710842363536358, -0.004592600744217634, 0.002165441634133458, 0.02756277285516262, -0.01533017959445715, -0.021295899525284767, 0.023188868537545204, -0.02262958139181137, 0.027318982407450676, -0.0014932225458323956, 0.00684767123311758, -0.0468653179705143, -0.012526578269898891, -0.00527019752189517, 0.0015998813323676586, 0.019474633038043976, 0.05615807697176933, -0.004201817326247692, -0.0019252353813499212, 0.052142687141895294, -0.06212379410862923, 0.03880586102604866, 0.00017690563981886953, -0.017165785655379295, 0.015459245070815086, -0.003986706957221031, -0.032725416123867035, 0.0023124334402382374, -0.04307937994599342, -0.0018589097307994962, 0.04445608705282211, 0.032123107463121414, -0.02478068321943283, 0.04330883175134659, 0.0505652129650116, 0.018872326239943504, 0.0124692153185606, -0.019790127873420715, 0.038576409220695496, 0.06636863201856613, -0.021439306437969208, -0.015889465808868408, -0.05896884575486183, -0.026128705590963364, 0.033212997019290924, 0.013257952407002449, -0.01533017959445715, -0.03863377124071121, 0.005879675969481468, -0.022701285779476166, 0.006105541717261076, 0.008754980750381947, 0.07772644609212875, -0.008970091119408607, 0.0382322333753109, -0.017782434821128845, -0.03479047119617462, -0.0009285585838370025, 0.021826503798365593, -0.00419823219999671, 0.018112270161509514, 0.0019610871095210314, -0.01538754254579544, -0.00519849406555295, 0.01548792701214552, -0.0068154046311974525, 0.050307080149650574, -0.010440009646117687, 0.02833716943860054, -0.03605245053768158, -0.016563476994633675, 0.055985987186431885, 0.010870230384171009, 0.06424621492624283, -0.020378096029162407, -0.022672604769468307, -0.013293803669512272, -0.031004535034298897, -0.023920241743326187, 0.035966407507658005, 0.01340135931968689, -0.007679430302232504, -0.05698983371257782, -0.05914093554019928, -0.03375794366002083, 0.0006426413892768323, 0.05615807697176933, -0.050737302750349045, -0.02172612026333809, 0.030430907383561134, -0.00028098755865357816, -0.009887893684208393, 0.05449455603957176, 0.022400131449103355, 0.0015299705555662513, 0.013594957999885082, -0.015631332993507385, 0.03404475748538971, -0.02542601339519024, -0.04577542841434479, -0.06877786666154861, -0.03246728330850601, -0.020693590864539146, 0.021654415875673294, 0.010088663548231125, -0.01971842534840107, -0.025296946987509727, 0.04064146801829338, -0.03510596603155136, -0.04144454374909401, 0.020693590864539146, -0.010189048014581203, 0.03639662638306618, 0.011286109685897827, -0.02665931172668934, 0.013774216175079346, -0.03757256269454956, -0.031147941946983337, -0.007012588903307915, -0.04847147315740585, 0.039350807666778564, 0.016506114974617958, 0.02479502372443676, -0.031205303966999054, 0.01515809167176485, 0.040125202387571335, -0.041329819709062576, -0.030746402218937874, -0.018714578822255135, 0.021525349467992783, 0.02541167289018631, -0.006474813912063837, 0.01725182868540287, -0.007751133758574724, 0.017796775326132774, -0.025038814172148705, -0.0063995253294706345, 0.056588295847177505, 0.013308144174516201, 0.006532176397740841, -0.004255594685673714, 0.01586078479886055, -0.014598805457353592, 0.004764688666909933, -0.015616992488503456, -0.008754980750381947, 0.07571875303983688, -0.017309192568063736, 0.007485831156373024, 0.005080183502286673, -0.07784117013216019, -0.028423214331269264, 0.0034184579271823168, 0.012404682114720345, 0.0317215695977211, -0.00032535401987843215, -0.011264598928391933, 0.0676879733800888, -0.03132002800703049, 0.025913596153259277, -0.023461341857910156, -0.003757256316021085, 0.021482327952980995, -0.029326675459742546, -0.011759351938962936, -0.010224900208413601, 0.025339968502521515, 0.04161663353443146, -0.014727870933711529, 0.022988099604845047, 0.0006888004718348384, 0.008303249254822731, -0.010561905801296234, -0.027032168582081795, -0.02820810303092003, -0.032868821173906326, -0.020277712494134903, 0.00481129577383399, 0.009335777722299099, -0.01987617276608944, -0.05346202850341797, 0.0046678888611495495, -0.03490519896149635, -0.011630285531282425, 0.008676107041537762, -0.021453646942973137, 0.012978308834135532, -0.0053669968619942665, -0.0480986163020134, 0.025067497044801712, -0.019030073657631874, -0.022988099604845047, -0.05486741662025452, 0.0505652129650116, 0.014111221767961979, 0.07910314947366714, 0.01785413734614849, 0.023461341857910156, 0.01431199163198471, -0.009651272557675838, -0.009687124751508236, -0.010576246306300163, -0.001113194739446044, 0.03639662638306618, 0.020908700302243233, -0.04373905435204506, 0.019661063328385353, 0.008482508361339569, 0.023633429780602455, 0.01742391847074032, 0.007722452282905579, 0.013164738193154335, 0.001661725458689034, 0.006761627271771431, 0.004137284122407436, -0.013917623087763786, 0.006664827931672335, -0.018140951171517372, -0.012562429532408714, 0.01953199692070484, 0.01117138471454382, -0.040412016212940216, -0.07078555971384048, 0.03249596431851387, 0.008504019118845463, -0.012196741998195648, 0.011042318306863308, 0.01100646611303091, 0.014598805457353592, 0.006349333096295595, -0.02324623055756092, -0.021138152107596397, 0.007095047738403082, -0.0007403372437693179, -0.02893947809934616, -0.018872326239943504, -0.044599492102861404, 0.03742915764451027, -0.029656512662768364, 0.00786585919559002, 0.02402062714099884, 0.02556942030787468, 0.04557465761899948, -0.020707931369543076, 0.014383695088326931, 0.013229270465672016, -0.010805697180330753, 0.005399263463914394, 0.008511189371347427, -0.00886253546923399, 0.015631332993507385, 0.00371423433534801, -0.018298698589205742, 0.02141062542796135, 0.043681688606739044, 0.0049439468421041965, -0.0045961858704686165, -0.021998591721057892, -0.01649177446961403, 0.00558569235727191, -0.005962134804576635, 0.0012727347202599049, 0.04508707672357559, -0.012956798076629639, 0.024723319336771965, 0.008633085526525974, 0.011544241569936275, -0.023074142634868622, -0.01954633742570877, -0.018571171909570694, 0.006862012203782797, -0.0006278525688685477, 0.0027390685863792896, -0.015043365769088268, -0.05168378725647926, -0.030373545363545418, -0.0010181877296417952, -0.03694157302379608, 0.020076941698789597, 0.007629238069057465, -0.013817238621413708, -0.02789260819554329, 0.017065400257706642, 0.021195514127612114, -0.027318982407450676, 0.012691495940089226, 0.04445608705282211, 0.0015039780410006642, 0.009601080790162086, 0.035507507622241974, 0.033212997019290924, 0.02433612197637558, -0.00027717833290807903, -0.027591455727815628, 0.020119965076446533, 0.03470442816615105, -0.01464182697236538, -0.0009733731858432293, -0.007277891505509615, -0.027204256504774094, 0.00407633651047945, 0.019790127873420715, -0.004399001598358154, -0.008231546729803085, -0.022443152964115143, -0.03476179018616676, 0.0548100508749485, 0.03375794366002083, 0.043968502432107925, -0.029828600585460663, -0.013996496796607971, -0.0053669968619942665, 0.02033507451415062, 0.005151886958628893, -0.05747741833329201, -0.031147941946983337, -0.03467574715614319, 0.007159580942243338, -0.021037766709923744, -0.00294880080036819, 0.03203706443309784, 0.012404682114720345, 0.03163552284240723, 0.005395678337663412, -0.04121509566903114, 0.01517243217676878, 0.02095172367990017, 0.035679593682289124, 0.04431267827749252, 0.003226651344448328, 0.030287500470876694, -0.008504019118845463, -0.0034292135387659073, 0.03645399212837219, -0.01895836926996708, 0.016592158004641533, -0.027648817747831345, 0.017940182238817215, -0.0038648112677037716, 0.011135532520711422, 0.004366734996438026, 0.009973937645554543, 0.04531652480363846, 0.01831303909420967, 0.0018427764298394322, -0.005513988900929689, 0.01186690665781498, -0.00869044754654169, -0.017323533073067665, -0.01818397268652916, 0.01677858829498291, 0.04127245768904686, -0.045517295598983765, -0.03639662638306618, -0.002566980430856347, 0.02911156602203846, -0.03367190062999725, -0.017294852063059807, -0.02727596089243889, 0.005850994493812323, 0.0193885900080204, -0.03817487135529518, 0.01772507093846798, -0.03200838342308998, -0.05696115270256996, 0.0028018089942634106, -0.030918490141630173, 0.010210558772087097, -0.005521159153431654, -0.021367602050304413, -0.017667708918452263, 0.020664909854531288, -0.04155927151441574, -0.013315314427018166, -0.05977192521095276, -0.005453040823340416, -0.03794541954994202, -0.03175025060772896, 0.023905901238322258, 0.005280952900648117, 0.003260710509493947, 0.039035312831401825, -0.015918146818876266, -0.011988802812993526, -0.001072861603461206, -0.0030868297908455133, 0.00955088809132576, -0.0006941782194189727, 0.03476179018616676, -0.009615421295166016, -0.03223783150315285, -0.009687124751508236, -0.04944663867354393, -0.013487403281033039, -0.011716329492628574, -0.005829483736306429, -0.010189048014581203, -0.023475682362914085, -0.005180567968636751, -0.03958025574684143, -0.002966726664453745, 0.039838388562202454, 0.024379143491387367, -0.007148825563490391, -0.02065056934952736, 0.013731194660067558, -0.004262764938175678, 0.0005781083600595593, 0.005825898610055447, 0.009350119158625603, -0.01248355582356453, 0.003940099850296974, -0.0038002782966941595, 0.027003487572073936, -0.002181574935093522, 0.03545014187693596, -0.021338921040296555, 0.022385790944099426, 0.021840844303369522, 0.043050698935985565, -0.015918146818876266, -0.004825636278837919, -0.007930392399430275, -0.022686945274472237, -0.021066447719931602, -0.021338921040296555, 0.009199541993439198, -0.013200589455664158, 0.0440545491874218, 0.015530948527157307, 0.006901449058204889, -0.025024473667144775, 0.020521502941846848, -0.02030639350414276, 0.004280691035091877, -0.0017513546627014875, -0.02727596089243889, -0.006460473407059908, 0.0013426454970613122, -0.00015326593711506575, 0.039178717881441116, 0.012354489415884018, 0.005922697950154543, -0.036740805953741074, -0.02480936422944069, -0.01425462868064642, -0.017581665888428688, 0.024838045239448547, 0.04359564557671547, -0.023002440109848976, 0.0033610952086746693, -0.08277436345815659, -0.01409688126295805, 0.03645399212837219, -0.012583940289914608, -0.008719129487872124, 0.006539347115904093, 0.020435459911823273, 0.04497234895825386, 0.05440851300954819, -0.020578864961862564, 0.023160187527537346, -0.04328015074133873, -0.018097929656505585, -0.03000068850815296, -0.004908095113933086, 0.0008030777098610997, -0.004442023579031229, 0.03002936951816082, 0.021195514127612114, 0.012404682114720345, -0.009558058343827724, -0.0054602110758423805, -0.028122060000896454, 0.04961872845888138, -0.008984431624412537, -0.01663518138229847, -0.005600032862275839, 0.033327724784612656, 0.02340397797524929, -0.006657657213509083, 0.005026405677199364, 0.008052287623286247, -0.009486354887485504, 0.008253057487308979, -0.014914300292730331, 0.00870478805154562, -0.00021791100152768195, 0.020578864961862564, -0.001098854118026793, 0.003732160199433565, -0.03854772821068764, -0.054437194019556046, 0.03585168346762657, -0.03522069379687309, 0.05472400784492493, -0.02092304266989231, -0.017194466665387154, 0.024121012538671494, -0.003551109228283167, 0.021969910711050034, 0.026401178911328316, 0.01508638821542263, -0.0074930014088749886, -0.011701988987624645, -0.015215453691780567, 0.023748153820633888, -0.05346202850341797, -0.006894278340041637, 0.012232594192028046, 0.003500916762277484, -0.026085684075951576, -0.002792846178635955, 0.02957046777009964, -0.05432246997952461, -0.025598101317882538, 0.0103969881311059, 0.003929344471544027, 0.06264005601406097, -0.01487127784639597, 0.009228223003447056, 0.021009085699915886, 0.04698004573583603, -0.00046427929191850126, -0.027763543650507927, 0.01009583380073309, -0.0054136039689183235, 0.02308848313987255, -0.02356172539293766, -0.0016222886042669415, -0.01262696273624897, 0.027648817747831345, -0.007600556593388319, -0.010569076053798199, 0.02928365394473076, -0.00154072605073452, -0.032897502183914185, -0.02000523917376995, -0.0018051322549581528, 0.010038470849394798, 0.007564704865217209, 0.049360595643520355, -0.021797822788357735, 0.0038612261414527893, 0.013444380834698677, 0.024536890909075737, 0.020119965076446533, 0.01999089866876602, -0.010267921723425388, -0.011831055395305157, -0.003803863422945142, 0.039494212716817856, 0.010454350151121616, 0.022572219371795654, 0.016735564917325974, -0.004155210219323635, 0.0002601487794891, -0.0014170377980917692, -0.007277891505509615, -0.013308144174516201, 0.007256380748003721, -0.014656167477369308, 0.0012180609628558159, 0.0382322333753109, 0.017036719247698784, 0.0006628079572692513, -0.00013365955965127796, 0.016291003674268723, -0.009507866576313972, 0.009522207081317902, -0.03510596603155136, 0.029685193672776222, -0.009142179042100906, -0.050221037119627, 0.03582300245761871, -0.0025114102754741907, 0.012727347202599049, 0.0066074649803340435, -0.012791880406439304, 0.008518359623849392, -0.017223147675395012, 0.013207759708166122, 0.0838642567396164, 0.004133698996156454, 0.04870092496275902, -0.00978033896535635, -0.019646722823381424, 0.030746402218937874, -0.007844348438084126, -0.010339625179767609, 0.029154587537050247, -0.0022407302167266607, -0.009135008789598942, -0.005470966920256615, 0.01492864079773426, 0.02850925736129284, 0.0022353522945195436, -0.024838045239448547, 0.009988279081881046, -0.014204436913132668, 0.023504363372921944, 0.018700238317251205, -0.01877194084227085, -0.01802622526884079, 0.08753547072410583, 0.0015308668371289968, 0.07216226309537888, -0.029943324625492096, -0.02324623055756092, -0.009687124751508236, 0.011350642889738083, 0.007073536980897188, 0.053519390523433685, 0.0249384306371212, 0.010748334228992462, -0.0013614676427096128, -0.0357656367123127, -0.02849491685628891, -0.010705312713980675, -0.00792322214692831, 0.00946484412997961, 0.015961168333888054, -0.002470180857926607, 0.01617627963423729, 0.02092304266989231, 0.03602376952767372, 0.020435459911823273, 0.012605451978743076, 0.013343996368348598, -0.00823871698230505, 0.01248355582356453, -0.03005805052816868, 0.00527019752189517, 0.006424621678888798, 0.03421684727072716, 0.04325146973133087, -0.009522207081317902, -0.04184608533978462, -0.004208987578749657, -0.0036425308790057898, 0.025526398792862892, 0.006496324669569731, 0.011909929104149342, 0.00046607188414782286, 0.011228746734559536, -0.021281559020280838, 0.012404682114720345, 0.04557465761899948, 0.00034776132088154554, -0.01742391847074032, 0.017165785655379295, -0.0437103696167469, 0.009135008789598942, 0.02343265898525715, -0.012347319163382053, 0.014340672641992569, 0.03175025060772896, 0.013157567009329796, -0.002513202838599682, -0.062754787504673, 0.016118915751576424, 0.020578864961862564, 0.006718605291098356, 0.02680271863937378, -0.026903102174401283, -0.013637980446219444, 0.016706883907318115, 0.005725513678044081, 0.005718343425542116, -0.0052056643180549145, -0.02957046777009964, -0.03806014731526375, -0.0036102645099163055, -0.0140108373016119, -0.0009402103605680168, 0.0035421461798250675, 0.043825097382068634, -0.00946484412997961, -0.0076220678165555, -0.018413424491882324, 0.02462293580174446, 0.025956617668271065, 0.018413424491882324, 0.01614759862422943, 0.013343996368348598, 0.010318114422261715, 0.027476729825139046, 0.005420774221420288, -0.0023464926052838564, -0.009543717838823795, 0.04718081280589104, 0.011228746734559536, 0.02340397797524929, -0.010497372597455978, -0.027691839262843132, -0.02126721851527691, -0.006686338689178228, 0.036884211003780365, 0.01015319675207138, 0.057219285517930984, -0.03496256098151207, -0.003420250490307808, -0.001744184410199523, 0.028996840119361877, -0.00124226079788059, 0.034102119505405426, 0.020664909854531288, 0.0042663500644266605, 0.018757600337266922, -0.008568552322685719, -0.019933534786105156, -0.011995973065495491, 0.025512056425213814, 0.003724989714100957, 0.005191323813050985, -0.006521421018987894, -0.018298698589205742, -0.025440353900194168, -0.015516608022153378, 0.03203706443309784, 0.009228223003447056, -0.018528150394558907, 0.041501909494400024, 0.01540188305079937, -0.02310282364487648, 0.004567504394799471, 0.027964312583208084, -0.049676090478897095, -0.02158271335065365, -0.0024970697704702616, -0.03238124027848244, -0.0012108905939385295, 0.011415176093578339, -0.024536890909075737, 0.006707849912345409, 0.04207553341984749, -0.016692543402314186, 0.0005794528406113386, -0.03132002800703049, 0.03183629363775253, -0.02604266256093979, 0.004671474453061819, 0.023375296965241432, -0.022686945274472237, 0.041960809379816055, -0.018743259832262993, 0.004958287812769413, -0.0009420029819011688, 0.022443152964115143, 0.008475338108837605, -0.021037766709923744, 0.006951641291379929, -0.009572398848831654, 0.01786847785115242, 0.030602995306253433, 0.03573695570230484, 0.009507866576313972, 0.008762151002883911, -0.036253221333026886, -0.005255856551229954, 0.018542490899562836, -0.02110947109758854, 0.01880062185227871, 0.021998591721057892, 0.05237213894724846, -0.004359564743936062, -0.02509617805480957, 0.027318982407450676, 0.036425311118364334, 0.028423214331269264, 0.026229090988636017, 0.007636408321559429, 0.020578864961862564, 0.008740640245378017, 0.04976213350892067, -0.008453826420009136, -0.005571351386606693, 0.026558926329016685, -0.013688172213733196, -0.033184316009283066, 0.014419546350836754, 0.003486576024442911, -0.021310240030288696, 0.0055749365128576756, 0.027605796232819557, -0.003325243480503559, 0.0069839078933000565, 0.02003392018377781, -0.01878628134727478, 0.0015165262157097459, 0.004463534336537123, 0.014505590312182903, -0.005309634376317263, -0.001889383653178811, 0.005954964552074671, 0.010511713102459908, -0.021195514127612114, 0.02155403234064579, 0.012440533377230167, -0.015129409730434418, 0.0238772202283144, 0.06533610820770264, 0.007112973835319281, -0.002868134528398514, -0.002966726664453745, 0.0017997544491663575, 0.0006829745252616704, 0.010260751470923424, -0.01323644071817398, -0.0022317671682685614, 0.024536890909075737, -0.010203388519585133, 0.0070305150002241135, -0.023317934945225716, 0.004477875307202339, -0.013164738193154335, -0.01248355582356453, -0.01707974076271057, 0.02357606589794159, 0.03906399384140968, -0.010777016170322895, 0.0164774339646101, 0.026587607339024544, -0.014204436913132668, -0.029799917712807655, -0.02985728159546852, 0.00604100851342082, 0.016764245927333832, -0.011049488559365273, -0.006367258727550507, 0.016391389071941376, -0.006134222727268934, -0.01009583380073309, 0.0237051323056221, 0.04698004573583603, 0.0001608844322618097, 0.02034941501915455, -0.02234276942908764, -0.0012467422056943178, 0.018241336569190025, -0.008181354030966759, -0.03215178847312927, -0.028839092701673508, -0.008439485915005207, -0.006740116514265537, -0.02446518838405609, 0.025626782327890396, -0.008217205293476582, -0.017653368413448334, -0.016133256256580353, -0.04230498522520065, -0.0326106920838356, -0.00970863550901413, -0.002376966644078493, -0.027175575494766235, 0.0036927233450114727, 0.013437210582196712, 0.040239930152893066, 0.012160890735685825, -0.0021511008962988853, -0.0019825980998575687, -0.030430907383561134, 0.009981108829379082, -0.0207939762622118, 0.010719653218984604, -0.0480986163020134, -0.035937726497650146, 0.016434410586953163, -0.035163331776857376, 0.0009850249625742435, -0.034102119505405426, 0.005083768628537655, 0.028093378990888596, 0.016835950314998627, -0.007245624903589487, 0.030459590256214142, 0.014462568797171116, -0.006453302688896656, 0.023174528032541275, 0.03249596431851387, -0.045976199209690094, -0.016133256256580353, 0.024293100461363792, -0.029039863497018814, 0.024594254791736603, -0.024981452152132988, -0.00023101927945390344, 0.01877194084227085, 0.0028161497320979834, -0.027232937514781952, -0.00302050425671041, 0.017337873578071594, -0.01239751186221838, 0.01278471015393734, 0.019030073657631874, 0.0038504707626998425, -0.01262696273624897, -0.057534780353307724, -0.008002095855772495, 0.004492215812206268, -0.022887714207172394, 0.03338508680462837, 0.013516084291040897, -0.04568938538432121, 0.031951017677783966, 0.017911501228809357, -0.03235255926847458, 0.005083768628537655, -0.03152079880237579, 0.014885618351399899, 0.003099377965554595, -0.029828600585460663, 0.02648722380399704, 0.006998248398303986, 0.03252464532852173, 0.008625914342701435, 0.04018256440758705, -0.00751451263204217, 0.003465065034106374, -0.021912548691034317, -0.04267784208059311, 0.025296946987509727, 0.0029972007032483816, -0.022557878866791725, 0.0008313108701258898, 0.010597757063806057, 0.006808234378695488, 0.01046869158744812, -0.018270017579197884, -0.0021349675953388214, -0.01000978983938694, 0.012447704561054707, 0.00870478805154562, 0.032868821173906326, 0.00017432880122214556, -3.6726967209688155e-06, 0.036884211003780365, -0.008382122963666916, -0.034102119505405426, 0.030115412548184395, -0.002715765032917261, -0.03367190062999725, 0.020994745194911957, -0.02665931172668934, 0.01169481873512268, 0.026989147067070007, -0.003391569247469306, 0.017682049423456192, 0.0027354834601283073, 0.01477089338004589, -0.008367782458662987, -0.017911501228809357, -0.0006341266562230885, 0.05790763720870018, 0.00993808638304472, 0.009515036828815937, -0.017008038237690926, 0.022098977118730545, 0.004144454374909401, -0.008970091119408607, -0.0006713227485306561, -0.014405205845832825, 0.00970863550901413, -0.02741936594247818, -0.030115412548184395, -0.0014752966817468405, -0.024278759956359863, 0.010956274345517159, -0.004262764938175678, -0.006571613252162933, 0.008661766536533833, 0.016993697732686996, -0.034417614340782166, 0.006994663272053003, 0.003552901791408658, 0.0345323421061039, -0.008210035040974617, -0.004718081559985876, 0.027175575494766235, -0.00282690511085093, -0.0005229864036664367, 0.029484422877430916, 0.008805173449218273, 0.015215453691780567, 0.028882116079330444, 0.019589358940720558, 0.016061553731560707, -0.02204161509871483, 0.015903806313872337, -0.024379143491387367, -0.006374428980052471, 0.004682229831814766, 0.0005149198113940656, -0.009615421295166016, 0.03731442987918854, 0.02172612026333809, 0.03275409713387489, 0.004796955268830061, 0.0012315053027123213, -0.04761103540658951, -0.018112270161509514, -0.027204256504774094, -0.006829745601862669, -0.03292618691921234, -0.002532921265810728, 0.013989326544106007, 0.0023626259062439203, -0.016721224412322044, 0.014211607165634632, 0.0012243349337950349, 0.02849491685628891, 0.024852385744452477, -0.020449800416827202, -0.006295555271208286, 0.00917803030461073, 0.020894359797239304, 0.002341114915907383, 0.0013256159145385027, 0.04138718172907829, 0.010124514810740948, -0.04284993186593056, -0.00962259154766798, -0.020880019292235374, 0.02743370831012726, -0.012963968329131603, 0.026616288349032402, 0.016233641654253006, 0.027175575494766235, -0.008740640245378017, -0.003728575073182583, -0.006485569290816784, -0.016864631325006485, -0.015344520099461079, 0.01880062185227871, 0.03774465247988701, -0.019747106358408928, -0.018872326239943504, -0.010389817878603935, -0.0375438816845417, 0.04543125256896019, -0.011250258423388004, -0.046750593930482864, -0.029771236702799797, 0.02466595731675625, -0.0022568635176867247, 0.04422663524746895, 0.011816714890301228, 0.028839092701673508, 0.019216502085328102, -0.005632299464195967, -0.008382122963666916, -0.021281559020280838, 0.0008447552681900561, -0.0008555107633583248, -0.013544765301048756, -0.015774739906191826, 0.03705630078911781, 0.031147941946983337, 0.003083244664594531, 0.00493319146335125, 0.0019575017504394054, -0.0018840059638023376, -0.0038146190345287323, 0.0023984776344150305, -0.04359564557671547, -0.0022174266632646322, 0.015774739906191826, 0.009278415702283382, -0.040239930152893066, -0.012139379978179932, 0.014813914895057678, -0.0029165344312787056, 0.03740047663450241, 0.009672784246504307, 0.001871457789093256, 0.004269935190677643, -0.0012790088076144457, 0.000274265359621495, 0.00746432039886713, 0.0026243431493639946, -0.03189365565776825, -0.012476385571062565, -0.006227437406778336, -0.020851338282227516, -0.0437103696167469, 0.02572716772556305, -0.006614635232836008, -0.023662110790610313, -0.013501743786036968, 0.01178086269646883, 0.01501468475908041, 0.013136056251823902, 0.02526826597750187, -0.010016960091888905, -0.005693247076123953, -0.008955750614404678, -0.005761365406215191, -0.00907764583826065, 0.018700238317251205, 0.004187476355582476, 0.006424621678888798, 0.012411852367222309, -0.010676630772650242, -0.0084609966725111, -0.0072599658742547035, 0.03000068850815296, 0.012225423939526081, -0.011386494152247906, 0.012791880406439304, -0.004786199424415827, 0.013408529572188854, 0.04465685412287712, -0.004563919268548489, -0.012053336016833782, -0.02215633913874626, 0.005420774221420288, -0.004936776589602232, 0.008389294147491455, 0.02604266256093979, 0.008346271701157093, 0.01078418642282486, 0.010590586811304092, 0.012591110542416573, -0.02065056934952736, -0.011752181686460972, 0.04112904891371727, -0.0163053460419178, -0.0025741509161889553, -0.01055473554879427, 0.01986183226108551, -0.013078694231808186, 0.00870478805154562, 0.018413424491882324, 0.0240493081510067, -0.02218502201139927, 0.022672604769468307, -0.00488299923017621, 0.00407633651047945, 0.00993808638304472, 0.0076220678165555, -0.017036719247698784, -0.029513105750083923, 0.054465875029563904, -0.02095172367990017, -0.013136056251823902, -0.008661766536533833, 0.016391389071941376, 0.019632380455732346, 0.03851904720067978, -0.001371326856315136, 0.014355014078319073, -0.013480233028531075, 0.027992993593215942, -0.020392436534166336, -0.012089187279343605, -0.027691839262843132, -0.01584644429385662, 0.03745783865451813, 0.02297375723719597, -0.010934763588011265, -0.007292232010513544, 0.029154587537050247, 0.008518359623849392, 0.010583416558802128, -0.017768094316124916, -0.03923607990145683, 0.01862853392958641, 0.027663158252835274, 0.002305263187736273, -0.004237669054418802, -0.03668344020843506, 0.01117138471454382, 0.015645673498511314, 0.014362184330821037, -0.009364459663629532, -0.022127658128738403, -0.040412016212940216, -0.01239751186221838, 0.025053156539797783, -0.030746402218937874, 0.01324361190199852, 0.023174528032541275, 0.026989147067070007, 0.013107375241816044, 0.005589277483522892, 0.01677858829498291, 0.009228223003447056, 0.010217729955911636, 0.016563476994633675, 0.01500034425407648]" -How Everactive Powers a Dense Sensor Network With Virtually No Power at All,"stories?Sign up for our newsletterfor more Developer Q&As, technical articles, tips, and tutorials to do more with your data—delivered straight to your inbox twice a month.We’d like to thank Carlos, Dan, Clayton, and all of the folks at Team Everactive for sharing their story (special shoutout to Brian, Joe, Carlos, Greg, and Elise for your contributions to this piece!). We applaud your efforts to bring sustainable, cost-effective sensors and easily actionable data to organizations around the world 🙌.We’re always keen to feature new community projects and stories on our blog. If you have a story or project you’d like to share, reach out on Slack (@Ana Tavares), and we’ll go from there.The open-source relational database for time-series and analytics.Try Timescale for free",https://www.timescale.com/blog/how-everactive-powers-a-dense-sensor-network-with-virtually-no-power-at-all/,167,"[0.03067782148718834, 0.010664195753633976, 0.030035048723220825, 0.004879234824329615, 0.04049472510814667, 0.014104493893682957, -0.025360332801938057, 0.004126897547394037, -0.053525496274232864, -0.03999803587794304, 0.019253985956311226, -0.042364612221717834, 0.008670137263834476, -0.017910005524754524, 0.05504477769136429, 0.07070507854223251, 0.02804829552769661, -0.007242157123982906, -0.030210351571440697, 0.04540317878127098, 0.016624458134174347, -0.003995421342551708, 0.02134299837052822, 0.02641214430332184, 0.00701572559773922, -0.03561549261212349, -0.06778337806463242, 0.07082194089889526, 0.014959090389311314, -0.06416047364473343, 0.012534081935882568, -0.028603417798876762, -0.026938049122691154, 0.034008558839559555, 0.058463163673877716, 0.03339499980211258, 0.009597775526344776, -0.04689324274659157, 0.040436290204524994, -0.01612776890397072, -0.008502139709889889, -0.021474475041031837, 0.02832585573196411, 0.04262756556272507, -0.008721266873180866, -0.016449155285954475, -0.044994138181209564, -0.020261971279978752, 0.015265868976712227, 0.05504477769136429, -0.025258073583245277, -0.014798397198319435, -0.0024670083075761795, -0.030210351571440697, 0.03310283273458481, -0.023811833932995796, 0.006668774411082268, 0.03777754679322243, 0.004645498935133219, -0.030122699216008186, -1.0656776794348843e-05, -0.05364236235618591, 0.017048103734850883, 0.03681338578462601, -0.014214057475328445, -0.02609075792133808, -0.0394136980175972, 0.02949453517794609, -0.016230028122663498, 0.02541876770555973, 0.061180341988801956, 0.03210945427417755, 0.025871630758047104, 0.007128941360861063, 0.03844953700900078, -0.06889362633228302, -0.07543822377920151, 0.05989479646086693, -0.0021730123553425074, -0.05232759937644005, -0.01590864174067974, 0.025637894868850708, -0.017150362953543663, 0.015251260250806808, -0.018406692892313004, -0.0485001765191555, -0.04072846099734306, -0.027697691693902016, -0.005806873552501202, 0.031583547592163086, -0.020627183839678764, 0.04931825026869774, -0.0036448175087571144, 0.023432012647390366, 0.033336568623781204, 0.048558611422777176, -0.0036539477296173573, 0.02182507887482643, 0.03348265215754509, 0.002140143420547247, 0.012840859591960907, -0.046045951545238495, -0.002468834165483713, -0.006566514726728201, -0.013907279819250107, 0.010123681277036667, 0.011124363169074059, -0.00999950896948576, 0.03909230977296829, -0.0039260308258235455, -0.08654067665338516, -0.008224577642977238, -0.01203739270567894, -0.013410590589046478, -0.02134299837052822, 0.024527650326490402, -0.05188934504985809, -0.04709776118397713, 0.019137118011713028, -0.04166340455412865, -0.027916818857192993, 0.008253795094788074, 0.009656209498643875, 0.011621051467955112, 0.013271810486912727, -0.05393453314900398, -0.039150744676589966, -0.03982273489236832, -0.03067782148718834, -0.02571093663573265, 0.04005647078156471, -0.02534572407603264, 0.023256711661815643, -0.03628748282790184, -0.03494350239634514, -0.010554632171988487, -0.06743277609348297, -0.04519865661859512, -0.04461431875824928, -0.029465317726135254, 0.0039588999934494495, -0.0070997243747115135, -0.023256711661815643, -0.02541876770555973, 0.006734512280672789, -0.02075866051018238, 0.009692731313407421, 0.02388487569987774, -0.014666920527815819, -0.0378359816968441, -0.002006840892136097, 0.007508762180805206, -0.06293336302042007, 0.03076547384262085, 0.05384688079357147, -0.00042935257079079747, 0.043124254792928696, 0.03660886734724045, -0.04835409298539162, -0.024220870807766914, 0.041195932775735855, 0.022365594282746315, -0.0036466435994952917, -0.01129966415464878, -0.04645498842000961, -0.0016790629597380757, -0.020802484825253487, -0.04321190342307091, -0.08198282867670059, -0.0078593660145998, -0.049142949283123016, -0.0615309476852417, -0.019341636449098587, 0.028866369277238846, 0.04651342332363129, -0.02465912513434887, 0.03403777256608009, -0.026908833533525467, -0.02522885613143444, -0.0239725261926651, -0.060128532350063324, -0.02562328614294529, -0.061764683574438095, -0.018567387014627457, -0.03260614350438118, 0.03161276504397392, -0.058667682111263275, 0.027829168364405632, 0.030298002064228058, 0.018172957003116608, -0.037310075014829636, 0.029582185670733452, 0.033424217253923416, 0.016639066860079765, 0.027332479134202003, -0.05524929612874985, 0.016171595081686974, 0.0033069963101297617, -0.04376702755689621, 0.027580823749303818, 0.005474530626088381, 0.022058814764022827, 0.05638875812292099, -0.018465127795934677, 0.010262462310492992, -0.01173791941255331, -0.0016991496086120605, 0.0035297756548970938, -0.06696530431509018, -0.03202180191874504, 0.0370471216738224, 0.007691368460655212, 0.01748635806143284, -0.005562181584537029, -0.03690103814005852, -0.0005615137051790953, -0.003684990806505084, -0.020700225606560707, 0.005850698798894882, 0.0007979886140674353, 0.0018991032848134637, 0.07023760676383972, 0.0069682481698691845, -0.026616662740707397, -0.010459676384925842, 0.0330151803791523, 0.03395012393593788, -0.027040308341383934, 0.0413128025829792, -0.001550325658172369, 0.024089394137263298, -0.03219710662961006, 0.009824207052588463, -0.021854296326637268, 0.025111988186836243, 0.007552587892860174, -0.013797716237604618, -0.0015676732873544097, 0.027814559638500214, 0.011460358276963234, 0.003991769161075354, 0.004901147447526455, 0.03880014270544052, 0.03234319016337395, 0.01677054353058338, 0.031875718384981155, -0.028603417798876762, -0.07391894608736038, 0.030502520501613617, 0.05232759937644005, 0.028997845947742462, -0.002357444493100047, -0.0013375895796343684, -0.009488211944699287, 0.016361504793167114, -0.02560867741703987, -0.004934016615152359, -0.016624458134174347, 0.02804829552769661, -0.01893259957432747, 0.030590170994400978, -0.04639655351638794, -0.0007870322442613542, 0.009721947833895683, -0.022745413705706596, 0.029669836163520813, 0.038683272898197174, -0.04470197111368179, 0.05416826903820038, 0.024016352370381355, 0.017048103734850883, 0.01660984940826893, 0.03494350239634514, -0.020115885883569717, -0.022350985556840897, -0.007662151474505663, 0.012336866930127144, 0.00216022995300591, -0.0018936251290142536, -0.005821481812745333, 0.008531356230378151, 0.010043335147202015, -0.023461230099201202, -0.010561935603618622, -0.0009595949668437243, -0.0006057957070879638, -0.006858684588223696, 0.009429777972400188, -0.013330244459211826, -0.029056280851364136, -0.019736066460609436, 0.012577907182276249, 0.004393502604216337, -0.017603226006031036, 0.0072494614869356155, 0.01679975911974907, 0.006106347311288118, 0.0022442287299782038, -0.028077511116862297, 0.0030203047208487988, 0.030151916667819023, -0.013987625949084759, 0.028501158580183983, -0.01630307175219059, 0.002262489404529333, 0.03339499980211258, -0.004718541167676449, -0.00426933029666543, 0.02774151600897312, -0.0017475401982665062, -0.021284565329551697, 0.004294895101338625, 0.049844156950712204, 0.020451880991458893, -0.01728183962404728, -0.03018113411962986, 0.037602245807647705, -0.01305268332362175, 0.0049632336013019085, -0.047126978635787964, -0.04230617731809616, -0.060128532350063324, -0.0022314463276416063, -0.012877381406724453, -0.016945844516158104, -0.04648420587182045, 0.030064266175031662, 0.000687511928845197, 0.021489083766937256, -0.022277941927313805, -0.002583876019343734, -0.04145888611674309, -0.008370663039386272, 0.021605951711535454, 0.0131914634257555, -0.023446621373295784, 0.0058908723294734955, -0.03637513145804405, 0.007669455371797085, 0.03374560549855232, -0.03234319016337395, -0.043913111090660095, -0.07941173762083054, 0.012081218883395195, 0.0370471216738224, 0.011175492778420448, 0.009816903620958328, -0.02853037416934967, -0.0359368771314621, 0.0061392164789140224, -0.05708996579051018, 0.016186203807592392, -0.0391799621284008, -0.015163609758019447, -0.03170041739940643, 0.010145594365894794, 0.007165462709963322, -0.0093202143907547, 0.0036868168972432613, 0.009641601704061031, -0.016186203807592392, 0.020028235390782356, 0.0599532313644886, -0.003237605793401599, 0.007461284752935171, 0.015981685370206833, -0.042335394769907, -0.004619934130460024, 0.018494345247745514, -0.037806764245033264, 0.012066610157489777, -0.046162817627191544, -0.0171795804053545, -0.0025783979799598455, -0.07537978887557983, 0.010408546775579453, 0.03768989443778992, 0.035177234560251236, 0.037310075014829636, 0.04893843084573746, 0.045958299189805984, 0.04394232854247093, 0.015105175785720348, -0.02164977788925171, 0.02075866051018238, 0.055658336728811264, -0.01063497830182314, 0.01513439230620861, -0.03234319016337395, 3.255524279666133e-05, 0.01736949011683464, -0.015324302949011326, -0.004561500158160925, 0.008779700845479965, 0.03175884857773781, 0.02892480418086052, 0.00655190646648407, 0.0322263203561306, 0.05735291913151741, -0.006745468825101852, 0.03757302835583687, -0.0024560517631471157, -0.02194194681942463, -0.03085312433540821, 0.00623417180031538, -0.006708947475999594, -0.022584721446037292, -0.0004729497595690191, -0.023899484425783157, -0.03096999228000641, -0.021401433274149895, -0.043620940297842026, 0.03853718936443329, -0.0197068490087986, -0.02347583882510662, -0.04727306216955185, -0.04668872430920601, 0.04338720440864563, -0.02240941859781742, 0.04438058286905289, -0.018874164670705795, -0.028121337294578552, 0.011957046575844288, -0.02388487569987774, -0.024892861023545265, 0.024337738752365112, 0.04627968743443489, 0.031203728169202805, -0.011781744658946991, -0.0580541267991066, -0.0673743411898613, 0.010196723975241184, 0.0299766156822443, -0.028588809072971344, 0.003031261032447219, -0.0015548907686024904, 0.03757302835583687, -0.013593196868896484, 0.048675477504730225, 0.021810470148921013, 0.011182797141373158, 0.000338962534442544, -0.008275708183646202, 0.0330151803791523, 0.02135760709643364, -0.06696530431509018, -0.03979351744055748, -0.024878252297639847, -0.04230617731809616, -0.017135754227638245, 0.04443901777267456, -0.053992968052625656, -0.035089585930109024, 0.026645880192518234, -0.05504477769136429, -0.010079856030642986, 0.009970292448997498, 0.004097680561244488, 0.03307361528277397, -0.0012380692642182112, -0.04262756556272507, 0.018479736521840096, -0.03064860589802265, 0.009196042083203793, 0.01590864174067974, -0.08315150439739227, -0.00012440039427019656, 0.002379357349127531, 0.030414870008826256, -0.016040118411183357, 0.008173448033630848, 0.04365015774965286, -0.03579079359769821, 0.0016315854154527187, -0.054781824350357056, -0.007227548863738775, 0.022000381723046303, 0.0003435277030803263, 0.0034275162033736706, -0.031291380524635315, -0.012855468317866325, 0.016171595081686974, -0.03026878461241722, 0.052561335265636444, 0.025930063799023628, 0.021766645833849907, 0.010817584581673145, -0.031174510717391968, -0.0005583181045949459, 0.015032133087515831, -0.004010029602795839, 0.008312229067087173, 0.038975443691015244, -0.018377477303147316, -0.01872807927429676, -0.03018113411962986, -0.028413506224751472, -0.0221172496676445, 0.0073078954592347145, -0.020846311002969742, -0.011380011215806007, -0.03985195234417915, -0.0066870348528027534, 0.054694175720214844, -0.015265868976712227, 0.014060668647289276, -0.04674715921282768, -0.031408246606588364, 0.01509056705981493, -0.016156986355781555, -0.0036703823134303093, 0.005156795959919691, 0.026236841455101967, 0.0049449726939201355, -0.01640533097088337, 0.022365594282746315, -0.00911569595336914, -0.0024268347769975662, -0.01630307175219059, -0.04297816753387451, -0.021781254559755325, -0.02387026697397232, -0.010897931642830372, 0.011774440295994282, -0.0058324383571743965, -0.01631768047809601, -0.018260609358549118, -0.032547708600759506, -0.009707339107990265, -0.004955929238349199, -0.004448284395039082, -0.019677631556987762, 0.019458504393696785, 0.030736256390810013, -0.05180169269442558, 0.029173148795962334, -0.01602550968527794, -0.03695947304368019, -0.035177234560251236, 0.024104002863168716, -0.016931235790252686, 0.0631086602807045, 0.03719320893287659, 0.03660886734724045, -0.01446240209043026, -0.01513439230620861, -0.04277364909648895, -0.025988498702645302, -0.02075866051018238, 0.04522787407040596, 0.043124254792928696, -0.04116671532392502, 0.03622904792428017, -0.00698650861158967, 0.003827423555776477, 0.019663022831082344, 0.004400806501507759, 0.004006377421319485, -0.0028376986738294363, 0.006606688257306814, -0.007351721171289682, -0.0034092555288225412, 0.0021419692784547806, 0.01871347241103649, -0.053437843918800354, 0.023139843717217445, 0.017135754227638245, -0.02668970637023449, -0.03155433014035225, 0.014520836062729359, 0.0048974952660501, 0.009685426950454712, -0.010561935603618622, -0.03105764277279377, 0.009451691061258316, -0.0066614700481295586, -0.03085312433540821, -0.03056095540523529, 0.005160448141396046, 0.007212940603494644, -0.00858248583972454, -0.0005528399487957358, -0.032284755259752274, 0.03389168903231621, -0.04221852868795395, 0.00601869635283947, 0.02670431323349476, 0.02008667029440403, 0.02571093663573265, -0.027420129626989365, -0.0009025305625982583, 0.007063203491270542, -0.0322263203561306, 0.007895886898040771, 0.017062712460756302, -0.004174374975264072, 0.02338818833231926, -0.0041962880641222, -0.020408056676387787, 0.032547708600759506, 0.04192635789513588, -0.00868474505841732, -0.000688881438691169, -0.0349142849445343, 0.014484314247965813, 0.0025181379169225693, -0.028179770335555077, 0.007830148562788963, 0.012059305794537067, -0.01304537896066904, 0.01747175119817257, 0.0037616854533553123, 0.014389359392225742, -0.05609659105539322, 0.0039990730583667755, -0.009743860922753811, 0.00725311366841197, -0.0010773759568110108, 0.03327813372015953, -0.01592325046658516, -0.016639066860079765, -0.03415464237332344, -0.004612629767507315, -0.03529410436749458, 0.023066800087690353, 0.019473113119602203, -0.02990357205271721, -0.022949932143092155, -0.0023866614792495966, 0.02135760709643364, -0.0061136516742408276, -0.004386198241263628, 0.02620762586593628, 0.0073663294315338135, -0.002050666371360421, 0.01387075800448656, -0.0073261563666164875, 0.05539538338780403, 0.021518301218748093, -0.007172767072916031, 0.044205281883478165, -0.00696459598839283, -0.0011084189172834158, -0.02125534787774086, 0.0299766156822443, -0.027507780119776726, 0.008370663039386272, 0.013951105065643787, -0.003531601745635271, 0.02087552845478058, -0.03999803587794304, -0.04280286654829979, 0.023081408813595772, 0.022365594282746315, 0.0028650895692408085, -0.020744051784276962, -0.039735082536935806, -0.015017524361610413, 0.026324493810534477, 0.007968929596245289, -0.036842603236436844, 0.010036030784249306, -0.03880014270544052, -0.011124363169074059, -0.02164977788925171, 0.01745714247226715, 0.04861704260110855, 0.017822353169322014, 0.023212885484099388, 0.027317870408296585, -0.010540023446083069, 0.030531737953424454, 0.03348265215754509, 0.02698187530040741, 0.02696726657450199, 0.01247564796358347, -0.012826251797378063, -0.028165163472294807, 0.02318366803228855, 0.032956745475530624, -0.012322258204221725, 0.0035498621873557568, -0.0185235608369112, 0.030911557376384735, -0.0021145783830434084, -0.011825569905340672, -0.01377580314874649, 0.02328592725098133, 0.03184650093317032, 0.017427925020456314, -0.02495129592716694, -0.010298983193933964, -0.01115357968956232, -0.028311247006058693, -0.019852934405207634, -0.02194194681942463, 0.021080046892166138, 0.02175203710794449, -0.012008176185190678, -0.04668872430920601, -0.008188056759536266, -0.01188400387763977, -0.039647433906793594, -0.010781063698232174, -0.027697691693902016, -0.00533940177410841, 0.02803368680179119, -0.020130494609475136, 0.02395791932940483, -0.006730860099196434, -0.045666128396987915, 0.014674224890768528, -0.03894622623920441, 0.0034001253079622984, -0.017983047291636467, -0.020320404320955276, -0.01707732118666172, 0.03240162506699562, -0.03231397271156311, -0.0022752718068659306, -0.032839879393577576, 0.023169059306383133, -0.025287291035056114, -0.006088086869567633, 0.013410590589046478, -0.01707732118666172, -0.0015211086720228195, 0.03132059425115585, -0.037222422659397125, -0.013768498785793781, 0.011716006323695183, 0.01561647281050682, 0.02300836704671383, 0.009254476055502892, 0.017632443457841873, -0.010225940495729446, -0.025871630758047104, 0.02337357960641384, -0.048558611422777176, -0.01398032158613205, -0.009349431842565536, -0.007771715056151152, 0.007435719948261976, 0.014469706453382969, 0.019779890775680542, -0.043533291667699814, -0.027040308341383934, 0.0548986941576004, 0.0029746531508862972, -0.01184017863124609, 0.02175203710794449, 0.014177536591887474, 0.003520645434036851, -0.01460848655551672, -0.009685426950454712, -0.016478372737765312, -0.020729443058371544, 0.01628846302628517, 0.01707732118666172, 0.017252622172236443, 0.017910005524754524, 0.050223976373672485, -0.003042217344045639, 0.044409800320863724, -0.004583412781357765, 0.04230617731809616, 0.005098361987620592, 0.012285737320780754, -0.013512850739061832, -0.033044397830963135, -0.013600501231849194, -0.04744836688041687, -0.0017913656774908304, -0.004495761822909117, 0.06199841946363449, -0.0040757679380476475, -0.0052444469183683395, 0.019969802349805832, 0.01872807927429676, -0.0040173339657485485, 0.007684064097702503, 0.0018826687010005116, -0.006011392455548048, -0.040114905685186386, 0.0074247634038329124, -0.0031189119908958673, 0.01256329845637083, -0.0004683846200350672, -0.02077326737344265, -0.007552587892860174, -0.01631768047809601, -0.007318852003663778, -0.015075958333909512, 0.0044738491997122765, 0.04160496965050697, -0.0026258754078298807, 0.0020251015666872263, -0.057674307376146317, -0.02639753557741642, 0.01252677757292986, -0.01716497167944908, -0.014637704007327557, 0.002351966453716159, 0.02765386551618576, 0.015937859192490578, 0.04329955577850342, -0.029333841055631638, 0.03792363032698631, -0.037982065230607986, -0.015470387414097786, -0.009743860922753811, 0.011540704406797886, 0.00720198405906558, -0.019955193623900414, 0.02115308865904808, -0.018012264743447304, 0.0322263203561306, 0.005613311193883419, 0.006515385117381811, -0.018508952111005783, 0.034388378262519836, 0.00528827216476202, -0.05048692971467972, -0.012848163954913616, 0.02366574853658676, 0.02232176810503006, 0.0022917063906788826, 0.013673543930053711, -0.015762558206915855, -0.022760022431612015, 0.012848163954913616, -0.016273854300379753, 0.03190493583679199, -0.00564983207732439, 0.007377285975962877, 0.015002915635704994, -0.01902025006711483, -0.020992396399378777, -0.026938049122691154, 0.044409800320863724, -0.023066800087690353, 0.04405919462442398, -0.02007206156849861, 0.005394183564931154, 0.004981494043022394, -0.037894416600465775, 0.021211523562669754, 0.052941154688596725, 0.010109072551131248, -0.017442533746361732, -0.01679975911974907, -0.014148319140076637, 0.003111607627943158, -0.026178408414125443, -0.013315635733306408, 0.02630988508462906, -0.0012353301281109452, -0.027507780119776726, 0.0036338611971586943, 0.00723120104521513, -0.033833254128694534, -0.022394809871912003, 0.017311057075858116, -0.004294895101338625, 0.028457332402467728, -0.014119102619588375, -0.0029162191785871983, -0.006811207160353661, 0.05425592139363289, 0.019838325679302216, -0.00562791945412755, 0.010788367129862309, 0.01305268332362175, 0.022380201146006584, -0.023417403921484947, 0.002390313660725951, -0.05893063545227051, 0.002213185653090477, 0.010072551667690277, -0.02901245467364788, 0.0239725261926651, -0.013607805594801903, -0.01130696851760149, -0.004835409112274647, 0.02378261648118496, 0.0003595057351049036, 0.021898122504353523, 0.042335394769907, 0.015981685370206833, -0.02706952579319477, -0.01764705218374729, 0.02725943736732006, 0.0045468914322555065, -0.001889972947537899, -0.017588617280125618, 0.020524924620985985, 0.0022844020277261734, 0.012738600373268127, 0.02046648971736431, 0.03725164011120796, 0.052210733294487, -0.010832193307578564, -0.012314954772591591, 0.026426753029227257, -0.010459676384925842, -0.031583547592163086, 0.018903382122516632, -0.005529312416911125, -0.005080101080238819, 0.011803657747805119, -0.002176664536818862, -0.017062712460756302, 0.010839497670531273, -0.005175056401640177, 0.006011392455548048, 0.04137123376131058, -0.015397344715893269, 0.04514022544026375, 0.002165708225220442, -0.04698089510202408, 0.023855658248066902, 0.009590471163392067, 0.026076149195432663, 0.028165163472294807, -0.010262462310492992, 0.003973508253693581, -0.02163516916334629, 0.02350505441427231, 0.05665171146392822, -0.003801858751103282, 0.026163799688220024, 0.029070889577269554, -0.01815834827721119, 0.032372407615184784, 0.005522008053958416, -0.00786667037755251, 0.0030403912533074617, 0.006654165685176849, -0.003149955067783594, 0.0024085743352770805, -0.014301708899438381, 0.030444087460637093, -0.021007003262639046, -0.002538224682211876, 0.02261393703520298, -0.012972336262464523, 0.023052191361784935, -0.003396473126485944, -0.005985827650874853, -0.04496492072939873, 0.06305023282766342, 0.025068163871765137, 0.07169845700263977, -0.05571676790714264, -0.03161276504397392, -0.03894622623920441, -0.007406502962112427, -0.0012353301281109452, 0.03152511641383171, 0.00853866059333086, 0.016902020201086998, 0.02048109844326973, -0.058842986822128296, -0.034388378262519836, -0.011548008769750595, 0.00989724975079298, 0.019180942326784134, -0.010897931642830372, 0.0011212013196200132, 0.004444632213562727, -0.02202959731221199, 0.03792363032698631, -0.0019392765825614333, 0.012972336262464523, -0.0017886266577988863, -0.012848163954913616, 0.03579079359769821, -0.023256711661815643, 0.012395300902426243, 0.006592079531401396, 0.0631086602807045, 0.01455005258321762, 0.008969610556960106, -0.028194379061460495, -0.008217274211347103, -0.03579079359769821, -0.014338229782879353, 0.04937668517231941, 0.005909132771193981, 0.0097949905321002, 0.005489138886332512, 0.003175519872456789, 0.020232753828167915, 0.015747949481010437, 0.025798587128520012, -0.015295085497200489, 0.022467853501439095, -0.011548008769750595, 0.00942247360944748, 0.03210945427417755, -0.0014562834985554218, 0.0026094410568475723, 0.031174510717391968, -0.00999950896948576, -0.0028103075455874205, -0.02600310742855072, 0.017252622172236443, 0.00017941047553904355, 0.001218895660713315, 0.0014645007904618979, -0.007150854449719191, -0.011321577243506908, 0.01912250928580761, -0.00528827216476202, 0.02755160629749298, -0.027230219915509224, -0.006299910135567188, -0.022365594282746315, -0.009663513861596584, -0.0407576784491539, -0.0022661415860056877, -0.01563108153641224, 0.053992968052625656, -0.028501158580183983, -0.01697506196796894, -0.01912250928580761, 0.02056874893605709, 0.002257011132314801, 0.017252622172236443, 0.0024177045561373234, -0.003270474961027503, 0.03272300958633423, 0.00628530140966177, 0.03926761448383331, 0.003016652539372444, 0.009188738651573658, 0.010854105465114117, -0.026850398629903793, 0.02455686591565609, -0.0010655064834281802, -0.025769371539354324, -0.011453053914010525, -0.0015147174708545208, 0.04645498842000961, 0.0038529883604496717, 0.018655037507414818, -0.007443023845553398, -0.012555994093418121, 0.03064860589802265, 0.021416042000055313, 0.024030961096286774, 0.012402605265378952, 0.01100749522447586, 0.015017524361610413, 0.01745714247226715, -0.0022497070021927357, 0.01382693275809288, -0.004203591961413622, 0.0038420320488512516, 0.012190782465040684, -0.03210945427417755, -0.013542067259550095, -0.03494350239634514, -0.012044697068631649, -0.02143065072596073, 0.011182797141373158, 0.017135754227638245, -0.015397344715893269, 0.05037006363272667, 0.01767626963555813, -0.02018892951309681, -0.009130304679274559, 0.018216783180832863, -0.04017334058880806, -0.01726723089814186, -0.023139843717217445, -0.018099915236234665, -0.022643154487013817, 0.0009778556413948536, 0.012994249351322651, -0.0052846199832856655, 0.018099915236234665, -0.003940639551728964, -0.0034439507871866226, 0.005229838192462921, 0.0199844092130661, -0.024410782381892204, -0.005540268495678902, 0.004539587069302797, -0.006917118560522795, 0.021416042000055313, -0.024030961096286774, 0.007779019419103861, -0.025740154087543488, 0.015558038838207722, -0.01183287426829338, -0.022438636049628258, 0.03240162506699562, -0.01043045986443758, 0.01465961616486311, 0.017895396798849106, 0.019253985956311226, 0.0028906543739140034, -0.007256765849888325, -0.00453593535348773, 0.01072993315756321, 0.012921206653118134, -0.043796245008707047, 0.028968628495931625, 0.02027658000588417, 0.054781824350357056, -0.0035188193432986736, -0.009006132371723652, 0.01368084829300642, 0.03979351744055748, -0.01650759018957615, 0.043913111090660095, -0.003860292723402381, 0.011285056360065937, 0.01628846302628517, 0.06047913432121277, -0.019283203408122063, 0.02204420603811741, 0.0235780980437994, -0.02067100815474987, -7.247179019032046e-05, 0.010247853584587574, -0.018012264743447304, -0.028165163472294807, -0.004817148670554161, 0.007713281083852053, -0.02609075792133808, 0.03161276504397392, 0.024892861023545265, -0.004444632213562727, 0.01815834827721119, -0.005737483035773039, 0.001271851360797882, -0.008129622787237167, -0.024425389245152473, 0.017325665801763535, 0.012753209099173546, -0.012132348492741585, 0.013527458533644676, 0.005306533072143793, 0.002185794757679105, 0.018757296726107597, 0.06959483027458191, 0.019487721845507622, -0.005167752038687468, 0.0016096726758405566, 0.0004085811087861657, -0.008619007654488087, -0.0077644106931984425, 0.025637894868850708, 0.007983538322150707, 0.04350407421588898, -0.005912784952670336, -0.006142868660390377, -0.017983047291636467, 0.0040903761982917786, 0.001024420140311122, -0.00844370573759079, -0.022467853501439095, 0.010897931642830372, 0.02454225718975067, -0.009049957618117332, 0.007932408712804317, 0.02785838395357132, 0.02204420603811741, -0.019633807241916656, -0.009787686169147491, -0.03327813372015953, 0.0016407156363129616, -0.02562328614294529, -0.016726717352867126, 0.034008558839559555, 0.007223896682262421, -0.023125234991312027, 0.038566406816244125, 0.049844156950712204, 0.005452617537230253, -0.012052001431584358, -0.007318852003663778, -0.0001343296025879681, -0.007888582535088062, -0.012826251797378063, -0.0012901120353490114, -0.0029600446578115225, 0.006102695595473051, -0.03690103814005852, 0.0009162260103039443, 0.010043335147202015, -0.005186012946069241, -0.014162927865982056, -0.008750483393669128, -0.027916818857192993, -0.03240162506699562, -0.028282031416893005, -0.006774685811251402, -0.02048109844326973, -0.005390531849116087, 0.008918480947613716, 0.01855277828872204, 0.02270158939063549, 0.02414782904088497, 0.004517674446105957, -0.018771905452013016, -0.0036886429879814386, -0.022248726338148117, -0.013067291118204594, -0.01738409884274006, -0.028749501332640648, 0.007161810528486967, -0.03243084251880646, 0.029947398230433464, -0.015470387414097786, 0.020408056676387787, 0.04005647078156471, 0.017617834731936455, 0.026368318125605583, 0.03418385982513428, 0.018698863685131073, 0.023154452443122864, 0.035001933574676514, 0.016156986355781555, -0.0351480208337307, -0.022847672924399376, 0.017720093950629234, -0.017238015308976173, 0.006069826427847147, -0.025696327909827232, -0.020437272265553474, -0.006887901574373245, -0.005328445695340633, 0.021372215822339058, -0.009539341554045677, -0.020437272265553474, -0.009926467202603817, 0.00853866059333086, 0.017910005524754524, -0.010262462310492992, -0.003995421342551708, -0.022482460364699364, 0.009232563897967339, -0.0009458995191380382, -0.021299174055457115, 0.03403777256608009, 0.006825815420597792, -0.03622904792428017, 0.04858782887458801, -0.00800545047968626, -0.01620081253349781, -0.020042844116687775, -0.029655227437615395, -0.01871347241103649, -0.010540023446083069, -0.017296448349952698, 0.01582099124789238, 0.0201012771576643, 0.019297810271382332, -0.0010481589706614614, 0.003473167773336172, 0.00012143304775236174, -0.0458122156560421, -0.012256520800292492, -0.028384290635585785, 0.003487776266410947, 0.0032522142864763737, -0.022730804979801178, -0.0031718676909804344, 0.015382736921310425, -0.00849483534693718, 0.02854498289525509, -0.03307361528277397, 0.04481883719563484, -0.03026878461241722, 0.012314954772591591, 0.01184017863124609, 0.024118611589074135, -0.008239186368882656, 0.005259055178612471, -0.011328881606459618, 0.0006190346321091056, -0.021883513778448105, 0.012731296010315418, 0.03336578235030174, -0.04183870553970337, 0.01602550968527794, -0.0279606431722641, -0.0027098744176328182, 0.032372407615184784, -0.007143550086766481, 0.015382736921310425, 0.014279795810580254, 0.009889945387840271, -0.016156986355781555, -0.022088032215833664, 0.012840859591960907, 0.02376800775527954, 0.02338818833231926, -0.027785342186689377, -0.027054917067289352, 0.00780823640525341, -0.0009751165052875876, -0.014214057475328445, 0.00013615566422231495, -0.018581995740532875, -0.0029016106855124235, -0.023358970880508423, -0.02493668720126152, 0.005427052732557058, 0.012731296010315418, 0.014477010816335678, 0.0014343707589432597, -0.03523566946387291, 0.05004867538809776, 0.010649587027728558, -0.012775122188031673, 0.028267422690987587, 0.013658935204148293, 0.037894416600465775, -0.009144912473857403, -0.0057593961246311665, 0.016624458134174347, 0.009356736205518246, 0.010941756889224052, 0.014287100173532963, -0.00395159563049674, -0.0007719672285020351, 0.026455970481038094, 0.018669646233320236, 0.03707633912563324, -0.02446921542286873, -0.015178217552602291, -0.014082581736147404, 0.002330053597688675, 0.0025345725007355213, -0.001497369958087802, -0.017238015308976173, 0.025155814364552498, 0.013914584182202816, 0.008860046975314617, 0.010452372021973133, -0.00359003571793437, -0.039735082536935806, 0.006588427349925041, -0.010174810886383057, 0.005416096653789282, -0.03213867172598839, 0.009247172623872757, 0.0039296830072999, -0.0069682481698691845, -0.0006026001065038145, 0.014718050137162209, 0.00936403963714838, 0.007044942583888769, 0.023344362154603004, 0.019283203408122063, 0.002830394310876727, 0.015937859192490578, -0.0021419692784547806, -0.021678995341062546, 0.013038074597716331, 0.030940774828195572, 0.048470959067344666, -0.04511100798845291, 0.02008667029440403, -0.013556675985455513, 0.0059237414970994, -0.03541097044944763, 0.017252622172236443, 0.01630307175219059, 0.017734702676534653, -0.038566406816244125, 0.022584721446037292, -0.01590864174067974, 0.01698967069387436, -0.020977787673473358, 0.004988798405975103, 0.01871347241103649, -0.03374560549855232, -0.0017101060366258025, -0.015265868976712227, -0.03511880338191986, 0.003487776266410947, -0.018070697784423828, -0.03418385982513428, -0.02376800775527954, -0.0026423099916428328, 0.011548008769750595, 0.028384290635585785, 0.013702760450541973, 0.018698863685131073, 0.015791773796081543, 0.01650759018957615, 0.01116088405251503, -0.0017210623482242227, 0.03622904792428017, -0.012680166400969028, -0.03494350239634514, -0.040407076478004456, 0.00995568372309208, 0.030414870008826256, 0.016916627064347267, 0.003222997300326824, 0.003089695004746318, -0.004430023487657309, -0.023358970880508423, 0.04966885596513748, -0.03231397271156311, -0.0186404287815094, -0.00922525953501463, 0.027697691693902016, -0.04797426983714104, -0.03085312433540821, 0.04844174161553383, 0.003754381090402603, 0.01941467821598053, 0.008078493177890778, -0.009546645916998386, -0.02978670410811901, -0.020510315895080566, 0.0070997243747115135, -0.005883567966520786, -0.019064076244831085, -0.010189419612288475, -0.008421792648732662, 3.275496783317067e-05, -0.0314374640583992, -0.021956555545330048, 0.00655190646648407, 0.00216022995300591, -0.0018068872159346938, -0.004598021041601896, 0.006449646782130003, 0.015674905851483345, 0.01519282627850771, 0.049727290868759155, 0.0018991032848134637, 0.0016361505258828402, 0.02048109844326973, 0.009458995424211025, -0.004086724016815424, 0.03637513145804405, 0.007771715056151152, -0.02465912513434887, 0.010072551667690277, -0.011029407382011414, -0.007596413139253855, -0.02213185839354992, 0.043153468519449234, 0.007432067766785622, 0.011445749551057816, 0.003863944672048092, -0.0012554168934002519, 0.005102014169096947, 0.01062767393887043, -0.006219563074409962, -0.0007559891673736274, -0.040027253329753876, -0.005817830096930265, -0.007088768295943737, 0.02340279519557953, 0.013797716237604618, 0.00011994937085546553, 0.02350505441427231, 0.032460056245326996, -0.014155623503029346, 0.008297620341181755, -0.008787005208432674, -0.007990842685103416, -0.006204954814165831, -0.007917799986898899, -0.00330151803791523, -0.0053613148629665375, -0.03432994335889816, 0.0006541862967424095, 0.0028230901807546616, 0.03000583127140999, -0.04388389363884926, 0.012753209099173546, -0.003482297994196415, 0.0020890135783702135, 0.013600501231849194, 0.0007409242098219693, -0.0052261860109865665, -0.033628735691308975, 0.04756523296236992, -0.014688833616673946, -0.019619198516011238, -0.010569239966571331, 0.04049472510814667, 0.017238015308976173, 0.028588809072971344, 0.029538359493017197, 0.0037872502580285072, -0.017150362953543663, 0.018099915236234665, -0.01252677757292986, -0.009597775526344776, -0.045549262315034866, 0.022657763212919235, 0.015850208699703217, 0.006453298963606358, -0.016259245574474335, 0.01047428511083126, 0.025082772597670555, -0.024483824148774147, 0.02077326737344265, 0.0015512387035414577, -0.041108280420303345, 0.000406298553571105, 0.015309694223105907, -0.005291924346238375, 0.005879915785044432, -0.03579079359769821, 0.003642991418018937, -0.017048103734850883, -0.017325665801763535, -0.013549371622502804, -0.02039344795048237, -0.061005041003227234, 0.0069098141975700855, 0.013534762896597385, -0.01590864174067974, -0.029377667233347893, 0.030035048723220825, 0.0016261071432381868, 0.02961140312254429, 0.0006783815915696323, 0.016259245574474335, 0.02134299837052822, -0.010795671492815018, 0.025170423090457916, -0.007435719948261976]" -How to Reduce Query Cost With a Wide Table Layout in TimescaleDB,"This is an installment of our “Community Member Spotlight” series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition, Florian Herrengt, co-founder ofNocodelytics,shares how he tracks, records, and monitors millions of user interactions per day to build dazzling analytics dashboards for website building and hosting platformWebflow. And the best part? The team is making queries up to six times less costly by using a wide table layout.About the CompanyA Nocodelytics dashboardNocodelyticsis an analytics product built specifically for the website building and hosting companyWebflow. We are processing millions of events from various websites and turning them into insightful dashboards.We’re a close-knit team of three based in London. We are two co-founders,Sarwechand myself (Florian), and the team recently expanded whenAlexjoined us as a frontend developer. You can find us on theWebflow Marketplace.As our company is growing fast, we found that a quick, reliable database is vital for our company to grow and thrive.About the ProjectOur goal is to build the number one analytics platform for Webflow.Like other analytics tools, we provide users with a tracking script that they add to their Webflow site. However, because of the nature of Webflow’s audience, we have to do things quite differently from other analytics tools—which presents challenges that no other analytics tool faces.First, one of the things that we do that adds complexity is that we automatically track every event a user does. Whether it’s clicking on a button or link, interacting with a form, or viewing a page, we need to be able to track all of this information with minimal impact on accuracy.Adding a new metric to the Nocodelytics dashboardWe also track events tied to the Webflow Content Management System (CMS) and other third-party tools likeJetboost,Wized,Memberstack, andOutseta, which we automatically integrate with and track.So, we tap into the power of the CMS and the Webflow ecosystem to record how users interact. We then output these interactions into valuable insights for our analytics customers. This means we need to be able to record and ingest millions of events into our database per day without it crashing down. Some of our customers will get publicity and see huge spikes in traffic, so we need to be able to handle",https://www.timescale.com/blog/how-to-use-wide-table-model-to-reduce-query-cost-in-timescaledb/,500,"[-0.0012726914137601852, 0.030273769050836563, 0.010408437810838223, 0.029980985447764397, 0.05993269383907318, -0.0032078044023364782, -0.030478717759251595, 0.017801210284233093, -0.03159129247069359, -0.007345195394009352, 0.009178749285638332, -0.02188553474843502, -0.028517071157693863, -0.031562015414237976, 0.024608416482806206, 0.04151663929224014, -0.019660383462905884, -0.0695066973567009, -0.06306547671556473, 0.020890071988105774, 0.03937932103872299, -0.002580150729045272, 0.00887132715433836, -0.01264822855591774, 0.023686150088906288, -0.01471966877579689, -0.05097353085875511, 0.029732121154665947, -0.01598595641553402, -0.053315795958042145, 0.0122968889772892, -0.032059747725725174, -0.020509453490376472, 0.022705327719449997, 0.0161909032613039, -0.011733281426131725, 0.0333772711455822, -0.023832540959119797, -0.0019012601114809513, 0.04950961843132973, -0.030742222443223, 0.032440364360809326, 0.015722449868917465, 0.04529353976249695, 0.014046267606317997, 0.01389255654066801, -0.03850097209215164, -0.0010759778087958694, -0.0014694050187245011, 0.035924483090639114, -0.054194144904613495, 0.026086971163749695, -0.028502432629466057, -0.04778219759464264, 0.015458946116268635, 0.0141780199483037, -0.012033384293317795, 0.0557166188955307, -0.07782173901796341, -0.0015819434775039554, -0.0025435530114918947, -0.05129559338092804, 0.06429516524076462, 0.013402145355939865, -0.0181964673101902, -0.021314607933163643, -0.028897689655423164, -0.004186797887086868, -0.02027522772550583, 0.04268776997923851, 0.0745425671339035, 0.02926366776227951, 0.010620705783367157, -0.013731526210904121, 0.02687748521566391, -0.0333772711455822, -0.02062656730413437, -0.0017942112172022462, -0.04037478566169739, -0.05674136057496071, 0.005928857252001762, -0.012421322055161, -0.03812035545706749, -0.004464942030608654, 0.010737818665802479, -0.05012446269392967, -0.002680795034393668, -0.0186941996216774, -0.021841617301106453, 0.02090471051633358, -0.022778522223234177, 0.06792566925287247, 0.009617923758924007, 0.04019911587238312, 0.0007150311721488833, 0.02880985476076603, 0.010423077270388603, 0.049099721014499664, 0.02181233838200569, 0.023144502192735672, 0.04388818144798279, -0.020641205832362175, -0.0016286057652905583, -0.030654387548565865, 0.033143043518066406, 0.01841605454683304, 0.011030602268874645, 0.009896067902445793, -0.0027979081496596336, -0.014478122815489769, -0.08976729214191437, -0.01872347667813301, -0.028970884159207344, -0.009983902797102928, -0.0014584256568923593, -0.0026185784954577684, -0.006049630232155323, 0.04098962992429733, 0.009486171416938305, -0.0499487929046154, -0.021665947511792183, 0.010284005664288998, -0.005471383687108755, -0.007147566881030798, 0.031152117997407913, -0.02951253391802311, -0.04204364866018295, 0.018957704305648804, -0.01917729154229164, -0.045439932495355606, 0.07366421818733215, -0.048045702278614044, 0.059639912098646164, -0.05398919805884361, -0.02547212690114975, 0.0029150214977562428, 0.023203058168292046, 0.007890503853559494, -0.01728883944451809, 0.02479872666299343, -0.006697412580251694, 0.008366276510059834, 0.0376519039273262, -0.009683799929916859, -0.04043334349989891, 0.018006158992648125, -0.00143372209277004, 0.03326015546917915, -0.009566687047481537, -0.008461430668830872, -0.00010927898983936757, -0.026818929240107536, -0.04710879549384117, -0.019894609227776527, 0.0517054907977581, 0.015868842601776123, 0.09205099940299988, 0.04705023765563965, -0.015034410171210766, -0.03147418051958084, -0.002527083968743682, 0.015283276326954365, -0.04160447418689728, -0.009778954088687897, -0.08033967763185501, -0.014346370473504066, -0.06739865988492966, -0.04257065802812576, -0.07735328376293182, 0.0040770042687654495, -0.024154603481292725, -0.0071512265130877495, 0.008622460998594761, 0.03812035545706749, 0.03355294093489647, -0.04652322828769684, 0.028297483921051025, -0.04871910437941551, 0.010071737691760063, -0.01305080484598875, -0.0649978443980217, -0.016029873862862587, -0.001046699471771717, 0.0023660531733185053, -0.03290881589055061, -0.011074519716203213, -0.02617480605840683, -0.0001315236440859735, -0.021914811804890633, 0.028151091188192368, -0.01911873370409012, 0.02986387349665165, -0.0069352989085018635, 0.012941011227667332, 0.024652333930134773, -0.04444447159767151, 0.06353392452001572, -0.0046442714519798756, -0.010649983771145344, -0.016351934522390366, -0.015693172812461853, 0.018328219652175903, 0.0358952060341835, -0.03446056693792343, 0.024476664140820503, 0.019338320940732956, -0.010305964387953281, -0.020597288385033607, -0.03232325240969658, -0.0042526740580797195, 0.027140989899635315, 0.03823746740818024, 0.021753782406449318, -0.007831946946680546, -0.0439174585044384, 0.007176844868808985, -0.07015082240104675, 0.031357064843177795, 0.03598304092884064, -0.008424832485616207, -0.019792135804891586, 0.05211538448929787, 0.02216367796063423, -0.025413570925593376, -0.01784512773156166, 0.03932076692581177, 0.050505079329013824, -0.024579139426350594, 0.005142002832144499, -0.011652765795588493, 0.03923293203115463, -0.034138504415750504, 0.003187675727531314, -0.010635345242917538, 0.0027356918435543776, 0.023276254534721375, -0.00375494291074574, -0.03126922994852066, 0.015166162513196468, 0.04178014397621155, -6.79348231642507e-05, -0.004227055702358484, -0.000815217848867178, -0.005976434331387281, -0.0198214128613472, -0.006726691033691168, -0.061777226626873016, -0.034724071621894836, 0.020436258986592293, 0.016630077734589577, 0.0451764278113842, 0.018752755597233772, -0.003732984187081456, -0.017976880073547363, 0.01335090771317482, -0.03460695967078209, -0.010847612284123898, 0.036451492458581924, 0.011718641966581345, -0.011081838980317116, 0.027565525844693184, -0.06288979947566986, -0.04485436528921127, 0.011843075044453144, -0.016249461099505424, -0.010745138861238956, 0.0033651753328740597, 0.002667985623702407, -0.006946278270334005, 0.010130294598639011, 0.019587187096476555, 0.026570063084363937, -0.0009250115253962576, 0.0040367464534938335, -0.009617923758924007, -0.021387802436947823, 0.01731811836361885, 0.00251610460691154, 0.013548536226153374, -0.0265993420034647, -0.003956231288611889, -0.04148736223578453, 0.0030266449321061373, -0.008058854378759861, 0.010474313981831074, 0.0004574735357891768, 0.0030046862084418535, 0.03132778778672218, 0.0010640834225341678, -0.007495246361941099, -0.04535209760069847, -0.014888019300997257, 0.006540041882544756, 0.02216367796063423, -0.005149322096258402, -0.0024063107557594776, -0.006942618638277054, 0.020084919407963753, 0.0015041730366647243, 0.0057422081008553505, -0.02291027456521988, -0.042629215866327286, 0.008673698641359806, -0.014646473340690136, 0.01598595641553402, 0.0031382685992866755, 0.013855958357453346, 0.009844830259680748, 0.007626999169588089, -0.010957405902445316, -0.013409464620053768, -0.004907776135951281, 0.007282978855073452, 0.030478717759251595, -0.011001323349773884, -0.011586889624595642, 0.08572687953710556, 0.0077587515115737915, 0.020538732409477234, -0.04570343717932701, -0.008981120772659779, -0.06060609593987465, 0.003065072698518634, -0.022280791774392128, -0.013387505896389484, -0.03343582525849342, 0.04268776997923851, 0.00785390567034483, 0.023232337087392807, -0.032235417515039444, 0.03642221540212631, 0.0012571372790262103, 0.014287813566625118, -0.00029324053321033716, -0.031532738357782364, -0.07237597554922104, 0.007056071888655424, -0.07138051092624664, 0.027140989899635315, -0.006781587842851877, -0.04169230908155441, -0.046464674174785614, -0.060020528733730316, -0.029117276892066002, 0.05741475895047188, 0.024022851139307022, -0.01194554939866066, 0.0006711136666126549, 0.005478702951222658, 0.003806179855018854, -0.04813353717327118, 0.013929154723882675, 0.011213591322302818, 0.020436258986592293, -0.010144933126866817, 0.004314890597015619, 0.002183063654229045, -0.010093696415424347, 0.007795349229127169, -0.005544579587876797, -0.026306558400392532, 0.03285026177763939, 0.011755240149796009, 0.0032974693458527327, -0.008563905023038387, 0.05030013248324394, -0.04942178353667259, 0.015341833233833313, 0.005493342410773039, -0.011674724519252777, 0.005544579587876797, 0.034197062253952026, 0.047694362699985504, -0.004560096189379692, -0.07600648701190948, -0.013094722293317318, 0.0499487929046154, 0.010042459703981876, 7.130869198590517e-05, 0.03809107840061188, 0.041721586138010025, 0.023408006876707077, 0.02364223264157772, -0.04019911587238312, -0.012340806424617767, -0.0010842123301699758, 0.03255747631192207, -0.025237901136279106, -0.0983751118183136, -0.017771931365132332, 0.0386473648250103, -0.032586757093667984, 0.012333487160503864, -0.029819956049323082, -0.0181964673101902, 0.014097504317760468, 0.04163375124335289, 0.038032520562410355, 0.06897968798875809, -0.019557908177375793, 0.02796078287065029, -0.0025508725084364414, -0.04268776997923851, -0.019338320940732956, 0.012692146003246307, -0.0016835026908665895, -0.020743681117892265, -0.0008211650419980288, 0.015766369178891182, -0.014280494302511215, -0.026306558400392532, -0.04110674187541008, 0.03653932735323906, -0.026365116238594055, 0.030625108629465103, -0.001279096002690494, -0.020685123279690742, 0.021446360275149345, 0.02550140582025051, 0.04388818144798279, -0.009010398760437965, 0.005511641502380371, -0.0013495469465851784, 0.00029644285677932203, -0.032879538834095, 0.026994599029421806, 0.02251501753926277, -0.0073268963024020195, -0.024579139426350594, -0.059844858944416046, -0.024432746693491936, 0.004823600873351097, 0.04180942103266716, 0.006389990448951721, -0.027389856055378914, 0.018913786858320236, 0.04019911587238312, 0.026467589661478996, 0.046640343964099884, -0.018738117069005966, -0.0363929346203804, -0.021797699853777885, -0.010057098232209682, 0.011286787688732147, -0.007700194604694843, -0.01872347667813301, -0.026496868580579758, -0.02030450664460659, 0.005368909332901239, -0.03929148614406586, 0.010152253322303295, -0.01010101567953825, -0.02491583861410618, 0.027990061789751053, -0.04795786738395691, -0.05442837253212929, 0.04637683928012848, 0.00013003686035517603, 0.04429807886481285, -0.015854204073548317, -0.04989023506641388, 0.0368906669318676, -0.03334799036383629, 0.0053506107069551945, -0.019982444122433662, -0.03902798146009445, -0.02828284353017807, -0.011198952794075012, 0.06411949545145035, -0.022573575377464294, 0.024096045643091202, -0.02339336648583412, -0.013804721646010876, 0.020743681117892265, -0.06681309640407562, 0.0068072061985731125, -0.000232053454965353, -0.014295133762061596, -0.005636074114590883, -0.012582352384924889, -0.0009707588469609618, 0.006938958540558815, -0.054721154272556305, 0.030859336256980896, 0.010854932479560375, -0.005178600549697876, 0.006536381784826517, 0.006876742467284203, -0.005152982193976641, -0.010635345242917538, -0.01696677878499031, 0.027419134974479675, 0.0923437774181366, -0.017859768122434616, -0.03528035804629326, -0.03858880698680878, -0.028575627133250237, -0.032264694571495056, -0.018050076439976692, -0.011367302387952805, 0.017420591786503792, -0.01111843716353178, -0.019060177728533745, 0.09392480552196503, 0.023408006876707077, -0.014983173459768295, -0.020772958174347878, -0.019587187096476555, -0.01371688675135374, -0.016747191548347473, 0.013760804198682308, 0.025633158162236214, 0.00022988046112004668, 0.05123703554272652, -0.013255753554403782, -0.010459675453603268, 0.0006308560259640217, 0.004369787406176329, -0.02181233838200569, -0.02125605009496212, 7.20520838513039e-05, -0.01623482070863247, -0.040872517973184586, 0.0005238071898929775, 0.014631833881139755, -0.01588348113000393, -0.07015082240104675, -0.026540786027908325, -0.03929148614406586, -0.002779609290882945, 0.03249892219901085, -0.020319145172834396, 0.01011565513908863, 0.029102636501193047, -0.08379451185464859, -0.013995030894875526, -0.03355294093489647, -0.03320160135626793, -0.03246964141726494, 0.007517205085605383, 0.01046699471771717, 0.032967373728752136, -0.003529865760356188, 0.013980391435325146, 0.0008111005881801248, -0.0014712349511682987, 0.01651296578347683, -0.009998542256653309, -0.01269946526736021, 0.007407411467283964, 0.01329967100173235, -0.03393355756998062, 0.02695068158209324, -0.0077660707756876945, 0.0037622624076902866, 0.024535221979022026, 0.01633729599416256, 0.0013092892477288842, -0.027009237557649612, 0.012977609410881996, -0.010920808650553226, -0.0122968889772892, 0.03876447677612305, 0.01519544143229723, -0.029307585209608078, 0.03885231167078018, 0.000629026151727885, -0.01756698451936245, -0.021095020696520805, 0.03850097209215164, 0.008461430668830872, -0.016103068366646767, -0.011308746412396431, -0.024989034980535507, 0.037856850773096085, -0.0001255764946108684, -0.015005132183432579, -0.010437716729938984, -0.025808827951550484, 0.009866788983345032, -0.02346656285226345, -0.03580737113952637, -0.0065729799680411816, 0.023949654772877693, -0.051383428275585175, 0.019557908177375793, 0.03800324350595474, 0.035543862730264664, 0.03056655265390873, -0.009603284299373627, -0.0010027820244431496, -0.006108186673372984, -0.0047430857084691525, 0.03495829924941063, 0.00738545274361968, 0.0161909032613039, 0.011689363978803158, 0.00321878376416862, 0.0063094752840697765, 0.0333772711455822, 0.015415028668940067, 0.0008746894309297204, -0.021387802436947823, -0.04956817254424095, 0.01967502199113369, 0.010635345242917538, 0.027214186266064644, 0.048250649124383926, 0.002108038170263171, -0.022046566009521484, -0.0015142374904826283, -0.002089739078655839, -0.029117276892066002, -0.04289272055029869, -0.011140395887196064, 0.01935296133160591, -0.016849664971232414, -0.015473585575819016, 0.021797699853777885, -0.009756995365023613, -0.008183286525309086, -0.024154603481292725, 0.0202020313590765, -0.03246964141726494, 0.00020426193077582866, -0.006122826132923365, -0.017479149624705315, -0.019733577966690063, -0.019030898809432983, -0.013746164739131927, -0.0006866678013466299, -0.01570781134068966, 0.029834594577550888, -0.04081396013498306, 0.0013733356026932597, 0.0013934643939137459, 0.013585134409368038, 0.034548401832580566, -0.0033907939214259386, -0.02589666284620762, 0.05477971211075783, -0.00011940059630433097, 0.018503889441490173, -0.018928425386548042, 0.005873960442841053, -0.017654819414019585, -0.01987997069954872, 0.021900173276662827, -0.020070279017090797, -0.011674724519252777, 0.006389990448951721, -0.03615871071815491, 0.03949643671512604, 0.01812327280640602, 0.008951842784881592, 0.005515301134437323, -0.031884077936410904, 0.011857714504003525, -0.015605337917804718, 0.01280925888568163, -0.05325724184513092, 0.031064283102750778, -0.00720978295430541, 0.0061521041207015514, -0.04696240276098251, 0.022119760513305664, 0.007422050926834345, 0.01248719822615385, 0.03305520862340927, 0.04380034655332565, -0.03724200651049614, 0.04871910437941551, 0.03653932735323906, 0.055277444422245026, -0.008088132366538048, 0.02743377350270748, 0.015034410171210766, -0.02424243837594986, 0.0004121836682315916, 0.04043334349989891, -0.01967502199113369, 0.027916865423321724, -0.021036462858319283, -0.004066024906933308, -0.017420591786503792, -0.020465536043047905, 0.007297617848962545, 0.010327923111617565, 0.03762262314558029, 0.0068072061985731125, 0.012516476213932037, 0.015400389209389687, -0.002047651680186391, -0.022105121985077858, -0.0017347396351397038, -0.026365116238594055, -0.016249461099505424, 0.014990492723882198, 0.006082568317651749, -0.06341681629419327, -0.004150200169533491, -0.0019616466015577316, -0.08344317227602005, -0.027594804763793945, -0.012853176333010197, -0.018752755597233772, 0.00019739982963074, -0.02800470031797886, 0.028341401368379593, 0.009881428442895412, -0.03633438050746918, 0.03545602783560753, -0.03299665078520775, 0.0037274945061653852, -0.02838531881570816, 0.0034877783618867397, -0.02599913626909256, 0.026979960501194, 0.020070279017090797, -0.00043002513120882213, -0.0180647149682045, 0.005292053800076246, -0.010137613862752914, -0.024462025612592697, 0.04883621633052826, 0.0014401266817003489, 0.007217102684080601, 0.02223687432706356, 0.019309043884277344, -0.01728883944451809, -0.017420591786503792, 0.015942038968205452, 0.013372866436839104, -0.023305531591176987, -0.014522040262818336, -0.03703705966472626, -0.012187095358967781, -0.014866060577332973, -0.045791272073984146, -0.014507400803267956, -0.0184453334659338, -0.005105404648929834, 0.008110091090202332, 0.00419045751914382, 0.01802079752087593, -0.030098099261522293, -0.00939833652228117, 0.02579418756067753, 0.020568011328577995, 0.0027100732550024986, -0.030742222443223, 0.014873379841446877, -0.004106282722204924, 0.024725530296564102, -0.04028695076704025, -0.016600800678133965, -0.005522620864212513, 0.00461865309625864, 0.024901200085878372, 0.017347397282719612, 0.0311228409409523, 0.05469187721610069, 0.024857282638549805, 0.04640611633658409, 0.005156641826033592, 0.011396581307053566, 0.014858740381896496, -0.0033871340565383434, -0.005639733746647835, -0.019338320940732956, 0.0017914663767442107, -0.0164397694170475, -0.012428641319274902, -0.0025142745580524206, 0.033787164837121964, -0.04637683928012848, -0.016308017075061798, 0.02529645711183548, -0.016776470467448235, 0.016395851969718933, 0.02110965922474861, -0.006576639600098133, -0.005694630555808544, -0.001660628942772746, 0.008849368430674076, -0.022353988140821457, 0.022002646699547768, -0.02831212244927883, -0.02526717819273472, -0.03323087841272354, -0.0006523572956211865, -0.007008494809269905, -0.006419268902391195, -0.05164693295955658, -0.002671645488590002, 0.006891381461173296, 0.013768123462796211, -0.08719079941511154, -0.01739131473004818, 0.011725962162017822, -0.028897689655423164, -0.05240816995501518, 0.0012736063217744231, 0.02670181542634964, -0.0153711112216115, 0.017625540494918823, -0.009976583532989025, 0.03235252946615219, -0.02589666284620762, 0.017171727493405342, 0.011828435584902763, -0.012904413975775242, 0.0019506672397255898, 0.004922415129840374, 0.028765937313437462, 0.02075831964612007, 0.019616466015577316, -0.007085350342094898, 0.0035756132565438747, -0.022500379011034966, 0.03735911846160889, -0.007802668958902359, 0.01146977674216032, -0.026043053716421127, 0.009837510995566845, 0.055599503219127655, -0.024754809215664864, 0.0153711112216115, 0.0022452801931649446, -0.019543269649147987, -0.003806179855018854, 0.02009955793619156, 0.016454407945275307, 0.014785544946789742, -0.013080083765089512, -0.003630510065704584, -0.001965306233614683, -0.025413570925593376, -0.013321629725396633, 0.0012781810946762562, -0.0376519039273262, -0.003270020941272378, -0.023935016244649887, -0.004578395280987024, -0.03446056693792343, -0.03407995030283928, 0.017698736861348152, 0.02504759095609188, -0.024022851139307022, -0.007085350342094898, -0.006298495922237635, -0.002402651123702526, 0.027243465185165405, -0.041897255927324295, 0.02870737947523594, -0.010459675453603268, 0.012231012806296349, -0.02206120453774929, 0.0015133224660530686, 0.00408432399854064, -0.02462305687367916, -0.008227203972637653, 0.0033249177504330873, 0.004058705177158117, 0.01995316706597805, -0.0015334513736888766, 0.011667405255138874, 0.04380034655332565, 0.01859172433614731, 0.0029589389450848103, -0.0030357944779098034, 0.0026844546664506197, -0.0025563621893525124, 0.015312554314732552, -0.035192523151636124, -0.01176987960934639, -0.027975421398878098, -0.0080295754596591, -0.01626409962773323, -0.0239642933011055, 0.03753478825092316, -0.006320454645901918, -0.013204516842961311, -0.012231012806296349, 0.009288542903959751, 0.01449276227504015, -0.026335837319493294, 0.02708243392407894, -0.02923438884317875, -0.024096045643091202, 0.016425130888819695, 0.008197925984859467, 0.004585715010762215, -0.028151091188192368, 0.012377404607832432, 0.044912923127412796, 0.007780710235238075, 0.03741767629981041, -0.004329529590904713, 0.021387802436947823, -0.0002490943588782102, -0.009471531957387924, 0.012977609410881996, -0.006097207311540842, -0.031737685203552246, -0.03443128988146782, -0.02793150395154953, -0.02301274985074997, 0.015166162513196468, -0.00649246433749795, 0.011359983123838902, -0.013519258238375187, 0.02567707560956478, -0.02115357667207718, -0.01816719025373459, 0.002291027456521988, -0.003564633894711733, 0.058058883994817734, -0.013943793252110481, -0.03727128356695175, 0.020685123279690742, 0.008007616735994816, 0.04775291681289673, 0.005804424174129963, -0.01431709248572588, 0.0351339690387249, -6.336008664220572e-05, -0.008739574812352657, 0.05627290531992912, 0.014961214736104012, 0.04713807255029678, 0.006470505613833666, -0.011623487807810307, 0.018635641783475876, 0.004973652306944132, -0.018782034516334534, 0.034021392464637756, -0.0009172344580292702, 0.015868842601776123, 0.04933394864201546, -0.006554680876433849, 0.04388818144798279, 0.016454407945275307, -0.03094717115163803, 0.03003954328596592, -0.012955650687217712, 0.05217394232749939, -0.011081838980317116, 0.004761384800076485, -0.0323818065226078, 0.047196630388498306, -0.016103068366646767, 0.021797699853777885, -0.04479581117630005, -0.0552188865840435, -0.030273769050836563, 0.005943496245890856, 0.01116967387497425, 0.022968832403421402, 0.028502432629466057, -0.024725530296564102, 0.044561583548784256, -0.007824627682566643, -0.036129429936409, -0.013548536226153374, 0.01703997515141964, 0.02318841964006424, -0.0060240114107728004, -0.047518692910671234, 0.005054167937487364, -0.01774265430867672, 0.0351339690387249, 0.016103068366646767, 0.008659059181809425, 0.04169230908155441, 0.0032041447702795267, 0.029834594577550888, -0.01834286004304886, 0.007114628795534372, 0.007553803268820047, 0.05990341678261757, 0.025076869875192642, 0.01199678611010313, -0.031532738357782364, -0.0008833814063109457, -0.025355013087391853, -0.003992829006165266, 0.011967508122324944, 0.012004105374217033, 0.019382238388061523, -0.002682624850422144, -0.0009488001232966781, 0.009617923758924007, -0.0015151523984968662, 0.0046552508138120174, -0.04760652780532837, 0.02055337093770504, -0.02820964902639389, -0.01570781134068966, 0.019616466015577316, 0.0022397905122488737, -0.004819941241294146, 0.027375217527151108, -0.03056655265390873, -0.010364520363509655, -0.03566097840666771, 0.035075411200523376, -0.017537705600261688, 0.018913786858320236, -0.03533891588449478, -0.01454399898648262, 0.007363494019955397, 0.044883646070957184, 0.0007356174755841494, 0.011835755780339241, 0.0007063391385599971, -0.02954181097447872, -0.010371840558946133, -0.038383860141038895, -0.04125313460826874, 0.03478262946009636, -0.018635641783475876, 0.011096478439867496, -0.017449870705604553, 0.001320268609561026, -0.011747920885682106, 0.035221803933382034, 0.006049630232155323, 0.007422050926834345, 0.022002646699547768, 0.006843804381787777, 0.04113602265715599, -0.016908222809433937, 0.024052128195762634, -0.0020915691275149584, 0.02030450664460659, 0.023978933691978455, -0.023481201380491257, -0.0040770042687654495, -0.0009149470715783536, -0.013643691316246986, -0.002680795034393668, 0.010269366204738617, 0.003970870282500982, 0.0013852298725396395, 0.0025435530114918947, -0.001057678833603859, -0.006258238106966019, 0.029629645869135857, 0.03759334608912468, 0.01127946749329567, -0.0025655117351561785, 0.013599773868918419, 0.014221937395632267, -0.00023720003082416952, -0.007788029499351978, -0.002311156364157796, -0.008973801508545876, -0.015473585575819016, 0.0027979081496596336, -0.04019911587238312, 0.008454111404716969, 0.0010640834225341678, -0.005570197943598032, -0.022793162614107132, 0.01198214665055275, 0.0486898235976696, 0.004776023793965578, 0.013533897697925568, -0.0034127526450902224, -0.0015947527717798948, -0.01802079752087593, 0.02986387349665165, -0.029468616470694542, -0.003270020941272378, -0.03320160135626793, -0.004080663900822401, -0.009676480665802956, 0.023935016244649887, 0.0017448040889576077, 0.0009259264334104955, 0.01294833142310381, 0.002960768761113286, -0.0008806365658529103, 0.014104824513196945, 0.024608416482806206, -0.02269068732857704, 0.031737685203552246, 0.011191632598638535, -0.0016222011763602495, 0.011272148229181767, -0.02308594435453415, -0.0010951916920021176, -0.014038948342204094, -0.005167621187865734, 0.039086539298295975, 0.014975854195654392, 0.013533897697925568, 0.006734010763466358, 0.02856098860502243, -0.002856464823707938, 0.03691994398832321, -0.009537408128380775, 0.007729473058134317, -0.022954192012548447, -0.006313134916126728, 0.03320160135626793, -0.00401478772982955, -0.0198214128613472, 0.0074147311970591545, 0.024359552189707756, -0.008673698641359806, 0.025252539664506912, 0.039437878876924515, -0.00030216126469895244, -0.011213591322302818, -0.0029113616328686476, 0.023832540959119797, 0.03443128988146782, 0.005467723589390516, 0.029395420104265213, -0.023759346455335617, -0.016205543652176857, 0.0024593777488917112, -0.029483254998922348, -0.006880402099341154, 0.019104095175862312, 0.010825653560459614, -0.031210675835609436, 0.018108632415533066, 0.027990061789751053, -0.01703997515141964, 0.020641205832362175, 0.020875433459877968, 0.0032004849053919315, 0.019382238388061523, -5.326707469066605e-05, 0.005079786293208599, 0.021665947511792183, 0.01774265430867672, 0.005467723589390516, -0.002733861794695258, 0.021870894357562065, -0.002505125245079398, 0.004512519109994173, -0.015356471762061119, 0.009003079496324062, 0.07237597554922104, 0.012589671649038792, 0.00626189773902297, -0.0005640648887492716, 0.022573575377464294, -0.009493490681052208, -0.008110091090202332, 0.025252539664506912, 0.020084919407963753, 0.011930909939110279, -0.009471531957387924, -0.008402873761951923, -0.02655542455613613, -0.0055518988519907, 0.04494220018386841, -0.011316065676510334, -0.01598595641553402, -0.010825653560459614, -0.006203341297805309, -0.008446791209280491, -0.00022347582853399217, -0.007067051250487566, 0.010906169191002846, -0.022090483456850052, -0.015956677496433258, -0.01387791708111763, -0.005811743903905153, -0.0014099334366619587, -0.025106148794293404, 0.034372732043266296, 0.018386777490377426, -0.016600800678133965, 0.02504759095609188, 0.006986536085605621, 0.009120192378759384, 0.009947304613888264, -0.03598304092884064, -0.0034219021908938885, 0.007429370190948248, 0.0018884508172050118, -0.0027576505672186613, -0.001666118623688817, 0.016630077734589577, -0.012201734818518162, 0.003912313841283321, 0.014565957710146904, -0.023773984983563423, -0.0009680140065029263, -0.020787598565220833, -0.03633438050746918, -0.048074979335069656, -0.028502432629466057, 0.02075831964612007, -0.01477090548723936, 0.0160591509193182, 0.0289855245500803, 0.029732121154665947, 0.010854932479560375, 0.02213440090417862, 0.02655542455613613, -0.001778657198883593, 0.015766369178891182, -0.029497893527150154, -0.01424389611929655, -0.0225882139056921, -0.004047725815325975, 0.021797699853777885, 0.015722449868917465, -0.015473585575819016, -0.04254138097167015, 0.008432152681052685, 0.024886561557650566, 0.025633158162236214, 0.017874406650662422, 0.009325141087174416, 0.034138504415750504, 0.01616162620484829, 0.017098531126976013, 0.013753484934568405, -0.05480898916721344, -0.04286343976855278, 0.011308746412396431, -0.03958427160978317, -0.017830489203333855, -0.006196021568030119, -0.02181233838200569, 0.011974827386438847, 0.010540190152823925, -0.030859336256980896, 0.015312554314732552, 0.00011791380529757589, 0.010079056955873966, 0.05448693037033081, -0.001201325561851263, 0.02115357667207718, -0.0008271121769212186, -0.027214186266064644, -0.025179343298077583, -0.003037624293938279, -0.029746759682893753, 0.024564499035477638, -0.008410193957388401, -0.025032952427864075, 0.01816719025373459, 0.0069828759878873825, 0.006389990448951721, -0.04002344608306885, -0.001588348182849586, -0.029175832867622375, -0.00010733473027357832, -0.03425562009215355, -0.006880402099341154, 0.020611928775906563, 0.009713077917695045, 0.031532738357782364, 0.027009237557649612, -0.012933691963553429, -0.011762559413909912, -0.023159140720963478, -0.028165731579065323, 0.017435232177376747, -0.013116681948304176, -0.01900162175297737, -0.022178318351507187, 0.01127946749329567, 0.013782762922346592, 0.047665081918239594, -0.011359983123838902, -0.024476664140820503, -0.0018472782103344798, 0.01601523347198963, -0.004336849320679903, 0.02030450664460659, 0.004000148735940456, -0.04746013507246971, 0.008790811523795128, 0.007495246361941099, -0.016835026443004608, 0.016454407945275307, 0.00969843938946724, -0.02125605009496212, 0.022280791774392128, -0.02255893498659134, -0.033289436250925064, 0.02941005863249302, -0.010218129493296146, 0.01494657527655363, -0.0057422081008553505, 0.042072925716638565, 0.011433178558945656, 0.01703997515141964, -0.009178749285638332, 0.046142611652612686, 0.016205543652176857, 0.002296517137438059, -0.04836776480078697, -0.003978190012276173, -0.015327193774282932, 0.008256482891738415, 0.010547510348260403, -0.004424684215337038, -0.017025334760546684, -0.0021556152496486902, -0.009566687047481537, 0.014134102500975132, -0.009405655786395073, 0.004194117616862059, -0.017976880073547363, -0.008776172064244747, 0.00477968342602253, -0.014361009933054447, -0.026584703475236893, -0.01964574307203293, -0.013431423343718052, 0.03369932994246483, -0.031913354992866516, -0.014009669423103333, 0.014639153145253658, -0.008417513221502304, -0.004856538958847523, -0.005251796450465918, 0.010825653560459614, 0.0009863129816949368, 0.013043485581874847, 0.00514566246420145, 0.015458946116268635, -0.020948627963662148, -0.0037586025428026915, -0.008058854378759861, 0.03109356202185154, 0.008249162696301937, -0.004658910445868969, -0.0012177946045994759, 0.027946144342422485, 0.04371251165866852, 0.026116250082850456, 0.01897234283387661, 0.008512667380273342, -0.013592453673481941, 0.038735199719667435, 0.001635010470636189, -0.011425859294831753, -0.030507996678352356, -0.005983754061162472, 0.010232768021523952, 0.029380781576037407, 0.004625972360372543, 0.015532141551375389, 0.010759777389466763, 0.033845722675323486, -0.005954475607722998, 0.015253998339176178, 0.008336997590959072, 0.022529657930135727, 0.004907776135951281, -0.016571521759033203, -0.013241114094853401, 0.05624362826347351, 0.007242721039801836, -0.014339051209390163, 0.008585863746702671, -0.020992545410990715, -0.014514720998704433, -0.024300994351506233, 0.015502863563597202, 0.039613548666238785, 0.02725810371339321, -0.02512078732252121, -0.015444306656718254, -0.035251080989837646, 0.031884077936410904, 0.01731811836361885, -0.006320454645901918, 0.010664623230695724, -0.010518231429159641, -0.016132347285747528, -0.015868842601776123, -0.013614412397146225, 0.0036817470099776983, -0.03668572008609772, 0.01449276227504015, -0.0034017732832580805, -0.0013532066950574517, 0.042951274663209915, 0.04019911587238312, 0.021124297752976418, 0.018738117069005966, 0.025076869875192642, -0.012926372699439526, 0.009815552271902561, -0.028502432629466057, 0.008615141734480858, 0.02853170968592167, -0.016600800678133965, -0.026409033685922623, 0.007583081256598234, 0.045791272073984146, -0.01198214665055275, 0.0009327885345555842, -0.033494383096694946, -0.02547212690114975, 0.0358952060341835, 0.01766945794224739, 0.006159423850476742, -0.011323384940624237, 0.027214186266064644, 0.016249461099505424, -0.016029873862862587, -0.05041724443435669, 0.021739142015576363, 0.009200708009302616, 0.01198214665055275, 0.02768263965845108, -0.0010311453370377421, 0.005409167148172855, -0.0007351599633693695, -0.0019067497923970222, 0.006865763105452061, -0.036627162247896194, -0.017347397282719612, -0.0060459706000983715, 0.003956231288611889, -0.040521178394556046, -0.020568011328577995, -0.005142002832144499, -0.00969843938946724, -0.022646769881248474, 0.01022544875741005, -0.015268636867403984, 0.00993998534977436, 0.010459675453603268, 0.02778511308133602, -0.019235847517848015, 0.021519554778933525, 0.004464942030608654, -0.002455717884004116, -0.015224719420075417, 0.014580597169697285, -0.003032134613022208, -0.014866060577332973, -0.0073744733817875385, -0.00160939188208431, 0.00857122428715229, -0.03741767629981041, 0.023905737325549126, 0.012443280778825283, 0.02168058604001999, 0.006137465126812458, -0.0031803559977561235, -0.030800778418779373, 0.025179343298077583, -0.020041001960635185, 0.009288542903959751, 0.0014419566141441464, 0.009420295245945454, -0.0033029590267688036, -0.002382522216066718, 0.018811311572790146, 0.00375494291074574, 0.03773973882198334, 0.018503889441490173, 0.013819361105561256, 0.012143177911639214, 0.012187095358967781, 0.009083595126867294, 0.02170986495912075, 0.008937203325331211, -0.003904994111508131, 0.0222075954079628, -0.020319145172834396, 0.021270690485835075, 0.009786274284124374, 0.023803263902664185, -0.007656277157366276, 0.041194576770067215, 0.005994733422994614, 0.035368192940950394, 0.05466260015964508, 0.026409033685922623, -0.022280791774392128, 0.014309772290289402, 0.03659788519144058, -0.03970138356089592, 0.024652333930134773, -0.009676480665802956, 0.020568011328577995, 0.009003079496324062, -0.006968236993998289, -0.009229985997080803, 0.034548401832580566, 0.005969114601612091, 0.024959756061434746, -0.0007228081813082099, 0.031005727127194405, -0.030625108629465103, 0.02476944774389267, 0.04043334349989891, -0.022456461563706398, -0.0013687608297914267, 0.016395851969718933, 0.005683651193976402, 0.017274200916290283, -0.010379159823060036, 0.01947007328271866, -0.031708408147096634, 0.031562015414237976, 0.020948627963662148, -0.0035884224344044924, -0.0026643259916454554, 0.00354816485196352, 0.013914515264332294, -0.014829462394118309, 0.001934198196977377, -0.03006882034242153, -0.03853025287389755, -0.02976139821112156, 0.003266361076384783, 0.039994169026613235, -0.01245791930705309, -0.0059178778901696205, 0.0016780130099505186, 0.0031126500107347965, 0.04713807255029678, 0.03492901846766472, 0.033845722675323486, 0.018313581123948097, -0.01277266163378954, -0.00015691343287471682, 0.00520787900313735]" -How to Reduce Query Cost With a Wide Table Layout in TimescaleDB,"this too.Second, we provide our customers with a simple-to-use and customizable dashboard. This allows them to create metrics that go deep and answer almost any question (What are the most popular jobs on my site? How many signups came from Google? Which contact button is most effective?).To do this, we’re building a metric creator that is simple to use on the frontend but complex on the backend, with some advanced SQL being done to return the right answers depending on the question asked. So it’s important that we have the right tool to help us with this.Third, when our customers view their dashboard and look at the metrics, even a few seconds’ wait can cause frustration. As our customers can have several metrics on the dashboard at any time—some with fairly complex queries—there’s a lot of pressure on our database to read the data, crunch the numbers, and return the result quickly.On top of that, we also allow our customers to share and embed their dashboard onto a site, which means the number of users viewing the metrics goes up, and the number of read requests can increase at any time.Choosing (and Using!) TimescaleDBFirst, let’s talk about the previous setup we had and what problems this resulted in.Like many other companies,Nocodelyticsstarted with PostgreSQL. In the beginning, it worked. But the size of the database grew very, very fast. Eventually, with millions of rows, our dashboards became sluggish. Queries for customers with a lot of traffic would take several minutes or even time-out.As we needed a solution as quickly as possible, I had three things in mind when looking for an alternative to PostgreSQL:It had to be quick to learn.The change needed to involve a minimal amount of code.The migration path had to be simple.My first choice wasClickHouse, which seems to have better performance than Timescale for our use case—but keep reading as there's more to it.Not everything was great about ClickHouse: It does a lot, which can get confusing, and I’d rather stick with PostgreSQL, which I’ve used for years and know works.Amazon Athenawas another good option. It's serverless and queries compressed data directly from S3 (which Timescale is now offering in private beta too). It did have some weird limitations (e.g., a maximum of 20 concurrent queries, no way to update data, and",https://www.timescale.com/blog/how-to-use-wide-table-model-to-reduce-query-cost-in-timescaledb/,483,"[0.0034908608067780733, -0.009565507993102074, 0.03867250680923462, 0.0033222732599824667, 0.09106656908988953, 0.014044071547687054, -0.04005052521824837, 0.0008117854595184326, -0.008568642660975456, 0.013743545860052109, 0.03360022231936455, -0.046618107706308365, -0.008898488245904446, -0.019644107669591904, 0.04298248142004013, 0.006457634270191193, 0.002336402889341116, -0.03615102544426918, -0.04855319857597351, 0.0019900654442608356, -0.007208948023617268, 0.03216356411576271, 0.023675547912716866, 0.000905699678696692, 0.004060759674757719, 0.011896413750946522, -0.014234649017453194, 0.02855725586414337, 0.012138299643993378, -0.0813911110162735, 0.0137948552146554, -0.03368818014860153, -0.05280453711748123, 0.005431449506431818, 0.014711092226207256, -0.0007421515183523297, 0.05309773236513138, 9.964071068679914e-05, 0.03348294273018837, 0.02757505141198635, -0.03723584860563278, 0.052130185067653656, 0.030169831588864326, 0.014674441888928413, -0.014007422141730785, 0.018764521926641464, -0.034597087651491165, -0.036033745855093, -0.015436750836670399, 0.054475750774145126, -0.05849253386259079, 0.03861386701464653, -0.017225245013833046, -0.02506822720170021, 0.01119274366647005, -0.03837931156158447, -0.011625207960605621, 0.02871851436793804, 0.016888068988919258, 0.0059152222238481045, -0.001373438397422433, -0.05919620022177696, 0.018178129568696022, 0.03491960093379021, -0.004867048002779484, 0.035740550607442856, 0.00849534384906292, 0.009382260963320732, -0.039728011935949326, 0.030433708801865578, 0.03178240731358528, 0.013230454176664352, -0.0018159805331379175, 0.0015786753501743078, 0.02276664227247238, -0.05154379457235336, -0.012321547605097294, 0.05629356577992439, 0.006791144143790007, -0.0035036879125982523, 0.011375991627573967, -0.004170708358287811, -0.02753107249736786, 0.007850313559174538, 0.022414807230234146, -0.04125262796878815, -0.013948783278465271, 0.0006271637976169586, -0.025156186893582344, -0.0038408630061894655, -0.0344211682677269, 0.036238983273506165, 0.016946708783507347, 0.030433708801865578, 0.03747040405869484, 0.03582850843667984, 0.017840955406427383, 0.01081891916692257, -0.012607413344085217, 0.017606398090720177, 0.007601097226142883, -0.027384473010897636, -0.026065092533826828, -0.0267687626183033, 0.02152056060731411, -0.007571777794510126, 0.01889646053314209, 0.022121611982584, 0.011002167128026485, 0.032192882150411606, -0.07464761286973953, 0.008707910776138306, -0.05444643273949623, -0.00584558816626668, -0.031547851860523224, -0.0047241151332855225, -0.027443112805485725, -0.004379610065370798, -0.002255774103105068, -0.031547851860523224, -0.02163783833384514, -0.020215841010212898, -0.00789429247379303, 0.03650285676121712, 0.053713444620370865, -0.03037506900727749, -0.0066665359772741795, -0.04280656576156616, -0.0207582525908947, 0.0015007952461019158, 0.06802139431238174, -0.016800111159682274, 0.06045694276690483, -0.0281321220099926, -0.010203208774328232, 0.007549787871539593, -0.013868154026567936, -0.015568689443171024, -0.01092153787612915, 0.002241114154458046, -0.02003992348909378, -0.04957938566803932, 0.03867250680923462, -0.00830476637929678, -0.04280656576156616, 0.029847316443920135, -0.0223854873329401, 0.026006454601883888, -0.05095740407705307, -0.005090609658509493, 0.029832657426595688, -0.02135930396616459, -0.020772911608219147, -0.04277724400162697, 0.010481744073331356, 0.0012808984611183405, 0.04562124237418175, 0.04717518016695976, -0.022209569811820984, -0.045357368886470795, -0.00841471552848816, 0.03037506900727749, 0.014344597235321999, -0.0113320117816329, -0.020743591710925102, 0.011236723512411118, -0.049022313207387924, -0.056557439267635345, -0.08115655928850174, -0.018588604405522346, -0.0026057763025164604, -0.06831458956003189, 0.015979163348674774, 0.01933625340461731, 0.05456371232867241, -0.003686935408040881, -0.0008026231080293655, -0.09300166368484497, 0.026197031140327454, -0.0043173059821128845, -0.06127789244055748, 0.015055596828460693, -0.008290107361972332, 0.02414466254413128, -0.02386612631380558, 0.008158168755471706, -0.038262031972408295, 0.0083267567679286, -0.00991734303534031, 0.015700627118349075, -0.0726538822054863, 0.044096626341342926, 0.0022172920871526003, 0.014278627932071686, -0.001509957597590983, -0.0578768216073513, 0.03958141431212425, 0.031225336715579033, -0.050605569034814835, 0.02025981992483139, 0.04274792596697807, 0.020171860232949257, 0.06473760306835175, 0.004251337144523859, 0.01622837968170643, 0.021124746650457382, -0.0007728454074822366, -0.023338373750448227, -0.049901898950338364, -0.03802747651934624, 0.006025170441716909, -0.006142449099570513, -0.01001996174454689, 0.03486096113920212, -0.03248607739806175, -0.014329937286674976, -0.07277116179466248, -0.028659874573349953, -0.0019131016451865435, 0.017840955406427383, 0.012284898199141026, 0.07071878761053085, 0.007879633456468582, -0.03450912982225418, -0.016565553843975067, 0.034714363515377045, 0.04245473071932793, -0.02616771124303341, 0.015641987323760986, 0.02807348407804966, 0.0036667780950665474, -0.03647353872656822, -0.014630462974309921, -0.008913148194551468, 0.014249308966100216, -0.003969136159867048, 0.030228471383452415, -0.0105110639706254, -0.02452581562101841, -0.04063691571354866, -0.0234849713742733, -0.01032048650085926, -0.05163175240159035, -0.011038816533982754, 0.015202194452285767, 0.0009363936260342598, -0.055795133113861084, -0.03462640568614006, -0.005636686459183693, 0.03679605573415756, 0.02031845785677433, -0.008194818161427975, 0.011185414157807827, -0.04005052521824837, -0.01797289401292801, -0.07247796654701233, -0.0012039346620440483, 0.0240273829549551, 0.030433708801865578, -0.0014934653881937265, 0.015803245827555656, -0.03785155713558197, -0.012856629677116871, 0.018485985696315765, -0.0229425597935915, 0.005317836068570614, -0.010349806398153305, -0.04403798654675484, -0.008979116566479206, -0.022634703665971756, 0.031547851860523224, 0.018471326678991318, 0.031870368868112564, 0.002231951802968979, -0.0052591972053050995, -0.024437857791781425, -0.01092153787612915, 0.008290107361972332, 0.010987507179379463, -0.014843029901385307, -0.01457915361970663, -0.050165776163339615, 0.0008520998526364565, 0.008370735682547092, 0.033512264490127563, 0.0022172920871526003, 0.010327816940844059, 0.004603171721100807, 0.016184400767087936, -0.020127881318330765, 0.003718087449669838, -0.011991702020168304, 0.0056989905424416065, 0.02009856142103672, -0.000710083229932934, 0.008253457956016064, 0.0005703571368940175, 0.003243476850911975, -0.02316245622932911, -0.0022447791416198015, 0.0052701919339597225, -0.0096901161596179, -0.006047160364687443, -0.03368818014860153, 0.021212704479694366, 0.002990595530718565, -0.012541444040834904, 0.014132030308246613, -0.003437719075009227, 0.008553982712328434, -0.004742439836263657, -0.019028397276997566, -0.002173312706872821, -0.0005121761350892484, -0.02714991755783558, -0.02031845785677433, 0.07130518555641174, -0.05550193786621094, -0.012534113600850105, -0.0562642440199852, -0.027501752600073814, -0.09522994607686996, -0.039464134722948074, 0.019907984882593155, -0.01584722474217415, -0.0041010743007063866, 0.022136270999908447, -0.016477596014738083, 0.02845463715493679, -0.02003992348909378, 0.00653826305642724, -0.02757505141198635, 0.05198358744382858, 0.044155266135931015, -0.04075419530272484, -0.07793140411376953, 0.00039466883754357696, 0.005559722427278757, -0.02693002112209797, 0.01010059006512165, -0.021872395649552345, -0.005222547333687544, -0.05638152360916138, -0.014630462974309921, 0.031753089278936386, 0.01845666579902172, -0.005336160771548748, -0.0027688664849847555, 0.006025170441716909, -0.018280748277902603, -0.05558989569544792, -0.0054827588610351086, 0.015451410785317421, 0.017283882945775986, 0.03855522722005844, 0.007850313559174538, -0.013582288287580013, -0.03849658742547035, -0.023822147399187088, 0.002567294519394636, -0.02250276692211628, 0.020890189334750175, 0.02374884858727455, -0.015466070733964443, -0.0045445323921740055, 0.01933625340461731, -0.033512264490127563, -0.007842984050512314, -0.03318974748253822, 0.000954718329012394, 0.019864005967974663, -0.0026552530471235514, -0.004929352086037397, -0.01239484641700983, -0.06286114454269409, -0.00958749745041132, 0.026900701224803925, 0.02893841080367565, -0.002765201497823, 0.04271860793232918, 0.047644294798374176, 0.015407431870698929, 0.011940392665565014, -0.03380545973777771, 0.024173980578780174, 0.030287111178040504, 0.002056034514680505, -0.003309445921331644, -0.06860778480768204, -0.020186521112918854, 0.034215930849313736, -0.0031225336715579033, -0.00044322936446405947, -0.029847316443920135, -0.011324682272970676, 0.011134104803204536, 0.017137285321950912, 0.01677079126238823, 0.05163175240159035, 0.00562569173052907, 0.009418910369277, -0.0035953116603195667, -0.06192292273044586, -0.025053568184375763, 0.0016565554542466998, 0.00016148666327353567, -0.005647681187838316, 0.0055084130726754665, -0.0056989905424416065, -0.0371478907763958, -0.0005419538356363773, 0.0024390213657170534, 0.03723584860563278, -0.03975732997059822, 0.03773428127169609, -0.01763571798801422, -0.023822147399187088, 0.06602766364812851, 0.02300119958817959, 0.07236068695783615, -0.034655727446079254, -0.011507929302752018, -0.013274433091282845, 0.000895621080417186, -0.037323806434869766, 0.03664945811033249, 0.054211877286434174, -0.028586575761437416, -0.028601234778761864, -0.06925281137228012, -0.008707910776138306, -0.01416867971420288, 0.04884639382362366, -0.010723630897700787, -0.026959339156746864, 0.0013111343141645193, -0.012504794634878635, -0.019907984882593155, 0.05306841433048248, 0.010034620761871338, -0.019321592524647713, 0.01326710358262062, -0.0001722524466458708, 0.02921694703400135, -0.008810529485344887, -0.02064097300171852, -0.04304112121462822, -0.03201696649193764, 0.004790083970874548, -0.002472005784511566, 0.018207449465990067, -0.022150931879878044, -0.0041633783839643, 0.025258805602788925, -0.011134104803204536, -0.053830720484256744, 0.04620763286948204, -0.0224001482129097, 0.021007468923926353, -0.01933625340461731, -0.043715473264455795, 0.015979163348674774, -0.026842061430215836, 0.021887054666876793, -0.01715194620192051, -0.02741379290819168, 0.02468707412481308, -0.009308962151408195, 0.06039830297231674, -0.03342430293560028, 0.013201134279370308, 0.016023142263293266, -0.008971787057816982, -0.01605246216058731, -0.05356684699654579, 0.04673538729548454, 0.029304904863238335, 0.010159228928387165, -0.003007087856531143, -0.026578186079859734, 0.026460908353328705, -0.011053476482629776, 0.002913631731644273, 0.048084087669849396, -0.003866517683491111, 0.00397280091419816, 0.024056702852249146, 0.029085008427500725, -0.010349806398153305, -0.0012900608126074076, -0.010371795855462551, 0.024980269372463226, 0.06420984864234924, -0.018178129568696022, -0.04386207088828087, 0.00644297432154417, -0.07582039386034012, -0.048260003328323364, 0.00557071715593338, -0.004097409080713987, 0.01775299571454525, -0.02174045704305172, -0.020450396463274956, 0.09405716508626938, -0.0070916698314249516, 0.014623133465647697, -0.021066106855869293, -0.020846210420131683, -0.016741471365094185, -0.05283385515213013, -0.010716301389038563, 0.007549787871539593, 0.03157716989517212, 0.015466070733964443, -0.017181264236569405, -0.005885902792215347, 0.003085884265601635, 0.025918494910001755, -0.024100681766867638, -0.0004068089765496552, -0.030111193656921387, -0.017958233132958412, -0.041809700429439545, -0.006006845738738775, -0.013926793821156025, -0.0003014417889062315, -0.056440163403749466, -0.018661903217434883, -0.013890143483877182, -0.005966531578451395, -0.015143555589020252, -0.041047390550374985, 0.009111055172979832, -0.006373340263962746, -0.04031440243124962, -0.004705789964646101, -0.02893841080367565, -0.049168910831213, -0.04128194600343704, 0.005457104183733463, 0.04122330993413925, 0.03216356411576271, 0.021154066547751427, 0.03741176426410675, -0.005031970329582691, -0.010936197824776173, 0.02462843433022499, -0.002338235266506672, -0.0004778172879014164, 0.023939425125718117, 0.013105846010148525, -0.030081873759627342, 0.01275401096791029, 0.0024005393497645855, 0.011639866977930069, -0.006611561868339777, 0.031987644731998444, 0.037441086024045944, -0.014425225555896759, 0.010415775701403618, 0.005937212146818638, 0.01759173907339573, 0.014300617389380932, 0.004441914148628712, -0.010151899419724941, 0.0008076623780652881, 0.002765201497823, -0.02058233506977558, -0.043774109333753586, 0.014212659560143948, 0.02310381643474102, 0.002658918034285307, 0.004526207689195871, 0.04072487726807594, 0.002173312706872821, 0.021315323188900948, -0.05045897141098976, -0.013699566945433617, -0.007230937946587801, -0.01307652611285448, -0.03849658742547035, -0.02108076773583889, -0.03336566686630249, 0.023734187707304955, -0.027135256677865982, 0.023836806416511536, 0.02583053708076477, 0.018691223114728928, 0.021887054666876793, -0.013501659967005253, -0.016199059784412384, -0.0063550155609846115, -0.016360316425561905, 0.01633099839091301, 0.010525723919272423, 0.016257699579000473, 0.007718375418335199, 0.0015218686312437057, -0.0180168729275465, 0.022209569811820984, 0.025112207978963852, 0.002569126896560192, -0.013157154433429241, -0.009616817347705364, -0.014410566538572311, 0.01907237619161606, 0.010335146449506283, 0.013017887249588966, 0.06215747818350792, -0.021505901589989662, 0.027399133890867233, -0.013802185654640198, 0.018442006781697273, -0.05277521535754204, -0.011375991627573967, -0.00439427001401782, -0.02578655816614628, -0.017928913235664368, 0.003943481482565403, -0.010093260556459427, -0.02931956574320793, -0.016243038699030876, -0.005607367027550936, -0.030873501673340797, -0.007139313966035843, 0.009770745411515236, -0.03310178965330124, -0.029832657426595688, -0.021168725565075874, 0.006050825119018555, 0.005962866358458996, 0.015451410785317421, 0.029348883777856827, -7.839547470211983e-05, 0.007579107768833637, 0.04767361283302307, 0.017606398090720177, 0.030668264254927635, 0.008678590878844261, -0.006054490339010954, 0.01725456491112709, 0.028000185266137123, -0.014850359410047531, -0.038320671766996384, 0.0011297195451334119, -0.03911229968070984, 0.004449244122952223, 0.044096626341342926, -0.03430389240384102, -0.017606398090720177, -0.011529918760061264, -0.02829338051378727, 0.07957329601049423, 0.009514198638498783, 0.01644827611744404, 0.0027285520918667316, -0.014212659560143948, -0.011705836281180382, -0.01567130722105503, 0.022312188521027565, -0.045914437621831894, 0.01408805139362812, -0.01644827611744404, 0.015040936879813671, -0.02616771124303341, -0.0011022323742508888, 0.022869260981678963, -0.0002581496082711965, 0.05860980972647667, 0.023294394835829735, -0.03404001519083977, 0.038086116313934326, 0.012732021510601044, 0.012446155771613121, 0.01452784426510334, -0.007351880893111229, 0.024042043834924698, -0.05113331973552704, -0.003895837115123868, 0.03280859440565109, -0.026460908353328705, 0.015084915794432163, -0.017078647390007973, 0.0048413933254778385, 0.0069890511222183704, -0.03228083997964859, -0.02637294866144657, 0.0360630638897419, 0.03392273560166359, 0.022810621187090874, 0.02823474071919918, 0.0013083856320008636, 0.00949953868985176, -0.010855568572878838, 0.024892311543226242, -0.033776137977838516, -0.006388000212609768, 0.058082059025764465, -0.005002650897949934, -0.029187627136707306, -0.018867140635848045, -0.0003653492603916675, -0.0584338940680027, -0.019526829943060875, -0.015392771922051907, -0.00228142854757607, 0.0041047390550374985, -0.017606398090720177, 0.030668264254927635, -0.015202194452285767, -0.06432712823152542, -0.004867048002779484, -0.004760764539241791, 0.0029099667444825172, -0.009484879672527313, -0.0006647295085713267, -0.03310178965330124, 0.01725456491112709, -0.002814678242430091, -0.009895353578031063, -0.03354158252477646, 0.0011535416124388576, -0.030521666631102562, -0.03814475238323212, 0.052012909203767776, -0.024511156603693962, 0.016096441075205803, 0.04242540895938873, -0.0016556391492486, -0.014315277338027954, 0.027663009241223335, 0.014571824111044407, 0.015685968101024628, 0.0029356214217841625, 0.030609626322984695, -0.018881799653172493, -0.007593767251819372, 0.02801484428346157, -0.03456776589155197, 0.004350290633738041, -0.03125465661287308, 0.02272266335785389, -0.005244537256658077, 0.010679651983082294, 0.007601097226142883, -0.033131107687950134, 0.01807551272213459, 0.0015933350659906864, 0.03456776589155197, -0.01493831817060709, -0.01982002519071102, 0.014615803025662899, 0.006193757988512516, -0.0003474826517049223, -0.015070256777107716, -0.013567628338932991, -0.010635672137141228, -0.0289530698210001, 0.0013358726864680648, 0.005724645219743252, 0.012321547605097294, 0.036297623068094254, -0.02693002112209797, 0.032192882150411606, 0.014132030308246613, 0.01825142838060856, -0.028865111991763115, -0.0243059191852808, -0.002023050095885992, -0.036942653357982635, 0.0015841727145016193, -0.016536233946681023, 0.0007394027779810131, -0.02877715229988098, 0.06678996980190277, -0.019204314798116684, -0.010621012188494205, -0.022751983255147934, 0.007623086683452129, -0.0035036879125982523, 0.0015695129986852407, 0.008334086276590824, -0.017621058970689774, -0.03893638402223587, 0.002697400050237775, -0.009440899826586246, 0.03204628452658653, -0.009741425514221191, -0.01307652611285448, -0.03758768364787102, -0.023572931066155434, -0.013838835060596466, -0.007996911182999611, 0.01447653491050005, -0.0022191244643181562, 0.0102398581802845, -0.00017454303451813757, -0.11991702020168304, -0.03597510606050491, 0.030228471383452415, -0.021975014358758926, -0.021769776940345764, -0.006373340263962746, 0.007011041045188904, -0.0006212082807905972, 0.021857736632227898, -0.007659736555069685, -0.0015145387733355165, -0.04500553384423256, -0.010063940659165382, 0.01365558709949255, -0.004295316059142351, 0.013105846010148525, 0.01628701761364937, 0.01901373825967312, 0.008707910776138306, 0.01697602868080139, 0.005167573224753141, 0.010950857773423195, -0.04834796115756035, 0.05271657928824425, 0.018178129568696022, -0.019951963797211647, -0.01905771717429161, 0.04553328454494476, 0.021857736632227898, -0.03037506900727749, 0.0037070924881845713, -0.012578093446791172, -0.0015493558021262288, -0.004878042731434107, 0.006739834789186716, 0.0015172874554991722, -0.004445578902959824, -0.013670247048139572, -0.0027871911879628897, -0.004698460455983877, -0.030609626322984695, -0.05368412286043167, 0.03102009929716587, -0.05743702873587608, 0.043568871915340424, -0.04236677289009094, 0.008370735682547092, 0.015759266912937164, -0.02162317931652069, 0.008150839246809483, 0.03489028289914131, 0.008378066122531891, -0.016023142263293266, 0.004661811050027609, 0.004430919419974089, 0.015656648203730583, -0.04600239917635918, -0.005636686459183693, 0.010774940252304077, 0.012710031121969223, -0.017005348578095436, -0.0052701919339597225, 0.002774363849312067, -0.05347888544201851, -0.01157389860600233, -0.01977604627609253, -0.0025251475162804127, 0.04720449820160866, -0.0124241653829813, 0.015495389699935913, 0.04128194600343704, 0.038320671766996384, 0.009081735275685787, -0.02500958926975727, -0.0019699083641171455, -0.005251867230981588, 0.014080720953643322, -0.012380186468362808, -0.021110087633132935, -0.015026276931166649, 0.020670292899012566, -0.013948783278465271, -0.01835404708981514, 0.027047298848628998, -0.019570808857679367, -0.02031845785677433, -0.0008589716162532568, -0.009162364527583122, 0.018280748277902603, -0.020743591710925102, 0.031225336715579033, -0.019204314798116684, -0.0031976650934666395, 0.017357181757688522, 0.01659487374126911, 0.02522948570549488, -0.0022356167901307344, 0.01819279044866562, 0.008077540434896946, 0.007373870816081762, 0.044536419212818146, 0.018046192824840546, 0.006930412258952856, 0.02632896974682808, -0.01193306315690279, 0.0017500115791335702, 0.012130970135331154, 0.01779697649180889, -0.004496888257563114, 0.011478609405457973, -0.02971537970006466, -0.00562569173052907, 0.01785561442375183, 0.024393878877162933, -0.0036264637019485235, 0.027340494096279144, 0.036884013563394547, 0.016668172553181648, 0.019585469737648964, -0.03327770531177521, 0.032632675021886826, -0.021154066547751427, -0.006684860680252314, 0.04597307741641998, 0.0005905143916606903, 0.032310161739587784, 0.03685469180345535, 0.006179098505526781, 0.04113534837961197, 0.005706320516765118, -0.005035635083913803, 0.0622747577726841, 0.00972676556557417, 0.04321704059839249, 0.007395860273391008, -0.01447653491050005, -0.006747164763510227, -0.018647244200110435, -0.015598008409142494, 0.03697197139263153, -0.0011911073233932257, 0.021549880504608154, 0.006039830390363932, 0.007689055986702442, 0.03568191081285477, -0.009975981898605824, -0.005937212146818638, 0.011698506772518158, -0.03846726939082146, 0.03289655223488808, 0.028601234778761864, -0.026255670934915543, -0.001421082648448646, 0.08051152527332306, -0.017107965424656868, 0.0486118383705616, -0.033512264490127563, -0.05324432998895645, -0.016184400767087936, -0.01971740834414959, 0.001246997737325728, 0.025405403226614, 0.02879181317985058, -0.027926886454224586, 0.033394984900951385, -0.03354158252477646, -0.017401162534952164, 0.0043283007107675076, -0.023836806416511536, 0.021154066547751427, -0.011698506772518158, 0.002853160258382559, 0.001118724700063467, 0.007681726012378931, 0.057759542018175125, 0.03113737888634205, 0.010972847230732441, 0.02118338644504547, -0.009932002983987331, 0.015876544639468193, -0.029231606051325798, 0.03163580968976021, 0.0034212267491966486, 0.044213905930519104, 0.027677670121192932, -0.025757238268852234, -0.040343720465898514, -0.016844090074300766, -0.012988567352294922, 0.0006569414981640875, 0.02675410360097885, -0.0019900654442608356, -0.0017674199771136045, 0.03239811956882477, -0.016345657408237457, 0.007439839653670788, 0.026519546285271645, -0.02468707412481308, -0.009067075327038765, 0.01960012875497341, -0.010027291253209114, 0.002112841233611107, 0.019849345088005066, -0.012402175925672054, -0.012863959185779095, 0.029627420008182526, -0.012497464194893837, 0.02244412712752819, -0.04107671231031418, 0.02703263983130455, -0.003661280730739236, 0.013186474330723286, -0.007450834382325411, -0.015275493264198303, -0.0027523741591721773, 0.041868340224027634, 0.04330499842762947, 0.03395205736160278, 0.0006789311883039773, -0.034333210438489914, -0.03445049002766609, -0.026504887267947197, -0.014007422141730785, 0.028058823198080063, -0.0371478907763958, 0.025654619559645653, 0.016917388886213303, -0.011236723512411118, -0.0019735731184482574, -0.006626221816986799, 0.015759266912937164, 0.035916466265916824, 0.027384473010897636, -0.017445141449570656, 0.02223888970911503, 0.01572994701564312, 0.007967592217028141, 0.011947723105549812, 0.00712831923738122, 0.028601234778761864, 0.02420330047607422, -0.01861792430281639, -0.003115203697234392, -0.01444721594452858, -0.019482851028442383, -0.007282246835529804, 0.035476673394441605, 0.004441914148628712, 0.044858936220407486, -0.005867578089237213, 0.0056146965362131596, 0.00667753117159009, 0.043774109333753586, 0.023792827501893044, 0.008832518942654133, 0.004449244122952223, 0.008671261370182037, 0.009961321949958801, 0.0010463419603183866, -0.02260538376867771, 0.004482228308916092, 0.027135256677865982, 0.0017765824450179935, -0.008531993255019188, -0.019204314798116684, 0.0005689827958121896, -0.021168725565075874, -0.002054202137514949, 0.02200433425605297, 0.0008594297687523067, -0.03178240731358528, 0.03058030642569065, 0.02757505141198635, -0.007930942811071873, -0.010122579522430897, 0.010305827483534813, -0.06121925264596939, -0.012900608591735363, -0.020714271813631058, -0.010269178077578545, -0.020274478942155838, 0.008751890622079372, -0.008216808550059795, -0.012636732310056686, 0.04116467013955116, -0.016374977305531502, 0.006523603107780218, -0.020069241523742676, 0.02997925505042076, -0.03430389240384102, -0.0067581599578261375, 0.018339388072490692, -0.01759173907339573, 0.03342430293560028, -0.020391756668686867, -0.004156048409640789, 0.007557117845863104, 0.010672321543097496, 0.015172874554991722, 0.00037519881152547896, 0.0050539602525532246, -0.02113940566778183, 0.018764521926641464, 0.029202286154031754, 0.02588917501270771, 0.0180168729275465, -0.006600567139685154, -0.007183293346315622, -0.014417896047234535, 0.04406730458140373, -0.005644016433507204, 0.0023785496596246958, 0.004291651304811239, 0.030521666631102562, -0.01166185736656189, 0.0025874515995383263, 0.025464043021202087, 0.025112207978963852, 0.01326710358262062, 0.022136270999908447, 0.0028696523513644934, 0.014058731496334076, 0.010056611150503159, 0.03486096113920212, 0.007377535570412874, 0.007923612371087074, 0.011317351832985878, 0.006831458769738674, 0.003740076906979084, 0.022678684443235397, 0.008026231080293655, -0.007820993661880493, 0.026094412431120872, 0.018764521926641464, -0.032691314816474915, 0.0023327379021793604, 0.0046178316697478294, -0.0037748939357697964, 0.011815784499049187, 0.0107896002009511, 0.02097814902663231, 0.006640881299972534, -0.0016437281155958772, -0.005361815448850393, -0.009712105616927147, -0.0038701826706528664, 0.037441086024045944, 0.02621169202029705, 0.0008979116682894528, 0.027838926762342453, 0.06145380809903145, 0.005863912869244814, 0.0026790753472596407, 0.016506915912032127, 0.005358150694519281, 0.010518394410610199, -0.015026276931166649, -0.004526207689195871, 0.00776968477293849, 0.009704776108264923, -0.01819279044866562, -0.0015163712669163942, -0.03855522722005844, 0.018720543012022972, 0.015040936879813671, -0.023353032767772675, -0.01343569066375494, 0.03741176426410675, -0.007194288074970245, -0.018764521926641464, 0.02927558496594429, 0.013457680121064186, 0.0020193851087242365, -0.016155080869793892, -0.013956112787127495, -0.0011306357337161899, 0.005970196332782507, 0.0067618247121572495, -0.021725798025727272, 0.03791019693017006, 0.014161350205540657, -0.04134058579802513, 0.01917499490082264, 0.0524233840405941, -0.011185414157807827, 0.022121611982584, -0.02037709765136242, 0.016741471365094185, 0.014549833722412586, 0.023851465433835983, -0.00972676556557417, -0.03805679455399513, 0.0061387838795781136, -0.007124654483050108, -0.018339388072490692, 0.011229393072426319, 0.00630737142637372, -0.007362875621765852, -0.024701733142137527, -0.02113940566778183, -0.05028305575251579, -0.021828416734933853, 0.007637746632099152, -0.024760372936725616, 0.00030625201179645956, 0.022810621187090874, 0.05743702873587608, 0.001217678189277649, 0.023089157417416573, 0.040871474891901016, -0.012966577894985676, 0.01589120365679264, -0.033834777772426605, 0.0007939188508316875, -0.026783423498272896, -0.030052553862333298, 0.01885247975587845, -0.002600278938189149, 0.0010921538341790438, -0.04090079292654991, -0.00356415961869061, 0.035535313189029694, 0.009279642254114151, -0.006182763259857893, 0.03708925098180771, 0.03063894622027874, 0.010041951201856136, 0.022898580878973007, 0.004372280091047287, -0.026197031140327454, -0.027003319934010506, 0.013721556402742863, -0.04438982158899307, 0.03069758415222168, -0.01152258925139904, 0.0008621784509159625, 0.010115250013768673, 0.020611654967069626, -0.013061866164207458, 0.01283463928848505, 0.009030425921082497, 0.004936681594699621, 0.016345657408237457, 0.002024882473051548, -0.010745620355010033, -0.030726904049515724, -0.06133652850985527, -0.010569702833890915, 0.0032782938797026873, -0.029363544657826424, 0.02693002112209797, -0.0005291264969855547, -0.016140419989824295, 0.029583441093564034, 0.019790707156062126, -0.005383804906159639, -0.0077476948499679565, -0.01166185736656189, -0.010606352239847183, -0.026241010054945946, -0.01485768985003233, 0.019849345088005066, 0.022253550589084625, 0.009514198638498783, 0.04189765825867653, 0.026504887267947197, -0.016580214723944664, -0.0022942558862268925, -0.030463028699159622, -0.031929004937410355, 0.03342430293560028, -0.015568689443171024, -0.0243059191852808, -0.006289046723395586, 0.014564493671059608, 0.0264902263879776, 0.028850451111793518, -0.0043283007107675076, -0.016624193638563156, 0.018485985696315765, 0.009162364527583122, -0.006175433285534382, 0.03418661281466484, -0.004526207689195871, -0.012321547605097294, 0.018823159858584404, 0.024833671748638153, -0.029788678511977196, 0.031225336715579033, -0.018779180943965912, -0.03500756248831749, 0.03565259277820587, -0.010129909962415695, 0.0044125947169959545, 0.021256685256958008, 0.013912133872509003, 0.01605246216058731, 0.018544625490903854, 0.029744699597358704, -0.006358680780977011, -0.009624146856367588, -0.014425225555896759, 0.0518956296145916, 0.014945648610591888, 0.0166535135358572, -0.03157716989517212, 0.011258712969720364, -0.01671215146780014, -0.004987990949302912, -0.010437765158712864, -0.01360427774488926, 0.013772865757346153, 0.008568642660975456, -0.024393878877162933, 0.008707910776138306, -0.007406855002045631, -0.0005314171430654824, -0.015363452024757862, -0.026065092533826828, 0.0019295938545837998, -0.010855568572878838, 0.0009538020822219551, 0.004463903605937958, 0.006629886571317911, 0.058023419231176376, 0.007886962965130806, -0.015715286135673523, 0.00681313406676054, -0.014329937286674976, -0.004302646033465862, -0.012174949049949646, 0.010071270167827606, -0.0033039485570043325, 0.03905365988612175, 0.006377005483955145, 0.008781209588050842, -0.027604371309280396, -0.00484505807980895, -0.010591693222522736, -0.007117324508726597, -0.013010556809604168, -0.02298653870820999, -0.012556103989481926, 0.044331181794404984, 0.005757629405707121, 0.016697492450475693, 0.03254471719264984, 0.008165499195456505, -0.03184104710817337, 0.013142495416104794, -0.015685968101024628, -0.008510003797709942, -0.026842061430215836, -0.006846118252724409, -0.012849299237132072, 0.05031237378716469, -0.005984856281429529, 0.01999594271183014, 0.002472005784511566, 0.022209569811820984, 0.0076157571747899055, -0.005416789557784796, -0.026314308866858482, 0.027780286967754364, 0.008575973100960255, -0.013699566945433617, -0.010305827483534813, 0.05471030995249748, 0.008634611964225769, -0.04309976100921631, 3.3872114727273583e-05, -0.03424525260925293, -0.010899548418819904, -0.017547760158777237, 0.005244537256658077, -1.1968338185397442e-05, 0.03515416011214256, -0.007564447820186615, 0.023675547912716866, 0.010496404021978378, -0.025742577388882637, -0.013611608184874058, 0.011295362375676632, 0.02003992348909378, -0.007711045444011688, -0.019526829943060875, -0.003137193387374282, -0.010298497043550014, 0.04342227429151535, -0.030990779399871826, -0.007527798414230347, 0.0028549926355481148, 0.021344643086194992, 0.013413701206445694, 0.04658878967165947, 0.009602157399058342, 0.024892311543226242, 0.01198437251150608, 0.00827544741332531, 0.012094320729374886, -0.008971787057816982, -0.003844527993351221, -0.002404204336926341, -0.008400055579841137, -0.03327770531177521, 0.030081873759627342, 0.021535219624638557, -0.008363406173884869, 0.01466711238026619, 0.000189775470062159, -0.01775299571454525, 0.016682833433151245, 0.002041374798864126, -0.014432555995881557, 0.015187534503638744, 0.006967061664909124, 0.024819012731313705, -0.037059929221868515, -0.035300757735967636, 0.01999594271183014, -0.004463903605937958, 0.039728011935949326, 0.03556463122367859, 0.00562569173052907, 0.005852918140590191, -0.02097814902663231, 0.009844044223427773, 0.022795962169766426, -0.00088554248213768, -0.008722570724785328, 0.0002636470308061689, 0.006366010755300522, -0.04145786538720131, -0.03075622394680977, 0.003903167089447379, 0.016140419989824295, -0.004610501695424318, 0.0113320117816329, -0.014828369952738285, 0.0063550155609846115, 0.02262004464864731, 0.028308039531111717, -0.016301678493618965, 0.023470312356948853, 0.004178037866950035, -0.030111193656921387, 0.01901373825967312, 0.019306933507323265, 0.008913148194551468, -0.0027432118076831102, -0.010928868316113949, 0.01895509846508503, -0.003914162050932646, -0.03468504548072815, 0.02877715229988098, 0.0010390121024101973, -0.00873723067343235, 0.009462889283895493, -0.0033625876531004906, -0.005229877308011055, 0.033013831824064255, -0.019629448652267456, 0.014865019358694553, -0.0034102320205420256, -0.011288032867014408, 0.002305250847712159, -0.008378066122531891, 0.04796680808067322, 0.013648257590830326, 0.00972676556557417, 0.01841268688440323, -0.005750299897044897, 0.014755071140825748, 0.015407431870698929, 0.03571122884750366, 0.029128987342119217, 0.005090609658509493, -0.001975405728444457, 0.013450350612401962, -0.026827402412891388, 0.03632694110274315, 0.02292790077626705, 0.03802747651934624, -0.019262954592704773, 0.028220081701874733, 0.005273856688290834, 0.021564539521932602, 0.011639866977930069, 0.01753309927880764, -0.019629448652267456, 0.011940392665565014, 0.041369907557964325, -0.04362751170992851, 0.026607505977153778, 0.0019424211932346225, 0.03257403522729874, 0.007447169627994299, -0.008913148194551468, -0.01709330640733242, -0.0026809077244251966, 0.0038628526963293552, 0.028366679325699806, -0.02386612631380558, -0.0021568206138908863, -0.02196035347878933, 0.0009002022561617196, 0.03014051355421543, 0.0015988325467333198, -0.0245844554156065, 0.003397404681891203, 0.022150931879878044, 0.002132998313754797, -0.01444721594452858, -0.005090609658509493, -0.033394984900951385, 0.002853160258382559, 0.018471326678991318, -0.0008145341416820884, -0.020083902403712273, -0.0035769869573414326, 0.026446247473359108, 0.0016373144462704659, 0.00016034136933740228, -0.037323806434869766, -0.0029521137475967407, -0.030814863741397858, 0.015817904844880104, 0.005347155500203371, 0.0018214780138805509, 0.015612668357789516, 0.025874515995383263, 0.03239811956882477, 0.02937820367515087, 0.009983312338590622, 0.043392956256866455, -0.004148718435317278, 0.0006853448576293886, 0.0267687626183033, -0.0036576157435774803]" -How to Reduce Query Cost With a Wide Table Layout in TimescaleDB,"dynamic partition columns must always be included in queries), which I found out the hard way. At that point, I was worried about the next issue I’d find, and I lost confidence in the product.Finally,InfluxDB. I spent a few hours with it, but it’s too different from what we already had. The migration would take forever.Also, I must stress that I had never heard about those tools before. I either worked on large projects with big money, where we used Redshift/BigQuery or specialized, small-scale projects, where the smallest PostgreSQL instance would be enough.I was about to use ClickHouse before I came across Timescale by chance while browsing databases.It’s just PostgreSQLThere you have it. The best feature of TimescaleDB: it's all PostgreSQL, always has been. All your tools, all the existing libraries, and your code already work with it. I’m using TimescaleDB because it’s the same as PostgreSQL but magically faster.Whatever technology is behind TimescaleDB, it’s truly impressive. Since theWebflow Conf, we have been inserting more than a million rows per day (without optimizations) in our tiny 8 GB memory instance. Sometimes, we have 3 K/IOPS. PostgreSQL would struggle. It’s like pulling an elastic until it snaps—but it never does, and we barely scratched the surface of what it can do. Also, the community is really nice.“I’m using TimescaleDB because it’s the same as PostgreSQL but magically faster""So, in sum, Timescale was a drop-in replacement that solved most of our issues. I installed the extension,created a hypertable, and everything became magically fast.✨Editor’s Note: Want to get started with TimescaleDB?Check out our documentation.But as I was reading the Timescale documentation, I realized it could be faster. A lot faster.Relational vs. Wide Table LayoutWhen you first learn about relational databases, you learn how to normalize your data with multiple tables and foreign key references. That’s a good, flexible way to store your data. However, it can be an issue when dealing with a large amount of data.That’s where the wide table layout becomes useful.Normalized data vs. Wide tableThe idea is to trade storage and schema flexibility for query performance by reducing the number ofJOINs. But this doesn’t stop you from combining both. You can still add foreign keys to a wide table.You will end up using more storage, but you can mitigate it with TimescaleDB’s compression.✨Editor’s Note:Learn",https://www.timescale.com/blog/how-to-use-wide-table-model-to-reduce-query-cost-in-timescaledb/,519,"[-0.030874356627464294, -0.004395721480250359, 0.053702306002378464, 0.023930605500936508, 0.057397693395614624, 0.0027845778968185186, -0.02747698500752449, -0.0026672345120459795, -0.03921877592802048, 0.026702145114541054, 0.022008409723639488, 0.004216912668198347, 0.020458731800317764, -0.02008621208369732, 0.05236123874783516, 0.031500186771154404, -0.020384227856993675, -0.047742005437612534, -0.04270555451512337, 0.02555478736758232, -0.010288968682289124, 0.011630035936832428, 0.004645308945327997, 0.02857964113354683, 0.016897451132535934, -0.02705976366996765, -0.02631472609937191, 0.05522218346595764, 0.03257304057478905, -0.04088766127824783, -0.010169762186706066, -0.03370549902319908, -0.0308445543050766, -0.010579532943665981, 0.0229471568018198, 0.02385610342025757, 0.03901016712188721, 0.022187218070030212, 0.0038928212597966194, 0.02796871028840542, -0.008702038787305355, 0.04413602501153946, 0.006232239305973053, 0.019445480778813362, 0.024437231943011284, 0.0016986855771392584, -0.0287733506411314, -0.01858123578131199, -0.0053940718062222, 0.06997393071651459, -0.029011761769652367, 0.031351178884506226, -0.0051258583553135395, -0.002812516875565052, 0.017240168526768684, -0.030099516734480858, 0.004950774367898703, 0.01624181866645813, 0.0014034644700586796, 0.004820392932742834, 0.039576396346092224, -0.0616891086101532, 0.06139109283685684, 0.029637593775987625, -0.007301367819309235, 0.039576396346092224, -0.029235273599624634, 0.04598371684551239, -0.02659784071147442, 0.03465914726257324, 0.013365973718464375, 0.003974775318056345, -0.007588207721710205, -0.022515034303069115, 0.03850354254245758, -0.05915598198771477, 0.010214464738965034, 0.048338036984205246, 0.004053004086017609, -0.016957053914666176, 0.019341174513101578, 0.00560268247500062, -0.035404182970523834, 0.01850673370063305, 0.014468628913164139, -0.008433825336396694, 0.006642009597271681, -0.027640894055366516, -0.0039002716075628996, 0.01645042933523655, -0.006642009597271681, 0.0397254042327404, -0.011264967732131481, 0.01558618526905775, 0.005576605908572674, 0.012918950989842415, 0.009052205830812454, 0.0003711218305397779, -0.02795380912721157, 0.02762599289417267, 0.027491886168718338, 0.01051993016153574, -0.006738864816725254, -0.031410783529281616, 0.02507796324789524, -0.02947368659079075, -0.015601086430251598, -0.004332393407821655, 0.01205470785498619, 0.025375979021191597, -0.06860306113958359, -0.02418391965329647, -0.05251024663448334, 0.02467564307153225, -0.026121016591787338, -0.017374275252223015, -0.02686605416238308, 0.036357831209897995, 0.019147465005517006, -0.017016658559441566, -0.018998457118868828, -0.015012506395578384, -0.01883454993367195, 0.0043510193936526775, 0.03856314346194267, -0.03808632120490074, 0.007230589631944895, -0.048695653676986694, -0.03665584698319435, -0.010162312537431717, 0.0725964605808258, 0.008150710724294186, 0.04744398966431618, -0.04336118698120117, -0.02939918264746666, 0.00245862384326756, -0.0335862934589386, -0.008918099105358124, -0.014565484598279, 0.001458410988561809, -0.02837103046476841, -0.017761696130037308, 0.054506946355104446, -0.01761268824338913, -0.047324784100055695, 0.04440423846244812, -0.003486775793135166, 0.06836464256048203, -0.04550689458847046, -0.01698685623705387, 0.007450375705957413, -0.003812729613855481, -0.011354371905326843, -0.022321324795484543, 0.044106222689151764, 0.008180512115359306, 0.04097706452012062, 0.02700016088783741, -0.015541483648121357, -0.03307966887950897, -0.03459954261779785, 0.02816241979598999, -0.022708743810653687, 0.016882551833987236, -0.026359429582953453, -0.008567932061851025, -0.06770901381969452, -0.04830823466181755, -0.08189452439546585, -0.02323027141392231, -0.013336172327399254, -0.05578841269016266, -0.005096056964248419, 0.02014581486582756, 0.054030124098062515, 0.013418125919997692, -0.024928957223892212, -0.06341759860515594, 0.0335564911365509, -0.043003566563129425, -0.05701027438044548, 0.0058261938393116, -0.00958863366395235, 0.02850513719022274, -0.031023364514112473, -0.0023245171178132296, -0.053702306002378464, 0.0028292802162468433, 0.020548135042190552, 0.0311723705381155, -0.04264594987034798, 0.04768240451812744, 0.0164355281740427, 0.017508381977677345, 0.02549518458545208, -0.04419562593102455, 0.03385450690984726, 0.023751797154545784, -0.05093076825141907, 0.02406471222639084, 0.031500186771154404, -0.005964025855064392, 0.050066523253917694, -0.015720292925834656, -0.0063141933642327785, 0.005937949288636446, 0.007651535794138908, 0.010557182133197784, -0.06174871325492859, -0.042377736419439316, 0.010192113928496838, 0.00029871350852772593, 0.0034402108285576105, -0.010825395584106445, 0.004745889455080032, -0.0418115071952343, -0.03035283088684082, 0.006094407290220261, 0.012792294844985008, -0.01432707253843546, 0.027596190571784973, 0.026895856484770775, -0.0031086693052202463, -0.012948752380907536, -0.02488425374031067, 0.017970304936170578, 0.043689001351594925, -0.03489755839109421, 0.010683838278055191, -0.008225214667618275, 0.011987654492259026, -0.03829493001103401, 0.008471077308058739, -0.06902027875185013, 0.022649141028523445, 0.0019184716511517763, 0.015928903594613075, -0.029428983107209206, -0.04234793409705162, -0.031559791415929794, -0.004194561392068863, -0.02376669831573963, -0.01589910127222538, 0.009402373805642128, -0.02890745736658573, 0.012434677220880985, -0.03370549902319908, -0.06145069748163223, 0.014111011289060116, 0.0411260724067688, 0.03391410782933235, 0.0015319834928959608, 0.01877494715154171, -0.02509286440908909, -0.02953328937292099, -0.055341389030218124, -0.009648236446082592, 0.046698953956365585, 0.023185567930340767, 0.023483583703637123, -0.013812996447086334, -0.03921877592802048, 0.011980203911662102, 0.0050774309784173965, -0.032781653106212616, 0.04228833317756653, 0.0301591195166111, -0.03474855050444603, -0.011041456833481789, -0.02378159947693348, 0.06425204128026962, 0.04365919902920723, 0.02509286440908909, -0.04881485924124718, 0.005118407774716616, -0.022798148915171623, -0.01960938796401024, 0.0019836626015603542, 0.012330371886491776, -0.0027678145561367273, 0.0031440583989024162, -0.04699696972966194, 8.13138613011688e-05, 0.021874302998185158, 0.03480815514922142, 0.025718696415424347, -0.0191921666264534, 0.05555000156164169, 0.023245172575116158, -0.040470439940690994, -0.010303869843482971, 0.008478526957333088, 0.027983611449599266, -0.003579905489459634, -0.01240487489849329, 0.014289820566773415, 0.0052934917621314526, 0.004157309420406818, -0.025823000818490982, -0.010631686076521873, 0.008851045742630959, -0.0050327288918197155, 0.01974349468946457, -0.017240168526768684, 0.011160662397742271, 0.00594539986923337, -0.03200681507587433, -0.006574956234544516, -0.0009312969632446766, 0.027119366452097893, -0.03486775606870651, -0.001681922236457467, 0.0033452187199145555, -0.014528232626616955, -0.03734128177165985, -0.017761696130037308, 0.04988771304488182, -0.02467564307153225, -0.011279868893325329, -0.07188121974468231, -0.029235273599624634, -0.07682827115058899, 0.009044756181538105, 0.003471875097602606, 0.03442073613405228, -0.006466926075518131, 0.014870950020849705, 0.008307169191539288, 0.017299771308898926, 1.4871648090775125e-05, 0.011987654492259026, -0.02995050884783268, 0.021561386063694954, 0.03343728557229042, -0.03164919465780258, -0.07933159917593002, -0.0022779523860663176, 0.027015062049031258, -0.0071337344124913216, 0.012240966781973839, -0.03111276775598526, 0.0342717282474041, -0.04216912388801575, 0.018760045990347862, 0.00818796269595623, 0.01144377700984478, -0.002872119890525937, 0.009573732502758503, -0.0007073200540617108, -0.017225267365574837, -0.058977171778678894, -0.005122133065015078, 0.0027566389180719852, 0.020712044090032578, 0.025405781343579292, 0.0052003622986376286, 0.04061944782733917, -0.018417328596115112, -0.04082805663347244, -0.005267415661364794, -0.017225267365574837, 0.02856473997235298, 0.017731893807649612, 0.020309723913669586, -0.025808101519942284, 0.009603533893823624, -0.03236443176865578, 0.024273322895169258, -0.04017242416739464, 0.01802990958094597, 0.02597200870513916, 0.0062881167978048325, -0.004123782739043236, -0.019221968948841095, -0.03227502852678299, -0.012710340321063995, 0.03275185078382492, 0.05468575656414032, -0.01721036806702614, 0.0575765036046505, 0.022783247753977776, 0.018894152715802193, 0.010884998366236687, -0.020026609301567078, 0.028475334867835045, 0.03597041219472885, 0.02008621208369732, 0.02932467870414257, -0.052391041070222855, -0.014915651641786098, 0.025882605463266373, 0.019370976835489273, 0.007010803557932377, -0.023036561906337738, -0.010579532943665981, 0.012620936147868633, 0.017255069687962532, 0.00973019003868103, 0.04202011972665787, -0.01480389665812254, 0.038473740220069885, -0.0049582249484956264, -0.0596328042447567, -0.037996914237737656, 0.0032893407624214888, 0.02323027141392231, 0.03158959373831749, 0.01364163774996996, -0.006947475019842386, -0.027462083846330643, -0.008068757131695747, -0.017970304936170578, 0.04544728994369507, -0.0047831409610807896, 0.03781810775399208, -0.01905805990099907, -0.05024533346295357, 0.05215262994170189, 0.019683891907334328, 0.06335799396038055, 0.001629769685678184, 0.01552658248692751, -0.0458943136036396, 0.008038954809308052, -0.026985259726643562, 0.03379490226507187, 0.05584801360964775, -0.025927307084202766, -0.027298176661133766, -0.05027513578534126, -0.000755281827878207, -0.011928051710128784, 0.056891068816185, -0.008590282872319221, -0.029428983107209206, 0.026135917752981186, 0.010460327379405499, -0.023677293211221695, 0.08004683256149292, 0.0037158748600631952, -0.03605981916189194, 0.04473205655813217, -0.0013187164440751076, 0.024437231943011284, -0.016390826553106308, -0.018193816766142845, -0.026538237929344177, -0.023200469091534615, 0.009238465689122677, -0.001512426184490323, 0.04720557853579521, -0.004999202210456133, -0.02479485049843788, 0.009886648505926132, 0.006642009597271681, -0.03674525395035744, 0.017091160640120506, -0.01938587799668312, 0.03445053473114967, -0.044374436140060425, -0.02781970240175724, 0.019028259441256523, -0.06010963022708893, -0.005829918663948774, -0.008195413276553154, -0.007010803557932377, 0.06913948804140091, 0.046281732618808746, 0.027387579903006554, -0.03597041219472885, 0.00860518403351307, 0.001818822929635644, 0.011659837327897549, 0.02995050884783268, -0.006425948813557625, 0.051407590508461, 0.020116014406085014, 0.035463787615299225, 0.0085604814812541, -0.04815922677516937, 0.056920867413282394, -0.02315576747059822, 0.00414613401517272, 0.0458943136036396, 0.0020563036669045687, 0.016912352293729782, 0.015288170427083969, -0.010229365900158882, -0.0022723644506186247, 0.017910702154040337, -0.0575765036046505, 0.00829226803034544, 0.05796392261981964, -0.01898355782032013, -0.0042280880734324455, -0.018819648772478104, -0.07033154368400574, -0.04640093818306923, 0.005934223998337984, 0.0008558618719689548, 0.04994731768965721, -0.0019445479847490788, 0.0036041191779077053, 0.04038103669881821, -0.008858496323227882, 0.012918950989842415, -0.003136608051136136, -0.011503379791975021, -0.018253419548273087, -0.0493512861430645, -0.02159118838608265, 0.022440530359745026, 0.03611942008137703, 0.032990261912345886, 0.0006835719686932862, 0.008888297714293003, 0.012099409475922585, 0.018968656659126282, -0.00935022160410881, -0.03147038817405701, -0.010683838278055191, -0.03570219874382019, -0.05131818726658821, -0.011600234545767307, -0.016048109158873558, 0.01951998472213745, -0.0665169507265091, -0.03002501279115677, -0.018074611201882362, -0.04055984318256378, -0.004839018918573856, -0.03617902472615242, 0.03138098120689392, -0.027581289410591125, -0.05420893430709839, -0.010914799757301807, -0.02843063324689865, -0.03781810775399208, -0.03263264521956444, 0.019713694229722023, 0.011406525038182735, 0.04565590247511864, 0.03132138028740883, 0.04038103669881821, 0.02446703240275383, 0.00448885140940547, 0.02734287828207016, 0.0023766697850078344, -0.00946197658777237, 0.03281145542860031, 0.03808632120490074, -0.020473631098866463, 0.008597733452916145, 0.0004467897233553231, 0.01931137405335903, 0.029384281486272812, 0.03394391015172005, 0.018253419548273087, 0.010236815549433231, 0.0284455344080925, -0.004142408724874258, -0.008478526957333088, 0.012606034986674786, -0.0011780905770137906, -0.0031217073556035757, 0.04404662176966667, -0.005192911718040705, -0.03328827768564224, -0.023662392050027847, 0.0058522699400782585, -0.011332021094858646, -0.017567984759807587, 0.009581183083355427, 0.042109522968530655, 0.008240114897489548, 0.020116014406085014, -0.035106170922517776, -0.018059710040688515, 0.013947103172540665, 0.0012954340782016516, -0.03468894958496094, -0.016077909618616104, -0.01802990958094597, 0.03522537648677826, -0.016971955075860023, 0.006139109376817942, 0.028549838811159134, -0.006150285247713327, 0.04243733733892441, -0.035732001066207886, -0.013947103172540665, 0.013917301781475544, -0.004328668117523193, -0.012479378841817379, 0.032185621559619904, 0.01706136018037796, 0.0010439838515594602, 0.01810441166162491, -0.015720292925834656, 0.01630142144858837, 0.008329520002007484, 0.004682560916990042, -0.013753393664956093, -0.04702677205204964, -0.03555319085717201, 0.011384174227714539, -0.004928423557430506, -0.014170614071190357, 0.05736789107322693, -0.014744292944669724, 0.026642542332410812, -0.009841945953667164, -0.019892502576112747, -0.05352349951863289, -0.03260284289717674, -0.008724389597773552, -0.016122613102197647, -0.018268320709466934, 0.015750093385577202, -0.033884309232234955, -0.03534458205103874, -0.016957053914666176, -0.010795594193041325, -0.014878399670124054, 0.03865254670381546, 0.032781653106212616, -0.036477040499448776, -0.028475334867835045, -0.030874356627464294, 0.006325368769466877, 0.012874249368906021, 0.009484328329563141, 0.045477092266082764, 0.003525890177115798, 0.017523283138871193, 0.0294587854295969, 0.04565590247511864, 0.028475334867835045, 0.01099675428122282, -0.006809643469750881, 0.03585120663046837, 0.0167931467294693, 0.005673461128026247, -0.020458731800317764, 0.013365973718464375, -0.044583048671483994, 0.005654835142195225, 0.016599437221884727, -0.009484328329563141, -0.0301442202180624, 0.014274919405579567, -0.027044862508773804, 0.08874887228012085, 0.030248524621129036, 0.022380927577614784, 0.011019105091691017, -0.02761109173297882, -0.02090575359761715, -0.004667660221457481, -3.5127355658914894e-05, -0.031559791415929794, -0.011153211817145348, -0.02247033268213272, 0.0031254326459020376, -0.02925017476081848, 0.002421372104436159, 0.016256719827651978, 0.005088606383651495, 0.04196051508188248, 0.006981001701205969, -0.018596136942505836, 0.02610611543059349, 0.037520091980695724, 0.00560268247500062, 0.019564686343073845, 0.005751689895987511, 0.026895856484770775, -0.015057208947837353, 0.024988560006022453, 0.06300037354230881, -0.02543558180332184, -0.0004724003665614873, -0.015511682257056236, 0.01545207854360342, 0.01072854083031416, 0.01652493327856064, -0.014982705004513264, 0.03597041219472885, 0.036149222403764725, 0.024586239829659462, 0.013231866993010044, 0.0030527913477271795, 0.021814700216054916, -0.024079613387584686, 0.00548347644507885, -0.01713586412370205, 0.022425631061196327, 0.05024533346295357, -0.014528232626616955, -0.030814753845334053, 0.018134213984012604, 0.01801500841975212, -0.08213294297456741, -0.012836997397243977, -0.015221117064356804, -0.01072854083031416, 0.017165664583444595, -0.011302219703793526, 0.03215581923723221, -0.023468682542443275, -0.05417913198471069, 0.02083124965429306, -0.023960407823324203, 0.00958863366395235, -0.0005396865890361369, -0.014058859087526798, -0.010922250337898731, 0.0280879158526659, -0.029130969196558, 0.0032893407624214888, -0.0362982302904129, -0.027536587789654732, -0.02343888208270073, -0.03164919465780258, 0.04878506064414978, -0.01911766454577446, 0.020384227856993675, 0.02898196130990982, -0.00047286602784879506, 0.0058261938393116, 0.019415678456425667, -0.0028330052737146616, 0.01965409144759178, -0.001427678158506751, 0.0301591195166111, -0.005256239790469408, -0.0009834496304392815, 0.012993454933166504, -0.05909637734293938, 0.010229365900158882, -0.01837262697517872, -0.003747538896277547, 0.005613857880234718, -0.014125912450253963, -0.0012069608783349395, -0.032245226204395294, 0.014066308736801147, 0.03537438437342644, 0.015377575531601906, -0.005110957659780979, -0.024288224056363106, 0.014915651641786098, 0.01517641544342041, 0.0023468683939427137, -0.00625459011644125, -0.03035283088684082, -0.023558087646961212, 0.0012451440561562777, 0.011860997416079044, 0.03439093381166458, 0.0184918325394392, 0.0472651831805706, -0.019207067787647247, 0.02692565694451332, -0.012568783946335316, 0.01972859539091587, -0.04285455867648125, -0.002238837769255042, -0.016465330496430397, -0.05516257882118225, 0.01065403688699007, 0.002521952148526907, 0.004403172060847282, 0.010780693031847477, 0.0458943136036396, -0.00815816130489111, 0.009342771023511887, -0.011860997416079044, 0.009789793752133846, -0.002508913865312934, 0.011510830372571945, -0.003533340524882078, -0.026389230042696, -0.040470439940690994, 0.009961152449250221, -0.012084509246051311, 0.03531477972865105, -0.018968656659126282, -0.016882551833987236, -0.04640093818306923, -0.03063594363629818, -0.01398435514420271, -0.00496567552909255, 0.017582885921001434, -0.010475227609276772, 0.01631632260978222, -0.015131712891161442, -0.10919270664453506, -0.028862755745649338, 0.036417435854673386, -0.013932202011346817, -0.03191740810871124, 0.010423075407743454, 0.030665745958685875, 0.03892076015472412, 0.027164069935679436, -0.031500186771154404, 0.005252514965832233, -0.04219892621040344, -0.039159175008535385, 0.009074557572603226, -0.006548880133777857, 0.03379490226507187, 0.03418232128024101, 0.012106860056519508, 0.02507796324789524, 0.0046937367878854275, 0.003583630546927452, 0.004518652800470591, -0.03129157796502113, 0.031082967296242714, 0.0030155396088957787, -0.0060981325805187225, -0.007837794721126556, 0.035523392260074615, 0.007763291243463755, -0.02831142768263817, 0.012240966781973839, 0.009402373805642128, 0.007532329764217138, 0.004626683425158262, -0.0037922412157058716, -0.012762493453919888, -0.01014741137623787, 0.01788090169429779, 0.0016772657399997115, -0.011123410426080227, -0.039844609797000885, -0.03987440839409828, 0.022306423634290695, -0.03105316497385502, 0.0458943136036396, -0.024556437507271767, 0.014550583437085152, 0.014476079493761063, -0.026419032365083694, -0.013112661428749561, 0.02166569232940674, 0.0033508064225316048, -0.014759194105863571, -0.007528604473918676, 0.009402373805642128, -0.0047831409610807896, -0.05632483959197998, 4.179195093456656e-05, 0.013723591342568398, 0.03537438437342644, -0.031768400222063065, -0.003628332866355777, 0.015750093385577202, -0.0500069223344326, -0.004179660696536303, -0.01563088782131672, 0.037520091980695724, 0.007491352502256632, -0.00484646949917078, -0.006500452756881714, 0.03035283088684082, 0.04431483522057533, 0.0253461766988039, -0.01692725345492363, 0.02926507592201233, 0.016226917505264282, 0.0016334948595613241, -0.017985206097364426, -0.02878825180232525, -0.0038294929545372725, 0.012114310637116432, -0.0049097975715994835, -0.03674525395035744, -0.01480389665812254, -0.002289127791300416, -0.00484646949917078, 0.004924698267132044, -0.009312969632446766, 0.016256719827651978, 0.001681922236457467, 0.025614392012357712, -0.002957799006253481, -0.0004670454072766006, 0.009298068471252918, 0.011779043823480606, 0.002514501800760627, 0.013105210848152637, 0.0054685757495462894, -0.010169762186706066, -0.011175563558936119, 0.02789420634508133, 0.0005913735367357731, 0.017046459019184113, -0.02700016088783741, 0.002574104815721512, -0.006720238830894232, 0.033824704587459564, -0.014416476711630821, 0.0021550210658460855, 0.007696237880736589, -0.031768400222063065, -0.0020581663120537996, 0.0045223780907690525, 0.032185621559619904, -0.01999680884182453, 0.004142408724874258, 0.020116014406085014, -0.011332021094858646, 0.009484328329563141, -0.01545207854360342, 0.01250173058360815, -0.018760045990347862, -0.005010377615690231, 0.049172479659318924, -0.017731893807649612, 0.006746314931660891, 0.04517907649278641, -0.001674471888691187, 0.03680485486984253, -0.011667287908494473, -0.0012488692300394177, 0.060258638113737106, 0.01494545303285122, 0.07009313255548477, 0.007927199825644493, -0.028862755745649338, 0.028400830924510956, 0.011503379791975021, 0.004418072756379843, 0.05584801360964775, 0.00342531013302505, 0.007957001216709614, -0.005520728416740894, -0.00729764299467206, 0.02454153634607792, -0.011011655442416668, -0.002359906444326043, -0.010058007203042507, 0.0018719068029895425, 0.030993562191724777, 0.01236762385815382, -0.039576396346092224, -0.03379490226507187, 0.04768240451812744, 0.0033526690676808357, 0.050602950155735016, -0.04654994606971741, -0.022872652858495712, -0.011801394633948803, -0.008687137626111507, 0.00048194616101682186, 0.019624289125204086, 0.04914267733693123, -0.007197062950581312, 0.022559737786650658, 0.007889947853982449, -0.027566390112042427, -0.00908200815320015, -0.03901016712188721, 0.024779949337244034, -0.008821244351565838, 0.012889149598777294, 0.0130158057436347, 0.018596136942505836, 0.04878506064414978, 0.03892076015472412, 0.0010430525289848447, 0.009253366850316525, -0.0048613701947033405, 0.017255069687962532, -0.030933959409594536, -0.0019780746661126614, 0.008553030900657177, 0.03918897360563278, 0.011451227590441704, -0.018044808879494667, -0.03811611980199814, -0.005103507079184055, -0.0004591293982230127, 0.015064659528434277, 0.01671864278614521, 0.011950402520596981, -0.0014137087855488062, 0.022187218070030212, 0.007636635098606348, 0.0017545634182170033, 0.013962003402411938, -0.007558405864983797, -0.013932202011346817, 0.023751797154545784, -0.021144166588783264, 0.02966739609837532, 0.02022031880915165, -0.021620990708470345, 0.010244266130030155, 0.060139432549476624, 0.0015925178304314613, 0.01469959132373333, -0.04243733733892441, 0.03757969290018082, 0.002972699934616685, 0.025033261626958847, 0.005911873187869787, -0.0074764518067240715, -0.008828694932162762, 0.0507221557199955, 0.032513439655303955, 0.018134213984012604, -0.004075355362147093, -0.021397478878498077, -0.02494385652244091, -0.04640093818306923, -0.02652333676815033, 0.012978553771972656, -0.015943802893161774, 0.033616095781326294, 0.019683891907334328, 0.011391623876988888, -0.012002554722130299, -0.004321218002587557, -0.004332393407821655, 0.02479485049843788, 0.007666436489671469, -0.011324570514261723, 0.017165664583444595, 0.011399074457585812, 0.0013121974188834429, 0.01589910127222538, -0.004500026814639568, 0.008597733452916145, 0.023066362366080284, -0.003758714534342289, 0.03275185078382492, -0.00041954926564358175, -0.03689425811171532, -0.014774094335734844, 0.01332872174680233, 1.20413790227758e-06, 0.03716247156262398, -0.013902400620281696, 0.005472301039844751, 0.019430579617619514, 0.016554733738303185, 0.015042307786643505, 0.018730243667960167, 0.023602789267897606, 0.011510830372571945, 0.015116811729967594, 0.0023692194372415543, -0.007532329764217138, -0.010266617871820927, 0.028013411909341812, 0.012062158435583115, -0.005014102905988693, -0.009752541780471802, 0.00935767125338316, -0.022246820852160454, -0.01007290743291378, 0.0257037952542305, -0.01469959132373333, -0.026642542332410812, 0.036626044660806656, 0.023960407823324203, -0.02267894335091114, 0.0005271140835247934, 0.025539888069033623, -0.06016923114657402, -0.00426534004509449, 0.010303869843482971, -0.021129265427589417, -0.015094460919499397, 0.0004782209871336818, -0.020399129018187523, -0.012240966781973839, 0.04365919902920723, -0.011883349157869816, 0.023349476978182793, -0.03844393789768219, 0.03558299317955971, -0.02981640212237835, -0.013760843314230442, -0.002462349133566022, -0.011481028981506824, 0.035791605710983276, -0.019892502576112747, -0.0042765154503285885, -0.021397478878498077, -0.003959874622523785, 0.01534777320921421, -0.01044542621821165, 0.015660690143704414, -0.014811346307396889, 0.03927838057279587, 0.004175935406237841, 0.026955459266901016, 0.027581289410591125, -0.01175669301301241, -0.03275185078382492, -0.0069176736287772655, 0.013336172327399254, 0.020920654758810997, -6.408487388398498e-05, 0.010192113928496838, 0.0466095507144928, -0.021367676556110382, 0.014669789001345634, 0.030665745958685875, 0.03242403268814087, 0.015466979704797268, 0.03069554641842842, 0.0036674472503364086, 0.012993454933166504, 0.009193763136863708, 0.026642542332410812, -0.0021643340587615967, -0.008992603048682213, 0.03763929754495621, 0.011875898577272892, -0.0023952957708388567, 0.024437231943011284, 0.004127508029341698, 0.011659837327897549, 0.014870950020849705, 0.015392475761473179, -0.03397371247410774, 0.0029950509779155254, 0.024020010605454445, 0.008649885654449463, 0.0055877817794680595, -0.011212815530598164, 0.009871747344732285, 0.02098025754094124, 0.00257037952542305, 0.010341120883822441, -0.0035575542133301497, -0.025331277400255203, 0.020116014406085014, 0.04503006860613823, -0.018000107258558273, 0.05161620303988457, 0.0767686665058136, 0.001042121322825551, -0.0030751426238566637, 0.012546432204544544, -0.008493428118526936, 0.01120536495000124, -0.02452663704752922, -0.01493800338357687, -0.005159385036677122, 0.03105316497385502, -0.013812996447086334, -0.009119260124862194, -0.0260316114872694, 0.027655793353915215, 0.0005261827609501779, -0.0006737933144904673, -0.029756799340248108, 0.022380927577614784, 0.026642542332410812, -0.012710340321063995, 0.025673994794487953, 0.004898621700704098, -0.02384120225906372, -0.015794796869158745, -0.011458677239716053, -0.012598585337400436, 0.0026765475049614906, -0.020861051976680756, -0.017657389864325523, 0.01555638387799263, 0.0032129744067788124, -0.03331808000802994, 0.016361024230718613, 0.04264594987034798, -0.002076792297884822, 0.022217020392417908, -0.022649141028523445, 0.013865148648619652, -0.009193763136863708, 0.011138311587274075, -0.011183014139533043, -0.04020222648978233, -0.013932202011346817, 0.011942951940000057, -0.0061912620440125465, 0.0038518442306667566, -0.0063141933642327785, -0.021710393950343132, 0.0020544410217553377, -0.027909107506275177, -0.022693844512104988, -0.022857751697301865, 0.006563780829310417, -0.009037305600941181, 0.020861051976680756, -0.004667660221457481, 0.05194401741027832, 0.012524081394076347, 0.04672875627875328, 0.019624289125204086, -0.019236870110034943, 0.01774679496884346, -0.0219339057803154, -0.02315576747059822, -0.022112714126706123, -0.018864350393414497, 0.03126177564263344, 0.0013056782772764564, -0.009566281922161579, -0.0376988984644413, -0.006057155318558216, 0.030576340854167938, -0.0015236018225550652, 0.0092459162697196, 0.03740088641643524, 0.021159065887331963, -0.0010849609971046448, 0.016256719827651978, 0.007118833716958761, -0.02713426761329174, -0.010348571464419365, 0.0005750758573412895, -0.036089617758989334, 0.05331488698720932, -0.025301475077867508, -0.00016274413792416453, 0.0027193871792405844, 0.000655167386867106, -0.01298600435256958, 0.02220211923122406, 0.017657389864325523, -0.0021140440367162228, 0.006962376181036234, 0.0161077119410038, -0.008679687976837158, -0.019817998632788658, -0.045119475573301315, -0.008508329279720783, -0.005747964605689049, -0.017016658559441566, 0.024496834725141525, 0.02728327549993992, -0.01774679496884346, 0.023602789267897606, 0.04294396564364433, -0.001972486963495612, -0.011011655442416668, -0.02008621208369732, -0.02145708166062832, -0.017418978735804558, -0.04055984318256378, 0.008910649456083775, 0.018611038103699684, 0.033675696700811386, 0.032453835010528564, 0.050334736704826355, -0.015914002433419228, -0.00017589870549272746, -0.023319674655795097, -0.01884944923222065, 0.0322154238820076, 0.0046900114975869656, -0.03591081127524376, -0.001970624318346381, 0.011317120864987373, 0.008836145512759686, 0.03069554641842842, -0.0178063977509737, -0.0029503486584872007, 0.0009657549089752138, -0.0022369753569364548, -0.021367676556110382, 0.04008302092552185, 0.019147465005517006, 0.001654914696700871, -0.0023226544726639986, 0.00637379614636302, -0.019490182399749756, 0.03448033705353737, -0.017180565744638443, -0.03474855050444603, 0.031768400222063065, -0.003807141911238432, -0.0035668672062456608, 0.031768400222063065, -0.01569049060344696, 0.027640894055366516, -0.00052012933883816, 0.028683945536613464, -0.020339524373412132, -0.0260316114872694, -0.00996860209852457, 0.02138257771730423, -0.0009159305482171476, 0.0028218296356499195, -0.016539834439754486, 0.018327923491597176, 0.0056809112429618835, -0.005431323777884245, -0.008269917219877243, 0.004142408724874258, 0.0191921666264534, 0.002194135682657361, -0.028803151100873947, 0.017985206097364426, -0.026553139090538025, 0.009886648505926132, -0.036775052547454834, -0.014997606165707111, 0.0019147464772686362, -0.006422223523259163, -0.0018570061074569821, -0.004246714059263468, -0.005118407774716616, 0.009990953840315342, 0.007986802607774734, -0.013135012239217758, 0.00887339748442173, -0.0085604814812541, 0.011726890690624714, 0.002628119895234704, -0.002959661651402712, 0.007159810978919268, 0.03474855050444603, 0.0031161196529865265, -0.001965036615729332, -0.007957001216709614, 0.0017219680594280362, -0.014029056765139103, -0.021531585603952408, -0.020548135042190552, 0.007003352977335453, 0.0033321804367005825, 0.030203823000192642, 0.011086158454418182, 0.04085785895586014, 0.014364324510097504, 0.04836783930659294, -0.017642488703131676, -0.0021494333632290363, -0.029369380325078964, -0.016614338383078575, -0.024586239829659462, -0.012471928261220455, 0.00134851795155555, 0.023945506662130356, -0.018119312822818756, 0.03597041219472885, 0.009745091199874878, -0.005569155793637037, 0.00760683324187994, -0.006567506119608879, -0.025048162788152695, 0.02364749275147915, 0.02591240592300892, -0.014304720796644688, -0.006284391973167658, 0.04103666916489601, -0.027357779443264008, -0.045685701072216034, 0.009633335284888744, 0.0019352349918335676, 0.011034006252884865, -0.0356425978243351, 0.004339843988418579, 0.007681337185204029, 0.009268267080187798, 0.009856847114861012, 0.014192965812981129, 0.002281677443534136, -0.038265127688646317, -0.00671651354059577, 0.012576233595609665, 0.012106860056519508, -0.027834603562951088, -0.008985152468085289, 0.022917354479432106, 0.01446117926388979, 0.019639190286397934, -0.019475281238555908, -0.02191900461912155, -0.001897983136586845, 0.002404608763754368, -0.0008386328699998558, 0.05477515980601311, 0.01808951236307621, 0.02323027141392231, 0.00829226803034544, 0.01569049060344696, 0.02522697113454342, -0.02597200870513916, 0.024571338668465614, 0.026746848598122597, 0.017180565744638443, -0.02857964113354683, -0.0006155872833915055, -0.009268267080187798, 0.0033452187199145555, 0.005185461603105068, -0.0035426535177975893, -0.02446703240275383, -0.009029855020344257, 0.011317120864987373, -0.007033154368400574, 0.020443830639123917, -0.006336544174700975, 0.021829599514603615, -0.0383843332529068, -0.0335862934589386, 0.02323027141392231, -0.0023207920603454113, 0.020130915567278862, 0.025823000818490982, 0.0003173394361510873, -0.0016372200334444642, 0.002523814793676138, 0.019072961062192917, 0.03041243366897106, 0.010631686076521873, -0.03603001683950424, -0.011086158454418182, -0.005632483866065741, -0.018894152715802193, -0.03713267296552658, 0.006817093584686518, 0.0154222771525383, -0.01517641544342041, 0.00842637475579977, -0.01558618526905775, 0.02027992159128189, 0.024511735886335373, 0.017761696130037308, -0.003797828918322921, 0.027372680604457855, -0.0025573414750397205, -0.029637593775987625, 0.01099675428122282, 0.019505083560943604, 9.819362458074465e-05, 0.0031440583989024162, 0.0002502860443200916, 0.017508381977677345, -0.01651003211736679, -0.009372572414577007, 0.028073014691472054, 0.001125006703659892, -0.027357779443264008, 0.010244266130030155, 0.007375871762633324, 0.005256239790469408, 0.04482145980000496, -0.025018360465765, 0.008940450847148895, -0.0002758967166300863, 0.00019615441851783544, -0.002084242645651102, 0.0015031133079901338, 0.061629507690668106, 0.015928903594613075, 0.001180884544737637, 0.026433931663632393, 0.011466127820312977, 0.01616731472313404, 0.0020861050579696894, 0.03164919465780258, 0.008284817449748516, 0.0397254042327404, 0.009670587256550789, -0.0022071737330406904, -0.01181629579514265, 0.02001170814037323, 0.00918631348758936, 0.008150710724294186, -0.016390826553106308, 0.022008409723639488, -0.011019105091691017, 0.04124527797102928, 0.008970252238214016, 8.032436016947031e-05, -0.027506787329912186, -0.009268267080187798, 0.03227502852678299, -0.040053218603134155, 0.028862755745649338, -0.003598531475290656, 0.04124527797102928, 0.009625885635614395, 0.0014770369743928313, -0.014908201061189175, -0.00673141423612833, -0.012308020144701004, 0.02583790197968483, -0.013887500390410423, -0.01658453606069088, -0.007450375705957413, -0.0017676015850156546, 0.03263264521956444, -0.0009657549089752138, -0.024169018492102623, -0.0011985792079940438, 0.019445480778813362, 0.027253473177552223, 0.006723964121192694, -0.004839018918573856, -0.009819595143198967, 0.0021382577251642942, 0.025986909866333008, -0.013455377891659737, -0.005613857880234718, -0.017046459019184113, 0.019713694229722023, 0.005908147897571325, 0.009871747344732285, -0.008776542730629444, -0.0026094941422343254, -0.029130969196558, 0.009201213717460632, 0.021010059863328934, -0.0018234794260933995, 0.03749028965830803, 0.007498803082853556, 0.01931137405335903, 0.005796391982585192, 0.018730243667960167, 0.046222131699323654, 0.021531585603952408, 0.01250173058360815, 0.015146613121032715, 0.006113033276051283]" -How to Reduce Query Cost With a Wide Table Layout in TimescaleDB,"how to save space using compression.Show time: Setting Up the SchemaLet’s create the above schema with relationships and insert dummy data:-- Sequence and defined type CREATE SEQUENCE IF NOT EXISTS events_id_seq; CREATE SEQUENCE IF NOT EXISTS countries_id_seq; CREATE SEQUENCE IF NOT EXISTS browsers_id_seq; CREATE SEQUENCE IF NOT EXISTS devices_id_seq; -- Table Definition CREATE TABLE ""public"".""countries"" ( ""id"" int4 NOT NULL DEFAULT nextval('countries_id_seq'::regclass), ""name"" varchar, PRIMARY KEY (""id"") ); CREATE TABLE ""public"".""browsers"" ( ""id"" int4 NOT NULL DEFAULT nextval('browsers_id_seq'::regclass), ""name"" varchar, PRIMARY KEY (""id"") ); CREATE TABLE ""public"".""devices"" ( ""id"" int4 NOT NULL DEFAULT nextval('devices_id_seq'::regclass), ""name"" varchar, PRIMARY KEY (""id"") ); CREATE TABLE ""public"".""events"" ( ""id"" int4 NOT NULL DEFAULT nextval('events_id_seq'::regclass), ""name"" varchar, ""value"" int, ""country_id"" int, ""browser_id"" int, ""device_id"" int, PRIMARY KEY (""id"") ); create index events_country_id on events(country_id); create index events_browser_id on events(browser_id); create index events_device_id on events(device_id); create index countries_name on countries(name); create index browsers_name on browsers(name); create index devices_name on devices(name);Then create our new wide table:create table events_wide as select events.id as id, events.name as name, events.value as value, countries.name as country, browsers.name as browser, devices.name as device from events join countries on events.country_id = countries.id join browsers on events.browser_id = browsers.id join devices on events.device_id = devices.id create index events_wide_country on events_wide(country); create index events_wide_browser on events_wide(browser); create index events_wide_device on events_wide(device);ResultsNeat. But was it worth it? Well, yes. It would be a lot less interesting to read otherwise. Now that we have our wide table, let’s have a look at the query cost.-- cost=12406.82 explain select devices.name, count(devices.name) from events join countries on events.country_id = countries.id join browsers on events.browser_id = browsers.id join devices on events.device_id = devices.id where browsers.name = 'Firefox' and countries.name = 'United Kingdom' group by devices.name order by count desc; -- cost=2030.21 explain select device, count(device) from events_wide where browser = 'Firefox' and country = 'United Kingdom' group by device order by count desc;This is a significant improvement. The same query is six times less costly. For a dashboard with dozens of metrics, it makes amassivedifference.You can find the full SQLhere.Future PlansTimescale is packed with amazing features we want to start using. Things liketime_bucket_gapfill()orhistogram().I didn't dive into it yet, but theTimescale Toolkitseems to have a lot of valuable functionality, such asapproximate count distinctsorfunction pipelines, which we can’t wait to try out.We also want to see",https://www.timescale.com/blog/how-to-use-wide-table-model-to-reduce-query-cost-in-timescaledb/,672,"[-0.008502686396241188, 0.004644842818379402, 0.047003958374261856, 0.009652323089540005, 0.02456674538552761, 0.0030071886721998453, -0.02004535309970379, -0.009590597823262215, -0.007978019304573536, 0.006770514417439699, 0.032498471438884735, -0.009251107461750507, -0.006214985158294439, -0.009629175998270512, 0.050553176552057266, 0.01180499978363514, -0.02260695956647396, 0.0008212383254431188, 0.010616783984005451, 0.022159449756145477, 0.016526998952031136, -0.005798337981104851, 0.022807568311691284, 0.002713992493227124, -0.016418980434536934, -0.005775190889835358, -0.0028914534486830235, 0.06326862424612045, 0.05765160545706749, -0.04956556856632233, 0.02223660796880722, -0.03749823570251465, 0.0025673946365714073, -0.03536870703101158, 0.009613744914531708, 0.02410380356013775, 0.04188074544072151, 0.00836380384862423, -0.005211946088820696, -0.010894549079239368, 0.026356784626841545, 0.006546759512275457, 0.024983391165733337, 0.011720127426087856, 0.020739763975143433, 0.04941125214099884, -0.001725420355796814, -0.02138788253068924, 0.011264901608228683, 0.039504311978816986, -0.023301372304558754, 0.037899449467659, -0.02336309850215912, -0.01879541203379631, 0.025600645691156387, -0.011511803604662418, -0.05036799982190132, 0.02532288245856762, -0.01965956762433052, 0.00026860233629122376, 0.010416176170110703, -0.03953517600893974, 0.06083047017455101, 0.014844980090856552, -0.0024111520033329725, 0.04867054894566536, 0.013625902123749256, 0.041819017380476, 0.00038602540735155344, 0.008502686396241188, 0.010678509250283241, 0.03576992079615593, 0.015570254996418953, -0.011596675962209702, 0.025600645691156387, -0.02078605815768242, 0.003842411795631051, 0.04052278399467468, 0.0006958584417589009, 0.014520921744406223, 0.006920970510691404, -0.014405186288058758, -0.004826161544770002, -0.004594691097736359, 0.029551077634096146, -0.016141215339303017, -0.017113391309976578, -0.0006341329426504672, -0.02089407853782177, 0.016079489141702652, -0.02874864637851715, 0.03320831432938576, 0.00823263730853796, 0.015130460262298584, 0.018378764390945435, 0.00871872529387474, -0.0002354489843128249, 0.018594803288578987, -0.02569323405623436, 0.02874864637851715, 0.040738821029663086, -0.034350235015153885, 0.012368245050311089, -0.04293007776141167, 0.02396492101252079, 0.02127986215054989, -0.013139813207089901, 0.003406475530937314, 0.0013946102699264884, 0.041726429015398026, -0.11277246475219727, -0.01572456769645214, -0.0700584277510643, 0.009806636720895767, -0.017020802944898605, 0.010431607253849506, -0.022174881771206856, -0.01685105822980404, 0.015292489901185036, -0.03431937098503113, -0.02459760755300522, -0.027930783107876778, -0.02643394097685814, -0.026202470064163208, 0.0035376420710235834, -0.036078549921512604, -0.029597371816635132, -0.053516000509262085, 0.00562473526224494, -0.03240588307380676, 0.06752768158912659, 0.048732273280620575, 0.06320690363645554, -0.036078549921512604, 0.004660274367779493, -0.0035511446185410023, -0.06462658941745758, 0.025369176641106606, -0.013718489557504654, 0.03240588307380676, -0.01978302001953125, -0.004255200736224651, 0.042590588331222534, 0.026881450787186623, -0.04632497951388359, 0.05416411533951759, -0.03209725394845009, 0.05700349062681198, -0.04342387989163399, -0.015454519540071487, 0.016496136784553528, -0.028223980218172073, -0.04323870688676834, -0.02935047075152397, 0.01039302907884121, -0.05018282309174538, 0.030291784554719925, 0.01794668659567833, -0.019350940361618996, -0.043454743921756744, -0.02569323405623436, 0.0019077033502981067, -0.024736490100622177, 0.021927980706095695, -0.041602980345487595, 0.029643665999174118, -0.0848725438117981, 0.006789803970605135, -0.09011921286582947, -0.019381804391741753, -0.022560665383934975, -0.037436507642269135, 0.015385078266263008, -0.006990411784499884, 0.01743745058774948, 0.012908343225717545, -0.010801960714161396, -0.04805329442024231, -0.0005714430008083582, -0.05367031320929527, -0.031001627445220947, 0.02015337161719799, -0.03060041181743145, 0.042343687266111374, -0.009166235104203224, -0.010524195618927479, -0.024427862837910652, 0.02016880363225937, 0.00010753737296909094, 0.017267705872654915, -0.020924940705299377, 0.05259011685848236, 0.020816920325160027, 0.045923762023448944, -0.0059603676199913025, -0.05833058804273605, 0.029319606721401215, 0.02225203812122345, 0.0016453700372949243, 0.03502921387553215, 0.03478231281042099, 0.007337617687880993, 0.09678556770086288, -0.005073063541203737, 0.01793125458061695, 0.0032868823036551476, -0.008479539304971695, 0.0071408674120903015, -0.027236372232437134, -0.03404160588979721, -0.002386075910180807, 0.011419215239584446, 0.01706709712743759, 0.002008007373660803, 0.006650921422988176, -0.020230529829859734, -0.019212057814002037, -0.027220940217375755, 0.00878045056015253, -0.028486313298344612, 0.03614027425646782, 0.04919521510601044, 0.022190313786268234, -0.04046105965971947, -0.008140048943459988, 0.056602273136377335, 0.014798685908317566, 0.007673250045627356, 0.007954872213304043, 0.018209019675850868, 0.018116431310772896, -0.017406588420271873, -0.017622627317905426, -0.025631509721279144, -0.026156175881624222, -0.0038829189725220203, -0.04169556871056557, -0.03209725394845009, -0.0300911758095026, -0.016881920397281647, -0.008896186016499996, 0.016156647354364395, -0.005431842990219593, 0.029088135808706284, -0.01695907860994339, 0.01682019606232643, -0.04583117738366127, -0.044195450842380524, 0.021526765078306198, 0.02751413732767105, -0.002112169051542878, -0.013054940849542618, -4.5661188778467476e-05, -0.029813410714268684, -0.03762168437242508, -0.03490576520562172, -0.06629317253828049, 0.03478231281042099, 0.010956274345517159, 0.013139813207089901, 0.001191109069623053, -0.04311525449156761, -0.01265372522175312, -0.01560111716389656, -0.031063351780176163, 0.030260920524597168, 0.055614665150642395, 0.012013323605060577, 0.00663934787735343, -0.043670784682035446, 0.06462658941745758, 0.0445040762424469, 0.03181948885321617, -0.03060041181743145, -0.004544538911432028, -0.025014255195856094, -0.005717323627322912, 0.00878816656768322, -0.014104274101555347, -0.011588960886001587, 0.0061339703388512135, -0.05768246948719025, 0.015331068076193333, 0.005520573351532221, 0.01611035317182541, -0.0003517870500218123, 0.032621920108795166, 0.03155715763568878, 0.01743745058774948, -0.037436507642269135, 0.045152194797992706, 0.025970999151468277, 0.01732943020761013, -0.02447415702044964, -0.001199789228849113, 0.030538685619831085, -0.00045233211130835116, -0.006901681423187256, 0.006843813695013523, -0.0020330832339823246, 0.0008101470302790403, -0.057960234582424164, 0.056108471006155014, 0.002183539094403386, 0.019443528726696968, 0.05129387974739075, -0.0521271750330925, -0.03246760740876198, -0.03218984231352806, 0.014088843017816544, -0.0434856079518795, 0.022915588691830635, 0.007480357773602009, 0.005705750081688166, -0.046386703848838806, -0.04620152711868286, 0.028578901663422585, -0.017267705872654915, 0.03234415501356125, -0.033486079424619675, -0.016141215339303017, -0.06728078424930573, -0.01893429458141327, 0.012321950867772102, 0.007893146947026253, 0.007025132421404123, 0.008510401472449303, 0.004884029272943735, 0.0018247597618028522, -0.01842505857348442, -0.018209019675850868, -0.009089077822864056, -0.02484450861811638, -0.0038848479744046926, -0.038022901862859726, -0.08888470381498337, 0.00442880392074585, -0.007233455777168274, -0.030785588547587395, 0.03246760740876198, -0.032004665583372116, -0.007939441129565239, -0.04990505799651146, 0.017761509865522385, 0.04478184133768082, 0.022900156676769257, 0.04092399775981903, 0.005701892077922821, -0.028440019115805626, -0.01407341193407774, -0.048115018755197525, 0.004112460650503635, 0.023255078122019768, 0.007831421680748463, 0.04521391913294792, 0.0020735906437039375, 0.010122979991137981, -0.047374311834573746, -0.039874665439128876, 0.014096558094024658, -0.016989940777420998, 0.021665645763278008, 0.033239174634218216, -0.026387646794319153, -0.003535713069140911, 0.05113956704735756, -0.06046011671423912, 0.039411723613739014, 0.00719487713649869, 0.036788392812013626, 0.031881216913461685, 0.006334578152745962, -0.0254463329911232, -0.029196156188845634, -0.054627057164907455, 0.0025288162287324667, 0.0029956151265650988, 0.04231282323598862, 0.0021507474593818188, 0.0484236478805542, 0.00442880392074585, 0.038794469088315964, 0.012283372692763805, -0.04660274460911751, 0.027004901319742203, 0.028331998735666275, 0.03012203797698021, 0.0484236478805542, -0.06586109846830368, -0.04759035259485245, -0.0073800538666546345, 0.011141451075673103, 0.03123309835791588, -0.007731117308139801, -0.015508528798818588, 0.01720597967505455, 0.04401027411222458, 0.04280662536621094, 0.022144019603729248, -0.0030669851694256067, 0.008386950939893723, -0.017992980778217316, -0.05613933131098747, -0.05567638948559761, -0.017653489485383034, 0.011095156893134117, -0.00727974995970726, 0.02973625436425209, -0.02728266641497612, -0.018286176025867462, -0.005671029444783926, -0.03370211645960808, 0.03246760740876198, -0.0469730980694294, 0.04854709655046463, -0.02469019591808319, -0.04425717517733574, 0.07289779931306839, 0.011318911798298359, 0.04055364802479744, -0.007364622317254543, 0.010107548907399178, 0.01301636267453432, 0.0065621910616755486, -0.0609847828745842, 0.015956038609147072, 0.0026040440425276756, -0.04783725365996361, -0.015446803532540798, -0.04999764636158943, -0.028193116188049316, -0.006951833143830299, 0.06437968462705612, 0.009058215655386448, 0.009968666359782219, 0.000934562471229583, 0.009428568184375763, -0.0023012033198028803, 0.07468783855438232, 0.0011467438889667392, -0.024273548275232315, -0.01449777465313673, 0.023255078122019768, 0.04975074529647827, -0.04536823555827141, -0.007422490045428276, -0.014605794101953506, 0.019242921844124794, 0.04114003852009773, -0.01327097974717617, 0.04586203768849373, 0.006963406689465046, -0.04632497951388359, 0.023903194814920425, -0.02961280383169651, -0.031541723757982254, -0.005258240271359682, -0.0058562057092785835, 0.019088607281446457, 0.0040970295667648315, -0.006068387068808079, 0.0634538009762764, -0.04610893875360489, 0.03268364816904068, 0.012391392141580582, 0.05669486150145531, 0.025585215538740158, 0.0024593749549239874, 0.008518117479979992, -0.01930464617908001, -0.01567055843770504, -0.01671217568218708, -0.009690902195870876, 0.023517411202192307, 0.011426931247115135, 0.04132521525025368, 0.0006346151931211352, -0.03149542957544327, -0.009073646739125252, -0.036788392812013626, 0.00934369582682848, -0.028918391093611717, 0.02779190056025982, 0.04154125228524208, -0.004054592922329903, 0.004085456021130085, 0.004062308929860592, -0.03391815721988678, 0.010663078166544437, -0.023532843217253685, -0.01621837168931961, 0.015385078266263008, 0.06370070576667786, -0.020091647282242775, 0.00996095035225153, 0.008456392213702202, -0.05404066666960716, -0.009382274001836777, 0.024875372648239136, -0.012908343225717545, 0.039133958518505096, -0.02666541188955307, -0.015068734996020794, 0.06305258721113205, 0.00780827458947897, -0.010423892177641392, -0.003529926296323538, -0.035955097526311874, -0.0040738824754953384, 0.0011110587511211634, -0.01793125458061695, 0.012993215583264828, 0.02127986215054989, 0.017622627317905426, -0.0031036348082125187, 0.046294115483760834, 0.010717088356614113, 0.004953470546752214, -0.012630578130483627, -0.019582411274313927, -0.02533831261098385, 0.005169509910047054, -0.00158171565271914, -0.000664995692204684, -0.0048184460029006, 0.0048107304610311985, -0.03947345167398453, -0.019443528726696968, -0.014906705357134342, -0.04126349091529846, 0.004201191011816263, -0.03120223432779312, 0.029921431094408035, 0.02803880348801613, -0.04620152711868286, -0.008502686396241188, 0.007684823591262102, -0.03604768589138985, 0.005779048893600702, 0.05826885998249054, 0.017900392413139343, 0.038794469088315964, 0.004023730289191008, 0.022931018844246864, 0.00043424844625405967, -0.02251437120139599, 0.040862273424863815, 0.014898990280926228, 0.01819358766078949, -0.009559734724462032, 0.027838194742798805, -0.04092399775981903, 0.05589243024587631, -0.012738597579300404, -0.02456674538552761, 0.023455685004591942, 0.021804528310894966, 0.01180499978363514, -0.02765301987528801, -0.006905538961291313, -0.007453352678567171, -0.027359822764992714, -0.004594691097736359, -0.007588377222418785, -0.014628941193223, 0.00953658763319254, 0.021804528310894966, -0.032745372503995895, -0.04240541160106659, 0.009999529458582401, 0.001532528200186789, -0.005917931441217661, 0.011581244878470898, 0.011619823053479195, 0.0016096850158646703, -0.013618186116218567, -0.008001166395843029, -0.023640861734747887, -0.03293054923415184, 0.00871872529387474, -0.05444188043475151, 0.01916576363146305, -0.0023957204539328814, 0.04734345152974129, -0.058793529868125916, -0.0033621101174503565, 0.026372214779257774, 0.019937332719564438, 0.004552254918962717, -0.035831645131111145, -0.0007836243603378534, 0.01087911706417799, 0.01462122518569231, 0.01669674552977085, 0.008533548563718796, 0.0018180084880441427, -0.022221175953745842, 0.011689264327287674, -0.033979881554841995, 0.014312597922980785, 0.018116431310772896, -0.0018131862161681056, -0.018255313858389854, -0.011889872141182423, -0.0484236478805542, 0.011017999611794949, 0.011913019232451916, 0.009852930903434753, 0.04076968505978584, -0.0011467438889667392, -0.024983391165733337, 0.005377833265811205, -0.038424115628004074, -0.02507597953081131, -0.017992980778217316, -0.002098666736856103, -0.0127231664955616, -0.011943882331252098, 0.03527611866593361, -0.044689252972602844, -0.012831185944378376, -0.03737478330731392, -0.009436284191906452, -0.003119066124781966, 0.022776706144213676, 0.07265090197324753, -0.023393960669636726, -0.03010660782456398, 0.007082999683916569, 0.010524195618927479, -0.002632977906614542, 0.005339254625141621, 0.01955154910683632, -0.015439087525010109, -0.017776940017938614, 0.05228148773312569, 0.019937332719564438, 0.03181948885321617, -0.009065931662917137, -0.0014187217457219958, 0.03965862840414047, 0.0017572474898770452, 0.024659333750605583, -0.01794668659567833, 0.01314752921462059, -0.007665534038096666, -0.014111990109086037, 0.018486784771084785, -0.01708252914249897, -0.0011390281142666936, 0.005956509616225958, -0.04033760726451874, 0.056355372071266174, 0.031387411057949066, 0.036078549921512604, -0.0029358186293393373, -0.014713813550770283, -0.02533831261098385, -0.02140331268310547, -0.025292018428444862, -0.030569547787308693, 0.034226782619953156, -0.034103333950042725, -0.016064058989286423, -0.015030156821012497, 0.027853626757860184, 0.024119235575199127, 0.03428851068019867, 0.04055364802479744, 0.025646939873695374, -0.020461998879909515, 0.026079019531607628, 0.022714979946613312, 0.028578901663422585, 0.030924469232559204, 0.007445637136697769, 0.0017128823092207313, 0.009667755104601383, -0.014613509178161621, 0.05863921344280243, -0.01389595028012991, -0.003942715469747782, -0.026079019531607628, 0.007954872213304043, -0.01407341193407774, 0.017761509865522385, 0.013039509765803814, 0.013733921572566032, 0.03873274475336075, 0.009590597823262215, 0.02495252899825573, 0.018239881843328476, 0.006546759512275457, -0.019335510209202766, -0.000525631126947701, -0.013463872484862804, 0.014343460090458393, 0.009173951111733913, -0.030415235087275505, -0.03144913539290428, 0.007360764779150486, 0.04015243053436279, -0.035337843000888824, -0.03928827494382858, -0.014999293722212315, 0.0037575392052531242, -0.014574931003153324, 0.0024921665899455547, 0.03944258764386177, -0.015755431726574898, -0.015107313171029091, 0.004478955641388893, -0.03289968520402908, -0.004147181287407875, -0.007746548857539892, -0.007422490045428276, -0.022761274129152298, -0.00503448536619544, -0.009451715275645256, -0.010655362159013748, -0.028810372576117516, 0.00678594596683979, -0.03444282338023186, -0.008471823297441006, 0.04175729304552078, 0.00835608784109354, 0.01098713744431734, 0.03333176299929619, 0.007924010045826435, -0.006751225329935551, 0.0223600585013628, 0.03799203783273697, 0.013525597751140594, -0.011426931247115135, -0.006195696070790291, -0.0017775011947378516, -0.041973333805799484, 0.01364904921501875, -0.03552301973104477, 0.011133735068142414, 0.011897588148713112, -0.013957676477730274, -0.02384147047996521, -0.01720597967505455, 0.01955154910683632, -0.009721764363348484, -0.006589196156710386, 0.00608381861820817, 0.02075519599020481, -0.008016597479581833, -0.029797980561852455, 0.016310960054397583, 0.012468548491597176, -0.01438975427299738, 0.02788448892533779, -0.02174280397593975, -0.0019443528726696968, 0.0018353688064962626, 0.008209490217268467, 0.026711706072092056, 0.011318911798298359, 0.04620152711868286, -0.02311619557440281, 0.032251566648483276, 0.012136774137616158, 0.029103567823767662, -0.011820430867373943, -0.027869058772921562, -0.02038484252989292, -0.02444329299032688, -0.007908578030765057, 0.007715686224400997, -0.011951597407460213, -0.016141215339303017, 0.04265231266617775, -0.009791205637156963, -0.006079960614442825, -0.0013801433378830552, 0.006160975433886051, 0.01222164649516344, -0.005821485072374344, 0.008394666947424412, -0.042960941791534424, -0.021711939945816994, -0.00019337437697686255, 0.03024549037218094, 0.025538921356201172, -0.033609528094530106, -0.025400038808584213, -0.05558380112051964, -0.03873274475336075, -0.023393960669636726, 3.435891630942933e-05, 0.019227489829063416, -0.003086274489760399, -0.030754724517464638, 0.0017273492412641644, -0.12369787693023682, -0.025847548618912697, 0.05012109875679016, -0.021326156333088875, -0.04385596141219139, 0.008024313487112522, -0.020724333822727203, 0.011874441057443619, 0.027452411130070686, -0.01941266655921936, 0.0032502328976988792, -0.05286788195371628, -0.010902264155447483, 0.023177921772003174, -0.024273548275232315, 0.018764548003673553, 0.001752425218001008, -0.0010927340481430292, 0.028193116188049316, -0.008618421852588654, 0.004193475469946861, 0.014706097543239594, -0.05135560780763626, -0.012537989765405655, 0.022051431238651276, -0.004440377466380596, -0.029890568926930428, 0.05490482226014137, 0.033239174634218216, -0.02618703804910183, 0.015145892277359962, 0.048732273280620575, -0.014096558094024658, 0.01708252914249897, 0.008371519856154919, -0.01609492115676403, -0.0216347835958004, 0.030430665239691734, 0.01734486222267151, -0.014706097543239594, -0.04194246977567673, -0.04363992065191269, -0.01259199995547533, -0.012414539232850075, 0.030060313642024994, 0.006153259892016649, -0.01683562621474266, 0.008687862195074558, -0.004351647105067968, 0.01990647055208683, 0.013224685564637184, 0.011504087597131729, 0.0006789803737774491, 0.01706709712743759, -0.017607195302844048, -0.001293341862037778, -0.021850822493433952, 0.011905304156243801, -0.008047460578382015, 0.004961186088621616, -0.008765019476413727, 0.019736725836992264, 0.02126443013548851, -0.024242686107754707, -0.03737478330731392, 0.0022626249119639397, -0.006824524607509375, 0.03922654688358307, 0.042343687266111374, 0.0037671837490051985, 0.02887209691107273, 0.014829549007117748, -0.0037806862965226173, -0.013124382123351097, 0.017283136025071144, 0.019566979259252548, -0.010122979991137981, -0.043454743921756744, -0.010909980162978172, 0.0002596810518298298, 0.009289685636758804, -0.03157258778810501, -0.022884724661707878, 0.01137292105704546, -0.002260696142911911, -0.0029686102643609047, -0.006481176242232323, -0.00021664200176019222, 0.019489822909235954, -0.0032772377599030733, 0.0178232342004776, -0.00011187744530616328, 0.004559970460832119, -0.00719487713649869, -0.014652088284492493, 0.005103926174342632, 0.0019790735095739365, 0.008116901852190495, 0.007873857393860817, 0.00898105837404728, 0.02742154896259308, 0.022344626486301422, 0.0471891351044178, -0.026881450787186623, -0.005779048893600702, 0.0028818086721003056, 0.01210591197013855, -0.027683882042765617, -0.0033987597562372684, 0.022792136296629906, -0.028208548203110695, 0.011349773965775967, -0.008510401472449303, 0.022097725421190262, -0.01817815564572811, 0.01769978366792202, 0.028671490028500557, 0.0008660857565701008, -0.02297731302678585, -0.025708666071295738, 0.044041138142347336, 0.00614554388448596, 0.012437686324119568, -0.007075284142047167, -0.011488656513392925, 0.006079960614442825, 0.02604815550148487, 0.03203552961349487, 0.007812132127583027, 0.02789992094039917, 0.018702823668718338, 0.048485372215509415, -0.0024690194986760616, 0.05663313716650009, 0.005011338274925947, -0.050337135791778564, 0.0127231664955616, 0.0037401788868010044, 0.00411631865426898, 0.04583117738366127, 0.004710426554083824, 0.02077062614262104, -0.0023243504110723734, -0.022190313786268234, 0.03391815721988678, 0.014567214995622635, -0.04907176271080971, 7.492654549423605e-05, 0.004232053644955158, 0.03453541174530983, 0.0020504435524344444, -0.019721293821930885, 0.0026175465900450945, 0.049318667501211166, -0.022884724661707878, 0.0482076071202755, -0.03762168437242508, -0.044812705367803574, -0.014165999367833138, -0.001725420355796814, -0.004876313731074333, 0.04641756787896156, 0.028594333678483963, -0.003522210754454136, 0.030384371057152748, 0.0020562303252518177, -0.033486079424619675, -0.035708196461200714, -0.0026001862715929747, 0.02445872500538826, 0.0039620050229132175, 0.015894314274191856, -0.010061254724860191, 0.008602989837527275, 0.029597371816635132, 0.03234415501356125, 0.02664997987449169, 0.003383328439667821, -0.003065056400373578, 0.03626372665166855, -0.042343687266111374, -0.021233567968010902, 0.03882533311843872, 0.01964413747191429, 0.020971234887838364, 0.005057632457464933, -0.012730882503092289, 0.00399672519415617, 0.010609067976474762, 0.025045117363333702, 0.018702823668718338, 0.032868821173906326, -0.006249705795198679, 0.02876407839357853, -0.008687862195074558, 0.008888470008969307, 0.021557627245783806, -0.008448676206171513, 0.0004887405084446073, 0.040245018899440765, -0.001986789284273982, -0.0025731814093887806, -0.00915080402046442, -0.015007009729743004, -0.026495665311813354, 0.04129435122013092, -0.0034662720281630754, 0.03157258778810501, -0.030199196189641953, -0.009312832728028297, -0.006446455605328083, -0.018486784771084785, 0.03072386234998703, -0.008896186016499996, -0.016511568799614906, 0.018826274201273918, -0.019844744354486465, 0.03280709683895111, -0.007669392041862011, -0.037930313497781754, -0.000916237710043788, -0.046510156244039536, -0.027853626757860184, 0.03178862854838371, -0.018965156748890877, 0.022560665383934975, -0.0016646592412143946, -0.01732943020761013, -0.010454754345119, 0.0014611580409109592, -0.002359071047976613, 0.029659098014235497, -0.0030399803072214127, -0.005049916449934244, 0.02973625436425209, -0.003323531709611416, 0.005219661630690098, 0.01695907860994339, -0.018023842945694923, -0.00872644130140543, 0.015300205908715725, -0.03256019577383995, -0.0017553186044096947, 0.013525597751140594, -0.03552301973104477, -0.010516480542719364, 0.028949255123734474, 0.0366649404168129, 0.06302172690629959, -0.002322421409189701, -0.0036996714770793915, 0.03246760740876198, 0.0230853334069252, 0.018486784771084785, 0.012028754688799381, 0.013363568112254143, 0.006257421337068081, 0.020060783252120018, 0.02532288245856762, 0.006573764607310295, 0.008410098031163216, 0.020353980362415314, 0.02038484252989292, 0.007052137050777674, -0.03157258778810501, 0.002449730411171913, -0.001649227924644947, -0.021542195230722427, 0.011218607425689697, 0.0069672646932303905, -0.007059852592647076, 0.056818313896656036, 0.01074795052409172, -0.02680429443717003, -0.036942705512046814, 0.018008410930633545, -0.036418039351701736, 0.004613980185240507, 0.005103926174342632, -0.01174327451735735, -0.007333759684115648, 0.002521100454032421, 0.043300431221723557, -0.010863685980439186, 0.008649284020066261, -0.027190078049898148, -0.0005111641949042678, -0.03771427273750305, 0.0293659009039402, -0.018409626558423042, -0.0017591764917597175, -0.012630578130483627, 0.012113627046346664, -0.00509621063247323, -0.018363332375884056, -0.009675470180809498, -0.00026378000620752573, -0.0020870931912213564, 0.004729715641587973, -0.021434176713228226, 0.028193116188049316, -0.0041356077417731285, -0.0011342058423906565, 0.012067332863807678, 0.03444282338023186, 0.014165999367833138, -0.007302897050976753, -0.0009721764363348484, -0.019119469448924065, 0.011990176513791084, 0.026372214779257774, -0.014837264083325863, 0.039010509848594666, 0.008703294210135937, -0.040245018899440765, 0.0018315110355615616, 0.022437214851379395, 0.0047142840921878815, -0.007187161594629288, 0.0005550471832975745, -0.004324642010033131, 0.036418039351701736, 0.02103296108543873, 0.014790969900786877, 0.0017437450587749481, 0.02521486207842827, 0.016881920397281647, -0.016743039712309837, -0.006998127326369286, 0.0038250514771789312, 0.005242808721959591, 0.007191019598394632, 0.010223284363746643, 0.015801725909113884, -0.03749823570251465, 0.009235676378011703, 0.021696509793400764, 0.004787583369761705, 0.004324642010033131, -0.02077062614262104, -0.0008275073487311602, 0.010053538717329502, 0.004274490289390087, -0.022807568311691284, -0.025862980633974075, -0.025523489341139793, -0.017175117507576942, 0.03265278413891792, -0.0459546260535717, 0.038053762167692184, 0.07931725680828094, -0.024782784283161163, -0.017653489485383034, 0.009227960370481014, 0.024859940633177757, -0.02754499949514866, -0.004181901924312115, -0.019134901463985443, 0.009305117651820183, 0.021048391237854958, -0.014042548835277557, -0.005894784349948168, 0.02458217553794384, 0.010616783984005451, 0.005748186260461807, 0.015061018988490105, -0.02239092066884041, 0.01168154925107956, 0.03206638991832733, -0.007187161594629288, 0.022761274129152298, -0.014042548835277557, 0.008317509666085243, -0.019860176369547844, 0.009984097443521023, -0.005343112628906965, 0.008116901852190495, -0.0029146005399525166, -0.001352173974737525, 0.04684964567422867, 0.02200513705611229, -0.011033431626856327, -0.0011891800677403808, 0.030939901247620583, -0.03143370524048805, 0.01180499978363514, -0.03774513676762581, 0.023934058845043182, 0.006431024521589279, -0.013425294309854507, -0.037652548402547836, -0.019844744354486465, -0.015223048627376556, 0.01671217568218708, 0.013309558853507042, 0.021187273785471916, 0.004741289187222719, 0.008680147118866444, -0.017730645835399628, -0.050830941647291183, -0.0312176663428545, -0.004837735090404749, 0.00841781310737133, -0.021681077778339386, -0.0052273771725595, -0.00021447196195367724, 0.049966782331466675, 0.0033003848511725664, 0.010647647082805634, 0.00688239187002182, -0.03143370524048805, -0.006045239977538586, -0.020431136712431908, -0.012028754688799381, -0.007761980406939983, -0.05289874225854874, -0.009351411834359169, -0.011295764707028866, -0.007742690853774548, -0.024396998807787895, -0.010778813622891903, 0.0234865490347147, -0.0011525306617841125, 0.045923762023448944, 0.039041370153427124, 0.023409390822052956, 0.006072245072573423, 0.018286176025867462, 0.0230853334069252, 0.006623916327953339, -0.03468972444534302, -0.006612342782318592, -0.03592423349618912, 0.026572823524475098, 0.011110587976872921, -0.003919568378478289, 0.02962823398411274, 0.016635019332170486, -0.022190313786268234, 0.027730176225304604, 0.018286176025867462, -0.015693705528974533, 0.02567780390381813, -0.005948794074356556, 0.018656529486179352, -0.027946215122938156, -0.03814635053277016, -0.016079489141702652, -0.007858426310122013, -0.04376337304711342, 0.03567733243107796, 0.02938133291900158, -0.018023842945694923, 0.036695804446935654, -0.0011081653647124767, 0.0005593872629106045, -0.022313764318823814, -0.03185035288333893, -0.00342383561655879, 0.005447274539619684, -0.030677568167448044, 0.005748186260461807, 0.01907317526638508, 0.0017688210355117917, 0.010871401987969875, 0.04441148787736893, -0.020585451275110245, -0.03012203797698021, -0.015493097715079784, -0.04363992065191269, 0.012684588320553303, 0.009143088012933731, -0.00976805854588747, -0.006859244778752327, -0.013988538645207882, 0.012429970316588879, 0.00977577455341816, -0.026341352611780167, -0.002170036779716611, -0.020122509449720383, 0.01210591197013855, -0.008317509666085243, 0.02223660796880722, 0.02754499949514866, 0.02899554930627346, 0.009667755104601383, -0.011843577958643436, -0.004139465745538473, 0.034350235015153885, 0.023270510137081146, -0.006631632335484028, 0.03539956733584404, -0.01006897073239088, -0.0015894313110038638, 0.02447415702044964, 0.017499176785349846, 0.009297401644289494, 0.004382509738206863, 0.013757068663835526, -0.06629317253828049, -0.02223660796880722, -0.023887764662504196, 0.041819017380476, 0.0028991689905524254, -0.006593053694814444, -0.0065390439704060555, 0.01570913754403591, 0.00719487713649869, -0.004532965831458569, 0.012561136856675148, -0.010246431455016136, 0.012561136856675148, 0.013718489557504654, -0.026464803144335747, 0.03320831432938576, -0.021573059260845184, -0.004922607913613319, -0.019119469448924065, 0.007156298961490393, 0.00982978381216526, 0.010315872728824615, 0.0023783601354807615, 0.006481176242232323, -0.006253563798964024, 0.04138693958520889, -0.010524195618927479, 0.0006982695776969194, 0.005354686174541712, -0.0010165416169911623, 0.0006394374649971724, -0.021326156333088875, -0.023501979187130928, 0.0033177449367940426, 0.04095486178994179, -0.007191019598394632, -0.0019568908028304577, 0.008680147118866444, -0.015007009729743004, -0.003092061262577772, -0.02151133306324482, 0.02655739150941372, -0.03305399790406227, -0.0031422132160514593, -0.010763382539153099, 0.0033582523465156555, 0.045892901718616486, 0.015207617543637753, 0.029535645619034767, -0.024628469720482826, 0.011442362330853939, -0.044534940272569656, -0.03734391927719116, -0.039133958518505096, -0.003965862561017275, 0.0015604975633323193, 0.009143088012933731, -0.025400038808584213, 0.017159685492515564, -0.012792607769370079, -0.014721529558300972, -0.006573764607310295, 0.026619117707014084, -0.01524619571864605, 0.039751216769218445, 0.0019424239872023463, 0.01455949991941452, -0.02996772527694702, 0.05762074515223503, 0.009035068564116955, -0.007669392041862011, -0.0033312474843114614, -0.01780780404806137, 0.017020802944898605, -0.04039933159947395, -0.0064040194265544415, 0.038640156388282776, 0.012684588320553303, -0.013224685564637184, 0.022684117779135704, -0.012831185944378376, 0.011272617615759373, 0.01671217568218708, 0.013093519024550915, 0.0189497247338295, 0.01660415716469288, 0.009420853108167648, 0.021711939945816994, -0.022421784698963165, -0.009351411834359169, -0.012676872313022614, -0.03709701821208, 0.019736725836992264, 0.010038107633590698, 0.024967961013317108, 0.03638717532157898, 0.021326156333088875, -0.004039161838591099, -0.015207617543637753, 0.00700198533013463, -0.009783489629626274, -0.01222936250269413, 0.03293054923415184, -0.0033081003930419683, -0.007661676499992609, 0.0037575392052531242, 0.02396492101252079, 0.002413080772385001, 0.0015113099943846464, -0.011365205980837345, -0.010084401816129684, -0.00884989183396101, -9.234711615135893e-05, 0.015577970072627068, -0.013949960470199585, -0.008548980578780174, -0.019088607281446457, 0.007191019598394632, -0.011774136684834957, -0.03746737167239189, 0.009181666187942028, -0.023764314129948616, -0.0011805000249296427, 0.01019242126494646, -0.008556695654988289, 0.037189606577157974, -0.0038134779315441847, 0.014165999367833138, 0.006762798875570297, 0.002272269455716014, 0.0015219190390780568, 0.012090479955077171, -0.011635255068540573, -0.0071331518702209, -0.016125783324241638, -0.010609067976474762, 0.00709843123331666, -0.011967029422521591, 0.010300440713763237, 0.006685642059892416, 0.026325920596718788, 0.05018282309174538, 0.006377014797180891, -0.026156175881624222, -0.005852347705513239, 0.005370117723941803, 0.01137292105704546, -0.012584283947944641, 0.04005984216928482, -0.025523489341139793, -0.004961186088621616, 0.006913254968822002, -0.005339254625141621, -0.0059989457949995995, -0.024520451202988625, 0.02041570469737053, -0.012499411590397358, -0.006708789151161909, 0.02901097945868969, -0.012499411590397358, 0.0029146005399525166, 0.027838194742798805, -0.011588960886001587, -0.0039292131550610065, -0.004343931097537279, -0.029659098014235497, 0.032745372503995895, 0.00012911717931274325, 0.02751413732767105, -3.2188876502914354e-05, 0.04265231266617775, 0.008433245122432709, 0.016511568799614906, 0.009883794002234936, 0.003842411795631051, 0.05221976339817047, 0.00012134121789131314, 0.01644984260201454, -0.00037324632285162807, -0.006488892249763012, -0.000943724880926311, 0.017530038952827454, -0.0016665882430970669, 0.03860929235816002, -0.006323004607111216, 0.022298332303762436, -0.011897588148713112, 0.01167383324354887, 0.02543090097606182, 0.03036894090473652, -0.022282902151346207, -0.004602406639605761, 0.008147764950990677, -0.02594013698399067, 0.028223980218172073, -0.020924940705299377, 0.037652548402547836, -0.0005883210687898099, -0.003460485255345702, 0.0008115937234833837, 0.0056903185322880745, 0.002889524446800351, 0.02825484238564968, 0.023393960669636726, -0.01180499978363514, 0.028486313298344612, -0.013433009386062622, -0.001977144507691264, 0.014574931003153324, -0.010601352900266647, 0.010416176170110703, 0.00158171565271914, 0.03132568672299385, 0.0029223160818219185, 0.0341959223151207, -0.019505254924297333, 0.004274490289390087, 0.034844037145376205, 0.004262916743755341, -0.027992509305477142, -0.021542195230722427, 0.051571644842624664, -0.000871390278916806, -0.014081127010285854, -0.016881920397281647, -0.02606358751654625, -0.02507597953081131, -0.019829314202070236, 0.007299039047211409, -0.0020678038708865643, 0.022144019603729248, 0.0111800292506814, -0.022174881771206856, 0.04647929221391678, 0.0012653724988922477, 0.038053762167692184, 0.014891274273395538, -0.005019053816795349, 0.009305117651820183, -0.007121578324586153]" -How to Reduce Query Cost With a Wide Table Layout in TimescaleDB,"howcontinuous aggregatescould help us relieve some pressure on the database.Our goal is to keep growing and scaling the number of events we store. We will soon leveragetablespacesanddata tiering to save on storage space. We’re keen to further optimize and use TimescaleDB to help as we grow towards handling billions of rows!June 2023 update:We’re now dealing with more than 500 GB of data, and those wide tables just aren’t efficient anymore.So, we’ve gone ahead and separated the table again. We’re executing a count query first, retrieving the ids, then running another query for the labels. Essentially, it’s a two-query process.TimescaleDB is row-based and our wide table is heavy on strings. As a result, we’re hitting I/O limits. This wasn’t a problem before because we’re using a fast SSD and had fewer rows per site, but now with the data volume, it’s a different story.In retrospect, choosing the wide table structure at that time was good. It accelerated our development pace significantly. We centralized all the events, simplifying our queries for quite some time. Plus, it enabled us to compress all our data without effort. Looking back, it was a beneficial strategy for that stage of our project.We’d like to thank Florian and the folks at Nocodelytics for sharing their story on tracking millions of user events while reducing their query cost using TimescaleDB. Stay tuned for an upcoming dev-to-dev conversation between Florian and Timescale’s developer advocate,Chris Englebert, where they will expand on these topics.We’re always keen to feature new community projects and stories on our blog. If you have a story or project you’d like to share, reach out on Slack (@Ana Tavares), and we’ll go from there.The open-source relational database for time-series and analytics.Try Timescale for free",https://www.timescale.com/blog/how-to-use-wide-table-model-to-reduce-query-cost-in-timescaledb/,380,"[0.01927044987678528, 0.014825587160885334, 0.07404354214668274, 0.0037204627878963947, 0.030045023187994957, 0.02111309953033924, 0.007152572274208069, -0.015317898243665695, -0.05128471553325653, 0.0033406801521778107, 0.03035447560250759, -0.014684926718473434, -0.013109533116221428, -0.01939704455435276, 0.0189469326287508, 0.02811797894537449, 0.008087962865829468, -0.0010549516882747412, -0.03960992023348808, 0.007349496707320213, -0.014248880557715893, 0.03935673087835312, 0.013193928636610508, 0.01426294632256031, -0.015275700017809868, -0.02505158632993698, -0.008383349515497684, 0.0627344623208046, 0.04174795374274254, -0.05632035434246063, 0.002932765521109104, -0.02880721352994442, -0.03786573186516762, 0.02088804356753826, 0.023870039731264114, 0.013819866813719273, 0.041325971484184265, 0.005735420621931553, 0.012743815779685974, 0.024685868993401527, -0.023588718846440315, 0.024939056485891342, 0.011048860847949982, 0.04456115886569023, 0.007912137545645237, 0.019312648102641106, -0.006987296510487795, 0.006994329392910004, 0.011632600799202919, 0.059921253472566605, -0.008594339713454247, -0.006758723873645067, 0.0013705580495297909, -0.03181734308600426, 0.020395731553435326, -0.012596122920513153, -0.019650232046842575, 0.034433621913194656, -0.0008228623191826046, -0.04644600674510002, -0.0158664733171463, -0.06751690804958344, 0.06875471770763397, 0.0243623498827219, -0.022153984755277634, 0.031451623886823654, -0.002224189694970846, 0.04017255827784538, -0.020564524456858635, 0.028103912249207497, 0.021380353718996048, 0.01526163425296545, -0.024573341012001038, -0.013193928636610508, 0.0421980656683445, -0.053872864693403244, -0.029566777870059013, 0.024095095694065094, -0.030607664957642555, -0.013461182825267315, 0.023701246827840805, -0.009325772523880005, -0.045264460146427155, 0.03592462092638016, 0.03375845402479172, -0.0380907878279686, -0.02498125471174717, 0.0024035314563661814, -0.014966247603297234, 0.022730691358447075, -0.006076521705836058, 0.0539572611451149, -0.016007132828235626, 0.020733317360281944, 0.023307397961616516, 0.0010725342435762286, 0.02733028121292591, 0.006080037914216518, -0.01986122317612171, 0.026162801310420036, 0.009220277890563011, -0.00671652564778924, 0.013088434003293514, -0.01620405726134777, -0.00614685146138072, 0.005447066854685545, 0.009107748977839947, -0.006048389710485935, 0.0026303462218493223, 0.0109222661703825, -0.07331211119890213, -0.005450583528727293, -0.025543896481394768, 0.0013433051062747836, 0.0047754147090017796, -0.0032334269490092993, -0.02720368653535843, 0.019889354705810547, 0.010971497744321823, -0.026739507913589478, -0.04011629521846771, 0.013840965926647186, -0.03426482900977135, 0.000697147217579186, 0.01768098957836628, -0.029960626736283302, 0.002414081012830138, -0.040594540536403656, -0.04706491157412529, 0.015936803072690964, 0.05890849977731705, -0.003061118070036173, 0.06318457424640656, -0.0243623498827219, -0.04602402448654175, -0.030045023187994957, -0.05772695317864418, 0.0025477083399891853, -0.013468216173350811, -0.009642258286476135, 0.0024685868993401527, -0.03057953156530857, 0.010422922670841217, -0.003973651211708784, -0.014994380064308643, 0.0322955884039402, -0.013334589079022408, 0.04866843670606613, -0.022899484261870384, -0.019481441006064415, -0.0029380402993410826, -0.029932495206594467, -0.03758441284298897, -0.02430608682334423, 0.06521008163690567, -0.02185859903693199, 0.024503011256456375, 0.06042763218283653, 0.004363983403891325, -0.036824844777584076, 0.003769693896174431, 0.03364592418074608, -0.007912137545645237, -0.00829895306378603, 0.0017520989058539271, 0.019720563665032387, -0.04785260558128357, -0.01887660101056099, -0.09210431575775146, -0.007602685131132603, -0.047655683010816574, -0.033505264669656754, -0.01934077963232994, 0.025178179144859314, 0.045151930302381516, -0.009536762721836567, -0.002326168352738023, -0.0548856183886528, -0.013847999274730682, -0.021408485248684883, -0.0575018972158432, 0.009705555625259876, -0.02344805933535099, 0.029735570773482323, -0.06087774410843849, 0.019776826724410057, -0.055307600647211075, 0.03758441284298897, 0.008988188579678535, 0.04402665048837662, -0.052860110998153687, 0.059921253472566605, 0.045320723205804825, 0.05249439552426338, 0.015050644055008888, -0.06324083358049393, 0.053253959864377975, 0.020719250664114952, -0.010774573311209679, 0.013362720608711243, 0.03997563570737839, 0.028483694419264793, 0.04990624636411667, 0.0009283574763685465, 0.01573987863957882, 0.004866843577474356, -0.0021327605936676264, 0.01368623971939087, -0.0563766174018383, -0.012736783362925053, 0.0007960489601828158, 0.004754315596073866, -0.00481761246919632, -0.007377628702670336, -0.04973745346069336, -0.0075464206747710705, -0.04672732576727867, -0.012138976715505123, 0.023771576583385468, -0.03091711737215519, 0.008777197450399399, 0.041719820350408554, 0.017470000311732292, -0.017301207408308983, -0.009438300505280495, 0.03674044832587242, 0.019087592139840126, -0.023293333128094673, 0.022786956280469894, 0.022350909188389778, 0.011386444792151451, -0.05311330035328865, 0.004008816089481115, -0.03420856595039368, -0.0032721085008233786, 0.002094079041853547, -0.008650603704154491, -0.023996634408831596, -0.0021890245843678713, -0.03091711737215519, -0.013925362378358841, -0.0043956320732831955, -0.007968401536345482, 0.021717937663197517, 0.0002163749886676669, 0.03373032063245773, -0.039497390389442444, -0.07269319891929626, -0.0032808997202664614, 0.059921253472566605, 0.008931923657655716, -0.03741561993956566, -0.00278683053329587, -0.029594911262392998, -0.006171467248350382, -0.037387486547231674, -0.01842648908495903, 0.04062267020344734, 0.02185859903693199, 0.0003894529945682734, 0.05800827592611313, -0.05485748499631882, -0.037612542510032654, -0.001856714952737093, -0.03707803413271904, 0.013243160210549831, 0.04475808143615723, -0.005591243971139193, 0.024390483275055885, 0.006804438307881355, 0.04416730999946594, 0.00895302277058363, 0.007785543333739042, -0.03440548852086067, -0.017202744260430336, -0.03502439334988594, 0.00253188400529325, -0.0058163003996014595, 0.005612342618405819, -0.011182487942278385, -0.0013512172736227512, -0.01887660101056099, -0.013601843267679214, -0.02264629490673542, 0.047543153166770935, 0.02526257559657097, -0.03719056397676468, 0.03851277008652687, 0.01297590509057045, -0.05046888813376427, 0.016386914998292923, 0.007827741093933582, 0.008545108139514923, -0.02001594938337803, -0.018960997462272644, 0.02841336466372013, 0.02841336466372013, 0.004321785178035498, -0.02942611835896969, -0.020958373323082924, -0.008861593902111053, -0.023194869980216026, 0.012406231835484505, -0.0477963425219059, 0.010633912868797779, 0.020156608894467354, -0.02219618298113346, -0.02914479747414589, -0.009888413362205029, -0.0016281420830637217, -0.02042386494576931, -0.00335826282389462, 0.010535450652241707, -0.002447487786412239, -0.029454249888658524, -0.010598747991025448, 0.0757877305150032, 0.021577278152108192, -0.011076992377638817, -0.04222619906067848, -0.0013380303280428052, -0.07319957762956619, -0.02077551558613777, 0.014755257405340672, 0.03223932161927223, 0.019537704065442085, 0.03302701935172081, -0.015317898243665695, 0.053535278886556625, -4.258268381818198e-05, -0.009958744049072266, -0.021014636382460594, 0.007919170893728733, 0.010162700898945332, -0.012089746072888374, -0.0533946193754673, 0.036656055599451065, -0.025248508900403976, 0.00997984316200018, 0.020212873816490173, -0.03868155926465988, -0.0059182788245379925, -0.04768381640315056, 0.03612154349684715, 0.03609341382980347, 0.020114412531256676, -0.008116094395518303, -0.009283574298024178, -0.013081400655210018, -0.01665417104959488, -0.04796513542532921, -0.055307600647211075, -0.003762661013752222, 0.005844432394951582, 0.009684456512331963, 0.022097721695899963, 0.0022804539185017347, -0.04020069167017937, -0.025248508900403976, 0.008087962865829468, -0.01922825165092945, 0.024615539237856865, 0.046755459159612656, -0.02908853441476822, -0.00972665473818779, 0.008320052176713943, -0.05271945148706436, 0.024742133915424347, 0.017090216279029846, -0.014558332972228527, 0.030663928017020226, -0.009846215136349201, -0.005380253307521343, -0.007483123801648617, -0.07016132026910782, 0.0059639932587742805, 0.04700864478945732, 0.04453302547335625, -0.003622000804170966, 0.04017255827784538, 0.020184742286801338, -0.0049371737986803055, 0.021816400811076164, -0.0024703452363610268, 0.010458087548613548, 0.04008816182613373, -0.023124540224671364, 0.048471514135599136, -0.06307204067707062, -0.03980684280395508, 0.027935119345784187, 0.029566777870059013, 0.016780763864517212, -0.011702930554747581, 0.013911295682191849, -0.001134952181018889, 0.006660261657088995, 0.02897600643336773, 0.053929127752780914, 0.0015551745891571045, 0.022575965151190758, 0.0009837424149736762, -0.04638973996043205, -0.029538646340370178, 0.0054189348593354225, 0.0041248612105846405, 0.010162700898945332, -0.0019200120586901903, -0.01192095410078764, -0.02094430662691593, -0.05260692164301872, 0.0024070481304079294, 0.03246437758207321, -0.0038646396715193987, 0.04638973996043205, -0.0334208682179451, -0.051312848925590515, 0.060371365398168564, 0.0027586985379457474, 0.07719433307647705, -0.019593968987464905, -0.015163172036409378, 0.005854981951415539, -0.012490627355873585, -0.04399851709604263, 0.0036923307925462723, 0.045208197087049484, 0.01607746258378029, -0.03440548852086067, -0.04430796951055527, -0.044814348220825195, 0.010584681294858456, 0.03536197915673256, -0.04146663472056389, -0.002021990716457367, 0.025965876877307892, 0.050046905875205994, -0.01609152927994728, 0.07162418216466904, -0.032548774033784866, -0.03274570032954216, -0.007426859810948372, 0.01214601006358862, 0.023644983768463135, 0.01192095410078764, -0.024826528504490852, -0.04436423256993294, -0.012968872673809528, -0.013911295682191849, 0.010500285774469376, 0.0319298692047596, -0.036487262696027756, -0.008263788186013699, 0.003514747368171811, -0.03840024024248123, -0.020902108401060104, 0.006020257715135813, -0.03834397718310356, 0.053479015827178955, -0.022730691358447075, -0.04627721384167671, -0.0004393434210214764, -0.05288824439048767, -0.03555890545248985, -0.006776306312531233, -0.02218211628496647, 0.0442517064511776, 0.0004498929192777723, 0.025923678651452065, -0.033055152744054794, 0.017019886523485184, 0.027766328305006027, -0.00850291084498167, 0.009346871636807919, -0.013629975728690624, 0.03029821254312992, 0.0302419476211071, -0.012786014005541801, -0.004578490275889635, -0.04672732576727867, 0.013911295682191849, 0.009867314249277115, -0.0027428744360804558, 0.04844338074326515, 0.026500385254621506, 0.034546151757240295, -0.01756846159696579, -0.022829154506325722, -0.04129784181714058, 0.009276541881263256, -0.025403236970305443, 0.007377628702670336, 0.0545199029147625, -0.01693549007177353, -0.003512989031150937, -0.015191303566098213, -0.0838334932923317, -0.039216071367263794, 0.0031314482912421227, -0.015191303566098213, 0.01728714071214199, 0.006980263628065586, 0.03215492516756058, 0.05207241326570511, -0.005366187542676926, -0.003709913231432438, -0.011773260310292244, -0.006846636068075895, -0.01080973818898201, -0.01820143312215805, 0.011386444792151451, -0.008931923657655716, 0.037274960428476334, 0.03012941963970661, -0.02413729391992092, 0.05187549069523811, -0.002507268451154232, -0.012300736270844936, -0.0075042229145765305, 0.0055420128628611565, -0.023251134902238846, -0.020255072042346, -0.03823144733905792, -0.008784230798482895, -0.018848469480872154, -0.005341571755707264, -0.04858404025435448, -0.014305144548416138, -0.02516411431133747, -0.012420297600328922, 0.0001098907960113138, -0.0305232685059309, 0.025065651163458824, -0.003289690939709544, -0.06762943416833878, 0.016133727505803108, -0.014825587160885334, -0.028103912249207497, -0.023363662883639336, 0.033167678862810135, 0.004923107568174601, 0.04011629521846771, 0.02253376692533493, 0.017666924744844437, 0.000626817112788558, -0.0070505933836102486, -0.01052841730415821, -0.004592556040734053, -0.009860281832516193, 0.04796513542532921, 0.01648537814617157, -0.032773829996585846, 0.0401444286108017, -0.012026448734104633, 0.005091900005936623, -0.0035868356935679913, 0.022955747321248055, -0.0006400040001608431, 0.019931552931666374, 0.008678735233843327, 0.0010558307403698564, -0.02322300337255001, 0.03330834209918976, -0.006044873036444187, -0.021464750170707703, 0.008896758779883385, 0.005000470671802759, -0.028385233134031296, -0.03645912930369377, 0.01537416223436594, -0.006449270993471146, 0.005985092371702194, 0.010022040456533432, 0.005440033972263336, -0.0015305590350180864, 0.022519702091813087, -0.01818736642599106, -0.028455562889575958, 0.014909983612596989, 0.009796984493732452, -0.020747382193803787, -0.021295957267284393, -0.014312177896499634, 0.028427431359887123, -0.0305232685059309, -0.00020703425980173051, 0.033111415803432465, 0.029876230284571648, 0.01152710523456335, -0.03558703511953354, 0.004578490275889635, -0.007989500649273396, 0.002055397490039468, 0.00596047705039382, 0.021127166226506233, -0.0008707746746949852, 0.00038022216176614165, 0.0034619998186826706, -0.011653698980808258, 0.01683702878654003, 0.014698993414640427, 0.016738565638661385, -0.01837022416293621, -0.053197696805000305, -0.01249766070395708, 0.03457428142428398, -0.004033431876450777, 0.008974121883511543, 0.03156415373086929, 0.009677423164248466, 0.01602119952440262, 0.000969676417298615, 0.0035340881440788507, -0.03209866210818291, 0.0027165005449205637, -0.03153602033853531, -0.025642357766628265, -0.005738936830312014, 0.03778133541345596, -0.023405861109495163, -0.027752261608839035, -0.027288082987070084, -0.023082341998815536, -0.06267819553613663, 0.023813774809241295, 0.04146663472056389, -0.018440555781126022, -0.060371365398168564, -0.005383769981563091, 0.02852589264512062, 0.01807483844459057, -0.014938115142285824, 0.0451800636947155, 0.004504643380641937, 0.003133206395432353, 0.03558703511953354, 0.03685297816991806, 0.02727401629090309, 0.008720933459699154, -0.02270255982875824, 0.03358966112136841, 0.010851936414837837, 0.005021569784730673, 0.0034672743640840054, 0.027794459834694862, -0.025065651163458824, 0.007229935377836227, 0.007553454022854567, -0.018412422388792038, 0.007363562472164631, -0.01089413370937109, -0.04889349266886711, 0.0395817868411541, 0.03600901737809181, 0.019875289872288704, -0.0047367331571877, -0.032267455011606216, -0.035502638667821884, 0.021844532340765, 0.02408103086054325, -0.01739966869354248, 0.014924049377441406, -0.011006662622094154, 0.007651916239410639, -0.043829724192619324, 0.012856344692409039, -0.0022962780203670263, 0.020395731553435326, 0.03041074052453041, 0.0302419476211071, -0.009571928530931473, 0.04048201069235802, 0.03606528043746948, 0.033167678862810135, 0.042929500341415405, 0.03403977304697037, 0.010472153313457966, -0.012392165139317513, 0.013362720608711243, 0.05122845247387886, -0.04006003215909004, 0.021703872829675674, -0.03069205954670906, -0.016063397750258446, -0.013805801048874855, -0.010640946216881275, -0.02003001607954502, 0.014952181838452816, 0.059752460569143295, 0.03946925699710846, -0.008910825476050377, 0.025712689384818077, -0.013489315286278725, -0.01917198859155178, 0.022280579432845116, -0.025543896481394768, 0.023251134902238846, 0.020058147609233856, -0.026148734614253044, -0.022969814017415047, 0.02150694839656353, 5.554979725275189e-05, -0.07758817821741104, -0.01706208474934101, 0.001467261929064989, 0.014319210313260555, 0.02458740584552288, -0.028216440230607986, 0.020437929779291153, -0.023870039731264114, -0.04551764950156212, -0.0005740695050917566, -0.03218305855989456, 0.010120502673089504, -0.0174559336155653, -0.005496297962963581, -0.01648537814617157, 0.025586094707250595, -0.019354846328496933, 0.0006043993635103106, -0.04588336497545242, -0.006649712100625038, -0.007651916239410639, -0.024038832634687424, 0.054097920656204224, -0.003994750324636698, 0.0522693395614624, 0.01106995902955532, 0.005404869094491005, -0.03057953156530857, 0.0205363929271698, 0.011414577253162861, 0.005598276853561401, 0.004325301852077246, 0.0023841906804591417, -0.019087592139840126, -0.018806271255016327, -0.009332805871963501, -0.042929500341415405, -0.0023367179092019796, 0.0007349496590904891, 0.004894975572824478, -0.02223838120698929, -0.010169734247028828, 0.03747188299894333, -0.03828771412372589, 0.013025136664509773, 0.030607664957642555, 0.029397986829280853, -0.019748695194721222, -0.03347713127732277, 0.01300403755158186, -0.00643168855458498, -0.01762472651898861, 0.006315643899142742, -0.0252063125371933, -0.008798296563327312, 0.016963623464107513, 0.00657586520537734, 0.029651174321770668, 0.019819024950265884, 0.032605040818452835, -0.007644882891327143, 0.027175555005669594, 0.00034022191539406776, 0.02807578071951866, -0.021478815004229546, 0.009149947203695774, -0.01609152927994728, -0.02699269726872444, -0.013264259323477745, -0.002414081012830138, -0.005668607074767351, 0.002897600643336773, 0.0565735399723053, -0.017990441992878914, -0.010310394689440727, 0.02298388071358204, 0.02178826741874218, -0.012075680308043957, 0.0005151680670678616, 0.007954335771501064, -0.003465516259893775, -0.027822591364383698, -0.010472153313457966, -0.01602119952440262, 0.023124540224671364, -0.022041456773877144, -0.03645912930369377, -0.019481441006064415, -0.01203348208218813, -0.006445754785090685, 0.00789807178080082, 0.011041827499866486, 0.0047261836007237434, 0.0028817763086408377, 0.012300736270844936, -0.08034511655569077, -0.043829724192619324, 0.0243623498827219, -0.022660361602902412, -0.01967836543917656, -0.03373032063245773, 0.007300265599042177, 0.020381666719913483, 0.04000376537442207, 0.00011890184396179393, 0.02538917027413845, -0.045320723205804825, -0.015416360460221767, -0.0005085745942778885, -0.02567049115896225, 0.028736883774399757, -0.00682905362918973, 0.02537510357797146, 0.03108590841293335, 0.009705555625259876, -0.007349496707320213, 0.01693549007177353, -0.017244942486286163, 0.043042026460170746, 0.008889726363122463, -0.032717566937208176, -0.034602414816617966, 0.02925732545554638, 0.015022511593997478, -0.028160177171230316, 0.03468681126832962, 0.009389069862663746, -0.007462024688720703, 0.005299373995512724, 0.012764914892613888, -0.004286620300263166, -0.011140289716422558, 0.00779960909858346, -0.010401823557913303, -0.0031877122819423676, -0.030551400035619736, -0.04450489580631256, 0.04712117463350296, -0.03358966112136841, 0.04388599097728729, -0.011998317204415798, -0.0010145117994397879, 0.01200534962117672, -0.0302419476211071, 0.007244001608341932, 0.005686189513653517, 0.025909611955285072, 0.0001993419136852026, -0.018834402784705162, 0.0061890496872365475, 0.03176107630133629, -0.05406979098916054, -0.006705976091325283, 0.0027938636485487223, 0.0177372545003891, -0.015838341787457466, 0.02088804356753826, -0.003157821949571371, -0.03907540813088417, -0.025487631559371948, -0.0022786955814808607, -0.00909368321299553, 0.07516882568597794, 0.005267725326120853, -0.004043981432914734, 0.03128283470869064, 0.035502638667821884, 0.015444491989910603, -0.02395443618297577, 0.04458928853273392, 0.0190453939139843, -0.006424655672162771, 0.012012382969260216, 0.005577177740633488, -0.041213445365428925, 0.009375004097819328, 0.008882693015038967, -0.03581209108233452, 0.010169734247028828, -0.02675357460975647, -0.030382607132196426, -0.007433892693370581, 0.008151260204613209, 0.01631658524274826, 0.01898913085460663, 0.027653800323605537, -0.011787327006459236, -0.016569774597883224, 0.01887660101056099, 0.010633912868797779, 0.0016360542504116893, 0.012821178883314133, 0.00024923234013840556, 0.006371907889842987, 0.0033125481568276882, 0.0221258532255888, -0.019833091646432877, 0.02669730968773365, 0.012736783362925053, -0.014417672529816628, -0.03246437758207321, 0.05035635828971863, -0.02229464426636696, -0.0024879276752471924, -0.005450583528727293, -0.010078304447233677, -0.002952106297016144, 0.010577648878097534, 0.03890661895275116, 0.007363562472164631, 0.013883164152503014, -0.0019692431669682264, 0.0028817763086408377, 0.0016720984131097794, -0.00757455313578248, 0.038653429597616196, 0.0023367179092019796, -0.04450489580631256, 0.027625666931271553, 0.006115203257650137, 0.04852777719497681, 0.008573240600526333, -0.017273075878620148, 0.02544543333351612, -0.0021679257042706013, 0.004683985374867916, 0.07657542824745178, 0.00603432347998023, 0.06110280007123947, -0.009628192521631718, -0.015205370262265205, 0.010964464396238327, 0.006596964318305254, 0.0189469326287508, 0.036712318658828735, 0.010071272030472755, -0.010570615530014038, -0.009867314249277115, -0.022350909188389778, 0.047711946070194244, 0.01322909351438284, -0.02766786515712738, 0.0028677103109657764, -0.00704356050118804, 0.045039404183626175, 0.039103541523218155, -0.03176107630133629, -0.03302701935172081, 0.04444862902164459, -0.019692430272698402, 0.04273257404565811, -0.048921626061201096, -0.007651916239410639, -0.013812833465635777, 0.02430608682334423, 0.02094430662691593, 0.017638791352510452, 0.017723187804222107, 0.010915232822299004, 0.019987817853689194, -0.018398357555270195, -0.020339468494057655, 0.0073354304768145084, -0.04096025601029396, 0.021689806133508682, -0.008854560554027557, -0.008094996213912964, 0.010577648878097534, -0.0006756086368113756, 0.03960992023348808, 0.019987817853689194, -0.00012890191283077002, 0.009874347597360611, 0.007961368188261986, 0.012089746072888374, -0.034349225461483, -0.01286337710916996, 0.01607746258378029, 0.04067893698811531, 0.012596122920513153, -0.011372379027307034, -0.045376986265182495, 0.013805801048874855, -0.0012131944531574845, 0.0027622152119874954, 0.022322777658700943, 0.02914479747414589, 0.011076992377638817, 0.016274387016892433, 0.008228623308241367, -0.007033010944724083, 0.03091711737215519, -0.01523350179195404, -0.031395360827445984, 0.023715313524007797, -0.03240811452269554, 0.012075680308043957, 0.006196082569658756, -0.011020728386938572, -0.011477873660624027, 0.02527664229273796, 0.0012949531665071845, 0.03485560417175293, -0.04307015985250473, 0.02332146465778351, 0.022913550958037376, 0.012504694052040577, -0.0009019836434163153, -0.010507318191230297, 0.002210123697295785, 0.01950957253575325, 0.01882033795118332, 0.024390483275055885, -0.00335826282389462, -0.02076144888997078, -0.02322300337255001, -0.027048960328102112, -0.03142349421977997, 0.015768010169267654, -0.023082341998815536, 0.04048201069235802, -0.004195190966129303, 0.0008171479566954076, -0.02167573943734169, 0.017216810956597328, 0.007764444220811129, 0.02908853441476822, 0.023012012243270874, -0.01218117494136095, 0.03252064436674118, 0.029763702303171158, 0.010451054200530052, 0.009789951145648956, -0.0031613383907824755, 0.02572675421833992, 0.017357470467686653, -0.011224685236811638, -0.00019110010180156678, -0.015163172036409378, -0.03395537659525871, 0.00017274833226110786, 0.01995968632400036, 0.029819967225193977, 0.03063579648733139, -0.01261018868535757, 0.010071272030472755, 0.01779351755976677, 0.0011191278463229537, 0.017765386030077934, 0.03420856595039368, 0.03347713127732277, 0.006976746954023838, 0.00904445257037878, -0.00016285816673189402, -0.004870360251516104, 0.012061613611876965, 0.01415041834115982, 0.018243631348013878, -0.024235757067799568, -0.008917857892811298, -0.004448379389941692, -0.00855214148759842, -0.017666924744844437, 0.026655111461877823, 0.00019307812908664346, -0.023644983768463135, 0.04945613443851471, -0.0014022066025063396, -0.02527664229273796, -0.003643099684268236, 0.03811892122030258, -0.038653429597616196, -0.006698943208903074, -0.004673435818403959, 0.00036527702468447387, -0.01311656553298235, 0.02402476593852043, 0.0009090167004615068, 0.00248089455999434, 0.031986135989427567, -0.004870360251516104, 0.02925732545554638, -0.02641598880290985, 0.032773829996585846, -0.03614967688918114, -0.0052712420001626015, 0.019073525443673134, -0.006055422592908144, 0.04152289777994156, -0.022224314510822296, 0.0062347641214728355, 0.010022040456533432, 0.020466063171625137, -0.018862536177039146, -0.0174559336155653, 0.03063579648733139, -0.023588718846440315, 0.027400610968470573, -0.005721354391425848, 0.007602685131132603, 0.012258538044989109, -0.0013450633268803358, -0.009649291634559631, 0.004036948550492525, 0.009712588042020798, -0.014368441887199879, 0.030213816091418266, 0.021985191851854324, 0.0369655080139637, -0.012997004203498363, -0.003192987060174346, 0.029735570773482323, 0.017273075878620148, 0.012420297600328922, 0.027133356779813766, 0.00430771941319108, 0.026669178158044815, 0.010345559567213058, 0.04090399295091629, -0.02213991805911064, 0.005475199315696955, 0.04174795374274254, -0.024967189878225327, -0.01103479415178299, 0.018693743273615837, 0.01967836543917656, -0.00890379212796688, 0.0038013425655663013, 0.02469993568956852, -0.022857286036014557, 0.007729279343038797, 0.026331594213843346, -0.002600455889478326, 0.002505510114133358, -0.0002971447247546166, -0.0011604467872530222, -0.005327505990862846, -0.012947773560881615, -0.013222061097621918, 0.005781135056167841, -0.0016131969168782234, 0.024728067219257355, 0.01962210051715374, -0.004402664955705404, 0.029848098754882812, 0.06779822707176208, -0.007771477103233337, -0.050637681037187576, 0.0001443965156795457, -0.006470370106399059, -0.02320893667638302, -0.00757455313578248, 0.0011806667316704988, -0.018553083762526512, 0.0308045893907547, -0.0277241300791502, -0.000845280010253191, -0.02908853441476822, 0.008910825476050377, 0.0010540725197643042, -0.0037063967902213335, -0.0053169564343988895, 0.025628292933106422, 0.021886730566620827, -0.014058989472687244, 0.01103479415178299, 0.019776826724410057, -0.010774573311209679, -0.017244942486286163, -0.009241377003490925, -0.03674044832587242, 0.02424982190132141, -0.0328582264482975, -0.01123875193297863, 0.015092841349542141, 0.010296327993273735, -0.02498125471174717, 0.017779452726244926, 0.03780946880578995, -0.016443179920315742, 0.007884005084633827, -0.03617781028151512, 0.010683143511414528, 0.02270255982875824, 0.0035657365806400776, -0.011618534103035927, -0.011337214149534702, -0.0017529779579490423, -0.0036325501278042793, -0.002009682822972536, 0.02897600643336773, -0.02737247943878174, -0.013644041493535042, 0.022547833621501923, -0.037443749606609344, -0.03325207531452179, -0.013932394795119762, 0.009480498731136322, -0.02395443618297577, 0.012476561591029167, 0.02561422623693943, 0.0472337007522583, 3.137382373097353e-05, 0.029707439243793488, 0.007236968260258436, -0.010394790209829807, 0.006822020746767521, -0.03330834209918976, -0.005077833775430918, -0.02589554712176323, -0.031986135989427567, 0.019101658836007118, -0.0016633070772513747, -0.0036501327995210886, -0.04819019138813019, 0.006530150771141052, 0.023644983768463135, 0.017934178933501244, 0.007602685131132603, 0.03235185146331787, 0.027921054512262344, 0.007412793580442667, 0.04444862902164459, 0.04048201069235802, -0.020001882687211037, -0.026444122195243835, 0.02688016928732395, -0.03623407334089279, 0.021436618641018867, -0.023574654012918472, -0.0287509486079216, 0.01035259198397398, 0.04006003215909004, -0.0277241300791502, 0.03420856595039368, 0.004156509414315224, -0.0009784676367416978, 0.045039404183626175, -0.004458928946405649, 0.009761819615960121, -0.01209677942097187, -0.03972244635224342, -0.030157551169395447, -0.0028659519739449024, -0.03969431295990944, 0.02322300337255001, 0.019776826724410057, -0.013088434003293514, 0.03423669934272766, 0.007862905971705914, 0.0026074887719005346, -0.02607840485870838, -0.03209866210818291, -0.019411111250519753, -0.022055523470044136, -0.03595275431871414, -0.0004545083502307534, 0.020508259534835815, 0.02908853441476822, 0.022688493132591248, 0.04796513542532921, -0.010422922670841217, -0.03868155926465988, -0.018637480214238167, -0.030101288110017776, 0.019819024950265884, -0.007848840206861496, -0.02320893667638302, 0.003998266998678446, -0.013826900161802769, 0.004930140916258097, 0.009958744049072266, -0.02818830870091915, 0.0277241300791502, -0.0054365177638828754, -0.001242205617018044, -0.0006364875007420778, 0.03178920969367027, 0.0020888042636215687, 0.000910774921067059, 0.021141231060028076, -0.010577648878097534, -0.02469993568956852, 0.03302701935172081, -0.0002815402112901211, -0.029651174321770668, 0.03783759847283363, -0.01340491883456707, 0.013250192627310753, 0.015219436027109623, 0.009367970749735832, 0.017498131841421127, 0.0029081501998007298, 0.03240811452269554, -0.042704444378614426, -0.013348654843866825, 0.009543796069920063, 0.047261834144592285, 0.020451996475458145, 0.025825217366218567, -0.028483694419264793, 0.04802139848470688, -0.005545529071241617, 0.005383769981563091, 0.01114732213318348, -0.018229564651846886, 0.02612060308456421, -0.0043956320732831955, -0.04008816182613373, 0.032998889684677124, -0.0072158691473305225, -0.00010225339065073058, -0.027245884761214256, -0.02538917027413845, 0.004156509414315224, 0.009009286761283875, -0.01659790612757206, 0.004894975572824478, -0.01801857352256775, 0.02378564327955246, -0.01146380789577961, -0.0221258532255888, 0.029763702303171158, -0.0011789085110649467, 0.02417949214577675, 0.00481761246919632, -0.012842277996242046, 0.015430426225066185, 0.03029821254312992, 0.007222902495414019, -0.005946410819888115, -0.009403135627508163, -0.011316115036606789, -0.009578960947692394, -0.003490131814032793, 0.004508160054683685, 0.008559174835681915, -0.012757882475852966, 0.0010848419042304158, 0.022097721695899963, 0.0012580298352986574, 0.0035569453611969948, 0.03896288201212883, -0.030720192939043045, 0.010303361341357231, -0.02498125471174717, -0.004465961828827858, -0.028089845553040504, -0.005257175769656897, 0.005851465277373791, 0.008397415280342102, -0.007680048234760761, 0.017146481201052666, -0.025825217366218567, 0.0060835545882582664, 0.017259009182453156, 0.01984715647995472, -0.026219066232442856, 0.031226569786667824, 0.0004918712074868381, -0.011977218091487885, 0.003333647269755602, 0.041325971484184265, 0.0014048439916223288, -0.05716431513428688, 0.017484065145254135, -0.0019235284999012947, -0.0034479335881769657, -0.03167668357491493, 0.0017591319046914577, 0.026598848402500153, 0.0038365074433386326, -0.0233355313539505, 0.012652386911213398, -0.018398357555270195, -0.002341992687433958, -0.019129790365695953, 0.019467374309897423, -0.007015428505837917, -0.019875289872288704, 0.0010786880739033222, 0.005953443702310324, -0.00852400902658701, 0.010837869718670845, -0.028047647327184677, -0.014361408539116383, -0.01303920242935419, 0.007497190032154322, 0.005197395104914904, 0.04022882506251335, 0.03297075629234314, 0.0011033036280423403, 0.0231526717543602, -0.01152710523456335, -0.004033431876450777, -0.03046700358390808, 0.02316673845052719, 0.008889726363122463, -0.022407174110412598, -0.040538277477025986, 0.03246437758207321, 0.017666924744844437, -0.007989500649273396, 0.007750377990305424, -0.00981105025857687, -0.027063027024269104, -0.011295015923678875, 0.025248508900403976, -0.020058147609233856, -0.002579356776550412, 0.022801021113991737, 0.028160177171230316, -0.03862529620528221, -0.045433253049850464, 0.05271945148706436, -0.0003215404867660254, 0.030720192939043045, 0.022505635395646095, 0.0109222661703825, -0.01268755178898573, 0.016288453713059425, 0.02481246367096901, 0.0019604519475251436, 0.008974121883511543, -0.029397986829280853, -0.0017767144599929452, -0.010880067944526672, -0.02731621451675892, -0.02264629490673542, -0.0020413314923644066, -0.00815829262137413, -0.021985191851854324, -0.0215632114559412, 0.010134569369256496, 0.004174091853201389, 0.03063579648733139, 0.01995968632400036, -0.007644882891327143, -0.016175925731658936, 0.010366658680140972, 0.009121815674006939, -0.01178029365837574, 0.03268943727016449, 0.0074409255757927895, 0.012631287798285484, -0.009825116023421288, 0.028497761115431786, -0.0006945098284631968, -0.02098650485277176, 0.02897600643336773, 0.0014171517686918378, -0.011280950158834457, 0.03041074052453041, 0.007673014886677265, -0.010387757793068886, 0.016232188791036606, 0.0005978059489279985, -0.009825116023421288, -0.021760135889053345, -0.012455462478101254, -0.00047253043157979846, 0.0035938685759902, 0.03907540813088417, -0.0012844036100432277, 0.026950499042868614, 0.02093024179339409, -0.00014131957141216844, -0.005408385302871466, -0.009396103210747242, 0.024573341012001038, 0.019537704065442085, 0.02721775323152542, -0.0022734208032488823, 0.001953418832272291, -0.029651174321770668, 0.03575582802295685, -0.01357371173799038, 0.02897600643336773, -0.03474307432770729, 0.023644983768463135, -0.002591664670035243, 0.03406790643930435, 0.008383349515497684, 0.014009757898747921, -0.026036206632852554, -0.0161477942019701, 0.040819596499204636, -0.043323349207639694, 0.015289765782654285, -0.003347713267430663, 0.037331223487854004, 0.004244422074407339, 0.021816400811076164, -0.005883113946765661, 0.014044922776520252, -0.01648537814617157, 0.041100915521383286, -0.006442238111048937, 0.014382507652044296, -0.009002254344522953, 0.02413729391992092, 0.032436247915029526, -0.0041213445365428925, -0.022350909188389778, 0.021802334114909172, 0.03797826170921326, 0.00697323027998209, 0.02206958830356598, -0.01038072444498539, -0.03690924122929573, 0.03263317048549652, 0.03147975727915764, 0.011006662622094154, -0.023532455787062645, -0.004972338676452637, 0.025234444066882133, -0.005862014833837748, -0.019368913024663925, -0.016400981694459915, -0.019214186817407608, -0.04022882506251335, 0.004610138945281506, 0.01006423868238926, -0.0308045893907547, 0.02128189243376255, -0.006269929464906454, 0.021239694207906723, 0.018328027799725533, 0.0059639932587742805, 0.025811150670051575, 0.018778139725327492, 0.005985092371702194, 0.024390483275055885, 0.005011020228266716]" -Processing and Protecting Hundreds of Terabytes of Blockchain Data: Zondax’s Story,"This is an installment of our “Community Member Spotlight” series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition, Ezequiel Raynaudo, data team leader at Zondax, explains how the software company consumes and analyzes hundreds of terabytes of blockchain data using TimescaleDB to create complete backend tech solutions.About the CompanyZondaxis a growing international team of more than 30 experienced professionals united by a passion for technology and innovation. Our end-to-end software solutions are widely used by many exchanges, hardware wallets, privacy coins, and decentralized finance (DeFi) protocols. Security is one of the highest priorities in our work, and we aim to provide the safest and most efficient solutions for our clients.Founded in 2018, Zondax has been consideredthe leader in the industry for Ledger apps development, with more than 45 applications built to date and more near production. Since its inception, our team has been building and delivering high-quality backend tech solutions for leading blockchain projects of prominent clients, such as Cosmos, Tezos, Zcash, Filecoin, Polkadot, ICP, Centrifuge, and more.“The database is a critical part of the foundation that supports our software services for leading blockchain projects, financial services, and prominent ecosystems in the blockchain space”We put a lot of emphasis on providing maximum safety and efficiency for the ecosystem. Our services can be categorized into security, data indexing, integration, and protocol engineering. Each category has designated project leaders that take the initiative in managing the projects with well-experienced engineers.About the TeamMy team (which currently has two people but is looking to grow by the end of the year) manages the blockchain data in various projects and ensures the tools needed for the projects are well-maintained. For example, we pay close attention to the dynamic sets of different blockchains and create advanced mathematical models for discovering insightful information via data analytics.The database is a critical part of the foundation that supports our software services for leading blockchain projects, financial services, and prominent ecosystems in the blockchain space. In conclusion, we take serious steps to ensure the work of processing blockchain data remains effective, and that the quality of the results meets Zondax's high standards.We welcome professionals from different cultures, backgrounds, fields of experience, and mindsets.",https://www.timescale.com/blog/processing-and-protecting-hundreds-of-terabytes-of-blockchain-data-zondaxs-story/,487,"[0.06592098623514175, 0.015141398645937443, 0.05013086646795273, 0.02532768063247204, 0.036245498806238174, 0.0011464743874967098, -0.017846697941422462, 0.060399964451789856, -0.036604367196559906, -0.026721738278865814, 0.03033800795674324, -0.030393216758966446, -0.037128861993551254, -0.04215298965573311, 0.07359520345926285, 0.06349173188209534, 0.0008971657953225076, -0.01705995388329029, -0.05300179496407509, 0.024402910843491554, 0.005265673156827688, 0.029592668637633324, 0.041794124990701675, -0.0060765729285776615, -0.0008199578151106834, -0.02986872009932995, -0.030752083286643028, 0.06139374524354935, 0.021614795550704002, -0.07552755624055862, 0.02978590503334999, -0.014271837659180164, -0.008978559635579586, 0.02633526735007763, 0.0015243192901834846, -0.028488464653491974, 0.020883260294795036, -0.020496787503361702, 0.021407756954431534, 0.0008928525494411588, -0.021863240748643875, -0.02690117247402668, 0.011262881569564342, 0.03732209652662277, -0.018509220331907272, -0.005027579143643379, -0.05073817819356918, -0.009282215498387814, 0.031276579946279526, 0.010655569843947887, -0.03770856931805611, 0.026873566210269928, -0.017639659345149994, -0.01926836185157299, -0.013712834566831589, -0.024623751640319824, 0.006300864741206169, 0.040662314742803574, -0.0226775910705328, -0.015182806178927422, -0.0063043152913451195, -0.04361606016755104, 0.039226848632097244, 0.07072427123785019, -0.013609315268695354, -0.015665896236896515, -0.02037256583571434, 0.013485092669725418, -0.014865347184240818, 0.018426405265927315, 0.06928880512714386, 0.03141460567712784, 0.019627228379249573, 0.029813509434461594, 0.0166044682264328, -0.07889538258314133, 0.021104101091623306, 0.03340217471122742, -0.00846096407622099, -0.037487730383872986, -0.005779818166047335, 0.012760458514094353, -0.0004354273551143706, 0.003726688679307699, 0.03345738351345062, -0.017225584015250206, -0.014644506387412548, -0.029150987043976784, -0.0048861028626561165, 0.022097883746027946, -0.02545190416276455, 0.05946138873696327, -0.01111795473843813, -0.016866717487573624, 0.02735665626823902, 0.0008462689002044499, 0.009786008857190609, 0.025093037635087967, 0.02113170549273491, 0.023533349856734276, -0.021670004352927208, -0.00979290995746851, 0.027605101466178894, -0.03906121850013733, 0.021518176421523094, 0.0046549104154109955, 0.015790117904543877, -0.031193764880299568, 0.018964705988764763, -0.0027156518772244453, -0.09490633755922318, -0.009261512197554111, -0.03516890108585358, -0.030061956495046616, -0.008881941437721252, -0.0007949406863190234, -0.01150442659854889, -0.023202087730169296, -0.003999289125204086, -0.0066459281370043755, 0.007480982691049576, 0.012415395118296146, -0.05369192361831665, 0.0443061888217926, -0.009192499332129955, -0.05256011337041855, -0.011193868704140186, -0.039668530225753784, -0.043201982975006104, -0.008191813714802265, 0.04049668461084366, -0.01067627314478159, 0.050986625254154205, -0.027701720595359802, -0.0443061888217926, -0.02523106336593628, -0.045106735080480576, -0.015182806178927422, -0.0354173444211483, -0.01327805407345295, -0.0029433940071612597, -0.01478253211826086, 0.030752083286643028, -0.01151132769882679, -0.02325729839503765, 0.0032763804774731398, -0.019986093044281006, 0.025548521429300308, -0.026086822152137756, -0.04240143671631813, -0.005614187568426132, -0.0011412984458729625, -0.034920454025268555, 0.0036680279299616814, 0.044444214552640915, 0.03389906510710716, 0.020717628300189972, 0.0608968548476696, -0.007022047881036997, -0.015679698437452316, 0.009489254094660282, 0.0564800389111042, -0.03191149979829788, 0.0018581683980301023, -0.02645949088037014, -0.007694922387599945, -0.0182607751339674, -0.04949594661593437, -0.06608661264181137, -0.007439575158059597, -0.05115225538611412, -0.023436732590198517, -0.015431252308189869, 0.02182183414697647, 0.051952801644802094, -0.00935122836381197, -0.0182745773345232, 0.004413365852087736, 0.014644506387412548, -0.04038626328110695, -0.048778217285871506, -0.013250448741018772, -0.020551998168230057, -0.008819829672574997, -0.051952801644802094, -0.02237393520772457, -0.068571075797081, 0.028143402189016342, -0.019075125455856323, 0.018661048263311386, -0.029730694368481636, 0.09601054340600967, -0.005165604874491692, 0.023091668263077736, -0.007087610196322203, -0.03229796886444092, 0.008626594208180904, 0.016328418627381325, -0.0047825840301811695, 0.012870878912508488, 0.020496787503361702, 0.025921190157532692, 0.049551159143447876, 0.009061374701559544, 0.026707936078310013, 0.024761777371168137, 0.008322938345372677, -0.03643873333930969, -0.07282225787639618, -0.06840544193983078, 0.0072394381277263165, -0.0046480088494718075, 0.027756929397583008, -0.020206933841109276, -0.028143402189016342, -0.0010809123050421476, -0.04908187314867973, 0.003595564514398575, 0.0034126807004213333, -0.0060765729285776615, -0.01266384031623602, 0.09258751571178436, 0.007370562292635441, -0.008329839445650578, -0.0052415188401937485, 0.009530661627650261, 0.02060720883309841, -0.00414766650646925, 0.05857802554965019, 0.03798462077975273, 0.028295230120420456, -0.016328418627381325, 0.004530687350779772, -0.031193764880299568, -0.008881941437721252, 0.0012551695108413696, -0.013036509044468403, -0.04342282563447952, 0.005027579143643379, 0.0003608073166105896, -0.008046886883676052, 0.006048968061804771, 0.007501686457544565, 0.014189022593200207, 0.02724623493850231, 0.007639712188392878, -0.028488464653491974, -0.048999056220054626, 0.010524445213377476, 0.0343407467007637, 0.0320771299302578, 0.017405016347765923, -0.010669372044503689, -0.04240143671631813, -0.023519547656178474, -0.036604367196559906, -0.018895693123340607, -0.0009333975031040609, -0.022718999534845352, -0.01084880530834198, 0.0003536903823260218, -0.06365736573934555, -0.045879680663347244, 0.017736278474330902, -0.040220633149147034, 0.028032980859279633, 0.01279496494680643, -0.007653514388948679, -0.010503740981221199, 0.0005275162402540445, 0.014644506387412548, 0.023064061999320984, 0.024375304579734802, -0.05590033158659935, -0.013029607944190502, -0.02303645759820938, 0.016093773767352104, -0.01639743149280548, -0.0031970159616321325, 0.008171110413968563, 0.012822570279240608, 0.0013328088680282235, 0.0029382179491221905, -0.023064061999320984, 0.010165578685700893, 0.016783902421593666, 0.011166263371706009, 0.02281561680138111, 0.014016490429639816, -0.012408493086695671, 0.017970921471714973, -0.00041127289296127856, 0.008171110413968563, 0.006280160509049892, -0.006445791572332382, -0.030365612357854843, 0.005162154324352741, -0.00896475650370121, -0.04505152627825737, -0.03066926822066307, 0.027936363592743874, 0.011766674928367138, 0.019006112590432167, -0.035251714289188385, -0.02391982078552246, -0.03734970465302467, 0.020427774637937546, -0.010248393751680851, -0.016425035893917084, -0.01544505450874567, 0.034368351101875305, -0.02534148283302784, 0.02335391566157341, -0.010172479785978794, -0.0298963263630867, -0.0343131422996521, 0.05244969576597214, -0.01129738800227642, -0.01046233344823122, -0.07707344740629196, -0.013788748532533646, -0.051842380315065384, -0.003819856094196439, -0.013595513068139553, 0.04350564256310463, -0.020179329439997673, 0.00984121859073639, 0.00917869620025158, 0.013188337907195091, -0.029178593307733536, 0.04692867398262024, -0.010835002176463604, 0.0058281272649765015, -0.027591299265623093, -0.009068275801837444, -0.04347803443670273, 0.011973712593317032, 0.01739121414721012, 0.0035576075315475464, 0.01780529133975506, -0.015362239442765713, -0.02303645759820938, -0.0387575626373291, -0.029316619038581848, 0.05730819329619408, 0.005248419940471649, 0.0015890187351033092, -0.015251819044351578, 0.02147676981985569, 0.005393346771597862, -0.06354694813489914, -0.007253240793943405, -0.009206301532685757, -0.0520080141723156, -0.00523116672411561, 0.0059488993138074875, -0.025051631033420563, -0.02679075114428997, -0.06962006539106369, -0.021200718358159065, -0.018619641661643982, 0.019102729856967926, 0.020400170236825943, -0.007646613288670778, -0.0006616598111577332, 0.031939104199409485, -0.040358658879995346, -0.02712201327085495, -0.0166044682264328, -0.038564328104257584, 0.03265683725476265, -0.009613476693630219, -0.03632831573486328, 0.00890954677015543, -0.030972924083471298, -0.04670783132314682, 0.05924054980278015, 0.04604531079530716, 0.018950901925563812, 0.06001349166035652, 0.05269813910126686, 0.024154463782906532, -0.0021652751602232456, -0.006055869162082672, 0.020068909972906113, 0.061504166573286057, -0.013574808835983276, 0.013112423941493034, -0.053195033222436905, -0.02679075114428997, 0.026362871751189232, -0.020662419497966766, 0.012015121057629585, -0.016466442495584488, 0.010800495743751526, 0.00628706207498908, -0.003405779367312789, 0.03265683725476265, 0.0641542598605156, -0.0038923195097595453, 0.026542305946350098, -0.03022758662700653, -0.033374570310115814, -0.030255191028118134, 0.01432704832404852, -0.006052418611943722, -0.03008956089615822, 0.007460278924554586, -0.026611318811774254, -0.012870878912508488, -0.024996420368552208, -0.036355920135974884, 0.03555537015199661, -7.925683894427493e-05, 0.010579654946923256, 0.0021583738271147013, -0.03232557326555252, 0.06056559458374977, -0.016866717487573624, 0.034699615091085434, 0.007211832795292139, 0.006576915737241507, -0.004420266952365637, -0.03398188203573227, -0.003317788243293762, 0.03994458168745041, 0.03685281053185463, -0.015182806178927422, -0.018688654527068138, -0.04905426502227783, 0.017639659345149994, -0.0020721079781651497, 0.0398893728852272, -0.017322201281785965, -0.0497996024787426, 0.0070185973308980465, 0.04601770639419556, 0.002092811744660139, 0.030503638088703156, -0.001028290018439293, -0.026528503745794296, 0.0033505691681057215, -0.015900539234280586, 0.011580340564250946, 0.009054473601281643, 0.0031280030962079763, -0.013050312176346779, -0.02302265539765358, -0.021200718358159065, -0.035251714289188385, 0.08049647510051727, -0.003788800211623311, -0.032491203397512436, 0.033043306320905685, -0.05808113515377045, -0.04325719550251961, 0.03919924423098564, 0.003426483366638422, 0.024747973307967186, 0.005082789342850447, -0.04717712104320526, 0.02258097380399704, -0.04908187314867973, 0.0082953330129385, -0.025741757825016975, -0.07690781354904175, 0.006604520604014397, -0.004837794229388237, 0.03864714130759239, -0.005993757862597704, -0.0037163367960602045, 0.02556232362985611, -0.0075983041897416115, 0.002643188461661339, -0.03740491345524788, -0.039696138352155685, 0.049219898879528046, 0.018840482458472252, 0.00851617380976677, 0.024044044315814972, 0.0023222791496664286, 0.0004089005815330893, -0.018730061128735542, 0.05394037067890167, 0.039254456758499146, 0.007681119721382856, 0.01018628291785717, 0.05013086646795273, -0.0015743534313514829, 0.008102097548544407, 0.004251185804605484, 0.01412000972777605, 0.07657655328512192, -0.015803920105099678, 0.004016542341560125, 0.006894374266266823, -0.026542305946350098, -0.05402318388223648, -0.008219419047236443, -0.027053000405430794, 0.033181332051754, -0.007087610196322203, 0.013347066938877106, 0.07116595655679703, -0.030834898352622986, -0.01739121414721012, -0.03177347406744957, -0.009206301532685757, -0.0037853496614843607, 0.03354020044207573, 0.017860500141978264, -0.004630756098777056, 0.054409656673669815, 0.007246339228004217, -0.020897062495350838, 0.032932884991168976, 0.01914413832128048, -0.014879150316119194, -0.030862504616379738, -0.022222107276320457, -0.00780534278601408, -0.023712782189249992, 0.0010308780474588275, -0.002218760084360838, -0.0006444065948016942, -0.018246972933411598, -0.055182598531246185, -0.018978508189320564, -0.03334696218371391, 0.0221254900097847, 0.0143822580575943, -0.01901991479098797, 0.0023878412321209908, 0.010117270052433014, -0.024306291714310646, -0.004585897549986839, -0.010517544113099575, -0.025700349360704422, -0.04162849485874176, 0.008357444778084755, 0.003490320174023509, 0.061835430562496185, 0.013429882004857063, 0.025852177292108536, 0.007049652747809887, 0.018108947202563286, -0.010358814150094986, -0.004071752540767193, -0.0077156261540949345, 0.03254641592502594, 0.025396693497896194, -0.053526293486356735, 0.010931620374321938, -0.016121380031108856, 0.004447872284799814, 0.02390601858496666, -0.015624487772583961, -0.0032574019860476255, 0.02002750150859356, 0.0023740387987345457, 0.002883007749915123, -0.018122749403119087, 0.004089005757123232, 0.019199348986148834, -0.009944737888872623, 0.03721167892217636, 0.0052415188401937485, -0.021877042949199677, -0.03478242829442024, 0.021518176421523094, -0.0026914975605905056, -0.03823306784033775, -0.007073807530105114, -0.0031763119623064995, 0.02158718928694725, 0.033705830574035645, -0.048999056220054626, -0.014230430126190186, 0.011718366295099258, 0.0004843832866754383, -0.03919924423098564, -0.019834265112876892, -0.028957752510905266, 0.02179422788321972, -0.019917082041502, 0.004599700216203928, 0.02986872009932995, 0.02843325585126877, 0.01704614982008934, -0.006801207084208727, -0.0021618246100842953, 0.004713571164757013, -0.013416079804301262, 0.018895693123340607, 0.016438838094472885, -0.009979244321584702, 0.019309768453240395, 7.758543506497517e-05, 0.0029192394576966763, 0.022622380405664444, 0.01544505450874567, -0.001632151659578085, -0.02369897998869419, -0.05267053470015526, -0.025879783555865288, 0.03400948643684387, 0.03928206115961075, 0.017101360484957695, 0.03696323186159134, -0.02812959812581539, 0.0047584292478859425, 0.0008894018828868866, -0.01813655160367489, -0.025990203022956848, 0.025658942759037018, 0.02879212237894535, -0.011428512632846832, -0.003647324163466692, 0.0075983041897416115, 0.030282797291874886, -0.0008786186226643622, -0.05769466236233711, -0.01244299951940775, -0.04861258342862129, 0.019544411450624466, 0.018108947202563286, -0.018523024395108223, -0.039337269961833954, -0.001614898443222046, 0.044665053486824036, -0.01650785095989704, 0.00047834464930929244, 0.01670108735561371, 0.006852966733276844, 0.018454011529684067, 0.04795006290078163, 0.0010110369184985757, 0.05002044513821602, -0.009813614189624786, -0.0221254900097847, 0.02666652947664261, 0.004882652312517166, -0.010690075345337391, -0.001753786695189774, -0.012194554321467876, -0.01717037335038185, -0.0009877450065687299, 0.05068296566605568, 0.012077231891453266, 0.002330905757844448, -0.014451270923018456, -0.027177223935723305, 0.06189063936471939, 0.02767411433160305, 0.005272574722766876, 0.005562427919358015, 0.008164209313690662, 0.009275314398109913, 0.004620403982698917, 0.03508608415722847, -0.027480879798531532, -0.0026932228356599808, -0.003281556535512209, 0.006483748555183411, -0.023975031450390816, 0.027508484199643135, 0.01040022261440754, 0.01106274500489235, 0.02942703850567341, 0.04350564256310463, -0.024596145376563072, 0.041904546320438385, 0.021656202152371407, 0.014713519252836704, 0.03566579148173332, 0.040579501539468765, 0.015362239442765713, 0.0002795016625896096, 0.03152502700686455, 0.03342977911233902, -0.03373343497514725, 0.00589368911460042, -0.028930146247148514, -0.009227005764842033, -0.012132442556321621, -0.0047756824642419815, 0.015334634110331535, 0.02800537645816803, 0.028930146247148514, 0.019309768453240395, 0.0021980563178658485, -0.019102729856967926, 0.011394006200134754, -0.03574860841035843, 0.0072325365617871284, -0.01780529133975506, 0.018964705988764763, 0.015762513503432274, -0.024775579571723938, -0.06166979670524597, -0.013050312176346779, -0.019199348986148834, -0.05913012847304344, -0.030641663819551468, -0.03365061804652214, 0.0057004536502063274, 0.0030986727215349674, -0.004865399096161127, 0.029923930764198303, -0.0028795571997761726, -0.0282262172549963, 0.005748762283474207, -0.0453551821410656, 0.024071648716926575, -0.008398852311074734, 0.0015907440101727843, -0.0024948110803961754, 0.024485725909471512, -0.021946055814623833, -0.024623751640319824, -0.04681825265288353, -0.008433358743786812, -0.030641663819551468, -0.03376103937625885, 0.04027584567666054, -0.0012327403528615832, 0.021600991487503052, 0.015541672706604004, 0.020676221698522568, -0.03607986867427826, -0.012870878912508488, 0.005755663849413395, 0.03674238920211792, -0.020524393767118454, 0.00542785320430994, -0.031276579946279526, -0.011442314833402634, -0.02278801240026951, -0.04220820218324661, -0.006697687786072493, -0.01725318841636181, -0.035141296684741974, -0.023105470463633537, -0.0282262172549963, 0.017322201281785965, -0.06095206364989281, 0.013857761397957802, 0.04408534988760948, -0.004578996449708939, 0.001353512634523213, -0.011877095326781273, 0.012946792878210545, -0.0037439418956637383, -0.014057897962629795, -0.0016442289343103766, -0.019572017714381218, -0.011538933031260967, -0.00476188026368618, -0.012877780012786388, 0.018550628796219826, 0.0017615505494177341, 0.04527236893773079, -0.025093037635087967, 0.03199431300163269, -0.010772891342639923, 0.03585902601480484, 0.001531220506876707, -0.006173191126435995, 0.008895744569599628, -0.04505152627825737, 0.010510643012821674, 0.009868823923170567, 0.0024188971146941185, 0.019558215513825417, 0.04483068734407425, -0.016093773767352104, 0.011649353429675102, 0.00786055251955986, 0.02425108291208744, 0.0014975768281146884, 0.03516890108585358, 0.011131757870316505, -0.02535528689622879, -0.019834265112876892, 0.022746603935956955, 0.0037680964451283216, 0.02523106336593628, -0.02568654716014862, -0.012656939215958118, -0.027963967993855476, -0.04723232984542847, 0.0248998012393713, -0.053305450826883316, 0.011318092234432697, 0.01805373653769493, -0.005034480709582567, 0.005697003100067377, -0.059516601264476776, -0.06879191100597382, 0.013071015477180481, -0.009544463828206062, -0.01661827228963375, -0.02104889042675495, 0.0248859990388155, 0.023533349856734276, 0.018329787999391556, -0.027260039001703262, 0.035693395882844925, -0.05029649659991264, 0.007943368516862392, -0.023395324125885963, -0.01472732238471508, -0.010165578685700893, -0.006987541448324919, 0.008164209313690662, 0.012332579120993614, 0.02567274495959282, -0.04303635284304619, 0.004047598224133253, -0.01045543234795332, 0.03674238920211792, 0.028874937444925308, -0.0036335214972496033, -0.0015760788228362799, 0.03089010901749134, 0.05250490456819534, 0.015307028777897358, 0.0182607751339674, -0.030862504616379738, -0.0099723432213068, 0.019558215513825417, -0.018012329936027527, 0.024375304579734802, 0.014685913920402527, -0.03100053034722805, -0.03400948643684387, -0.011808082461357117, -0.025548521429300308, -0.007895058952271938, 0.018177960067987442, -0.041021183133125305, 0.012546518817543983, -0.0248998012393713, -0.009013066068291664, 0.048088088631629944, -0.01914413832128048, 0.021228322759270668, 0.008391951210796833, 0.009613476693630219, -0.002046228153631091, -0.0005775504978373647, -0.004661811515688896, 0.019213151186704636, -0.06255315989255905, -0.00478948513045907, 0.0005223402986302972, -0.005127647891640663, -0.023174483329057693, 0.022304922342300415, -0.0018150354735553265, -0.046321362257003784, -0.0037163367960602045, 0.018881889060139656, -0.02024834230542183, 0.02060720883309841, -0.03831588104367256, -0.0037439418956637383, 0.025093037635087967, 0.04262227937579155, 0.029261408373713493, -0.021324941888451576, -0.0005650419625453651, 0.004582446999847889, 0.02690117247402668, -0.022870827466249466, 0.0034489124082028866, -0.05824676528573036, 0.0014880875824019313, -0.0013845684006810188, -0.014837742783129215, 0.002995153656229377, -0.014768729917705059, -0.021421559154987335, -0.017460227012634277, 0.01544505450874567, -5.9685251471819356e-05, 0.006200795993208885, 0.03301570191979408, 0.016576863825321198, -0.04270509257912636, -0.0065355077385902405, 0.004506533034145832, 0.004213228821754456, 0.009848120622336864, -0.015058583579957485, 0.015624487772583961, 0.008219419047236443, 0.004879201762378216, 0.009420241229236126, -0.0012767359148710966, 0.009496155194938183, -0.011221474036574364, -0.028378045186400414, -0.010303604416549206, -0.013471289537847042, -0.021752821281552315, -0.007757033687084913, -0.009227005764842033, -0.0038888687267899513, -0.012732853181660175, 0.02414066158235073, 0.0006905588670633733, 0.02920619770884514, -0.013250448741018772, -0.018868086859583855, 0.035251714289188385, -0.045106735080480576, 0.009516858495771885, -0.03389906510710716, -0.004185623489320278, 0.056507643312215805, 0.020234540104866028, 0.05294658616185188, 0.06553450971841812, 0.018081342801451683, -0.004113160073757172, -0.01650785095989704, 8.933916979003698e-05, 0.05068296566605568, 0.0029088875744491816, 0.030724478885531425, 0.018978508189320564, 0.0030934966634958982, -0.0018754216143861413, 0.0033850756008177996, 0.0055831316858530045, 0.004796386696398258, -0.015362239442765713, -0.0003219876380171627, 0.020621011033654213, 0.005917843896895647, 0.017970921471714973, -0.004844695329666138, -0.0049965232610702515, -0.0024810086470097303, -0.02942703850567341, 0.027025394141674042, 0.006787404417991638, -0.015196608379483223, -0.018730061128735542, 0.047094304114580154, 0.017405016347765923, 0.015569278039038181, -0.04458224028348923, -0.015486462041735649, -0.00758450198918581, 0.03610747307538986, 0.04298114404082298, 0.027177223935723305, -0.0007000481127761304, -0.009385734796524048, 0.004520335700362921, -0.02081424742937088, -0.021600991487503052, 0.004506533034145832, -0.013029607944190502, -0.0025741758290678263, 0.023436732590198517, -0.037128861993551254, 0.010137973353266716, 0.0023912920150905848, 0.02444431744515896, 0.014271837659180164, 0.010275999084115028, -0.0020410523284226656, 0.0004960291553288698, 0.03682520613074303, 0.00890264566987753, -0.006904726382344961, 0.022649986669421196, 0.03445116803050041, -0.004461674485355616, -0.008785324171185493, -0.00011796868056990206, 0.00520011130720377, -0.007342956960201263, 0.008143505081534386, 0.04369887709617615, -0.00758450198918581, -0.007819144986569881, 0.017791489139199257, -0.007301549427211285, 0.03389906510710716, 0.05653524771332741, 0.03552776575088501, -0.015527869574725628, -0.014423665590584278, -0.021214520558714867, -0.005441655870527029, 0.02303645759820938, -0.01373353786766529, -0.005610737018287182, 0.05846760794520378, -0.008668001741170883, 0.006466495338827372, -0.014685913920402527, 0.042318619787693024, -0.008260826580226421, -0.004551391117274761, 0.0030986727215349674, -0.0016908125253394246, -0.02204267494380474, -0.014920557849109173, 0.026804553344845772, 0.012456802651286125, -0.020055105909705162, -0.03152502700686455, -0.05137309432029724, -0.03776377812027931, 0.00542785320430994, 0.01151822879910469, -0.026404280215501785, 0.03395427390933037, 0.0049102576449513435, -0.0032280716113746166, -0.028488464653491974, -0.008709409274160862, 0.009296017698943615, 0.03464440256357193, 0.0022170348092913628, 0.005041381809860468, 0.01412000972777605, -0.002945119282230735, 0.005410599987953901, -0.002334356540814042, -0.02690117247402668, 0.021421559154987335, -0.0036507747136056423, 0.002600055653601885, 0.012325678020715714, -0.008723212406039238, -0.031828682869672775, -0.014299442991614342, 0.025852177292108536, 0.031607840210199356, 0.007563797757029533, -0.008612792007625103, -0.00979290995746851, -0.018523024395108223, 0.010393320582807064, 0.0024465022142976522, 0.009558266960084438, -0.010759088210761547, 0.029951535165309906, 0.019558215513825417, 0.00633192015811801, -0.014189022593200207, 0.00869560707360506, 0.032270364463329315, 0.02501022256910801, -0.0024016438983380795, 0.0072739445604383945, 0.01937878131866455, -0.00305553968064487, 0.011435413733124733, 0.005524470936506987, 0.03588663414120674, 0.00024003499129321426, -0.0011956460075452924, 0.004616953432559967, 0.027632707729935646, 0.021670004352927208, 0.043781690299510956, -0.05896449834108353, -0.013098620809614658, -0.013878464698791504, -0.04038626328110695, -0.016342220827937126, 0.011697662062942982, 0.026749344542622566, 0.02179422788321972, 0.0287645161151886, -0.03895080089569092, -0.01595574989914894, -0.008833632804453373, -0.0024309742730110884, -0.0354173444211483, -0.0015165553195402026, 0.005175956524908543, -0.010793594643473625, 0.01990327797830105, -0.0008764619706198573, 0.029951535165309906, -0.0009506507194600999, 0.01456169132143259, 0.013436783105134964, -0.03254641592502594, 0.008668001741170883, -0.006249105092138052, 0.004440970718860626, 0.016300812363624573, -0.010248393751680851, -0.0077501325868070126, 0.0029416687320917845, -0.010165578685700893, -0.023643769323825836, 0.018288379535079002, -0.012422296218574047, -0.003421307308599353, 0.016590666025877, 0.05719777196645737, 0.004547940567135811, -0.014057897962629795, 0.02690117247402668, 0.013105521909892559, 0.01516900397837162, 0.017763882875442505, 0.020745234563946724, 0.027701720595359802, 0.03218754753470421, 0.037239283323287964, -0.05681129917502403, 0.022429145872592926, 0.018771469593048096, 0.0040510487742722034, -0.030752083286643028, 0.01106274500489235, 0.025962598621845245, -0.02081424742937088, 0.014465073123574257, 0.028709305450320244, -0.011131757870316505, 0.004830892663449049, 0.013512697070837021, -0.01748783141374588, 0.0010714230593293905, -0.005548625718802214, 0.03806743398308754, -0.013554105535149574, 0.002341257641091943, 0.01835739240050316, 0.020427774637937546, -0.0034799682907760143, 0.019654832780361176, 0.028847331181168556, -0.0034816935658454895, 0.006290512625128031, 0.062166690826416016, 0.008385050110518932, -0.002313652541488409, 0.018412603065371513, -0.00347306695766747, -0.018026132136583328, -0.043008748441934586, 0.010379518382251263, 0.001006723614409566, 0.04030345007777214, -0.02412685938179493, 0.006932331249117851, -0.049219898879528046, 0.0188128761947155, 0.000828584365081042, -0.03398188203573227, -0.007184227928519249, 0.05449246987700462, -0.026059215888381004, 0.005814324598759413, 0.011042040772736073, 0.0005706492229364812, 0.002793291350826621, -0.02466515824198723, -0.039006009697914124, -0.026514699682593346, 0.018868086859583855, -0.020772838965058327, -0.010931620374321938, 0.015348436310887337, 0.0029899775981903076, -0.013022706843912601, 0.0152242137119174, 0.028032980859279633, -0.0076052057556807995, 0.0091303875669837, -0.0020048206206411123, -0.014478876255452633, 0.029150987043976784, -0.018881889060139656, -0.02015172503888607, 0.006521705538034439, -0.014492678456008434, 0.008226320147514343, -0.040662314742803574, 0.029261408373713493, -0.01628701016306877, -0.016590666025877, -0.013630019500851631, 0.0005154390237294137, -0.02898535691201687, 0.004106258973479271, 0.006435439456254244, 0.0031763119623064995, -0.012153145857155323, 0.012732853181660175, 0.06906796246767044, 0.03588663414120674, 0.0071221161633729935, 0.020759036764502525, -0.017777685075998306, -0.013160732574760914, -0.020897062495350838, 0.027936363592743874, -0.0021997815929353237, -0.04242904111742973, 0.022401539608836174, -0.031607840210199356, -0.0015743534313514829, -0.02901296317577362, 0.00917869620025158, 0.047425564378499985, 0.002776038134470582, 0.005872985348105431, 0.013422980904579163, 0.008329839445650578, 0.03224276006221771, 0.021545782685279846, 0.004958566278219223, -0.03884037956595421, -0.015362239442765713, 0.024706566706299782, -0.02226351574063301, 0.03367822617292404, -0.006387130357325077, -0.010752187110483646, 0.010206986218690872, 0.0182607751339674, 0.003421307308599353, 0.039916977286338806, 0.003410955425351858, 0.00650790287181735, 0.029841115698218346, 0.032601624727249146, -0.0022929487749934196, -0.01714276894927025, -0.02986872009932995, -0.006242203526198864, 0.0031487068627029657, -0.015182806178927422, 0.028819726780056953, 0.026500897482037544, -0.03188389167189598, 0.019530609250068665, 0.010614161379635334, -0.03751533478498459, -0.015859130769968033, -0.0033678223844617605, -0.008329839445650578, -0.005538273602724075, -0.014085503295063972, 0.02035876363515854, 0.013091719709336758, -0.008668001741170883, 0.014754926785826683, 0.028626490384340286, -0.022111685946583748, -0.029592668637633324, -0.010048257187008858, 0.003819856094196439, 0.017639659345149994, -0.013416079804301262, -0.00935812946408987, 0.0015812547644600272, 0.0002518965629860759, 0.009606575593352318, 0.041021183133125305, -0.017460227012634277, -0.019433991983532906, 0.008039985783398151, 0.020731432363390923, 0.008191813714802265, 0.04240143671631813, -0.00908207893371582, 0.007149721495807171, 0.031028134748339653, -0.017667265608906746, 0.005797071382403374, 0.006445791572332382, 0.024416713044047356, -0.062497951090335846, 0.007957170717418194, -0.029316619038581848, -0.0019754900131374598, 0.017763882875442505, -0.024485725909471512, 0.0028485015500336885, 0.003947529476135969, 0.02157338708639145, 0.019999897107481956, -0.014354652725160122, 0.014989570714533329, 0.034589193761348724, -0.003954431042075157, 0.009944737888872623, -0.04328479990363121, 0.019654832780361176, -0.021173113957047462, -0.026735540479421616, -0.006856417283415794, 0.021863240748643875, 0.0050310296937823296, -0.03406469523906708, -0.0018374646315351129, 0.012118639424443245, -0.010565852746367455, 0.0008454062626697123, -0.0021152410190552473, -0.00807449221611023, 0.026832159608602524, 0.007135918829590082, 0.005276025272905827, 0.01750163547694683, -0.002788115292787552, 0.016204195097088814, -0.0453551821410656, -0.01500337291508913, 0.0051310984417796135, 0.016770100221037865, -0.011138658970594406, 0.025079235434532166, -0.0006978914607316256, 0.038702353835105896, 0.03456158936023712, 0.003136629704385996, 0.009275314398109913, -0.03779138624668121, -0.009730798192322254, -0.01410620752722025, 0.0017615505494177341, 0.020883260294795036, -0.003045187797397375, -0.005162154324352741, 0.03257402032613754, 0.03180107846856117, 0.017639659345149994, 0.0056245396845042706, 0.007812243886291981, -0.008481667377054691, 0.03906121850013733, -0.007625909522175789, -0.01062106341123581, -0.017294596880674362, 0.008088295347988605, 0.0021514727268368006, 0.01173906959593296, 0.008509272709488869, -0.009337426163256168, 0.03053124248981476, -0.0065424093045294285, 0.007204931695014238, 0.016894321888685226, 0.003664577379822731, 0.030172375962138176, -0.01649404875934124, -0.027508484199643135, -0.0044168164022266865, 0.04403013736009598, 0.024071648716926575, -0.05835718661546707, 0.02622484788298607, -0.0071221161633729935, -0.0014544437872245908, -0.005952350329607725, 0.017087558284401894, 0.012898484244942665, 0.019337374716997147, -0.022939840331673622, 0.00716352416202426, -0.006518254522234201, 0.027853548526763916, -0.014437468722462654, -0.010200085118412971, -0.011476821266114712, -0.015072385780513287, -0.016742493957281113, 0.009903330355882645, -0.03770856931805611, -0.005872985348105431, -0.03221515566110611, -0.02291223406791687, -0.013485092669725418, 0.020068909972906113, 0.004855047445744276, 0.05708735063672066, 0.0009325348655693233, 0.03886798396706581, 0.003188389353454113, 0.012318776920437813, 0.01882668025791645, -0.01570730283856392, 0.018647246062755585, -0.014271837659180164, -0.007073807530105114, -0.04358845576643944, 0.00013446704542730004, 0.005065536126494408, -0.00940643809735775, -0.020883260294795036, 0.023740388453006744, 0.005017227493226528, 0.0030210332479327917, 0.00824012327939272, -0.0031021232716739178, -0.0020358762703835964, 0.02378179505467415, 0.020510591566562653, 0.0033436680678278208, -0.024844592437148094, 0.03682520613074303, -0.005872985348105431, 0.006956485565751791, 0.017874304205179214, -0.008088295347988605, 0.011028238572180271, 0.022277317941188812, 0.007370562292635441, 0.007556896656751633, -0.006576915737241507, 0.0009299468947574496, -0.03911643102765083, -0.0026552658528089523, -0.013126226142048836, -0.011594142764806747, 0.006356074940413237, -0.0016390529926866293, -0.016425035893917084, -0.010641766712069511, -0.0004270164354238659, 0.015030978247523308, 0.010075862519443035, 0.03500327095389366, -0.0005956663517281413, 0.01982046291232109, 0.02146296761929989, -0.006124882027506828, 0.012084132991731167, 0.006004109513014555, -0.013630019500851631, -0.007667317055165768, -0.002462030155584216, -0.007529291789978743, -0.012387789785861969, -0.03754293918609619, 0.023933622986078262, 0.026362871751189232, 0.01783289574086666, -0.01089711394160986, 0.00206348136998713, -0.002770862076431513, 0.02400263585150242, -0.005462359637022018, -0.0022756955586373806, -0.024955011904239655, 0.009371932595968246, 0.00030149947269819677, 0.026542305946350098, 0.011580340564250946, 0.0009359854739159346, 0.025424299761652946, 0.024499528110027313, 0.029758300632238388, -0.004137314856052399, 0.00979981105774641, 0.07569319009780884, -0.0016062718350440264, 0.019061323255300522, 0.0044271680526435375, -0.0060869250446558, -0.0070013441145420074, 0.022622380405664444, -0.029509853571653366, 0.014575493521988392, -0.0012750106398016214, 0.05394037067890167, 0.011331894434988499, 0.0034972212743014097, 0.03831588104367256, 0.01106274500489235, -0.009247709065675735, -0.023450534790754318, 0.013091719709336758, -0.005807423498481512, 0.03450637683272362, -0.001411310862749815, 0.021973662078380585, 0.006028264295309782, 0.021214520558714867, -0.0143822580575943, 0.0023688627406954765, 0.00674944743514061, 0.0520632229745388, 0.01002065185457468, 0.021766623482108116, -0.027066802605986595, -0.0036369722802191973, 0.040910761803388596, 0.014092404395341873, -0.043340008705854416, 0.025493312627077103, 0.00886123813688755, -0.017418818548321724, -0.0066528297029435635, 0.004710120614618063, -0.046873465180397034, 0.0016261130804196, 0.02081424742937088, -0.00979981105774641, -0.014244232326745987, -0.011173165403306484, 0.0012379162944853306, 0.009482352994382381, 0.011311190202832222, -0.004741176497191191, -0.015348436310887337, -0.06835023313760757, 0.017957119271159172, 0.024278687313199043, -0.011145560070872307, -0.014865347184240818, 0.029289012774825096, 0.03574860841035843, 0.045879680663347244, 0.014409863390028477, 0.029095778241753578, 0.005900590680539608, 0.016342220827937126, 0.020717628300189972, 0.00045462153502739966]" -Processing and Protecting Hundreds of Terabytes of Blockchain Data: Zondax’s Story,"New ideas are always encouraged, and the diversity within the team has been helping us to identify various potential advancements we can make in leading blockchain projects.At the same time, our efforts in experimenting and searching for creative and efficient solutions led us to pay close attention to the latest technologies and innovations that we immediately incorporate into our work. We never get bored at Zondax!Since the Covid-19 pandemic, many companies and teams have switched to remote work temporarily or permanently, and for Zondax this is familiar ground. We adopted a culture of remote work from the start, which has been rewarding and encouraging as team members from around the globe often spark fun and constructive discussions despite nuanced cultural differences. And in terms of quality of work, the tools and platforms we have been using accommodate the needs for smooth communication and effective collaboration within different teams.About the ProjectZondax provides software services to various customers, including leading projects in the blockchain ecosystem and financial services. We consume and analyze blockchain data in numerous different ways and for multiple purposes:As input for other services and ecosystems provided by Zondax and for other third partiesTo apply data science and get value in the form of insights by using mathematical models for different blockchain dynamic sets of variablesFinancial servicesBlockchain data backupsThe minimal unit of division of a blockchain, a.k.a. a “block” on most networks, contains a timestamp field among several other sub-structures. It allows you to define blocks at a specific point in time throughout the blockchain history. So having a database engine that can leverage that property is a go-to option.Choosing (and Using!) TimescaleDB✨Editor’s Note:Want to know more about optimizing queries on hypertables with thousands of partitions using TimescaleDB?Check out this blog post.Our first encounter with TimescaleDB was througha blog post about database optimizations. We decided to go ahead and install it on our infrastructure since it’s built on top of PostgreSQL, and our main code and queries didn’t require to be updated. After installing the corresponding helm chart on our infrastructure, we decided to try it.The first tests denoted a substantial increase in performance when writing or querying the database, with no optimizations at all and without using hypertables. Those results encouraged us to keep digging into TimescaleDB’s configurations and optimizations, such as usingtimescaledb-tuneand",https://www.timescale.com/blog/processing-and-protecting-hundreds-of-terabytes-of-blockchain-data-zondaxs-story/,471,"[0.038066089153289795, 0.023348117247223854, 0.058761946856975555, 0.028171654790639877, 0.037076644599437714, -0.001310669002123177, -0.005424761213362217, 0.027965519577264786, -0.02183646708726883, 0.005967580713331699, 0.043975263833999634, -0.030892623588442802, -0.04845524579286575, -0.019788868725299835, 0.07107502222061157, 0.062170032411813736, -0.017755012959241867, -0.0290511604398489, -0.03776375949382782, 0.020173652097582817, 0.019362859427928925, 0.04188644140958786, 0.03828596696257591, -0.015762384980916977, 0.012361172586679459, -0.022922106087207794, -0.02940845862030983, 0.0538971833884716, 0.027333375066518784, -0.06706228107213974, 0.02819913811981678, -0.025340747088193893, -0.005850771442055702, 0.037598852068185806, -0.01695796102285385, -0.010657130740582943, 0.01977512799203396, -0.0007416531443595886, 0.03193703666329384, 0.012450496666133404, -0.03839590400457382, -0.011742769740521908, 0.030095571652054787, 0.030782686546444893, -0.01639452762901783, 0.007805609609931707, -0.03647198528051376, 0.0035867325495928526, -0.008245361968874931, 0.03397089242935181, -0.0465862974524498, 0.00720094982534647, -0.03784621134400368, -0.025725530460476875, -0.0029271035455167294, -0.027498282492160797, -0.001836310839280486, 0.012567305937409401, -0.015597476623952389, 0.004411268979310989, -0.02222125045955181, -0.04636641964316368, 0.046531327068805695, 0.07167968153953552, -0.016848023980855942, -0.01071897055953741, -0.031167469918727875, 0.011722156777977943, -0.012072584591805935, 0.020283591002225876, 0.05288025736808777, 0.03715910017490387, 0.010134924203157425, 0.03397089242935181, 0.0019256356172263622, -0.07102005183696747, 0.015583734959363937, 0.02105315774679184, 0.010107439942657948, -0.04312324523925781, -0.0010770504595711827, -0.0028635456692427397, -0.013646074570715427, -0.00013989201397635043, 0.032734088599681854, -0.020668374374508858, -0.0058370293118059635, -0.00013065892562735826, -0.01693047769367695, 0.03622462600469589, -0.013955275528132915, 0.05183584243059158, -0.00823162030428648, 0.0017349616391584277, 0.026440128684043884, 0.005139609333127737, 0.022001374512910843, 0.0009318977245129645, -0.006661565508693457, 0.02795177884399891, 0.0032689424697309732, -0.009131738916039467, -0.019541507586836815, -0.022592293098568916, 0.03715910017490387, 0.011440440081059933, 0.01852457970380783, -0.04548691585659981, 0.027182210236787796, 0.03773627430200577, -0.10554063320159912, -0.012450496666133404, -0.04405771940946579, -0.036114685237407684, -0.016119683161377907, -0.031524769961833954, -0.01760384812951088, -0.015432569198310375, -0.008162908256053925, -0.014580548740923405, -0.01550128124654293, 0.009365357458591461, -0.04922481253743172, 0.058047350496053696, -0.013845337554812431, -0.05953151360154152, -0.014910363592207432, -0.02499718964099884, -0.039275407791137695, 0.002277781255543232, 0.029106128960847855, 0.002633362542837858, 0.03320132568478584, -0.036609407514333725, -0.028171654790639877, -0.030397901311516762, -0.06854644417762756, 0.0024323819670826197, -0.04075957462191582, -0.017727529630064964, 0.004136423580348492, -0.040347304195165634, 0.06019114330410957, -0.010423512198030949, -0.04433256387710571, -0.00024693142040632665, -0.01984383910894394, 0.018964333459734917, -0.03911050036549568, -0.01349490974098444, -0.017260290682315826, 0.013982759788632393, -0.005881691817194223, -0.016724342480301857, 0.020489724352955818, 0.06524830311536789, 0.019582735374569893, 0.041803985834121704, -0.030645262449979782, -0.021575365215539932, 0.02073708549141884, 0.05667312443256378, -0.010217377915978432, -0.0041123745031654835, -0.012670373544096947, -0.03050784021615982, -0.042546067386865616, -0.03300893306732178, -0.08575176447629929, -0.01699918881058693, -0.01827722042798996, -0.05557374283671379, -0.026233993470668793, 0.011729028075933456, 0.03762633726000786, 0.0006665001274086535, -0.04150165617465973, -0.017507651820778847, 0.012883378192782402, -0.02488725073635578, -0.044827286154031754, 0.0012462520971894264, -0.020324818789958954, 0.006434818264096975, -0.0568929985165596, -0.022207509726285934, -0.07272409647703171, 0.03737897425889969, -0.009564620442688465, 0.030425386503338814, -0.04708101972937584, 0.06315947324037552, -0.0047754389233887196, 0.03410831466317177, 0.0037894309498369694, -0.031030045822262764, 0.010052470490336418, 0.04364544898271561, 0.0015554531710222363, 0.008169779554009438, 0.029573366045951843, 0.012505466118454933, 0.03446561470627785, -0.0053904056549072266, -0.0002690478868316859, 0.04754825681447983, 0.0041982633993029594, -0.029573366045951843, -0.058047350496053696, -0.06398401409387589, -0.015267662703990936, -0.007049784529954195, 0.025079643353819847, -0.018263477832078934, 0.0038890624418854713, -0.019142983481287956, -0.062279969453811646, 0.007730027195066214, -0.007269660942256451, -0.012560435570776463, -0.007462052628397942, 0.062170032411813736, 0.0013630614848807454, -0.008149166591465473, -0.00911799632012844, 0.02745705656707287, -0.00933787226676941, -0.010712100192904472, 0.07420825958251953, 0.038176026195287704, 0.04276594519615173, -0.01827722042798996, 0.0027415829245001078, -0.021561622619628906, 0.0010332469828426838, -0.004607096314430237, 0.021781498566269875, -0.049692049622535706, 0.014236992225050926, -0.02322443760931492, 0.0021867388859391212, 0.0010538604110479355, -0.01340558473020792, 0.02602786011993885, 0.0290511604398489, 0.01518520899116993, -0.02105315774679184, -0.05546380206942558, -0.02190517820417881, 0.021218065172433853, 0.01802985928952694, 0.00028665518038906157, -0.02165781892836094, -0.02676994353532791, -0.022028859704732895, -0.04031982272863388, -0.017823724076151848, 0.020256105810403824, 0.00447998009622097, 0.0038375291042029858, -0.008279717527329922, -0.04815291613340378, -0.029326004907488823, -0.0036863640416413546, -0.05799238011240959, 0.020860766991972923, 0.010121182538568974, 0.011474795639514923, -0.01937660202383995, 0.003169311210513115, 0.03256918117403984, 0.007132238242775202, 0.025340747088193893, -0.0520007498562336, -0.020998189225792885, -0.04807046055793762, 0.0005037400987930596, 0.008788181468844414, -0.006342057604342699, 0.014003373682498932, 0.03410831466317177, -0.02737460285425186, -0.009784496389329433, -0.00012561294715851545, -0.004699856508523226, 0.01093197613954544, -0.0028515211306512356, 0.01980261132121086, 0.03669186308979988, -0.009722656570374966, 0.01230620313435793, 0.0025869824457913637, 0.014113311655819416, -0.014772940427064896, 0.005191142670810223, -0.012814667075872421, -0.0025801111478358507, -0.034328192472457886, -0.042051348835229874, -0.036114685237407684, 0.052358049899339676, 0.006324879825115204, 0.03317384049296379, -0.0062836529687047005, -0.004668936133384705, -0.00632831547409296, -0.005809544585645199, 0.0009224499226547778, -0.0009525110945105553, 0.008259104564785957, 0.028281591832637787, -0.017878694459795952, -0.0024598664604127407, -0.011213692836463451, -0.0010272347135469317, -0.028996190056204796, 0.06387407332658768, -0.024365045130252838, -0.02681116946041584, -0.07200949639081955, -0.037598852068185806, -0.04916984215378761, 0.012855893932282925, 0.011035042814910412, 0.03682928532361984, -0.00030769803561270237, 0.018222250044345856, 0.0005810403963550925, -0.013646074570715427, -0.021946405991911888, 0.02951839752495289, -0.020709602162241936, 0.011667187325656414, -0.01695796102285385, -0.03534511849284172, -0.0381210595369339, 0.0290511604398489, 0.008719470351934433, -0.015240177512168884, 0.016724342480301857, -0.022949591279029846, 0.0041604721918702126, -0.03072771616280079, -0.01192829106003046, 0.035015303641557693, 8.744592923903838e-05, -0.008698857389390469, -0.012608532793819904, 0.020489724352955818, 0.015611219219863415, -0.043508026748895645, -0.04757573828101158, 0.018043601885437965, -0.027869325131177902, 0.029353490099310875, 0.026082828640937805, 0.00711162481456995, -0.03941283002495766, -0.07651696354150772, -0.018304703757166862, -0.007324629928916693, 0.014539321884512901, 0.02773190103471279, 0.00929664634168148, 0.016696859151124954, 0.03221188113093376, -0.03762633726000786, -0.032624151557683945, -0.03773627430200577, -0.023169467225670815, 0.036142170429229736, -0.005417889915406704, -0.032761573791503906, 0.015776125714182854, -0.014291960746049881, -0.0214791689068079, 0.07360360026359558, 0.048235367983579636, 0.033723533153533936, 0.05991629883646965, 0.019335374236106873, 0.0018552064429968596, 0.015034044161438942, -0.03809357434511185, 0.015336373820900917, 0.05650821700692177, -0.008492723107337952, 0.005156787112355232, -0.06255481392145157, -0.011213692836463451, 0.019761385396122932, -0.02506590075790882, -0.0010813449043780565, -0.03971515968441963, -0.02022862248122692, 0.0181672815233469, -0.026357674971222878, 0.023032044991850853, 0.07102005183696747, 0.02990318089723587, 0.0036520082503557205, -0.04438753426074982, -0.06145543232560158, -0.02584921009838581, 0.012732213363051414, -0.004751389846205711, -0.01834593154489994, -0.013508651405572891, 0.0004150595050305128, -0.025024674832820892, -0.0074070836417376995, -0.027676932513713837, 0.017232807353138924, 0.0030834218487143517, 0.021286776289343834, -0.010128052905201912, -0.019830096513032913, 0.03682928532361984, 0.0033153227996081114, 0.06140046566724777, -0.00534230750054121, 0.002379130572080612, -0.009241676889359951, -0.05650821700692177, -0.020640889182686806, 0.05909176170825958, 0.032871510833501816, -0.02358173578977585, -0.009537135250866413, -0.07173465192317963, 0.015336373820900917, 0.0023430571891367435, 0.039660193026065826, -0.02257855050265789, -0.03210194408893585, 0.027292149141430855, 0.017617590725421906, -0.0011431850725784898, 0.047493286430835724, 0.028391530737280846, -0.020311076194047928, 0.04147417098283768, -0.006864264141768217, 0.00981198064982891, -0.007496408652514219, -0.015666188672184944, -0.022207509726285934, -0.02833656221628189, -0.010341058485209942, -0.036252107471227646, 0.055738650262355804, -0.026440128684043884, 0.010780811309814453, 0.02425510808825493, -0.05496907979249954, -0.036142170429229736, 0.03355862572789192, -0.009564620442688465, -0.00798425916582346, -0.006238990928977728, -0.04452495649456978, 0.015020301565527916, -0.053677309304475784, -0.00810793973505497, -0.004050534218549728, -0.05469423532485962, 0.03380598500370979, -0.0017564339796081185, 0.03894559293985367, 0.007489537354558706, 0.006311137694865465, 0.029710788279771805, 0.002805141033604741, 0.01671059988439083, -0.03809357434511185, -0.004548691678792238, 0.04611906036734581, -0.0009636767208576202, 0.012574177235364914, 0.01778249815106392, 0.0001661955757299438, -0.014250734820961952, 0.007633831351995468, 0.05180836096405983, 0.034438129514455795, 0.01713661104440689, 0.0020046536810696125, 0.037461429834365845, -0.009578362107276917, 0.0035695547703653574, 0.013549878261983395, 0.011742769740521908, 0.06981073319911957, -0.016188394278287888, 0.01070522889494896, -0.001686863717623055, -0.04949965700507164, -0.029710788279771805, -0.0048063588328659534, -0.02261977642774582, 0.012794054113328457, 0.0022331189829856157, 0.010993815958499908, 0.07178962230682373, -0.007592604495584965, 0.00494378199800849, -0.001801955164410174, -0.023444313555955887, -0.017122868448495865, 0.032624151557683945, -0.0035214568488299847, -0.02062714844942093, 0.05958648398518562, 0.010224249213933945, -0.020462241023778915, 0.022702230140566826, 0.019472796469926834, -0.0018397464882582426, -0.030837655067443848, -0.009942532517015934, -0.011357986368238926, -0.026976076886057854, 0.0015640421770513058, -0.008430883288383484, 0.0016224468126893044, -0.002294959267601371, -0.05898182466626167, -0.036994192749261856, -0.036114685237407684, 0.0013965582475066185, 0.002715816255658865, -0.022207509726285934, 0.016270847991108894, -0.018483353778719902, -0.02065463177859783, -0.0032723781187087297, -0.023980261757969856, -0.0175351370126009, -0.0484277606010437, 0.008121681399643421, 0.019321631640195847, 0.05565619468688965, 0.022715972736477852, -0.009104253724217415, 0.00222281226888299, -0.008657630532979965, -0.020668374374508858, -0.004053969867527485, -0.0025302956346422434, 0.026233993470668793, 0.04862015321850777, -0.025615591555833817, -0.004449060186743736, -0.013701044023036957, 0.007730027195066214, 0.024983447045087814, -0.003363420721143484, 0.009736398234963417, 0.020558437332510948, 0.005599975120276213, 0.019898807629942894, -0.016916735097765923, 0.007558248937129974, 0.0017298082821071148, 0.005191142670810223, 0.025134611874818802, -0.003731026314198971, 0.00505715562030673, -0.06249984726309776, 0.04441501945257187, 0.004665500950068235, -0.050763946026563644, 0.016243362799286842, -0.012766568921506405, 0.009241676889359951, 0.057552628219127655, -0.028528952971100807, -0.026756200939416885, 0.02766318991780281, -0.0055759260430932045, -0.048097945749759674, -0.022207509726285934, -0.018016116693615913, 0.0217952411621809, -0.029078643769025803, 0.015638703480362892, 0.002372259506955743, 0.031057531014084816, 0.014023986645042896, -0.002327597001567483, -0.014772940427064896, -0.00435629952698946, -0.006166843697428703, 0.015487538650631905, 0.02119058184325695, -0.009303516708314419, 0.026330189779400826, 0.0230045598000288, -0.0029906616546213627, 0.023348117247223854, 0.008932475931942463, 0.017686301842331886, -0.03534511849284172, -0.060575928539037704, -0.036499470472335815, 0.033338747918605804, 0.02638515830039978, 0.0023808483965694904, 0.0405396968126297, -0.01174964103847742, 0.03174464404582977, 0.002001218032091856, 0.004912861622869968, -0.031194953247904778, 0.005149915814399719, 0.01791992038488388, -0.013817853294312954, -0.01506152842193842, 0.02954588085412979, 0.022248735651373863, -0.02228996343910694, -0.07294397056102753, 0.0020871073938906193, -0.04559685289859772, 0.017466425895690918, 0.029573366045951843, -0.029326004907488823, -0.0417490191757679, 0.006080954801291227, 0.03460303694009781, -0.0314972847700119, 0.014443126507103443, 0.043288152664899826, 0.0012290743179619312, 0.00310747092589736, 0.03240427374839783, -0.0034802299924194813, 0.04040227457880974, 0.015515022911131382, -0.022963333874940872, 0.016367044299840927, 0.026550065726041794, -0.01693047769367695, -0.01530888956040144, 0.004091761074960232, -0.025615591555833817, -0.004397526383399963, 0.04334311932325363, 0.0021334874909371138, -0.0248185396194458, -0.004905990324914455, -0.020860766991972923, 0.08679617941379547, 0.03342119976878166, 0.021025674417614937, -0.00999063067138195, 0.00012990740651730448, 0.0035317635629326105, 0.011536636389791965, 0.05043413117527962, -0.012725342065095901, -0.031772129237651825, -0.0034922545310109854, 0.019830096513032913, -0.040237367153167725, 0.021465426310896873, 0.007400212809443474, 0.03619714081287384, 0.03732400760054588, 0.04430507868528366, -0.0023207259364426136, 0.04202386364340782, 0.026536324992775917, 0.017906177788972855, 0.031085016205906868, 0.029271036386489868, 0.02403523027896881, -0.023444313555955887, 0.024062715470790863, 0.04936223477125168, -0.030232995748519897, 0.0010590137680992484, -0.034548066556453705, -0.0030920107383280993, 0.016050972044467926, -0.02136923000216484, 0.006269910838454962, 0.0248185396194458, 0.03050784021615982, 0.002937410259619355, 0.007063527125865221, -0.024420013651251793, 0.019500281661748886, -0.024296334013342857, 0.012457367964088917, -0.013323131017386913, 0.03836841881275177, 0.036114685237407684, -0.028226623311638832, -0.015954775735735893, 0.0012230620486661792, -0.0239252932369709, -0.05230307951569557, -0.008245361968874931, -0.022661004215478897, -0.0032105378340929747, 0.012608532793819904, -0.011392341926693916, 0.03930289298295975, -0.012003873474895954, -0.013879693113267422, -0.0007695671520195901, -0.04163907840847969, 0.028831282630562782, -0.00579580245539546, -0.0033582672476768494, -0.015844836831092834, 0.007537635508924723, -0.009860078804194927, -0.01267724484205246, -0.027580736204981804, -0.023513024672865868, -0.02553313784301281, -0.0269485916942358, 0.030645262449979782, 0.004641451872885227, 0.03647198528051376, 0.005332001019269228, 0.027044788002967834, -0.01874445751309395, -0.01596851833164692, -0.011357986368238926, 0.03955025598406792, -0.012814667075872421, 0.006987944710999727, -0.011550378054380417, -0.016202136874198914, -0.013982759788632393, -0.026976076886057854, -0.024543695151805878, 0.013920919969677925, -0.02080579660832882, -0.021382972598075867, -0.02125929296016693, 0.00933100190013647, -0.05749765783548355, 0.03666437789797783, 0.029133612290024757, -0.0236092209815979, -0.006527578458189964, -0.024763571098446846, 0.012210006825625896, -0.014484353363513947, -0.01274595595896244, -0.00901492964476347, -0.016050972044467926, -0.013735399581491947, 0.0013407302321866155, 0.0031486977823078632, 0.025203322991728783, -0.013089512474834919, 0.036362048238515854, -0.033943407237529755, 0.03572990372776985, -0.020682116970419884, 0.01798863150179386, -0.020847024396061897, -0.0025577801279723644, -0.004857892636209726, -0.023238178342580795, 0.022454869002103806, 0.02009119838476181, 0.002138640731573105, 0.004638016223907471, 0.05131363868713379, -0.009715785272419453, 0.0011818353086709976, 0.0041123745031654835, 0.022853394970297813, -0.0006420217105187476, 0.023059530183672905, 0.0019118933705613017, -0.023018302395939827, -0.019046787172555923, 0.012690986506640911, -0.018579550087451935, 0.039165470749139786, -0.034905366599559784, -0.01980261132121086, -0.016422012820839882, -0.03100256249308586, 0.02595914900302887, -0.03050784021615982, 0.02119058184325695, 0.01962396129965782, -0.019184209406375885, 0.0008829408907331526, -0.07305391132831573, -0.07563745975494385, 0.016422012820839882, -0.005517521407455206, -0.01258791983127594, -0.017837466672062874, 0.013982759788632393, 0.017947405576705933, 0.03075520135462284, -0.012189393863081932, 0.030535325407981873, -0.04031982272863388, 0.013309388421475887, -0.03677431493997574, -0.016628148034214973, 0.005617152899503708, -0.0024839153047651052, -0.008369042538106441, 0.01735648699104786, 0.022977076470851898, -0.037708789110183716, 0.009028671309351921, -0.02073708549141884, 0.04669623449444771, 0.012148167006671429, -0.022523581981658936, -0.004284152761101723, 0.032156914472579956, 0.041116874665021896, -0.005854207091033459, 0.034932851791381836, -0.037708789110183716, -0.03377849981188774, -0.0003596609749365598, -0.017576362937688828, 0.00768880033865571, -0.009248548187315464, -0.013845337554812431, -0.006661565508693457, 0.014010244980454445, -0.011873321607708931, -0.017548879608511925, 0.016312075778841972, -0.018497096374630928, 0.021712787449359894, -0.04765819385647774, -0.005971016362309456, 0.04949965700507164, -0.03234930336475372, 0.004689549561589956, 0.004871634766459465, 0.011179337278008461, -0.003672621678560972, 0.0015657598851248622, -0.0042051346972584724, 0.03240427374839783, -0.0689861997961998, -0.02591792121529579, -0.0015803610440343618, -0.007517022080719471, -0.018909364938735962, 0.04271097481250763, -0.0027106627821922302, -0.044469986110925674, -0.030672747641801834, 0.016380786895751953, -0.0005187707138247788, 0.024117683991789818, -0.039165470749139786, -0.02022862248122692, 0.03124992363154888, 0.04853769764304161, 0.03289899602532387, -0.0163533017039299, 0.003710412885993719, -0.005524392705410719, 0.014635518193244934, -0.004682678729295731, -0.006476045120507479, -0.03930289298295975, 0.011653445661067963, -0.027319634333252907, -0.0447998009622097, 0.0012728777946904302, 0.003518021199852228, -0.022977076470851898, -0.014127054251730442, 0.010945718735456467, 0.007475795224308968, -0.004208570346236229, 0.019500281661748886, 0.007063527125865221, -0.009200450032949448, -0.010815166868269444, -0.02246861159801483, -0.004988444037735462, -0.006318008992820978, -0.020778313279151917, -0.0009653944871388376, 0.008039228618144989, 0.0032929915469139814, 0.0020785185042768717, 0.0157211571931839, 0.03015054203569889, 0.0008820819784887135, -0.01831844635307789, -0.0290511604398489, -0.03015054203569889, -0.008259104564785957, -0.017906177788972855, -0.004297894891351461, -0.014168281108140945, 0.003858142299577594, 0.00419482821598649, -0.022070085629820824, 0.01537760067731142, 0.008059841580688953, -0.010375414043664932, 0.024873510003089905, -0.037461429834365845, 0.025134611874818802, -0.03424573689699173, -0.0199812613427639, 0.06090574339032173, 0.011165594682097435, 0.026357674971222878, 0.045322008430957794, 0.020214879885315895, -0.0009284621337428689, -0.01809857040643692, -0.003461334388703108, 0.045926667749881744, -0.01061590388417244, 0.04081454128026962, -0.007681929040700197, 0.00030619496828876436, -0.010045599192380905, 0.009578362107276917, 0.005359485279768705, 0.017370229586958885, -0.0178512092679739, -0.016339559108018875, 0.017617590725421906, 0.00048527392209507525, 0.02485976740717888, -0.017507651820778847, -0.009825723245739937, -0.013982759788632393, -0.029600851237773895, 0.026110313832759857, 0.03199200704693794, -0.020970704033970833, -0.016119683161377907, 0.033228810876607895, -6.924816261744127e-05, 0.00807358417659998, -0.04392029717564583, -0.01040289830416441, -0.009255419485270977, 0.013769755139946938, 0.023815354332327843, 0.005493472795933485, 0.013453682884573936, -0.02219376713037491, 0.010258604772388935, -0.005854207091033459, -0.016916735097765923, -0.0016379068838432431, -0.026893623173236847, -0.005177400540560484, 0.04177650064229965, -0.009660815820097923, 0.005888562649488449, 0.012910863384604454, 0.03397089242935181, 0.028144169598817825, -0.00455899816006422, -0.0006428805645555258, 0.013996502384543419, 0.03243175894021988, 0.030700232833623886, -0.017521394416689873, 0.012106940150260925, 0.02546442672610283, 0.004139858763664961, 0.0033926230389624834, -0.011323630809783936, 0.009523393586277962, -0.00028901713085360825, 0.008197263814508915, 0.016160909086465836, 0.014800425618886948, -0.006424511317163706, 0.008698857389390469, -0.013391842134296894, 0.04639390483498573, 0.06629271060228348, 0.030232995748519897, -0.018978076055645943, -0.02716846764087677, -0.009970016777515411, 0.001045271405018866, 0.010217377915978432, -0.0002860109962057322, -0.007228434085845947, 0.055491287261247635, -0.013625460676848888, 0.037461429834365845, 0.005723655689507723, 0.05277031660079956, 0.001238522119820118, 0.002909925766289234, 0.002172996522858739, 0.002227965509518981, -0.02365044690668583, -0.008582048118114471, 0.015569992363452911, 0.0011921419063583016, -0.026893623173236847, -0.03251421079039574, -0.042683493345975876, -0.042656008154153824, 0.035015303641557693, -0.004431882407516241, -0.03229433670639992, 0.021341746672987938, 0.013707914389669895, 0.005108688957989216, -0.02396651916205883, -0.0071597229689359665, 0.006881441920995712, 0.01365294586867094, 0.008850022219121456, 0.001858642091974616, -0.011516022495925426, 0.008382785134017467, 0.00402648514136672, 0.008286588825285435, -0.034053344279527664, 0.018428385257720947, -0.007379599381238222, 0.0011380317155271769, 0.008355299942195415, 0.006829908583313227, -0.04026485234498978, -0.009269161149859428, 0.02598663419485092, 0.030562808737158775, 0.03366856276988983, -0.019211694598197937, 0.00452464260160923, -0.0007407942903228104, 0.00933100190013647, -0.0018277219496667385, 0.01596851833164692, 0.004751389846205711, 0.03666437789797783, 0.015336373820900917, 0.00176931731402874, -0.01717783883213997, 0.02004997245967388, 0.031139984726905823, 0.015487538650631905, -0.020860766991972923, -0.009846337139606476, 0.03847835585474968, -0.01682053878903389, 0.00620463490486145, 0.023884065449237823, 0.03421825170516968, -0.029573366045951843, 0.01537760067731142, -0.0026900493539869785, 0.005995065439492464, 0.017260290682315826, 0.043040789663791656, -0.055958524346351624, -0.01471797190606594, -0.002449559746310115, -0.023087013512849808, -0.019321631640195847, 0.007015428971499205, 0.009757012128829956, 0.019816353917121887, 0.026055345311760902, -0.04636641964316368, 0.0021145918872207403, -0.013831594958901405, -0.021396715193986893, -0.02304578758776188, 0.009605847299098969, 0.04589918255805969, -0.012271847575902939, 0.03012305684387684, -0.01995377615094185, 0.026233993470668793, -0.009076769463717937, 0.018716972321271896, 0.009282903745770454, -0.0022365543991327286, 0.0037756888195872307, -0.0022554502356797457, 0.006867699790745974, 0.006819601636379957, -0.009750140830874443, -0.00021289782307576388, 0.009763883426785469, -0.03325629606842995, -0.010382285341620445, 0.015047785826027393, -0.022977076470851898, -0.005613717250525951, 0.002284652553498745, 0.058761946856975555, 0.0022365543991327286, -0.0011844119289889932, 0.017727529630064964, -0.01440189965069294, 0.026797426864504814, 0.026618776842951775, 0.011090012267231941, 0.005957274232059717, 0.016793053597211838, 0.039880067110061646, -0.06151040270924568, -0.0016241646371781826, 0.022454869002103806, 0.007255918812006712, -0.030205510556697845, 0.008595789782702923, 0.017150353640317917, 0.00946155283600092, 0.009695171378552914, 0.018716972321271896, -0.023980261757969856, 0.008637016639113426, -0.007551377639174461, -0.017150353640317917, -0.015556249767541885, -0.022413643077015877, 0.04892248287796974, -0.022977076470851898, -0.020366044715046883, 0.014704229310154915, 0.01328190416097641, 0.005971016362309456, 0.03251421079039574, 0.02428259141743183, -0.008815666660666466, 0.009145480580627918, 0.06326941400766373, 0.018483353778719902, -0.0029958148952573538, 0.015226435847580433, -0.01171528548002243, -0.01337122917175293, -0.046036604791879654, -0.009805110283195972, -0.018332188948988914, 0.03647198528051376, -0.021987631916999817, 0.011069398373365402, -0.05433693528175354, 0.015528765507042408, -0.008527078665792942, -0.010347929783165455, -0.005620588548481464, 0.05178087577223778, -0.014690486714243889, 0.0006523284246213734, 0.0320744588971138, 0.024296334013342857, 0.009090512059628963, -0.018304703757166862, -0.026660004630684853, -0.01646324060857296, 0.01710912585258484, -0.0043734777718782425, -0.0031779001001268625, 0.011990130878984928, 0.005469423718750477, -0.008520207367837429, 0.017411457374691963, 0.0006806718301959336, -0.0023258791770786047, 0.009324130602180958, 0.0031401088926941156, -0.001062449300661683, 0.012594791129231453, -0.01852457970380783, -0.01068461500108242, -0.01286963652819395, -0.005922918673604727, 0.0011474796338006854, -0.03559248149394989, 0.021273033693432808, 0.0010401180479675531, -0.0232931487262249, 0.011419827118515968, -0.0013433069689199328, -0.0017323849024251103, 0.003086857497692108, 0.016449498012661934, 0.007091011386364698, -0.009028671309351921, 0.012958960607647896, 0.0762421190738678, 0.021149354055523872, -0.0032448936253786087, -0.00753076421096921, -0.021850209683179855, -0.019788868725299835, -0.03234930336475372, 0.012354301288723946, 0.0026247736532241106, -0.038780685514211655, 0.013467424549162388, -0.01164657436311245, 0.003463052213191986, -0.01901930198073387, -0.009262289851903915, 0.03037041798233986, -0.004672371782362461, 0.008987444452941418, 0.016628148034214973, -0.004861328285187483, 0.010265476070344448, 0.02866637520492077, 0.0030387595761567354, -0.029326004907488823, -0.011667187325656414, 0.03537260368466377, -0.04163907840847969, 0.05109376087784767, -0.019926292821764946, 0.005290774162858725, -0.014319445937871933, 0.013714785687625408, -0.003377162851393223, 0.04370041936635971, 0.011509151197969913, 0.014429383911192417, 0.04699856415390968, 0.03075520135462284, -0.0026402336079627275, -0.015611219219863415, -0.03765382245182991, -0.008204135112464428, 0.013714785687625408, -0.021218065172433853, 0.021891437470912933, 0.014621775597333908, -0.03803860396146774, 0.009894434362649918, 0.019610220566391945, -0.018909364938735962, -0.00620463490486145, -0.011220564134418964, -0.017438940703868866, 0.01614716835319996, -0.030782686546444893, 0.01870322972536087, 0.012024486437439919, -0.008417140692472458, 0.01706789992749691, 0.027690675109624863, -0.04312324523925781, -0.023774128407239914, -0.01488287840038538, 0.003518021199852228, 0.019940033555030823, -0.019088013097643852, -0.009846337139606476, 0.005747704766690731, -0.005496907979249954, 0.00711162481456995, 0.021245550364255905, -0.0010375414276495576, -0.03375101462006569, 0.015886064618825912, 0.012141295708715916, 0.017452683299779892, 0.04235367849469185, 0.0020441627129912376, -0.015597476623952389, 0.03537260368466377, 0.009647074155509472, 0.00444562453776598, 0.013137610629200935, 0.014374414458870888, -0.057442691177129745, 0.021740272641181946, -0.01867574453353882, 0.0011981541756540537, 0.01409956905990839, -0.029573366045951843, 0.0053766630589962006, 0.015363858081400394, 0.026687489822506905, 0.02598663419485092, -0.021932663396000862, 0.014127054251730442, 0.05007683485746384, 0.004387219902127981, 0.013268162496387959, -0.03289899602532387, 0.0232931487262249, -0.03232181817293167, -0.02918858267366886, 0.00904928520321846, 0.006984509062021971, 0.004651758354157209, -0.020393529906868935, -0.011213692836463451, 0.0038237867411226034, -0.0019376601558178663, -0.012230620719492435, -0.015075271017849445, -0.036252107471227646, 0.023306891322135925, 0.019514024257659912, 0.0030542195308953524, 0.012182522565126419, -0.005596539471298456, -0.005599975120276213, -0.0251071285456419, -0.03559248149394989, 0.0014463739935308695, 0.008080454543232918, 0.0003918694274034351, 0.01756262220442295, -0.0193491168320179, 0.044360049068927765, 0.02080579660832882, -0.0008425729465670884, 0.00033711508149281144, -0.02788306586444378, -0.004864763934165239, 0.0028171653393656015, 0.014704229310154915, -0.00810793973505497, -0.0075994753278791904, 0.0015734899789094925, 0.04554188251495361, 0.023100756108760834, 0.009406584315001965, 0.017727529630064964, 0.0018483353778719902, -0.008966831490397453, 0.023087013512849808, -0.02766318991780281, -0.010389156639575958, -0.005472859367728233, 0.020008746534585953, -0.00970891397446394, 0.009880692698061466, 0.0049747019074857235, -0.014910363592207432, 0.027209695428609848, -0.006159972865134478, 0.020558437332510948, -0.018304703757166862, 0.0007304875762201846, 0.030590293928980827, -0.0027742208912968636, -0.02143794111907482, -0.007523892913013697, 0.05373227596282959, 0.02613779902458191, -0.03930289298295975, 0.02396651916205883, -0.01589980721473694, -0.009344743564724922, -0.013783496804535389, 0.008101068437099457, 0.005861078388988972, 0.015363858081400394, -0.013288775458931923, 0.0120931975543499, 0.007647573482245207, -0.001017786911688745, -0.017026672139763832, 0.00047367886872962117, -0.0239252932369709, -0.01286963652819395, -0.0014060060493648052, -0.0032380225602537394, -0.03295396268367767, 0.01870322972536087, -0.021273033693432808, -0.0056893001310527325, -0.03377849981188774, 0.011921419762074947, 0.007091011386364698, 0.05092885345220566, -0.007778124883770943, 0.03309138864278793, 0.006812730338424444, -0.005606846418231726, 0.009028671309351921, -0.01664188876748085, 0.022317446768283844, -0.005108688957989216, -0.007510150782763958, -0.04914236068725586, -0.0027226873207837343, 0.006462302524596453, -0.02371915802359581, -0.009008058346807957, 0.022606035694479942, -0.026261478662490845, -0.015212693251669407, -0.00911799632012844, -0.006173714995384216, 0.009324130602180958, 0.01518520899116993, 0.012120682746171951, 0.005277032032608986, -0.031662192195653915, 0.037818729877471924, -0.009344743564724922, 0.001642201328650117, 0.009633331559598446, -0.01346055418252945, 0.01574864238500595, 0.011124367825686932, 0.026357674971222878, 0.016614405438303947, -0.010890749283134937, 0.0006265616393648088, -0.014484353363513947, -0.01639452762901783, -0.016243362799286842, -0.013426197692751884, -0.025478169322013855, -0.012800924479961395, -0.002592135686427355, -0.014195765368640423, -0.0005891998298466206, -0.0006780951516702771, -0.018126053735613823, 0.013749141246080399, 0.002415203955024481, 0.01628459058701992, 0.02503841742873192, -0.007207820657640696, 0.030040603131055832, 0.0018483353778719902, -0.007132238242775202, -0.008691986091434956, -0.0008198122959583998, -0.005438503343611956, -0.002605878049507737, -0.016902992501854897, 0.024021489545702934, 0.02239990048110485, 0.016119683161377907, 0.00871259905397892, -0.016092197969555855, -0.012244363315403461, -0.0014403617242351174, 0.014085827395319939, 0.001199872000142932, -0.015460054390132427, 0.023348117247223854, -0.004449060186743736, 0.019156724214553833, 0.04042975977063179, -0.010093697346746922, 0.026371417567133904, 0.024942221119999886, 0.006156537216156721, -0.007310887798666954, 0.009509650990366936, 0.06794178485870361, 0.011412955820560455, 0.009124867618083954, -0.00765444478020072, -0.02407645806670189, -0.0010847804369404912, 0.029738273471593857, -0.00933100190013647, 0.007338372524827719, 0.01011431124061346, 0.05103879049420357, 0.003909675870090723, 0.014443126507103443, 0.023265663534402847, 0.0041604721918702126, -0.029106128960847855, 0.0039028048049658537, -0.0056824288330972195, -0.0038615779485553503, 0.014023986645042896, 0.009193578734993935, 0.024626148864626884, -0.005143044516444206, 0.029600851237773895, -0.019898807629942894, 0.008211006410419941, -0.0056824288330972195, 0.0520007498562336, -0.005290774162858725, 0.029573366045951843, -0.04141920432448387, -0.003030170686542988, 0.03993503749370575, -0.0016542257508262992, -0.04669623449444771, 0.03048035502433777, 0.018002374097704887, -0.038203511387109756, -0.027195952832698822, 0.028391530737280846, -0.044607408344745636, 0.016160909086465836, 0.012484852224588394, -0.005149915814399719, 0.002344774780794978, -0.015418827533721924, -0.0028996190521866083, 0.02105315774679184, 0.025478169322013855, 0.0013338591670617461, 0.000702573568560183, -0.06733712553977966, 0.01948653906583786, 0.037571366876363754, 0.006135923787951469, -0.009853207506239414, 0.007791867479681969, 0.01070522889494896, 0.027965519577264786, 0.010904491879045963, 0.024914735928177834, -0.0015889500500634313, 0.022564807906746864, 0.009310388006269932, -0.013013930059969425]" -Processing and Protecting Hundreds of Terabytes of Blockchain Data: Zondax’s Story,"converting critical tables to hypertables.“If Timescale didn’t exist, we would have a problem and might need to wait a couple of weeks to process a few dozens of terabytes rather than waiting only 1-2 days”Long story short, we went from having to wait a couple of weeks to process a few dozens of terabytes to only 1-2 days. Among the top benefits of TimescaleDB, I would highlight having the best possible write and read performance. It is a critical part of our ecosystem because it helps us provide fast and responsive services in real time. Using TimescaleDB also allows our software to stay synced with the blockchain's nodes, which is one of the most significant acknowledged advantages of our software and services. Last but not least, we also use TimescaleDB for blockchain data backups to protect data integrity.Before finding out about TimescaleDB, we first used custom PostgreSQL modifications like indexing strategies and high-availability setups. Also, our team did some benchmarking using NoSQL databases like MongoDB, but with no substantial improvements on the write/read speeds that we needed.If Timescale didn’t exist, we would have a problem and might need to wait a couple of weeks to process a few dozens of terabytes rather than waiting only 1-2 days.We are glad that we chose Timescale and proud of the work that has been expedited and achieved. For example, despite many challenges, we didn't give up on experimenting with new approaches to process a tremendous amount of blockchain data. Instead, we continued exploring new ideas and tools until we eventually started using TimescaleDB, which drastically shortened the time to process data and accelerated our progress in delivering quality results for the projects.Current Deployment & Future Plans✨Editor’s Note:Read how you canadd TimescaleDB to your Kubernetes deployment strategyquickly and easily.We deploy TimescaleDB using a custom helm chart that fits our infrastructure needs. As far as programming languages, we mainly use Golang to interact with TimescaleDB; and Hasura as the main query engine for external users.Advice & Resources✨Editor’s Note:Want to learn how to create a hypertable using TimescaleDB?Check out our documentation on hypertables and chunks.I’d recommend reading the blog postson how to get a working deployment,hypertables, andTimescale vs. vanilla Postgres's performance using the same queries.A wise man (Yoda) once said, ""You must unlearn what you have learned."" It is inevitable",https://www.timescale.com/blog/processing-and-protecting-hundreds-of-terabytes-of-blockchain-data-zondaxs-story/,505,"[-0.012011568993330002, 0.01568857952952385, 0.08606306463479996, 0.023238709196448326, 0.07379235327243805, 0.012158649042248726, -0.016613084822893143, 0.026922723278403282, -0.019036410376429558, 0.016725147143006325, 0.03468296676874161, -0.010806909762322903, -0.004093738738447428, -0.023070616647601128, 0.05292094126343727, 0.020521223545074463, 0.006177378352731466, -0.028771735727787018, -0.012662924826145172, 0.04602917283773422, -0.021123552694916725, 0.028169404715299606, 0.03235769644379616, 0.030872883275151253, 0.005203845910727978, 0.005701117683202028, -0.021571798250079155, 0.041014429181814194, 0.035747550427913666, -0.049895286560058594, 0.002232471015304327, -0.03487907350063324, -0.04737390950322151, 0.015590526163578033, 0.028995856642723083, 0.007150910794734955, 0.03345029428601265, 0.01891034096479416, 0.003708528121933341, 0.024429360404610634, -0.019848855212330818, -0.0016047526150941849, -0.010967997834086418, 0.031881436705589294, -0.018602173775434494, -0.003726037684828043, -0.01089795958250761, -0.04594512656331062, 0.014848120510578156, 0.06348271667957306, -0.04684161767363548, 0.02382703125476837, -0.04221908748149872, -0.016262894496321678, 0.0351872444152832, -0.0007021339843049645, -0.0070038302801549435, 0.02420523762702942, 0.007035347633063793, -0.035915642976760864, -0.01058979146182537, -0.07031845301389694, 0.03300204873085022, 0.04726184532046318, -0.02888379618525505, 0.025563981384038925, -0.017369499430060387, 0.02978028729557991, -0.051884375512599945, 0.03899732604622841, 0.042919471859931946, 0.02367294579744339, 0.003939654678106308, -0.010540764778852463, 0.01580064184963703, -0.06919784098863602, 0.00046312829363159835, 0.0718873143196106, 0.029163949191570282, -0.005336918868124485, 0.02301458641886711, -0.015562511049211025, -0.025690048933029175, 0.03880121931433678, 0.03891327977180481, -0.022874509915709496, -0.015716595575213432, -0.016444994136691093, -0.014525944367051125, -0.0018139920430257916, 0.014056687243282795, 0.047766122967004776, -0.011101070791482925, 0.0055715469643473625, 0.003750551026314497, 0.018896333873271942, -0.017509575933218002, 0.0176356453448534, -0.006373485550284386, 0.02847757376730442, 0.036111749708652496, 0.007445071823894978, -0.019792824983596802, -0.018083889037370682, 0.047850169241428375, -0.014294818043708801, 0.0029906355775892735, -0.005732635036110878, 0.013349300250411034, 0.01289405208081007, -0.09642873704433441, -0.02860364317893982, -0.05488201603293419, -0.01895236410200596, -0.012788994237780571, -0.006352473981678486, -0.0026421949733048677, 0.008929884061217308, -0.0026999765541404486, 0.0022132103331387043, -0.0009069960215128958, 0.009097975678741932, -0.012305730022490025, 0.030284563079476357, -0.009259063750505447, -0.014385867863893509, 0.03443083167076111, -0.02700676955282688, -0.05580652132630348, 0.010022480972111225, 0.03731640800833702, -0.007977362722158432, 0.016192855313420296, -0.0675729513168335, -0.022622371092438698, -0.0035964669659733772, -0.06583600491285324, -0.004093738738447428, -0.007676198147237301, -0.01816793531179428, -0.02256634086370468, -0.0493069663643837, 0.03409464657306671, -0.015086250379681587, -0.04611321911215782, 0.03580357879400253, -0.013265254907310009, 0.049895286560058594, -0.05426567792892456, -0.0007564136758446693, 0.0016677870880812407, 0.014764074236154556, -0.0032847963739186525, -0.021375689655542374, 0.032329682260751724, 0.006877761334180832, 0.011612351052463055, 0.04151870682835579, -0.018882326781749725, -0.03964167833328247, -0.014778082258999348, 0.05799171328544617, -0.009259063750505447, 0.02049320749938488, 0.01279599778354168, -0.03443083167076111, -0.04485252872109413, -0.026880700141191483, -0.08992917835712433, -0.029752271249890327, -0.01645900122821331, -0.05390147864818573, -0.007424060255289078, 0.034570906311273575, 0.03563548997044563, 0.01365046575665474, -0.024961650371551514, -0.05894423648715019, 0.032161589711904526, -0.03193746507167816, -0.04216305911540985, 0.033758461475372314, -0.038605112582445145, 0.02958417870104313, -0.0397537425160408, -0.0035054171457886696, -0.07429663091897964, 0.022622371092438698, 0.012922067195177078, 0.044180162250995636, -0.045160699635744095, 0.05138009786605835, -0.0023672946263104677, 0.024751536548137665, 0.016248885542154312, -0.034206707030534744, 0.041210535913705826, 0.010771891102194786, -0.02435932122170925, 0.018055874854326248, 0.05513415113091469, 0.00841160025447607, 0.025970201939344406, 0.009700304828584194, 0.012880044057965279, -0.0004270147765055299, -0.014525944367051125, -0.030368607491254807, -0.048578567802906036, -0.039053358137607574, -0.004146267659962177, 0.008075416088104248, -0.027076808735728264, 0.01098200585693121, -0.0021291645243763924, -0.0053089032880961895, -0.06869357079267502, -0.0034826546907424927, 0.005935746245086193, -0.028743719682097435, -0.015828656032681465, 0.0447404682636261, 0.0015303369145840406, -0.022664394229650497, -0.028057344257831573, 0.02004496194422245, 0.006548581179231405, -0.014224779792129993, 0.027763184159994125, 0.02273443341255188, 0.011941530741751194, -0.04799024388194084, 0.022622371092438698, -0.03022853098809719, 0.010428703390061855, -0.007024841848760843, 0.01462399773299694, -0.046141233295202255, -0.014960181899368763, -0.05577850341796875, 0.01577262580394745, 0.004072727169841528, -0.03473899886012077, 0.014834112487733364, 0.005084780976176262, 0.02501768246293068, -0.03810083866119385, -0.07541724294424057, 0.003754053032025695, 0.04289145767688751, 0.009238052181899548, 0.004111248534172773, -0.003191995667293668, -0.023883061483502388, -0.03381449356675148, -0.09441163390874863, -0.0007918705814518034, 0.013174205087125301, 0.04342374950647354, 0.023490846157073975, 0.005554037634283304, -0.03482304513454437, 0.003326819511130452, -0.011115078814327717, -0.045160699635744095, 0.04006190970540047, 0.009854389354586601, -0.03246975690126419, -0.008208489045500755, -0.0292199794203043, 0.06365080922842026, 0.0445723757147789, 0.02216011844575405, -0.06348271667957306, -0.02032511495053768, -0.032777924090623856, -0.0010549519211053848, 0.0008247010409832001, -0.012697944417595863, 0.0030379113741219044, 0.020227061584591866, -0.01959671638906002, 0.015702588483691216, -0.000576065038330853, 0.04132260009646416, 0.01016255747526884, 0.011171109043061733, 0.03588762506842613, 0.021403705701231956, -0.043367717415094376, 0.01662709377706051, 0.01470804400742054, 0.03541136533021927, -0.009336105547845364, 0.019036410376429558, 0.038240913301706314, -0.015198311768472195, 0.00871976837515831, -0.053677354007959366, -0.04098641499876976, -0.0023742984049022198, 0.010190573520958424, 0.01493216585367918, -0.025353865697979927, 0.008299538865685463, 0.016809193417429924, -0.013643461279571056, -0.02057725377380848, 0.0016800437588244677, 0.03364640101790428, 0.0032988041639328003, -0.02770715206861496, 0.010428703390061855, 0.0006500430172309279, -0.02924799546599388, -0.03597167134284973, 0.06841341406106949, -0.023154662922024727, -0.012662924826145172, -0.04572100564837456, -0.039865802973508835, -0.09906217455863953, -0.015576519072055817, 0.02110954374074936, 0.03857709839940071, -0.009378128685057163, 0.037988774478435516, 0.010316642001271248, 0.032609835267066956, 0.012606894597411156, 0.002232471015304327, -0.029079902917146683, 0.02452741377055645, 0.012438802979886532, -0.02391107752919197, -0.04602917283773422, 0.010463722050189972, 0.024513406679034233, -0.027679137885570526, 0.007185929920524359, -0.00013296333781909198, 0.01972278580069542, -0.07608961313962936, -0.007297991309314966, -0.009034940972924232, 0.006268428172916174, 0.00986139290034771, 0.0015530993696302176, -0.009182021953165531, -5.4991010983940214e-05, -0.05039956420660019, -0.015758618712425232, 0.00808942411094904, -0.006513562053442001, 0.02286050282418728, 0.0099384356290102, 0.009525209665298462, -0.02469550631940365, -0.032161589711904526, 0.0010996013879776, -0.02384103834629059, 0.012186665087938309, 0.005193340126425028, -0.0028803253080695868, -0.008397592231631279, 0.024597452953457832, -0.05516216903924942, 0.009812366217374802, -0.016515031456947327, -0.014918158762156963, 0.011045040562748909, -0.006566090974956751, -0.018504120409488678, 0.0013351051602512598, -0.038156867027282715, -0.010148550383746624, 0.06998227536678314, 0.032974034547805786, -0.0032532792538404465, 0.04625329375267029, 0.015198311768472195, -0.00400268891826272, 0.013279261998832226, -0.016388962045311928, 0.02363092266023159, 0.04538482055068016, -0.008992917835712433, 0.02440134435892105, -0.03871717303991318, -0.0064435238018631935, 0.053509265184402466, 0.03877320513129234, -0.009952442720532417, -0.02326672524213791, 0.010120535269379616, 0.0044369264505803585, -0.010890956036746502, 0.020969467237591743, 0.05084780976176262, 0.007368029560893774, 0.018476104363799095, -0.01699129305779934, -0.051968421787023544, -0.019890878349542618, 0.012564871460199356, -0.030088454484939575, 0.00746608292683959, 0.013468366116285324, -0.028225436806678772, -0.01242479495704174, -0.024387337267398834, -0.004692566115409136, 0.025199782103300095, -0.021361682564020157, 0.06107340008020401, -0.05300498753786087, -0.0446564219892025, 0.07183128595352173, -0.012165653519332409, 0.03210555762052536, -0.05028750002384186, -0.0021046509500592947, -0.034654952585697174, -0.013251246884465218, -0.05342521890997887, 0.0705425813794136, 0.04765406250953674, -0.02089942991733551, -0.022132104262709618, -0.04303153231739998, -0.0014935667859390378, -0.003659501438960433, 0.039697710424661636, -0.02200603485107422, -0.0055470336228609085, 0.03482304513454437, 0.028449559584259987, -0.0037890721578150988, 0.04188290610909462, 0.00735402200371027, -0.04350779578089714, 0.009763339534401894, 0.005018244497478008, 0.027819214388728142, -0.004492957144975662, -0.02265038713812828, -0.011507293209433556, -0.013356304727494717, -0.019624732434749603, -0.005676604341715574, 0.06415508687496185, -0.003151723649352789, -0.023939091712236404, 0.0017168138874694705, -0.01098200585693121, -0.019288549199700356, 0.03006044030189514, -0.04513268172740936, 0.019778816029429436, -0.010218588635325432, -0.04672955721616745, 0.01673915423452854, -0.07177525013685226, -0.04953108727931976, -0.01356641948223114, -0.01878427341580391, 0.06045706197619438, 0.011507293209433556, 0.01055477187037468, -0.02554997242987156, 0.005182834342122078, 0.02933204174041748, -0.0024058157578110695, 0.002799781272187829, -0.010953990742564201, 0.014890143647789955, 0.025970201939344406, 0.003228765679523349, 0.013363308273255825, -0.006117845885455608, 0.04583306610584259, -0.0315452516078949, 0.009013929404318333, 0.05712324008345604, 0.030452653765678406, 0.025844134390354156, 0.042022980749607086, 0.013937622308731079, 0.0038380990736186504, -0.012053592130541801, -0.03048066981136799, 0.017705682665109634, 0.05272483453154564, -0.017005300149321556, -0.019792824983596802, -0.0002672398986760527, -0.06751692295074463, -0.03532731905579567, -0.00156097870785743, -0.0088388342410326, 0.013748519122600555, -0.0198768712580204, 0.027889251708984375, 0.060232941061258316, 0.002272743033245206, 0.04073427617549896, -0.0043388730846345425, -0.014848120510578156, 0.009749331511557102, -0.010435706935822964, -0.018686220049858093, 0.008768795989453793, 0.06034500151872635, 0.03947358950972557, -0.028295474126935005, 0.020913437008857727, -0.0008010630845092237, 0.01991889253258705, -0.02888379618525505, -0.0011547565227374434, -0.009623263031244278, -0.02725890837609768, -0.031068991869688034, -0.02211809530854225, 0.0017413273453712463, 0.0400899238884449, -0.05572247505187988, -0.0054734935984015465, -0.012999108992516994, -0.0011389979626983404, 0.0005318533512763679, -0.03454289212822914, 0.03437479957938194, -0.0011810208670794964, -0.03524327278137207, 0.0030256547033786774, -0.008446618914604187, -0.013748519122600555, -0.03300204873085022, 0.028183413669466972, -0.001122363843023777, 0.04087435454130173, 0.033674415200948715, 0.016613084822893143, 0.015856672078371048, -0.031433191150426865, 0.024639474228024483, 0.008215492591261864, 0.004752099048346281, 0.028085360303521156, 0.022104088217020035, -0.05093185231089592, 0.006604611873626709, 0.01318120863288641, 0.02318267896771431, 0.014581974595785141, 0.020115001127123833, 0.02978028729557991, 0.025241805240511894, 0.030816853046417236, 0.009483186528086662, 0.019288549199700356, -0.009518205188214779, -0.01350338477641344, -0.013069147244095802, 0.02619432471692562, -0.0017220667796209455, -0.013909607194364071, -0.03507518395781517, 0.016402970999479294, 0.0013596186181530356, -0.011185117065906525, 0.023560885339975357, 0.01279599778354168, 0.018686220049858093, 0.014792089350521564, -0.027511045336723328, 0.000857969222124666, 0.01731346920132637, 0.011920519173145294, -0.03221761807799339, -0.02807135134935379, -0.026614556089043617, 0.034570906311273575, -0.028673680499196053, -0.003659501438960433, 0.021039506420493126, 0.00988240446895361, 0.017089346423745155, -0.019078433513641357, -0.0005230985698290169, -0.00047363401972688735, -0.0005261627375148237, 0.008677746169269085, 0.03300204873085022, 0.007886312901973724, 0.016276901587843895, 0.012718955986201763, -0.011311185546219349, 0.008957899175584316, 0.0011442507384344935, 0.0027875243686139584, -0.0005314156296662986, -0.06947799772024155, -0.048998795449733734, 0.025577988475561142, 0.013230235315859318, -0.00908396765589714, 0.07278380542993546, -0.017089346423745155, 0.038240913301706314, 0.002327022608369589, -0.01462399773299694, -0.047317877411842346, -0.019582709297537804, -0.023280732333660126, 0.00339685776270926, -0.009027937427163124, 0.0019365590997040272, -0.02384103834629059, -0.007543125189840794, -0.027286922559142113, -0.021137559786438942, -0.05437773838639259, 0.009399140253663063, 0.02294454723596573, -0.008299538865685463, -0.028911812230944633, -0.02476554363965988, 0.02668459340929985, 0.02204805798828602, -0.007199937477707863, 0.033590368926525116, 0.01596873253583908, -0.006496052723377943, 0.04813032224774361, 0.037708621472120285, 0.03157326579093933, -0.0032620339188724756, -0.02017103135585785, 0.013776534236967564, 0.005424466449767351, -0.010827921330928802, -0.0005589931970462203, 0.004815133288502693, -0.014904150739312172, 0.0029853826854377985, 0.035103198140859604, -0.019526679068803787, -0.026418447494506836, 0.0015163292409852147, -0.025563981384038925, 0.05250071361660957, 0.03524327278137207, 0.02664257027208805, -0.008180473931133747, -0.01707533746957779, -0.014567967504262924, 0.006380489561706781, 0.013370311819016933, -0.024555429816246033, -0.0032322676852345467, -0.019708778709173203, 0.004153271205723286, -0.02550794929265976, 0.00029022121452726424, 0.019134463742375374, 0.01658507063984871, 0.04375993087887764, 0.005018244497478008, -0.006807723082602024, 0.014890143647789955, 0.030984945595264435, 0.006776205729693174, 0.02823944389820099, 0.03272189572453499, 0.014890143647789955, -0.020283091813325882, 0.013426342979073524, 0.05967263504862785, -0.03952961787581444, 0.014595982618629932, -0.019218510016798973, -0.0043878997676074505, 0.014399874955415726, 0.009560228325426579, -0.007585148327052593, 0.038521066308021545, 0.03793274611234665, 0.011892504058778286, 0.007431063801050186, -0.02309863269329071, -0.017005300149321556, -0.03639190271496773, -0.015268350020051003, -0.013251246884465218, 0.032609835267066956, 0.052248574793338776, -0.019176486879587173, -0.005459485575556755, 0.011157101951539516, -0.00020442430104594678, -0.07452075183391571, -0.02322470210492611, -0.0054384744726121426, -0.004643539432436228, 0.022552333772182465, -0.006138857454061508, 0.02700676955282688, -0.02314065583050251, -0.043815962970256805, 0.011353208683431149, -0.01816793531179428, 0.01675316132605076, -0.0046505434438586235, -0.0020748847164213657, -0.029079902917146683, 0.02741299197077751, -0.021235613152384758, 0.0035824591759592295, -0.0352712906897068, -0.032161589711904526, -0.016809193417429924, -0.020465191453695297, 0.03580357879400253, 0.004167279228568077, 0.03541136533021927, 0.021893974393606186, 0.02559199556708336, -0.018798280507326126, 0.004209301900118589, -0.004279340151697397, 0.014904150739312172, -0.000782240298576653, 0.03356235474348068, 0.005018244497478008, -0.030452653765678406, -0.00916801393032074, -0.041742827743291855, -0.005669600795954466, -0.03459892049431801, 0.013083155266940594, -0.007185929920524359, -0.012298726476728916, 0.010176565498113632, -0.03804480656981468, 0.03148921951651573, 0.023616915568709373, 0.039417557418346405, -0.024751536548137665, -0.022062065079808235, 0.012781990692019463, -0.019162479788064957, -0.03190945088863373, 0.003988681361079216, -0.021277636289596558, -0.012088610790669918, 0.002859313739463687, 0.004951708018779755, 0.04193893447518349, 0.006923286244273186, 0.04179885983467102, -0.04062221571803093, 0.02604024112224579, 0.005564543418586254, 0.032861970365047455, -0.017299460247159004, -0.0030274055898189545, -0.012866036035120487, -0.0490548275411129, 0.002896083751693368, -0.010127538815140724, 0.020185038447380066, 0.005872711539268494, 0.06807722896337509, -0.005039256066083908, 0.001406018971465528, 0.015226326882839203, 0.03880121931433678, -0.00495871203020215, -0.02183794230222702, -0.0011407488491386175, -0.027076808735728264, -0.0355234257876873, -0.010120535269379616, -0.030648762360215187, 0.009252060204744339, -0.011010020971298218, -0.010484733618795872, -0.005168826784938574, -0.029752271249890327, -0.018153928220272064, 0.004233815241605043, 0.036559995263814926, 0.010295630432665348, -0.011360213160514832, 0.0033828499726951122, -0.09155406802892685, -0.033674415200948715, 0.024051154032349586, -0.006485546939074993, -0.007788259536027908, -0.006079324521124363, -0.02339279279112816, 0.040762294083833694, 0.03266586363315582, -0.019078433513641357, 0.034206707030534744, -0.05572247505187988, -0.012067599222064018, 0.013104166835546494, -0.01460998971015215, 0.005179332569241524, 0.010876948945224285, 0.0027402485720813274, 0.01546445768326521, -0.002081888495013118, -0.018279997631907463, -0.01434384472668171, -0.015506479889154434, 0.05499407649040222, 0.01096099428832531, -0.025774095207452774, -0.010120535269379616, 0.038521066308021545, 0.000840459659229964, -0.020100992172956467, 0.00916801393032074, 0.010141545906662941, -0.025493942201137543, -0.0023182679433375597, -0.02040916122496128, 0.00908396765589714, -0.0016791683156043291, 0.011108075268566608, -0.002316516824066639, -0.012242695316672325, -0.03389853984117508, -0.04841047525405884, 0.024149207398295403, -0.03980977088212967, 0.035663504153490067, -0.008775799535214901, 0.009644274599850178, 0.030452653765678406, 0.010106527246534824, 0.004209301900118589, 0.013230235315859318, 0.025563981384038925, -0.007066864985972643, -0.0014918158994987607, 0.012326741591095924, 0.010624811053276062, -0.054573845118284225, -0.014441898092627525, 0.013034128583967686, 0.01801385171711445, -0.02151576615869999, 0.009287078864872456, 0.018153928220272064, -0.051155976951122284, -0.016108809038996696, -0.008348565548658371, -0.014203768223524094, 0.028365513309836388, 0.006611615885049105, -0.0009822872234508395, 0.03059273026883602, 0.04720581695437431, 0.019540686160326004, -0.0023988119792193174, 0.024639474228024483, 0.0008479012176394463, 0.004286344163119793, 0.0035351833794265985, -0.0025353864766657352, -0.0017859766958281398, 0.03244174271821976, -0.0029468615539371967, -0.03885725140571594, 0.012880044057965279, -0.0027490034699440002, -0.02122160606086254, -0.021081529557704926, 0.014834112487733364, 0.012179660610854626, 0.00582718662917614, 0.0492229200899601, 0.006601110100746155, -0.010043492540717125, 0.0035684516187757254, 0.028855780139565468, 0.012326741591095924, 0.022426264360547066, 0.015520487911999226, 0.0016135073965415359, -0.015590526163578033, 0.01609480194747448, -0.009833377785980701, 0.016529040411114693, 0.015534495934844017, -0.0004802001058124006, -0.01919049583375454, 0.012543859891593456, 0.007599155884236097, 0.002344532171264291, 0.010855937376618385, 0.004324865061789751, -0.013706495985388756, 0.03490709140896797, 0.011990557424724102, 1.564918420626782e-05, -0.0036700069904327393, 0.009875400923192501, -0.01238277181982994, 0.010806909762322903, -0.03952961787581444, 0.012746971100568771, -0.02550794929265976, -0.022496303543448448, 0.0397537425160408, -0.011535308323800564, 0.026740623638033867, 0.036167778074741364, 0.0029608693439513445, 0.006299945525825024, 0.004356382414698601, -0.002094145165756345, 0.08135649561882019, 0.0011748925317078829, 0.041490692645311356, 0.007669194135814905, -0.026516500860452652, 0.0071929339319467545, -0.0012746971333399415, 0.02570405788719654, 0.046673525124788284, 0.004598014522343874, -0.003151723649352789, -0.001994340680539608, 0.0003291800385341048, 0.03328220173716545, 0.0018980379682034254, 0.001719440333545208, -0.022104088217020035, -0.01250884123146534, 0.0400899238884449, 0.014441898092627525, -0.03622381016612053, -0.005466489586979151, 0.06628424674272537, 0.018714234232902527, 0.026418447494506836, -0.02256634086370468, -0.020157024264335632, -0.009224044159054756, 0.00026505120331421494, 0.0069933244958519936, 0.014595982618629932, 0.026292379945516586, -0.004867662210017443, 0.0005099663976579905, 0.00750810606405139, -0.0403420627117157, 0.012326741591095924, -0.016879230737686157, 0.002626436296850443, -0.004902681335806847, 0.020283091813325882, 0.005862205754965544, 0.03667205572128296, 0.055918581783771515, 0.029163949191570282, 0.008656734600663185, 0.02021305449306965, -0.011668381281197071, 0.02367294579744339, -0.027076808735728264, -0.00283655128441751, 0.021978018805384636, 0.03022853098809719, 0.018504120409488678, -0.028127383440732956, -0.015716595575213432, -0.006527570076286793, -0.02685268595814705, 0.015618541277945042, 0.027370968833565712, 0.016557054594159126, 0.009111983701586723, 0.019610725343227386, -0.004377393983304501, -0.0011871492024511099, 0.04185488820075989, -0.005949753802269697, -0.015786632895469666, 0.013461361639201641, -0.04384397715330124, 0.022636380046606064, 0.021571798250079155, -0.020675307139754295, 0.018069881945848465, 0.04709375649690628, 0.00923104863613844, 0.02200603485107422, -0.024541420862078667, 0.03997786343097687, 0.006257922388613224, 0.024345314130187035, 0.0021641836501657963, 0.019946908578276634, -0.01501621212810278, 0.013307278044521809, 0.011913515627384186, -0.01588468626141548, 0.005984772928059101, -0.051352083683013916, -0.032525788992643356, -0.027525052428245544, -0.01673915423452854, 0.018728243187069893, -0.03989381715655327, 0.021137559786438942, 0.02766512893140316, 0.009504198096692562, -0.016234878450632095, -0.006797217298299074, 0.009139998815953732, 0.008649730123579502, 0.03333823382854462, 0.0020993980579078197, 0.006776205729693174, 0.037008240818977356, 0.004422918893396854, -0.004878167994320393, -0.033058080822229385, 0.0015776128275319934, 0.025171766057610512, -0.0014865630073472857, 0.031433191150426865, -0.01358743105083704, -0.03406663239002228, 0.011192120611667633, 0.04191092029213905, 0.02117958292365074, 0.034851059317588806, -0.028673680499196053, -0.008460626937448978, 0.019736794754862785, 0.008866849355399609, -0.01493216585367918, 0.0292199794203043, 0.03300204873085022, 0.02860364317893982, 0.018812287598848343, 0.0007962479721754789, -0.0015566012589260936, 0.015786632895469666, 0.03832495957612991, 0.002053873147815466, -0.011143093928694725, 0.0008619088912382722, 0.011605346575379372, -0.009196029044687748, -0.010463722050189972, 0.01865820400416851, -0.006587102543562651, -0.02375699207186699, 0.03661602362990379, 0.023042602464556694, -0.030648762360215187, -0.014946173876523972, 0.0353553369641304, -0.05939248204231262, -0.001136371516622603, 0.013937622308731079, -0.010750879533588886, -0.0005856953212060034, 0.005757148377597332, -0.01886831969022751, 0.010414695367217064, 0.05603064224123955, -0.02730093151330948, 0.01132519356906414, -0.029836317524313927, -0.0010733370436355472, -0.03605571761727333, -0.016921253874897957, 0.015282358042895794, -0.014511936344206333, 0.04160275310277939, -0.03006044030189514, 0.005921738687902689, -0.008530665189027786, 0.018195951357483864, -0.008551676757633686, -0.006965309381484985, 0.004216305911540985, -0.01991889253258705, 0.014595982618629932, 0.007564136758446693, 0.010883952490985394, 0.015506479889154434, -0.020969467237591743, -0.04098641499876976, 0.0012624404625967145, 0.023434815928339958, -0.02758108451962471, -0.0040902369655668736, -0.0110380370169878, 0.04563695937395096, -0.016108809038996696, 0.0036279840860515833, 0.049643147736787796, 0.03524327278137207, 0.02704879269003868, 0.024597452953457832, -0.007070366758853197, 0.017985835671424866, 0.007732228841632605, 0.04123855382204056, -0.030536700040102005, 0.008124442771077156, 0.03748450055718422, 0.003978175576776266, -0.029107918962836266, 0.015100258402526379, 0.0005931368796154857, 0.009315093979239464, 0.008418603800237179, 0.016977284103631973, -0.005900727119296789, -0.010379676707088947, 0.011983553878962994, -0.0076271709986031055, 0.01529636513441801, -0.004930696450173855, 0.005361432209610939, 0.008880856446921825, -0.017649652436375618, -0.01622087135910988, -0.002838302170857787, -0.014252794906497002, 0.008663738146424294, 0.027020776644349098, -0.015268350020051003, 0.025816118344664574, 0.06387493014335632, 0.0026859689969569445, -0.02815539762377739, -0.012319737114012241, -0.011563323438167572, 0.014427890069782734, -0.012634909711778164, -0.02004496194422245, -0.013286266475915909, 0.018714234232902527, -0.018686220049858093, -0.003978175576776266, -0.019344579428434372, 0.016613084822893143, 0.0013009614776819944, 0.002234221901744604, -0.0018017353722825646, 0.05317308008670807, 0.008292535319924355, -0.013678480871021748, 0.04600115865468979, 0.011073055677115917, -0.0015513483667746186, -0.015394419431686401, -0.021277636289596558, -0.01322323177009821, 0.006821730639785528, -0.005032252054661512, -0.012396779842674732, 0.023644931614398956, 0.015660565346479416, -0.03504716604948044, 0.010771891102194786, 0.0487186424434185, -0.014154741540551186, 0.01165437325835228, -0.0017308215610682964, 0.021165575832128525, 0.011843477375805378, -0.016024764627218246, -0.02138969860970974, -0.016444994136691093, -0.0018122410401701927, -0.0010470725828781724, -0.02566203474998474, 0.02147374302148819, 0.005799171514809132, -0.021739888936281204, -0.0007809270755387843, -0.028995856642723083, -0.016795184463262558, -0.009350113570690155, 0.012158649042248726, -0.01273296307772398, 0.023294739425182343, 0.02066130004823208, 0.05300498753786087, 0.006247416604310274, 0.028855780139565468, 0.025171766057610512, -0.024135198444128036, 0.0006132728885859251, -0.020633284002542496, -0.013699492439627647, -0.04661749303340912, -0.033310215920209885, 0.02098347619175911, -0.01206059567630291, -0.012249698862433434, -0.03101295977830887, 0.008166465908288956, 0.04600115865468979, -0.012557867914438248, 0.022104088217020035, 0.021992027759552002, 0.0198348481208086, -0.004128757864236832, 0.02762310765683651, 0.00020146956376265734, -0.020955460146069527, -0.025844134390354156, 0.006902274675667286, -0.02958417870104313, 0.03168532997369766, -0.02420523762702942, 0.010975002311170101, 0.012992105446755886, 0.006643133237957954, -0.009602251462638378, 0.031881436705589294, 0.03204952925443649, -0.006650136783719063, 0.02358890138566494, 0.009623263031244278, -0.013811553828418255, -0.013881592079997063, -0.04224710538983345, 0.0015916203847154975, 0.007641179021447897, -0.005256374832242727, 0.012592886574566364, 0.013349300250411034, -0.02290252596139908, 0.010218588635325432, 0.027917267754673958, 0.002868068404495716, -0.004156773444265127, -0.0035281796008348465, -0.008418603800237179, 0.0010637067025527358, -0.02668459340929985, 0.006996826268732548, 0.0007940592477098107, 0.019120456650853157, 0.037008240818977356, 0.023658938705921173, 0.0053579299710690975, 0.0020433675963431597, -0.024429360404610634, 0.008908872492611408, 0.027202876284718513, 0.011402235366404057, -0.0029836317989975214, 0.00029941374668851495, 0.01801385171711445, 0.01058979146182537, 0.0398377850651741, -0.013349300250411034, 0.008299538865685463, -0.020283091813325882, 0.016108809038996696, -0.0023707966320216656, 0.033422280102968216, 0.0008050027536228299, -0.0021449229680001736, 0.02730093151330948, 0.003097444074228406, -0.011262158863246441, 0.03165731206536293, -0.003468646900728345, -0.06028897315263748, 0.03641991689801216, -0.018392058089375496, 0.007634175010025501, 0.03031257726252079, -0.007998374290764332, 0.017047323286533356, 0.013678480871021748, 0.03092891536653042, -0.01138822827488184, -0.026614556089043617, 0.0015968732768669724, 0.05505010485649109, -0.002274493919685483, 0.0043283673003315926, -0.02501768246293068, 0.030452653765678406, -0.0042233094573020935, -0.008229500614106655, -0.023742984980344772, -0.0041007427498698235, 0.00513380765914917, -0.0018647698452696204, -0.03916541859507561, 0.008201485499739647, -0.024877605959773064, 0.0017877276986837387, -0.016795184463262558, -0.0035561949480324984, -0.00418829033151269, 0.010715859942138195, -0.008880856446921825, -0.004580505192279816, 0.009420151822268963, 0.03039662353694439, -0.008775799535214901, -0.012585883028805256, 0.0037820683792233467, -0.013538404367864132, 0.015618541277945042, 0.03482304513454437, -0.009924427606165409, 0.017215415835380554, 0.023855045437812805, 0.0003615727473516017, 0.008299538865685463, -0.01955469511449337, -0.0060968343168497086, 0.005273884162306786, -0.01177343912422657, -0.020549237728118896, 0.007823278196156025, -0.013237238861620426, 0.026992762461304665, 0.013769530691206455, 0.035551443696022034, 0.01197654940187931, 0.03227365016937256, -0.025760088115930557, -0.011010020971298218, -0.0032480263616889715, -0.015352396294474602, -0.02905188873410225, -0.012193668633699417, -0.0005887594888918102, 0.018714234232902527, -0.008768795989453793, 0.008614711463451385, 0.0060583134181797504, 0.005378941539674997, 0.009013929404318333, -0.007368029560893774, -0.02969624102115631, 0.019092440605163574, 0.025227796286344528, -0.021277636289596558, -0.00029591182828880847, 0.038072820752859116, -0.009665286168456078, -0.03459892049431801, -0.010323645547032356, 0.0029608693439513445, 0.0016012507257983088, -0.015576519072055817, -0.002346283057704568, 0.01501621212810278, 0.021417712792754173, -0.019484655931591988, 0.01792980544269085, 0.0176356453448534, -0.015590526163578033, -0.037260375916957855, 0.028001314029097557, 0.012964090332388878, -0.03524327278137207, -0.00748709449544549, 0.008334558457136154, -0.019820839166641235, 0.038156867027282715, -0.02098347619175911, -0.03563548997044563, -0.019708778709173203, 0.031181052327156067, 0.007347017992287874, 0.04639337211847305, 0.0110380370169878, 0.03563548997044563, 0.008894864469766617, -0.008950894698500633, 0.014252794906497002, -0.00961625948548317, 0.005354428198188543, 0.013538404367864132, 0.013776534236967564, -0.033058080822229385, 0.014371859841048717, 0.012592886574566364, -0.010022480972111225, -0.0063104513101279736, 0.018882326781749725, -0.008446618914604187, -0.013531399890780449, -0.010456718504428864, -0.014028672128915787, 0.005140811670571566, 0.007781255524605513, 0.001745704677887261, -0.03936152532696724, -0.040930382907390594, 0.028995856642723083, 0.015982741490006447, 0.04493657499551773, 0.034654952585697174, 0.002834800397977233, 0.004195294342935085, 0.002871570410206914, 0.014091706834733486, 0.021613819524645805, -0.004892175551503897, -0.006699163932353258, -0.016529040411114693, -0.03288998827338219, -0.009111983701586723, -0.030536700040102005, -0.003659501438960433, 0.00248460890725255, -0.014638005755841732, -0.012067599222064018, -0.010996013879776001, 0.006898772902786732, 0.002530133817344904, 0.02350485511124134, -0.014203768223524094, 0.02106752246618271, -0.0059182364493608475, -0.01895236410200596, 0.014497928321361542, 0.027931274846196175, 0.01238277181982994, 0.00023440943914465606, -0.014694035984575748, 0.0032550301402807236, -0.005592558532953262, 0.0005554913077503443, 0.027553068473935127, 0.012697944417595863, -0.005708121694624424, 0.013433346524834633, -0.0018069882644340396, -0.004920190665870905, 0.0198348481208086, 0.016879230737686157, 0.011402235366404057, 0.0035999687388539314, -0.004345876630395651, -0.0021379191894084215, 0.020297100767493248, 0.045861080288887024, 0.030984945595264435, -4.11475048167631e-05, 0.028141390532255173, 0.0038661144208163023, -0.0058446964249014854, 0.0010890956036746502, 0.058327898383140564, 0.01309716235846281, 0.001421777531504631, 0.006177378352731466, 0.008586696349084377, -0.013657469302415848, 0.036980222910642624, 0.009076964110136032, 0.02371496893465519, -0.021739888936281204, 0.035747550427913666, 0.008894864469766617, 0.02924799546599388, 0.005441976245492697, 0.028491580858826637, -0.02126362919807434, -0.01874225027859211, 0.026824669912457466, -0.026908716186881065, 0.02950013242661953, 0.01167538482695818, 0.042107027024030685, 0.010176565498113632, 0.02354687824845314, -0.02081538364291191, -0.00746608292683959, -0.013517392799258232, 0.04446031525731087, -0.015492472797632217, -0.011759431101381779, -0.020871413871645927, -0.017005300149321556, 0.043171610683202744, 0.008040397427976131, -0.02570405788719654, 0.0004130071320105344, 0.03801679238677025, 0.0004587508738040924, -0.03776465356349945, 0.0029661222361028194, -0.017509575933218002, 0.010603799484670162, 0.030984945595264435, -0.0076271709986031055, -0.019988931715488434, -0.03218960389494896, -0.0008540295530110598, 0.011843477375805378, 0.005000734701752663, -0.012564871460199356, -0.003361838636919856, -0.034206707030534744, 0.02057725377380848, 0.03459892049431801, -0.029107918962836266, 0.008705761283636093, -0.007599155884236097, 0.03235769644379616, 0.019218510016798973, 0.0027279919013381004, 0.032777924090623856, 0.026572532951831818, 0.008649730123579502, 0.021543782204389572, -0.008320550434291363]" -Processing and Protecting Hundreds of Terabytes of Blockchain Data: Zondax’s Story,"to encounter countless challenges when developing a scalable database strategy, but staying curious and willing to explore new solutions with caution can sometimes be rewarding.We’d like to thank Ezequiel and all of the folks at Zondax for sharing their story and efforts in finding a solution to process enormous amounts of data to build backend solutions for blockchain projects.We’re always keen to feature new community projects and stories on our blog. If you have a story or project you’d like to share, reach out on Slack (@Ana Tavares), and we’ll go from there.The open-source relational database for time-series and analytics.Try Timescale for free",https://www.timescale.com/blog/processing-and-protecting-hundreds-of-terabytes-of-blockchain-data-zondaxs-story/,126,"[0.08217412233352661, 0.0020726362708956003, 0.06488830596208572, 0.02997095137834549, 0.025569714605808258, -0.009307748638093472, -0.0006390766939148307, 0.03930529206991196, -0.045155879110097885, -0.032736681401729584, 0.042975205928087234, -0.04191146418452263, -0.024492675438523293, -0.029093362390995026, 0.04784182831645012, 0.050979867577552795, 0.02409377135336399, -0.014413713477551937, -0.02224551886320114, 0.03603428229689598, 0.0029402512591332197, 0.02215244248509407, 0.03560878708958626, -0.0017485270509496331, 0.002664342988282442, -0.024732017889618874, -0.030848538503050804, 0.05467637628316879, 0.02381454035639763, -0.07297275215387344, 0.0218599122017622, -0.02228540927171707, -0.02229870669543743, 0.055208247154951096, 0.018615497276186943, 0.011973753571510315, 0.019054291769862175, -0.026965877041220665, 0.057388920336961746, 0.010324952192604542, -0.0076788924634456635, -0.009580332785844803, 0.0434538908302784, 0.01397491991519928, 0.013815358281135559, -0.00509266834706068, -0.01318376138806343, -0.035103511065244675, 0.020397266373038292, 0.03414614126086235, -0.019360117614269257, -0.00017950657638721168, -0.017498567700386047, -0.02396080456674099, -0.0033773831091821194, -0.04334751516580582, 0.010305006988346577, 0.014626462012529373, -0.025184107944369316, 0.004963024519383907, -0.025423450395464897, -0.051325585693120956, 0.045395221561193466, 0.02986457571387291, -0.013210354372859001, -0.008350379765033722, -0.03388020396232605, -0.016620980575680733, -0.03215162456035614, 0.017432084307074547, 0.01982550509274006, 0.03225799649953842, 0.013197057880461216, 0.027311593294143677, 0.021088698878884315, -0.09680058807134628, -0.014147778041660786, 0.042815644294023514, 0.003480433253571391, -0.05808035284280777, -0.021314743906259537, 0.021540788933634758, -0.023402338847517967, 0.007426253519952297, 0.03656615689396858, -0.016767244786024094, -0.017565051093697548, -0.019373413175344467, 0.004650549963116646, 0.020955732092261314, -0.02011803351342678, 0.05749529227614403, 0.009852916933596134, -0.003885985119268298, 0.026500489562749863, 0.01807032898068428, 0.03151337802410126, 0.01191391795873642, 0.021527493372559547, 0.03337492793798447, -0.003104798961430788, -0.023136403411626816, -0.00653204508125782, -0.010876769199967384, -0.0022006176877766848, -0.02400069497525692, 0.01784428395330906, -0.04044881463050842, 0.0437198244035244, 0.023349152877926826, -0.09813026338815689, -0.032949429005384445, -0.02970501407980919, -0.022870467975735664, 0.0023385719396173954, -0.012811451219022274, -0.006242840085178614, -0.024333113804459572, 0.011182595044374466, 0.007632353808730841, -0.005784100852906704, 0.010923308320343494, -0.041273217648267746, 0.027364781126379967, -3.511182148940861e-05, -0.04592709243297577, -0.021474305540323257, -0.0009382542921230197, -0.05055437237024307, 0.003666588105261326, 0.04153915122151375, -0.0131438709795475, 0.03175272047519684, -0.02975820191204548, -0.037044838070869446, -0.03608747199177742, -0.07839784026145935, -0.016355043277144432, -0.02167375758290291, -0.013642500154674053, -0.0011410302249714732, -0.028721053153276443, 0.017033180221915245, -0.030502822250127792, -0.014480197802186012, -0.014825914055109024, 0.01507855299860239, 0.03568856790661812, -0.012997605837881565, -0.030768757686018944, 0.0020925812423229218, -0.006282730493694544, -0.0367257185280323, 0.010511107742786407, 0.048613041639328, 0.012259634211659431, 0.0047868420369923115, 0.020902544260025024, 0.00013888906687498093, 0.003613400971516967, 0.025330374017357826, 0.026992471888661385, -0.020490344613790512, 0.003942496608942747, -0.01982550509274006, 0.004251646809279919, -0.06297356635332108, -0.043108172714710236, -0.06153751537203789, 2.5450875909882598e-05, -0.03978397697210312, -0.05212339386343956, -0.030928319320082664, -0.004175189882516861, 0.03840111196041107, -0.010225227102637291, -0.0011094503570348024, -0.02010473795235157, -0.011269024573266506, -0.047044020146131516, -0.03770967945456505, -0.018894730135798454, -0.011295617558062077, -0.008603018708527088, -0.03188568726181984, 0.013762171380221844, -0.07813189923763275, 0.004008980467915535, 0.01566361077129841, 0.0278700590133667, -0.06653710454702377, 0.0480811707675457, 0.019599460065364838, 0.023003436625003815, 0.02426663041114807, -0.042895425111055374, 0.026832910254597664, 0.040980689227581024, -0.026646755635738373, 0.037230994552373886, -0.0015150023391470313, 0.015397675335407257, 0.04265608265995979, -0.016700759530067444, 0.01834956184029579, 0.028614679351449013, 0.004643901716917753, -0.009919400326907635, -0.06940921396017075, -0.07174944877624512, -0.005381873343139887, -0.013788764365017414, 0.021088698878884315, -0.021048808470368385, -0.014905694872140884, -0.006807953119277954, -0.006445616018027067, 0.009507200680673122, -0.014892397448420525, -0.005564704071730375, -0.01101638562977314, 0.04965019226074219, 0.010358194820582867, -0.03951803967356682, 0.006655040197074413, 0.010431326925754547, -0.0017983900615945458, -0.03132722154259682, 0.03571516275405884, 0.029252924025058746, 0.042629487812519073, -0.042709268629550934, 0.019147368147969246, -0.023601790890097618, 0.008297192864120007, 0.02220562845468521, -0.030423041433095932, -0.023282667621970177, 0.014825914055109024, 0.004843353293836117, 0.017166147008538246, -0.017166147008538246, 0.002401731675490737, 0.0003758419188670814, -0.0070672407746315, 0.03398657962679863, -0.025463340803980827, -0.064462810754776, 0.01813681237399578, 0.047176990658044815, 0.029598640277981758, -0.0064190225675702095, 0.00653204508125782, -0.014227558858692646, 0.0016596048371866345, -0.048932164907455444, -0.01586306281387806, -0.018588904291391373, 0.027165329083800316, -0.035209883004426956, 0.012086776085197926, -0.045049503445625305, -0.03824155032634735, 0.040714751929044724, -0.035076916217803955, 0.00645558862015605, -0.0012831396888941526, -0.02779027819633484, 0.018575606867671013, 0.02378794550895691, 0.032816462218761444, 0.009221319109201431, 0.01840274967253208, -0.0396244153380394, -0.0198122076690197, -0.025636199861764908, 0.009813026525080204, 0.006236191373318434, -0.006342565640807152, 0.010211929678916931, 0.007166966330260038, -0.028268963098526, -0.02771049737930298, -0.01781769096851349, 0.036938466131687164, 0.012292876839637756, 0.0009648478589951992, 0.027285000309348106, 0.04382620006799698, -0.04156574606895447, -0.013609258458018303, 0.0009756514918990433, 0.004527554847300053, -0.007672244217246771, -0.011608092114329338, -0.024984655901789665, -0.005255553871393204, -0.03755011782050133, -0.032922837883234024, -0.016966696828603745, 0.050900086760520935, 0.01792406477034092, 0.043294329196214676, -0.04350707679986954, -0.0217934288084507, -0.01096319779753685, -0.00809774175286293, -0.008862306363880634, 0.012758264318108559, 0.04145937040448189, 0.011933863162994385, -0.01104962732642889, 0.00100556924007833, -0.004670495167374611, -0.005235608667135239, -0.022724203765392303, 0.044650599360466, -0.013695687055587769, -0.0049198102205991745, -0.07329187542200089, -0.03768308460712433, -0.030875131487846375, -0.015171630308032036, 0.014227558858692646, 0.019001103937625885, -0.020357375964522362, 0.007525979541242123, -0.007466143928468227, 0.03409295529127121, -0.012645241804420948, 0.019665943458676338, -0.03180590644478798, 0.005348631180822849, -0.00908170361071825, -0.006711551453918219, -0.06770722568035126, 0.029226331040263176, 0.008855657652020454, 0.01819000020623207, 0.013815358281135559, -0.014666352421045303, -0.031194254755973816, -0.04587390273809433, -0.004843353293836117, 0.04536862671375275, 0.02392091415822506, 0.021394524723291397, -0.018469233065843582, -0.016926806420087814, 0.014387120492756367, -0.07451517879962921, -0.018628794699907303, -0.024997953325510025, -0.023056622594594955, 0.011501718312501907, 0.03345470875501633, -0.028960395604372025, -0.03781605139374733, -0.06318631768226624, 0.0008892224286682904, -0.006236191373318434, 0.011734412051737309, 0.04624621570110321, 0.004544175695627928, 0.003179593477398157, 0.009706651791930199, -0.018695278093218803, -0.029146550223231316, -0.008184170350432396, -0.03576834872364998, 0.023216184228658676, -0.03148678317666054, -0.04536862671375275, -0.016554495319724083, -0.03568856790661812, -0.006296026986092329, 0.04627280682325363, 0.03829473629593849, 0.029518859460949898, 0.048666227608919144, 0.028774240985512733, 0.029173143208026886, -0.011594795621931553, -0.021421119570732117, 0.003086515935137868, 0.05369241163134575, -0.023269372060894966, -0.013449696823954582, -0.05246910825371742, -0.01290452852845192, 0.011641333810985088, 0.004660522565245628, 0.03340151906013489, -0.03191228210926056, 0.03973079100251198, 0.007246747147291899, -0.009400825947523117, 0.019027696922421455, 0.05183086171746254, 0.018961213529109955, 0.010537700727581978, -0.035289663821458817, -0.02816258743405342, -0.0182963740080595, 0.014626462012529373, 0.02237848751246929, -0.03422592207789421, -0.005245581269264221, -0.016847025603055954, -0.0355290062725544, -0.04621962085366249, -0.016368340700864792, 0.020463749766349792, -0.008782525546848774, -0.0042117564007639885, -0.03661934286355972, -0.03829473629593849, 0.06254807114601135, -0.03427910804748535, 0.07334505766630173, 0.005252229515463114, 0.003192890202626586, -0.005637836176902056, -0.025037843734025955, -0.0009465647744946182, 0.05855903401970863, 0.037310775369405746, 0.017312413081526756, -0.028721053153276443, -0.04582071676850319, -0.0018997780280187726, 0.017432084307074547, 0.016594385728240013, -0.017099663615226746, -0.024931469932198524, 0.027072252705693245, 0.037337370216846466, -0.007412957027554512, 0.0639309361577034, -0.008662854321300983, -0.0355290062725544, 0.02188650704920292, -0.005182421300560236, 0.02771049737930298, 0.02217903546988964, -2.1035926693002693e-05, -0.040794532746076584, -0.0099393455311656, -0.026859503239393234, -0.03680549934506416, 0.05643155053257942, -0.05036821588873863, -0.01417437195777893, 0.014187668450176716, -0.02005155012011528, -0.03840111196041107, 0.020995622500777245, 0.006126493215560913, 0.02805621363222599, 0.009321045130491257, -0.03792242705821991, 0.005594621878117323, -0.04840029403567314, -0.004876595456153154, 0.021554086357355118, -0.07642991095781326, 0.027497749775648117, 0.029598640277981758, 0.02431981824338436, -0.02170035056769848, 0.0075060343369841576, 0.02439959906041622, -0.006874437443912029, 0.0014850845327600837, -0.0598355270922184, 0.00493310671299696, 0.03558219224214554, 0.005155827850103378, -0.017179444432258606, 0.00790493842214346, -0.012412548065185547, -0.002905347151681781, -0.0018283077515661716, 0.07887652516365051, 0.02805621363222599, 0.043081577867269516, 0.009427419863641262, 0.013263542205095291, -0.008430160582065582, 0.01295106764882803, 0.00906840618699789, 0.01511844340711832, 0.05199042335152626, -0.014679648913443089, -0.007233450189232826, 0.0015150023391470313, -0.051325585693120956, -0.056537926197052, 0.001136043923906982, -0.020889246836304665, -0.006043388042598963, -0.02003825269639492, -0.01610240526497364, 0.05839947611093521, -0.036778904497623444, -0.00809774175286293, -0.01785758137702942, -0.021195072680711746, 0.03600769117474556, 0.022710906341671944, 0.00653536943718791, -0.036858685314655304, 0.06648392230272293, 0.002945237560197711, -0.018442638218402863, 0.02983798272907734, -0.006442291662096977, -0.0109299561008811, -0.019054291769862175, -0.008895548060536385, -0.0218599122017622, -0.016248669475317, -0.02594202570617199, -0.0033308444544672966, -0.016687463968992233, -0.015517346560955048, -0.043187953531742096, -0.02002495713531971, -0.03560878708958626, 0.025343669578433037, 0.0038095286581665277, -0.03419932723045349, 0.01587636023759842, 0.0041053821332752705, -0.028774240985512733, -0.013403157703578472, -0.03225799649953842, -0.01310398057103157, -0.0262212585657835, 0.018761761486530304, -0.003093164414167404, 0.05353284999728203, 0.017432084307074547, 0.021514195948839188, -0.016355043277144432, -0.015464159660041332, -0.02413366176187992, -0.003586807521060109, -0.005930365528911352, 0.049038536846637726, 0.021115291863679886, -0.025170812383294106, 0.008297192864120007, -0.027231812477111816, 0.016607683151960373, 0.00908170361071825, -0.005378548987209797, -0.001096984720788896, 0.028428522869944572, 0.019639350473880768, -0.021141886711120605, -0.005032832734286785, 0.008669503033161163, 0.015357784926891327, -0.02425333298742771, 0.01998506672680378, -0.015291301533579826, -0.029093362390995026, -0.04858644679188728, 0.0038394462317228317, 0.021022215485572815, -0.01824318803846836, 0.011096166446805, -0.03680549934506416, -0.0035568897146731615, 0.037177808582782745, -0.029651828110218048, -0.03353448957204819, 0.005804046057164669, -0.011814192868769169, -0.023694869130849838, -0.023508714511990547, -0.042975205928087234, 0.04406554251909256, -0.03598109632730484, 0.005129234399646521, 0.04007650539278984, 0.025450043380260468, 0.025037843734025955, -0.015344488434493542, -0.006296026986092329, 0.016421528533101082, -0.017458677291870117, 0.005611242726445198, 0.03560878708958626, -0.02596861869096756, 0.03204524889588356, 0.01602262444794178, -0.006561962887644768, 0.0076788924634456635, 0.035156697034835815, -0.008104389533400536, -0.02619466371834278, -0.04257630184292793, -0.026979174464941025, 0.006246163975447416, -0.0018615496810525656, 0.01588965579867363, 0.045209065079689026, -0.02583565004169941, 0.019147368147969246, 0.0013554409379139543, -0.002398407319560647, -0.06595204770565033, -0.0022671015467494726, 0.005897123832255602, -0.002538023516535759, 0.01627526246011257, 0.034864168614149094, 0.005445032846182585, -0.027364781126379967, -0.06196301430463791, -0.01975901983678341, -0.04031584784388542, 0.01192721538245678, 0.008815767243504524, -0.04784182831645012, -0.04185827448964119, 0.0008460078970529139, 0.03132722154259682, 0.02002495713531971, -0.0157832819968462, 0.024638939648866653, 0.009194726124405861, 0.022631125524640083, 0.04999590665102005, -0.0008335421443916857, 0.03177931159734726, 0.0035568897146731615, -0.013243597000837326, 0.040767937898635864, 0.0025829002261161804, -0.018455935642123222, 0.002112526446580887, 0.006874437443912029, -0.03241755813360214, 0.020676499232649803, 0.042868830263614655, -0.009008570574223995, 0.015637017786502838, -0.020862653851509094, -0.003673236584290862, 0.048825789242982864, 0.031087880954146385, 0.020995622500777245, -0.012631944380700588, 0.003390679834410548, -0.01997176930308342, 0.016554495319724083, 0.05978234112262726, -0.025370262563228607, -0.018908025696873665, -0.0033807072322815657, 0.021580679342150688, -0.028960395604372025, 0.019439898431301117, 0.0020244354382157326, 0.027338188141584396, 0.01614229567348957, 0.027417968958616257, -0.009852916933596134, 0.0434538908302784, 0.022325299680233, 0.033162180334329605, 0.03680549934506416, 0.02213914506137371, -0.0014950571348890662, -0.007918234914541245, 0.03595450520515442, 0.03441207483410835, -0.038667045533657074, 0.0024997952859848738, -0.017285818234086037, -0.005907096434384584, 0.0008742635254748166, -0.025064436718821526, -0.017551755532622337, 0.03002413734793663, 0.028614679351449013, 0.01412118412554264, -0.02372146211564541, -0.002418352523818612, 0.004793490748852491, -0.026673348620533943, 0.014427009969949722, -0.027311593294143677, 0.030848538503050804, 0.026500489562749863, -0.01785758137702942, -0.003118095686659217, 0.01101638562977314, -0.008283896371722221, -0.05866540968418121, -0.026846205815672874, -0.025277186185121536, -0.005378548987209797, 0.017325708642601967, -0.022790687158703804, 0.0280030257999897, 0.00014138220285531133, -0.026713239029049873, -0.006658364553004503, -0.033082399517297745, 0.027152031660079956, -0.016820430755615234, -0.0021308097057044506, -0.010205281898379326, 0.022671015933156013, -0.03560878708958626, -0.00497632147744298, -0.038906387984752655, -0.00986621342599392, -0.025463340803980827, -0.019466491416096687, 0.004092085175216198, -0.014613165520131588, 0.044889941811561584, 0.02421344257891178, -0.009340990334749222, -0.013157167471945286, 0.013409806415438652, 0.009227967821061611, 0.0242400374263525, 0.021221667528152466, 0.018549013882875443, -0.04052859544754028, -0.008536535315215588, -0.011269024573266506, -0.037151213735342026, -0.023016732186079025, -0.01196045707911253, -0.02166046015918255, -0.01397491991519928, -0.010358194820582867, 0.0035169993061572313, -0.06605841964483261, 0.00017306595691479743, 0.0433209203183651, 0.016847025603055954, -0.013123925775289536, -0.0003531958209350705, 0.011328860186040401, -0.007040646858513355, -0.015637017786502838, -0.009061758406460285, -0.03193887323141098, -0.03462482616305351, 0.015490753576159477, 0.008503293618559837, 0.0027108818758279085, 0.023176293820142746, 0.049038536846637726, -0.033241961151361465, 0.05589967966079712, -0.01093660481274128, 0.026447303593158722, 0.012133315205574036, -0.014267449267208576, -0.0029768175445497036, -0.04036903381347656, 0.013197057880461216, -0.005042805336415768, 0.013762171380221844, 0.022551344707608223, 0.05558055639266968, -0.017405489459633827, 0.002012800658121705, 0.018376154825091362, 0.022657720372080803, -0.015650315210223198, 0.0014892397448420525, 0.008509941399097443, -0.024599049240350723, -0.04951722174882889, 0.006259460933506489, -0.007033998612314463, -0.00127316708676517, -0.016873618587851524, -0.016740649938583374, -0.036885276436805725, -0.037044838070869446, 0.01575668901205063, -0.024306520819664, 0.017511865124106407, 0.017418786883354187, 0.0016853673150762916, -0.016793837770819664, -0.04954381659626961, -0.05792079120874405, 0.026992471888661385, -0.003507026704028249, 0.0039956835098564625, -0.013695687055587769, 0.008263951167464256, 0.01608910784125328, 0.016527902334928513, -0.01793736219406128, 0.03544922545552254, -0.05760166794061661, -8.476699440507218e-05, -0.024439489468932152, -0.010677317157387733, 0.011495069600641727, -0.018801651895046234, 0.008396918885409832, 0.023256074637174606, 0.018801651895046234, -0.00010528352140681818, 0.006867788732051849, 0.001278984360396862, 0.027205219492316246, 0.021035511046648026, -0.038667045533657074, 0.00785839930176735, 0.014067997224628925, 0.039225511252880096, -0.012665187008678913, 0.04023606702685356, -0.042922019958496094, -0.012166556902229786, 0.006305999588221312, -0.0063325935043394566, 0.004982969723641872, 0.005252229515463114, -0.02420014701783657, -0.01825648359954357, -0.021607274189591408, -0.035236477851867676, -0.013589313253760338, 0.037417151033878326, -0.027218516916036606, 0.013323377817869186, -0.03175272047519684, -0.0044876644387841225, 0.04855985566973686, -0.008802470751106739, 0.008283896371722221, 0.011355453170835972, 0.028747646138072014, -0.008470050990581512, -0.008609667420387268, -0.018376154825091362, 0.03558219224214554, -0.037337370216846466, -0.0067780353128910065, 0.016900211572647095, 0.003033328801393509, -0.009114945307374, 0.00030478721600957215, -0.0015565548092126846, -0.0472833625972271, 0.0036798848304897547, 0.01307073887437582, 0.004879919812083244, 0.016780540347099304, -0.03680549934506416, -0.008277247659862041, 0.0025961969513446093, 0.07057932764291763, 0.01970583386719227, 0.0003384446899872273, 0.00038851541467010975, -0.005115937441587448, 0.007632353808730841, 0.0019197231158614159, 0.0003783350402954966, -0.053187135607004166, 0.001695339917205274, 0.00808444432914257, -0.03007732518017292, 0.002945237560197711, -0.016394933685660362, -0.03462482616305351, -0.0030050731729716063, 0.0320984348654747, 0.008868955075740814, -0.0019114126916974783, 0.03848089277744293, 0.019227148965001106, -0.034997135400772095, 0.010677317157387733, 0.008137631230056286, 0.01834956184029579, 0.009321045130491257, -0.017219334840774536, -0.013748874887824059, -0.0013936691684648395, -0.002333585638552904, -0.007120427675545216, 0.019067587330937386, 0.02781687118113041, 0.022351892665028572, -0.03161975368857384, 0.02590213529765606, -0.01775120571255684, -0.008363677188754082, 0.006638419348746538, -0.014759429730474949, -0.023295965045690536, -0.017126258462667465, -0.0037895834539085627, 0.0017967278836295009, 0.024984655901789665, -0.0019645998254418373, -0.003264360362663865, 0.050900086760520935, -0.037177808582782745, 0.016807135194540024, -0.02422674000263214, -0.018894730135798454, 0.06265444308519363, 0.03377383202314377, 0.02227211371064186, 0.04356026276946068, 0.0036566155031323433, -0.0023917590733617544, -0.012538867071270943, 0.021075401455163956, 0.06791996955871582, -0.0029020230285823345, 0.04183168336749077, 0.008416864089667797, 0.0031330545898526907, -0.0032626984175294638, 0.015610423870384693, 0.020756280049681664, 0.008988626301288605, -0.0131438709795475, -0.008849009871482849, 0.026699941605329514, -0.03340151906013489, 0.046804677695035934, -0.004268267657607794, -0.0006623460212722421, 0.013084035366773605, -0.015490753576159477, 0.006083278451114893, 0.04231036454439163, -0.025596309453248978, -0.021607274189591408, 0.058718595653772354, 0.016394933685660362, 0.03555560111999512, -0.04183168336749077, -0.004161893390119076, -0.012818099930882454, 0.01616888865828514, 0.030449634417891502, 0.02776368521153927, 0.007652299012988806, -0.0025164163671433926, -0.007845102809369564, -0.03419932723045349, -0.02426663041114807, 0.009965939447283745, -0.010790339671075344, 0.020397266373038292, 0.01108951773494482, -0.013748874887824059, -0.011741059832274914, -0.0035402686335146427, 0.018575606867671013, 0.011787598952651024, -0.00817087385803461, 0.011854082345962524, 0.0064788577146828175, 0.04188486933708191, -0.011468475684523582, 0.011714466847479343, 0.018947916105389595, 0.05797397717833519, -0.0005584649043157697, -0.01009225845336914, -0.02615477330982685, 0.016660870984196663, -0.012086776085197926, -0.012751615606248379, 0.03007732518017292, 0.008496644906699657, -0.01405470073223114, -0.005222311709076166, 0.0062262192368507385, 0.023162998259067535, 0.0408211275935173, 0.03164634481072426, -0.019479788839817047, -0.014759429730474949, -0.05028843507170677, -0.007732079830020666, 0.0077054863795638084, 0.020437156781554222, -0.013376564718782902, 0.04542181268334389, 0.013190409168601036, 0.014679648913443089, -0.01287793554365635, 0.027497749775648117, 0.003859391435980797, -0.011189243756234646, 0.024386301636695862, 0.03185909241437912, -0.0005418439395725727, 0.0010271765058860183, 0.018668685108423233, -0.0023917590733617544, -0.02429322339594364, -0.004268267657607794, -0.03850748762488365, -0.029279517009854317, -0.02372146211564541, 0.0012906190240755677, -0.0242400374263525, 0.05877178534865379, 0.0017867552815005183, 0.01511844340711832, -0.024944765493273735, -0.004863298498094082, 0.020809466019272804, 0.02808280661702156, 0.006960866507142782, -0.005129234399646521, 0.017658129334449768, 0.018522419035434723, 0.0020875949412584305, 0.0013695687521249056, -0.0008858982473611832, 0.02808280661702156, 0.012492327950894833, 0.0019130747532472014, 0.007246747147291899, 0.005571352317929268, -0.030556010082364082, -0.030609196051955223, 0.04435807093977928, 0.01592954620718956, 0.013642500154674053, -0.01602262444794178, 0.008071147836744785, 0.0030981507152318954, 0.006355862598866224, 0.010464568622410297, 0.02019781433045864, -0.014280745759606361, 0.027471154928207397, -0.006920976098626852, -0.008948735892772675, 0.0002671822439879179, 0.0035236477851867676, 0.03390679880976677, 0.026992471888661385, -0.026354225352406502, 0.006927624344825745, 0.012578757479786873, -0.008622963912785053, -0.010265117511153221, 0.017312413081526756, 0.02816258743405342, -0.007998015731573105, 0.0158497653901577, -0.017485270276665688, 0.007778618484735489, 0.01594284363090992, 0.038773421198129654, -0.019493084400892258, -0.018828246742486954, -0.014480197802186012, -0.015331191942095757, -0.016248669475317, 0.003999007865786552, 0.021554086357355118, -0.003666588105261326, 0.022857170552015305, -0.018961213529109955, 0.011269024573266506, -0.008789174258708954, -0.0008339576306752861, 0.0012681807857006788, 0.012166556902229786, 0.01804373599588871, -0.01416107453405857, 0.036938466131687164, -0.01491899136453867, 0.04587390273809433, 0.005564704071730375, 0.015410972759127617, -0.004178514238446951, -0.016966696828603745, -0.0004016044258605689, -0.010790339671075344, 0.009706651791930199, -0.01511844340711832, -0.01491899136453867, 0.002667667344212532, 0.007073889020830393, -0.011428585276007652, -2.302265420439653e-05, 0.012538867071270943, -0.027098845690488815, 0.019386710599064827, 0.02416025660932064, 0.07095164060592651, 0.001303084776736796, -0.0044245049357414246, 0.001561540993861854, 0.040688157081604004, 0.009633519686758518, 0.03228459134697914, -0.005478275008499622, 0.013323377817869186, 0.01389513909816742, 0.04624621570110321, -0.06813272088766098, 0.019227148965001106, 0.029545454308390617, -0.00036753140739165246, -0.03185909241437912, 0.017658129334449768, 0.013403157703578472, -0.019293634220957756, -0.02187320962548256, 0.024505972862243652, -0.02813599444925785, -0.0034837573766708374, 0.01100973691791296, 0.0032377669122070074, -0.0017900795210152864, 0.013004254549741745, 0.018814949318766594, -0.014653055928647518, 0.005498220212757587, 0.012764912098646164, 0.001563203171826899, -0.0051092891953885555, 0.023455526679754257, 0.026620160788297653, -0.0033773831091821194, 0.008689448237419128, 0.051352180540561676, 0.02586224488914013, -0.01612899824976921, 0.009254561737179756, -0.006279406137764454, -0.010883417911827564, -0.03550241142511368, 0.0029901142697781324, 0.007752025034278631, 0.049304474145174026, -0.005737562198191881, -0.0081243347376585, -0.05355944484472275, 0.00914818700402975, 0.0052189878188073635, -0.013542774133384228, -0.0037563415244221687, 0.036326814442873, -0.023309262469410896, -0.007432902231812477, 0.022724203765392303, 0.020663201808929443, -0.008470050990581512, -0.025277186185121536, -0.02626114711165428, -0.02006484754383564, 0.025529824197292328, -0.019001103937625885, -0.019360117614269257, 0.035396039485931396, -0.003929199650883675, -0.02219233289361, 0.012126666493713856, 0.05393175408244133, -0.015264707617461681, -0.012465734966099262, -0.002732489025220275, 0.022684313356876373, 0.011767653748393059, -0.022471563890576363, -0.01826978102326393, 0.010737152770161629, 0.006422346457839012, 0.0007998846704140306, -0.036832090467214584, 0.018721871078014374, -0.0036300220526754856, -0.006355862598866224, 0.00022562980302609503, 0.0032095112837851048, -0.03462482616305351, -0.019572865217924118, -0.0027491101063787937, 0.0060134707018733025, -0.008862306363880634, 0.004876595456153154, 0.06526061147451401, 0.020862653851509094, 0.014706242829561234, 0.0005248074303381145, -0.015291301533579826, -0.006894382182508707, -0.03414614126086235, 0.009347639046609402, 0.0010271765058860183, -0.030502822250127792, 0.01604921743273735, -0.02592872828245163, 0.0006665012915618718, -0.03640659525990486, -0.0018964537885040045, 0.03013051301240921, 0.0025297130923718214, 0.00698745995759964, 0.02175353839993477, -0.0015058607095852494, 0.013462993316352367, 0.04361345246434212, -0.0023086541332304478, -0.02422674000263214, -0.020397266373038292, 0.03029007278382778, -0.020822763442993164, 0.018509123474359512, -0.010670669376850128, -0.02006484754383564, 0.0016620979877188802, 0.022777389734983444, 0.01514503639191389, 0.032231405377388, -0.006113196257501841, 0.005435060244053602, 0.02382783591747284, 0.03225799649953842, -0.005631187930703163, -0.0064888303168118, -0.012412548065185547, -0.0021773483604192734, 0.0025629550218582153, -0.013230299577116966, 0.023229481652379036, 0.0327632762491703, -0.035103511065244675, 0.037337370216846466, 0.01767142489552498, -0.022950248792767525, -0.010683965869247913, -0.011940511874854565, -0.00899527408182621, -0.0009631857974454761, -0.02207266166806221, 0.018535716459155083, 0.02001165971159935, 0.0018798328237608075, 0.006296026986092329, 0.017166147008538246, -0.018735168501734734, -0.03781605139374733, -0.015543940477073193, 0.005657781381160021, 0.01090336311608553, -0.016700759530067444, -0.023601790890097618, 0.0005867205909453332, -0.005355279892683029, 0.0037895834539085627, 0.041246622800827026, -0.03983716294169426, 0.013542774133384228, -0.00786504801362753, 0.026713239029049873, 0.03135381639003754, 0.04616643488407135, -0.016780540347099304, 0.02784346602857113, 0.022750796750187874, 0.004447774030268192, 0.010005829855799675, 0.029173143208026886, 0.0035402686335146427, -0.04951722174882889, 0.03600769117474556, -0.01603592187166214, 0.012046885676681995, 0.018721871078014374, -0.03433229401707649, 0.027231812477111816, -0.005860557314008474, 0.009879509918391705, 0.0033890176564455032, -0.012964364141225815, 0.020942434668540955, 0.026939284056425095, -0.006847843527793884, 0.017378896474838257, -0.015357784926891327, 0.00887560285627842, -0.012645241804420948, -0.01620877906680107, -0.0005630356608889997, 0.01013879757374525, -0.004863298498094082, -0.03013051301240921, -0.017232632264494896, 0.013496235944330692, 0.017339006066322327, -0.0075126830488443375, 0.0017368923872709274, -0.044863346964120865, 0.05438384413719177, 0.014533384703099728, 0.008217412047088146, 0.02005155012011528, -0.0035236477851867676, 0.01187402755022049, -0.04970337823033333, -0.019453193992376328, 0.006814601831138134, 0.029013581573963165, 0.016714056953787804, 0.028508303686976433, -0.011601443402469158, 0.04018288105726242, 0.03441207483410835, 0.0004948896821588278, 0.015131739899516106, -0.01606251485645771, -0.012252986431121826, -0.03021029196679592, 0.004108706023544073, -0.008829064667224884, 0.01616888865828514, 0.004790166392922401, 0.029173143208026886, 0.005365252494812012, 0.013609258458018303, 0.012086776085197926, -0.004587390460073948, -0.01759164407849312, 0.008077796548604965, -0.015171630308032036, -0.018841542303562164, -0.004035573918372393, -0.003068232908844948, -0.015650315210223198, -0.0048965406604111195, -0.02029089257121086, 0.0008069485775195062, 0.013502883724868298, -0.004547500051558018, 0.03598109632730484, 0.004796814639121294, -0.006581908091902733, 0.033002618700265884, -0.02196628600358963, -0.0017867552815005183, -0.004790166392922401, 0.046831272542476654, 0.024732017889618874, -0.030529415234923363, 0.03728418052196503, 0.0018249836284667253, 0.005022860132157803, -0.02201947383582592, 0.007353121414780617, 0.007113779429346323, -0.0059868767857551575, -0.031247442588210106, 0.014520088210701942, -0.006109872367233038, 0.011362101882696152, -0.014307339675724506, 0.015570533461868763, -0.013243597000837326, -0.020570125430822372, -0.024505972862243652, -0.019413303583860397, -0.014480197802186012, 0.028747646138072014, -0.028561491519212723, -0.029439078643918037, -0.02205936424434185, 0.013230299577116966, -0.0026892744936048985, 0.07451517879962921, 0.00600017374381423, 0.025383559986948967, 0.004869947209954262, -0.0006552821141667664, 0.022538049146533012, -0.01608910784125328, 0.03260371461510658, -0.039012763649225235, -0.013828654773533344, -0.05946321785449982, -0.017325708642601967, -0.012346063740551472, -0.012259634211659431, -0.015025366097688675, 0.02829555608332157, -0.02023770473897457, -0.041193436831235886, 0.021328041329979897, -0.0017435407498851418, -0.0004712047812063247, 0.012618647888302803, 0.024732017889618874, -0.021048808470368385, -0.03568856790661812, 0.04552818834781647, -0.004850002005696297, 0.016541199758648872, 0.02832214906811714, -0.023601790890097618, -0.03752352297306061, 0.005209015216678381, 0.003315885551273823, 0.012917825020849705, -0.010464568622410297, -0.012405899353325367, -0.01619548350572586, -0.01591625064611435, -0.03385361284017563, -0.0258223544806242, -0.009208022616803646, -0.005401818547397852, -0.022897060960531235, -0.018562309443950653, -0.006827898323535919, 0.02572927623987198, 0.023694869130849838, 0.03177931159734726, -0.0008256471483036876, 0.023109810426831245, 0.00892214197665453, 0.0008601357112638652, 0.0027607446536421776, 0.02381454035639763, 0.022631125524640083, -0.022365190088748932, 0.020503640174865723, 0.010710559785366058, -0.016953399404883385, -0.01580987684428692, 0.03794902190566063, 0.03257711976766586, 0.020477047190070152, -0.006458912510424852, 0.00888890027999878, -0.013037496246397495, 0.02215244248509407, 0.007007405161857605, 0.01089671440422535, -0.01085682399570942, 0.015690205618739128, -0.010743801482021809, 0.018376154825091362, 0.029518859460949898, -0.010796988382935524, 0.01985209807753563, 0.043187953531742096, 0.003666588105261326, -0.006123168859630823, 0.01792406477034092, 0.03002413734793663, 0.005514841061085463, 0.006768063176423311, -0.0028820778243243694, -0.011295617558062077, -0.018828246742486954, 0.02001165971159935, -0.017139554023742676, 0.03744374215602875, -0.012505625374615192, 0.011062923818826675, -0.001923047355376184, 0.027019064873456955, 0.020437156781554222, -0.00793818011879921, -0.015051959082484245, -0.01998506672680378, 0.030875131487846375, 0.0011418613139539957, 0.01515833381563425, 0.011893972754478455, 0.0401562862098217, 0.0023751379922032356, 0.04584731161594391, -0.00910829659551382, 0.006126493215560913, -0.024412894621491432, 0.02765730954706669, -0.007452847436070442, 0.02229870669543743, -0.0319654680788517, 0.021261557936668396, 0.043108172714710236, -0.006934272591024637, -0.05611242726445198, 0.012419195845723152, 0.009493903256952763, -0.02620796114206314, 0.025489933788776398, -0.002910333452746272, -0.0315665639936924, -0.003510350827127695, 0.03159315884113312, -0.001682874164544046, -0.020357375964522362, -0.016940101981163025, 0.00497632147744298, 0.016753947362303734, -0.000824816117528826, 0.006103223655372858, -0.005953635089099407, -0.07962114363908768, 0.010830230079591274, 0.0361938439309597, -0.024585753679275513, -0.010418030433356762, 0.007127075921744108, 0.02603510208427906, 0.043267734348773956, -0.010457920841872692, 0.007639002520591021, 0.008716042153537273, 0.009759839624166489, 0.0004097071650903672, -0.00982632301747799]" -How FlightAware Fuels Flight Prediction Models for Global Travelers With TimescaleDB and Grafana,"This is an installment of our “Community Member Spotlight” series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition,Caroline Rodewig, Senior Software Engineer and Predict Crew Lead at FlightAware, joins us to share how they’ve architected a monitoring system that allows them to power real-time flight predictions, analyze prediction performance, and continuously improve their models.FlightAwareis the world's largestflight tracking and data platform; we fuse hundreds of global data sources to produce an accurate, consistent view of flights around the world. We make this data available to users through web and mobile applications, as well as different APIs.Our customers cover a number of different segments, including:Travelers / aviation enthusiastswho use our website and mobile apps to track flights (e.g., using our “where’s my flight?” program).Business aviation providers(such asFixed Base Operatorsoraircraft operators) who use flight-tracking data and custom reporting to support their businesses.Airlinesthat use flight-tracking data or our predictive applications to operate more efficiently.Editor’s Note: for more information about FlightAware’s products (and ways to harness its data infrastructure), check outthis overview. Want to build your own flight tracking receiver and ground station? SeeFlightAware’s PiAware tutorial.About the teamThe Predictive Technologiescrewis responsible for FlightAware's predictive applications, which as a whole are called ""FlightAware Foresight."" At the moment, our small-but-mighty team is made up of only three people: our project managerJames Parkman, software engineer Andrew Brooks, and myself. We each wear many different hats; a day's work can cover anything from Tier 2 customer support to R&D, and everything in between.A former crew member, Diorge Tavares, wrote acool articleabout his experience as a site reliability engineer embedded in the Predict crew. He helped us design infrastructure and led our foray into cloud computing; now that our team is more established, he’s moved back to the FlightAware Systems team full-time.About the projectOur team's chief project is predicting flight arrival times, or ETAs; we predict both landing (EON) and gate arrival (EIN) times. And, ultimately, we need to monitor, visualize, and alarm on thequalityof those predictions. This is where TimescaleDB fits in.Not only should we track how our prediction error changes over the course of each flight, we also need to track how our error changes over months - or years!",https://www.timescale.com/blog/how-flightaware-fuels-flight-prediction-models-with-timescaledb-and-grafana/,527,"[0.032769825309515, -0.007906034588813782, 0.03459037095308304, -0.010475985705852509, 0.03377426415681839, 0.030290117487311363, -0.0066112494096159935, 0.02310209907591343, -0.01743643544614315, 0.03096497431397438, -0.008576968684792519, -0.032330382615327835, -0.020528225228190422, -0.0173579640686512, 0.006395452190190554, 0.020434057340025902, 0.020810723304748535, -0.012186671607196331, -0.06761130690574646, 0.0330837145447731, -0.035249534994363785, -0.027386659756302834, 0.021658217534422874, -0.011127302423119545, -0.012390698306262493, -0.03653647378087044, -0.05201111361384392, 0.07872291654348373, 0.01947670243680477, -0.08186178654432297, 0.04246894270181656, -0.0345589816570282, -0.054679155349731445, -0.006932984106242657, 0.03181247040629387, -0.0211716927587986, 0.01490964274853468, 0.0016282899305224419, -0.019916145130991936, 0.013128332793712616, -0.008474955335259438, 0.01919420436024666, 0.01731088012456894, 0.015521722845733166, -0.06309133023023605, 0.010358278639614582, -0.04811891168355942, 0.0011133187217637897, 0.025519032031297684, 0.057441361248493195, -0.050818342715501785, 0.0329267680644989, -0.04824446514248848, -0.04262588545680046, 0.028720680624246597, 0.017153937369585037, 0.0015812069177627563, 0.060297735035419464, -0.018911704421043396, -0.03079233691096306, 0.003756837686523795, -0.03785479813814163, 0.026507776230573654, 0.03559480980038643, -0.012131741270422935, -0.0067171864211559296, -0.009487241506576538, 0.03214205056428909, -0.017656156793236732, 0.02137571945786476, 0.062306612730026245, 0.007678466383367777, 0.02908165194094181, -0.024608757346868515, 0.001583168632350862, -0.023431681096553802, 0.017185324802994728, 0.05474193021655083, -0.011347022838890553, -0.043065328150987625, 0.01753060147166252, -0.009032105095684528, -0.012461322359740734, 0.0032134205102920532, 0.02705707773566246, -0.06472354382276535, -0.030713865533471107, -0.04516837000846863, -0.007545064203441143, 0.003205573186278343, -0.015105823054909706, 0.08744897693395615, 0.004288484342396259, 0.013293123804032803, 0.02136002480983734, 0.03983229026198387, -0.00030702093499712646, -0.008239539340138435, 0.01297923643141985, 0.007623536046594381, -0.0056538935750722885, -0.017216714099049568, -0.01547463983297348, -0.04177838936448097, 0.04174700006842613, -0.04177838936448097, -0.004182547330856323, 0.03929867967963219, 0.009730503894388676, 0.013018472120165825, -0.09372672438621521, -0.016808660700917244, -0.033428989350795746, -0.003584199817851186, -0.00867113471031189, 0.00019765086472034454, -0.010986052453517914, 0.018990177661180496, 0.035280924290418625, -0.020104477182030678, -0.030682476237416267, -0.017153937369585037, 0.005528338719159365, 0.002330612624064088, 0.025738751515746117, -0.035280924290418625, -0.023918205872178078, -0.055683594197034836, -0.025880001485347748, -0.007945270277559757, 0.06510020792484283, -0.042939770966768265, 0.04036589711904526, -0.04366171360015869, -0.023839734494686127, -0.02710416167974472, -0.01625935733318329, -0.016165191307663918, -0.019649339839816093, -0.007125239819288254, 0.006850588601082563, 0.024389037862420082, 0.007796173915266991, 0.013638399541378021, -0.01345791481435299, -0.007101698312908411, 0.002868144540116191, 0.03779202327132225, -0.015568805858492851, -0.006721110083162785, -0.03374287486076355, -0.0019274636870250106, -0.0794762447476387, -0.0016969528514891863, 0.04253171756863594, 0.04372448846697807, 0.022521408274769783, 0.027716241776943207, -0.023651402443647385, -0.030666781589388847, -0.022725434973835945, 0.048652518540620804, -0.044917263090610504, 0.018770456314086914, -0.037070080637931824, -0.005245840176939964, -0.02021433785557747, -0.03543786704540253, -0.07112684100866318, -0.029709424823522568, -0.045136984437704086, 0.004104075487703085, -0.00632090400904417, 0.04369310289621353, 0.019759200513362885, -0.01251625269651413, 0.03462176024913788, -0.04224922135472298, -0.010193487629294395, -0.059607185423374176, -0.07382627576589584, 0.019021565094590187, -0.048621129244565964, -0.01924128644168377, -0.042123664170503616, 0.011927714571356773, -0.036222584545612335, 0.031435806304216385, -0.013740412890911102, 0.024938339367508888, -0.013512845151126385, 0.04724002629518509, 0.033146489411592484, 0.03255010396242142, -0.007184093818068504, -0.024608757346868515, 0.03841979429125786, -0.005901079624891281, 0.024530285969376564, 0.018597817048430443, 0.011362717486917973, 0.014226938597857952, 0.0640643835067749, -0.028626514598727226, 0.033523157238960266, 0.011912019923329353, 0.007698084227740765, 0.00361951207742095, -0.06293439120054245, 0.002660194179043174, 0.029332760721445084, -0.016949910670518875, 0.03005470149219036, 0.0012300455709919333, -0.037352580577135086, 0.006697568576782942, -0.06309133023023605, -0.017609072849154472, -0.0184094849973917, 0.004315949510782957, -0.051822781562805176, 0.030148867517709732, 0.03226760774850845, 0.017201019451022148, -0.02335320971906185, 0.012500558979809284, 0.060454677790403366, -0.020606696605682373, 0.020528225228190422, 0.011362717486917973, 0.0010701592545956373, -0.03459037095308304, 0.007329266518354416, -0.03102775290608406, -0.010193487629294395, 0.009989460930228233, 0.00822384562343359, -0.04573336988687515, 0.024530285969376564, 0.02030850388109684, 0.004649454262107611, 0.03989506512880325, 0.028500959277153015, 0.046894751489162445, -0.005037889815866947, -0.007862875238060951, -0.0467064194381237, -0.03399398550391197, 0.05320388451218605, 0.043065328150987625, 0.06698353588581085, -0.02209766022861004, 0.010452444665133953, -0.014886101707816124, 0.007552911527454853, -0.008043359965085983, 0.012759516015648842, 0.011574591509997845, 0.030572615563869476, -0.017593378201127052, 0.008608357049524784, -0.0007037940085865557, -0.06623020768165588, 0.007286107167601585, -0.04642391949892044, -0.009706961922347546, 0.035280924290418625, -0.014611450023949146, -0.01494887936860323, -0.004669072572141886, 0.012790904380381107, 0.056468311697244644, 0.010507375001907349, -0.01541186310350895, -0.019570868462324142, -0.02136002480983734, -0.012500558979809284, 0.014258326962590218, -0.00554010970517993, -0.03311510384082794, -9.054911060957238e-05, -0.026696108281612396, 0.037321191281080246, -0.034276485443115234, 0.00821599829941988, -0.006579861044883728, -0.017216714099049568, 0.004064839333295822, -0.01746782474219799, -0.013144027441740036, 0.0046965377405285835, -0.023400291800498962, 0.00819245632737875, 0.00459844758734107, 0.022034883499145508, 0.013858120888471603, -0.001832316629588604, 0.02336890436708927, -0.02227029763162136, 0.007866798900067806, 0.004892717115581036, -0.046800583600997925, 0.010052238591015339, -0.016667410731315613, 0.0057519832625985146, 0.019963227212429047, -0.005277229007333517, 0.03090219758450985, -0.015686513856053352, -0.03600286319851875, 0.007851104252040386, 0.0442894883453846, -0.01300277840346098, -0.015113669447600842, -0.02715124562382698, -0.012704585678875446, 0.0872606486082077, -0.031247472390532494, 0.021611135452985764, -0.06629297882318497, -0.06255772709846497, -0.07734180986881256, -0.003509651403874159, -0.025895696133375168, 0.027512215077877045, -0.012712432071566582, 0.06817630678415298, 0.017577683553099632, 0.0175149068236351, 0.003648939076811075, 0.012743821367621422, 0.0013055746676400304, -0.014391729608178139, -0.0021775925997644663, -0.038137298077344894, -0.03295815736055374, -0.030211646109819412, -0.04259449616074562, 0.01546679250895977, 0.021987799555063248, -0.034245096147060394, -0.028595125302672386, -0.07043629139661789, -0.01737365871667862, 0.028249850496649742, -0.0033507461193948984, -0.018048515543341637, -0.034213706851005554, 0.020826417952775955, 0.052607499063014984, -0.04727141559123993, 0.03575175628066063, -0.010028696618974209, -0.01928837038576603, -0.052638888359069824, -0.014658533036708832, 0.010060085915029049, 0.03537508845329285, -0.014258326962590218, -0.011496119201183319, -0.05518137291073799, 0.023949595168232918, 0.01818976365029812, 0.021611135452985764, -0.015788527205586433, 0.04745974764227867, -0.03653647378087044, 0.041087836027145386, -0.008851619437336922, -0.013936592265963554, 0.01826823689043522, 0.027794713154435158, -0.025424864143133163, -0.005469484720379114, -0.06073717772960663, -0.029317066073417664, 0.07420293986797333, -0.013379442505538464, -0.015623736195266247, 0.08958341181278229, 0.0428142175078392, 0.0035547728184610605, 0.002728857100009918, -0.015812069177627563, 0.01627505198121071, 0.028579432517290115, -0.02423209324479103, -0.013300971128046513, -0.04698891565203667, -0.027590686455368996, 0.02517375536262989, -0.038137298077344894, -0.0028701063711196184, -0.00278378720395267, -0.047899190336465836, 0.03587730973958969, 0.008945785462856293, 0.06955740600824356, 0.05342360585927963, -0.014682075008749962, 0.003678365843370557, -0.018566429615020752, -0.03694452717900276, 0.015906235203146935, 0.007564682047814131, 0.019005870446562767, -0.008608357049524784, 0.02879915200173855, -0.0004696047108154744, -0.010303348302841187, 0.001689105643890798, -0.058226078748703, 0.056468311697244644, 0.0013928745174780488, 0.012947848066687584, 0.005387089680880308, 0.01935114711523056, 0.01831531897187233, -0.015066586434841156, 0.03295815736055374, -0.05122639611363411, -0.027731936424970627, -0.004539594054222107, -0.0021775925997644663, -0.04381865635514259, 0.016016095876693726, 0.012147435918450356, -0.019021565094590187, 0.03149858117103577, -0.060329124331474304, -0.0022384081967175007, 0.004814245272427797, 0.051697224378585815, 0.019100038334727287, -0.038168687373399734, 0.010311195626854897, 0.02887762524187565, -0.0038117680232971907, 0.013191110454499722, 0.026397915557026863, 0.018739067018032074, -0.027261104434728622, -0.017577683553099632, 0.014109230600297451, -0.013842426240444183, -0.02705707773566246, -0.03393121063709259, -0.03851396217942238, -0.010986052453517914, -0.003295815782621503, 0.03600286319851875, 0.0075019048526883125, -0.02330612577497959, 0.06428410112857819, -0.06434687972068787, -0.05505581945180893, 0.02212904952466488, -0.003978520631790161, 0.07043629139661789, -0.025550419464707375, -0.04246894270181656, 0.04268866404891014, -0.06861574947834015, -0.02611541748046875, -0.026743192225694656, -0.03791757673025131, 0.01629074662923813, -0.03499842435121536, 0.007439127191901207, -0.0011015479685738683, 0.005465561058372259, -0.0003232057497370988, -0.018079904839396477, -0.02335320971906185, -0.028767764568328857, 0.02041836455464363, 0.009816822595894337, -0.023902511224150658, -0.010632929392158985, 0.013355901464819908, -0.005759830586612225, 0.007235100492835045, -0.007772632408887148, 0.048903629183769226, 0.028720680624246597, 0.005928544793277979, 0.013332359492778778, 0.021877938881516457, 0.011676604859530926, 0.006034481804817915, -0.02605263888835907, 0.012006185948848724, 0.06302855163812637, -0.020434057340025902, -0.007113469298928976, -0.05150889232754707, -0.04240616410970688, -0.02713555097579956, 0.0010289615020155907, -0.015145058743655682, 0.039078958332538605, 1.950300202224753e-06, -0.010632929392158985, 0.05194833502173424, 0.02905026264488697, 0.03933006897568703, -0.028500959277153015, -0.0014988115290179849, -0.012257295660674572, -0.058414410799741745, -0.025911390781402588, 0.03867090493440628, -0.007431279867887497, 0.012594725005328655, -0.015725750476121902, 0.025691669434309006, 0.00012812974455300719, 0.006309133023023605, 0.006415070034563541, -0.04529392719268799, -0.011299939826130867, -0.02999192476272583, -0.016016095876693726, 0.043975599110126495, -0.0012163129867985845, -0.008545579388737679, -0.03798035532236099, -0.020543918013572693, -0.02997623011469841, 0.010005155578255653, 0.03112191893160343, 0.00506143132224679, 0.009369533509016037, 0.03283260390162468, -0.05216805636882782, -0.0007714759558439255, -0.030337199568748474, -0.05022195726633072, -0.043944209814071655, 0.0017773864092305303, 0.027841797098517418, 0.020638084039092064, 0.0033468224573880434, 0.020983360707759857, 0.0016430034302175045, 0.015003809705376625, -0.0220662709325552, -0.004288484342396259, -0.022976545616984367, 0.018629206344485283, 0.03255010396242142, -0.03176538646221161, 0.017938654869794846, 0.007376349531114101, -0.0019019603496417403, 0.029787898063659668, -0.015678666532039642, -0.03983229026198387, 0.008710370399057865, 0.0015174485743045807, 0.015427556820213795, -0.005438096355646849, -0.013026319444179535, 0.0073920441791415215, -0.02404376119375229, 0.0579121932387352, -0.004300254862755537, -0.01941392384469509, -0.010805567726492882, 0.004308102186769247, -0.030243033543229103, -0.017012687399983406, -0.00699968496337533, -0.005638199392706156, 0.03798035532236099, 0.0023482688702642918, -0.010923275724053383, -0.03258149325847626, 0.025456253439188004, 0.0261938888579607, -0.014831171371042728, 0.00011225146590732038, 0.0025856459978967905, 0.0050692786462605, -0.006026634480804205, -0.0018784188432618976, 0.0027857490349560976, 0.0029642723966389894, 0.015788527205586433, -0.0031918406020849943, 0.036316752433776855, -0.010499527677893639, -0.010005155578255653, 0.037227023392915726, -0.017185324802994728, 0.014799783006310463, 0.01836240291595459, 0.0042610191740095615, 0.007113469298928976, 0.05530693009495735, 0.0033409371972084045, 0.0018715525511652231, -0.0055597275495529175, -0.047836411744356155, -0.004217859357595444, -0.009801128879189491, 0.009550019167363644, 0.022882377728819847, 0.0032036113552749157, -0.01152750849723816, -0.0017067617736756802, -0.00603840546682477, -0.013277429156005383, -0.041244782507419586, -0.02715124562382698, 0.013379442505538464, 0.0015763023402541876, -0.03280121460556984, 0.013214652426540852, 0.013159722089767456, -0.01113514881581068, -0.04924890398979187, -0.004641607403755188, -0.03152997046709061, -0.011684452183544636, -0.00627774465829134, 0.007537216879427433, -0.01071140170097351, 0.012728126719594002, -0.00021886276954319328, -0.012673196382820606, 0.011692299507558346, 0.017106853425502777, 0.007725549396127462, -0.008168915286660194, -0.003085903823375702, 0.029254289343953133, 0.03295815736055374, -0.0021638600155711174, -0.0232747383415699, 0.01057799905538559, 0.019147120416164398, -0.0003707792784553021, -0.02231738157570362, 0.03653647378087044, -0.026649024337530136, 0.008953632786870003, 0.06560242921113968, 0.011896326206624508, -0.013489303179085255, -0.020512530580163002, -0.051791392266750336, 0.051571670919656754, 0.03496703505516052, 0.027261104434728622, -0.024938339367508888, -0.026539165526628494, 0.018896011635661125, -0.00044483706005848944, -0.0016469269758090377, -0.05995246022939682, 0.020088782534003258, -0.012924306094646454, -0.0231962651014328, -0.017703238874673843, 0.02713555097579956, 0.02796735242009163, 0.011472578160464764, 0.03562619909644127, 0.024436119943857193, -0.03594008833169937, 0.001529219327494502, 0.003925552126020193, 0.03948701173067093, -0.004665148910135031, -0.007674542721360922, 0.0074783628806471825, -0.0214071087539196, -0.004366956185549498, 0.04441504180431366, -0.03072955831885338, 0.008451413363218307, -0.04523114860057831, 0.0032134205102920532, -0.00821599829941988, 0.009448005817830563, -0.027527909725904465, -0.01756199076771736, 0.024545980617403984, 0.00580691359937191, 0.008090442977845669, -0.003472377313300967, 0.0004477797483559698, 0.003580276155844331, 0.0014615374384447932, -0.02021433785557747, -0.012814445421099663, 0.006163960322737694, 9.974501881515607e-05, -0.054553598165512085, -0.03499842435121536, 0.015749290585517883, -0.03647369518876076, -0.02511097863316536, -0.025927085429430008, -0.018943093717098236, 0.015419709496200085, -0.015874845907092094, 0.04664364084601402, -0.019665034487843513, -0.04811891168355942, 0.014038605615496635, -0.016071025282144547, 0.028532348573207855, -0.0259584728628397, 0.005932468455284834, -0.004543517716228962, 0.028532348573207855, -0.006199272815138102, -0.005143826827406883, -0.07790680974721909, 0.039173126220703125, -0.027261104434728622, -0.026649024337530136, 0.04046006128191948, -0.024498898535966873, 0.01399936992675066, 0.04918612912297249, -0.012108199298381805, -0.012563335709273815, 0.02710416167974472, 0.005810837261378765, 0.036316752433776855, -0.0134657621383667, 0.02216043882071972, -0.03386843204498291, -0.053517770022153854, -0.00966772623360157, -0.035312313586473465, -0.004210012499243021, -0.015239224769175053, -0.03156135976314545, 0.000306775706121698, -0.012320073321461678, 0.025613198056817055, -0.024420425295829773, 0.037321191281080246, 0.06987129896879196, -0.020747944712638855, -0.011998339556157589, -0.005367471370846033, 0.016965605318546295, 0.0029152275528758764, -0.01837809756398201, -0.003072171239182353, 0.013724719174206257, 0.0006272839964367449, 0.007313572335988283, 0.017640462145209312, 0.029521092772483826, 0.015670819208025932, 0.040868114680051804, 0.007929575629532337, -0.007811868097633123, -0.0014262250624597073, 0.02410653792321682, 0.0026739267632365227, -0.009801128879189491, 0.0053125410340726376, -0.01655755192041397, -0.022788211703300476, -0.045764755457639694, -0.002520906738936901, -0.0012074848636984825, 0.034496206790208817, 0.0017724819481372833, -0.001272224122658372, 0.035280924290418625, -0.014305409975349903, 0.019994616508483887, 0.03851396217942238, -0.0019666997250169516, -0.017954349517822266, 0.012406392022967339, 0.005579345393925905, -0.01933545246720314, 0.007423433009535074, -0.0071566286496818066, -0.02517375536262989, -0.01950809173285961, -0.013599163852632046, 0.023980984464287758, -0.02225460484623909, -0.021689606830477715, 0.008365094661712646, 0.005198757164180279, 0.003833347698673606, -0.08914396911859512, -0.0442894883453846, 0.017044076696038246, -0.002938769059255719, 0.0033644787035882473, 0.024310564622282982, 0.042971160262823105, 0.017091158777475357, 0.03597147390246391, -0.01205326896160841, 0.016934216022491455, -0.02412223257124424, -0.018864622339606285, -0.007733396254479885, 0.0031820316798985004, -0.0006263030809350312, -0.0021501274313777685, 0.0172794908285141, -0.0014419194776564837, 0.01818976365029812, -0.023745568469166756, -0.013434372842311859, -0.045042816549539566, 0.03958117961883545, 0.012751668691635132, 0.015764985233545303, -0.02890901267528534, 0.019978921860456467, 0.021815162152051926, -0.009353838860988617, -0.009989460930228233, -0.00958925485610962, -0.01743643544614315, 0.03157705441117287, 0.004288484342396259, 0.06666964292526245, -0.014744852669537067, 0.015215682797133923, -0.012021880596876144, -0.010381819680333138, -0.01345791481435299, -0.005084972828626633, 0.05392582342028618, -0.04419532045722008, 0.03546925634145737, -0.031435806304216385, -0.0014330913545563817, 0.009950225241482258, -0.00013609953748527914, 0.026570552960038185, 0.026319444179534912, -0.022458631545305252, -0.017703238874673843, -0.0037156399339437485, -0.013214652426540852, 0.029630953446030617, -0.045827534049749374, 0.011864936910569668, 8.417327626375481e-05, -0.022584185004234314, -0.029583871364593506, 0.013191110454499722, 0.0073881205171346664, -0.02898748591542244, -0.025519032031297684, 0.021485580131411552, 0.008867314085364342, 0.040208954364061356, -0.02609972283244133, 0.012892917729914188, 0.011888478882610798, 0.01924128644168377, 0.022395852953195572, -8.178233838407323e-05, 0.01352853886783123, 0.004429733380675316, 0.013795343227684498, -0.020747944712638855, -0.026774579659104347, -0.017766017466783524, 0.03283260390162468, -0.0066151730716228485, 0.0033134720288217068, 0.0021677836775779724, 0.008263081312179565, 0.023792652413249016, -0.012210212647914886, -0.00676819309592247, 0.036222584545612335, -0.012743821367621422, 0.043944209814071655, 0.009455852210521698, -0.03198510780930519, -0.01632213592529297, -0.01740504615008831, 0.022898072376847267, 0.011849242262542248, 0.003929475788027048, 0.026853051036596298, 0.0028328322805464268, 0.028500959277153015, 0.008161067962646484, 0.004476816393435001, -0.00010489473061170429, -0.00866328738629818, -0.019602257758378983, 0.00750582804903388, -0.00910272914916277, -0.023525847122073174, 0.006968296132981777, -0.002970157889649272, 0.018126986920833588, 0.002477747155353427, 0.0008268966339528561, 0.001614557346329093, 0.010020849294960499, -0.019649339839816093, -0.016008248552680016, -0.0017067617736756802, -0.015819916501641273, 0.06007801368832588, -0.01254764199256897, -0.00959710218012333, 0.0329267680644989, -0.014901796355843544, 0.030399978160858154, 0.0230393223464489, -0.0074783628806471825, 0.019696423783898354, 0.001276147784665227, 0.009746198542416096, 0.02694721892476082, -0.003917704802006483, 0.02793596312403679, 0.00819245632737875, -0.0018784188432618976, 0.020732251927256584, -0.016000401228666306, -0.035312313586473465, 0.017922960221767426, 0.008851619437336922, 0.03741535544395447, 0.010797720402479172, 0.00019666996377054602, 0.00673288106918335, 0.004131540656089783, -0.02220752090215683, 0.0026837356854230165, -0.004206088837236166, 0.07282183319330215, 0.04228061065077782, -0.011260704137384892, -0.02131294272840023, 0.028359711170196533, -0.02405945584177971, 0.045105595141649246, -0.02999192476272583, -0.021564051508903503, -0.02136002480983734, -0.001715589896775782, 0.010986052453517914, 0.0261938888579607, 0.0016704685986042023, -0.009377380833029747, 0.0223016869276762, -0.02704138495028019, -0.04328504949808121, -0.02401237189769745, 0.01754629611968994, 0.018582124263048172, -0.002601340413093567, -0.012139588594436646, 0.038231462240219116, 0.0006880996515974402, 0.01502735074609518, 0.0389220155775547, 0.008396483026444912, 0.008726065047085285, -0.012272990308701992, 0.03942423686385155, 0.008694675751030445, 0.011833548545837402, 0.020638084039092064, 0.0501277893781662, 0.03109052963554859, 0.004072686657309532, -0.005932468455284834, 0.0005267420201562345, -0.012822292745113373, 0.01493318472057581, 0.044854484498500824, 0.004190394654870033, 0.0031094453297555447, 0.03553203493356705, -0.031184695661067963, 0.022803906351327896, 0.02225460484623909, 0.041213393211364746, -0.027826102450489998, 0.006862359587103128, -0.03007039614021778, 0.007815792225301266, 0.0023109947796911, -0.0041629294864833355, -0.005434172693639994, 0.02324334904551506, -0.014438812620937824, -0.01950809173285961, -0.03556342050433159, 0.01011501532047987, -0.01632213592529297, 0.010169945657253265, -0.006807429250329733, -0.020763639360666275, -0.017734628170728683, -0.008090442977845669, 0.008890855126082897, -0.024545980617403984, -0.007517599035054445, -0.03772924467921257, -0.026554858312010765, -0.01643199659883976, -0.01927267573773861, 0.019100038334727287, -0.006415070034563541, 0.025832917541265488, -0.01550602912902832, -0.010829108767211437, -0.011590286158025265, 0.021454190835356712, -0.02988206408917904, 0.0241693165153265, 0.01356777548789978, 0.01107237208634615, 0.016196580603718758, -0.025911390781402588, 0.011323481798171997, -0.003801959101110697, -0.010256265290081501, -0.0034763009753078222, -0.0016292708460241556, 0.022976545616984367, -0.023871123790740967, -0.028642209246754646, 0.0241693165153265, 0.0017195134423673153, 0.04344199225306511, 0.02796735242009163, 0.026649024337530136, 0.0065092360600829124, -0.010224875994026661, 0.02523653209209442, 0.005367471370846033, 0.0110331354662776, -0.010452444665133953, 0.004739697091281414, -0.010570152662694454, 0.016745883971452713, 0.005198757164180279, 0.001356581342406571, -0.026790274307131767, -0.03273843601346016, 0.014344645664095879, -5.992671140120365e-05, 0.004084457643330097, -0.022976545616984367, -0.009338145144283772, -0.0232747383415699, 0.0020245725754648447, 0.006007016636431217, -0.021862244233489037, 0.030682476237416267, -0.010264112614095211, 0.0016518315533176064, 0.005885385442525148, 0.008341552689671516, -0.05006501078605652, -0.002258026273921132, -0.024593064561486244, -0.027669157832860947, -0.04046006128191948, -0.0005458695231936872, 0.010107168927788734, 0.031200390309095383, 0.0041590058244764805, 0.01919420436024666, 0.005952086299657822, 0.002926998306065798, -0.0015488372882828116, -0.03411954268813133, -0.004963341634720564, 0.0041550821624696255, -0.021093221381306648, 0.003338975366204977, -0.0006885901093482971, -0.0154903344810009, 0.004068762995302677, 0.004857404623180628, 0.018126986920833588, -0.021485580131411552, -0.0038941632956266403, 0.0172794908285141, -0.0005306655657477677, 0.019869061186909676, 0.00529292318969965, 0.01345006749033928, 0.010099321603775024, -0.014313257299363613, -0.005198757164180279, 0.01641630195081234, -0.017766017466783524, -0.0027308189310133457, 0.05794358253479004, 0.04165283590555191, 0.0073920441791415215, -0.01732657477259636, 0.03933006897568703, 0.006450382526963949, 0.009581407532095909, 0.013905203901231289, 0.02305501699447632, 0.0032585416920483112, 0.02598986215889454, 0.06202411651611328, 0.007894263602793217, -0.009557865560054779, 0.00011488762538647279, 0.012280837632715702, -0.03264427185058594, 0.0030388205777853727, -0.004425809718668461, -0.012351462617516518, 0.016996992751955986, -0.0056538935750722885, -0.046863362193107605, -0.00030751139274798334, 0.02038697525858879, 0.0033585932105779648, 0.01163736917078495, -0.013120485469698906, -0.005700976587831974, 0.011551049537956715, -0.00632875133305788, 0.013583469204604626, 0.004998654127120972, -0.00878099538385868, 0.01539616845548153, -0.004998654127120972, -0.001258491538465023, 0.012673196382820606, 0.08983452618122101, 0.003837271360680461, 0.0016125956317409873, 0.008804536424577236, 0.010044391267001629, -0.03484148159623146, -0.0020657703280448914, 0.00023946161672938615, -0.003072171239182353, 0.019759200513362885, -0.005332159344106913, 0.002134433016180992, -0.014352492988109589, 0.014870407059788704, 0.009047798812389374, -0.005387089680880308, 0.009314603172242641, -0.0071527049876749516, -0.002003973815590143, 0.008000200614333153, 0.01925698108971119, -2.992503823406878e-06, 0.008992868475615978, -0.03594008833169937, -0.017201019451022148, -0.010013001970946789, -0.007713778410106897, -0.04180977866053581, -0.006987914443016052, 0.02233307622373104, -0.007352808024734259, -0.0011192040983587503, -0.005006500985473394, 0.029395539313554764, 0.008592662401497364, 0.00911057647317648, -0.026633331552147865, -0.009895294904708862, 0.008553426712751389, 0.013960134238004684, -0.030541226267814636, -0.007698084227740765, -0.015717903152108192, -0.020591001957654953, -0.02033989131450653, 0.02804582379758358, -0.03273843601346016, -0.02901887334883213, -0.010358278639614582, -0.05709608644247055, -0.021046137437224388, -0.01309694442898035, 0.007344961166381836, -0.024655841290950775, -0.014870407059788704, -0.009981613606214523, 0.012602572329342365, 0.014862559735774994, -0.0017440358642488718, 0.033177878707647324, 0.006265973672270775, 0.01297923643141985, -0.025660280138254166, 0.01261826604604721, -0.0173579640686512, -0.02691582962870598, 0.0423433855175972, -0.011221468448638916, 0.024922644719481468, -0.019900450482964516, -0.027637770399451256, 0.008427872322499752, 0.02793596312403679, 0.0030564768239855766, 0.04353615641593933, 0.010515222325921059, -0.017985736951231956, 0.023808345198631287, 0.004759314935654402, -0.04526253789663315, -0.04519975930452347, 0.02126585878431797, -0.005457714200019836, 0.009047798812389374, -0.015984706580638885, -0.013920898549258709, 0.008961480110883713, -0.0013928745174780488, -0.029787898063659668, 0.04943723604083061, -0.000746953475754708, -0.0056499699130654335, 0.002365924883633852, -0.009455852210521698, 0.02026141993701458, -0.006120800971984863, -0.034307874739170074, -0.030227338895201683, -0.022442936897277832, -0.011323481798171997, 0.022034883499145508, 0.008121832273900509, -0.025550419464707375, 0.018770456314086914, -0.03258149325847626, -0.012014033272862434, -0.03206358104944229, -0.038105908781290054, -0.020073087885975838, 0.0014458430232480168, -0.049782514572143555, -0.004716155584901571, 0.038294240832328796, 0.0021187388338148594, 0.012830140069127083, 0.013144027441740036, 0.025393476709723473, -0.009926683269441128, 0.016902826726436615, -0.027276799082756042, 0.013481455855071545, 0.009338145144283772, -0.0009804071160033345, -0.019523784518241882, -0.013685482554137707, -0.0028034052811563015, 0.03653647378087044, -0.008098290301859379, -0.017781710252165794, -0.0060815648175776005, -0.004178623668849468, -0.01162167452275753, 0.03951840102672577, 0.006662256084382534, -0.004665148910135031, 0.020747944712638855, -0.011810006573796272, -0.016918521374464035, 0.006199272815138102, 0.007086004130542278, -0.029740814119577408, 0.008569121360778809, -0.023886818438768387, -0.03559480980038643, 0.010264112614095211, -0.03255010396242142, 0.018848927691578865, 0.028187071904540062, 0.023415986448526382, 0.016573244705796242, -0.009636337868869305, 0.001516467658802867, 0.002748474944382906, -0.002267835196107626, -0.017640462145209312, -0.06440965831279755, 0.024451814591884613, -0.004661225248128176, -0.02528361603617668, -0.006987914443016052, 0.003992252983152866, -0.004433657042682171, 0.0064268410205841064, -0.007376349531114101, 0.019884755834937096, 0.0015194102888926864, 0.0134657621383667, -0.009942377917468548, 0.004818168934434652, -0.005183062981814146, 0.013646246865391731, -0.03603425249457359, -0.0033546697814017534, -0.0038941632956266403, 0.020026003941893578, -0.041935332119464874, -0.007164475973695517, 0.022819600999355316, -0.0009661841322667897, -0.00457098288461566, 0.01652616262435913, 0.016071025282144547, 0.02813998982310295, 0.017718933522701263, -0.011237162165343761, 0.03251871466636658, -0.02997623011469841, -0.012170976959168911, 0.0014046452706679702, -0.017922960221767426, -0.0013879700563848019, -0.009981613606214523, -0.023980984464287758, 0.040240343660116196, 0.025566114112734795, 0.02412223257124424, 0.024530285969376564, -0.011653062887489796, -0.02713555097579956, 0.004810321610420942, -0.013975828886032104, 0.003450797637924552, -0.008263081312179565, -0.008098290301859379, 0.005520491395145655, -0.0020020119845867157, 0.0038255006074905396, -0.013308818452060223, 0.03685035929083824, 0.030243033543229103, -0.015231377445161343, 0.03160844370722771, -0.02318057231605053, 0.020669473335146904, 0.0065249307081103325, -0.02143849804997444, 0.013410831801593304, 0.045764755457639694, 0.024530285969376564, -0.04727141559123993, -0.008372941985726357, 0.0060933358035981655, 0.022898072376847267, -0.017075464129447937, 0.0013595240889117122, 0.050724174827337265, 0.028579432517290115, -0.03939284756779671, 0.0013153835898265243, -0.0028956097085028887, 0.03550064563751221, -0.021909328177571297, -0.008176762610673904, 0.007333190180361271, -0.019790589809417725, -0.0075215226970613, 0.038262851536273956, -0.01941392384469509, 0.021485580131411552, -0.015921929851174355, -0.0037548758555203676, 0.015890540555119514, 0.004421886056661606, 0.019680729135870934, 0.02908165194094181, 0.01549818180501461, 0.005940315779298544, 0.045105595141649246, 0.010656471364200115, 0.004971188958734274, -0.02690013498067856, -0.012477017007768154, -0.0039118193089962006, -0.027355272322893143, -0.014886101707816124, 0.003144757589325309, 0.03088650293648243, 0.01071924902498722, -0.012108199298381805, 0.0011407838901504874, 0.024734312668442726, 0.01541186310350895, 0.038137298077344894, -0.022913767024874687, -0.016008248552680016, 0.016887132078409195, 0.02035558596253395, -0.04064839705824852, -0.03766646608710289, 0.021595440804958344, 0.023620013147592545, 0.0149253373965621, 0.016761578619480133, -0.0019225592259317636, 0.0017214752733707428, 0.0074940575286746025, 0.00920474249869585, 0.03099636361002922, -0.01829962432384491, -0.008161067962646484, -0.01108021941035986, 0.006042329128831625, -0.01061723567545414, -0.030117478221654892, 0.01927267573773861, 0.0115981325507164, -0.00868682935833931, 0.01540401577949524, -0.018801843747496605, 0.025832917541265488, -0.0006145323277451098, 0.026837358251214027, 0.008090442977845669, 0.006144342478364706, 0.01549818180501461, 0.005622504744678736, -0.0009328335872851312, 0.04287699609994888, 0.008031588979065418, -0.00013720305287279189, -0.01490964274853468, 0.002548371907323599, 0.010821262374520302, -0.010468139313161373, 0.006709339562803507, -0.002040266990661621, 0.01162167452275753, 0.018801843747496605, -0.01563158445060253, -0.0019098075572401285, 0.06936907768249512, -0.007635306566953659, -0.004637683741748333, 0.004806397948414087, 0.002805367112159729, 0.015325543470680714, -0.006140418816357851, 0.003986367955803871, 0.008482802659273148, 0.028548043221235275, 0.018111292272806168, 0.008937939070165157, 0.010625082068145275, -0.003854927374050021, 0.05019056797027588, 0.010232723318040371, 0.040240343660116196, -0.00012273481115698814, 0.019727811217308044, -0.0330837145447731, 0.01625935733318329, -0.007682389579713345, 0.03653647378087044, -0.010868345387279987, 0.04064839705824852, -0.004559211898595095, -0.020088782534003258, 0.015090128406882286, 0.023855429142713547, -0.013214652426540852, -0.011668757535517216, 0.01822115294635296, -0.025832917541265488, 0.00385100394487381, -0.012924306094646454, 0.024765701964497566, -0.014211243949830532, 0.0034841480664908886, -0.009636337868869305, 0.01740504615008831, 0.0026660796720534563, 0.020983360707759857, 0.005096743814647198, -0.0015664934180676937, -0.02594277821481228, -0.0005419459193944931, 0.002503250492736697, 0.010978206060826778, -0.01822115294635296, -0.012720279395580292, 0.015914082527160645, 0.006034481804817915, 0.013018472120165825, 0.024640146642923355, -0.018801843747496605, 0.013198957778513432, -0.011252856813371181, -0.009871752932667732, 0.002228599274531007, -0.022819600999355316, 0.00874175876379013, 0.00482993945479393, -0.009534324519336224, -0.021799467504024506, -0.031200390309095383, -0.07043629139661789, 0.00056941102957353, 0.024734312668442726, -0.0004472892906051129, -0.010797720402479172, 0.029442621394991875, 0.006752498913556337, 0.022662658244371414, 0.012398545630276203, 0.021030444651842117, -0.024514591321349144, -0.0003396357933524996, 0.025832917541265488, 0.005924621131271124]" -How FlightAware Fuels Flight Prediction Models for Global Travelers With TimescaleDB and Grafana,"- to ensure we're continually improving our predictions. Our predictive models can have short bursts of inaccuracy - like failing to anticipate the impact of a huge storm - but they can also drift slowly over time as real-life behaviors change.As an example of the type of data we extract, the below is our ""Worst Flights"" dashboard, which we use for QA. (Looking through outliers is an easy way to spot bugs.) The rightmost column compares our error to third-parties', so we can see how we're doing relative to the rest of the industry.Our Grafana dashboard for tracking ""Worst Flights"" and our prediction quality vs. other data sourcesBut, we also go deep into specific flights, like the below ""Single Flight"" dashboard view.This is useful for debugging, as it gives a detailed picture of how our predictions changed over the course of asingleflight.Our Grafana dashboard for debugging and assessing our prediction quality at the individual flight levelChoosing (and using) TimescaleDBWe tested out several different monitoring setups before settling on TimescaleDB and Grafana. We recently published ablog postdetailing our quest for a monitoring system, which I’ve summarized below.First, we considered usingZabbix; it's widely used at FlightAware, where most software reports into Zabbix in one way or another. However, we quickly realized that Zabbix was not the tool for the job – our Systems crew had serious doubts that Zabbix would be able to handle the load of all the metrics we wanted to track:We make predictions for around 75,000 flights per day; if we only stored two error values per flight (much fewer than we wanted), it would require making 100 inserts per minute.After ruling out Zabbix, I started looking atGrafanaas a visualization and alerting tool, and it seemed to have all the capabilities we needed. For my database backend, I first pickedPrometheus, because it was near the top of Grafana's ""supported databases"" list and its built-in visualization capabilities seemed promising for rapid development.I didn't know much about time-series databases, and, while Prometheus is a good fit for some data, it really didn't fit mine well:No JOINs. My only prior database experience was with PostgreSQL, and it didn't occur to me that some databases just wouldn't support JOINs. While wecouldhave worked around this issue by inserting specific, already-joined error metrics, this would have limited the flexibility",https://www.timescale.com/blog/how-flightaware-fuels-flight-prediction-models-with-timescaledb-and-grafana/,499,"[-0.0018830857006832957, 0.004617959726601839, 0.0871780663728714, -0.03722526133060455, 0.0411955788731575, 0.009524541907012463, 0.0038823243230581284, -0.010686071589589119, -0.02594786509871483, 0.04406772553920746, -0.023244669660925865, -0.02842579409480095, -0.007849123328924179, -0.02908751368522644, 0.007609778083860874, 0.027538808062672615, -0.01146746426820755, -0.012966892682015896, -0.06329983472824097, 0.010573438368737698, -0.03528233617544174, 0.021625567227602005, 0.02956620417535305, -0.018767500296235085, -0.01191799622029066, -0.009975074790418148, 0.006015314720571041, 0.04268796741962433, 0.027721837162971497, -0.03581734374165535, 0.03328309953212738, -0.026539187878370285, -0.03108675219118595, 0.014226975850760937, 0.03657761961221695, 0.015515218488872051, 0.042181119322776794, 0.028355399146676064, -0.006356733851134777, 0.00046681167441420257, 0.005160006694495678, 0.04936148226261139, 0.004885463509708643, 0.011439305730164051, -0.023343222215771675, 0.022484395653009415, -0.03553576394915581, -0.01811986044049263, -0.005167046096175909, 0.05561262369155884, -0.07839268445968628, 0.021878991276025772, -0.06268035620450974, 0.004114630166441202, 0.04950227588415146, -0.020372522994875908, -0.0280456580221653, 0.021428458392620087, -0.018542233854532242, -0.015275872312486172, -0.02002054452896118, -0.035648394376039505, 0.021738199517130852, 0.039365291595458984, -0.0024867290630936623, -0.014100263826549053, 0.004744671750813723, 0.012227737344801426, -0.023779677227139473, 0.01707800291478634, 0.03953424096107483, 0.007476026192307472, 0.037028152495622635, -0.014670469798147678, -0.005117769353091717, -0.022259129211306572, 0.04781277850270271, 0.04443378373980522, -0.0035919419024139643, -0.02241399884223938, -0.00042039446998387575, 0.025525489822030067, -0.056006841361522675, 0.03649314492940903, 0.04133636876940727, -0.056147631257772446, -0.0405479371547699, -0.02359664812684059, 0.02942541427910328, -0.018654868006706238, -0.02936909720301628, 0.050375182181596756, 0.015064685605466366, 0.013959472067654133, 0.033311259001493454, 0.03485996276140213, 0.01997830718755722, -0.002129470696672797, -0.014994289726018906, -0.008419329300522804, -0.005452149081975222, -0.00848972424864769, -0.015487059950828552, -0.019203953444957733, 0.03691551834344864, -0.04730592668056488, -0.008623476140201092, 0.030354637652635574, -0.004762270953506231, 0.04181506112217903, -0.036211561411619186, -0.02465258352458477, -0.0885859802365303, -0.014353688806295395, -0.017049845308065414, -0.021484775468707085, -0.04249085858464241, 0.015388505533337593, 0.04113926365971565, -0.003949200268834829, -0.008250379003584385, -0.006451768334954977, 0.017993148416280746, 0.01533218938857317, 0.03356468304991722, -0.02031620591878891, 0.012875378131866455, -0.04660196974873543, -0.03176255151629448, -0.005599980242550373, 0.05431734398007393, -0.0411955788731575, 0.04660196974873543, -0.0443493090569973, -0.011988392099738121, 0.001195847406052053, -0.026384318247437477, 0.016711944714188576, -0.004047754220664501, 0.009841322898864746, -0.019161716103553772, 0.017866434529423714, 0.025384698063135147, -0.00920776091516018, -0.07591474801301956, 0.00986948050558567, -0.007652015425264835, 0.03581734374165535, -0.032607302069664, 0.008785386569797993, -0.021442538127303123, 0.04629223048686981, -0.056429214775562286, -0.018753420561552048, 0.036267876625061035, 0.04905174300074577, 0.03266361728310585, -0.005251521244645119, -0.026243526488542557, -0.07450683414936066, 0.001474790507927537, 0.015698246657848358, 0.00032690016087144613, 0.002536006039008498, -0.01540258526802063, 0.003160768188536167, -0.0567389540374279, -0.039027389138936996, -0.0622861385345459, -0.014100263826549053, -0.03404337167739868, -0.007616817485541105, -0.015458901412785053, 0.020668184384703636, 0.027933023869991302, -0.012537478469312191, 0.006902300752699375, -0.06741094589233398, 0.04784093424677849, -0.02289268933236599, -0.093260258436203, 0.04910805821418762, -0.026257606223225594, 0.026694059371948242, -0.03274809196591377, 0.02027396857738495, -0.04001292958855629, 0.028101973235607147, 0.002537766005843878, 0.00808142963796854, -0.025060879066586494, 0.03975950554013252, 0.019006846472620964, 0.02289268933236599, 0.004449009895324707, -0.04806620255112648, 0.041364528238773346, 0.030495429411530495, -0.009749808348715305, 0.03773210942745209, 0.012234777212142944, 0.029481729492545128, 0.04955859109759331, -0.03868949040770531, -0.004656677134335041, 0.05502130091190338, 0.013720126822590828, -0.04865752533078194, -0.04620775580406189, -0.013438544236123562, 0.008370052091777325, -0.010411527939140797, 0.030101211741566658, -0.03300151601433754, -0.005490866489708424, -0.01438184641301632, -0.0732678696513176, -0.03528233617544174, 0.0005816447082906961, 0.008813545107841492, 0.0005165286129340529, 0.01917579583823681, 0.01949961669743061, -0.03680288419127464, -0.008919138461351395, 0.015078764408826828, 0.054232869297266006, -0.008961375802755356, 0.042519018054008484, 0.019893832504749298, 0.010932456701993942, -0.01635996624827385, 0.0013005610089749098, -0.007222601678222418, 0.024061258882284164, -0.03291704133152962, -0.004149828106164932, -0.03432495519518852, 0.04449009895324707, 0.006831905338913202, 0.003818968078121543, 0.017894593998789787, -0.027257224544882774, 0.030439112335443497, 0.01397355180233717, 0.02522982843220234, -0.05465524271130562, -0.03243834897875786, 0.04049162194132805, 0.06701672822237015, 0.03100227750837803, -0.04311034455895424, 0.006226501893252134, -0.019668566063046455, 0.004273020662367344, -0.031171226873993874, -0.018232492730021477, 0.01659931242465973, 0.02041476033627987, -0.027200909331440926, -0.001948201679624617, -0.0025025680661201477, -0.05183941125869751, 0.03719710186123848, -0.05288127064704895, -0.01821841485798359, -0.000156190522830002, -0.03683104366064072, -0.012361489236354828, -0.027454333379864693, 0.012833140790462494, 0.04834778606891632, 0.01056639850139618, -0.04325113445520401, -0.01917579583823681, -0.012389647774398327, -0.011530820280313492, -0.004487727768719196, -0.008764267899096012, -0.028073815628886223, 0.007616817485541105, -0.05845661088824272, 0.014670469798147678, -0.009130326099693775, 0.017148399725556374, -0.00197811983525753, 0.011889838613569736, 0.029791470617055893, 0.022667424753308296, -0.019063163548707962, 0.004903062246739864, -0.006955097895115614, 0.022568870335817337, -0.03325494006276131, 0.047136977314949036, 0.013389267027378082, -0.029960421845316887, 0.006969176698476076, -0.04519405588507652, -0.015768643468618393, -0.00734227430075407, -0.035648394376039505, -0.0071099684573709965, -0.006342655047774315, 0.029481729492545128, -0.0042941393330693245, 0.020921610295772552, 0.04311034455895424, -0.023258747532963753, 0.02341361902654171, -0.008398209698498249, 0.004093511495739222, 0.015177318826317787, 0.02041476033627987, -0.015388505533337593, -0.005951958708465099, 0.08126482367515564, -0.031058594584465027, 0.028482111170887947, -0.07157837599515915, -0.04764382913708687, -0.0854322537779808, -0.011031010188162327, 0.01735958643257618, 0.00367817678488791, -0.03291704133152962, 0.022188732400536537, 0.014994289726018906, 0.02169596217572689, -0.013079525902867317, 0.005043854005634785, -0.003738013096153736, 0.006423609796911478, 0.03457837924361229, -0.050290707498788834, -0.06876254826784134, -0.01261491421610117, 0.005459188483655453, -0.03542312979698181, 0.019232112914323807, -0.023146115243434906, -0.04285691678524017, -0.06425721943378448, -0.003442351007834077, 0.00784208346158266, 0.01316400058567524, -0.03210045024752617, -0.0011210519587621093, 0.010158102959394455, -0.0005851644673384726, -0.03925265744328499, 0.02179451659321785, -0.007071250583976507, 0.0008007513824850321, -0.015909433364868164, 0.02694748342037201, 0.02145661786198616, 0.023343222215771675, -0.006409530993551016, -0.00860939733684063, -0.037591319531202316, 0.04215295985341072, 0.007205002475529909, 0.0010937736369669437, 0.010622714646160603, 0.02631392329931259, -0.013614533469080925, -0.012164381332695484, -0.006916380021721125, -0.014783102087676525, 0.020949767902493477, -0.0006172825233079493, -0.030073054134845734, 0.019612248986959457, -0.05488050729036331, -0.025821153074502945, 0.058006078004837036, 0.006613678298890591, -0.003169567557051778, 0.046095121651887894, 0.023019403219223022, 0.010622714646160603, 0.008848742581903934, -0.013790522702038288, 0.031199386343359947, 0.04192769527435303, -0.01194615475833416, -0.00010025891242548823, -0.06662251800298691, -0.0073845116421580315, 0.005987156648188829, 0.011108445934951305, -0.023681122809648514, -0.0442366749048233, -0.03066437877714634, 0.012509320862591267, -0.017894593998789787, 0.05963926017284393, 0.03866133466362953, 0.03257914260029793, 0.013178080320358276, -0.03573286905884743, -0.06718567758798599, 0.02183675393462181, -0.004850265569984913, 0.02998857945203781, -0.004163907375186682, 0.020513314753770828, 0.002602881984785199, -0.03899923339486122, -0.01404394768178463, -0.024286525323987007, 0.036127086728811264, -0.009707571007311344, 0.03584550321102142, -0.005149447359144688, -0.003532105591148138, 0.05617579072713852, 0.0035409049596637487, 0.05040334165096283, -0.031312018632888794, 0.00594843877479434, -0.03086148574948311, 0.02131582610309124, -0.06459511816501617, 0.03204413503408432, 0.052768636494874954, -0.044039566069841385, 0.02231544442474842, -0.0807579755783081, -0.00015861037536524236, 0.012143262661993504, 0.021048322319984436, 0.005783008877187967, -0.04223743453621864, 0.03136833384633064, 0.023948626592755318, -0.0473904013633728, 0.029031196609139442, 0.02956620417535305, 0.0054169511422514915, -0.039506081491708755, -0.0015645449748262763, 0.027975261211395264, -0.018654868006706238, -0.02718682959675789, -0.03100227750837803, -0.050234388560056686, -0.010312973521649837, -0.011502661742269993, 0.03866133466362953, -0.030073054134845734, -0.03300151601433754, 0.016374045982956886, -0.0372815765440464, -0.06718567758798599, 0.007264839019626379, -0.018471838906407356, 0.05617579072713852, -0.024061258882284164, -0.022963086143136024, 0.046799078583717346, -0.08030744642019272, 0.005744291469454765, -0.00730707636103034, -0.026440635323524475, 0.07450683414936066, -0.01044672541320324, 0.02736985869705677, -0.025497332215309143, -0.0041991048492491245, -0.01247412245720625, -0.012854259461164474, -0.00031766071333549917, -0.02889040671288967, 0.03823895752429962, 0.013600454665720463, -0.013515979051589966, -0.01606430485844612, -0.010531201027333736, 0.006286338437348604, -0.017246952280402184, -0.004304698668420315, 0.04113926365971565, 0.018429601565003395, 0.003660577815026045, 0.015078764408826828, 0.0035549842286854982, 0.007898400537669659, -0.010974694043397903, -0.016951290890574455, -0.015529297292232513, 0.03542312979698181, -0.016374045982956886, -0.026961563155055046, -0.015853118151426315, -0.06352510303258896, -0.0026679979637265205, 0.022259129211306572, -0.01745814085006714, 0.039027389138936996, -0.024624425917863846, -0.02446955442428589, 0.09433027356863022, 0.021850833669304848, 0.008743149228394032, 0.011052128858864307, -0.009953956119716167, -0.00939079001545906, -0.027285384014248848, 0.004681315738707781, 0.02432876266539097, 0.0034617099445313215, 0.011284435167908669, -0.035507604479789734, 0.03398705646395683, 0.015853118151426315, 0.008567159995436668, -0.02379375509917736, -0.01519139762967825, -0.02742617577314377, -0.028820009902119637, -0.026736296713352203, 0.015289952047169209, -0.010235538706183434, -0.01325551513582468, -0.04004108905792236, 0.0011492102639749646, -0.014698627404868603, 0.011784244328737259, 0.016416283324360847, -0.002676797565072775, -0.00590268149971962, 0.009630135260522366, -0.04392693191766739, -0.013480781577527523, -0.016627470031380653, -0.048573050647974014, -0.04693986847996712, 0.012368529103696346, 0.04632038623094559, 0.020541472360491753, 0.005019215401262045, 0.014529678039252758, 0.004097031429409981, -0.015571534633636475, 0.017204714938998222, -0.008292616344988346, -0.027454333379864693, 0.02922830544412136, 0.01959817111492157, -0.03291704133152962, -0.0002644239575602114, -0.02976331301033497, -0.005367673933506012, 0.02446955442428589, -0.002847507130354643, -0.0003849766217172146, 0.00461443979293108, -0.006117388606071472, 0.00022636626090388745, 0.0034405910409986973, -0.012051748111844063, -0.005423990543931723, -0.015472980216145515, 0.04401140660047531, 0.00019754801178351045, -0.01997830718755722, -0.03528233617544174, 0.010263697244226933, -0.014966131187975407, -0.034888122230768204, 0.011474503204226494, 0.001826769090257585, 0.0075534614734351635, 0.043476399034261703, -0.03004489652812481, -0.03919634222984314, 0.006694633513689041, 0.0213580634444952, -0.04350455850362778, 0.006694633513689041, -0.01146746426820755, 0.03179071098566055, -0.03322678431868553, 0.015050605870783329, 0.029735155403614044, 0.02421613037586212, -0.0029706996865570545, -0.010925416834652424, 0.03415600582957268, -0.010911338031291962, -0.023821914568543434, 0.0009028252097778022, 0.0007329955114983022, 0.03443758934736252, -0.0017572533106431365, 0.02317427285015583, -0.005406391806900501, 0.04254717752337456, 0.026553267613053322, 0.0069093406200408936, -0.002270262222737074, -0.04660196974873543, -0.01674010418355465, 0.02321651019155979, 0.018542233854532242, 0.028242764994502068, 0.013839799910783768, -0.019443299621343613, -0.005131848622113466, 0.0056914943270385265, -0.01802130602300167, -0.05693606287240982, -0.016289571300148964, 0.009806124493479729, -0.030748853459954262, -0.01792275160551071, 0.011481543071568012, -0.03514154627919197, -0.020161336287856102, -0.041223738342523575, -0.002451531123369932, -0.03094596043229103, -0.01564192958176136, 0.012903536669909954, -0.003380754729732871, -0.029200147837400436, -0.0029619000852108, -0.002905583707615733, -0.000886546156834811, 0.028439873829483986, 0.03877396509051323, 0.022047940641641617, -0.004959378857165575, 0.010735347867012024, 0.011650492437183857, 0.02956620417535305, -0.005029774736613035, -0.03122754395008087, 0.01678234152495861, 0.027581045404076576, -0.026581427082419395, -0.011756086722016335, 0.023103877902030945, -0.04781277850270271, 0.009221839718520641, 0.0389147587120533, -0.007947677746415138, -0.020963847637176514, -0.0351133868098259, -0.01883789710700512, 0.05285311117768288, 0.03683104366064072, 0.024202050641179085, -0.01955593191087246, -0.029538046568632126, -0.0079617565497756, -0.010136984288692474, 0.007208522409200668, -0.05645737424492836, 0.038126327097415924, -0.023343222215771675, -8.326494571520016e-05, -0.044518258422613144, 0.01447336096316576, 0.0475030355155468, -0.00600827531889081, 0.043476399034261703, 0.032691776752471924, -0.019724883139133453, 0.002129470696672797, -0.008567159995436668, 0.040885839611291885, 0.01650075800716877, 0.0033825146965682507, 0.002421613084152341, -0.04316665977239609, 0.0066031189635396, 0.07084625959396362, -0.043363768607378006, 0.016613392159342766, -0.04449009895324707, 0.016007987782359123, -0.006972696632146835, 0.016909053549170494, -0.033592838793992996, 0.0032505227718502283, 0.035028912127017975, 0.022005703300237656, 0.002615201286971569, 0.023638885468244553, 0.018007226288318634, 0.008405249565839767, -0.039984773844480515, -0.010228498838841915, -0.00586748355999589, 0.06752358376979828, -0.03519786149263382, -0.035929977893829346, 0.01468454860150814, 0.012382607907056808, -0.045278530567884445, -0.03525418043136597, -0.029453571885824203, -0.009454146027565002, 0.014325530268251896, -0.015458901412785053, 0.022625185549259186, -0.03767579421401024, -0.022808214649558067, 0.02323058992624283, -0.0019833995029330254, 0.0008909458993002772, -0.02956620417535305, 0.003479308681562543, -0.03694367781281471, 0.04066057130694389, -0.02379375509917736, -0.015444822609424591, -0.05578157305717468, 0.02517351135611534, -0.029397254809737206, -0.030720695853233337, 0.043420083820819855, -0.030720695853233337, -0.004480687901377678, 0.0214143805205822, 0.011643453501164913, -0.0653272345662117, 0.022906769067049026, 0.0147549444809556, 0.0372815765440464, -0.01855631358921528, 0.038464225828647614, -0.019471457228064537, -0.011129564605653286, -0.022963086143136024, -0.0033948339987546206, 0.01612062193453312, 0.010151064023375511, 0.008412289433181286, -0.00794063787907362, -0.03911186382174492, 0.01969672366976738, -0.03823895752429962, 0.01778195984661579, 0.03525418043136597, 0.02560996450483799, -0.025581806898117065, -0.011263316497206688, 0.013544137589633465, -0.00015234075544867665, -0.008799465373158455, -0.019006846472620964, -0.010263697244226933, 0.0021752279717475176, 0.011903917416930199, 0.014557836577296257, 0.03263545781373978, 0.009362631477415562, 0.03142465278506279, -0.013501900248229504, 0.02575075626373291, -0.024089418351650238, 0.01173496711999178, -0.003660577815026045, 0.005631658248603344, -0.010805743746459484, -0.0030146969947963953, -0.01413546223193407, -0.036464985460042953, 0.005205763969570398, 0.011101406067609787, 0.043898776173591614, -0.011214039288461208, -0.015346268191933632, 0.013938353396952152, -0.004258941393345594, 0.0544581338763237, 0.009756847284734249, -0.0033737150952219963, 0.002235064283013344, 0.003407153068110347, 0.010742387734353542, 0.0077224113047122955, 0.006754470057785511, 0.0004619719402398914, -0.038323432207107544, 0.0037802504375576973, -0.025060879066586494, -0.012079906649887562, -0.008743149228394032, -0.012009510770440102, 0.004786909557878971, -0.008074389770627022, 0.010355211794376373, -0.1042419895529747, -0.07546421885490417, 0.04257533699274063, -0.015022448264062405, -0.013663810677826405, 0.027116434648633003, 0.006458807736635208, -0.008250379003584385, 0.01321327779442072, -0.020808976143598557, -0.018274730071425438, -0.03052358701825142, -0.03584550321102142, 0.015374426729977131, -0.0027612722478806973, 0.0040864720940589905, -0.01380460150539875, 0.03342388942837715, 0.021442538127303123, 0.027243146672844887, -0.024202050641179085, -0.007064211182296276, -0.02742617577314377, 0.030777011066675186, 0.015712326392531395, -0.0011984872398898005, -0.013417425565421581, 0.023103877902030945, 0.0013700767885893583, -0.005357114598155022, 0.01878158003091812, -0.048375941812992096, -0.007328195031732321, 0.02818644791841507, 0.008834663778543472, 0.030495429411530495, -0.0013357589486986399, -0.0017378944903612137, -0.004962898790836334, 0.001104332972317934, -0.045898012816905975, -0.008208141662180424, 0.05192388594150543, -0.04491247236728668, 0.04457457363605499, -0.03066437877714634, 0.01878158003091812, 0.020583709701895714, -0.015430742874741554, 0.0014466322027146816, 0.02399086393415928, -0.0021805076394230127, -0.012995051220059395, 0.009433027356863022, -0.011544899083673954, 0.021090559661388397, -0.02321651019155979, 0.005265600513666868, -0.034353114664554596, -0.0034740290138870478, -0.02383599244058132, 0.009257038123905659, 0.018570393323898315, -0.05012175813317299, -0.011833521537482738, 0.006810786668211222, 0.019161716103553772, 0.026004182174801826, -0.03136833384633064, -0.02275189943611622, 0.029650680720806122, 0.0405479371547699, 0.01626141369342804, 0.005420471075922251, 0.006208903156220913, 0.005621098913252354, 0.014029867947101593, -0.01268531009554863, -0.03094596043229103, -0.017669327557086945, 0.004128709435462952, 0.0009485824266448617, 0.00530431792140007, 0.010700150392949581, 0.029397254809737206, 0.02017541602253914, -0.001971080433577299, -0.006303937174379826, -0.0016666188603267074, 0.00671223271638155, 0.03150912746787071, -0.0016534195747226477, -0.007567540742456913, -0.001960520865395665, 0.016472600400447845, 0.014360727742314339, 0.005599980242550373, 0.011756086722016335, 0.012882417999207973, 0.01659931242465973, 0.028721455484628677, -0.0015918234130367637, 0.03784474357962608, 0.008018073625862598, -0.0018830857006832957, -0.018753420561552048, 0.013248475268483162, -0.020386602729558945, -0.011798324063420296, 0.021104639396071434, -0.008827623911201954, 0.028003420680761337, 0.027538808062672615, 0.0020766740199178457, 0.02493416704237461, -0.00591324083507061, -0.019668566063046455, -0.008003993891179562, 0.005082571413367987, -0.024202050641179085, 0.05079755559563637, -0.02594786509871483, -0.02041476033627987, 0.043279293924570084, -0.013431504368782043, 0.022639265283942223, 0.025919705629348755, 0.004825626965612173, 0.006923419889062643, 0.0056175789795815945, 0.0002624440530780703, 0.033452048897743225, -0.010833902284502983, 0.0428287610411644, 0.006958617363125086, -0.02713051252067089, 0.021062402054667473, 0.0007849123212508857, 0.023498093709349632, 0.043138500303030014, -0.012460043653845787, 0.04786909371614456, 0.010904298163950443, 0.01769748516380787, 0.0030498949345201254, -0.009862441569566727, -0.026539187878370285, 0.006247620563954115, -0.007567540742456913, 0.027735916897654533, 0.05471155792474747, -0.021541092544794083, -0.007968796417117119, 0.009271116927266121, -0.009982113726437092, 0.0427161268889904, -0.025595886632800102, -0.015951670706272125, -0.03356468304991722, -0.0026240006554871798, 0.016092462465167046, 0.01964040845632553, 0.019189875572919846, -0.02622944675385952, 0.049136217683553696, -0.03742236644029617, -0.026004182174801826, -0.010397449135780334, -0.002924942411482334, 0.024385079741477966, -0.004420851822942495, -0.016106542199850082, 0.03683104366064072, 0.0008275897707790136, 0.02908751368522644, 0.05406391620635986, -0.0076590548269450665, 0.014128422364592552, 0.01979527808725834, 0.021104639396071434, -0.022188732400536537, 0.002750712912529707, 0.008933217264711857, 0.06127243861556053, 0.04381430149078369, -0.006247620563954115, -0.005511985160410404, 0.012410766445100307, -0.018485918641090393, 0.00535359513014555, 0.02165372483432293, -0.008961375802755356, 0.01911947876214981, 0.022329524159431458, -0.032353874295949936, 0.01461415272206068, 0.036127086728811264, 0.025441015139222145, -0.012241817079484463, 0.013818681240081787, -0.02327282726764679, 0.007609778083860874, -0.008996574208140373, -0.010249617509543896, -0.014163619838654995, 0.0021752279717475176, -0.014029867947101593, 0.013649730943143368, -0.04744672030210495, 0.004927700851112604, 0.0021470696665346622, 0.03685920313000679, 0.001438712701201439, 0.003412432735785842, -0.012220698408782482, 0.023737438023090363, 0.015599693171679974, -0.008602357469499111, 0.002046755747869611, -0.04051978141069412, -0.034831807017326355, -0.024089418351650238, -0.007162765134125948, 0.025215748697519302, -0.01337518822401762, 0.03376179188489914, 0.005441589746624231, -0.02179451659321785, 0.007729450706392527, 0.01892237178981304, -0.015036527067422867, 0.023103877902030945, 0.016007987782359123, 0.007785767316818237, -0.005519025027751923, 0.03987213969230652, 0.01626141369342804, 0.012762744911015034, 0.005068492144346237, -0.0031994858291000128, -0.0025870429817587137, -0.005445109214633703, -0.0005306077655404806, -0.022765977308154106, 0.012995051220059395, -0.021527012810111046, 0.05274047702550888, 0.026018260046839714, 0.009024731814861298, 0.005508465692400932, 0.015036527067422867, 0.018133938312530518, 0.004677795805037022, 0.026961563155055046, -0.0033701953943818808, 0.006539762951433659, -0.005610539577901363, 0.0003561583871487528, -0.024497712031006813, -0.022287286818027496, -0.016134699806571007, 0.00038387670065276325, -0.02560996450483799, -0.015444822609424591, -0.015106922946870327, 0.002833428094163537, -0.027623282745480537, -0.015430742874741554, 0.03210045024752617, 0.003276921110227704, -0.04710882157087326, 0.01612062193453312, -0.017275111749768257, -0.005863964091986418, -0.009271116927266121, -0.0028791851364076138, -0.04144900292158127, -0.000782712479121983, -0.003546184627339244, -0.030354637652635574, -0.03897107392549515, 0.00082538987044245, -0.006145546678453684, -0.006824865471571684, 0.0252720657736063, -0.0005028894520364702, 0.0018426080932840705, -0.00014222136815078557, -0.002785910852253437, -0.01129851397126913, 0.00929927546530962, 0.022343603894114494, -0.012417806312441826, 0.016416283324360847, -0.025018641725182533, -0.0025219270028173923, 0.01189687754958868, 0.011854640208184719, 0.031396493315696716, -0.01873934268951416, 0.016993528231978416, -0.019865673035383224, 0.014501519501209259, 0.012431885115802288, 0.01621917448937893, 0.004727073013782501, -0.007057171780616045, -0.0019394023111090064, -0.002470890060067177, 0.02622944675385952, -0.0061561064794659615, -0.017134319990873337, 0.03643682971596718, 0.0366339348256588, 0.0004610920150298625, -0.02670813910663128, 0.037506841123104095, -0.0034634696785360575, -0.0014844698598608375, 0.015444822609424591, -0.0060188346542418, 0.018190255388617516, 0.018992766737937927, 0.031255703419446945, -0.007433788850903511, -0.0068811820819973946, 0.029960421845316887, 0.021386221051216125, -0.03080517053604126, 6.792087515350431e-05, -0.019781198352575302, 0.011221079155802727, -0.000782712479121983, 0.019584091380238533, -0.04553195461630821, -0.008827623911201954, 0.009975074790418148, 0.005198724567890167, -0.002629280323162675, -0.005237441975623369, 0.020766738802194595, -0.005783008877187967, -0.01688089594244957, -0.0012944014742970467, -0.007933598011732101, -0.0031994858291000128, 0.021048322319984436, -0.0033596360590308905, -0.015022448264062405, 0.013699008151888847, 0.0792374312877655, 0.0034546703100204468, -0.021949388086795807, 0.0210342425853014, 0.002829908160492778, -0.012896496802568436, -0.024962324649095535, 0.005350075196474791, -0.0056246183812618256, 0.04237822815775871, -0.011270355433225632, 0.02317427285015583, -0.016331808641552925, 0.015022448264062405, -0.007595698814839125, 1.3921029449193156e-06, 0.011221079155802727, 0.000691638037096709, 0.008306696079671383, -0.02017541602253914, 0.02359664812684059, 0.01583903841674328, 0.02814421057701111, 0.0005077291862107813, 0.011143643409013748, 0.01132667250931263, -0.017429981380701065, -0.02741209603846073, 0.011671611107885838, 0.037788424640893936, -0.011791284196078777, -0.022259129211306572, -0.004948819521814585, 0.013600454665720463, -0.0005288479151204228, 0.013065447099506855, -0.02599010244011879, 0.029932262375950813, 0.010897258296608925, -0.01387499738484621, -0.00977796595543623, -0.019893832504749298, 0.008053271099925041, 0.0019746001344174147, -0.03638051077723503, 0.03691551834344864, 0.004991056863218546, 0.00043667349382303655, -0.011587136425077915, -0.044996947050094604, -0.010327053256332874, -0.003139649285003543, -0.00791951920837164, -0.01783827692270279, 0.0063708131201565266, -0.013178080320358276, 0.011939114890992641, -0.0011210519587621093, -0.026722216978669167, 0.00728595769032836, -0.0020713943522423506, 0.009756847284734249, 0.013523018918931484, -0.00019589810108300298, -0.011129564605653286, -0.02546917460858822, 0.02928462252020836, 0.003818968078121543, 0.004998096730560064, -0.04646117985248566, -0.02976331301033497, -0.014952052384614944, 0.01754261553287506, 0.01397355180233717, 0.03863317519426346, 0.03505707159638405, 0.003836567047983408, 0.02331506460905075, 0.0009582618367858231, -0.013691969215869904, -0.025159433484077454, 0.005167046096175909, -0.014656390063464642, 0.026525110006332397, -0.015458901412785053, -0.009728689678013325, 0.02299124374985695, 0.009292235597968102, -0.017796039581298828, 0.030748853459954262, 0.018894212320446968, -0.0006938378792256117, 0.018851974979043007, 0.005614059045910835, 0.007426748983561993, -0.008158864453434944, -0.03745052590966225, 0.007792806718498468, 0.011636413633823395, -0.032550983130931854, 0.021583329886198044, 0.011770165525376797, -0.03604261204600334, 0.02617313154041767, -0.0020625947508960962, 0.01893644966185093, -0.021189114078879356, -0.027933023869991302, -0.02751065045595169, -0.002074914053082466, -0.006050512660294771, 0.0043962132185697556, 0.013347029685974121, -0.009637175127863884, 0.016669707372784615, 0.017345506697893143, 0.00801103375852108, -0.013065447099506855, 0.014107303693890572, -0.020724501460790634, 0.0253283828496933, 0.01242484524846077, 0.002750712912529707, -0.03210045024752617, -0.00182148942258209, 0.01265715155750513, -0.008292616344988346, -0.002835187828168273, -0.018866054713726044, -0.003551464295014739, -0.018514076247811317, 0.004357495345175266, 0.05006543919444084, -0.016191016882658005, -0.005744291469454765, 0.0039175222627818584, 0.011791284196078777, -0.001420233747921884, 0.01621917448937893, -0.011629373766481876, -0.040181878954172134, 0.04592617228627205, -0.024497712031006813, -0.02297716587781906, 0.03210045024752617, -0.025807073339819908, 0.027792232111096382, 0.030270162969827652, 0.02718682959675789, 0.013790522702038288, -0.009700531139969826, -0.009594937786459923, 0.012122143991291523, -0.0030868526082485914, -0.01399467047303915, -0.04572906345129013, 0.04350455850362778, -0.030551744624972343, -0.015796801075339317, -0.018049463629722595, -0.014515598304569721, 0.013339989818632603, 0.005723172333091497, -0.00870091188699007, 0.017092082649469376, 0.018485918641090393, -0.0069128600880503654, -0.018373284488916397, -0.009271116927266121, -0.0032874804455786943, -0.0030674936715513468, -0.014311451464891434, 0.00098378024995327, 0.002822868525981903, 0.01626141369342804, -0.002847507130354643, -0.028200527653098106, 0.0105171212926507, -0.0048784236423671246, 0.028397636488080025, 0.016191016882658005, 0.008018073625862598, 0.015951670706272125, 0.017655247822403908, -0.008229260332882404, 0.002736633876338601, -0.006413050461560488, -0.0035303456243127584, 0.0017880514496937394, -0.019302507862448692, 0.01118588075041771, -0.04268796741962433, 0.004846745636314154, 0.019161716103553772, 0.0022192252799868584, 0.026102734729647636, 0.03446574881672859, 0.015275872312486172, -0.043363768607378006, 0.005804127547889948, -0.014248095452785492, -0.0075253029353916645, 0.018429601565003395, -0.005219843238592148, -0.0031994858291000128, 0.03776026889681816, -0.017246952280402184, -0.013706048019230366, 0.019992386922240257, 0.006539762951433659, 0.012861299328505993, 0.009172563441097736, -0.012115104123950005, 0.022808214649558067, 0.022568870335817337, -0.01883789710700512, 0.023681122809648514, 0.03556391969323158, -0.005511985160410404, -0.023878229781985283, -0.014431123621761799, 0.0014730305410921574, 0.007222601678222418, -0.0020185974426567554, 0.0001356217690045014, 0.024638503789901733, 0.06166665628552437, -0.014811260625720024, 0.036267876625061035, -0.01001027226448059, 0.009883560240268707, 0.00867979321628809, -0.01180536299943924, -0.01063679438084364, -0.021541092544794083, -0.011777205392718315, 0.019767120480537415, -0.023089798167347908, 0.05026254802942276, -0.007426748983561993, 0.003611300839111209, 0.010397449135780334, 0.00667703477665782, 0.026159051805734634, 0.050290707498788834, 0.024863770231604576, -0.014797181822359562, 0.01523363497108221, -0.00020238771685399115, 0.008243339136242867, -0.04744672030210495, -0.023385459557175636, -0.005290238652378321, -0.012079906649887562, -0.02221689186990261, 0.00036209801328368485, 0.0024444914888590574, 0.01526179350912571, -0.02297716587781906, -0.005716132931411266, 0.0056914943270385265, -0.01931658759713173, 0.032832566648721695, -0.017415903508663177, 0.00735635356977582, 0.025187591090798378, 0.02694748342037201, -0.04063241183757782, -0.06538355350494385, 0.009700531139969826, -0.00539935240522027, 0.015515218488872051, 0.01697944849729538, -0.011221079155802727, 0.010481923818588257, -0.010376330465078354, 0.011840561404824257, 0.03086148574948311, -0.019246190786361694, -0.00801103375852108, 0.007975835353136063, -0.0017290950054302812, -0.02007686160504818, -0.02131582610309124, 0.0026855969335883856, 0.001231925212778151, -0.028017498552799225, -0.0013665570877492428, -0.012938734143972397, 0.029875947162508965, -0.004987537395209074, 0.00939079001545906, 0.03164991736412048, 0.03629603609442711, 0.019232112914323807, -0.00022658624220639467, 0.01402282901108265, 0.061441391706466675, 0.03542312979698181, 0.003906962927430868, -0.017908671870827675, 0.0010216180235147476, 0.027158671990036964, -0.039562396705150604, 0.015360347926616669, -0.012917615473270416, 0.00920776091516018, 0.012467083521187305, -0.00197811983525753, -0.012959852814674377, 0.028524348512291908, -0.005561262369155884, 0.012122143991291523, -0.009271116927266121, 0.017655247822403908, 0.009799085557460785, -0.013051367364823818, 0.021428458392620087, -0.021048322319984436, 0.01788051426410675, 0.02151293307542801, -0.014234015718102455, 0.0032558024395257235, -0.009785005822777748, 0.023526251316070557, 0.003984398208558559, 0.031199386343359947, -0.019443299621343613, -0.01008770801126957, -0.0038752846885472536, 0.04243454337120056, -0.000397515861550346, 0.022484395653009415, -0.011551938951015472, 0.008813545107841492, 0.007433788850903511, -0.0056246183812618256, 0.019274350255727768, 0.030073054134845734, -0.013452623039484024, -0.009960995055735111, 0.035789187997579575, -0.026215368881821632, 0.025060879066586494, -0.008363012224435806, 0.015627851709723473, 0.009644214063882828, -0.007468986790627241, -0.008039192296564579, 0.0026187209878116846, 0.016134699806571007, 0.016571154817938805, -0.0032681215088814497, -0.015951670706272125, 0.00016883974603842944, 0.0028633461333811283, -0.019767120480537415, 0.03150912746787071, -0.04099847003817558, 0.011509701609611511, 0.02537062019109726, -0.0069762165658175945, -0.012354450300335884, 0.00395975960418582, -0.011833521537482738, -0.0001609202299732715, 0.024906007573008537, -0.031875185668468475, -0.02269558236002922, 0.005811167415231466, 0.01526179350912571, 0.017472218722105026, -0.0025342460721731186, -0.020400680601596832, 0.0028668660670518875, -0.07005782425403595, -0.00673335138708353, 0.013987630605697632, -0.012277014553546906, 0.0017273351550102234, 0.0222309697419405, 0.016486678272485733, 0.007623857352882624, -0.003143169218674302, 0.026116814464330673, -0.03528233617544174, 0.03325494006276131, 0.004688355140388012, -0.013297752477228642]" -How FlightAware Fuels Flight Prediction Models for Global Travelers With TimescaleDB and Grafana,"and ""query-a-bility"" of the data.Number of labels to store. At the bare minimum, we wanted to store EON and EIN predictions for 600 airports, at least 10 times throughout each flight. This works out to 12,000 different label combinations, each stored as a time series – whichPrometheus is not currently designed to handle.And, that’s when I found TimescaleDB. A number of factors went into our decision to use TimescaleDB, but here are the top four:Excellent performance.This article comparing TimescaleDB vs. PostgreSQL performancereally impressed me. Getting consistent performance, despite the number of rows in the table, was critical to our goal of storing performance data over several years.Institutional knowledge.FlightAware uses PostgreSQL in a vast number of applications, so there was already a lot of institutional knowledge and comfort with SQL.Impressive documentation.I have yet to have an issue or question that wasn't discussed and answered in the docs. Plus, it was trivial to test out – I love one-line docker start-up commands (seeTimescaleDB Docker Installation instructions).Grafana support.I was pretty confident that I wanted to use Grafana to visualize our data and power our dashboards, so this was a potential dealbreaker.We use several Grafana dashboards, like this one, to view detailed performance over time (average error trends over one or more airports)Editor’s Note: To learn more about TimescaleDB and Grafana,see our Grafana tutorials(5 step-by-step guides for building visualizations, using variables, setting up alerts, and more) andGrafana how-to blog posts.To see how to use TimescaleDB to perform time-series forecasting and analysis,check out our time-series forecasting tutorial(includes two forecasting methods, best practices, and sample queries).Current deployment & use casesOur architecture is pretty simple (see diagram below). We run a copy of this setup in several environments: production, production hot-standby, staging, and test. Each environment has its own predictions database, which allows us to compare our predictions in staging to those in production and validate changesbeforethey get released.⭐Pro tip:we periodically sync Grafana configurations from production to each of the other environments, which reduces the manual work involved in updating dashboards across instances.FlightAware Predict team's system architecture, which uses custom Python programs, Docker, Grafana, and TimescaleDBAfter some trial and error, we’ve set up our TimescaleDB schema as follows:(1) Short term (1 week) tables for arrivals, our own predictions, and third-party predictions.The predict-assessor program reads our flight data feed, extracts ETA predictions",https://www.timescale.com/blog/how-flightaware-fuels-flight-prediction-models-with-timescaledb-and-grafana/,546,"[0.0018291049636900425, -0.03256893530488014, 0.10564620792865753, -0.03732098639011383, 0.032134294509887695, 0.02102203108370304, -0.0012676964979618788, -0.001670642988756299, -0.024455677717924118, 0.03375694900751114, -0.004549219738692045, -0.04030550643801689, 0.00021392379130702466, -0.04140659049153328, 0.022746097296476364, 0.023311128839850426, -0.005349679384380579, -0.0055814869701862335, -0.023673327639698982, 0.011097777634859085, -0.05577864870429039, 0.01795058324933052, 0.028961433097720146, -0.012423425912857056, -0.01019227970391512, -0.017747752368450165, -0.0038863953668624163, 0.04123273491859436, 0.020674319937825203, -0.043347977101802826, 0.03135194629430771, -0.046013761311769485, -0.03972598910331726, 0.00258791190572083, 0.018167901784181595, 0.003553172340616584, 0.038451045751571655, 0.023224201053380966, -0.00897529162466526, -0.013270971365272999, -0.015299285762012005, 0.03051164373755455, 0.004578195512294769, -0.016820522025227547, -0.041435565799474716, 0.00873623974621296, -0.007895938120782375, -0.003489787457510829, 0.013162312097847462, 0.0726136565208435, -0.04972267895936966, 0.028483329340815544, -0.055315032601356506, 0.004907796625047922, 0.03665453940629959, -0.01505299098789692, -0.025658177211880684, 0.038045383989810944, 0.018588053062558174, -0.020514952018857002, 0.0261073037981987, -0.05177997052669525, 0.05122942849993706, 0.043203096836805344, 0.006867293268442154, 0.009562053717672825, -0.01325648371130228, 0.032047368586063385, -0.025817545130848885, 0.005784318316727877, 0.035959117114543915, 0.02503519505262375, 0.02652745507657528, -0.025006219744682312, -0.012466889806091785, -0.02260121889412403, 0.02194925956428051, 0.0385669507086277, 0.00012054435501340777, -0.0244411900639534, 0.02037007175385952, 0.0014904489507898688, -0.0455501489341259, 0.03016393445432186, 0.06791955977678299, -0.04656430333852768, -0.02728082984685898, -0.024759924039244652, -0.019500793889164925, -0.01039511151611805, -0.015733925625681877, 0.034626226872205734, 0.0048426007851958275, 0.02636808715760708, 0.047259725630283356, 0.031149115413427353, 0.01505299098789692, -0.03184453770518303, -0.028208058327436447, 0.011344073340296745, -0.004835356958210468, -0.016067147254943848, -0.0330905020236969, -0.0056611704640090466, 0.017081305384635925, -0.049085211008787155, -0.018341757357120514, 0.046767137944698334, 0.030395740643143654, 0.034133635461330414, -0.05093966796994209, -0.006392812356352806, -0.06212437525391579, -0.004255838226526976, -0.020848175510764122, -0.012039494700729847, -0.014364812523126602, -0.003656398970633745, 0.016979889944195747, 0.004936772398650646, -0.014009857550263405, -0.018993716686964035, 0.00919261109083891, 0.00732004176825285, 0.03801640868186951, -0.024499140679836273, 0.00016740385035518557, -0.07875655591487885, -0.038682855665683746, -0.012792869471013546, 0.05685075744986534, -0.04453599080443382, 0.055170152336359024, -0.013988126069307327, -0.04392749443650246, -0.02135525271296501, -0.04375363886356354, -0.01475598756223917, -0.008584116585552692, -0.005432985257357359, 0.008178453892469406, -0.019008204340934753, 0.04497062787413597, 0.027367757633328438, -0.05322876572608948, 0.022383898496627808, -0.041290685534477234, 0.06774570047855377, -0.03908851742744446, 0.011307853274047375, -0.01508196722716093, 0.027903812006115913, -0.03879875689744949, -0.021471157670021057, 0.04021857678890228, 0.029236704111099243, -0.003165619447827339, 0.000472216954221949, -0.005570620764046907, -0.042015086859464645, -0.01363317109644413, 0.04097195342183113, 0.0037523817736655474, -0.008294356986880302, 0.0021224862430244684, 0.02875860221683979, -0.036451708525419235, -0.05609738081693649, -0.1014157235622406, -0.030482668429613113, -0.03668351471424103, -0.03001905418932438, -0.012387205846607685, -0.016154075041413307, 0.004900552798062563, -0.008149477653205395, 0.005614084657281637, -0.053315695375204086, 0.03584321215748787, -0.035031888633966446, -0.07377269119024277, 0.0056611704640090466, -0.046998944133520126, 0.02402103878557682, -0.030366765335202217, 0.029468512162566185, -0.057082563638687134, 0.02096407860517502, 0.017095793038606644, 0.04375363886356354, 0.007059258874505758, 0.02917875163257122, 0.03369899466633797, 0.043029241263866425, 0.0040022991597652435, -0.06137099862098694, 0.035031888633966446, 0.020471487194299698, -0.02021070383489132, 0.01828380674123764, 0.021007543429732323, 0.03448134660720825, 0.04691201448440552, -0.028381913900375366, 0.0015773767372593284, 0.006121163256466389, 0.003984189126640558, -0.04349285736680031, -0.011612100526690483, -0.007903181947767735, 0.024962754920125008, -0.026556432247161865, 0.012437913566827774, -0.009424418210983276, -0.034887008368968964, 0.0054076313972473145, -0.07707595080137253, -0.029642367735505104, 0.012495866045355797, -0.0075989351607859135, -0.008707264438271523, 0.026541942730545998, 0.028874505311250687, -0.035031888633966446, -0.011525172740221024, 0.017602872103452682, 0.04291334003210068, -0.016269979998469353, 0.03033778816461563, -0.009156391024589539, -0.018182389438152313, -0.020239681005477905, 0.0016679264372214675, -0.027918299660086632, 0.013807026669383049, -0.00847545638680458, 0.017255160957574844, -0.03259791061282158, 0.005143226124346256, -0.024832364171743393, -0.012763893231749535, 0.03691532462835312, -0.017023352906107903, 0.029540950432419777, 0.011380292475223541, 0.016429347917437553, -0.05111352354288101, -0.04114580899477005, 0.04865057021379471, 0.05511220172047615, 0.03914646804332733, -0.039523154497146606, 0.021760916337370872, -0.04781026765704155, -0.002593345008790493, -0.04123273491859436, 0.0027038156986236572, 0.018732933327555656, 0.0235284473747015, 0.005309837404638529, 0.0021768161095678806, -0.016733594238758087, -0.04549219459295273, 0.038624901324510574, -0.050591956824064255, 0.0042159962467849255, 0.029309144243597984, -0.025542274117469788, -0.01938489079475403, -0.024803388863801956, 0.012684209272265434, 0.03143887221813202, 0.020471487194299698, -0.06084943190217018, -0.01877639628946781, -0.01763184741139412, -0.0014044266426935792, 0.0004323750617913902, -0.01944284327328205, -0.010692114941775799, -0.009583786129951477, -0.037292011082172394, 0.018501125276088715, -0.02552778646349907, 0.015299285762012005, -0.010800774209201336, 0.0036491549108177423, 0.03251098468899727, -0.014770475216209888, -0.006523204036056995, 0.03972598910331726, -0.004788270685821772, 0.03485803306102753, -0.013988126069307327, 0.05177997052669525, 0.0032887670677155256, -0.002888537012040615, 0.016168564558029175, -0.043521832674741745, -0.0018146170768886805, -0.0026404308155179024, -0.022586729377508163, 0.014104029163718224, -0.0492011122405529, -0.0016208405140787363, 0.018718445673584938, -0.007222248241305351, 0.028237035498023033, -0.009120170958340168, 0.02852679416537285, 0.0027092485688626766, -0.005588730797171593, -0.0013645847793668509, -0.014386544935405254, -0.011315097101032734, 0.013198532164096832, 0.062066420912742615, -0.014741499908268452, 0.002209414029493928, -0.06878883391618729, -0.054416779428720474, -0.10245885699987411, 0.007468543481081724, 0.020399048924446106, 0.027889324352145195, -0.02393411099910736, 0.009257806465029716, 0.018095461651682854, 0.012553817592561245, 0.0001650269259698689, -0.002893970115110278, -0.006229822989553213, 0.007700351066887379, 0.05105557292699814, -0.014422765001654625, -0.0625300407409668, 0.0010902190115302801, 0.006008881609886885, -0.017936095595359802, 0.034046705812215805, -0.029149776324629784, -0.020094800740480423, -0.04520243778824806, -0.006541314069181681, -0.0004384871863294393, 0.025136610493063927, -0.028744112700223923, 0.012474133633077145, 0.02984519861638546, 0.024962754920125008, -0.028048690408468246, 0.005610462743788958, -0.023137273266911507, -0.006994063034653664, -0.020717782899737358, -0.026339111849665642, 0.021804381161928177, 0.01047479547560215, -0.04433315992355347, 0.008229161612689495, -0.038624901324510574, 0.027164924889802933, 0.03842207044363022, -0.0028831041418015957, -0.004350010305643082, 0.011242656968533993, -0.038682855665683746, 0.015197870321571827, -0.011307853274047375, -0.028990408405661583, 0.03167068213224411, 0.0026621627621352673, -0.02993212640285492, -0.010460307821631432, -0.05670587718486786, -0.02677375078201294, 0.06647076457738876, 0.020181728526949883, -0.020833687856793404, 0.050099365413188934, 0.05734334886074066, -0.017689799889922142, 0.007852474227547646, 0.015473141334950924, 0.04108785465359688, 0.04381159320473671, -0.010750066488981247, 0.011177461594343185, -0.04865057021379471, -0.008301601745188236, 0.022050675004720688, 0.0006777648814022541, -0.025165587663650513, -0.032539959996938705, -0.04363773763179779, 0.028744112700223923, -0.020051337778568268, 0.04836081340909004, 0.02833845093846321, 0.02426733449101448, -0.006251554936170578, -0.01064140722155571, -0.04050833731889725, 0.014509692788124084, 0.004476779606193304, 0.013452070765197277, -0.0029537328518927097, 0.02378923073410988, 0.014908111654222012, -0.035118814557790756, -0.020819198340177536, -0.040276531130075455, 0.03755279257893562, 0.0009679768700152636, 0.05725641921162605, 0.0021134312264621258, -0.012162642553448677, 0.05545991286635399, 0.006142895203083754, 0.05212768167257309, -0.01754491962492466, 0.018327269703149796, -0.022919952869415283, 0.018935764208436012, -0.044680871069431305, 0.01935591548681259, 0.04146454110741615, -0.022760584950447083, 0.0066970596089959145, -0.05551786348223686, 0.0012993889395147562, -0.01654525101184845, 0.051519185304641724, 0.012568305246531963, -0.04091399908065796, 0.02386167086660862, -0.008794192224740982, -0.032626885920763016, 0.03239507973194122, 0.02675926312804222, -0.013683878816664219, -0.008374040946364403, 0.008374040946364403, 0.013944662176072598, -0.035524480044841766, -0.01810995116829872, -0.04798412322998047, -0.0388856865465641, -0.02244185097515583, 0.015299285762012005, 0.03758176788687706, -0.010981873609125614, -0.04682508856058121, 0.03398875519633293, -0.027787908911705017, -0.06710823625326157, 0.01467630360275507, 0.0020826442632824183, 0.06525377184152603, -0.04644840210676193, -0.020500464364886284, 0.027295317500829697, -0.07724980264902115, -0.014480716548860073, -0.02054392732679844, -0.0352347195148468, 0.06745593994855881, -0.013930173590779305, 0.03874080628156662, -0.039697010070085526, 0.010199524462223053, -0.005961795803159475, -0.015545581467449665, -0.006168249063193798, -0.007635155227035284, 0.039117492735385895, 0.026223208755254745, -0.014024345204234123, -0.005280861631035805, -0.016690131276845932, 0.0013600572710856795, -0.018356245011091232, -0.004357254132628441, 0.03494495898485184, 0.019573234021663666, 0.021311789751052856, 0.04413032904267311, 0.023470496758818626, 0.0035423063673079014, -0.0035477392375469208, -0.03807435929775238, 0.0030732585582882166, 0.038045383989810944, -0.018559077754616737, -0.02278956212103367, -0.03540857508778572, -0.07116486132144928, -0.029787246137857437, 0.010525503195822239, -0.006356592755764723, 0.056734852492809296, -0.011575880460441113, 0.01346655935049057, 0.06658666580915451, -0.014770475216209888, 0.02044251188635826, -0.011423756368458271, -0.009656225331127644, 0.004933150485157967, -0.05464858561754227, -0.007091856561601162, 0.01334341149777174, 0.02161603607237339, 0.024122454226017, -0.028975920751690865, 0.015835341066122055, 0.006823829375207424, 0.026889653876423836, -0.0312650203704834, -0.01014881581068039, -0.009866300970315933, -0.04317412152886391, -0.04195713251829147, 0.033872850239276886, -0.012843577191233635, 0.00423772819340229, -0.04830285906791687, -0.05264924839138985, -0.02409347891807556, -0.0035549832973629236, 0.010018425062298775, -0.0400737002491951, -0.005773452110588551, 0.003187351394444704, -0.04647737741470337, -0.004056628793478012, -0.015313774347305298, -0.04123273491859436, -0.050331175327301025, 0.00909843947738409, 0.04381159320473671, 0.025745104998350143, 0.01466905977576971, -0.01014157198369503, 0.01996440999209881, -0.019645674154162407, 0.01014157198369503, 0.023745767772197723, -0.020993053913116455, 0.018254829570651054, 0.02029763162136078, -0.01696540229022503, 0.005896599963307381, -0.014075053855776787, -0.00290845800191164, 0.03526369482278824, 0.00662824185565114, -0.018327269703149796, 0.017168233171105385, 0.0013953717425465584, 0.008229161612689495, 0.01193083543330431, 0.002165950136259198, -0.01019227970391512, 0.004929528571665287, 0.058473408222198486, -0.003413725644350052, -0.009134658612310886, -0.03314845263957977, -0.003055148757994175, -0.01372009888291359, -0.030569596216082573, 0.022499801591038704, 0.029656855389475822, -0.002490118145942688, 0.021224861964583397, -0.01737106405198574, -0.03517676889896393, 0.036277852952480316, 0.01696540229022503, -0.03439441695809364, 0.001923276693560183, -0.007243980187922716, 0.01579187624156475, -0.020268656313419342, 0.0031710523180663586, 0.017907118424773216, 0.02061636745929718, 0.0015112754190340638, -0.029077336192131042, 0.025411883369088173, -0.018486637622117996, -0.008055306039750576, -0.014647328294813633, 0.005306215491145849, 0.0327717661857605, 0.0019015447469428182, 0.00927229505032301, -0.022485313937067986, 0.03468417748808861, -0.005146848037838936, -0.006490606348961592, -0.007222248241305351, -0.05195382609963417, -0.029874173924326897, 0.019573234021663666, 0.019906457513570786, 0.021978236734867096, 0.03665453940629959, -0.010836994275450706, 0.0201962161809206, -0.006494228262454271, -0.026310136541724205, -0.04499960318207741, -0.017110280692577362, -0.009902521036565304, -0.021094471216201782, -0.023151760920882225, 0.0042159962467849255, -0.02477441169321537, -0.015646997839212418, -0.02652745507657528, -0.0183707345277071, -0.023470496758818626, -0.0334092378616333, 0.017226185649633408, -0.011126753874123096, -0.029903151094913483, -0.020674319937825203, 0.0011427379213273525, -0.012792869471013546, 0.03456827253103256, 0.019645674154162407, 0.014611108228564262, -0.010025668889284134, 0.021514620631933212, 0.025788569822907448, 0.03995779529213905, -0.0035151413176208735, -0.013524510897696018, 0.030482668429613113, 0.02302136830985546, -0.022876489907503128, -0.007671374827623367, 0.023296641185879707, -0.04711484536528587, 0.016603203490376472, 0.04117478430271149, -0.005081652197986841, -0.0100981080904603, -0.022746097296476364, -0.021673988550901413, 0.043434906750917435, 0.025556761771440506, 0.02003685012459755, -0.029164263978600502, -0.0430871956050396, -0.01048203930258751, 0.013705610297620296, 0.023644350469112396, -0.03781357780098915, 0.020152753219008446, -0.012807357124984264, -0.012952236458659172, -0.026976581662893295, 0.010634162463247776, 0.0418991819024086, -0.017226185649633408, 0.016154075041413307, 0.014060565270483494, -0.02277507446706295, 0.0057951840572059155, 0.0022528779227286577, 0.03734996169805527, 0.016603203490376472, -0.021398717537522316, -0.0032760901376605034, -0.03149682655930519, -0.0052917273715138435, 0.06560148298740387, -0.032713815569877625, 0.018559077754616737, -0.03874080628156662, 0.017081305384635925, -0.007113588508218527, -0.010648651048541069, -0.030888332054018974, 0.014893623068928719, 0.02509314753115177, 0.028642697259783745, 0.0012405315646901727, -0.004668745212256908, 0.011785956099629402, 0.015661485493183136, -0.007540983613580465, 0.011785956099629402, 0.013647658750414848, 0.040537312626838684, -0.023383568972349167, -0.009793860837817192, -0.00590384379029274, 0.024672996252775192, -0.042768459767103195, -0.041203759610652924, -0.03850900009274483, -0.012300278060138226, -0.0008489039028063416, -0.006168249063193798, 0.044680871069431305, -0.03914646804332733, -0.041841231286525726, 0.001937764696776867, -0.03572731092572212, 0.0007049298146739602, -0.027628540992736816, 0.004016786813735962, -0.02636808715760708, 0.03619092330336571, -0.0418991819024086, -0.011387537233531475, -0.0801474004983902, 0.012300278060138226, -0.031728632748126984, -0.023340104147791862, 0.05821262300014496, -0.009265050292015076, 0.01937040314078331, 0.02236941084265709, 9.323794984084088e-06, -0.032539959996938705, 0.01475598756223917, 0.005954551510512829, 0.035292670130729675, -0.010887701995670795, 0.02684619091451168, -0.015835341066122055, -0.033785924315452576, 0.001552928239107132, -0.015907781198620796, 0.019254500046372414, 0.0036708868574351072, 0.008569628931581974, -0.010981873609125614, -0.04439111053943634, 0.011575880460441113, -0.03265586122870445, 0.01622651517391205, 0.052996959537267685, 0.004063873086124659, -0.02212311513721943, -0.02919323928654194, 0.01337963156402111, 0.0036165572237223387, -0.023079320788383484, -0.007461299654096365, -0.001236909651197493, 0.0006270570447668433, 0.006624619942158461, 0.000517944572493434, 0.037523817270994186, -0.005748098250478506, 0.03908851742744446, -0.03033778816461563, 0.004726697225123644, 0.0058060502633452415, 0.014908111654222012, -0.03132297098636627, 0.003918993286788464, -0.011191949248313904, -0.015661485493183136, -0.039697010070085526, -0.023383568972349167, -0.018023023381829262, -0.00457095168530941, 0.0670502781867981, 0.0028142863884568214, 0.00012326084834057838, 0.026078328490257263, 0.010547235608100891, 0.024397725239396095, 0.01026471983641386, -0.011822175234556198, 0.005107006058096886, 0.009431662037968636, 0.009721421636641026, -7.419420580845326e-05, 0.0013618682278320193, 0.017936095595359802, -0.008482701145112514, -0.024151429533958435, -0.02510763518512249, 0.007881450466811657, -0.01812443882226944, 0.01325648371130228, 0.01010535191744566, 0.006885403301566839, 0.001070298021659255, -0.09851813316345215, -0.058647263795137405, 0.035379599779844284, -0.010568967089056969, -0.004339144099503756, 0.015024014748632908, 0.036538634449243546, 0.02494826726615429, 0.02186233177781105, -0.006678949575871229, -0.004828112665563822, -0.04723075032234192, -0.03042471595108509, -0.0002777613699436188, -0.009351978078484535, 0.004541975446045399, 0.014893623068928719, 0.03926237300038338, 0.022499801591038704, 0.02286200225353241, -0.028237035498023033, 0.0034245916176587343, -0.03830616548657417, 0.02794727496802807, 0.004317412152886391, 0.0010168737499043345, -0.02186233177781105, 0.03381489962339401, -0.006570289842784405, -0.00856238417327404, -0.012800113297998905, -0.030453693121671677, -0.004951260518282652, 0.010808018036186695, 0.001307538477703929, 0.027498148381710052, -0.006552180275321007, 0.008757972158491611, -0.0034843545872718096, -0.0034771105274558067, -0.015125430189073086, -0.025006219744682312, 0.04827388375997543, -0.03193146362900734, 0.053837262094020844, -0.04607171565294266, 0.0006678044446744025, 0.023398056626319885, -0.026875166222453117, -0.011822175234556198, 0.03564038127660751, -0.01589329168200493, 0.005418497137725353, 0.00023226012126542628, -0.018906788900494576, 0.010373380035161972, -0.034539297223091125, -0.007157052401453257, -0.008526165038347244, -0.015342749655246735, -0.02535393089056015, 0.006055967416614294, 0.00890285149216652, -0.04679611325263977, -0.007924914360046387, -0.01637139543890953, 0.0033249869011342525, 0.03566936030983925, -0.021847844123840332, -0.019920945167541504, 0.05461961030960083, 0.02768649160861969, 0.01854459010064602, -0.004592683631926775, -0.0020645344629883766, 0.015139918774366379, 0.009815593250095844, -0.0203555840998888, -0.03210531920194626, -0.004005921073257923, 0.015864316374063492, 0.009844569489359856, -0.013843245804309845, 0.0024086234625428915, 0.012944992631673813, 0.028164595365524292, -0.00029813506989739835, -0.02519456297159195, 0.021847844123840332, -0.009888033382594585, 0.04329002648591995, 0.011409268714487553, -0.024542605504393578, 0.02609281614422798, 0.006396434735506773, 0.05305491015315056, 0.033206406980752945, 0.021645013242959976, 0.006258798763155937, -0.003756003687158227, 0.040856048464775085, -0.010750066488981247, 0.018066486343741417, 0.02310829609632492, -0.010025668889284134, -0.025223538279533386, 0.020659832283854485, -0.00914914719760418, 0.003334041917696595, 0.02560022659599781, -0.0004239992122165859, 0.007490275427699089, 0.015835341066122055, 0.004675989039242268, 0.004639769438654184, -0.0020989433396607637, -0.007722083013504744, 0.01321301981806755, -0.010960142128169537, -0.032134294509887695, 0.049085211008787155, -0.01508196722716093, -0.0052917273715138435, 0.04928804188966751, -0.02742570824921131, 0.022876489907503128, 0.01654525101184845, 0.011749736033380032, 0.0029682209715247154, -0.013408607803285122, -0.0038827734533697367, 0.046361472457647324, 0.003027983708307147, 0.03085935488343239, 0.01994992233812809, -0.023079320788383484, 0.03109116293489933, -0.01172075979411602, 0.024412212893366814, 0.011155729182064533, 0.0047592949122190475, 0.03091730736196041, 0.003660020884126425, 0.003893639426678419, 0.007917670533061028, -0.004161666613072157, -0.02136974222958088, -0.004650635179132223, -0.02536841854453087, 0.043261051177978516, 0.050823766738176346, -0.01705233007669449, -0.02484685182571411, 0.04149352014064789, -0.016487298533320427, 0.04311617091298103, -0.03256893530488014, -0.013698366470634937, -0.014937086962163448, -0.010366135276854038, 0.017226185649633408, 0.02194925956428051, 0.030482668429613113, -0.00590022187680006, 0.02967134304344654, -0.024817876517772675, -0.04016062617301941, -0.0015058424323797226, 0.00457457359880209, 0.023658839985728264, -0.00590022187680006, -0.004665123298764229, 0.04355080798268318, 0.019254500046372414, 0.022412873804569244, 0.03207634389400482, -0.0009906142950057983, 0.02684619091451168, -0.000671426416374743, 0.011952566914260387, -0.021311789751052856, 0.0009254184551537037, 0.031120138242840767, 0.057488225400447845, 0.04662225767970085, -0.011329584755003452, -0.009888033382594585, 0.016661154106259346, 0.010489283129572868, 0.03485803306102753, 0.01376356277614832, 0.008127746172249317, 0.028628209605813026, 0.047839246690273285, -0.0065956441685557365, 0.012959480285644531, 0.02045699954032898, 0.004962126258760691, -0.0015502118039876223, 0.019573234021663666, 0.00748303160071373, 0.015545581467449665, -0.010750066488981247, 0.001356435241177678, -0.009931497275829315, 0.026657847687602043, -0.0033032549545168877, -0.0024937402922660112, -0.03801640868186951, 0.01035164762288332, 0.00440433993935585, 0.023919623345136642, 0.014908111654222012, 0.003203650237992406, -0.021818868815898895, 0.027570588514208794, 0.0025987778790295124, 0.0020609123166650534, -0.023818206042051315, -0.01977606676518917, -0.05592352896928787, -0.025788569822907448, -0.006990441121160984, 0.01038786768913269, -0.011431001126766205, 0.035292670130729675, 0.01027196366339922, -0.00918536726385355, -0.004045763052999973, 0.008294356986880302, 0.0014587565092369914, 0.02194925956428051, 0.02303585782647133, 0.008026329800486565, 0.021311789751052856, 0.007736570667475462, 0.002495551249012351, 0.016183052211999893, -0.006515960209071636, 0.0023669705260545015, -0.0050381883047521114, -0.001523952349089086, -0.0004663312283810228, -0.012952236458659172, -0.00893907155841589, -0.01661769114434719, 0.04647737741470337, 0.036944299936294556, 0.011988786980509758, 0.00897529162466526, 0.02112344652414322, 0.003091368591412902, 0.00581691600382328, -0.0029899529181420803, 0.023760255426168442, 0.00538589945062995, -0.0017774916486814618, 0.006523204036056995, -0.021833356469869614, -0.02193477191030979, -0.01188737154006958, -0.001160847838036716, -0.01209020335227251, 0.015226846560835838, 0.00461441557854414, -0.00731279794126749, -0.01197429932653904, -0.024803388863801956, 0.01188737154006958, -0.0035567942541092634, -0.03801640868186951, 0.040537312626838684, 0.0016760759754106402, -0.023557422682642937, 0.009482369758188725, 0.042681530117988586, -0.03572731092572212, -0.01019227970391512, 0.004799136891961098, -0.011691784486174583, -0.017023352906107903, 0.0015674162423238158, -0.011358560994267464, -0.009323002770543098, 0.04337695240974426, 0.015907781198620796, 0.0006601077038794756, -0.018341757357120514, -0.004259460140019655, -0.0261073037981987, -0.0003748759627342224, 0.018095461651682854, -0.01829829439520836, 0.013691122643649578, -0.002127919113263488, 0.012988456524908543, 0.02378923073410988, 0.01346655935049057, 0.02328215166926384, -0.03259791061282158, 0.017646335065364838, -0.013024676591157913, 0.0029464890249073505, 0.031728632748126984, 0.015386213548481464, 0.028396401554346085, -0.0023235066328197718, -0.001572849228978157, -0.018573565408587456, 0.019008204340934753, -0.017849167808890343, -0.01780570298433304, 0.04033448174595833, 0.039117492735385895, -0.0011246278882026672, 0.001531196292489767, 0.027614053338766098, 0.0004482212825678289, 0.0016262735007330775, 0.041841231286525726, 0.006135651376098394, 0.010453063063323498, 0.01787814311683178, 0.023658839985728264, -0.0180519986897707, -0.017429016530513763, 0.026208721101284027, 0.009163634851574898, -0.020181728526949883, 0.02152910828590393, -0.0054873148910701275, 0.011909103021025658, 0.008823167532682419, 0.02435426227748394, -0.03016393445432186, 0.013850490562617779, 0.015473141334950924, 0.010612430982291698, 0.009511345997452736, -0.01014157198369503, 0.0006026086048223078, 0.008207429200410843, -0.011481708846986294, -0.010257476009428501, 0.009938741102814674, -0.0004140387463849038, 0.02210862748324871, -0.005443850997835398, -0.009670713916420937, 0.017689799889922142, 0.06386292725801468, 0.022007212042808533, -0.020645342767238617, 0.005443850997835398, -3.66160566045437e-05, -0.006063211243599653, -0.0011508873431012034, 0.008200185373425484, -0.008214673958718777, 0.04250767454504967, -0.013893954455852509, 0.027034534141421318, -0.01653076335787773, 0.009265050292015076, -0.008844899944961071, 0.0022130359429866076, 0.018979229032993317, 0.012785624712705612, 0.017675312235951424, -0.01912410743534565, 0.035031888633966446, 0.018066486343741417, 0.0017847355920821428, -0.024078989401459694, -0.011351317167282104, 0.00044301466550678015, -0.02378923073410988, -0.03256893530488014, 0.003245303174480796, 0.006704303901642561, -0.018269317224621773, -0.032887671142816544, 0.014698036015033722, 0.023325616493821144, -0.010996362194418907, -0.0007687673787586391, -0.02221004292368889, 0.027744444087147713, 0.008323333226144314, 0.016762569546699524, -0.03477110341191292, -0.02884553000330925, -0.002433977322652936, 0.014089541509747505, -0.021268324926495552, 0.03117809072136879, -0.006892647128552198, -0.01605265960097313, -0.003029794665053487, -0.042217917740345, -0.011228169314563274, 0.0019540637731552124, -0.013893954455852509, -0.026295648887753487, -0.008106013759970665, -0.019935432821512222, 0.0268606785684824, -0.011713515967130661, 0.00909843947738409, 0.01970362663269043, -0.003817577613517642, 0.013872222043573856, -0.019225522875785828, 0.011438244953751564, -0.039436228573322296, -0.038537975400686264, 0.03656761348247528, -0.02652745507657528, 0.0009851813083514571, -0.03398875519633293, -0.023224201053380966, 0.007392481900751591, 0.005157713778316975, -0.011872883886098862, 0.024803388863801956, 0.039204422384500504, 0.014386544935405254, 0.022412873804569244, 0.015487629920244217, -0.024470165371894836, -0.027700981125235558, 0.023499472066760063, -0.02119588665664196, 0.018501125276088715, -0.0008760688360780478, -0.008258137851953506, 0.018660493195056915, 0.008084282279014587, -0.0063058845698833466, 0.049085211008787155, 0.021558085456490517, -0.019515283405780792, -0.0050381883047521114, 0.0038719074800610542, 0.006928867194801569, -0.015110942535102367, -0.05096864327788353, -0.003976945299655199, -0.010489283129572868, -0.01945733092725277, 0.03259791061282158, 0.03033778816461563, -0.03679941967129707, 0.03001905418932438, 0.0015004094457253814, 0.018472149968147278, -0.02926567941904068, -0.03265586122870445, -0.018341757357120514, -0.014017101377248764, -0.01854459010064602, 0.01605265960097313, 0.016588713973760605, -0.002075400436297059, 0.02235492318868637, 0.019587721675634384, 0.015024014748632908, 0.0003508802910801023, 0.0005451095057651401, -0.010170548222959042, 0.017168233171105385, 0.010539990849792957, 0.0011382104130461812, -0.014430008828639984, 0.020399048924446106, 0.022296970710158348, 0.00914914719760418, -0.0056829024106264114, -0.002417678479105234, -0.005621328484266996, -0.004998346325010061, -0.00295011093840003, 0.041116829961538315, -0.005976283457130194, 0.013198532164096832, 0.01059794332832098, -0.005389521364122629, -0.001803751103579998, 0.03972598910331726, 0.007533739320933819, -0.04505755752325058, 0.040682192891836166, -0.027903812006115913, -0.030888332054018974, 0.02609281614422798, -0.00851892028003931, 0.018602540716528893, 0.007475787773728371, 0.018167901784181595, -0.0033593957778066397, -0.014321348629891872, -0.027454685419797897, 0.014560400508344173, -0.01500952709466219, 0.015400702133774757, -0.05149020999670029, 0.03734996169805527, -0.030627548694610596, -0.0061139194294810295, -0.014480716548860073, -0.006682571955025196, 0.029149776324629784, 0.004831734579056501, -0.010460307821631432, 0.02917875163257122, -0.0215435978025198, 0.0017331222770735621, -0.0211089588701725, 0.005530778784304857, -0.004302924033254385, 0.024629533290863037, -0.024296309798955917, 0.004744807258248329, -0.0029464890249073505, 0.004889686591923237, -0.01043133158236742, -0.006218956783413887, 0.012148154899477959, -0.0041145808063447475, -0.002187682082876563, 0.04954882338643074, 0.003071447601541877, 0.022470826283097267, 0.03433646634221077, -0.0040022991597652435, 0.012191618792712688, -0.010916678234934807, 8.494698704453185e-05, 0.001197067671455443, -0.019587721675634384, 0.005766208283603191, -0.019935432821512222, -0.008823167532682419, 0.0264260396361351, 0.014212689362466335, 0.020746760070323944, 0.026034865528345108, 0.0233690794557333, -0.034046705812215805, -0.012988456524908543, -0.026643360033631325, 0.0002988141786772758, 0.005277239717543125, -0.032366104423999786, 0.004436938092112541, 0.023745767772197723, -0.011170217767357826, -0.007729326840490103, 0.009359222836792469, 0.005701012443751097, 0.02003685012459755, 0.013995369896292686, -0.010119840502738953, 0.01944284327328205, 0.021847844123840332, -0.026483992114663124, 0.021485645323991776, 0.031293995678424835, -0.017066817730665207, -0.045521169900894165, -0.010329916141927242, -0.006295018829405308, 0.040682192891836166, -0.015777388587594032, 0.008634824305772781, 0.014813939109444618, 0.042188942432403564, 0.009764885529875755, 0.03025086037814617, -0.01780570298433304, 0.006918000988662243, -0.026498479768633842, 0.00727295596152544, -0.011488952673971653, -0.017602872103452682, -0.006642729975283146, 0.026730287820100784, -0.02068880759179592, 0.06050172075629234, -0.0048426007851958275, -0.012937748804688454, -0.01961669884622097, 0.0026349977124482393, -0.007048392668366432, 0.052330512553453445, 0.017298623919487, 0.005266373511403799, 0.03419158607721329, 0.002917513018473983, -0.0007370749954134226, -0.048013102263212204, -0.035959117114543915, -0.011155729182064533, -0.010967385955154896, -0.025382906198501587, -0.005244641564786434, 0.005451095290482044, 0.016675641760230064, 0.007265712134540081, -0.012300278060138226, -0.009359222836792469, -0.03242405503988266, 0.019008204340934753, -0.01987748220562935, 0.006852805148810148, 0.013821514323353767, 0.027585076168179512, -0.03482905775308609, -0.06003810837864876, 0.02925119176506996, -0.0025842899922281504, 0.046506352722644806, 0.032366104423999786, -0.002240200759842992, -0.002167761093005538, -0.00452748779207468, 0.0264260396361351, 0.030656524002552032, -0.013408607803285122, -0.000671426416374743, 0.017921606078743935, -0.010670382529497147, -0.0042775701731443405, -0.03763972222805023, -0.005577864591032267, 0.028150107711553574, -0.023963086307048798, 0.002133352216333151, -0.015458653680980206, 0.021760916337370872, 0.00735626183450222, 0.004915040452033281, 0.0050164563581347466, 0.005545266903936863, 0.014828427694737911, -0.00222390191629529, 0.0361039973795414, 0.03085935488343239, 0.024006551131606102, 0.006334860809147358, -0.01587880402803421, 0.016183052211999893, 0.01342309545725584, -0.001671548467129469, 0.021253837272524834, -0.014357568696141243, -0.004523865412920713, 0.003824821440503001, 0.0024375992361456156, -0.010366135276854038, 0.03274279087781906, -0.007722083013504744, -0.0017965070437639952, -0.025730617344379425, 0.027657516300678253, -0.0002056611265288666, -0.02086266316473484, 0.022485313937067986, 0.0015493062091991305, 0.01770428754389286, -0.0030044408049434423, -0.004936772398650646, -0.021340765058994293, -0.015531093813478947, 0.03816128894686699, 0.01903717964887619, 0.03285869583487511, -0.009409930557012558, -0.007664131000638008, -0.020326608791947365, 0.04497062787413597, 0.0037994675803929567, 0.03193146362900734, -0.012466889806091785, 0.03068549931049347, 0.0014560400741174817, -0.0032108942978084087, 0.021137934178113937, 0.02735326997935772, -0.030975259840488434, -0.028135618194937706, 0.03306152671575546, -0.03900158777832985, 0.010061888955533504, -0.013147824443876743, 0.03384387493133545, 0.0003368450852576643, -0.010757310315966606, -0.013328923843801022, 5.781035724794492e-05, 0.009945984929800034, 0.020225193351507187, -0.016501786187291145, -0.0233690794557333, -0.006211712956428528, -0.007642399054020643, -0.0008443764527328312, 0.03117809072136879, -0.0434059277176857, -0.010786286555230618, 0.045521169900894165, 0.022890977561473846, 0.009692445397377014, 0.010156060568988323, -0.010989118367433548, -5.183973189559765e-05, 0.028323963284492493, -0.01329994760453701, -0.011307853274047375, -0.016023684293031693, 0.0037197838537395, 0.0034245916176587343, 0.012423425912857056, -0.02402103878557682, 0.015574557706713676, -0.05438780412077904, 0.012698696926236153, 0.02394859865307808, -0.01879088394343853, 0.0030968014616519213, 0.01580636389553547, 0.010663138702511787, -0.004922284744679928, -0.011076046153903008, 0.031149115413427353, -0.030482668429613113, 0.01937040314078331, 0.026585407555103302, 0.01645832322537899]" -How FlightAware Fuels Flight Prediction Models for Global Travelers With TimescaleDB and Grafana,"and arrival times, and inserts them into the database. For scale, the arrivals table typically contains 500k rows, and the predictions tables each contain 5M rows.Each table is chunked: arrivals by arrival time and predictions by the time the prediction was made.We use archiving functions to copy some data into long-term storage, andadrop_chunkspolicyto ensure that rows older than one week are dropped to prevent unlimited table growth.(2) Long term (permanent) table for prediction and prediction-error data.Archiving functions move data to the long term table by joining the short terms tables together. They also ""threshold"" the data to reduce verbosity, by only storing predictions at predetermined intervals; i.e., predictions that were present 1 and 2 hours before arrival are migrated to long-term tables, but intermediate predictions (i.e., at 1.5 hours before arrival) are not kept.Between the join and the threshold, the archiving process reduces the average number rows per flight from25(across 3 short-term tables) to6!We haven’t enabled adrop_chunkspolicy on this table as of now; after ~9 months of running this setup, our database file is pretty manageable at 54GB. If we start having space issues, we'd opt to store fewer predictions per flight rather than lose any year-over-year historical data.Biggest ""Aha!"" momentContinuous aggregates are what well and truly sold me on TimescaleDB. We went from 6.4 seconds to execute a query to 30ms.Yes, milliseconds.I was embarrassingly late to the party when it comes to continuous aggregates. When I first set up our database, every query was fast because the database was small. However, as we added data over time, some queries slowed down significantly.The biggest offender was a query on our KPIs dashboard, visualized in Grafana below. This graph gives us a birds-eye view of error over time. The blue line represents the average error for all airports at a certain time before arrival; the red line shows the number of flights per day. (You can see the huge traffic drop when airlines stopped flights in March, due to the COVID-19 pandemic.)Our KPI dashboard includes various metrics, including our average error rate and total flights per day across all airportsBeforelearning about continuous aggregates, the query to extract this data looked like this:SELECT time_bucket('1 day', arr_time) AS ""time"", AVG(get_error(prediction_fa, arr_time)) AS on_error, count(*) AS on_count FROM prediction_history WHERE time_out = '02:00:00' AND arr_time BETWEEN '2020-03-01' AND",https://www.timescale.com/blog/how-flightaware-fuels-flight-prediction-models-with-timescaledb-and-grafana/,543,"[-0.0039991470985114574, -0.015174797736108303, 0.10065524280071259, -0.00410187104716897, 0.03196483850479126, 0.03349507227540016, 0.028989389538764954, -0.024072811007499695, -0.029981207102537155, 0.04953416809439659, -0.018759507685899734, -0.03743400052189827, 0.006429098546504974, -0.024313680827617645, -0.0005074205691926181, 0.04692710563540459, 0.003917676396667957, -0.00828875508159399, -0.04721048101782799, 0.02191915176808834, -0.03281496837735176, -0.0031897537410259247, 0.017526820302009583, -0.004923662170767784, 0.03284330666065216, -0.019680479541420937, 0.018986208364367485, 0.0525946319103241, 0.022726774215698242, -0.06324958056211472, 0.031086374074220657, -0.019921349361538887, -0.03142642602324486, -0.019142065197229385, 0.056675247848033905, -0.006567244417965412, 0.015160628594458103, 0.06007576361298561, -0.014005870558321476, -0.0138783510774374, 0.004700503312051296, 0.017881041392683983, -0.020204726606607437, -0.005320388823747635, -0.051829513162374496, 0.0034146837424486876, -0.025574706494808197, -0.05758205056190491, 0.0138854356482625, 0.06716016680002213, -0.062456123530864716, 0.014246740378439426, -0.06387300789356232, 0.00837376806885004, 0.04358326643705368, -0.018320273607969284, 0.010548681020736694, 0.040664490312337875, 0.018901195377111435, -0.04216638579964638, 0.012057659216225147, -0.0521412268280983, 0.025716394186019897, 0.03145476430654526, 0.0030338969081640244, 0.03128473833203316, 0.0007327932398766279, 0.04998756945133209, -0.01636497862637043, 0.023180177435278893, 0.04261978715658188, 0.02172078937292099, 0.018036898225545883, -0.051206085830926895, 0.0038999654352664948, 0.003168500494211912, 0.051489464938640594, 0.010293642058968544, -0.027940897271037102, -0.024568719789385796, 0.020658127963542938, -0.0021465751342475414, -0.006446809507906437, 0.03978602588176727, 0.06387300789356232, -0.04808894917368889, -0.04261978715658188, -0.02115403674542904, -0.011427147313952446, 0.007158792112022638, -0.017810197547078133, 0.0532747320830822, 0.007296938449144363, -0.007743255700916052, 0.046020302921533585, 0.020303906872868538, 0.03720730170607567, -0.018844520673155785, 0.00037569491541944444, 0.0010679742554202676, 0.009471850469708443, -0.004473802633583546, 0.015245641581714153, -0.025277160108089447, 0.0016967152478173375, -0.03272995725274086, -0.03805742785334587, 0.008657144382596016, -0.00669830571860075, 0.013538300059735775, -0.03740566223859787, -0.0030994275584816933, -0.08926351368427277, 0.009684382937848568, -0.009826071560382843, 0.008763410151004791, -0.04176965728402138, -0.00036307581467553973, 0.025192147120833397, 0.008232079446315765, -0.011738860979676247, 0.012603158131241798, -0.014636382460594177, -0.01708758808672428, 0.003761819563806057, -0.01662001572549343, 0.005621476098895073, -0.04485845938324928, -0.019000377506017685, 0.001941127236932516, 0.04341324046254158, -0.013963364064693451, 0.03312668204307556, -0.024427032098174095, -0.03289998322725296, -0.014622214250266552, -0.024299513548612595, 0.0545215904712677, -0.014664720743894577, 0.012872366234660149, -0.020417258143424988, 0.01652083545923233, 0.007764508947730064, 2.4449502234347165e-05, -0.07328109443187714, 0.050384294241666794, -0.0006584069924429059, 0.05746870115399361, -0.0137295788154006, 0.014048377051949501, -0.008926351554691792, 0.040154412388801575, -0.04766388237476349, -0.010024434886872768, 0.04814562201499939, 0.03136974945664406, 0.0017976680537685752, 0.02170662023127079, -0.01120044570416212, -0.04213804751634598, -0.01650666631758213, 0.02153659425675869, -0.008848423138260841, -0.008876760490238667, -0.005557716358453035, 0.018136080354452133, -0.07288436591625214, -0.02787005342543125, -0.09515774250030518, -0.05984906107187271, -0.03887921944260597, -0.009755226783454418, 0.014919758774340153, -0.01112960185855627, 0.0019163318211212754, -0.017767690122127533, -0.020190557464957237, -0.056363534182310104, 0.04239308461546898, -0.03250325471162796, -0.04505682364106178, 0.006847078446298838, -0.024228667840361595, 0.025192147120833397, -0.01615244522690773, -0.011597172357141972, -0.0534447580575943, 0.03785906732082367, 0.008699650876224041, 0.019609635695815086, 0.015472343191504478, 0.04358326643705368, 0.022896800190210342, 0.04449006915092468, 0.006032371893525124, -0.03800075501203537, 0.03780239075422287, 0.011887633241713047, 0.010229882784187794, 0.019198739901185036, 0.04837232455611229, 0.030151231214404106, 0.06013244017958641, -0.017385132610797882, 0.0022935764864087105, 0.009556863456964493, 0.02770002745091915, -0.01064077764749527, -0.03876587003469467, -0.002339625032618642, 0.010605355724692345, 0.0072402628138661385, 0.014919758774340153, -0.017739351838827133, -0.024370357394218445, 0.007679495960474014, -0.08540959656238556, -0.012503976933658123, 0.011278374120593071, -0.017328457906842232, -0.018376950174570084, 0.023576904088258743, 0.03825579211115837, -0.014551370404660702, -0.020360583439469337, 0.03244657814502716, 0.022783450782299042, 0.0011441315291449428, 0.040296100080013275, -0.009160136803984642, 0.0025220485404133797, -0.00025990913854911923, -0.0027328096330165863, -0.03168146312236786, 0.030888009816408157, 0.0048209382221102715, 0.02136656828224659, -0.04483012109994888, 0.0011521015549078584, -0.012553567066788673, -0.004590695258229971, 0.023661917075514793, -0.02213168516755104, 0.04689876735210419, -0.020558945834636688, 0.013014053925871849, -0.050610996782779694, -0.0538981594145298, 0.045680250972509384, 0.08042217791080475, -0.013694156892597675, -0.07673828303813934, -0.014650551602244377, -0.034855276346206665, -0.03238990530371666, -0.04335656389594078, -0.018532807007431984, -0.004172715358436108, 0.03431686386466026, 0.023534396663308144, 0.03210652992129326, 0.005671067163348198, -0.030916348099708557, 0.0266798734664917, -0.029612816870212555, -0.01635080948472023, 0.02710493840277195, -0.002982534933835268, -0.009578117169439793, -0.025177979841828346, 0.03729231283068657, 0.017540989443659782, 0.019878843799233437, -0.050894372165203094, -0.013517046347260475, -0.014678888954222202, -0.014409681782126427, -0.0277850404381752, -0.017470145598053932, -0.029839517548680305, -0.012716508470475674, -0.017838533967733383, 0.03414683789014816, -0.010329063981771469, 0.020006362348794937, 0.008841338567435741, -0.01657751016318798, 0.04429170489311218, -0.001046721008606255, -0.020034700632095337, 0.0036449269391596317, -0.017838533967733383, 0.03834080696105957, -0.0012654520105570555, 0.02179163321852684, 0.03890755772590637, -0.020218895748257637, 0.00805496983230114, -0.03247491642832756, -0.00837376806885004, 0.006878958083689213, -0.014863084070384502, 0.020431427285075188, -0.023208513855934143, -0.0010254677617922425, 0.057071976363658905, 0.014133390039205551, 0.028805194422602654, -0.01579822599887848, 0.011618426069617271, -0.03638551011681557, 0.0273174699395895, 0.013375358656048775, -0.0022918053437024355, -0.06653673946857452, -0.011887633241713047, 0.07560478150844574, -0.04942081496119499, 0.040834516286849976, -0.056845273822546005, -0.02146575041115284, -0.09776480495929718, 0.0072827693074941635, 0.035053640604019165, -0.006021745037287474, -0.023010151460766792, 0.045595236122608185, 0.029527803882956505, -0.0067620654590427876, -0.017314288765192032, 0.0002926745219156146, -0.007389035541564226, 0.005975696723908186, 0.03349507227540016, -0.035450369119644165, -0.04389498010277748, 0.007998294197022915, -0.03253159299492836, 0.0008173633250407875, 0.06001908704638481, -0.025220485404133797, -0.01626579649746418, -0.057327013462781906, 0.00023267845972441137, 0.023987798020243645, 0.019340427592396736, 0.0008983912412077188, 0.017909377813339233, 0.03377844765782356, 0.010605355724692345, -0.04729549586772919, -0.0005552403163164854, 0.002010200172662735, 0.02138073742389679, -0.0025078796315938234, 0.007835352793335915, 0.01071162149310112, 0.009925252757966518, -0.018051067367196083, -0.006422013975679874, -0.04806061089038849, 0.006422013975679874, 0.03695226088166237, -0.025730563327670097, 0.005759621970355511, 0.01592574454843998, -0.04208137094974518, 0.01350287813693285, 0.004580068401992321, -0.01686088554561138, 0.007116286084055901, -0.02242922969162464, -0.04202469810843468, -0.0275016650557518, -0.041174568235874176, -0.04471677169203758, 0.011512159369885921, 0.057043638080358505, 0.024483706802129745, 0.06460978090763092, 0.046275340020656586, 0.004548188764601946, 0.012397710233926773, -0.005851719528436661, 0.04670040309429169, 0.04434838145971298, -0.05956568568944931, 0.018915364518761635, -0.03703727573156357, 0.006308663636445999, 0.015557355247437954, 0.003627215977758169, -0.01121461484581232, -0.02155076339840889, -0.04840066283941269, 0.030264582484960556, 0.020686466246843338, 0.04749385640025139, 0.028932714834809303, 0.02608478255569935, -0.03834080696105957, -0.01585490070283413, -0.034826941788196564, -0.019552960991859436, 0.012836943380534649, 0.003988520707935095, -0.005915479268878698, 0.003885796759277582, -5.338210758054629e-05, -0.028493480756878853, 0.00782118458300829, -0.024682071059942245, 0.029924530535936356, -0.022967644035816193, 0.04471677169203758, 0.009209727868437767, -0.015415667556226254, 0.07577480375766754, -0.01647832803428173, 0.02230171114206314, -0.03335338458418846, -0.028649337589740753, -0.029187753796577454, 0.024965446442365646, -0.08076222985982895, 0.006191771011799574, 0.0268498994410038, 0.002872726647183299, 0.018660325556993484, -0.02767168916761875, -0.009486019611358643, 0.017399301752448082, 0.04760720953345299, 0.009939421899616718, -0.023180177435278893, 0.02754417061805725, 0.0269632488489151, -0.029896194115281105, -0.007665327284485102, -0.011412978172302246, -0.0027328096330165863, -0.022939307615160942, 0.023166008293628693, 0.045141834765672684, -0.040182750672101974, -0.01659167930483818, -0.030037881806492805, -0.03941763564944267, 0.020233063027262688, 0.02233004756271839, 0.03247491642832756, -0.012801521457731724, -0.025886420160531998, 0.015486511401832104, -0.04318653792142868, -0.06988058239221573, 0.028125092387199402, -0.025858081877231598, 0.07577480375766754, 0.006446809507906437, -0.017909377813339233, 0.0006296265637502074, -0.0544932521879673, -0.008763410151004791, 0.018306104466319084, -0.007077321410179138, 0.04752219468355179, -0.034401874989271164, 0.0013159284135326743, -0.00862172245979309, -0.029811181128025055, -0.007629905361682177, 0.005242460407316685, 0.018022729083895683, -0.019411273300647736, 0.03581875562667847, 0.019255416467785835, -0.03230489045381546, -0.028181767091155052, -0.03868085518479347, 0.028040079399943352, 0.0003996047889813781, 0.014395512640476227, 0.0261556264013052, 0.011646763421595097, 0.046275340020656586, 0.01055576466023922, -0.0138925202190876, 0.006383049767464399, -0.0034022859763354063, -0.01601075753569603, 0.011271290481090546, 0.030066220089793205, -0.017810197547078133, -0.018079403787851334, 0.028550155460834503, -0.08183906227350235, -0.014430935494601727, 0.03417517617344856, -0.030576296150684357, 0.04174131900072098, -0.015302317216992378, 0.03885088115930557, 0.02662319876253605, 0.0065034846775233746, 0.007998294197022915, -0.014707227237522602, -0.03768904134631157, 0.014551370404660702, -0.028493480756878853, -0.014735564589500427, 0.02136656828224659, 0.012057659216225147, 0.02099817991256714, -0.02146575041115284, 0.034826941788196564, -0.005508125759661198, 0.005097229965031147, -0.012773184105753899, -0.009705636650323868, -0.020148050040006638, -0.03876587003469467, -0.029357777908444405, 0.02118237316608429, -0.006971055641770363, 0.00204916438087821, -0.04176965728402138, -0.03204985335469246, -0.02220252901315689, -0.005469161551445723, 0.008657144382596016, -0.020700635388493538, 0.004587152972817421, 0.04998756945133209, -0.03434520214796066, 0.014374259859323502, -0.02252841182053089, 0.00519995391368866, -0.035195328295230865, 0.01602492667734623, 0.03774571418762207, 0.02269843779504299, 0.009818986989557743, -0.0030852588824927807, 0.007396120112389326, 0.0024033847730606794, 0.05004424601793289, 0.0019269584445282817, -0.0275016650557518, 0.028422636911273003, 0.019382935017347336, -0.008416274562478065, 0.006822282914072275, -0.019241247326135635, 0.0016285278834402561, 0.0067089325748384, 0.010088194161653519, 0.010626609437167645, 0.03216320276260376, -0.0261697955429554, 0.005051181651651859, 0.019411273300647736, -0.008756325580179691, -0.028904376551508904, -0.035903770476579666, 0.045595236122608185, 0.01087456289678812, -0.001122878398746252, -0.028153428807854652, -0.00042373602627776563, -0.018277768045663834, -0.011597172357141972, 0.029924530535936356, -0.025645550340414047, -0.010194459930062294, 0.015514849685132504, -0.01348870899528265, -0.025248823687434196, 0.018929533660411835, -0.01047783624380827, -0.04984588176012039, 0.014834746718406677, -0.01681837998330593, 0.024086980149149895, -0.014260909520089626, 0.025362173095345497, 0.014296331442892551, 0.012907788157463074, -0.025843912735581398, -0.006113842595368624, 0.05814880505204201, -0.010052772238850594, 0.018631987273693085, -0.01662001572549343, 0.01694589853286743, 0.03307000920176506, 0.014707227237522602, -0.0013345249462872744, -0.010102363303303719, 0.02231587842106819, 0.02785588428378105, 0.008926351554691792, -0.01677587442100048, -0.02805424854159355, -0.030264582484960556, 0.018391117453575134, -0.004944915417581797, 0.03219154104590416, 0.018221091479063034, -0.022825956344604492, 0.008975942619144917, 0.011320880614221096, -0.030094556510448456, -0.040522802621126175, -0.02179163321852684, -0.0070241885259747505, -0.035592056810855865, -0.013028223067522049, 0.025121303275227547, -0.01565653644502163, -0.008883845061063766, -0.03791574016213417, -0.019652143120765686, -0.02660902962088585, -0.023463552817702293, 0.03768904134631157, -0.028153428807854652, -0.05044097080826759, -0.013594974763691425, 0.020133882761001587, -0.01087456289678812, 0.03904924541711807, 0.02128155529499054, -0.0009732202743180096, -0.0013956279726698995, 0.010428246110677719, 0.017498482018709183, 0.004169173073023558, -0.0011990356724709272, -0.011342134326696396, 0.03375010937452316, 0.03168146312236786, -0.01365165039896965, -0.005915479268878698, 0.030037881806492805, -0.024412862956523895, 0.028096754103899002, 0.003216320415958762, -0.01612410880625248, -0.002270552096888423, -0.020658127963542938, -0.03842581808567047, 0.03921927139163017, 0.005044097080826759, 0.020105544477701187, -0.018461961299180984, -0.022967644035816193, -0.01647832803428173, 0.0135595528408885, 0.012333950959146023, -0.031114710494875908, 0.02133823186159134, -0.010265304706990719, -0.00410895561799407, -0.014147559180855751, 0.007714918348938227, 0.03746233880519867, 0.025433016940951347, 0.04845733568072319, 0.01630830205976963, -0.0018401744309812784, 0.01620912179350853, 0.008650059811770916, 0.03933262079954147, 0.015387330204248428, 0.004682792350649834, -0.010010265745222569, -0.011753029190003872, -0.011682185344398022, 0.07175086438655853, -0.0531047061085701, 0.035563718527555466, -0.06103924289345741, 0.02241506054997444, -0.006414929870516062, -0.0069462601095438, -0.011193361133337021, -0.0001824234495870769, 0.01047783624380827, 0.02250007353723049, 0.009996096603572369, 0.008253333158791065, 0.017300119623541832, 0.015373161062598228, -0.01575571857392788, -0.008409189991652966, -0.0031047409866005182, 0.0529063455760479, -0.00789202842861414, 0.012518145143985748, 0.0034182260278612375, -0.0038964233826845884, -0.034600239247083664, -0.0548049658536911, 0.004321487620472908, 0.022910969331860542, 0.02230171114206314, -0.017441807314753532, 0.02084232307970524, -0.040012724697589874, -0.024752914905548096, 0.023874448612332344, -0.014246740378439426, -0.0034182260278612375, -0.03635717183351517, 0.0261981338262558, -0.028521819040179253, 0.03224821761250496, -0.03284330666065216, -0.035733744502067566, -0.08042217791080475, 0.012851112522184849, -0.029046064242720604, -0.008232079446315765, 0.03318335860967636, -0.018447794020175934, -0.0072827693074941635, 0.03301333263516426, 0.0016090457793325186, -0.03624382242560387, 0.028989389538764954, -0.005182242952287197, 0.029924530535936356, -0.01708758808672428, 0.02653818577528, 0.005114941392093897, -0.03448688983917236, 0.018277768045663834, -0.03400515019893646, 0.029414454475045204, 0.0034164548851549625, -0.02677905559539795, -0.017569327726960182, -0.04185467213392258, 0.02135239914059639, -0.018717000260949135, 0.014905590564012527, 0.035081978887319565, 0.014409681782126427, -0.0274308193475008, -0.019142065197229385, 0.012716508470475674, -0.023690253496170044, -0.02143741212785244, 0.0051751588471233845, -0.025007953867316246, 0.00663454644382, 0.017696846276521683, -0.0013451515696942806, 0.029301103204488754, -0.005568343214690685, 0.020488101989030838, -0.011087095364928246, 0.02172078937292099, -0.0025078796315938234, 0.00561084970831871, -0.009882746264338493, -0.01673336699604988, -0.030207907781004906, -0.00827458593994379, -0.03995605185627937, 0.0026194590609520674, -0.01049200538545847, -0.0013929713750258088, 0.04749385640025139, 0.004526935517787933, 0.009138884022831917, 0.034203510731458664, -0.0027824004646390676, 0.029074402526021004, -0.03227655217051506, -0.004339198581874371, -0.011639678850769997, 0.004367536399513483, -0.02129572443664074, -0.02658069133758545, 0.03819911926984787, -0.017370963469147682, -0.02721828781068325, -0.011108349077403545, -0.01319116447120905, -0.009946506470441818, 0.0036768068093806505, -0.009875661693513393, 0.018433624878525734, -0.03145476430654526, 0.011023336090147495, -0.10037186741828918, -0.03134141117334366, 0.04301651194691658, -0.03377844765782356, -0.006432640831917524, 0.0014531888300552964, 0.01667669229209423, 0.01579822599887848, 0.025163810700178146, -0.006347627844661474, -0.0014177667908370495, -0.041712984442710876, -0.03213486447930336, -0.0005419570370577276, -0.0022475277073681355, 0.02242922969162464, -0.014409681782126427, 0.039502646774053574, -0.000596861238591373, 0.00409832876175642, -0.02645317278802395, 0.004137292969971895, -0.030973022803664207, 0.03828413039445877, -0.009060955606400967, -0.0062094819732010365, -0.025985602289438248, 0.028748519718647003, 0.0006504370248876512, -0.004006231669336557, 0.009974843822419643, -0.02676488645374775, -0.0031578741036355495, 0.04740884527564049, -0.01572738215327263, 0.022386722266674042, -0.017200937494635582, 0.0019464405486360192, -0.0019995735492557287, -0.005763164255768061, -0.02099817991256714, -0.03168146312236786, 0.08053553104400635, -0.02237255498766899, 0.057043638080358505, -0.04185467213392258, -0.018079403787851334, 0.017895210534334183, -0.012057659216225147, 0.0013132718158885837, 0.007219009567052126, 0.017130093649029732, -0.008777579292654991, -0.014260909520089626, 0.004551731050014496, 0.03309834375977516, -0.02152242511510849, -0.0130990669131279, 0.014877252280712128, -0.01633664034307003, -0.022854294627904892, 0.02167828194797039, 0.013453287072479725, -0.08127230405807495, 0.00038034404860809445, 0.0029665951151400805, 0.024072811007499695, 0.010676199570298195, 0.019737156108021736, -0.00417979946359992, 0.0009386838064529002, 0.018291937187314034, 0.0040877023711800575, -0.009372669272124767, 0.006149264518171549, 0.030717983841896057, 0.005887141451239586, 0.01643582247197628, -0.054889976978302, -0.01640748418867588, 0.024710407480597496, -0.009315993636846542, -0.009790648706257343, -0.02118237316608429, 0.008983027189970016, 0.018306104466319084, 0.010215713642537594, -0.01680421084165573, 0.020077206194400787, 0.01130671240389347, 0.039984386414289474, 0.013283261097967625, -0.01623745821416378, 0.012341035529971123, 0.0003044080804102123, 0.03377844765782356, 0.03768904134631157, 0.003058692207559943, 0.006659341510385275, 0.005405401811003685, 0.025447186082601547, -0.015614030882716179, 0.028861870989203453, 0.014218403026461601, -0.0016710342606529593, -0.023095164448022842, 0.010017350316047668, -0.009068040177226067, 0.0001300652656937018, 0.008841338567435741, -0.0005136194522492588, 0.0009829613845795393, 0.006361796520650387, 0.02119654230773449, -0.005667524877935648, -0.001305301790125668, -0.0269915871322155, 0.010463668033480644, -0.01333993673324585, -0.03604545816779137, 0.004668623674660921, 0.0018578855087980628, -0.018660325556993484, 0.03434520214796066, 0.00331373093649745, 0.018391117453575134, 0.005490414798259735, 0.003427081508561969, 0.00687541626393795, -0.012503976933658123, 0.01098082959651947, 0.01687505468726158, -0.002984306076541543, 0.07203423976898193, -0.01088873203843832, -0.014069630764424801, 0.014232572168111801, -0.028365962207317352, 0.017399301752448082, 0.017824364826083183, 0.004803227260708809, 0.03768904134631157, -0.005136194173246622, -0.04233641177415848, 0.020233063027262688, -0.029414454475045204, -0.024143656715750694, 0.002378589240834117, -0.029726168140769005, 0.04505682364106178, 0.04738050699234009, 0.00023887731367722154, -0.01667669229209423, 0.026042276993393898, -0.03865252062678337, 0.040296100080013275, -0.03281496837735176, -0.030066220089793205, -0.0268498994410038, 0.0275016650557518, 0.03389179706573486, 0.03655553609132767, 0.040069401264190674, 0.0025840371381491423, 0.04338490217924118, -0.034996964037418365, -0.04242142289876938, -0.00014423407264985144, -0.007665327284485102, 0.034458551555871964, -0.014877252280712128, 0.02230171114206314, 0.0528780072927475, 0.01652083545923233, 0.046020302921533585, 0.019708817824721336, -0.011583004146814346, -0.012312698177993298, -0.005540005397051573, 0.017300119623541832, -0.029867855831980705, -0.0020190556533634663, 0.03428852558135986, 0.02709076926112175, 0.013524130918085575, 0.0008514570654369891, -0.024412862956523895, 0.023902786895632744, 0.0043002343736588955, 0.02787005342543125, 0.02101234905421734, 0.019184570759534836, 0.024696240201592445, 0.046076975762844086, -0.02221669815480709, 0.012851112522184849, 0.014175896532833576, 0.003910592291504145, -0.0024334935005754232, 0.017399301752448082, 0.001599304610863328, 0.002038537757471204, -0.010102363303303719, 0.005490414798259735, -0.01365873496979475, 0.0268073920160532, -0.006135095842182636, 0.017966054379940033, -0.012652749195694923, -0.022811787202954292, -0.0014142245054244995, 0.02214585244655609, 0.0021129241213202477, -0.009989012964069843, -0.022726774215698242, 0.006900211330503225, 0.007077321410179138, -0.009826071560382843, -0.004565899726003408, -0.02788422256708145, -0.052282918244600296, -0.009117630310356617, -0.013028223067522049, 0.02071480266749859, 0.00781410001218319, -0.002077501965686679, 0.017030911520123482, -0.009903999976813793, 0.017328457906842232, 0.025603042915463448, -0.012730677612125874, 0.0279692355543375, 0.018476130440831184, 0.002449433319270611, -0.01564236916601658, 0.030831335112452507, 0.00845169648528099, 0.0075873988680541515, -0.005157447420060635, 0.009854408912360668, -0.0028178226202726364, -0.002123550744727254, -0.014848914928734303, -0.017370963469147682, -0.0012433133088052273, -0.022684268653392792, 0.008876760490238667, 0.0539548359811306, 0.026056446135044098, 0.012298529036343098, 0.01316282618790865, 0.0266373660415411, 0.013842929154634476, 0.01098791416734457, 0.007056068629026413, 0.0003159202460665256, -0.006237819325178862, 0.017285950481891632, -0.009585201740264893, -0.004916577599942684, -0.020218895748257637, -0.005756079684942961, -0.009053871035575867, 0.018490299582481384, -0.01659167930483818, -0.029187753796577454, -0.0027753161266446114, -0.012404794804751873, 0.01089581660926342, 0.007063152734190226, -0.018447794020175934, 0.04329989105463028, -0.005759621970355511, -0.04253477230668068, -0.015514849685132504, 0.023307695984840393, -0.025744732469320297, -0.004721756558865309, 0.015203135088086128, -0.003531576367095113, -0.025532199069857597, 0.004456091206520796, -0.030349595472216606, 0.005795044358819723, 0.04732383415102959, 0.024441201239824295, 0.012936125509440899, -0.01705924980342388, -0.0072898538783192635, -0.04752219468355179, 0.00012862624134868383, 0.041146229952573776, -0.01058410294353962, 0.01691756211221218, -0.010428246110677719, 0.0005911051412113011, 0.015500680543482304, 0.023208513855934143, 0.022485904395580292, -0.018178585916757584, -0.002166057238355279, -0.009705636650323868, 0.025262992829084396, -0.0009085750789381564, 0.004657996818423271, 0.0266940426081419, 0.009046786464750767, 0.015401498414576054, -0.014048377051949501, 0.02140907570719719, -0.01622328907251358, -0.0049094934947788715, 0.040381114929914474, 0.035677067935466766, -0.01098791416734457, 0.0001735679543344304, 0.019241247326135635, 0.010768297128379345, -0.004877613391727209, 0.024738745763897896, -0.006847078446298838, 0.025773068889975548, 0.004066449124366045, 0.04188301041722298, 0.01671919785439968, -0.011335049755871296, 0.029131077229976654, 0.007431542035192251, -0.010690368711948395, 0.009408091194927692, -0.010215713642537594, 0.019326260313391685, 0.0016984863905236125, 0.02104068547487259, -0.029527803882956505, 0.00551875215023756, 0.010031518526375294, -0.0017454205080866814, -0.011618426069617271, -0.0138925202190876, -0.018008559942245483, 0.01708758808672428, -0.0022599254734814167, -0.005557716358453035, -0.03712228685617447, 0.0025114219170063734, 0.024724576622247696, 0.01572738215327263, -0.03434520214796066, 0.023987798020243645, 0.07192088663578033, -0.004760720767080784, -0.039502646774053574, 0.0027824004646390676, -0.0011281917104497552, -0.0025804948527365923, -0.008487118408083916, -0.010598271153867245, -0.03241824358701706, -0.004201052710413933, -0.011420062743127346, 0.03913426026701927, -0.018405286595225334, 0.014806408435106277, -0.006276783533394337, 0.03814244270324707, 0.00394247192889452, 0.040692828595638275, 0.03332504630088806, -0.014806408435106277, 0.014331753365695477, 0.005132652353495359, -0.001978320302441716, -0.023052657023072243, -0.0132620083168149, 0.005132652353495359, -0.002608832437545061, -0.028351793065667152, 0.01671919785439968, 0.05905560776591301, -0.018646156415343285, -0.04451840743422508, -0.019524622708559036, 0.013042391277849674, 0.00010704094893299043, 0.0012415421660989523, -0.04876905307173729, 0.04321487620472908, 0.011172108352184296, 0.010307811200618744, -0.018121911212801933, 0.0059934076853096485, -0.023874448612332344, -0.0013141572708263993, -0.012801521457731724, 0.04244976118206978, -0.006669968366622925, -0.02160743810236454, -0.00403102720156312, -0.03190816566348076, 0.0025946637615561485, 0.011703439056873322, -0.017356794327497482, -0.03227655217051506, -0.006014660932123661, 0.0017622460145503283, 0.0059934076853096485, 0.0015939914155751467, 0.006733728107064962, 0.025787238031625748, -0.0059898653998970985, 0.005150363314896822, -0.018419455736875534, -0.006354712415486574, -0.0271474439650774, -0.056845273822546005, 0.008019547909498215, -0.02081398479640484, 0.012369372881948948, -0.014225487597286701, -0.006004034075886011, 0.01725761406123638, -0.006337000988423824, 0.005543547682464123, 0.02174912579357624, 0.0271332748234272, -0.0059013101272284985, 0.025801407173275948, 0.014076714403927326, -0.02190498262643814, -0.040324438363313675, -0.00552937900647521, -0.009252234362065792, 0.004551731050014496, 0.020020531490445137, -0.015075615607202053, 0.03304167091846466, 0.0263398215174675, -0.008614637888967991, 0.035592056810855865, 0.005242460407316685, -0.035422030836343765, 0.007757424842566252, -0.030349595472216606, 0.011561750434339046, 0.014891421422362328, -0.034061823040246964, -0.0006557503365911543, -0.02099817991256714, -0.019312091171741486, -0.004962626378983259, 0.020077206194400787, -0.008777579292654991, 0.01041407696902752, -0.0070312730967998505, 0.005412486381828785, -0.03159645199775696, -0.035138655453920364, -0.020587284117937088, -0.019949687644839287, -0.04108955338597298, 0.004367536399513483, 0.01380750723183155, 0.01112960185855627, 0.024058643728494644, 0.020445596426725388, 0.01671919785439968, -0.023817773908376694, 0.0031047409866005182, -0.03777405247092247, 0.03309834375977516, 0.009032617323100567, -0.009918168187141418, -0.02676488645374775, -0.010010265745222569, 0.008005378767848015, 0.015089784748852253, -0.004565899726003408, -0.01620912179350853, -0.024937110021710396, 0.011561750434339046, -0.01608160138130188, 0.040182750672101974, 0.009613539092242718, -0.011370471678674221, 0.022386722266674042, -0.006570786703377962, -0.0032234047539532185, 0.011788452044129372, 0.02213168516755104, -0.03386346250772476, 0.03788740187883377, -0.019538791850209236, -0.035535380244255066, 0.024554550647735596, -0.007296938449144363, 0.029499467462301254, 0.014848914928734303, 0.0523679293692112, -0.0021040686406195164, -0.006301579065620899, -0.03162479028105736, 0.035223666578531265, 0.0015532560646533966, -0.006907295901328325, -0.023449383676052094, 0.05837550759315491, -0.023803604766726494, 0.019085390493273735, -0.014877252280712128, -0.004250643774867058, 0.0023024319671094418, 0.010194459930062294, -0.020530609413981438, 0.03400515019893646, 0.014565538614988327, -0.03814244270324707, -0.015103953890502453, -0.0011892946204170585, -0.014105052687227726, 0.0013451515696942806, -0.018008559942245483, 0.009330162778496742, -0.007151708006858826, 0.04358326643705368, 0.0015373161295428872, -0.01653500460088253, 0.02626897767186165, -0.019397104158997536, 0.03255993127822876, -0.007038357201963663, -0.015188966877758503, 0.017540989443659782, 0.04281815141439438, -0.018844520673155785, 0.012220600619912148, 0.007672411855310202, -0.0024706865660846233, -0.015089784748852253, -0.030377933755517006, -0.005345184355974197, -0.014388429000973701, 0.01691756211221218, 0.01581239514052868, 0.018688663840293884, -0.008480033837258816, 0.020445596426725388, 0.020162219181656837, -0.006453894078731537, -0.010116531513631344, 0.002541530644521117, -0.0078070154413580894, -0.02659486047923565, -0.01639331504702568, 0.006390134338289499, 0.03162479028105736, -0.012759014964103699, -0.012404794804751873, -0.0015187195967882872, 0.007353613618761301, 0.013949195854365826, 0.029442790895700455, -0.0016488955589011312, 0.028904376551508904, 0.020020531490445137, -0.03635717183351517, 0.011186277493834496, 0.022896800190210342, -0.0028674134518951178, -0.04797559604048729, -0.003056921297684312, 0.014438019134104252, 0.008642975240945816, -0.01680421084165573, -0.0008921923581510782, 0.024937110021710396, 0.019354596734046936, -0.005465619266033173, 0.014005870558321476, -0.010116531513631344, -0.02206084132194519, -0.008182489313185215, -0.0038928810972720385, -0.02234421670436859, 0.00527788233011961, -0.01130671240389347, 0.026028107851743698, -0.01088164746761322, 0.040041062980890274, 0.0048599024303257465, -0.02261342480778694, 1.8250648281536996e-05, -0.0043533677235245705, 0.0012070056982338428, 0.041401270776987076, 0.024171993136405945, -0.0043037766590714455, 0.028918545693159103, -0.01725761406123638, -0.006142179947346449, -0.034685250371694565, -0.0053806062787771225, 0.00553292129188776, -0.00813998281955719, -0.03139808773994446, 0.008260417729616165, 0.002656652359291911, 0.00046402859152294695, -0.005019301548600197, 0.007927450351417065, -0.019722986966371536, 0.009145968593657017, 0.023704422637820244, -0.017668507993221283, 0.0009590514819137752, 0.017739351838827133, 0.004286065697669983, -0.03698059916496277, -0.03938929736614227, 0.03451522812247276, -0.0036378426011651754, 0.03737732768058777, 0.018065234646201134, 0.018235260620713234, 0.002723954152315855, 0.00852962490171194, -0.0031153676100075245, 0.015132291242480278, -0.014267994090914726, -0.018051067367196083, 0.006089047063142061, -0.015599861741065979, -0.0026708210352808237, -0.039899375289678574, 0.013283261097967625, 0.01571321301162243, -0.0037122287321835756, 0.011823873966932297, 0.009422260336577892, 0.017498482018709183, 0.0043037766590714455, 0.019623804837465286, 0.001863198820501566, 0.011405893601477146, 0.01650666631758213, -0.01724344491958618, 0.008409189991652966, 0.04380996525287628, 0.02081398479640484, 0.030321257188916206, -0.024937110021710396, 0.010917069390416145, 0.003839747980237007, -0.011816789396107197, -0.00427189702168107, -0.012957378290593624, -0.006602666340768337, 0.020289739593863487, 0.000782826857175678, 0.003800783772021532, 0.007013562135398388, 0.002945341868326068, 0.004438380245119333, -0.029867855831980705, -0.00813289824873209, -0.005908394698053598, -0.023987798020243645, 0.007842437364161015, 0.008848423138260841, 0.02771419659256935, 0.004399416036903858, -0.011023336090147495, -0.007056068629026413, -0.017215106636285782, 0.03417517617344856, 0.019552960991859436, 0.023506058380007744, 0.01691756211221218, -0.022882631048560143, -0.04208137094974518, 0.046615391969680786, 0.005150363314896822, 0.006988766603171825, -0.030547959730029106, 0.013134488835930824, 0.019637973979115486, 0.004434837959706783, -0.019623804837465286, 0.0019995735492557287, -0.02626897767186165, -0.005483330227434635, 0.02062978968024254, -0.035337015986442566, -0.010541596449911594, -0.022925138473510742, 0.01717260107398033, 0.020289739593863487, -0.0011051673209294677, -0.01681837998330593, -0.0008620836888439953, -0.001511635142378509, 0.052027877420186996, -0.0012902474263682961, -0.010300726629793644, 0.0028249069582670927, -0.008883845061063766, 0.008990110829472542, 0.025773068889975548, -0.019057052209973335, -0.008862592279911041, 0.01318407990038395, 0.01348870899528265, -0.008472949266433716, 0.010357401333749294, -0.013120319694280624, 0.012185178697109222, 0.011540497653186321, -0.0032570557668805122, -0.030689647421240807, -0.010074025020003319, 0.020318076014518738, -0.012107250280678272, -0.014197149313986301, -0.02254258096218109, 0.012319781817495823, -0.06574328988790512, 0.001435477752238512, -0.003389888210222125, -0.003427081508561969, 0.01652083545923233, 0.012178094126284122, 0.012744846753776073, -0.007162334397435188, -0.0010573476320132613, 0.029754504561424255, -0.02774253487586975, -0.02147991955280304, 0.028847701847553253, 0.007360697723925114]" -How FlightAware Fuels Flight Prediction Models for Global Travelers With TimescaleDB and Grafana,"'2020-09-05' GROUP BY 1 ORDER BY 1It took 6.4 seconds and aggregated 1.6M rows, from a table of 147M rows.For what the query was doing, this runtime wasn't too bad – the table was chunked byarr_time, which the query planner could take advantage of.I considered adding indexes to make the query faster, but wasn't convinced they would help much and was concerned about the resulting performance penalties for inserts.I also considered creating a materialized view to aggregate the data and writing a cron job to regularly refresh it...but that seemed like a hassle, and after all, I could wait 10 seconds for something to load 🤷‍♀️.Then, I discovered TimescaleDB's continuous aggregations! For the unfamiliar, they basically implement that regularly-refreshing materialized view idea, but in a far smarter way and with a bunch of cool extra features.Here's the view for the continuous aggregate:CREATE VIEW error_by_time_out WITH (timescaledb.continuous) AS SELECT time_out, time_bucket(INTERVAL '1 hour', arr_time) AS bucket, AVG(get_error(prediction_fa, arr_time)) AS avg_error, COUNT(*) AS count FROM prediction_history GROUP BY time_out, bucket;The new data extraction query is a little bit harder to parse, because the error needs to be aggregated across continuous aggregate buckets:SELECT time_bucket('1 day', bucket) AS ""time"", SUM(avg_error * count) / SUM(count) AS error, SUM(count) AS count FROM error_by_time_out WHERE time_out = '02:00:00' AND bucket BETWEEN '2020-03-01' AND '2020-09-05' GROUP BY 1 ORDER BY 1...and I'll let you guess how long it takes....30ms.Yes, milliseconds. We went from 6.4 seconds to execute the query to 30ms.On top of that, unlike in a classic materialized view, the whole view doesn't have to be recalculated every time it needs to be updated -just the parts that have changed.This means refreshes are lightning fast too.Continuous aggregates are what well and truly sold me on TimescaleDB.The amazing developers at Timescale recently made continuous aggregates even better through ""real-time"" aggregates. These will automatically fill in data between the last view refresh and real-time when they're queried, so you always get the most up-to-date data possible. Unfortunately, our database is a few versions behind so we're not using real-time aggregates yet, but I can't wait to upgrade and start using them.Editor’s Note: To learn more about real-time aggregates and how they work, see our“Ensuring up-to-date results with Real-Time Aggregations” blog and mini-tutorial(includes benchmarks, example scenarios, and resources to get started).Getting started advice &",https://www.timescale.com/blog/how-flightaware-fuels-flight-prediction-models-with-timescaledb-and-grafana/,591,"[-0.01708628609776497, 0.015725431963801384, 0.04464703053236008, 0.031230928376317024, 0.03606952354311943, 0.013642911799252033, 0.03870875760912895, -0.017278730869293213, -0.03211067244410515, 0.024220464751124382, 0.009704681113362312, -0.02750576101243496, 0.04211776703596115, -0.01903821900486946, 0.04519687220454216, 0.059547703713178635, -0.02750576101243496, 0.00851565133780241, -0.024591606110334396, 0.043657317757606506, -0.035932064056396484, -0.022708402946591377, 0.014763211831450462, 0.011601629666984081, -0.028028108179569244, -0.039313580840826035, -0.008659984916448593, 0.046434011310338974, 0.007800858933478594, -0.06262680888175964, -0.010378235019743443, -0.036564379930496216, -0.04615909233689308, -0.0505303218960762, 0.02316202223300934, 0.016536446288228035, 0.039973389357328415, 0.00950536411255598, 0.002144377212971449, -0.007464081980288029, 0.020124154165387154, 0.022515960037708282, 0.018694570288062096, 0.0057286485098302364, -0.0035670888610184193, -0.018570855259895325, -0.04264011234045029, -0.03378768637776375, -0.003496640594676137, 0.0505853071808815, -0.031560830771923065, 0.0016323383897542953, -0.061912015080451965, -0.012247691862285137, 0.01918942667543888, -0.027217093855142593, 0.0011718471068888903, 0.018928252160549164, 0.005735521670430899, -0.045334331691265106, 0.0035035135224461555, -0.04318995401263237, 0.012178962118923664, 0.023505672812461853, 0.006773345172405243, 0.016962572932243347, -0.0088455555960536, 0.044042207300662994, -0.027574490755796432, 0.002369467867538333, 0.027821918949484825, 0.0013539816718548536, 0.018928252160549164, -0.02813807688653469, 0.0069142417050898075, -0.017773587256669998, 0.03145086392760277, 0.03334781154990196, -0.032248131930828094, 0.0032474941108375788, 0.020247869193553925, 0.00019835059356410056, -0.018777046352624893, 0.03769155219197273, 0.03499733284115791, -0.036564379930496216, -0.036619361490011215, -0.03310038521885872, -0.009972727857530117, 0.03241308405995369, -0.04580169543623924, 0.04956810176372528, 0.024646591395139694, 0.016481462866067886, 0.007120431866496801, -0.0034588391426950693, 0.005869545042514801, 0.017993522807955742, 0.012598215602338314, 0.023753101006150246, 0.005041348282247782, -0.019588060677051544, 0.01257072389125824, -0.03804894909262657, 0.032193150371313095, 0.01652269996702671, -0.031093468889594078, -0.011044916696846485, -0.008831809274852276, 0.01079061534255743, -0.025416366755962372, 0.012247691862285137, -0.07367859780788422, 0.00809639785438776, 0.01726498454809189, 0.016948826611042023, -0.04998048022389412, 0.011216741986572742, -0.013498579151928425, -0.022969577461481094, -0.03642692044377327, 0.00960845872759819, -0.047396231442689896, -0.028784139081835747, -0.028949091210961342, -0.026928428560495377, 0.04459204524755478, -0.054131776094436646, -0.021801168099045753, -0.02666725404560566, 0.06543099135160446, 0.01726498454809189, 0.04835845157504082, -0.021691199392080307, -0.0007985570700839162, -0.013409229926764965, -0.0490182600915432, 0.037554092705249786, -0.034887365996837616, -0.000640048470813781, -0.014763211831450462, -0.006622138898819685, 0.011670360341668129, -0.005828307010233402, -0.006618702318519354, 0.026681000366806984, -0.010062077082693577, 0.02630985714495182, -0.0071891616098582745, -0.03505231812596321, -0.028234299272298813, 0.01969802752137184, -0.04646150395274162, -0.02966388314962387, 0.061912015080451965, -0.025278907269239426, 0.00984901376068592, 0.04140297323465347, -0.0035911444574594498, -0.04327243193984032, -0.005522458348423243, 0.023711862042546272, -0.006879876367747784, 0.0029622644651681185, -0.010611917823553085, 0.023478180170059204, -0.05910782888531685, -0.045389316976070404, -0.09319792687892914, -0.03169829398393631, -0.01281127892434597, -0.024495383724570274, -0.004745808895677328, -0.00019158497161697596, 0.05135508254170418, -0.01158101111650467, -0.015120607800781727, -0.05932776629924774, 0.027739442884922028, -0.009649696759879589, -0.03851631283760071, 0.0038660645950585604, -0.021237580105662346, 0.045059412717819214, -0.013636038638651371, -0.013079325668513775, -0.04016583412885666, 0.04522436484694481, -0.01733371429145336, 0.010062077082693577, -0.02861918695271015, 0.06328661739826202, -0.004876396153122187, 0.046076614409685135, -0.018309680745005608, -0.01120986882597208, 0.01616530492901802, 0.03252305090427399, 0.013718514703214169, -0.01753990538418293, 0.058503005653619766, 0.020646503195166588, 0.05171247944235802, -0.0011563828447833657, 0.01723749376833439, 0.03505231812596321, 0.0454992838203907, -0.010824980214238167, -0.04327243193984032, -0.03469492122530937, 0.00790395401418209, 0.013203039765357971, 0.021718692034482956, -0.011807819828391075, -0.03169829398393631, -0.01972552016377449, -0.05767824500799179, -0.02687344327569008, -0.009450379759073257, -0.025897476822137833, 0.012096486054360867, 0.04951311647891998, 0.020165393128991127, -0.001848837942816317, -0.017952285706996918, 0.04426214098930359, 0.025567572563886642, -0.016508953645825386, 0.030901024118065834, 0.022543450817465782, 0.004701134283095598, -0.03579460084438324, -0.015491750091314316, -0.03450247645378113, 0.04395972937345505, 0.019560568034648895, 0.030928516760468483, -0.0025241104885935783, 0.004024143796414137, -0.004584293346852064, -0.020371582359075546, 0.03211067244410515, 0.0071891616098582745, 0.02585623972117901, -0.018570855259895325, 0.009010507725179195, -0.042035289108753204, -0.052839651703834534, 0.0438772551715374, 0.07037955522537231, -0.0010438374010846019, -0.052729684859514236, -0.007587796077132225, -0.048440929502248764, -0.03920361399650574, -0.05017292499542236, -0.020962661132216454, 0.04264011234045029, -0.02511395514011383, 0.013649784959852695, 0.01655019260942936, -0.015285559929907322, -0.026626015082001686, -0.015409274026751518, -0.04173287749290466, 0.01792479306459427, 0.024866526946425438, -0.006735543254762888, 0.04189782962203026, -0.02104513719677925, 0.03452996909618378, 0.04819349944591522, 0.012660072185099125, -0.04657147079706192, 0.012110232375562191, -0.02897658385336399, 0.0011142856674268842, -0.001692477148026228, -0.024522876366972923, -0.028096837922930717, 0.0228046253323555, -0.04077065736055374, 0.03348527476191521, -0.006952043157070875, 0.025402620434761047, 0.029251502826809883, -0.03485987335443497, 0.02020663022994995, 0.04318995401263237, -0.036921776831150055, -0.0035258508287370205, -0.0016856041038408875, 0.06229690462350845, -0.02199361100792885, -0.017045048996806145, 0.028591694310307503, 0.0035292874090373516, 0.011340456083416939, -0.012845643796026707, -0.02112761326134205, 0.02140253223478794, -0.01536803599447012, 0.020357836037874222, 0.00013831919932272285, 0.01715501770377159, 0.05762326344847679, -0.010976186953485012, -0.010419473052024841, -0.022213546559214592, 0.0008492455235682428, -0.00534376036375761, 0.012460755184292793, 0.027052141726017, -0.00048282850184477866, -0.046076614409685135, -0.019890472292900085, 0.0876445397734642, -0.0472862645983696, 0.008611873723566532, -0.050447847694158554, 0.013079325668513775, -0.0776374489068985, -0.012282057665288448, 0.04310747981071472, -0.009807775728404522, -0.029169026762247086, 0.046681441366672516, -0.004391849040985107, 0.029278995469212532, -0.06295671314001083, 0.021526247262954712, -0.0037011124659329653, 0.03032369166612625, 0.014460799284279346, -0.02900407463312149, -0.0422002412378788, -0.010007092729210854, -0.011938407085835934, 0.014639497734606266, 0.052152350544929504, -0.04800105839967728, -0.027010904625058174, -0.060592398047447205, -0.007120431866496801, 0.03142337128520012, -0.00018932977400254458, 0.015464258380234241, 0.021141359582543373, -0.0049863639287650585, -0.00479735666885972, -0.016605176031589508, -0.015587972477078438, 0.02323075197637081, 0.01619279570877552, 0.016866350546479225, 0.02061901055276394, -0.01551924180239439, 0.009141094982624054, -0.05292212590575218, -0.0034811762161552906, -0.022158563137054443, 0.029224010184407234, 0.027079634368419647, -0.015161845833063126, -0.013910959474742413, 0.031148452311754227, -0.02804185450077057, 0.003384954296052456, -0.0005382421077229083, -0.003106597578153014, 0.026254873722791672, -0.008419428952038288, -0.014350831508636475, -0.027725696563720703, -0.04618658497929573, -0.043684810400009155, 0.0423102080821991, 0.05088771879673004, 0.03134089708328247, 0.03725167736411095, 0.03351276367902756, 0.02292834036052227, -0.016330257058143616, -0.034557461738586426, 0.07389853149652481, 0.04824848473072052, -0.026832206174731255, 0.0489082932472229, -0.03733415529131889, 0.0017766713863238692, 0.01873580738902092, 0.01267381850630045, -0.048440929502248764, -0.01927190274000168, -0.021003898233175278, 0.04288754239678383, 0.03678431361913681, 0.021003898233175278, 0.040633197873830795, 0.0202341228723526, 0.002725146012380719, 0.026227381080389023, -0.04618658497929573, -0.03535472974181175, 0.02900407463312149, 0.012639453634619713, -0.023876814171671867, 0.0386812649667263, -0.019917964935302734, -0.015574226155877113, 0.011622249148786068, -0.016096575185656548, 0.021182596683502197, -0.05402180925011635, 0.03956100717186928, -0.007498446851968765, -0.0488533079624176, 0.09011882543563843, -0.016385240480303764, 0.032193150371313095, -0.023038307204842567, -0.04264011234045029, -0.0130518339574337, 0.05028289556503296, -0.03780151903629303, -0.007491573691368103, 0.040963102132081985, -0.04176037013530731, 0.004429650958627462, -0.03318285942077637, -0.02412424236536026, 0.01703130267560482, 0.028949091210961342, -0.03205568715929985, 0.010769996792078018, 0.014447053894400597, 0.01876330003142357, -0.029114043340086937, 0.02828928269445896, -0.00917545985430479, -0.019533075392246246, -0.013374865055084229, -0.006615265738219023, 0.0023213569074869156, -0.04849591478705406, -0.00324062118306756, -0.03472241386771202, -0.03609701618552208, 0.011718470603227615, 0.024522876366972923, 0.017113778740167618, 0.008172000758349895, -0.007477827835828066, 0.0202616136521101, -0.060537416487932205, -0.0489082932472229, 0.01517559215426445, -0.03942354768514633, 0.04297001659870148, 0.014460799284279346, -0.012440136633813381, 0.008529397659003735, -0.07054451107978821, 0.023684369400143623, 0.0244816392660141, -0.019436854869127274, 0.053884346038103104, -0.00945725291967392, 0.0061066634953022, 0.02445414662361145, -0.020673993974924088, 0.03101099282503128, -0.004158167168498039, 0.03956100717186928, -0.036976758390665054, 0.025058971717953682, 0.004962308332324028, -0.01835091970860958, 0.008680603466928005, -0.035629648715257645, -0.007470954675227404, -0.006845511496067047, 0.01414464134722948, 0.049100738018751144, 0.024440400302410126, 0.018557108938694, -0.007670272141695023, -0.03164330869913101, -0.011347329244017601, -0.027340808883309364, -0.001374600687995553, 0.015409274026751518, 0.033870160579681396, -0.015725431963801384, -0.005677100736647844, 0.0321381650865078, -0.0876445397734642, -0.02038532868027687, 0.01912069506943226, 0.0018728934228420258, 0.003312787739560008, 0.012227073311805725, 0.007099812850356102, 0.05099768564105034, -0.0050825863145291805, 0.007326621562242508, -0.04211776703596115, -0.017072541639208794, -0.008055159822106361, 0.0026976538356393576, -0.0054056174121797085, 0.020632756873965263, 0.017828570678830147, 0.032220639288425446, -0.016247780993580818, 0.041045576333999634, -0.010515695437788963, 0.004828284960240126, 0.004031016491353512, -0.027588237076997757, -0.0003732900077011436, -0.0193956159055233, -0.01059817150235176, 0.006082608364522457, 0.008818063884973526, -0.008268223144114017, -0.024234211072325706, -0.010886837728321552, -0.03032369166612625, -0.009587840177118778, 0.010343870148062706, -0.011945280246436596, -0.002914153505116701, 0.021058883517980576, -0.029471438378095627, -0.002448507584631443, -0.03876373916864395, -0.03315537050366402, -0.051410067826509476, 0.006027624011039734, 0.03431003540754318, 0.020454058423638344, 0.008220111951231956, 0.019656790420413017, -0.008419428952038288, -0.0016306200996041298, 0.014625751413404942, -0.0013591364258900285, -0.023189514875411987, 0.0072372728027403355, 0.0003174468583893031, -0.03106597624719143, 0.019505584612488747, -0.0016907588578760624, 0.008859301917254925, 0.00028308184118941426, 0.015079369768500328, 0.01879079081118107, 0.021306311711668968, -0.04362982511520386, 0.034969840198755264, -0.004079127684235573, -0.010515695437788963, -0.013560435734689236, -0.017045048996806145, 0.03007626347243786, 0.015587972477078438, -0.01087996456772089, -0.04022081568837166, 0.03241308405995369, 0.006625575479120016, -0.01837841235101223, 0.04178786277770996, 0.008357572369277477, -0.0013892058050259948, 0.006147901527583599, -0.0032389028929173946, -0.013972816057503223, 0.0034038550220429897, 0.021498754620552063, -0.04426214098930359, 0.005477783735841513, -0.02224103920161724, 0.042997509241104126, -0.006058552768081427, 0.02648855559527874, 0.03749910742044449, 0.020481551066040993, 0.020151646807789803, -0.0005481220432557166, 0.021512500941753387, 0.0031100341584533453, -0.008288842625916004, 0.014364577829837799, 0.01188342273235321, 0.031203435733914375, 0.00987650640308857, -0.017787333577871323, 0.004910761024802923, 0.024371670559048653, 0.030158739537000656, -0.00239867833442986, 0.0005515585071407259, -0.006711488123983145, -0.026571031659841537, 0.021471263840794563, 0.01550549641251564, 0.014598259702324867, 0.004254389088600874, -0.04357484355568886, 9.794029756449163e-05, -0.004625531379133463, -0.032165657728910446, -0.061912015080451965, -0.02059151791036129, -0.007519065868109465, -0.035244762897491455, 0.0008900539833121002, 0.030901024118065834, -0.0013986561680212617, -0.017402444034814835, -0.02415173500776291, 0.0027955942787230015, -0.03299041837453842, 0.015106861479580402, 0.03180826082825661, -0.02669474482536316, -0.04690137505531311, -0.0025223921984434128, 0.0059107830747962, 0.0029691376257687807, 0.0003616918111220002, 0.018625838682055473, -0.007532811723649502, 0.023670624941587448, 0.029801342636346817, -0.003254367271438241, 0.010467584244906902, 0.018694570288062096, 0.020330345258116722, 0.036591872572898865, 0.0354921892285347, -0.00869434978812933, -0.005711466073989868, 0.018034761771559715, -0.015436765737831593, 0.0013325035106390715, -0.02148500829935074, -0.022213546559214592, -0.03101099282503128, -0.005574005655944347, -0.05366441234946251, 0.06603581458330154, 0.0038557550869882107, 0.01485943328589201, -0.02005542442202568, -0.03307289257645607, -0.027107125148177147, -0.0008943495922721922, -0.010893710888922215, -0.036289457231760025, 0.03334781154990196, -0.006811146624386311, -0.009354157373309135, -0.025815000757575035, 0.02119634300470352, 0.02074272558093071, 0.0018230641726404428, 0.006347218994051218, 0.032193150371313095, -0.025031479075551033, -0.0035224142484366894, 0.007251018658280373, 0.036261968314647675, 0.0487983264029026, 0.005563696380704641, 0.03568463400006294, -0.010007092729210854, 0.016770128160715103, 0.0639464259147644, -0.016715144738554955, 0.0063231633976101875, -0.044344618916511536, 0.0057767597027122974, -0.007924573495984077, -0.014886925928294659, -0.011388567276299, 0.021182596683502197, 0.02199361100792885, -0.003632382256910205, 0.011154884472489357, 0.027065888047218323, 0.02379433810710907, 0.0005635863053612411, -0.0012379997642710805, -0.029636390507221222, 0.015945367515087128, 0.015794161707162857, -0.016055336222052574, -0.0005064544384367764, 0.011292344890534878, 0.002816213294863701, -0.030131246894598007, -0.0606473833322525, -0.00818574707955122, 0.01954682171344757, 0.007175415754318237, 0.005281903315335512, 0.024866526946425438, -0.03200070559978485, -0.033595241606235504, 0.01451578363776207, -0.02145751751959324, 0.00035825531813316047, -0.02720334753394127, -0.006749289575964212, -0.03230311721563339, 0.01987672597169876, 0.004529309459030628, -0.025182684883475304, -0.0472312793135643, 0.012268311344087124, -0.040358275175094604, -0.015491750091314316, 0.024467892944812775, -0.021031390875577927, 0.021388787776231766, 0.04217274859547615, 0.009326665662229061, -0.036619361490011215, 0.01738869957625866, -0.016027843579649925, 0.02936147153377533, -0.022460974752902985, 0.008013921789824963, -0.0151893375441432, -0.006508734542876482, 0.01215147040784359, -0.02226853184401989, 0.00531970476731658, -0.009271682240068913, -0.004367793910205364, -0.014474545605480671, -0.013251150958240032, 0.03345778211951256, -0.002161559648811817, 0.026942173019051552, 0.02056402713060379, 0.004876396153122187, -0.0033918272238224745, -0.02415173500776291, 0.012639453634619713, 0.002367749810218811, -0.0004982927348464727, 0.02079770900309086, -0.04445458576083183, 0.002640951657667756, -0.0030962880700826645, -0.0071891616098582745, 0.03271549567580223, -0.00818574707955122, 0.020302852615714073, -0.01951933093369007, 0.012110232375562191, 0.007020772900432348, 0.0371692031621933, -0.015299306251108646, 0.005288776010274887, -0.022158563137054443, -0.017828570678830147, -0.01954682171344757, 0.02813807688653469, -0.01789730042219162, -0.019478091970086098, 0.03131340444087982, 0.005247537977993488, 0.00628536194562912, 0.01503813173621893, -0.00048411719035357237, 0.011608502827584743, -0.02628236636519432, -0.006305980961769819, -0.01891450583934784, -0.013168674893677235, -0.0006649630959145725, -0.004941689316183329, 0.024522876366972923, -0.02615865133702755, -0.06708051264286041, -0.016948826611042023, -0.02654353901743889, -0.037993963807821274, 0.025278907269239426, 0.006137592252343893, 0.019079457968473434, -0.008646238595247269, 0.008357572369277477, -0.10617415606975555, -0.029306486248970032, 0.03433752432465553, -0.028591694310307503, -0.008068906143307686, -0.04835845157504082, 0.004735499620437622, -0.010227029211819172, 0.02292834036052227, -0.010824980214238167, -0.017196254804730415, -0.044427093118429184, -0.020990151911973953, -0.013800990767776966, -0.016096575185656548, 0.025210177525877953, -0.01675638183951378, 0.03420006483793259, 0.024646591395139694, 0.008570635691285133, -0.045031920075416565, -0.005872981622815132, -0.017374953255057335, 0.014969401992857456, -0.011113646440207958, -0.01670139841735363, -0.021416278555989265, 0.043382398784160614, -0.0017835444305092096, -0.009106730110943317, 0.02595246210694313, 0.033210352063179016, 0.021003898233175278, 0.03172578290104866, 0.0012921246234327555, -0.015752924606204033, -0.036976758390665054, -0.0013333626557141542, 0.006536226253956556, -0.0159866064786911, -0.015766670927405357, -0.055808790028095245, 0.055451393127441406, -0.008598127402365208, 0.04321744665503502, -0.010570679791271687, -0.01703130267560482, 0.027134617790579796, -0.034557461738586426, -0.009422888047993183, 0.00280246720649302, 0.03411759063601494, -0.0008140213321894407, -0.02394554391503334, 0.007848969660699368, 0.020357836037874222, -0.02720334753394127, -0.016275271773338318, 0.014460799284279346, -0.020316598936915398, -0.0022784005850553513, 0.029498931020498276, 0.015725431963801384, -0.0707644447684288, 0.00993836298584938, 0.0005945148295722902, 0.01888701319694519, 0.029526423662900925, 0.025732524693012238, -0.014199625700712204, -0.016742637380957603, 0.000423119287006557, -0.01894199848175049, -0.028028108179569244, 0.01675638183951378, -0.00012629144475795329, 0.03373270109295845, -0.0016349157085642219, -0.013196166604757309, -0.039670977741479874, 0.02897658385336399, -0.005646172445267439, -0.019917964935302734, -0.0031770458444952965, 0.0009785438887774944, -0.026062428951263428, 0.008343826048076153, -0.0041272384114563465, 0.008000176399946213, 0.012103359214961529, 0.030928516760468483, -0.015601717866957188, 0.0003586848615668714, -0.007374732755124569, -0.016990065574645996, 0.0035086683928966522, 0.04187033697962761, 0.005189117509871721, 0.023876814171671867, 0.020000440999865532, 0.024083005264401436, 0.014227117411792278, 0.004041326232254505, 4.1399107431061566e-05, -0.026859696954488754, -0.028206806629896164, 0.018612094223499298, 0.010158299468457699, 0.0005330873536877334, 0.020316598936915398, -0.0019536511972546577, 0.027313316240906715, 0.011952153407037258, 0.04362982511520386, -0.013038087636232376, 0.01376662589609623, -0.01188342273235321, 0.01825469732284546, -0.022337261587381363, -0.013388610444962978, 0.023024562746286392, 0.0004518999776337296, -0.02415173500776291, 0.017526159062981606, -0.009230444207787514, 0.031863246113061905, 0.032605528831481934, -0.02020663022994995, 0.015134354121983051, -0.012536358088254929, 0.03304539993405342, 0.041650403290987015, -0.0021735874470323324, 0.07323872298002243, -0.026364842429757118, -0.029086550697684288, -0.00496918149292469, -0.02630985714495182, -0.013464214280247688, 0.044674523174762726, -0.003976032603532076, 0.015079369768500328, 0.02122383564710617, -0.035574667155742645, 0.0061582112684845924, -0.012618834152817726, -0.029086550697684288, -0.03398013114929199, 0.0018265006365254521, 0.05465412512421608, 0.04899076744914055, -0.016742637380957603, 0.004247516393661499, 0.036316949874162674, -0.03409009799361229, 0.06938984245061874, -0.05374688655138016, -0.050117943435907364, -0.007360986899584532, 0.0038385724183171988, 0.05465412512421608, 0.03744412213563919, 0.04552677646279335, -0.024385416880249977, 0.04725877195596695, -0.03436501696705818, -0.04019332304596901, -0.01738869957625866, -0.03169829398393631, 0.01817222125828266, -0.008240731433033943, 0.03406260535120964, 0.03777402639389038, 0.017168762162327766, 0.0606473833322525, 0.018213460221886635, 0.00036255092709325254, -0.006886749528348446, -0.010873091407120228, 0.019945455715060234, -0.039615992456674576, -0.014350831508636475, 0.02651604823768139, 0.010371362790465355, -0.006220068316906691, -0.033210352063179016, -0.03747161477804184, 0.01825469732284546, -0.02592496946454048, 0.022076087072491646, 0.021649960428476334, 0.016797620803117752, 0.0303511843085289, 0.015670448541641235, -0.012563850730657578, 0.013670404441654682, -0.001835091970860958, 0.008110144175589085, -0.025058971717953682, 0.03139587864279747, -0.038296375423669815, 0.006299107801169157, -0.013800990767776966, -0.016261525452136993, -0.0005786209949292243, 0.05319704860448837, 0.00041925322148017585, 0.02765696682035923, -0.0024656900204718113, 0.00023540036636404693, -0.0025979953352361917, -0.007168542593717575, -0.0010043176589533687, -0.005171935074031353, -0.025031479075551033, -0.0017534750513732433, -0.0007757902494631708, 0.007519065868109465, -0.01376662589609623, -0.0262136347591877, -0.015725431963801384, -0.04159541800618172, -0.03103848360478878, 0.02547135204076767, -0.011354201473295689, -0.0006933142431080341, 0.002269809367135167, -0.00709293968975544, -0.002295583253726363, 0.015436765737831593, 0.00018224198720417917, 0.03546469658613205, -0.0028041854966431856, 0.0018436831887811422, -0.005601497832685709, 0.021718692034482956, 0.00030219738255254924, -0.0006366119487211108, -0.013965942896902561, -0.0286466795951128, -0.008900539949536324, 0.021017644554376602, -0.018969489261507988, -0.024137988686561584, -0.020275359973311424, 0.005639299284666777, 0.027340808883309364, 0.046379029750823975, 0.05036536976695061, -0.0026478245854377747, 0.00989025179296732, 0.002553320722654462, 0.029828835278749466, 0.010941822081804276, 0.0035395969171077013, 0.007470954675227404, -0.002080801874399185, 0.03395263850688934, -0.00956034753471613, 0.010708139277994633, 0.0003921907627955079, 0.0337601937353611, 0.02834426611661911, 0.021649960428476334, -0.03175327554345131, -0.030543627217411995, -0.010419473052024841, -0.02028910629451275, 0.010556933470070362, 0.02163621596992016, -0.00324062118306756, 0.015010640025138855, 0.0012483092723414302, -0.03452996909618378, -0.033595241606235504, 0.02508646249771118, -0.04615909233689308, -0.014790703542530537, -0.0032079743687063456, -0.02900407463312149, -0.026928428560495377, 0.01873580738902092, -0.03233060985803604, -0.003175327554345131, 0.018955742940306664, 0.003680493449792266, -0.0042337700724601746, -0.026447318494319916, 0.02148500829935074, -0.04255763813853264, -0.022557197138667107, 0.04962308704853058, -0.022557197138667107, 0.023271989077329636, -0.03785650432109833, 0.005690847057849169, -0.006041370332241058, 0.01868082396686077, -0.01802101545035839, -0.020247869193553925, 0.0017440246883779764, -0.02208983339369297, 0.03252305090427399, 0.003477739868685603, -0.0023797773756086826, 0.009010507725179195, -0.005752704106271267, 0.015120607800781727, 0.023271989077329636, 0.019148187711834908, -0.016247780993580818, 0.009051745757460594, 0.019505584612488747, 0.020838946104049683, -0.003649564925581217, -0.005986385978758335, 0.03304539993405342, 0.01903821900486946, 0.016715144738554955, 0.0303511843085289, -0.024742811918258667, 0.02373935468494892, -0.004776737652719021, 0.03414508327841759, 0.012666945345699787, 0.003434783546254039, 0.009182333014905453, 0.0015438484260812402, -0.035987045615911484, 0.015436765737831593, -0.015587972477078438, 0.013038087636232376, 0.010419473052024841, 0.0439872220158577, -0.03238559141755104, 0.00496918149292469, 0.0073541137389838696, 0.01721000112593174, -0.0025447295047342777, -0.013821610249578953, 0.025691287592053413, -0.025966206565499306, 0.010330124758183956, 0.010666901245713234, -0.023010816425085068, -0.0058936006389558315, 0.024316687136888504, 0.02750576101243496, -0.01580790802836418, 0.02208983339369297, 0.0774175152182579, -0.008563762530684471, -0.01551924180239439, 0.0084537947550416, -0.031863246113061905, -0.015766670927405357, 0.007299129851162434, -0.012007136829197407, -0.007732129190117121, -0.0070860665291547775, -0.016948826611042023, 0.008220111951231956, 0.003996651619672775, 0.01642647758126259, 0.006288798060268164, 0.01825469732284546, -0.025897476822137833, 0.03200070559978485, 0.029114043340086937, 0.022309768944978714, 0.018955742940306664, 0.004800792783498764, 0.0008548297919332981, 0.008110144175589085, 0.006670250091701746, -0.026777220889925957, 0.031863246113061905, -0.040688179433345795, 0.013938451185822487, 0.033540256321430206, -0.0023746227379888296, -0.016096575185656548, 0.02257094345986843, 0.03411759063601494, -0.014447053894400597, 0.007635906804352999, -0.049485623836517334, 0.03128591179847717, 0.01484568789601326, 0.004309373442083597, -0.004800792783498764, -0.009739045985043049, -0.007512192707508802, 0.017759840935468674, -0.0009957264410331845, 0.051080163568258286, 0.0029536732472479343, -0.012708183377981186, -0.018034761771559715, -0.028949091210961342, -0.0160690825432539, -0.011773454956710339, -0.004642713814973831, -0.018873266875743866, 0.008013921789824963, 0.006185702979564667, 0.02020663022994995, 0.015340544283390045, 0.03648190200328827, 0.033870160579681396, 0.003443374764174223, 0.002774975262582302, -0.027258332818746567, 0.014969401992857456, -0.03741662949323654, -0.04497693479061127, 0.032578036189079285, -0.02086643874645233, -0.013374865055084229, -0.018818283453583717, 0.006821455899626017, 0.012453882023692131, 0.006027624011039734, 0.013292388990521431, 0.038268882781267166, 0.009436633437871933, 0.007127304561436176, 0.010391981340944767, 0.03167080134153366, -0.03282546624541283, -0.03345778211951256, 0.003979469183832407, -0.016811367124319077, 0.005271593574434519, -0.0028127767145633698, 0.0037870248779654503, 0.0025086463429033756, 0.03466742858290672, -0.027876902371644974, 0.008673730306327343, -0.008213238790631294, -0.02115510404109955, 0.02038532868027687, -0.01164286769926548, 0.006044806446880102, -0.005233792122453451, -0.04833096265792847, -0.020852692425251007, -0.011326709762215614, 0.0003717865329235792, 0.01580790802836418, 0.01046071108430624, -0.006608393043279648, 0.005869545042514801, 0.014254609122872353, -0.010082696564495564, -0.013471086509525776, -0.0354921892285347, -0.014240863732993603, 0.002336821286007762, -0.007477827835828066, -0.006037933751940727, 0.009065492078661919, 0.02382183074951172, 0.02376684546470642, 0.015093116089701653, -0.011862804181873798, -0.024949003010988235, -0.007464081980288029, -0.03483238071203232, 0.04187033697962761, 0.016591429710388184, -0.005745830945670605, -0.003800770966336131, 0.0006237250636331737, 0.016893843188881874, 0.025182684883475304, -0.007938318885862827, -0.025100208818912506, -0.044729508459568024, 0.01993170939385891, -0.00695891585201025, 0.05066778138279915, -0.004343738313764334, 0.018447142094373703, 0.005563696380704641, -0.017319969832897186, -0.008776825852692127, 0.017759840935468674, 0.0024502258747816086, -0.029416454955935478, -0.0022629364393651485, -0.01649520918726921, -0.007883335463702679, 0.03670183941721916, -0.010068950243294239, 0.020302852615714073, 0.01912069506943226, 0.025663794949650764, 4.2392472096253186e-05, -0.010900584049522877, 0.02061901055276394, 0.030956007540225983, 0.015093116089701653, -0.006312853656709194, 0.0039657228626310825, 0.028921598568558693, -0.01924441009759903, 0.01338173821568489, -0.030488643795251846, -0.021663706749677658, -0.016151558607816696, 0.008831809274852276, -0.018955742940306664, 0.024742811918258667, -0.0048248483799397945, -0.008976142853498459, -0.004171913024038076, -0.0013393765548244119, 0.0006834343075752258, -0.030846040695905685, 0.010660028085112572, 0.009182333014905453, -0.00088661746121943, 0.03901116922497749, -0.00984901376068592, -0.007491573691368103, 0.03004877083003521, -0.03145086392760277, 0.028426742181181908, -0.03279797360301018, -0.024866526946425438, 0.004460579250007868, 0.035904571413993835, -0.005842052865773439, -0.0050825863145291805, 0.026144905015826225, -0.006811146624386311, -0.0016271836357191205, -0.02094891481101513, -0.00177323492243886, -0.019134441390633583, 0.012117105536162853, 0.027079634368419647, 0.02905905805528164, 0.02115510404109955, 0.017045048996806145, 0.004938253201544285, -0.04860588163137436, 0.03901116922497749, -0.0159866064786911, -0.009794030338525772, -0.05462663248181343, 0.004271571524441242, 0.013086198829114437, 0.03068108856678009, -0.01733371429145336, 0.025278907269239426, -0.012563850730657578, -0.0014347394462674856, 0.01215147040784359, 0.01789730042219162, -0.021443771198391914, 0.042007796466350555, 0.025732524693012238, 0.003451965982094407, -0.003927921410650015, 0.047451216727495193, 0.02143002487719059, -0.034584954380989075, -0.006137592252343893, 0.003962286747992039, -0.012900627218186855, -0.005769886542111635, -0.002091111382469535, 0.02379433810710907, 0.023024562746286392, 0.01077686995267868, -0.01879079081118107, -0.003573961788788438, -0.004539618734270334, 0.004072254523634911, 0.015876637771725655, 0.017622381448745728, 0.023175768554210663, -0.015478003770112991, 0.02137504145503044, -0.018969489261507988, 0.025457605719566345, -0.015381782315671444, -0.03568463400006294, 0.0010635972721502185, -0.0012431545183062553, 0.005907346494495869, 0.034887365996837616, 0.007642779964953661, 0.004072254523634911, 0.01013080682605505, -0.006883312948048115, 0.004790483508259058, -0.03653688728809357, 0.03936856612563133, 0.022282278165221214, -0.010247648693621159, -0.0438772551715374, 0.01604158990085125, 0.008247604593634605, -0.017677364870905876, 0.005690847057849169, 0.020756470039486885, -0.029224010184407234, 0.002207952318713069, 0.012137724086642265, -0.01466698944568634, -0.003711421974003315, -0.008281969465315342, -0.01400718092918396, -0.017608635127544403, -0.01634400151669979, 0.027849409729242325, -0.008976142853498459, -0.011505408212542534, 0.026392333209514618, 0.008646238595247269, 0.013285515829920769, 0.014969401992857456, 0.013457341119647026, -0.031230928376317024, -0.01400718092918396, -0.01357418205589056, -0.016179051250219345, -0.0047664279118180275, -0.006467496510595083, -0.03617949038743973, 0.011024297215044498, -0.013471086509525776, -0.007347240578383207, -0.0016529574058949947, 0.0005833461764268577, 0.019299393519759178, 0.02514144778251648, 0.03615199774503708, -0.0236431322991848, -0.006897059269249439, 0.0037011124659329653, -0.029471438378095627, 0.011904042214155197, 0.02966388314962387, -0.00065379444276914, 0.025760017335414886, -0.01934063248336315, 0.009814648889005184, -0.011196122504770756, -0.021856151521205902, 0.024825287982821465, -0.013732261024415493, -0.00551558518782258, 0.030846040695905685, -0.012749421410262585, 0.014254609122872353, 0.009251062758266926, -0.016206542029976845, -0.01642647758126259, -0.01810349151492119, -0.02828928269445896, -0.010261394083499908, -0.000671836081892252, 0.015931623056530952, 0.0060654254630208015, 0.008254476822912693, 0.02325824461877346, -5.1064267609035596e-05, 0.020124154165387154, -0.021539993584156036, 0.05028289556503296, 0.005941711366176605, 0.01672889105975628, 0.019684283062815666, -0.018873266875743866, -0.0388462170958519, 0.028055600821971893, -0.010715012438595295, 0.01715501770377159, -0.03980843722820282, 0.003608326893299818, 0.020399075001478195, 0.03310038521885872, 0.0013445313088595867, -0.005938275251537561, -0.024137988686561584, 0.0006933142431080341, 0.0029811651911586523, -0.042007796466350555, -0.014103403314948082, -0.0006464918842539191, 0.024412907660007477, 0.018034761771559715, 0.014488291926681995, -0.005113514605909586, 0.01550549641251564, -0.022818371653556824, 0.05088771879673004, 0.0005842053215019405, 0.0007242427673190832, 0.022199802100658417, 0.019354378804564476, 0.030846040695905685, 0.025196431204676628, 0.0007598964730277658, 0.014818195253610611, 0.013890339992940426, 0.0008453794289380312, -0.00014368872507475317, -0.008240731433033943, -0.03686679154634476, 0.05432422086596489, 0.03403511270880699, 0.007587796077132225, -0.03483238071203232, -0.012666945345699787, 0.00808265246450901, -0.011855931021273136, -0.039698466658592224, -0.010158299468457699, 0.01282502431422472, -0.03975345194339752, 0.0006125564686954021, 3.731826291186735e-05, -0.006845511496067047, 0.007793986238539219, -0.0015979732852429152, -0.006446877494454384, 0.023505672812461853, 0.006879876367747784, 0.03546469658613205, 0.015629209578037262, -0.01173221692442894, 0.030901024118065834, 0.011457297019660473]" -How FlightAware Fuels Flight Prediction Models for Global Travelers With TimescaleDB and Grafana,"resourcesIn addition to the documentation I’ve linked throughout this post, I'd recommend doing what I did: readingthe TimescaleDB docs, spinning up a test database, and going to town.And, after a few months of use, make sure to go back and read the docs again – you'll discover all sorts of new things to try to make your database even faster (looking at youtimescaledb-tune)!Editor’s Note: If you’d like to follow Caroline’s advice and start testing TimescaleDB for yourself,Timescale Cloudis the fastest way to get up and running - 100% free for 30 days, no credit card required. You can see self-managed and other hosted optionshere.To learn more about timescale-tune,see our Configuring TimescaleDB documentation.We’d like to thank Caroline and the FlightAware team for sharing their story, as well as for their work to make accurate, reliable flight data available to travelers, aviation enthusiasts, and operators everywhere. We’re big fans of FlightAware at Team Timescale, and we’re honored to have them as members of our community!We’re always keen to feature new community projects and stories on our blog. If you have a story or project you’d like to share, reach out on Slack (@lacey butler), and we’ll go from there.Additionally, if you’re looking for more ways to get involved and show your expertise, check out theTimescale Heroesprogram.The open-source relational database for time-series and analytics.Try Timescale for free",https://www.timescale.com/blog/how-flightaware-fuels-flight-prediction-models-with-timescaledb-and-grafana/,312,"[-0.007983548566699028, 0.003164829220622778, 0.059815093874931335, -0.01585128903388977, 0.03668234497308731, 0.0025351205840706825, -0.021757522597908974, 0.022597134113311768, -0.009698962792754173, 0.006807368714362383, 0.007679551374167204, -0.008511925116181374, 0.006365848705172539, -0.03184733912348747, 0.052084874361753464, 0.04751043766736984, -0.0031431152019649744, -0.00728507898747921, -0.019079450517892838, 0.055703889578580856, -0.03320809081196785, 0.017371276393532753, 0.016879089176654816, 0.043920375406742096, -0.01480177417397499, -0.03430826961994171, -0.03616120666265488, 0.05555913224816322, 0.03940384462475777, -0.05975718796253204, 0.018341172486543655, -0.03899851441383362, -0.07012204825878143, 0.028474416583776474, 0.031499914824962616, 0.019672969356179237, 0.027301855385303497, -0.027258427813649178, 0.02356703020632267, -0.04545483738183975, -0.033323898911476135, 0.004889290314167738, 0.015055106021463871, 0.0035828256513923407, -0.024059217423200607, -0.030254971235990524, -0.023552555590867996, -0.027243951335549355, 0.011421614326536655, 0.05457475781440735, -0.03891165927052498, -0.014229970052838326, -0.0506083182990551, -0.042183246463537216, 0.021482476964592934, 0.006307944655418396, -0.002256456296890974, 0.02178647555410862, -0.010415527038276196, -0.011870372109115124, 0.02384207583963871, -0.018471457064151764, 0.02138114534318447, 0.03595853969454765, -0.031036678701639175, -0.003050830215215683, -0.015243294648826122, 0.032860662788152695, -0.036248061805963516, 0.028257275000214577, 0.049855560064315796, 0.001582414610311389, 0.000291104573989287, 0.0007057081093080342, 0.03453988581895828, -0.06346306204795837, -0.0304576363414526, 0.0462365448474884, 0.00861325766891241, -0.05069517344236374, 0.015301198698580265, 0.007133080158382654, -0.024493498727679253, 0.018920214846730232, 0.014555681496858597, -0.014027304947376251, -0.04093830659985542, -0.0028409273363649845, 0.01731337234377861, -0.0031503532081842422, -0.013122551143169403, 0.07405953854322433, 0.01258693728595972, 0.016734329983592033, 0.014533967711031437, 0.036421775817871094, 0.00429215282201767, 0.002927783876657486, 0.001985030248761177, 0.03138410672545433, 0.01863069273531437, -0.013795687817037106, -0.033729229122400284, -0.025926629081368446, 0.032136861234903336, 0.0024754067417234182, 0.010726762935519218, -0.0018927452620118856, 0.007809835951775312, 0.010770191438496113, -0.09154662489891052, 0.009670009836554527, -0.02023753710091114, -0.0011897514341399074, -0.02174304611980915, -0.006782035809010267, -0.004585293121635914, -0.032686952501535416, 0.02479749545454979, -0.030631350353360176, -0.05480637401342392, -0.025463394820690155, -0.02178647555410862, 0.007556505035609007, 0.027374235913157463, -0.046931397169828415, -0.01986115798354149, -0.035321593284606934, -0.022003615275025368, -0.0005727092502638698, 0.07087480276823044, -0.00018852810899261385, 0.06120479479432106, -0.029256124049425125, -0.00920677650719881, -0.022322090342640877, -0.054285235702991486, -0.03068925440311432, -0.023364365100860596, -0.022047044709324837, 0.012073036283254623, -0.01093666534870863, 0.011949989944696426, -0.0033964463509619236, -0.016459284350275993, -0.004031583666801453, -0.028126990422606468, 0.05723835527896881, -0.02004934847354889, -0.02662147954106331, -0.027851944789290428, -0.0007174698985181749, -0.03943279758095741, 0.0044079613871872425, 0.03425036370754242, 0.013889783062040806, 0.022626087069511414, -0.003506826236844063, -0.03969336673617363, -0.023595983162522316, 0.021366668865084648, 0.023219605907797813, -0.02867708168923855, 0.016473760828375816, -0.03891165927052498, -0.008374402299523354, -0.031442008912563324, -0.0632893517613411, -0.09907417744398117, -0.016343476250767708, -0.029386408627033234, -0.0735384002327919, -0.02269846759736538, 0.019470304250717163, 0.030544493347406387, 0.015214342623949051, 0.007838788442313671, -0.04244381561875343, 0.005015955772250891, -0.02210494875907898, -0.05115840584039688, -0.014309588819742203, -0.04988451302051544, 0.007708503864705563, -0.04284914582967758, 0.020107252523303032, -0.047713104635477066, 0.014063495211303234, 0.01909392699599266, 0.020657341927289963, -0.05000032112002373, 0.034279316663742065, 0.019948014989495277, 0.017747653648257256, 0.008294784463942051, -0.029082411900162697, 0.04145944491028786, -0.003343970514833927, -0.022539230063557625, 0.040127646178007126, 0.018992595374584198, -0.011226187460124493, 0.02617272175848484, -0.013716069981455803, -0.0055769034661352634, -0.019397925585508347, -0.0076505993492901325, 0.018833357840776443, -0.06027832627296448, -0.03621910884976387, -0.006687941029667854, 0.004921861458569765, -0.0048711951822042465, 0.004103963728994131, -0.049305472522974014, -0.009423917159438133, -0.006043756380677223, -0.05897548049688339, -0.003495969343930483, -0.002526073018088937, -0.02233656495809555, 0.05613817274570465, 0.034916263073682785, -0.015721004456281662, 0.002059220103546977, 0.019426876679062843, 0.022814275696873665, -0.014193779788911343, 0.023682840168476105, 0.015301198698580265, -0.0009798485552892089, -0.019528210163116455, 0.020802102982997894, -0.02420397847890854, 0.029936498031020164, -0.00637308694422245, -0.0037420622538775206, -0.048292145133018494, -0.010842571035027504, -0.0363638699054718, 0.016155285760760307, 0.001466606161557138, -0.011624278500676155, 0.009814770892262459, -0.009518011473119259, -0.0018257935298606753, -0.044325705617666245, -0.08419278264045715, 0.03621910884976387, 0.07000624388456345, 0.025144921615719795, 0.00376739539206028, -0.004838624037802219, -0.012362558394670486, 0.015170914120972157, -0.021250860765576363, 0.0010051816934719682, 0.005862805526703596, 0.045599598437547684, -0.034829407930374146, 0.014418158680200577, -0.02100476808845997, -0.05066622048616409, 1.4426584129978437e-05, -0.03465569391846657, 0.025014637038111687, 0.009373251348733902, -0.052779726684093475, -0.0043391999788582325, 0.004469484556466341, 0.023074844852089882, 0.0569198802113533, 0.04371771216392517, -0.055703889578580856, -0.021989140659570694, -0.01782003417611122, 0.015489387325942516, 0.0035231118090450764, 0.023957883939146996, -0.008967921137809753, -0.0005993995000608265, -0.029082411900162697, 0.0162131916731596, -0.013593023642897606, 0.00018570074462331831, -0.010191148146986961, 0.04203848913311958, 0.02475406788289547, 0.018022699281573296, -0.0395486056804657, -0.00314673432148993, 0.008975159376859665, 0.023089321330189705, -0.03888270631432533, 0.00019553994934540242, 0.020860007032752037, 0.006514228414744139, -0.014866916462779045, -0.03312123194336891, -0.018920214846730232, -0.008258594200015068, -0.015170914120972157, 0.011892085894942284, -0.009119919501245022, 0.008823160082101822, 0.031905245035886765, -0.005490046925842762, -0.003901299089193344, 0.01139266137033701, 0.0057687112130224705, 0.014664252288639545, -0.01525777019560337, 0.01091495156288147, -0.031528864055871964, -0.007002795580774546, -0.018963642418384552, 0.0742911547422409, 0.007947358302772045, -0.0015073200920596719, -0.04090935364365578, -0.05272182077169418, -0.07226450741291046, 0.03225266933441162, 0.024305310100317, 0.03540845215320587, -0.017747653648257256, 0.039896029978990555, -0.008801446296274662, 0.018384600058197975, -0.016589568927884102, -0.017009373754262924, -0.04759729653596878, -0.008077642880380154, -0.00017292109259869903, -4.75844026368577e-05, -0.046699780970811844, 0.005656521767377853, -0.03772462159395218, -0.022322090342640877, 0.02932850457727909, -0.019846683368086815, -0.00846849661320448, -0.06369467824697495, 0.03650863096117973, 0.005830234382301569, 0.026607004925608635, -0.003047211328521371, -0.009916103444993496, -0.013687117956578732, 0.002330646151676774, -0.07348049432039261, 0.011790753342211246, -0.0028481653425842524, 0.005830234382301569, 0.001166227855719626, 0.015156438574194908, 0.005797663237899542, 0.015286723151803017, -0.02456587925553322, 0.022307613864541054, -0.04959499090909958, 0.020527057349681854, 0.047857865691185, -0.004740910604596138, -0.0067205121740698814, 0.03193419426679611, -0.020396772772073746, -0.006865272764116526, -0.01973087340593338, -0.015749957412481308, 0.017284419387578964, -0.009771342389285564, -0.0014548443723469973, -0.004310247953981161, -0.08326631784439087, 0.0020610294304788113, 0.07394373416900635, 0.024276357144117355, -0.005164335481822491, 0.04988451302051544, 0.03488731384277344, -0.014837964437901974, 0.018920214846730232, -0.004860338289290667, 0.053098198026418686, 0.00842506904155016, -0.01644480787217617, 0.010466193780303001, -0.016039477661252022, 0.0017434608889743686, 0.0328027606010437, 0.002526073018088937, 0.010719524696469307, -0.02110609970986843, 0.004701101686805487, 0.010922189801931381, 0.0023939788807183504, 0.06161012500524521, 0.06079946458339691, -0.0458601675927639, 0.028561273589730263, 0.000182873394805938, -0.04473103582859039, -0.014809012413024902, 0.014606348238885403, 0.023509126156568527, -0.010871523059904575, 0.005175192374736071, -0.014172066003084183, -0.027736136689782143, -0.03508997708559036, -0.0294587891548872, 0.04296495392918587, -0.0020537914242595434, 0.028894221410155296, -0.015402531251311302, -0.02146800234913826, 0.06977462768554688, -0.014997201040387154, 0.03037078119814396, -0.03500312194228172, -0.015301198698580265, 0.02749004401266575, -0.025564728304743767, -0.02987859398126602, 0.05002927407622337, 0.00685079675167799, -0.010553049854934216, -0.005312715191394091, -0.05767263472080231, -0.02712814323604107, -0.014700442552566528, 0.039345938712358475, -0.015489387325942516, -0.01441092137247324, 0.012970552779734135, 0.0300523079931736, -0.016734329983592033, 0.07162755727767944, 0.012977791018784046, 0.011899324133992195, 0.0039990125223994255, -0.004559959750622511, 0.017747653648257256, 0.0042161536403000355, -0.04947918280959129, -0.039345938712358475, -0.018833357840776443, -0.009460107423365116, -0.007657837588340044, 0.03595853969454765, -0.031036678701639175, -0.0209613386541605, -0.00888106506317854, -0.030805062502622604, -0.030312877148389816, -0.009394965134561062, -0.007599933072924614, 0.043370284140110016, -0.033729229122400284, -0.04603388160467148, 0.03746405243873596, -0.07365421205759048, -0.011327519081532955, 0.01429511234164238, -0.05964137986302376, 0.037840429693460464, 0.01850040815770626, 0.019209735095500946, -0.016604045405983925, 0.012753412127494812, 0.023784171789884567, -0.034279316663742065, -0.009098205715417862, -0.04499160498380661, -0.008540877141058445, 0.0036081587895751, -0.00615594582632184, 0.009901626966893673, -0.011899324133992195, 0.010039149783551693, -0.01653166487812996, 0.001985030248761177, 0.07869187742471695, 0.023147225379943848, 0.043138667941093445, 0.021439049392938614, -0.005544332321733236, -0.018442504107952118, -0.003333113621920347, -0.03013916313648224, 0.02657805196940899, 0.031442008912563324, -0.017834510654211044, -0.02466721087694168, -0.015996050089597702, -0.0679795891046524, -0.03937489166855812, 0.004230629652738571, -0.003566540079191327, 0.01695146970450878, -0.0008617781568318605, -0.006724131293594837, 0.04690244421362877, -0.02822832390666008, 0.04018555209040642, -0.039896029978990555, -0.026911001652479172, -0.010176672600209713, -0.03549530729651451, -0.03850632905960083, -0.00783155020326376, 0.022307613864541054, 0.01981773041188717, -0.029067935422062874, 0.028981078416109085, -0.015431483276188374, 0.009286394342780113, -0.009185061790049076, -0.014866916462779045, -0.010314195416867733, -0.030081259086728096, -0.020078299567103386, 0.021033719182014465, -0.0031413056422024965, 0.008678399957716465, -0.026882048696279526, -0.01850040815770626, -0.013158741407096386, -0.00888106506317854, 0.0035918732173740864, -0.029198219999670982, 0.00904753990471363, -0.025912152603268623, -0.054372094571590424, 0.010104292072355747, -0.02973383292555809, -0.021525906398892403, -0.029241647571325302, 0.015692053362727165, 0.016328999772667885, 0.0482342429459095, 0.01553281582891941, 0.008084881119430065, -0.004570817109197378, -0.031499914824962616, -0.024088168516755104, -0.014164827764034271, 0.004017107654362917, 0.03465569391846657, 0.044470466673374176, -0.05619607865810394, 0.01964401826262474, 0.020063823089003563, 0.009677248075604439, 0.024175025522708893, 0.031355153769254684, -0.05234544351696968, 0.0036334919277578592, -0.004787957761436701, 0.004545483738183975, -0.013441024348139763, -0.0005849234294146299, 0.010784666985273361, -0.003923013340681791, 0.01822536438703537, -0.004715577699244022, -0.0502319410443306, -0.054603710770606995, -0.007082413882017136, 0.001914459397085011, 0.005287382286041975, 0.002359598409384489, 0.0012467509368434548, 0.041633158922195435, -0.007411744445562363, -0.03920117765665054, -0.04024345427751541, 0.015301198698580265, 0.04024345427751541, -0.009735152125358582, 0.0005867329309694469, -0.030949823558330536, 0.03288961574435234, -0.02456587925553322, 0.011631516739726067, 0.03833261504769325, 0.01308636087924242, 0.010762953199446201, -0.041922677308321, 0.0012630365090444684, 0.031355153769254684, -0.0011146569158881903, 0.010553049854934216, 0.01258693728595972, 0.014353016391396523, 0.021482476964592934, 0.028561273589730263, -0.009257442317903042, 0.031442008912563324, 0.009163348004221916, 0.00020990292250644416, 0.0014901297399774194, -0.03488731384277344, -0.009597630240023136, 0.006738607306033373, -0.008888302370905876, 0.013165979646146297, 0.037435099482536316, -0.0023957884404808283, 0.016705377027392387, 0.00338016077876091, -0.0028427368961274624, -0.060046710073947906, 0.004255962558090687, 0.0064382292330265045, 0.004042440559715033, -0.005696330685168505, 0.01750156097114086, -0.0209613386541605, -0.028720509260892868, -0.035176832228899, -0.022901132702827454, -0.032542191445827484, 0.014005591161549091, 0.01553281582891941, -0.025564728304743767, -0.03986707702279091, -0.012985028326511383, 0.0141358757391572, -0.010712286457419395, 0.014649775810539722, 0.05139002576470375, 0.012514556758105755, 0.0037637765053659678, 0.035379499197006226, 0.03975126892328262, 0.04507846012711525, 0.008671161718666553, -0.010719524696469307, 0.01786346174776554, 0.008815922774374485, -0.00653232354670763, -0.022553706541657448, 0.04751043766736984, -0.032136861234903336, -0.002323408145457506, 0.046526066958904266, 0.0026545480359345675, 0.009966769255697727, -0.03694291412830353, -0.014620823785662651, 0.03766671568155289, 0.0348004549741745, 0.027113666757941246, -0.006344134919345379, -0.015648623928427696, -0.015359102748334408, 0.015286723151803017, -0.016343476250767708, -0.03352656215429306, -0.00608718441799283, -0.03196314722299576, -0.01445434894412756, -0.0324263833463192, 0.009518011473119259, 0.03193419426679611, 0.01518539059907198, -0.003467017086222768, 0.03488731384277344, -0.039027467370033264, 0.008302022702991962, -0.008895540609955788, 0.03164467588067055, 0.026664908975362778, -0.00859154388308525, 0.005518998950719833, -0.013614737428724766, 0.03627701476216316, 0.04418094456195831, -0.022119425237178802, -0.013600260950624943, -0.02072972245514393, 0.010531336069107056, 0.007824311964213848, -0.010451717302203178, -0.01625661924481392, 0.029169267043471336, 0.02937193214893341, 0.018833357840776443, -0.001014229143038392, 0.017096230760216713, 0.00030264019733294845, -0.017284419387578964, -0.002515215892344713, 0.021815426647663116, 0.006886987015604973, -0.008367164991796017, -0.016184238716959953, -0.0458601675927639, -0.01754498854279518, 0.010784666985273361, -0.0494212806224823, -0.03659548610448837, 0.0009264680556952953, -0.003421779489144683, 0.04403618350625038, 0.009373251348733902, 0.05002927407622337, -0.03488731384277344, -0.05000032112002373, -0.004277676809579134, -0.04516531899571419, 0.02494225651025772, -0.02982068993151188, -0.0036588250659406185, -0.0040786308236420155, 0.02369731478393078, -0.03453988581895828, 0.01415758952498436, -0.09559991955757141, 0.024609306827187538, -0.003685967531055212, -0.01199341844767332, 0.02146800234913826, 0.005392333492636681, 0.05353248119354248, 0.014179304242134094, -0.002446454716846347, -0.012405985966324806, -0.003530349815264344, 0.005204144865274429, 0.02859022468328476, 0.045107413083314896, 0.02028096467256546, -0.03164467588067055, -0.0506083182990551, -0.0018113174010068178, -0.04143049195408821, -0.004415199160575867, -0.011863133870065212, 0.023668363690376282, -0.007411744445562363, 0.009778580628335476, 0.002377693308517337, -0.03795623779296875, 0.016111858189105988, 0.03178943321108818, -0.012217797338962555, -0.024609306827187538, 0.004176344256848097, 0.014041781425476074, 0.0032227335032075644, -0.03390293940901756, -0.0008590638753958046, -0.009612105786800385, -0.020888959988951683, 0.02735975943505764, 0.0001678318512858823, 0.032136861234903336, -0.010010197758674622, 0.039490699768066406, -0.014092447236180305, 0.029270600527524948, -0.01932554505765438, 0.039577558636665344, -0.012377033941447735, 0.030226020142436028, 0.010176672600209713, -0.04475998878479004, -0.02017963118851185, -0.03711662441492081, -0.0017470798920840025, 0.0034851122181862593, 0.06728474050760269, -0.006753083318471909, -0.02306036837399006, 0.01231189165264368, 0.043457143008708954, -0.03812995180487633, 0.015764432027935982, 0.007766407914459705, -0.05133211985230446, -0.04247276857495308, 0.009612105786800385, -0.024421118199825287, -0.013643689453601837, 0.0016728900372982025, -0.014577395282685757, -0.00906925369054079, -0.028850793838500977, -0.01808060333132744, -0.008960682898759842, 0.008374402299523354, 0.018109554424881935, -0.02101924456655979, -0.01121171098202467, -0.09311003983020782, -0.05923604965209961, 0.029618024826049805, 0.0012241321383044124, -0.009691724553704262, -0.0034018747974187136, 0.043457143008708954, 0.04047507420182228, 0.03326599299907684, -0.017255466431379318, 0.017255466431379318, -0.022365517914295197, -0.029473263770341873, -0.02110609970986843, -0.0030761633533984423, 0.018992595374584198, 0.008938969112932682, -0.005866424646228552, 0.024363214150071144, 0.013165979646146297, 0.009518011473119259, -0.0017009373987093568, -0.03494521602988243, 0.047481488436460495, 0.01553281582891941, -0.03963546082377434, -0.026042437180876732, 0.03138410672545433, 0.01075571496039629, -0.010205624625086784, 0.023263033479452133, 0.00391577510163188, -0.0066227987408638, -0.0035249213688075542, -0.0025097874458879232, 0.054603710770606995, -0.022799799218773842, 0.0009481821325607598, -0.010545811615884304, -0.005272905807942152, -0.03141305595636368, -0.04461522772908211, 0.03659548610448837, -0.024551402777433395, 0.04719196632504463, -0.009373251348733902, -0.004958051722496748, 0.014287874102592468, 0.00299835461191833, -0.0019271259661763906, 0.047713104635477066, 0.03497416898608208, 0.002091791247949004, -0.002967593027278781, -0.023509126156568527, 0.025781868025660515, -0.0371745303273201, -0.011573612689971924, 0.02471064031124115, -0.009858199395239353, -0.01685013808310032, -0.0035864447709172964, -0.008866588585078716, -0.03731929138302803, -0.03613225370645523, 0.006637274753302336, -0.0048277671448886395, 0.01731337234377861, -0.03176048398017883, -0.0046685305424034595, 0.01292712427675724, 0.04056192934513092, 0.03575587645173073, 0.001583319390192628, 0.014425396919250488, -0.0038940610829740763, 0.012652079574763775, -0.030718205496668816, 0.0003429017378948629, -0.001012419699691236, -0.014997201040387154, -0.010531336069107056, -0.02621615119278431, 0.02721499837934971, 0.003005592618137598, 0.008229642175137997, 0.0037239673547446728, -0.005718044936656952, 0.0022003615740686655, -0.014063495211303234, 0.0624786876142025, 0.02361045964062214, -0.014121399261057377, -0.006716893520206213, -8.778940355114173e-06, 0.019933538511395454, 0.0010404670611023903, 0.0036280632484704256, 0.006434610113501549, -0.007020890712738037, 0.025362063199281693, -0.025058064609766006, 0.02901003137230873, 0.010234576649963856, 0.018341172486543655, 0.0005252096452750266, 0.029270600527524948, -0.00682908296585083, -0.00413291621953249, 0.0021623619832098484, -0.010726762935519218, -0.010806380771100521, 0.007628885097801685, 0.014628062024712563, -0.0003820323618128896, -0.001346273929812014, 0.002068267436698079, 0.02329198643565178, -0.007780883926898241, -0.02630300633609295, 0.0494212806224823, -0.013013981282711029, -0.0026491195894777775, 0.026158247143030167, -0.008786970749497414, -0.007882216013967991, 0.02744661644101143, -0.011971704661846161, -0.0007120413356460631, -0.008005263283848763, 0.018659645691514015, 0.06438952684402466, 0.03271590173244476, 0.03639282286167145, 0.01712518185377121, -0.01949925720691681, 0.030399732291698456, 0.014693204313516617, 0.008171738125383854, 0.022365517914295197, 0.009901626966893673, 0.02165619097650051, -0.007223555352538824, -0.005041289143264294, 0.0150261539965868, 0.0002664500498212874, -0.019716398790478706, 0.00376739539206028, 0.007498600520193577, 0.04806052893400192, 0.03503207117319107, -0.027258427813649178, -0.031905245035886765, 0.04846585914492607, 0.0020447438582777977, 0.0592939555644989, -0.0517953559756279, -0.01900707185268402, -0.014483300969004631, 0.006807368714362383, -0.006014804355800152, 0.032136861234903336, 0.03503207117319107, 0.022206280380487442, 0.011566374450922012, -0.00876525603234768, -0.026375386863946915, -0.016039477661252022, 0.0150261539965868, 0.005218620877712965, -0.005026813130825758, 0.014041781425476074, 0.03291856870055199, 0.02780851721763611, 0.04389142245054245, 0.02950221672654152, 0.017921365797519684, -0.0016186048742383718, -0.011537422426044941, 0.01735679991543293, -0.020541533827781677, 0.003720348235219717, -0.009467345662415028, 0.0679795891046524, 0.023132748901844025, -0.03705872222781181, -0.03407665342092514, 0.002965783467516303, -0.017139658331871033, 0.0074334582313895226, 0.0320500023663044, 0.0006686131819151342, 0.0171830877661705, 0.013317978009581566, 0.0034000652376562357, 0.00014249874220695347, 0.03668234497308731, 0.026795193552970886, -0.0024265500251203775, 0.013006743043661118, -0.0348004549741745, 0.025289682671427727, 0.029256124049425125, -0.0029513074550777674, 0.007809835951775312, 0.0434860922396183, 0.008207927457988262, 0.00040487738442607224, -0.017414703965187073, 0.005276524927467108, 0.013846354559063911, 0.02187333069741726, -0.00922849029302597, -0.0132455974817276, -0.00011332043504808098, 0.0003885918122250587, 0.019282115623354912, -0.025419967249035835, -0.012941600754857063, -0.018746502697467804, -0.037840429693460464, -0.0211495291441679, -0.027938801795244217, 0.03155781701207161, -0.03210790827870369, 0.04797367379069328, -0.021771999076008797, -0.015489387325942516, -0.001052228850312531, 0.016111858189105988, 0.00984372291713953, 0.0005781377549283206, 0.004317485727369785, -0.009655534289777279, 0.03106563165783882, 0.018688596785068512, 0.017472608014941216, -0.011204472742974758, -0.009872674942016602, 0.041633158922195435, 0.003269780892878771, 0.03013916313648224, 0.005327191203832626, -0.021178480237722397, -0.012181607075035572, -0.011870372109115124, 0.050405651330947876, 0.029314028099179268, 0.03595853969454765, 0.00047951960004866123, 0.020628390833735466, 0.03115248866379261, 0.003467017086222768, 0.007505838759243488, 0.013441024348139763, 0.0020863625686615705, 0.011834181845188141, -0.0019289354095235467, -0.02369731478393078, -8.125821477733552e-05, 0.0023089321330189705, 0.02786642126739025, -0.010133244097232819, -0.009192300029098988, -0.010849809274077415, 0.010943903587758541, -0.022394469007849693, -0.014193779788911343, 0.02717157080769539, 0.012709983624517918, -0.015952622517943382, 0.04334133490920067, 0.014418158680200577, -0.007089652121067047, -0.006101660430431366, 0.039345938712358475, -0.03526369109749794, -0.016560615971684456, -0.009127157740294933, -0.007234412711113691, -0.020888959988951683, -0.005649283528327942, -0.02676624059677124, -0.018297743052244186, 0.03343970701098442, 0.006159564945846796, 0.0018447933252900839, -0.040446121245622635, -0.008975159376859665, -0.01212370302528143, -0.01835564896464348, 0.008989634923636913, -0.006767559330910444, 0.021916760131716728, -0.03060239739716053, 0.002779404167085886, 0.009539725258946419, 0.013441024348139763, 0.004100345075130463, -0.008396117016673088, 0.02045467682182789, 0.009648296050727367, 0.017935842275619507, 0.007679551374167204, 0.0031051156111061573, 0.02087448351085186, 0.005345286335796118, -0.025477871298789978, -0.006782035809010267, 0.009510773234069347, -0.00323178106918931, 0.0003338542010169476, 0.010668858885765076, 0.05526961013674736, -0.008280307985842228, -0.028807366266846657, -0.004976146854460239, 0.04406513646245003, -0.007183746434748173, 0.044644180685281754, 0.008403354324400425, -0.008873826824128628, 0.023784171789884567, 0.06097317859530449, -0.02424740605056286, 0.013216645456850529, 0.005048526916652918, -0.007998025044798851, -0.04698929935693741, 0.007281459867954254, -0.014077971689403057, -0.012094751000404358, -0.007020890712738037, 0.00028409273363649845, -0.04730777442455292, 0.01808060333132744, 0.018399076536297798, 0.009590392000973225, 0.0057687112130224705, -0.006050994619727135, 0.02754794806241989, 0.004476722329854965, -0.00954696349799633, 0.024131597951054573, 0.015952622517943382, 0.009445630945265293, 0.021583810448646545, 0.024146072566509247, 0.00785326398909092, 0.037840429693460464, 0.07006414234638214, -0.00904753990471363, -0.012782364152371883, 0.0012675602920353413, 0.023740744218230247, -0.009778580628335476, 0.023002464324235916, 0.01767527312040329, 0.002357788849622011, 0.03306332975625992, -0.014186541549861431, -0.006677084136754274, -0.006807368714362383, 0.020816579461097717, -0.004274057690054178, -0.0033892083447426558, 0.0059170909225940704, -0.00043428188655525446, 0.02434873767197132, 0.011095902882516384, 0.03766671568155289, 0.02918374352157116, -0.020845530554652214, -0.03210790827870369, -0.007082413882017136, -0.027880897745490074, 0.008207927457988262, -0.026245102286338806, -0.01077742874622345, 0.015836812555789948, 0.007556505035609007, -0.030312877148389816, 0.010697810910642147, 0.036740247160196304, -0.00644184835255146, -0.010126005858182907, -0.01763184554874897, 0.02165619097650051, -0.016835661605000496, 0.009438393637537956, -0.015778908506035805, -0.028763936832547188, -0.01089323777705431, -0.02982068993151188, -0.0171830877661705, 0.032542191445827484, -0.028995554894208908, -0.03899851441383362, -0.004806052893400192, -0.026476720348000526, -0.03274485468864441, 0.004965289495885372, -0.01073400117456913, -0.019238688051700592, -0.0030218781903386116, -0.0027142618782818317, 0.04490474984049797, -0.011537422426044941, 0.016372427344322205, 0.020845530554652214, -0.01171837281435728, -0.009083729237318039, -0.03465569391846657, -0.010314195416867733, -0.019701922312378883, -0.04580226540565491, 0.02165619097650051, 0.004100345075130463, 0.003011021064594388, -0.030949823558330536, -0.002484454307705164, 0.02009277604520321, 0.008924492634832859, 0.032136861234903336, 0.04612073674798012, 0.008099357597529888, 0.0005853758193552494, 0.03335284814238548, 0.013897020369768143, -0.05648559704422951, -0.0021677904296666384, 0.03535054624080658, -0.017385751008987427, 0.045425888150930405, -0.03511893004179001, -0.024927780032157898, -0.0034597790800035, -0.0030309257563203573, 0.03488731384277344, 0.02375521883368492, -0.008801446296274662, 0.005660140886902809, 0.0023396937176585197, 0.002317979699000716, -0.014186541549861431, -0.007744693662971258, -0.03604539856314659, -0.010234576649963856, 0.02471064031124115, -0.0231182724237442, 0.05156373605132103, 0.029067935422062874, -0.02104819566011429, 0.05541437119245529, -0.014389206655323505, -0.016835661605000496, -0.004621483385562897, -0.020802102982997894, -0.03358446806669235, -0.0033656847663223743, -0.016140811145305634, -0.008323736488819122, 0.01493929699063301, -0.0036515870597213507, -0.0008373497985303402, 0.030341828241944313, 0.005066622048616409, -0.013231121934950352, -0.004263200797140598, -0.006402038969099522, 0.025043589994311333, -0.0005048526800237596, -0.005272905807942152, 0.003228162182494998, 0.012268463149666786, 0.011457803659141064, 0.062362879514694214, -0.005989470984786749, 0.022206280380487442, -0.023639410734176636, 0.0036316823679953814, -0.0199624914675951, 0.037203483283519745, 0.02100476808845997, 0.024927780032157898, 0.021583810448646545, -0.011841420084238052, -0.006210231222212315, 0.03503207117319107, -0.0006441848236136138, -0.05211382731795311, 0.03092087060213089, -0.015315675176680088, -0.03401874750852585, 0.026882048696279526, -0.009756866842508316, 0.026274055242538452, 0.01968744583427906, 0.014657014049589634, -0.023320937529206276, -0.009800294414162636, 0.0034814930986613035, 0.044325705617666245, 0.011732849292457104, -0.005508142057806253, -0.032078955322504044, 0.020483629778027534, -0.01644480787217617, -0.0039411080069839954, -0.007462410721927881, -0.003447112627327442, 0.006126993801444769, -0.014526729471981525, -0.015996050089597702, 0.02165619097650051, -0.016372427344322205, 0.013187693431973457, -0.004708339460194111, -5.725396113120951e-05, 0.0415463000535965, 0.01509853359311819, -0.027243951335549355, 0.01213094126433134, -0.0025351205840706825, 0.023074844852089882, -0.020078299567103386, -0.017877938225865364, 0.014722156338393688, 0.004002631641924381, 0.014302350580692291, 0.024001313373446465, -0.008598781190812588, -0.0017923176055774093, 0.022264184430241585, 0.0013381311437115073, 0.007259745616465807, -0.02777956612408161, -0.019195260480046272, -0.006481657270342112, -0.005432142876088619, -0.006253659259527922, 0.015648623928427696, -0.003821680787950754, 0.03621910884976387, 0.009829247370362282, 0.010068101808428764, 0.020613914355635643, 0.009670009836554527, -0.046844542026519775, -0.01905049942433834, -0.033323898911476135, -0.01123342476785183, -0.020020395517349243, -0.021410098299384117, -0.0032842569053173065, -0.006944891531020403, -0.008627733215689659, 0.011291329748928547, 0.002189504448324442, 0.00029947355506010354, 0.0051317643374204636, 0.00592794781550765, -0.025188349187374115, 0.022683991119265556, 0.0013010362163186073, 0.00592794781550765, 0.025130445137619972, 0.04777100682258606, 0.02159828692674637, -0.03865109011530876, 0.012615889310836792, 0.005797663237899542, 0.0008848493453115225, -0.04768415167927742, -0.007715741638094187, 0.021714095026254654, 0.00016455212607979774, -0.018529361113905907, 0.0002958545519504696, -0.01585128903388977, -0.001468415604904294, -0.02772166021168232, 0.015619671903550625, 0.009952293708920479, -0.013296264223754406, 0.003005592618137598, -0.0016430331161245704, -0.01748708449304104, 0.019036022946238518, -0.027475567534565926, -0.0166185200214386, -0.022322090342640877, -0.004672149196267128, 0.007657837588340044, 0.03766671568155289, 0.020063823089003563, 0.02869155816733837, 0.006297087296843529, 0.009076491929590702, -0.013274549506604671, -0.03164467588067055, 9.584736835677177e-05, 0.00023749790852889419, -0.008671161718666553, -0.02462378330528736, 0.010314195416867733, 0.014671489596366882, -0.005106431432068348, -0.0007758265128359199, 0.0010820857714861631, 0.005786806344985962, -0.023899979889392853, 0.02712814323604107, -0.04591807350516319, 0.02987859398126602, 0.0025676917284727097, 0.020223060622811317, -0.0320500023663044, -0.02398683689534664, 0.04840795695781708, 0.011812467128038406, -0.00030671159038320184, 0.029531169682741165, -0.004295771941542625, -0.01863069273531437, 0.009793057106435299, 0.01043724175542593, 0.027055762708187103, 0.013781212270259857, -0.011609802953898907, -0.020700769498944283, 0.0008916350197978318, -0.016647472977638245, -0.024088168516755104, -0.021439049392938614, 0.015214342623949051, -0.023899979889392853, -0.018789930269122124, -0.01365816593170166, 0.02017963118851185, 0.002897022059187293, 0.02083105407655239, -0.004085869062691927, -0.0020085538271814585, -0.004664911422878504, 0.00035579450195655227, -0.009221252053976059, 0.054690565913915634, -0.00046413877862505615, -0.00817897543311119, -0.011016284115612507, 0.021496953442692757, 0.022394469007849693, -0.0033982559107244015, 0.036798153072595596, 0.002891593612730503, -0.012065798975527287, 0.031355153769254684, -0.010191148146986961, -0.0013453691499307752, 0.01381740253418684, -0.0008880160166881979, -0.004436913412064314, -0.005309096071869135, -0.006409277208149433, 0.0037094911094754934, 0.026187198236584663, 0.03564006835222244, -0.00187826924957335, 0.016459284350275993, 0.0193689726293087, 0.01459187176078558, 0.0059605189599096775, -0.000384294253308326, 0.02922717109322548, -0.00046775778173469007, 0.002699785865843296, -0.009004111401736736, 0.015764432027935982, -0.02484092488884926, 0.02269846759736538, 0.01890573836863041, 0.012500080280005932, -0.0260858666151762, 0.01703832671046257, -0.009127157740294933, 0.0058917575515806675, 0.0021967426873743534, 0.01750156097114086, -0.005298239178955555, -0.012999504804611206, 0.037377193570137024, -0.012442176230251789, -0.007520314771682024, 0.01954268477857113, 0.038708992302417755, -0.0027649281546473503, 0.023639410734176636, -0.012695507146418095, 0.0023451221641153097, -0.023074844852089882, 0.047799959778785706, 0.0035104453563690186, -0.013781212270259857, -0.0015208914410322905, 0.014852440916001797, 0.02507254108786583, 0.02809803932905197, -0.03590063750743866, 0.0003261638048570603, 0.03378713130950928, 0.00904030166566372, 0.021482476964592934, 0.011450566351413727, -0.022799799218773842, 0.044325705617666245, 0.01441092137247324, -0.018399076536297798, 0.0071982224471867085, -0.05292448773980141, 0.0025477870367467403, -0.006079946644604206, 4.054428791278042e-05, -0.03430826961994171, 0.002745023462921381, -0.03367132321000099, 0.006181279197335243, 0.013158741407096386, -0.01763184554874897, 0.01566310040652752, 0.015055106021463871, 0.018992595374584198, 0.022119425237178802, -0.011457803659141064, 0.033642370253801346, -0.013636451214551926, 0.017414703965187073, 0.012615889310836792, -0.012413224205374718]" -How Newtrax Is Using TimescaleDB and Hypertables to Save Lives in Mines While Optimizing Profitability,"This is an installment of our “Community Member Spotlight” series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition, Jean-François Lambert, lead data engineer atNewtrax, shares how using TimescaleDB has helped the IoT leader for underground mines to optimize their clients’ profitability and save lives by using time-series data in hypertables to prevent human and machine collisions.About the CompanyNewtrax believes the future of mining is underground, not only because metals and minerals close to the surface are increasingly rare but because underground mines have a significantly lower environmental footprint. To accelerate the transition to a future where 100 percent of mining is underground, we eliminate the current digital divide between surface and underground mines.To achieve this goal, Newtrax integrates the latest IoT and analytics technologies to monitor and provide real-time insights on underground operations, including people, machines, and the environment. Newtrax customers are the largest producers of metals in the world, and their underground mines rely on our systems to save lives, reduce maintenance costs, and increase productivity. Even an increase of 5 percent in overall equipment effectiveness can translate to millions in profits.We collect data directly from the working face by filling the gaps in existing communications infrastructures with a simple and easy-to-deploy network extension. With that, we enable underground hard rock mines to measure key performance indicators they could not measure in real time to enable short-interval control of operations during the shift.Our headquarters are based in Montreal, Canada, and we have regional offices around the globe, totaling 150 employees, including some of the most experienced engineers and product managers specializing in underground hard rock mining. Our solutions have been deployed to over 100 mine sites around the world.About the TeamThe Newtrax Optimine Mining Data Platform (MDP) is the first AI-powered data aggregation platform enabling the underground hard rock mining industry to connect all IoT devices into a single data repository. Our team consists of software developers, data scientists, application specialists, and mining process experts, ensuring our customers get the exact solutions they require.As the lead data engineer, it is my responsibility to define, enhance and stabilize our data pipeline, from mobile equipment telemetry and worker positioning to PowerBI-driven data warehousing via",https://www.timescale.com/blog/how-newtrax-is-using-timescaledb-and-hypertables-to-save-lives/,467,"[0.003818138502538204, -0.012348910793662071, 0.0384528674185276, -0.008603863418102264, 0.03970585763454437, -0.006372845731675625, -0.02269303798675537, 0.07590334117412567, -0.024572523310780525, -0.01075482927262783, 0.015704140067100525, -0.02040981315076351, -0.010838362388312817, -0.022637350484728813, 0.03511156141757965, 0.048810914158821106, 0.01981116272509098, -0.026103954762220383, -0.04616571590304375, 0.028790922835469246, -0.007956485264003277, 0.02607611194252968, 0.03811873495578766, -0.016943207010626793, -0.00801913533359766, 0.007991290651261806, -0.03650376945734024, 0.051539648324251175, 0.036030419170856476, -0.04722379520535469, 0.00528692128136754, -0.03413701429963112, -0.062482427805662155, 0.020674332976341248, 0.04299147427082062, -0.01722165010869503, 0.048588160425424576, -0.014465072192251682, 0.02231714129447937, 0.014158785343170166, 0.009835970588028431, -0.03867562115192413, 0.015216865576803684, 0.05031450465321541, -0.03678221255540848, -0.033997792750597, -0.04560882970690727, -0.027732841670513153, 0.029765469953417778, 0.051483962684869766, 0.005527077242732048, 0.04296363145112991, -0.02867954596877098, -0.02801128476858139, -0.013205121271312237, -0.06404170393943787, 0.015286476351320744, 0.042907942086458206, -0.012683041393756866, -0.04736301675438881, -0.011353480629622936, -0.050982765853405, 0.04402171075344086, 0.06170278787612915, 0.008395032025873661, 0.025909045711159706, -0.039872922003269196, -0.00694365194067359, -0.015230787917971611, -0.0013226004084572196, 0.047195952385663986, 0.019115056842565536, 0.023486599326133728, 0.010782673954963684, 0.024043483659625053, -0.0717267096042633, -0.03575197607278824, 0.04299147427082062, -0.040986690670251846, -0.06109021604061127, 0.013476601801812649, -0.029459184035658836, -0.022275375202298164, 0.0006317156949080527, -0.000923209881875664, -0.02297148108482361, -0.04093100130558014, -0.04165495187044144, -0.0029967341106384993, -0.0008636058773845434, -0.02668868377804756, 0.03672652319073677, -0.007817264646291733, 0.04109806567430496, 0.0008344564121216536, -0.011450935155153275, 0.02018705941736698, 0.0022101348731666803, -0.004924946464598179, 0.0016732634976506233, -0.022358907386660576, -0.02082747593522072, 0.03700496628880501, -0.04538607597351074, 0.014701747335493565, 0.004030450712889433, 0.051316894590854645, 0.021259061992168427, 0.009021527133882046, -0.0029671494849026203, -0.07924465090036392, -0.03307893127202988, -0.015564918518066406, -0.0028957987669855356, 0.0013104185927659273, 0.003772891592234373, -0.043854646384716034, 0.005864688660949469, 0.058639924973249435, -0.002794863423332572, 0.002709590597078204, 0.01456252671778202, -0.02557491511106491, 0.005443544592708349, 0.009912542067468166, -0.027468321844935417, -0.0032716956920921803, -0.0591411218047142, -0.017054583877325058, -0.046973198652267456, 0.0188366137444973, -0.01319119893014431, 0.03644808381795883, -0.016678687185049057, -0.024878809228539467, -0.03494449332356453, -0.030851393938064575, -0.0040896194986999035, 0.0055792853236198425, -0.033802881836891174, -0.01362974476069212, -0.028846610337495804, -0.007246457971632481, 0.007497055921703577, -0.013560134917497635, -0.003113331738859415, -0.01676221936941147, 0.04129297658801079, 0.0134835634380579, -0.011931248009204865, -0.011311713606119156, -0.033802881836891174, -0.03199300915002823, 0.010580803267657757, 0.048588160425424576, 0.008924072608351707, 0.035946886986494064, 0.07501232624053955, 0.005499233026057482, -0.043409138917922974, 0.018794847652316093, 0.04173848405480385, -0.01503587793558836, 0.012773535214364529, -0.01743048056960106, 0.013734160922467709, -0.02638239786028862, -0.06582373380661011, -0.06688181310892105, 0.025226863101124763, -0.03160318732261658, -0.06916504353284836, -0.003433540230616927, 0.017179884016513824, 0.023319533094763756, -0.024001717567443848, -0.029876846820116043, 0.007531861308962107, -0.02372327446937561, -0.017249492928385735, -0.06922072917222977, -0.012822262942790985, -0.01612180285155773, -0.016984973102808, -0.007956485264003277, -0.015202943235635757, -0.07445544004440308, 0.011548389680683613, -0.009578411467373371, 0.03806304559111595, -0.046304937452077866, 0.049534864723682404, -0.01315639354288578, 0.034248389303684235, 0.012446366250514984, 0.009299969300627708, 0.02979331463575363, 0.016943207010626793, -0.0010928856208920479, 0.018753081560134888, 0.0225398950278759, 0.02393210679292679, 0.05351658910512924, 0.014827046543359756, -0.002023926703259349, 0.013239925727248192, 0.0243915356695652, -0.0030089158099144697, -0.04037411883473396, -0.024294080212712288, 0.030127445235848427, 0.04196123778820038, 0.027092425152659416, -0.013107665814459324, -0.022038700059056282, 0.006703495513647795, -0.038842685520648956, -0.012223612517118454, 0.032911866903305054, -0.013720238581299782, -0.0037311252672225237, 0.0532103031873703, 0.002709590597078204, 0.011214259080588818, -0.011889481917023659, 0.03257773444056511, 0.029375651851296425, -0.049757618457078934, 0.06565666943788528, 0.0076780435629189014, 0.015843359753489494, -0.05181809142231941, -0.012174884788691998, -0.048281874507665634, -0.017026739194989204, 0.0036023459397256374, -0.015606684610247612, -0.01655338890850544, 0.004423750098794699, 0.016358477994799614, -0.03427623212337494, 0.026730449870228767, 0.0006930599920451641, 0.012237533926963806, -0.004127905238419771, -0.004354139789938927, -0.05373934283852577, -0.045692361891269684, 0.03193731978535652, 0.034916650503873825, 0.04293578490614891, 0.000858820101711899, -0.03221576288342476, -0.029459184035658836, -0.009188592433929443, -0.021565347909927368, -0.058639924973249435, 0.002232758328318596, -0.0015044579049572349, -0.019894694909453392, 0.021857712417840958, -0.05128905177116394, -0.030461575835943222, -0.01481312420219183, -0.014054369181394577, 0.011353480629622936, 0.03745047375559807, -0.055159397423267365, 0.033357374370098114, -0.022665195167064667, 0.03310677781701088, 0.008882305584847927, 0.021523581817746162, -0.07991290837526321, -0.04619355872273445, -0.014089174568653107, 0.011694571934640408, 0.0020500305108726025, 0.013010211288928986, -0.02741263434290886, 0.016511620953679085, -0.0031846824567764997, 0.019323887303471565, -0.01012137345969677, -0.007462250534445047, -0.011499662883579731, 0.01319119893014431, 0.05298754945397377, 0.006762664765119553, -0.03140828013420105, -0.02528255060315132, 0.029236430302262306, 0.024920575320720673, -0.00986381433904171, -0.009989113546907902, -0.0221639983355999, -0.001276483410038054, 0.03238282725214958, -0.027454400435090065, -0.04959055408835411, -0.0033656698651611805, 0.01532824244350195, 0.007009782362729311, -0.013518367893993855, -0.006066559348255396, -0.0009588852990418673, -0.011374363675713539, -0.04758577048778534, 0.019699785858392715, -0.02201085537672043, -0.008562097325921059, -0.016678687185049057, 0.023291688412427902, -0.015175099484622478, -0.00017598416889086366, -0.022734804078936577, 0.06810695677995682, -0.03383072465658188, -0.01120033673942089, -0.06922072917222977, -0.003981723450124264, -0.04936780035495758, 0.010810517705976963, -0.012307144701480865, 0.01089405082166195, -0.023249922320246696, 0.05362796410918236, -0.0021109399385750294, 0.007963446900248528, -0.022887948900461197, 0.0021091995295137167, 0.0031516174785792828, 0.003257773583754897, -0.01795952208340168, -0.025909045711159706, -0.003431800054386258, 0.019713707268238068, -0.020938852801918983, -0.007009782362729311, 0.014423305168747902, -0.005958662834018469, -0.018599938601255417, -0.04883876070380211, 0.008673474192619324, 0.05014743655920029, 0.007998252287507057, -0.014701747335493565, -0.01765323430299759, 0.0012756133219227195, 0.03302324190735817, -0.04427230730652809, -0.00045072828652337193, 0.005582765676081181, -0.03243851661682129, -0.020743943750858307, -0.034109167754650116, 0.001735042897053063, 0.022498128935694695, -0.00340047525241971, -0.007859030738472939, -0.07969015836715698, 0.03856424242258072, -0.01303805597126484, -0.024196626618504524, -0.0013260808773338795, 0.011471818201243877, -0.03653161600232124, 0.03341306373476982, -0.03243851661682129, -0.009877736680209637, 0.0060630785301327705, 0.028790922835469246, -0.0017446143319830298, -0.024920575320720673, -0.07133688777685165, -0.015495307743549347, 0.04081962630152702, 0.0051651024259626865, 0.023082857951521873, 0.06810695677995682, 0.043047163635492325, 0.011875559575855732, 0.03316246345639229, -0.03689359128475189, 0.024795277044177055, 0.02180202305316925, 0.017987364903092384, 0.007204691879451275, -0.051483962684869766, -0.047390859574079514, 0.01981116272509098, -0.03878699615597725, -0.005182505119591951, 0.002161407610401511, -0.0066060409881174564, 0.016817908734083176, 0.02061864361166954, -0.000342614424880594, 0.06972192227840424, 0.0004559490771498531, 0.024878809228539467, -0.029013676568865776, -0.067995585501194, -0.02777460776269436, 0.03355228528380394, 0.007462250534445047, -0.03736694157123566, 0.028623856604099274, -0.0414043553173542, -0.024809198454022408, -0.03739478439092636, -0.010030879639089108, 0.04552529752254486, -0.04095884785056114, 0.04207261651754379, -0.0064737810753285885, -0.02231714129447937, 0.05488095432519913, -0.01503587793558836, 0.04101453348994255, -0.021621035411953926, -0.009529683738946915, 0.0063693649135529995, -0.018864458426833153, -0.021453971043229103, 0.03087923862040043, 0.03736694157123566, -0.04825403168797493, 0.014298006892204285, -0.053098924458026886, -0.0008836188935674727, 0.012258416973054409, 0.016943207010626793, 0.004047853406518698, -0.026869671419262886, 0.036475926637649536, 0.03163103386759758, -0.009334774687886238, 0.02615964412689209, 0.0035396963357925415, 0.017625391483306885, 0.005725467577576637, -0.005544479936361313, -0.020298436284065247, 0.02164888009428978, -0.043269917368888855, -0.03332953155040741, 0.035362157970666885, 0.01548138540238142, -0.034777428954839706, 0.06081177294254303, -0.00432629557326436, 0.01525863166898489, 0.050815701484680176, -0.041933394968509674, -0.054129160940647125, 0.03288402408361435, 0.00247465493157506, 0.01241852156817913, -0.009891659021377563, -0.04190554842352867, -9.625833627069369e-05, -0.06120159476995468, -0.02180202305316925, -0.009369580075144768, -0.02674437314271927, 0.02386249601840973, -0.030043913051486015, 0.0635961964726448, -0.01839110627770424, 0.015439619310200214, 0.015926893800497055, -0.03892621770501137, -0.0009519242448732257, -0.028874455019831657, 0.01168064959347248, -0.011548389680683613, 0.034331921488046646, -0.026284942403435707, -0.014771358110010624, -0.008311498910188675, -0.020562956109642982, -0.041209444403648376, 0.03146396577358246, 0.021607114002108574, 0.006223183125257492, -0.010253633372485638, 0.07105844467878342, -0.027593620121479034, 0.004100061021745205, -0.005948221310973167, -0.0018586015794426203, 0.07206083834171295, -0.01624710112810135, -0.012140079401433468, -0.0036893589422106743, -0.026257097721099854, -0.0539342537522316, -0.012272339314222336, -0.009320852346718311, 0.06014351174235344, 0.010901011526584625, -0.0030907082837074995, 0.09149610251188278, -0.007169886492192745, 0.026048267260193825, -0.007601471617817879, -0.004573413170874119, 0.003626709571108222, 0.01216096244752407, 0.027899907901883125, 0.007719809655100107, 0.006177936214953661, 0.011395246721804142, -0.027022814378142357, 0.03519509360194206, 0.005774194840341806, -0.0002969324996229261, 0.0009780281689018011, -0.01312158815562725, -0.005464428104460239, -0.03369150683283806, 0.007636277005076408, 0.020813554525375366, 0.025964735075831413, 0.015356087125837803, -0.04073609411716461, -0.03449898585677147, -0.03160318732261658, 0.008638668805360794, 0.032772645354270935, -0.018599938601255417, 0.00674178171902895, 0.032911866903305054, -0.05443544685840607, -0.002760058268904686, -0.018808769062161446, -0.02557491511106491, -0.027454400435090065, 0.021927323192358017, -0.005363492760807276, 0.048504628241062164, 0.0005834234179928899, 0.06860815733671188, 0.005151180550456047, 0.003783333348110318, -0.031157681718468666, -0.03377503901720047, -0.023027168586850166, 0.03541784733533859, 0.006682612467557192, -0.02777460776269436, 0.02245636284351349, 0.00018544684280641377, 0.010518154129385948, 0.026925358921289444, 0.011722416616976261, -0.011395246721804142, 0.018975835293531418, 0.012362833134829998, 0.01892014592885971, -0.00030258833430707455, -0.00542962271720171, 0.016817908734083176, 0.0066095213405787945, 0.05830579623579979, 0.008492486551404, -0.01965801790356636, -0.02638239786028862, 0.0012025221949443221, 0.015787672251462936, -0.009822048246860504, -0.0034770467318594456, 0.0013983019161969423, 0.04516332224011421, -0.00681487238034606, -0.06509978324174881, -0.012091351673007011, 0.0103441271930933, 0.03037804365158081, -0.018502483144402504, -0.013720238581299782, -0.0059517016634345055, 0.0014217954594641924, -0.029681937769055367, -0.0029636691324412823, 0.012759613804519176, 0.022136153653264046, 0.02040981315076351, 0.004834452643990517, 0.01507764495909214, 0.00875700730830431, 0.000954534625634551, -0.005252115894109011, 0.004006086848676205, 0.0013173796469345689, 0.025073718279600143, -0.007928641512989998, -0.014548604376614094, 0.05813872814178467, 0.01965801790356636, -0.010713063180446625, 0.011792026460170746, -0.04168279469013214, 0.011471818201243877, 0.04026274010539055, 0.054574668407440186, 0.024990186095237732, 0.021161606535315514, -0.03441545367240906, -0.02622925490140915, -0.022720882669091225, -0.012432443909347057, -0.011952131055295467, 0.009773320518434048, -0.0064737810753285885, 0.015342164784669876, 0.006703495513647795, 0.025407850742340088, 0.0192125104367733, -0.011805948801338673, -0.039566636085510254, -0.009411346167325974, -0.03731125220656395, 0.01816835254430771, 0.03981723263859749, -0.01481312420219183, -0.0332459956407547, -0.03761753812432289, 0.02423839271068573, -0.012014780193567276, -0.0288187675178051, 0.0025112004950642586, -0.022790493443608284, -0.0002321076754014939, 0.03689359128475189, 0.019240355119109154, 0.021384360268712044, -0.00528692128136754, -0.03984507918357849, 0.006498144473880529, 0.016372401267290115, 0.01171545498073101, -7.140519301174209e-05, 0.0001718510320642963, -0.011924286372959614, 0.0024850964546203613, 0.01951879821717739, 0.0070271845906972885, -0.023556210100650787, -0.020632566884160042, -0.030684329569339752, 0.03405347838997841, 0.020562956109642982, 0.008513369597494602, 0.01782030053436756, 0.0007309107459150255, -0.010699140839278698, 0.020730020478367805, 0.016748297959566116, -0.04229537025094032, 0.026257097721099854, 0.006512066815048456, 0.0024816161021590233, -0.021704569458961487, 0.02001999318599701, 0.01832149550318718, 0.018516406416893005, 0.03745047375559807, 0.05769322067499161, -0.0025581875815987587, 0.020674332976341248, 0.03497233986854553, 0.03508371487259865, 0.039789389818906784, -0.009091137908399105, 0.006348481867462397, -0.006881002802401781, 0.02336129918694496, 0.03923250362277031, -0.015704140067100525, 0.006908847019076347, -0.027677154168486595, -0.010260595008730888, -0.016219258308410645, 0.03316246345639229, -0.013539251871407032, 0.03848071023821831, 0.044383686035871506, 0.02047942392528057, 0.008729162625968456, -0.03352443873882294, 0.018794847652316093, -0.03516724705696106, 0.0014409383293241262, -0.046666912734508514, 0.010490309447050095, 0.022818338125944138, -0.031241213902831078, -0.09656374901533127, 0.0014870553277432919, -0.011805948801338673, -0.060199201107025146, -0.019463108852505684, -0.03864777460694313, -0.0008936254307627678, -0.009153787046670914, 0.0019055887823924422, 0.03909328207373619, 0.00413834722712636, -0.03488880768418312, -0.019922539591789246, -0.0021144202910363674, 0.023166390135884285, 0.0074413674883544445, 0.01574590615928173, -0.028498558327555656, 0.05282048508524895, -0.008332382887601852, 0.01388730388134718, -0.028651701286435127, 0.018154431134462357, 0.00042658214806579053, -0.04936780035495758, 0.05421269312500954, 0.00774069270119071, -0.002906240290030837, 0.03700496628880501, 0.014520760625600815, -0.014659981243312359, -0.009961269795894623, 0.004517724737524986, 0.01811266504228115, -0.0399286113679409, 0.02099454030394554, -0.006115286611020565, -0.021161606535315514, -0.002761798445135355, -0.027969518676400185, 0.007643238175660372, -0.04574805125594139, -0.013455718755722046, 0.003950398415327072, -0.02505979686975479, 0.024948420003056526, -0.023848572745919228, 0.014659981243312359, 0.035501379519701004, -0.019783318042755127, -0.018961913883686066, -0.003466605208814144, 0.013198159635066986, 0.010782673954963684, 0.0011181194568052888, -0.004705673083662987, -0.021231217309832573, 0.008485525846481323, -0.005540999583899975, 0.011917325668036938, -0.004733517300337553, -0.01525863166898489, 0.025004109367728233, -0.031436122953891754, 0.022818338125944138, -0.006487702950835228, 0.02327776700258255, -0.020938852801918983, -0.0007235146476887167, -0.0077894204296171665, -0.04084746912121773, -0.01056688092648983, -0.024711744859814644, 0.008847500197589397, -0.003189903451129794, 0.026549462229013443, 0.001990861725062132, -2.0978335669497028e-05, 0.028651701286435127, 0.02535216137766838, -0.012738729827105999, 0.02298540249466896, 0.010365010239183903, -0.020340202376246452, -0.006901885848492384, -0.008610825054347515, -0.021328670904040337, 0.003402215428650379, -0.024558601900935173, -0.021551424637436867, -0.013970836997032166, -0.031213369220495224, 0.016302790492773056, -0.022957557812333107, -0.007838147692382336, 0.02290187031030655, -0.00919555313885212, 0.01722165010869503, -0.06732732057571411, 0.0195884071290493, 0.006362404208630323, -0.03221576288342476, 0.006745262071490288, 0.010768751613795757, 0.04196123778820038, 0.05847286060452461, -0.002018705941736698, -0.012815302237868309, 0.01758362352848053, -0.04365973547101021, -0.0207021776586771, -0.00674178171902895, -0.007594510912895203, 0.014799202792346478, 0.035362157970666885, 0.007824225351214409, 0.01944918744266033, 0.0354735367000103, -0.024475067853927612, -0.01075482927262783, -0.0023058494552969933, 0.05056510120630264, 0.015829438343644142, -0.00820012204349041, 0.004051333758980036, 0.019825084134936333, 0.02209438756108284, 0.02689751610159874, -0.012049585580825806, 0.015161177143454552, 0.005941260140389204, 0.028484636917710304, -0.008889267221093178, 0.031157681718468666, 0.0070654707960784435, -0.007302146404981613, -0.023890340700745583, 0.014103096909821033, -0.03171456605195999, -0.005297362804412842, 0.030489420518279076, -0.04204476997256279, 0.010817479342222214, 0.018488561734557152, -0.007114198058843613, 0.026187488809227943, -0.010713063180446625, 0.027593620121479034, 0.04240674525499344, 0.008673474192619324, -0.0061257281340658665, -0.003431800054386258, 0.004173152148723602, 0.003374371211975813, -0.031213369220495224, 0.005732428748160601, 0.008186200633645058, 0.0019821603782474995, -0.006832275073975325, 0.021662801504135132, 0.018084820359945297, -0.043269917368888855, -0.022748727351427078, 0.019490953534841537, -0.007121159229427576, 0.042824409902095795, 0.003111591562628746, -0.01030932180583477, 0.02777460776269436, 0.029821159318089485, 0.025616681203246117, -0.0120078194886446, 0.02970978245139122, -0.02114768512547016, 0.0007004561484791338, -0.02725948952138424, 0.008325421251356602, -0.02979331463575363, 0.022150076925754547, -0.011499662883579731, 0.004075697623193264, 0.001895147142931819, -0.017040662467479706, -0.013956914655864239, 0.0007304757018573582, 0.02164888009428978, 0.03282833471894264, 0.014395461417734623, 0.046082183718681335, 0.020562956109642982, -0.025825513526797295, -0.015342164784669876, 0.010114412754774094, 0.013302575796842575, 0.015202943235635757, -0.010058724321424961, 0.005614090710878372, -0.0009675865876488388, 0.025533149018883705, 0.004026970360428095, 0.008172278292477131, 0.014492915943264961, -0.027760686352849007, -0.029013676568865776, 0.0039538792334496975, 0.0004120074154343456, -0.016205335035920143, -0.025547070428729057, 0.008005212992429733, 0.04972977563738823, 0.014033486135303974, 0.0225398950278759, -0.017346948385238647, 0.016581231728196144, 0.002777460729703307, -0.019992148503661156, 0.011144648306071758, -0.01972762867808342, 0.06042195484042168, -0.017569702118635178, -0.042239680886268616, 0.022818338125944138, -0.0029775912407785654, 0.036030419170856476, 0.04042980447411537, -0.004221879877150059, 0.005408739671111107, -0.013079822063446045, -0.0031394357793033123, 0.060700397938489914, 0.01245332695543766, 0.02579766884446144, 0.0005708065000362694, -0.011262986809015274, -0.019978227093815804, -0.009237319231033325, -0.001227756030857563, -0.00161235430277884, -0.0015644970117136836, 0.00964106060564518, -0.012843145988881588, 0.021829867735505104, 0.017987364903092384, -0.004556010477244854, 0.006219702307134867, -0.01588512770831585, -0.014284084551036358, 0.03995645418763161, 0.007510978262871504, -0.031018460169434547, -0.01662299782037735, 0.07634884864091873, -0.02195516601204872, 0.05947525054216385, -0.03285617753863335, -0.03591904416680336, -0.018655626103281975, 0.02970978245139122, 0.014980189502239227, 0.02579766884446144, -0.016984973102808, 0.013762005604803562, 0.015356087125837803, -0.005989987403154373, -0.004750919993966818, -0.016943207010626793, 0.02446114644408226, 0.01944918744266033, 0.0158990491181612, -0.015871204435825348, 0.009724593721330166, -0.007900796830654144, 0.04343698173761368, -0.0033952544908970594, 0.006571235600858927, 0.02238675206899643, 0.0041975160129368305, 0.023542286828160286, 0.0005568843916989863, 0.001179028651677072, 0.017472246661782265, 0.037283409386873245, 0.006463339552283287, -0.028331492096185684, -0.028985831886529922, 0.00824188906699419, -0.014061330817639828, 0.006271910388022661, 0.01035108882933855, 0.024252314120531082, 0.04218399152159691, 0.03806304559111595, 0.013608861714601517, 0.010963661596179008, 0.005784636363387108, 0.03828579932451248, -0.01995038241147995, -0.007274302188307047, -0.0049179852940142155, 0.006811392027884722, 0.021467892453074455, -0.020897086709737778, 0.007149003446102142, 0.03363581746816635, 0.012690003030002117, -0.013762005604803562, -0.04722379520535469, 0.036921434104442596, 0.007545783184468746, 0.014771358110010624, -0.026507696136832237, -0.035946886986494064, -0.026911437511444092, 0.04029058665037155, 0.013615823350846767, 0.012209690175950527, -0.0043959058821201324, -0.008165317587554455, -0.02748224325478077, -0.03126905858516693, -0.009529683738946915, 0.016205335035920143, -0.0048553356900811195, 0.01847463846206665, -0.017555780708789825, -0.00491450447589159, -0.02046550065279007, -0.006177936214953661, -0.00893799401819706, 0.018363261595368385, 0.01809874176979065, 0.010559920221567154, 0.014284084551036358, 0.019978227093815804, 0.006922768894582987, -0.010177061893045902, -0.014715669676661491, -0.005447025410830975, 0.0011859897058457136, 0.00448988052085042, 0.006752223242074251, -0.008353265933692455, -0.010455504059791565, 0.01120033673942089, 0.05518724024295807, -0.005105933640152216, -0.0001282356824958697, -0.023027168586850166, -0.008889267221093178, 0.012578626163303852, 0.016149647533893585, -0.012307144701480865, 0.02984900213778019, -0.004319334402680397, 0.014492915943264961, 0.024140937253832817, 0.022205764427781105, 0.008854461833834648, -0.015495307743549347, 0.015773750841617584, 0.010580803267657757, -0.0033134620171040297, -0.014882734976708889, -0.03973370045423508, -0.01049727015197277, -0.00035827679676003754, 0.009467034600675106, 0.016233179718255997, -0.0033047606702893972, 0.007643238175660372, 0.0018516405252739787, -0.0066512878984212875, 0.007636277005076408, 0.020966697484254837, -0.06755007803440094, 0.011109842918813229, 0.010469426400959492, -0.021843789145350456, -0.04649984464049339, 0.02437761425971985, 0.007274302188307047, 0.0155231524258852, 0.014896657317876816, -0.0035536184441298246, 0.0015001073479652405, -0.007413523271679878, 0.006553832907229662, -0.02195516601204872, -0.006150091998279095, -0.0033639296889305115, 0.01936565339565277, 0.004705673083662987, 0.014520760625600815, -0.000733956228941679, -0.04218399152159691, 0.010782673954963684, 0.02010352537035942, -0.02794167399406433, 0.03307893127202988, -0.01382465474307537, -0.009237319231033325, 0.0443558394908905, -0.012167924083769321, -0.001524470979347825, -0.03608610853552818, -0.024642134085297585, -0.02926427498459816, 0.030043913051486015, 0.010476387105882168, 0.022637350484728813, 0.007733731996268034, 0.023027168586850166, -0.03781244903802872, -0.0019369134679436684, 0.04572020843625069, 0.02260950580239296, 0.02720380201935768, 0.02712026983499527, 0.03823011368513107, 0.025296473875641823, 0.031129837036132812, 0.04040196165442467, -0.014506838284432888, -0.0034230987075716257, 0.019115056842565536, -0.00587513018399477, -0.02550530433654785, 0.030934927985072136, -0.010365010239183903, -0.00028562077204696834, 0.013427875004708767, 0.03887052834033966, 0.007162925321608782, 0.01744440384209156, 0.0188366137444973, -0.012773535214364529, 0.004159230273216963, -0.01418663002550602, -0.007545783184468746, -0.0009040670120157301, 0.005474869627505541, 0.003835541196167469, -0.005676740314811468, 0.013984759338200092, 0.009279086254537106, 0.03675436973571777, 0.0288187675178051, 0.014096136204898357, 0.06331775337457657, 0.01669260859489441, -0.022637350484728813, 0.021175527945160866, -0.015342164784669876, 0.006950613111257553, 0.0008331512217409909, 0.023236000910401344, 0.020368047058582306, 0.02934780716896057, -0.015272554010152817, -0.010490309447050095, -0.018711315467953682, -0.004242762923240662, 0.0229157917201519, -0.02979331463575363, -0.020576877519488335, 0.01326080970466137, -0.005272998940199614, 0.016971051692962646, 0.014896657317876816, 0.01957448571920395, 0.0008979760459624231, -0.029292117804288864, -0.02312462404370308, -0.005948221310973167, -0.006282351911067963, -0.016595155000686646, -0.010866206139326096, 0.013977797701954842, 0.013650628738105297, -0.005628012586385012, 0.02105022966861725, 0.026479851454496384, 0.019769394770264626, 0.014228396117687225, -0.018655626103281975, -0.027064580470323563, 0.010218827985227108, -0.004315854050219059, 0.004803127609193325, -0.01811266504228115, 0.003052422543987632, -0.004044372588396072, -0.017416559159755707, 0.019630175083875656, -0.016080036759376526, -0.0071977307088673115, 0.0007831186521798372, -0.017973443493247032, -0.003783333348110318, -0.004973673727363348, -0.01478528045117855, -0.03332953155040741, -0.010692180134356022, 0.013497484847903252, 0.049395643174648285, 0.012564703822135925, -0.00920251477509737, 0.042907942086458206, -0.0029949937015771866, -0.014604292809963226, 0.010775712318718433, 0.011033271439373493, -0.04647200182080269, -0.03525078296661377, 0.026716528460383415, -0.029542716220021248, 0.013581017963588238, -0.025310395285487175, 0.01788991130888462, 0.030628640204668045, 0.033802881836891174, 0.010316283442080021, 0.023472676053643227, 0.00398868415504694, 0.01485489122569561, 0.040986690670251846, 0.016957130283117294, -0.03711634501814842, -0.02785814180970192, 0.02571413666009903, -0.04605433717370033, 0.0012817041715607047, -0.00939046312123537, -0.019546641036868095, -0.007886875420808792, -0.02806697227060795, -0.0003458774008322507, 0.02607611194252968, 0.006668690592050552, -0.0017063285922631621, 0.021467892453074455, -0.01744440384209156, -0.019908616319298744, -0.01684575341641903, -0.0377010740339756, -0.02224753051996231, 0.002006524009630084, -0.026716528460383415, 0.035055872052907944, 0.005241674371063709, -0.031742408871650696, 0.02718988060951233, -0.012822262942790985, -0.01389426551759243, -0.029292117804288864, -0.043631892651319504, 0.013072860427200794, 0.023695429787039757, -0.041794173419475555, 0.01729126088321209, 0.029960379004478455, 0.013017171993851662, 0.022358907386660576, 0.005694143008440733, -0.008603863418102264, 0.0007705017342232168, -0.017096349969506264, -0.016010425984859467, 0.025616681203246117, -0.014618215151131153, -0.0046116989105939865, 0.02636847458779812, -0.006978457327932119, -0.008589942008256912, 0.03260558098554611, -0.022623427212238312, -0.0007043717196211219, -0.008541214279830456, 0.022122232243418694, -0.015634529292583466, 0.05786028876900673, -0.014353695325553417, -0.02682790532708168, 0.031742408871650696, -0.03480527549982071, -0.03224360570311546, 0.005245154723525047, 0.017235571518540382, -0.05421269312500954, 0.016581231728196144, -0.025881201028823853, 0.020047837868332863, 0.04521901160478592, -0.0010606907308101654, 0.005283440463244915, -0.010406777262687683, 0.030183132737874985, -0.0158990491181612, -0.013539251871407032, 0.03530646860599518, 0.025630604475736618, 0.005346090067178011, -0.017319103702902794, -0.03850855305790901, 0.006947132758796215, -0.024182703346014023, 0.013365224935114384, -0.011966053396463394, 0.017555780708789825, 0.01089405082166195, 0.0003297799557913095, -0.005443544592708349, 0.008506408892571926, -0.010009996592998505, 0.007061989977955818, 0.006205780431628227, 0.0029775912407785654, -0.015230787917971611, 0.0038807881064713, -0.02223360911011696, 0.018432872369885445, 0.00322470860555768, 0.013650628738105297, -0.043548356741666794, -0.0066512878984212875, 0.005850766319781542, 0.018488561734557152, -0.01640024408698082, 0.01907329075038433, 0.004239282570779324, 0.02940349467098713, -0.007246457971632481, -0.008492486551404, 0.0262431763112545, -0.028025206178426743, -0.0035553586203604937, 0.004879699554294348, -0.04232321307063103, -0.009188592433929443, 0.006278871558606625, 0.001735042897053063, 0.03405347838997841, 0.02135651558637619, 0.015133333392441273, 0.003926035016775131, 0.020897086709737778, -0.017026739194989204, 0.042685188353061676, -0.008381109684705734, 0.00934869609773159, -0.01750009134411812, 0.0006278001237660646, 0.0044411527924239635, 0.018641704693436623, 0.011443974450230598, -0.007970407605171204, 0.021259061992168427, -0.00632063765078783, -0.026549462229013443, -0.0066095213405787945, -0.006853158585727215, 0.0019125498365610838, -0.0011746779782697558, -0.014325850643217564, 0.007385679055005312, 0.06008782610297203, -0.0077894204296171665, -0.04677828773856163, -0.021746335551142693, -0.027175957337021828, -0.0025755902752280235, -0.015342164784669876, 0.024405457079410553, 0.028122661635279655, 0.03878699615597725, -0.03511156141757965, 0.010399815626442432, -0.03087923862040043, 0.01581551693379879, -0.005586246494203806, -0.018586015328764915, 0.03797951340675354, -0.0018203158397227526, 0.0006787028396502137, 0.03488880768418312, -0.009954308159649372, 0.045775897800922394, -0.024642134085297585, -0.006400689948350191, -0.0008305408409796655, 0.0060178316198289394, 0.016790064051747322, 0.052792638540267944, 0.021105917170643806, 0.010914933867752552, 0.017931677401065826, 0.00820012204349041, -0.011402207426726818, -0.011172492988407612, 0.01156231202185154, 0.013177276588976383, -0.0022536413744091988, -0.0273430235683918, 0.055159397423267365, 0.03243851661682129, 0.00964802224189043, -0.025393927469849586, -0.004145307932049036, 0.00755274435505271, -0.02025667019188404, 0.014172707684338093, -0.019490953534841537, -0.026772215962409973, -0.0001793559204088524, 0.00613268930464983, -0.00681487238034606, -0.03185378760099411, 0.040457651019096375, -0.013741121627390385, -0.0018203158397227526, 0.024057405069470406, -0.0007374367560259998, -0.00891015026718378, 0.015926893800497055, 0.0007565796258859336, 0.011861637234687805, 0.004402867052704096, -0.008680434897542, -0.04059687256813049, -0.005979545880109072, -0.04059687256813049, -0.02873523347079754, 0.012606469914317131, 0.0019682382699102163, -0.007183808367699385, 0.005050245206803083, 0.012202728539705276, -0.0007352614193223417, 0.019087212160229683, 0.03892621770501137, 0.009237319231033325, -0.007323029451072216, 0.0010624310234561563, -0.008875344879925251, 0.0017385233659297228, 0.024210548028349876, -0.03973370045423508, 0.00798432994633913, -0.01655338890850544, -0.000964106060564518, -0.011687611229717731, -0.03642023727297783, 0.0325220488011837, 0.03820226714015007, -0.0036858785897493362, 0.010204906575381756, -0.009056332521140575, -0.0071977307088673115, 0.01485489122569561, 0.011249064467847347, -0.02357013151049614, -0.011812909506261349, 0.01588512770831585, 0.0023336936719715595, 0.0413765087723732, 0.009467034600675106, 0.009787242859601974, 0.024878809228539467, 0.046806130558252335, 0.015704140067100525, 0.006268429569900036, 0.0014670422533527017, 0.04073609411716461, 0.011256025172770023, 0.0019038484897464514, 0.008290615864098072, 0.015119411051273346, -0.004162710625678301, 0.05204084515571594, -0.006745262071490288, -0.0025599279906600714, -0.01078963465988636, 0.016664765775203705, 0.031296901404857635, 0.0036823980044573545, 0.038619931787252426, 0.025616681203246117, -0.014994111843407154, -0.025463538244366646, 0.02895798720419407, -0.009035449475049973, 0.0188505370169878, -0.013817694038152695, 0.0071350811049342155, -0.012348910793662071, 0.024558601900935173, 0.0035675405524671078, -0.0038912296295166016, 0.007246457971632481, 0.03781244903802872, -0.0003134649887215346, 0.019463108852505684, -0.022887948900461197, -0.004496841225773096, 0.018001288175582886, -0.0036197484005242586, -0.0510106086730957, 0.043409138917922974, 0.010399815626442432, -0.0006295404164120555, -0.005279960110783577, 0.013420913368463516, -0.03561275452375412, 0.018934069201350212, -0.0026573827490210533, -0.013643667101860046, -0.027134191244840622, -0.03508371487259865, -0.004733517300337553, 0.004152269102632999, -0.009822048246860504, -0.022595584392547607, 0.01101238839328289, -0.028540324419736862, 0.005944740958511829, 0.015926893800497055, 0.00027822464471682906, -0.03338521718978882, 0.026646917685866356, 0.03149181231856346, 0.028470713645219803, -0.0037868137005716562, 0.00964106060564518, 0.020381968468427658, -0.018725236877799034, 0.010831400752067566, 0.010518154129385948]" -How Newtrax Is Using TimescaleDB and Hypertables to Save Lives in Mines While Optimizing Profitability,"RabbitMQ, Kafka, Hasura, and of course, TimescaleDB.About the ProjectA diagram of the Newtrax solutions and how they bring together people, machines, and the environment in their mine intelligence operationsOur Mining Data Platform (MDP) platform incorporates proprietary and third-party software and hardware solutions that focus on acquiring, persisting, and analyzing production, safety, and telemetry data at more than one hundred underground mine sites across the world.From the onset, we have had to deal with varying degrees of data bursts at completely random intervals. Our original equipment manufacturer-agnostic hardware and software solutions can acquire mobile equipment telemetry, worker positioning, and environmental monitoring across various open platforms and proprietary backbones. WiFi, Bluetooth, radio-frequency identification (RFID), long-term evolution (LTE), leaky feeder, Controller Area Network (CAN) bus, Modbus—if we can decode it, we can integrate it.“We have saved lives using TimescaleDB”Regardless of skill sets, programming languages, and transportation mechanisms, all of this incoming data eventually makes it to PostgreSQL, which we have been using since version 8.4 (eventually 15, whenever TimescaleDB supports it!). For the past 10 years, we have accumulated considerable experience with this world-class open-source relational database management system.✨Editor’s Note:Stay tuned as we’ll announce support for PostgreSQL 15 very soon, in early 2023.While we are incredibly familiar with the database engine itself and its rich extension ecosystem, partitioning data-heavy tables was never really an option because native support left to be desired, and third-party solutions didn’t meet all of our needs.Choosing (and Using!) TimescaleDBI have been using PostgreSQL since I can remember. I played around with Oracle and MSSQL, but PostgreSQL has always been my go-to database. I joined Newtrax over 12 years ago, and we’ve used it ever since.In 2019, we found out about TimescaleDB (1.2.0 at the time) and started closely following and evaluating the extension, which promised to alleviate many of our growing pains, such as partitioning and data retention policies.Not only did TimescaleDB resolve some of our long-standing issues, but itsdocumentation,blog posts, and community outlets (Slack,GitHub,Stack Overflow) also helped us make sense of this “time-series database” world we were unknowingly part of.“One of our first tech debt reductions came via the use of thetime_bucket_gapfillandlocffunctions, which allowed us to dynamically interpolate mobile equipment telemetry data points that could be temporarily or permanently missing”A tipping point for choosing TimescaleDB was theNYC TLC tutorialwhich we used",https://www.timescale.com/blog/how-newtrax-is-using-timescaledb-and-hypertables-to-save-lives/,551,"[-0.016600793227553368, -0.009175303392112255, 0.062036119401454926, 0.006202863994985819, 0.04328170791268349, -0.0003140690678264946, -0.027368875220417976, 0.052972983568906784, -0.024228185415267944, 0.007545135449618101, 0.01814122684299946, -0.010753126814961433, -0.020100420340895653, -0.03305203095078468, 0.04238436743617058, 0.0098258750513196, -0.018171139061450958, -0.016032477840781212, -0.04184596613049507, 0.024093585088849068, 0.005271873436868191, 0.04758894070982933, 0.03086850233376026, -0.032274335622787476, -0.007545135449618101, 0.008120928891003132, -0.032124780118465424, 0.05252431333065033, 0.009938042610883713, -0.06215576454997063, -0.00473346933722496, -0.045046478509902954, -0.056891366839408875, 0.03089841455221176, 0.02889435365796089, 0.004838159307837486, 0.0542890802025795, -0.006449632812291384, 0.01579318754374981, 0.019696617498993874, 0.003722092369571328, -0.02177545614540577, 0.000602900458034128, 0.03607307747006416, -0.03882491961121559, 0.0015479117864742875, -0.05138768255710602, 0.0071525489911437035, 0.028939221054315567, 0.08458926528692245, -0.02099776081740856, 0.015538941137492657, -0.03939323499798775, 0.00467364676296711, 0.015778232365846634, -0.06795856356620789, 0.016271768137812614, 0.04145711660385132, -0.0073806229047477245, -0.03673112392425537, -0.0016806434141471982, -0.039213765412569046, 0.03903429955244064, 0.02877470850944519, 0.016660615801811218, 0.023914115503430367, -0.042115166783332825, 0.0049578044563531876, -0.028610195964574814, 0.014222841709852219, 0.04950326681137085, 0.022867219522595406, 0.012547806836664677, -0.008816367015242577, 0.030030984431505203, -0.06365133076906204, -0.029627181589603424, 0.06412991136312485, -0.004075420089066029, -0.04734965041279793, 0.024048717692494392, -0.016540970653295517, -0.06209594011306763, -0.0035220603458583355, 0.00704038143157959, -0.028041880577802658, -0.005701849237084389, -0.029956206679344177, -0.010925116948783398, -0.022777484729886055, -0.003116387641057372, 0.03897447511553764, 0.0022713923826813698, 0.01933768205344677, 0.0009197737090289593, -0.026292067021131516, 0.0010356801794841886, -0.017587868496775627, -0.00996047630906105, 0.0246768556535244, -0.014843502081930637, 0.0018432863289490342, -0.012712319381535053, -0.026950117200613022, 0.0396026149392128, -0.017378488555550575, 0.03272300586104393, -0.0012179523473605514, 0.014948192052543163, 0.02837090566754341, -0.10086103528738022, -0.016555925831198692, -0.020549090579152107, -0.020952893421053886, -0.018799277022480965, -0.013871383853256702, -0.0447772741317749, -0.0027181929908692837, 0.036162808537483215, 0.016974685713648796, -0.033171676099300385, -0.0023629958741366863, -0.012532851658761501, -0.008098495192825794, 0.02630702406167984, -0.02374960295855999, 0.014798635616898537, -0.03499626740813255, -0.028520463034510612, 0.01022220030426979, 0.02322615496814251, -0.014888369478285313, 0.05838693678379059, -0.005496208555996418, -0.02380942553281784, -0.028116660192608833, -0.06424956023693085, -0.023031732067465782, -0.015262261033058167, -0.029627181589603424, -0.005705588031560183, -0.03541502729058266, -0.004109070170670748, 0.008233096450567245, -0.039213765412569046, 0.003181818872690201, -0.03203504532575607, 0.04555496945977211, -0.017438311129808426, -0.027832502499222755, -0.009930565021932125, 0.0065879723988473415, -0.02177545614540577, 0.011209274642169476, 0.03538511320948601, -0.006831002421677113, 0.010252111591398716, 0.06371115148067474, 0.0041726320050656796, -0.05084927752614021, -0.008315352723002434, 0.039153944700956345, -0.018425384536385536, 0.02415340766310692, 0.008958445861935616, -0.016765305772423744, -0.041187915951013565, -0.05327209457755089, -0.09416089951992035, -0.0010403537889942527, 0.013437669724225998, -0.07693196833133698, -0.039213765412569046, 0.02985151670873165, 0.03074885718524456, -0.01672043837606907, -0.022538194432854652, -0.03368016704916954, 0.0010010951664298773, -0.04175623133778572, -0.04669160023331642, 0.0035052350722253323, -0.01872449927031994, 0.00942207220941782, -0.0447772741317749, -0.02294199727475643, -0.06305310130119324, 0.03149664029479027, 0.01692981831729412, 0.039213765412569046, -0.04259374737739563, 0.0795043408870697, -0.005608376115560532, 0.03682085871696472, 0.014701423235237598, -0.030494611710309982, 0.024347830563783646, 0.030360009521245956, -0.02612755447626114, 0.0021012716460973024, 0.03451768681406975, 0.02596304379403591, 0.06383080035448074, 0.016451237723231316, -0.0050026713870465755, 0.020130332559347153, 0.044179048389196396, 0.00846490915864706, -0.03547484800219536, -0.05084927752614021, 0.025678886100649834, 0.006673967465758324, 0.018859099596738815, -0.02566392906010151, -0.010596091859042645, -0.0017544870497658849, -0.058925338089466095, -0.0031425601337105036, 0.012495461851358414, -0.000284625100903213, 0.006382332183420658, 0.04833672568202019, -0.005013888236135244, -0.0249460581690073, 0.006094435695558786, 0.030509566888213158, 0.019935907796025276, -0.020115375518798828, 0.054079703986644745, -0.014469610527157784, 0.008569599129259586, -0.028969133272767067, -0.0035314075648784637, -0.056023940443992615, 0.019935907796025276, -0.013407758437097073, -0.0037426564376801252, -0.027159497141838074, -0.01158316619694233, -0.02819143794476986, -0.006397287826985121, 0.00579906115308404, -0.0035893607418984175, 0.02889435365796089, -0.017094330862164497, 0.0026209810748696327, -0.044238872826099396, -0.05040060728788376, 0.018216006457805634, 0.04328170791268349, 0.022777484729886055, -0.009840831160545349, 0.0021218357142060995, -0.017004596069455147, -0.013908772729337215, -0.03729943931102753, -0.033111851662397385, 0.02572375163435936, -0.010895205661654472, -0.023046687245368958, -0.0003283236874267459, -0.05183635279536247, -0.007268455345183611, -0.014439699240028858, -0.03595342859625816, 0.028879398480057716, 0.014275186695158482, -0.03753872960805893, 0.022313859313726425, -0.01538938470184803, 0.027533387765288353, 0.016047433018684387, 0.032274335622787476, -0.07830788940191269, -0.01823096163570881, -0.02241854928433895, 0.015718409791588783, -0.018679631873965263, -0.009511806070804596, -0.03203504532575607, 0.017408398911356926, -0.03010576404631138, 0.023540224879980087, -0.011224229820072651, 0.017602823674678802, 0.014761245809495449, 0.02171563357114792, 0.05040060728788376, 0.014993059448897839, -0.024063672870397568, -0.03164619579911232, 0.015583807602524757, 0.026501446962356567, -0.03679094836115837, 0.012278605252504349, 0.0072908890433609486, 0.01686999574303627, -0.021042628213763237, -0.041935697197914124, -0.04035039618611336, -0.0021106188651174307, 0.019412459805607796, 0.011515866033732891, -0.044956743717193604, 0.013504969887435436, 0.017468221485614777, -0.009982910007238388, -0.03559449315071106, 0.002944397507235408, 0.002963092178106308, -0.010573658160865307, -0.0272641871124506, -0.01878432184457779, -0.015479118563234806, 0.006703879218548536, -0.03598334267735481, 0.0688559040427208, -0.0247665885835886, -0.01287683192640543, -0.07609444856643677, -0.017169108614325523, -0.10821922868490219, -0.019412459805607796, 0.01788698136806488, 0.02932806871831417, -0.015718409791588783, 0.022657839581370354, -0.0045427847653627396, 0.023674825206398964, -0.01924794726073742, 0.006296337116509676, -0.042234811931848526, 0.03391946107149124, 0.013863906264305115, -0.020010685548186302, -0.01689990609884262, 0.03140690550208092, -0.013856427744030952, -0.004415661562234163, 0.03475697711110115, -0.004636257886886597, -0.006247730925679207, -0.0494733564555645, 0.026112599298357964, 0.03140690550208092, 0.014290142804384232, -0.016331590712070465, -0.03083859197795391, -0.015613718889653683, 0.015688497573137283, -0.04770858585834503, -0.0068384800106287, 0.02642666921019554, -0.028505505993962288, -0.01125414203852415, -0.046990714967250824, -0.0032659443095326424, 0.012054270133376122, -0.02377951517701149, 0.007679736707359552, -0.04088880121707916, 0.03939323499798775, -0.008076061494648457, -0.014641600660979748, -0.009803441353142262, 0.0059374007396399975, -0.0498921163380146, 0.014394831843674183, -0.038107044994831085, -0.013751738704741001, 0.02047431282699108, 0.003832390299066901, -0.011141974478960037, -0.020249977707862854, -0.060869574546813965, 0.0018189833499491215, 0.06610406190156937, 0.03293238580226898, 0.005440124776214361, 0.0595235675573349, 0.026845427230000496, -0.022283948957920074, 0.04055977612733841, -0.026232244446873665, 0.025648973882198334, 0.04956309124827385, -0.004486700985580683, 0.01770751364529133, -0.05467792972922325, -0.028445683419704437, 0.019023612141609192, -0.016062390059232712, -0.0060346126556396484, -0.01814122684299946, -0.03137699514627457, 0.013662004843354225, -0.013751738704741001, 0.02482641115784645, 0.06520672142505646, 0.017528045922517776, 0.021625898778438568, -0.03254353627562523, -0.06688175350427628, -0.014544389210641384, 0.02569384127855301, 0.02183527871966362, -0.010035254061222076, 0.02717445231974125, -0.017513088881969452, -0.021416518837213516, -0.03553467243909836, 0.0017993539804592729, 0.037179794162511826, -0.03347079083323479, 0.046033550053834915, -0.006573016755282879, -0.04872557148337364, 0.048187170177698135, 0.014933235943317413, 0.0443585179746151, -0.008891145698726177, 0.0016610140446573496, -0.03071894682943821, -0.018081404268741608, -0.03439804166555405, 0.033381056040525436, 0.04752911999821663, -0.0399017259478569, -0.007791903801262379, -0.04755903035402298, 0.0020863160025328398, -0.012996477074921131, 0.056083761155605316, -0.0007753579993732274, -0.028640108183026314, 0.05153723806142807, 0.015957700088620186, -0.018096361309289932, 0.030524522066116333, 0.01986113004386425, -0.012988999485969543, 0.03302212059497833, 0.02026493288576603, 0.009040702134370804, -0.012831964530050755, -0.024931101128458977, -0.031227437779307365, -0.02146138623356819, 0.010611047968268394, 0.005391519051045179, 0.06311292946338654, -0.018021581694483757, -0.0007403056370094419, 0.03676103800535202, -0.030120719224214554, -0.019068479537963867, 0.03394937142729759, -0.004924154374748468, 0.033351145684719086, -0.03987181559205055, -0.01800662651658058, 0.011530821211636066, -0.06257452070713043, -0.031317174434661865, -0.02340562269091606, -0.05745968222618103, 0.03658156841993332, -0.0039034297224134207, 0.07041129469871521, -0.019128302112221718, 0.026755694299936295, 0.0024919884745031595, -0.04385002329945564, -0.016017522662878036, -0.01640637032687664, -0.0038080874364823103, 0.011889757588505745, 0.0173336211591959, 0.023031732067465782, -0.024138450622558594, 0.013669482432305813, -0.024003850296139717, -0.01678026095032692, 0.05575473606586456, -0.0025256387889385223, 0.01785706914961338, 0.0174831785261631, 0.05270377919077873, -0.013751738704741001, 0.0198013074696064, -0.03628245368599892, 0.007653564214706421, 0.05623332038521767, -0.01936759240925312, -0.036043163388967514, -0.0031182572711259127, -0.04055977612733841, -0.03373999148607254, -0.010536269284784794, -0.01995086297392845, 0.04361073300242424, -0.00013647048035636544, 0.004942848812788725, 0.06080975383520126, -0.020952893421053886, 0.022014746442437172, -0.010394190438091755, 0.004389489069581032, -0.0003154711739625782, -0.032364070415496826, -0.00282662152312696, -0.009137914516031742, 0.025304993614554405, 0.015344517305493355, -0.01361713744699955, 0.01415554154664278, -0.013998506590723991, -0.017154153436422348, -0.0111195407807827, -0.003744525834918022, -0.014148063957691193, -0.05046043172478676, -0.022373681887984276, 0.005346652120351791, 0.005369085352867842, 0.009496849961578846, -0.05075954273343086, -0.04032048583030701, -0.02534986101090908, -0.009586584754288197, 0.028819575905799866, -0.02973187156021595, 0.020863158628344536, -0.017199020832777023, -0.0446576289832592, 0.008173273876309395, -0.021117405965924263, -0.040021371096372604, -0.042115166783332825, 0.01042410172522068, 0.005484991706907749, 0.0395427905023098, 0.016630705446004868, 0.03538511320948601, 0.015897877514362335, 0.010095077566802502, 0.004202543292194605, -0.016331590712070465, -0.007145071402192116, 0.04773849993944168, 0.013392802327871323, 0.00010626704170135781, 0.01582309789955616, -0.0015021100407466292, 0.02291208691895008, 0.008921056985855103, 0.006053307559341192, -0.009451983496546745, 0.030180541798472404, 0.008965924382209778, 0.009489372372627258, -0.004464267287403345, -0.001944237039424479, -0.003699658904224634, 0.01125414203852415, 0.03403910622000694, -0.010012821294367313, -0.006281381472945213, -0.04187587648630142, 0.004161415155977011, 0.03888474032282829, -0.017572911456227303, 0.011448564939200878, 0.036192722618579865, 0.03251362591981888, 0.00704038143157959, -0.037119973450899124, -0.024317918345332146, 0.011710289865732193, 0.018425384536385536, -0.01791689172387123, 0.008823845535516739, -0.008517254143953323, 0.03481679782271385, -0.029836561530828476, 0.0018161791376769543, -0.014477088116109371, 0.015329561196267605, 0.00840508658438921, 0.012278605252504349, -0.004288538359105587, -0.0018115055281668901, -0.007590002380311489, 0.001564736943691969, 0.024108540266752243, 0.006445893552154303, 0.013325502164661884, -0.0030808679293841124, -0.025977998971939087, 0.01872449927031994, 0.020429445430636406, -0.006827263161540031, -0.01779724657535553, -0.043191973119974136, 0.006573016755282879, 0.027862412855029106, 0.012607629410922527, -0.02343553490936756, 0.033081941306591034, -0.029627181589603424, 0.02316633239388466, -0.02116227336227894, 0.0071974159218370914, -0.033111851662397385, -0.01544920727610588, -0.01730371080338955, -0.008091017603874207, -0.02377951517701149, 0.017094330862164497, 0.004692341201007366, -0.03167610988020897, -0.026965072378516197, -0.01652601547539234, -0.035325292497873306, 0.014880891889333725, 0.03876509517431259, -0.028879398480057716, -0.029627181589603424, -0.0346074216067791, 0.02935797907412052, 0.01014742162078619, -0.01844034157693386, 0.0199209526181221, -0.01770751364529133, -0.002985525643453002, 0.043042417615652084, 0.04872557148337364, 0.04047004133462906, -0.006726312451064587, -0.011770112439990044, 0.015628674998879433, 0.04331161826848984, 0.0023686042986810207, 0.013699393719434738, 0.018126271665096283, -0.020534135401248932, -0.006072001997381449, 0.040230751037597656, -0.003780045546591282, -0.03397928178310394, 0.014604211784899235, -0.01918812468647957, 0.06257452070713043, 0.008494820445775986, 0.024661900475621223, -0.0071151601150631905, -0.008120928891003132, -0.011770112439990044, 0.037269528955221176, 0.01921803504228592, -0.04265357181429863, 0.018096361309289932, -0.0065505835227668285, 0.031227437779307365, -0.026546314358711243, 0.00859203189611435, 0.014484566636383533, 0.0348467119038105, 0.030524522066116333, 0.023794470354914665, -0.005346652120351791, 0.041217826306819916, 0.03347079083323479, 0.014970625750720501, 0.032244425266981125, -0.013108644634485245, -0.0009945520432665944, -0.019502192735671997, 0.038196779787540436, 0.04926397651433945, -0.036162808537483215, 0.004669907968491316, -0.050879187881946564, -0.013033865951001644, 0.004617562983185053, -0.009227648377418518, -0.034188661724328995, 0.01844034157693386, 0.046183109283447266, 0.019621839746832848, 0.015673542395234108, -0.03679094836115837, 0.01672043837606907, -0.02319624461233616, 0.010797993279993534, -0.02677064947783947, 0.0036865726578980684, 0.04540541395545006, -0.033201586455106735, -0.04486700892448425, 0.01082790456712246, -0.0057130660861730576, -0.06389062106609344, -0.01814122684299946, -0.02874479815363884, -0.006745006889104843, 0.00800128374248743, -0.011927146464586258, 0.05213546380400658, -0.026441624388098717, -0.0394829697906971, -0.005032583139836788, -0.011979491449892521, 0.03185557574033737, 0.015232349745929241, 0.020459355786442757, -0.03188548982143402, 0.029537448659539223, -0.03191540017724037, 0.012637540698051453, -0.049234066158533096, -0.00264154514297843, -0.010910160839557648, -0.03852580487728119, 0.040111105889081955, -0.015045403502881527, 0.01437239907681942, 0.021072538569569588, 0.008734110742807388, 0.001797484583221376, 0.013863906264305115, 0.0022190476302057505, 0.017812203615903854, -0.012959088198840618, 0.026965072378516197, -0.0023742124903947115, -0.02615746669471264, -3.8557587686227635e-05, -0.025948086753487587, 0.008487342856824398, -0.014506999403238297, -0.014753768220543861, -0.006042090710252523, -0.01319837849587202, 0.02689029462635517, -0.03873518481850624, 0.01776733621954918, 0.038256604224443436, -0.0021255745086818933, 0.0026097644586116076, -0.014245275408029556, 0.014985580928623676, 0.005735499318689108, -0.006363637745380402, -0.008554643020033836, -0.012607629410922527, -0.008330307900905609, -0.0010067034745588899, 0.0019629315938800573, 0.018156183883547783, -0.02122209593653679, 0.04624292999505997, -0.05360111966729164, 0.012944132089614868, -0.000191970044397749, 0.021551121026277542, -0.035295382142066956, -0.0009580975747667253, -0.021910056471824646, -0.047170184552669525, -0.012944132089614868, -0.00518961763009429, 0.012884309515357018, -0.0016497973119840026, 0.045973729342222214, 0.005339174065738916, -0.017154153436422348, 0.02642666921019554, 0.03574405238032341, -0.003952035680413246, 0.025364816188812256, 0.005634548608213663, -0.012271126732230186, -0.023525267839431763, -0.021700676530599594, -0.009541717357933521, -0.015748320147395134, -0.00018904900935012847, -0.030001074075698853, -0.016481148079037666, -0.028729841113090515, 0.004060464445501566, -0.010947550646960735, 0.023001819849014282, 0.01470890175551176, -0.006715095601975918, 0.020773425698280334, -0.0995449423789978, -0.04474736377596855, 0.036252543330192566, -0.011620555073022842, -0.00791154894977808, 0.015538941137492657, 0.018859099596738815, 0.059882503002882004, 0.016705483198165894, -0.013976073823869228, 0.00968379620462656, -0.05330200865864754, -0.03559449315071106, -0.026980027556419373, -0.022777484729886055, 0.035115912556648254, 0.015135138295590878, 0.020190155133605003, 0.012001925148069859, 0.02526012621819973, -0.0006678641075268388, 0.001623624935746193, -0.025080658495426178, 0.06747998297214508, 0.021521208807826042, -0.008008761331439018, 0.0007496529724448919, 0.018993699923157692, -0.002301303669810295, 0.009586584754288197, 0.005585942883044481, 0.021266963332891464, 0.0036716170143336058, 0.020534135401248932, -0.01588292233645916, 0.02267279475927353, -0.009982910007238388, 0.004527829121798277, -0.016555925831198692, -0.004707297310233116, -0.024033760651946068, -0.031077882274985313, 0.03640209883451462, -0.05647261068224907, 0.03152655065059662, -0.003594969166442752, -0.0172438882291317, 0.017348576337099075, -0.0246469434350729, 0.025918176397681236, 0.03197522088885307, -0.0021012716460973024, 0.01037923526018858, 0.00016264291480183601, -0.004400705918669701, -0.005978528875857592, -0.046990714967250824, -0.016451237723231316, 0.005316740833222866, 0.0032173385843634605, -0.017139198258519173, 0.0006888955249451101, 0.0086069880053401, -0.05315244942903519, -0.023958982899785042, 0.016585838049650192, 0.007504007313400507, 0.021551121026277542, 0.007732081227004528, 0.0035575800575315952, 0.025648973882198334, 0.015613718889653683, 0.020564045757055283, -0.020608913153409958, 0.01470890175551176, -0.002497596899047494, 0.019098389893770218, -0.006872130092233419, -0.010177332907915115, -0.027099674567580223, 0.010386712849140167, -0.00048045089351944625, -0.016735395416617393, -0.0021536163985729218, -0.015329561196267605, -0.00948189478367567, -0.0030883457511663437, -0.010154900141060352, 0.04576434940099716, 0.010124988853931427, 0.03577396273612976, 0.020025642588734627, -0.009541717357933521, -0.012435639277100563, 0.010708259418606758, 0.03137699514627457, 0.005073710810393095, 0.0023910377640277147, -0.018559986725449562, -0.005455080419778824, 0.027608167380094528, -0.004606346134096384, 0.008801411837339401, -0.003125735092908144, -0.01588292233645916, -0.002538725035265088, 0.006688923574984074, 0.005346652120351791, -0.0046325186267495155, -0.005948617588728666, -0.016241857782006264, 0.013714348897337914, 0.010528791695833206, 0.02511056885123253, -0.008644376881420612, 0.01823096163570881, 0.014753768220543861, -0.006139302626252174, -0.010027776472270489, -0.023734647780656815, 0.036342278122901917, -0.010663392953574657, -0.03284265100955963, 0.04546523466706276, -0.012667451985180378, 0.029103733599185944, 0.04767867550253868, 0.0033238977193832397, 0.034128837287425995, -0.007634869311004877, 0.025559239089488983, 0.0498921163380146, 0.0007197416271083057, 0.04082898050546646, -0.009982910007238388, -0.022598017007112503, 0.006329987198114395, 0.0006187908584252, 0.010940072126686573, 0.007006731349974871, 0.0009880089201033115, 0.016361502930521965, -0.017318665981292725, 0.02575366385281086, 0.01570345275104046, -0.014963148161768913, -0.014379876665771008, -0.002030232222750783, -0.02195492386817932, 0.015808142721652985, 0.006827263161540031, -0.04385002329945564, -0.01782715879380703, 0.06634335219860077, -0.021566076204180717, 0.06771927326917648, -0.03293238580226898, -0.022627929225564003, -0.015202438458800316, -0.008292919024825096, -0.0017086853040382266, 0.02436278574168682, 0.006449632812291384, -0.017617778852581978, 0.016690528020262718, -0.0070628151297569275, -0.009212692268192768, -0.006565539166331291, -0.00859203189611435, 0.020025642588734627, 0.008973401971161366, -0.0007856400334276259, 0.00741053419187665, 0.0028752274811267853, 0.03846598416566849, 0.02822134830057621, 0.01335541345179081, 0.015067837201058865, 0.01776733621954918, 0.020040597766637802, 0.012263649143278599, -0.007036642637103796, 0.024482430890202522, 0.026022866368293762, 0.011613077484071255, -0.04657195508480072, -0.03167610988020897, 0.0148210683837533, -0.01814122684299946, 0.022807396948337555, 0.013362891040742397, 0.02560410648584366, 0.020220065489411354, 0.042234811931848526, -0.006277642212808132, 0.005585942883044481, 0.018485207110643387, 0.02093793824315071, -0.0024471215438097715, -0.021506253629922867, 0.008786455728113651, 0.031317174434661865, 0.030330099165439606, -0.02584339678287506, 0.018664676696062088, 0.037329353392124176, 0.02119218371808529, 0.0065879723988473415, -0.013534881174564362, 0.056921280920505524, 0.022164301946759224, 0.023734647780656815, -0.01689990609884262, -0.01841042935848236, -0.020010685548186302, 0.043969668447971344, 0.0297019612044096, 0.0062252976931631565, -0.020683690905570984, -0.011665422469377518, -0.03457750752568245, -0.030016029253602028, -0.01684008352458477, 0.012054270133376122, -0.009653884917497635, 0.036102987825870514, 0.01543425116688013, 0.012764664366841316, -0.013706871308386326, -0.010095077566802502, 0.004367055371403694, -0.009788486175239086, 0.020593957975506783, 0.013071255758404732, 0.023121464997529984, 0.009108003228902817, 0.0015619327314198017, 0.0026303285267204046, -0.01158316619694233, 0.004176370799541473, 0.010177332907915115, 0.003899690927937627, 0.008173273876309395, -0.0011712159030139446, -0.027219319716095924, 0.006292598322033882, 0.05850658193230629, 0.0004220303089823574, 0.018111316487193108, -0.026456579566001892, 0.016555925831198692, 0.007829293608665466, 0.01742335595190525, 0.003006089711561799, 0.02822134830057621, 0.00846490915864706, 0.012278605252504349, 0.025454550981521606, 0.021760499104857445, -0.003150037955492735, -0.003366895252838731, 0.01646619290113449, 0.004067942034453154, -0.005660721100866795, -0.006711356807500124, -0.010356801562011242, -0.019053522497415543, -0.01686999574303627, 0.012555284425616264, -1.819801218516659e-05, -0.018455296754837036, 0.0346672423183918, 0.00894349068403244, -0.007500268518924713, -0.0019479759503155947, 0.03433821722865105, -0.06592459231615067, -0.005993484519422054, 0.002463946584612131, -0.014424743130803108, -0.036312367767095566, -0.008330307900905609, -0.02078838087618351, -0.009429549798369408, 0.027997013181447983, -0.02174554392695427, 0.009818397462368011, -0.03463733196258545, 0.0020694907288998365, -0.03356052190065384, -0.012704841792583466, 0.008898623287677765, 0.010536269284784794, 0.009751096367835999, -0.005638287402689457, 0.0003400077985133976, -0.03245380520820618, 0.014723856933414936, 0.017543001100420952, -0.02368978038430214, 0.028146570548415184, -0.030554434284567833, -0.005167183931916952, 0.024542253464460373, 0.021207140758633614, 0.0014647209318354726, -0.014402310363948345, -0.028026925399899483, -0.010214722715318203, 0.01681017316877842, -0.018305739387869835, 0.02113236114382744, 0.017228931188583374, 0.04531567916274071, -0.020743513479828835, 0.00820318516343832, 0.03882491961121559, 0.024527298286557198, 0.021207140758633614, 0.04334153234958649, 0.02677064947783947, 0.01455934438854456, 0.02279244177043438, 0.045106299221515656, 0.00934729352593422, 0.003116387641057372, 0.01381903886795044, -0.0030453482177108526, -0.038047224283218384, 0.021566076204180717, -0.010648436844348907, -0.009182780981063843, 0.007526441011577845, 0.028236305341124535, 0.0038361293263733387, 0.008502298034727573, 0.007361928466707468, -0.003376242471858859, 0.012039314024150372, -0.018455296754837036, 0.02090802602469921, 0.00434088334441185, 0.004546523559838533, -0.0012815139489248395, 0.009048180654644966, -0.00733949476853013, 0.039094120264053345, 0.039094120264053345, 0.007260977756232023, 0.02340562269091606, 0.07543639838695526, 0.02192501164972782, -0.020982805639505386, 0.022194214165210724, -0.021042628213763237, -0.0072983670979738235, -0.0014189191861078143, -0.002748104277998209, -0.008113451302051544, 0.04187587648630142, -0.019502192735671997, -0.02424314059317112, -0.014424743130803108, 0.008509776555001736, -3.195606041117571e-05, -0.03254353627562523, -0.03284265100955963, 0.021072538569569588, 0.016077345237135887, 0.002183527685701847, 0.03589360788464546, 0.013684437610208988, -0.007376884110271931, -0.023181287571787834, -0.02985151670873165, -0.0003757612139452249, -0.01064095925539732, -0.02639675699174404, -0.006703879218548536, 0.02113236114382744, 0.028879398480057716, -0.01361713744699955, 0.016944773495197296, 0.05031087249517441, 0.010192289017140865, 0.007100204471498728, -0.022194214165210724, -0.0009964215569198132, 0.018918922170996666, -0.012413205578923225, 0.008995835669338703, -0.018111316487193108, 0.0005636418354697526, 0.0038922131061553955, -0.03089841455221176, 0.026097644120454788, -0.013048822060227394, -0.01788698136806488, -0.004325927700847387, -0.0024676856119185686, -0.005298045929521322, -0.01643628068268299, 0.001515196287073195, -0.01678026095032692, -0.011052239686250687, 0.006378593388944864, 0.06777909398078918, 0.006524411030113697, 0.007881637662649155, 0.02905886620283127, -0.005129794590175152, 0.00534291286021471, -0.012106615118682384, -0.006569277960807085, -0.04172631725668907, -0.02639675699174404, 0.03694050386548042, -0.02787736803293228, 0.028460640460252762, -0.003899690927937627, -0.019621839746832848, 0.01890396699309349, 0.019666705280542374, -0.013235768303275108, 0.03628245368599892, 0.010775560513138771, 0.009908131323754787, 0.02714454010128975, 0.033261410892009735, -0.02297190949320793, -0.00859203189611435, 0.020055552944540977, -0.03556458279490471, 0.026785604655742645, -0.03182566538453102, -0.00262472010217607, 0.011979491449892521, -0.0173336211591959, 0.003626749850809574, 0.027069762349128723, 0.017572911456227303, 0.004408183507621288, 0.011590643785893917, 0.004740947391837835, -0.004486700985580683, -0.01971157267689705, -0.04379020258784294, -0.003914646804332733, 0.00969875231385231, -0.03200513496994972, 0.024901190772652626, 0.007694692350924015, -0.039153944700956345, 0.017228931188583374, 0.0020264931954443455, 0.001113262725993991, -0.029896384105086327, -0.03403910622000694, 0.005230745766311884, 0.01164298877120018, -0.03792757913470268, 0.01538938470184803, 0.026082688942551613, 0.016481148079037666, 0.03149664029479027, 0.026232244446873665, -0.00786668248474598, -0.004468006547540426, -0.028819575905799866, -0.011007373221218586, 0.026486491784453392, -0.0009384682634845376, -0.014492044225335121, 0.01023715641349554, -0.015688497573137283, -0.025394726544618607, 0.023570135235786438, -0.006442154757678509, -0.0008351806900463998, -0.019621839746832848, 0.023465445265173912, 0.014394831843674183, 0.03888474032282829, -0.0073432340286672115, -0.002477032830938697, 0.025708796456456184, -0.020549090579152107, -0.023046687245368958, 0.010588614270091057, 0.007619913667440414, -0.0450165681540966, 0.029926296323537827, 0.009511806070804596, 0.009908131323754787, 0.01483602449297905, 0.012390772812068462, 0.018530074506998062, -0.005720543675124645, 0.024228185415267944, -0.001330119906924665, 0.006984297651797533, 0.014252752996981144, 0.04462771862745285, 0.009840831160545349, -0.0017414008034393191, -0.025394726544618607, 0.018948834389448166, -0.03031514212489128, 0.007223588414490223, -0.014005985110998154, 0.006958125624805689, 0.021177228540182114, 0.001768507994711399, -0.03499626740813255, 0.006079479586333036, -0.02473667822778225, 0.013377847149968147, -0.011269097216427326, -0.012787098065018654, 0.00271445419639349, 0.014813590794801712, -0.020504223182797432, 0.006285120267421007, 0.0008033998892642558, -0.0029257028363645077, -0.003462237538769841, -0.0349065326154232, 0.004135242663323879, 0.003333244938403368, 0.0007206763257272542, -0.0033425921574234962, -0.01776733621954918, 0.021984834223985672, 0.007646086160093546, -0.008225618861615658, -0.0023499096278101206, -0.02662109211087227, -0.0018479599384590983, 0.003125735092908144, -0.012592674233019352, -0.013662004843354225, 0.022044656798243523, -0.005843928083777428, 0.0446576289832592, 0.03676103800535202, 0.02430296316742897, 0.014320054091513157, 0.0271146297454834, -0.04178614169359207, 0.006419721525162458, -0.015509029850363731, 0.013564792461693287, -0.022433504462242126, 0.010730693116784096, -0.0030659122858196497, 0.029806649312376976, -0.005825233645737171, -0.009354771114885807, -0.008696721866726875, -0.03254353627562523, -0.019591927528381348, -0.014985580928623676, -0.015127659775316715, 0.025215258821845055, 0.018515119329094887, -0.012734753079712391, 0.006831002421677113, 0.06526654213666916, -0.023973938077688217, -0.05674181133508682, -0.029896384105086327, -0.02534986101090908, 0.021790411323308945, -0.005971051286906004, 0.010296978987753391, 0.016825128346681595, 0.01983121782541275, -0.01570345275104046, 0.01881423220038414, -0.015060359612107277, -0.00019313846132718027, -0.01730371080338955, -0.009175303392112255, 0.04241428151726723, -0.0028378383722156286, -0.010177332907915115, 0.01779724657535553, -0.04136738181114197, 0.036192722618579865, -0.01591283269226551, 0.004636257886886597, -0.014005985110998154, 0.014978103339672089, -0.014664034359157085, 0.059074897319078445, 0.023854292929172516, 0.008524731732904911, 0.016675572842359543, 0.0008057366940192878, -0.010072643868625164, -0.03086850233376026, -0.0061692139133811, -0.005986006930470467, -0.010267067700624466, -0.017318665981292725, 0.03756864368915558, 0.030120719224214554, 0.0007781622116453946, -0.000578130129724741, -0.009302427060902119, 0.004576434846967459, -0.034248482435941696, 0.009938042610883713, -0.0062701646238565445, 0.0135573148727417, 0.003613663837313652, 0.011231708340346813, -0.008644376881420612, -0.0273539200425148, 0.0398419052362442, -0.01739344373345375, 0.030494611710309982, 0.021147316321730614, -0.0027761461678892374, -0.0222091693431139, 0.013594703748822212, 0.022807396948337555, 0.028146570548415184, 0.0014525693841278553, -0.018634764477610588, -0.025035791099071503, -0.019173169508576393, -0.027623122557997704, -0.03140690550208092, -0.007664780598133802, 0.002884574932977557, -0.0172438882291317, -0.009766052477061749, -0.006565539166331291, 0.012779619544744492, 0.010132466442883015, 0.030584344640374184, 0.006879608146846294, -0.006348681636154652, 0.007474096026271582, -0.018574941903352737, 0.009048180654644966, 0.0197713952511549, -0.02238863706588745, 0.00718619953840971, -0.0013675090158358216, 0.024078628048300743, 0.0047745974734425545, -0.03167610988020897, 0.0398419052362442, 0.034158751368522644, -0.020145287737250328, 0.008547165431082249, -0.0031986439134925604, -0.02606773190200329, 0.007791903801262379, 0.01463412307202816, -0.005877578165382147, -0.009429549798369408, 0.006027135066688061, -0.02090802602469921, 0.02633693441748619, 0.0347270667552948, 0.012218782678246498, 0.02683047205209732, 0.029103733599185944, 0.012959088198840618, -0.006266425829380751, -0.0027836239896714687, 0.0445978082716465, -0.014020940288901329, 0.012974043376743793, -0.0030341316014528275, 0.03158637508749962, -0.011695333756506443, 0.04361073300242424, 0.0017030768794938922, 0.012158959172666073, -0.017498133704066277, 0.036162808537483215, 0.01441726554185152, 0.013332979753613472, 0.030449744313955307, 0.031077882274985313, -0.029193468391895294, -0.022747574374079704, 0.03556458279490471, -0.03535520285367966, 0.008337786421179771, 0.00792650505900383, 0.027428697794675827, -0.026546314358711243, 0.03251362591981888, 0.0021872667130082846, -0.01219634898006916, -0.011545777320861816, 0.024631988257169724, -0.0033594174310564995, 0.011590643785893917, -0.009235125966370106, 0.0026434145402163267, 0.01594274491071701, 0.015419295988976955, -0.04561479389667511, 0.03903429955244064, 0.03583378344774246, -0.009601539932191372, -0.017572911456227303, 0.020743513479828835, -0.028969133272767067, 0.01538938470184803, 0.0032192079816013575, -0.003854823997244239, -0.02766798995435238, -0.026606136932969093, -0.012772141955792904, 0.014506999403238297, 0.015224872156977654, 0.0016067997785285115, 0.006662751082330942, -0.04779832065105438, 0.013041344471275806, 0.004976499360054731, 0.00974361877888441, -0.009152869693934917, 0.007956416346132755, 0.030524522066116333, 0.0222091693431139, 0.0030453482177108526, 0.011097107082605362, -0.004041770007461309, 0.009272515773773193, 0.013587226159870625, 0.0034603681415319443]" -How Newtrax Is Using TimescaleDB and Hypertables to Save Lives in Mines While Optimizing Profitability,"as a baseline. After comparing with and without TimescaleDB, it became clear that we would stand to gain much from a switch: not only from the partitioning/hypertable perspective but also with regards to the added business intelligence API functionality, background jobs,continuous aggregates, and variouscompressionandretention policies.Beyond that, we only ran basic before/after query analysis, because we know that a time-based query will perform better on a hypertable than a regular table, just by virtue of scanning fewer chunks. Continuous aggregates and hyperfunctions easily saved us months of development time which is equally, if not more important, than performance gains.More importantly, in order for our solutions (such as predictive maintenance and collision avoidance) to provide contextualized and accurate results, we must gather and process hundreds of millions of data points per machine or worker, per week or month, depending on various circumstances. We usehypertablesto handle these large datasets and act upon them. We have saved lives using TimescaleDB.Beyond the native benefits ofusing hypertablesand data compression/retention policies, one of our first tech debt reductions came via the use of thetime_bucket_gapfillandlocffunctions (see an example later), which allowed us to dynamically interpolate mobile equipment telemetry data points that could be temporarily or permanently missing. Since then, we have been acutely following any and all changes to the hyperfunction API.✨Editor’s Note:Read how you can write better queries for time-series analysis using just SQL and hyperfunctions.Current Deployment & Future PlansAs far as deployment is concerned, the mining industry is incredibly conservative and frequently happens to be located in the most remote areas of the world, so we mostly deploy TimescaleDB on-premises throughKubernetes. The main languages we use to communicate with TimescaleDB are C#, Golang, and Python, but we also have an incredible amount of business logic written as pure SQL in triggers, background jobs, and procedures.While all of our microservices are typicallyrestricted to their own data domains, we have enabled cross-database queries and mutations throughHasura. It sits nicely on top of TimescaleDB and allows us to expose our multiple data sources as a unified API, complete with remote relationships, REST/GraphQL API support, authentication, and permission control.Our use of TimescaleDB consists of the following:We greatly appreciatetimescaledb-tuneautomatically tweaking the configuration file based on the amount of memory and number of CPUs available. In fact, Newtrax has contributed to this tool a few times.We",https://www.timescale.com/blog/how-newtrax-is-using-timescaledb-and-hypertables-to-save-lives/,519,"[-0.031340885907411575, 0.017547402530908585, 0.09690356999635696, 0.012265722267329693, 0.0690838098526001, 0.0004887919640168548, 0.0021279500797390938, 0.051420003175735474, -0.0036066025495529175, 0.010476062074303627, 0.02768881246447563, -0.0219415295869112, 0.013160552829504013, -0.015524941496551037, 0.021839678287506104, 0.04123494401574135, -0.005499932449311018, -0.005281681194901466, -0.003979448229074478, 0.00814804807305336, -0.01786750555038452, 0.01334242895245552, 0.017547402530908585, 0.015670442953705788, -0.027208659797906876, -0.00752239441499114, -0.03686991706490517, 0.029391173273324966, 0.03282499313354492, -0.0753694474697113, 0.042602650821208954, -0.04030373692512512, -0.0438830591738224, 0.00712954206392169, 0.038936030119657516, 0.017663804814219475, 0.038877829909324646, 0.012367572635412216, 0.012076571583747864, 0.01063611265271902, -0.013349703513085842, -0.01596144400537014, -0.0016232439083978534, 0.02533170022070408, -0.040943942964076996, 0.010119584389030933, -0.05115810036659241, -0.013771655969321728, 0.0049506668001413345, 0.05109990015625954, -0.031282685697078705, 0.0008416314958594739, -0.022363482043147087, -0.01398263219743967, 0.028765520080924034, -0.009995908476412296, -0.006347475107759237, 0.01914791204035282, 0.012374848127365112, -0.04658937454223633, -0.0157431922852993, -0.05575592815876007, 0.036578916013240814, 0.03847042843699455, -0.020050019025802612, 0.040943942964076996, -0.004306825343519449, 0.03564770892262459, -0.03521120920777321, 0.0458618700504303, 0.04437776282429695, 0.010192334651947021, 0.009006503038108349, -0.020020918920636177, 0.03588050976395607, -0.06378757953643799, 0.00045764565584249794, 0.050255995243787766, -0.010454236529767513, -0.002826354233548045, 0.00015811850607860833, -0.03142818436026573, -0.028387216851115227, 0.027165010571479797, 0.015350340865552425, -0.031399086117744446, -0.012091121636331081, -0.03439640253782272, -0.030962582677602768, -0.002684490755200386, -0.012738600373268127, 0.056105129420757294, 0.015757743269205093, 0.007529669441282749, 0.02985677681863308, 0.01556859165430069, 0.005921884905546904, 0.004394126124680042, -0.023571139201521873, 0.01751830242574215, 0.02114127390086651, -0.0011176284169778228, -0.03209748864173889, -0.050314195454120636, 0.04661847651004791, -0.011625518091022968, 0.012825900688767433, 0.005481744650751352, 0.017940254881978035, 0.026859458535909653, -0.0875915139913559, -0.06012095510959625, -0.06221616640686989, -0.02349838800728321, -0.029944077134132385, 0.007376893423497677, -0.02227618172764778, 0.013189652934670448, 0.015117539092898369, -0.010505162179470062, -0.01779475435614586, 0.020399220287799835, -0.010155959986150265, 0.02639385499060154, -0.0072714053094387054, -0.028780069202184677, 0.009486655704677105, -0.04286455363035202, -0.039605334401130676, 0.003315600799396634, 0.02974037453532219, -0.0022898197639733553, 0.034745603799819946, -0.029056521132588387, -0.004321375396102667, -0.01046151202172041, -0.05866594612598419, 0.007835221476852894, 0.002213431755080819, -0.016892649233341217, 0.0016550722066313028, -0.0356186106801033, 0.014884737320244312, -0.0038484977558255196, -0.04018733650445938, 0.03151548653841019, -0.028590919449925423, 0.04667667672038078, -0.017940254881978035, 0.011021689511835575, 0.006743964739143848, -0.011276316829025745, -0.03745191916823387, -0.008017097599804401, 0.03707361966371536, 0.011290866881608963, 0.009944983758032322, 0.07228482514619827, 0.0013076890027150512, -0.040769338607788086, -0.018565909937024117, 0.056628935039043427, -0.022974586114287376, 0.0032082938123494387, -0.003008230123668909, -0.027208659797906876, -0.04469786211848259, -0.031457286328077316, -0.10446961224079132, -0.03492020443081856, -0.024924296885728836, -0.06722139567136765, -0.009333879686892033, 0.03977993503212929, 0.03849952667951584, -0.0008848271099850535, -0.022363482043147087, -0.042049746960401535, -0.0045760017819702625, -0.01330605335533619, -0.04452326148748398, 0.016005095094442368, -0.045454468578100204, 0.02287273481488228, -0.033523399382829666, -0.014913838356733322, -0.06937480717897415, 0.026990409940481186, 0.0065802764147520065, 0.05531942471861839, -0.027703363448381424, 0.07024781405925751, 0.0029500299133360386, 0.051478203386068344, 0.004994316957890987, -0.03500750660896301, 0.03765562176704407, 0.00424135010689497, -0.04688037559390068, -0.0079225217923522, 0.07595144957304001, 0.014804712496697903, 0.051652804017066956, 0.019351614639163017, 0.010898014530539513, 0.011538217775523663, 0.017780205234885216, -0.001435002195648849, -0.040536537766456604, -0.035240307450294495, -0.016659848392009735, 0.020239168778061867, -0.006209249142557383, 0.02042832039296627, -0.02282908372581005, 0.003139181062579155, -0.05598872900009155, -0.007456919178366661, 0.002871823264285922, -0.016921749338507652, -0.001232210430316627, 0.061692364513874054, -0.00037648348370566964, -0.034629203379154205, -0.02741236239671707, 0.021228574216365814, 0.012920476496219635, -0.034745603799819946, 0.0440867580473423, 0.026583006605505943, 0.0020260994788259268, -0.0433010570704937, 0.004150412045419216, -0.030729781836271286, -0.006365662440657616, -0.0025426275096833706, 0.014128133654594421, -0.04268995299935341, -0.001906061195768416, -0.05790933966636658, 0.0009252945310436189, 0.015641342848539352, -0.023542039096355438, 0.002437139395624399, 0.022799983620643616, 0.020108219236135483, -0.03058427944779396, -0.05168190598487854, 0.032737694680690765, 0.020559271797537804, 0.0030846181325614452, -0.030875282362103462, -0.0224362313747406, -0.011065340600907803, -0.04097304120659828, -0.07857046276330948, -0.013153277337551117, 0.010490612126886845, 0.011632793582975864, 0.014019007794559002, -0.009013778530061245, -0.033901698887348175, -0.013466103933751583, -0.032330289483070374, -0.03785932436585426, 0.033232394605875015, 0.044057659804821014, -0.03299959376454353, 0.006940390914678574, -0.029085621237754822, 0.04184604808688164, 0.04548356682062149, 0.020224619656801224, -0.08549630641937256, -0.017169101163744926, -0.03576410934329033, 0.007573319599032402, -0.006238349247723818, -0.021970629692077637, -0.02198517881333828, 0.016994500532746315, -0.026190154254436493, 0.03788842260837555, 0.001204019645228982, 0.0515655055642128, 0.02092302404344082, 0.0015777748776599765, 0.046298373490571976, 0.006351112388074398, -0.050023194402456284, -0.0040121860802173615, 0.03340699523687363, 0.020355569198727608, -0.026524806395173073, 0.013269677758216858, 0.027135910466313362, -0.022916385903954506, 0.008344474248588085, -0.03160278499126434, -0.04414496198296547, 0.0116618936881423, 0.0033010507468134165, -0.0017851135926321149, -0.01842040941119194, 0.02432774379849434, 0.019162463024258614, -0.017896605655550957, -0.021665077656507492, -0.01068703830242157, -0.015495841391384602, -0.01657254807651043, -0.018667759373784065, -0.019744466990232468, 0.0032555817160755396, -0.028489068150520325, -0.03361069783568382, 0.06902560591697693, -0.02696130983531475, -0.009071978740394115, -0.06273996829986572, -0.02690310776233673, -0.086194708943367, -0.027441462501883507, 0.011669169180095196, 0.029885876923799515, -0.004717865493148565, 0.058898746967315674, -0.006878552958369255, 0.005114355124533176, -0.006969491019845009, -0.0006733961636200547, -0.014855637215077877, 0.006427500396966934, 0.0003351066552568227, -0.028096215799450874, -0.04079844057559967, 0.032388489693403244, 0.015481291338801384, 0.003342882264405489, 0.010956214740872383, -0.026030102744698524, -0.0012231165310367942, -0.08014187216758728, -0.0012576730223372579, 0.006187424063682556, 0.02237803116440773, 0.020413769409060478, -0.0017323695356026292, 0.00040490159881301224, 0.013684355653822422, -0.026975858956575394, -0.03751011937856674, 0.004212250001728535, -0.010228710249066353, 0.027485111728310585, -0.0077988458797335625, -0.005008867010474205, -0.02629200555384159, -0.04446506127715111, 0.004579639527946711, -0.05389351770281792, 0.012709500268101692, 0.04114764183759689, -0.03567681089043617, -0.003473832970485091, 0.02215978130698204, -0.04609467089176178, 0.03363979980349541, -0.009523031301796436, 0.0038012098520994186, 0.022130681201815605, 0.007900696247816086, -0.008053472265601158, -0.018333107233047485, -0.05613423138856888, 0.004794253036379814, 0.05802574381232262, 0.0232219360768795, -0.00025689994799904525, 0.038877829909324646, 0.02261083386838436, 0.023076435551047325, 0.018958762288093567, -0.018667759373784065, 0.013851681724190712, 0.0389651283621788, -0.006994953844696283, 0.026815807446837425, -0.029653074219822884, -0.03131178393959999, 0.013211477547883987, -0.0015223027439787984, -0.015714092180132866, -0.010817988775670528, -0.007456919178366661, 0.002602646593004465, -0.020675672218203545, 0.014273634180426598, 0.053602516651153564, 0.02176692895591259, 0.01347337942570448, -0.0278488639742136, -0.07711545377969742, -0.017329152673482895, 0.010839814320206642, 0.0020770246628671885, 0.022014278918504715, 0.018449509516358376, -0.019351614639163017, -0.028096215799450874, -0.0027008596807718277, 0.0017232757527381182, 0.036637116223573685, -0.030322378501296043, 0.03576410934329033, -0.0295221246778965, -0.032795894891023636, 0.05264221131801605, -0.012629474513232708, 0.04597827047109604, -0.030264178290963173, -0.03951803222298622, -0.01487746275961399, -0.012585824355483055, -0.04394125938415527, 0.03035147860646248, 0.047462381422519684, -0.027368711307644844, -0.009188379161059856, -0.038150325417518616, -0.0013249671319499612, 0.00808984786272049, 0.04647297412157059, 0.014862912707030773, -0.014069932512938976, 0.037422820925712585, 0.03756832331418991, 0.015364890918135643, 0.032126590609550476, 0.011545493267476559, -0.030991682782769203, -0.0009739463566802442, -0.010061384178698063, 0.026888558641076088, -0.04397035762667656, -0.0182021576911211, -0.018391309306025505, -0.015990544110536575, 0.0005633611581288278, -0.02472059614956379, 0.07502023875713348, 0.0006970400572754443, 0.006765789818018675, 0.021505026146769524, -0.01881326176226139, -0.032068390399217606, 0.046443872153759, -0.029609424993395805, 0.044115860015153885, -0.0038266724441200495, -0.044668763875961304, 0.024807896465063095, -0.06675579398870468, -0.036695316433906555, 0.0012022008886560798, -0.01364070549607277, 0.02220343053340912, -0.018114857375621796, 0.023629339411854744, -0.014644660986959934, 0.0018478608690202236, 0.05045969784259796, -0.006187424063682556, -0.008308098651468754, -0.002622653031721711, -0.00889737717807293, 0.004706952720880508, 0.015088438987731934, 0.014848362654447556, -0.029885876923799515, 0.02745601162314415, -0.041438642889261246, -0.013211477547883987, 0.025477200746536255, 0.029449373483657837, 0.020355569198727608, 0.027223210781812668, 0.02009366825222969, 0.022727234289050102, 0.016339747235178947, -0.02538990043103695, 0.008097122423350811, 0.07193562388420105, -0.017722005024552345, -0.015161189250648022, 0.032330289483070374, -0.0799090713262558, -0.03003137744963169, 0.00424135010689497, 0.0043359254486858845, 0.032737694680690765, -0.000638839730527252, 0.030205978080630302, 0.0696658119559288, 0.010025009512901306, 0.02226163074374199, -0.011894695460796356, -0.021417725831270218, -0.016761699691414833, -0.0322720892727375, -0.013218753039836884, 0.024487793445587158, 0.04382485896348953, 0.03788842260837555, -0.030729781836271286, 0.04097304120659828, -0.001204019645228982, 0.008329924196004868, -0.012418498285114765, -4.680467100115493e-05, -0.020442871376872063, -0.026321105659008026, -0.02237803116440773, 0.0038594102952629328, -0.01317510288208723, 0.012825900688767433, -0.056396134197711945, 0.008351748809218407, -0.024735145270824432, -0.006249262019991875, -0.002724503632634878, -0.018391309306025505, 0.02901287190616131, -0.00690765306353569, -0.048015281558036804, 0.024022191762924194, -0.016587097197771072, -0.04574546962976456, -0.02259628288447857, 0.0356186106801033, 0.006274724379181862, 0.044726964086294174, 0.007125904317945242, 0.027499662712216377, 0.003877597860991955, -0.012200246565043926, 0.018391309306025505, -0.00775519572198391, 0.005674533545970917, 0.01818760670721531, 0.02048652060329914, -0.038877829909324646, 0.014433684758841991, 0.0256809014827013, 0.018071206286549568, 0.02259628288447857, 0.01708180084824562, 0.028561817482113838, 0.022087030112743378, 0.0017932980554178357, 0.008759151212871075, 0.0031264496501535177, 0.0007056791801005602, -0.006860365625470877, -0.03270859271287918, 0.03198108822107315, 0.010898014530539513, -0.03847042843699455, -0.039983633905649185, 0.024575095623731613, 0.003628427628427744, -0.02064657211303711, 0.017620153725147247, 0.012935026548802853, 0.029041972011327744, 0.004910653922706842, -0.01517573930323124, -0.01812940649688244, 0.029536673799157143, 0.015073888935148716, -0.02265448309481144, -0.0037248218432068825, -0.022479882463812828, 0.04024553671479225, -0.008999228477478027, -0.0009125631768256426, 0.022479882463812828, 0.0316900871694088, 0.016310645267367363, -0.0034756518434733152, 0.009937708266079426, -0.0022425318602472544, -0.0049506668001413345, 0.005288956221193075, 0.02271268330514431, 0.020326469093561172, 0.01529213972389698, -0.0021988817024976015, -0.0016332471277564764, 0.033843498677015305, 0.014630110934376717, 0.0031446372158825397, 0.012600374408066273, -0.05185650661587715, -0.048015281558036804, 0.03291229531168938, 0.028750969097018242, 0.00960305705666542, 0.05005229637026787, -0.01926431432366371, 0.022698134183883667, -0.004004911053925753, -0.01892966218292713, -0.03800482302904129, -0.013313328847289085, -0.02159232646226883, -0.019933616742491722, -0.014084482565522194, 0.026772158220410347, -0.015524941496551037, -0.008184423670172691, -0.013015051372349262, -0.026422955095767975, -0.04717137664556503, 0.0037975723389536142, 0.03745191916823387, -0.01470286212861538, -0.03692811727523804, -0.019002411514520645, 0.03136998414993286, 0.004415951203554869, -0.0012294822372496128, 0.007849771529436111, 0.019511664286255836, -0.011028965003788471, 0.03154458478093147, 0.022799983620643616, 0.0407402403652668, -0.004237712360918522, -0.022465333342552185, 0.004881553817540407, 0.020966673269867897, 0.015306689776480198, -0.0025044335052371025, 0.013684355653822422, -0.015248489566147327, -0.030380578711628914, 0.032854095101356506, -0.01887146197259426, -0.03343609720468521, 0.015917792916297913, -0.03733551874756813, 0.04365025833249092, 0.024313192814588547, 0.01629609614610672, -0.01952621527016163, -0.023367438465356827, -0.027834314852952957, 0.015015688724815845, 0.01590324379503727, -0.03637521341443062, 0.009282954968512058, -0.02460419572889805, 0.0039648981764912605, -0.019075162708759308, 0.020471971482038498, 0.026190154254436493, 0.03701541945338249, 0.05322421342134476, 0.01769290491938591, -0.02393489144742489, 0.015437641181051731, 0.03625881299376488, 0.02450234442949295, 0.03966353461146355, 0.001527759013697505, 0.024749696254730225, -0.02757241204380989, 0.009355705231428146, 0.06605739146471024, -0.024531444534659386, 0.003444732865318656, -0.025258949026465416, -0.000249852251727134, -0.0033392447512596846, 0.002582640154287219, -0.01769290491938591, 0.03387260064482689, 0.041671447455883026, 0.003297413233667612, 0.012956851162016392, -0.02460419572889805, -0.010003183968365192, -0.046123772859573364, -0.0035102081019431353, -0.02053017169237137, 0.02053017169237137, 0.03381440043449402, -0.03628791496157646, 0.016659848392009735, 0.0015986906364560127, 0.003404719987884164, -0.0633801743388176, -0.028285367414355278, -0.0073441555723547935, -0.02779066376388073, 0.02907107211649418, 0.005201655440032482, 0.024822445586323738, -0.020413769409060478, -0.032388489693403244, 0.013604329898953438, -0.020602921023964882, 0.001425908412784338, 0.013597055338323116, -0.008737326599657536, -0.021184924989938736, 0.02009366825222969, -0.017329152673482895, -0.014026282355189323, -0.046356573700904846, -0.006965853739529848, 0.0037393721286207438, -0.03649161383509636, 0.042835451662540436, -0.010730688460171223, 0.01930796355009079, 0.044290460646152496, 0.022247081622481346, -0.027761563658714294, 0.008570000529289246, 0.0028845544438809156, 0.013888057321310043, -0.022130681201815605, 0.02109762467443943, 0.01714000105857849, -0.038586828857660294, -0.006914928089827299, -0.028561817482113838, -0.00464511476457119, -0.007398718502372503, 0.002240713220089674, -0.010163234546780586, -0.014499160461127758, 0.036026012152433395, -0.026495706290006638, 0.024211343377828598, 0.017998456954956055, 0.012156596407294273, 0.001731460215523839, -0.009166553616523743, 0.014615560881793499, -0.013109627179801464, -0.0157431922852993, 0.0040521989576518536, -0.029434824362397194, -0.029260221868753433, 0.012323922477662563, -0.0018360388930886984, 0.02147592604160309, 0.004470513667911291, 0.03489110618829727, -0.03288319334387779, 0.02461874485015869, 0.0033210571855306625, 0.0004687855835072696, -0.027252310886979103, -0.013415179215371609, -0.003444732865318656, -0.042893651872873306, 0.0006124677020125091, -0.013153277337551117, -0.000518346787430346, 0.0063256495632231236, 0.05206020548939705, -0.0077988458797335625, 0.009872233495116234, 0.01802755706012249, 0.03704451769590378, -0.026801258325576782, 0.011800119653344154, 0.0006270177545957267, -0.03343609720468521, -0.015073888935148716, -0.026262905448675156, -0.01228027231991291, 0.010214160196483135, -0.004601464606821537, -0.033174194395542145, -0.021330425515770912, -0.029885876923799515, -0.014099033549427986, 0.00616559898480773, 0.016325196251273155, 0.010839814320206642, -0.006605738773941994, 0.008868277072906494, -0.10027918964624405, -0.02300368621945381, 0.04647297412157059, -0.011872869916260242, -0.014972038567066193, -0.006703951861709356, 0.010708862915635109, 0.04839358478784561, 0.018769610673189163, -0.020108219236135483, 0.024749696254730225, -0.06209976598620415, -0.017387352883815765, 0.013800756074488163, -0.00814804807305336, 0.014113583602011204, 0.006954940967261791, 0.024516895413398743, 0.025069797411561012, 0.0016032375860959291, -0.01846405863761902, -0.00957395602017641, -0.01364798005670309, 0.055435825139284134, 0.00945755559951067, -0.012709500268101692, -0.020835723727941513, 0.022639933973550797, 0.004514164291322231, -0.026408405974507332, -0.0023771203123033047, 0.024575095623731613, -0.020413769409060478, 0.008773701265454292, -0.010316010564565659, 0.02015186846256256, -0.005288956221193075, 0.009137453511357307, -0.011800119653344154, 0.004954304080456495, -0.029493024572730064, -0.03471650555729866, 0.046851277351379395, -0.04749147966504097, 0.04129314422607422, -0.006562088616192341, 0.0014977494720369577, 0.027659712359309196, -0.021024873480200768, 0.013706181198358536, 0.023862140253186226, 0.029114721342921257, 0.0018214888405054808, 0.0021334062330424786, 0.003888510400429368, 0.010155959986150265, -0.03428000211715698, -0.013036876916885376, 0.002991861430928111, 0.010446961969137192, -0.01350975502282381, 0.010250535793602467, 0.040652938187122345, -0.06227436661720276, -0.0425153523683548, -0.002509889891371131, -0.0028008914086967707, 0.03721911832690239, 0.027034059166908264, -0.0006770336767658591, 0.03419269993901253, 0.04117674380540848, 0.01903151161968708, -0.02226163074374199, 0.021897878497838974, -0.0016969037242233753, -0.0013404266210272908, -0.004266812466084957, -0.011705543845891953, -0.031049882993102074, 0.04117674380540848, -0.01074523851275444, -0.01786750555038452, 0.025811852887272835, -0.027048610150814056, -0.009595781564712524, -0.00820624828338623, 0.008271723985671997, 0.03102078288793564, -0.004688764922320843, 0.042049746960401535, 0.018740510568022728, -0.005601782817393541, 2.1924592147115618e-05, 0.021301325410604477, 0.01498658861964941, 0.02042832039296627, 0.015728643164038658, 0.0028027102816849947, -0.007973447442054749, 0.03480380401015282, -0.00735143106430769, 0.031660985201597214, 0.015001138672232628, -0.0043031880632042885, -0.015888692811131477, 0.0034683765843510628, -0.005172555334866047, 0.0021734191104769707, 0.003062793053686619, -0.004208612255752087, -0.0013695268426090479, 0.04033283889293671, 0.014011732302606106, 0.007558769546449184, 0.003455645404756069, 0.0186968594789505, -0.01740190200507641, -0.008300824090838432, -0.04274815320968628, 0.033523399382829666, -0.011087165214121342, -0.033959899097681046, 0.03046787902712822, -0.0225380826741457, 0.017096349969506264, 0.042835451662540436, 0.0007793389959260821, -0.0012794982176274061, 0.018405858427286148, 0.011792844161391258, 0.06303097307682037, 0.0011731006670743227, 0.05406811833381653, -0.0187987107783556, -0.010810713283717632, 0.0005533579387702048, -0.011174465529620647, 0.00583094684407115, 0.03768472373485565, 0.009188379161059856, 0.014069932512938976, -0.014630110934376717, -0.006383850239217281, 0.016165144741535187, 0.006573001388460398, -0.011421817354857922, -0.0093993553891778, -0.03925613313913345, 0.03788842260837555, 0.013713455758988857, -0.03966353461146355, -0.022901834920048714, 0.06582459062337875, -0.013837131671607494, 0.05040149763226509, -0.036637116223573685, -0.039314333349466324, -0.004066749010235071, 0.006383850239217281, -0.007100441958755255, 0.041671447455883026, 0.002129768719896674, -0.014615560881793499, 0.008948302827775478, -0.01645614765584469, -0.0316900871694088, -0.003602965036407113, -0.008671850897371769, -0.00023280136520043015, 0.002591734053567052, 0.005136180203408003, 0.008162598125636578, 0.014892012812197208, 0.06256537139415741, 0.02667030692100525, 0.006729414686560631, 0.015583141706883907, 0.012243896722793579, 0.022450782358646393, -0.0038375852163881063, -0.027223210781812668, 0.0166307482868433, 0.015073888935148716, 0.01991906762123108, -0.017591053619980812, -0.028809169307351112, 0.015757743269205093, 0.0011094440706074238, 0.025462649762630463, 0.031166283413767815, 0.011276316829025745, 0.011589143425226212, 0.03369800001382828, -0.017925705760717392, 0.01068703830242157, 0.027470562607049942, -0.001786023029126227, -0.012040195986628532, 0.0020497434306889772, -0.030962582677602768, 0.015990544110536575, 0.01812940649688244, -0.02416769228875637, -0.008337198756635189, 0.03823762387037277, -0.006260174326598644, -0.0023480202071368694, -0.02019551955163479, 0.054882925003767014, -0.006885827984660864, 0.026553906500339508, 0.007089529186487198, -0.008366298861801624, -0.031049882993102074, 0.006114673335105181, 0.004714227747172117, 0.005285318475216627, 0.00015948257350828499, -0.030264178290963173, -0.03634611517190933, -0.030933482572436333, -0.01059973705559969, 0.011821944266557693, -0.023396538570523262, 0.02221798151731491, 0.013182377442717552, 0.0019242488779127598, -0.017372801899909973, -0.0004565089475363493, -0.0007074979366734624, 0.008548174984753132, 0.027703363448381424, 0.009261129423975945, 0.010883464477956295, 0.013349703513085842, 0.006500250659883022, -0.0014404584653675556, -0.04475606232881546, 0.016383396461606026, 0.016499796882271767, 0.007886146195232868, 0.012978676706552505, -0.026524806395173073, -0.018376758322119713, 0.00010293049126630649, 0.0433010570704937, 0.030322378501296043, 0.04030373692512512, -0.0033919888082891703, 0.0017932980554178357, 0.006711226888000965, 0.011749194003641605, 0.005910972133278847, 0.02594280242919922, 0.024342292919754982, 0.024298643693327904, 0.03410540148615837, -0.005081617273390293, -0.0030609741806983948, -0.0019460739567875862, 0.01802755706012249, 0.008810076862573624, -0.003381076268851757, -0.009086528792977333, 0.0009848589543253183, -0.006362025160342455, -0.008780976757407188, 0.03320329636335373, -0.01818760670721531, -0.022392582148313522, 0.03366889804601669, 0.0032992318738251925, -0.02109762467443943, -0.0248951967805624, 0.03436730429530144, -0.07170282304286957, 0.00583094684407115, 0.00690765306353569, -0.032737694680690765, -0.03052607923746109, 0.011283591389656067, -0.008162598125636578, 0.0016132408054545522, 0.0381794236600399, -0.04461056366562843, 0.0009111991384997964, -0.03704451769590378, 0.01459373626857996, -0.02879462018609047, -0.01830400712788105, 0.016834449023008347, -0.007380531169474125, 0.014520986005663872, -0.02456054463982582, -0.0016987224807962775, -0.019380714744329453, 0.03215568885207176, -0.012534898705780506, -0.031835585832595825, -0.016325196251273155, -0.013451553881168365, 0.023411087691783905, 0.025695450603961945, 0.009406630881130695, -0.010250535793602467, -0.033523399382829666, -0.030904382467269897, 0.007435093633830547, 0.03841222822666168, -0.021563226357102394, 0.0067476024851202965, 0.021403176710009575, 0.03812122344970703, -0.012462148442864418, 0.0013722549192607403, 0.06384577602148056, 0.0029209298081696033, 0.003921248018741608, 0.026539355516433716, 0.011290866881608963, 0.03125358372926712, 0.023149186745285988, 0.04228254780173302, 0.0006492975517176092, -0.006143773905932903, 0.02149047702550888, 0.009341155178844929, -0.030817082151770592, 0.0018123950576409698, -0.009006503038108349, 0.011429091915488243, 0.007704270537942648, 0.02053017169237137, -0.01673259772360325, 0.0024844270665198565, 0.01319692749530077, -0.018769610673189163, 0.010898014530539513, -0.005576320458203554, 0.006263812072575092, 0.0069876788184046745, -0.019060611724853516, -0.03634611517190933, 0.0030264179222285748, -0.028227167204022408, -0.0036338840145617723, 0.03558950871229172, -0.005183468107134104, -0.011480017565190792, 0.06675579398870468, 0.00639112526550889, -0.039925433695316315, -0.004317738115787506, -0.027048610150814056, -0.0021552315447479486, 0.006500250659883022, -0.012367572635412216, -0.011239941231906414, 0.005896422080695629, -0.0294202733784914, -0.0029209298081696033, -0.02806711569428444, 0.013415179215371609, 0.02076297253370285, -0.00787159614264965, -0.013989907689392567, 0.04816078394651413, 0.018071206286549568, 0.0014913837658241391, 0.036084212362766266, 0.019933616742491722, -0.008679126389324665, -0.022087030112743378, -0.027703363448381424, -0.005689083598554134, 0.015714092180132866, -0.0038484977558255196, -0.011727369390428066, 0.03422180190682411, 0.007835221476852894, -0.02806711569428444, 0.008300824090838432, 0.028081664815545082, -0.014360934495925903, 0.017954805865883827, -0.018114857375621796, 0.005772746633738279, 0.026466606184840202, -0.006143773905932903, -0.011923795565962791, -0.020079119130969048, -0.006423862650990486, -0.005016142036765814, -0.029216572642326355, 0.03428000211715698, -0.016485247761011124, -0.019773567095398903, 0.01205474603921175, -0.01775110512971878, -0.01059973705559969, 0.002009730553254485, 0.017387352883815765, -0.021577777341008186, -0.003921248018741608, 0.0174164529889822, 0.046123772859573364, 0.008286274038255215, 0.015001138672232628, 0.04379575699567795, -0.020064568147063255, 0.004772427957504988, -0.012302097864449024, -0.005900059826672077, -0.05316601321101189, -0.03419269993901253, 0.02377483993768692, 0.00030214161961339414, -0.009894058108329773, -0.016979949548840523, -0.006140136159956455, 0.0334651954472065, 0.01679079979658127, 0.023643888533115387, 0.031399086117744446, 0.013218753039836884, 0.0027463287115097046, 0.024866096675395966, 0.015975994989275932, -0.02800891548395157, -0.03422180190682411, 0.019744466990232468, -0.030613379552960396, 0.031951989978551865, -0.012956851162016392, 0.0006952213007025421, 0.024094942957162857, 0.016659848392009735, -0.02119947411119938, 0.03634611517190933, 0.039372533559799194, 0.01336425356566906, 0.0026335655711591244, -0.0010230529587715864, -0.011632793582975864, -0.027426911517977715, -0.050197795033454895, -0.012302097864449024, 0.011589143425226212, -0.0179111547768116, 0.02522984892129898, 0.01249852403998375, -0.015132089145481586, 0.015714092180132866, 0.00951575580984354, -0.02086482383310795, -0.01504478882998228, 0.00746419420465827, -0.0024862459395080805, 0.007529669441282749, -0.0182021576911211, 0.009355705231428146, 0.020690221339464188, 0.010999864898622036, 0.03611331433057785, 0.02221798151731491, -0.012127496302127838, -0.0008684582426212728, -0.01926431432366371, -0.015393991023302078, 0.030496979132294655, -0.0027899788692593575, 0.003983085975050926, 0.0036720777861773968, -0.00571818370372057, 0.004957941826432943, 0.017838405445218086, -0.017212752252817154, -0.008395399898290634, -0.009159279055893421, 0.007253217976540327, -9.497340943198651e-05, 0.048742786049842834, -0.008235348388552666, 0.010265085846185684, 0.029944077134132385, -0.0014677399303764105, -0.027892515063285828, 0.01887146197259426, 0.005310781300067902, -0.06099395826458931, 0.03532760962843895, -0.014157233759760857, 0.013808031566441059, 0.026190154254436493, -0.013895331881940365, 0.013269677758216858, 0.02086482383310795, 0.030147777870297432, -0.013567955233156681, -0.013415179215371609, 0.0017796573229134083, 0.04853908717632294, 0.01796935684978962, -0.0010676125530153513, -0.011516393162310123, 0.03637521341443062, -0.022407131269574165, 0.005216205958276987, -0.018784161657094955, -0.005685445852577686, 0.01773655414581299, -0.0128913763910532, -0.023396538570523262, 0.03003137744963169, -0.032504890114068985, 0.021301325410604477, -0.015248489566147327, -0.011021689511835575, -0.0035338520538061857, 0.01780930534005165, -0.015452191233634949, -0.007435093633830547, -0.006507525686174631, 0.019569864496588707, -0.01336425356566906, -0.011865595355629921, 0.01194562017917633, -0.005754558835178614, 0.007362343370914459, 0.000611103605479002, -0.028750969097018242, 0.01556859165430069, 0.030555179342627525, -0.007486019283533096, 0.011290866881608963, -0.014462784864008427, -0.0017350977286696434, 0.00577638391405344, -0.006922203116118908, -0.015452191233634949, -0.011443642899394035, 0.010905289091169834, 0.021970629692077637, 0.012549448758363724, 0.01785295456647873, -0.0010939845815300941, 0.04522166773676872, -0.03154458478093147, 0.010679762810468674, -0.018173057585954666, -0.006653026677668095, -0.03035147860646248, 0.015102989040315151, -0.016616197302937508, 0.03713181987404823, -0.01903151161968708, -0.008489974774420261, -0.007944346405565739, 0.024094942957162857, 0.00768972048535943, -0.0044777886942029, -0.024298643693327904, 0.010694312863051891, 0.017038149759173393, -0.014972038567066193, 0.007820671424269676, 0.05659983307123184, -0.0033774387557059526, -0.033290594816207886, 0.002315282355993986, -0.0002923657884821296, 0.004805165808647871, 0.0006442960002459586, 0.006536626257002354, 0.0024480519350618124, 0.03294139355421066, -0.023963991552591324, 0.022188881412148476, -0.0066639394499361515, -0.013989907689392567, -0.038703229278326035, 0.019729916006326675, 0.017591053619980812, -0.02261083386838436, -0.012360298074781895, 0.020079119130969048, -0.028474517166614532, 0.025462649762630463, -0.011174465529620647, -0.025826402008533478, -0.006096486002206802, 0.008570000529289246, 0.008751876652240753, 0.03358159959316254, -0.010592462494969368, 0.035182107239961624, 0.0128913763910532, -0.004103124141693115, -0.0042522624135017395, -0.016892649233341217, 0.027543311938643456, 0.014455510303378105, -0.008664576336741447, -0.00023462013632524759, 0.012025645934045315, 0.036753516644239426, -0.029944077134132385, -0.004768790677189827, 0.02025371976196766, -0.02527349814772606, -0.012927751056849957, 0.005059792194515467, -0.02338198758661747, -0.0007697904948145151, 0.010788888670504093, -0.0007788842776790261, -0.012105671688914299, -0.045454468578100204, 0.023309238255023956, 0.012462148442864418, 0.020341020077466965, 0.028823720291256905, 0.0026262905448675156, 0.0014059020904824138, 0.003844860242679715, 0.010861638933420181, 0.006722139660269022, -0.005296231247484684, 0.007566044572740793, -0.006598463747650385, -0.012287547811865807, -0.014913838356733322, -0.03969263285398483, -0.006129223853349686, -0.009253854863345623, -0.0030136865098029375, 0.0032264816109091043, -0.0024753334000706673, 0.009843133389949799, 0.010483336634933949, 0.029056521132588387, -0.007900696247816086, -0.0034029013477265835, 0.00435411324724555, -0.01255672425031662, -0.006758514791727066, 0.02968217432498932, 0.008657300844788551, -0.005856409668922424, -0.026583006605505943, 0.0008698223391547799, -0.00018210342386737466, -0.02021006867289543, 0.022756334394216537, 0.020690221339464188, -0.019118811935186386, 0.020341020077466965, -0.02003546804189682, -0.001953348983079195, 0.002055199583992362, 0.012134771794080734, 0.0027899788692593575, -0.0012258447241038084, -0.027470562607049942, 0.003723003203049302, 0.018740510568022728, 0.02974037453532219, 0.023818491026759148, 0.012454873882234097, 0.02488064579665661, 0.017154552042484283, -0.007333243265748024, -0.007602419704198837, 0.06902560591697693, 0.0015950531233102083, 0.004503251519054174, 0.011429091915488243, 0.0009593963040970266, -0.008198973722755909, 0.0342509001493454, 0.008853727020323277, 0.03599691390991211, -0.013065977022051811, 0.02477879635989666, 0.013778931461274624, 0.030933482572436333, 0.017431002110242844, 0.01779475435614586, -0.024415044113993645, -0.0036538902204483747, 0.0040485612116754055, -0.0316900871694088, 0.022567182779312134, 0.01537944097071886, 0.02210158109664917, 0.00577638391405344, 0.03203928843140602, -0.01775110512971878, -0.005649070721119642, -0.0023116448428481817, 0.04626927152276039, -0.012767700478434563, 0.0007788842776790261, -0.021053973585367203, 0.004143137019127607, 0.0342509001493454, 0.008242623880505562, -0.02009366825222969, 0.01674714870750904, 0.03919793292880058, -0.022901834920048714, -0.031777385622262955, 0.013444279320538044, -0.036520715802907944, 0.03494930639863014, 0.022508982568979263, -0.006605738773941994, -0.03646251559257507, -0.025753652676939964, 0.0008570909849368036, 0.018507709726691246, -0.0002582640154287219, -0.020180968567728996, 0.012774975039064884, -0.04536716639995575, 0.023847591131925583, 0.02355658821761608, -0.016339747235178947, 0.000145841870107688, 0.00775519572198391, 0.03751011937856674, 0.02600100263953209, 0.017838405445218086, 0.01673259772360325, 0.028198067098855972, -0.016266996040940285, 0.013167827390134335, -0.00956668145954609]" -How Newtrax Is Using TimescaleDB and Hypertables to Save Lives in Mines While Optimizing Profitability,"deploy thetimescaledb-haimage (which we also contributed to) because it adds multiple extensions other than TimescaleDB (for example,pg_stat_statements,hypopg, andpostgis), and it comes with useful command-line tools likepgtop.Our developers are then free to use hypertables or plain tables. Still, when it becomes obvious that we’ll want to configure data retention or create continuous aggregates over a given data set,hypertables are a no-brainer.Even if hypertables are not present in a database, we may still use background jobs to automate various operations instead of installing another extension likepg_cron.Hypertables can be exposed as-is through Hasura, but we may also want to provide alternative viewpoints through continuous aggregates or custom views and functions.✨Editor’s Note:The TimescaleDB tuning tool helps make configuring TimescaleDB a bit easier. Read our documentation to learn how.As mentioned earlier, incoming data can be erratic and incomplete. We might be missing some data points or values. Using a combination of the following code will create a functionmine_data_gapfill, which can be tracked with Hasura and enable consumers to retrieve consistent data series based on their own needs. And you could easily useinterpolateinstead oflocfto provide interpolated values instead of the last one received.CREATE TABLE mine_data ( serial TEXT, timestamp TIMESTAMPTZ, values JSONB NOT NULL DEFAULT '{}', PRIMARY KEY (serial, timestamp) ); SELECT CREATE_HYPERTABLE('mine_data', 'timestamp'); INSERT INTO mine_data (serial, timestamp, values) VALUES ('123', '2020-01-01', '{""a"": 1, ""b"": 1, ""c"": 1}'), ('123', '2020-01-02', '{ ""b"": 2, ""c"": 2}'), ('123', '2020-01-03', '{""a"": 3, ""c"": 3}'), ('123', '2020-01-04', '{""a"": 4, ""b"": 4 }'), ('123', '2020-01-06', '{""a"": 6, ""b"": 6, ""c"": 6}'); CREATE FUNCTION mine_data_gapfill(serial TEXT, start_date TIMESTAMPTZ, end_date TIMESTAMPTZ, time_bucket INTERVAL = '1 DAY', locf_prev INTERVAL = '1 DAY') RETURNS SETOF mine_data AS $$ SELECT $1, ts, JSONB_OBJECT_AGG(key_name, gapfilled) FROM ( SELECT serial, TIME_BUCKET_GAPFILL(time_bucket, MT.timestamp) AS ts, jsondata.key AS key_name, LOCF(AVG((jsondata.value)::REAL)::REAL, treat_null_as_missing:=TRUE, prev:=( SELECT (values->>jsondata.key)::REAL FROM mine_data WHERE values->>jsondata.key IS NOT NULL AND serial = $1 AND timestamp < start_date AND timestamp >= start_date - locf_prev ORDER BY timestamp DESC LIMIT 1 )) AS gapfilled FROM mine_data MT, JSONB_EACH(MT.values) AS jsondata WHERE MT.serial = $1 AND MT.timestamp >= start_date AND MT.timestamp <= end_date GROUP BY ts, jsondata.key, serial ORDER BY ts ASC, jsondata.key ASC ) sourcedata GROUP BY ts, serial ORDER BY ts ASC; $$ LANGUAGE SQL STABLE; SELECT * FROM mine_data_gapfill('123', '2020-01-01', '2020-01-06', '1 DAY');You can find this code snippet on GitHub too.RoadmapWe",https://www.timescale.com/blog/how-newtrax-is-using-timescaledb-and-hypertables-to-save-lives/,738,"[-0.049366939812898636, 0.016926631331443787, 0.0765879675745964, -0.015874125063419342, 0.027264276519417763, -0.010135794058442116, 0.024077918380498886, 0.011462242342531681, -0.0010128585854545236, -0.013682601042091846, 0.031690578907728195, -0.0026781277265399694, 0.04766562581062317, -0.047060076147317886, 0.03310353308916092, 0.04899207502603531, -0.01920466311275959, 0.01054670475423336, -0.029095351696014404, 0.05614336207509041, -0.026903828606009483, 0.0003216997138224542, -0.006668285466730595, 0.024020247161388397, -0.017488930374383926, -0.015701109543442726, -0.05553780868649483, 0.06632240861654282, 0.038841862231492996, -0.03688102588057518, 0.009955570101737976, -0.05144312232732773, -0.022030573338270187, -0.022463111206889153, 0.050087835639715195, 0.05170264467597008, 0.055508971214294434, 0.024914156645536423, 0.00898956973105669, -0.012038959190249443, -0.015585766173899174, -0.02978741191327572, 0.0016445433720946312, -0.002852944890037179, 0.008239838294684887, -0.0001567948202136904, -0.023832812905311584, -0.009595122188329697, 0.01216151099652052, 0.029282785952091217, -0.019435349851846695, 0.0020689708180725574, -0.023832812905311584, 0.006545733194798231, 0.014244900085031986, -0.049684133380651474, -0.021266425028443336, 0.047175418585538864, 0.01685454323887825, -0.02053111046552658, -0.015225318260490894, -0.04812699928879738, 0.05377882346510887, 0.014230482280254364, 0.0010380898602306843, 0.03688102588057518, -0.03852466866374016, 0.025260187685489655, -0.015802035108208656, 0.06920599192380905, 0.024135589599609375, 0.030623652040958405, 0.03223845735192299, -0.018930722028017044, 0.02677406743168831, -0.05083756893873215, 0.013704228214919567, 0.02151152864098549, 0.005053479224443436, -0.03924556449055672, 0.02063203603029251, -0.009883481077849865, -0.045387595891952515, 0.019233498722314835, 0.0026835345197468996, -0.04662753641605377, -0.04815583676099777, -0.022405439987778664, -0.03140221908688545, -0.014043048955500126, -0.00980418175458908, 0.02639920264482498, -0.0033467584289610386, 0.0030421800911426544, -0.0002863307890947908, -0.02298215590417385, 0.022506365552544594, -0.014050258323550224, -0.026889411732554436, 0.0017310508992522955, 0.022664962336421013, 0.005323815159499645, -0.024914156645536423, -0.04408998414874077, 0.051356613636016846, 0.006138427183032036, -0.01926233433187008, 0.006221330258995295, -0.014143974520266056, 0.03145989030599594, -0.06926366686820984, -0.06315046548843384, -0.029398128390312195, -0.020502274855971336, 0.015282989479601383, 0.006221330258995295, -0.033276546746492386, -0.009696047753095627, 0.01797913946211338, -0.03745774179697037, -0.03362257778644562, -0.0032133928034454584, -0.006527711171656847, 0.003824352053925395, 0.006178076379001141, -0.024596963077783585, -0.012572421692311764, -0.051817987114191055, -0.04945344850420952, -0.015109974890947342, 0.021280841901898384, 0.007663121912628412, 0.030738994479179382, -0.006232143845409155, 0.0021374558564275503, -0.0034080345649272203, -0.05945948138833046, 0.018570274114608765, 0.003910859581083059, 0.0024564522318542004, -0.02390490286052227, -0.021078990772366524, 0.014605347998440266, 0.013733063824474812, -0.04117756336927414, 0.028057262301445007, -0.024150008335709572, 0.05424019694328308, -0.022852394729852676, 0.009840226732194424, 0.005622986704111099, -0.011245973408222198, 0.0041163149289786816, -0.007699166424572468, 0.051558464765548706, -0.0028132956940680742, 0.01001324225217104, 0.044003475457429886, -0.007064778357744217, -0.02538994885981083, -0.022506365552544594, 0.037054043263196945, -0.0074396440759301186, 0.02625502273440361, -0.001856306567788124, -0.0052949790842831135, -0.0587385855615139, -0.013985377736389637, -0.09573495388031006, -0.039360906928777695, -0.017561020329594612, -0.09031382203102112, -0.016422005370259285, 0.023270513862371445, 0.024539291858673096, 0.01593179628252983, -0.03688102588057518, -0.05859440565109253, -0.0037774937227368355, -0.03365141525864601, -0.03719821944832802, 0.04031249135732651, -0.017907049506902695, 0.031200367957353592, -0.0163499154150486, -0.023472364991903305, -0.06522664427757263, 0.02931162156164646, 0.017330333590507507, 0.03892837092280388, -0.06597638130187988, 0.029556725174188614, 0.011707346886396408, 0.03760192170739174, 0.011808272451162338, -0.06245840713381767, 0.026831740513443947, 0.024380695074796677, -0.0029142210260033607, 0.016926631331443787, 0.06211237609386444, 0.022347768768668175, 0.022953320294618607, -0.02231893315911293, -0.00157065165694803, 0.007198144216090441, -0.003990157973021269, -0.02609642595052719, -0.0032782733906060457, -0.034660667181015015, -0.0026781277265399694, 0.0008466019644401968, -0.009818600490689278, 0.00754777854308486, 0.0036459302064031363, 0.007108032237738371, -0.02497182786464691, -0.0006172669818624854, -0.022751469165086746, -0.01792146824300289, -0.02241985872387886, 0.04357093945145607, 0.036448489874601364, -0.029095351696014404, -0.003671161597594619, 0.005215680692344904, -0.016868960112333298, -0.05308676138520241, 0.011354108341038227, 0.02609642595052719, 0.00829751044511795, -0.036448489874601364, 0.01681128889322281, -0.04734843224287033, 0.0004147403233218938, -0.006279001943767071, -0.0008619209984317422, -0.03688102588057518, 0.018873050808906555, -0.020156245678663254, -0.00888864416629076, 0.013848407194018364, -0.028172606602311134, 0.012630093842744827, 0.004040620755404234, 0.014309780672192574, -0.030623652040958405, -0.0658610388636589, 0.048703715205192566, 0.02384723164141178, 0.02360212616622448, -0.05444204807281494, -0.019694872200489044, -0.008672376163303852, -0.06032455712556839, -0.05230819433927536, -0.049626462161540985, 0.03774610161781311, -0.007309882901608944, 0.0120029142126441, 0.026211770251393318, -0.03656383231282234, -0.03641965240240097, -0.003781098173931241, -0.013048212975263596, 0.007147681433707476, 0.03509320691227913, -0.029614398255944252, 0.03763075917959213, -0.017099646851420403, 0.03716938570141792, 0.050808731466531754, 0.03316120430827141, -0.07064778357744217, -0.014345825649797916, 0.0044587403535842896, -0.0012201160425320268, 0.021006902679800987, -0.017690781503915787, -0.02513042651116848, -0.0022257657255977392, -0.03734239935874939, 0.012572421692311764, 0.019536275416612625, 0.041754283010959625, 0.011137839406728745, 0.003712613135576248, 0.042273327708244324, 0.03636198118329048, -0.0273219496011734, 0.008621913380920887, -0.006401554215699434, 0.04622383415699005, -0.024784395471215248, 0.017503349110484123, 0.03838048875331879, -0.01906048320233822, -0.0058716959320008755, -0.024294186383485794, -0.02753821760416031, 0.011736182495951653, -0.0111090037971735, -0.009559077210724354, -0.023659799247980118, 0.007126054260879755, -0.016378751024603844, 0.0019301983993500471, -0.03667917475104332, 0.0012120059691369534, 0.018555857241153717, -0.0012696776539087296, -0.04688705876469612, 0.00016794618568383157, -0.03803446143865585, 0.017229408025741577, -0.038236308842897415, 0.07543452829122543, -0.018671199679374695, 0.0071440767496824265, -0.06880228966474533, -0.03013344295322895, -0.11211370676755905, -0.012702182866632938, 0.02641361951828003, -0.012356152758002281, -0.017229408025741577, 0.05323094129562378, 0.00232308660633862, -0.007255815900862217, 0.01307704858481884, -0.02758147194981575, -0.02006973698735237, 0.006495270878076553, 0.004256889224052429, 0.0056878672912716866, -0.03541040048003197, 0.006707935128360987, -0.005057083908468485, 0.005727516952902079, 0.003177348058670759, -0.04602198302745819, -0.004390255082398653, -0.03921672701835632, -0.00581041956320405, -0.0048011657781898975, 0.007742420304566622, 0.010734138078987598, 0.019276753067970276, -0.03134454786777496, -0.023890485987067223, -0.039706937968730927, -0.009948361665010452, 0.009890689514577389, 0.01940651424229145, 0.02722102403640747, -0.006452016998082399, -0.00033138677827082574, -0.0209348127245903, -0.029052099213004112, 0.014504422433674335, -0.05276956781744957, 0.027293112128973007, 0.027091262862086296, -0.05204867199063301, 0.004548852331936359, 0.026168515905737877, -0.000514088780619204, 0.0010083529632538557, -0.04198496788740158, 0.012421033345162868, 0.002615049248561263, -0.004862441681325436, -0.02293890342116356, -0.019795797765254974, -0.05634521320462227, -0.001330052618868649, 0.04117756336927414, 0.019247915595769882, 0.0041163149289786816, 0.041754283010959625, 0.001627422170713544, -0.015975050628185272, 0.030421800911426544, -0.024178843945264816, 0.04561828449368477, 0.016436422243714333, 0.011152257211506367, 0.040629684925079346, -0.02768239751458168, -0.0252890232950449, 0.04371511936187744, 0.01823866181075573, -0.0017634911928325891, -0.002036530524492264, -0.00377388927154243, 0.006570964585989714, -0.03365141525864601, 0.004909300245344639, 0.03541040048003197, 0.013545631431043148, 0.025981083512306213, 0.0022618104703724384, -0.06799488514661789, -0.017200572416186333, -0.029037680476903915, 0.00582483783364296, 0.03275750204920769, 0.04097571596503258, 0.015182064846158028, 0.0028637584764510393, -0.016263408586382866, 0.001767996815033257, 0.01858469285070896, -0.05204867199063301, 0.053605806082487106, -0.01102970540523529, -0.03990878909826279, 0.0613049753010273, -0.007742420304566622, 0.006196098867803812, -0.044522520154714584, -0.048242341727018356, -0.016825707629323006, -0.017171736806631088, -0.06764885783195496, 0.014050258323550224, 0.050087835639715195, -0.033132366836071014, -0.014367451891303062, -0.03183475509285927, -0.03812096640467644, 0.02820144221186638, 0.07422342896461487, -0.014720691367983818, -0.02205941081047058, 0.02788424678146839, 0.02645687386393547, -0.0017634911928325891, 0.020545529201626778, -0.00653852429240942, -0.03437231108546257, 0.01562901958823204, -0.02099248394370079, 0.03298819065093994, -0.05798885226249695, -0.003878419054672122, 0.01870003528892994, -0.018152154982089996, 0.0270768441259861, 0.024380695074796677, 0.06666843593120575, 0.00710082333534956, 0.0030349711887538433, 0.007050360552966595, 0.020401349291205406, 0.0010840470204129815, 0.01986788772046566, -0.019593946635723114, 0.03125803917646408, -0.007598241325467825, -0.04772329702973366, 0.016868960112333298, -0.04250401258468628, -0.008326346054673195, 0.04100454971194267, -0.007205353118479252, 0.020055320113897324, 0.0020527506712824106, 0.0189018864184618, 0.0038603967987000942, -0.015715526416897774, 0.016897795721888542, 0.0032422286458313465, 0.044666700065135956, 0.010972033254802227, 0.010770182125270367, 0.0026042358949780464, -0.02487090416252613, -0.0065565467812120914, -0.06165100261569023, 0.03561225160956383, -0.04230216145515442, -0.004765120800584555, 0.04212914779782295, 0.02774006873369217, 0.0663800835609436, 0.04815583676099777, -0.018916305154561996, 0.012139884755015373, -0.01946418546140194, -0.02686057612299919, 0.0032656576950103045, 0.004238867200911045, -0.01839725859463215, -0.021525947377085686, 0.02472672425210476, -0.09492754936218262, -0.009479778818786144, -0.00030232564313337207, -0.02109340950846672, 0.03509320691227913, 0.001466121757403016, 0.019781379029154778, 0.06159333139657974, 0.01629224419593811, 0.014497213065624237, -0.0270768441259861, -0.02932603843510151, -0.003669359255582094, 0.007886599749326706, -0.03454532474279404, 0.040427833795547485, 0.013350989669561386, 0.00023136248637456447, -0.009609539993107319, 0.051616135984659195, -0.03520854935050011, 0.015816451981663704, -0.0035233779344707727, -0.002806086791679263, -0.04244634136557579, -0.0008416458149440587, -0.029253950342535973, -0.009869062341749668, 0.004361419472843409, 0.017229408025741577, -0.01894514076411724, -0.05582616850733757, -0.016061557456851006, -0.010431361384689808, 0.01374027319252491, -0.012673347257077694, 0.014677437022328377, 0.010683675296604633, -0.027913084253668785, -0.017892632633447647, -0.0183828417211771, -0.017085229977965355, -0.01353842206299305, 0.001330052618868649, 0.012132675386965275, 0.04607965797185898, -0.01936325989663601, 0.036592669785022736, 0.0071440767496824265, -0.037111714482307434, 0.01054670475423336, -0.0032800757326185703, 0.002022112486883998, 0.03238263726234436, 0.04146592319011688, -0.0388130284845829, 0.028086097911000252, 0.02451045624911785, 0.03223845735192299, 0.013855616562068462, 0.016623856499791145, 0.014410706236958504, 0.015542512759566307, -0.004220844712108374, 0.020040901377797127, 0.02380397729575634, 0.0003899595467373729, 0.013826780021190643, -0.03183475509285927, 0.04633918032050133, 0.004307352006435394, -0.01721499115228653, -0.06084360182285309, -0.0028096912428736687, -0.00901840627193451, -0.023832812905311584, 0.035525742918252945, 0.037573087960481644, 0.006188889965415001, 0.014107929542660713, -0.030565978959202766, 0.0025645866990089417, 0.018570274114608765, -0.023789560422301292, -0.0183828417211771, -0.008066823706030846, -0.05251004546880722, 0.009818600490689278, -0.05066455155611038, -0.01325727254152298, 0.036390818655490875, 0.028518635779619217, -0.0012462484883144498, -0.03564108535647392, -0.0021194336004555225, 0.016075974330306053, 0.0003410738136153668, -0.0023483179975301027, 0.022333350032567978, 0.0189018864184618, -0.005612173583358526, 0.01946418546140194, -0.029354874044656754, 0.018873050808906555, 0.024481618776917458, -0.010503451339900494, -0.004563270136713982, -0.0081749577075243, -0.03887069970369339, 0.03180592134594917, 0.03696753457188606, 0.015600183978676796, 0.03688102588057518, 0.0049525536596775055, 0.008946316316723824, 0.004880464170128107, -0.00018810873734764755, -0.05377882346510887, -0.026543380692601204, -0.009674420580267906, -0.025274604558944702, 0.018555857241153717, 0.016566183418035507, -0.05271189659833908, 0.0020239148288965225, -0.013163556344807148, -0.02936929278075695, -0.035381563007831573, 0.02712009847164154, 0.058507900685071945, -0.017661945894360542, -0.044983893632888794, -0.03737123683094978, 0.01594621315598488, -0.0006884554168209434, -0.03232496604323387, 0.022852394729852676, -0.0183828417211771, 0.004559665452688932, 0.056777749210596085, 0.02257845550775528, 0.035266220569610596, -0.0027646352536976337, -0.03197893500328064, 0.0009173398138955235, 0.020314842462539673, 0.028273532167077065, 0.002238381188362837, 0.027408456429839134, 0.01624898985028267, 0.00924909207969904, 0.04172544553875923, -0.039505086839199066, -0.019882304593920708, -0.008304718881845474, -0.025058336555957794, 0.05190449208021164, -0.00436862837523222, 0.011988496407866478, -0.017993558198213577, -0.017085229977965355, -0.028057262301445007, 0.022347768768668175, -0.011145047843456268, -0.040225982666015625, 0.0014336814638227224, -0.034458816051483154, 0.014158392325043678, 0.01315634697675705, 0.04786747694015503, 0.029181860387325287, 0.016422005370259285, 0.04974180832505226, 0.023126335814595222, -0.000987627194263041, 0.007922644726932049, 0.03682335466146469, -0.0009335600188933313, 0.0383228175342083, 0.010373690165579319, 0.020300423726439476, -0.016566183418035507, 0.00909049529582262, 0.03938974440097809, 0.003690986195579171, -0.0009006691398099065, -0.028561890125274658, -0.004516412038356066, 0.02609642595052719, 0.04132174327969551, 0.008138912729918957, -0.005222889594733715, 0.03258448839187622, 0.03157523274421692, 0.01274543721228838, -0.011808272451162338, 0.01721499115228653, -0.028360038995742798, 0.01849818415939808, 0.028835829347372055, 0.020516693592071533, 0.02675965055823326, -0.05256771668791771, -0.004930926952511072, 0.004703844897449017, -0.009119330905377865, -0.04734843224287033, -0.010972033254802227, -0.003871210152283311, 0.004966971930116415, 0.024077918380498886, 0.02701917290687561, 0.01483603473752737, -0.0059257629327476025, -0.02195848524570465, 0.01309867575764656, -0.028850248083472252, 0.0038459787610918283, 0.009112122468650341, 0.0007546877604909241, -0.01645084097981453, 0.013596094213426113, -0.014050258323550224, -0.0247699785977602, -0.02619735151529312, -0.022924484685063362, 0.0021446647588163614, -0.02262170799076557, 0.01499463152140379, -0.01619131863117218, 0.03197893500328064, 0.03160407021641731, 0.014237690716981888, -0.017287079244852066, 0.0020599595736712217, -0.008780510164797306, 0.0165950208902359, 0.0006776420050300658, -0.00016445433720946312, 0.01629224419593811, -0.004112710244953632, 0.01639316976070404, -0.007937062531709671, 0.013264481909573078, 0.005850069224834442, -0.005085919518023729, -0.010813436470925808, 0.00981139112263918, 0.014562094584107399, -0.021223170682787895, 0.044666700065135956, 0.0026673143729567528, 0.021828724071383476, -0.0020581574644893408, -0.02318400703370571, 0.013250064104795456, -0.0038748146034777164, -0.027754485607147217, 0.014605347998440266, -0.02615409716963768, 0.003469310700893402, -0.005576128605753183, -0.008052405901253223, 0.025822484865784645, 0.004620941821485758, 0.02722102403640747, -0.02972974069416523, 0.04100454971194267, -0.0016093997983261943, -0.01192361582070589, -0.013394243083894253, -0.002658303128555417, -0.008895853534340858, -0.04798281937837601, -0.0045560612343251705, -0.008045196533203125, 0.0024023849982768297, -0.025865739211440086, 0.056777749210596085, -0.026629889383912086, 0.02513042651116848, 0.02314075268805027, 0.029700905084609985, -0.006516897585242987, 0.0005550897330977023, 0.017907049506902695, -0.02237660437822342, -0.030219949781894684, -0.009126540273427963, 0.009032824076712132, 0.002027519280090928, -0.01509555708616972, -0.018728870898485184, -0.026730814948678017, -0.025865739211440086, -0.04031249135732651, 0.01757543906569481, 0.03111386112868786, 0.01695546880364418, -0.0032926914282143116, 0.010561122559010983, -0.10946080833673477, -0.024250933900475502, 0.06390020251274109, -0.007663121912628412, -0.011829899623990059, -0.0007826224318705499, -0.02420767955482006, 0.06090127304196358, 0.029960427433252335, -0.026846157386898994, 0.023832812905311584, -0.039562758058309555, -0.02810051664710045, 0.008549823425710201, -0.001667972537688911, 0.004473158158361912, 0.029614398255944252, 0.017488930374383926, 0.016796870157122612, 0.01198128703981638, -0.007619868032634258, -0.02513042651116848, -0.005460785236209631, 0.04011064022779465, -0.0081749577075243, 2.352767114643939e-05, -0.007425226271152496, 0.027523798868060112, 0.00036562932655215263, -0.0032782733906060457, -0.006279001943767071, 0.007374763488769531, -0.003871210152283311, 0.004530829843133688, -0.016422005370259285, 0.027365202084183693, -0.018613528460264206, 0.03907255083322525, -0.0048011657781898975, -0.003114269580692053, -0.032411474734544754, -0.05706610903143883, 0.03688102588057518, -0.01216151099652052, 0.03861117735505104, 0.03160407021641731, 0.031286876648664474, 0.02241985872387886, -0.0030944449827075005, 0.03468950465321541, 0.005641009192913771, 0.02442394755780697, 0.034199293702840805, 0.0014814407331869006, 0.01489370595663786, 0.015326243825256824, -0.03189242631196976, -0.03595827892422676, 0.012752645649015903, 0.003341351868584752, -0.022823559120297432, 0.0026673143729567528, 0.04884789511561394, -0.06413088738918304, -0.027595888823270798, -0.010316018015146255, -0.017950303852558136, 0.03794795274734497, 0.026471292600035667, 0.000973209273070097, 0.01271660067141056, 0.022650543600320816, 0.00809565931558609, 0.023414693772792816, 0.02426535077393055, 0.017128482460975647, -0.0056806583888828754, -0.0263126939535141, -0.0019842656329274178, -0.001924791606143117, 0.04013947397470474, -0.02370305173099041, -0.024236515164375305, 0.012327317148447037, -0.015499258413910866, -0.02410675399005413, 0.015052303671836853, -0.01335819810628891, 0.022347768768668175, 0.0005064292927272618, 0.05190449208021164, 0.024856485426425934, 0.01650851219892502, 0.013624929822981358, -0.0014931553741917014, -0.010323227383196354, -0.003615292254835367, 0.023357022553682327, 0.02155478298664093, -0.007828927598893642, 0.009263510815799236, 0.003900045994669199, 0.012867989018559456, 0.01864236406981945, -0.022693797945976257, -0.01854143850505352, 0.004256889224052429, 0.00012604412040673196, 0.005410322453826666, 0.005817628465592861, 0.004476762376725674, 0.006105986889451742, 0.010611585341393948, 0.013033795170485973, -0.001425571390427649, 0.012139884755015373, 0.015456004999577999, -0.02217475324869156, 0.0010299797868356109, -0.036246638745069504, 0.04884789511561394, 0.006805256009101868, -0.030219949781894684, 0.017950303852558136, -0.029441382735967636, 0.0303929653018713, 0.03145989030599594, 0.003216997254639864, -0.0047074491158127785, 0.030364129692316055, 0.010337645187973976, 0.04299422353506088, 0.0026853366289287806, 0.035323891788721085, -0.005947390105575323, -0.0367656834423542, -0.00012987387890461832, 0.00746848015114665, 0.008088449947535992, 0.028633980080485344, 0.008722838945686817, 0.0035395980812609196, 0.006570964585989714, -0.03177708387374878, 0.01529740821570158, 0.019882304593920708, -0.023169590160250664, -0.01509555708616972, -0.03509320691227913, 0.03610245883464813, 0.0023302955087274313, -0.032815173268318176, -0.042013805359601974, 0.026139680296182632, 0.00019374073599465191, 0.06441924721002579, -0.04933810606598854, -0.02840329334139824, 0.009061659686267376, -0.01598946750164032, -0.0008119088597595692, 0.051673807203769684, 0.01292566116899252, -0.01220476534217596, 0.03019111417233944, -0.02354445494711399, -0.033074695616960526, 0.01685454323887825, -0.004000971559435129, -0.00026447861455380917, -0.0024492433294653893, 0.036909863352775574, 0.023155171424150467, 0.013898869976401329, 0.019839050248265266, 0.02936929278075695, -0.0059221587143838406, 0.017186155542731285, 0.012075004167854786, 0.023919321596622467, -0.01499463152140379, -0.023457948118448257, 0.04806932806968689, 0.01976696215569973, 0.025361113250255585, -0.02733636647462845, -0.019939975813031197, 0.0022690193727612495, -0.0054319496266543865, 0.03503553196787834, 0.02288123033940792, 0.022693797945976257, 0.01604713872075081, 0.03921672701835632, -0.02488532103598118, 0.009378853254020214, 0.02952788956463337, -0.013026585802435875, -0.004617337137460709, 0.023111917078495026, -0.026182932779192924, 0.010186256840825081, -0.006736770737916231, -0.028287949040532112, 0.01797913946211338, 0.0638425275683403, 0.0006204209057614207, 0.020502274855971336, -0.032815173268318176, 0.0510682538151741, -0.015542512759566307, -0.021944066509604454, -0.0004183448036201298, 0.01499463152140379, -0.04527225345373154, 0.02416442520916462, 0.014576512388885021, -0.005370673257857561, -0.0010335842380300164, -0.04417649284005165, -0.018051229417324066, -0.04945344850420952, -0.01705639250576496, 0.012255228124558926, -0.007764047011733055, 0.020776215940713882, -0.003939695190638304, -0.01609039306640625, 0.006033897399902344, -0.005010225344449282, 0.013401451520621777, 0.0018436908721923828, 0.025880157947540283, 0.018930722028017044, 0.023227261379361153, 0.02115108072757721, -0.001856306567788124, -0.012356152758002281, -0.04463786631822586, -0.004357814788818359, 0.024741142988204956, 0.010121376253664494, 0.006279001943767071, -0.007454061880707741, -0.028230277821421623, 0.00020905976998619735, 0.044262997806072235, 0.03411278501152992, 0.024092335253953934, 0.017791707068681717, -0.004199217539280653, 0.03200777247548103, 0.017806125804781914, -0.00043771887430921197, 0.02043018490076065, 0.036650341004133224, 0.021165499463677406, 0.008881435729563236, -0.007165703922510147, -0.005641009192913771, 0.011044123210012913, 0.026125261560082436, 0.02748054638504982, -0.0008200189331546426, -0.009559077210724354, -0.016263408586382866, -1.9895032892236486e-05, 0.005511248018592596, 0.02360212616622448, -0.004339792300015688, 0.008679584600031376, 0.019320005550980568, 0.007929853163659573, -0.032872844487428665, -0.047175418585538864, 0.032151948660612106, -0.03765959292650223, -0.010070913471281528, 0.027206605300307274, -0.03206544369459152, -0.02605317160487175, -0.006534920074045658, -0.003649534657597542, -0.009623957797884941, 0.029556725174188614, -0.018570274114608765, -0.006985479965806007, -0.02257845550775528, 0.016422005370259285, -0.005121964495629072, -0.013055422343313694, 0.01671036332845688, 0.0046533821150660515, -0.003150314325466752, -0.03105618804693222, -0.011700138449668884, 0.0036080831196159124, 0.011462242342531681, 0.008326346054673195, -0.02155478298664093, -0.011375734582543373, -0.018123319372534752, -0.003424254711717367, 0.02089155837893486, 0.0165950208902359, 0.018570274114608765, -0.007183725945651531, -0.003402628004550934, 0.005013830028474331, 0.015009049326181412, -0.0038063295651227236, 0.04178311675786972, 0.016306661069393158, 0.024121170863509178, -0.011656884104013443, 0.006246561650186777, 0.05879625678062439, 0.016119228675961494, 0.023054245859384537, 0.011375734582543373, -0.005287770181894302, 0.008730047382414341, 0.007562196347862482, 0.02681732177734375, 0.01044577918946743, 0.0007299069548025727, 0.010878317058086395, 0.01803681254386902, -0.0006262781680561602, 3.345406730659306e-05, -0.016566183418035507, 0.016407586634159088, 0.008924689143896103, 0.020819468423724174, -0.02932603843510151, 0.010135794058442116, -0.0038063295651227236, 0.0018427897011861205, -0.0021933254320174456, -0.009926734492182732, 0.0070900097489356995, 0.0025069150142371655, -0.0074396440759301186, -0.007183725945651531, -0.011130630038678646, -0.01803681254386902, -0.002086993306875229, 0.04097571596503258, 0.003982949070632458, -0.006780024617910385, 0.06401554495096207, 0.005291374865919352, -0.03748657926917076, -0.018152154982089996, -0.0145548852160573, -0.009400480426847935, 0.00683048740029335, -0.024178843945264816, -0.01208221260458231, 0.005323815159499645, -0.01926233433187008, -0.011786645278334618, -0.030306456610560417, 0.0332188755273819, 0.026327112689614296, -0.02717776969075203, -0.01844051294028759, 0.033997442573308945, 0.02768239751458168, -0.02498624660074711, 0.04483971744775772, 0.016537347808480263, -0.0052841659635305405, -0.013552839867770672, -0.023731887340545654, -0.01803681254386902, 0.004437113180756569, 0.002346515655517578, -0.025937829166650772, 0.01792146824300289, 0.004015389364212751, -0.009897898882627487, -0.015816451981663704, 0.026226187124848366, -0.011137839406728745, 0.011145047843456268, -0.01910373754799366, 0.0063078380189836025, 0.023587709292769432, -0.020660871639847755, -0.026802903041243553, -0.0298739206045866, -0.0005875300266779959, 0.004948949441313744, -0.015081139281392097, 0.025562962517142296, -0.014302571304142475, -0.011354108341038227, 0.00286015379242599, -0.020660871639847755, -0.0013796142302453518, 0.025173678994178772, 0.02303982898592949, -0.01986788772046566, 0.005907740443944931, -0.015239736065268517, 0.018426096066832542, 0.009256301447749138, 0.008946316316723824, 0.033593740314245224, -0.011044123210012913, -0.009285137057304382, -0.005305792670696974, -0.028460964560508728, -0.02595224604010582, -0.03134454786777496, 0.027826575562357903, -0.011952451430261135, 0.0012336327927187085, -0.002258206019178033, -0.006794442422688007, 0.015239736065268517, 0.0023357023019343615, 0.014619765803217888, 0.03391093760728836, 0.00809565931558609, 0.012421033345162868, 0.018007975071668625, 0.019017230719327927, -0.02115108072757721, -0.017950303852558136, 0.020920393988490105, -0.016003886237740517, 0.036188967525959015, -0.04515691101551056, -0.031142696738243103, 0.0257936492562294, 0.01650851219892502, -0.0037017997819930315, 0.01906048320233822, 0.01315634697675705, -0.011044123210012913, -0.004411881789565086, -0.005132777616381645, 0.0018887468613684177, -0.015874125063419342, -0.024611379951238632, 0.012493123300373554, 0.0019211871549487114, -0.014338616281747818, 0.030537143349647522, 0.023212842643260956, 0.005406718235462904, 0.022001737728714943, -0.006369113922119141, -0.0012597653549164534, -0.013401451520621777, -0.006466434802860022, -0.013055422343313694, -0.00231227301992476, -0.007987525314092636, -0.02012741006910801, 0.007951480336487293, 0.030825501307845116, 0.032209623605012894, 0.05622986704111099, 0.0009957372676581144, 0.0017508754972368479, -0.008766092360019684, -0.04039899632334709, 0.03362257778644562, 0.02931162156164646, -0.011829899623990059, -0.004631755407899618, -0.02344352938234806, 0.01793588697910309, 0.030681323260068893, -0.048040494322776794, -1.6586234778515063e-05, -0.016306661069393158, -0.01202454138547182, 0.003260251134634018, 0.052337031811475754, -0.002431220840662718, 0.016104811802506447, 0.0023537245579063892, -0.0015165844233706594, -0.04489738866686821, 0.007410808466374874, 0.0003931134706363082, -0.05129894241690636, 0.017647527158260345, -0.022592872381210327, 0.023976992815732956, 0.01210383977741003, 0.027206605300307274, 0.0022023364435881376, 0.005886113736778498, 0.0011498286621645093, -0.037774939090013504, -0.01529740821570158, -0.014547675848007202, 0.03189242631196976, 0.0201706625521183, -0.03454532474279404, -0.01792146824300289, 0.04397464171051979, -0.016998721286654472, 0.015902960672974586, -0.01471348199993372, 0.007908225990831852, 0.014396288432180882, -0.01568669080734253, -0.023775141686201096, 0.03033529222011566, 0.0025087171234190464, 0.0018355807987973094, -0.010207884013652802, -0.009386062622070312, -0.0032638555858284235, 0.006971061695367098, -0.049424611032009125, 0.022895649075508118, 0.0054427627474069595, 0.030306456610560417, -0.011390152387320995, -0.0015859706327319145, 0.017791707068681717, 0.007691957522183657, 0.027249859645962715, 0.0072377934120595455, -0.04172544553875923, 0.012853571213781834, 0.028187023475766182, 0.0209348127245903, 0.0005942884599789977, 0.010215092450380325, -0.009523033164441586, -0.010878317058086395, -0.02288123033940792, -0.004505598451942205, 0.01864236406981945, 0.01650851219892502, 0.010496241971850395, -0.00708640506491065, 0.02941254712641239, 0.02406349964439869, 0.02002648450434208, -0.038438159972429276, 0.04279237240552902, 0.007410808466374874, 0.009364435449242592, -0.002688941080123186, 0.022564036771655083, 0.002279832726344466, 0.013127511367201805, -0.023775141686201096, -0.019247915595769882, -0.02328493259847164, 0.013048212975263596, 0.027091262862086296, -0.004689426627010107, -0.0074324351735413074, 0.009854644536972046, 0.03454532474279404, -0.008239838294684887, 0.015427169390022755, 0.061420317739248276, 0.026788486167788506, -0.04792514815926552, -0.001856306567788124, 0.008001943118870258, -0.003705404233187437, -0.005857278127223253, -0.00418840441852808, 0.021482693031430244, 0.028230277821421623, -0.01062600314617157, 0.028677232563495636, 0.020689707249403, -0.020314842462539673, -0.03541040048003197, 0.02742287516593933, 0.01705639250576496, 0.008211002685129642, -0.009789763949811459, 0.017661945894360542, -0.025721561163663864, 0.041091058403253555, -0.01721499115228653, -0.04616616293787956, 0.00034490355756133795, 0.034718338400125504, -0.007255815900862217, 0.041552431881427765, 0.016061557456851006, 0.012867989018559456, 0.0303929653018713, 0.0008533603395335376, -0.009501405991613865, -0.01675361767411232, 0.05882509425282478, 0.02502950094640255, -0.011865943670272827, -0.020978067070245743, 0.03742890805006027, 0.018310751765966415, -0.015859706327319145, -0.02615409716963768, 0.016580602154135704, -0.00901119690388441, -0.004051434341818094, 0.018166573718190193, -0.039418578147888184, 0.003200777107849717, -0.012053376995027065, -0.0020329260732978582, -0.015758780762553215, 0.00500662112608552, 0.012911242432892323, 0.024539291858673096, 0.02002648450434208, 0.03252681717276573, -0.019031647592782974, 0.014043048955500126, 0.016119228675961494, 0.015484840609133244, 0.003512564580887556, -0.008672376163303852, -0.01828191615641117, -0.004538038745522499, -0.01833958737552166, -0.011865943670272827, -0.02267938107252121, 0.020718544721603394, -0.036592669785022736, -0.01471348199993372, 0.003705404233187437, -0.007598241325467825, 0.04449368640780449, 0.018354006111621857, 0.030162278562784195, -0.0009002185543067753, -0.006430390290915966, 0.006343882530927658, -0.03725589066743851, 0.01315634697675705, 0.012853571213781834, -0.0035089601296931505, 0.010503451339900494, -0.0038063295651227236, -0.016984304413199425, -0.005179636180400848, -0.01246428769081831, 0.025923410430550575, 0.030421800911426544, -0.019118154421448708, 0.01100807823240757, -0.019089318811893463, 0.0038640012498944998, 0.0073783681727945805, 0.03235379979014397, 0.01552809402346611, 0.0007006205851212144, -0.03246914595365524, -0.002270821714773774, -0.011728974059224129, 0.03085433878004551, 0.03183475509285927, 0.005349046550691128, 0.0006771914195269346, 0.02195848524570465, 0.01787821389734745, -0.009645584970712662, 0.028922338038682938, 0.0145548852160573, -0.010921570472419262, -0.021987320855259895, 0.017431259155273438, -0.009220256470143795, 0.013927705585956573, 0.0015048698987811804, 0.010258346796035767, -0.01854143850505352, 0.021785469725728035, 0.030738994479179382, 0.015715526416897774, 0.018325170502066612, -0.013444705866277218, -0.025173678994178772, -0.015816451981663704, 0.016018303111195564, -0.03734239935874939, 0.022405439987778664, 0.015124392695724964, 0.02420767955482006, -0.0031593255698680878, 0.01741684041917324, 0.003957717679440975, 0.007342323195189238, -0.027610307559370995, 0.030018098652362823, 0.005316606257110834, -0.02426535077393055, 0.007223375607281923, -0.02706242725253105, 0.02364538051187992, 0.031171532347798347, -0.027970755472779274, 0.01649409532546997, -0.003096247324720025, -0.012904033996164799, -0.03396860882639885, 0.00980418175458908, -0.029340457171201706, 0.04163893684744835, 0.009003987535834312, 0.008672376163303852, -0.03177708387374878, -0.021482693031430244, 0.0076775397174060345, 0.018310751765966415, -0.010539495386183262, -0.01026555523276329, 0.00898956973105669, -0.014626975171267986, 0.007097218651324511, -0.01164246629923582, -0.008066823706030846, -0.0024762768298387527, 0.004491180647164583, 0.019247915595769882, 0.01624898985028267, -0.0018671200377866626, 0.023659799247980118, -0.001734655350446701, -0.01190198864787817, -0.0072486065328121185, -0.026500128209590912]" -How Newtrax Is Using TimescaleDB and Hypertables to Save Lives in Mines While Optimizing Profitability,"need to start looking into thetimescaledb-toolkitextension, which is bundled in thetimescaledb-haDocker image. It promises to “ease all things analytics when using TimescaleDB, with a particular focus on developer ergonomics and performance,” which is music to our ears.“Honestly, theTimescaleDocshad most of the resources we needed to make a decision between switching to TimescaleDB or continuing to use plain PostgreSQL (this article in particular)”Another thing on our backlog is to investigate using Hasura’s streaming subscriptions as a Kafka alternative for specific workloads, such as new data being added to a hypertable.Advice & ResourcesHonestly, theTimescaleDocshad most of the resources we needed to make a decision between switching to TimescaleDB or continuing to use plain PostgreSQL (this article in particular). But don’t get too swayed or caught up in all the articles claiming outstanding performance improvements: run your own tests and draw your own conclusions.We started by converting some of our existing fact tables and got improvements ranging from modest to outstanding. It all depends on your use cases, implementations, and expectations. Some of your existing structures may not be compatible right out of the box, and not everything needs to become a hypertable either! Make sure to consider TimescaleDB’s rich API ecosystem in your decision matrix.Sign up for our newsletterfor more Developer Q&As, technical articles, tips, and tutorials to do more with your data—delivered straight to your inbox twice a month.We’d like to thank Jean-François and all of the folks at Newtrax for sharing their story on how they’re bringing digital transformation to a conservative industry—all while saving lives along the way, thanks to TimescaleDB and hypertables.We’re always keen to feature new community projects and stories on our blog. If you have a story or project you’d like to share, reach out on Slack (@Ana Tavares), and we’ll go from there.The open-source relational database for time-series and analytics.Try Timescale for free",https://www.timescale.com/blog/how-newtrax-is-using-timescaledb-and-hypertables-to-save-lives/,413,"[-0.0070116245187819, 0.00385513948276639, 0.06420455127954483, 0.02487926371395588, 0.0528254397213459, 0.02118176966905594, -0.002905685920268297, 0.04084441438317299, -0.006649757269769907, -0.0066569228656589985, 0.01679636910557747, -0.03912464901804924, 0.00918641034513712, -0.01562119647860527, 0.0728607028722763, 0.06592431664466858, 0.001355210435576737, -0.02063717693090439, -0.011472264304757118, 0.0632300153374672, -0.012726259417831898, 0.00566447526216507, 0.00800407212227583, 0.007097612600773573, 0.006821733433753252, -0.01562119647860527, -0.04941457509994507, 0.03708959370851517, 0.042793478816747665, -0.06208350881934166, -0.010132281109690666, -0.041417669504880905, -0.055118460208177567, 0.048067424446344376, 0.040873076766729355, 0.047580160200595856, 0.016524072736501694, -0.0032603873405605555, 0.028662746772170067, -0.01916104555130005, -0.021769355982542038, -0.020608514547348022, 0.012410969473421574, 0.02669934742152691, -0.00485475268214941, -0.007445148192346096, -0.024105370044708252, -0.040041856467723846, 0.011085317470133305, 0.043481387197971344, -0.028161147609353065, 0.009430043399333954, -0.02827579900622368, -0.026570366695523262, 0.021153107285499573, -0.028419112786650658, -0.010182440280914307, 0.02049386315047741, 0.0011689026141539216, -0.011436435393989086, -0.0066891685128211975, -0.051908232271671295, 0.02138240821659565, 0.018315494060516357, -0.029350651428103447, 0.0010963500244542956, -0.020622845739126205, 0.03041117452085018, -0.043538711965084076, 0.024520980194211006, 0.0460323691368103, 0.0163091029971838, 0.021368077024817467, -0.008906948380172253, 0.017183316871523857, -0.08025568723678589, -0.03184431046247482, 0.07824929803609848, 0.018157849088311195, -0.009000102058053017, -0.014446023851633072, -0.00729108601808548, -0.03405134379863739, 0.03336343541741371, 0.007674450520426035, -0.02916434407234192, -0.025065571069717407, 0.004607536364346743, -0.009286729618906975, 0.007531136739999056, -0.0021228345576673746, 0.04600370675325394, -0.0023109340108931065, 0.011844879947602749, 0.01612279564142227, -0.0009082507458515465, 0.010712701827287674, 0.0014349287375807762, -0.002798200584948063, 0.035111863166093826, 0.027086295187473297, 0.006810985039919615, -0.00045793215394951403, -0.022844208404421806, 0.051019687205553055, -0.004453474190086126, 0.043624699115753174, -0.01901773177087307, 0.021368077024817467, 0.033879365772008896, -0.0978546142578125, -0.020723165944218636, -0.034080006182193756, -0.008770800195634365, -0.026197750121355057, 0.0054280078038573265, -0.021110111847519875, -0.005170043092221022, 0.008799463510513306, 0.01483297161757946, -0.042105574160814285, 0.0011133685475215316, -0.009057427756488323, 0.02793184667825699, 0.020063921809196472, -0.042105574160814285, 0.010053458623588085, -0.039984531700611115, -0.049299921840429306, -0.0011778597254306078, 0.050188466906547546, 0.004317326005548239, 0.02045086957514286, -0.01986328326165676, -0.01497628539800644, -0.01714032143354416, -0.0540006123483181, -0.017426948994398117, -0.013199194334447384, -0.03918197378516197, 0.011472264304757118, -0.04468522220849991, 0.002051177667453885, -0.03789215162396431, -0.05093370005488396, 0.007781935390084982, -0.003496855031698942, 0.021640373393893242, -0.04250685125589371, -0.02424868382513523, -0.01784255914390087, -0.02469295635819435, -0.025065571069717407, -0.010504896752536297, 0.02360377088189125, -0.004711438901722431, 0.031070416793227196, 0.04987317696213722, -0.03198762610554695, -0.03256088122725487, -0.011443601921200752, 0.05253881216049194, -0.019275696948170662, 0.036831628531217575, 0.012969892472028732, 2.79349806078244e-05, -0.024850601330399513, -0.054229915142059326, -0.09527496993541718, -0.006309386808425188, -0.010182440280914307, -0.05798473581671715, 0.020121248438954353, 0.041761621832847595, 0.042449526488780975, 0.011622743681073189, 0.0021317917853593826, -0.065064437687397, 0.004234920721501112, -0.034624598920345306, -0.04967254027724266, 0.002807157812640071, -0.03201628848910332, 0.00783209502696991, -0.028003502637147903, -0.007889420725405216, -0.06105164811015129, 0.016395090147852898, 0.0316150076687336, 0.0461183600127697, -0.04356737434864044, 0.03557046875357628, -0.0011375527828931808, 0.01724064163863659, 0.014281213283538818, -0.05159294232726097, 0.021296421065926552, 0.028834722936153412, -0.017355293035507202, 0.032446227967739105, 0.06563768535852432, 0.009250901639461517, 0.054774507880210876, -0.016524072736501694, -0.021224763244390488, 0.010906174778938293, 0.02025023102760315, 0.0033033816143870354, -0.044083304703235626, -0.04990184307098389, 0.004184761084616184, -0.010483399033546448, -0.0042134239338338375, 0.011637074872851372, -0.014961953274905682, -0.0021676202304661274, -0.04095906391739845, -0.006653340067714453, -0.019734300673007965, -0.017799565568566322, -1.7494352505309507e-05, 0.065064437687397, 0.016739044338464737, -0.028204143047332764, -0.011285956017673016, -0.0017663417384028435, 0.03207361325621605, -0.031901635229587555, 0.012919733300805092, 0.02257191203534603, 0.010698369704186916, -0.03783482685685158, -0.007283920422196388, -0.04078708961606026, 0.018860086798667908, -0.018501803278923035, -0.005990514066070318, -0.047924112528562546, -0.010017629712820053, -0.060535721480846405, 0.008577327243983746, 0.00030051099020056427, -0.004775930196046829, 0.0036025489680469036, -0.010999328456819057, 0.012081347405910492, -0.04250685125589371, -0.08776532858610153, 0.019275696948170662, 0.04672027751803398, 0.03049716167151928, -0.007602793630212545, 0.04138900712132454, -0.01000329852104187, -0.024177026003599167, -0.05302608013153076, -0.012059850618243217, -0.011644240468740463, -0.014374366961419582, 0.0017305132932960987, 0.028146816417574883, -0.034366633743047714, -0.021568717435002327, -0.01960531808435917, -0.019504999741911888, 0.020436538383364677, 0.04454190656542778, -0.028404781594872475, 0.011751726269721985, 0.0017385747050866485, 0.04219156131148338, 0.02645571529865265, 0.03643035143613815, -0.05680956318974495, -0.024750281125307083, -0.023331476375460625, 0.012002524919807911, -0.00514854583889246, -0.005453087389469147, -0.017355293035507202, 0.01576451025903225, -0.042936794459819794, 0.003959042020142078, 0.006760825403034687, 0.03878069669008255, -0.009988967329263687, 0.025452518835663795, 0.03986987844109535, -0.0017170776845887303, -0.04009918123483658, -0.01288390439003706, 0.005213037133216858, 0.036287035793066025, -0.034710586071014404, -0.01636642776429653, 0.0006189362029545009, -0.0047401017509400845, -0.023761415854096413, -0.04912794753909111, -0.044513244181871414, 0.028705740347504616, -0.011493761092424393, 0.014746982604265213, -0.014875965192914009, 0.011615578085184097, -0.0029558457899838686, -0.0072480919770896435, -0.00849850382655859, -0.008269201964139938, 0.004919243976473808, 0.003708242904394865, -0.0137724494561553, 0.003027502680197358, -0.012704762630164623, 0.004919243976473808, -0.028662746772170067, 0.04927125945687294, 0.005080471746623516, -0.01897473819553852, -0.056981541216373444, -0.0562649704515934, -0.08547230809926987, -0.006312970072031021, 0.015363232232630253, 0.01916104555130005, -0.0259111225605011, 0.03809278830885887, 0.001626610872335732, 0.027372922748327255, -0.014109237119555473, 4.167154656897765e-06, -0.01221749559044838, -0.005019563250243664, 0.01317769754678011, -0.04995916783809662, -0.05520445108413696, 0.004861918278038502, -0.011665738187730312, -0.02384740486741066, 0.024263015016913414, -0.027774201706051826, -0.012045519426465034, -0.0875360295176506, 0.023431794717907906, 0.023345807567238808, 0.018745435401797295, 0.002405879320576787, -0.018200844526290894, -0.02912135049700737, 0.01532023772597313, -0.04972986504435539, -0.015019278973340988, 0.012941230088472366, -0.01357897650450468, 0.0016579607035964727, 0.0023252652026712894, 0.019132383167743683, -0.007452314253896475, -0.00023825907555874437, 0.0036061317659914494, -0.023517783731222153, 0.027229608967900276, 0.022901535034179688, 0.017713576555252075, 0.006871893536299467, -0.008326527662575245, -0.03794947639107704, 0.005653726868331432, -0.004568125121295452, -0.008813794702291489, 0.05205154791474342, -0.013543147593736649, 0.005134214647114277, -0.022356942296028137, -0.07738941162824631, -0.015076604671776295, 0.056293632835149765, 0.035312503576278687, 0.005263196770101786, 0.0313570462167263, 0.03138570860028267, 0.009967469610273838, 0.0008343546069227159, -0.0269573125988245, 0.051420968025922775, 0.0326182059943676, -0.024005049839615822, 0.01243963185697794, -0.03304814547300339, -0.010211103595793247, 0.013815443962812424, -0.001441198750399053, -0.022829877212643623, -0.011565417982637882, -0.0019204040290787816, 0.0313570462167263, -0.003808562410995364, 0.02552417479455471, 0.0632300153374672, 0.0017520103137940168, 0.032646868377923965, -0.0023790078703314066, -0.0654083862900734, -0.03482523560523987, 0.004349571652710438, 0.01926136575639248, -0.004919243976473808, 0.029336320236325264, -0.024277346208691597, -0.02265790104866028, -0.020321886986494064, -0.024993915110826492, 0.03608639910817146, -0.03763418644666672, 0.03906732425093651, -0.016595730558037758, -0.03410866856575012, 0.07733208686113358, 0.0019006984075531363, 0.05812804773449898, -0.010956334881484509, -0.008118722587823868, -0.016739044338464737, -0.033191461116075516, -0.05551974102854729, 0.053484685719013214, 0.04531580209732056, -0.007674450520426035, 0.002998839830979705, -0.048210740089416504, -0.0327041931450367, -0.013235023245215416, 0.05420125275850296, -0.02108144946396351, 0.00800407212227583, 0.0314430333673954, 0.03181564807891846, 0.0056465608067810535, 0.0652364119887352, 0.023288480937480927, -0.02803216502070427, 0.013406999409198761, -0.0043065776117146015, 0.01941901072859764, -0.00407727574929595, -0.004625450819730759, -0.01527724415063858, -0.016767706722021103, -0.01582183502614498, -0.027315597981214523, 0.049987830221652985, -0.03625837340950966, -0.01421672198921442, 0.015377563424408436, -0.04256417974829674, -0.01758459396660328, 0.041560981422662735, 0.0041166869923472404, 0.025194553658366203, -0.029350651428103447, -0.034165993332862854, 0.012568614445626736, -0.06787338107824326, -0.021411070600152016, 0.013163366355001926, -0.06489245593547821, 0.0314430333673954, 0.022686563432216644, 0.006585265975445509, -0.035599131137132645, 0.015477882698178291, 0.030124546959996223, -0.042592842131853104, 0.011758891865611076, -0.04844004288315773, -0.004403314553201199, 0.022184966132044792, -0.008548663929104805, 0.029723268002271652, -0.012668933719396591, 0.012389471754431725, -0.03611506149172783, -0.010082121007144451, 0.07463779300451279, 0.014202390797436237, 0.02040787599980831, 0.03015320934355259, -0.00042322336230427027, -0.01887441799044609, -0.014990616589784622, -0.008613155223429203, 0.013027218170464039, 0.00904309656471014, -0.01774224080145359, -0.03236024081707001, -0.01370079256594181, -0.06873326748609543, -0.01828683167695999, 0.003962624818086624, -0.002482910407707095, 0.015520877204835415, -0.012496957555413246, 0.011156974360346794, 0.07704546302556992, 0.02085214853286743, 0.010827352292835712, -0.022829877212643623, 0.0015209169359877706, -0.007197932340204716, -0.011966696940362453, -0.029407978057861328, 0.003520143451169133, 0.03290483355522156, 0.034223318099975586, -0.005596401169896126, 0.022199297323822975, -0.025051239877939224, 0.007581296376883984, 0.004657696466892958, -0.0011635283008217812, -0.030181871727108955, -0.013657798990607262, -0.03620104864239693, 0.016323434188961983, 0.0026817582547664642, 0.0074379825964570045, -0.03617238625884056, -0.0035398490726947784, -0.01590782403945923, -0.02300185337662697, -0.002651304006576538, -0.03344942629337311, 0.030468499287962914, -0.018645117059350014, -0.04302278161048889, 0.0002478879760019481, -0.016595730558037758, -0.04133167862892151, -0.025739146396517754, 0.010268429294228554, -0.006818150635808706, 0.036487676203250885, 0.014818639494478703, 0.028419112786650658, 0.011386276222765446, -0.034710586071014404, -0.005836451891809702, -0.021024124696850777, -0.005392179358750582, 0.024520980194211006, 0.040471795946359634, -0.04500051215291023, 0.030927103012800217, 0.041417669504880905, 0.018602121621370316, 0.013586142100393772, 0.014295544475317001, 0.003668831428512931, -0.00031775340903550386, 0.0024202107451856136, 0.004220589529722929, -0.006295055616647005, -0.000979907694272697, 0.0043065776117146015, -0.0008634652476757765, 0.035312503576278687, 0.0010381288593634963, -0.03528384119272232, -0.04780945926904678, 0.023675428703427315, 0.02857675775885582, -0.007162103895097971, -0.015936486423015594, 0.027774201706051826, 0.022457262501120567, 0.004543045070022345, -0.037519533187150955, -0.022901535034179688, 0.021296421065926552, 0.0202932246029377, -0.02059418335556984, -0.017527269199490547, -0.02346045710146427, 0.039583250880241394, -0.03390802815556526, 0.02109578065574169, 0.04419795423746109, 0.022944528609514236, 0.02118176966905594, -0.036143723875284195, 0.0067034997045993805, 0.016567068174481392, -0.01044757105410099, -0.001441198750399053, 0.03310547024011612, -0.0033177128061652184, 0.021697698161005974, -0.005094802938401699, -0.0037619853392243385, 0.011056654155254364, 0.020952466875314713, -0.0023593022488057613, -0.0005539971170946956, -0.0371469184756279, -0.020565520972013474, 0.029250333085656166, 0.005542658735066652, -0.005241699516773224, 0.05130631476640701, 0.003161859232932329, 0.04262150451540947, -0.0066103460267186165, -0.0025581500958651304, -0.06105164811015129, -0.0038264766335487366, 0.0015782425180077553, -0.018415814265608788, -0.009157747030258179, 0.022485924884676933, -0.016681717708706856, -0.03906732425093651, -0.021841011941432953, -0.03660232573747635, -0.044857196509838104, -0.0026656354311853647, 0.033334773033857346, -0.006463449448347092, -0.02829013019800186, -0.009566191583871841, 0.007853592745959759, 0.010712701827287674, 0.0008737659081816673, 0.04631899669766426, 0.010863181203603745, -0.013557478785514832, 0.04798143729567528, 0.019576655700802803, 0.0371469184756279, 0.009258067235350609, -0.026813998818397522, 0.055749040096998215, 0.02325981855392456, 0.004998066462576389, 0.004725770093500614, 0.022342611104249954, -0.029350651428103447, 0.008921279571950436, 0.02172636240720749, -0.015019278973340988, -0.010182440280914307, 0.0053312708623707294, -0.010246931575238705, 0.07240209728479385, 0.027559230104088783, 0.020436538383364677, -0.0023807992693036795, -0.02138240821659565, -0.017555931583046913, 0.01921837218105793, 0.02360377088189125, -0.03849406912922859, 0.018415814265608788, -0.02635539509356022, 0.0016481078928336501, -0.023431794717907906, 0.024864932522177696, 0.011472264304757118, 0.027473242953419685, 0.017455613240599632, 0.013349673710763454, -0.016466747969388962, 0.01125729363411665, 0.042248889803886414, 0.006477780640125275, 0.04233487695455551, -0.005309773609042168, 0.01754160039126873, -0.009867150336503983, 0.024463653564453125, 0.06214083358645439, -0.033478088676929474, 0.017856890335679054, -0.008863953873515129, 0.0003623150405474007, 0.008025568909943104, -0.016681717708706856, -0.016223113983869553, 0.0507330596446991, 0.045946381986141205, 0.022098977118730545, 0.005023146513849497, -0.023044848814606667, -0.003923213575035334, -0.05110567808151245, 0.01685369573533535, -0.014746982604265213, 0.015119598247110844, 0.023833073675632477, -0.021497059613466263, -0.04391132667660713, 0.0040701101534068584, -0.01274059060961008, -0.056694913655519485, -0.01724064163863659, -0.009501700289547443, -0.009415712207555771, 0.03184431046247482, 0.001983103808015585, 0.05755479633808136, -0.02152572199702263, -0.04735085740685463, -0.01534890104085207, -0.024606967344880104, -0.0035953831393271685, 0.009222238324582577, -0.0020243064500391483, -0.013020052574574947, 0.026742342859506607, -0.022629238665103912, 0.02000659704208374, -0.04563109204173088, -0.014775645919144154, -0.01749860681593418, -0.030124546959996223, 0.06001979112625122, -0.008806629106402397, 0.04330940917134285, 0.02148272842168808, 0.007617124821990728, 0.0020690918900072575, 0.019748631864786148, 0.007237343583256006, 0.013414165005087852, -0.006388209760189056, 0.004088024143129587, -0.006090833805501461, -0.024320339784026146, -0.000712985813152045, -0.03236024081707001, -0.0034019097220152617, -0.024449322372674942, 0.0010300674475729465, 0.0019920608028769493, -0.00930822640657425, 0.013965923339128494, -0.039984531700611115, 0.01610846258699894, 0.025552839040756226, 0.02651304006576538, -0.001748427515849471, -0.00385513948276639, 0.013564644381403923, -0.00043688295409083366, -0.024821938946843147, 0.0036867456510663033, -0.02817547880113125, -0.023431794717907906, -0.006055005360394716, 0.01636642776429653, 0.024950921535491943, 0.015463551506400108, 0.03903866186738014, -0.04537312686443329, 0.021984325721859932, -0.019877614453434944, 0.0292216707020998, -0.023962056264281273, 0.021769355982542038, -0.026971643790602684, -0.051363639533519745, 0.013557478785514832, -0.01497628539800644, 0.011070985347032547, 0.013299514539539814, 0.0811728984117508, -0.005761212203651667, -0.026470046490430832, 0.016237445175647736, 0.028462106361985207, -0.02089514210820198, 0.00020164689340163022, 0.005309773609042168, -0.03686029091477394, -0.02611176110804081, 0.005857948679476976, -0.006162490230053663, 0.015162592753767967, -0.015592534095048904, -0.040328484028577805, 0.001387456082738936, -0.037920814007520676, -0.006603179965168238, -0.016524072736501694, 0.02995257079601288, 0.017355293035507202, -0.012833744287490845, 0.008548663929104805, -0.07532569766044617, -0.0303538478910923, 0.0426788292825222, 0.005399344954639673, -0.0013408791273832321, -0.008333693258464336, -0.0029809256084263325, 0.055949680507183075, 0.04878399521112442, -0.011866376735270023, 0.03740488365292549, -0.054086603224277496, -0.024205688387155533, 0.011694400571286678, -0.0009163121576420963, 0.01941901072859764, 0.015750179067254066, 0.01873110421001911, 0.026541702449321747, 0.019204039126634598, -0.0039518759585917, 0.012640271335840225, -0.028992367908358574, 0.0507330596446991, 0.018946075811982155, -0.021425403654575348, -0.01111397985368967, 0.03499721363186836, 0.009859984740614891, -0.024033712223172188, 0.008699143305420876, 0.02586812898516655, -0.012840909883379936, 0.006445534992963076, -0.02817547880113125, 0.01921837218105793, -0.01281224749982357, 0.028419112786650658, -0.01612279564142227, -0.015520877204835415, -0.043968651443719864, -0.048354052007198334, 0.021697698161005974, -0.04803876206278801, 0.0449431873857975, 0.0035810519475489855, -0.000747022801078856, -0.004084441345185041, -0.002172994427382946, 0.02602577395737171, 0.029407978057861328, 0.00577554339542985, 0.007566965185105801, -6.8577857746277e-05, -0.01147942990064621, 0.009537529200315475, -0.04591771960258484, -0.03783482685685158, 0.013980254530906677, 0.013242188841104507, -0.02665635384619236, 0.014152230694890022, 0.013356839306652546, -0.04749416932463646, -0.0213394146412611, 0.007631456013768911, -0.0005831077578477561, 0.020579852163791656, -0.009867150336503983, 0.001972355181351304, 0.02138240821659565, 0.06173955649137497, 0.023274149745702744, -0.010662541724741459, 0.0315290205180645, -0.0036903286818414927, 0.00793241523206234, -0.023718422278761864, 0.004356737248599529, -0.0174412801861763, 0.026599029079079628, -0.011343281716108322, -0.04626167193055153, 0.015004947781562805, -0.01941901072859764, -0.026985974982380867, 0.004302994813770056, -0.0007850905531086028, 0.027559230104088783, -0.005252448376268148, 0.038121454417705536, 0.007334080059081316, 0.002341388026252389, 0.011106814257800579, 0.0018630785634741187, 0.004686358850449324, 0.014933290891349316, 0.004059361293911934, 0.02582513354718685, -0.015879161655902863, 0.019146714359521866, -0.0016194451600313187, 0.027473242953419685, 0.0038838020991533995, 3.051014937227592e-05, -0.0026942980475723743, 0.006320135667920113, 0.00041695337858982384, 0.0027444579172879457, 0.014395864680409431, -0.01946200430393219, -0.0008800358627922833, 0.033478088676929474, 0.012711928226053715, 0.0029898828361183405, 0.0038479736540466547, 0.00740215415135026, -0.009537529200315475, -0.021697698161005974, -0.027043301612138748, 0.03657366335391998, -0.006796653848141432, -0.03688895329833031, 0.03158634528517723, -0.009566191583871841, 0.022399935871362686, 0.02847643755376339, -0.011020826175808907, 0.007925249636173248, -0.0014609043719246984, -0.0012065224582329392, 0.055405087769031525, -0.0073734913021326065, 0.035054538398981094, 0.01986328326165676, -0.025939784944057465, 0.009917310439050198, 0.004109521396458149, 0.007058201357722282, 0.042936794459819794, -0.003097367938607931, 0.0017063290579244494, 0.0020547606982290745, 0.005879445932805538, 0.024119701236486435, -0.0073734913021326065, -0.014274047687649727, 0.0005557885742746294, 0.009179244749248028, 0.02227095328271389, 0.020909473299980164, -0.03459593653678894, -0.03247489035129547, 0.08186080306768417, 0.019433341920375824, 0.07463779300451279, -0.03918197378516197, -0.02655603364109993, -0.012317814864218235, -0.01510526705533266, 0.019791625440120697, 0.022643569856882095, 0.01357897650450468, 0.00857016071677208, 0.02247159369289875, -0.0007864341023378074, -0.044427257031202316, 0.0026692182291299105, -0.010934838093817234, 0.001720660482533276, 0.008828125894069672, 0.006810985039919615, 0.0023037681821733713, 0.020680172368884087, 0.04290813207626343, 0.033678725361824036, 0.0026011441368609667, 0.02443499118089676, 0.015707185491919518, 0.017899885773658752, -0.013944425620138645, 0.012891069985926151, 0.03356407582759857, 0.025681819766759872, 0.0060191769152879715, -0.024649960920214653, -0.02128208987414837, 0.013822609558701515, -0.016638724133372307, 0.0005943041178397834, 0.020121248438954353, 0.00882096029818058, 0.002260774141177535, 0.02409103885293007, -0.007072532549500465, 0.00246320478618145, 0.037519533187150955, -0.005700303707271814, -0.009874315932393074, 0.02700030617415905, -0.042105574160814285, 0.01476131472736597, 0.025896791368722916, -0.014947622083127499, 0.024506649002432823, 0.04606103152036667, 0.01567852310836315, 0.003190521849319339, -0.03356407582759857, 0.032847508788108826, 0.005685972515493631, -7.63593488954939e-05, -0.0213394146412611, 0.007165686693042517, 0.00229660258628428, 0.011314619332551956, 0.02536652982234955, 0.006216233130544424, -0.021368077024817467, -0.013829775154590607, -0.020565520972013474, -0.029379315674304962, -0.03734755888581276, 0.014109237119555473, -0.021869676187634468, 0.04643364995718002, 0.0011285956716164947, 0.00381214520893991, 0.00889261718839407, -0.00688622472807765, 0.007925249636173248, 0.005338436458259821, 0.002085214713588357, 0.025681819766759872, 0.033822041004896164, -4.2910145566565916e-05, 0.01863078586757183, 0.002930765738710761, -0.02556717023253441, 0.020508194342255592, 0.034853897988796234, 0.015305906534194946, 0.0038587222807109356, -0.023732753470540047, -0.029895244166254997, 0.0023772164713591337, 0.05577770248055458, 0.0041489326395094395, 0.04290813207626343, -0.023188162595033646, -0.0059869312681257725, 0.023274149745702744, 0.01695401407778263, 0.008520001545548439, 0.010798689909279346, 0.02960861660540104, 0.011020826175808907, 0.0030006312299519777, 0.006087250541895628, -0.00017231237143278122, 0.011873542331159115, 0.025681819766759872, 0.01236797496676445, -0.01155825238674879, -0.002905685920268297, 0.01015377789735794, -0.02477894350886345, -0.009537529200315475, 0.007054618559777737, 0.012310649268329144, -0.02760222554206848, 0.04981585219502449, 0.016380758956074715, -0.006975796073675156, -0.018516134470701218, 0.030611813068389893, -0.03769151121377945, -0.008297865279018879, -0.003498646430671215, -0.00396620761603117, 0.00048189243534579873, -0.0023449708241969347, -0.002937931567430496, -0.01891741342842579, 0.040185172110795975, -0.03359273821115494, -0.008713474497199059, -0.023818742483854294, 0.02158304862678051, -0.04305144399404526, -0.024578304961323738, 0.0017197647830471396, 0.006151741836220026, 0.03055448830127716, -0.03465326130390167, 0.0049443235620856285, -0.0073591601103544235, 0.00978116225451231, -0.0029468885622918606, -0.01838715188205242, 0.018888749182224274, -0.00708328140899539, 0.010232600383460522, 0.005976182408630848, 0.010031960904598236, 0.01808619312942028, -0.0137724494561553, -0.00852716714143753, -0.007667284458875656, 0.02196999453008175, -0.02768821269273758, 0.009731002151966095, 0.008032734505832195, 0.034911226481199265, -0.008770800195634365, -0.001013944623991847, 0.04399731382727623, 0.03731889650225639, 0.0049443235620856285, 0.032933495938777924, -0.006302221212536097, 0.02493658848106861, 0.018888749182224274, 0.02882039174437523, -0.017326630651950836, 0.00043509152601473033, 0.01339983381330967, 0.017211979255080223, -0.013048714958131313, 0.02093813568353653, -0.01901773177087307, -0.01391576323658228, -0.004861918278038502, 0.010160943493247032, -0.03158634528517723, 0.008434013463556767, 0.018143517896533012, -0.013371171429753304, 0.0186164528131485, -0.007846427150070667, -0.010196772404015064, 0.022500256076455116, -0.01562119647860527, 0.003916047513484955, 0.015191255137324333, -0.016982676461338997, 0.020952466875314713, 0.028505101799964905, -0.011909371241927147, 0.03571378067135811, 0.07486709207296371, 0.012468294240534306, -0.007839261554181576, 0.007588461972773075, 0.0010918715270236135, -0.01296272687613964, -0.009379883296787739, 0.018989069387316704, 0.010755695402622223, 0.03276151791214943, -0.0231021735817194, -0.005628646817058325, -0.030869778245687485, 0.028075160458683968, 0.0036903286818414927, -0.02315949834883213, 0.005123465787619352, 0.026470046490430832, 0.0012262280797585845, -0.0011644241167232394, 0.020235897973179817, 0.017899885773658752, -0.016151458024978638, -0.029923906549811363, -0.027716875076293945, -0.016724713146686554, 0.0065924315713346004, -0.016724713146686554, -0.012547116726636887, 0.029150012880563736, 0.011027991771697998, -0.009824155829846859, 0.009637848474085331, 0.060478392988443375, 0.005216619931161404, -0.0006762616685591638, -0.028791729360818863, 0.007466645445674658, 0.0021622460335493088, -0.011379110626876354, 0.018458807840943336, -0.026685016229748726, -0.0028447776567190886, -0.014553509652614594, -0.01867377944290638, 0.0316150076687336, -0.010189605876803398, -0.015019278973340988, -0.012948395684361458, -0.030067220330238342, -0.01719764806330204, 0.0016848320374265313, -0.007695947308093309, -0.020092586055397987, 0.0047544329427182674, 0.021411070600152016, 0.0572681687772274, -0.0038838020991533995, 0.013048714958131313, 0.0327041931450367, -0.013414165005087852, 0.00014040266978554428, -0.014044745825231075, -0.025237547233700752, -0.028304461389780045, -0.020751828327775, 0.04081575199961662, -0.023245487362146378, -0.019060727208852768, -0.019146714359521866, -0.007882255129516125, 0.03562779352068901, 0.011056654155254364, -0.007473811041563749, 0.04110237956047058, 0.022844208404421806, 0.02168336696922779, 0.03986987844109535, 0.04517248645424843, -0.037662848830223083, -0.02311650477349758, 0.027673881500959396, -0.049586549401283264, 0.02734426036477089, -0.03585709631443024, 0.0006596909952349961, 0.003808562410995364, -0.001788734458386898, -0.004600370768457651, 0.02558150142431259, 0.0023790078703314066, 0.011651406064629555, 0.01612279564142227, 0.02119610086083412, -0.0007053722511045635, -0.005682389251887798, -0.030325185507535934, 0.002599352737888694, 0.008763634599745274, -0.01635209657251835, 0.01243963185697794, 0.01996360346674919, -0.02162604220211506, 0.021984325721859932, 0.011042322963476181, 0.0019329439383000135, -0.02774553932249546, -0.028490770608186722, -0.003973373211920261, 0.0023790078703314066, -0.022442929446697235, 0.0039518759585917, 0.008383853361010551, 0.017254972830414772, 0.0235607773065567, 0.0381501168012619, 0.004765181802213192, -0.0022464427165687084, -0.017412617802619934, -0.003154693404212594, 0.016051137819886208, 0.022012989968061447, -0.011844879947602749, -0.0010829144157469273, -0.009659345261752605, -0.010777192190289497, 0.03089844062924385, -0.033736053854227066, 0.005277527961879969, -0.00418834388256073, 0.014202390797436237, 0.013077378273010254, 0.040328484028577805, 0.0019651895854622126, -0.008455510251224041, 0.03172966092824936, -0.01281224749982357, -0.026097429916262627, 0.011278790421783924, -0.0003914256230928004, -0.03221692517399788, 0.02469295635819435, -0.00872064009308815, 0.0007412006962113082, -0.003987704403698444, -0.011242962442338467, 0.007588461972773075, 0.008921279571950436, 0.03221692517399788, -0.005058974493294954, -0.02675667405128479, 0.0054423389956355095, 0.03634436056017876, 0.005707469303160906, 0.0074379825964570045, -0.03780616074800491, 0.02552417479455471, -0.01873110421001911, -0.005266779568046331, -0.006771573796868324, -0.011422104202210903, 0.0024255849421024323, -0.014689657837152481, -0.024005049839615822, 0.007283920422196388, -0.022041652351617813, 0.0158075038343668, -0.003808562410995364, 0.0014286587247624993, 0.03049716167151928, 0.012833744287490845, -0.0115510867908597, 0.0055354926735162735, 0.014703989028930664, 0.014489018358290195, -0.0005168251227587461, -0.0007291086367331445, 0.015305906534194946, 0.01822950690984726, 0.026985974982380867, 0.03198762610554695, -0.011393441818654537, 0.010361582972109318, 0.03522651642560959, 0.009121919050812721, 0.004955072421580553, -0.016423754394054413, -0.004406897351145744, -0.010648210532963276, -0.008018403314054012, -0.0055677383206784725, 0.029837919399142265, 0.004496468231081963, 0.034624598920345306, 0.024406328797340393, 0.030812451615929604, 0.01729796826839447, 0.013113206252455711, -0.0383220911026001, -0.013206359930336475, -0.009322558529675007, 0.005918857175856829, -0.013657798990607262, -0.00148150569293648, -0.012769253924489021, 0.007989740930497646, -0.02887771651148796, 0.010239765979349613, -0.014044745825231075, 0.0066712540574371815, 0.0037261571269482374, -0.00529902521520853, -0.028404781594872475, -0.0012405595043674111, 0.013543147593736649, -0.0024452905636280775, 0.016079800203442574, 0.06449118256568909, 0.002119251759722829, -0.05084771290421486, 0.012833744287490845, -0.012998555786907673, 0.011235796846449375, -0.03433797135949135, 0.010053458623588085, 0.004933575168251991, 0.027974840253591537, -0.02399071864783764, 0.02562449499964714, -0.017326630651950836, -0.024907926097512245, -0.022055983543395996, 0.022356942296028137, 0.021640373393893242, -0.03178698569536209, -0.007144189439713955, -0.00993164163082838, -0.02035054937005043, 0.04322342202067375, -0.02182668074965477, -0.024649960920214653, -0.01749860681593418, 0.018014535307884216, 0.003754819743335247, 0.04522981494665146, 0.010856015607714653, 0.018759766593575478, -0.007803432643413544, -0.005875863134860992, 0.004840421490371227, -0.016968345269560814, 0.016624392941594124, 0.02611176110804081, 0.012274821288883686, -0.0325322188436985, 0.03399401530623436, 0.017125990241765976, 0.0010497730690985918, -0.006424038205295801, 0.02760222554206848, -0.02626940608024597, -0.03055448830127716, 0.01081302110105753, -0.00034350508940406144, -0.0006749181193299592, 0.002026097849011421, 0.018444476649165154, -0.032990820705890656, -0.04035714641213417, 0.018516134470701218, 0.020780490711331367, 0.03803546354174614, 0.04007051885128021, 0.00235213665291667, -0.019275696948170662, 0.019347352907061577, 0.012912566773593426, 0.014209556393325329, -0.0037512369453907013, -0.009286729618906975, -0.02207031473517418, -0.02404804341495037, -0.02710062637925148, -0.024306008592247963, -0.0026477212086319923, 0.0009037721902132034, -0.029092688113451004, -0.01832982711493969, -0.019232703372836113, 0.0174412801861763, 0.011027991771697998, 0.02606876753270626, -0.005015980452299118, -0.0022768969647586346, -0.0017036419594660401, -0.006140993442386389, 0.012002524919807911, 0.024993915110826492, -0.01355031318962574, -0.01542055793106556, -0.01162990927696228, 0.0014492601621896029, -0.010246931575238705, -0.005768377799540758, 0.039153311401605606, 0.025309205055236816, -0.00963068287819624, 0.009028765372931957, -0.020565520972013474, -0.009831322357058525, 0.017269304022192955, 0.026928650215268135, 0.005030312109738588, -0.006961464416235685, -0.004231337923556566, -0.0019687723834067583, 0.004808175843209028, 0.030525824055075645, 0.014446023851633072, 0.004113104194402695, 0.029407978057861328, 0.005091220140457153, 0.009838487952947617, -0.004234920721501112, 0.046490974724292755, -0.0024811190087348223, -0.0036491258069872856, -0.007703112903982401, 0.013507319614291191, -0.024721618741750717, 0.012905401177704334, 0.002540235873311758, 0.03405134379863739, -0.013779615052044392, 0.017254972830414772, 0.016982676461338997, 0.026384057477116585, 0.030984429642558098, 0.0010954543249681592, -0.023933393880724907, -0.04029982164502144, 0.03167233616113663, 0.0004071005678270012, 0.0010273803491145372, 0.013657798990607262, 0.043882664293050766, -0.012346478179097176, 0.022557580843567848, 0.0098528191447258, 0.0009745333809405565, -0.025954116135835648, 0.02364676631987095, -0.0034001183230429888, -0.010899009183049202, -0.00908609014004469, -0.010798689909279346, 0.027186615392565727, 0.005170043092221022, -0.022485924884676933, 0.02073749713599682, 0.02768821269273758, -0.009272398427128792, -0.0022088228724896908, 0.010282760486006737, -0.020579852163791656, 0.014675325714051723, 0.016323434188961983, -0.005313356406986713, -0.006979378871619701, -0.05546241253614426, 0.0015343526611104608, 0.0017941087717190385, -0.013263685628771782, -0.017713576555252075, 0.004120269790291786, -0.05712485313415527, 0.022242290899157524, 0.028419112786650658, -0.008391018956899643, -0.010583719238638878, 0.008269201964139938, 0.01532023772597313, 0.042793478816747665, 0.014947622083127499, 0.04371068626642227, 0.008541498333215714, 0.008520001545548439, 0.011966696940362453, -0.002529487246647477]" diff --git a/openai_pgvector_helloworld/blog_data_and_embeddings.json b/openai_pgvector_helloworld/blog_data_and_embeddings.json deleted file mode 100644 index 2599695..0000000 --- a/openai_pgvector_helloworld/blog_data_and_embeddings.json +++ /dev/null @@ -1 +0,0 @@ -{"title":{"0":"How to Build a Weather Station With Elixir, Nerves, and TimescaleDB","1":"How to Build a Weather Station With Elixir, Nerves, and TimescaleDB","2":"How to Build a Weather Station With Elixir, Nerves, and TimescaleDB","3":"CloudQuery on Using PostgreSQL for Cloud Assets Visibility","4":"CloudQuery on Using PostgreSQL for Cloud Assets Visibility","5":"CloudQuery on Using PostgreSQL for Cloud Assets Visibility","6":"CloudQuery on Using PostgreSQL for Cloud Assets Visibility","7":"How a Data Scientist Is Building a Time-Series Forecasting Pipeline Using TimescaleDB","8":"How a Data Scientist Is Building a Time-Series Forecasting Pipeline Using TimescaleDB","9":"How a Data Scientist Is Building a Time-Series Forecasting Pipeline Using TimescaleDB","10":"How a Data Scientist Is Building a Time-Series Forecasting Pipeline Using TimescaleDB","11":"How a Data Scientist Is Building a Time-Series Forecasting Pipeline Using TimescaleDB","12":"How Conserv Safeguards History: Building an Environmental Monitoring and Preventive Conservation IoT Platform","13":"How Conserv Safeguards History: Building an Environmental Monitoring and Preventive Conservation IoT Platform","14":"How Conserv Safeguards History: Building an Environmental Monitoring and Preventive Conservation IoT Platform","15":"How Conserv Safeguards History: Building an Environmental Monitoring and Preventive Conservation IoT Platform","16":"How Conserv Safeguards History: Building an Environmental Monitoring and Preventive Conservation IoT Platform","17":"How Messari Uses Data to Open the Cryptoeconomy to Everyone","18":"How Messari Uses Data to Open the Cryptoeconomy to Everyone","19":"How Messari Uses Data to Open the Cryptoeconomy to Everyone","20":"How Messari Uses Data to Open the Cryptoeconomy to Everyone","21":"How Messari Uses Data to Open the Cryptoeconomy to Everyone","22":"How Messari Uses Data to Open the Cryptoeconomy to Everyone","23":"How WsprDaemon Combines TimescaleDB and Grafana to Measure and Analyze Radio Transmissions","24":"How WsprDaemon Combines TimescaleDB and Grafana to Measure and Analyze Radio Transmissions","25":"How WsprDaemon Combines TimescaleDB and Grafana to Measure and Analyze Radio Transmissions","26":"How WsprDaemon Combines TimescaleDB and Grafana to Measure and Analyze Radio Transmissions","27":"How WsprDaemon Combines TimescaleDB and Grafana to Measure and Analyze Radio Transmissions","28":"How WsprDaemon Combines TimescaleDB and Grafana to Measure and Analyze Radio Transmissions","29":"How Ndustrial Is Providing Fast Real-Time Queries and Safely Storing Client Data With 97\u00a0% Compression","30":"How Ndustrial Is Providing Fast Real-Time Queries and Safely Storing Client Data With 97\u00a0% Compression","31":"How Ndustrial Is Providing Fast Real-Time Queries and Safely Storing Client Data With 97\u00a0% Compression","32":"How Ndustrial Is Providing Fast Real-Time Queries and Safely Storing Client Data With 97\u00a0% Compression","33":"How Ndustrial Is Providing Fast Real-Time Queries and Safely Storing Client Data With 97\u00a0% Compression","34":"How Ndustrial Is Providing Fast Real-Time Queries and Safely Storing Client Data With 97\u00a0% Compression","35":"How Ndustrial Is Providing Fast Real-Time Queries and Safely Storing Client Data With 97\u00a0% Compression","36":"How Ndustrial Is Providing Fast Real-Time Queries and Safely Storing Client Data With 97\u00a0% Compression","37":"How Ndustrial Is Providing Fast Real-Time Queries and Safely Storing Client Data With 97\u00a0% Compression","38":"How Ndustrial Is Providing Fast Real-Time Queries and Safely Storing Client Data With 97\u00a0% Compression","39":"How I Power a (Successful) Crypto Trading Bot With TimescaleDB","40":"How I Power a (Successful) Crypto Trading Bot With TimescaleDB","41":"How I Power a (Successful) Crypto Trading Bot With TimescaleDB","42":"How I Power a (Successful) Crypto Trading Bot With TimescaleDB","43":"How I Power a (Successful) Crypto Trading Bot With TimescaleDB","44":"Using IoT Sensors, TimescaleDB, and Grafana to Control the Temperature of the Nuclear Fusion Experiment at the Max Planck Institute","45":"Using IoT Sensors, TimescaleDB, and Grafana to Control the Temperature of the Nuclear Fusion Experiment at the Max Planck Institute","46":"Using IoT Sensors, TimescaleDB, and Grafana to Control the Temperature of the Nuclear Fusion Experiment at the Max Planck Institute","47":"Using IoT Sensors, TimescaleDB, and Grafana to Control the Temperature of the Nuclear Fusion Experiment at the Max Planck Institute","48":"Using IoT Sensors, TimescaleDB, and Grafana to Control the Temperature of the Nuclear Fusion Experiment at the Max Planck Institute","49":"Using IoT Sensors, TimescaleDB, and Grafana to Control the Temperature of the Nuclear Fusion Experiment at the Max Planck Institute","50":"Using IoT Sensors, TimescaleDB, and Grafana to Control the Temperature of the Nuclear Fusion Experiment at the Max Planck Institute","51":"How Trading Strategy Built a Data Stack for Crypto Quant Trading","52":"How Trading Strategy Built a Data Stack for Crypto Quant Trading","53":"How Trading Strategy Built a Data Stack for Crypto Quant Trading","54":"Automated Mocking Using API Traffic: Speedscale's Story","55":"Automated Mocking Using API Traffic: Speedscale's Story","56":"Automated Mocking Using API Traffic: Speedscale's Story","57":"Automated Mocking Using API Traffic: Speedscale's Story","58":"How NLP Cloud Monitors Their Language AI API","59":"How NLP Cloud Monitors Their Language AI API","60":"How NLP Cloud Monitors Their Language AI API","61":"How NLP Cloud Monitors Their Language AI API","62":"Visualizing IoT Data at Scale With Hopara and TimescaleDB","63":"Visualizing IoT Data at Scale With Hopara and TimescaleDB","64":"Visualizing IoT Data at Scale With Hopara and TimescaleDB","65":"Visualizing IoT Data at Scale With Hopara and TimescaleDB","66":"Visualizing IoT Data at Scale With Hopara and TimescaleDB","67":"How Octave Achieves a High Compression Ratio and Speedy Queries on Historical Data While Revolutionizing the Battery Market","68":"How Octave Achieves a High Compression Ratio and Speedy Queries on Historical Data While Revolutionizing the Battery Market","69":"How Octave Achieves a High Compression Ratio and Speedy Queries on Historical Data While Revolutionizing the Battery Market","70":"How Octave Achieves a High Compression Ratio and Speedy Queries on Historical Data While Revolutionizing the Battery Market","71":"How Density Manages Large Real Estate Portfolios Using TimescaleDB","72":"How Density Manages Large Real Estate Portfolios Using TimescaleDB","73":"How Density Manages Large Real Estate Portfolios Using TimescaleDB","74":"How Density Manages Large Real Estate Portfolios Using TimescaleDB","75":"How Density Manages Large Real Estate Portfolios Using TimescaleDB","76":"How Density Manages Large Real Estate Portfolios Using TimescaleDB","77":"How Density Manages Large Real Estate Portfolios Using TimescaleDB","78":"How Density Manages Large Real Estate Portfolios Using TimescaleDB","79":"How METER Group Brings a Data-Driven Approach to the Cannabis Production Industry","80":"How METER Group Brings a Data-Driven Approach to the Cannabis Production Industry","81":"How METER Group Brings a Data-Driven Approach to the Cannabis Production Industry","82":"How METER Group Brings a Data-Driven Approach to the Cannabis Production Industry","83":"How METER Group Brings a Data-Driven Approach to the Cannabis Production Industry","84":"How METER Group Brings a Data-Driven Approach to the Cannabis Production Industry","85":"How METER Group Brings a Data-Driven Approach to the Cannabis Production Industry","86":"How METER Group Brings a Data-Driven Approach to the Cannabis Production Industry","87":"How METER Group Brings a Data-Driven Approach to the Cannabis Production Industry","88":"How Flowkey Scaled Its AWS Redshift Data Warehouse With Timescale","89":"How Flowkey Scaled Its AWS Redshift Data Warehouse With Timescale","90":"How Flowkey Scaled Its AWS Redshift Data Warehouse With Timescale","91":"How Flowkey Scaled Its AWS Redshift Data Warehouse With Timescale","92":"How United Manufacturing Hub Is Introducing Open Source to Manufacturing and Using Time-Series Data for Predictive Maintenance","93":"How United Manufacturing Hub Is Introducing Open Source to Manufacturing and Using Time-Series Data for Predictive Maintenance","94":"How United Manufacturing Hub Is Introducing Open Source to Manufacturing and Using Time-Series Data for Predictive Maintenance","95":"How United Manufacturing Hub Is Introducing Open Source to Manufacturing and Using Time-Series Data for Predictive Maintenance","96":"How United Manufacturing Hub Is Introducing Open Source to Manufacturing and Using Time-Series Data for Predictive Maintenance","97":"How Edeva Uses Continuous Aggregations and IoT to Build Smarter Cities","98":"How Edeva Uses Continuous Aggregations and IoT to Build Smarter Cities","99":"How Edeva Uses Continuous Aggregations and IoT to Build Smarter Cities","100":"How Edeva Uses Continuous Aggregations and IoT to Build Smarter Cities","101":"How Edeva Uses Continuous Aggregations and IoT to Build Smarter Cities","102":"How Edeva Uses Continuous Aggregations and IoT to Build Smarter Cities","103":"How Everactive Powers a Dense Sensor Network With Virtually No Power at All","104":"How Everactive Powers a Dense Sensor Network With Virtually No Power at All","105":"How Everactive Powers a Dense Sensor Network With Virtually No Power at All","106":"How Everactive Powers a Dense Sensor Network With Virtually No Power at All","107":"How Everactive Powers a Dense Sensor Network With Virtually No Power at All","108":"How Everactive Powers a Dense Sensor Network With Virtually No Power at All","109":"How to Reduce Query Cost With a Wide Table Layout in TimescaleDB","110":"How to Reduce Query Cost With a Wide Table Layout in TimescaleDB","111":"How to Reduce Query Cost With a Wide Table Layout in TimescaleDB","112":"How to Reduce Query Cost With a Wide Table Layout in TimescaleDB","113":"How to Reduce Query Cost With a Wide Table Layout in TimescaleDB","114":"Processing and Protecting Hundreds of Terabytes of Blockchain Data: Zondax\u2019s Story","115":"Processing and Protecting Hundreds of Terabytes of Blockchain Data: Zondax\u2019s Story","116":"Processing and Protecting Hundreds of Terabytes of Blockchain Data: Zondax\u2019s Story","117":"Processing and Protecting Hundreds of Terabytes of Blockchain Data: Zondax\u2019s Story","118":"How FlightAware Fuels Flight Prediction Models for Global Travelers With TimescaleDB and Grafana","119":"How FlightAware Fuels Flight Prediction Models for Global Travelers With TimescaleDB and Grafana","120":"How FlightAware Fuels Flight Prediction Models for Global Travelers With TimescaleDB and Grafana","121":"How FlightAware Fuels Flight Prediction Models for Global Travelers With TimescaleDB and Grafana","122":"How FlightAware Fuels Flight Prediction Models for Global Travelers With TimescaleDB and Grafana","123":"How FlightAware Fuels Flight Prediction Models for Global Travelers With TimescaleDB and Grafana","124":"How Newtrax Is Using TimescaleDB and Hypertables to Save Lives in Mines While Optimizing Profitability","125":"How Newtrax Is Using TimescaleDB and Hypertables to Save Lives in Mines While Optimizing Profitability","126":"How Newtrax Is Using TimescaleDB and Hypertables to Save Lives in Mines While Optimizing Profitability","127":"How Newtrax Is Using TimescaleDB and Hypertables to Save Lives in Mines While Optimizing Profitability","128":"How Newtrax Is Using TimescaleDB and Hypertables to Save Lives in Mines While Optimizing Profitability"},"content":{"0":"This is an installment of our \u201cCommunity Member Spotlight\u201d series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition,Alexander Koutmos, author of the Build a Weather Station with Elixir and Nerves book, joins us to share how he uses Grafana and TimescaleDB to store and visualize weather data collected from IoT sensors.About the teamThe bookBuild a Weather Station with Elixir and Nerveswas a joint effort between Bruce Tate, Frank Hunleth, and me.I have been writing software professionally for almost a decade and have been working primarily with Elixir since 2016. I currently maintain a few Elixir libraries onHexand also runStagira, a software consultancy company.Bruce Tateis a kayaker, programmer, and father of two from Chattanooga, Tennessee. He is the author of more than ten books and has been around Elixir from the beginning. He is the founder ofGroxio, a company that trains Elixir developers.Frank Hunlethis an embedded systems programmer, OSS maintainer, and Nerves core team member. When not in front of a computer, he loves running and spending time with his family.About the projectIn the Pragmatic Bookshelf book,Build a Weather Station with Elixir and Nerves, we take a project-based approach and guide the reader to create a Nerves-powered IoT weather station.For those unfamiliar with the Elixir ecosystem,Nervesis an IoT framework that allows you to build and deploy IoT applications on a wide array of embedded devices. At a high level, Nerves allows you to focus on building your project and takes care of a lot of the boilerplate associated with running Elixir on embedded devices.The goal of the book is to guide the reader through the process of building an end-to-end IoT solution for capturing, persisting, and visualizing weather data.Assembled weather station hooked up to development machine.One of the motivating factors for this book was to create a real-world project where readers could get hands-on experience with hardware without worrying too much about the nitty-gritty of soldering components together. Experimenting with hardware can often feel intimidating and confusing, but with Elixir and Nerves, we feel confident that even beginners get comfortable and productive quickly. As a result, in the book, we leverage a Raspberry Pi Zero W along with a few I2C enabled sensors to","1":"capture weather and environmental data. In all, the reader will capture and persist into TimescaleDB the current: altitude, atmospheric pressure, temperature, CO2 levels,TVOClevels, and the ambient light.Once the environmental data is captured on the Nerves device, it is published to a backend REST API and stored in TimescaleDB for later analytics\/visualization. Luckily, TimescaleDB is an extension on top of PostgreSQL, allowing Elixir developers to use existing database tooling likeEctoto interface with time-series enabled tables.After the time-series weather data is stored in TimescaleDB, we walk the reader through how to visualize this data using the popular open-source visualization toolGrafana.Using Grafana for visualizing the weather was an easy choice given that Grafana natively supports TimescaleDB and is able to easily plot time-series data stored in TimescaleDB hypertables.\u2728Editor\u2019s Note:Check outGrafana 101 video seriesandGrafana tutorialsto learn everything from building awesome, interactive visualizations to setting up custom alerts, sharing dashboards with teammates, and solving common issues.The diagram shows all of the various components of the weather station system and how they interact with one another.By the end of the book, readers have a fully-featured IoT application and API backend that can power a live Grafana dashboard in order to plot their TimescaleDB data published from their Nerves weather station.Screenshot of Grafana dashboard, showing various graphs for various weather data\ud83d\udcd6If you are interested in learning about how to build an end-to-end IoT weather monitoring solution, be sure tocheck out the book and the accompanying code. If you are interested in learning more about Nerves and Elixir,check out the Nerves documentation.Choosing (and using!) TimescaleDBFrom the onset of the book, we knew that we wanted to use a purpose-built time-series database to persist the weather station data. We wanted the project to be as realistic as possible and something that could possibly be expanded for use in the real world.With that goal in mind, TimescaleDB was an obvious choice given that PostgreSQL has become a ubiquitous database and it has great support in the Elixir community. In addition,leveraging TimescaleDB on top of PostgreSQL does not add a tremendous amount of overhead or complexity and allows new users to easily leverage the benefits of a time-series database without having to learn any new query languages or databases. Specifically, all it took for readers to start leveraging TimescaleDB was to run a single SQL","2":"command in their database migration:SELECT create_hypertable('weather_conditions', 'timestamp').\"It\u2019s this kind of pragmatism and ease of use that makes TimescaleDB a great time-series database for projects both small and large. \"-Alexander KoutmousAll in all, leveraging TimescaleDB as the time-series database for the project worked out great and allowed us to show readers how they can set up a production-ready IoT project in a relatively short amount of time.\u2728Editor\u2019s Note:To start with TimescaleDB today,sign up for a free 30-day trialorinstall TimescaleDB on your own server.Getting started advice & resourcesAny time we had questions about the inner workings of TimescaleDB, how to set it up, or what the various configuration options are, we turned to the official TimescaleDB docs. Some of the articles that helped us get started included:\u2022Using TimescaleDB via Docker\u2022 Understanding some ofthe fundamental TimescaleDB concepts\u2022 Getting an overview of some of theTimescaleDB best practicesWe\u2019d like to thank Alex, Bruce, and Frank for sharing their story, as well as for writing a book that makes building full-stack IoT solutions accessible for complete beginners. We congratulate them and the entire Nerves community on their success, and we cannot wait to read the final version of their book that will be released in January 2022 \ud83c\udf8aWe\u2019re always keen to feature new community projects and stories on our blog. If you have a story or project you\u2019d like to share, reach out on Slack (@Lucie \u0160ime\u010dkov\u00e1), and we\u2019ll go from there.Additionally, if you\u2019re looking for more ways to get involved and show your expertise, check out theTimescaleHeroes program.The open-source relational database for time-series and analytics.Try Timescale for free","3":"This is an installment of our \u201cCommunity Member Spotlight\u201d series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition,Ron Eliahu, CTO and co-founder at CloudQuery, joins us to share how they transform data about cloud assets into PostgreSQL tables to give developers visibility into the health of cloud infrastructure. Thanks toTimescaleDB, CloudQuery users manage their data more transparently while maintaining scalability.CloudQueryis an open-source cloud asset inventory powered by SQL. CloudQuery extracts, transforms, and loads cloud assets intonormalizedPostgreSQL tables, enabling developers to assess, audit, and monitor the configurations of their cloud assets.Cloud asset inventory is a key component to solve various challenges in the cloud:Cloud Infrastructure Monitoring, Visibility, and Search: Give developers, SREs, DevOps, and security engineers a streamlined way to gain visibility and perform a wide range of tasks. These tasks include security analytics, fleet management auditing, governance, and cost.Security & Compliance: Turn security and compliance tasks to data problems and solve them with the best tools and practices in DataOps. UseCloudQuery Policiesto codify, version control, and automate security and compliance rules with SQL.Infrastructure as Code (IaC) Drift Detection: CloudQuery leverages its asset inventory to quickly detect drift against IaC (Terraform, more to come) which you can run both in the CI and locally.\ud83d\udcd6Read CloudQuery\u00b4sannouncement blogabout releasing CloudQuery History in Alpha and adding support for TimescaleDB.About the teamWe started CloudQuery a year ago, to solve the cloud asset visibility problem, and quickly gained traction. We are currently a small but mighty team of open-source and cloud security enthusiasts, spread all around the world!A little about myselfRon Eliahu, I am the CTO and co-founder at CloudQuery, I am an engineer at heart, I love building open source projects and working with anything database-related.About the projectQueryable cloud asset inventory is key in solving a lot of core challenges in the cloud such as security, compliance, search, cost, and IaC drift detection. That is why we started CloudQuery and followed a few key decisions:PostgreSQL- The most used database in the world with a huge ecosystem of business intelligence and visualization tools.Open-source- To cover a huge amount of API and cloud providers we decided to make this open-source where everyone can contribute without being blocked by a vendor.Pluggable","4":"Architecture with CloudQuery SDK- Writing plugins, extracting configuration data, transforming it, and loading it to PostgreSQL requires a lot of boilerplate code. To scale this and improve the developer\u2019s experience both internally and externally we releasedCloudQuery SDK.Normalized PostgreSQL tables inDataGripcontaining data about cloud assets from Microsoft AzureAnother key observation and requirement that we saw early on for a cloud asset inventory is the ability to not only query the current state but also go back in time. This is super useful for tasks such as forensics, post-mortems, compliance, and more.This feature required us to maintain historical snapshots in PostgreSQL and we started to look out for a solution, which was quite a journey for us.Choosing (and using!) TimescaleDBFirst attempt: PostgreSQL PartitioningWith some good experience ofPostgreSQLunder our belt, the first thing we tried isPostgreSQL partitioningPretty quickly it turned out to be not as easy as expected, hard to maintain and manage, lacking easily creatable retention policies, and bucketing queries. Given our philosophy is to integrate with best-in-class tools and focus our development efforts on our core business use-cases we started looking for an alternative solution.\u2728Editor\u2019s Note:For more comparisons and benchmarks, seehow TimescaleDB compares to InfluxDB, MongoDB, AWS Timestream, vanilla PostgreSQL, and other time-series database alternativeson various vectors, from performance and ecosystem to query language and beyond.Second attempt: TimescaleDBGiven CloudQuery uses PostgreSQL under the hood, supporting historical snapshots in a scalable way usually involves using partitioning. TimescaleDB\u00b4screate_hyperfunctionsfeature allows us to do just that in a simple and effective way giving our users a transparent and automated way to manage their data while still maintaining scalability.Current CloudQuery architecture diagramCloudQuery transforms cloud resources into tables, some of these resources have a complex data structure, and are split into multiple relational tables, some of which are hypertables. In order to retain data integrity, we use foreign key relationships (withON DELETE CASCADE) to the root resource table. With these foreign keys in place, if a reference to a cloud resource is deleted (for instance a S3 bucket), the downstream data is removed.While TimescaleDB hypertablesdosupport using foreign keys that reference a regular PostgreSQL table, hypertable cannot be thesource reference of a foreign keyIn our case, some of our \"root\" reference tables are hypertables which meant that we had to come up with another way to do the cascading deletes to retain","5":"data integrity.A common alternative is to create trigger functions that will cause a delete on the relation table if a row is deleted in the parent table, the issue here is that some resources in CloudQuery can have three or more levels of relations and we didn\u2019t want to create many queries to solve this, so we came up with the following functions to easily create the deletion cascade.First, we wanted a trigger function that will delete our relational table. We used trigger arguments to pass the relation table name its foreign key name so we can delete the data in the relation table. Full code is availablehere.CREATE OR REPLACE FUNCTION history.cascade_delete() RETURNS trigger LANGUAGE 'plpgsql' COST 100 VOLATILE NOT LEAKPROOF AS $BODY$ BEGIN BEGIN IF (TG_OP = 'DELETE') THEN EXECUTE format('DELETE FROM history.%I where %I = %L AND cq_fetch_date = %L', TG_ARGV[0], TG_ARGV[1], OLD.cq_id, OLD.cq_fetch_date); RETURN OLD; END IF; RETURN NULL; -- result is ignored since this is an AFTER trigger END; END; $BODY$;Then, we call the create trigger function on the root table and pass these arguments to the child. Full code is availablehere.CREATE OR REPLACE FUNCTION history.build_trigger(_table_name text, _child_table_name text, _parent_id text) RETURNS integer LANGUAGE 'plpgsql' COST 100 VOLATILE PARALLEL UNSAFE AS $BODY$ BEGIN IF NOT EXISTS ( SELECT 1 FROM pg_trigger WHERE tgname = _child_table_name ) then EXECUTE format( 'CREATE TRIGGER %I BEFORE DELETE ON history.%I FOR EACH ROW EXECUTE PROCEDURE history.cascade_delete(%s, %s)'::text, _child_table_name, _table_name, _child_table_name, _parent_id); return 0; ELSE return 1; END IF; END; $BODY$;To sum it all up, we built two generic SQL functions to make sure all our hypertables and relational hypertables data get deleted if the root table has any data removed.Future plansCompliance overtime is a common request so we are working on integrating the results ofCloudQuery Policieswith TimescaleDB so you can monitor and visualize compliance with TimescaleDB and Grafana.Getting started advice & resourcesBefore you jump into implementing your own partition strategy, definitely give TimescaleDB a try. It can save you a lot of development time and make your product more robust.The Timescale documentationis a great place to start.\ud83d\uddde\ufe0fSubscribe to our newsletter atcloudquery.ioand join ourDiscordto hear about our upcoming and latest features.We\u2019d like to thank Ron and all folks at the CloudQuery team for sharing their story, as well as for their work to transform complex","6":"and scattered cloud assets data into structured and easily accessible tables enabling developers to monitor their cloud inventory.We\u2019re always keen to feature new community projects and stories on our blog. If you have a story or project you\u2019d like to share, reach out on Slack (@Lucie \u0160ime\u010dkov\u00e1), and we\u2019ll go from there.The open-source relational database for time-series and analytics.Try Timescale for free","7":"This is an installment of our \u201cCommunity Member Spotlight\u201d series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition, Andrew Engel, chief data scientist atRasgo,explains how he has been using TimescaleDB to build a time-series forecasting side project. He\u2019s working on proofs of concept of machine learning pipelines to pull relevant data\u2014 from sports statistics to betting odds and finance pricing data\u2014to make predictions for better decision-making or bets.About the UserI am currently the chief data scientist at Rasgo. Before joining Rasgo, I worked as a data scientist and data science leader for over 10 years across various fields. I received my Ph.D. in Systems and Industrial Engineering with a focus on decision-making under uncertainty and probability modeling from the University of Arizona. After my Ph.D., I was an assistant professor of Applied Mathematics at Towson University, where I began working on data science problems.As my career progressed, I found myself doing less and less technical work in data science and more time spent on team building, interacting with management and customers, and basically talking about data science instead of doing data science. This culminated in 2016 when I took a role withDataRobotto help their prospects and customers use DataRobot\u2019s machine learning platform to implement their data science initiatives successfully.While this was, and still is, fulfilling work, I missed the technical work that originally drew me into data science. DataRobot encouraged us to do this (and leverage their product). In short, I became the DataRobot Marketing team's go-to content writer about sports analytics and betting. As part of this, I would build machine learning models to predict the outcome of sporting events. I regularly wrote blogs on my predictions for Grand Slam tennis, the Super Bowl (and NFL playoffs), the Champions League knockout stage, and the Premier League.Because of this and contacts developed over the years as a data scientist, multiple people have asked me to advise and even build proofs of concept of machine learning pipelines to automate both sports betting predictions and market models (from financial markets to sports betting markets in aid of monetizing these sports predictions).About the ProjectAndrew\u2019setu package on GitLabIn my spare time, I have been building proofs of","8":"concept of machine learning pipelines to pull relevant data (this could be sports statistics, historical sports betting odds, or financial market pricing data), use machine learning to make predictions, and share those predictions back to the organization to help them make decisions or bets.Initially, all of this was written in Python, usingAirflowto orchestrate the entire pipeline. I always used PostgreSQL as my database and have been a long-time user for several reasons. While I was a graduate student, I supported myself as a web programmer during the first web boom, and we used Oracle as our database. During this job, I learned SQL and saw the power of enterprise-ready databases. For personal projects, I could afford neither Oracle itself nor the hardware to run it. Evaluating the open-source SQL databases, PostgreSQL was by far the most feature-complete (and similar to what I already knew). This is still true today.But, back to my project. Using PostgreSQL, I would write the original data, the engineered features for modeling, and the final predictions into the database for model monitoring and future model development.In all of these cases, the underlying data is event data and has time-series characteristics. This means that as a data scientist, I was interested in capturing how the data changed over time. For example, when modeling a sports betting market, I was interested in how the betting line or odds would change over time. Was it rising, falling, oscillating, etc.? Capturing this information as machine learning features was key to my models performing well. I typically used a Python library calledtsfreshto build these features.\u2728Editor's Note:Do you know what time-series data is?The answer is in this blog post.As the amount of data grew, I spent most of the time in the pipeline pulling data from the database, building the features, and pushing the results back to the database.Choosing (and Using!) TimescaleDBAs I was first working on these sorts of problems in my spare time, DataRobot asked me to lead their go-to-market efforts in the sports and entertainment space. In this new role, I began talking with several Formula 1 teams about possibly using DataRobot in their workflows.\u201cDuring the investigation of TimescaleDB, I realized I could use PostgreSQL\u2019s support of custom extensions built in Python to allow me to call tsfresh functions directly within the database","9":"without the expense of moving the data out or pulling it back in\u201dAs part of these conversations, I learned aboutKdb+ from KX Systems. This is a high-performance columnar time-series database used by F1 teams to store and process sensor data collected from their cars (and simulations). Financial institutions also use it to store and process market data. More intriguing from my point of view was that Kdb+ included a reimplementation of tsfresh within the database.I understood the power of Kdb+, but its price was well out of my budget for these proofs of concept. Still, I liked the idea of a database that supported time-series data and could process it efficiently.I have been using PostgreSQL for years and including it in the technology stack I used in these proofs of concept. While other databases supported time series, TimescaleDB combined the familiarity of PostgreSQL, making it the clear choice.During the investigation of TimescaleDB, I realized I could use PostgreSQL\u2019s support of custom extensions built in Python to allow me to call tsfresh functions directly within the database without the expense of moving the data out or pulling it back in.In addition, TimescaleDB\u2019s time_bucket() function would allow me to perform my time-series aggregations for arbitrary time intervals (eg., on a daily or weekly basis) as opposed to estimating the time period from a set number of rows. This was a huge improvement over using either tsfresh in Python (where it worked at a set number of rows) or a window function in PostgreSQL.\u2728Editor's Note:Read our docs to learn how you can best use TimescaleDB\u2019s time_bucket() hyperfunction.I then implemented all of the tsfresh functions as custom extensions in Python and built custom types to pass the necessary information into the function and custom aggregations to perform the aggregations to get the data ready for the time-series feature.As expected, there were significant benefits to moving this processing into the database. In addition to eliminating the time to extract and insert the data, the database handled running these calculations in parallel much more simply than trying to manage them within Python.\u201cBy releasing this as open source, I hope to help anyone [...] working on any sort of time-series problem to be able to fully leverage the power of TimescaleDB to manage their time-series data\u201dIt was not without its drawbacks,","10":"however. First, PL\/Python is untrusted in PostgreSQL and limits the types of users that could use these functions. More importantly, each time the function was called, the Python interpreter was started, and the tsfresh library and its dependencies were loaded. This meant that most of the processing time was spent on getting ready to perform the calculations instead of the actual calculations. The speedup was significantly less than expected.At this point, I saw promise in this approach but needed to make it faster. This led me to reimplement the tsfresh functions in C and create custom C extensions for PostgreSQL and TimescaleDB. With these C extensions, I was able to generate a performance improvement between 10-100 times faster than the corresponding performance of the PL\/Python version.\u2728Editor's Note:If you want to extend aggregate functions in PostgreSQL but find it daunting to create and maintain them in C,check out this video where we explain how PGX can help create, test, and deploy aggregates using Rust.Current Deployment & Future PlansWhen I saw this performance, I felt I needed to clean up my code and make it available to the community as open source. This led to two packages:etu, which contains the reimplementation of tsfresh feature calculators in C, andpgetu, which includes the C extension that wraps etu and makes it available as functions in PostgreSQL and TimescaleDB.As an example, these functions can be called in a SELECT statement in TimescaleDB as:SELECT time_bucket(interval '1 months', date) AS month, absolute_sum_of_changes(amount, date) AS amount_asoc, approximate_entropy(amount, date, 1, 0.1) AS amount_ae, fft_aggregated(amount, date, ARRAY['centroid', 'variance', 'skew', 'kurtosis']) as ammount_fft_agg, median(amount) as median_amount, mode(amount) as mode_amount FROM transactions GROUP BY month ORDER BY month;Here\u2019s another example: this is looking at the power output of a windmill based on wind speed.SELECT TIME_BUCKET(interval '1 hour, time) AS hour, autocorrelation(windspeed, time, 1) AS windspeed_autocorrelation_1, autocorrelation(output, time, 1) AS output_autocorrelation_1, count_above_mean(output) AS output_cam, count_below_mean(output) AS output_cbm, energy(windspeed, time) AS windspeed_energy, fft_coefficient(windspeed, time, ARRAY[1, 1, 2, 2], ARRAY['real', 'imag', 'real', 'imag'] AS windspeed_fft_coeff_json, number_cwt_peaks(windspeed, time, 5) AS windspeed_number_wavelet_peaks_5, number_cwt_peaks(output, time, 5) AS output_number_wavelet_peaks_5 FROM sensor_data GROUP BY hour ORDER BY hour;This makes it really easy to perform time-series feature engineering directly in the database.By releasing this as open source, I hope to help anyone working as a data scientist on time-series-like problems quickly generate features directly within","11":"their database and anyone else working on any sort of time-series problem to be able to fully leverage the power of TimescaleDB to manage their time-series data.As an open-source project, I hope to see people benefit from this in their personal projects and hopefully find enough value to be interested in helping improve both of these libraries going forward.RoadmapThis project is the culmination of about one year of part-time development work. I spent the first third building a version using Python, the following third understanding how to build C extensions, writing proof of concept versions of some of the functions, and testing them to determine if the speedup was worthwhile (it was a 10x to 100x in extreme cases).Regarding feedback, I have just released it and received a small amount of positive press on thePostgreSQL subredditbut limited feedback from others. I have also shared it with a number of the data scientists in my network, and the feedback has been overwhelmingly positive.Currently, etu and pgetu support most of the feature calculators in tsfresh. My next step is to implement the approximately 15 calculations that I have not yet finished. Once that is done, I would like to increase the functions these libraries support.If you need more information about this project or want to discuss it, I can be reached and followed onLinkedInandTwitter.We\u2019d like to thank Andrew for sharing his story on how he is creating proofs of concept of machine learning pipelines for time-series forecasting using TimescaleDB.We\u2019re always keen to feature new community projects and stories on our blog. If you have a project you\u2019d like to share, reach out on Slack (@Ana Tavares), and we\u2019ll go from there.The open-source relational database for time-series and analytics.Try Timescale for free","12":"This is an installment of our \u201cCommunity Member Spotlight\u201d series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition,Nathan McMinn, CTO and co-founder at Conserv, joins us to share how they\u2019re helping collections care professionals around the world understand their collections\u2019 environments, make decisions to optimize conditions, and better protect historical artifacts - no IT department required.Think for a moment about your favorite museum. All of the objects it houses exist to tell the stories of the people who created them - and of whose lives they were a part - and to help us understand more about the past, how systems work, and more. Without proper care, which starts with the correct environment, those artifacts are doomed to deteriorate and will eventually be lost forever (read more about the factors that cause deterioration).Conservstarted in early 2019 with a mission to bring better preventive care to the world\u2019s collections. We serve anyone charged with the long-term preservation of physical objects, from paintings and sculptures to books, architecture, and more. (You\u2019ll often hear our market segment described as \u201cGLAM\u201d: galleries, libraries, archives, and museums.) At the core, all collections curators need to understand the environment in which their collections live, so they can develop plans to care for those objects in the short, mid, and long-term.While damagecancome in the form of unforeseen and catastrophic events, like fire, theft, vandalism, or flooding, there aremanyissues that proactive monitoring and planning can prevent, such as: mold growth, color fading associated with light exposure, and mechanical damage caused by fluctuating temperature and relative humidity.At Consev, we\u2019ve built a platform to help collections gather the data required to understand and predict long-term risks, get insights into their data, and plan for how to mitigate and improve the preservation environment. Today, we\u2019re the only company with an end-to-end solution - sensors to screen - focused on preventive conservation. Collections like theAlabama Department of Archives and Historyand various others rely on us to develop a deep understanding of their environments.About the teamWe\u2019re a small team where every member makes a big impact. Currently, we\u2019re at 6 people, and each person plays a key role in our business:Austin Senseman, our co-founder and CEO,","13":"often describes his background as \u201chelping people make good decisions with data.\u201d He has extensive experience in analytics and decision support \u2013 and a history of using data to guide organizations to their desired outcomes.Nathan McMinn(this is me!), our other co-founder and CTO, comes from the development world. I\u2019ve spent my career leading engineering teams and building products people love, most notably in the enterprise content management sector.Ellen Orr, a museum preparator turned fantastic collections consultant.Cheyenne Mangum, our talented frontend developer.Melissa King, a preventative conservator who recently joined to help us build better relationships with more collections.Bhuwan Bashel, who is joining in a senior engineering role (oh yeah, he\u2019ll get some TimescaleDB experience quickly!).About the projectWe collect several types of data, but the overwhelming majority of the data we collect and store in TimescaleDB is IoT sensor readings and related metrics. Our solution consists of fleets of LoRaWAN sensors taking detailed environmental readings on a schedule, as well as event-driven data (seethis articlefor an overview of LoRaWAN sensors, use cases, and other details).So, what ends up in our database is a mix of things like environmental metrics (e.g., temperature, relative humidity, illuminance, and UV exposure), sensor health data (e.g., battery statistics), and data from events (e.g., leak detection or vibration triggers).We also capture information about our customers\u2019 locations - such as which rooms are being monitored - and data from human observations - such as building or artifact damage and pest sightings - to give our sensor data more context and some additional \u201ctexture.\u201d It\u2019s one thing to collect data from sensors, but when you pair that with human observations, a lot of interesting things can happen.Our UI makes it simple to add a human observation to any data point, collection, or date.See our docsfor more details.For us, it is all about scale and performance.We collect tens of thousands of data points each day, and our users think about their metrics and their trends over years, not days.Also, like anybody else, our users want things to feel fast. So far, we\u2019re getting both from TimescaleDB.With those criteria met, our next challenge is how to use that data to (1) provide actionable insights to our customers, allowing them to ask and answer questions like \u201cwhat percentage of time is my collection within our defined environmental","14":"ranges?\u201d and (2) offer in-depth analysis and predictions, like possible mold and mechanical damage risks.This iswhere we\u2019ve gotten the most value out of TimescaleDB: the combination of a performant, scalable repository for our time-series data, the core SQL features we know and trust, and the built-in time-series functionalityprovided by TimescaleDB let us build new analysis features much faster.Example of our Collections focused analytics dashboard -see our docsfor more details.\u2728Editor's Note:To learn how we\u2019ve architected TimescaleDB to support joining time-series data with other relational data,check out our data model documentationandfollow our Hello, Timescale! tutorialto try it out for yourself.Using (and choosing) TimescaleDBI first found out about TimescaleDB at anAll Things Open conferencea few years ago; it was good timing, since we were just starting to build out our platform. Our first PoC used ElasticSearch to store readings, which we knew wouldn\u2019t be a permanent solution. We also looked at InfluxDB, and, while Amazon\u2019s Timestream looked promising, it wasn\u2019t released yet.Our database criteria was straightforward; we wanted scale, performance, and the ability to tap into the SQL ecosystem. After evaluating TimescaleDB\u2019s design, we were confident that it would meet our needs in the first two categories, but so would many other technologies.What ultimately won me over was the fact that it\u2019s PostgreSQL.I\u2019ve used it for years in projects of all sizes; it works with everything, and it\u2019s a proven, trustworthy technology \u2013 one less thing for me to worry about.\u2728Editor\u2019s Note:To see how TimescaleDB stacks up to alternatives, read ourInfluxDB vs. TimescaleDBandAmazon Timestream vs. TimescaleDBbenchmark posts (included in-depth performance, scale, and developer experience comparisons) andexplore our at-a-glance comparisons.Current deployment & use casesOur stack is fairly simple, standard stuff for anyone that has a UI \u2192 API \u2192 database pattern in their application. Our secret sauce is in how well we understand our users and their problems, not our architecture :).Some of our future plans will require us to get more complex, but for now we\u2019re keeping it as simple and reliable as possible:Node.js services running in Docker containers on AWS ECS, with TimescaleDB on the database tierReact.js frontendMobile app built with FlutterIn the near future, I\u2019d like to move over toTimescaleDB\u2019s hosted cloud offering. As we get bigger, that will be something we evaluate.In line with the above, our queries themselves aren\u2019t that clever, nor do","15":"they need to be. We make heavy use of PostgreSQL window functions, and the biggest features we benefit from, in terms of developer ergonomics, are TimescaleDB\u2019s built-in time-series capabilities:time_bucket,time_bucket_gapfill,histograms,last observation carried forward, and a handful of others. Almost every API call to get sensor data uses one of those.We haven\u2019t usedcontinuous aggregatesorcompressionyet, but they\u2019re on my to-do list!\u2728Editor\u2019s Note:In addition to the documentation links above,check out our continuous aggregates tutorialfor step-by-step instructions and best practices, andread our compression engineering blogto learn more about compression, get benchmarks, and more.Getting started advice & resourcesTimescaleDB gives you more time to focus on end-user value, and less time focusing on things like \u201cCan I connect tool x to my store?\u201d or \u201cHow am I going to scale this thing?\u201dIf you\u2019re considering TimescaleDB or databases in general, and are comfortable with Postgres already, try it. If you want the biggest ecosystem of tools to use with your time-series data, try it. If you think SQL databases are antiquated and don\u2019t work for these sorts of use cases, try it anyway - you might be surprised.For anybody out there thinking about an IoT project or company, as a technologist, it\u2019s really tempting to focus on everything before data gets to the screen. That\u2019s great, and you have to get those things right, but that\u2019s just table stakes.Anybody can collect data points and put a line graph on a screen. That\u2019s a solved problem.Yourchallenge is to develop all the context around the data, analyze it in that context, and present it to your users in the language and concepts they already know.TimescaleDB can help you do that, by giving you more time to focus on end-user value, and less time focusing on things like \u201cCan I connect tool x to my store?\u201d or \u201cHow am I going to scale this thing?\u201dOther than those words of advice, there\u2019s nothing that hasn\u2019t already been covered in-depth by people in the PostgreSQL community that are FAR smarter than I am :).We\u2019d like to give a big thank you to Nathan and the Conserv team for sharing their story and,more importantly, for their commitment to helping collections\u2019 keep history alive. As big museum fans, we\u2019re honored to play a part in the tech stack that powers their intuitive, easy-to-use UI and robust analytics \ud83d\udc9bWe\u2019re always","16":"keen to feature new community projects and stories on our blog. If you have a story or project you\u2019d like to share, reach out on Slack (@lacey butler), and we\u2019ll go from there.Additionally, if you\u2019re looking for more ways to get involved and show your expertise, check out theTimescale Heroesprogram.The open-source relational database for time-series and analytics.Try Timescale for free","17":"This is an installment of our \u201cCommunity Member Spotlight\u201d series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition,Adam Inoue, Software Engineer at Messari, joins us to share how they bring transparency to the cryptoeconomy, combining tons of data about crypto assets with real-time alerting mechanisms to give investors a holistic view of the market and ensure they never miss an important event.Messariis a data analytics and research company on a mission to organize and contextualize information for crypto professionals. Using Messari, analysts and enterprises can analyze, research, and stay on the cutting edge of the crypto world \u2013 all while trusting the integrity of the underlying data.This gives professionals the power to make informed decisions and take timely action. We are uniquely positioned to provide an experience that combines automated data collection (such as our quantitativeasset metricsandcharting tools) withqualitative researchandmarket intelligencefrom a global team of analysts.Our users range from some of the most prominent analysts, investors, and individuals in the crypto industry to top platforms like Coinbase, BitGo, Anchorage, 0x, Chainanalysis, Ledger, Compound, MakerDAO, andmany more.About the teamI have over five years of experience as a back-end developer, in roles where I\u2019ve primarily focused on high-throughput financial systems, financial reporting, and relational databases to support those systems.After some COVID-related career disruptions, I started at Messari as a software engineer this past April (2021). I absolutely love it. The team is small, but growing quickly, and everyone is specialized, highly informed, and at the top of their game. (Speaking of growing quickly,we\u2019re hiring!)We\u2019re still small enough to function mostly as one team. We are split into front-end and back-end development. The core of our back-end is a suite of microservices written in Golang and managed by Kubernetes, and I - along with two other engineers - \u201cown\u201d managing the cluster and associated services. (As an aside, another reason I love Messari: we\u2019re a fully remote team: I\u2019m in Hawaii, and those two colleagues are in New York and London. Culturally, we also minimize meetings, which is great because we\u2019re so distributed,andwe end up with lots of time for deep work.)From a site reliability standpoint, my team is responsible for all of the back-end APIs","18":"that serve the live site, ourpublic API, our real-time data ingestion, the ingestion and calculation of asset metrics, and more.So far, I\u2019ve mostly specialized in the ingestion of real-time market data \u2013 and that\u2019s where TimescaleDB comes in!About the projectMuch of our website is completely free to use, but we haveProandEnterprisetiers that provide enhanced functionality. For example, our Enterprise version includesIntel, a real-time alerting mechanism that notifies users about important events in the crypto space (e.g., forks, hacks, protocol changes, etc.) as they occur.We collect and calculate a huge catalog ofcrypto-asset metrics, like price, volume, all-time cycle highs and lows, and detailed information about each currency. Handling these metrics uses a relatively low proportion of our compute resources, while real-time trade ingestion is a much more resource-intensive operation.Our crypto price data is currently calculated based on several thousand trades per second (ingested from partners, such asKaikoandGemini), as well as our own on-chain integrations withThe Graph. We also keep exhaustive historical data that goes as far back as the dawn of Bitcoin. (You can read more about the history of Bitcoinhere.)Messari dashboard, with data available atmessari.iofor freeOur data pipelines are the core of the quantitative portion of our product \u2013 and are therefore mission-critical.For our site to be visibly alive, the most important metric is our real-time volume-weighted average price (VWAP), although we calculate hundreds of other metrics on an hourly or daily basis. We power our real-time view through WebSocket connections to our back-end, and we keep the latest price data in memory to avoid having to make constant repeated database calls.Everything \u201chistorical\u201d - i.e., even as recently as five minutes ago - makes a call to our time-series endpoint.Any cache misses there will hit the database, so it\u2019s critical that the database is highly available.We use the price data to power the quantitative views that we display on our live site, and we also directly serve our data to API users. Much of what we display on our live site is regularly retrieved and cached by a backend-for-frontend GraphQL server, but some of it is also retrieved by HTTP calls or WebSocket connections from one or more Go microservices.The asset view of Messari dashboard, showing various price stats for a specific currency.The accuracy of our data is extremely important because it\u2019s public-facing and","19":"used to help our users make decisions. And, just like the rest of the crypto space, we are also scaling quickly, both in terms of our business and the amount of data we ingest.Choosing (and using!) TimescaleDBWe\u2019re wrapping up a complete transition to TimescaleDB fromInfluxDB. It would be reasonable to say that we used InfluxDB until it fell over; we asked it to do a huge amount of ingestion and continuous aggregation, not to mention queries around the clock, to support the myriad requests our users can make.Over time, we pushed it enough that it became less stable, so eventually, it became clear that InfluxDB wasn\u2019t going to scale with us. Thus,Kevin Pyc(who served as the entire back-end \u201cteam\u201d until earlier this year) became interested in TimescaleDB as a possible alternative.The pure PostgreSQL interface and impressive performance characteristics sold him on TimescaleDB as a good option for us.From there, the entire tech group convened and agreed to try TimescaleDB. We were aware of its performance claims but needed to test it out for ourselves, for our exact use case. I began by reimplementing our real-time trade ingestion database adapter on TimescaleDB \u2013 and on every test, TimescaleDB blew my expectations out of the water.The most significant aspects of our system are INSERT and SELECT performance.INSERTs of real-time trade data are constant, 24\/7, and rarely dip below 2,000 rows per second. At peak times, they can exceed 4,500\u2014and, of course, we expect this number to continually increase as the industry continues to grow and we see more and more trades.SELECT performance impacts our APIs\u2019 response time for anything we haven\u2019t cached; we briefly cache many of the queries needed for the live site, but less common queries end up hitting the database.When we tested these with TimescaleDB, both of our SELECT and INSERT performance results flatly outperformed InfluxDB. In testing, even thoughTimescale Cloudis currently only located in us-east-1 and most of our infrastructure is in an us-west region, we saw an average of ~40ms improvement in both types of queries. Plus, we could batch-insert 500 rows of data, instead of 100, with no discernible drop in execution time relative to InfluxDB.These impressive performance benchmarks, combined with the fact that we can use Postgres with foreign key relationships to derive new datasets from our existing ones","20":"(which we weren\u2019t able to do with InfluxDB) are key differentiators for TimescaleDB.\u2728Editor\u2019s Note:For more comparisons and benchmarks, seehow TimescaleDB compares to InfluxDB, MongoDB, AWS Timestream, and other time-series database alternativeson various vectors, from performance and ecosystem to query language and beyond. For tips on optimizing your database insert rate, see our13 ways to improve PostgreSQL insert performanceblog post.We are also really excited about continuous aggregates. We store our data at minute-level granularity, so any granularity of data above one minute is powered by continuous queries that feed a rollup table.In InfluxDB-world, we had a few problems with continuous queries: they tended to lag a few minutes behind real-time ingestion, and, in our experience, continuous queries would occasionally fail to pick up a trade ingested out of order\u2014for instance, one that\u2019s half an hour old\u2014and it wouldn\u2019t be correctly accounted for in our rollup queries.Switching these rollups to TimescaleDB continuous aggregates has been great; they\u2019re never out of date, and we can gracefully refresh the proper time range whenever we receive an out-of-order batch of trades or are back-filling data.At the time of writing, I\u2019m still finalizing our continuous aggregate views\u2014we had to refresh them all the way back to 2010! \u2014 but all of the other parts of our implementation are complete and have been stable for some time.\u2728Editor\u2019s Note:Check out thecontinuous aggregates documentationand followthe step-by-step tutorialto learn how to utilize continuous aggregates for analyzing the NFL dataset.Current deployment & future plansAs I mentioned earlier, all of the core services in our back-end are currently written in Go, and we have some projects on the periphery written in Node or Java. We don't currently need to expose TimescaleDB to any project that isn't written in Go. We useGORMfor most database operations, so we connect to TimescaleDB with agorm.DBobject.We try to use GORM conventions as much as possible; for TimescaleDB-specific operations likemanaging compression policiesor thecreate_hypertablestepwhere no GORM method exists, we write out queries literally.For instance, we initialize our tables usingrepo.PrimaryDB.AutoMigrate(repo.Schema.Model), which is a GORM-specific feature, but we create new hypertables as follows:res := repo.PrimaryDB.Table(tableName).Exec( fmt.Sprintf(\"SELECT create_hypertable('%s', 'time', chunk_time_interval => INTERVAL '%s');\", tableName, getChunkSize(repo.Schema.MinimumInterval)))Currently, our architecture that touches TimescaleDB looks like this:The current architecture diagram.We use Prometheus for a subset of our monitoring, but, for our real-time ingestion engine, we\u2019re in an advantageous position: the","21":"system\u2019s performance is obvious just by looking at our logs.Whenever our database upsert backlog is longer than a few thousand rows, we log that with a timestamp to easily see how large the backlog is and how quickly we can catch up.Our backlog tends to be shorter and more stable with TimescaleDB than it was previously \u2013 and opur developer experience has improved as well.Speaking for myself, I didn\u2019t understand much about our InfluxDB implementation\u2019s inner workings, but talking it through with my teammates, it seems highly customized and hard to explain from scratch. The hosted TimescaleDB implementation with Timescale Cloud is much easier to understand, particularly because we can easily view the live database dashboard, complete with all our table definitions, chunks, policies, and the like.Looking ahead, we have a lot of projects that we\u2019re excited about! One of the big ones is that, with TimescaleDB, we\u2019ll have a much easier time deriving metrics from multiple existing data sets.In the past, because InfluxDB is NoSQL, linking time-series together to generate new, derived, or aggregated metrics was challenging.Now, we can use simple JOINs in one query to easily return all the data we need to derive a new metric.Many other projects have to remain under wraps for now, but we think TimescaleDB will be a crucial part of our infrastructure for years to come, and we\u2019re excited to scale with it.Getting started advice & resourcesTimescaleDB is complex, and it's important to understand the implementation of hypertables quickly. To best benefit from TimescaleDB\u2019s features, you need to think about how to chunk your hypertables, what retention and compression policies to set, and whether\/how to set up continuous aggregates. (Particularly with regard to your hypertable chunk size, because it's hard to change that decision later.)In our case, the \u201canswers\u201d to three of these questions were addressed from our previous InfluxDB setup: compress after 48 hours (the maximum time in the past we expect to ingest a trade); retain everything; and rollup all of our price and volume data into our particular set of intervals (5m, 15m, 30m, 1h, 6h, 1d, and 1w).The most difficult part was understanding how long our chunks should be (i.e., setting ourchunk_time_intervalon each hypertable). We settled on one day, mostly by default, with some particularly small metrics chunked after a year instead.I\u2019m","22":"not sure these decisions would be as obvious for other use cases.\u2728Editor\u2019s Note:We\u2019ve put togethera hypertable best practices guideto help you get started (including tips on how to size your chunks andcheck your chunk size).Explore the roadmap on GitHubfor future plans on compression.In summary, the strongest advantages of TimescaleDB are its performance and pure Postgres interface. Both of these make us comfortable recommending it across a wide range of use cases. Still, the decision shouldn\u2019t be cavalier; we tested Timescale for several weeks before committing to the idea and finishing our implementation.We\u2019d like to thank Adam and all of the folks at Messari for sharing their story, as well as for their effort to lower the barriers to investing in crypto assets by offering a massive amount of crypto-assets metrics and a real-time alerting mechanism.We\u2019re always keen to feature new community projects and stories on our blog. If you have a story or project you\u2019d like to share, reach out on Slack (@Lucie \u0160ime\u010dkov\u00e1), and we\u2019ll go from there.Additionally, if you\u2019re looking for more ways to get involved and show your expertise, check out theTimescale Heroesprogram.The open-source relational database for time-series and analytics.Try Timescale for free","23":"This is an installment of our \u201cCommunity Member Spotlight\u201d series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition, Rob Robinett and Gwyn Griffiths, the creators of WsprDaemon, join us to share the work they\u2019re doing to allow amateur radio enthusiasts to analyze transmission data and understand trends, be it their own personal noise levels or much larger space weather patterns.Amateur radio is a hobby for some three million people worldwide (see \u201cWhat is Amateur Radio?\u201d to learn more) and its technical scope is vast, examples include: designing and building satellites, devising bandwidth-efficient data communications protocols, and creating novel, low noise antennas for use in urban locations.Our project,WsprDaemon, focuses on amateurs who use the (amateur-developed!) open-sourceWeak Signal Propagation Reporter(WSPR): a protocol that uses low-power radio transmissions that probe the earth\u2019s ionosphere to identify radio propagation paths and provide insights onspace weather. On a typical day, 2,500 amateurs may report 2.7 million WSPR \u201cspots\u201d to thewsprnetdatabase, whose webpage interface allows simple queries on data collected in the last two weeks.Image of radio antennae, with mountains in the background. Photo of theNorthern Utah WebSDRantenna (photo courtesy of Clint Turner)Radio signals that end up in the WsprDaemon TimescaleDB database may be received on a wide variety of antennas, from the 94-foot tower-supported multiband array in Northern Utah pictured above, to more modest 3-foot installations that you may see in many suburban or urban locations.About the TeamWe have a small, two-member volunteer core team, and we\u2019re supported by a dozen or so beta testers and radio specialists (we typically have people from six countries on a weekly Zoom meeting). Rob Robinett, based in Berkeley California, is CEO of TV equipment manufacturerMystic Videoand he\u2019s founded a series of Silicon Valley startups. He recently \u201crediscovered\u201d amateur radio - after an absence of more than 40 years - and he's applying his software expertise to developing systems that measure short wave radio transmission conditions.Gwyn (left) & Rob (right), WsprDaemon's core volunteer team membersGwyn Griffiths, based in Southampton, UK, returned to amateur radio after retiring from a career as anocean technologist, where he worked with sensors and data from ships, undersea moorings, and robotics underwater vehicles. Gwyn focuses on the TimescaleDB components,","24":"devises Grafana dashboards to help inspire WsprDaemon users to create their own, and writes our step-by-step guides (check them outhere).About the projectWsprDaemon ingests data from the wsprnet database into TimescaleDB, allowing users to access historical data (remember, the wsprnet database shows online data from the last two weeks, and our project allows users to use older data for more robust analysis) and enabling a rich range of SQL queries.Additionally, TimescaleDB facilitates our Grafana dashboards; seeing a month of \u201cspots\u201d gives users a far deeper understanding about their own data, enables comparisons with other datasets, and provides a platform for further experimentation and creative graphics.Our TimescaleDB application caters to a wide spectrum of radio amateurs, from casual hobbyists to third-party developers:Some hobbyists simply want to see lists of who\u2019s heard their transmissions in the last hour, or whotheyheard, at what strength, and where the transmissions originated.Other users want to display transmission metrics as time-series graphs, while there\u2019s another class of users for whom ability to use aggregate functions, apply defined time buckets, derive statistics, and create heat maps and other visualizations is essential (such as the internationalHam Radio Science Citizen Investigation community).Last, third-party app developers, like theVK7JJlisting,WSPR watch, and other mapping and graphing apps, also access our WSPR data, appreciating the fast query response.The key measurement for a WSPR receiver is the signal-to-noise ratio (SNR): how strong an incoming signal is compared with the background noise. But, there is alsovital metadata, including the location of the receiver and transmitter, the operating radio frequency, and most critically - time. On average, our database takes in about 4,000 \u201csets\u201d of this data from a given transmitter, typically 400kB, every two minutes.This below shows an example of SNR from three transmitters, in New York State, Italy, and Virginia.Signal-to-noise (SNR) Grafana dashboard exampleThe seven-day time-series data shown in this dashboard example provides rich information for its receiver, station KD2OM in New York State:They consistently hear N2AJX, just 16km distant, whose radio waves will have travelled over the ground, at much the same SNR throughout the day.They hear WA4KFZ in Virginia throughout most days \u2013 but with a dramatic variation in SNR. It\u2019s at a minimum in the hours before sunrise (all times are UTC), and with peaks above the local station. This is the ionosphere at work, providing a","25":"path with less loss over 1000km than 16km for over-the-ground waves.The time-series view also allows us to see day-to-day variations, such as the shorter period of high SNR on 23rd June compared to prior days.They hear IU0ICC from Italy via the ionosphere from early evening to about 0300 local time each day, with a consistent shape to the rise and fall of SNR.While SNR is the main measurement, our users are also interested in aggregate metadata functions, which provide an overview of daily changes in the ionosphere.Our project allows them to run these more complex queries, and we bring in complementary public domain data, such as the case below where we pull in data from theUS Space Weather Prediction Center.WsprDaemon also runs complex transmission data queries and visualizationsIn this example, the top panel of the Grafana dashboard uses the WsprDaemon dataset to display a simple count of the \u201cspots\u201d in each 10 minute time bucket with, on the second y-axis, a measure of the planetary geomagnetic disturbance index (kp) from the US Space Weather Prediction Center. In 2020, we\u2019re at the minimum of the11-year sunspot cycle, so our current space weather is generally very quiet, but we\u2019re anticipating disturbances - as well as more WSPR spots - as the sun becomes more active over the next four years.The second panel is a heat map that shows the variation in distance between the receiver in Belgium and the transmitters it\u2019s heard over time.The third panel shows the direction of arrival at the receiver, while the bottom panel helps the user interpret all of this data, showing the local noise level and instances of overload.Editor\u2019s note: see ourGrafana Series Overrideblog post to learn how (and why) to use two y-axes to more accurately plot your data and understand trends.Using TimescaleDBAs evidenced above, a big advantage for our users is our ability to bring disparate datasets together into one database, with one graphical visualisation tool.Our initial need was for a database and visualisation tool for radio noise measurements from a handful of stations. A colleague suggestedInfluxandGrafana, and kindly set up a prototype for us. We were hooked.We sought to expand to cover a larger range of data sets from several thousand sources. The Influx documentation was great, and we had an extended application running quickly. Initially,our query","26":"time performance was excellent, but, as we accumulated weeks of data we hit thecardinalityissue.Query times became unacceptably long, and we looked for an alternative time-series database solution.We quickly came across an objectivearticleon how to solve the cardinality problem that led us to adopt TimescaleDB.The biggest factor in choosing TimescaleDB was that it solved our cardinality problem, but there were also \u201cnice to have\u201d features, such as the easy-to-usetool to migrate our data from Influxand the underlying use of PostgreSQL. But, we did miss Influx\u2019s comprehensive single-source documentation.Editor\u2019s Note: Because we think it\u2019s important to remain balanced and let our community members\u2019 voice shine through, we don\u2019t edit mentions of alternative technologies (favorable or unfavorable\ud83d\ude42).Current deployment & future plansOur initial TimescaleDB implementation is on a DigitalOcean Droplet (2 cores, 4GB memory 100GB SSD disk), but we are moving to our own 16 core, 192GB memory Dell server and a back-up (we\u2019re evaluating query performance as our user base grows).As noted above,the way TimescaleDB has solved the issue of cardinality was a big selling point for us, and it\u2019s what makes the WsprDaemon site performant for our users.When we wereusing Influx, a typical query that returned 1,000 results from a table of 12 million records and a cardinality of about 400,000 took 15-25 seconds.Now,running TimescaleDB on the same Digital Ocean Droplet(albeit with 4GB rather than the previous 2GB of memory),those same queries overwhelmingly return results in under 2s*.*as long as the data requested is within the chunk that is in memory. That\u2019s why we\u2019ve recently increased our Dell server memory from 24 to 192GB, to handle one-month chunks, and why it will become our primary machine.We use bash Linux shell scripts with Python to gather the data that populates our database tables. We find that batch upload usingpsycopg2.extras.execute_batchworks well for us, and our users use a variety of methods to access WsprDaemon, including Node.js andpsqlvia its command line interface.Simplified WsprDaemon architecture, showing data routes fromwsprnetand 3rd party interfacesWe already make extensive use of Grafana dashboards, and we expect to expand our capabilities - adding global map panels is just one example. But, even after extensive searching, it\u2019s not always straightforward or obvious how to obtain the best, streamlined end result.For example, creating an animation that shows the global geographic distribution of receivers and transmitters by hour","27":"requires us to export data to CSV using psql, import the file intoOctave, generate maps on anazimuthal equidistantprojection, save these map files as PNG, and then import intoImageJto generate an AVI file.Editor\u2019s Note: To learn more about building Grafana visualizations with TimescaleDB, check out ourstep-by-step tutorials,blogs, and \u201cGuide to Grafana\u201d webinar series.Our future path includes collaboration, both with others in the global amateur radio community and more data sources. We continually learn about people who have neat solutions for handling and visualising data, and, by sharing knowledge and experience, we can collectively grow and improve the tools we offer this great community. We\u2019re keen to expand our connections to other third party data sources, such as space weather, to help our users better interpret their results.Getting started advice & resourcesWe\u2019re non-professional database users, so we only feel qualified to speak to others with a similar minimal level of prior familiarity.As you evaluate time-series database options, of course, readindependent comparisonsand the links they provide, but also look carefully at insightful, fair-minded comparisons from TimescaleDB, e.g., onSQL vs Flux. Try to assess the advantages of different approaches foryourapplication, current and future skill sets, and requirements.Parting thoughtsWe believe that data analytics for radio amateurs is in its infancy. We\u2019re detailing our approach and experience with TimescaleDB and Grafana in a paper at the 39th gathering of theDigital Communications Conferencein September 2020 (for the first time, the Conference will be completely virtual, which is likely to enable a larger-than-usual participation from around the world). We\u2019ll feature some nice examples of how self inner joins help pull out features and trends from comparisons, as well as many other capabilities of interest to our users.We\u2019d like to thank Rob & Gwyn for sharing their story, as well as for their work to create open-source, widely distributed queries, graphs, and tools. Their dedication to making transmission data accessible and consumable for the global amateur radio community is yet another testament to how technology and creativity combine to breed amazing solutions.We\u2019re always keen to feature new community projects and stories on our blog. If you have a story or project you\u2019d like to share, reach out on Slack (@lacey butler), and we\u2019ll go from there.Additionally, if you\u2019re looking for more ways to get involved and show your expertise, check out theTimescale Heroesprogram.The","28":"open-source relational database for time-series and analytics.Try Timescale for free","29":"This is an installment of our \u201cCommunity Member Spotlight\u201d series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition, Michael Gagliardo, technical lead and software architect at Ndustrial, shares how Ndustrial is helping clients save energy and money by collecting several types of data and offering on-demand analytics quickly and seamlessly using TimescaleDB. And the best part is that they don\u2019t need to worry about keeping vast amounts of raw data\u2014TimescaleDB handles that, too.About the CompanyNdustrialis based out of Raleigh, North Carolina, in the United States. Our company has been around since 2011, and we work exclusively in the industrial sector.We aim to help our customers\u2014who are large industrial energy users\u2014save energy. And by doing so also save money and improve sustainability. A lot of that is collecting data from very disparate devices, such as industrial IoT equipment, utility meters, utility bills, and even external data, and ultimately trying to use and combine that data to give our customers a better view of what we would call production-normalized KPIs.The company\u2019s high-level data architectureThese KPIs are essentially metrics that we try to get down to the point of the single unit that our customers are producing, and that changes based on their manufacturing process, what sector they're in, and what their actual product is. But if we can get it down to that point, we can understand how much energy consumption is required for a single product or unit. And then help them find and even completely automate these opportunities to save energy.We\u2019re talking about customers that might have multiple facilities, even in the hundreds across the US and the world, so our goal in this space is to be able to aggregate all that data into a single view, understand what\u2019s happening, and where you may have a lack of efficiencies in order to find those opportunities and save energy and money.About the TeamThe Ndustrial team building more than data applicationsWe currently have around 18 engineers working at the company, split into two main teams. We have an Integrations team that's more focused on different types of ingestion and where we get that data from (which sometimes gets very specific with our customers). The","30":"other team is focused on building our platform's more generalized extensibility aspect and a front end,our energy intensity user interface (UI), called Nsight.I am the technical lead and software architect for the Platform team. We focus on building the functionality to turn the customers\u2019 data into meaningful metrics based on their organization as well as building out features for Nsight, making that easier to consume as a customer.From a background perspective, most of our engineers come from a mix of experiences. Some of them have actually been in the energy world, whereas others come from the B2B SaaS world, such as myself. So it's a nice foundation to build on where you have both perspectives and merge them toward one scalable product.About the ProjectMore than 80 percent of our data is time series across the board. Now the facets of where it comes from could be standard IoT devices just setting up their data points. It could be a time series of line items on a utility bill associated with a statement per day, per month, or per year. But it always comes down to data points associated with a timestamp that we can aggregate together to give a perspective of what\u2019s happening.\u2728Editor\u2019s Note:Learn more about the features of the best database for time-series data.Then, we have the other side: non-time series, to give a digital perspective of the client\u2019s organization so you can start associating different elements by those groupings or categories to provide even more focused metrics in our UI.The company\u2019s UI, NsightI joined Ndustrial in June 2020, and we already had some applications to store and manage time-series data. This data is very unique, frequent, and needs to be retrieved quickly. But as far as leaning on databases specific to time-series data, that wasn\u2019t really a factor in the beginning. It was more focused on, \u201cHow can we store this and at least get to it quickly?\u201d\u201cCompression was a game-changer from our perspective: not having to worry about getting databases on the order of 5, 10, or 15 TB to store this information was a massive factor for us\u201dBut then you start considering other aspects: now, I want to aggregate that data in unique ways or across arbitrary windows. That's where the drive to \u201cWe need something more powerful, something that","31":"can handle this data and not just store it efficiently but query it efficiently\u201d comes in. And along with it came Timescale.Compression was a game-changer from our perspective as a company: not having to worry about getting databases on the order of 5, 10, or 15 TB to store this information was a massive factor for us. But then we want the dashboarding that we have, Nsight, which is our energy intensity platform, to be very dynamic.We don\u2019t always know ahead of time what our customers want to visualize. We\u2019re not trying to hard code a bunch of metrics we can report on quickly. We tried to build a much more dynamic platform, and most of our querying is actually on demand. There is some downsampling in between to make things more efficient, but the queries we are providing in our dashboard and arbitrary metrics are all things our customers are creating, and they happen on demand.Getting data back efficiently without feeling like the UI is slow was a major win for us in using TimescaleDB. Before, we had a lot more pre-aggregation. That was the biggest power I've seen from it, along with not having to deal with having an entire team of database administrators (DBAs) to go through and make sure that's possible [Ndustrial uses Managed Service for TimescaleDB]. It\u2019s also one of the more valuable benefits for our customers, whether or not they realize this is even happening.Choosing (and Using!) TimescaleDBWhen I joined the company, Ndustrial had a proof-of-concept (PoC) running for TimescaleDB, so I think the company as a whole was moving in that direction. I had some experience with TimescaleDB and other time-series databases. This was only three years ago, but even then, Timescale was very prominent in the world of \u201cHey, we need a time-series database to be stored somewhere.\u201d\u201cFor one of our larger customers, we normally store about 64 GB of uncompressed data per day. With compression, we\u2019ve seen, on average, a 97 percent reduction\u201dOther alternatives we researched were InfluxDB and Prometheus for storing this data. But what brought it home for us is that PostgreSQL is a foundation in our company. It is a standard of what we expect from developers and, ultimately, the main reason the PoC started to test out how we could work","32":"with time-series data without changing and bringing up new technologies and languages to learn.We knew we would be collecting many times-series points per day\u2014across all the different types of data we\u2019re collecting, above a hundred million points per day. It gets massive, and we want to store and query that efficiently. It\u2019s not just about how we store this and how we ensure we\u2019re not spending mass quantities of money to store it, but also how we get that back out, ask questions, and query data without having to do a lot of work in between to get it into a shape where we can do that efficiently.So the compression aspect of TimescaleDB was something we leaned on immediately. Honestly, that was probably what sold it out of the PoC: when we tested compression with our chunks and started seeing the percentage by which we could reduce the storage size with minor degradation in query performance.\u2728Editor\u2019s Note:Read how TimescaleDB expands the PostgreSQL functionality with faster queries and reduces storage utilization by 90 percent.For one of our larger customers, which would take a big chunk of the time series, we normally store about 64 GB of uncompressed data per day. With compression, we\u2019ve seen, on average, a 97 percent reduction. So down to less than 2 GB a day. And that goes from a record count of two million records to just a couple hundred thousand, which is pretty significant. It would take a larger and more performant database to hold that type of weight.CREATE FUNCTION public.show_all_chunks_detailed_size() RETURNS TABLE( hypertable text, chunk text, time_range tstzrange, total_bytes bigint, total_size text, table_size text, index_size text, toast_size text, compression_savings numeric ) AS $func$ BEGIN RETURN QUERY EXECUTE ( SELECT string_agg(format(' SELECT %L AS hypertable, s.chunk_schema || ''.'' || s.chunk_name AS chunk, tstzrange(c.range_start, c.range_end) AS time_range, s.total_bytes, pg_size_pretty(s.total_bytes) AS total_size, pg_size_pretty(s.table_bytes) AS table_size, pg_size_pretty(s.index_bytes) AS index_size, pg_size_pretty(s.toast_bytes) AS toast_size, round(100 * (1 - p.after_compression_total_bytes::numeric \/ p.before_compression_total_bytes::numeric), 2) AS compression_savings FROM chunks_detailed_size(%L) s LEFT JOIN chunk_compression_stats(%L) p USING (chunk_name) LEFT JOIN timescaledb_information.chunks c USING (chunk_name) ', tbl, tbl, tbl ), ' UNION ALL ') FROM ( SELECT hypertable_schema || '.' || hypertable_name AS tbl FROM timescaledb_information.hypertables ORDER BY 1 ) sub ); END $func$ LANGUAGE plpgsql;The query that the Ndustrial team usesto monitor their chunk sizes across hypertables, including the","33":"compression stats they are seeingMost companies believe this, but data is critical to us. We keep raw data: we never know how we will go back and reuse it. It's not something we can downsample, throw away, and hope one day we don't need it. So being able to store it and not having to focus too much on complex retention strategies to put things in a much slower, cold storage (versus hot storage) because we're able to compress it and still query it without worrying too much about going over limits is very significant for us.As far as query performance, I don't have an exact metric. Still, being able to make arbitrary queries, arbitrary roll-ups, on-demand unit conversion, and currency conversion at the time of querying and get responses back in the same amount of time that we got from doing pre-aggregates and without the difficulty of changing the questions\u2019 format to roll up this data is a massive benefit.Before TimescaleDB, we were using Cassandra, and a fair amount of mixed data could also have been in a standard PostgreSQL database. But most of our high-frequency IoT data was in Cassandra, primarily for the benefit of being able to use partitioning for fast retrieval. However, it took a lot more effort to get that data out. So as efficient as it could be to store it, we had difficulty on the other side of getting it back out in the way that we wanted it.We also tried InfluxDB but didn\u2019t go with it. It wasn\u2019t just about learning a new language (InfluxQL); storing most of our relational data inside PostgreSQL was a significant factor. The platform we've been working with for the last two years has been a shift in usingGraphQLas our main layer for that service, our tenancy.TimescaleDB provides the time-series metrics, but the rest of our relational graph that builds out an organization are just entities and our PostgreSQL database. So, being able to use time-series metrics as they relate to relational entities, groupings, and various ways of querying those types of data without going outside PostgreSQL, was a significant aspect for us.With InfluxDB, we would deal with more latency: the amount of time it would take to query on one side, query on the other side, and correlate them together.","34":"Not to mention that you\u2019re dealing with a new language. With TimescaleDB, it\u2019s just a SQL query.I\u2019ve had experience with InfluxDB, which is one of the reasons we made sure we tested that out as well. And that's probably a direction I would go back to if TimescaleDB didn\u2019t exist. Luckily, we don\u2019t have to. I mean, it's also a powerful database, but for the other factors I just mentioned, TimescaleDB made more sense at the time.Current Deployment & Future PlansFrom a more architectural perspective, I'm focused on ensuring the technologies we bring in aren't going to hinder our developers by having to make them learn something new every time we bring in a new engineer. If there's too much of a learning curve and it's not something they're already used to, you're going to slow down.The Ndustrial data architectureAs a small startup, we must balance the technologies we can benefit from without having 10 developers purely stationed for managing them, which is why we chose Managed Service for TimescaleDB. You don't want to have every developer spend all their time managing it or being aware of it and worrying about what happens if you don\u2019t apply those maintenance updates or backups correctly.\u201cGetting all these updates and zero downtime for deployments and replicas is significant for us because we need to assure our customers that we are as reliable as the data we're storing\u201dTime series is the main portion of the type of data we collect, so it\u2019s a very significant aspect of our platform. We wouldn\u2019t be able to do much without it. Putting that in the hands of the same developers that are also having to focus on integrations, customers, and future work would have been too much of a risk. On the other hand, getting all these updates and zero downtime for deployments and replicas is significant for us because we need to assure our customers that we are as reliable as the data we're storing.As for deployment, on the ingestion side, we useKotlinas our foundation for building out stream-processing pipelines on a technology calledPulsaras our messaging layer. It's very similar toKafkaPTP-style (point-to-point) message queuing. Essentially, all of the ingestion that we do, whether it's IoT data or other types of integrations that we're either pulling from or getting pushed to,","35":"flows through these stream processing pipelines, ultimately landing into our TimescaleDB database. So that is our main input into TimescaleDB.Then, on the other side of the house, we have our GraphQL platform. The platform exposes a GraphQL API that can query TimescaleDB for arbitrary queries, metrics, and results based on what the consumer is asking. And then, in our front end, which is our dashboarding, there\u2019s a full-featured single-page app in React.We also use other technologies, such asGrafana, for a more ad hoc view of the data, especially because we also do implementations at facilities for installing meters and devices if the customers don't already have those available. Hooking those up and having a view into our TimescaleDB database of that specific feed of data gives us a lot more visibility and speeds up the installation time without worrying about whether or not it's set up correctly.Our data is very disparate and unpredictable in terms of how it gets sent. Some customers will have devices sending data every second to minutes or every hour. Devices might go down, come back up, and send their last days\u2019 worth of data all at once. We could have other systems sending it at their own regular rates.It's not normalized, so to be able to lean on TimescaleDB hyperfunctions liketime_bucket_ gapfilland bucketing, andlocftype of functions to turn those results into something more meaningful because we can fill the gap or understand what should happen in the case where that data point didn't exist is really powerful for us.\u2728Editor\u2019s Note:Learn more about hyperfunctions and how they can help you save time and analyze time-series data better.Obviously, compression was a big thing for us in terms of getting that in place in the beginning. And since then, we have used continuous aggregates. We are still at a point where we're building out the process of what that will look like in our platform because this data is unique\u2014I mean, we're storing arbitrary data. We don't even know sometimes what that feed is sending us.We\u2019re still building a more automated process to be able to make smarter decisions about what becomes continuous aggregates, what becomes something we physically want to store, and the intervals at which we want to store it and throw away the rest. And so, I hope to","36":"lean on continuous aggregates a bit more in the future.But, ultimately, just being able to query and use TimescaleDB features to roll up and aggregate that data is significant for us. I love following theTimescale experimental repositoryand seeing what people come out with each release. I basically have a list on my computer of things I intend to add to our platform soon. Just to expose those capabilities, too. Because if we can do it, why not turn that into something we can create in our app? And create it as another view, metric, or perspective in the UI. So it's always exciting to see what you guys are coming up with.RoadmapOver the last few years, we've been building this new platform and leaning pretty heavily on it. There are a few pieces left that we're getting to really make it where we want it to be. Part of that is exposing many of these self-made dynamic metrics to our customers to the degree where they can just generate whatever they want that meets the needs of their system based on their use case or personas.We have various individuals using our platform that come from different disciplines within an organization, so being able to cater metrics and analytics to them directly is really powerful, and exposing a platform in a way where they can do that without having to rely on us to do it for them is also very powerful.To achieve this, we're building more of these ad hoc type views, which will lean on the functionality we get from an in-house metrics engine that uses TimescaleDB to query this data. Beyond that, we're entering into more of an automated controls world within our platform.Up to this point, we've primarily been focused on getting this data visible and exposing it to our customers, showing them how they can become more efficient, and working with them more closely to help them get there. But we're moving toward the direction of taking these opportunities and automating the process that allows them to save energy and money or participate in these opportunities.This requires us to analyze this data to predict outcomes that could happen in the near future so that we can prepare customers and get them set up and make them more valuable than others","37":"who don't have that information. It\u2019s not really a competition, but at the same time, we want to show clients that they can get value out of their data. So having all of our time-series data in a common place that we can query in a common way is going to really make that successful in the future.Advice & ResourcesMy advice is always to start with the type of data you\u2019re storing. In the beginning, you obviously don't want to break things out too early. You never know what could shift. Wait for that next use case before you start extracting or breaking things out: you never know if you\u2019ll end up doing it, and then you might just have more complexity on your hands for no reason.But as a whole, data is different across the board. It's okay to store it in different places that are meant to store that data. So, having a time-series database versus storing a relational database over here and maybe search indexes over here. That's okay. I mean, is your product going to be piecing those together and really leaning on the type of data I'm storing? What is the size and frequency of this data?And then selecting the right technologies specific to that data or maybe multiple technologies to handle that data. You should do that ahead of time because it gets more difficult the longer you wait to do so because it becomes the process of migrating all of that and doing it without downtime. But ultimately, that's just the best way to start: understand what you're storing and figure it out from there.Regarding resources, I think that theTimescale Docsare great. Especially dealing with other technologies and being a developer, there are many times you\u2019ll go to the documentation for some technology, and you\u2019ll be as confused as you were before you got there. I think Timescale has done a wonderful job with their docs and how they break it out into use cases and some examples.I also lean pretty heavily onCommunity Slack, whether or not I'm asking a question. It's just nice to monitor it and see what other people are asking. It might raise questions or give me ideas about issues we ran into in the past. And so having that as a resource","38":"as well, or knowing that if I have an issue, I can ask and get pretty quick and immediate feedback. It's really great.Between the Docs and the Community, it shouldn\u2019t be difficult to get up with what you need to meet your system\u2019s needs.Want more insider tips?Sign up for our newsletterfor more Developer Q&As, technical articles, and tutorials to help you do more with your data. We deliver it straight to your inbox twice a month.We\u2019d like to thank Michael and the folks at Ndustrial for sharing their story on how they speeded up their client-facing dashboards, even for real-time queries, while carefully storing all their customers\u2019 data by making the most of TimescaleDB\u2019s compression powers.We\u2019re always keen to feature new community projects and stories on our blog. If you have a story or project you\u2019d like to share, reach out on Slack (@Ana Tavares), and we\u2019ll go from there.The open-source relational database for time-series and analytics.Try Timescale for free","39":"This is an installment of our \u201cCommunity Member Spotlight\u201d series, where we invite TimescaleDB community members to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition,Felipe Queis, a senior full-stack engineer for a Brazilian government traffic institution, joins us to share how he uses TimescaleDB to power his crypto trading bot \u2013 and how his side project influenced his team\u2019s decision to adopt TimescaleDB for their work.My first experience with crypto wasn\u2019t under very good circumstances: a friend who takes care of several servers at his job was infected with ransomware \u2013 and this malware was demanding he pay the ransom amount in a cryptocurrency called Monero (XMR).After this not-so-friendly introduction, I started to study how the technology behind cryptocurrencies works, and I fell in love with it. I was already interested in the stock market, so I joined the familiar (stock market) with the novel (crypto). To test the knowledge I\u2019d learned from my stock market books, I started creating a simpleMoving Average Convergence Divergence (MACD)crossover bot.This worked for a while, but I quickly realized that I should - and could - make the bot a lot better.Now, the project that I started as a hobby has a capital management system, a combination of technical indicators, and sentiment analysis powered by machine learning. Between 10 March 2020 and 10 July 2020, my bot resulted in asuccess rateof 61.5%,profit factorof 1.89, and cumulative gross result of approximately 487% (you can see a copy of all of my trades during this period inthis Google Sheet report).About meI'm 29 years old, and I\u2019ve worked in a traffic governmental institution in S\u00e3o Paulo, Brazil (where I live too) as an senior full-stack developer since 2012.In my day job, my main task at the moment is processing and storing the stream of information from Object Character Recognition (OCR)-equipped speed cameras that capture data from thousands of vehicles as they travel our state highways. Our data stack uses technologies like Java, Node.js, Kafka, and TimescaleDB.(For reference, I started using TimescaleDB for my hobby project, and, after experiencing its performance and scale with my bot, I proposed we use it at my organization. We\u2019ve found that it brings together the best of both worlds: time-series in","40":"a SQL databaseandopen source).I started to develop my crypto trading bot in mid- 2017, about six months after my first encounter with the crypto ecosystem \u2013 and I\u2019ve continued working on it in my spare time for the last two and a half years.Editor\u2019s Note: Felipe recently hosted aReddit AMA (Ask Me Anything)to share how he\u2019s finally \u201cperfected\u201d his model, plus his experiences and advice for aspiring crypto developers and traders.About the projectI needed a bot that gave me a high-performance, scalable way to calculate technical indicators and process sentiment data in real-time.To do everything I need in terms of my technical indicators calculation, I collectcandlestick chartdata and market depth via an always-up websocket connection that tracks every Bitcoin market on theBinance exchange(~215 in total, 182 being tradeable, at this moment).The machine learning sentiment analysis started as a simple experiment to see if external news affected the market. For example: if a famous person in the crypto ecosystem tweeted that a big exchange was hacked, the price will probably fall and affect the whole market. Likewise, very good news should impact the price in a positive way. I calculated sentiment analysis scores in real-time, as soon as new data was ingested from sources like Twitter, Reddit, RSS feeds, and etc. Then, using these scores, I could determine market conditions at the moment.Now, I combine these two components with a weighted average, 60% technical indicators and 40% sentiment analysis.Felipe's TradingBot dashboard, where he tracks all ongoing trades and resultsQuick breakdown of Felipe\u2019s results and success rates week-over-week (for the period of 10 March 2020 - 10 July 2020)Using TimescaleDBAt the beginning, I tried to save the collected data in simple files, but quickly realized that wasn\u2019t a good way to store and process this data. I started looking for an alternative: a performant database.I went through several databases, and all of them always lacked something I wound up needing to continue my project. I tried MongoDB, InfluxDB, and Druid, but none of them 100% met my needs.Of the databases I tried,InfluxDB was a good option; however, every query that I tried to run was painful, due to their own query language (InfluxQL).As soon as my series started to grow exponentially to higher levels, the server didn't have enough memory to handle them all in real-time.","41":"This is because the currentInfluxDB TSMstorage engine requires more and more allocated memory for each series. I have a large number of unique metrics, so the process ran out of available memory quickly.I handle somewhat large amounts of data every day, especially on days with many market movements.On average, I\u2019m ingesting around 20k records\/market, or 3.6 million total records, per day (20k*182 markets).This is where TimescaleDB started to shine for me. It gave me fast real-time aggregations, built-in time-series functions, high ingestion rates \u2013 and it didn\u2019t require elevated memory usage to do all of this.Editor\u2019s Note:For more about how Flux compares to SQL and deciding which one is right for you,see our blog post exploring the strengths and weaknesses of each.To learn more about how TimescaleDB real-time aggregations work (as well as how they compare to vanilla PostgreSQL), seethis blog post and mini-tutorial.In addition to this raw market data, a common use case for me is to analyze the data in different time frames (e.g., 1min, 5min, 1hr, etc.). I maintain these records in a pre-computed aggregate to increase my query performance and allow me to make faster decisions about whether or not to enter a position.For example, here\u2019s a simple query that I use a lot to follow the performance of my trades on a daily or weekly basis (daily in this case):SELECT time_group, total_trades, positive_trades, negative_trades, ROUND(100 * (positive_trades \/ total_trades), 2) AS success_rate, profit as gross_profit, ROUND((profit - (total_trades * 0.15)), 2) AS net_profit FROM ( SELECT time_bucket('1 day', buy_at::TIMESTAMP)::DATE AS time_group, COUNT(*) AS total_trades, SUM(CASE WHEN profit > 0 THEN 1 ELSE 0 END)::NUMERIC AS positive_trades, SUM(CASE WHEN profit <= 0 THEN 1 ELSE 0 END)::NUMERIC AS negative_trades, ROUND(SUM(profit), 2) AS profit FROM trade GROUP BY time_group ORDER BY time_group ) T ORDER BY time_groupAnd, I often use this function tomeasure market volatility, decomposing the range of a market pair in a period:CREATE OR REPLACE FUNCTION tr(_symbol TEXT, _till INTERVAL) RETURNS TABLE(date TIMESTAMP WITHOUT TIME ZONE, result NUMERIC(9,8), percent NUMERIC(9,8)) LANGUAGE plpgsql AS $$ DECLARE BEGIN RETURN QUERY WITH candlestick AS ( SELECT * FROM candlestick c WHERE c.symbol = _symbol AND c.time > NOW() - _till ) SELECT d.time, (GREATEST(a, b, c)) :: NUMERIC(9,8) as result, (GREATEST(a, b, c) \/ d.close) :: NUMERIC(9,8) as percent FROM ( SELECT","42":"today.time, today.close, today.high - today.low as a, COALESCE(ABS(today.high - yesterday.close), 0) b, COALESCE(ABS(today.low - yesterday.close), 0) c FROM candlestick today LEFT JOIN LATERAL ( SELECT yesterday.close FROM candlestick yesterday WHERE yesterday.time < today.time ORDER BY yesterday.time DESC LIMIT 1 ) yesterday ON TRUE WHERE today.time > NOW() - _till) d; END; $$; CREATE OR REPLACE FUNCTION atr(_interval INT, _symbol TEXT, _till INTERVAL) RETURNS TABLE(date TIMESTAMP WITHOUT TIME ZONE, result NUMERIC(9,8), percent NUMERIC(9,8)) LANGUAGE plpgsql AS $$ DECLARE BEGIN RETURN QUERY WITH true_range AS ( SELECT * FROM tr(_symbol, _till) ) SELECT tr.date, avg.sma result, avg.sma_percent percent FROM true_range tr INNER JOIN LATERAL ( SELECT avg(lat.result) sma, avg(lat.percent) sma_percent FROM ( SELECT * FROM true_range inr WHERE inr.date <= tr.date ORDER BY inr.date DESC LIMIT _interval ) lat ) avg ON TRUE WHERE tr.date > NOW() - _till ORDER BY tr.date; END; $$; SELECT * FROM atr(14, 'BNBBTC', '4 HOURS') ORDER BY dateWith TimescaleDB, my query response time is in the milliseconds, even with this huge amount of data.Editor\u2019s Note: To learn more about how TimescaleDB works with cryptocurrency and practice running your own analysis,check out our step-by-step tutorial. We used these instructions toanalyze 4100+ cryptocurrencies, see historical trends, and answer questions.Current Deployment & Future PlansTo develop my bot and all its capabilities, I used Node.js as my main programming language and various libraries:Coteto communicate between all my modules without overengineering,TensorFlowto train and deploy all my machine learning models, andtulindfor technical indicator calculation, as well as various others.I modified some to meet my needs and created some from scratch, including a candlestick recognition pattern, a level calculator for support\/resistance, and Fibonacci retracement.Current TradingBot architecture + breakdown of various Node.js librariesToday, I have a total of 55 markets (which are re-evaluated every month, based on trade simulation performance) that trade simultaneously 24\/7; when all my strategy conditions are met, a trade is automatically opened. The bot respects my capital management system, which is basically to limit myself to 10 opened positions and only use 10% of the available capital at a given time. To keep track of the results of an open trade, I use dynamicTrailing Stop LossandTrailing Take Profit.The process of re-evaluating a market requires a second instance of my bot that runs in the background and uses my main strategy to simulate trades in","43":"all Bitcoin markets. When it detects that a market is doing well, based on the metrics I track, that market enters the main bot instance and starts live trading. The same applies to those that are performing poorly; as soon as the main instance of my bot detects things are going badly, the market is removed from the main instance and the second instance begins tracking it. If it improves, it's added back in.As every developer likely knows all too well, the process of building a software is to always improve it. Right now, I\u2019m trying to improve my capital management system usingKelly Criterion, assuggested by a userin my Reddit post (thanks, btw :)).Getting started advice & resourcesFor my use case, I\u2019ve found TimescaleDB is a powerful and solid choice: it\u2019s fast with reliable ingest rates, efficiently stores and compresses a huge dataset in a way that\u2019s manageable and cost-effective, and gives me real-time aggregation functionality.TheTimescale website,\"using TimescaleDB\" core documentation, andthis blog post about about managing and processing huge time-series datasetsis all pretty easy to understand and follow \u2013 and the TimescaleDB team is responsive and helpful (and they always show up in community discussions, likemine on Reddit).It\u2019s been easy and straightforward to scale, without adding any new technologies to the stack. And, as an SQL user, TimescaleDB adds very little maintenance overhead, especially compared to learning or maintaining a new database or language.We\u2019d like to thank Felipe for sharing his story, as well as for his work to evangelize the power of time-series data to developers everywhere. His success with this project is an amazing example of how we can use data to fuel real-world decisions \u2013 and we congratulate him on his success \ud83c\udf89.We\u2019re always keen to feature new community projects and stories on our blog. If you have a story or project you\u2019d like to share, reach out on Slack (@lacey butler), and we\u2019ll go from there.Additionally, if you\u2019re looking for more ways to get involved and show your expertise, check out theTimescale Heroesprogram.The open-source relational database for time-series and analytics.Try Timescale for free","44":"This is an installment of our \u201cCommunity Member Spotlight\u201d series, where we invite our customers or users to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition, David Bailey, an intern at the Wendelstein 7-X fusion reactor experiment at theMax Planck Institute for Plasma Physics, explains how he\u2019s using TimescaleDB and Grafana to monitor the reliability of the reactor\u2019s heating system. Currently working on the designs of the sensor boards that measure the microwaves feeding the reactor, David needs a tight grasp on his systems and data to prevent the experiment from being aborted due to excessive heating\u2014and is successfully achieving it with a little help from TimescaleDB.About the UserI am David Bailey, and I am currently completing an internship at the Wendelstein 7-X fusion reactor experiment, which is operated by the Max Planck Institute for Plasma Physics in Greifswald, Germany. The experiment aims to help us understand, and someday utilize, the power of fusion for further scientific endeavors and power generation. It does this by using a novel way of containing the hot gasses needed for the experiments and tweaking its design to reach longer and longer experiment runs.David BaileyThe end goal is to reach 30 minutes of uninterrupted containment of plasma heated to millions of degrees. To be able to do this, there is a lot of data to collect and process and a number of problems left to solve\u2014one of which I can help with!About the ProjectMy specific task at the internship is to help with the heating system. Because the experiment is not set up for self-sustaining fusion, where the gasses would heat themselves, we constantly have to feed in energy to keep it hot: 10 megawatts, to be precise!We do this with various microwave sources\u2014similar to scaled-up versions of household microwaves\u2014and a big array of mirrors to guide the energy to the reactor vessel.Schematic of the W7-X microwave heating system and mirror assembly. Credit: Torsten Stange, David Bailey; Max Planck Institute GreifswaldThere are dangers in using these highly powerful microwaves: if dust or a fine droplet of water gets in the way of the energy, an arc can form\u2014a lightning bolt of sorts. If the energy is not turned off fast enough, this arc can","45":"do a lot of damage, and it also means that we need to abort the experiment to wait for things to cool off again\u2014not good if you want to run everything reliably for long periods of time!Image of a forming microwave arc, taken at the Max Planck IPP Greifswald experiment siteMy task is to design sensor boards to precisely track the amount of energy coming out of the microwave array. The ultimate goal is to detect changes in the power output on the microsecond scale, so the power can be turned off before the arc fully forms. If done right, we can turn the heating back on without a pause and continue the experiment!One of the key aspects of what I am designing is that it needs to be reliable. If it's not sensitive enough, or too sensitive, or if there are issues with the communication with the rest of the system, it can severely impact the rest of the experiment in a negative way.One of the sensors that David is working onThe only way to ensure something is reliable is through data\u2014a lot of it. A problem might present itself only after hundreds of hours or in subtle ways that are only apparent across days of data, but it can still be relevant and important to know about.\u200bWriting a program to handle this amount of data myself would've been an unnecessary effort. It needs a tool that has the necessary functionality in it already, such as statistical operators, compression, etc., and you can get all of this in time-series databases, such as TimescaleDB!To track that the sensors and system are working as expected, I collect and handle several types of data using TimescaleDB:I am recording the general health metrics of the board in question: temperature, voltage levels, etc. These shouldn't change, but the harsh environment close to the reactor might cause issues, which would be very important to know about!Log messages of the boards themselves to understand what the software was doing.And finally, detection events: every time the board sees something suspicious, it sends a measurement series of this event, about 1,000 samples taken over a millisecond. We can use this during the initial development phase to ensure everything is working correctly. I can use a function generator to send a predetermined reference","46":"signal and compare that to what the board tells me it saw. If there are discrepancies, those might point to errors in the soft- or hardware and help me fix them.When the system is deployed, we can use these measurements to refine the detection system, to be able to set it as fast as possible without too many false positives, and gather data about how the actual physical events look to the board.Choosing (and Using!) TimescaleDB\u2728Editor's Note:See how you can get started with Grafana and TimescaleDB with ourdocsorvideos.I started using Timescale to track data formy self-built smart homeas a small playground for me\u2014that's still running! Aside from that, I only use it for the monitoring system mentioned above, though I hope to motivate others at my research institute to use it! It is also my go-to for other projects, should I need a way to store measurements efficiently.The top factors in my decision to use TimescaleDB were, first, the open-source nature of it. Open-source software can be much more beneficial to a wider range of people, mature faster, generally has more flexible features, and isn't so locked into a specific environment. It's also much more approachable to individuals because of no fussy licensing\/digital rights management.Then, the documentation. You can read up on a lot of things that TimescaleDB can do, complete with great examples! It doesn't feel like you're alone and have to figure it out all by yourself\u2014there's rich, easy-to-understand documentation available, and if that doesn't have what you need, the community has been very helpful, too.\u2728Editor's Note:Need help with TimescaleDB? Join ourSlack CommunityorForumand ask away!And lastly,it's still all just SQL! You don't need to learn another database-specific format, but you can start using it immediately if you've worked with any standard database before! That was helpful because I already knew the basics of SQL, giving me a great starting point. Plus, you can use PostgreSQL's rich relational database system to easily store non-time-series data alongside your measurements.Because the Wendelstein is fairly old, database tools didn\u2019t exist when it started. As such, they decided to write their own tool,called ArchiveDB, and never quite brought it to the modern age. It can only store time-series data in a particular format and has no relational or statistical tools aside from minimum\/maximum aggregates, no continuous aggregates,","47":"and probably no compression.\u201cIn the future, I want to motivate my research institute to install a proper multi-node TimescaleDB cluster. It could bring many much-needed modern features to the table, and distributed hypertables and the matching distributed computing of statistics could be incredibly useful\u201dStoring all my measurement data in it would have been possible, but I would have had to write all of the statistical processing myself. Using Timescale was a major time-saver! I tried other tools, but none of them quite fit what I needed. I didn't want to spend too much time on an unfamiliar tool with sparse documentation.First, I tried the company\u2019s standard database, ArchiveDB, but it didn\u2019t offer much more functionality than simply saving a CSV file. I also tried another PostgreSQL extension,Citus. It didn\u2019t lend itself nicely to my use case because the documentation was not as clear and easy, and it seemed much more tailored to a distributed setup from the start, making trying it out on my local machine a bit tricky. I believe I gaveInfluxDBa try, but writing in PostgreSQL felt more natural. Additionally, it was helpful to have the regular relational database from PostgreSQL and the rich set of aggregate functions.I might have used PostgreSQL without TimescaleDB,or perhaps InfluxDB had it not been for Timescale.The Grafana panels observing the sample measurements. A single event is plotted above for inspection using a scatter plot, while the accuracy of the individual measurements is plotted in a time-series belowOne of the things I am verifying right now is the measurements\u2019 consistency. This means running thousands of known reference signals into the boards I am testing to see if they behave as expected. I could automate this using a query that JOINs a regular table containing the reference data with aTimescaleDB hypertablecontaining the measurements.With a bit of clever indexing, I was able to use the corr(x, y) function to check if things lined up. Thanks to the rich data types of PostgreSQL, I can cache metadata such as this correlation in a JSONB field. This speeds up later analysis of the data and allows me to store all sorts of extra values for individual events.The resulting data I then downsampled usingminto find the worst offenders.WITH missing_bursts AS ( SELECT burst_id FROM adc_burst_meta WHERE NOT metadata ? 'correlation' AND $__timeFilter(time)),","48":"raw_correlations AS ( SELECT burst_id, corr(value, reference_value) AS \"correlation\" FROM adc_burst_data INNER JOIN missing_bursts USING(burst_id) INNER JOIN adc_burst_reference USING(burst_offset) GROUP BY burst_id ) update_statement AS ( UPDATE adc_burst_meta SET metadata = jsonb_set(metadata, '{correlation}', correlation::text::jsonb) FROM raw_correlations WHERE adc_burst_meta.burst_id = raw_correlations.burst_id ) SELECT $__timeGroup(time, $__interval) AS \u201ctime\u201d, min((metadata->>\u2019correlation\u2019)::numeric) FROM adc_burst_meta WHERE $__timeFilter(time) GROUP BY \u201ctime\u201dThat made even small outliers very easy to spot across hundreds of thousands of samples and made analyzing and tagging data a breeze! This insight is incredibly useful when you want to ensure your system works as intended. I could easily find the worst measurements in my sample set, which allowed me to quickly see if, how, and in what way my system was having issues.Current Deployment and Future Plans\u200bRight now, I deploy TimescaleDB on a small, local computer.Running the Docker image has been very useful in getting a fast and easy setup, too!In the future, I want to motivate my research institute to install a proper multi-node TimescaleDB cluster. It could bring many much-needed modern features to the table, and distributed hypertables and the matching distributed computing of statistics could be incredibly useful! My queries could work orders of magnitude faster than my local machine with little extra effort.For the most part, I interact with TimescaleDB through a simple Ruby script, which acts as an adapter between the hardware itself and the database. I also used Jupyter notebooks and theJupyter IRuby Kernelto do more in-depth data analysis.\u2728Editor's Note:Check out this videoto learn how to wrap TimescaleDB functions for the Ruby ecosystem.\u201cGrafana and Timescale really go hand in hand, and both of them are excellent open-source tools with rich documentation\u201dI do use Grafana extensively! Grafana and Timescale really go hand in hand, and both of them are excellent open-source tools with rich documentation. Both have Docker images and can be set up quickly and easily. It is great to plot the measurements with just a few SQL queries.\u200bWithout Grafana, I would have had to write a lot of the plots myself, and correlating different time-series events with each other would have been much harder. Either I would have had to spend more time implementing that myself, or I wouldn't have gotten this level of information from my measurements.\u200bThe main benefit of using TimescaleDB is that you get a well-balanced mixture. Being","49":"built on top of PostgreSQL and still giving you access to all regular relational database features, you can use TimescaleDB for a much larger variety of tasks.\u200bYou can also dive right in, even with minimal SQL knowledge\u2014and if you ever do get stuck, theTimescaleandPostgreSQL documentationare well written and extensive, so you can almost always find a solution!\u200bLastly, there is no \"too small\" for TimescaleDB either. Being open source, quick to set up, and easy to use while performing well even on a spare laptop or PC, it can be a valuable tool for any sort of data acquisition\u2014even if it feels like a \"small\" task!\u200bI learned a lot about my system already by using TimescaleDB and can be much more confident in how to proceed thanks to it. In a way, it has even changed my developer experience. I have the data acquisition and TimescaleDB running continuously while working on new software features or modifying the hardware. If I were to introduce a bug that could mess up the measurements, I might see those much sooner in the data. I can then react appropriately and quickly while still developing.\u200bI can worry less about ensuring everything works and focus more on adding new features!Advice and ResourcesGive TimescaleDB a try whenever you need to record any kind of time-series data. It's much easier to use than writing your own script or dumping it into a CSV file. The built-in functionality can take care of a lot of number crunching very efficiently, allowing you to benefit from years of finely developed functions. It's well worth the trouble, and there's no such thing as \"too small\" a use case for it!\u200bTimescaleDB has helped me be more confident in developing my hardware, and I want to motivate others in my field to try it out themselves. A lot can be gained from a few days or months of data, even if at first you don't think so\u2014some insights only pop out at larger scales, no matter what you're working on.I am very excited to share my use case of TimescaleDB. Whenever I think of databases, I am drawn to these larger web services and big tech companies\u2014but that doesn't have to be the case! That can also be helpful advice for others looking for the right database for their","50":"use case.We\u2019d like to thank David and all of the folks at the Max Planck Institute for Plasma Physics for sharing their story on how they\u2019re monitoring the Wendelstein 7-X fusion reactor\u2019s heating system using TimescaleDB.We\u2019re always keen to feature new community projects and stories on our blog. If you have a story or project you\u2019d like to share, reach out on Slack (@Ana Tavares), and we\u2019ll go from there.The open-source relational database for time-series and analytics.Try Timescale for free","51":"This is an installment of our \u201cCommunity Member Spotlight\u201d series, where we invite TimescaleDB community members to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition, Mikko Ohtamaa, CEO at Trading Strategy, joins us to share how they give traders and investors direct access to high-quality trading strategies and real-time control over their assets by integrating market data about thousands of crypto assets, algorithms, profitability simulation, and more into one solution. Thanks to TimescaleDB, they can focus on solving business problems without a need to build the infrastructure layer.Trading Strategyis a protocol for algorithmic trading of crypto-assets in decentralized markets. Cryptocurrency traders and strategy developers can utilize the protocol to easily access and trade on next-generation markets with sophisticated tools that have been traditionally available only for hedge funds.Users don\u2019t need to have a deep understanding of blockchain technology, as the Trading Strategy protocol is designed to make a complex topic easier to understand and approach. This is accomplished by integrating market data feeds for thousands of crypto assets, algorithm development, profitability simulation, trade execution, and smart contract-based treasury management tools into one vertically integrated package.About the teamMy name isMikko Ohtamaa. I am the CEO of Trading Strategy. I have been a software developer for 25 years. For the last decade, I have been CTO of various cryptocurrency and fintech companies. I am also one of the firstEthereum Dappdevelopers and Solidity smart contract auditors.Trading Strategy is a remote-first company with five people. We have offices in London and Gibraltar. We use a combination of remote working tools (Discord, Github, Google Workspace) and more intense get-together sprint weeks to manage the software development.As our work is highly technical, all team members have backgrounds in software development, quantitative finance, or blockchain technologies.About the projectTrading Strategy operates on market data feeds, for which raw data is collected directly from the blockchains. Most market data is heavily time-series, though there are also elements of product catalog features like different trading pairs, tokens, and exchanges.Because of the powerful combination of PostgreSQL and TimescaleDB, we can store the data in a single database,making it simple for software developers to build on top of this and this, in turn, saves us a lot of software development costs.We","52":"have two kinds of workloads:historical datasets, that are challenging sizewise, andreal-time data feedsfor algorithms that are challenging latency-wise. TimescaleDB offers vertical scaling as a data lake, but also offers continuous real-time aggregations for time-series data, making it a good fit for real-time needs.\u2728Editor\u2019s Note:We\u2019ve put together resources about TimescaleDB\u2019scontinuous aggregatesto help you get started.Data from TimescaleDB is feeding bothon our market information websiteand feeds, but also on the trading algorithms themselves, which make the trading decisions based on the data input. Our applications include OHLCV, or so-called candle charts, market summaries information like daily top trades and liquidity, and risk information for technical trade analysis.Collage of charts from Trading Strategy websiteChoosing (and using!) TimescaleDBPostgreSQL has been the open-source workhorse of databases for the last three decades and offers the most well-known, solid, foundation to build your business on.We chose TimescaleDB over other time-series databases because of its solid PostgreSQL foundation, easy, out-of-the-box functionality, and true open-source nature with an active TimescaleDB community.Moreover, TimescaleDB comes with well-documented code examples on how to use it for stock-market chart data, allowing us to take these examples and build our first MVP based on TimescaleDB example code.\u2728Editor\u2019s Note:Check out ourthree-step tutorialto learn how to collect, store, and analyze intraday stock data.For example, we heavily utilize the continuous aggregate view feature of TimescaleDB, to upsample our 1-minute candle data to 15 minutes, 1 hour, and daily candles.We can fully offload this work to TimescaleDB, with only a minimal 10-20 lines of SQL code describing how to upsample different columns.Current deployment & future plansBesides TimescaleDB, our other major components in the software development stack are Svelte\/SvelteKitweb frontend framework and Python, Pyramid, andSQLAlchemybackend.I invite everyone evaluating TimescaleDB toread our blog post about our software architecture.The current architecture diagramAt the moment, we have trading data from 1000 decentralised exchanges (aka dexes), from three blockchains (Ethereum, Polygon and Binance Smart Chain), featuring 800k trading pairs. For reference,NASDAQhas only 3000 trading pairs, giving a reference point for the massive diversity of blockchain and cryptocurrency markets! Currently, we are fitting everything on one 1 TB database, but we are still early on what kind of data points we collect. We expect the database to grow dozens of terabytes over the next year.Architecture diagram of trading data sourcesTrading Strategy is completing its seed round. So far,","53":"the team has been lean. We expect to start growing as a business now, as our business is finding a product-market fit. We are looking to launch user-accessible trading strategies later this year, as soon as we are confident the software stack is well-behaving and related smart contracts are secure.We are at the bleeding edge of blockchain technology. Many of the components we built and many of the problems we solve we do as the first in the world.TimescaleDB allows us to focus on solving these business problems without us needing to build the infrastructure layer ourselves.\ud83d\uddef\ufe0fIf you are interested in crypto trading strategies, please come to ask any questions in ourpublic Discord chat.Advice & resourcesIf you are generally interested in algorithmic trading and machine-based solutions on financial markets, pleaseread our announcement blog postto learn about our vision for decentralised finance and decentralised protocol.To see TimescaleDB in action, youcan explore our public real-time API endpoints, view ourreal-time market data charts, ordownload historical market datasets generatedout from TimescaleDB.Trading Strategy contributes heavily to open source. You canstudy our Trading Strategy Python clientand our100% open source SvelteKit frontend.If you have software development questions or questions about trading strategies, please come to ask any questions inour public Discord chat.We also love coffee brewing tips shared by the TimescaleDB. Due to increased brewing activity, our team is now 150% caffeinated.It matters, and is one of the major reasons I came to Timescale to work in#DevRel.And for the record, I'm totally up for answering any coffee questions you want to throw our way. \u2615\ufe0f\ud83d\ude09https:\/\/t.co\/f74kT9eHWF\u2014 Ryan Booz (@ryanbooz)January 19, 2022We\u2019d like to thank Mikko and the entire Trading Strategy team for sharing their story! We applaud your effort to give access to high-quality trading strategies to users around the world.We\u2019re always keen to feature new community projects and stories on our blog. If you have a story or project you\u2019d like to share, reach out on Slack (@Lucie \u0160ime\u010dkov\u00e1), and we\u2019ll go from there.The open-source relational database for time-series and analytics.Try Timescale for free","54":"This is an installment of our \u201cCommunity Member Spotlight\u201d series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition, Ken Ahrens, co-founder and CEO of Speedscale, joins us to share how they modernize and automate testing practices for cloud infrastructure by providing API traffic data going into and out various microservices. Thanks to TimescaleDB, Speedscale\u00b4s UI loads quickly and provides the ability to drill deep down into high-fidelity data.Speedscaleis one of the first commercial technologies utilizingactual API trafficin order to generate tests and mocks. Speedscale helps Kubernetes engineering teams validate how new code will perform under production-like workload conditions.Speedscale service mapSpeedscale provides unparalleled visibility, collects and replays API traffic, introduces chaos, and measures the golden signals of latency, throughput, saturation, and errors before the code is released.Screenshot of Speedscale UISpeedscale Traffic Replayis a modern load, integration, and chaos testing framework -- an alternative to legacy scripting tools that can take days or weeks to run and do not scale well for modern architectures.If your organization provides a SaaS product that is critical for revenue, or your team is responsible for performant infrastructure, Speedscale is for you. Speedscale enables engineering leaders to generate quality automation quickly without the need for manual scripting. Since actual API calls (not scripts) are the primary ingredient, tests and mocks can be built and regenerated quickly to keep pace with the speed of changing business requirements.As microservices become more separated logically, they are highly dependent on each other to deliver the expected functionality. This means performance problems become distributed across multiple services and can be difficult to trace. Multiple contributing factors affect the state of an application in microservices and Kubernetes environments. A testing harness that closely mirrors the production setup and incoming traffic has become a requirement for highly distributed and containerized environments.By leveraging traffic to automatically generate sophisticated mocks, engineers and testers are granted the ability to isolate and contract\/performance test smaller components in the context of a tightly coupled architecture. This superpower enables rapid testing iterations. Moreover, without the need for scripting, testing can finally move as fast as development.About the foundersSpeedscale\u2019s leadership team comes from companies like New Relic, Observe Inc, Wily Introscope (bought by CA","55":"Technologies), and iTKO (bought by CA Technologies).My name isKen Ahrens. I am co-founder and CEO of Speedcale. Much of my career has been focused on helping companies develop and manage complex web applications. I previously ran North America teams for New Relic and CA\/Broadcom. Previous startups included Pentaho (acquired by Hitachi), ITKO (acquired by CA\/Broadcom), and ILC (acquired by General Dynamics). My first foray into programming started with a brand new language called Java at Georgia Tech and has grown into a lifetime interest.Matthew LeRay, co-founder and CTO at Speedscale, has invested the past 20 years in improving the performance of applications across multiple generations of technology. Previously, he was head of product at Observe, SVP at CA Technologies (acquired by Broadcom), and engineering leader at ILC (acquired by General Dynamics). He is an alumnus of Georgia Tech in both Computer Engineering and Business. His first love is debugging Golang code but he occasionally takes a break to craft hand-carved guitars.Nate Lee, co-founder and VP of Sales & Marketing, has served a variety of roles within the software industry. Most recently, he was in enterprise sales for the digital transformation consultancy Contino (acquired by Cognizant). Prior to Contino, he served as Product Manager at CA Technologies, by way of iTKO where he was a Presales Engineer for 6 years. Before iTKO, he spent time as a support leader at IBM Internet Security Systems, and engineer at ILC (acquired by General Dynamics). He graduated from Georgia Tech with an MBA in Technology, and a BS in Computer Science. You\u2019ll most likely find him outdoors on 2 wheels when he\u2019s not innovating with his Speedscale buddies.As a small, nimble startup, our normal workweek is comprised mostly of helping customers scope their use cases and deciding where to start with our testing framework (recording traffic, generating traffic replay \u201cscenarios\u201d comprised of tests and mocks of auto-identified dependencies). We are an engineering startup with a heavy emphasis on Kubernetes and Golang. We also are improving the protocol and version support of both our Enterprise Kubernetes version and Desktop version called theSpeedscale CLI.About the projectWe noticed the application of outdated testing practices to modern cloud infrastructure (eg. UI testing, manual testing, API test tools with no mocking). As the number of connections in distributed, containerized applications grew, the need","56":"for quality automation increases exponentially. As a result, the popularity ofcanary releases and blue green deploymentshave risen, but we believe this is due to a lack of robust quality automation alternatives.Speedscale uses a transparent proxy to capture API transaction data from which to model robust API tests and realistic mocks of backend dependencies. Our traffic replay framework iscapable of showing engineering teamscomplex headers, authentication tokens, message bodies, and associated metadata (with sensitive data redaction when necessary). In addition, the platform is able toautomatically identify backend dependenciesthat are needed to operate your service, allowing new developers on old services to get up to speed quickly. This data is streamed to AWS S3 and filtered for test and mock scenario creation. These scenarios can then be replayed as part of validation test suites and integrated into CI or GitOps workflows.Our customers need to be able to understand the API traffic going into and out of their various microservices over time. They want to see the sequence of API calls as well as the trend of the overall volume of calls.Data is ingested by our platform into our cloud data warehouse. As new data arrives, we determine the index where that API call can be found and write the index to TimescaleDB. Then we can use the data from TimescaleDB to find the original value. Because the indexes are much smaller than the original data, we are able to calculate aggregates on the fly and plot them in our user interface. The Traffic Viewer graph shows inbound and outbound calls, backend dependencies, and an \u201cinfinite scroll\u201d list of traffic. All of these components are powered by TimescaleDB queries.Speedscale Traffic ViewerChoosing (and using!) TimescaleDBWe knew right from the start that we have a time-series problem. There was always new data flowing in, and users wanted to focus on data from certain periods of time, they didn't just want all the data presented to them. We decided to use a time-series database to store the data.We wanted a technology that could run inside Kubernetes, is easy to operate (we are a startup after all) and scale for our needs. We initially implementedElasticsearchand exposed the data throughKibana. It let us quickly prototype the use cases and worked great for lower volumes of data. But it scaled poorly for our use","57":"case and we had very little control over the look and feel of the UI. Then we evaluated TimescaleDB, Influx, Prometheus and Graphite.We selected TimescaleDB because we were already using PostgreSQL as part of our technology stack, and also the paper evaluation looked like TimescaleDB would scale well at our load ranges.\u2728Editor\u2019s Note:For more comparisons and benchmarks, seehow TimescaleDB compares to InfluxDB, MongoDB, AWS Timestream, vanilla PostgreSQL, and other time-series database alternativeson various vectors, from performance and ecosystem to query language and beyond.We useSQiurreLto issue SQL queries like this one that powers the inbound throughput graph.rrPairsQuery := sq.Select( fmt.Sprintf(\"time_bucket(INTERVAL '%s', time) AS bucket\", durationToSQLInterval(interval)), \"is_inbound\", \"COUNT(id)\"). From(rrPairsTableName). GroupBy(\"is_inbound\", \"bucket\"). OrderBy(\"bucket\")We deploy TimescaleDB on theKubernetes operatorviaFlux. Our core services are currently written in Golang which we use to connect TimescaleDB with microservices inside Kubernetes as well as AWS Lambda.Currently, our architecture that touches TimescaleDB looks like this:Current Speedscale architecture diagramAfter implementing TimescaleDB, our AWS cloud costs went down about 35% because it is cheaper to run than the AWS OpenSearch we used before. In addition, the query performance improved dramatically, a majority of queries take under 100ms to complete.Advice & resourcesHaving aKubernetes operatorwas a big help for us because it was proof that this was built for our architecture.We\u2019ve made a version of our traffic capture capability available as a free CLI which you can find here:https:\/\/github.com\/speedscale\/speedscale-cliWe\u2019d like to thank Ken and all folks from Speedscale for sharing their story. We applaud your efforts to modernize and automate testing practices for modern cloud infrastructure.\ud83d\ude4cWe\u2019re always keen to feature new community projects and stories on our blog. If you have a story or project you\u2019d like to share, reach out on Slack (@Lucie \u0160ime\u010dkov\u00e1), and we\u2019ll go from there.The open-source relational database for time-series and analytics.Try Timescale for free","58":"This is an installment of our \u201cCommunity Member Spotlight\u201d series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition, Julien Salinas, full-stack developer, founder, and chief technology officer (CTO) at NLP Cloud, talks about how his team is building an advanced API to perform natural language processing (NLP) tasks while taking care of the complexity of AI infrastructures for developers.About the CompanyNLP Cloudis an advanced API for text understanding and generation in production. The most recent AI models are easy to use on NLP Cloud (GPT-NeoX 20B, GPT-J, Bart Large, among others). Thanks to the API, you can perform all kinds of natural processing language processing tasks: text summarization, paraphrasing, automatic blog post generation, text classification, intent detection, entity extraction, chatbots, question answering, and much more!Several API clients are available, so you can easily add language AI to your application in Python, Go, JavaScript, Ruby, and PHP. You can also train or fine-tune your own AI model on NLP Cloud or deploy your in-house models.Today, more than 20,000 developers and data scientists use NLP Cloud successfully in production! They love NLP Cloud because they don\u2019t want to deal with MLOps (DevOps for machine learning) by themselves. NLP Cloud takes care of the complex infrastructure challenges related to AI (GPU reliability, redundancy, high availability, scaling, etc.).About the TeamMy name is Julien Salinas, and I\u2019m a full-stack developer, founder, and CTO of NLP Cloud. Our company has a team of six high-level engineers skilled in NLP, DevOps, and low-level optimization for machine learning.The team works hard to provision state-of-the-art NLP models like GPT-NeoX (equivalent to OpenAI\u2019s GPT-3) and make sure that these models run reliably in production and at an affordable cost.About the ProjectA summarization task performed by the NLP Cloud APIWe realized we needed a time-series database when our users asked us for a pay-as-you-go planfor GPT-J, one of our open-source NLP models. They wanted to be charged based on the number of words they\u2019re generating, the same way OpenAI does with their GPT-3 API. Our users also wanted to monitor their usage through their NLP Cloud dashboard.So, we started implementing TimescaleDB to log the following:The number of API calls per user and API endpointThe","59":"number of words sent and generated per user by GPT-J and GPT-NeoXThe number of characters sent and received by our multilingual add-onWe had two main requirements:Writing the data had to be very fast in order not to slow down the APIQuerying the data had to be easy for our admins to quickly inspect the data when needed and easily show the data to our customers on their dashboardChoosing (and Using!) TimescaleDB\u2728Editor\u2019s Note:Not that you really need them, but here are nine reasons to choose TimescaleDB vs. InfluxDB or AWS Timestream.I found out about Timescale by looking for InfluxDB alternatives. I found the Telegraf, Influx, and Grafana (TIG) stack quite complex, so I was looking for something simpler.\u201cTimescaleDB is a cornerstone of our pay-as-you-go plans\u201dThe top factors in my decision for Timescale were the following:Easy data downsampling thanks to continuous aggregatesPostgreSQL ecosystem: no need to learn something new, and we were all already skilled in SQL and PostgreSQL, so it saved us a lot of time and energyWe use TimescaleDB behind ournatural language processing APIto track API usage. Based on that, we can do analytics on our API and charge customers depending on their consumption. TimescaleDB is a cornerstone of our pay-as-you-go plans. Most of our users select such plans.If you want to see how we do it, I detailedhow we use TimescaleDB to track our API analyticsin a previous blog post.\u201cThe greatest TimescaleDB feature for us is the ability to automatically downsample data thanks to continuous aggregates\u201dBefore using TimescaleDB, we did very naive analytics by simply logging every API call into our main PostgreSQL database. Of course, it had tons of drawbacks. We had always known it would be a temporary solution as long as the volume of API calls remained reasonably low (right after launching the API publicly), and we quickly switched to TimescaleDB as soon as possible.We also evaluated a TIG solution (InfluxDB) but found that the complexity was not worth it. If TimescaleDB did not exist, we would maybe stick to a pure log-based solution backed by Elasticsearch.Current Deployment and Future PlansWe use TimescaleDB as a Docker container automatically deployed by our container orchestrator. Two kinds of applications insert data into TimescaleDB: Go and Python microservices. To visualize the data, we\u2019re using Grafana.The greatest TimescaleDB feature for us is the ability","60":"to automatically downsample datathanks to continuous aggregates. We\u2019re writing a lot of data within TimescaleDB, so we can\u2019t afford to keep everything forever, but some high-level data should be kept forever. Before that, we had to develop our own auto-cleaning routines on PostgreSQL: it was highly inefficient, and some of our read queries were lagging. It\u2019s not the case anymore.\u2728Editor\u2019s Note:Learn how you can proactively manage long-term data storage with downsamplingorread our docs on downsampling.The NLP Cloud API is evolving very fast. We are currently working hard on multi-account capabilities: soon, our customers will be able to invite other persons from their team and manage multiple API tokens.In the future, we also plan to integrate severalnew AI modelsand optimize the speed of our Transformer-based models.Advice and ResourcesWe recommend Timescale to any development team looking for a time-series solution that is both robust and easy to deal with. Understandably, most developers don\u2019t want to spend too much time implementing an analytics solution. We found that TimescaleDB was simple to install and manage for API analytics, and it scales very well.TheTimescaleDB docsare a very good resource. We didn\u2019t use anything else.My advice for programmers trying to implement a scalable database strategy? Don\u2019t mix your business database or online transaction processing (OLTP) with your online analytical processing or analytics database (OLAP).It\u2019s quite hard to efficiently use the same database for both day-to-day business (user registration and login, for example) and data analytics. The first one (OLTP) should be very responsive if you don\u2019t want your user-facing application to lag, so you want to avoid heavy tasks related to data analytics (OLAP), as they are likely to put too much strain on your application.Ideally, you want to handle data analytics in a second database that is optimized for writes (like TimescaleDB) and is perfectly decoupled from your OLTP database. The trick then is to find a way to properly move some data from your OLTP database to your OLAP database. You can do this through asynchronous extract, transform, and load (ELT) batch jobs, for example.We\u2019d like to thank Julien and his team at NLP Cloud for sharing their story and writing a blog post on how the NLP Cloud Team uses TimescaleDB to track their API analytics.We\u2019re always keen to feature new community projects and stories on our","61":"blog. If you have a story or project you\u2019d like to share, reach out on Slack (@Ana Tavares), and we\u2019ll go from there.The open-source relational database for time-series and analytics.Try Timescale for free","62":"IntroductionI have been involved in building DBMSs for 50 years. During that time, I have been the main architect behind PostgreSQL (the foundation of Timescale), Vertica, VoltDB, and Paradigm4. Recently, I have been studying user-facing problems, most notably, \u201cHow do users derive information from the massive amount of data we are collecting?\u201dSometimes users know exactly what they are interested in, and a conventional dashboard (such as Tableau or Spotfire) can help them find it. Often, however, the real question behind a query a user wants to run is, \u201cTell me something interesting?\u201d I.e., \u201cShow me an actionable insight.\u201d To provide these meaningful data insights, a sophisticated visualization system is needed to complement more traditional analytics systems.I have long been a fan of Google Maps, which allows you to go from a picture of the Earth to the plot map on your street in 21 clicks. This is an exemplar of a \u201cdetail on demand\u201d system, often called a \u201cpan-zoom\u201d interface. A big advantage of such systems is that no user manual is required since the interface is so intuitive. Unfortunately, Google Maps only works for geographic data. So what to do if you have floor plans, 3D models, scatter plots, or the myriad of other representations that users want to see?Hoparacan be thought of as \u201cGoogle Maps on steroids.\u201d It will produce pan-zoom displays for any kind of data. It is especially applicable for real-time monitoring applications, often from IoT data collection or asset tracking of sensor-tagged devices.Hopara is almost three years old, headquartered in Boston, and employs 12 people.Figure 1. Example of a Hopara app in the lab space (powered by Timescale)In this post, I will walk you through a Hopara monitoring application powered by TimescaleDB. It shows the benefit of Hopara visualization aided by a traditional analytics dashboard. This application reports vibration issues in sensor-tagged machines, and the real-time vibration data is stored in a Timescale database for effective real-time querying.The Problem: Monitoring (Lots of) Sensor Data in Real TimeLet\u2019s consider a French company that operates 58 factories in Brazil, manufacturing construction materials (think pipes, glue, and nails). This company is referred to as FC in the rest of this post.FC is in the process of installing about 50K sensors from a Brazilian vendor, IBBX. These sensors primarily report vibration, typically at","63":"100 msec intervals. Excessive vibration is often an early warning of machine failure or the need for urgent service. Hence, real-time monitoring is required for 50K time series of vibration data.Unlike some applications that can aggregate data in the network from sensor to server, FC requires that details be available on all sensors so abnormal events can be reported on individual machines.These abnormal events can include the following:Latest reading over a thresholdFive sequential readings over five minutes above a second thresholdOne reading per minute over a third threshold for 10 minutesA reading over a fourth threshold more than once a day for a monthIn addition, FC wants to filter machines by location (e.g., only those plants in S\u00e3o Paulo) and by time (e.g., report only weekend vibrations).A time-series database is the optimal solution for storing the 50K time-series sensor data for a long period of time. Although this database is likely measured in GB, it is easy to imagine much larger applications.In the rest of this blog post, I first talk about the FC reporting architecture and their future requirements. Then, I discuss the requirements for the database, and why Hopara ended up using Timescale.From Data to Insights: Building Actionable VisualizationsFC runs a sophisticated analytics application provided by IBBX. It monitors vibrations and employs machine learning-based predictive analytics to forecast needed repair events. The IBBX dashboard for FC is shown in Figure 2. It shows \u201cthe details\u201d using typical dashboard technology. This is very useful for initiating corrective action when required.Figure 2. FC\/IBBX dashboard using time-series sensor data in real timeHowever, this dashboard does not show \u201cthe big picture\u201d desired by the FC personnel. Hence, IBBX recently partnered with Hopara to produce a \u201cdetail-on-demand\u201d system for the same data. Figure 3 shows FC factories on a map of Brazil color-coded with their facility health.Figure 3. The Big Picture: FC factories on a map of Brazil color-coded with their facility healthNotice that there are two factories with a yellow status. If an FC user wants to \u201cdrill into\u201d one of them, the user will see Figure 4. Figures 4 and 5 shows greater detail about one yellow sensor in Figure 3, while Figure 6 shows the time series of sensor readings for the sensor in question over five days. Notice that, in a few clicks,","64":"a user can move from an overview to the actual time-series data.FC users appreciate both the analytics dashboard and the Hopara drill-down system. As a result, IBBX and Hopara combined their software into a single system. The takeaway from this example is that there is a need for predictive analytics and insightful visualization. IoT customers should have both kinds of tools in their arsenal.\u2728Editor's Note:If you want to learn more abouttime-series forecasting, its applications, and popular techniques, check out this blog post.Figure 4. The factory in questionWe now turn our attention to response time. It is accepted pragma that the response time for a command to a visualization system must be less than 500 msec. Since it takes some time to render the screen, the actual time to fetch the data from a storage engine must be less than this number. The next section discusses DBMS performance considerations in more detail.Behind The Scenes: Powering Real-Time Visualizations Using TimescaleFigure 5. More real-time detailsFigure 6. The actual dataAs mentioned previously, these real-time views are powered by TimescaleDB. TimescaleDB is built on top of PostgreSQL and extends it with a series of extremely useful capabilities for this use case, such asautomatic partitioning by time,boosted performance for frequently-run queries, andcontinuous aggregates for real-time aggregations.To guarantee a real-time display, Hopara fetches live data from the database for every user command. Otherwise, stale data will be rendered on the screen. The screenshots above come from a real Hopara application interacting with a database. We note in Figure 2 that the alerting condition is the first one mentioned in a previous section (the latest reading over a threshold).In other words, the display is showing a computation based on the most recent values from the various sensors. Specifically, Hopara uses a database with the schema shown in Figure 7, with a Readings table with all the raw data. This is connected to a Sensor table with the characteristics of each individual sensor.Figure 7. The database schemaThen, the display in Figure 2 requires fetching the most recent reading for each sensor. This can be produced by running the following two-step PostgreSQL query:\u2013\u2014 get the latest reading timestamp + sensor_id SELECT max(timestamp) as timestamp, sensor_id FROM readings GROUP BY sensor_id \u2014\u2014 get the reading value SELECT l.timestamp, l.sensor_id, r.value FROM latest l INNER JOIN","65":"readings r ON r.sensor_id = l.sensor_id AND r.timestamp = l.timestampThis query, while easy to understand, is not efficient. The following representation leverages PostgreSQLdistinct onand Timescaleskip scanto perform the query faster, so it is a preferred alternative.SELECT DISTINCT ON (sensor_id) * FROM readings WHERE timestamp > now() - INTERVAL '24 hours' ORDER BY sensor_id, timestamp DESC;Note that condition one can be triggered inadvertently, for example, by a worker brushing against the machine. Hence, some combination of conditions 2-4 is a more robust alerting criterion. Unfortunately, these require complex real-time aggregation, which is not present in PostgreSQL. As a result, Hopara switched to TimescaleDB, which extends PostgreSQL with these capabilities (through its continuous aggregate capabilities).Turn now to Figure 6, which displays five days of data for three sensors. Since each sensor is reporting every 100 msec, there are around 4.5M observations in a five-day window. Obviously, this level of granularity is inappropriate for the display presented. In addition, there is no way to produce the display within the required response time. Hence, Hopara aggregates the raw data into two-minute averages using Timescale\u2019scontinuous aggregates(Figure 5 displays these averages).Timescale\u2019shypertablesautomatically partition big tables, so it\u2019s easier for the query planner to localize time-series data. This greatly accelerates queries such as the one required to produce Figure 5, another reason for the switch from PostgreSQL to TimescaleDB.As a result, Hopara and TimescaleDB are powerful tools for IoT applications of the sort discussed in this blog post.We want to thank Professor Michael Stonebraker and the team at Hopara for sharing their story on how they are providing meaningful visualization solutions for their customers\u2019 sensor data. As PostgreSQL lovers and enthusiasts, we are incredibly grateful and proud to see Professor Stonebraker using TimescaleDB to provide real-time insights to Hopara\u2019s customers.If you want to learn more about Timescale and see how we handle time-series data, events, and analytics,read our Developer Q&As. These are real stories from real developers working in the real world. And if you want to try our cloud solution, sign up for a 30-day free trial. You will have access to all its unique features, from continuous aggregations to advanced analytical functions (and you don\u2019t even need a credit card!).About the AuthorMichael Stonebrakeris a pioneer of database research and technology. He joined the University of California, Berkeley, as an assistant","66":"professor in 1971 and taught in the computer science and EECS departments for 29 years.While at Berkeley, he developed prototypes for the INGRES relational data management system, the object-relational DBMS, POSTGRES, and the federated system, Mariposa. He is the founder of three successful Silicon Valley startups whose objective was to commercialize these prototypes.Mike is the author of scores of research papers on database technology, operating systems, and the architecture of system software services. He was awarded the ACM System Software Award in 1992 (for INGRES) and the Turing Award in 2015.He was elected to the National Academy of Engineering and is presently an adjunct professor of computer science at MIT\u2019s Computer Science and AI Laboratory (CSAIL.)The open-source relational database for time-series and analytics.Try Timescale for free","67":"This is an installment of our \u201cCommunity Member Spotlight\u201d series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition, Nicolas Quintin, head of Data atOctave, shares how the company migrated from AWS Timestream to Timescale in search of a more mature and scalable database and is revolutionizing the battery market by improving the battery systems\u2019 safety and predicting maintenance needs.To do so, the Octave team collects and analyzes millions of data points daily while dramatically saving disk space (their compression ratio is 26.06!) and delivering speedy queries on historical data on client-facing applications. How do they do it? With a little help from Timescale's compression capabilities and continuous aggregates.About the CompanyOctaveis a cleantech company based in Belgium that gives electric vehicle (EVs) batteries a second life. We develop energy storage systems by repurposing usedlithium-ion (Li-ion) batteriesand transforming them into smart, sustainable assets to store the excess wind and solar energy.Batteries from an electric vehicle are typically retired when their usable capacity has decreased to roughly 80 percent. Octave gives these batteries a new life through smart solutions for stationary energy storage, for which demand is rapidly growing. This way, we can save resources and raw materials that would be traditionally used to produce new batteries.The company repurposes batteries from electric vehicles to create these battery cabinetsOctave\u2019s batteries are suitable technologies for small and medium-sized enterprises or industrial sites looking to optimize their energy management or decrease their electricity bill amid the record-high energy prices in Europe.More specifically, Octave\u2019s sustainable energy storage system allows customers to increase their self-consumption and cope with the intermittency of renewable energy sources. It also enables customers to participate actively in the energy markets, becoming more independent from energy suppliers, fossil fuels, and grid operators.About the TeamWe\u2019re currently a team of around 10 people working on everything related to electrical and mechanical design engineering, embedded and software engineering, and business development. We\u2019re growing fast!As the head of data, my role at Octave is to collect data from the edge devices, store them in our databases, develop data pipelines, improve and optimize the battery state algorithms through big data analytics, and present actionable insights in dashboards. Finally, I also ensure that","68":"this entire process happens seamlessly.About the ProjectOctave distinguishes itself from traditional battery suppliers by leveraging the plethora of data and measurements from the battery system and building up an extensive history of each battery cell.We handle large streams of battery measurements with clear time-series characteristics: each data point is composed of a timestamp and a value. These data are collected from the battery systems (our IoT edge devices) and sent back to our cloud for further analysis.Among the information we collect, the most basic yet crucial data points are undoubtedly the voltage and temperature measurements from each battery cell in operation.One of Octave\u2019s dashboards made with Grafana and Timescale\"We initially used AWS Timestream in the early days of Octave, which at first seemed a natural choice to handle our time-series data since our cloud infrastructure was entirely built in AWS. However, we quickly realized we would need a more widely used, mature, and scalable database solution\"The data are streamed back to ourBattery Cloud(our in-house developed cloud platform, hosted on AWS and relying on Timescale databases), where they are crunched and further processed. This allows us the following:Analyze the battery cells\u2019 behavior and degradation based on their history and how they are cycled (the temperature, current levels, and depth of discharge significantly impact the lifetime of batteries!).Improve the safety of the system by immediately detecting anomalies.Implement a data-driven predictive maintenance process. The ultimate goal is to predict when to replace a used battery module, and by doing so, we can extend the lifetime of the entire system. This is a true game-changer for second-life battery systems.\u2728Editor's Note:Learn what time-series forecasting is, its applications, and its main techniques in this blog post.A diagram of Octave\u2019s Battery CloudChoosing (and Using!) TimescaleDBI have been using PostgreSQL for some time, and we were keen to use tools and stacks we were familiar with for the sake of efficiency. So inevitably, I was immediately interested when I heard about an interesting PostgreSQL extension called TimescaleDB, specifically built to handle time-series data, which we knew we needed since we were dealing with a typical IoT use case.\"Timescale has proven to be a key enabler of Octave\u2019s data-driven Battery Cloud technology\"We initially used AWS Timestream in the early days of Octave, which at first seemed a natural choice to handle our time-series","69":"data since our cloud infrastructure was entirely built in AWS. However, we quickly realized we would need a more widely used, mature, and scalable database solution if we ever wanted to scale our operations and deploy several dozen or hundred second-life battery systems in the field. So, we went looking for alternatives.After some research, Timescale quickly became our preferred option, given itsimpressive compression ratios, lightning-fast queries,unmissable continuous aggregates, friendlycommunityandextensive documentation, and most importantly, its plain PostgreSQL syntax.The cherry on the cake is Timescale's ease of use and user-friendly interface.We went immediately for Timescale because we were looking for a managed service, and Timescale seemed the recommended option and was nicely compatible with our preferred AWS region.\u2728Editor\u2019s Note:Timescale\u2019s user interface now offers an even friendlier and user-centered experience.The Timescale Team shared their redesign journey and lessons in this blog post.We have found TimescaleDB\u2019s compression ratio to be absolutely phenomenal! We\u2019re currently at a compression ratio of over26, drastically reducing the disk space required to store all our data.A narrow table modelOctave\u2019s compression ratio with TimescaleThe power of continuous aggregates is hard to overstate:they are basically materialized views that are continuously and incrementally refreshedand allow for lightning-fast queries on large historical datasets.I have found thedocumentationto be very clear and abundant. Every feature is very well explained. So it\u2019s very easy toget started with TimescaleDB. And if we have more precise questions specifically related to our use case, we can always rely on our customer success manager or the very reactive Support Team. \ud83d\ude42\u2728Editor\u2019s Note:Read how our Support Team raises the bar on hosted database support.Current Deployment & Future PlansMost of our backend software is currently written in Python. We leverage AWS IoT to manage our battery fleet and circulate the data between our edge devices and our battery cloud viaMQTT.We rely on some ETL (extract, transform, load) pipelines interacting with Timescale that extract battery measurements and insert the processed data back into the database. We also use some dashboarding tools, such asGrafanaandStreamlit, as well as API endpoints connected to our Timescale database.It\u2019s no secret that time-series data can grow very fast. We currently store close to one million data points per battery system daily. As we have already sold our first 28 battery cabinets, the size of our database is expected to increase quickly. This is","70":"only the start, as we expect to triple or quadruple sales by the end of 2023.So far, we have found Timescale to be powerful, scalable, and pretty well-suited for our application. Timescale has proven to be a key enabler of Octave\u2019s data-driven Battery Cloud technology.We have started to leverage the power of continuous aggregates. For example, continuous aggregates are queried behind the scenes of our customer-facing applications. They enable our clients to quickly and seamlessly inspect and download historical data of their second-life battery systems.SELECT time_bucket(INTERVAL '15 min', time) AS bucket, bms.iot_thing, bms.iot_device, bms.name, bms.string, bms.module, bms.cell, avg(bms.value_real) AS value_real, last(bms.value_str, time) AS value_str FROM public.bms GROUP BY bucket, iot_thing, iot_device, name, string, module, cell;\u2728Editor\u2019s Note:Here are three reasons you should upgrade to the new version of continuous aggregates.RoadmapWe are very proud and honored to recently have won the competitive call from theEIC Accelerator, led by the European Innovation Council! We\u2019re now working towards industrializing and scaling our battery cloud technology.Advice & ResourcesI believe that getting started with a hands-on example is always a good way to evaluate something. You can try Timescale for free with a demo dataset to get acquainted with the service.So I recommend quickly spinning up a first TimescaleDBinstance and having fun playing around with the service.Also,there is very extensive documentation and tons of examples and tutorialsavailable on the website, which helps you quickly master Timescale! So make sure to have a look at the website.Anything else you'd like to add?Thanks to Timescale for this opportunity to share our story and our mission at Octave!Want to read more developer success stories?Sign up for our newsletterfor more Developer Q&As, technical articles, tips, and tutorials to do more with your data\u2014delivered straight to your inbox twice a month.We\u2019d like to thank Nicolas and all the folks at Octave for sharing how they\u2019re leveraging continuous aggregates and Timescale\u2019s compression powers to handle their millions of battery cell data points daily.We\u2019re always keen to feature new community projects and stories on our blog. If you have a story or project you\u2019d like to share, reach out on Slack (@Ana Tavares), and we\u2019ll go from there.The open-source relational database for time-series and analytics.Try Timescale for free","71":"This is an installment of our \u201cCommunity Member Spotlight\u201d series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition, part of the team atDensity\u2014Shane Steidley, director of software, andBrock Friedrich, software engineer\u2014explain how they are using TimescaleDB to query data from IoT devices to help companies with substantial real estate footprints make data-driven decisions to optimize their real estate usage while reducing carbon emissions.About the CompanyShane:Density builds technology that helps companies understand how people use physical space. Founded in 2014, our platform provides workplace analytics enabled by custom-built sensors which capture the complexities of how people move through and use space without invading privacy. These sensors feed raw data to Density\u2019s analytics platform\u2014a fast, data-rich system that provides comprehensive insights into how spaces are used, allowing companies to easily compare a space's performance against its intended purpose, another space, or portfolio benchmarks.The platform can reveal if employees are choosing focus space or collaborative space, which floors are the most popular (and why), and how one office\u2019s occupancy rate compares to others in a portfolio or against industry benchmarks. Today, our technology is helping inform decisions for the workplaces of some of the largest companies in the world, spanning 32 countries, with more than 1.25 billion square feet under management. Our growing list of customers ranges from Fortune 100 to high-growth tech companies that see the value in understanding the performance of their office spaces to lower operational costs, improve employee experience, and reduce their carbon footprint.Our ultimate mission is to measure and improve humanity\u2019s footprint on the world\u2014optimizing commercial real estate portfolios is just the first step. Thirty-nine percent of CO2 emissions are directly or indirectly linked to real estate construction, so if we can help companies measure and optimize their use of real estate, we can have an outsized impact on the different issues that are impacting climate.A tweet from the Density Team on Earth DayWith Density, customers can understand how their space is used and right-size it. When we started, we needed to sell the problem and then sell our solution. Post-COVID, everybody understands the problem and the data that they could have access to, and how Density can provide value.Brock: Density","72":"also provides that value while maintaining the anonymity of each person that walks underneath our sensors.Shane: Privacy is very important to us; it\u2019s one of our core tenets. And because of this, we don\u2019t use cameras\u2014we use other sensor types, namely infrared and radar, that don\u2019t capture any personally identifiable information (PII).About the TeamShane: Density was born out of a web development consultancy. The consultancy founders got tired of walking to their favorite coffee shop during the cold, harsh winter in upstate New York only to find a long line. This unpleasant experience gave them the idea to create an occupancy sensor.As you might expect, given the company\u2019s origin, the Density engineering team started with 4-5 engineers with a heavy web development background. We have since grown our engineering team into a team capable of performing what I call true full-stack development. We have an electrical engineering team that designs our hardware and lays out the boards, and our devices are manufactured in Syracuse, NY, where we also have an R&D lab. Our team includes experts in mechanical design and embedded software, and we now have a backend system with multiple pipelines (whose data typically ends up in TimescaleDB) and multiple React-based frontend applications.Brock: As a team, there are many different daily routines. It\u2019s a mix of running production systems like Shane mentioned, live data pipelines, running historical analysis, or writing new features.Shane:And we\u2019re hiring! If you are interested in joining the Density Team,please check out our jobs page!About the ProjectShane: We use different types of data at different stages. Our entry sensors generate infrared data that is very dense. It\u2019s not feasible to send this dense data to the cloud, so we have to do all processing and machine learning at the edge (on the device). The results of this edge processing are +1\/-1 counts that can be aggregated in our pipelines and TimescaleDB.Our radar-based sensors generate sparse data, so we do less processing at the edge and more processing in the backend. That data has to go through a pipeline and get transformed before it makes sense to insert it into TimescaleDB and perform any aggregations. TimescaleDB really provides value when it comes to querying the data, allowing customers to slice the data up in multiple dimensions. That is something that just","73":"wasn\u2019t easy before we started using TimescaleDB.Brock:Yeah, to tack onto that, in TimescaleDB we store counts of people in spaces over time, and a wealth of derivative metrics off of those people counts, things like how long were people in spaces, not specific people, but how long was what we call dwell time?How long was this space used continuously, or what was its usage compared to similar space types throughout the day?One of the parts I think Shane was trying to highlight is that there's a real dynamism to how those queries can take shape in that they can be sliced and diced and composed in a more or less arbitrary number of ways. And TimescaleDB\u2019s flexibility\u2014it is built on a relational model at the end of the day\u2014and its ability to do the partitioning under the covers and thehypertablesto let us access all of the data back in time very quickly is the magic combination that we were looking for in a time-series database to meet our use case.Choosing (and Using!) TimescaleDBBrock: I found out about Timescale back in a previous life, circa early 2019. I worked for an oil and gas firm and was doing a lot of research into time-series storage and the options available in that space because we were developing a data software solution for supervisory control and data acquisition. Essentially, it boiled down to real-time remote sensing and monitoring for industrial controls.During that research, I happened across TimescaleDB, which was still pretty early on. It was right about the timecontinuous aggregatescame out, which was one of the big selling points for me. So when I came to Density, they were just beginning to evaluate options for time-series databases for our applications. I was able to contribute my previous experience with TimescaleDB to that process. As we evaluated the options, TimescaleDB came out as the clear winner, and the rest is history.\u2728Editor\u2019s Note:Read our documentationto learn more about continuous aggregates.Shane:As an IoT company, we\u2019ve had sensors since the very beginning. And when we started, a lot of the engineering staff came from a web consultancy, so I don\u2019t think we did realize from the beginning thatwe needed a time-series database or even quite knew what a time-series database was.\u201cI think moving forward, TimescaleDB, at least in my opinion, is","74":"just going to be the default time-series database\u201dShane SteidleyWhat seems obvious to us now wasn\u2019t obvious back in 2017, when we built an entire time-series database using stored procedures and vanilla PostgreSQL. It was pretty cool when we finally brought over TimescaleDB. We were like: \u201cOh, it just does all this for us! Look, there\u2019s a bucket function, and it\u2019s going to return the right size buckets that you need. And it handles all of the weirdness of time zones and daylight savings time.\u201d And you can ingest all this data, whereas before, because of how we were using PostgreSQL, we would struggle with ingesting the amount of data we needed to ingest.I think moving forward, TimescaleDB, at least in my opinion, is just going to be the default time-series database. I think you're just going to have to have a reason not to use TimescaleDB because it's so simple and fits in with PostgreSQL.Brock:The top factors that led us to TimescaleDB specifically were its tolerance for high insert rates. It's just blown away all of our expectations, even based on benchmarks that we were able to see online at the time. It's built on top of PostgreSQL, as Shane talked about earlier. There's very little in the way of a special TimescaleDB domain-specific language, and it's operationally very familiar to operating vanilla PostgreSQL.Both of those were huge wins, just both operationally and development-wise. We always have the ability to fall back on core PostgreSQL principles or relational data models as we need to, but we also have the capability to dive deeper into TimescaleDB\u2019s specific functionality to meet those big time-series use cases.\u201cI get the most pride in doing plain SQL against TimescaleDB, getting time-series results at scale, and not having to do a bunch of backflips\u201dBrock FriedrichShane:We use TimescaleDB like a time-series database should be used. We use it not just for the continuous aggregates of count data and other metrics that Brock's touched on, but the bucketing, the things that are so complicated if you push them to application code. When handled in TimescaleDB, it just gives you the right data the way that you want it. There are obviously some edge cases, but 99 % of the time, TimescaleDB just does what you want it to do.Brock: What would we","75":"use if TimescaleDB didn't exist is one of those topics that I like not to think about because it gives me anxiety. There are plenty of other time-series database options, but none fit the cross-section of requirements that at least Density has in quite the manner that TimescaleDB does. So whenever somebody else asks me that question, like in passing, I just say, \u201cLet's just pretend like that's not possible and go about our business.\u201dI get really proud of querying against TimescaleDB whenever we run really simple queries, like selecting the data from one of our sensors for a day from six years ago, and we run that at scale, and it runs like it would run in a much smaller scale like we only had a few months of data. And that goes back to one of the things I was appreciating earlier, which is that chunk exclusion \u2013\u2013 that ability to operate what would be these really large query plans for vanilla PostgreSQL, and trim them down to something that\u2019s predictable and reasonable, and operates at relatively low latencies. So all that\u2019s to say, I get the most pride in doing plain SQL against TimescaleDB, getting time-series results at scale, and not having to do a bunch of backflips.\/* This query yields space count aggregates at 10-minute resolution for a given set of spaces over a three-day period, where each 10-minute bucket is represented in the output, even if that bucket contains no data.The query first selects data from a sparse one-minute cagg and unions that data to a set of empty records, generated with the Postgres generate_series function, then rolls up the unioned records into 10-minute aggregates. The union against the set of empty records ensures that all 10-minute intervals are represented in the final results. This step is necessary as the one-minute data is sparse, meaning a given 10-minute interval could contain no data, and the time_bucket_gapfill function does not register that a bucket needs to be injected if no records exist within an interval. *\/ select und.space_id, time_bucket('10m', und.inner_bucket) as bucket, min(und.occupancy_min) as occupancy_min, max(und.occupancy_max) as occupancy_max, first(und.first_occupancy, und.inner_bucket) filter (where und.first_occupancy is not null) as first_occupancy, last(und.last_occupancy, und.inner_bucket) filter (where und.last_occupancy is not null) as last_occupancy from (select c1m.bucket as inner_bucket, c1m.space_id as space_id, c1m.occupancy_min as occupancy_min, c1m.occupancy_max","76":"as occupancy_max, c1m.first_occupancy as first_occupancy, c1m.last_occupancy as last_occupancy from cav_space_counts_1m c1m where c1m.bucket between '2022-05-22 13:00:00+0000' and '2022-05-25 13:00:00+0000' and c1m.space_id in (997969122178368367, 997969123637986180) union select time_bucket_gapfill('10m', generate_series, '2022-05-22 13:00:00+0000', '2022-05-25 13:00:00+0000') as inner_bucket, space_id, null as occupancy_min, null as occupancy_max, null as first_occupancy, null as last_occupancy from generate_series('2022-05-22 13:00:00+0000'::timestamptz, '2022-05-25 13:00:00+0000'::timestamptz, '10m') join unnest(array [997969122178368367, 997969123637986180]) as space_id on true) as und group by und.space_id, bucket order by bucket;\u2728Editor\u2019s Note:Learn more about chunk exclusionin this blog post about how we fixed long-running now ( ) queries (and made them lightning fast), orread our docs for more info on hypertables and chunks.Current Deployment and Future PlansBrock:For data visualization, we useTableauandGrafana.The primary languages we use that interact with TimescaleDB are Rust and Python. Bonus: big shout out to JetBrains for their database IDE,DataGrip. It is the best on the market by a wide margin.\u2728Editor\u2019s Note:Slow Grafana performance?Learn how to fix using downsampling in one of our recent blog posts.We find TimescaleDB to be very simple to use, just flat-out, dead simple. Any TimescaleDB-specific semantics, all of the defaults always take you a long way toward meeting whatever use case you're setting out to achieve. The narrative and API documentation online is first class, in my opinion.But maybe the most telling point is that there\u2019s very little shock value whenever you\u2019re discovering new feature value or features within TimescaleDB. And by shock value, I mean whenever I discover something like a continuous aggregate, for example, it operates conceptually almost identically to how vanilla PostgreSQL materialized view operates, but there\u2019s extra pizazz on top that TimescaleDB does to meet the real-time component of the materialized view, refresh in the background, and all that.So I don't really want to undersell whatTimescaleDB is doing under the covers to make the magic happen. But, from an end perspective, coming from a PostgreSQL background, many of the features align conceptually with what I would expect if I was just writing something against the vanilla PostgreSQL.RoadmapShane:When we started, we threw everything at TimescaleDB, and now we\u2019re being more responsible users of TimescaleDB. We\u2019re at that sweet spot within TimescaleDB where it\u2019s found product-market fit within Density.Brock:It\u2019s hard to name my favorite TimescaleDB feature, but continuous aggregates have been a game-changer in a variety of different ways. Early on, whenever we first onboarded","77":"to TimescaleDB and deployed, it made development significantly faster, and we could just offload a lot of decision logic and complexity around time zone handling and bucketing (that\u2019s a big one) to TimescaleDB and let it handle that complexity for us.Continuous aggregates come into play in that we were able to roll up multiple resolutions of our sensor account data, our people count data, and make that available in a much more efficient way with little-to-no effort so far as the code that we actually had to write to deliver those efficiencies.Continuous aggregates are becoming less important for us now than they were in our previous usage, just because as Shane was talking about earlier on, we're growing to such a size, and our use cases are becoming so complex that we're wanting to move to more the ETL (extract, transform, load) type of processing out of the database. So we're not monopolizing database resources to do some of those computations and move them upstream of the database into processing pipelines and still take advantage of continuous aggregates but to a lesser degree. We're doing less of the mathematical stuff in the database, but we're still using continuous aggregates to roll up high-resolution data to lower resolutions.Advice & ResourcesBrock:If I had to recommend resources, the first would probably be theTimescale blog. It\u2019s been historically pretty informative over the years about the internals, like what\u2019s happening in TimescaleDB underpinning a specific feature. One that I remember specifically is explaining thevarious compression algorithms in play for different data types within PostgreSQL. Being able to distill that knowledge down to a blog article that I could consume and then assimilate into my mental model of what was going on under the covers of the technology I was using has been helpful repeatedly.The advice that I would give for building a scalable database or a strategy around that is that when designing for an analytic workload specifically, don't direct any read load to the master or in standby notes. Always use a read replica for enough reasons that we probably don't have enough time to talk about here.The primary determinant of how efficient and scalable your solutions are going to be boils down to how many rows your queries have to touch for any given type of query","78":"you submit. Touching in that context includes both the scanning of index tuples and heap access for the rows, the end of the indexed contents of the rows, so be smart with your indexes and only index what you need and design towards the end of needing as few indexes as possible, because those are how you reduce that overhead that your database has to work through to fulfill a particular request or query.Shane: So my advice, at least for an IoT company, is to consider your real-time use cases and your historical use cases and consider them separately. What we found out is we treated everything the same. Everything went through the same pipeline, and it was just queries that were different. When you're using TimescaleDB\u2014and really any architecture\u2014it's extremely useful to consider those use cases separately and architect them separately. They have different requirements. If you try to shoehorn all data, in real time, into any time-series database, whether it's something awesome like TimescaleDB or something else, it's going to cause problems and it's not going to scale very well. You can do a lot more by separating historical and real-time use cases.We\u2019d like to thank Shane, Brock, and all the folks at Density for sharing their experience with TimescaleDB in measuring and optimizing real estate usage.We\u2019re always keen to feature new community projects and stories on our blog. If you have a story or project you\u2019d like to share, reach out on Slack (@Ana Tavares), and we\u2019ll go from there.The open-source relational database for time-series and analytics.Try Timescale for free","79":"This is an installment of our \u201cCommunity Member Spotlight\u201d series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition,Paolo Bergantino, Director of Software for the Horticulture business unit at METER Group, joins us to share how they make data accessible to their customers so that they can maximize their cannabis yield and increase efficiency and consistency between grows.AROYAis the leading cannabis production platform servicing the U.S. market today. AROYA is part ofMETER Group, a scientific instrumentation company with 30+ years of expertise in developing sensors for the agriculture and food industries. We have taken this technical expertise and applied it to the cannabis market, developing a platform that allows growers to grow more efficiently and increase their yields \u2013 and to do so consistently and at scale.About the teamMy name isPaolo Bergantino. I have about 15 years of experience developing web applications in various stacks, and I have spent the last four here at METER Group. Currently, I am the Director of Software for the Horticulture business unit, which is in charge of the development and infrastructure of the AROYA software platform. My direct team consists of about ten engineers, 3 QA engineers, and a UI\/UX Designer. (We\u2019re also hiring!)About the projectAROYA is built as a React Single-Page App (SPA) that communicates with a Django\/DRF back-end. In addition to usingTimescale Cloudfor our database, we use AWS services such as EC2+ELB for our app and workers,ElastiCache for Redis,S3for various tasks,AWS IoT\/SQSfor handling packets from our sensors, and some other services here and there.\u2728Editor\u2019s Note:\"Timescale Cloud\" is known as \"Managed Service for TimescaleDB\" as of September 2021.As I previously mentioned, AROYA was born out of our desire to build a system that leveraged our superior sensor technology in an industry that needed such a system. Cannabis worked out great in this respect, as the current legalization movement throughout the U.S. has resulted in a lot of disruption in the space.The more we spoke to growers, the more we were struck by how much mythology there was in growing cannabis and by how little science was being applied by relatively large operations. As a company with deeply scientific roots, we found it to be a perfect match","80":"and an area where we could bring some of our knowledge to the forefront.We ultimately believe the only survivors in the space are those who can use data-driven approaches to their cultivation to maximize their yield and increase efficiency and consistency between grows.As part of the AROYA platform, we developed a wireless module (called a \u201cnose\u201d) that could be attached to our sensors. Using Bluetooth Low Energy (BLE) for low power consumption and attaching a solar panel to take advantage of the lights in a grow room, the module can run indefinitely without charging.The AROYA nose in its natural habitat (aroya.ioInstagram)The most critical sensor we attach to this nose is called the TEROS 12, the three-pronged sensor pictured below. It can be installed into any growing medium (like rockwool, coconut coir, soil, or mixes like perlite, pumice, or peat moss) and give insights into the temperature, water content (WC), and electrical conductivity (EC) of the medium. Without getting too into the weeds (pardon the pun), WC and EC, in particular, are crucial in helping growers make informed irrigation decisions that will steer the plants into the right state and ultimately maximize their yield potential.The AROYA nose with a connected TEROS 12 sensor (aroya.ioInstagram)We also have an ATMOS 14 sensor for measuring the climate in the rooms anda whole suite of sensorsfor other use cases.An AROYA repeater with an ATMOS 14 sensor for measuring the climate (aroya.ioInstagram)AROYA\u2019s core competency is collecting this data - e.g., EC, WC, soil temp, air temperature, etc. - and serving it to our clients in real-time (or, at least \u201creal-time\u201d for our purposes, as our typical sampling interval is 3 minutes).Growers typically split their growing rooms into irrigation zones. We encourage them to install statistically significant amounts of sensors into each room and its zones, so that AROYA gives them good and actionable feedback on the state of their room. For example, there\u2019s a concept in cultivation called \"crop steering\" that basically says that if you stress the plant in just the right way, you can \"steer\" it into generative or vegetative states at will and drive it to squeeze every last bit of flower. How and when you do this is crucial to doing it properly.Our data allows growers to dial in their irrigation strategy, so they can hit","81":"their target \"dryback\" for the plant (this is more or less the difference between the water content at the end of irrigation until the next irrigation event). Optimizing dryback is one of the biggest factors in making crop steering work, and it's basically impossible to do well without good data. (We provide lots of other data that helps growers make decisions, but this is one of the most important ones.)Graph showing electrical conductivity (EC) and water content (WC) data related to a room in AROYA.This can be even more important when multiple cultivars (\u201cstrains\u201d) of cannabis are grown in the same room, as the differences between two cultivars regarding their needs and expectations can be pretty dramatic. For those unfamiliar with the field, an example might be that different cultivars \"drink\" water differently, and thus must be irrigated differently to achieve maximum yields. There are also \"stretchy\" cultivars that grow taller faster than \"stocky\" ones, and this also affects how they interact with the environment. AROYA not only helps in terms of sensing, but in documenting and helping understand these differences to improve future runs.The most important thing from collecting all this data is making it accessible to users via graphs and visualizations in an intuitive, reliable, and accurate way, so they can make informed decisions about their cultivation.We also have alerts and other logic that we apply to incoming data. These visualizations and business logic can happen at the sensor level, at the zone level, at the room level, or sometimes even at the facility level.A typical use case with AROYA might be that a user logs in to their dashboard to view sensor data for a room. Initially, they view charts aggregated to the zone level, but they may decide to dig deeper into a particular zone and view the individual sensors that make up that zone. Or, vice versa, they may want to pull out and view data averaged all the way up to the room. So, as we designed our solution, we needed to ensure we could get to (and provide) the data at the right aggregation level quickly.Choosing and using TimescaleDBThe initial solutionDuring the days of our closed alpha and beta of AROYA with early trial accounts (late 2017 through our official launch December 2019), the amount of data","82":"coming into the system was not significant. Our nose was still being developed (and hardware development is nice and slow), so we had to make due with some legacy data loggers that METER also produces. These data loggers only sampled every 5 minutes and, at best, reported every 15 minutes. We usedAWS\u2019 RDS Aurora PostgreSQLservice and cobbled together a set of triggers and functions that partitioned our main readings table by each client facility \u2013 but no more. Because we have so many sensor models and data types we can collect, I chose to use anarrow data modelfor our main readings table.This overall setup worked well enough at first, but as we progressed from alpha to beta and our customer base grew, it became increasingly clear that it was not a long-term solution for our time series data needs. I could have expanded my self-managed system of triggers and functions and cobbled together additional partitions within a facility, but this did not seem ideal. There had to be a better way!I started looking into specific time-series solutions. I am a bit of a home automation aficionado, and I was already familiar with InfluxDB \u2013 butI didn\u2019t wish to split my relational data and readings data or teach my team a new query language.TimescaleDB, being built on top of PostgreSQL, initially drew my attention: it \u201cjust worked\u201d in every respect, I could expect it to, and I could use the same tools I was used to for it.At this point, however, I had a few reservations about some non-technical aspects of hosting TimescaleDB that prevented me from going full steam ahead with it.\u2728Editor\u2019s Note:For more comparisons and benchmarks, seehow TimescaleDB compares to InfluxDB, MongoDB, AWS Timestream, and other time-series database alternativeson various vectors, from performance and ecosystem to query language and beyond.Applying a band-aid and setting a goalBefore this point, if I am perfectly truthful, I did not have any serious requirements or standards about what I considered to be the adequate quality of service for our application. I had a bit of an \u201cI know it when I see it\u201d attitude towards the whole thing.When we had a potential client walk away during a demo due to a particularly slow loading graph, I knew that we had a problem on our hands and that","83":"we needed something really solid for the long term.Still, at the time, we also needed something to get us by until we could perform a thorough evaluation of the available solutions and build something around that. At this point, I decided to stand aRedis clusterbetween RDS and our application which stored the last 30 days of sensor data (at all the aggregation levels required) as a Pandas dataframe. Any chart request coming in for data within the first 30 days - which accounted for something like 90% of our requests - would simply hit Redis. Anything longer would cobble together the answer using both Redis and querying the database.Performance for the 90% use case was adequate, but it was getting increasingly dreadful as more and more historical data piled up for anything that hit the database.At this point, I set the goalposts for what our new solution would need to meet:Any chart request, which is an integral part of AROYA, needs to take less than one second for the API to serve.The research and the first solutionWe looked at other databases at this point, InfluxDB was looked at again, we got in a beta of Timestream for AWS and looked at that. We even considered going NoSQL for the whole thing. We ran tests and benchmarks, created matrices of pros and cons, estimated costs, the whole shebang.Nothing compared favorably to what we were able to achieve with TimescaleDB.Ultimately,the feature that really caught our attention wascontinuous aggregatesin TimescaleDB. The way our logic works, more or less, we see the timeframe that the user is requesting and sample our data accordingly. In other words, if a user fetches three months worth of data, we would not send three months worth of raw data to be graphed to the front-end. Instead, we would bucket our data into appropriately sized buckets that would give us the right amount of data we want to display in the interface.Although it would require quite a few views, if we created continuous aggregates for every aggregation level and bucket size we cared about, and then directly queried the right aggregation\/bucket combination (depending on the parameters requested), that should do it, right? The answer was a resoundingyes.The performance we were able to achieve using these views shattered the competition.Although I admit we were","84":"kind of \u201ccheating\u201d by precalculating the data, the point is that we could easily do it. Not only this, but when we ran load tests on our proposed infrastructure, we were blown away by how much more traffic we could support without any service degradation. We could also eliminate all the complicated infrastructure that our Redis layer required, which was quite a load off (literally and figuratively).Grafana dashboard for the internal team showing app server load average before and after deployment of initial TimescaleDB implementation.The Achilles\u2019 heel of this solution, an astute reader may already notice, is that we were paying for this performance in disk space.I initially brushed this off as fair trade and moved on with my life.We foundTimescaleDB\u2019s compressionto be as good as advertised, which gave us 90%+ space savings in our underlying hypertable,but our sizable collection of uncompressed continuous aggregates grew by the day (keep reading to learn why this is a \u201cbut\u201d...).\u2728Editor\u2019s Note: We\u2019ve put together resources aboutcontinuous aggregatesandcompressionto help you get started.The \u201cfinal\u201d solutionAROYA has been on an amazing trajectory since launch, and our growth was evident in the months before and after we deployed our initial TimescaleDB implementation. Thousands upon thousands of sensors hitting the field was great for business \u2013 but bad for our disk space.Our monitoring told a good story of how long our chart requests were taking, as 95%+ of them were under 1 second, and virtually all were under 2 seconds. Still, within a few months of deployment, we needed to upgrade tiers in Timescale Cloud solely to keep up with our disk usage.\u2728Editor\u2019s Note:\"Timescale Cloud\" is known as \"Managed Service for TimescaleDB\" as of September 2021.We had adequate computing resources for our load, but 1 TB was no longer enough, so we doubled our total instance size to get another 1 TB. While everything was running smoothly, I felt a dark cloud overhead as our continuous aggregates grew and grew in size.The clock was ticking, and before we knew it, we were coming up on 2 TB of readings. So, we had to take action.We had attended a webinar hosted by Timescale and heard someone make a relatively off-hand comment about rolling their own compression for continuous aggregates. This planted a seed that was all we needed to get going.The plan was","85":"thus: first, after consulting with Timescale staff, we were alerted we had way too many bucket sizes. We could useTimescaleDB\u2019s time_bucket functionsto do some of this on the fly without affecting performance or keeping as many continuous aggregates. That was an easy win.Next, we split each of our current continuous aggregates into three separate components:First, we kept the original continuous aggregate.Then, we leveraged theTimescaleDB job schedulerto move and compress chunks from the original continuous aggregate into ahypertablefor that specific bucket\/aggregation view.Finally, we created a plain old view that UNIONed the two and made it a transparent change for our application.This allowed us to compress everything but the last week of all of our continuous aggregates, and the results were as good as we could have hoped for.The 1.83TB database was compressed into 700 GB.We were able to take our ~1.83 TB database and compress it down to 700 GB. Not only that, about 300 GB of that is log data that\u2019s unrelated to our main reading pipeline.We will be migrating out this data soon, which gives us a vast amount of room to grow. (We think we can even move back the 1TB plan at this point, but have to test to ensure that compute doesn\u2019t become an issue.) The rate of incrementation in disk usage was also massively slowed, which bodes well for this solution in the long term. What\u2019s more, there was virtually no penalty for doing this in terms of performance for any of the metrics we monitor.Our monitoring shows how long sampling of chart requests takes to serve.Ultimately TimescaleDB had wins across the board for my team.Performance was going to be the driving force behind whatever we went with, and TimescaleDB has delivered that in spades.Current deployment & future plansWe currently ingest billions of readings every month using TimescaleDB and couldn\u2019t be happier.Our data ingest and charting capabilities are two of the essential aspects of AROYA\u2019s infrastructure.While the road to get here has been a huge learning experience, our current infrastructure is straightforward and performant, and we\u2019ve been able to rely on it to work as expected and to do the right thing. I am not sure I can pay a bigger compliment than that.The current architecture diagramWe\u2019ve recently gone live with our AROYA Analytics release, which is building upon","86":"what we\u2019ve done to deliver deeper insights into the environment and the operations at the facilities using our service. Every step of the way, it\u2019s been straightforward (and performant!) to calculate the metrics we need with our TimescaleDB setup.Getting started advice & resourcesI think it\u2019s worth mentioning that there were many trade-offs and requirements that guided me to where AROYA is today with our use of TimescaleDB. Ultimately, my story is simply the set of decisions that led me to where we are now and people\u2019s mileage may vary depending on their requirements.I am sure that the set of functionality offered means that, with a little bit of creativity, TimescaleDB can work for just about any time-series use case I can think of.The exercise we went through when iterating from our initial non-Timescale solution to Timescale was crucial to get me to be comfortable with that migration. Moving such a critical part of my infrastructure was scary, and it isstillscary.Monitoring everything you can, having redundancies, and being vigilant about any unexpected activity - even if it\u2019s not something that may trigger an error - has helped us stay out of trouble.We have a bigGrafanadashboard on a TV in our office that displays various metrics and multiple times we\u2019ve seen something odd and uncovered an issue that could have festered into something much more if we hadn\u2019t dug into it right away. Finally, diligent load testing of the infrastructure and staging runs of any significant modifications have made our deployments a lot less stressful, since they instill quite a bit of confidence.\u2728 Editor\u2019s Note:Check outGrafana 101 video seriesandGrafana tutorialsto learn everything from building awesome, interactive visualizations to setting up custom alerts, sharing dashboards with teammates, and solving common issues.I would like to give a big shout-out to Neil Parker, who is my right-hand man in anything relating to AROYA infrastructure and did virtually all of the actual work in getting many of these things set up and running. I would also like to thankMike FreedmanandPriscila Fletcherfrom Timescale, who have given us a great bit of time and information and helped us in our journey with TimescaleDB.We\u2019d like to give a big thank you to Paolo and everyone at AROYA for sharing their story, as well as for their efforts to help transform the cannabis production","87":"industry, equipping growers with the data they need to improve their crops, make informed decisions, and beyond.We\u2019re always keen to feature new community projects and stories on our blog. If you have a story or project you\u2019d like to share, reach out on Slack (@Lucie \u0160ime\u010dkov\u00e1), and we\u2019ll go from there.Additionally, if you\u2019re looking for more ways to get involved and show your expertise, check out theTimescale Heroesprogram.The open-source relational database for time-series and analytics.Try Timescale for free","88":"This is an installment of our \u201cCommunity Member Spotlight\u201d series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition, Nikola Chochkov, lead data scientist atflowkey, shares how his team migrated from Amazon Redshift to TimescaleDB and is driving rapid growth and experimentation by analyzing the users\u2019 behavioral data using TimescaleDB along with Metabase or Jupyter\/Rmarkedown Notebooks.About the CompanyFlowkeyis a leading app for learning to play the piano, with over 10 million registered users in more than 100 countries. The company was launched in 2015 and quickly became one of the global leaders in its category.Here is a video from our founder, Jonas G\u00f6\u00dfling, explaining how it all started.About the TeamWe are a team of around 40 people, with more than 10 of us working in Data and Engineering.We have a Marketing team (responsible for user acquisition, customer relationship management, collaborations, etc.), a Creative team (building all of our visual content, our design, and advertising), Course and Song teams (creating our in-app learning content\u2014e.g., the courses series and the piano renditions of the songs in our library). We also have Customer Support, Product, Engineering, Data, and Operations teams.Many of us take on more than one role, and for many of us, flowkey has been the first significant career step. Not for me personally, though, but still.\ud83d\ude42About the ProjectThe flowkey appWe are a business that depends heavily on analytics for business decision-making. Our experimentation\u2014a major driver of our growth\u2014is powered by the data analysis of user behavioral data (app usage). This data consists of user events, which we track from our product.\u201cWe realized we needed to scale our previous Amazon Redshift data warehouse model into a more suitable solution for categorical, time-series data analysis. We found out about TimescaleDB from being part of the PostgreSQL community\u201dFor example, a Learn Session starts at a given timestamp for a user, and we record this event.\u2728Editor\u2019s Note:Time-series data is a sequence of data points collected over time intervals, allowing us to track changes over time. To learn more, readWhat Is Time-Series Data (With Examples).When we launch a new feature, we typically A\/B test it and evaluate its impact based on measuring key performance indicators (KPIs), which are predefined for","89":"the test. Every day, we receive millions of incoming events, tracked around our product, in the format:(user_id, event, timestamp, properties)Thepropertiesfield is a schemaless object that depends on the particular event type that we track from the app. For example, a Learn Session event would have asongIdand alearnMode, while a Subscription Offer interaction event would have aproductId, etc.Choosing (and Using!) TimescaleDBWith time, we realized we needed to scale our previous Amazon Redshift data warehouse model into a more suitable solution for categorical, time-series data analysis.We found out about TimescaleDB from being part of the PostgreSQL community, and when we were faced with the problem at hand, it was a natural way forward for us.After doing our research, we realized that TimescaleDB suited our needs perfectly. Here's a list of our arguments:Our data analysts are well-versed in SQL and PostgreSQL.The events\u2019 raw data is available in a PostgreSQL schema alongside all our other business intelligence data.TimescaleDB is an actively developed, open-source solution. It allowed us to deploy it on our self-hosted PostgreSQL data warehouse.A TimescaleDB hypertable model would allow us to accommodate the schemaless JSON structure of our events.select event, platform, time, jsonb_pretty(data) from events_today limit 5; event | platform | time | jsonb_pretty ------------------------------+----------+-------------------------+--------------------------------------------------------- SONG_OPEN_UI_ELEMENT_CLICKED | ios | 2022-11-03 00:00:00.034 | { + | | | \"songId\": \"E2kCpqHCwB2xYf7LL\", + | | | \"context\": \"song-cover\", + | | | \"listIndex\": 6, + | | | \"routeName\": \"Songs\", + | | | \"currentTab\": \"SongsTab\" + | | | } ONBOARDING_QUESTION_VIEWED | web | 2022-11-03 00:00:00.145 | { + | | | \"context\": \"preferredCategories\" + | | | } SONG_PLAYER_SCROLLED | ios | 2022-11-03 00:00:00.157 | { + | | | \"level\": 1, + | | | \"songId\": \"Lui27TDJ4vZBevxzc\", + | | | \"direction\": \"backwards\", + | | | \"songGroupId\": \"vhisAJBkPwvn6tdoq\", + | | | \"loopBoundsMs\": null, + | | | \"finalPositionMs\": 0, + | | | \"initialPositionMs\": 24751 + | | | } AB_TEST_VARIANT_ASSIGNED | ios | 2022-11-03 00:00:00.249 | { + | | | \"variant\": \"CONTROL\", + | | | \"experimentName\": \"player_onboarding_video_09_2022\"+ | | | } ONBOARDING_ANSWER_SUBMITTED | web | 2022-11-03 00:00:00.314 | { + | | | \"answers\": [ + | | | \"dont-know\" + | | | ], + | | | \"context\": \"learningGoals\" + | | | }TimescaleDB offers a great set of","90":"SQL analytical functions.TimescaleDB offers continuous aggregates, which integrate very well with how we do analytics and real-time data monitoring.Data migration and update (e.g., renaming of events or JSON properties) are available.\u2728Editor\u2019s Note:Faster queries, reduced storage costs, and greater flexibility. Learn more abouthierarchical continuous aggregates.\u201cWe use compression, which has cut our disk space usage by 28 percent\u201dCurrent Deployment & Future PlansOur data warehouse is deployed on self-hosted machines and works well for us. We employ other PostgreSQL extensions that aren't currently supported by the Timescale cloud offering, which was important to us when we launched. These includeMongo FDWandAdjust\u2019siStore extensionfor cohort analysis data storage.\u2728Editor's Note:We're working on expanding the catalog of PostgreSQL extensions offered in Timescale's cloud offering. Stay tuned!We employ TimescaleDB's awesome data retention (automated through a user action), and thanks to that, our most recent (and more relevant to our analytics) data is available to us on SSD chunks, while historical data is kept on HDDs.Furthermore, we use compression, which has cut our disk space usage by 28 percent. Our data contains JSONB fields, which are difficult to be compressed. We are pretty happy with it, though, so it's a win. \ud83d\ude42When we do business analytics, we employMetabaseorJupyter\/Rmarkdown Notebooksto derive insights. We established a workflow of writing custom continuous aggregates for the duration of experiments, which are then easy to keep and fully deploy or discard, depending on the decision made for the experiment.\u2728Editor's Note:Learn how toconnect to Timescale from a Jupyter notebookfor better data querying, cleaning, and analysis.This allows us to iterate our experiments quickly and increase the bandwidth of change, which we can successfully bring to the product.RoadmapWe just finished migrating our setup to a more powerful cluster of machines, which allowed us to benefit from the data tiering options mentioned above. Right now, our system is scalable, and we don't expect any major upgrades to this system to come up soon.Advice & ResourcesWe recommend theTimescale documentationas well as theSlack Community.Want more insider tips?Sign up for our newsletterfor more Developer Q&As, technical articles, and tutorials to help you do more with your data. We deliver it straight to your inbox twice a month.We\u2019d like to thank Nikola and all of the folks at flowkey for sharing their story on how they\u2019re improving their online piano lessons by analyzing millions of user events","91":"daily using TimescaleDB.We\u2019re always keen to feature new community projects and stories on our blog. If you have a story or project you\u2019d like to share, reach out on Slack (@Ana Tavares), and we\u2019ll go from there.The open-source relational database for time-series and analytics.Try Timescale for free","92":"This is an installment of our \u201cCommunity Member Spotlight\u201d series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition, we speak with Jeremy Theocharis, co-founder and CTO ofUnited Manufacturing Hub, about how they are bringing open source to the world of manufacturing by combining information and operational tools and technologies in an open-source Helm chart for Kubernetes.The team uses TimescaleDB to store both relational and time-series data coming fromMQTTandKafkaand then visualizes it usingGrafanaand their own REST API. With the data, they can prevent and predict maintenance issues, analyze and optimize production losses such as changeovers or micro-stops and reduce resource consumption, and much more.About the CompanyWe believe that open source is the future: we live in a world where 100 percent of all supercomputers useLinux, 95 percent of all public cloud providers useKubernetes, and the Mars Helicopter, Ingenuity, usesf-prime.We are confident that open source will also find its place in manufacturing, and we were among the first to use it in this field, making us the experts.Our story goes back to 2016, when we had the pain of integrating and maintaining various costly Industrial IoT solutions (IIoT). Existing vendors focused only on the end result, which resulted in large-scale IIoT projects failing because they did not address the real challenges.After suffering for years, in 2021, we were fed up and decided to do something about it. Since then, all our products and services have been focused on efficiently integrating and operating large-scale IIoT infrastructures.About the TeamWe are a team of 11 people with different backgrounds, from mechanical engineering to business administration to cybersecurity.Me, personally? I am an IT nerd that learned programming at 14 and then studied Mechanical Engineering and Business Administration atRWTH Aachenin Germany. I did my internship first as a technical project manager in theDigital Capability Center Aachen, where I was responsible for the technical integration of various Industrial IoT solutions. I later did another internship at McKinsey & Company in Singapore and decided I needed a solid technical part in my future profession.I started my own business as a system integrator in the Industrial IoT sector, metChristianandAlex, and founded theUMH Systems GmbHtogether in 2021.About the ProjectUnited Manufacturing Hub's architectureTheUnited Manufacturing Hub(UMH)","93":"is an open-source Helm chart for Kubernetes. It combines state-of-the-art information and operational tools (IT\/OT) and technologies, bringing them into the engineer's hands.I assume most of the readers here will come from traditional IT, so let me explain the world of manufacturing, especially OT, first, as it will help you understand our usage of TimescaleDB.OT means Operational Technology. OT is the hardware and software to manage, monitor, and control industrial operations like production machines. Due to different requirements, OT has its own ecosystems.OT comes originally from the field of electronics, and this background is still evident today. For example, the computer that controls the production machine is called aPLC (Programmable Logic Controller). It runs some peculiar flavors of Windows and Linux, which are completely hidden from the system's programmer. The programmer of the PLC will use programming languages likeladder logic, which is like drawing electrical schematics.Because OT is an entirely different world, it is pretty hard to integrate it with the traditional IT world. During system integration, we felt all these pains and decided to develop a tool that allows an easy combination between both fields\u2014the United Manufacturing Hub (UMH).With UMH, one can now easily extract data from the shopfloor, from the PLC tovarious IO-link compatible or analog (4-20mA \/ 0-10V) sensorstobarcodereaderand different manufacturing execution or enterprise resource planning systems. Using aUnified Namespacebased onMQTTandKafka, the data is aggregated and can then be contextualized through tools likeNode-RED.From there on, the processed data is stored automatically in a TimescaleDB running either in the cloud or on-premise. To visualize the data, we useGrafanawith our ownREST APIfor manufacturing specific logics (also calledfactoryinsight) and our own Grafana data source.Choosing (and Using!) TimescaleDBManufacturing data is mainly relational: orders, products, production plans, and shifts are good examples of this. However, due to the growth of analytics, time-series data gets more and more important, e.g., for preventive or predictive maintenance.\u2728Editor's Note:Want to learn more about time-series forecasting?Check out this blog post.During one of those earlier system integrator projects, I realized that we needed a time-series database and a relational one.Due to the strong marketing, we chose InfluxDB at first. We did not scan vendors; we just started with whatever we knew from home automation. It sounded perfect: a beautiful user interface, continuous queries to process data, etc.We wanted to process raw sensor","94":"data, e.g., converting the distance of a light barrier into the machine status (running\/not running). We also needed to store shifts, orders, and products and model the data. We did that via InfluxDB as well.The project was a nightmare. To be fair, InfluxDB was not its main driver, but it definitely was in the top five. Modeling relational data into a time-series database is a bad idea. The continuous queries were failing too often without even throwing error messages. The system could not handle the data buffered somewhere in the system and arrived late.\u201cThe stability of TimescaleDB allows us to focus on developing our microservices instead of running around fixing breaking API changes\u201dAdditionally, Flux as a query language is comparatively new and not as easy to work with as SQL. It quickly reached the point where we had to implement Python scripts to process data because Flux had reached its limits in use cases that would work seamlessly using SQL. So we felt like InfluxDB was putting unnecessary obstacles in our way.We even wrote a blog article aboutwhy we chose TimescaleDB over InfluxDB for the field of Industrial IoT.One of the main factors for us to use TimescaleDB as our database is the reliability and fault tolerance [the ability of a system to continue operating properly in case of failure] it offers to our stack. Since PostgreSQL has been in development for over 25 years, it is already very robust.\u201cThe reliability also manifests in the ease of horizontal scaling across multiple servers, which we are very interested in\u201dThe stability of TimescaleDB allows us to focus on developing our microservices instead of running around fixing breaking API changes, which newer, less stable databases like InfluxDB have shown to bring forth.The reliability also manifests in the ease of horizontal scaling across multiple servers, which we are very interested in.Being based on SQL was also a factor for us as SQL is the most well-known query language for relational databases\u2014making working with it much easier. Almost any possible problem is already documented and solved somewhere on the Internet.Now, TimescaleDB is used in our stack as our main database to store the data coming in via MQTT\/Kafka. We are storing (among others) machine states, product states, orders, worker shifts, and sensor data. Some are relational; some are time-series.If","95":"TimescaleDB didn\u2019t exist, we probably would have to employ a PostgreSQL-based relational database system in addition to InfluxDB for time-series data. That would mean a lot of additional effort as we would have to manage two separate databases and the creation of datasets that span the two. This would also make the system more prone to errors as we would have to employ multiple querying languages.Current Deployment & Future PlansAs I mentioned, the United Manufacturing Hub is an open-source Helm chart for Kubernetes, which combines state-of-the-art IT\/OT tools and technologies and brings them into the hands of the engineer.This allows us to standardize the IT\/OT infrastructure across customers and makes the entire infrastructure easy to integrate and maintain.We typically deploy it on the edge and on-premise usingk3sas light Kubernetes. In the cloud, we use managed Kubernetes services likeAKS. If the customer is scaling out and okay with using the cloud, we recommend services likeTimescale.We are using TimescaleDB with MQTT, Kafka, and Grafana. We have microservices to subscribe to the messages from the message brokers MQTT and Kafka and insert the data into TimescaleDB, as well as a microservice that reads out data and processes it before sending it to a Grafana plugin, which then allows for visualization.\u2728Editor\u2019s Note:Learn how you can improve your Grafana performance using downsampling in TimescaleDB.RoadmapWe are currently positioning the United Manufacturing Hub with TimescaleDB as an open-source Historian. To achieve this, we are currently developing a user interface on top of the UMH so that OT engineers can use it and IT can still maintain it.We can recommend our blog articlefor a good comparison between Historians and Open-Source databases.Furthermore, we are developing a Management Console on top of the Helm chart, which makes a lot of the typical operation tasks (monitoring, logging, changing the configuration, etc.) easily accessible for the OT engineer, reducing the workload of maintaining all the edge devices, servers, and so on for the IT person.Advice & ResourcesFor manufacturing, we recommend the previously mentioned blog articles and the official TimescaleDB documentation. For data models and data ingestions from MQTT and Kafka into TimescaleDB, we can also recommend looking at the United Manufacturing Hub source code (or using it directly).One last piece of advice: I can strongly recommend the bookDesigning Data-Intensive Applicationsby Martin Kleppmann. It really helped me","96":"understand the fundamental principles in designing large-scale architectures so you can join discussions on the technical level. It explains the fundamental choices behind databases (from log-based approaches over WAL to binary trees) and the problems and solutions for distributed systems.We\u2019d like to thank Jeremy Theocharis and the folks and United Manufacturing Hub for sharing their story on how they are using TimescaleDB to store their data, and why they chose us over other databases.We\u2019re always keen to feature new community projects and stories on our blog. If you have a story or project you\u2019d like to share, reach out on Slack (@Ana Tavares), and we\u2019ll go from there.The open-source relational database for time-series and analytics.Try Timescale for free","97":"This is an installment of our \u201cCommunity Member Spotlight\u201d series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition, John Eskilsson, software architect at Edeva, shares how his team collects huge amounts of data (mainly) from IoT devices to help build safer, smarter cities and leverages continuous aggregations for lightning-fast dashboards.Founded in 2009 in Link\u00f6ping,Edevais a Swedish company that creates powerful solutions for smart cities. It offers managed services and complete systems, including hardware and software platforms.As the creators of the dynamic speed bumpActibumpand the smart city platformEdevaLive, the Edeva team works mainly for municipal, regional, and national road administrations, toll stations, environmental agencies, and law enforcement agencies.The team also solves many other problems, from obtaining large amounts of environmental data for decision-making to developing a screening scale to help law enforcement agencies assess vehicle overloading. The latter, for instance, decreased the amount of time needed to control each vehicle, speeding up traffic checks and allowing law enforcement agencies to control more vehicles.About the TeamTheteam at Edevais a small but impactful group of 11 working on everything from creating hardware IoT devices to analyzing time-series data and making it accessible to customers\u2014and, sometimes\u2014the public.As a software architect, I am in charge of building the best possible solution to receive, store, analyze, visualize, and share the customers\u2019 event data. Our team then comes together to create solutions that work and that the customer actually wants.About the ProjectEdeva has created a dynamic speed bump calledActibumpand the smart city platformEdevaLive.The Actibump has been used in Sweden since 2010. Speeding vehicles activate a hatch in the road that lowers a few centimeters, creating an inverted speed bump. Providing good accessibility for public transportation, such as buses and emergency vehicles, the Actibump still ensures a safe speed for pedestrians and other vulnerable road users. It is also an environmentally friendly solution, helping decrease noise and emissions.The Actibump can be combined with the EdevaLive system, delivering valuable remote monitoring services and statistics to Edeva\u2019s customers.Most of the data we collect is based on IoT devices:Traffic flow data: The Actibump measures the speed of oncoming traffic to decide if it needs to activate the speed bump or not. We capture radar","98":"data, among others, and send an event to our smart city platform EdevaLive. The data treats the oncoming traffic as a flow rather than a single vehicle to create the smoothest possible traffic flow.Vehicle classification data (weigh-in-motion): Actibump can be configured with weigh-in-motion. This means that the lid of the speed bump is equipped with a very sensitive high sampling scale. The scale records several weight measurements when the vehicle passes over the speed bump. This way, it can detect how many axles a vehicle has and classify the type of vehicle. At the same time, it fires off one event for each axle with the scale fingerprint so we can analyze if the weight measurements are correct.Vehicle classification data (radar): If we want to classify vehicles in places where we do not yet have an Actibump installed, we can introduce a radar that can classify vehicle types. A roadside server controls the radar, gathers its data, and pushes it to EdevaLive.Bike and pedestrian data: We use cameras installed above a pedestrian and cycle path. The camera can detect and count pedestrians and bicycles passing in both directions. We push this data to EdevaLive for analysis.Number plate data:We can use a camera to detect the number plate of a vehicle. This way, we can control devices like gates to open automatically. It can also be used to look up the amount of electric vs. petrol or diesel vehicles passing the camera or determine if a specific vehicle exceeds the cargo weight limit.Gyroscopic data: We offer a gyroscopic sensor that can gather data for acceleration in all different planes. This device generates a lot of data that can be uploaded to EdevaLive in batches or as a stream (if the vehicle has an Internet connection). This data is GPS-tagged and can be used to calculate jerk to provide indications on working conditions to a bus driver, for instance. The data can also be used to calculate the wear and tear of vehicles and many other things.Environmental data: It is important to monitor environmental data in a smart city platform. This is why we use small portable devices that can measure the occurrence of different particle sizes in the air. It can also measure CO2 and other gasses. On top of that, it measures the usual","99":"things like temperature, wind speed, etc. All this data is pushed to EdevaLive.Alarm data: Our IoT devices and roadside servers can send alarm information if a sensor or other parts malfunction. All this data comes to EdevaLive in the same way as a regular IoT event, but these events are only used internally so that we can react as quickly as possible if there is a problem.Status data: If the alarm data detects anomalies, the status data just reports on the status of the server or IoT device. The devices run self-checks and report statistical data, like disk utilization, temperature, and load. This is also just for internal use to spot trends or troubleshoot in case any problems arise. For instance, it is incredibly useful to correlate CPU load with the version number of firmware or other software versions.Administrative data: This is where the power of SQL and time-series data really shines. Let\u2019s say we added a new device, and it has a configuration object that is persistent in a regular table in Timescale. This object keeps some metadata, such as the date it was added to the system or the device's display name. This way, we can use a join easily to pick up metadata about the device and, at the same time, get time-series data for the events that are coming in. There is only one database connection to handle and one query to run.Choosing (and Using!) TimescaleDBWe realized we needed a time-series database a few years ago when we started storing our data in MySQL. At the time, we made a move to MongoDB, and it worked well for us but required quite a bit of administration and was harder to onboard other developers.I looked at InfluxDB but never considered it in the end because it was yet another system to learn, and we had learned that lesson with MongoDB.\u2728Editor\u2019s Note:For more comparisons and benchmarks,see how TimescaleDB compares to InfluxDB, MongoDB, AWS Timestream, vanilla PostgreSQL, and other time-series database alternatives on various vectors, from performance and ecosystem to query language and beyond.Learning from this journey, I looked for a solution that plugged the gaps the previous systems couldn\u2019t. That is when I found Timescale and discovered that there was a hosted solution.We are a small team that creates software with a","100":"big impact, and this means that we don\u2019t really have time to put a lot of effort into tweaking and administering every single tool we use, but we still like to have control.\"With Timescale, our developers immediately knew how to use the product because most of them already knew SQL\"Also, since TimescaleDB is basically PostgreSQL with time-series functionality on steroids, it is much easier to onboard new developers if needed. With Timescale, our developers immediately knew how to use the product because most of them already knew SQL.Edeva uses TimescaleDB as the main database in our smart city system. Our clients can control their IoT devices (like the Actibump from EdevaLive) and\u2014as part of that system\u2014see the data that has been captured and quickly get an overview of trends and historical data. We offer many graphs that show data in different time spans, like day, week, month, and years. To get this to render really fast, we use continuous aggregations.\"Timescale is basically PostgreSQL with time-series functionality on steroids, it is much easier to onboard new developers if needed\"\u2728Editor\u2019s Note:Learn how you can use continuous aggregates for distributed hypertables.Current Deployment and Future PlansOne of the TimescaleDB features that has had the most impact on our work is continuous aggregations. It changed our dashboards from sluggish to lightning fast. If we are building functionality to make data available for customers, we always aggregate it first to speed up the queries and take the load off the database. It used to take minutes to run some long-term data queries. Now, almost all queries for long-term data are subsecond.For example, we always struggled with showing the 85th percentile of speed over time. To get accurate percentile data, you had to calculate it based on the raw data instead of aggregating it. If you had 200 million events in a hypertable and wanted several years\u2019 data for a specific sensor, it could take you a long time to deliver\u2014users don\u2019t want to wait that long.\"It changed our dashboards from sluggish to lightning fast\"Now that Timescale introducedpercentile_aggandapprox_percentile, we can actually query continuous aggregations andget reasonably accurate percentile valueswithout querying raw data.\u2728Editor\u2019s Note:Percentile approximations can be more useful for large time-series data sets than averages. Read how their work in this blog post.Note that \u201cvehicles\u201d is a hypertable where actibump_id is","101":"the ID of the dynamic speed bump containing several hundred million records.This is how we build the continuous aggregate:CREATE MATERIALIZED VIEW view1 WITH (timescaledb.continuous) AS SELECT actibump_id, timescaledb_experimental.time_bucket_ng(INTERVAL '1 month', time, 'UTC') AS bucket, percentile_agg(vehicle_speed_initial) AS percentile_agg FROM vehicles GROUP BY actibump_id, bucketAnd this is the query that fetches the data for the graph:SELECT TIMESCALEDB_EXPERIMENTAL.TIME_BUCKET_NG(INTERVAL '1 month', bucket) AS date, actibump_id, APPROX_PERCENTILE(0.85, ROLLUP(PERCENTILE_AGG)) AS p85, MAX(signpost_speed_max) FROM vehicles_summary_1_month WHERE actibump_id in ('16060022') AND bucket >= '2021-01-30 23:00:00' AND bucket <= '2022-04-08 21:59:59' GROUP BY date, actibump_id ORDER BY date ASCHere is an example of the graph:At the moment, we use PHP and Yii 2 to deploy TimescaleDB. We connect to TimescaleDB with Qlik Sense for business analytics. In Qlik Sense, you can easily connect to TimescaleDB using the PostgreSQL integration.It is especially convenient to be able to connect to the continuous aggregations for long-term data without overloading the system with too much raw data. We often use Qlik Sense to rapidly prototype graphs that we later add to EdevaLive.Advice and ResourcesThe next step for us is to come up with a good way of reducing the amount of raw data we store in TimescaleDB. We are looking at how we can integrate it with a data lake. Apart from that, we are really excited to start building even more graphs and map applications.If you are planning to store time-series data, Timescale is the way to go. It makes it easy to get started because it is \u201cjust\u201d SQL, and at the same time, you get the important features needed to work with time-series data. I recommend you have a look, especially at continuous aggregations.Think about the whole lifecycle when you start. Will your use cases allow you to use features like compression, or do you need to think about how to store long-term data outside of TimescaleDB to make it affordable right from the start? You can always work around things as you go along, but it is good to have a plan for this before you go live.\ud83d\udcbbIf you want to learn more about how Edeva handles time-series data with Actibump and EdevaLive, the team hostsvirtual biweekly webinars, or you can alsorequest a demo.We\u2019d like to thank John and all the folks from Edeva for sharing their story. We are amazed to see","102":"how their work truly impacts the way people live and enjoy their city with a little help from time-series data.\ud83d\ude4cWe\u2019re always keen to feature new community projects and stories on our blog. If you have a story or project you\u2019d like to share, reach out on Slack (@Ana Tavares), and we\u2019ll go from there.The open-source relational database for time-series and analytics.Try Timescale for free","103":"\ud83d\udcecThis blog post was originally published in February 2021 and updated in February 2023 to reflect Everactive's data stack and business evolution.This is an installment of our \u201cCommunity Member Spotlight\u201d series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition,Carlos Olmos,Dan Wright, andClayton Yochumfrom Everactive join us to share how they\u2019re bringing analytics and real-time device monitoring to scenarios and places never before possible. Learn how they\u2019ve set up their data stack (moving from six to only three instances), their database evaluation criteria, their advice for fellow developers, and more.About the CompanyEveractivecombines battery-free, self-powered sensors and powerful cloud analytics to provide \u201cend-to-end\u201d hyperscale IoT solutions to our customers. Our company is undergoing a huge transformation from focusing only on industrial monitoring services (read more about Industrial IoT) to opening our platform to developers that can leverage our technology to create their own solutions and services.It is not easy to build a platform, less to build an open platform. Flexibility and stability are key factors. We have found so far that with Timescale (and PostgreSQL underneath), we have been able to bend our data models and data serving needs to implement the new use cases for the platform without pain.We design and build our sensors in-house (down to the chip), and they\u2019re ruggedized for harsh settings and can operate indefinitely from low levels of energy harvested from heat or light. This means our customers\u2019 devices can continuously stream asset health data, despite radio interference and physical obstacles\u2014like equipment, ducts, and pipes\u2014common in industrial settings.Since they charge themselves, these sensors stay operational well beyond what\u2019s possible with traditional, battery-powered Industrial IoT devices. We ingest data from thousands of sensorsinto Timescale, then surface it to our customers through dashboards, charts, and automated alerts.Ourinitial productsare designed to monitor steam systems, which are used in various industries and applications, like process manufacturing, chemical processing, and district energy, as well as a range of rotating equipment, such as motors, pumps, fans, and compressors. Currently, we serve large, Fortune 500 manufacturers in many sectors, including Food & Beverage, Consumer Packaged Goods, Chemical Process Industries, Pharmaceuticals, Pulp & Paper, and Facilities Management.We show customers their data through a web-based dashboard, and we","104":"also have internal applications to help our in-house domain experts review and label customer data to improve our automated failure detection.About the TeamWe\u2019re a small team of software and data engineers, spanning the Cloud and Data Science teams at Everactive.Between us, we\u2019ve got several decades of experience managing databases, pipelines, APIs, and various other bits of backend infrastructure.About the ProjectOur key differentiator is that our sensors are batteryless: the custom low-power silicon means that they can be put in more places, without requiring servicing for well over a decade.In turn, this means that we can monitor factory devices that were formerly cost-prohibitive to put sensors on, due to the difficulty or cost associated with charging batteries; being able to collect dataeconomicallyfrom more equipment also means that our industrial data streams are more detailed and cover more equipment than our competitors\u2019.Today, customers place our sensors on steam traps and motors, and we capture a range of metrics \u2013 from simple ones, like temperature, to more complex ones, like 3D vibrational data. (You can learn more about steam trap systems and the need for batteryless systems inthis overview video.)Everactive\u2019s new generation of sensors in the wild, including a sensor on a hydraulic arm with a shipping container and, below, a sensor on a shipping container clasp closer upWe then use this data to inform our customers about the health of their industrial systems, so they can take action when and where required. \u201cAction\u201d in this sense could mean replacing a steam trap, replacing a bad bearing in a machine, or various other solutions to problems.For example, we\u2019ll automatically alert customers if their monitored equipment has failed or if machines are off when they should be on, so customers can send a crew to fix the failure, or power on the machine remotely.In addition to receiving alerts from us, customers can use our dashboards to check the latest data and current status of their equipment at any time.One of Everactive\u2019s dashboards, tracking the overall vibration levelAs mentioned earlier, our team\u2019s responsible for delivering these intuitive visualizations to our customers and in-house domain experts \u2013 as well as for feeding sensor metrics into our custom analytics to automate failure detection and improve our algorithms.Using (and Choosing!) TimescaleDBBefore TimescaleDB, we stored metadata in PostgreSQL and our sensor data in","105":"OpenTSDB. Over time, OpenTSDB became an increasingly slow and brittle system.Our data is very well-suited to traditional relational database models: we collect dozens of metrics in one packet of data, so it makes sense to store those together. Other time-series databases would force us to either bundle metrics into JSON blobs (making it hard to work with in-database) or to store every metric separately (forcing heavy, slow joins for most queries of interest).TimescaleDB was an easy choice because it let us double down on PostgreSQL, which we already loved using for metadata about our packet streams.We looked briefly at competitors like Influx but stopped considering them once it was clear TimescaleDB would exceed our needs.Our evaluation criteria were pretty simple: will it handle our load requirements, and can we understand how to use it? The former was easy to test empirically, and the latter was essentially \u201cfree\u201d as TimescaleDB is \u201cjust\u201d a PostgreSQL extension.This \u201cjust PostgreSQL\u201d concept also lets us carefully manage our schema as code, testing and automating changes through CI\/CD pipelines. We usesqitch, but popular alternatives includeFlywayandLiquibase. We like sqitch because it encourages us to write tests for each migration and is lightweight (no JVM).We previously usedAlembic, the migration component of the popularSQLALchemy Python ORM, but as our TimescaleDB database grew to support many clients, it made less sense to tie our schema management to any one of them.We maintain a layer of abstraction within TimescaleDB by separating internal and external schemas.\u201cThe capacity of Timescale to support both traditional schemas and time-series data in the same database allowed us to consolidate into one storage solution\u201dOur data is stored as (hyper)tables in internal schemas like \u201cpackets\u201d and \u201cmetadata,\u201d but we expose them to clients through an \u201cAPI\u201d schema only containing views, functions, and procedures. This allows us to refactor our data layout while minimizing interruption in downstream systems by maintaining an API contract. This is a well-known pattern in the relational database world\u2014yet another advantage of TimescaleDB being \u201csimply\u201d a PostgreSQL extension.Current Deployment & Future PlansAnother example of an Everactive dashboardWe useTimescaleand love it. We already used PostgreSQL on Amazon RDS and didn\u2019t want to have to manage our own database (OpenTSDB convinced us of that!).It had become normal for OpenTSDB to crashmultiple times per weekfrom users asking for slightly too much data","106":"at once.TimescaleDB is clearly much faster than our previous OpenTSDB system. More importantly, nobody has ever crashed it.One not-very-carefully-benchmarked but huge performance increase we\u2019ve seen?We have a frontend view that requires the last data point from all sensors: in OpenTSDB, it required nearly 10minutesto load (due to hard-to-fix tail latencies in HBase), and our first TimescaleDB deployment brought that down to around 7seconds. Further improvements to our schema and access patterns have brought these queries into the sub-second range.\"We moved those schemas from Amazon RDS for PostgreSQL to Timescale. The migration was very simple: moving among PostgreSQL schemas was straightforward\"We have been able to maintain sub-second responses even with the growth of data volume: that's very good for us. Also, thanks to compression andcontinuous aggregates, we have been keeping our table sizes in check and with great performance.\u2728Editor\u2019s Note:For more comparisons and benchmarks, seehow Timescale compares to Amazon RDS for PostgreSQL. To learn more and try Timescale yourself, see ourstep-by-step Timescale tutorial.Timescale has been so good for us that it\u2019s triggered a wave of transitions to managed solutions for other parts of our stack.We\u2019ve recently moved our Amazon RDS data into Timescale to further simplify our data infrastructure and make it easier and faster to work with our data.About 20 % of our data is metadata kept in a relational database. We moved those schemas from Amazon RDS for PostgreSQL to Timescale. The migration was very simple: moving among PostgreSQL schemas was straightforward.We chose RDS from the beginning for simplicity. Eventually, once we had Timescale up and running, it became evident that we didn't need two separate PostgreSQL vendors when we were having such good results with Timescale.The capacity of Timescale to support both traditional schemas and time-series data in the same database allowed us to consolidate into one storage solution. The instances multiply because we keep three environments (development, staging, and production) for each database, so we went from six (three RDS plus three Timescale) to only three Timescale instances.As you\u2019ll see in the below diagram, our sensors don\u2019t talk directly to TimescaleDB; they pass packets of measurements to gateways via our proprietary wireless protocol. From there, we useMQTTto send those packets to our cloud.From our cloud data brokers,Kafkaprocesses and routes packets into TimescaleDB (and Timescale), and our TimescaleDB database powers our dashboard","107":"and analytics tools. We also added a third component: outbound channels for our platform users.Everactive architecture diagramCompared to Amazon RDS for PostgreSQL, Timescale also consolidates a lot of the costs associated with operating our instance in AWS\u2014we now have a simpler bill that makes it easier to forecast costs.From the operation point of view, dealing with fewer instances and relying more on the Timescale Support Team for infrastructure maintenance has reduced our database maintenance workload significantly. Our security operations also benefited from the migration, again thanks to the consolidation and the transfer of certain responsibilities to Timescale.\u2728Editor\u2019s Note:Read how our Support Team is raising the baron hosted database support.We\u2019ll continue to innovate on our technology platform and increase Everactive\u2019s product offerings, including improving our sensors\u2019 wireless range, lowering power requirements to increase energy harvesting efficiency, integrating with additional sensors, and shrinking device form factor. These successive chip platform enhancements will allow us to monitor the condition of more and more assets, and we\u2019re also developing a localization feature to identifywhereassets are deployed.Ultimately, Everactive\u2019s mission is to generate new, massive datasets from a wealth of currently un-digitized physical-world assets. Transforming that data into meaningful insights has the potential to fundamentally improve the way that we live our lives\u2014impacting how we manage our workplaces, care for our environment, interact with our communities, and manage our own personal health.Advice & ResourcesIf you\u2019re evaluating your database options, here are two recommendations based on our experiences. First, if you have enough time-series data that a general database won\u2019t cut it (millions of rows), TimescaleDB should be your first choice. It\u2019s easy to try out,the docs are great, and thecommunityis very helpful.Second, don\u2019t underestimate the importance of using solutions that leverage a wide knowledge base shared by many\/most backend developers. The increase in team throughput and decrease in onboarding time afforded by TimescaleDB\u2014everyone knows at leastsomeSQL\u2014in contrast to OpenTSDB\u2014an esoteric thing built on HBase\u2014has been a huge advantage. We expected this to some degree, but actually experiencing it firsthand has confirmed its value.Additionally, the use of schema-as-code tools and an internal\/external schema separation discussed above have also been cornerstones of our success. We hadn\u2019t been using these tools and patterns at Everactive previously but have since seen them catch on in other projects and teams.Want to read more developer success","108":"stories?Sign up for our newsletterfor more Developer Q&As, technical articles, tips, and tutorials to do more with your data\u2014delivered straight to your inbox twice a month.We\u2019d like to thank Carlos, Dan, Clayton, and all of the folks at Team Everactive for sharing their story (special shoutout to Brian, Joe, Carlos, Greg, and Elise for your contributions to this piece!). We applaud your efforts to bring sustainable, cost-effective sensors and easily actionable data to organizations around the world \ud83d\ude4c.We\u2019re always keen to feature new community projects and stories on our blog. If you have a story or project you\u2019d like to share, reach out on Slack (@Ana Tavares), and we\u2019ll go from there.The open-source relational database for time-series and analytics.Try Timescale for free","109":"This is an installment of our \u201cCommunity Member Spotlight\u201d series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition, Florian Herrengt, co-founder ofNocodelytics,shares how he tracks, records, and monitors millions of user interactions per day to build dazzling analytics dashboards for website building and hosting platformWebflow. And the best part? The team is making queries up to six times less costly by using a wide table layout.About the CompanyA Nocodelytics dashboardNocodelyticsis an analytics product built specifically for the website building and hosting companyWebflow. We are processing millions of events from various websites and turning them into insightful dashboards.We\u2019re a close-knit team of three based in London. We are two co-founders,Sarwechand myself (Florian), and the team recently expanded whenAlexjoined us as a frontend developer. You can find us on theWebflow Marketplace.As our company is growing fast, we found that a quick, reliable database is vital for our company to grow and thrive.About the ProjectOur goal is to build the number one analytics platform for Webflow.Like other analytics tools, we provide users with a tracking script that they add to their Webflow site. However, because of the nature of Webflow\u2019s audience, we have to do things quite differently from other analytics tools\u2014which presents challenges that no other analytics tool faces.First, one of the things that we do that adds complexity is that we automatically track every event a user does. Whether it\u2019s clicking on a button or link, interacting with a form, or viewing a page, we need to be able to track all of this information with minimal impact on accuracy.Adding a new metric to the Nocodelytics dashboardWe also track events tied to the Webflow Content Management System (CMS) and other third-party tools likeJetboost,Wized,Memberstack, andOutseta, which we automatically integrate with and track.So, we tap into the power of the CMS and the Webflow ecosystem to record how users interact. We then output these interactions into valuable insights for our analytics customers. This means we need to be able to record and ingest millions of events into our database per day without it crashing down. Some of our customers will get publicity and see huge spikes in traffic, so we need to be able to handle","110":"this too.Second, we provide our customers with a simple-to-use and customizable dashboard. This allows them to create metrics that go deep and answer almost any question (What are the most popular jobs on my site? How many signups came from Google? Which contact button is most effective?).To do this, we\u2019re building a metric creator that is simple to use on the frontend but complex on the backend, with some advanced SQL being done to return the right answers depending on the question asked. So it\u2019s important that we have the right tool to help us with this.Third, when our customers view their dashboard and look at the metrics, even a few seconds\u2019 wait can cause frustration. As our customers can have several metrics on the dashboard at any time\u2014some with fairly complex queries\u2014there\u2019s a lot of pressure on our database to read the data, crunch the numbers, and return the result quickly.On top of that, we also allow our customers to share and embed their dashboard onto a site, which means the number of users viewing the metrics goes up, and the number of read requests can increase at any time.Choosing (and Using!) TimescaleDBFirst, let\u2019s talk about the previous setup we had and what problems this resulted in.Like many other companies,Nocodelyticsstarted with PostgreSQL. In the beginning, it worked. But the size of the database grew very, very fast. Eventually, with millions of rows, our dashboards became sluggish. Queries for customers with a lot of traffic would take several minutes or even time-out.As we needed a solution as quickly as possible, I had three things in mind when looking for an alternative to PostgreSQL:It had to be quick to learn.The change needed to involve a minimal amount of code.The migration path had to be simple.My first choice wasClickHouse, which seems to have better performance than Timescale for our use case\u2014but keep reading as there's more to it.Not everything was great about ClickHouse: It does a lot, which can get confusing, and I\u2019d rather stick with PostgreSQL, which I\u2019ve used for years and know works.Amazon Athenawas another good option. It's serverless and queries compressed data directly from S3 (which Timescale is now offering in private beta too). It did have some weird limitations (e.g., a maximum of 20 concurrent queries, no way to update data, and","111":"dynamic partition columns must always be included in queries), which I found out the hard way. At that point, I was worried about the next issue I\u2019d find, and I lost confidence in the product.Finally,InfluxDB. I spent a few hours with it, but it\u2019s too different from what we already had. The migration would take forever.Also, I must stress that I had never heard about those tools before. I either worked on large projects with big money, where we used Redshift\/BigQuery or specialized, small-scale projects, where the smallest PostgreSQL instance would be enough.I was about to use ClickHouse before I came across Timescale by chance while browsing databases.It\u2019s just PostgreSQLThere you have it. The best feature of TimescaleDB: it's all PostgreSQL, always has been. All your tools, all the existing libraries, and your code already work with it. I\u2019m using TimescaleDB because it\u2019s the same as PostgreSQL but magically faster.Whatever technology is behind TimescaleDB, it\u2019s truly impressive. Since theWebflow Conf, we have been inserting more than a million rows per day (without optimizations) in our tiny 8 GB memory instance. Sometimes, we have 3 K\/IOPS. PostgreSQL would struggle. It\u2019s like pulling an elastic until it snaps\u2014but it never does, and we barely scratched the surface of what it can do. Also, the community is really nice.\u201cI\u2019m using TimescaleDB because it\u2019s the same as PostgreSQL but magically faster\"So, in sum, Timescale was a drop-in replacement that solved most of our issues. I installed the extension,created a hypertable, and everything became magically fast.\u2728Editor\u2019s Note: Want to get started with TimescaleDB?Check out our documentation.But as I was reading the Timescale documentation, I realized it could be faster. A lot faster.Relational vs. Wide Table LayoutWhen you first learn about relational databases, you learn how to normalize your data with multiple tables and foreign key references. That\u2019s a good, flexible way to store your data. However, it can be an issue when dealing with a large amount of data.That\u2019s where the wide table layout becomes useful.Normalized data vs. Wide tableThe idea is to trade storage and schema flexibility for query performance by reducing the number ofJOINs. But this doesn\u2019t stop you from combining both. You can still add foreign keys to a wide table.You will end up using more storage, but you can mitigate it with TimescaleDB\u2019s compression.\u2728Editor\u2019s Note:Learn","112":"how to save space using compression.Show time: Setting Up the SchemaLet\u2019s create the above schema with relationships and insert dummy data:-- Sequence and defined type CREATE SEQUENCE IF NOT EXISTS events_id_seq; CREATE SEQUENCE IF NOT EXISTS countries_id_seq; CREATE SEQUENCE IF NOT EXISTS browsers_id_seq; CREATE SEQUENCE IF NOT EXISTS devices_id_seq; -- Table Definition CREATE TABLE \"public\".\"countries\" ( \"id\" int4 NOT NULL DEFAULT nextval('countries_id_seq'::regclass), \"name\" varchar, PRIMARY KEY (\"id\") ); CREATE TABLE \"public\".\"browsers\" ( \"id\" int4 NOT NULL DEFAULT nextval('browsers_id_seq'::regclass), \"name\" varchar, PRIMARY KEY (\"id\") ); CREATE TABLE \"public\".\"devices\" ( \"id\" int4 NOT NULL DEFAULT nextval('devices_id_seq'::regclass), \"name\" varchar, PRIMARY KEY (\"id\") ); CREATE TABLE \"public\".\"events\" ( \"id\" int4 NOT NULL DEFAULT nextval('events_id_seq'::regclass), \"name\" varchar, \"value\" int, \"country_id\" int, \"browser_id\" int, \"device_id\" int, PRIMARY KEY (\"id\") ); create index events_country_id on events(country_id); create index events_browser_id on events(browser_id); create index events_device_id on events(device_id); create index countries_name on countries(name); create index browsers_name on browsers(name); create index devices_name on devices(name);Then create our new wide table:create table events_wide as select events.id as id, events.name as name, events.value as value, countries.name as country, browsers.name as browser, devices.name as device from events join countries on events.country_id = countries.id join browsers on events.browser_id = browsers.id join devices on events.device_id = devices.id create index events_wide_country on events_wide(country); create index events_wide_browser on events_wide(browser); create index events_wide_device on events_wide(device);ResultsNeat. But was it worth it? Well, yes. It would be a lot less interesting to read otherwise. Now that we have our wide table, let\u2019s have a look at the query cost.-- cost=12406.82 explain select devices.name, count(devices.name) from events join countries on events.country_id = countries.id join browsers on events.browser_id = browsers.id join devices on events.device_id = devices.id where browsers.name = 'Firefox' and countries.name = 'United Kingdom' group by devices.name order by count desc; -- cost=2030.21 explain select device, count(device) from events_wide where browser = 'Firefox' and country = 'United Kingdom' group by device order by count desc;This is a significant improvement. The same query is six times less costly. For a dashboard with dozens of metrics, it makes amassivedifference.You can find the full SQLhere.Future PlansTimescale is packed with amazing features we want to start using. Things liketime_bucket_gapfill()orhistogram().I didn't dive into it yet, but theTimescale Toolkitseems to have a lot of valuable functionality, such asapproximate count distinctsorfunction pipelines, which we can\u2019t wait to try out.We also want to see","113":"howcontinuous aggregatescould help us relieve some pressure on the database.Our goal is to keep growing and scaling the number of events we store. We will soon leveragetablespacesanddata tiering to save on storage space. We\u2019re keen to further optimize and use TimescaleDB to help as we grow towards handling billions of rows!June 2023 update:We\u2019re now dealing with more than 500 GB of data, and those wide tables just aren\u2019t efficient anymore.So, we\u2019ve gone ahead and separated the table again. We\u2019re executing a count query first, retrieving the ids, then running another query for the labels. Essentially, it\u2019s a two-query process.TimescaleDB is row-based and our wide table is heavy on strings. As a result, we\u2019re hitting I\/O limits. This wasn\u2019t a problem before because we\u2019re using a fast SSD and had fewer rows per site, but now with the data volume, it\u2019s a different story.In retrospect, choosing the wide table structure at that time was good. It accelerated our development pace significantly. We centralized all the events, simplifying our queries for quite some time. Plus, it enabled us to compress all our data without effort. Looking back, it was a beneficial strategy for that stage of our project.We\u2019d like to thank Florian and the folks at Nocodelytics for sharing their story on tracking millions of user events while reducing their query cost using TimescaleDB. Stay tuned for an upcoming dev-to-dev conversation between Florian and Timescale\u2019s developer advocate,Chris Englebert, where they will expand on these topics.We\u2019re always keen to feature new community projects and stories on our blog. If you have a story or project you\u2019d like to share, reach out on Slack (@Ana Tavares), and we\u2019ll go from there.The open-source relational database for time-series and analytics.Try Timescale for free","114":"This is an installment of our \u201cCommunity Member Spotlight\u201d series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition, Ezequiel Raynaudo, data team leader at Zondax, explains how the software company consumes and analyzes hundreds of terabytes of blockchain data using TimescaleDB to create complete backend tech solutions.About the CompanyZondaxis a growing international team of more than 30 experienced professionals united by a passion for technology and innovation. Our end-to-end software solutions are widely used by many exchanges, hardware wallets, privacy coins, and decentralized finance (DeFi) protocols. Security is one of the highest priorities in our work, and we aim to provide the safest and most efficient solutions for our clients.Founded in 2018, Zondax has been consideredthe leader in the industry for Ledger apps development, with more than 45 applications built to date and more near production. Since its inception, our team has been building and delivering high-quality backend tech solutions for leading blockchain projects of prominent clients, such as Cosmos, Tezos, Zcash, Filecoin, Polkadot, ICP, Centrifuge, and more.\u201cThe database is a critical part of the foundation that supports our software services for leading blockchain projects, financial services, and prominent ecosystems in the blockchain space\u201dWe put a lot of emphasis on providing maximum safety and efficiency for the ecosystem. Our services can be categorized into security, data indexing, integration, and protocol engineering. Each category has designated project leaders that take the initiative in managing the projects with well-experienced engineers.About the TeamMy team (which currently has two people but is looking to grow by the end of the year) manages the blockchain data in various projects and ensures the tools needed for the projects are well-maintained. For example, we pay close attention to the dynamic sets of different blockchains and create advanced mathematical models for discovering insightful information via data analytics.The database is a critical part of the foundation that supports our software services for leading blockchain projects, financial services, and prominent ecosystems in the blockchain space. In conclusion, we take serious steps to ensure the work of processing blockchain data remains effective, and that the quality of the results meets Zondax's high standards.We welcome professionals from different cultures, backgrounds, fields of experience, and mindsets.","115":"New ideas are always encouraged, and the diversity within the team has been helping us to identify various potential advancements we can make in leading blockchain projects.At the same time, our efforts in experimenting and searching for creative and efficient solutions led us to pay close attention to the latest technologies and innovations that we immediately incorporate into our work. We never get bored at Zondax!Since the Covid-19 pandemic, many companies and teams have switched to remote work temporarily or permanently, and for Zondax this is familiar ground. We adopted a culture of remote work from the start, which has been rewarding and encouraging as team members from around the globe often spark fun and constructive discussions despite nuanced cultural differences. And in terms of quality of work, the tools and platforms we have been using accommodate the needs for smooth communication and effective collaboration within different teams.About the ProjectZondax provides software services to various customers, including leading projects in the blockchain ecosystem and financial services. We consume and analyze blockchain data in numerous different ways and for multiple purposes:As input for other services and ecosystems provided by Zondax and for other third partiesTo apply data science and get value in the form of insights by using mathematical models for different blockchain dynamic sets of variablesFinancial servicesBlockchain data backupsThe minimal unit of division of a blockchain, a.k.a. a \u201cblock\u201d on most networks, contains a timestamp field among several other sub-structures. It allows you to define blocks at a specific point in time throughout the blockchain history. So having a database engine that can leverage that property is a go-to option.Choosing (and Using!) TimescaleDB\u2728Editor\u2019s Note:Want to know more about optimizing queries on hypertables with thousands of partitions using TimescaleDB?Check out this blog post.Our first encounter with TimescaleDB was througha blog post about database optimizations. We decided to go ahead and install it on our infrastructure since it\u2019s built on top of PostgreSQL, and our main code and queries didn\u2019t require to be updated. After installing the corresponding helm chart on our infrastructure, we decided to try it.The first tests denoted a substantial increase in performance when writing or querying the database, with no optimizations at all and without using hypertables. Those results encouraged us to keep digging into TimescaleDB\u2019s configurations and optimizations, such as usingtimescaledb-tuneand","116":"converting critical tables to hypertables.\u201cIf Timescale didn\u2019t exist, we would have a problem and might need to wait a couple of weeks to process a few dozens of terabytes rather than waiting only 1-2 days\u201dLong story short, we went from having to wait a couple of weeks to process a few dozens of terabytes to only 1-2 days. Among the top benefits of TimescaleDB, I would highlight having the best possible write and read performance. It is a critical part of our ecosystem because it helps us provide fast and responsive services in real time. Using TimescaleDB also allows our software to stay synced with the blockchain's nodes, which is one of the most significant acknowledged advantages of our software and services. Last but not least, we also use TimescaleDB for blockchain data backups to protect data integrity.Before finding out about TimescaleDB, we first used custom PostgreSQL modifications like indexing strategies and high-availability setups. Also, our team did some benchmarking using NoSQL databases like MongoDB, but with no substantial improvements on the write\/read speeds that we needed.If Timescale didn\u2019t exist, we would have a problem and might need to wait a couple of weeks to process a few dozens of terabytes rather than waiting only 1-2 days.We are glad that we chose Timescale and proud of the work that has been expedited and achieved. For example, despite many challenges, we didn't give up on experimenting with new approaches to process a tremendous amount of blockchain data. Instead, we continued exploring new ideas and tools until we eventually started using TimescaleDB, which drastically shortened the time to process data and accelerated our progress in delivering quality results for the projects.Current Deployment & Future Plans\u2728Editor\u2019s Note:Read how you canadd TimescaleDB to your Kubernetes deployment strategyquickly and easily.We deploy TimescaleDB using a custom helm chart that fits our infrastructure needs. As far as programming languages, we mainly use Golang to interact with TimescaleDB; and Hasura as the main query engine for external users.Advice & Resources\u2728Editor\u2019s Note:Want to learn how to create a hypertable using TimescaleDB?Check out our documentation on hypertables and chunks.I\u2019d recommend reading the blog postson how to get a working deployment,hypertables, andTimescale vs. vanilla Postgres's performance using the same queries.A wise man (Yoda) once said, \"You must unlearn what you have learned.\" It is inevitable","117":"to encounter countless challenges when developing a scalable database strategy, but staying curious and willing to explore new solutions with caution can sometimes be rewarding.We\u2019d like to thank Ezequiel and all of the folks at Zondax for sharing their story and efforts in finding a solution to process enormous amounts of data to build backend solutions for blockchain projects.We\u2019re always keen to feature new community projects and stories on our blog. If you have a story or project you\u2019d like to share, reach out on Slack (@Ana Tavares), and we\u2019ll go from there.The open-source relational database for time-series and analytics.Try Timescale for free","118":"This is an installment of our \u201cCommunity Member Spotlight\u201d series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition,Caroline Rodewig, Senior Software Engineer and Predict Crew Lead at FlightAware, joins us to share how they\u2019ve architected a monitoring system that allows them to power real-time flight predictions, analyze prediction performance, and continuously improve their models.FlightAwareis the world's largestflight tracking and data platform; we fuse hundreds of global data sources to produce an accurate, consistent view of flights around the world. We make this data available to users through web and mobile applications, as well as different APIs.Our customers cover a number of different segments, including:Travelers \/ aviation enthusiastswho use our website and mobile apps to track flights (e.g., using our \u201cwhere\u2019s my flight?\u201d program).Business aviation providers(such asFixed Base Operatorsoraircraft operators) who use flight-tracking data and custom reporting to support their businesses.Airlinesthat use flight-tracking data or our predictive applications to operate more efficiently.Editor\u2019s Note: for more information about FlightAware\u2019s products (and ways to harness its data infrastructure), check outthis overview. Want to build your own flight tracking receiver and ground station? SeeFlightAware\u2019s PiAware tutorial.About the teamThe Predictive Technologiescrewis responsible for FlightAware's predictive applications, which as a whole are called \"FlightAware Foresight.\" At the moment, our small-but-mighty team is made up of only three people: our project managerJames Parkman, software engineer Andrew Brooks, and myself. We each wear many different hats; a day's work can cover anything from Tier 2 customer support to R&D, and everything in between.A former crew member, Diorge Tavares, wrote acool articleabout his experience as a site reliability engineer embedded in the Predict crew. He helped us design infrastructure and led our foray into cloud computing; now that our team is more established, he\u2019s moved back to the FlightAware Systems team full-time.About the projectOur team's chief project is predicting flight arrival times, or ETAs; we predict both landing (EON) and gate arrival (EIN) times. And, ultimately, we need to monitor, visualize, and alarm on thequalityof those predictions. This is where TimescaleDB fits in.Not only should we track how our prediction error changes over the course of each flight, we also need to track how our error changes over months - or years!","119":"- to ensure we're continually improving our predictions. Our predictive models can have short bursts of inaccuracy - like failing to anticipate the impact of a huge storm - but they can also drift slowly over time as real-life behaviors change.As an example of the type of data we extract, the below is our \"Worst Flights\" dashboard, which we use for QA. (Looking through outliers is an easy way to spot bugs.) The rightmost column compares our error to third-parties', so we can see how we're doing relative to the rest of the industry.Our Grafana dashboard for tracking \"Worst Flights\" and our prediction quality vs. other data sourcesBut, we also go deep into specific flights, like the below \"Single Flight\" dashboard view.This is useful for debugging, as it gives a detailed picture of how our predictions changed over the course of asingleflight.Our Grafana dashboard for debugging and assessing our prediction quality at the individual flight levelChoosing (and using) TimescaleDBWe tested out several different monitoring setups before settling on TimescaleDB and Grafana. We recently published ablog postdetailing our quest for a monitoring system, which I\u2019ve summarized below.First, we considered usingZabbix; it's widely used at FlightAware, where most software reports into Zabbix in one way or another. However, we quickly realized that Zabbix was not the tool for the job \u2013 our Systems crew had serious doubts that Zabbix would be able to handle the load of all the metrics we wanted to track:We make predictions for around 75,000 flights per day; if we only stored two error values per flight (much fewer than we wanted), it would require making 100 inserts per minute.After ruling out Zabbix, I started looking atGrafanaas a visualization and alerting tool, and it seemed to have all the capabilities we needed. For my database backend, I first pickedPrometheus, because it was near the top of Grafana's \"supported databases\" list and its built-in visualization capabilities seemed promising for rapid development.I didn't know much about time-series databases, and, while Prometheus is a good fit for some data, it really didn't fit mine well:No JOINs. My only prior database experience was with PostgreSQL, and it didn't occur to me that some databases just wouldn't support JOINs. While wecouldhave worked around this issue by inserting specific, already-joined error metrics, this would have limited the flexibility","120":"and \"query-a-bility\" of the data.Number of labels to store. At the bare minimum, we wanted to store EON and EIN predictions for 600 airports, at least 10 times throughout each flight. This works out to 12,000 different label combinations, each stored as a time series \u2013 whichPrometheus is not currently designed to handle.And, that\u2019s when I found TimescaleDB. A number of factors went into our decision to use TimescaleDB, but here are the top four:Excellent performance.This article comparing TimescaleDB vs. PostgreSQL performancereally impressed me. Getting consistent performance, despite the number of rows in the table, was critical to our goal of storing performance data over several years.Institutional knowledge.FlightAware uses PostgreSQL in a vast number of applications, so there was already a lot of institutional knowledge and comfort with SQL.Impressive documentation.I have yet to have an issue or question that wasn't discussed and answered in the docs. Plus, it was trivial to test out \u2013 I love one-line docker start-up commands (seeTimescaleDB Docker Installation instructions).Grafana support.I was pretty confident that I wanted to use Grafana to visualize our data and power our dashboards, so this was a potential dealbreaker.We use several Grafana dashboards, like this one, to view detailed performance over time (average error trends over one or more airports)Editor\u2019s Note: To learn more about TimescaleDB and Grafana,see our Grafana tutorials(5 step-by-step guides for building visualizations, using variables, setting up alerts, and more) andGrafana how-to blog posts.To see how to use TimescaleDB to perform time-series forecasting and analysis,check out our time-series forecasting tutorial(includes two forecasting methods, best practices, and sample queries).Current deployment & use casesOur architecture is pretty simple (see diagram below). We run a copy of this setup in several environments: production, production hot-standby, staging, and test. Each environment has its own predictions database, which allows us to compare our predictions in staging to those in production and validate changesbeforethey get released.\u2b50Pro tip:we periodically sync Grafana configurations from production to each of the other environments, which reduces the manual work involved in updating dashboards across instances.FlightAware Predict team's system architecture, which uses custom Python programs, Docker, Grafana, and TimescaleDBAfter some trial and error, we\u2019ve set up our TimescaleDB schema as follows:(1) Short term (1 week) tables for arrivals, our own predictions, and third-party predictions.The predict-assessor program reads our flight data feed, extracts ETA predictions","121":"and arrival times, and inserts them into the database. For scale, the arrivals table typically contains 500k rows, and the predictions tables each contain 5M rows.Each table is chunked: arrivals by arrival time and predictions by the time the prediction was made.We use archiving functions to copy some data into long-term storage, andadrop_chunkspolicyto ensure that rows older than one week are dropped to prevent unlimited table growth.(2) Long term (permanent) table for prediction and prediction-error data.Archiving functions move data to the long term table by joining the short terms tables together. They also \"threshold\" the data to reduce verbosity, by only storing predictions at predetermined intervals; i.e., predictions that were present 1 and 2 hours before arrival are migrated to long-term tables, but intermediate predictions (i.e., at 1.5 hours before arrival) are not kept.Between the join and the threshold, the archiving process reduces the average number rows per flight from25(across 3 short-term tables) to6!We haven\u2019t enabled adrop_chunkspolicy on this table as of now; after ~9 months of running this setup, our database file is pretty manageable at 54GB. If we start having space issues, we'd opt to store fewer predictions per flight rather than lose any year-over-year historical data.Biggest \"Aha!\" momentContinuous aggregates are what well and truly sold me on TimescaleDB. We went from 6.4 seconds to execute a query to 30ms.Yes, milliseconds.I was embarrassingly late to the party when it comes to continuous aggregates. When I first set up our database, every query was fast because the database was small. However, as we added data over time, some queries slowed down significantly.The biggest offender was a query on our KPIs dashboard, visualized in Grafana below. This graph gives us a birds-eye view of error over time. The blue line represents the average error for all airports at a certain time before arrival; the red line shows the number of flights per day. (You can see the huge traffic drop when airlines stopped flights in March, due to the COVID-19 pandemic.)Our KPI dashboard includes various metrics, including our average error rate and total flights per day across all airportsBeforelearning about continuous aggregates, the query to extract this data looked like this:SELECT time_bucket('1 day', arr_time) AS \"time\", AVG(get_error(prediction_fa, arr_time)) AS on_error, count(*) AS on_count FROM prediction_history WHERE time_out = '02:00:00' AND arr_time BETWEEN '2020-03-01' AND","122":"'2020-09-05' GROUP BY 1 ORDER BY 1It took 6.4 seconds and aggregated 1.6M rows, from a table of 147M rows.For what the query was doing, this runtime wasn't too bad \u2013 the table was chunked byarr_time, which the query planner could take advantage of.I considered adding indexes to make the query faster, but wasn't convinced they would help much and was concerned about the resulting performance penalties for inserts.I also considered creating a materialized view to aggregate the data and writing a cron job to regularly refresh it...but that seemed like a hassle, and after all, I could wait 10 seconds for something to load \ud83e\udd37\u200d\u2640\ufe0f.Then, I discovered TimescaleDB's continuous aggregations! For the unfamiliar, they basically implement that regularly-refreshing materialized view idea, but in a far smarter way and with a bunch of cool extra features.Here's the view for the continuous aggregate:CREATE VIEW error_by_time_out WITH (timescaledb.continuous) AS SELECT time_out, time_bucket(INTERVAL '1 hour', arr_time) AS bucket, AVG(get_error(prediction_fa, arr_time)) AS avg_error, COUNT(*) AS count FROM prediction_history GROUP BY time_out, bucket;The new data extraction query is a little bit harder to parse, because the error needs to be aggregated across continuous aggregate buckets:SELECT time_bucket('1 day', bucket) AS \"time\", SUM(avg_error * count) \/ SUM(count) AS error, SUM(count) AS count FROM error_by_time_out WHERE time_out = '02:00:00' AND bucket BETWEEN '2020-03-01' AND '2020-09-05' GROUP BY 1 ORDER BY 1...and I'll let you guess how long it takes....30ms.Yes, milliseconds. We went from 6.4 seconds to execute the query to 30ms.On top of that, unlike in a classic materialized view, the whole view doesn't have to be recalculated every time it needs to be updated -just the parts that have changed.This means refreshes are lightning fast too.Continuous aggregates are what well and truly sold me on TimescaleDB.The amazing developers at Timescale recently made continuous aggregates even better through \"real-time\" aggregates. These will automatically fill in data between the last view refresh and real-time when they're queried, so you always get the most up-to-date data possible. Unfortunately, our database is a few versions behind so we're not using real-time aggregates yet, but I can't wait to upgrade and start using them.Editor\u2019s Note: To learn more about real-time aggregates and how they work, see our\u201cEnsuring up-to-date results with Real-Time Aggregations\u201d blog and mini-tutorial(includes benchmarks, example scenarios, and resources to get started).Getting started advice &","123":"resourcesIn addition to the documentation I\u2019ve linked throughout this post, I'd recommend doing what I did: readingthe TimescaleDB docs, spinning up a test database, and going to town.And, after a few months of use, make sure to go back and read the docs again \u2013 you'll discover all sorts of new things to try to make your database even faster (looking at youtimescaledb-tune)!Editor\u2019s Note: If you\u2019d like to follow Caroline\u2019s advice and start testing TimescaleDB for yourself,Timescale Cloudis the fastest way to get up and running - 100% free for 30 days, no credit card required. You can see self-managed and other hosted optionshere.To learn more about timescale-tune,see our Configuring TimescaleDB documentation.We\u2019d like to thank Caroline and the FlightAware team for sharing their story, as well as for their work to make accurate, reliable flight data available to travelers, aviation enthusiasts, and operators everywhere. We\u2019re big fans of FlightAware at Team Timescale, and we\u2019re honored to have them as members of our community!We\u2019re always keen to feature new community projects and stories on our blog. If you have a story or project you\u2019d like to share, reach out on Slack (@lacey butler), and we\u2019ll go from there.Additionally, if you\u2019re looking for more ways to get involved and show your expertise, check out theTimescale Heroesprogram.The open-source relational database for time-series and analytics.Try Timescale for free","124":"This is an installment of our \u201cCommunity Member Spotlight\u201d series, where we invite our customers to share their work, shining a light on their success and inspiring others with new ways to use technology to solve problems.In this edition, Jean-Fran\u00e7ois Lambert, lead data engineer atNewtrax, shares how using TimescaleDB has helped the IoT leader for underground mines to optimize their clients\u2019 profitability and save lives by using time-series data in hypertables to prevent human and machine collisions.About the CompanyNewtrax believes the future of mining is underground, not only because metals and minerals close to the surface are increasingly rare but because underground mines have a significantly lower environmental footprint. To accelerate the transition to a future where 100 percent of mining is underground, we eliminate the current digital divide between surface and underground mines.To achieve this goal, Newtrax integrates the latest IoT and analytics technologies to monitor and provide real-time insights on underground operations, including people, machines, and the environment. Newtrax customers are the largest producers of metals in the world, and their underground mines rely on our systems to save lives, reduce maintenance costs, and increase productivity. Even an increase of 5 percent in overall equipment effectiveness can translate to millions in profits.We collect data directly from the working face by filling the gaps in existing communications infrastructures with a simple and easy-to-deploy network extension. With that, we enable underground hard rock mines to measure key performance indicators they could not measure in real time to enable short-interval control of operations during the shift.Our headquarters are based in Montreal, Canada, and we have regional offices around the globe, totaling 150 employees, including some of the most experienced engineers and product managers specializing in underground hard rock mining. Our solutions have been deployed to over 100 mine sites around the world.About the TeamThe Newtrax Optimine Mining Data Platform (MDP) is the first AI-powered data aggregation platform enabling the underground hard rock mining industry to connect all IoT devices into a single data repository. Our team consists of software developers, data scientists, application specialists, and mining process experts, ensuring our customers get the exact solutions they require.As the lead data engineer, it is my responsibility to define, enhance and stabilize our data pipeline, from mobile equipment telemetry and worker positioning to PowerBI-driven data warehousing via","125":"RabbitMQ, Kafka, Hasura, and of course, TimescaleDB.About the ProjectA diagram of the Newtrax solutions and how they bring together people, machines, and the environment in their mine intelligence operationsOur Mining Data Platform (MDP) platform incorporates proprietary and third-party software and hardware solutions that focus on acquiring, persisting, and analyzing production, safety, and telemetry data at more than one hundred underground mine sites across the world.From the onset, we have had to deal with varying degrees of data bursts at completely random intervals. Our original equipment manufacturer-agnostic hardware and software solutions can acquire mobile equipment telemetry, worker positioning, and environmental monitoring across various open platforms and proprietary backbones. WiFi, Bluetooth, radio-frequency identification (RFID), long-term evolution (LTE), leaky feeder, Controller Area Network (CAN) bus, Modbus\u2014if we can decode it, we can integrate it.\u201cWe have saved lives using TimescaleDB\u201dRegardless of skill sets, programming languages, and transportation mechanisms, all of this incoming data eventually makes it to PostgreSQL, which we have been using since version 8.4 (eventually 15, whenever TimescaleDB supports it!). For the past 10 years, we have accumulated considerable experience with this world-class open-source relational database management system.\u2728Editor\u2019s Note:Stay tuned as we\u2019ll announce support for PostgreSQL 15 very soon, in early 2023.While we are incredibly familiar with the database engine itself and its rich extension ecosystem, partitioning data-heavy tables was never really an option because native support left to be desired, and third-party solutions didn\u2019t meet all of our needs.Choosing (and Using!) TimescaleDBI have been using PostgreSQL since I can remember. I played around with Oracle and MSSQL, but PostgreSQL has always been my go-to database. I joined Newtrax over 12 years ago, and we\u2019ve used it ever since.In 2019, we found out about TimescaleDB (1.2.0 at the time) and started closely following and evaluating the extension, which promised to alleviate many of our growing pains, such as partitioning and data retention policies.Not only did TimescaleDB resolve some of our long-standing issues, but itsdocumentation,blog posts, and community outlets (Slack,GitHub,Stack Overflow) also helped us make sense of this \u201ctime-series database\u201d world we were unknowingly part of.\u201cOne of our first tech debt reductions came via the use of thetime_bucket_gapfillandlocffunctions, which allowed us to dynamically interpolate mobile equipment telemetry data points that could be temporarily or permanently missing\u201dA tipping point for choosing TimescaleDB was theNYC TLC tutorialwhich we used","126":"as a baseline. After comparing with and without TimescaleDB, it became clear that we would stand to gain much from a switch: not only from the partitioning\/hypertable perspective but also with regards to the added business intelligence API functionality, background jobs,continuous aggregates, and variouscompressionandretention policies.Beyond that, we only ran basic before\/after query analysis, because we know that a time-based query will perform better on a hypertable than a regular table, just by virtue of scanning fewer chunks. Continuous aggregates and hyperfunctions easily saved us months of development time which is equally, if not more important, than performance gains.More importantly, in order for our solutions (such as predictive maintenance and collision avoidance) to provide contextualized and accurate results, we must gather and process hundreds of millions of data points per machine or worker, per week or month, depending on various circumstances. We usehypertablesto handle these large datasets and act upon them. We have saved lives using TimescaleDB.Beyond the native benefits ofusing hypertablesand data compression\/retention policies, one of our first tech debt reductions came via the use of thetime_bucket_gapfillandlocffunctions (see an example later), which allowed us to dynamically interpolate mobile equipment telemetry data points that could be temporarily or permanently missing. Since then, we have been acutely following any and all changes to the hyperfunction API.\u2728Editor\u2019s Note:Read how you can write better queries for time-series analysis using just SQL and hyperfunctions.Current Deployment & Future PlansAs far as deployment is concerned, the mining industry is incredibly conservative and frequently happens to be located in the most remote areas of the world, so we mostly deploy TimescaleDB on-premises throughKubernetes. The main languages we use to communicate with TimescaleDB are C#, Golang, and Python, but we also have an incredible amount of business logic written as pure SQL in triggers, background jobs, and procedures.While all of our microservices are typicallyrestricted to their own data domains, we have enabled cross-database queries and mutations throughHasura. It sits nicely on top of TimescaleDB and allows us to expose our multiple data sources as a unified API, complete with remote relationships, REST\/GraphQL API support, authentication, and permission control.Our use of TimescaleDB consists of the following:We greatly appreciatetimescaledb-tuneautomatically tweaking the configuration file based on the amount of memory and number of CPUs available. In fact, Newtrax has contributed to this tool a few times.We","127":"deploy thetimescaledb-haimage (which we also contributed to) because it adds multiple extensions other than TimescaleDB (for example,pg_stat_statements,hypopg, andpostgis), and it comes with useful command-line tools likepgtop.Our developers are then free to use hypertables or plain tables. Still, when it becomes obvious that we\u2019ll want to configure data retention or create continuous aggregates over a given data set,hypertables are a no-brainer.Even if hypertables are not present in a database, we may still use background jobs to automate various operations instead of installing another extension likepg_cron.Hypertables can be exposed as-is through Hasura, but we may also want to provide alternative viewpoints through continuous aggregates or custom views and functions.\u2728Editor\u2019s Note:The TimescaleDB tuning tool helps make configuring TimescaleDB a bit easier. Read our documentation to learn how.As mentioned earlier, incoming data can be erratic and incomplete. We might be missing some data points or values. Using a combination of the following code will create a functionmine_data_gapfill, which can be tracked with Hasura and enable consumers to retrieve consistent data series based on their own needs. And you could easily useinterpolateinstead oflocfto provide interpolated values instead of the last one received.CREATE TABLE mine_data ( serial TEXT, timestamp TIMESTAMPTZ, values JSONB NOT NULL DEFAULT '{}', PRIMARY KEY (serial, timestamp) ); SELECT CREATE_HYPERTABLE('mine_data', 'timestamp'); INSERT INTO mine_data (serial, timestamp, values) VALUES ('123', '2020-01-01', '{\"a\": 1, \"b\": 1, \"c\": 1}'), ('123', '2020-01-02', '{ \"b\": 2, \"c\": 2}'), ('123', '2020-01-03', '{\"a\": 3, \"c\": 3}'), ('123', '2020-01-04', '{\"a\": 4, \"b\": 4 }'), ('123', '2020-01-06', '{\"a\": 6, \"b\": 6, \"c\": 6}'); CREATE FUNCTION mine_data_gapfill(serial TEXT, start_date TIMESTAMPTZ, end_date TIMESTAMPTZ, time_bucket INTERVAL = '1 DAY', locf_prev INTERVAL = '1 DAY') RETURNS SETOF mine_data AS $$ SELECT $1, ts, JSONB_OBJECT_AGG(key_name, gapfilled) FROM ( SELECT serial, TIME_BUCKET_GAPFILL(time_bucket, MT.timestamp) AS ts, jsondata.key AS key_name, LOCF(AVG((jsondata.value)::REAL)::REAL, treat_null_as_missing:=TRUE, prev:=( SELECT (values->>jsondata.key)::REAL FROM mine_data WHERE values->>jsondata.key IS NOT NULL AND serial = $1 AND timestamp < start_date AND timestamp >= start_date - locf_prev ORDER BY timestamp DESC LIMIT 1 )) AS gapfilled FROM mine_data MT, JSONB_EACH(MT.values) AS jsondata WHERE MT.serial = $1 AND MT.timestamp >= start_date AND MT.timestamp <= end_date GROUP BY ts, jsondata.key, serial ORDER BY ts ASC, jsondata.key ASC ) sourcedata GROUP BY ts, serial ORDER BY ts ASC; $$ LANGUAGE SQL STABLE; SELECT * FROM mine_data_gapfill('123', '2020-01-01', '2020-01-06', '1 DAY');You can find this code snippet on GitHub too.RoadmapWe","128":"need to start looking into thetimescaledb-toolkitextension, which is bundled in thetimescaledb-haDocker image. It promises to \u201cease all things analytics when using TimescaleDB, with a particular focus on developer ergonomics and performance,\u201d which is music to our ears.\u201cHonestly, theTimescaleDocshad most of the resources we needed to make a decision between switching to TimescaleDB or continuing to use plain PostgreSQL (this article in particular)\u201dAnother thing on our backlog is to investigate using Hasura\u2019s streaming subscriptions as a Kafka alternative for specific workloads, such as new data being added to a hypertable.Advice & ResourcesHonestly, theTimescaleDocshad most of the resources we needed to make a decision between switching to TimescaleDB or continuing to use plain PostgreSQL (this article in particular). But don\u2019t get too swayed or caught up in all the articles claiming outstanding performance improvements: run your own tests and draw your own conclusions.We started by converting some of our existing fact tables and got improvements ranging from modest to outstanding. It all depends on your use cases, implementations, and expectations. Some of your existing structures may not be compatible right out of the box, and not everything needs to become a hypertable either! Make sure to consider TimescaleDB\u2019s rich API ecosystem in your decision matrix.Sign up for our newsletterfor more Developer Q&As, technical articles, tips, and tutorials to do more with your data\u2014delivered straight to your inbox twice a month.We\u2019d like to thank Jean-Fran\u00e7ois and all of the folks at Newtrax for sharing their story on how they\u2019re bringing digital transformation to a conservative industry\u2014all while saving lives along the way, thanks to TimescaleDB and hypertables.We\u2019re always keen to feature new community projects and stories on our blog. If you have a story or project you\u2019d like to share, reach out on Slack (@Ana Tavares), and we\u2019ll go from there.The open-source relational database for time-series and analytics.Try Timescale for free"},"url":{"0":"https:\/\/www.timescale.com\/blog\/how-to-build-a-weather-station-with-elixir-nerves-and-timescaledb\/","1":"https:\/\/www.timescale.com\/blog\/how-to-build-a-weather-station-with-elixir-nerves-and-timescaledb\/","2":"https:\/\/www.timescale.com\/blog\/how-to-build-a-weather-station-with-elixir-nerves-and-timescaledb\/","3":"https:\/\/www.timescale.com\/blog\/cloudquery-on-using-postgresql-for-cloud-assets-visibility\/","4":"https:\/\/www.timescale.com\/blog\/cloudquery-on-using-postgresql-for-cloud-assets-visibility\/","5":"https:\/\/www.timescale.com\/blog\/cloudquery-on-using-postgresql-for-cloud-assets-visibility\/","6":"https:\/\/www.timescale.com\/blog\/cloudquery-on-using-postgresql-for-cloud-assets-visibility\/","7":"https:\/\/www.timescale.com\/blog\/how-a-data-scientist-is-building-a-time-series-forecasting-pipeline-using-timescaledb-and-helping-others-perform-time-series-engineering-directly-in-the-database\/","8":"https:\/\/www.timescale.com\/blog\/how-a-data-scientist-is-building-a-time-series-forecasting-pipeline-using-timescaledb-and-helping-others-perform-time-series-engineering-directly-in-the-database\/","9":"https:\/\/www.timescale.com\/blog\/how-a-data-scientist-is-building-a-time-series-forecasting-pipeline-using-timescaledb-and-helping-others-perform-time-series-engineering-directly-in-the-database\/","10":"https:\/\/www.timescale.com\/blog\/how-a-data-scientist-is-building-a-time-series-forecasting-pipeline-using-timescaledb-and-helping-others-perform-time-series-engineering-directly-in-the-database\/","11":"https:\/\/www.timescale.com\/blog\/how-a-data-scientist-is-building-a-time-series-forecasting-pipeline-using-timescaledb-and-helping-others-perform-time-series-engineering-directly-in-the-database\/","12":"https:\/\/www.timescale.com\/blog\/how-conserv-safeguards-history-building-an-environmental-monitoring-and-preventative-analytics-iot-platform\/","13":"https:\/\/www.timescale.com\/blog\/how-conserv-safeguards-history-building-an-environmental-monitoring-and-preventative-analytics-iot-platform\/","14":"https:\/\/www.timescale.com\/blog\/how-conserv-safeguards-history-building-an-environmental-monitoring-and-preventative-analytics-iot-platform\/","15":"https:\/\/www.timescale.com\/blog\/how-conserv-safeguards-history-building-an-environmental-monitoring-and-preventative-analytics-iot-platform\/","16":"https:\/\/www.timescale.com\/blog\/how-conserv-safeguards-history-building-an-environmental-monitoring-and-preventative-analytics-iot-platform\/","17":"https:\/\/www.timescale.com\/blog\/how-messari-uses-data-to-open-the-cryptoeconomy-to-everyone\/","18":"https:\/\/www.timescale.com\/blog\/how-messari-uses-data-to-open-the-cryptoeconomy-to-everyone\/","19":"https:\/\/www.timescale.com\/blog\/how-messari-uses-data-to-open-the-cryptoeconomy-to-everyone\/","20":"https:\/\/www.timescale.com\/blog\/how-messari-uses-data-to-open-the-cryptoeconomy-to-everyone\/","21":"https:\/\/www.timescale.com\/blog\/how-messari-uses-data-to-open-the-cryptoeconomy-to-everyone\/","22":"https:\/\/www.timescale.com\/blog\/how-messari-uses-data-to-open-the-cryptoeconomy-to-everyone\/","23":"https:\/\/www.timescale.com\/blog\/wsprdaemon-combines-timescaledb-grafana-analyze-radio\/","24":"https:\/\/www.timescale.com\/blog\/wsprdaemon-combines-timescaledb-grafana-analyze-radio\/","25":"https:\/\/www.timescale.com\/blog\/wsprdaemon-combines-timescaledb-grafana-analyze-radio\/","26":"https:\/\/www.timescale.com\/blog\/wsprdaemon-combines-timescaledb-grafana-analyze-radio\/","27":"https:\/\/www.timescale.com\/blog\/wsprdaemon-combines-timescaledb-grafana-analyze-radio\/","28":"https:\/\/www.timescale.com\/blog\/wsprdaemon-combines-timescaledb-grafana-analyze-radio\/","29":"https:\/\/www.timescale.com\/blog\/how-ndustrial-is-providing-fast-real-time-queries-and-safely-storing-client-data-with-97-compression\/","30":"https:\/\/www.timescale.com\/blog\/how-ndustrial-is-providing-fast-real-time-queries-and-safely-storing-client-data-with-97-compression\/","31":"https:\/\/www.timescale.com\/blog\/how-ndustrial-is-providing-fast-real-time-queries-and-safely-storing-client-data-with-97-compression\/","32":"https:\/\/www.timescale.com\/blog\/how-ndustrial-is-providing-fast-real-time-queries-and-safely-storing-client-data-with-97-compression\/","33":"https:\/\/www.timescale.com\/blog\/how-ndustrial-is-providing-fast-real-time-queries-and-safely-storing-client-data-with-97-compression\/","34":"https:\/\/www.timescale.com\/blog\/how-ndustrial-is-providing-fast-real-time-queries-and-safely-storing-client-data-with-97-compression\/","35":"https:\/\/www.timescale.com\/blog\/how-ndustrial-is-providing-fast-real-time-queries-and-safely-storing-client-data-with-97-compression\/","36":"https:\/\/www.timescale.com\/blog\/how-ndustrial-is-providing-fast-real-time-queries-and-safely-storing-client-data-with-97-compression\/","37":"https:\/\/www.timescale.com\/blog\/how-ndustrial-is-providing-fast-real-time-queries-and-safely-storing-client-data-with-97-compression\/","38":"https:\/\/www.timescale.com\/blog\/how-ndustrial-is-providing-fast-real-time-queries-and-safely-storing-client-data-with-97-compression\/","39":"https:\/\/www.timescale.com\/blog\/how-i-power-a-successful-crypto-trading-bot-with-timescaledb\/","40":"https:\/\/www.timescale.com\/blog\/how-i-power-a-successful-crypto-trading-bot-with-timescaledb\/","41":"https:\/\/www.timescale.com\/blog\/how-i-power-a-successful-crypto-trading-bot-with-timescaledb\/","42":"https:\/\/www.timescale.com\/blog\/how-i-power-a-successful-crypto-trading-bot-with-timescaledb\/","43":"https:\/\/www.timescale.com\/blog\/how-i-power-a-successful-crypto-trading-bot-with-timescaledb\/","44":"https:\/\/www.timescale.com\/blog\/using-iot-sensors-timescaledb-and-grafana-to-control-the-temperature-of-the-nuclear-fusion-experiment-in-the-max-planck-institute\/","45":"https:\/\/www.timescale.com\/blog\/using-iot-sensors-timescaledb-and-grafana-to-control-the-temperature-of-the-nuclear-fusion-experiment-in-the-max-planck-institute\/","46":"https:\/\/www.timescale.com\/blog\/using-iot-sensors-timescaledb-and-grafana-to-control-the-temperature-of-the-nuclear-fusion-experiment-in-the-max-planck-institute\/","47":"https:\/\/www.timescale.com\/blog\/using-iot-sensors-timescaledb-and-grafana-to-control-the-temperature-of-the-nuclear-fusion-experiment-in-the-max-planck-institute\/","48":"https:\/\/www.timescale.com\/blog\/using-iot-sensors-timescaledb-and-grafana-to-control-the-temperature-of-the-nuclear-fusion-experiment-in-the-max-planck-institute\/","49":"https:\/\/www.timescale.com\/blog\/using-iot-sensors-timescaledb-and-grafana-to-control-the-temperature-of-the-nuclear-fusion-experiment-in-the-max-planck-institute\/","50":"https:\/\/www.timescale.com\/blog\/using-iot-sensors-timescaledb-and-grafana-to-control-the-temperature-of-the-nuclear-fusion-experiment-in-the-max-planck-institute\/","51":"https:\/\/www.timescale.com\/blog\/how-trading-strategy-built-a-data-stack-for-crypto-quant-trading\/","52":"https:\/\/www.timescale.com\/blog\/how-trading-strategy-built-a-data-stack-for-crypto-quant-trading\/","53":"https:\/\/www.timescale.com\/blog\/how-trading-strategy-built-a-data-stack-for-crypto-quant-trading\/","54":"https:\/\/www.timescale.com\/blog\/automated-mocking-using-api-traffic-speedscales-story\/","55":"https:\/\/www.timescale.com\/blog\/automated-mocking-using-api-traffic-speedscales-story\/","56":"https:\/\/www.timescale.com\/blog\/automated-mocking-using-api-traffic-speedscales-story\/","57":"https:\/\/www.timescale.com\/blog\/automated-mocking-using-api-traffic-speedscales-story\/","58":"https:\/\/www.timescale.com\/blog\/how-nlp-cloud-monitors-their-language-ai-api\/","59":"https:\/\/www.timescale.com\/blog\/how-nlp-cloud-monitors-their-language-ai-api\/","60":"https:\/\/www.timescale.com\/blog\/how-nlp-cloud-monitors-their-language-ai-api\/","61":"https:\/\/www.timescale.com\/blog\/how-nlp-cloud-monitors-their-language-ai-api\/","62":"https:\/\/www.timescale.com\/blog\/visualizing-iot-data-at-scale-with-hopara-and-timescaledb\/","63":"https:\/\/www.timescale.com\/blog\/visualizing-iot-data-at-scale-with-hopara-and-timescaledb\/","64":"https:\/\/www.timescale.com\/blog\/visualizing-iot-data-at-scale-with-hopara-and-timescaledb\/","65":"https:\/\/www.timescale.com\/blog\/visualizing-iot-data-at-scale-with-hopara-and-timescaledb\/","66":"https:\/\/www.timescale.com\/blog\/visualizing-iot-data-at-scale-with-hopara-and-timescaledb\/","67":"https:\/\/www.timescale.com\/blog\/high-compression-ratio-and-speedy-queries-on-historical-data-while-revolutionizing-the-battery-market\/","68":"https:\/\/www.timescale.com\/blog\/high-compression-ratio-and-speedy-queries-on-historical-data-while-revolutionizing-the-battery-market\/","69":"https:\/\/www.timescale.com\/blog\/high-compression-ratio-and-speedy-queries-on-historical-data-while-revolutionizing-the-battery-market\/","70":"https:\/\/www.timescale.com\/blog\/high-compression-ratio-and-speedy-queries-on-historical-data-while-revolutionizing-the-battery-market\/","71":"https:\/\/www.timescale.com\/blog\/density-measures-large-real-estate-portfolios-using-timescaledb\/","72":"https:\/\/www.timescale.com\/blog\/density-measures-large-real-estate-portfolios-using-timescaledb\/","73":"https:\/\/www.timescale.com\/blog\/density-measures-large-real-estate-portfolios-using-timescaledb\/","74":"https:\/\/www.timescale.com\/blog\/density-measures-large-real-estate-portfolios-using-timescaledb\/","75":"https:\/\/www.timescale.com\/blog\/density-measures-large-real-estate-portfolios-using-timescaledb\/","76":"https:\/\/www.timescale.com\/blog\/density-measures-large-real-estate-portfolios-using-timescaledb\/","77":"https:\/\/www.timescale.com\/blog\/density-measures-large-real-estate-portfolios-using-timescaledb\/","78":"https:\/\/www.timescale.com\/blog\/density-measures-large-real-estate-portfolios-using-timescaledb\/","79":"https:\/\/www.timescale.com\/blog\/how-meter-group-brings-a-data-driven-approach-to-the-cannabis-production-industry\/","80":"https:\/\/www.timescale.com\/blog\/how-meter-group-brings-a-data-driven-approach-to-the-cannabis-production-industry\/","81":"https:\/\/www.timescale.com\/blog\/how-meter-group-brings-a-data-driven-approach-to-the-cannabis-production-industry\/","82":"https:\/\/www.timescale.com\/blog\/how-meter-group-brings-a-data-driven-approach-to-the-cannabis-production-industry\/","83":"https:\/\/www.timescale.com\/blog\/how-meter-group-brings-a-data-driven-approach-to-the-cannabis-production-industry\/","84":"https:\/\/www.timescale.com\/blog\/how-meter-group-brings-a-data-driven-approach-to-the-cannabis-production-industry\/","85":"https:\/\/www.timescale.com\/blog\/how-meter-group-brings-a-data-driven-approach-to-the-cannabis-production-industry\/","86":"https:\/\/www.timescale.com\/blog\/how-meter-group-brings-a-data-driven-approach-to-the-cannabis-production-industry\/","87":"https:\/\/www.timescale.com\/blog\/how-meter-group-brings-a-data-driven-approach-to-the-cannabis-production-industry\/","88":"https:\/\/www.timescale.com\/blog\/how-flowkey-solved-its-time-series-data-problem-by-migrating-from-aws-redshift-to-timescale\/","89":"https:\/\/www.timescale.com\/blog\/how-flowkey-solved-its-time-series-data-problem-by-migrating-from-aws-redshift-to-timescale\/","90":"https:\/\/www.timescale.com\/blog\/how-flowkey-solved-its-time-series-data-problem-by-migrating-from-aws-redshift-to-timescale\/","91":"https:\/\/www.timescale.com\/blog\/how-flowkey-solved-its-time-series-data-problem-by-migrating-from-aws-redshift-to-timescale\/","92":"https:\/\/www.timescale.com\/blog\/how-united-manufacturing-hub-is-introducing-open-source-to-manufacturing-and-using-time-series-data-for-predictive-maintenance\/","93":"https:\/\/www.timescale.com\/blog\/how-united-manufacturing-hub-is-introducing-open-source-to-manufacturing-and-using-time-series-data-for-predictive-maintenance\/","94":"https:\/\/www.timescale.com\/blog\/how-united-manufacturing-hub-is-introducing-open-source-to-manufacturing-and-using-time-series-data-for-predictive-maintenance\/","95":"https:\/\/www.timescale.com\/blog\/how-united-manufacturing-hub-is-introducing-open-source-to-manufacturing-and-using-time-series-data-for-predictive-maintenance\/","96":"https:\/\/www.timescale.com\/blog\/how-united-manufacturing-hub-is-introducing-open-source-to-manufacturing-and-using-time-series-data-for-predictive-maintenance\/","97":"https:\/\/www.timescale.com\/blog\/how-edeva-uses-continuous-aggregations-and-iot-to-build-smarter-cities\/","98":"https:\/\/www.timescale.com\/blog\/how-edeva-uses-continuous-aggregations-and-iot-to-build-smarter-cities\/","99":"https:\/\/www.timescale.com\/blog\/how-edeva-uses-continuous-aggregations-and-iot-to-build-smarter-cities\/","100":"https:\/\/www.timescale.com\/blog\/how-edeva-uses-continuous-aggregations-and-iot-to-build-smarter-cities\/","101":"https:\/\/www.timescale.com\/blog\/how-edeva-uses-continuous-aggregations-and-iot-to-build-smarter-cities\/","102":"https:\/\/www.timescale.com\/blog\/how-edeva-uses-continuous-aggregations-and-iot-to-build-smarter-cities\/","103":"https:\/\/www.timescale.com\/blog\/how-everactive-powers-a-dense-sensor-network-with-virtually-no-power-at-all\/","104":"https:\/\/www.timescale.com\/blog\/how-everactive-powers-a-dense-sensor-network-with-virtually-no-power-at-all\/","105":"https:\/\/www.timescale.com\/blog\/how-everactive-powers-a-dense-sensor-network-with-virtually-no-power-at-all\/","106":"https:\/\/www.timescale.com\/blog\/how-everactive-powers-a-dense-sensor-network-with-virtually-no-power-at-all\/","107":"https:\/\/www.timescale.com\/blog\/how-everactive-powers-a-dense-sensor-network-with-virtually-no-power-at-all\/","108":"https:\/\/www.timescale.com\/blog\/how-everactive-powers-a-dense-sensor-network-with-virtually-no-power-at-all\/","109":"https:\/\/www.timescale.com\/blog\/how-to-use-wide-table-model-to-reduce-query-cost-in-timescaledb\/","110":"https:\/\/www.timescale.com\/blog\/how-to-use-wide-table-model-to-reduce-query-cost-in-timescaledb\/","111":"https:\/\/www.timescale.com\/blog\/how-to-use-wide-table-model-to-reduce-query-cost-in-timescaledb\/","112":"https:\/\/www.timescale.com\/blog\/how-to-use-wide-table-model-to-reduce-query-cost-in-timescaledb\/","113":"https:\/\/www.timescale.com\/blog\/how-to-use-wide-table-model-to-reduce-query-cost-in-timescaledb\/","114":"https:\/\/www.timescale.com\/blog\/processing-and-protecting-hundreds-of-terabytes-of-blockchain-data-zondaxs-story\/","115":"https:\/\/www.timescale.com\/blog\/processing-and-protecting-hundreds-of-terabytes-of-blockchain-data-zondaxs-story\/","116":"https:\/\/www.timescale.com\/blog\/processing-and-protecting-hundreds-of-terabytes-of-blockchain-data-zondaxs-story\/","117":"https:\/\/www.timescale.com\/blog\/processing-and-protecting-hundreds-of-terabytes-of-blockchain-data-zondaxs-story\/","118":"https:\/\/www.timescale.com\/blog\/how-flightaware-fuels-flight-prediction-models-with-timescaledb-and-grafana\/","119":"https:\/\/www.timescale.com\/blog\/how-flightaware-fuels-flight-prediction-models-with-timescaledb-and-grafana\/","120":"https:\/\/www.timescale.com\/blog\/how-flightaware-fuels-flight-prediction-models-with-timescaledb-and-grafana\/","121":"https:\/\/www.timescale.com\/blog\/how-flightaware-fuels-flight-prediction-models-with-timescaledb-and-grafana\/","122":"https:\/\/www.timescale.com\/blog\/how-flightaware-fuels-flight-prediction-models-with-timescaledb-and-grafana\/","123":"https:\/\/www.timescale.com\/blog\/how-flightaware-fuels-flight-prediction-models-with-timescaledb-and-grafana\/","124":"https:\/\/www.timescale.com\/blog\/how-newtrax-is-using-timescaledb-and-hypertables-to-save-lives\/","125":"https:\/\/www.timescale.com\/blog\/how-newtrax-is-using-timescaledb-and-hypertables-to-save-lives\/","126":"https:\/\/www.timescale.com\/blog\/how-newtrax-is-using-timescaledb-and-hypertables-to-save-lives\/","127":"https:\/\/www.timescale.com\/blog\/how-newtrax-is-using-timescaledb-and-hypertables-to-save-lives\/","128":"https:\/\/www.timescale.com\/blog\/how-newtrax-is-using-timescaledb-and-hypertables-to-save-lives\/"},"tokens":{"0":501,"1":512,"2":374,"3":519,"4":511,"5":571,"6":81,"7":468,"8":477,"9":470,"10":642,"11":356,"12":485,"13":495,"14":541,"15":510,"16":82,"17":502,"18":500,"19":506,"20":573,"21":512,"22":258,"23":526,"24":540,"25":490,"26":547,"27":509,"28":14,"29":464,"30":475,"31":485,"32":594,"33":464,"34":477,"35":470,"36":435,"37":446,"38":207,"39":500,"40":505,"41":615,"42":587,"43":443,"44":482,"45":450,"46":510,"47":482,"48":556,"49":470,"50":106,"51":484,"52":562,"53":466,"54":474,"55":512,"56":467,"57":464,"58":536,"59":514,"60":503,"61":46,"62":506,"63":489,"64":500,"65":523,"66":169,"67":484,"68":485,"69":502,"70":524,"71":472,"72":474,"73":487,"74":494,"75":552,"76":713,"77":452,"78":321,"79":501,"80":504,"81":470,"82":477,"83":470,"84":492,"85":485,"86":485,"87":109,"88":509,"89":697,"90":528,"91":64,"92":508,"93":541,"94":468,"95":502,"96":146,"97":508,"98":462,"99":472,"100":502,"101":596,"102":84,"103":501,"104":474,"105":507,"106":519,"107":498,"108":167,"109":500,"110":483,"111":519,"112":672,"113":380,"114":487,"115":471,"116":505,"117":126,"118":527,"119":499,"120":546,"121":543,"122":591,"123":312,"124":467,"125":551,"126":519,"127":738,"128":413},"embeddings":{"0":[-0.0156464297,0.0088639501,0.0087152738,-0.0263794549,0.0457640365,0.0017416388,-0.0100108832,0.0148110092,-0.0559306778,-0.0042337398,0.0462737828,0.000635415,-0.0329353809,-0.0279370192,0.0470384061,0.0440082401,0.0096356515,-0.0194553789,-0.0434418507,0.0310946237,-0.0281494129,-0.017671261,0.0438100025,-0.0411479846,-0.0018354466,-0.0241139084,-0.0296220183,0.0679663941,0.0459339544,-0.0323406756,-0.0021009403,-0.0246236566,-0.0160570592,0.0066762818,0.0209138244,0.0101807993,0.0399585739,-0.0496437848,0.0008544473,0.0383160524,-0.0154198753,-0.0468684919,-0.0124180261,0.0367301702,-0.0135153998,0.0001363974,-0.0169915985,0.0200642459,0.0376363881,0.0533819348,-0.0288715567,0.0213669334,-0.0061948532,-0.0350310095,-0.0099754836,-0.0281777326,-0.0562421903,0.0382877328,-0.008524118,0.0023823637,0.061792776,-0.0407515168,0.0140180681,0.0356823541,0.000035012,-0.0050550005,-0.0072993073,-0.0047965865,-0.0089276684,0.0208005477,0.0715346262,0.025926346,0.0246661361,-0.0279370192,0.0101666395,-0.0316326916,-0.0387691632,0.009940085,-0.0109737404,-0.0331619345,-0.0295370612,-0.0221173968,-0.0381461382,0.007055053,-0.0145561351,-0.0787277371,-0.0316893309,-0.0379479006,-0.0117525216,-0.002285016,0.0203615986,0.0471233651,0.0222448334,0.0040815235,0.0496437848,0.0337566398,-0.0153065976,-0.0105843497,-0.0095931729,-0.0179686155,0.0411479846,-0.0186341181,-0.0328787416,-0.0424223542,0.0372116007,0.0090338662,0.0318592452,0.0585643724,-0.0068072588,-0.0080285296,-0.117808409,0.0187615566,-0.0227121022,-0.0192288253,-0.0094728153,0.0146410931,-0.0188889932,-0.0608299188,0.0208713468,-0.0323689952,0.0055859876,0.0360788256,-0.0053558932,-0.0082763238,0.0023788237,-0.0372116007,-0.0315760523,-0.0246378165,-0.0039328467,-0.0119932359,0.0541182384,-0.0234484058,0.0462454669,-0.0135153998,-0.0136074377,-0.0157455467,-0.024581179,-0.0490773991,0.0179119762,0.0102445176,-0.0214094128,-0.0014531356,0.0307547916,0.0012602102,-0.0013487081,-0.0065346854,-0.0118445596,0.0342097506,-0.0104285935,0.0147968493,0.0028195432,0.0036319541,-0.0247510932,0.0157597065,0.059300676,0.0255440362,0.0488508418,0.0301317666,-0.0149526056,-0.0374947935,0.0310096666,0.0192288253,0.030273363,-0.0202200022,-0.0598670617,0.0100675216,-0.0234625638,-0.015802186,-0.0270166397,0.0339831971,-0.0462171473,-0.0278803799,-0.0074409037,0.0488508418,0.0167084038,-0.0066904416,0.0436400883,-0.0242979843,0.0343230292,-0.0153207574,-0.0727806762,-0.0115118073,-0.0144357784,0.0315477327,-0.0152499592,0.015533152,-0.0131330891,-0.0122551899,-0.0046408302,-0.0001688098,-0.0579979867,0.0519659705,-0.0104073538,0.0280078165,0.0422807597,-0.0372116007,0.0413179025,0.0218058843,-0.0173455887,0.0246661361,0.0191863459,0.061792776,0.0785578191,-0.0462737828,0.0602635331,0.0057594436,0.0118870391,-0.0057240445,-0.0324822702,0.0051647378,0.0382594131,0.015802186,0.0209138244,-0.0173455887,-0.0420258865,0.0172747914,-0.0519376509,-0.0089913867,-0.0472083241,0.0463587418,-0.013586198,0.0601502545,0.0290556327,-0.0262944978,0.0127436984,0.0005544394,0.0083117234,-0.0547979027,0.0551660545,-0.0156464297,0.019625295,-0.0215368494,0.0002599626,-0.0402700864,0.0020301419,0.0312645398,0.0014734901,-0.0069346959,-0.007724097,0.0125383828,-0.0122197904,0.0151933208,-0.0238873549,0.0175438244,-0.011540127,0.0057983827,-0.0602068938,-0.0600369796,0.0628122762,0.0170765556,0.0615662225,0.0376930274,0.0120286355,-0.0139897484,-0.0256997924,-0.0244962201,-0.0320008434,-0.0133525636,-0.00634353,-0.0472932793,0.0182659682,-0.0389107578,-0.0160995387,-0.0122693498,-0.0153065976,-0.016326094,-0.027073279,-0.0069594751,0.0007504622,-0.0091683827,0.0193562619,0.0141313458,0.0194695387,-0.0300468095,-0.026804246,-0.0209421441,-0.0078444546,0.0381461382,-0.0172747914,-0.0162977744,-0.0140463877,-0.015448194,-0.0472649597,-0.0073701055,-0.0099188453,0.0329637006,0.0118233198,0.0296220183,0.0303016827,-0.0427055508,0.0210271031,0.0098692868,0.0191438664,0.0190305896,0.0344363041,-0.0150092449,0.0249918085,0.0206164718,0.0227404218,-0.0075329416,0.0157597065,0.0046054311,0.0173880681,0.0075612608,0.014825169,0.00506208,0.026804246,0.0150517235,-0.0246236566,-0.0229669772,0.032142438,-0.011894118,0.0073701055,-0.0089135086,0.0240714308,-0.0092816604,0.0339265577,-0.0013796823,0.0163827315,-0.0411763042,-0.0001639424,-0.0266768094,0.0196111351,-0.0023204151,-0.0190589093,-0.0063081305,0.0382027775,-0.0040532039,-0.0255298764,-0.013225127,0.0056780255,-0.0258838665,-0.0065063662,0.030528238,0.0362204239,-0.0411763042,-0.0000492823,-0.0256006736,0.0121489922,0.021749245,-0.0017425237,-0.0463587418,-0.0542031974,0.0032390233,0.0342380702,0.0058267019,-0.0038443489,-0.0417426936,-0.0049842019,0.0323973149,-0.0268325657,0.0346911773,0.009140064,-0.0497004241,-0.0426489115,-0.0317459702,0.0113702109,0.0203332789,-0.0374098346,-0.0193279423,-0.0096144127,0.0558173992,0.0518526919,0.0162694547,0.0074833827,0.0078232149,-0.0185916405,0.0224005897,-0.0657574832,-0.0603768118,0.0115118073,0.031151263,-0.0080993287,-0.018903153,-0.0366168916,0.0144924168,0.0533252992,-0.0081347274,-0.0023699738,0.0702885762,0.0343796648,0.035965547,-0.0055647483,-0.0182659682,0.0414028615,0.0155189922,0.0130339712,-0.00887811,-0.0340115167,0.0034779676,0.0149809252,-0.0664937869,-0.0457640365,-0.0051682778,-0.0103577953,0.0236749593,0.004131082,0.0445179865,0.0774816871,-0.0175296646,0.0211403798,0.0303016827,-0.0083896015,0.0384576507,0.0214094128,0.0141667444,-0.0289140362,0.0158729851,-0.0446312651,-0.0507482402,-0.0461605079,-0.0338415988,0.0308114309,-0.0027859141,-0.0050903996,-0.0441498347,-0.0117808413,0.0192996226,-0.0152357994,0.0588475652,-0.0683628619,-0.0350026898,0.0200642459,-0.0483694151,-0.0341531113,0.0174305476,0.0201208834,-0.0490207598,0.047944624,-0.0669468939,-0.0517960526,-0.0104002738,0.0209279843,-0.0027593647,0.0036531936,-0.011186135,0.0131543288,0.01651017,0.0356257185,0.0087152738,0.0136074377,-0.0160004217,-0.0323406756,0.0343796648,0.0006885137,-0.0156322699,-0.007147091,-0.0540332794,-0.0301600862,-0.0125950221,0.0045063132,-0.0331052952,-0.0275688674,0.0339548774,-0.0169207994,0.0009274581,0.0694389939,0.0338132791,0.0307547916,-0.0102161979,-0.0564404242,0.0470384061,-0.0760657191,0.004262059,-0.016071219,-0.0049275635,0.0176429432,0.0265635308,0.0914714336,-0.0381744578,0.0193562619,-0.0093666185,-0.0164393708,0.0022142176,-0.0685327798,0.0217917245,-0.0402700864,0.0305848755,-0.0195120182,-0.0214943718,-0.0123543078,0.0065984037,-0.0359089114,-0.0065807044,0.0257705897,0.0082904836,0.0064886664,0.0021646589,0.0088639501,0.0241422281,-0.0182659682,0.0191013888,-0.00887811,-0.0172889512,0.0250767656,-0.030273363,-0.0200925637,-0.0173314288,0.0076037399,-0.0157738663,0.0196111351,-0.0276538245,0.0200500861,0.0540332794,-0.0181668494,0.0440082401,-0.0076462189,-0.0131472489,-0.0188889932,-0.0008854215,0.0231510513,-0.0036390338,0.014202144,0.0240431111,-0.0206447914,0.0111578163,0.0048461454,0.0184358843,-0.000930998,0.0121843917,-0.0291689094,-0.0141950641,-0.0579979867,0.0373248756,0.0219191611,0.031519413,-0.0509181544,0.0019699633,-0.0086940341,0.0140180681,0.0137136355,-0.0032160138,0.0058019226,0.014740211,-0.046613615,-0.003548766,-0.0427055508,-0.0567519367,-0.0152357994,0.0103436355,0.0008358627,0.0322840363,0.0050019016,0.0542031974,-0.0401001722,0.0019363342,-0.003502747,-0.0207863878,-0.0159154627,0.0249351691,0.0331619345,-0.0498420186,0.0451126918,-0.0203899182,0.0048921644,0.0404400043,0.0104639921,-0.0250767656,0.0054373113,0.0077594961,-0.0032390233,-0.0011336581,0.0201350432,0.0017991624,-0.0100604417,0.0542031974,0.0069417758,0.0099825636,-0.0209987834,0.0233634468,0.0299618505,-0.0053912923,-0.0275971871,0.0038372693,0.0210129432,-0.0219758004,-0.0270166397,-0.0279794969,-0.0213102959,0.0270874389,-0.0272573549,-0.0235900022,-0.0249634888,0.0296220183,-0.0671734512,0.0132392868,0.0408364721,-0.0123897064,0.0139968283,-0.0312645398,0.0108958622,-0.0108675426,-0.0013318935,0.0320008434,-0.0035133669,0.0420825221,0.0118516395,-0.014825169,-0.0395621024,0.0200925637,0.0000344312,0.004573572,-0.0096073328,0.014287102,0.0195544977,-0.0031062765,0.0473782383,0.0075612608,-0.0207580682,-0.0322557166,-0.0150517235,-0.0148818074,-0.0420825221,-0.0370133631,-0.0310096666,0.0076532988,0.0464153811,-0.0095931729,0.0154340351,-0.0064603472,-0.0142517025,-0.0116746435,-0.0162411351,-0.0208713468,0.0283334889,-0.0076037399,0.01056311,-0.0153065976,-0.0009646272,-0.003509827,0.0070054941,-0.0123259882,0.0195544977,-0.0151366815,-0.0314910933,-0.0105701899,0.0083825216,0.0072249691,-0.0223014727,-0.0190305896,0.0308680702,-0.0102445176,0.0158588253,0.0125737824,0.0093170591,0.0022584666,-0.016949119,0.0602635331,0.0228395388,-0.0026531671,-0.0092533408,0.0040496644,0.0344646238,0.0385709256,0.0178553369,-0.013579119,-0.0261529014,-0.0017531435,-0.0366452113,0.0090834247,-0.0451693311,0.0236324798,-0.04349849,0.0033735402,-0.0119153578,0.0228820182,0.0398736149,0.0032036242,0.0085949162,0.0353991613,0.0008124108,0.0117737614,0.0308114309,0.0273706317,0.0434418507,0.0239156745,-0.0021221798,-0.0115118073,0.0207297485,0.019625295,0.0074975425,0.0360505059,-0.0263086576,-0.0081488872,0.0034514184,-0.001352248,-0.0009212632,-0.0044319751,0.0124605047,0.0031983142,0.0209279843,0.0107825845,0.0178694967,-0.0052319961,-0.0125242239,-0.0217634048,-0.002242537,0.019526178,-0.0072497483,-0.1034221947,-0.0018708457,0.0163544137,-0.0530987419,0.0057452838,-0.0182234887,-0.0250767656,-0.0136782359,0.003460268,0.0298202541,-0.0055824476,-0.0465003401,0.0073488662,-0.0131260091,0.0206589513,-0.0293671452,-0.0076108198,0.0040956829,0.047321599,0.0055789081,-0.0076745385,-0.0761223584,0.0701186582,-0.020772228,-0.0360221863,0.0378346257,-0.0215368494,-0.0303866416,0.032227397,-0.0067400006,-0.0321990773,0.0073913452,-0.0004261174,0.0378346257,-0.0040178047,0.0156889092,-0.0002652725,-0.0365036167,-0.0037735507,-0.0125454627,-0.0342097506,-0.0348327756,-0.0231793709,-0.0104073538,0.0266768094,0.0322557166,-0.0287016407,-0.0233068075,0.0320008434,-0.0064709666,0.0101524796,-0.0415161364,0.0134233618,-0.012786177,0.0272290353,-0.0153490771,0.0053523532,-0.0154340351,0.0000379988,-0.0007075408,0.0246944558,-0.0109454207,0.0170623958,-0.0071577104,0.0172181521,0.0194695387,0.0282626916,0.0065382253,-0.0156605896,-0.0162411351,-0.0132746855,0.0252183639,-0.0379195809,0.0169632789,-0.0038195695,0.0376363881,-0.0345779024,-0.0116392449,0.0180110931,0.0032921222,0.0258413889,0.032765463,-0.0131118493,-0.0321707577,-0.0137490341,0.0288998764,-0.0198660102,0.006170074,-0.0045948112,-0.0340115167,-0.0724974871,-0.0286166817,-0.0205315147,-0.0345779024,-0.03976034,0.0418276489,0.024326304,-0.0202624798,-0.0690991655,-0.0084250001,0.0044107358,-0.0072214291,-0.0318592452,0.0039470065,-0.0089701479,-0.0041629416,0.0194129013,-0.0043151579,0.0243829433,-0.0116392449,-0.0092179421,0.0144074587,-0.0056497063,0.0086373957,0.0289565139,0.0289140362,0.0132746855,0.0392789096,-0.0187898744,-0.00210979,-0.0043647168,0.0224005897,0.0139968283,-0.016425211,-0.0161844976,0.0078940131,0.0313494988,-0.0094232569,-0.004131082,-0.0050089816,0.0010168409,0.0074692233,-0.0448861383,0.0362204239,0.0126445806,0.0125737824,0.0019894328,-0.0243546236,-0.00295229,-0.0147685306,-0.0078869332,-0.0557324402,0.0401284918,0.0366735309,0.0031965442,0.0387125239,0.0099896435,0.0085878363,0.0019699633,-0.0172606315,-0.0198376905,0.0037735507,-0.0210979003,-0.0127790971,-0.0600936189,0.0351442881,-0.0325955488,0.0141525846,-0.0076108198,0.0033912398,0.0212961361,-0.0600936189,-0.018025253,0.0209704638,0.0036248742,-0.0070054941,-0.0041204626,-0.0173314288,-0.0027363552,0.0217209253,0.01651017,-0.04474454,0.0040001054,0.0100462819,0.0283759683,-0.0231793709,-0.0295087416,-0.0171048753,-0.0233209673,0.0240006316,-0.0042868387,0.0091471439,0.0082126055,-0.0253316406,-0.0069488557,-0.0031434456,-0.006966555,0.0234200861,0.0153490771,0.0063152104,0.0000795928,-0.0370133631,0.0402417667,0.0160287414,0.0046797693,0.0114764087,0.0144994967,0.0064178682,0.0223439503,0.0464437008,0.0057240445,0.0175438244,-0.0355407596,0.032142438,0.0266060103,-0.0144145386,-0.0052072168,-0.0083683617,-0.0266343299,0.0074621434,-0.00843208,-0.0294804219,-0.0113206524,0.0398736149,0.0048992438,-0.0110445386,-0.0081205675,-0.0170623958,0.0567802563,-0.0188465137,-0.0105489502,0.0278662201,0.0191580262,0.0129844127,0.0317742862,-0.0090055466,0.0034124793,-0.0205456745,0.0284184478,0.0400718525,0.0006270077,0.0236749593,0.0167650431,-0.0476897508,0.0044602943,0.0097206095,-0.0050408407,0.0326521881,0.016156178,0.0317176506,-0.0048426054,0.0082055256,0.0213527754,-0.0040567438,0.0031381357,0.0295370612,0.0009956014,0.0302450433,0.0307547916,-0.0093666185,-0.017926136,0.0089135086,0.0118728792,0.0628122762,-0.0348327756,-0.0272290353,-0.0546279885,-0.0324822702,0.0000435299,0.0041629416,0.0046691494,0.0071789501,0.0246094968,-0.0440648757,-0.0241139084,-0.0393638685,0.0012168462,0.0211120602,0.0145136565,-0.0190164298,0.0037558512,0.0344079845,0.0238448754,0.0145844547,0.0144074587,0.0026036084,0.0081347274,0.0026089184,-0.0374098346,0.0147826904,0.0297636148,0.0481711812,0.04225244,-0.0223581102,-0.0047470275,-0.0138339922,-0.0255440362,0.0055505885,-0.0285175648,-0.0139118703,0.0314627737,-0.0131047694,-0.0000011201,0.00505854,-0.0085736774,0.0193137825,-0.0304715987,0.0048992438,-0.0123543078,0.011717123,0.0268467236,-0.0233776066,0.0001755577,0.0090834247,-0.0360788256,-0.0341814309,-0.0138835516,0.0499552973,0.0068461979,0.0012584402,-0.0072143492,0.0054302313,0.0041275425,0.0263936147,-0.0044496749,0.0527022742,-0.0038124898,-0.0360505059,-0.0191013888,-0.0232360102,-0.0008717044,0.010301156,-0.0304715987,0.0098126475,-0.0189739503,-0.0215793289,-0.0037912503,0.0372399166,0.0099330051,0.0080285296,-0.0028460927,-0.0153065976,0.0463021025,-0.0155756315,-0.0005650591,0.0023080253,0.0226554628,-0.0041063027,-0.036560256,0.0215510093,0.0346345417,-0.0234908834,-0.014287102,-0.00843208,0.0666070655,0.0301317666,-0.0076532988,-0.0247227754,-0.0031664551,0.0122127105,0.0352292471,0.0164393708,0.0106268283,0.0395904221,-0.0215793289,0.0244820602,-0.021480212,0.0004050992,-0.017572144,0.005947059,0.0106268283,-0.0217209253,0.0124109462,-0.0155614717,0.0034815075,-0.0248643719,0.0157738663,0.030358322,-0.0137985935,0.0075471015,-0.006966555,0.008347122,-0.0124605047,0.0248077326,-0.0326805077,-0.0041452418,-0.017926136,-0.0054868702,0.00169031,0.0110445386,0.0026690969,0.0006367425,0.0183226056,-0.0173880681,-0.0504933633,0.0076178997,0.0094444966,-0.0067364606,0.0160853788,-0.0212961361,-0.0314910933,-0.0245245397,0.0044001159,-0.0107259462,-0.0105206305,0.0182659682,0.0130056525,-0.0255015567,0.0259971451,-0.0093595386,-0.0069382358,0.0383443721,0.0152357994,-0.0002458029,-0.0154340351,-0.0394488275,-0.0045841914,0.0287724398,-0.0030177785,0.0101737194,-0.0012433956,0.0338132791,-0.0105418703,0.0043859561,0.032142438,0.0169774387,0.0164960101,-0.0000796481,0.0261670612,0.0333601721,-0.0032390233,0.0323689952,-0.012071114,-0.0073913452,-0.0029204309,-0.0141384257,-0.0120215556,0.0097560091,-0.0036319541,-0.0266484898,0.0059789186,0.0208288673,-0.0132322069,-0.0104073538,-0.0100887613,0.0074975425,0.0182234887,0.0099896435,-0.0052249162,-0.0074763028,0.0161986575,-0.0005827587,0.0108109042,-0.0018584561,0.0188748334,0.001095604,-0.0116675636,0.0094232569,0.0644547939,0.0163119342,0.0080993287,0.0050054416,0.0181102119,0.0092745805,-0.0052709351,0.0374381542,-0.0070515131,0.0092745805,-0.0150092449,0.0004889509,-0.0122127105,-0.0232784897,0.0054656304,-0.011901198,-0.0306415148,0.0113064926,-0.0153490771,-0.0067966389,0.0219191611,0.0269316826,-0.0092037823,-0.015448194,-0.0073701055,0.0032372533,0.0076886979,0.0020336818,-0.0227121022,0.0375231132,-0.0027929938,-0.0122127105,0.0117596015,0.0392505899,-0.0026761766,0.0159154627,-0.0184217244,-0.0257564299,-0.0062267128,0.0002247847,-0.0277529433,-0.0037947902,-0.0006575394,-0.0096356515,-0.0183934048,0.0062514921,0.0114622489,0.0119436774,-0.014910127,-0.036560256,-0.0047788867,-0.0107896645,0.015533152,-0.0237599183,-0.0137136355,0.0014903047,0.0455374829,0.0414878167,0.0082409251,0.0504933633,-0.0110232988,0.0060638767,0.003548766,0.0047753472,-0.0368434489,0.0031753047,0.0331902541,0.0038726684,-0.0007495772,-0.0551660545,-0.0140463877,0.0088143917,0.0002869545,0.006924076,0.0266060103,0.037183281,0.0097489292,0.0261245817,0.0465852991,0.0116817234,-0.0139543498,0.0000773804,-0.0418276489,-0.0075683407,-0.0145702949,0.0138552319,-0.008963068,0.0225705057,0.0029788394,0.0056213872,0.0060638767,0.0254449174,-0.0253882799,-0.0127649382,0.0019628836,-0.0034956674,-0.0161278583,0.0076178997,-0.0218483619,-0.0338699184,-0.010825064,0.0143012619,-0.0200500861,0.0149809252,0.0131047694,-0.0057134246,0.010648068,-0.007986051,-0.0012079964,0.0255581941,-0.0152357994,-0.0157597065,0.0246236566,-0.0088356305,0.0056957253,-0.0128498962,0.0037947902,-0.0244112629,-0.0109879002,0.000969937,0.0016487159,0.0004469144,-0.0182942878,0.000761967,0.0152499592,0.0239015147,0.022995295,-0.0109100221,0.0220324378,-0.0014575605,0.0364186577,0.0277246237,0.0091967024,-0.0215510093,0.0248643719,-0.0110516185,0.0131047694,-0.019526178,-0.0298485737,0.016949119,-0.030273363,-0.0068745171,-0.0270449594,0.0242130272,0.0549111813,-0.0054231514,-0.000888519,0.0146552529,-0.007816135,0.0352292471,0.0009478126,0.0170199163,0.0240714308,0.0292538684,-0.0129560931,-0.010740106,0.0009053336,-0.0117312819,0.0079223327,-0.0050019016,-0.0085736774,0.0000440554,0.0160995387,-0.0322840363,0.023604162,-0.0009380778,0.0449427776,0.0210271031,-0.0016283614,0.0141525846,0.0256997924,0.0024018332,-0.0031788447,0.0029770695,0.0019504938,0.0002153818,0.0049842019,0.0026425475,0.010648068,0.0115118073,0.0143862199,0.0030230884,0.0218908414,0.029027313,-0.0264219344,0.0031345957,-0.0318592452,-0.0258697085,0.0083329631,-0.0131189292,0.0064143282,0.0035363764,-0.0088143917,0.0338982381,-0.006078036,0.0141455056,0.0374947935,-0.0281494129,-0.0121277533,0.0397320203,0.0007761266,-0.010655148,0.0023593542,-0.0217634048,0.0083612818,0.0168924797,0.0039080675,0.0154340351,0.0124888243,0.0196111351,-0.0253882799,-0.0097489292,0.002704496,0.0011814471,0.0286450014,-0.0142658623,0.0050691599,0.0238165557,0.0231227335,-0.0380894989,-0.004570032,0.0047682673,0.0105277104,-0.0299335308,0.0240855906,0.01651017,0.0444613472,-0.0451693311,0.0205173548,-0.0115472069,0.0187615566,0.0250909254,-0.0007947112,0.0026036084,-0.0040956829,-0.016694244,0.0056603262,-0.0742532834,0.0380045399,-0.0233351272,0.0075046225,-0.0065346854,0.0079577314,0.0210979003,-0.0020566913,0.0084533198,-0.0101737194,-0.0117312819,-0.0024443122,-0.0119082779,-0.0224997066,0.0046337503,0.0030071589,-0.0280644558,-0.0282626916,0.0056213872,-0.0167933628,0.0080993287,-0.0066444227,-0.0078869332,-0.0009460426,-0.0175863039,0.0196677744,0.0065877843,-0.0009071035,0.0059541389,0.0146552529,-0.0101949591,-0.0257705897,0.0154198753,-0.0380894989,0.0058373217,0.0079718912,-0.0188889932,-0.0060709561,0.0004677114,-0.0214660522,0.0096144127,-0.0244395807,-0.0216642879,-0.015363236,-0.0148959672,-0.0402700864,-0.0178553369,0.0201775227,0.0222448334,-0.0369567238,-0.0181243718,0.0039151474,0.0043894961,0.0097984876,0.0195828173,0.0136428373,0.0197810512,0.0047611874,0.0191438664,-0.0138835516,0.0310946237,0.0142092239,-0.0000335462,-0.0290556327,0.0089772278,-0.0159154627,-0.0367584899,0.0218766816,0.039052356,0.0272007156,0.0010301156,-0.0244679004,0.0274414308,0.0285034049,-0.0129065346,0.0247794129,-0.0265352111,0.0178128593,0.021041261,0.0016248216,0.0440082401,0.0065028262,0.013402123,0.0305848755,0.0046939291,0.0003672663,0.0002070851,0.0282485317,0.0038691284,-0.0306698345,-0.0335017666,0.0166517664,-0.0024744014,0.0367584899,0.0269741621,0.0343230292,-0.0103365555,0.0444330275,0.0084533198,0.0172606315,0.044206474,0.0037275318,-0.0069134561,-0.0093878582,-0.0030301684,0.0052213762,-0.003085037,-0.0421391614,0.0510031134,0.0211545397,-0.0316610113,-0.0035399161,-0.008963068,0.0135720391,0.0141313458,0.0182234887,-0.0209563039,-0.0119578373,0.0079506515,-0.0125879422,0.0113206524,-0.0125242239,0.016071219,0.0047434876,0.0175296646,0.035342522,0.0066019436,-0.0755559728,0.0057311244,0.0228961781,0.0168075226,0.0394488275,-0.0233351272,0.0001806464,0.0016035821,-0.0254873969,0.0076320595,-0.0549111813,-0.0378629453,-0.0138056735,-0.0125737824,-0.0313211791,0.0033151314,0.0313494988,-0.0132676056,0.0067789396,-0.0024230727,0.0199792869,0.003504517,-0.0184500441,-0.0082338452,-0.0004531093],"1":[-0.0177845005,-0.0019238684,0.0256604943,-0.0325469747,0.0337236933,0.0195228346,0.0040182276,-0.0138531905,-0.0372805931,0.0090794554,0.0286691505,0.0136726703,-0.0029066962,-0.0390991569,0.0269441865,0.0102026872,0.0144415498,-0.0009025969,-0.0260349046,0.0147357294,-0.0255936347,0.0282947402,0.0181321669,-0.0209135041,0.0044996124,-0.0100957127,-0.0021027164,0.0773425177,0.0619382001,-0.0109448228,-0.0018987963,-0.0284284577,-0.0254866611,0.009166372,0.0367189758,0.0182658862,0.0518291183,-0.0276796371,-0.0036070445,0.0117203873,0.0087117311,-0.002122774,-0.013946793,0.0133718047,-0.0181455389,-0.005021113,-0.0134587223,0.0007989653,0.0212076828,0.0658962578,-0.0204588622,0.0058100494,-0.0196431819,-0.0042689489,-0.0091195712,-0.0269040726,-0.0306214336,0.0440734699,0.0328678973,-0.0152304862,0.0258209556,-0.0369329266,0.0193088874,0.0325469747,0.0002555268,0.0065956428,-0.008290519,0.02837497,-0.0257942118,0.0449827537,0.0568034276,0.00589028,0.0252192244,-0.0585685074,0.0211274512,-0.0402758755,-0.0243233144,-0.0018336087,0.0221838243,-0.0534872189,-0.0020876732,-0.003710676,-0.0615103021,0.0498500913,-0.004248891,-0.071138002,-0.0156182684,-0.0061777742,-0.0004504627,0.0063917227,0.0220634788,0.0364782847,0.0063449214,0.0291772783,0.0451967008,0.0519628339,-0.0116267847,-0.0530593246,-0.0306481775,-0.0226652101,0.004593215,-0.0244169161,-0.0659497455,-0.0249785315,0.0663241521,0.0095207253,-0.0024336686,0.0216489527,-0.0134252924,0.0291237924,-0.1005559713,0.0148025881,-0.0256203786,-0.0043324647,-0.0056897029,-0.0158857051,-0.0234140307,-0.0281610209,0.0210338496,0.0032877927,-0.017008936,0.0357829519,-0.012422407,0.0216088369,0.0283482261,-0.0052651484,0.0042355191,-0.0581940971,-0.014401434,0.0044594971,0.0508128591,-0.0135723818,0.04319093,-0.024858186,-0.0178379882,-0.0207530409,-0.039500311,-0.0260482766,0.0319853574,-0.0065889568,-0.0138531905,-0.0103430916,0.0352748223,-0.0111052841,-0.0392328762,0.01615314,-0.0121415993,0.0503849611,-0.0075149545,0.0213681441,0.0098817637,0.0255535189,-0.0004433589,-0.0020074423,0.056054607,0.0169821922,0.0297656376,0.0106172133,-0.0145752672,-0.0513477325,-0.0219030175,0.0151368836,0.0633823574,-0.0319853574,-0.0094806096,0.005348722,-0.0408107489,-0.0269709304,-0.0663776398,0.0116000408,-0.0447688028,-0.0171693973,-0.007842564,0.0374677964,0.0234675184,-0.0037273907,0.0114863804,-0.035756208,0.0592103526,-0.0384305678,-0.060868457,-0.0013564025,-0.0018469805,0.0190681946,-0.0225983504,0.0392061323,-0.038403824,0.0052618054,0.0121683422,0.0154578071,-0.0847772434,0.0317714103,0.0038677945,0.0245907493,0.0107375598,-0.0468815491,0.0382968485,0.0347934365,-0.0350608714,0.0146688698,0.0662171766,0.0405433141,0.055626709,-0.0124959517,0.0252192244,0.0045263562,0.0355155133,-0.000455895,-0.0338574089,-0.0405433141,0.018319374,0.0033596661,-0.0136927282,-0.020271657,-0.0554127619,0.0221570805,-0.0587289669,-0.0460524969,-0.0268639568,0.0310225878,0.003924625,0.0334027708,0.0093936929,-0.0431374423,-0.0117605031,-0.0113259191,0.018987963,-0.0326004624,0.0488873199,-0.0328411534,0.0035635862,-0.0240157619,0.0117605031,-0.0369329266,0.0089524239,0.0122753168,-0.0083373208,-0.0033981099,-0.007080371,-0.0135723818,-0.0230396204,0.0210873373,-0.0374945402,0.0242029671,-0.0218629017,0.0274656881,-0.0578196868,-0.0628474876,0.0576592237,0.0445548557,0.0562685542,0.004041628,0.0372003615,-0.0320388451,-0.035569001,-0.0622056387,-0.0276796371,0.0247244686,0.0024403543,-0.0282145087,0.0260750204,-0.0465071388,0.0012485923,-0.0050980006,-0.0226384662,-0.0174903218,0.0018503235,-0.0679287687,-0.0147892162,-0.0082102884,0.0523105003,0.0278133545,0.0206861831,-0.0569638908,-0.0370933861,-0.0066290726,0.0082704611,0.0174100902,-0.0140403956,0.0110718543,0.0074614673,-0.0229995046,-0.0026643323,-0.0093134623,-0.0000255422,0.0115331821,0.0016664612,0.0454641357,0.0421479307,-0.0488873199,0.0171292815,-0.0018887675,0.0122485738,-0.0096343858,0.0061476873,0.006328207,0.0160327945,0.0274389442,-0.0043658945,-0.0297656376,-0.0013129441,0.0157386139,-0.0147357294,-0.0038611088,-0.0073010055,0.0366387479,0.0237082113,-0.0212611705,-0.0306481775,0.0142677156,0.0165141802,-0.0330818444,0.0170891676,-0.0248849299,0.0063516074,-0.0059671681,0.0474431664,-0.0153240887,0.0195896942,-0.046694342,-0.0187071562,-0.0627405122,0.0001279724,0.0177176427,0.0050277989,-0.0257674679,-0.0204588622,0.0241628513,-0.0106372712,0.0003453687,-0.0105035529,-0.0204187464,0.0054790974,0.0742937475,0.0228390433,-0.0827447325,-0.0018018507,-0.013946793,-0.0149229346,0.036612004,0.0001829221,-0.0315039717,-0.0607614815,0.0254064295,0.00294514,0.0197234116,-0.0184664633,-0.0238686725,0.0131177409,0.0219698753,-0.027051162,0.0041887178,0.0034114819,-0.004583186,-0.0156450123,0.0089524239,0.0165008083,0.0014274402,-0.0424153656,-0.0115799829,-0.0044126958,0.017008936,0.0486466289,0.0280540474,0.0075015826,-0.0043391506,-0.0560011193,0.0081434296,-0.0772355497,-0.0508128591,0.0162601154,-0.0120145669,-0.0189077333,0.0084910961,-0.0328411534,-0.002228077,0.0481117554,0.0172763728,-0.0235878639,0.041907236,0.0158188455,0.005014427,-0.0038443939,-0.018774014,0.0596382506,0.0421746746,0.0005286042,0.0161130261,-0.0198036432,-0.0088588214,0.0100622829,-0.0236413516,-0.0368259512,-0.0215152353,-0.0113860918,0.0132514592,-0.0174100902,0.0375480279,0.0655218437,0.0059671681,-0.0064786398,0.0136927282,-0.009387007,0.0195629504,0.0210873373,-0.0022130338,0.0104366941,0.0084041795,-0.0290970486,-0.0795354992,-0.0412653908,-0.0240692496,0.0244436599,0.0041720034,0.0400886722,-0.032734178,-0.061724253,0.0483257025,-0.0015845589,0.0545837097,-0.0539686047,-0.0314772278,-0.0089123081,-0.002336723,-0.047764089,0.035141103,0.040115416,-0.039928209,0.0208466444,-0.0509733222,0.0005052035,-0.0051916032,0.0305144601,-0.0107977325,0.0002356781,0.0013213014,0.0129706506,-0.0210739654,0.0232535694,0.0191083103,-0.0021344745,0.0068597361,-0.0125494394,0.0205792077,0.0128904199,-0.0305946898,-0.0236413516,-0.0443676487,-0.0330283605,-0.0018068652,0.0248180702,0.003921282,-0.0377084911,0.0215553492,-0.0061276299,-0.0105369827,0.0477908328,0.0342318229,0.018774014,-0.0217024405,-0.0304609723,0.0245640054,-0.0516419113,0.0041018012,-0.0110919122,-0.0190949384,0.0798564181,0.0320923328,0.0650404617,-0.0270779058,0.0072742621,0.0295249466,-0.0146421269,-0.0028649094,-0.0140136518,0.0476571135,-0.0155246658,0.0095808981,-0.0059638252,-0.0244169161,0.0247244686,-0.0091396291,-0.0256872382,0.0116869574,-0.0041118301,0.0339108966,0.0316911787,-0.0230128765,0.0292040221,0.0144415498,-0.0200978238,-0.0039346535,-0.0002419461,-0.0152304862,-0.0150700239,-0.0015151927,-0.0822098553,0.0065521845,0.0323865116,-0.0051280875,0.0265965201,-0.0052049751,0.0186402965,0.0541558117,-0.02356112,0.054770913,0.0081634866,0.0118073039,-0.0098683918,-0.0064686108,-0.0134654073,0.009166372,0.0083908075,0.0332423076,-0.0226384662,-0.0138665615,-0.0014483336,0.0388584659,-0.0077355891,-0.0002436176,-0.0153107168,-0.0336434618,-0.0382166207,0.0330551006,-0.0013597454,0.030086562,-0.0677683055,-0.0125962403,-0.0223309137,-0.0216355808,0.0120881116,-0.0424955972,-0.0013923392,-0.0018051937,-0.0600126609,0.010684072,-0.0363445655,-0.0428432636,-0.025299456,0.0198838748,0.0101224566,0.0299261007,-0.0112858033,0.0318516381,-0.0071138004,0.0056027863,-0.0145618962,-0.0108111044,-0.0186402965,0.0055192127,0.0256070066,-0.0283214841,0.0336702056,0.0082036024,0.0033045074,0.0671799481,0.0008691673,0.0007216596,0.0118073039,0.01222183,-0.0129305357,0.0107910465,0.0135389529,-0.0062914342,0.0030638149,0.0324399993,0.0177176427,-0.0175170656,-0.0373875685,0.0340713598,0.0204588622,0.0014700629,-0.0140805105,-0.0053721229,0.0012185058,0.0048940806,-0.0304074846,-0.0359701551,-0.022250684,0.020485606,-0.0313435122,-0.0022832358,-0.0083774356,0.0211408231,-0.0440199822,0.0289900731,0.0252192244,0.0016815045,0.0118340477,-0.0438862629,0.0146020111,0.0000522858,-0.0261285082,0.0101224566,-0.0046032439,0.03925962,0.0070402552,0.001612974,-0.054770913,0.0225716066,-0.006110915,0.0066090147,-0.0148025881,0.0122017721,0.0107709887,0.0056462446,0.0436455719,0.004790449,0.0260616485,-0.0351945907,0.011546554,-0.0186135527,-0.0197100416,-0.0418537483,-0.0310493317,0.0001009153,0.0171426535,-0.0166345257,0.0017550495,-0.0306481775,-0.0281075351,0.0062713767,-0.0083105769,-0.0369596705,0.0156583842,0.0043291221,-0.0109648798,-0.0305144601,-0.0198303871,0.0053253216,0.0018503235,-0.0061844597,0.0297388937,0.0170624238,-0.0110584833,0.0170624238,0.0447153151,0.026623264,-0.0257808398,-0.0421211869,0.0226250943,0.0226117224,0.0006610686,0.0254198015,0.0179850776,-0.0078826789,-0.0222907998,0.0547174253,0.006645787,0.008511154,-0.0134119205,0.0000349965,0.0551453233,0.0400619283,0.0235477481,-0.0149630504,-0.0051414589,-0.0061343154,-0.0270912778,0.0210204776,-0.045597855,-0.0204588622,-0.0523907319,0.004262263,-0.0354887694,0.0291237924,0.0444211364,-0.0007321063,0.0017901504,0.0210071057,0.0047169044,0.0217024405,0.0204187464,0.0330551006,0.068731077,0.0008018904,0.0093201483,-0.0370666422,0.0103631485,0.0589429177,-0.0042020897,0.0232134536,-0.0355155133,0.0038778235,0.0127433306,0.0064251525,-0.0097012445,0.0190013349,0.0156316403,0.0184397195,0.0150700239,0.0146287549,0.0077222176,-0.0059203668,-0.0244169161,-0.000618446,-0.0060473988,0.0539953485,0.0060072835,-0.046694342,0.0165275503,0.010256175,-0.0424153656,-0.0231599659,-0.0052484334,-0.0220634788,-0.0017650783,-0.002508885,0.0328946412,-0.0294982027,-0.0361306183,0.0016021094,-0.0312097929,0.0166880134,-0.0246977247,0.0110718543,-0.0214617476,0.048673369,-0.0047503337,-0.0043057213,-0.0932282284,0.0559476316,-0.0236012358,-0.0432176739,0.025540147,-0.0048840516,-0.006986768,0.0263558272,0.0056529306,-0.0251791086,0.0146688698,-0.0315039717,0.0279470719,0.0152037423,0.0215152353,0.0071004285,-0.025286084,-0.0091262572,-0.0100489119,-0.0121081695,-0.0184397195,0.0196431819,-0.0179850776,-0.0136392415,0.0323865116,-0.0303807408,0.0055225557,0.0240959935,-0.0254198015,0.0014006966,-0.0420409553,0.011332605,-0.0276796371,0.0022598351,-0.0076754163,-0.012649728,-0.0267569814,0.0029083677,-0.0148560759,0.024430288,-0.0148828188,-0.0085378978,-0.0311830491,0.0075617558,-0.0043993238,0.0159659348,-0.0143613191,0.0142008569,-0.0224512611,-0.0434048809,-0.01329826,-0.0216088369,0.0134787792,-0.0138264466,0.0647730231,-0.0047068754,-0.010249489,0.0178246163,0.0210204776,0.0003739927,0.0205658358,-0.0316644348,-0.0435653403,-0.0119477082,0.0229861327,-0.0048171929,0.0031992043,0.026609892,-0.0135055231,-0.0536744259,-0.0331085883,-0.0388852097,-0.022678582,0.0045296992,0.0448757783,0.0132782022,-0.0157653578,-0.0859004781,-0.0055359271,0.0147357294,-0.0005240076,-0.0209937338,-0.0041218591,-0.0314772278,0.0075149545,0.0434316248,-0.0173298586,0.0004533878,-0.0322260521,-0.0310225878,-0.013946793,-0.0140136518,0.0154043194,0.0254866611,0.0207530409,0.0117404452,0.0294982027,-0.0263558272,0.0023200081,-0.0249116737,0.0443141609,-0.0036973041,-0.0212344266,-0.0140403956,0.0238419287,-0.0112590604,-0.0153775755,-0.0183728598,-0.0184530914,0.0179048479,0.0124625228,-0.0164874364,0.0354085416,-0.002565715,0.011787246,-0.0164874364,-0.0057933345,-0.0033412797,-0.0231465939,0.0214082599,-0.0519093461,0.0341783352,0.0129305357,-0.0007797434,0.0432176739,-0.0382166207,-0.0053119496,0.0054590395,-0.0105770975,0.0007542534,-0.0047570197,0.0049709687,-0.0011608398,-0.0487001128,0.0063649793,-0.0273319688,0.0121215414,-0.0214751195,-0.012001195,0.0247378387,-0.0763797536,-0.0285086893,-0.0061176009,0.0089056222,0.0109648798,0.0057131038,-0.0284284577,-0.0058601936,0.0238686725,0.0272249952,-0.0357027203,-0.0073010055,0.0201780535,0.0142543446,-0.018319374,-0.0301935356,-0.0029986273,0.0095340973,0.0221570805,-0.0447153151,0.005900309,0.0077556469,-0.004680132,-0.0094806096,-0.0162199996,-0.0069600246,-0.0003307432,0.0146020111,0.0088588214,0.0160996541,-0.010483495,0.0345794894,0.0162333716,0.0412119031,-0.0045765005,-0.0038811665,-0.0229326449,0.0290435608,0.0261552501,0.0102093732,0.0158990771,-0.0335632302,0.0121148555,0.0026860614,0.0056328727,0.0055058408,-0.0019155111,-0.0203920025,-0.0067393896,-0.004245548,-0.0270645339,0.016808359,0.0000633071,0.0404630825,0.0246843528,0.0008883893,-0.0206995551,0.0337504372,-0.0149630504,-0.0309423562,0.048191987,0.0075951852,-0.0005415581,0.0332957953,-0.0012786789,-0.0159659348,-0.0223442856,-0.00157453,0.0437525474,0.0094070649,0.0237349533,0.0070068259,-0.0536476821,0.0165008083,0.0228791591,0.0157386139,0.0352748223,0.0061343154,0.0226384662,-0.0122753168,0.0158589613,0.0193088874,-0.0055125267,0.0199908484,0.022036735,0.0016238386,0.0288563557,0.0305412021,-0.0395537987,-0.021822786,0.0305946898,0.0182123985,0.0954746902,-0.0334027708,-0.0085378978,-0.0440199822,-0.0409979559,0.0215553492,-0.0048873946,0.0141206263,0.0172897447,0.0225716066,-0.0233337991,-0.0266767517,-0.0056796744,-0.0035167846,0.0031390314,0.0128436191,0.0140938824,0.0237483252,0.0283214841,0.0274389442,0.033349283,0.0143479472,0.0203786306,0.0224780049,-0.0259011872,-0.0452234447,0.0322260521,0.0257006101,0.0638102517,0.0672869235,-0.0169688202,-0.0096210139,-0.0084910961,-0.022237312,0.0318516381,-0.026181994,-0.0069800825,0.0234407745,0.0112390025,-0.009814905,0.0049709687,0.0099018216,-0.0011591683,0.0020509006,0.0061610593,-0.0268104691,0.0071739736,0.01525723,-0.0302737672,-0.0082370322,0.0403561071,-0.0252593402,-0.0306481775,0.002569058,0.0541290678,0.0128369331,0.0065220981,-0.0354620256,-0.0000024191,-0.0235878639,0.0211541951,-0.0006970054,0.0177443847,0.0029351113,-0.0471489839,-0.0448222905,-0.0146287549,0.0060407128,-0.0121415993,-0.0383235924,0.0374677964,0.0265430324,-0.0109782517,0.0157653578,0.0353817977,0.0167147573,0.0048238789,0.0064853253,-0.0078759929,0.0305946898,0.0223175436,0.0027345342,0.0208733883,0.0154711781,-0.0031122877,0.001960641,0.0114061497,0.0072408323,-0.0189211052,-0.0127567025,-0.011332605,0.0615103021,0.0306481775,0.0231599659,-0.007080371,0.0289900731,0.0053788088,0.034713205,0.0183862317,0.0354085416,0.0317981541,-0.0182658862,0.0187873859,-0.0266366359,-0.0126898428,-0.007421352,0.0113794059,-0.0155915245,-0.0071138004,0.0029651979,-0.0043424936,-0.0171292815,-0.0138933053,0.0445281118,0.0147624733,-0.0189211052,0.0272383671,-0.0025540148,-0.0056061293,-0.0089524239,0.0389654413,-0.0624195859,-0.0071204863,-0.009173058,-0.0088320775,0.0060540847,-0.0122886887,-0.0111587718,-0.0234675184,0.0516686551,0.0011340962,-0.0192553997,-0.0239221603,0.0021595466,-0.0104166362,-0.0142944595,-0.0097213024,-0.0154444352,0.0038744805,-0.0182257704,-0.0104166362,-0.0027947072,0.0257407241,-0.0049007665,-0.02837497,0.0405433141,-0.0070201978,0.0044227247,0.0374677964,0.0235076342,0.0265965201,-0.0368794389,-0.0215286054,-0.0181321669,0.0299795866,-0.012435779,-0.0006932445,-0.0041218591,0.0330016166,-0.0118741626,0.005683017,0.0298458692,0.0382701047,0.0203920025,0.0225716066,0.0200309642,0.0146287549,0.0030036417,0.0459455214,-0.0102227451,-0.0022631781,0.0155246658,-0.0068530501,-0.0199507326,0.0160461664,-0.0114529515,-0.0000971545,0.0001371655,0.0181455389,-0.0120881116,-0.03230628,-0.0097279884,-0.0024670979,0.007842564,0.0195629504,-0.0115933549,0.0079762815,0.0266500078,-0.0061944886,0.0245907493,-0.0059838826,0.0263558272,0.0149363065,-0.0268907007,0.0169019625,0.0557336845,0.0146287549,-0.0372538492,-0.0019506121,0.0056763315,0.0021996619,-0.0077556469,0.0177845005,-0.0086381864,0.0153240887,-0.0147892162,0.0044193817,-0.0331353322,-0.0281075351,0.0156450123,-0.0237215832,-0.0051180585,0.0216355808,0.0004588201,-0.0067594475,0.0214216318,0.025727354,-0.0140537675,-0.0130107664,0.0135055231,-0.0011650185,-0.0021729183,-0.0155112939,-0.0104032643,0.0116401566,-0.0012218487,-0.0256203786,0.0121950861,0.0513477325,-0.0097480463,0.0036037015,-0.0228390433,-0.011573297,-0.0141206263,0.0138799334,-0.0231198519,-0.0248180702,-0.0180786811,-0.0049977121,-0.0167281274,0.0164740644,0.0117939319,-0.0030755152,-0.0179048479,-0.0208867602,0.0088521354,-0.003917939,0.0260482766,-0.0253261998,-0.0119744511,-0.0128235612,0.0343922824,0.0135055231,0.026181994,0.0383770801,-0.0148159601,0.0129372217,-0.0156450123,0.0098550208,-0.0408374928,-0.0121549712,0.0356492326,-0.0012377277,-0.008290519,-0.0577661991,0.0054088952,0.0115933549,-0.0046567312,-0.0256337505,0.0216088369,0.0295516886,0.0163804609,0.0325202309,0.0389921851,-0.0108712772,-0.0117070153,0.0259413011,-0.0297923815,0.0053921803,-0.010256175,0.0147357294,-0.0015185357,0.0151502555,-0.0044026668,0.0097413603,0.011132028,-0.0043993238,-0.015270601,0.0033362655,-0.0087986477,-0.0105436686,-0.0452501886,0.0183594879,0.003334594,-0.0387247466,-0.0155380378,0.0190548226,-0.0238954164,0.0402758755,0.0236413516,0.0088387635,0.013973536,-0.0300598182,-0.0000658666,0.0040717148,-0.0136927282,-0.0027562634,0.0211943109,-0.0217024405,-0.0034733263,0.0129171638,-0.0040750578,-0.0249785315,-0.0023768384,-0.0072742621,0.020285029,-0.0073143775,-0.0190414507,-0.0095207253,0.0225983504,0.0156717561,0.0124959517,-0.010898021,0.0158322174,-0.0113526629,0.0360503867,0.0341515914,0.0163269732,-0.0053687799,0.0149496784,-0.0033763808,0.0002463337,-0.0277063809,0.004472869,-0.0044461251,-0.0338841528,0.0065154121,-0.0179984495,0.0145084085,0.046453651,-0.0042087757,-0.0083506927,0.0028916528,-0.0038176503,0.0312097929,0.0047169044,0.0306214336,0.0287493803,0.0132581452,0.0225983504,-0.0124892658,0.0058067064,-0.0259011872,-0.0016004379,-0.0115131242,-0.0213681441,0.0291772783,-0.0016522537,-0.0194426049,0.0190681946,-0.0101625714,0.023133222,0.0097547323,0.0193356294,0.0161130261,0.0027696351,-0.0101625714,0.0112791173,-0.0009711274,0.0096544437,0.0256070066,-0.0085378978,0.0175304357,-0.009600956,0.0096477577,0.0436455719,-0.0087117311,0.0385107994,0.0243901722,-0.0127700735,-0.0011767189,-0.0262354817,-0.008297205,-0.0132848881,0.0047302763,0.0054222671,-0.0110985981,-0.0027662921,0.0327074341,0.0009569198,0.0129706506,0.0430839546,-0.021595465,-0.0138531905,0.0096745007,-0.0145217804,-0.0005699732,-0.0024052535,-0.0211541951,-0.0012327132,0.0314237438,-0.0181856547,0.0114930663,-0.0078158202,0.0015051638,0.0008825391,-0.029658664,-0.0092466036,0.0232268255,0.0288563557,0.0153508326,0.0078893648,0.027265111,-0.0054189241,-0.0660567209,-0.0077021597,0.0030654864,0.0217559263,-0.0172095131,0.022036735,0.0039580544,0.0472559594,-0.0145351524,0.0433246493,-0.0133383758,-0.0016940406,-0.006441867,0.0179717056,0.0051916032,-0.018774014,-0.023347171,-0.0016756543,-0.0448490344,0.051695399,-0.0150165372,-0.0058601936,-0.0061811171,0.0112657454,-0.0000856631,0.0025373001,0.0190414507,-0.012870362,-0.0029819126,-0.0008658244,0.0215018634,-0.0436723158,-0.0052016322,0.0126363561,-0.0201245658,-0.0244169161,-0.0015845589,-0.0062312614,0.025299456,-0.0098015331,-0.0077690189,0.0068162777,-0.0276796371,0.0004667596,-0.0010480152,0.0252325963,-0.0101960013,0.0176240392,-0.0244169161,-0.0367992073,0.0305946898,-0.018774014,0.032734178,0.0099887382,0.0009301762,-0.0162601154,0.0094672376,0.009814905,0.02837497,-0.0066792169,-0.018760642,-0.0127567025,-0.0183862317,-0.0410514399,-0.0424955972,0.0238018129,0.0164606925,-0.017022308,-0.0234541465,0.0016706398,-0.0053654369,0.0241494793,0.0269709304,0.0121750282,0.0043257792,0.0085646408,0.0114596374,0.0008202767,0.0353550538,0.0249651596,0.0072675762,-0.0196030661,0.0189478472,-0.0241895951,-0.0177443847,0.0116602145,0.0097814752,-0.0020826587,0.0035535572,-0.0194292329,0.0011867477,0.0279738158,-0.0073611788,0.0173699744,-0.0148560759,0.0183728598,0.0016204957,-0.0043491796,0.0479245484,0.0105503546,-0.0011040097,0.019415861,-0.0056094723,-0.0062279184,-0.0041419165,0.0444746241,-0.0103430916,-0.0007036913,-0.0192955155,0.0016681327,0.0015452793,0.0458385497,0.0322795361,0.0108846491,-0.0173031166,0.0282679964,-0.0001889812,0.0199373607,0.0310225878,-0.0067728194,-0.0085713267,-0.0068931654,0.0260616485,-0.01962981,-0.000366471,-0.0251791086,0.0428700075,0.0076887878,-0.0160729103,-0.0193356294,-0.0097146165,-0.00807657,-0.0006422645,-0.0088454494,-0.0528988615,-0.0054088952,-0.005683017,0.0009268333,0.0275994055,-0.0180385653,0.0152037423,0.0489140637,0.0324399993,0.0321458206,-0.0027529204,-0.0522837564,0.0246174932,0.010249489,-0.004586529,0.007621929,-0.0096210139,0.001699055,-0.0077623329,-0.0082504041,-0.0090660835,-0.0119744511,-0.0323865116,-0.00288831,0.0044828975,-0.0367992073,0.0056529306,0.007414666,0.0001652671,-0.0073812366,-0.0133450618,0.0290970486,-0.0060039405,-0.0032928069,0.0397410057,0.0049843402],"2":[0.0011837597,-0.0051201689,0.0456654429,-0.0074412664,0.0746052265,0.0001188488,-0.0151026072,0.0299576297,-0.0229565129,-0.0104053933,0.0282795634,-0.0088511184,0.0126474015,-0.0417041034,0.0440148823,0.0501494594,-0.0120215649,0.0039338302,0.0033440995,0.043134585,-0.000784445,0.0018224913,0.0154327182,0.0139059527,-0.0300126486,-0.0107630147,-0.0509747379,0.075430505,0.0363397896,-0.0491316132,-0.0070183109,-0.0378528014,-0.0519650728,0.0386780798,0.0311130211,0.0209483337,0.0436572619,-0.0302327238,0.0442899764,-0.0051373621,-0.0332037285,-0.0082390364,0.0102816019,0.0270691533,-0.0249784458,-0.022200007,-0.0306178536,-0.0098001892,0.0242494494,0.0453078225,-0.0296550281,-0.0093944268,-0.0190501921,-0.0494342148,0.006055485,-0.0121522341,-0.0058629201,0.0312505662,-0.0046250015,-0.0266152509,0.0172483325,-0.0313881151,0.0553487167,0.0483888611,-0.0095938696,0.0087754671,0.0040851315,0.0175509341,-0.008637921,0.0300676674,0.0458304994,0.0040301126,0.0025583652,-0.0199304894,0.0113132009,-0.0803821832,-0.0427219458,0.0539457425,0.0030414972,-0.0606855229,-0.0170007497,-0.0309479646,-0.030040158,0.0143873654,0.0050548343,-0.054110799,-0.0196966603,-0.0169457309,-0.000907807,-0.0068291845,0.0089955423,0.059695188,0.0293249171,0.0250609741,0.0115745394,0.0191602297,-0.0228464752,-0.0098483302,-0.0107286284,-0.0005622214,0.0175921991,-0.0080946125,-0.0115332752,-0.0001839685,0.0184587426,0.007626954,0.0337264054,-0.0196829066,0.0195591133,0.0110587394,-0.1231316403,0.0148962876,-0.028719712,-0.0017829466,-0.0110174753,-0.0068463776,0.0076338314,-0.0272342097,0.0004891498,-0.0205632038,-0.0202330928,0.0074206344,-0.0358721316,-0.0013599911,-0.0016935414,-0.0100202635,-0.026422685,-0.0375777073,-0.0071249092,0.0015190293,0.0420342125,-0.002921144,0.0377152525,-0.0112788137,-0.0259275176,-0.0242081862,-0.0462431386,-0.034689229,0.030370269,-0.0027853169,0.0132869929,-0.0519650728,0.0324884877,-0.007393125,-0.0128743537,0.0213472191,-0.0135208219,0.0601353347,-0.0355420187,0.001555995,0.0121316025,-0.0310580023,-0.0359821692,-0.0075650583,0.0601353347,-0.0001780583,0.0344416462,0.0381278917,-0.0088786278,-0.0441524312,0.0245658066,0.0587048531,0.0152814174,0.0153089268,-0.0206869952,0.0027595269,-0.0317182243,-0.040273618,-0.0856639668,0.0059248158,-0.0248821639,-0.059750203,-0.0038788116,0.0518825427,0.0381278917,-0.0084591107,0.0236579999,-0.0451977849,0.0152401533,-0.0303977784,-0.0469308682,-0.0253085587,-0.019806698,0.0092981439,-0.0183349494,-0.0092637576,-0.044867672,-0.0012499539,-0.0015800656,0.018252423,-0.054771021,0.0337539129,0.0022179375,-0.002946934,0.0407687873,-0.0458580069,0.0437122807,0.0113957282,-0.0186237972,0.0517725088,0.0405762196,0.043134585,0.0270553995,-0.016285507,0.0112444274,-0.0025102238,0.0046146857,0.0035486999,-0.0659673065,-0.0155840199,-0.003299397,-0.0056394069,0.0116089256,-0.0063099461,-0.0333412737,-0.0115401521,-0.042942021,-0.0118702641,-0.031910792,-0.0100821592,0.0006950397,0.0614007637,0.0142085543,-0.0354594924,-0.0153364362,0.0065231435,0.0136239817,-0.0172620881,0.0416490845,0.0134451715,0.0129431272,-0.0312230587,0.0126198921,-0.0505896062,-0.0017554373,0.0102197062,0.0228739846,-0.0469033606,-0.0080602253,-0.018252423,-0.0061895931,0.0204669219,-0.0006692497,-0.0052783475,-0.0102403378,0.0204806756,-0.0347167403,-0.0884699151,0.0198204517,0.0275780763,0.0242081862,0.0054743513,0.0272342097,-0.0210308619,-0.0029263021,-0.0384029858,-0.016189225,-0.0074481438,0.0288847666,-0.0163130164,0.0089267688,-0.0501769669,-0.0127849486,0.0032684491,-0.018211158,0.0194490775,0.0206319764,-0.0340840258,0.0277568866,-0.01370651,0.0222275164,0.0119321598,0.0347167403,-0.0599702783,-0.0428594947,-0.0347442478,-0.0427769646,0.0261613466,-0.0215260293,0.0208933149,0.0203843936,-0.0258449893,-0.0030621293,-0.0186925717,0.0375777073,0.0236442462,0.0007805764,0.0640416592,0.0217598584,-0.0690483525,-0.0049894997,0.0181974042,0.0279907156,-0.0225438736,0.0151851345,-0.0048038121,0.0034592948,0.003216869,-0.0269040968,-0.0283070728,0.0336713865,-0.0088373637,0.0302877426,-0.0080052074,0.0061345743,0.0127230519,0.0000225125,-0.0322409011,0.008307809,0.0048863399,0.0204531662,-0.0181698948,0.0092500029,-0.0229427591,0.0034386627,-0.0231628325,0.0356520563,-0.0131081827,-0.0251710117,-0.0263126474,-0.0567791983,-0.0658572689,0.0140847629,0.0369449928,0.0206457321,-0.00887175,0.0230527949,-0.0032684491,0.0103297429,-0.0042776964,-0.0282795634,-0.044675108,0.0274955481,0.030315252,-0.0071661733,-0.0491041057,0.0407687873,-0.0187613443,-0.0257624611,0.0290498231,0.002147445,0.0082390364,-0.0800520703,0.0335063301,0.0223925728,-0.0034335048,0.0092224935,-0.0393383019,-0.0123241674,0.0212646909,-0.0567241833,-0.0222550258,-0.0074962848,-0.0113200778,-0.0067466563,0.0034421014,0.0101509327,0.0099171037,-0.0149925696,0.0012963759,-0.0199992619,0.0276468489,0.0386780798,-0.009057438,0.0011141268,0.0159691498,-0.036229752,0.0078676604,-0.045060236,-0.0268215705,0.0286646932,-0.0136996321,-0.0075306715,-0.0065059499,-0.0683881268,0.0034145922,0.0529278964,0.0419791937,0.0149788149,0.0718543008,0.0446475968,-0.0047728638,-0.0045699826,-0.0061689611,0.046600759,0.0270691533,-0.0101715643,0.0203568842,0.0008931927,0.0019445638,0.0490765944,0.0069495374,0.0059935893,-0.0073174746,0.015020079,0.0183349494,-0.0058697974,0.0308379289,0.0857189894,-0.010797401,0.0279219411,0.0100615276,-0.0300676674,0.0012903583,0.0251710117,0.0023572033,-0.0198204517,0.0121178478,-0.0534780845,-0.0131907109,-0.0397234336,-0.0323234312,0.028719712,-0.0316907167,0.0129775135,-0.0394208319,-0.058429759,0.050259497,-0.0015078536,0.0475635827,-0.0644818023,0.0054055778,0.0063099461,-0.0458855182,-0.0416490845,0.0646468624,0.0365873724,-0.0216223113,-0.0057391282,-0.0536706485,-0.0514974147,-0.022997776,0.0177847631,-0.0158591121,0.0150063243,0.0250747297,0.026422685,-0.0063202623,0.0755955651,-0.0046284399,-0.0010444939,0.0226539113,0.0098001892,0.0075375489,0.0251710117,-0.0517725088,-0.0292148795,-0.0228464752,-0.0276055858,-0.0075856904,0.0288297497,-0.0467383042,-0.0212234259,-0.0001835386,-0.0104741668,-0.0048966557,0.0572743677,0.0001320661,0.0301501956,-0.018073611,-0.0842885002,0.0329561457,-0.0582647026,-0.0426394194,-0.0061930316,-0.0500944406,0.0556788296,0.024166923,0.0367799364,-0.0326535404,0.0161754694,0.0433271527,-0.0274680387,-0.0052130129,-0.0648119152,0.0123310452,0.031443134,-0.0020150563,-0.0031274639,-0.0363122784,0.0296825375,-0.0043533472,0.0070045562,0.060630504,0.0114094829,0.0264089294,0.0003359144,-0.0066366191,-0.0113407103,0.0215535387,-0.0158453584,-0.0011631277,0.0288847666,-0.01614796,-0.0203568842,-0.0120284427,-0.042666927,-0.0174408983,-0.0132319741,0.0053092954,0.0198892262,-0.0165605992,0.0131081827,0.0777963102,-0.0208658054,0.0355420187,-0.0187200811,-0.0083421962,-0.020370638,-0.0232591145,-0.0247858819,-0.0097726798,0.0371925756,0.024455769,-0.0162992608,0.0207145046,-0.0211408995,0.0189951733,-0.0117739812,0.0025205398,-0.0343591198,0.0016325052,-0.0387881175,0.0122829033,-0.0128881084,0.0214435011,-0.0496818013,-0.0061895931,-0.0186925717,0.0093600405,0.0044530681,-0.0307278913,0.0241806768,-0.0072693331,-0.0542208366,0.0081565082,-0.0155565105,-0.0476461127,-0.0433271527,0.0288022403,-0.0025583652,0.040356148,0.0221312344,0.0500394218,-0.0183349494,-0.0189676639,-0.0264639482,-0.0129843904,-0.0154739823,0.0320208296,0.0409888588,-0.0277431309,0.0317732431,0.0165055823,0.0009894752,0.0372200869,0.0350193419,-0.0112100411,0.0290773325,0.0109143155,-0.0121797435,0.0046903361,-0.0096282559,0.0116983308,0.0073724929,0.0164643172,-0.0002235131,-0.0103778839,-0.0387606062,0.0252535399,0.0220487062,-0.0093737952,-0.012062829,0.0206869952,0.0054777898,-0.0119803008,-0.0503695309,-0.0415390469,-0.0034850847,0.0396133959,-0.0109693343,-0.0186375529,-0.0264364388,0.0359821692,-0.046133101,0.0135827176,0.0329286344,0.0100065088,0.0382379293,-0.043739792,0.0022127796,0.006220541,-0.0194490775,0.0069048349,0.0287747309,0.0075719357,0.030645363,0.0111894086,-0.0384855159,0.0175921991,-0.0010341778,-0.0248133913,-0.0076819728,-0.0125098554,-0.000189019,0.017881047,-0.0036312279,-0.011265059,0.0240843948,-0.0228189658,0.0303427614,0.0021130582,0.0065231435,-0.0401635803,-0.0099446131,-0.0032031145,0.0136033501,-0.00537463,0.0283070728,-0.0292974077,-0.043739792,-0.0244420152,-0.0203018654,-0.0527628437,0.0227777027,0.0054846671,-0.0299026109,-0.0458029881,0.0013367801,0.0219799317,0.0339739881,-0.0118221231,0.0310029835,0.0091124568,-0.0151988892,0.0305628348,0.0382929482,0.0469308682,-0.0070492588,-0.0167394113,0.0250472203,0.0065850392,0.0019858277,0.0067294631,0.0224750992,-0.0219524242,-0.0002111554,0.0441524312,-0.0052164514,-0.0058319722,-0.0008364547,-0.0172758419,0.0535331033,0.0466832854,0.0388981551,-0.012956881,-0.0191739835,-0.0177022368,-0.0125648743,0.008541638,-0.0378528014,-0.0240156204,-0.0347992666,0.0041779755,-0.0229702666,0.0101027917,-0.0051476783,0.0164780729,0.0135276997,0.0252260305,-0.0048381984,0.0248959195,0.0095526055,0.0317182243,0.0384855159,0.001730507,0.0181974042,-0.0023520454,0.0255011227,0.0394483395,-0.01614796,0.0195728689,-0.0071936827,0.0053815073,0.0098276986,0.0013771844,-0.0109211933,0.0312230587,0.0141122723,0.01830744,0.0117395949,-0.0227777027,-0.0252948031,-0.0231215693,-0.0008914733,-0.0397784524,0.0104397805,0.0221174788,-0.0213747285,-0.0234929435,0.0033406608,-0.0006408808,-0.0556788296,-0.0112306727,-0.0037756518,-0.0029091088,0.0159691498,-0.0056978641,0.0386505686,-0.012530487,-0.0633814335,0.0007758483,-0.0210446157,0.0301501956,-0.0226401556,-0.0080189621,0.000740602,0.0367524289,-0.0379353277,-0.0037618971,-0.0685531795,-0.0038272317,-0.0072830878,-0.0191327203,0.0329836532,-0.0057219351,0.0385680422,0.0194628313,-0.0019755117,-0.0134795578,0.0077438685,-0.0039613396,0.0048003732,0.0077026049,0.0324334688,-0.0051270463,-0.0434922054,0.0074343891,-0.0279081874,-0.0095801149,-0.0253910869,0.0157078113,-0.0002308202,0.013562086,0.0362847708,-0.0301501956,0.0053161727,0.0416765921,0.0215397831,-0.0034266275,-0.006334017,0.0123929409,-0.0080327159,-0.0172345787,-0.007014872,-0.0054502804,-0.0206182227,0.0152126439,-0.0078263963,0.0472334735,0.0057563214,0.0229290035,-0.0248821639,0.0306178536,-0.0055052992,0.0363948084,-0.0043567857,0.0025772778,-0.0296550281,-0.039008189,-0.0156803019,-0.0198479611,-0.0100959139,0.0078676604,0.0507821739,-0.0061173812,-0.0209070705,0.022200007,0.0118496316,-0.0187475905,0.0213609729,-0.0083972141,-0.0514148846,-0.0126611562,0.0236167368,-0.0240018666,-0.0149788149,-0.0075856904,-0.0176609717,-0.0374676697,-0.0170145035,-0.0094081815,-0.0142910825,0.0171520505,0.0322133936,-0.0042845737,-0.0133832758,-0.0708089471,-0.0395858847,0.0142910825,0.0009189826,-0.0112925684,-0.0240018666,-0.0015267663,0.0359821692,0.0382929482,-0.0227089282,0.0306178536,-0.0235617179,-0.0075650583,0.0017743499,-0.0166568831,0.0118977735,0.0303977784,0.0011321798,0.0222137608,0.0358996391,-0.0078126416,0.0171107855,-0.0231903419,0.0253635775,0.0025824357,-0.0380178541,-0.0236992631,0.0443174876,0.0073862476,-0.0144836474,0.0026701216,0.0162717532,0.0125442417,-0.0139334621,-0.0196691509,0.0334513113,-0.0119390376,0.0072487011,-0.0125855058,-0.030177705,-0.0415940657,-0.0549910963,0.028582165,-0.0346342102,0.0440699011,-0.011168777,0.0098895943,0.024455769,0.0001174518,0.0034661721,0.0185000058,0.024359487,0.0071111545,-0.0090643149,-0.0296550281,0.009573237,-0.0447301269,-0.0162304882,0.0141122723,0.0089749098,-0.0095319729,-0.0009911945,0.0033355029,-0.0683881268,-0.0303427614,0.0099102259,0.0003791126,0.0475635827,-0.0056050206,-0.0050066928,0.0172483325,0.0639866367,0.0339464806,-0.0254461039,0.0261200834,0.0060348534,0.0138303014,-0.0175509341,0.0112237958,-0.0350193419,-0.0100684045,-0.0104053933,-0.0210996345,0.0094356909,-0.0052749086,-0.0228464752,0.0009611063,0.0114645017,0.0085210064,0.0211133901,0.0535606109,0.0134658031,-0.0164643172,-0.015721567,0.0206732415,0.0272342097,0.0119596692,0.0071936827,-0.0056909868,-0.0108180335,0.0074894074,0.0058250949,0.0189401545,0.0268903431,0.0172620881,0.0156940576,0.0171107855,-0.0132388519,-0.0046112468,0.011168777,-0.0355970375,-0.0029125474,0.0174959172,-0.0208245423,-0.0116020478,0.0201505646,0.0114438701,0.018252423,0.0034730495,-0.0167531651,0.03661488,-0.0129912682,-0.0293799341,0.0332037285,0.0032495363,0.0184724964,0.0362572595,-0.0251435023,0.0034799268,-0.0138578108,0.0102678472,0.0583747402,-0.0020013019,0.038347967,0.0155152464,-0.040356148,-0.009855208,0.0069495374,0.0076888502,0.0193390399,-0.0051717488,0.0163267702,-0.0273442473,-0.0203981474,0.0303427614,-0.0083353184,-0.0249371827,0.0090505602,0.0106254676,0.0261475928,0.0431070775,-0.0447851457,-0.0276468489,0.0548260398,0.0085141286,0.0835732594,-0.0453628413,-0.032571014,-0.0273167379,-0.0156940576,0.0046800203,0.0084797423,0.0252672937,0.0090711927,0.0345241763,-0.0164918266,-0.0438498296,-0.0029434953,0.0034059954,0.0097795567,0.0151301166,0.0196553972,0.0004205914,0.0277981497,0.0404936932,0.0149650602,-0.000178703,0.0060451692,0.0100133857,-0.0062652435,-0.0177572556,0.0057047415,0.0142498184,0.0503695309,0.0156115294,-0.0358446203,-0.0456929505,-0.006148329,-0.0381829105,0.0118908957,0.0123310452,-0.0121247247,0.014593685,0.0223237984,0.0024414505,0.0080327159,0.0371925756,0.0205219388,-0.0145386662,0.0186100435,-0.0369449928,-0.0005480369,0.0176059529,-0.0187475905,0.0181974042,0.0377702713,0.0020993035,-0.0039579007,-0.0269453619,0.0216498207,0.0207145046,0.0164505634,0.0067191473,0.0048003732,0.0101509327,0.0253773313,0.0215122737,0.0036965625,-0.0116914539,-0.0450877473,-0.0268215705,-0.0190914553,-0.0301501956,0.0085966568,-0.0334513113,0.0473159999,-0.0036346666,0.0027113857,-0.00360028,0.0131907109,0.0145386662,-0.0128399665,0.0212509353,-0.002532575,0.0376877449,0.0229840223,0.0230803043,0.0013926585,-0.0163405258,0.0059901504,-0.0026855955,0.0240706392,0.022103725,-0.014222309,-0.0267115328,-0.0057150577,0.0705338493,0.0284721274,0.0194078125,-0.0298200846,-0.0015121519,0.0185962878,0.0069357827,0.0138509339,0.0133695211,0.0422542877,0.0303427614,0.006334017,-0.0109968437,0.0073037199,0.0034954008,0.0231628325,0.0185137596,-0.0181286298,-0.0012043916,-0.0089130141,0.0035762093,-0.0035727706,0.0222275164,0.0181836486,-0.0467658155,0.0284721274,0.0015430999,-0.0100546498,-0.0051820651,0.0219936874,-0.0440974124,-0.0022712369,-0.0100202635,-0.0087204492,-0.0076957275,0.0184037238,-0.0171107855,-0.0123104127,0.0328736156,-0.0105635719,-0.0070561361,-0.0159278866,0.0058491654,-0.0221449882,-0.0065506524,0.0005063431,-0.0204531662,0.0060829944,-0.0115332752,-0.0044118045,-0.0191464741,0.0289672948,-0.0235342085,-0.0170695223,0.0199855082,-0.009057438,0.0096901515,0.0174821615,0.0037447037,0.0039097597,-0.0106185907,-0.0402461104,-0.0125511196,0.020370638,-0.038623061,-0.0074481438,0.0136721237,0.0335613489,-0.0078263963,-0.0017812273,0.0121866213,0.0432721339,0.0170695223,0.0252535399,0.0137133868,0.0205769576,0.0212922003,0.0555412807,-0.0316907167,-0.000155492,0.0024345734,0.0079708202,-0.0214022379,0.0243182238,-0.001239638,-0.0181561392,0.0013789037,0.0213334635,-0.0139197074,0.0060589239,0.0096076243,-0.004741916,0.0174408983,-0.0015663109,-0.0048450758,0.0025979097,0.013328257,0.0206319764,0.0161066968,0.0048966557,0.0410988964,0.0375777073,-0.0117052086,0.0293799341,0.0594200939,0.0068670097,-0.0294349529,0.0043980498,0.0007156717,0.0025463297,-0.0099858772,0.0099102259,0.0019600377,0.0204394124,-0.0239881109,-0.0193115305,-0.0189126451,0.0056428458,0.0077988873,-0.0185275152,-0.002463802,0.0201092996,0.0139472159,-0.0066538127,0.0478936955,0.0522126555,-0.0162029788,-0.0200955458,-0.0020872683,-0.0331487097,0.0108317882,-0.018678816,-0.0062274183,0.0209895968,-0.0034025568,-0.0261475928,0.0155840199,0.0409063324,0.0043120831,-0.0044840164,-0.0155014917,0.005536247,-0.0129706357,0.0171658043,-0.0142498184,-0.0103985164,-0.0189401545,-0.003988849,-0.0105566951,0.0187613443,-0.0193940587,-0.0098620849,0.0002422108,-0.0249096733,-0.0130531639,-0.0038341091,0.0104604121,-0.0243457332,-0.0032203076,0.0310855117,0.0726795793,0.002381274,0.0290223137,0.0391182266,-0.0182386674,0.0053849458,-0.0047006519,-0.0053299274,-0.0357070751,-0.0142360637,0.0272204541,-0.0189676639,-0.0227777027,-0.03237845,0.0135895954,0.0178260282,0.0112031633,0.0183349494,0.051112283,0.0094356909,0.0073105972,0.0300676674,0.0326535404,-0.0363122784,-0.0281970352,0.036229752,-0.0445650704,0.0246758442,-0.009717661,-0.0278531685,-0.0127436845,0.0268490799,0.0044737002,-0.0044152429,0.0196966603,0.0273717567,-0.0185137596,0.0022953073,-0.0292423889,0.007014872,-0.0392557755,-0.0183899682,-0.0092156166,-0.0189676639,0.0196416415,0.0178948008,-0.025955027,0.0453078225,0.0096007464,-0.0176747274,0.0079639433,-0.0238643195,-0.0189264007,0.0209483337,-0.0356795639,0.0035762093,0.0291873701,0.0074825301,0.0035280681,0.0231078137,0.0025291366,-0.0146349492,-0.0017691921,-0.0109005608,0.0168081839,-0.0013703072,-0.0040266742,0.0016531372,-0.0003853452,0.0253223125,0.028018225,-0.0243732426,0.0348542854,-0.0185687784,0.0367249176,0.0089267688,0.0189951733,-0.0030965158,0.008541638,0.0216910858,-0.0209208243,-0.0255561415,0.0190639459,0.002594471,-0.0478111692,-0.0074206344,-0.0147037217,0.0173583701,0.0395308658,-0.0061448906,0.0102816019,0.0285271462,0.0081565082,-0.0144836474,-0.0296000093,0.0175509341,0.0518000163,0.0291323513,-0.0050479569,-0.0209483337,0.0215948019,-0.0170007497,-0.0058285333,-0.010797401,0.0036277892,0.0070836456,-0.0084866202,-0.0266427603,0.0080602253,-0.0070630135,0.0162167344,-0.0026993502,-0.0052989796,0.0123310452,0.0122622717,-0.0082321586,0.0137202647,0.0051786262,0.0267665517,0.0018723519,-0.007558181,0.01614796,0.0080877347,-0.0131150596,0.0173858795,-0.0087617123,0.009855208,0.0255286321,-0.0104741668,-0.0037000012,-0.0204531662,-0.0111825317,0.005935132,0.0038581796,-0.0048175664,0.0272617191,0.0045355964,0.0392007567,0.0109968437,-0.0050960984,0.0222412702,-0.0100408951,-0.0391732454,-0.0030569711,-0.0046662656,-0.0184174776,-0.0175784435,-0.0137271415,0.0036037187,0.0216635764,0.0020202145,0.0068223071,0.005302418,0.012860599,-0.0047866185,-0.0174546521,-0.0297650658,0.0096901515,0.0264777038,-0.0060314145,0.0088648731,0.0360922031,0.0276743583,-0.0540832877,0.0098758396,-0.007558181,-0.0070389425,-0.0143048372,-0.000468088,0.0019187739,0.0086998167,-0.0298751015,0.0101234233,-0.0066056713,-0.0140985176,-0.0151026072,0.0333962925,0.010322866,-0.0227914564,-0.0109899659,0.0046112468,-0.0460505709,0.0475635827,-0.0340014994,-0.0206594858,-0.0224750992,0.0104122711,0.0116983308,0.0291598607,0.0069151507,0.0161204506,-0.0021955862,-0.0139334621,-0.0056531616,-0.0058560427,-0.003803161,-0.0015190293,-0.0052508381,-0.0262713842,0.0057356898,-0.0000672688,0.0096488874,-0.0078263963,0.0050720274,-0.0152676627,-0.0293524265,0.0064440542,-0.0077645006,0.0014029745,0.0092018619,0.0195728689,-0.0382104218,-0.0329286344,0.0479487143,0.0024689599,0.0025996291,0.0081083672,-0.0127505613,-0.0281420164,0.0050445185,0.0120697068,0.0116983308,-0.0228877403,-0.018114876,-0.0343591198,-0.028444618,-0.0379353277,-0.026092574,0.0037000012,0.0049104104,-0.0189676639,-0.0059592025,-0.0085141286,0.0167394113,0.0176334623,0.0246620905,-0.0071249092,-0.0131563237,0.0057700761,0.020040527,0.0082734227,0.0471234359,0.0014038341,0.009105579,-0.009057438,0.0001367943,-0.0134245399,-0.0190226827,0.0371100493,0.0217185933,0.0029744434,0.0141122723,-0.0095044635,0.0164092984,0.0219386686,0.0073862476,0.014126027,0.0041195182,-0.0111000035,0.0078814151,0.0101096686,0.0562015064,0.00180014,0.0060107824,0.026986625,0.0048657078,0.0030913579,0.0048794625,0.0398059599,0.0057288124,-0.0185137596,-0.0033991181,0.018775098,-0.0108042788,0.0380178541,0.0333962925,0.0261475928,-0.028444618,0.0397509411,-0.0229702666,0.0100821592,0.0062033478,0.0192290023,-0.0072487011,-0.0235892273,0.031910792,-0.0034145922,-0.0093462858,-0.004456507,0.0496542901,0.0184174776,0.0167806745,-0.0019480025,-0.0131700784,-0.0154052097,0.03988849,-0.0068635708,-0.0143185919,-0.0196966603,0.0046800203,0.0061723995,0.0144974021,-0.0202606004,0.0068119909,0.0432996415,0.0057391282,0.0062171025,0.0001738674,-0.0368074477,0.0381003842,0.0373576321,-0.0035057168,0.0170970317,-0.0286922026,0.007840151,-0.0010367568,0.00671227,-0.0163405258,-0.0172483325,-0.0454728752,0.0033337835,0.0071455413,-0.0459680445,0.0180323478,0.0045974921,0.0252810493,0.0030569711,0.0100477729,0.0309204552,0.0191739835,0.0041917302,0.0023967479,0.0024827146],"3":[0.0098336339,0.0132873049,0.0450970866,0.0190369897,0.0406722724,-0.0111070545,-0.0324915126,0.042730324,-0.0501393154,-0.0051419167,0.0144835478,-0.0166830923,0.0208635125,-0.0289928205,0.0172104686,0.0533550233,-0.0188954994,-0.0120717669,-0.0358872972,0.0406208187,0.0082579376,-0.0068365945,-0.0099815568,0.0067915749,-0.0244393796,-0.0021384456,-0.0456887744,0.0399005003,0.0138146803,-0.0830424353,0.0095956717,-0.0480298102,-0.0379453525,0.0212622602,0.0613299794,0.0003760368,0.0292500779,-0.0157826934,-0.0095442208,0.0086695477,-0.0219825786,-0.0222912859,0.049418997,0.0396689698,-0.011582979,-0.0253269151,-0.0237576496,-0.024529418,0.0068816147,0.0200145654,-0.0081035839,0.02739783,-0.0105668157,-0.0302276537,0.0135316979,-0.0296874139,-0.0208892375,0.0784118176,-0.0256098974,-0.0216224194,0.002652959,-0.0640568957,0.0371993072,0.0519143865,0.0042608129,0.0239377283,0.0055953315,-0.0162586179,-0.0261629988,-0.024889579,0.0203232728,0.0583972521,0.0165416002,0.0017413058,0.0512197949,-0.0390515551,-0.0253655035,0.0210050028,-0.0200660173,-0.0473866686,0.0216995962,-0.0029648826,-0.0076212273,-0.0140204858,0.0134673845,-0.017519176,-0.0692020282,0.0061773746,-0.0172104686,0.025159698,0.0079299351,0.0579856411,0.0002273103,0.0278351661,0.0475667492,0.0066307895,0.0489302091,-0.0040839487,-0.0014904805,-0.0031385308,0.0048074829,0.004125753,-0.0141105261,-0.0440166071,0.0105925417,0.0079942495,0.014843707,-0.0061001978,0.0406722724,-0.0065632598,-0.0783089176,0.0303820074,-0.0502164923,-0.0105861099,-0.0441709608,0.0135831498,-0.0149723357,-0.0300475731,0.0282210521,-0.0118273729,-0.0272949282,-0.0179951005,-0.002993824,-0.0346524678,0.0353213325,-0.0497791581,-0.0102838334,-0.0558246858,-0.0426016971,-0.0047463845,0.0677613914,-0.004829993,0.0561848469,-0.0215452425,-0.0012404593,-0.0178021584,-0.0465377234,-0.0689447746,-0.0173905473,-0.0319769979,-0.0022847604,0.0068494575,0.0010024969,0.0012629692,-0.0549500138,-0.015499711,-0.0053766635,0.006010158,-0.0340865031,0.0023748002,0.0048557189,-0.0547956601,-0.0627191663,0.0175063126,0.0366847925,-0.0082386434,0.0485443249,0.0668352693,-0.043141935,-0.0183423962,0.0006178179,0.0380482525,-0.0147922561,-0.0503451191,-0.0423958898,-0.0124254944,-0.0503451191,-0.0353985094,-0.0881361216,-0.0320027247,-0.0444024913,-0.0443510413,-0.0038106136,0.009563515,0.0070359688,-0.0152681805,0.0215838309,-0.0181880426,0.0151138268,-0.0626677126,-0.0492903702,-0.0003794535,-0.0289413705,-0.0087917447,-0.0089911185,-0.0064185527,-0.0842258185,0.0346524678,-0.007106714,0.0403378382,-0.0215838309,0.0721862093,-0.0045148539,0.0437336266,0.0192556586,-0.0230759196,0.0502936691,0.0310251489,-0.0059812167,0.0180208255,0.0228958391,0.0290957242,0.0645714104,-0.0240020435,0.0222784225,0.009100453,0.046280466,0.0011166545,-0.0924580321,-0.0309222452,0.0370964035,0.026960494,-0.0158084203,-0.0048364243,-0.0361702815,-0.0061838059,-0.0488787591,0.0209278259,0.0100458711,-0.0117887845,-0.0112485457,0.0631307736,0.0238991398,-0.0202075075,0.018638242,0.0216481443,0.0078913467,-0.0290185474,0.0441452377,-0.0025082522,-0.005048661,-0.0393602625,-0.0180079639,-0.0461775623,0.0211593565,0.0001339543,0.0267546885,0.0167474058,-0.0239891801,-0.0266260598,-0.0021014651,0.0170175247,-0.0033121789,0.0051869368,0.0205676667,0.0115894107,-0.0095249265,-0.0363760851,0.0483127944,0.0148051186,0.0121360812,0.0127663594,0.0121746697,-0.0223684628,-0.0088367648,-0.0535608269,-0.0139047205,0.0034279444,0.0004061841,-0.0171461534,0.019345697,-0.0314624831,-0.0483642444,0.012264709,-0.0354242362,0.054332599,0.0080649955,-0.0375851914,-0.0196929947,0.0242721625,0.0314624831,0.0197058581,0.0450713597,-0.0320541747,0.0051065441,-0.0130043225,-0.016181441,-0.0076598157,0.0229215641,-0.0037913194,-0.000583249,-0.0034761801,-0.0223684628,0.0159499105,0.0099622626,0.0165544637,0.0234618038,0.0080392696,0.007055263,-0.0407751761,0.0281696003,-0.0263688043,0.019564366,0.03148821,-0.0171718802,0.0132744415,0.0127470652,-0.0068301633,-0.0174162742,0.0179050602,0.0024535849,0.0149851982,0.0126120057,-0.0187797341,0.0111778006,0.0258028395,0.026986219,0.0005663665,-0.0150237866,-0.0176478047,0.0157055166,0.0061998847,0.0026481354,-0.0387171209,-0.0287098382,-0.0380997062,0.0106761502,-0.009441318,0.0019680131,-0.0362474583,0.0064925142,-0.0695107356,-0.0090039819,0.0288641937,-0.015255318,-0.0162843447,0.0324915126,-0.033726342,0.0197187196,-0.0241049454,0.0206962954,-0.0378424488,0.0167988576,-0.0258285645,-0.0115122339,-0.0639539957,0.0109398374,0.0184452999,0.0145349987,-0.0080135437,-0.0127084767,-0.0070038117,-0.0435020961,-0.0206962954,0.0594262779,0.0193714239,-0.0130493417,0.0096664177,0.0257771127,0.0099879885,-0.0181108657,0.0048267771,0.0320799015,-0.0187540073,-0.0033443361,-0.0200145654,-0.0141233886,-0.0381511562,-0.011145643,0.0197701715,-0.0280666966,0.0425759703,-0.0071388711,-0.0140590742,-0.011679451,0.005547096,-0.0190884415,0.0240277685,-0.0074797361,-0.0244651046,-0.006765849,-0.0093834354,0.0032559042,-0.0254684053,-0.0824764743,-0.0252111498,0.0017606,0.0486729518,0.0054056048,0.0704883114,0.0384084135,0.013917583,0.0008401037,0.0254812688,0.0358358473,0.017737845,0.0185739286,0.0069716545,-0.0431162082,-0.0061870217,0.0355528668,-0.0427817777,0.0108883865,0.001067615,-0.0369420499,0.0240920819,0.0314624831,0.0229730159,0.0612270758,-0.019564366,0.0475667492,-0.0110877603,-0.0353213325,-0.0212236717,-0.0056146258,0.0026288412,0.0016014224,0.0219697151,-0.0451485366,-0.0446082987,-0.0255455822,0.0085280566,0.0407494493,-0.0049972096,0.0030259809,-0.0392830856,-0.020902101,0.0313081294,0.0188440476,0.0522488207,0.0229344275,-0.0206191186,-0.0076469532,-0.014843707,-0.0131522445,0.0418813787,0.0521716438,-0.0119817276,0.0193071086,-0.0341894068,0.0142520173,-0.0488015823,0.0377909988,-0.0278094411,-0.0163615216,0.0000460248,0.024941029,-0.0115636848,0.0415983945,0.0043476368,-0.0321828015,-0.0263302159,-0.0050808182,0.004379794,-0.0290442724,-0.0243364759,-0.0002019866,-0.0335719883,-0.0135960123,0.0051161912,0.0343437605,0.019345697,0.0036852011,0.0029053919,-0.0301504768,-0.0334690847,0.036813423,-0.0100844596,0.0276036356,-0.0338292457,-0.021776773,0.0183552597,-0.0339835994,0.0381511562,0.0187025554,-0.0501393154,0.0347296447,-0.0031642565,0.0267804135,-0.0297131389,-0.0142777422,0.0476696528,-0.0142520173,0.0040421449,-0.0270119458,-0.0002944382,0.0467435271,0.0073446766,-0.016181441,-0.0203232728,0.0446082987,0.0155640254,-0.0052480353,0.0373279341,0.0002892127,-0.0019776602,-0.0122775724,0.0441709608,0.0322085284,0.0333661847,-0.0210435912,0.0107854838,0.0453286171,-0.0139561715,-0.00140848,0.0044634026,-0.0436049961,-0.0505251996,-0.0112228198,-0.0141748395,0.0227929372,-0.0107983463,0.0019937388,0.0702310577,-0.0216738712,0.0208120607,-0.0076405215,-0.0343437605,0.0144964103,-0.0483385175,0.0163743831,0.012727771,0.011898119,0.0359644741,-0.0118080787,0.0162972063,-0.0230116043,0.0043186955,0.0157826934,-0.0250825211,-0.0074668736,-0.0467178039,-0.0132358531,-0.0196544062,0.0178793352,0.0281438753,-0.0637481883,0.01708184,-0.0091583356,-0.0280409716,0.0126377316,-0.0171718802,-0.0007999073,0.0116472933,-0.0685331672,-0.002353898,-0.0073575391,-0.0476181991,-0.0341122262,0.0299189445,-0.0008754765,0.0428589545,-0.0048492872,0.0546927564,0.0224713665,0.004865366,0.0212236717,-0.0585001558,-0.0090361387,0.0330060236,0.0501650423,-0.0029536276,-0.0043315585,0.0030533145,0.0493160933,0.0003794535,0.0008923589,-0.0170689765,0.0273206532,0.028735565,0.0099172425,-0.0105796782,-0.0388457514,-0.0008770843,-0.0114157628,0.0505509265,0.0282467771,-0.0458945818,-0.0200402904,0.0362731852,-0.0200788788,0.0292758029,-0.0050872499,0.0459460318,0.0324400589,0.0127470652,-0.0123933377,-0.0144192334,0.010753327,0.0060198051,-0.0338806957,-0.0317969173,-0.0276550874,0.0380225293,-0.0321313515,0.0144192334,0.0147022158,-0.0010861052,0.0491102897,-0.0067015351,-0.025867153,0.0123547493,-0.0174677242,-0.0014904805,0.0204647649,-0.0128499679,0.033314731,-0.0037044953,-0.0391544588,0.0350640789,0.0207606088,0.0217381846,0.0222141091,-0.0102323825,-0.0008947707,0.0200531539,0.0332375541,-0.0032478648,0.0329545736,-0.0200402904,0.0140333483,-0.0054441933,-0.0229344275,-0.0146764899,-0.0140848001,-0.0041225376,-0.0203747246,-0.0150881009,-0.0029488041,-0.0175577644,-0.0230244678,-0.0484414212,-0.0205419417,-0.0162586179,0.0285554845,0.018638242,-0.0143291941,-0.0357843973,-0.0163229331,0.0221497957,-0.0307421666,0.0087531563,0.0142262913,-0.01576983,0.0100651653,0.0204776265,0.0446082987,0.0290699974,0.0375337414,0.0083286827,0.0484414212,0.0290442724,-0.0194871891,0.0068430263,0.0257642511,-0.0379196256,-0.0260729585,0.0347810946,-0.0106182666,-0.0164901502,-0.002519507,-0.0492646433,0.0470522344,0.0099879885,0.0092419442,-0.0056628613,-0.036401812,0.0116151366,0.0183038078,0.0417270251,-0.0825279206,-0.0125605548,-0.0033829245,0.0162328929,-0.0303048305,0.0197830349,0.0360159278,0.0242721625,0.0315139368,0.0125991432,-0.0176220778,0.0005245623,0.0365561657,0.0112871341,0.0043058326,0.0074218535,0.0169146229,-0.050731007,0.0309222452,0.0579856411,-0.0216995962,0.0018522476,-0.0148694329,-0.0138661321,0.012335455,0.0082129175,-0.0121939639,-0.0032575119,0.035038352,0.0134030702,0.0085537825,0.0017927571,0.0049103857,-0.0363760851,-0.0249024406,0.0008376919,-0.002122367,0.0008127702,-0.0194357373,-0.0504994765,-0.0063671013,-0.0097114379,-0.0529434122,-0.03280022,0.0039971247,0.0162457563,-0.0172233302,-0.0274750069,0.0276293606,-0.0304591842,-0.0437850766,-0.0017911493,-0.0197958965,-0.0068430263,-0.0239248667,-0.0035630043,-0.0265488829,0.024233574,-0.0206705704,-0.0081550349,-0.0423187129,-0.0165030118,-0.0162843447,-0.0468978807,0.0550014675,-0.0238734148,0.0163100697,0.0485443249,0.0021947206,-0.0134545211,0.0093062585,0.0065053767,0.0073253824,0.0049425429,0.0065471809,-0.0153196314,-0.0412896872,0.0340350494,-0.0340865031,-0.0199631136,-0.0262659006,-0.0064153369,0.0051772897,-0.012579849,-0.0029407647,-0.0317197405,0.0033186104,0.0764052197,0.0237447862,0.0106697185,0.0028346465,0.0099815568,-0.0029182548,-0.0221369322,-0.0228701141,-0.0215966925,-0.0077691502,-0.0026320568,-0.0009124571,0.0201817825,-0.014380645,0.0040357132,-0.0118659614,0.026986219,-0.0024069573,0.0338806957,-0.0041321847,-0.0131072253,-0.0051612109,-0.0547442101,-0.0008698489,-0.0067336923,-0.0050325827,-0.0144192334,-0.0017380901,0.0095956717,-0.006582554,0.0279123429,0.0090039819,-0.0066822409,0.0524289012,0.0248767156,-0.0376880951,-0.0372764841,-0.0107018752,-0.0162457563,0.0021062887,-0.0142777422,0.0015427358,-0.0234618038,-0.0338292457,0.0187154189,-0.0079299351,-0.0041225376,0.0231916849,-0.0066693779,-0.0076791099,-0.0620502979,-0.0096149659,0.005315565,0.017956512,-0.0204133131,0.0443510413,0.0062545515,0.0100908913,0.0423958898,-0.0264717061,0.0229987428,-0.0581399947,0.0090554329,0.0114993714,0.0071838913,0.0082579376,0.008296526,0.0143677825,0.0144706853,0.0259957816,-0.0071774595,-0.0213780254,-0.0007725738,0.0599407926,0.0144192334,0.0226385836,-0.0314110331,0.0307164397,0.017737845,-0.0186896939,-0.0099429684,0.0048106988,-0.0135831498,0.0212493967,-0.0315911137,0.007981387,0.0192556586,0.0101487739,-0.0217896365,-0.0520430133,0.0012557339,-0.0369677767,0.0367105193,-0.0371221304,0.0295330603,-0.0148051186,0.0171590168,0.0145221362,-0.0116022732,0.0159370471,0.0058815293,0.0040324978,-0.0023796237,-0.0008754765,0.0068365945,0.0003334287,-0.0292500779,-0.0133258933,-0.0177892949,-0.0086888419,-0.0385627672,0.0142520173,0.0105925417,-0.0568537116,-0.0285554845,-0.0107726213,-0.0059329807,0.0398233235,-0.009563515,0.0254169535,0.0367105193,0.0346781909,0.0136474641,0.0109076807,0.0067787119,-0.0266260598,0.028298229,-0.017544901,-0.0025918605,-0.0363246351,-0.0026417039,0.0205162149,-0.0184067115,0.027372105,-0.0251082461,-0.0143420566,-0.0126891825,-0.0056242729,0.0306907147,-0.022677172,0.0129335765,-0.0104767755,0.0018651105,0.0078656208,0.0255584456,0.0091519039,0.0070102429,-0.0026979789,0.0039617522,-0.0149851982,0.0121489437,0.0077498555,0.0185224768,0.0025677427,-0.0106697185,-0.0238348264,0.0181880426,-0.0056114099,-0.0076598157,-0.011486508,-0.0208506491,-0.0009285356,0.012457652,0.0028475092,0.0065150238,0.0086438227,0.0030517066,-0.0378938988,0.0025130757,-0.0298160426,0.0830424353,0.0140204858,-0.0103610102,0.0596835352,-0.0089139417,0.0007556913,0.0379968025,-0.0006415337,0.004489128,0.0073575391,0.0164901502,0.042215813,0.000748054,0.0628220662,0.0140076233,-0.0222269725,0.0231273696,0.0103931678,0.0130493417,0.030510636,-0.0121682379,0.0308193434,0.0067594177,0.0261244103,0.019345697,-0.0087274313,-0.016155716,0.028787015,-0.0088110389,0.0472323149,0.0429104045,-0.0346010141,0.0045695207,0.0683273599,-0.0415983945,0.0467692539,-0.024477968,-0.0516314022,-0.0043894411,0.0143034682,0.0130750677,0.0245680083,0.0111585064,0.0109076807,-0.0037559466,-0.0244393796,-0.0272692014,0.0077498555,-0.0145092737,-0.0007970936,0.0100587336,0.0070102429,0.0455344208,0.0485443249,-0.0004091988,0.020220371,0.0200917423,0.0208120607,0.0247480869,0.0205162149,-0.0198730733,0.0135316979,0.0038749278,0.0318740942,0.0345238373,-0.002980961,-0.026934769,-0.0284011308,0.0093512777,-0.0056918026,0.0156154772,-0.0071517341,0.0105025014,0.0082322117,0.00323661,0.0185482018,0.0239505917,-0.0017815022,-0.0406465456,0.0215066541,-0.0404150151,0.0119367074,-0.0166059155,0.0045566577,-0.0143677825,0.0208377857,-0.0006539946,-0.0205676667,-0.0382540599,0.0134159327,0.0035469257,-0.0404407419,0.0098657915,-0.0253526401,-0.0197830349,0.014599313,0.0075826389,0.0117180394,-0.03012475,-0.0200274289,-0.0294044316,-0.0259571932,-0.0138404062,0.0239120033,-0.0257385243,0.0215966925,0.0383312367,-0.0281438753,-0.0239505917,0.021776773,0.0042415187,0.0191527549,0.010804778,-0.0012629692,0.0079878177,0.0225871317,0.0045598736,-0.0568537116,-0.0217639096,0.0275521837,0.0161171276,0.0465377234,0.0471036881,-0.0011841843,-0.0230759196,-0.0038588494,0.066989623,0.0061162761,0.0321056247,-0.0183423962,-0.0029118233,0.0058107837,-0.0043026172,0.0187025554,0.0191141665,0.0016576974,0.0195257775,0.0210564546,-0.0016657367,-0.0178150218,-0.0151652778,0.025159698,-0.0158341452,0.0019953467,-0.0050100726,-0.0170303881,0.0009494377,-0.00854092,0.0042897542,0.0182394944,-0.0189855378,0.0088946475,0.0149466097,-0.0250053443,-0.0112678399,0.0207606088,-0.0561848469,-0.0034022189,0.0134416586,-0.0209149625,-0.0535093769,0.0162328929,-0.0046917177,0.0009590848,0.0139947599,0.011679451,-0.0098336339,0.0114414878,0.0000379855,-0.0294301566,-0.012046041,-0.0018024042,-0.0207220204,0.0063445913,-0.0236161575,-0.0030452753,-0.0020966416,0.0142262913,0.0063349442,-0.0245937333,0.019294247,-0.0021963285,0.0198473483,0.0411610603,0.0175963528,-0.0116858818,-0.028298229,-0.0050229356,0.0012308122,0.0257899761,-0.0063703172,0.0338035189,0.0000589881,0.0269090421,-0.0086245285,0.0279380698,0.0260600951,0.0376366451,-0.0059458436,0.0350126252,-0.006119492,0.0356814936,0.0185096134,0.0204519015,-0.00565643,0.0044955593,0.0138404062,0.0058783139,-0.0050872499,-0.0137632294,0.0088689225,-0.0090618646,0.0194100123,0.0099365367,-0.0221497957,0.0072739311,0.0089525301,0.0026658217,0.0228443872,0.0133644817,0.0012139297,-0.0203361362,-0.0000924014,-0.0136860525,0.0185610652,0.0045534424,0.0194228757,0.0068623205,0.0199245252,0.013042911,0.0595806353,-0.0124705145,-0.0120589044,-0.012727771,0.0134030702,-0.016181441,-0.0054699187,-0.0044698338,0.0200917423,0.0075183245,-0.024941029,-0.0229730159,-0.0478754565,0.0270891227,0.0028201756,-0.0360931046,-0.0159113221,0.0385627672,0.000770162,0.0086566852,0.0187797341,0.0182523578,-0.0215066541,-0.0291986261,-0.0130557735,0.007286794,0.0085859401,-0.011023446,-0.0159884989,0.0335977152,0.0034182973,-0.0291986261,0.0073125195,0.0343180336,0.018663967,-0.0099301059,-0.0400291309,-0.0056628613,0.0085023316,-0.0018345612,-0.0101487739,-0.0148565695,-0.0124898087,-0.0129593024,-0.015525437,0.003291277,-0.0033121789,0.0027349594,-0.0078077386,-0.0058075683,-0.0236161575,-0.0350640789,0.0069330661,-0.0216095559,0.0085280566,-0.0089589618,0.0605582073,0.0220597554,0.0211593565,0.0526604317,-0.0077948757,-0.0110620344,-0.0214809272,0.0260472335,-0.0347039178,-0.0228701141,0.0244136527,-0.0092805326,0.0123097291,-0.0196544062,0.0036498283,0.0341894068,0.0159499105,0.0058043525,0.0336491652,0.0280152466,0.0279637948,0.0557732359,0.0225356799,-0.026986219,0.001869934,0.023165958,-0.0160528123,0.0427046008,-0.0190755781,-0.0111006228,-0.0017107566,0.0001834963,-0.0069973799,0.0315396599,0.0107854838,-0.0170303881,0.019975977,0.0023313882,-0.0133902067,-0.0052319565,-0.0693049356,-0.0309736971,-0.0023908787,-0.0056853713,0.0180336889,0.0215066541,-0.0077241301,0.0186253786,0.0097950455,-0.0046692076,0.0002542419,-0.0367105193,0.0278866179,-0.0019133461,-0.0123225925,0.0073189507,0.005730391,0.024889579,0.0139304465,0.0259443298,-0.0062738457,-0.0116923135,-0.0323371589,-0.0345495641,0.0164386984,-0.0176606663,-0.0295073353,0.0207348838,0.0236547459,-0.0099301059,0.0298417676,-0.0123547493,0.0151395518,-0.0081228781,0.0054634875,-0.0098400656,0.0470522344,-0.007396128,0.0168245826,-0.0061227074,0.0090940213,-0.0103738736,0.0229344275,0.0268833172,-0.0705397651,0.0371478572,-0.0230373312,0.010000851,0.026986219,-0.021120768,0.0280409716,-0.017519176,0.0092933951,-0.0070231059,-0.0235904325,0.0045920308,0.0304334592,0.0194100123,0.039077282,-0.0212622602,0.0318740942,-0.0147150783,-0.0088689225,-0.0162457563,-0.0015346966,0.0196286794,-0.0039713993,-0.0226128567,0.026253039,-0.0217253212,0.0114543512,0.0062095318,-0.0082836635,0.0051805051,0.0058815293,-0.0230373312,0.010560384,0.0017445214,0.0108176414,-0.0047528162,-0.0289413705,0.0177249815,-0.0178278834,0.0015049513,-0.0062063159,0.0023844473,0.0043733628,0.0254169535,-0.0215966925,-0.0063445913,0.0011632823,0.0040743016,-0.0060487464,0.012798517,-0.0024986048,-0.000058335,0.0111649372,0.0355271399,0.0132873049,0.0077691502,0.0156797916,-0.0080649955,-0.0092290817,0.0160914008,0.0063735326,-0.0068494575,-0.0049875625,-0.0190369897,0.0030034711,0.0232045464,-0.0172104686,0.0275779106,-0.0065761223,0.0357586704,0.0000496927,0.0133130299,-0.026986219,0.0644685104,-0.0029455882,-0.0216224194,-0.0002771538,0.0373279341,0.0162714813,-0.0158470087,0.001903699,-0.0193328355,0.0205419417,-0.0244136527,0.021802498,0.0456630513,0.023796238,-0.0291729011,0.0007271519,-0.0072031855,-0.0199245252,-0.003839555,0.0166187771,-0.0027848028,-0.0187668707,0.0190241262,0.0232431348,-0.0545384027,0.0137117775,-0.0063574542,-0.0174548626,-0.0191656183,0.0250953827,0.0191270299,0.0343437605,0.0131136561,0.0285040345,0.0164644234,0.0102066565,-0.008347977,0.0302533787,0.0276808124,0.0107983463,-0.0170561131,-0.0420614593,0.0119945901,-0.0043186955,-0.0141491145,0.0006978086,-0.0180980042,-0.0068108691,0.0201689191,0.0139818974,0.0065021613,0.0076083648,0.0257127993,-0.0127599286,-0.0258285645,-0.0190755781,0.0183938481,-0.0136346007,-0.0020580529,0.0140204858,-0.0072610681,-0.0357329436,0.0207477473,0.0167088173,0.0134931095,-0.0159241855,0.0015821282,0.0128242429,-0.0091326097,0.0055953315,-0.0212365333,-0.0066758092,0.0274492819,-0.0183938481,-0.0192042068,-0.0097050061,-0.0016191088,0.0044441083,0.0354499631,-0.0114028994,0.0307936184,-0.0082579376,-0.0456373245,-0.0209149625,0.0218282249,-0.0255198572,-0.014817981,-0.0162328929,-0.0001023499,0.007286794,-0.008663117,0.0358872972,0.0207606088,-0.0176606663,-0.03012475,-0.0123290233,-0.0185482018,0.0482098907,-0.0105153648,-0.0099751251,-0.0398233235,0.0033057476,0.0174548626,0.0033250418,0.0458945818,-0.0222141091,-0.011119917,0.011460782,0.0128563996,-0.0008232212,-0.0076212273,0.0256613474,0.0189984012,0.0000932555,-0.0062931399,0.0004063851,-0.0290957242,-0.0122132581,-0.0289413705,0.0209149625,-0.0291986261,0.0190755781,0.0091454731,0.0151781403,0.037765272,0.0125991432,-0.0059683537,0.0061227074,0.0348582715,-0.0375851914,0.024503693,0.001958366,0.0290185474,-0.0196158178,0.0152295921,0.0184452999,0.0059458436,-0.0005000426,0.0194100123,-0.0317969173,0.0211850833,-0.0178021584,0.0051965839,0.0131329503,0.0066758092,0.0017204037,0.0180851407,0.0268061403,0.019294247,-0.0237447862,-0.002664214,-0.0212493967,0.0268061403,0.0017750707,-0.0103159901,-0.0212365333,-0.020683432,0.0144706853,-0.009659986,-0.0001074247,0.005280192,-0.0226128567,-0.0544355027,0.0237447862,0.0092741009,-0.0166702289,-0.0216095559,0.0246709101,0.0236804727,0.0296874139,0.0311537776,0.0263945293,0.0030452753,0.0033700617,0.0245422814,-0.0201560557],"4":[-0.0063303332,0.0187095795,0.0579143018,-0.0007694574,0.0507203005,0.0269128121,0.012984138,0.0067023253,-0.0301734023,0.0199258327,0.0220607426,-0.0338221602,0.0245967582,-0.010098774,-0.0022254826,0.0587941445,-0.01904599,-0.0282843299,-0.0128806271,0.0483395495,0.0181014538,-0.0019084807,0.0106422054,0.0170922242,-0.0195376668,0.0084231924,-0.0028756598,0.0135211004,0.013844572,-0.071267195,0.0167946294,-0.048857104,-0.0193565227,0.0286466181,0.0627793074,0.0092189321,0.0261752978,0.0178038608,-0.0059486371,0.013754,-0.0088048885,0.009613567,0.0120396018,0.0342362039,0.0124730533,0.0277926549,-0.0249719843,-0.0182179045,-0.0374709144,0.0507203005,-0.0214526169,0.0413266942,0.0085072955,-0.0200293437,0.0025570407,-0.0245061852,-0.0332010947,0.025101373,0.0035355412,0.0165229142,0.0125830332,-0.0677995831,0.0576555245,0.0559475943,-0.0137022445,0.0270680785,-0.0292418059,0.005625166,-0.0206504073,0.0184508022,0.0262788087,0.0548607334,-0.0118196411,-0.0154878059,0.0362029076,-0.0463987216,0.012790055,0.0311308783,0.0238851216,-0.0226429906,0.0125312777,-0.004803549,-0.0263952576,0.0011515578,0.0153713562,-0.0162770767,-0.0299922582,0.0028966854,-0.012699483,0.0027139243,0.0263823196,0.0428793542,-0.0043248115,0.0138316331,0.0526352488,0.0184378643,0.0230311565,-0.0037069812,-0.0245320629,0.0212197173,0.0221383758,-0.0064823651,-0.047304444,-0.0445096493,0.0327352956,-0.0403692201,-0.0078991689,0.0131199956,0.0120784184,0.0203010589,-0.0740102306,0.0136116724,-0.065677613,-0.0037328587,-0.0320107192,0.006343272,-0.0144785754,0.0072781043,0.0179720651,-0.0032799989,-0.0322694965,-0.0040595648,0.0017014591,-0.0252825171,0.0426723324,-0.026447013,0.0168334469,-0.0324506424,-0.0383248813,-0.0032088354,0.0779436454,0.008371437,0.0481842831,-0.044250872,-0.0013052067,0.0000951713,-0.0559475943,-0.021918416,0.0007912916,-0.0438885875,0.0096653225,-0.0229923408,0.0265505239,-0.0004322385,-0.0545502007,0.0340033025,0.0077568418,0.0700768232,-0.0380661041,0.0360993966,0.0097170779,-0.0292935614,-0.0126606664,0.0037716753,0.0224747863,-0.0174545106,0.032398887,0.0592081882,-0.0297852382,-0.0304580573,-0.0202493034,0.0327870511,0.0004860156,-0.0362287872,-0.0532045588,-0.0311826337,-0.0660916567,-0.0072781043,-0.0629345775,-0.0333046056,-0.0322436206,-0.0577072799,0.0026120308,-0.0025441018,0.0069352249,-0.010098774,-0.0288277622,-0.0507979318,0.0278444104,-0.0539291352,-0.027404489,0.0115285171,-0.0209221244,0.019912893,-0.0180496983,0.0072781043,-0.0716812387,0.0375744253,-0.0073557375,0.0615889356,-0.0315966755,0.0182049647,-0.0166264251,0.0295782164,0.0251531284,-0.0285948627,0.0452083498,0.0356594771,-0.0216078833,0.0237945486,0.0437850766,-0.009516526,0.0684206486,-0.0348831452,0.0188907236,0.0175838992,0.0317001864,-0.0001994403,-0.0521176942,-0.0446390398,0.0160312373,-0.0090119103,-0.0430346206,-0.005004101,-0.0205080807,-0.0090960134,-0.0627275556,-0.0022691512,0.0019149501,-0.0267575458,0.00422777,0.0321142301,0.0079379855,-0.0189036634,0.0080026798,0.0175580215,0.0062559349,-0.0498922132,0.0320107192,-0.0196282379,-0.0263435021,-0.0191624407,-0.0098723443,-0.0652635694,-0.0057027992,-0.0031473758,0.016354708,-0.0127124218,-0.04903825,-0.0373415276,-0.0558958389,0.0003131606,-0.0267834235,0.0008345559,-0.0033042594,0.0240145102,-0.0198870152,-0.0506685451,0.0457517803,0.0362287872,0.0135211004,0.0028691904,0.0050590909,-0.0090636658,-0.0351677984,-0.0626240447,0.007258696,0.0105128177,-0.0063626803,0.0057416158,0.0253472105,-0.0175838992,-0.0181143936,0.0244026743,0.0045965272,0.0645907521,0.0058613,-0.0238980595,-0.0361770317,0.0007286191,0.0162123814,0.0314672887,0.049529925,-0.0454153717,0.0121107651,-0.0355042107,-0.0195376668,-0.0109139215,0.0125312777,-0.0049879276,0.0053728581,-0.034624368,-0.0021834313,0.009613567,0.0288018845,0.0172216129,0.0102022849,0.0398257859,-0.0015114197,-0.0306392014,0.0124795232,-0.031648431,-0.0058613,-0.0017774748,-0.0168075692,0.0250108,-0.0401621982,-0.0053049293,-0.0198740773,0.0024826422,0.0047517936,0.0043086377,-0.0062235878,-0.0108945137,-0.008746664,-0.0045027207,-0.0033867445,0.011056249,-0.0135340393,0.0114185372,0.018179087,-0.0228629522,-0.0102799181,-0.0517036542,-0.036746338,-0.005194949,0.034520857,-0.0399810523,0.0014823072,-0.0438885875,0.0014790725,-0.0763909817,-0.0204692632,0.0141033484,-0.0082161706,-0.0156430714,0.0005369624,-0.0283878408,0.0163417701,0.0143491868,0.0381178595,-0.0191624407,0.0166781805,0.0119360909,-0.0124601144,-0.0697145313,0.0076080449,0.0576555245,-0.000628343,-0.0128353415,-0.0260976646,0.0124795232,-0.0116967224,-0.0021446147,0.0121042961,0.0147761693,-0.0270422008,0.0264340751,0.0245838184,-0.0098788133,-0.0485724509,-0.0155136837,0.0144138811,0.0080220886,0.0429828651,-0.0074204318,0.0018809856,-0.0326317847,-0.0300440136,0.0021850485,-0.0034223264,0.02942295,0.0163676478,-0.0350901671,-0.0255671721,-0.0035678884,-0.0289571509,0.0235745888,-0.0282066967,-0.0053308071,0.0058451262,0.0059745149,-0.0202881191,-0.0126218498,-0.0651600584,-0.0096976692,-0.0048391307,0.0420512706,0.0021171197,0.0386095345,0.0241827145,-0.0159018487,0.004182484,-0.0123242568,0.0372121371,0.0348055102,-0.0031797229,0.032217741,-0.0676960722,-0.0124277677,0.0300181359,-0.0194729716,0.0257612541,-0.0143233091,-0.0465798676,-0.0103316735,0.0330975838,-0.0029694666,0.0418960042,0.0132170375,0.0326576643,-0.01904599,-0.0446907952,-0.0179850049,0.0020702162,0.0091024823,0.0302769132,0.0225653574,-0.0284913518,-0.0478737541,-0.0006360254,0.0386871658,0.0347796343,-0.0133399563,0.0226041749,-0.0367204621,-0.0102605093,0.0307427123,0.0318813324,0.0684206486,0.008656092,-0.0196929332,-0.0175580215,-0.0034417347,-0.0089536859,0.0558958389,0.0428275988,0.0069805104,0.010577511,-0.0437074415,0.0133399563,-0.0319848433,0.0642802194,-0.016147688,-0.01442682,0.0174027551,-0.0019456799,-0.0347537547,0.0255024768,0.0073751458,-0.0366687067,-0.0193953384,0.0192530118,0.029707605,-0.0588459,-0.0094065452,-0.0083973147,-0.0346502438,-0.0128094638,-0.0178685542,0.0373674035,0.0259035826,0.0073945541,0.0034287958,0.0123889511,-0.0327611715,0.0275079999,-0.0209350623,0.045570638,-0.0319072083,0.0014143783,0.0339774266,-0.0525834933,0.0126671363,0.0238592438,-0.0321401097,0.0685759187,0.0187225193,0.0061394852,-0.0428534783,-0.0004880373,0.0349866562,0.0246485136,-0.002671873,0.0038072572,0.0192271341,0.0372897722,0.0089536859,-0.0050364481,-0.0035970008,0.0449236929,0.0055669411,-0.0031781055,0.0179850049,-0.0033155808,0.0537221134,-0.0039560539,0.0196023602,0.017596839,0.0399810523,-0.0502803773,0.0203010589,0.0401104428,-0.0137410611,-0.0009971003,-0.0037684406,-0.0677995831,-0.0492452718,0.0196153,0.0029791708,0.0364616849,0.0031603146,0.0112050455,0.0628310665,0.0044250875,0.0177650433,-0.0129517913,-0.010577511,0.007595106,-0.068161875,0.0306650791,0.0212973505,0.0137151834,0.0328129269,-0.0143233091,0.0189166013,-0.0162382592,0.011735539,-0.0040627997,-0.0117549468,-0.027119834,-0.0546537116,-0.0366945826,-0.0099758552,-0.0117420079,0.0280514304,-0.0554300435,-0.0120525407,-0.0182696581,-0.0548607334,0.0245450027,-0.0337186493,0.0105839809,-0.0275856331,-0.0745795444,-0.0122401537,-0.0131652821,-0.0402139537,-0.0410937928,0.0333046056,0.0011289149,0.020482203,-0.0026168828,0.03979991,0.0174286328,-0.0022384215,0.025968276,-0.0212973505,-0.0128741581,0.0288277622,0.0470715426,-0.0061880061,-0.0086302143,0.0022756206,0.0524799824,0.0032832336,0.0055669411,0.0497369468,0.0122983791,0.0293194391,0.0109139215,0.012020193,-0.0248814132,-0.0284137186,-0.0295264609,0.0462952107,0.0277408995,-0.0382472463,-0.031726066,0.0424653105,-0.0205210187,0.0253472105,-0.0023112025,0.0364875644,0.0123824812,0.0218666606,-0.0283360854,-0.0330975838,0.0260459092,-0.025386028,-0.0461916998,-0.0433451533,-0.0244156141,0.0238333661,-0.0412749387,0.012984138,0.023652222,-0.0060359742,0.0235098936,-0.024519125,-0.0463210903,0.0085525811,-0.0069999187,-0.0178944319,0.0308462232,0.0016804334,0.0392306,0.0104869399,-0.0311308783,0.0327611715,0.019899955,0.0032767642,-0.0039010639,0.0011871397,-0.0349866562,0.019524727,0.0102411015,-0.0076339226,0.0315966755,-0.0045771189,0.0390753336,0.0031312022,-0.0242215302,-0.0144915143,-0.0231346674,-0.014142165,-0.0359958857,0.0035970008,0.0149961291,-0.03979991,0.0073880847,-0.023846304,-0.0241697747,0.0034579083,0.0160182994,0.0379625931,-0.0225912351,-0.011347373,-0.037988469,0.0200422816,-0.0200293437,0.0062591694,0.0286207404,0.0131588122,0.0063076904,0.0312602669,0.0416372269,0.0335892588,0.0279737972,-0.0184766799,-0.001538106,0.0330975838,0.0018890724,-0.0038719515,0.0192659497,-0.0234840158,-0.0158759709,0.0361511521,0.0051431935,-0.0203139968,0.0296558496,-0.040964406,0.0857069567,0.0161347482,0.0167816915,-0.0143750645,-0.0493746586,0.001487968,0.0065567633,0.0441732407,-0.0653670803,-0.0216208212,-0.0042180656,0.014517392,-0.0219831094,0.013081179,0.0167558137,0.0195376668,0.0109721469,0.005625166,0.0179073717,0.0365910716,0.0424653105,-0.0041307285,0.0055863494,0.0077180252,0.010765125,-0.0498663373,0.0190848075,0.0715259761,-0.0277926549,0.0166264251,-0.0241050813,-0.0148408636,0.0403950959,-0.0128741581,-0.0168334469,-0.0100211408,0.0318813324,0.0031781055,0.0291900504,-0.0040595648,-0.0038848903,-0.0362805426,-0.0069869799,0.0220995601,-0.008753133,0.0489347391,-0.0073233903,0.016445281,-0.007019327,-0.0081320684,-0.0430087447,-0.0271974672,-0.0037360934,0.0001993392,-0.0146209029,-0.0325800292,0.0176744722,-0.0613301583,-0.024143897,0.0039981054,-0.0018486385,0.010771594,-0.0205210187,0.0111209434,-0.0398257859,0.0357888639,-0.0079509243,-0.0140257152,-0.0383766368,-0.0276115108,-0.0137798777,-0.0525317378,0.0387906767,-0.0344949812,0.0179979429,0.0353748202,0.0017985004,-0.0016982243,-0.0108880438,0.0033058766,0.0130164847,0.0166523028,0.0205339584,-0.0011378103,-0.0410937928,0.0299663804,-0.0316225551,0.0079509243,-0.0200810991,0.0097300168,-0.0068187751,-0.0366428271,0.0153325396,-0.0229923408,0.0126024419,0.0546019562,0.0362029076,-0.0052758171,-0.0050202748,0.0100534884,-0.0106292665,-0.0216466989,-0.028750129,-0.0230182186,-0.0252307616,-0.000256351,-0.0054084403,-0.0049070595,0.0138833886,0.0237169154,-0.0257741939,0.0117096612,-0.0027721489,0.0112373931,-0.0265764017,-0.0107004307,0.0083973147,-0.0351160429,-0.0137022445,-0.0173639394,0.0110691879,-0.00428276,0.0485206954,-0.001769388,0.0151125789,-0.002136528,-0.000955049,0.0065276506,0.0265505239,0.0036002356,-0.0271715894,-0.0297852382,-0.0363840535,-0.0144656366,0.0077503724,-0.0002365384,0.000234921,-0.0326317847,-0.0081061907,0.0218666606,0.0028708079,0.018166149,0.006006862,-0.0143750645,-0.0083973147,-0.1051152349,-0.0201457925,0.0125312777,0.0151384566,-0.0091412989,0.0411196724,-0.0141809816,0.0240015704,0.0610196255,-0.0315707996,0.0017904136,-0.0625205338,-0.01115329,-0.0067799585,0.0177262276,0.0165876076,0.0194082782,0.0252825171,0.0012599208,-0.0047873752,0.0116255581,-0.0008288952,-0.0182567202,0.0391529649,0.0111726988,0.0100470185,0.0008952068,0.0215302501,0.0034190917,-0.0068899388,-0.0020653643,0.0035970008,-0.0183472913,0.0035031941,-0.0263046864,0.0026087961,0.0110368412,0.0167816915,0.0026314391,-0.0520659387,-0.0057901363,-0.0386354104,0.0466833785,-0.0564133935,0.0342879593,0.009231871,0.0252825171,0.0070063882,-0.026162358,0.0074527785,0.008073844,0.0004670117,-0.0022303346,-0.0082485182,0.0275856331,0.0081579462,-0.0165746696,-0.0476926081,-0.0243767966,0.0107974717,-0.0335633829,0.0111468211,0.0285431072,-0.0586906336,-0.0287242513,-0.0388941877,0.0055960533,0.0195376668,0.0056445743,0.0204951409,0.0351160429,0.0260329694,0.032709416,0.006974041,0.0008984415,-0.0139222052,-0.000862051,0.0048682429,-0.0264340751,-0.0046353438,0.0118778665,0.0159018487,-0.0096329749,-0.0124407066,-0.018657824,0.0003626922,0.0010520904,-0.0113991285,0.0223324578,-0.0039334111,0.0109009827,0.0036681646,0.0054278485,-0.0014265084,0.0163805857,0.0007391319,0.0042083617,-0.0153454784,-0.002400157,0.003098855,0.0146855973,-0.0025360149,0.0093353819,-0.0061491895,-0.0113085564,-0.0227723792,0.0212197173,-0.0036681646,0.0166134853,0.0026233522,-0.0273786113,-0.0076856781,0.0094130151,-0.0093483208,0.0111985765,-0.0088048885,0.0196799934,-0.0171181019,0.0049005901,-0.0369016044,0.049711071,-0.0019133327,-0.0186837018,0.0664021894,-0.0242732856,0.0030244566,0.0457517803,-0.0033188155,0.0065632327,0.0306133237,0.0073298598,0.0612266473,0.0008082739,0.0776848644,0.0230570342,-0.026162358,0.0104675312,0.036927484,0.0303286687,0.054808978,0.0031603146,0.0306392014,-0.0021041809,0.0291900504,-0.0044153831,-0.0173639394,0.0200034659,0.0038137266,-0.0221513137,0.0301475246,0.0397740304,-0.0123760123,-0.012693014,0.0486500822,-0.0206115916,0.0536186025,-0.0334857479,-0.0603468046,-0.0032557386,-0.0103640202,-0.0125700943,0.0006465383,0.0216984544,-0.0050008665,-0.0021656402,0.0067799585,-0.0054019708,0.0166005474,-0.0166911185,0.001138619,0.0173639394,0.013948082,0.034520857,0.0609161146,0.0273786113,0.0454412475,0.0234063827,0.0201328546,0.0118649276,0.0271457117,-0.0270680785,0.0025020505,0.00024321,0.0267575458,0.0378332026,-0.0040951464,-0.0324506424,-0.0140515929,0.0178426765,0.0174415726,0.00157854,0.0230958499,0.008080313,0.0079379855,-0.0327870511,0.0307168346,0.0167169962,-0.0051270202,-0.0184896197,0.0209868178,-0.0318295769,0.0086172754,-0.0266281571,-0.0021996049,0.017790921,0.0173509996,0.0005349407,0.0182567202,-0.0464763567,0.0361252762,-0.0010245953,-0.017790921,-0.0013124848,-0.0251272507,-0.0212844107,0.0232640561,-0.0004771202,0.000977692,-0.0206892248,-0.029138295,-0.0378849581,-0.0241180193,0.0062947515,0.0022060743,-0.029914625,0.001792031,0.0311308783,-0.0049135289,-0.0013771791,0.0253342725,-0.0061944756,0.0158889107,-0.0008288952,0.010389898,-0.0110109635,0.0103640202,-0.0175580215,-0.039049454,-0.0180496983,0.0037781447,0.019524727,0.013081179,0.0377555713,-0.0298369918,-0.0354265757,-0.0078021279,0.0365651958,0.0246096961,0.0558440834,-0.0115543948,0.0152678452,0.0074204318,-0.0060295048,-0.0038751862,0.0265246462,-0.0013666663,0.0253472105,0.0216855165,0.0084361313,-0.0237686709,-0.0039075334,0.0111791678,-0.0173898172,0.0076533309,0.0002547337,-0.0073427986,-0.0089730937,0.0163288321,0.0102411015,-0.0036034703,-0.0145432698,0.0178297386,0.0228111967,-0.0196670555,-0.016639363,0.0258130096,-0.0645907521,-0.0034902552,0.0100664273,-0.0384542681,-0.0253083948,0.0056445743,-0.0121301739,-0.0092577487,0.0467868894,-0.0160700548,0.0012057392,-0.022694746,-0.0023856009,-0.0150867011,-0.0143880034,-0.0053663887,-0.0148667414,0.0215173103,-0.0237298552,0.0014944375,-0.0013003546,0.0193565227,-0.0046321088,-0.0335375033,-0.0155654391,-0.0172863062,0.0236263443,0.0474597104,0.0196670555,0.0033673362,-0.0126671363,-0.022694746,0.0175838992,0.0268869344,-0.0001817504,0.0336151384,0.0031150286,0.0400586873,-0.0069093471,0.0335892588,0.0044541997,0.0302510355,-0.0069869799,0.0138704497,-0.0149702514,0.0301475246,0.0125054,0.0191236231,0.0174156949,-0.0332528502,0.032890562,0.0049555805,-0.0096588526,0.0138575109,-0.0006287473,-0.0002058086,0.0074786562,0.001673964,-0.0208962467,0.0091801155,-0.0185672529,-0.0015372974,-0.0059712804,-0.00326706,-0.0166523028,-0.0194470938,-0.0088760527,-0.0141033484,-0.0003305472,-0.0054440219,0.0352971889,0.0213879216,-0.000952623,0.0222936422,0.0416113473,-0.0010569425,-0.0244673695,-0.0122919092,-0.0169110801,-0.0078215357,-0.0052499394,-0.0322694965,-0.0015656011,0.0030131352,-0.0275597554,-0.0152290286,-0.0626757964,0.0250366777,0.0157983378,-0.0250237398,-0.0347278789,0.0321401097,0.0303545464,-0.0164711587,0.0098658744,0.0224618465,-0.0199387707,-0.0251531284,-0.02885364,0.0104545923,0.0157595221,-0.0129517913,-0.0139092663,0.0171827953,-0.0185801908,-0.0313637778,-0.0060844952,0.0424911901,0.004858539,-0.0060230354,-0.034029182,0.0062365266,0.0029274153,0.0136634279,0.0096459137,-0.0197317488,0.0028562516,-0.0086819697,-0.0040466259,0.0046029966,-0.0151772732,-0.0074139624,-0.004082208,-0.0035290718,-0.0145562086,-0.014517392,0.006391793,-0.0292159282,-0.0001650715,-0.0033220502,0.0201199148,-0.0009882048,0.0291641727,0.0364099294,-0.0054698996,0.0005871004,-0.0156689491,0.0037134506,-0.0543949343,-0.0254248437,0.0228888299,0.0028513996,0.0063723847,-0.006246231,0.0097623635,0.0375485495,0.007064613,0.0040336871,0.0270163231,0.0216855165,0.031156756,0.0422841683,0.0116773136,-0.0198611375,-0.008177354,0.0012114,-0.0304580573,0.0381178595,-0.0011839049,0.0072069406,0.0091736456,0.0097947111,-0.0134564061,0.0270422008,0.0434227884,-0.0280255526,-0.0045900578,0.0114832316,-0.0189812966,-0.0196670555,-0.040291585,-0.0138963275,0.0026848118,-0.0043603932,0.0033770404,0.0191753786,-0.0026686382,0.0225524195,0.0288795177,0.0078280056,-0.0189683568,-0.0036455216,0.0275079999,0.0008677118,-0.0211420842,0.0173251219,0.0035290718,0.0208703689,0.0309238564,0.0389718227,0.001673964,0.0138316331,-0.0226300526,-0.0249978621,0.0286207404,-0.0071940017,-0.044250872,0.0024195653,0.0311050005,0.0038557779,0.0208574291,-0.0219054762,0.0030568037,-0.0116967224,0.0168205071,0.0022060743,0.0266281571,-0.0006586685,0.018463742,-0.0073816152,0.0111274123,-0.0162511989,0.021918416,-0.0016691119,-0.0550677553,0.0412749387,0.0030276913,-0.0000123197,0.0428793542,-0.0105581032,0.0179203097,-0.0191624407,0.0175838992,0.0004548815,-0.0083326204,-0.0030956203,0.0247390848,-0.0137410611,0.0253472105,-0.0164840966,0.0302510355,0.0103446124,0.0097041391,-0.0311050005,-0.0044703735,0.0358923748,0.0092124622,-0.0165229142,0.0298628695,-0.0247520246,-0.0037166853,-0.0270939562,-0.0046353438,-0.0119554996,0.0070452048,0.0045868228,0.015384295,0.0088437051,-0.0151902121,0.0106163276,0.0054084403,0.0172216129,-0.0082614571,-0.0082485182,-0.0247908402,-0.0147761693,0.0201199148,0.0213879216,-0.0405762382,-0.022125436,-0.0176227167,0.0191753786,0.0046773949,0.0031360541,-0.006728203,0.0074657174,0.011541456,0.0270163231,0.0266022794,0.0186190084,0.0228111967,0.0326317847,-0.0112697398,0.0112891486,-0.0182308424,-0.0215690657,0.0055992883,-0.008947216,-0.0143103702,0.0160700548,-0.0466316231,0.0233416893,-0.0114250062,0.0225524195,0.0100276107,-0.0178426765,-0.0191883184,0.0564651489,-0.0036487563,-0.0244673695,0.0061330157,0.0368757285,-0.0208833069,-0.0328129269,-0.0136634279,-0.0115996804,0.0286983736,-0.0314931646,0.0192918275,0.0314414091,0.0278444104,0.0014103348,0.0192141961,0.0179979429,-0.0343397148,-0.0269645676,0.0150608234,-0.0150349457,-0.0024697033,0.0015526622,0.0117031913,-0.0204175077,0.0053146333,-0.0220219269,0.0320107192,-0.0109850857,0.031726066,0.0043151071,0.0491676368,0.0023597232,0.0319848433,0.0248296577,-0.0011426624,-0.0026605513,0.0108233495,0.0399551764,0.0286466181,-0.0009631358,-0.0422324128,0.0119749075,-0.002817435,-0.0243638586,0.0053469804,-0.0025893878,-0.0114379451,0.0149314348,0.0033155808,0.0042245351,0.024143897,-0.0041857185,0.0017952657,-0.0177262276,-0.0218019653,0.0120654795,0.0043054032,0.0038978292,0.0367204621,-0.0062106489,-0.0324247628,0.0024988158,0.0270163231,0.0491935164,-0.0134434672,-0.0087725418,0.0314414091,-0.0116514359,-0.0207151026,-0.0440697297,0.008947216,0.0196799934,-0.0170663465,-0.0333304815,-0.0188130904,0.0036584605,0.0201457925,0.0153972339,-0.0368239731,0.0301475246,0.0087984195,-0.047796119,0.0025198415,0.0298887473,0.0027980267,-0.0033802751,-0.0166005474,0.02018461,0.0040660342,-0.0108168805,0.0271715894,0.0183990467,-0.0217631496,-0.0194600336,-0.0102734482,-0.0257612541,0.0261752978,-0.0044800774,0.0087660719,-0.0115220482,-0.0140774706,0.0125054,-0.0132882008,0.0649012849,-0.0208703689,-0.00552489,-0.0081967628,-0.0010925243,-0.0088631138,0.0034352653,0.0336927697,0.0419218801,0.0058515957,0.005139959,-0.019240072,-0.0098917522,-0.0006263213,-0.0111403512,0.0148279248,-0.0228111967,0.004182484,0.010674553,0.0321659856,0.0252695773,0.0090442579,-0.0135728559,0.0084296623,0.0110885957,-0.0419995151,0.0167558137,0.0072004711,0.032890562,-0.0157077666,0.0209480021,-0.0179979429,-0.0024939638,-0.0281290635,0.0022723859,-0.0315707996,-0.0050720298,0.0038590126,0.0048358957,-0.0097623635,0.0161088705,-0.0133270174,0.0081450073,0.0396446437,0.0114120673,-0.0130488323,0.0079056388,-0.0297334827,0.005961576,0.0249072909,-0.0015049502,-0.0408608951,-0.0234452002,0.0056833909,0.0115673337,0.0178167988,-0.00788623,-0.0013763704,-0.0463728458,0.0047809058,0.0222936422,-0.0127124218,0.0226041749,0.0197188109,0.0219960492,0.0044930163,0.0057804319,-0.0039107678,0.005725442,0.0011798616,0.0344691016,-0.0153584173],"5":[0.0336961187,0.0557860993,0.0597825535,0.0061794464,0.0284131356,0.0285500009,0.0145350434,0.0268939361,-0.0094231423,0.0107370447,0.0243071914,0.0022257641,0.0221447274,-0.0156573355,0.0241429545,0.0307672098,0.050448373,0.0132895736,0.0188325979,0.0708412305,0.021036122,0.0274413954,0.0221994724,-0.0123657361,0.0072538354,-0.04710887,0.0217341334,0.0519265123,-0.0039759227,-0.0776844695,0.0700747892,-0.0257305857,-0.0235133749,-0.0076096836,0.0673374906,0.0092178453,0.0558134727,0.0428386889,-0.0267570708,0.0203928575,0.0098816399,-0.0159721244,0.0254979152,0.0425649583,0.0061007491,0.0192979388,-0.0211593006,-0.009717402,-0.0290427133,0.0187504794,-0.0123383636,0.0009229821,-0.0175050106,0.0119346119,-0.0186409876,-0.0153562324,-0.031424161,0.0577022061,-0.0146171628,-0.0159584377,-0.0057756952,-0.0251146946,0.0372272283,0.0366250239,-0.0047321012,0.0213372242,0.0018596507,0.0167111941,0.0043967823,0.0478205681,0.0241292678,0.0497914217,0.0035619067,-0.0048313281,0.0252789315,-0.0597278066,0.0139328381,0.0154520376,0.0058304411,-0.0214330293,0.0367071442,-0.0113118775,0.0113118775,0.0240745209,0.0068671922,-0.0329570472,-0.0600562803,0.0149730109,0.0030469529,-0.0107302014,-0.0243071914,0.0704580098,-0.0236502402,0.0295901727,0.0078218244,-0.0225416347,0.0484775193,0.0095189484,-0.0144939842,-0.0096352827,0.00861564,-0.0295901727,-0.0240060892,-0.0425649583,0.0280846599,-0.0218846835,-0.0417163968,0.0105454344,-0.0098884832,0.0325190797,-0.0863343254,-0.035639599,-0.0684324056,-0.0082666352,-0.041086819,0.0087114451,-0.023198586,-0.0042017498,-0.0019007102,-0.0055635548,-0.0344078131,-0.0422364809,-0.0084514022,-0.0298365299,-0.0207623933,-0.0295354277,-0.0169575512,-0.059344586,-0.0352563784,-0.0111407964,0.0702390224,0.0418258868,0.0448642857,-0.017587129,0.0000580072,0.0023027505,-0.0401287638,-0.0165195838,0.0049545062,-0.0384316407,0.0102169588,0.0057277926,0.0203107391,-0.0246219803,-0.054828044,0.0058920304,0.0199685767,0.0345446803,-0.040676225,0.0247451589,0.0100458777,-0.027208725,0.0103811966,0.0015115008,0.0013729252,-0.0054780142,0.0424007215,0.0567167811,0.0019759857,-0.0350921378,-0.0194211174,0.049681928,-0.0169301778,-0.0256484672,-0.0507220998,-0.0238007922,-0.0812977031,0.0060631116,-0.0717719123,0.010593337,-0.0069356244,-0.0501472689,0.0042257011,-0.0123657361,-0.0000126039,-0.0267296992,-0.0084719323,-0.0258127041,0.0054540629,-0.0529940575,-0.0052829818,-0.0022565587,-0.0735237822,0.0021881263,0.0001320532,0.0188599713,-0.0670637563,0.0213509109,-0.0382947773,0.069527328,-0.0267023258,0.0385411307,-0.0036713986,0.0063744788,0.0513243079,-0.0455759838,0.0417163968,0.0104085691,-0.0058783437,-0.0091699427,0.041196309,0.0343256965,0.0389243551,-0.0226648133,0.0134264389,0.0055293385,-0.0090193916,0.0055909278,-0.0581949204,-0.0584139042,0.0058064898,-0.0091425693,-0.0581401736,-0.008410343,0.0147403404,-0.016150048,-0.0083761271,0.0070690676,0.0315062813,-0.0031342043,0.0181893334,0.008335067,0.0045986576,-0.0289058499,0.0049510845,0.0270171147,0.0234586298,-0.0550744012,0.0145076709,-0.005696998,-0.009717402,-0.0028467881,0.0238965973,-0.0232943911,-0.0044275769,-0.0064292247,0.0022702452,-0.0158078857,0.0001311978,-0.0163416583,-0.0152604273,0.0264559686,-0.0331486575,0.0092246886,0.0596730597,0.0182167068,-0.0155204702,-0.0396634229,0.072319366,0.0566620342,0.0207487065,-0.0056354087,0.0266065206,-0.0084993048,-0.0409499519,-0.0606037416,0.0001181528,-0.0365155339,-0.0195716694,-0.0133511629,0.044946406,-0.0309314486,-0.03446256,-0.00430782,-0.0080271214,0.0508863404,0.0434408933,-0.0226785,-0.0072059324,-0.0212003607,0.0160131827,0.0041777985,0.0438788608,-0.0596183129,-0.0055635548,-0.0223910846,0.0113871526,-0.0068398193,-0.0001406072,-0.0402656272,-0.0328475572,-0.0003791583,-0.0267160125,-0.0046568252,0.0256210938,0.0320263654,0.0094984183,0.0601110272,-0.0142886871,-0.0553207584,-0.0255252887,-0.0162184816,-0.0101553695,-0.0213782843,-0.0066961111,0.0607679784,-0.009977445,-0.0287689846,-0.0211319271,0.0118388068,-0.0292616971,0.0204065442,0.0122083416,0.0047902684,0.0242250729,-0.0140286433,0.0002912654,-0.0161089897,0.0039725015,0.0156983938,-0.0014122739,0.010593337,0.0129337255,-0.0076986458,-0.0198727716,-0.0463697985,0.0488881133,0.002172729,0.0116266664,-0.0422912277,0.0352563784,-0.062903069,-0.0330939144,0.0312599242,-0.0166838206,-0.0161089897,0.0226785,-0.0260180011,0.0283857621,-0.0084924614,0.0281667784,-0.0215698946,-0.0122699309,-0.0079655321,-0.0064429115,-0.0372546017,0.0395813063,0.0312599242,0.015890006,0.0056525171,-0.0057243709,0.0299186483,-0.0514064245,0.0165195838,-0.017176535,0.00035371,0.0010393172,-0.0058372845,0.0252515581,0.0202970523,-0.0668995231,0.0018168804,0.0087114451,0.0116814123,0.0388148613,0.0258948226,0.0065695113,-0.0516254082,-0.0123931095,0.0124820713,-0.0337782353,0.0128926653,0.0298365299,-0.0434956402,-0.0100732502,0.0208855718,-0.0428660586,0.0108602233,0.0144802975,0.0114008393,-0.0301650055,-0.0270855464,-0.0075138784,-0.0138233462,-0.0992543623,-0.0328749306,-0.0247451589,0.0301102605,0.0399645269,0.0258948226,0.009156256,0.0068398193,0.0147814006,-0.0151509354,0.0328201838,0.0482585356,-0.0332855247,0.0198453981,-0.0583591573,0.0011693388,0.0481216684,-0.0132758869,0.0275919475,0.0506399833,-0.0428386889,-0.0106001804,-0.0069561545,0.0361870565,0.0724836066,-0.0161226746,0.0618081503,-0.0101211527,-0.0494629443,-0.0131869251,-0.0005645674,0.0269623697,0.0227606185,0.0183261987,-0.0049818791,-0.0514885448,0.0067953384,0.0223500244,0.0360775664,-0.0198864583,0.0295901727,-0.0613701828,-0.0141655086,0.0532404147,-0.0053035119,0.0209403168,-0.0216656998,-0.045822341,0.0264285952,-0.0098542664,-0.0224868897,0.0417985134,0.0168206859,0.0354479887,0.0353932418,-0.077246502,-0.0162458532,-0.0104564717,0.0273866504,0.0075823111,0.0015029467,0.0397729166,0.0100048184,-0.0078218244,0.0642717183,0.0056148791,-0.0041230526,-0.0148498323,0.03435307,0.0362691768,-0.0325464532,0.005967306,0.0023198586,-0.0379389264,-0.0039930311,-0.0164100919,0.0162184816,0.0313694142,-0.0042051715,-0.0210224353,0.0107165147,-0.0334497616,0.0291795786,-0.0396634229,0.0532951578,-0.0053514144,-0.0167111941,0.04721836,-0.0525013432,0.0301102605,0.0083829695,-0.0436325036,0.0393349491,-0.0045370688,0.0050024092,-0.0621366277,-0.0072538354,0.0031410474,0.0544721968,0.0225963816,0.0225142632,0.0061589167,0.022322651,0.0002303178,0.0023215695,-0.0480121784,0.0314789079,0.002335256,0.0298365299,0.0129953139,-0.0031051205,0.0318347551,0.0123383636,-0.0359680727,0.0109970877,0.0185862426,-0.033176031,0.0183261987,0.0232943911,-0.0159584377,-0.0243893098,0.0060973275,-0.037336722,-0.0304934811,0.0429755524,-0.0116540389,0.0202559922,-0.0048176413,0.0317252651,0.0341340862,-0.0159721244,-0.0212961659,-0.0131253358,-0.0123794228,-0.0139191514,-0.0182167068,-0.0100800935,-0.0127078984,0.0064360681,0.027359277,-0.0077397055,0.0276740659,-0.0190242101,0.0296175461,-0.0003107259,-0.0520633757,-0.0429208055,-0.0207076464,-0.0247040987,-0.0036440257,-0.0179019179,0.0188462846,-0.0241840128,-0.0333128981,-0.0010512929,-0.0256758388,0.0431945361,-0.0172039066,0.0359406993,0.0049202903,-0.0488607399,0.0020683696,-0.0087593487,-0.0190789551,-0.0413058028,0.032300096,0.005939933,0.0274550822,0.0147540271,0.030657718,0.0068603489,-0.0186820477,0.0386506245,0.0000971954,0.0250052027,0.0511600673,0.0466435291,-0.033477135,-0.0162732266,0.0263738502,-0.0016714616,-0.0095736943,-0.015944751,0.0237734187,0.0155341569,0.0093683964,-0.0321358591,-0.0089988615,-0.0215562079,-0.0169164911,-0.0335045084,0.0185725559,0.0238144789,-0.0135154007,-0.0471909903,0.0267844442,0.0051221657,0.0048621227,0.0143160596,-0.0085335216,0.0128516061,-0.0005265019,-0.0355301052,-0.0441799611,0.0133101037,-0.0211045556,-0.0438241139,-0.0399645269,-0.0295354277,0.0265654605,-0.0536236353,0.0091767861,0.019749593,0.0171081014,0.010593337,-0.0219668038,-0.0041606906,0.0485596359,-0.0045404905,-0.001910975,0.0083966563,0.0055498681,0.0319989957,0.0155752162,-0.0197632797,0.0357764624,0.0139396815,0.0154657243,-0.0089030564,-0.0399371535,0.0064600194,0.0162321664,0.0183398854,0.0112434449,0.0211045556,0.012831077,0.0066071488,-0.0239787158,-0.0300281402,0.0077123325,0.0063163112,-0.0368987545,-0.0139054656,-0.0003139337,0.0206392147,-0.0286868662,0.020160187,-0.0093273371,-0.0256210938,-0.0248683374,-0.0085403649,0.0544448234,-0.0185314957,-0.0141107626,-0.0345446803,0.0249367692,-0.0150961895,-0.0023198586,0.01723128,0.0057414789,0.0004180792,0.0037227231,0.0408952087,0.0202149339,0.0367345177,-0.011393996,0.0119962012,0.042482838,-0.0069869487,0.0071306569,0.0275919475,0.0059809927,-0.0220078621,0.0399371535,-0.0249641426,-0.0213782843,0.0063607926,-0.0388696082,0.0286321193,0.0061589167,0.0082324184,-0.0196127277,-0.0353384949,0.0217341334,0.0301102605,0.0337508619,-0.0480395518,-0.0058612358,-0.0073496406,-0.0089372722,-0.0028707394,0.0198180247,0.0289605949,0.0277835578,0.0206939597,-0.0239924025,-0.0089441156,0.0255526621,0.0447821692,0.0022257641,0.0011796036,-0.0023181478,-0.0003539239,-0.0169301778,0.0361870565,0.0458497144,-0.0073975432,0.011133953,0.0007886835,-0.0076438999,0.0187094212,-0.002713345,-0.0358312093,-0.0064018518,0.0395813063,0.0361049399,0.0228016786,-0.0296996646,0.0042564957,-0.0319716223,-0.0022052343,0.0236228667,0.0147403404,0.0216246415,-0.0011009064,-0.002802307,0.002461856,-0.0175186973,-0.0278109312,-0.0176281892,-0.0012103983,-0.0022736667,-0.0083624404,-0.0200370084,0.0140286433,-0.0301102605,-0.0129268821,0.0223637111,-0.0232670195,0.0047423658,-0.0260864347,0.0171081014,-0.0413058028,-0.0040067174,-0.0371451117,-0.0170807298,-0.0469993763,-0.0181072149,-0.0022052343,-0.0234586298,0.0181345884,0.0261138063,0.0247040987,0.0240745209,-0.0195032358,-0.0219804887,-0.0411141925,0.0032436962,0.0124820713,0.0535688885,0.0057825386,-0.0181893334,-0.021241419,0.0308493301,-0.0064086951,-0.001568813,0.0015115008,0.0024789639,-0.0132348277,-0.0278519895,0.0243345648,-0.0273045301,0.0199685767,0.0473552272,0.0570452549,-0.0025935883,0.0077191754,0.0122699309,-0.0206392147,-0.0382674038,0.0019640101,-0.0146992812,-0.0603847578,-0.0008477065,-0.0340519659,0.0346267968,0.0280846599,0.0255937204,-0.0062239277,0.0159584377,-0.0153425457,0.0061691818,-0.0160542428,-0.0077123325,0.0031153853,-0.0267844442,0.0064360681,-0.0112023856,-0.0033052852,0.0024396153,0.0208581984,0.0153425457,-0.0068363976,0.0398824066,0.0334223881,-0.0135085573,0.0048997602,0.009512105,-0.040676225,-0.020680273,-0.0070416946,-0.0306303464,0.0015397292,-0.0269760545,0.0039998745,-0.0358038358,-0.0341340862,0.0232259594,0.008335067,0.0007048538,0.0156983938,-0.027359277,-0.0121809682,-0.1237257943,-0.0106001804,0.0258263908,-0.0029015341,-0.0029870747,0.0165743288,0.0004065313,0.0034763664,0.0551565215,-0.0529940575,0.0186546743,-0.0461508147,0.0171081014,0.0088414671,0.0296175461,0.0313967876,0.0216109548,-0.0038698527,0.0255937204,-0.0258263908,0.0115924496,-0.014603476,-0.0283310171,0.0125573473,0.010723358,-0.0138780922,-0.0155752162,0.0405667312,-0.0114008393,0.0239239708,0.0232122727,0.0265928339,-0.0187641662,0.0162869133,-0.0252378713,0.0185588691,-0.0083692838,0.0056833117,0.0016004629,-0.041086819,-0.0030691936,-0.0554576218,0.0371724851,-0.0338056087,0.0279888548,-0.011544547,0.0041333176,0.020680273,-0.0203654841,0.0275372006,0.018463064,-0.0000677909,0.0005038336,0.0057449006,0.0209129434,0.0242387597,-0.013036374,-0.0361049399,-0.0210634954,-0.0081503,-0.0229932889,0.039608676,0.0399645269,-0.0589613616,-0.0126120932,-0.0153562324,-0.0092110019,-0.0019520344,0.0038219499,-0.004047777,0.0353111215,0.0168617461,0.0045541767,0.0405667312,0.0238007922,-0.0216793865,0.0108875958,-0.0162184816,-0.0016150048,-0.0117430016,0.0162458532,0.0152193671,-0.0276603792,0.0298912767,-0.028851103,-0.012160439,0.0079792188,-0.0082050459,0.0206118412,-0.0275782607,0.0104975319,0.0011342672,0.0146992812,0.0011222915,0.0101485262,-0.0035858583,-0.00150979,-0.0397455432,0.0452748798,0.0007138355,-0.0310956854,-0.0026106965,0.0300007686,-0.0191063285,-0.0119756712,-0.0266475789,0.0145897893,-0.0139328381,-0.0053958953,0.0154520376,-0.0082255751,0.0084034996,-0.0024173749,0.0022206316,0.0141107626,-0.0209266301,0.027414022,0.0259085093,-0.0283036437,-0.0159994978,0.0434956402,0.0123178335,-0.0312599242,0.0305482261,-0.0441525914,-0.0120646339,-0.0074659758,-0.0058064898,0.0408678353,0.0283857621,-0.0056080357,0.0475468375,0.0009631861,0.0722098798,0.0221721008,-0.0250736345,0.0146992812,0.0181893334,-0.0012198077,0.0413331762,0.0250052027,0.0451927632,-0.0179977231,0.0013378536,0.009772148,-0.0129131954,0.0029682557,0.0051905983,-0.017025983,0.0264149103,0.0029357504,-0.0098200506,-0.0140286433,0.0386506245,-0.0228290521,0.0726478472,-0.0055224951,-0.0360228196,-0.0047423658,-0.00654556,0.0014131293,0.0236365534,0.0162732266,0.0118524935,0.0230069757,-0.0082597919,-0.0074043865,0.0228974838,-0.0012916618,-0.0064121168,0.0096763428,0.0206118412,0.031314671,0.0320263654,0.0273729637,0.0250599477,0.0142065678,-0.001455044,-0.0107028289,0.0355574787,-0.0402656272,-0.0086635426,0.0309314486,0.0196811613,0.0235954951,-0.0081297699,-0.017641874,-0.0193389989,0.0194621775,-0.001230928,0.0499556586,0.009772148,-0.0245535485,0.0373640954,0.0004422444,0.0043762526,0.0160542428,-0.0133990655,-0.0102511747,0.0124136386,-0.0169301778,0.0336139984,-0.0167248808,0.0152877998,0.014247627,0.0072127758,0.0031051205,0.0176145025,-0.0418532602,0.0457402207,0.0028895584,-0.008896213,-0.0078765703,-0.0085814241,-0.0069185165,-0.0042428095,-0.003253961,-0.018517809,0.010333294,-0.0119346119,-0.0391980819,-0.0371724851,-0.0214330293,0.0172449667,-0.0245398618,-0.0006304336,0.0058270195,0.0028279694,0.0091425693,0.0029768099,-0.0162047949,0.0073427972,-0.0076233703,-0.0231027808,0.0199822634,0.0150961895,-0.0029545692,-0.031013567,-0.0163964052,0.0391433388,0.0112297582,0.0149730109,0.0272634719,-0.0314789079,-0.0489154868,-0.0194758642,0.0366250239,0.0491892137,0.0063881655,0.0121809682,-0.0121946549,0.0318073817,0.0055909278,0.00861564,0.0155067835,-0.0190789551,0.0167522542,0.0199275166,0.0038253716,-0.0120988498,0.011414526,-0.0021350912,-0.0099569149,-0.0005389052,-0.0090125483,-0.0045986576,-0.0276330058,0.020830825,0.0019622992,-0.0315883979,0.0314515345,0.0471362434,0.0036542907,-0.0405667312,-0.066078335,-0.0165880155,-0.0354479887,-0.0080476515,0.0211182404,-0.0604942478,-0.0143708056,-0.0086977594,-0.008355597,-0.0038493229,0.0055088089,-0.0234312564,0.0275508873,-0.0149319516,0.0112708174,-0.0349552743,-0.0158215724,0.0002735158,0.0044720578,0.0092725912,-0.0270444881,-0.0206118412,-0.0076781162,0.0063163112,0.0092862779,-0.0325464532,-0.0134948706,0.0099432291,0.0077602351,0.0433040261,-0.0000558686,-0.0109218126,0.0022685344,-0.0172175933,0.0214193445,0.0175734423,0.0083898129,0.0390338451,0.0147266546,0.0278793629,0.0040032957,0.0083624404,0.0088893697,0.0101895854,-0.0333950147,0.0039998745,-0.0247040987,0.0478753112,0.0065866192,0.0301923789,0.0112434449,0.0027030802,0.0285226274,-0.0165195838,-0.0187778529,0.0193526857,-0.0157531407,-0.0212551057,0.0121946549,0.010052721,0.0236639269,0.0136659518,-0.0034746556,0.0101416828,0.01038804,-0.0022103668,-0.0139807407,-0.0191884469,-0.0177239943,-0.0101964287,0.0102922339,-0.0205023494,0.0270581748,0.0049305549,-0.0092589045,0.0324369632,0.063505277,-0.0079244729,-0.0169438645,-0.0133511629,0.0005966451,-0.0019999372,0.0018083263,0.0073633273,-0.0261548664,-0.0136180492,-0.0442073345,-0.0160542428,-0.0335045084,0.0405941047,0.0176966209,0.0114829578,-0.0263875369,0.0195579827,0.0179019179,0.0007737139,0.0106617687,0.0226511266,-0.0255663469,-0.0368713811,-0.0142886871,-0.0114076827,0.0373093486,0.0086224834,-0.0172997136,0.0242661312,0.0111886989,0.0022514262,-0.0027458505,0.0035037394,-0.0105864936,-0.0081708292,-0.0178471729,0.0026722855,0.013987584,-0.0002549107,0.0036713986,-0.0024584343,0.008410343,0.0024823856,0.0027492719,0.005118744,-0.0375283323,-0.0113597801,-0.0135359308,-0.0150825027,-0.0062718303,-0.0152193671,0.016095303,-0.0217067599,-0.0260590613,-0.0001634893,-0.0233080778,-0.0084445588,0.0132348277,0.0238144789,-0.0274413954,0.0234860033,0.0172175933,-0.0253199916,-0.0491892137,-0.0286868662,0.0191473886,0.0100732502,-0.0019246615,-0.006199976,-0.022117354,0.063505277,0.0046978849,0.0254842285,0.0054403762,0.0355301052,0.0182851385,0.0315062813,0.0068569272,0.0006625113,-0.0038424798,-0.0082461052,-0.0303839892,0.0380210467,0.0047492092,-0.0183535721,0.017587129,0.0125847198,-0.0156299621,0.0022308966,0.0266475789,-0.0185725559,0.017381832,0.020830825,-0.0068535055,-0.0103401365,-0.0328201838,-0.0133648496,-0.0139944274,-0.007048538,0.0042257011,0.024991516,0.0000806219,0.0312051773,-0.0137001676,0.0148224598,-0.0106617687,-0.0245535485,0.0071511865,0.014247627,-0.0128447628,-0.0097037153,-0.0069048298,0.0264149103,0.0138096595,0.0512421876,0.0060460032,-0.0150414435,-0.0096831862,-0.0152877998,0.0129405679,0.0023660506,-0.0460960716,-0.0194895491,0.0137617569,-0.0135496166,0.0199959502,-0.0097447746,-0.0016338237,-0.0194211174,0.0033241042,0.0031752638,0.045055896,-0.0174228903,0.0016235589,-0.0071032839,-0.0142202545,0.0002955425,0.0003937002,0.0067816516,-0.0512695611,0.0154246651,-0.0158489458,0.0195169225,0.0016261251,0.0321084857,0.0025080477,-0.0202286206,0.0345720537,-0.0242113862,0.0028416559,0.0308493301,0.0177513659,0.0031615773,-0.0217888784,-0.0404572412,0.0304113626,-0.0033685854,-0.0009494997,-0.027619319,0.0051119011,0.0119346119,0.0145897893,-0.0179566648,0.0274961423,0.0083008511,-0.0038014203,-0.0065866192,-0.0205160361,-0.0017364724,0.0093547106,-0.0112776607,0.0074180732,0.0037466744,0.024786219,-0.0302471239,-0.0162732266,0.0113460934,0.0081229266,0.0224458296,-0.0203791708,-0.0395539328,0.0140286433,0.0233765114,-0.0392802022,-0.0119140819,-0.0224321429,0.0089304289,0.0140970759,0.0098132072,0.0007630214,0.0240745209,0.018517809,0.0066550518,0.0157531407,0.0170396697,-0.0061657601,0.0433040261,-0.0150003843,0.0137206977,-0.0150961895,-0.0018305669,-0.0177650526,0.0035020285,-0.0015200549,0.0111681689,-0.0250052027,0.0082529485,-0.0232396461,0.0252104998,-0.0288784765,0.0111681689,0.0005940789,0.0523918532,-0.0106549263,-0.0245535485,0.022623755,0.0137754437,-0.006490814,-0.0365702771,-0.0018408318,0.0017689777,-0.0048929173,-0.0261001196,-0.0013010711,0.0358038358,0.0111202663,-0.0098405806,0.0004065313,0.0074112299,-0.0214056578,-0.0230343491,0.0025935883,-0.0007099863,0.0078628836,-0.0123383636,0.0200780686,-0.0188873447,-0.0213509109,-0.0201328136,-0.0057654302,-0.0043694093,0.0122630876,0.0209676903,0.038623251,-0.0077123325,0.0118388068,0.0072469921,-0.0223773979,0.0042633391,0.0105522778,0.0450285263,0.03446256,-0.0074796621,-0.0196537878,0.0164374653,-0.0028040179,-0.0200506952,0.0067850733,-0.0159310643,-0.0034421501,-0.0083624404,0.0007570335,-0.0182851385,-0.0126326224,-0.0127421143,-0.0201738738,-0.0233080778,-0.0085745808,0.0251420662,0.01723128,-0.0361870565,0.0361870565,-0.0216930732,-0.0220078621,0.0179019179,0.0075686243,0.0235681217,-0.013241671,-0.0161911082,0.0204476044,-0.0192431938,-0.011544547,-0.0285500009,-0.0189968366,0.015328859,-0.0139259947,-0.0597825535,-0.0051221657,0.0002309594,0.0170396697,0.0312872976,-0.026948683,0.0188052263,0.0035824366,-0.0283857621,-0.0262917317,0.0197769664,0.0008515558,-0.0024721208,-0.0205023494,-0.0047149928,0.0132142976,-0.0267844442,0.0228701103,0.0013720698,-0.0164374653,-0.0251557529,0.0006877457,0.0068877218,-0.0146992812,0.0044378415,0.0325738266,-0.045055896,-0.0256758388,0.0359406993,0.0006950166,0.0254979152,-0.0105728069,-0.010182742,0.0165743288,0.0086019533,-0.0206255279,0.0089851748,0.0534593984,-0.0080134347,-0.0151372487,-0.0005316343,-0.0409499519,-0.0318073817,0.0020307316,0.0087388186,0.0021214047,-0.0278246179,-0.0211456139,0.0142750004,0.0272224117,0.0095805367,0.0380757935,0.0128858229,-0.0097926781,0.0364607871,-0.0207350198,0.0170122962,0.0054061604,0.0189831499,-0.005361679,0.024485115,0.0223089643,-0.006993792,-0.0328475572,0.0106480829,-0.013987584,-0.0008019423,-0.0019024209,-0.0194074307,-0.0254157968,0.0123383636,-0.0272224117,0.0426197052,0.0131253358,-0.0065489816,-0.0124273254,0.0126873683,-0.0112297582,0.0119072394,0.000337885,-0.00677823,-0.023403883,-0.0239787158,0.0249230824,-0.0091904728,-0.0276603792,-0.0117498441,-0.0001570738,-0.0592350923,0.0032522501,-0.0010196429,-0.0133511629,0.0081160832,0.0059433547,0.0279751681,0.0447821692,-0.0037603609,-0.0085061481,0.0155341569,-0.0211319271,-0.0005136708,-0.031314671],"6":[0.0139477151,0.006514966,0.0359098725,-0.0106385257,0.0599273443,-0.0007877098,0.0081630973,-0.0067347167,-0.0161193702,-0.0418819226,-0.013896009,-0.02262141,0.0284900498,-0.024172591,0.0214321688,0.0321611799,-0.002785665,-0.0088482024,-0.0289295502,0.0289812572,-0.0107354745,0.0002490375,0.017799817,0.0258918181,-0.0261503495,0.0023704006,-0.0450876988,0.0286968742,0.0063436893,-0.0531021431,0.0090873437,-0.0391932093,-0.0095526977,0.0661320761,0.0775074139,0.0130170053,0.0179807879,-0.0067864228,0.0260081571,0.0108841294,-0.037667878,-0.0111426599,0.0458374396,0.0091713658,0.0017337694,-0.0247542858,-0.0093135573,-0.0622541197,0.0207470637,0.0541879684,-0.0258271862,-0.0183298048,-0.0332470089,-0.0675798431,0.0063630794,-0.0256462153,-0.0011585393,0.0691827312,-0.0189114977,-0.0131915137,-0.0006612723,-0.0115756979,0.0369698443,0.0323680043,-0.0297309943,0.0024414964,-0.011511066,-0.0158996191,-0.0368147269,-0.0024996658,0.0315148532,0.0141674653,0.0056553525,-0.0131333442,-0.0024592704,-0.0512924306,-0.0676832572,-0.0001096734,0.0011076411,-0.0562562123,0.0179032292,0.0127972541,-0.0406926833,0.0058072391,0.0149172032,-0.0486554205,-0.0461218208,-0.008557356,-0.0106062097,0.0390122347,-0.0045889146,0.0584278703,-0.0120604429,0.017399095,0.0105738929,0.0152532933,0.0219233781,-0.0274300743,-0.0174637288,0.0228411593,0.0060076001,-0.020268783,-0.0543430895,-0.0447774641,0.0077946912,-0.0224016588,0.0190666169,-0.0365561992,0.0259305984,0.0131398076,-0.0911061093,-0.0130816381,-0.0353152528,-0.0032881834,-0.0009719127,0.0097853756,-0.0064083221,-0.0147233056,0.0098693976,-0.0388054103,-0.0349791609,0.0216260664,-0.0015665327,0.0139994211,0.0314890034,-0.0201007389,-0.0101473182,-0.0414165705,-0.0480866544,-0.003790702,0.0532572605,-0.0252325665,0.0567732751,-0.0221689809,-0.0150852483,-0.0205919463,-0.0665457249,-0.0316441208,-0.0158220604,-0.0452169664,0.0387278534,-0.0177093316,0.02986026,0.0053224945,-0.0214709491,-0.0252842717,-0.0112331454,0.0289036985,-0.046690587,-0.0045339768,-0.0116791101,-0.036633756,-0.044906728,0.0317992382,0.0370215513,-0.0068187392,0.0189114977,0.0147362323,-0.0390897952,-0.0389605314,0.0296534356,0.0217941124,0.0119182514,-0.0183427315,-0.0390380882,-0.0027194165,-0.061323408,-0.0203592684,-0.0808166042,-0.0278695766,-0.0277661644,-0.0617370568,0.0161193702,-0.0085961353,0.0188468657,0.0095914779,0.0019955314,-0.0244181957,-0.0105738929,-0.0544464998,-0.0529470257,-0.0129717626,-0.0330918916,-0.0178773757,-0.0245474614,0.0199714731,-0.0529470257,0.030713411,0.0207341369,0.0559459776,-0.0684588477,0.0407702439,0.0266286302,0.0479832403,0.0399170928,-0.0319802091,0.0130751748,0.0417009518,-0.0203463417,0.028024694,0.012260804,0.0409253612,0.0085638193,-0.0159383994,-0.0092295352,0.0441052839,-0.0023800954,0.023254808,-0.0495344214,-0.0191053953,0.0063081416,-0.0055680983,-0.033066038,-0.027042279,-0.0534123778,-0.0330401845,0.0036485102,0.0130881015,0.0020940963,-0.0120022735,-0.0068122759,0.058789812,0.0156023093,-0.0296534356,0.0121832443,0.033066038,0.0040460005,-0.0341260135,0.0176964048,-0.018433217,0.0212124195,-0.0301704966,-0.0047214115,-0.021070227,0.0274042208,0.0167656951,-0.0308168232,-0.0431487225,0.0173086096,0.0096173305,0.0070384899,-0.0213804636,-0.0175800659,0.0244828276,0.0214321688,0.0321870334,-0.0302739087,-0.0458374396,0.0244311225,0.0548601486,0.0388054103,-0.0408736542,0.0050962805,-0.03410016,0.0113624111,-0.0327557996,0.0016230862,-0.0129976152,0.0212253444,-0.0162744876,0.0314372964,-0.0125387236,-0.0652013645,0.0152274398,-0.0114399698,-0.0055034659,-0.0082665095,-0.0408478007,0.0111297332,0.0117631331,0.0564113334,-0.0046276939,0.026176203,-0.0533089675,-0.0178515241,-0.015731575,0.0002754965,-0.0392707661,0.0220138635,0.0083311414,0.0065278923,-0.0378747024,-0.0306875575,0.0129846893,0.0115886247,-0.0114399698,0.0498446599,0.0260857157,0.0266286302,-0.0387278534,0.0179290827,0.0029957208,0.0077429852,-0.0137667432,-0.0047698859,0.008841739,-0.0249740351,-0.014813791,-0.029911967,0.0017919388,0.0259047449,-0.0158866923,0.0097401328,-0.026525218,-0.0147750117,0.024405269,0.0122155612,-0.0172310509,0.0177868903,-0.0086866207,0.007064343,-0.0055842563,0.0385468826,-0.0270164255,-0.0135857724,-0.0118148392,0.0523524061,-0.0024576546,-0.0192992929,-0.0351601318,-0.0276110452,-0.076886937,0.0076848157,-0.0087318644,-0.0354186632,-0.0317475311,0.0240045469,-0.0178256705,0.007807618,-0.0084151644,-0.016015958,-0.0314890034,0.0401239172,-0.0046987897,0.0270939842,-0.0983449593,0.0338933356,-0.0344103947,0.0005994674,-0.019751722,-0.0095074549,-0.0385985859,-0.064580895,0.0265769251,0.0251162276,0.0159125458,-0.0093975794,0.0146069676,-0.0161193702,0.0036678999,-0.0510597527,-0.0120216636,-0.0065020393,-0.0195966046,-0.0187434535,-0.0205014609,-0.0294207595,-0.0396327078,0.0079498095,0.0191829558,-0.0302480552,0.0147362323,0.0617887639,-0.0358581655,0.0155893825,0.0110198576,-0.0160418116,-0.0039684414,-0.0313080288,-0.033066038,0.0162357092,-0.0025513717,-0.0335830972,-0.0535157919,-0.042373132,0.0141157592,0.0446999036,0.0493017472,0.0105738929,0.0281281061,0.0406409763,0.0048829927,0.0145552615,-0.0088611292,0.0535157919,0.0064083221,-0.0153049994,0.0337123647,-0.0071160491,0.0099663464,0.0277920179,-0.0059946734,0.0277144574,0.0173603166,0.0036937529,-0.0105738929,0.0193122197,0.025723774,0.0481642112,0.0016311652,0.0407960974,-0.001082596,-0.0302997623,-0.0395292975,-0.0009557545,0.0266544838,0.0081049278,0.0058524818,-0.0167010631,-0.0493793041,-0.0511114597,-0.0231772494,0.0394258834,-0.0328075066,-0.023371147,-0.04857786,-0.0305841453,0.0466130301,-0.0241467394,0.0714578032,0.0194544122,-0.0268096011,-0.0128554236,-0.0357289016,-0.0193768535,0.0277661644,0.0449842885,0.0221172757,-0.0273783691,-0.0386761464,-0.0004899959,-0.0083311414,0.0345655121,-0.0148008652,0.0119764199,-0.0091713658,0.0266286302,-0.019700015,0.0590483397,0.0141933188,0.0035515612,0.0214709491,-0.0112589989,0.0002405545,0.0013427422,-0.0366596095,-0.011543382,-0.0123577528,-0.0097142793,0.0070061735,0.033066038,-0.0548601486,-0.0224921443,0.0073228735,-0.0491466261,-0.054084558,0.0178903025,0.0153049994,0.0353928097,-0.0009242462,0.0053257262,0.0366596095,-0.0410546251,0.0042689829,0.0629262999,-0.0627194718,0.0389088243,-0.0048571397,0.0155376764,-0.0080467584,0.0345396586,0.041390717,-0.0258142594,0.0209926683,-0.0267578959,0.0026774055,0.0306875575,-0.0391156487,0.0198551342,0.0016982215,0.0147103798,0.0232935883,-0.0255557299,0.039451737,0.009759522,0.0839706734,0.0099146403,0.0085444292,0.0207082853,0.0194544122,-0.0420111902,0.009475139,0.0585312806,-0.0136116249,0.0095462343,-0.0357289016,-0.0800410062,-0.0483710356,-0.0009476755,-0.0170630068,0.0118406918,-0.0122414138,-0.0130170053,0.0566698611,-0.006489113,0.0060011367,-0.0310494993,-0.0102895098,-0.0020617798,-0.0296275821,0.0220914222,0.0093975794,0.0302739087,0.0332728624,-0.0270164255,-0.0094363596,-0.0328850672,-0.0028228287,-0.0182393193,-0.0259952303,-0.0274559278,-0.0126873786,-0.0342294239,-0.0022233613,-0.0049767098,0.0027888967,-0.0332987159,-0.0268354546,-0.0021005594,-0.0198809877,0.018833939,-0.0445189327,0.0145035554,0.030144643,-0.0501807481,0.0064147855,-0.0125257978,-0.0291363746,-0.0126873786,0.0305582918,0.0084927231,0.0327299461,-0.0071936082,0.0407702439,-0.0243535638,-0.0287485793,-0.0463544987,-0.0349016041,-0.0158866923,0.0477505624,0.0451652594,-0.0276886057,0.0398912393,0.0003760809,0.0304548796,0.0031314495,0.0199068394,-0.0156023093,0.0214192439,0.0307651162,-0.0270164255,0.0051609129,-0.002793744,0.0010244267,-0.024340637,0.0191958807,-0.009643184,-0.0381332338,-0.0475178845,0.0161193702,0.0002207607,0.0261503495,-0.0164037533,0.0163908266,-0.0032413248,0.0156410895,-0.0227894541,-0.0242242981,-0.0114141172,0.0062596672,-0.0122349504,-0.0081889499,-0.0430194587,0.018433217,-0.0499480702,0.0170371532,0.0196612366,0.0203075614,0.0321094729,-0.0546016172,0.0150593957,0.0088352766,-0.0176705532,-0.0114205796,0.0240433272,-0.0012385221,0.0271456912,0.0240821056,-0.0176446997,0.0102054868,0.028593462,0.0149689093,-0.0143484371,-0.0298344065,0.0145035554,0.0047246427,-0.0236684568,0.0112654623,0.0221560542,-0.0137150371,0.0079433462,0.0237460174,0.0046438524,-0.0626160577,0.0041688024,0.0087318644,-0.0276886057,0.0262796152,0.0202946365,-0.035134282,-0.0342294239,-0.0423214249,-0.0188985709,-0.0169854462,0.0300412308,0.0282573719,-0.0142579507,-0.0375386141,-0.0276627522,0.0176188461,0.0015511824,-0.0212253444,0.049663689,0.0113365576,-0.0033802849,0.0150206154,0.0446223468,0.0693378523,0.0189890582,0.0006604643,0.0494310111,0.0189114977,-0.0183039512,-0.0141545385,0.0474403277,-0.0365561992,0.0181229804,0.050361719,-0.0145423347,0.0110521745,-0.0150076896,-0.0417268053,0.0283349305,0.0281539597,-0.0026693263,-0.030429028,-0.0131656602,0.0152532933,0.0355220772,0.0388829708,-0.0287227258,-0.0223241001,-0.0037842386,0.0068510552,-0.0365303457,-0.0015616851,-0.0000403954,0.0281539597,0.0153567055,0.052248992,-0.0133013884,0.0396585613,-0.0001802644,0.0338416286,0.0214838758,0.0169208143,-0.0105609661,-0.0164166801,0.0090162475,0.0667525455,-0.0120216636,-0.0109164454,-0.0311270598,0.0102119502,0.0132496823,-0.0173473898,0.0020957119,0.019635383,0.0381332338,0.0011852003,-0.0087964963,0.0006402667,0.0023477792,-0.0248964764,-0.0063598477,0.0090938061,0.0078851767,-0.0120604429,-0.0073810425,0.0066022198,-0.0093717268,-0.0043594688,-0.0473886207,-0.0194414854,0.0067217904,0.015447191,0.0234357808,-0.0382624976,0.0294466112,-0.0049411622,-0.0371508189,-0.0107484013,-0.0335572436,0.0071031223,-0.0404083021,0.0039425883,-0.0207599904,-0.0013629399,-0.0240821056,0.0027194165,-0.0492758937,0.0045792195,-0.0343069844,-0.0229574982,0.0213158317,-0.0187693071,0.0260469373,0.021936303,-0.0120798321,-0.0109422989,0.0153179262,0.0051673763,0.0200619586,0.028076401,0.0231772494,-0.0303514674,-0.0399946533,0.0230609104,-0.0157832801,-0.0308685284,-0.0104252379,0.0338157751,-0.0146328202,0.0075878669,0.0063598477,-0.0128877405,0.0038521029,0.0513182841,0.0302222036,-0.0143225836,-0.0032962626,0.0102959732,0.0274042208,-0.0033512001,-0.005238472,-0.0475695916,-0.0242630765,0.0191183221,0.0077688382,-0.0131139541,0.0016360127,0.0464579128,-0.0050995122,0.0220267903,-0.0087835705,0.0120669063,-0.0106062097,0.015447191,-0.0156669412,-0.049715396,-0.0146845262,-0.022104349,0.0060819276,-0.0122155612,0.0244699009,0.0123254368,-0.0238752812,0.0078528607,0.0129911518,-0.0292914938,0.0190536901,0.0044144066,-0.0269130133,-0.0381590873,-0.0060883909,-0.0072840936,0.003178308,-0.0010729012,-0.00075095,-0.0091390498,-0.0415716879,0.0050865854,0.0041332548,-0.0257884059,0.0033124206,-0.0271973964,-0.0001882424,-0.0399170928,-0.0129846893,0.0211994927,-0.0022120506,0.0078851767,0.0014485781,0.0020149213,0.0243535638,0.0195061173,-0.0134306541,0.0229962785,-0.0688207895,-0.0085896719,-0.0045565981,0.0143484371,0.0260210838,-0.0048991512,0.0159901045,-0.0148008652,0.0445964932,0.0079821255,0.0159125458,0.0078011546,0.0630814135,0.0022427512,-0.0219750833,-0.0253747571,0.0022508302,0.013029932,-0.0062532038,0.0346172191,0.0051609129,-0.0295241699,-0.016481312,-0.0059203459,0.0552737974,-0.0042302036,0.0426316634,-0.0116920369,-0.0007384275,-0.0224404372,-0.0125775039,0.0448033176,-0.0159513261,0.0654598922,0.0103153624,0.011627404,0.0044305646,-0.0311270598,-0.0005695748,0.0281798132,0.0195061173,0.0126421358,0.0042851414,-0.0082665095,0.0242760032,-0.0159125458,-0.0367630236,0.0056521208,0.0132367564,-0.0191053953,0.0210443735,0.0069350777,-0.0502841622,-0.0378747024,0.0055390135,-0.008240656,0.0434848107,-0.007923957,0.0154988971,0.0162098557,0.039503444,0.0396068543,0.0150335422,0.0078722509,-0.0199197661,0.01493013,-0.0008547661,0.0151886605,-0.0160935167,-0.0219104514,0.0015875382,-0.0447516106,0.0060043684,-0.0069997106,-0.0090550268,-0.004146181,0.0175412875,0.0243277103,-0.0065117343,0.0380815268,0.0135211395,-0.0068704453,-0.0063630794,0.0208504759,0.0320319161,-0.0055034659,-0.0154988971,0.0052255457,-0.0149818361,0.026124496,-0.0068769082,0.0472852103,0.0425023958,0.0452945232,-0.0179549363,0.0469491184,-0.0107677905,-0.0179032292,-0.0139994211,-0.0163132679,0.0108647393,0.0008709243,-0.0048183603,0.0018791928,-0.0148525713,0.0172956828,-0.0093329474,0.0027759701,-0.0266286302,0.0595136955,-0.0154859703,-0.0046987897,0.0440277271,0.0250515956,0.0284641962,0.0379005559,-0.0114528965,-0.0161452238,0.0277920179,0.0222723931,0.0487329774,-0.0034190645,0.0543430895,0.0069609308,-0.024172591,0.0018355658,0.0089710047,0.0025109765,0.0281281061,0.0128748138,0.0170371532,-0.0110004684,-0.005038111,0.0368405804,-0.0016198545,-0.017450802,0.0188468657,-0.0370215513,0.0394000299,0.0533606745,-0.0131979762,-0.0324972719,0.0458115861,-0.0129588358,0.0643740669,-0.0580659248,-0.0267061889,-0.0105157234,-0.0063695423,-0.0070514167,0.0274300743,0.001099562,0.0247672107,-0.0083440682,-0.0412355959,-0.0032962626,0.0009064722,0.0014372674,0.0096948901,0.0175929926,0.0023364683,0.0341777168,0.0448291712,-0.0010890593,0.0107742539,0.0225179978,-0.0002342932,0.0084927231,0.0150206154,-0.0268871617,0.005755533,-0.0236426052,0.0726987496,0.0428643376,0.0078463973,-0.0092101451,-0.0093394108,-0.0095785512,-0.0014081828,-0.0000713988,0.0111232698,-0.0028260604,0.0067928862,0.0017063005,-0.0108582769,0.0042269719,0.0255686566,-0.0207212102,0.033764068,-0.0443896689,-0.0018791928,0.0044725756,-0.0121380016,0.0128489602,0.021070227,-0.004062159,0.012428849,-0.006915688,-0.02525842,0.0183039512,-0.0052578617,0.0211477857,0.0145552615,0.0006818739,-0.008408701,-0.0057652276,0.010392922,-0.0107484013,-0.0205143858,-0.0272749569,-0.0240821056,-0.0285417549,0.0125904297,-0.0227765273,0.0552220903,0.016533019,-0.0125193344,-0.0182263926,0.0155118238,0.0128554236,0.0153696314,0.0321094729,-0.0091778291,0.0096625732,0.011226682,0.0402273275,-0.0059138825,0.0174120218,0.0332987159,-0.0041688024,0.029911967,0.0055002342,-0.0331953019,-0.0321353264,-0.0015875382,0.0487329774,0.0084797973,0.0193380732,-0.0048442134,0.0122349504,0.0116791101,0.0024334174,0.0314890034,0.0022314405,0.0321094729,0.0028713031,0.0064567965,-0.0206824318,-0.0096884267,0.009875861,0.0220914222,-0.0068058125,0.0061659496,-0.013029932,-0.0093070939,-0.0157057215,-0.0166752096,0.0108970562,0.0173215363,-0.0313597359,0.0263313204,-0.008408701,-0.0220267903,-0.0040395372,0.0437691957,-0.0351084284,-0.0165200923,-0.0083763851,-0.0009476755,-0.023422854,-0.0029617888,-0.0149430567,-0.0139735676,0.0139477151,-0.0133013884,-0.0112137562,-0.0082600461,0.0047246427,-0.0187434535,-0.0088223498,0.0346172191,-0.0264993645,0.0055745617,-0.0387278534,0.0047763488,0.0041235597,0.0133143151,0.0084216278,-0.0116532575,-0.0069867838,-0.0025610668,0.0296534356,-0.0082212668,-0.0077688382,-0.0024721969,-0.0102054868,-0.0207470637,-0.0232160296,-0.0042495932,-0.0229962785,0.0164554603,0.0148008652,0.05511868,-0.0137021104,-0.0126809161,0.0106126722,0.0255815815,-0.0016125833,0.030429028,0.0093264841,0.0192734413,0.0250257421,0.0473627672,-0.0169595946,0.0316441208,0.0184719972,-0.0156540144,-0.0268613081,0.0091131963,0.010593283,-0.0263183936,-0.0269388668,-0.0019308989,-0.0261374228,0.0204368271,0.0119893467,-0.0029084668,-0.0013661715,0.0057361429,0.0104446281,-0.0171017852,-0.0349791609,0.0136374785,0.0334279798,0.0121961711,0.0267320424,0.0170759317,0.0013516292,0.0232160296,0.0453979373,-0.0027274957,-0.025607435,-0.0021910451,0.0139994211,0.0052417037,-0.0088675926,0.00380686,-0.0083440682,0.0237847958,-0.0051253652,-0.0017854755,-0.0146586737,-0.0186529681,0.023022132,-0.0243018568,0.0213416833,0.0151369544,0.0235262662,-0.0172569044,0.0297568478,0.017567141,-0.0181876123,-0.0305841453,-0.0141545385,-0.0229833517,0.0250128154,-0.0341518633,-0.0077559119,0.037667878,0.0037228377,-0.0249740351,0.0136504043,0.0349791609,-0.011743743,-0.0106449891,-0.0445706397,0.0096884267,-0.0109229088,-0.0084474804,-0.0023865586,0.0069609308,-0.0184978489,-0.0266286302,-0.0115369186,-0.0040007578,-0.0076718894,-0.0218587443,0.0329367705,-0.0362459607,-0.0186658949,-0.0032300141,-0.0117631331,-0.0203334149,0.0073228735,0.008925762,0.0607029349,0.0006649079,-0.002044006,0.0235908981,-0.0212641247,-0.0211090073,-0.0131915137,-0.0036064989,-0.0267061889,-0.0127907908,0.0076266467,-0.0273008086,0.033066038,-0.0177481119,0.0071806815,0.030661704,-0.0152274398,0.0245862398,0.0567215681,0.0248964764,0.036633756,0.0374610536,0.0286451671,-0.0165717974,-0.0276368987,0.0004003182,0.0042463616,0.0460959673,-0.0174120218,-0.0392449126,-0.0202429295,0.0015536061,0.0045307451,0.0015107869,0.0040944749,-0.0006475378,0.017916156,0.0009121276,-0.0080984645,0.0084280912,-0.0520680211,-0.0107742539,0.014012347,-0.0382366441,0.0138055226,0.0024350332,-0.0236426052,0.0603927001,-0.007781765,0.0074068955,-0.0020359268,-0.0167139899,-0.0004306147,0.0003574991,-0.0168174021,0.0252196398,0.0244311225,0.0119699575,0.010909983,0.0102895098,-0.0079885889,-0.0133660212,-0.0323938578,-0.0178385973,0.0364786386,-0.0000924044,-0.0220655687,-0.0103218257,-0.0012692226,-0.012461165,0.0192605145,-0.0343586877,0.0330918916,-0.0328850672,0.0134306541,0.0144389225,0.0600824617,-0.0010325058,0.0220914222,0.0162098557,0.0086930841,-0.0164425336,0.0189502779,-0.0031282178,-0.0280505475,0.04203704,0.0034998553,-0.0124934809,0.0299895257,-0.0091002695,0.0192992929,-0.0051867659,0.0008539582,-0.0043530054,-0.0334538333,0.0101667074,0.0424765423,0.0354186632,0.0247025788,-0.0144001432,0.0247930642,-0.0164166801,-0.017515434,-0.003545098,-0.0055939513,0.0099469572,-0.0110327844,-0.0385210291,0.015330852,0.0131139541,-0.0002302536,0.0133272419,-0.0138313761,0.0338933356,0.0065375874,-0.0235004127,0.0228153076,-0.0017499276,0.0282832254,-0.022505071,-0.0207341369,0.02198801,0.0202558562,0.0164425336,-0.0094945291,-0.0148913506,0.0105609661,0.0364786386,0.0019341304,-0.000829721,0.0038585661,-0.0149947628,-0.0105674295,0.016649358,-0.0042334353,0.0181100536,0.0046697054,0.0357289016,-0.000515041,0.0043723951,0.0067088637,-0.006715327,-0.0281798132,0.0042334353,-0.0344103947,-0.0002591363,-0.0225309245,-0.0032671778,0.0060948539,-0.0090162475,-0.0245862398,0.010308899,-0.0167398434,0.0196095295,0.0427609272,-0.0226343367,-0.0369439945,0.0329884775,-0.0037293008,-0.008958078,0.0011294547,0.0592551641,0.0248835497,-0.0247672107,0.0166881364,-0.0065763667,0.0071354387,-0.0489656553,-0.0084862597,0.0130105419,0.0114399698,-0.027507633,0.0074004326,0.0089386879,-0.0028632241,-0.0262796152,0.0229962785,0.002139339,-0.0066959374,0.0118213026,-0.0134694334,-0.0292139351,0.0352893993,-0.0191183221,-0.0041784975,-0.0147233056,0.0227248222,0.0012676069,0.0511114597,0.0122543406,0.0325748287,0.0242630765,-0.0090033207,-0.0235908981,-0.0101537807,0.0169078875,0.001082596,-0.021535581,-0.0392190591,0.0057102898,0.0071225124,0.0119634941,0.0017709332,0.0179937147,-0.0138055226,-0.0171405654,0.0177222583,-0.0249869619,-0.0200231783,0.0027113375,0.0129394457,-0.0437691957,-0.0065795984,0.0393483266,0.0159254726,0.0125064077,0.0089839315,-0.0334538333,-0.0563596264,0.0266286302,-0.0020343109,0.023371147,-0.004863603,-0.0209797416,-0.0011116806,-0.005012258,-0.0142838042,-0.0413648635,0.019751722,0.0119764199,-0.0055680983,-0.0023397,0.0162486359,-0.0057135215,0.0081954133,0.0342294239,-0.0044693439,0.0091390498,0.0111361966,-0.0212253444,-0.02428893,0.0383917615,-0.0029213934,-0.0125645772,0.0124999443,-0.0225955565,-0.0086284522,0.0008268933,0.0209151078,0.0182005391,0.0139994211,-0.0104510915,-0.0129652992,-0.0026515524,0.0305841453,0.0108194966,-0.0106837684,-0.047828123,-0.0004944394,0.0231901761,0.007290557,0.0295241699,-0.0036355837,-0.0126033565,0.006715327,0.0107419379,0.0056262678,-0.0014800865,-0.0001554212,0.0064471015,-0.0088352766,-0.0011674264,0.0022282088,-0.0090421,0.0190924685,0.0096561098,0.0170630068,-0.0287227258,-0.0025626826,-0.0173215363,0.0220138635,0.0168044753,-0.0048054336,-0.0161840022,-0.0091842925,0.0172439776,0.0040686219,-0.0179420095,-0.0109616891,0.0455789082,-0.0163778998,0.0089710047,0.0065505137,0.0114852125,-0.03479819,0.0316699743,-0.0151886605,-0.0138313761,-0.0206565782,0.0129717626,0.0027759701,0.0120345894,-0.0520163141,0.0109746149,0.045708172,-0.0008636531,-0.0060334532,0.0050607324,-0.021134859,0.0085056499,0.002952094,-0.0099921999,-0.0422955714,-0.0331435949,0.0335055403,0.0023720164,0.0052837147,-0.0147491591,-0.0134306541,-0.0362976678,-0.0091907559,0.0334538333,-0.0310494993,-0.0206565782,0.0201136637,0.0112783881,0.0133013884,0.0102507304,0.0264088791,0.0132238297,-0.0016675211,0.0376161709,-0.0113494843],"7":[0.0010165389,-0.034427505,0.0547331199,0.0141722253,0.0141147021,-0.0165953804,-0.0240446068,0.0289340615,-0.0402948484,0.002581344,0.0362107195,-0.0443214588,-0.0182923097,-0.0308323186,0.0501025207,0.0221463479,-0.034111131,-0.0160776749,-0.0602265634,0.0561424308,-0.0137695642,0.019500291,0.0299982354,-0.0155455861,-0.0166097619,-0.0204781815,-0.0022218253,0.0641381294,0.0114039313,-0.0723639131,0.0046270052,-0.0416466407,-0.0492684357,-0.025655251,0.0414740704,-0.0165378582,0.0406687483,0.0054287314,0.0337084681,0.0250224974,0.0024123702,-0.02276472,0.0333058089,0.0577243157,-0.0364983343,-0.0106920842,-0.0197735261,-0.0593061969,0.034456268,0.0507065095,-0.0184648782,0.0192126762,-0.0372748934,-0.0251519252,0.0116124526,-0.0120438747,-0.0030433254,0.0396045744,0.0073162047,-0.034456268,-0.0106129907,-0.0568614714,0.0353478752,0.0248067863,-0.0327305794,0.0020690297,-0.0347151197,0.0282294042,-0.0434873775,0.001440771,0.046737425,-0.0116052618,0.0480892137,-0.0146108381,0.0240733679,-0.0630451888,-0.0128779579,0.0963509977,-0.0160920545,-0.0202049483,0.0323279165,-0.0115405489,0.0113248378,0.0167535692,-0.0211396962,-0.0561424308,-0.0143376039,-0.0207514167,-0.0320690647,0.0029174939,-0.0300269984,0.0314938352,-0.0007630783,0.0208089389,0.0266906638,-0.0018982585,-0.0121445404,0.0218012109,0.0557110086,0.0161351971,-0.0138127068,-0.008614067,0.0233974736,-0.0186949689,0.044407744,0.0327881016,0.0362394787,0.0369297564,-0.0124609163,0.0089160623,-0.0686249211,-0.0181053597,-0.0763330013,-0.009671052,-0.0308898427,-0.00964229,-0.0047600269,-0.0128491968,0.0100737121,0.0065216683,-0.0140931308,-0.0117346887,-0.0067589507,-0.0132734282,0.0147115029,-0.0229660515,0.0143447937,-0.0522021092,-0.0142081771,-0.0187093504,0.0161351971,0.001736475,0.0495272875,-0.0230667163,-0.0617221631,-0.0074492265,-0.0243897457,0.0012744936,-0.0230235737,-0.0019467935,-0.0196009576,0.0177746024,0.000468273,0.0162214823,-0.0189394429,0.0192989614,0.0089376336,0.0405249409,-0.0179471709,-0.0420780629,-0.0107639888,-0.0397771448,-0.0638505146,0.0160632934,0.044033844,-0.0003721018,0.0223764405,0.0525472462,-0.0210534129,-0.0626425296,0.0272227526,0.0566313788,-0.0175876524,0.0013275226,-0.0139996558,0.0358943418,-0.0294086263,-0.0458745807,-0.0543016978,0.007636176,-0.0408700816,-0.0349164531,-0.0111091267,-0.0172856562,0.0205932278,0.005396375,-0.0040769414,-0.0218443535,0.0138846105,-0.0592486747,-0.0956031978,-0.027927408,-0.0450117365,-0.0036581024,-0.0075139399,-0.0058026309,-0.0471976101,0.004199178,0.0119575905,0.0357792974,0.0507352725,0.0811074078,0.0034280103,0.0319540165,-0.0069279242,-0.0283588301,0.0418479703,0.022203872,-0.0174869876,0.0000485912,0.034053605,0.0163221471,0.0314363092,-0.0057379175,0.0254107788,-0.0134244263,-0.0073413709,0.0034981165,-0.0640230775,-0.0379076451,0.0100593315,-0.0100880936,0.0167391878,0.0029929928,-0.0627000555,-0.0016726605,-0.0541578904,-0.006435384,0.0167679507,0.0317814499,0.000187062,0.0632752851,-0.0157325361,-0.0077152704,-0.0081898347,0.0003610915,0.0432572849,-0.0491246283,0.0406399891,-0.0168829951,0.0181772634,-0.0163652897,-0.0074492265,-0.0364695713,0.0080819791,0.0224339645,0.0040661558,-0.0268200915,-0.0200036168,-0.016048912,-0.0000801053,0.0418192111,0.0273521785,0.0273809396,-0.0017122076,0.0253820159,-0.0338522755,-0.0518282093,0.0194283873,0.0499874726,0.0295380522,-0.0063167429,0.0240877494,-0.0093978178,-0.0307460353,-0.0598814264,-0.0286033042,0.0223764405,0.0056013004,-0.0293223411,0.0233399514,-0.054014083,-0.0478015989,0.0115117868,-0.0240158457,0.02717961,-0.0205932278,-0.0165953804,0.0160776749,-0.0191120114,0.0095416252,0.0349452123,-0.0244328883,-0.0294086263,-0.0211109351,-0.0345137902,0.017975932,0.026647523,-0.0166241415,-0.0255402047,-0.003411832,-0.0145964576,0.0252382085,-0.0146036474,0.0091173928,0.0343987457,-0.0253676362,-0.0131440014,-0.0225346293,-0.0403523743,0.0007024095,-0.0451843031,0.0454431586,-0.0258278195,0.0477153137,-0.0095560057,0.0189825855,0.0025094401,-0.0278555043,-0.0030792772,0.0211972203,0.0088513494,0.0205788482,-0.0164803341,0.012468107,-0.0161351971,0.0191120114,-0.0208377,0.0223332979,-0.0064030271,-0.0006956686,0.0047492413,0.0045838626,-0.0251663048,0.0021966589,-0.023943942,0.070005469,-0.014927214,0.0190688688,-0.0768507048,-0.0492396727,-0.0496423356,-0.0104332315,-0.0044867927,0.0070645413,-0.0263455268,0.051281739,0.0047672172,0.0271220878,0.0130073847,0.0188819189,0.0150566408,-0.0087291133,0.0152435908,-0.0295380522,-0.0107208462,-0.0233255699,-0.0186374467,0.007477988,0.0130433366,-0.0636779442,-0.0190688688,-0.0487794913,-0.0318389721,0.0388855375,0.0260291509,-0.0226496756,-0.0095344344,0.0090095373,0.0117059276,-0.0515118316,0.0373036563,0.0350602604,-0.0016286195,-0.0373611785,-0.0187381115,-0.0273090359,0.0094193891,-0.0117562599,-0.0218874961,-0.0453568734,0.0515118316,0.0016447979,0.0095703863,0.0055581583,0.0379076451,-0.0407837965,0.0362394787,0.0209096055,-0.0466511399,-0.0025795463,-0.0039726812,-0.0484631136,0.0047528367,-0.0527485758,-0.0409276038,0.0159051046,0.0134603782,-0.013963704,0.0962359533,0.0120151136,0.0137551837,-0.0090023465,-0.0439763218,0.0030361351,0.0414453112,0.00964229,0.0134388069,-0.0446953587,-0.0106417518,0.0081898347,-0.0243466031,-0.0140284179,0.007075327,-0.0058026309,0.0159626286,-0.0022577771,0.0051950444,0.0812799782,-0.0354916826,-0.0364695713,-0.0177026987,-0.0213697888,-0.0023925966,0.015488063,0.022606533,-0.0039079678,0.0481179766,-0.0445515513,-0.0028006502,-0.051655639,-0.0317814499,0.0335071385,-0.026431812,0.0112745045,-0.022980433,-0.0175301302,0.0360381491,0.0114326933,0.0519144945,-0.0130361458,-0.0147690261,-0.0045946483,-0.0139205623,-0.0179903135,0.0328743868,0.0805896968,-0.0054862546,0.00548985,-0.03526159,0.0071616117,-0.0208952241,0.0339960828,-0.0407837965,-0.045558203,-0.0046090293,0.0637929887,0.0362394787,0.0177314598,0.0022200276,-0.0085421633,0.0291497726,-0.0422506332,0.0243609846,-0.0273521785,-0.0074707977,-0.0448679291,-0.0147115029,-0.0333058089,-0.0175588913,0.0429409072,-0.0206507519,-0.0244328883,0.0210390314,-0.0190401077,-0.0394607671,0.0818552077,-0.0173575599,0.0288765375,-0.0208233204,-0.0328456238,-0.0006830854,-0.0635053739,0.0039475146,0.0067984979,-0.0786914453,0.0154161593,-0.016106436,0.020866463,-0.0165666193,0.0021175649,0.0073018237,-0.0165522378,0.0094912928,-0.0363257639,0.0116268331,0.0187812541,-0.0372748934,-0.0126406755,-0.0217005461,0.0426245295,-0.0308898427,-0.0304008964,0.0765630901,-0.0105051352,-0.0203199945,0.0256264899,-0.0052345917,-0.0225058682,0.0071148742,-0.0114830257,-0.0085421633,0.0501888022,-0.0176164135,0.0113751702,-0.0006767939,-0.0179471709,-0.0585296378,-0.017041184,-0.0093402946,0.0600539967,0.0050152852,-0.0043178191,0.0752400607,-0.0111378878,0.0158763435,-0.0112313628,-0.0013266238,-0.0202337094,-0.0164803341,-0.02525259,0.0299119521,0.0189394429,0.0046701473,-0.0068056881,0.0299982354,-0.0276973173,0.0096782418,-0.010634562,-0.0350314975,-0.0199460946,-0.0054826592,-0.0307172742,0.0083408328,0.0107711786,-0.0076217954,-0.0342261754,-0.0469962768,-0.0059428434,0.0023728232,0.0322416313,0.0147834066,0.006345504,0.014955976,-0.068164736,0.0219737794,-0.0394032449,-0.0253820159,-0.036785949,-0.0048570968,-0.004432865,0.0360381491,0.0473701768,0.0493547209,-0.0244328883,-0.0107136555,-0.0139852753,-0.0021840758,-0.0086212568,0.0085565438,0.0686824396,-0.026000388,0.0331332386,-0.0014982939,0.0218587331,0.0132446671,0.0143016521,-0.0200611409,0.0143735558,-0.0005239985,0.0126406755,-0.0201905668,-0.0060003661,0.0196009576,0.0185224004,0.0842136517,-0.0097860973,-0.0359806269,-0.016264623,0.0112385526,0.0000142333,0.0141650345,-0.0105770389,0.004896644,0.0249218326,-0.0080316467,-0.0270645637,-0.0247061215,0.0130073847,-0.0026676285,-0.0366133787,-0.0089951567,-0.0309186038,0.0251375437,-0.0066654757,-0.0131727634,0.0028491854,0.0291641522,0.0428258628,0.0008277917,0.0280424543,-0.013525092,-0.0182347856,0.0289340615,-0.0084630689,0.0033111668,0.0114398832,-0.0136329476,-0.0082689291,0.0568039455,0.0387129672,-0.0077584125,0.0072730621,-0.0270214211,0.0045047686,0.0202193297,0.018565543,0.0075498917,0.0573216528,-0.0261585768,0.0256983936,0.0036383288,-0.0261298157,-0.048261784,-0.0268488526,-0.0164659545,-0.0192845799,-0.0103972796,0.0173431803,0.0073269899,-0.0172137525,-0.0246485993,0.0160920545,-0.0242603179,0.0234262347,0.0100593315,0.0042099636,0.0022200276,-0.0089160623,-0.0080172662,-0.0081107412,0.0067373794,0.0250800215,-0.0090239178,0.0149847372,0.0273809396,0.026216099,0.0190544892,-0.0224627256,-0.0003431156,0.0062915762,0.0331620015,-0.0052417819,0.0037677553,0.0273090359,-0.012561582,-0.0188963003,0.0691426247,-0.0084558791,-0.0047815982,-0.0421068259,-0.0252813511,0.0505914651,0.0019989237,0.022606533,-0.0151716871,-0.0044724122,-0.0179471709,0.0256840121,0.0199748557,-0.042854622,-0.0027790791,-0.024317842,-0.030630989,-0.0230091941,0.0431422368,0.0212978851,0.0075858436,0.0153011139,0.0383965932,-0.0581557378,-0.0160920545,0.0283156894,0.0030577062,0.0373324156,0.0107496073,-0.020679513,-0.0239295606,0.0285457801,0.0594212413,-0.0112673147,0.0033165596,-0.0406687483,-0.0147043131,-0.0045191492,-0.0118209729,0.0036509119,-0.0109293666,0.0228222441,0.0229085293,-0.0041704164,-0.0174294636,0.0261873379,-0.0265324768,0.0032913932,0.0013913371,-0.0053029,0.0102534723,-0.0206938926,-0.0763905197,-0.0149415955,-0.0125472005,-0.0289340615,-0.0166529045,-0.0502463281,0.0027898648,0.0221032072,0.0104907546,0.0349739753,-0.0127269598,-0.0510228872,-0.0178608857,-0.0300269984,0.0509941243,-0.015890725,0.0087506836,-0.0067517604,0.0391731523,-0.0043609613,-0.0020977913,-0.0547906421,0.0092468197,-0.0258853436,-0.0464210473,0.0208089389,-0.0261873379,0.0038360639,0.0216861647,0.0042710816,-0.0309186038,0.0442639366,-0.0091892965,0.0295668133,-0.0235268995,-0.0063706706,0.000848464,-0.0322703943,-0.0005936552,-0.0450980179,-0.0032248823,-0.0201761872,-0.0359806269,-0.048261784,0.0088225873,0.020492563,-0.0353478752,0.0328456238,0.0564875714,0.0063490993,-0.002602915,0.0010390088,0.0139565142,-0.0062196725,-0.0137623735,-0.0316664018,0.0048139547,-0.0231673811,-0.0050224755,-0.0052597579,0.0157181546,0.0141578447,0.0303433742,-0.0068128784,0.0316376425,-0.0013176359,-0.00361496,0.0350314975,-0.0164371934,-0.0121157784,-0.0281575006,0.009548815,-0.0084774494,0.0223908219,0.0028491854,0.0423369147,0.01368328,0.0011252933,0.0311486963,0.00626641,0.002293729,0.0445803143,0.0037282084,-0.012036684,-0.0184217356,0.013028956,-0.0108934147,0.0108934147,-0.0208377,-0.0307172742,-0.0304584205,-0.0220025405,0.0303721353,-0.0182923097,-0.001555817,0.0417616852,0.0091677252,0.0021786829,-0.0689700544,0.0036113649,0.0488657765,-0.0018065812,0.0119647803,0.0083480226,0.0373611785,0.0280280747,0.0300557595,0.0086500188,0.0116196424,-0.0497286208,-0.0270501841,0.0038073026,-0.0033543089,-0.0186230652,0.0215998814,0.0061585545,0.017443845,0.0385691598,-0.0120510655,-0.0177170783,-0.0323279165,0.0182635467,0.0007221831,-0.0072371103,0.0017966945,0.0502175651,0.0310624111,-0.0080675986,-0.0163077656,0.0122164441,-0.0068847821,-0.0037533748,-0.0384541154,0.0520583019,0.0061190072,0.0052849241,-0.0169980414,0.0071580163,-0.0045730774,-0.0133453319,0.0583283044,-0.0395182893,0.0465648547,0.0006260119,0.0084846402,0.0173431803,-0.0012780888,-0.0042423201,0.0244472679,0.0128851486,-0.0040625609,0.002682009,-0.0060363179,-0.0015234603,-0.0235988051,0.0052561625,0.0136688994,-0.0112241721,-0.021082174,-0.0032608341,0.0220313035,-0.0059248675,-0.0252669714,0.0154305408,-0.0223189183,0.024130892,-0.0240302272,-0.0031907279,0.0175445098,0.0063886466,0.0273090359,-0.0172425136,0.0037282084,-0.016048912,0.0133165708,-0.0128995292,-0.0111091267,-0.0278986469,0.0135969957,0.0257559158,-0.0297393836,0.0222470146,-0.010821511,-0.0091964873,0.0169548988,0.0170555655,-0.0108790342,0.021614261,0.0455006808,-0.0132087152,-0.0212115999,-0.0168254729,0.0118353544,-0.0206651315,0.0141578447,-0.0003925494,0.0098795723,-0.0152148297,0.0245910753,0.0062412438,0.0069674714,0.0250944011,-0.0308898427,-0.0257271547,0.0076074149,-0.0020474587,-0.0047744075,-0.0072910381,-0.0357792974,-0.007477988,0.0117059276,-0.0153298751,0.0171130877,0.0305734668,0.0362682417,-0.0274384636,0.0189106818,-0.0160776749,0.0398921892,-0.0172712766,-0.0419054925,0.0514830723,-0.0100737121,0.0508790798,0.0297969058,-0.0254251584,-0.0039187535,-0.0327593386,0.0182779282,0.0274097025,0.0042315344,0.035577964,-0.0166816656,-0.0087650651,0.0137911355,0.004896644,0.0246342178,0.0101096649,-0.0082617383,0.0202480908,0.0012106791,-0.0006799396,0.033737231,-0.0142944613,-0.0188531578,-0.0029714217,-0.0150278797,0.0519720167,0.0281862617,-0.0139061818,-0.0377926007,0.0384541154,-0.0029246842,0.0495560504,-0.0103828982,-0.0339385606,-0.0304584205,0.0033884633,0.017386321,0.0312637426,-0.0004947875,-0.0161495786,0.0068488303,-0.009081441,-0.0213266462,-0.0078878393,-0.0003183987,-0.0023009193,0.0003139047,-0.0053029,0.0084702596,0.0055006351,0.0153730176,0.003054111,0.0170843266,-0.0037497794,-0.004493983,0.0051087602,-0.0174582265,-0.0134100458,0.0326442942,0.0246342178,0.0213841684,-0.0288909189,-0.0341398902,-0.0050656176,-0.0289484411,0.0205213241,0.0055258018,0.0057666791,0.0139565142,0.0472551323,-0.0188819189,0.0164803341,0.0126406755,0.026244862,-0.0236275662,-0.0210534129,-0.0288333949,0.0095128631,0.011475835,-0.0012232622,0.0212835036,0.0336221829,0.0191839151,-0.015516825,-0.0490383431,0.0005774768,-0.000348059,0.0153154945,0.0070142089,-0.0211828388,-0.0059572239,0.0203918982,0.0322703943,0.0135035207,-0.0362970047,-0.0045694821,-0.0073521566,-0.0277979821,-0.0271364674,0.0251375437,0.0074276552,0.0045946483,-0.0005684888,-0.0116484044,-0.0017337787,-0.0026154981,-0.0142657002,0.007636176,0.012158921,-0.003460367,0.0381952599,-0.0144095076,0.0140643697,0.002581344,-0.0060686748,-0.011101936,-0.011101936,0.0136976605,0.0070645413,-0.0117490692,0.010447612,0.0203056131,0.0491821505,0.0089520141,0.0046413857,0.0056732041,0.0078446968,-0.0127269598,0.0369585156,0.0310048889,0.0221607294,0.02276472,0.008614067,0.0178033635,0.0002703131,0.0032194895,-0.004648576,0.0013760576,0.0004925405,-0.0187381115,0.0091821067,-0.042883385,0.0123602515,-0.0167823303,0.0078303162,0.0293079596,-0.007959743,0.0114255026,-0.0029156962,0.0189394429,0.0195434336,0.026403049,-0.055538442,-0.0360093862,0.0173719414,0.006327528,-0.0422793925,0.0239583235,-0.0036023769,0.0052202106,0.0240014642,-0.0110803647,-0.009671052,-0.0019539839,0.0101528065,-0.041704163,0.0023009193,0.0028743516,-0.017630795,0.0178465061,-0.0158332009,-0.0091317734,-0.0013158383,0.0097717168,0.0324717239,-0.0085996864,0.0381089784,-0.0118137831,-0.01330938,0.0192270577,0.006669071,0.0382240228,-0.0252094474,-0.0266619027,0.0085349726,0.0105842287,-0.0086787799,0.0000870147,0.0047348607,0.022016922,0.0039798715,0.0091317734,0.0206938926,0.0155312056,0.0040697511,0.0249218326,0.0202480908,0.0129426718,0.0015189663,0.0734568536,-0.0254970621,0.0045479108,0.0005577033,0.0110875554,-0.03103365,0.0383965932,0.0062736003,-0.0114039313,0.0096494807,0.0121948728,-0.0343987457,0.0121948728,0.0213841684,-0.0138846105,0.0108071305,-0.0042962478,0.0063059572,0.0011855128,-0.0110012703,0.0105626583,0.0179903135,-0.0104116602,0.0233399514,0.0368722342,-0.0018263548,0.0124321552,0.05858716,0.0360093862,0.0129211005,-0.0063383137,-0.0020294827,0.0004444549,-0.0085277827,0.0163940508,0.0023746206,0.0230235737,-0.0041308692,-0.0073593468,-0.0183210708,0.0266906638,0.0095416252,-0.0354629196,0.0012691008,0.0024537148,-0.0147546455,0.0073413709,0.0036473167,0.01368328,-0.0308323186,-0.0088513494,-0.0207801778,-0.0065036924,-0.0035232827,-0.0233399514,0.0026927947,0.0286895875,0.019313341,-0.0304871816,0.0186662078,0.0311774574,-0.0165953804,0.0145964576,0.0065791914,0.0191839151,-0.0084702596,-0.0109725092,-0.005144712,-0.0225202478,-0.0057163467,-0.018162882,-0.0094337696,0.0258853436,0.0077008894,-0.0168686155,-0.0155599676,-0.0359806269,-0.0339097977,0.0062088869,0.0169261377,-0.0094265789,-0.0105986102,0.0170987062,0.0574079379,0.0350027345,0.0182060245,0.0265324768,-0.0165953804,0.0094121983,-0.0046845279,0.0155455861,-0.0400072336,-0.0117922118,0.0084199272,-0.0187956356,0.0212835036,-0.0271652285,-0.0276685543,0.0372173712,0.0080747893,0.0180909783,0.037131086,0.0315513574,0.019500291,0.0129211005,0.0245623142,-0.0161783397,-0.0110803647,-0.0083695939,-0.0351177827,0.0182635467,-0.0162358619,-0.0126838181,0.0039259437,0.0348014049,-0.0088225873,0.0282437857,0.0061010313,0.0033597017,0.0032033112,-0.0070897075,-0.0070609464,0.0068560205,-0.0078518875,0.0021517191,-0.0205932278,-0.0301708058,0.0076936991,0.0097070038,-0.0218155924,0.0096926223,0.0015791857,-0.0246342178,-0.0478303619,0.0120582553,0.0027593055,0.0054359222,-0.0073305853,0.0112169823,0.0319252573,0.0093762465,0.0271220878,0.0392306745,0.0069710668,0.0031997159,-0.0062915762,-0.032931909,0.0274959859,0.0192702003,-0.0101815686,-0.0076002241,-0.0022398012,0.017443845,0.0321841091,-0.02487869,-0.0081826448,-0.0065971673,0.0038540398,0.0072155395,0.0205500852,-0.0049829283,0.0134459976,0.0094481502,0.0043573659,-0.0319827795,0.0131727634,0.0070034233,-0.0416466407,0.0079094106,-0.0031403955,-0.0080604078,-0.0033489163,-0.0100809028,0.0081826448,0.0147115029,0.0111306971,0.003248251,-0.0119144479,0.0078806486,0.040179804,0.0109868897,-0.0291641522,-0.0396333374,0.0293511022,-0.0082833096,0.0001484138,-0.0268919952,0.0110444129,-0.0174294636,-0.0109796999,-0.0199748557,0.0247636437,-0.0264605731,0.0041452502,0.0062196725,-0.0080028847,0.0169980414,0.0156606324,-0.0351465419,0.0004610827,-0.0014982939,0.0316088796,-0.033248283,0.002408775,0.0013014575,0.0156606324,0.0113607896,0.0062628151,0.0073593468,0.0020115068,0.013776755,-0.0049613575,0.0253101122,-0.0033399283,-0.0106489426,-0.0094769113,-0.0116843563,0.0157469176,-0.0073593468,0.0046377904,0.0391443893,0.0158188213,0.0286752079,0.0133381421,-0.0138270874,-0.0207226556,0.0196584798,0.0037893266,-0.0013859444,-0.0396908596,0.0209671278,0.0181053597,-0.001652887,0.0025274162,-0.0020744225,0.0125256302,0.0232392848,-0.0076289857,-0.0081754541,0.0056264671,0.0115333581,-0.0062160776,-0.0251950677,-0.0094697215,0.014057179,0.0077152704,-0.0502175651,0.0107136555,0.0065540248,0.0050188801,-0.0060003661,0.0184936393,0.0272227526,0.0412727408,-0.0267194267,-0.0001698726,0.0491821505,-0.0117274979,-0.0098508112,-0.0018820801,0.0225346293,-0.001749957,0.0119791618,0.0094769113,-0.0283732116,0.0109581286,-0.0387417302,-0.019313341,0.011073174,0.0110012703,-0.0059680096,0.0248643104,0.0234406162,0.0267481878,0.0076433667,0.0097789075,-0.0156893935,-0.0288190152,0.0545317903,0.0062160776,-0.0210677925,-0.0243897457,0.0411289334,-0.0047959788,-0.0104332315,-0.0039726812,0.0317814499,-0.0080604078,0.0101024741,0.0232680477,-0.0563437641,-0.0203918982,0.0032194895,0.0265612379,-0.0227359589,-0.0197303835,0.0255977269,-0.013589805,0.0174582265,0.0250081178,-0.0153730176,-0.0231530014,-0.008024456,0.0014398722,0.0107855592,0.0159194861,-0.000140774,-0.0346575975,-0.0026442597,-0.03526159,-0.0050656176,0.0091389641,0.0025939271,-0.0266762841,0.0039511099,0.0251087826,0.052489724,0.013898991,0.0313500278,-0.0038324688,0.0059644142,0.0152579714,0.0015288531,-0.0031853353,0.0091533447,-0.0143591752,0.0088225873,-0.007866268,0.0180190746,-0.0137551837,-0.0387129672,0.0365558565,0.0263455268,0.0151716871,0.0007895929,-0.004199178,0.0168254729,0.0417904481,0.0001268427,0.0098939529,-0.0270358026,0.0208377,0.0195865761,0.027524747,-0.005036856,0.0097501455,0.0201042835,0.009390627,0.0096998131,0.0143160326,0.0047564316,0.0108790342,0.0282150228,-0.0039870618,-0.0079453625,0.0341398902,-0.034427505,0.0236707088,0.0035124973,0.0471976101,-0.0180909783,0.0091317734,0.0199460946,0.0063311234,0.0365270935,0.0183210708,-0.0223189183,-0.0303146131,0.015890725,-0.0089016818,0.035951864,-0.0027718889,0.040151041,-0.02276472,-0.0126406755,-0.008117931,-0.0019252223,-0.021082174,0.0307172742,0.0099083344,-0.0059176772,-0.0316376425,-0.000288289,0.007150826,0.0144166974,-0.0143807456,0.0203918982,0.0347151197,0.0136976605,0.0232249051,0.0114398832,-0.0260866731,-0.0035142947,0.0155455861,-0.0067733312,0.013589805,-0.0293367226,0.0133237615,0.0242890809,-0.0070357798,0.0017445643,-0.0333058089,-0.0517131612,-0.0189106818,0.0265324768,0.0063419091,-0.0271652285,0.0462772399,0.0014344794,0.0437462293,0.0211684573,0.0331620015,-0.0129930042,0.0099946186,0.0290778689,0.0018101764],"8":[-0.0115766311,-0.0322340168,0.0617597364,-0.0075208275,0.0528382957,-0.0162232146,-0.0158514883,0.0274281204,-0.051245179,0.0485634394,0.0311453864,-0.0453506559,-0.0270298421,-0.0264855269,0.0397482067,0.0385533683,-0.0014952043,0.0057385308,-0.0532631241,0.0059509464,0.0251313802,0.0215734243,-0.017112704,-0.0116894767,0.0109592993,-0.0092334254,-0.0080717802,0.0456427298,-0.0070959972,-0.0532100201,-0.0073017743,-0.0385002643,-0.0520948432,0.004304728,0.0317295305,-0.0154664861,0.0380223319,0.0337740257,0.0207370389,-0.0004167405,0.0080585042,-0.0081315218,0.0149619998,0.0634059533,-0.0298177917,0.00570866,-0.0251977593,-0.0596355833,0.0087090256,0.0551217608,-0.0716370419,-0.0061666803,-0.0215999763,-0.0028261186,0.0410757996,0.0016868758,-0.0061766375,0.0146035487,-0.0055294349,-0.0223301537,0.0011906871,-0.0311188344,0.0180287454,-0.0102888644,-0.0328978114,0.0143911336,-0.0434654728,0.0368009433,-0.043916855,0.0220911875,0.0204980727,0.0016661321,0.0155195901,-0.0274015684,0.0246799979,-0.061122492,0.0078792786,0.0998351723,-0.0177897774,-0.0320481509,0.0128312092,0.0011964953,0.0101760188,0.0214937683,-0.0241755117,-0.043916855,-0.0008384595,-0.0103419675,-0.0235648174,-0.0142716505,-0.0585735068,0.0385533683,0.0080253137,0.0402261391,0.0289415792,0.0299505517,-0.0059011616,-0.0462799743,0.0233524032,0.0174977072,-0.0353936926,-0.0159311444,-0.0217327364,-0.0001039777,0.0412085615,-0.0059907739,0.0132626779,0.0283574369,-0.0019930524,0.0204715207,-0.0641494095,0.0143513056,-0.0374116376,0.0097578261,-0.0129573308,-0.0177101213,-0.0145106176,0.0050249486,0.0221841186,-0.0066943998,-0.0310391802,-0.0092666158,-0.0161302835,-0.0129042268,0.0421909802,0.0058115488,0.0195023753,-0.0702032447,0.0146301007,-0.0277201906,0.0184270237,-0.0063990098,0.036190249,-0.0299505517,-0.0211884212,-0.0212548021,-0.0145504447,0.0065682782,0.0061069387,-0.0287026111,0.003028577,-0.0251446553,-0.0000458435,0.0318622887,-0.0473420508,0.0045835231,-0.0129838828,0.0778501928,-0.0161701106,-0.0096250661,0.0010230782,0.0028393946,-0.0435716808,0.0052771918,0.0058712903,-0.0030169603,0.0003845878,0.0361105949,-0.0026385959,-0.0614942163,-0.0419785641,0.0560245253,-0.0082974713,0.0122072389,-0.0166745968,0.0083240233,-0.0465985984,-0.0519355312,-0.0409164876,-0.0214273892,-0.0239498205,-0.049280338,0.0100498972,0.0074610859,0.0210689381,-0.0383675061,-0.0219717026,-0.03438472,0.0244808588,-0.0616535284,-0.0955337584,-0.0207370389,-0.0491210297,-0.0122935334,-0.0288353711,0.0164489057,-0.0180154685,0.0459879041,0.0061666803,0.0253437962,0.0087886816,0.0551217608,0.0092865294,0.0394295827,-0.0030966161,0.0119483583,0.0276936386,0.0123997405,-0.0203122087,0.0064853034,0.0604852438,0.0055294349,-0.002273507,-0.0018453576,0.0021772564,0.0052240877,0.0000567858,-0.0195687562,-0.0659549385,-0.0222903267,0.0118620647,-0.0301895179,0.0195554793,0.0150018279,-0.0488024056,-0.0263660438,-0.0385533683,-0.0181482285,0.0167144258,0.0035878264,0.0050315866,0.0448992737,0.0068968581,-0.0075739315,-0.0400137231,-0.0069300476,0.0612818003,-0.0298177917,0.0314109065,-0.0292867534,0.0204051398,-0.026830703,-0.0016868758,-0.0456427298,0.0295257214,-0.0082443673,-0.0245472379,-0.0251579322,-0.0049021458,-0.0425892584,-0.0017441284,0.0290743392,-0.021082215,0.0188784059,-0.0086691976,0.0184934027,-0.0143645816,-0.0254101753,0.0268705301,0.0416599438,0.0327916071,-0.0285964031,0.0033223075,-0.0183739197,-0.0239763726,-0.0644680336,-0.0223699808,0.0103950715,-0.0129573308,-0.0014064213,0.0108995577,-0.0339864418,-0.0518824272,0.0261801798,-0.0192368571,0.0066943998,-0.0104481755,-0.0381816439,0.0040956317,-0.01906427,0.0266846661,0.0432265066,0.0135215586,-0.0286760591,-0.0380754359,-0.0185199548,0.0155726932,0.0213742852,0.0211485941,-0.0119749103,-0.0184004717,-0.0423237383,0.0257022455,0.0071955668,0.0220380835,0.0205113478,-0.0304019339,-0.0051510702,-0.0091736838,-0.0307205562,-0.0126785357,-0.0020909626,0.0191572011,-0.0283308849,0.0391375124,0.0255429354,0.0178296063,0.0301098619,-0.0309860762,0.0067906501,0.0138866473,0.0044574016,-0.0224894658,-0.0139397513,-0.0069167716,0.0099038612,-0.0139530273,-0.0091338558,0.0301629659,-0.0039761481,-0.0126785357,0.0207503159,0.0445540994,-0.026631562,0.0083439369,0.0315702185,0.0422440842,-0.0241887867,0.0143247535,-0.0954806581,-0.0626093969,-0.0693004802,-0.0118687022,-0.0156523492,0.0092135118,-0.0184535757,0.0095387725,0.0194094442,0.0063293111,-0.0078062606,0.001853655,-0.0006974025,-0.0177499503,0.0071822908,-0.0353140347,-0.0351016223,-0.0145238936,0.0189315099,-0.0136476802,0.0089546302,-0.0737080947,0.0063990098,-0.0576176383,0.0247065499,0.0033372429,0.0312515944,-0.0096449805,0.0317826346,-0.0198608264,0.0153337261,-0.0526524335,0.0219717026,0.0627687052,0.0078128986,-0.0281981248,-0.0232860222,-0.0182809886,0.0068371161,-0.0077863466,-0.0484041274,-0.0560776293,0.0264456999,-0.0004318834,0.0109261097,-0.0192235801,0.0332429893,-0.0105809346,0.0148292398,-0.0357388668,-0.0219318755,0.0300302077,-0.0327385031,-0.0409164876,0.0091338558,-0.0445275493,-0.0116695631,0.0100963628,0.0446337573,-0.0362699069,0.0755136237,0.0360574909,0.0203785896,0.0140061313,-0.0552279651,0.0027431438,0.0525727756,0.0223567057,0.0055062016,-0.0526524335,0.0192103051,0.0224230848,-0.0354999006,-0.0125723276,0.008649284,-0.0370664634,0.0180951245,-0.007646949,0.0262465607,0.063246645,-0.0146566527,-0.0433592647,-0.0258748326,-0.0198608264,-0.0068769441,0.0231798142,0.0146964807,0.0350750685,0.0243082717,-0.0339598879,-0.0120014623,-0.0054630549,-0.0289150272,0.0384206101,0.0150416549,-0.0175906383,-0.0181615036,-0.012339999,0.0243746508,-0.0143513056,0.0780626088,0.0262996648,-0.0027331871,0.0007293477,0.0068238401,-0.024799481,0.0329509154,0.0659549385,-0.0231399871,-0.0051112422,-0.04566928,-0.013342333,-0.0443151332,0.0320481509,-0.0370664634,-0.026777599,-0.0015176075,0.0320216008,-0.0312515944,0.008689112,0.0063093971,0.0036210164,0.0405978672,-0.0088417847,0.0367212892,-0.0292867534,-0.0114239585,-0.0553341731,-0.0075606555,-0.0608038679,-0.0071889288,0.0478996411,-0.0186925419,-0.0145106176,0.0050315866,0.0340395458,-0.0440496132,0.0644680336,-0.0136078522,0.0591045469,-0.0206175558,-0.013355609,0.0277467426,-0.0348892063,0.0078195371,-0.0178694334,-0.0365354232,0.0584672987,-0.0131896595,0.0254765544,-0.0290212352,-0.0014014428,0.0138733713,0.0054862876,-0.0219982546,-0.0074411719,0.0053302953,0.0274546724,-0.0148425158,-0.0138733713,-0.0126254316,0.0330305733,-0.0010471408,-0.017165808,0.0322340168,-0.0069499617,-0.0134153515,0.0232594702,-0.0118288742,0.0213610101,0.0058181868,-0.0368540473,-0.0133489715,0.0603259318,-0.0147761367,-0.0230072271,-0.0003829283,-0.0854440406,-0.0481386073,-0.0102623124,-0.0061899135,0.0468375646,-0.002007988,-0.0058248248,0.0661142468,-0.0119549958,0.0121607734,-0.0022519336,-0.0073548784,-0.0098706717,-0.0338271298,0.000797387,0.0432265066,0.0159178674,0.0428813286,-0.0004352024,-0.0088152336,-0.045828592,0.0110522313,-0.0184270237,0.0098308437,-0.0167409778,-0.0353140347,-0.0290743392,0.0126984492,-0.0017142575,-0.0321543589,-0.0514841489,-0.0366681851,-0.0004302239,-0.0306143481,0.0215601493,0.0089214407,-0.0012786402,-0.0149221718,-0.0413413197,-0.0016752594,-0.0228744671,-0.0264855269,-0.0595824793,0.0229275711,0.0109924898,0.0419785641,-0.0009658256,0.0432796068,-0.006262931,0.0072619468,-0.0062928018,-0.0002136599,-0.0138600953,0.0028194806,0.0598479994,-0.018918233,-0.0196085833,0.0039462773,0.0075208275,0.0226620529,0.0059575844,0.007686777,0.0007247841,0.0233524032,0.0087754056,-0.0118753407,-0.0065550022,0.0077863466,0.0135613866,0.0482713655,0.0241755117,-0.0676542595,-0.0287291631,0.0005040714,-0.0314109065,0.0042250725,0.0130834524,-0.0121209454,-0.0015035018,0.010468089,-0.0082709193,-0.0267377701,0.0140459584,0.0149088958,-0.0283043329,-0.0211353172,-0.0317295305,0.0330571234,0.0073947059,0.0054497789,-0.0011201586,0.0260341447,0.0144442376,-0.0136078522,0.0073216883,-0.0284901969,-0.0298177917,-0.0150018279,0.0016885353,0.0155328661,0.0245206859,0.0072752223,-0.009545411,0.0163559746,0.0148690678,-0.0136211282,0.0001475913,-0.0308533162,-0.0068238401,0.0402261391,0.019024441,0.0197678953,0.036084041,-0.0203918647,0.0313843526,-0.0032277163,-0.0015864765,-0.0581486784,-0.0184004717,-0.0196218602,-0.043810647,-0.0059443084,0.0187190939,-0.0045636091,-0.0442089252,-0.0001052742,0.0154532101,-0.0136476802,0.0163692515,-0.0028460326,-0.0116164591,-0.0089148032,-0.0327385031,0.0127316397,-0.015214243,0.0002491316,0.0397482067,0.0068371161,0.0074345339,0.0195422042,0.0412085615,0.0147761367,-0.0167277008,-0.0031746123,0.0139530273,0.0055924952,0.0020976006,-0.0103353299,0.0284636449,-0.0268705301,-0.0210689381,0.0463065244,0.0045569711,-0.0128312092,-0.0257819016,-0.0163559746,0.0625031888,0.0228479169,0.0215601493,-0.012326723,-0.0041885632,-0.0257420745,0.0399606191,0.0169932209,-0.0376506038,0.0115567176,-0.0131697459,0.0043843836,-0.0316233225,0.0125656901,0.0141919944,0.0147230327,0.036084041,0.0192899611,-0.047527913,0.0236046463,0.01135094,0.0119085303,-0.0010994149,-0.030508142,-0.0193961672,-0.0443416834,0.0368805975,0.0611755922,-0.0274015684,-0.0046598599,-0.0484572314,-0.0088616991,0.0279060546,-0.0127117252,-0.0029754732,0.0174578782,0.0386595763,0.034331616,0.0064620706,-0.0212149732,0.0051709837,0.0053402525,0.0225956738,-0.003035215,-0.0141787184,0.0577769503,-0.0139264753,-0.0411289036,-0.0027282084,-0.0142849265,-0.0354999006,-0.0414740779,-0.0327650532,-0.0053767613,-0.0108929202,0.0035878264,0.0440496132,-0.0206972118,-0.0520948432,0.0018835259,-0.0320216008,0.0234187823,-0.0331102274,-0.0028062046,-0.0121541359,0.0182809886,-0.0040923129,-0.022754984,-0.0432796068,-0.0131763835,-0.0146964807,-0.039801307,0.0204980727,-0.0514841489,-0.0069167716,0.0387923345,0.0001758027,-0.0017889347,0.0070628072,0.0109460233,0.0412616618,-0.0328978114,0.0234187823,-0.0286760591,-0.0221442897,0.0099370517,-0.0621845648,0.0144176856,-0.0312781483,-0.030508142,-0.0177632254,0.0103154154,0.0171790831,-0.0171259809,0.0265519079,0.0732832626,0.0294991694,-0.0170728769,-0.0235913694,0.0109261097,0.0074743619,-0.0011400725,-0.0215070453,-0.0091803223,-0.0240560286,-0.0145106176,-0.0221044626,0.0139928553,0.0135016451,0.0422971882,-0.0074013439,0.0454037599,0.0046963687,0.0004256603,0.026697943,-0.0051012849,-0.0048357663,-0.043810647,-0.0012487693,-0.0369071513,0.0027414844,-0.0087289391,0.0418723561,0.0089811822,0.0140061313,0.0276139826,0.0405182093,0.0263527669,0.0174977072,-0.0011359238,-0.0217327364,-0.0293133054,-0.0078925546,-0.0172321871,0.0073349643,-0.0031215085,-0.0125391381,-0.036030937,-0.0225691218,-0.0091604078,-0.0235780943,-0.0124528445,0.0008164711,0.0183606446,0.0237639565,-0.1131111234,-0.0155328661,0.0425627083,0.0089347167,0.0156257972,0.0161302835,0.0271758772,0.0413678698,0.0161701106,-0.0133356955,-0.0045602899,-0.0271493252,-0.0292336494,0.002716592,0.0123599125,0.0098374812,0.0381816439,-0.0031596769,0.0019797767,0.0124727581,-0.006236379,-0.0040458469,-0.0784874409,0.032313671,-0.0145106176,-0.008516524,-0.0108199017,0.0603790358,0.0136742322,-0.0014819283,0.0029937276,-0.0195687562,0.0075872075,0.0146964807,-0.0058513763,0.0703094527,-0.0106738666,0.0094192894,0.0015590948,0.035924729,-0.0267112181,-0.0189315099,0.0740267187,-0.0396419987,0.0540596843,-0.022993952,-0.0097976541,-0.0055128396,-0.0193430651,-0.0092533398,0.04566928,-0.0088285087,-0.0140990624,0.0053004245,0.0026419146,0.0101361908,-0.0381285399,-0.0166878738,0.0340926498,-0.0064189234,-0.0193430651,-0.0039695101,0.019037718,-0.0355795547,-0.0265386309,0.0015972632,-0.0016387505,0.0182677116,-0.0275343284,-0.017112704,0.0165418386,0.0199006535,0.0222903267,0.0207104869,-0.0119616343,-0.0180420205,0.0114637855,0.0035911454,-0.0161170084,-0.0214539412,0.0140725104,0.0009293167,-0.0585204028,0.0042350292,-0.0091471318,0.0000207307,-0.0022104462,-0.0168073568,0.0119881863,0.0119151687,0.0379692279,-0.0053369333,0.0039794669,-0.011390768,0.0175375342,-0.0147495847,-0.0310657322,0.0138335433,0.0090210102,-0.0247331019,0.0313312486,0.0117359431,-0.0075274655,0.0289681312,-0.0071756528,-0.0217592884,-0.0000735363,-0.0051377942,-0.0198342744,-0.0216398034,-0.0053601661,-0.0259013847,0.0173914991,0.0031762719,-0.001230515,-0.0081116073,0.0576707423,-0.0223965328,0.0164754577,-0.0296850316,0.0177632254,-0.0003433079,-0.0450585857,0.0442089252,-0.0102025699,0.0131631084,0.0167808048,0.0002798322,0.0038467075,-0.0182677116,0.0136742322,0.0142583745,0.0129042268,0.0486430936,-0.0093130814,-0.0198475514,0.0081647113,0.0165285617,0.0321809128,0.0211353172,-0.0126918117,0.0330305733,-0.0011458808,-0.0200865176,0.0347298943,-0.0256491415,-0.011404044,0.0013889966,-0.0280919168,0.0612286963,0.0267643221,-0.0115036136,-0.0044739963,0.0544314086,-0.0219451506,0.0377302617,-0.0406775214,-0.0415537357,0.0063591818,0.0084833344,0.0185597837,0.0268174261,0.0036840772,-0.0042682192,-0.0144840656,-0.0119350823,0.0067109945,0.004344556,-0.0239099916,0.0216132533,-0.0146699287,-0.0095719621,0.015214243,-0.0059443084,0.0308798682,0.0352874845,0.0318091847,0.0276405346,0.0007484319,0.0058181868,-0.0167277008,-0.0255562104,0.0294991694,0.0387126803,0.0089944582,0.0079522962,-0.0394030288,0.0054796496,-0.0107999882,0.0292336494,-0.0195422042,0.0308798682,0.002844373,0.0551748648,0.0049187406,0.0271891523,0.0103685195,0.0178030543,-0.0372788794,-0.0078660026,0.0168870129,0.0079191066,-0.0006712654,0.0008919782,0.0089811822,0.0494130999,0.0050714142,-0.0074013439,-0.0283574369,0.0378630199,-0.0013856776,0.0205910038,0.0142716505,-0.0136875082,-0.0239896476,-0.0024593703,0.0459879041,0.0240958557,-0.0329509154,-0.0031231681,-0.0382878482,-0.0127316397,-0.0123731885,0.0041520544,-0.0010048237,0.0088484231,0.0344112702,0.0287822671,0.0006260442,-0.0058580143,-0.0136344042,0.0052904673,0.0016470479,0.009545411,0.0293929614,-0.0131962979,0.0175773632,-0.0042549432,-0.0022137652,-0.0339333378,0.0146433767,0.0126519836,0.0055692624,-0.0294460654,0.0295522735,0.0042814952,0.0451913476,0.0094856685,0.0135215586,0.0108730057,0.0064620706,0.0156921763,0.0181880556,0.0407571793,0.0330836773,-0.0011815599,0.0062529743,0.0343581662,0.0038234745,-0.0153071741,0.0036243354,0.0121076694,0.0083306609,-0.0084368689,0.0068835821,-0.043757543,-0.0108265402,-0.000653011,0.0019200348,0.0124594821,-0.0141521664,0.021002559,-0.0133356955,0.0007675161,0.0202325527,0.0236179214,-0.0419254601,-0.0363495611,-0.0030700644,-0.0354733467,-0.0144044096,-0.0359512828,0.0025440047,-0.0128643988,0.0175375342,-0.0087223016,0.0259677656,-0.017298568,0.0154133821,-0.0362964571,-0.0086028175,0.0355530046,-0.0194359962,0.0226089489,-0.0166347697,-0.0063060778,0.0251048282,0.0142982015,0.0281981248,-0.0269767381,0.0350485183,-0.0043810648,-0.0001282996,0.0508734547,0.0132560395,0.0085629905,-0.0381550901,-0.0198873784,0.0116363736,0.0071557388,-0.0322605669,0.0149221718,0.0318888389,0.0235648174,0.008649284,0.0202458296,0.0173649471,0.0122072389,0.0227948129,0.0327119492,0.015254071,-0.0044739963,0.0107269706,0.0443416834,0.0137671642,-0.0349423103,0.0157718323,0.0005273043,0.0033389023,0.0082443673,0.0207237639,0.0142450985,-0.0102025699,0.0186527148,-0.03788957,-0.0139663033,0.0125723276,0.0015732005,0.0142583745,-0.0075938455,0.0271360483,0.0117624952,0.0159311444,0.0272157043,0.010574297,-0.0131763835,0.0238436125,0.0327916071,0.0150018279,0.0338536799,0.0405713134,0.0361636989,-0.0049884394,-0.0145902727,-0.0100963628,0.0032476301,0.0011765814,-0.0066081057,0.0091006663,-0.0022369982,-0.0099104997,0.0096980836,-0.0027730148,0.0302426219,0.040146485,-0.0410757996,-0.001003994,0.002709954,-0.0239498205,-0.0156125212,0.0303488299,0.0126187941,-0.034225408,-0.0181349535,-0.0070030657,-0.0096980836,-0.0073084123,-0.0283839889,0.0031264871,0.0269900132,0.0265386309,-0.0539269224,0.0169401169,0.0449523777,-0.015134587,0.0018868449,-0.0008384595,0.0256093144,-0.0163028706,0.0082443673,0.0136344042,-0.036084041,-0.0008231091,-0.0075805695,0.0058215056,0.0245737899,0.0084368689,-0.0169135649,0.0174844302,-0.0243879259,-0.0157718323,-0.0113575784,0.0080850553,-0.0104481755,0.0009616769,-0.0043644696,0.036243353,0.0243215468,0.0140990624,0.006637977,-0.0302160699,-0.0309860762,-0.0244808588,0.0270962212,-0.0405447632,-0.0315967686,0.0129639683,-0.0173118431,0.0296584796,-0.0020610918,-0.0068703061,0.024772929,-0.0089148032,0.0058049108,0.0232063662,0.0188518539,0.0388454385,-0.0042084772,0.0009575281,-0.0244277548,-0.0239896476,0.0298177917,-0.0295522735,0.0150018279,0.0096715325,-0.0074610859,-0.0111318873,0.0251579322,-0.0228479169,0.0053701233,0.0211485941,0.0005633983,0.0199139304,0.0061202147,-0.0215601493,0.001086139,-0.0369337015,-0.0006658721,0.0022220628,-0.0362964571,0.0094060134,0.0033073719,-0.0436513349,0.0166613217,-0.0073216883,-0.0081049697,-0.0471827388,-0.020896351,0.0293133054,-0.00567547,-0.0093927374,0.0176835693,0.0387923345,0.0019349703,0.030534694,0.0287291631,-0.0086691976,-0.0033637946,-0.0104083475,-0.0280919168,0.0163161475,-0.0116629256,0.0026518716,-0.0030949567,-0.0066147437,0.0129175028,0.0287822671,-0.0255163833,-0.0132759539,-0.0178959854,0.0024792843,0.0106473146,0.0142450985,-0.0087023871,0.0161568355,0.0093794614,0.0110323178,-0.0148159638,0.0272953603,-0.0020793462,-0.0282777809,0.0313046984,0.0148425158,-0.0227417089,0.0202989336,-0.0149221718,0.0142318225,0.0010222484,0.0088417847,-0.0071955668,0.0052340445,0.002142407,0.0098640332,-0.0013831884,-0.0144840656,-0.0391906165,-0.0064521134,-0.0328181572,-0.0092201494,-0.0139397513,0.0141654424,0.0174047742,-0.0087687671,-0.0161435604,0.0188385788,-0.0197280664,-0.0039263633,-0.0068437541,-0.0100498972,0.0137273362,-0.0114239585,-0.0327650532,0.0169666689,-0.0007650268,0.0270696692,-0.0007517509,-0.0073814304,-0.0109858513,-0.0034683428,0.0048755938,0.003408601,0.0064886222,0.0347829983,0.0040093381,-0.0137406122,0.0239099916,-0.0149088958,0.0023979691,-0.0234586094,0.0059044803,-0.0116230976,-0.0030169603,-0.0102291219,0.0240029246,0.0111849904,0.0263660438,0.0141787184,0.0368805975,-0.001062906,-0.0327385031,-0.0069433236,-0.0036376112,-0.0126718981,0.0014080808,-0.0249986202,0.0230072271,0.0048291283,0.0009127218,-0.0005629834,0.0249587931,-0.0083041089,-0.0210158341,-0.032366775,0.018891681,0.0129374163,-0.0099768788,-0.021029111,0.0144044096,-0.021002559,-0.0644680336,0.0083704889,-0.0091404943,0.003025258,-0.007700053,0.0031712933,0.0217725635,0.0201396216,-0.0050382242,0.026644839,0.0171259809,-0.021082215,-0.0013815289,-0.0067109945,0.0086426456,0.0064886222,0.0253039673,0.0039164061,0.0078593642,0.0495458581,-0.0351812765,-0.0162497666,0.0233789533,0.0096648941,0.0133755235,0.0358981788,0.0215601493,0.0365885273,0.0287822671,0.0022320198,0.0164223537,0.0114770615,0.0216929074,0.0011832194,-0.0134153515,-0.0155992452,0.0009591876,-0.0057717208,0.0040458469,-0.0139264753,-0.0202989336,0.0088749751,0.0164090786,0.0393233746,-0.0325526372,0.0108199017,-0.000462584,-0.0255562104,-0.0344643742,-0.0236577485,0.0156125212,0.006564959,0.0137538882,0.0221575666,-0.0112646464,-0.0194094442,0.0079058306,0.0251181033,0.0110920593,0.0398278609,-0.0135082826,-0.0165551137,-0.0196085833,-0.0470499806,-0.0183606446,-0.0068371161,-0.0196085833,-0.0142318225,0.0257155225,0.0253703464,0.0427751206,0.0158647653,0.0296584796,0.0144840656,0.0161170084,0.0204449687,-0.0148026878,0.021029111,0.0227682609,0.0040790369,0.0010604168,-0.0023979691,0.0135746626,0.0192103051,0.0033554973,0.0466782525,0.0245605148,0.0072353948,0.0126187941,-0.0100963628,0.0148823438,0.0356857628,-0.0021507044,0.0060870247,-0.0179756414,0.0143380295,0.0231665391,0.0009052541,0.0297646876,0.0094060134,-0.0026120439,0.0241622347,-0.0115899071,0.017086152,0.0027531008,0.0167144258,0.0204847958,0.0216398034,0.0049685258,-0.0018951424,-0.030534694,0.0380754359,0.0280122627,0.0319684967,-0.0168870129,0.0108464537,0.0174711552,0.0071822908,0.0259013847,0.0314374566,-0.0243348237,-0.008476696,0.0048158523,-0.0351812765,0.0225160178,-0.0072088428,0.0193828922,-0.0056256852,-0.007706691,-0.0231399871,0.0135879386,-0.0092467014,0.0316498727,-0.0219185986,-0.005715298,-0.0499972403,0.0011832194,0.0185332317,0.0061799563,-0.0396951027,0.0127781052,0.0293929614,0.0249587931,0.0138468193,0.0189846139,-0.0386330262,-0.0183871966,0.0113044744,-0.0398278609,-0.0124262925,-0.0164489057,0.0003742159,0.0099768788,0.0276670866,-0.0011964953,-0.0164223537,-0.0395357907,-0.001286108,0.0097379116,0.0198342744,-0.0075341035,0.0060438779,0.0216929074,0.0207104869,0.0026186819,0.0345440321,-0.0284636449,-0.0112447329,0.0323933251,0.0244808588],"9":[-0.0101721976,-0.0308113433,0.0647142977,0.0114887534,0.0592646748,0.0063699046,-0.0156545732,0.0272743274,-0.015824873,0.0183924846,0.0384617783,-0.0248246156,0.0040479186,-0.0310209449,0.0427585989,0.0320951492,0.0061177285,0.0014745756,-0.0346889608,0.0214054994,-0.0252438169,0.0052989745,-0.0014590193,0.0215626992,0.0097071454,-0.0377019756,-0.02813893,0.0335885547,0.0003528829,-0.0763995573,-0.0178029835,-0.0318069495,-0.0507496372,0.0058000521,0.0027068001,0.0262918212,0.0439638048,0.0228989068,0.0307851434,-0.0055315006,0.0001198451,-0.0037957425,-0.0152615709,0.0471864194,-0.0338767581,-0.0000708734,-0.0587930717,-0.0352391638,-0.0092027923,0.0472650193,-0.0206587967,0.0089538917,-0.016361976,-0.0324095488,0.0218902025,-0.0219426025,-0.0062618293,0.0236325096,0.0248770155,-0.0241958126,0.0096481945,-0.0606794804,0.0161392745,0.0243530124,-0.044409208,0.0458764136,-0.0005440619,0.0387761816,-0.0592646748,0.0345579609,0.0183138847,0.0153532717,-0.0155497724,-0.019348789,0.0388809815,-0.075508751,0.0005424244,0.0846263915,0.008770491,-0.0078338366,0.0191653892,0.0028607259,-0.0168204773,0.0368897729,0.0226369053,-0.0320951492,-0.0220081024,0.0136240637,-0.0079189865,0.0125040077,-0.0363395698,0.0466624163,0.0246805139,0.0285057332,0.0181042831,0.0344531611,-0.017554082,-0.0244054142,0.005551151,0.015798673,-0.0187199861,-0.0189819876,-0.0268813241,0.0016047575,0.0632470921,0.0243268125,0.0079124365,0.0137157636,0.0094189439,0.028715333,-0.0416319929,-0.0130738607,-0.0312305447,0.0185627863,0.0015351634,-0.0476842225,-0.0436756015,-0.006726881,-0.0147244688,0.0083774887,-0.0168335773,0.014082565,-0.0167287774,0.020488495,0.0224535037,-0.0408983901,0.0413699932,-0.0651859045,-0.0183793847,-0.0247460157,0.0294751376,-0.0095302947,0.0195190907,0.0087377401,-0.004951823,0.0172789805,-0.0443830043,0.0030031889,0.0154056717,-0.0269599259,-0.0060555032,-0.0597362779,0.0315711461,-0.0195059907,-0.0420511961,0.0288987346,-0.0031947773,0.0461908132,-0.0209338963,-0.0078862365,-0.0026396622,0.0155497724,-0.0089997416,-0.0060096527,0.0492824279,0.0160606746,0.0129166599,0.0519286394,0.0037859175,-0.0442520045,-0.0239731111,0.0423917957,-0.0142528666,0.0448546074,-0.0065271053,-0.001506507,-0.0355535634,-0.0580594689,-0.0855171978,-0.0198596921,-0.0092813931,-0.0801723748,-0.0056363014,0.0433350019,0.020514695,-0.0130738607,-0.0192832891,-0.0478938222,0.0179601833,-0.0624610893,-0.0759279504,-0.0196762905,-0.0080761872,0.0218771007,-0.0170431789,-0.0169121791,-0.0172527805,0.0294489376,0.0218902025,0.0244185142,-0.0018438336,0.0717883334,-0.0117966048,0.0330383517,0.0159427747,-0.0138205644,0.0106503498,0.0054954756,-0.049727831,0.0154580716,0.0668627098,-0.0021287599,0.0354225636,0.0250735171,0.0095826946,0.0221915022,0.0059179524,-0.0069102822,-0.088451609,-0.0821111798,-0.007296734,0.0038514179,0.0067530815,0.01287081,-0.0107485997,-0.0235015098,-0.050356634,-0.0269075241,-0.0228727069,0.0062814793,0.0125826085,0.033955358,-0.0109778512,-0.0054201502,-0.0154318716,0.0248639155,0.0013239249,-0.0147113679,0.0176588818,-0.015209171,-0.0149864694,-0.046898216,-0.0023367233,-0.0449070074,0.0224928036,0.018130485,-0.0074866847,-0.0403743871,-0.0277983285,-0.0368897729,-0.010499699,0.0008621478,-0.002361286,0.0200561937,-0.0155628724,0.015837973,-0.0177898817,-0.038697578,0.0184317864,0.0217723008,0.0018209085,-0.0181042831,-0.0070085325,-0.0219426025,-0.0307065435,-0.0650811046,-0.0353177637,0.0375447758,-0.00645178,0.0061308285,-0.0067792814,-0.076609157,-0.0195714906,-0.0101983976,-0.0321737491,0.0093075931,0.0192046892,-0.0125498585,0.0187330861,-0.0228858069,0.0457192138,0.0357631668,0.0490204282,-0.0618322864,-0.0214185994,-0.0118162548,0.0089997416,-0.0005088555,0.0034780661,-0.027536327,0.0213399995,-0.0308899432,-0.0053120744,-0.0240779109,0.0187461879,0.0201609936,-0.0025037492,0.0276411287,0.0140170651,-0.0677535161,-0.007283634,-0.0035861416,0.0204098951,-0.0191391893,0.0079582874,0.0113708526,-0.007329484,0.0042804447,-0.0143314665,-0.0250473171,0.0368111692,0.0190867893,0.010519349,-0.0196762905,-0.0153270708,0.0006148841,-0.0008023788,-0.0095040938,-0.0121110063,0.0269337259,-0.0261477213,-0.027536327,0.0103359483,-0.012294407,0.0197941922,0.0176326819,0.0677011162,-0.0060849781,-0.0106896497,-0.0714215338,-0.0381735787,-0.0973596498,-0.0259512197,0.0056821513,0.0275887288,-0.0326715522,-0.0048044473,0.025152117,0.0397717841,-0.0111612519,-0.0043590451,-0.0267372243,0.0118490048,0.0040053437,-0.0264228228,-0.0513260365,0.007591485,0.0101132467,-0.0366015695,0.0245102141,-0.0106306998,0.0423393957,-0.0683299154,0.0194797907,0.0203312952,0.0384879783,0.030392142,0.0029999139,-0.028689133,0.0234753098,-0.0095106438,0.0050238734,0.0402171873,-0.0147375688,0.0300777406,-0.0360775664,-0.0341649577,-0.0101852976,-0.0466362163,-0.0389333814,-0.009949496,0.0496230312,0.0057705767,0.0043066451,-0.0214054994,-0.0011921056,-0.0393787846,0.0124254078,-0.0571686663,0.0186020862,0.0327501521,-0.0170824789,-0.0097726453,-0.0335623547,-0.0296585374,-0.0349247605,0.0358679667,0.0594742745,-0.0095761446,0.0537626483,0.0559110604,0.0151043702,0.0074015344,-0.0194142908,0.0660243034,0.0470816195,0.0309685431,0.0244447142,-0.0194928907,0.0265931226,0.0138991643,-0.0006292123,-0.0074473848,-0.0054136002,-0.0119538056,0.0237766113,0.0003363031,0.0264359228,0.0598410778,0.010565199,-0.0255582184,-0.0040446436,-0.0420773961,-0.0284271315,0.0147768687,0.0185758863,0.0227417052,0.0354225636,-0.0302611403,-0.0277983285,-0.0125957085,-0.0236063097,0.0452476107,-0.0571162663,0.0355535634,-0.0285843331,-0.0703211278,0.0712119341,0.0057902271,0.0670199096,-0.0084888395,-0.0171872806,-0.0406363904,-0.0082857888,-0.0303135403,0.0481820256,0.0383307785,-0.0335885547,0.0015343446,-0.0323047489,-0.0116394041,-0.0027985005,0.0224142037,-0.0247722156,-0.0153401708,0.0093796439,0.0423917957,-0.0226238053,0.0092158932,0.0285581332,-0.0269075241,0.0190605894,-0.0139777651,0.0241434127,-0.0254796185,-0.0182090849,-0.0253486168,-0.0093927439,0.0219164025,-0.0141742658,0.0488370284,-0.0027330001,-0.0383307785,-0.0009079979,-0.0077814362,-0.0570114665,0.04097699,-0.008174438,0.0269861259,-0.0294751376,-0.0024349738,0.0277459286,-0.0816395804,-0.0137419635,0.01286426,-0.0343221575,0.0521906428,0.0449594073,0.0331431553,-0.0233312082,-0.0068709818,0.0262787212,-0.0129232099,-0.0098839961,-0.033955358,-0.0038776181,0.0160213746,0.0027510128,-0.0085346894,-0.0047422219,-0.0039856937,-0.0268813241,0.0030228391,0.0439114049,-0.0125171086,0.0156938732,0.0419201963,-0.0186544862,0.0097267954,0.0040577441,-0.0264228228,-0.0009096354,0.0314401463,-0.0144755673,-0.0093992939,0.0313615464,-0.0817443803,-0.0249949154,-0.0203050934,-0.0068251318,0.0353439637,0.0099036461,0.0062847543,0.0456406102,-0.0487060249,0.0467672162,-0.0182876848,-0.0190867893,-0.0131721115,-0.0309685431,-0.029868139,-0.0012002931,0.0465314165,0.0347413607,0.0069495821,0.0233443081,-0.0217068009,-0.0220867023,-0.0098053953,-0.0115542533,-0.0120913563,-0.0173051804,-0.0594218746,0.0063338792,-0.0165453777,0.0062585543,-0.0474222191,-0.0150388703,-0.0033634405,-0.0336409546,0.02570232,-0.0080827372,0.0103490483,-0.0153139709,-0.0096809445,-0.0151043702,-0.0177374817,-0.0206325967,-0.0410817899,0.0224666037,0.0185234863,0.0137026636,0.0009341981,0.0296323374,0.040452987,-0.0070871329,0.0150781702,-0.0185103863,-0.0301039405,0.0291607361,0.02811273,-0.0302087404,0.0106896497,0.0057280017,0.0186282862,0.0312043447,0.0189033877,-0.0018520211,0.0275625288,0.003645092,0.025125917,-0.0116656041,-0.0003917737,-0.0107420497,0.0001722453,0.0214447994,0.0041756444,-0.0533696488,-0.031623546,0.0058852024,0.0156545732,0.0033306906,0.0032537277,0.009929846,0.0303397402,0.0006083341,-0.0274839271,-0.0224011037,0.0220343024,-0.0003406016,-0.0269337259,0.0186020862,-0.0374923758,0.0736223385,-0.0204491951,-0.0093403431,0.0264228228,0.0165584777,0.0306017417,-0.0241827127,-0.0367587693,0.000867879,-0.0208159965,0.0018438336,0.0415009931,0.0332479551,-0.0008957167,0.0074997847,-0.001739033,0.0177374817,0.0115870042,-0.0077617862,-0.0107944505,-0.0438852049,-0.0309161432,0.0402957872,0.0263442229,-0.0052563995,0.0538150482,-0.0153401708,0.0423131958,0.013466863,-0.0052793245,-0.0420249961,-0.0342173576,-0.0072377836,-0.0334837548,-0.0131590115,0.0200954936,-0.0287677329,-0.020475395,-0.0008400414,-0.0060227532,-0.0386189781,0.019348789,0.0399289839,-0.0382521786,-0.0223487038,-0.0278769303,0.0378329754,0.0167025775,-0.0037990178,0.0270123258,0.0209207963,0.0184448864,0.0335885547,0.0649763048,0.0130476607,-0.0073818844,0.0046275966,0.0106830997,0.0272481274,0.0262787212,-0.0098512461,0.0045489962,-0.0195452906,-0.0200037938,0.0389595814,-0.0132638114,-0.0198072921,0.0104079982,-0.0144624673,0.0763471574,0.0063764546,0.033955358,-0.0151174702,0.0004157222,-0.019938292,0.0380163752,0.0029180385,-0.0138205644,0.0092879431,-0.0115477033,0.0013050935,-0.0143576665,-0.008744291,0.0071657333,-0.0035697666,0.0517452396,0.0414747931,-0.035632167,0.0070805829,0.0336409546,0.0076569854,0.0313091464,-0.0068906322,0.0111416019,-0.0108861504,0.0040184436,0.0734651387,-0.0260036215,-0.0082857888,-0.0305493418,-0.0034551411,-0.0042869947,-0.0087377401,-0.001706283,0.024038611,0.0197810922,0.0123992078,0.015209171,-0.0151043702,0.0060456782,0.0011012239,0.0035894166,-0.02808653,0.0014508318,0.0462956168,-0.0215758011,-0.0390905812,0.0211565979,-0.0102114975,-0.0530552454,-0.0312043447,-0.0045981212,-0.000500668,0.0072246836,0.0165715776,0.0376757756,-0.0373351723,-0.0358417667,0.0111547019,-0.0188640878,0.0211827978,-0.0103752483,-0.0154056717,-0.0148292687,0.018130485,-0.0101721976,-0.0234884098,-0.0531338453,0.0012977248,0.0136371637,-0.0353963636,0.016375076,-0.0167811774,0.0149602694,0.0544438511,0.0197548922,-0.0132703613,0.0096416445,0.0075456351,0.0109254504,-0.0259905215,0.0324619524,-0.0086132903,-0.0243530124,0.0133620622,-0.052636046,0.0077552362,-0.0344269611,0.0002929092,0.0155235725,0.0144493673,0.0153794717,-0.0533696488,0.0295537375,0.0319379494,0.014658968,-0.007322934,0.0044179955,0.0107551496,-0.0101918476,0.0024120486,0.001556451,-0.0107485997,-0.0289249346,-0.0205408949,-0.0399289839,0.014619668,-0.011718004,0.0291869361,-0.024012411,0.0179077834,-0.0015376196,0.0301301405,0.0014131691,-0.0030097389,-0.0057902271,-0.0422607958,0.020462295,-0.0122551071,0.0037040422,0.0006807938,0.052007243,0.0050566234,0.0068447818,0.0027084376,0.0402171873,0.0093403431,0.0209338963,0.0038808931,-0.0261608213,-0.0369159728,-0.0025676119,-0.0181042831,-0.0144755673,0.0077879862,-0.032252349,-0.039247781,-0.0150781702,-0.029841939,-0.0291345362,0.0501208343,0.0061930539,0.0217985008,-0.0012395933,-0.0936392322,-0.0291083343,0.019925192,0.0179601833,0.0151436701,-0.007591485,0.0227679051,0.0516666397,0.024038611,-0.0148685686,-0.0063961046,-0.0315187462,-0.0250342172,0.0046570715,-0.0183531847,0.0338505581,0.0261084214,0.0184841864,0.0166632775,0.0136371637,-0.0133358622,0.008750841,-0.0450642109,0.052007243,0.0249163155,-0.0214578994,-0.0261346214,0.0246805139,-0.0151698701,-0.0044343704,0.0192439891,-0.0032504527,0.0064976304,0.0314139463,-0.0133358622,0.0470816195,-0.0069757826,0.0091176424,0.0187461879,0.0027788505,-0.0430205986,-0.0478938222,0.0229775067,-0.0496492311,0.0423917957,-0.030418342,0.0219164025,0.0211827978,-0.0243792124,-0.0202264935,0.0566446632,0.0141480658,0.0110171512,0.0268158242,0.0024087736,0.0062061539,-0.0338767581,0.0062323539,0.0043262951,0.0133882621,-0.0177243818,-0.0047127469,0.016414376,-0.0286367331,-0.0160475746,-0.0088490909,-0.0040020687,0.0224535037,0.0176981818,-0.0106503498,0.009923296,0.0276411287,0.0123664578,-0.0244316142,0.023986211,-0.0012076618,0.001709558,0.0071853832,-0.0206849966,-0.0048339223,0.021615101,-0.0201085936,-0.0319379494,0.011102302,-0.0156938732,-0.0048666727,-0.0142659666,0.0076504354,0.0325405523,0.0153663717,0.0401123874,-0.0186937861,-0.0156152723,0.0088490909,0.0145672681,0.0200168937,0.0038088427,0.0090914425,-0.0278769303,-0.0148554686,0.0264752228,0.0222832039,0.016977679,0.020462295,-0.0181042831,-0.0214971993,-0.0043557701,0.0025921746,0.0017046455,0.0060817031,-0.0037826425,-0.0170169789,0.0080106873,-0.0052662245,0.0107747996,-0.0016866329,0.0324095488,-0.0056690513,-0.0188247878,-0.0147768687,-0.0007569379,-0.0068513318,0.0027493753,0.0351867639,-0.006707231,0.0035763166,0.0200430937,0.0098839961,0.0167156775,-0.0181042831,0.0077814362,0.0401123874,-0.0017341205,0.0309685431,-0.0139908651,-0.0340863578,0.0071657333,-0.0039038181,0.0314663462,0.0533958487,-0.0069102822,0.0214971993,0.0136764636,-0.0110695511,0.0308899432,-0.0195583906,-0.0042182198,0.012314057,-0.021051798,0.0220081024,0.0159165747,-0.0113250026,-0.0255320184,0.0719979331,-0.0060391282,0.0551250577,-0.0628802925,-0.0041494444,-0.0032520902,0.0122551071,-0.0065598553,0.0088425409,0.0288987346,-0.0076569854,0.0025102992,-0.0202002935,-0.016361976,0.0016358701,-0.0031636646,0.0163226761,0.0008441352,0.0229906067,0.0267634243,0.0311781447,0.0771331564,0.0222832039,-0.0044703959,0.0118031548,-0.0040446436,0.0075325351,-0.0142004658,0.0117835049,0.0395621844,0.0062618293,0.0126808593,-0.0074408348,-0.0069495821,-0.0017177454,-0.0110499011,0.0118228048,0.0192570891,0.008783591,-0.002657675,0.0307327434,-0.0044114455,0.0098053953,0.0383307785,0.0275625288,-0.0174623802,0.0081482381,-0.0115804542,-0.0004568646,-0.005551151,-0.0164929759,0.0173837803,0.0431253985,0.0107682496,-0.011704904,-0.0122223571,0.0500160307,0.0005256399,0.0162309762,0.0065369303,-0.0048437477,-0.0219295025,0.0001131927,0.0016686203,0.0178553835,-0.0250080153,-0.0193094891,-0.0455358103,-0.0145672681,-0.0064124796,0.0370731726,0.0017144704,-0.000482246,0.024615014,0.0151829701,-0.0001013208,-0.0102769975,-0.0164536759,0.0142921666,-0.0005219555,0.005829527,0.0226369053,0.0054267002,-0.0101918476,0.0065140054,-0.0317545459,-0.0069233822,0.0110040512,0.0083119888,0.0142659666,-0.0185365863,-0.0227679051,-0.009956046,0.0336147547,0.0315449461,0.0357631668,-0.0200561937,0.0008777041,0.0016170387,0.026318023,0.0265669227,0.028662933,0.0077159358,-0.0135192629,0.0411603898,0.0019535467,-0.0052072741,0.0113446526,0.0328549519,0.0156676732,-0.0127463592,-0.0060194777,-0.0218378007,-0.0152877709,0.0020698097,0.0018651212,0.0344269611,-0.017567182,0.0157331731,-0.0139384652,-0.011691804,0.0048502977,0.0203967951,-0.0422083959,-0.0114953034,0.0010848488,-0.0302611403,0.0189295877,0.0132507114,-0.0234098081,-0.0094516939,0.0275101271,-0.0529242456,0.0081416881,-0.0315973461,0.0284533314,-0.0380949751,-0.029841939,0.028662933,-0.0044998708,0.0275887288,-0.0236194097,0.0170562789,-0.0036156168,0.0068316818,0.0046013962,-0.0400075875,0.0208290964,-0.021602001,0.0144231673,0.0442258045,0.0164667759,0.0079582874,-0.0325405523,-0.0158903729,-0.0009956047,0.0289511345,0.0048535727,0.0022302854,0.0144886672,0.0363657698,-0.0066450057,0.001832371,0.0337719582,0.0130345607,0.0370731726,0.0464790165,-0.0017619582,0.0212744996,0.0155628724,0.0345841609,-0.0014557443,-0.00324554,0.0244316142,0.0102638975,-0.0325667523,-0.0016653453,-0.0124057578,0.0150257694,-0.0075063347,0.0207504965,-0.0385665782,0.020514695,0.029239336,-0.0050500734,0.008220288,-0.0065958807,0.0118424548,-0.0110499011,0.0178029835,-0.0124188578,-0.0132507114,-0.0150519703,0.0280341301,0.04095079,0.0035402915,0.0186806861,0.049177628,0.0190867893,0.0226893052,-0.0087246401,-0.0108796004,0.0024104111,-0.0026969751,0.0025250367,0.0078534866,0.0273529273,-0.016427476,0.0011462553,0.0124516077,0.0363395698,-0.0062094289,-0.0084102387,-0.0259119198,0.0044540209,0.001706283,-0.0227679051,0.0455882102,0.0149602694,-0.0294489376,-0.0340863578,-0.0198465921,-0.0188247878,-0.0039627682,-0.0224404037,-0.0113643026,-0.0106241489,0.0321737491,-0.0380687751,0.0232002083,0.0372565724,-0.0058229771,0.0101656476,-0.0237373095,0.0287677329,0.0086198403,-0.008763941,-0.0076504354,-0.0200037938,0.0076045855,0.0076700854,-0.0145541672,0.033378955,-0.004689822,-0.0301039405,-0.0170562789,-0.0378067754,-0.0022548479,-0.0068316818,-0.014082565,-0.0075456351,0.0165846776,0.000316039,0.0678059161,-0.0040086186,0.0112857027,0.0230168067,-0.0261346214,-0.0223356038,-0.0272743274,-0.0017079205,-0.0231478084,-0.0385927781,0.010545549,-0.0165715776,0.0031489271,-0.0354487635,-0.0083578387,0.0501208343,-0.0054627252,0.0132703613,0.0273005273,0.0143183665,0.0079582874,0.0047356719,0.0004818366,0.0039103683,-0.0340863578,0.0370207727,-0.0166894775,0.0250473171,-0.0225321054,0.0010676549,-0.0170300789,0.0050566234,-0.0051777991,0.0203574952,0.0125302086,-0.008226838,-0.0071853832,0.0118162548,-0.0180256832,-0.0206325967,-0.0266455244,-0.0153401708,0.0011364303,-0.0305755418,0.0156938732,0.0182221849,-0.0131721115,0.0397455841,0.0068840818,-0.0096219946,-0.012327157,-0.0230430067,-0.0005583901,-0.0142790666,-0.0179732833,0.030418342,0.0055118506,0.011121952,0.0088556409,0.0302087404,-0.0325929523,-0.0086263902,-0.0108075505,0.0055053006,0.0337981582,-0.0138074644,-0.0098119453,0.0127660092,0.0177374817,-0.0050238734,0.0449594073,-0.0156676732,-0.0127922092,-0.0194928907,0.0130869607,0.0008449539,0.0353701636,0.0034453161,0.0267241243,0.029815739,-0.0183007848,-0.0347413607,0.040400587,-0.0118097048,-0.0396669842,0.0273791272,0.000610381,-0.0047815223,0.0262001213,-0.007303284,0.0233967081,0.0046341466,0.0117704049,-0.0018438336,0.0110106012,-0.005832802,0.0334837548,0.0086525902,-0.0330907553,-0.0158772729,0.0389333814,-0.0120062055,-0.0022040852,0.0077224858,-0.0009505732,0.014632768,-0.0160606746,-0.0489418283,-0.0068251318,-0.0195714906,0.0078010862,-0.0092944931,-0.0260036215,0.0423393957,0.0012535121,-0.0074866847,0.0106044989,0.0062127039,0.025125917,0.0104341982,-0.0032733777,-0.0063273292,0.0003487891,0.0086263902,0.0171479788,-0.0233050082,0.0138598643,-0.0069757826,0.0030981645,0.0172658805,0.012333707,0.0002626153,-0.0104865991,-0.0113381026,-0.0096940454,0.0346365608,0.0135585628,0.0400337875,0.0146851679,0.0269337259,0.0115018534,0.0544962548,-0.0395359844,-0.0084888395,-0.0084495395,0.0062552788,-0.0184186846,-0.0054267002,0.0025266742,0.0133227622,-0.0100149969,-0.0012183057,-0.0109778512,0.0188640878,0.0312829465,-0.0107944505,-0.0198334921,-0.0082923388,0.006422305,0.0149340695,-0.0039758687,0.0465314165,-0.0336147547,-0.0680155158,0.000247673,0.0069299322,-0.0016899079,-0.0170693789,0.0034584161,-0.007336034,-0.001948634,0.032226149,0.0120848063,0.000178386,-0.0161523744,0.001390244,0.0224928036,0.0336409546,-0.0047553219,-0.0187068861,0.0063830046,-0.0194404908,0.0360513665,-0.0337195583,-0.0139122643,-0.0015556322,0.0185365863,-0.0256761201,0.0502780341,0.0018503836,0.0051122988,0.0030637768,0.0053186249,0.0112136519,-0.0354749635,0.0120062055,-0.006435405,0.0089997416,-0.0278769303,-0.0110368012,-0.0018421961,0.0165453777,-0.0132572614,-0.0088228909,-0.0180518832,0.0028181507,0.0184579864,-0.0246936139,0.0223880038,-0.0094713438,-0.0100542968,-0.0058819274,-0.0479200222,0.0472912192,0.0087115401,0.0543914512,0.0223880038,0.0054758256,0.0022499354,0.0065041804,0.024575714,0.0063044042,0.0007663536,-0.0045391712,-0.0056821513,-0.0235539097,-0.0319379494,-0.0413175933,0.0032406275,-0.0012870809,-0.0160475746,0.0246805139,0.0002615918,0.0289773345,0.0253617186,0.0172920804,-0.0142135657,0.006707231,-0.0005448806,-0.0243792124,0.0178946834,0.0296323374,-0.0013476687,0.0019535467,-0.0010733863,0.0235277098,0.0024267863,-0.0088425409,0.0189033877,0.029868139,-0.0014426442,0.008187538,-0.0045555462,-0.0010619237,0.0203836951,-0.0033601655,0.0000471295,-0.008226838,-0.0171217788,0.015864173,0.0018012584,0.0451428108,0.016938379,0.0080303373,0.0218116008,0.0101721976,0.0132179614,-0.0059376024,0.0217068009,0.0002869732,0.0130476607,-0.0181959849,-0.0101001468,-0.0000724085,0.0305493418,0.0028754633,0.0285843331,-0.0423131958,0.0250211153,0.0000515815,0.0067858314,0.0229513068,0.0065205554,-0.0080041373,-0.0278507285,0.016361976,-0.0191522893,0.0187199861,-0.0119341556,0.0374137722,0.0258071199,0.0179732833,-0.0138860643,0.0181566849,-0.0414485931,0.0237373095,-0.0273529273,0.0050566234,-0.0178946834,0.0012035681,0.0389333814,0.019912092,-0.021667501,0.0176588818,0.0400337875,0.0215626992,0.0067596314,0.0103228483,-0.0314139463,-0.0060194777,0.0264621228,-0.0192177892,-0.0192439891,-0.0218509007,0.0059736278,-0.0002347776,0.0022204602,-0.020501595,0.0089080418,-0.0256106183,0.0024104111,0.0228727069,-0.0045751962,-0.0015179695,0.0209731981,0.0043393951,0.021602001,-0.0034223909,0.0336933546,0.0263704229,0.0122027071,0.0362609699,0.0101656476],"10":[-0.0272156764,-0.0233019479,0.0540982671,0.0050170664,0.0235240031,0.0109639894,-0.0117550623,0.0095553249,-0.0112415589,0.0057838517,0.0343908444,-0.033558134,0.0147250546,-0.0142254299,0.0258972216,0.0661170185,-0.0071612895,-0.0333915949,-0.0361395292,0.0517111719,0.0043439604,-0.0389152244,-0.0012846257,0.0141005237,-0.0166541617,-0.0370277539,-0.0095761428,0.068615146,-0.0111374706,-0.0440502577,-0.0007633158,-0.0390817672,-0.0056034313,-0.0295333806,0.0078621525,0.006956582,0.0459377281,0.0217753164,0.0212062988,-0.0174591132,0.0077580637,-0.0241068993,-0.013698048,-0.0238293298,-0.0104157906,0.0028589645,-0.0115260677,-0.0369167253,0.0104296682,0.0197213031,-0.026965864,0.0132608758,-0.0325866416,0.002237903,0.0292002968,-0.0409414805,-0.0065714545,0.0172370579,0.0150858946,-0.0400532596,0.0131637268,-0.0252588112,0.0427456796,-0.0052807569,-0.0179171022,0.0423293263,-0.0133233294,0.0251339059,-0.0321702883,0.0173619632,0.0184999984,0.0217198022,0.0329197273,-0.0550142489,0.0496016443,-0.0452993177,0.0124836816,0.0567906909,-0.0078135775,-0.0045209108,0.0166541617,-0.000604147,-0.0138160149,0.0408026949,0.035945233,-0.0569017194,-0.0382768139,-0.0050725802,-0.0267021731,0.0333915949,-0.0630637556,0.0482415557,0.0050135967,0.0388597101,0.0193049498,0.0060232552,-0.0163488351,-0.0239819922,0.0221222788,0.024051385,0.0141213415,-0.0088058878,0.0070988364,-0.0235656388,0.0579009689,0.0185693894,0.0053605582,0.010061889,0.0014537695,0.0388874672,-0.0606766604,-0.010207613,-0.0197768174,0.0320315026,-0.0043994742,-0.0086462852,-0.0209564865,0.0200960208,0.0145585127,-0.0054091327,-0.0229966212,0.0137188658,-0.0104713039,-0.0178893451,0.032114774,-0.0536263995,-0.0015483166,-0.0622310489,-0.0221222788,0.0031434731,0.0570682585,0.0126710413,0.0562910661,0.002997749,-0.0076817321,-0.0012612058,-0.039192792,0.0228855945,0.0127681904,0.0034158379,0.0138645899,0.0206372812,0.0072445604,0.0060995868,-0.0477974452,-0.0201654136,0.0035060479,0.0280483831,-0.0319482349,-0.0114774927,-0.0031799041,0.0090348823,-0.019860087,-0.0311710387,0.0246342812,-0.0028606993,0.0262719393,0.0534598604,-0.0278957207,-0.0557914414,0.0097426847,0.0467149243,-0.0460487567,0.0305881426,-0.0000372442,-0.0029092738,-0.0468814634,-0.0391095243,-0.0731672868,-0.0086948602,-0.0333638377,-0.0893773362,0.0243428331,0.0073139528,0.0167929456,-0.0436616614,-0.0372220501,-0.0402475558,-0.0013600899,-0.0437449329,-0.0342243016,0.0003582379,-0.0332528092,0.015530006,0.0020869747,0.0204291046,-0.0346128978,0.0381935425,0.0030029535,0.0577899404,-0.0161267798,0.0612873137,0.0015578581,0.0527104214,0.0106517244,-0.0338357054,0.0332805663,0.0221639127,-0.018153036,0.0062695979,-0.0066616647,0.0197768174,0.0561522804,0.0107419342,0.0003604065,-0.0074111018,0.0296999216,-0.0299219768,-0.0464095958,-0.0175423827,-0.0066130902,-0.0181391574,-0.0019273722,-0.0000435057,-0.016779067,-0.0360007472,-0.0322535597,-0.0054091327,-0.0183750913,-0.0112207411,-0.0090418216,0.021789195,0.0179309808,-0.0234129764,0.0025067984,-0.0017157256,0.0202070493,-0.0250367559,0.0338079482,-0.004694392,-0.0049372651,-0.0336969197,-0.030671414,-0.0324478596,0.0108668404,0.0235378817,0.0069600516,-0.0036465675,-0.0046666348,-0.001920433,0.0056762933,0.0188330803,-0.0195131265,0.0179171022,0.0213034488,0.0218030736,-0.0385821424,-0.0579564832,0.0544035956,0.029783193,0.0210813936,-0.0155438846,-0.0112623768,-0.0310600121,-0.062453106,-0.0670052469,-0.0231076498,0.0356954187,-0.0003068442,0.0071821073,0.0243011974,-0.0569572337,-0.0399699882,-0.0171954222,-0.0121714165,0.0138021363,0.0361117721,-0.000978432,0.005235652,-0.0219696146,0.084048003,0.079662405,0.0241762921,-0.029949734,-0.0202764422,-0.0235933959,0.0144474851,0.0218863431,-0.0002287779,-0.0296444073,-0.0080356328,-0.0711132735,-0.0091806063,0.0082229925,0.0062453104,-0.000464495,-0.0241624136,0.0226357821,0.0419962443,-0.0490187481,0.0225663893,0.0015474492,0.0383323282,-0.032864213,0.0117411837,0.0266050231,0.0329474844,-0.0039310763,-0.0084728049,-0.0131706661,0.0193049498,-0.0093957232,-0.0119146649,0.0117620016,0.0004176552,0.0040351646,-0.0072861956,-0.0395258777,0.0050656409,0.0290337559,0.00061152,-0.0377771892,0.0042086453,-0.0398312025,0.0009975149,0.009222242,0.0660615042,-0.0288949702,0.0031105117,-0.0531267747,-0.0245093741,-0.1007021666,0.0007971445,0.034307573,0.0213450845,-0.0333360806,-0.016057387,-0.0036465675,0.0119077256,-0.0136911087,0.0203041993,-0.0069080074,-0.0117828194,0.0218169522,-0.0171815436,-0.0288672131,-0.0074111018,0.0288394559,0.0019551292,0.0251894202,-0.0376106501,-0.0048539941,-0.0576789118,0.0220112503,0.0168900955,0.0119354827,0.0326421559,0.0176256541,0.0061932663,0.0242873188,0.0046180603,-0.0126987984,0.0535708852,0.0143364575,0.0259804912,-0.0138507113,-0.0248285793,-0.0145307556,-0.0479917414,-0.016515376,-0.0260776412,0.0252865683,0.0068524936,-0.0102353701,-0.0002654257,0.0152663151,0.0016194438,0.0384711139,-0.0584005937,-0.004683983,-0.0026646659,-0.0114774927,-0.0039414847,-0.0510450043,-0.0260082483,-0.0244677383,0.0183750913,0.0401920415,0.0264801178,0.0668942183,0.0404696129,0.0381380282,-0.0170982722,-0.0362783149,0.0215532612,0.0213867184,0.0337246768,0.0180003736,-0.0136078382,0.0209148508,0.0067726923,-0.020248685,-0.0329197273,0.0149471099,-0.0284786168,0.0020956486,0.0011258908,0.0056207795,0.0537929423,-0.0238293298,0.0084172906,0.0184583627,-0.0469924919,-0.0355288796,0.004645817,0.0600104965,-0.0056589455,0.0903210714,-0.0183612127,-0.0274516102,-0.0216087755,-0.0045556072,0.0360840149,-0.0675048679,0.044660911,-0.0522385538,-0.0356954187,0.0788852125,-0.0066998303,0.0487411804,-0.0276042726,-0.040275313,0.0104574254,0.0025536381,-0.0671717823,0.0095622642,0.0263690893,-0.0467704386,-0.014058888,-0.0151969222,-0.0143642146,-0.0021268753,0.071501866,-0.0292002968,-0.0100341327,-0.0154883703,0.0330862664,0.0150303813,0.0408582091,0.0116162775,-0.0367224254,0.0318649635,-0.0346684121,0.031226553,-0.0335303769,-0.0229966212,0.0055652657,-0.0378882177,0.0090626394,0.0214699898,0.0429677367,0.0293390807,-0.0161267798,-0.0211924203,-0.0143225789,-0.0318094492,0.0484080948,-0.0132053625,0.0617314242,-0.0193188284,0.0042259935,0.0280345045,-0.0976489037,0.0113734044,0.0001852992,-0.0207899455,0.0305881426,0.0230521355,0.0413300768,0.0065818634,-0.0045243804,0.0313098244,-0.0440780148,0.0082785059,-0.027229555,0.0206927955,0.0232464336,-0.0022136157,-0.014350336,-0.0447996929,0.0230243783,-0.0470757633,0.0153079499,0.0597884394,-0.0090695787,0.0060128463,0.039387092,-0.0453825891,-0.0003161689,0.0057005808,-0.0182363074,0.0250367559,0.04646511,-0.0162378084,-0.0068941289,0.0413023196,-0.0952618048,-0.0061897966,-0.0203735903,-0.0119354827,0.0245093741,-0.0118660899,0.0253420826,0.0491297767,-0.0160018727,0.0329752415,-0.0131776053,-0.0364726149,0.0208038241,-0.0155438846,-0.0289782416,0.0124628646,0.0279928707,0.0205401331,0.0236350317,0.0300330054,-0.0199156012,0.0438559577,0.0014294822,-0.0398867168,0.0029925446,-0.0073972233,-0.040830452,-0.0203597117,0.0019395159,-0.009340209,-0.0279651135,-0.042828951,-0.027854085,-0.0344186015,0.023232555,-0.0274654888,0.0059087579,-0.0305881426,-0.0352790654,-0.0185138769,-0.0287561864,-0.0325866416,-0.060454607,-0.0003905488,0.0087781306,0.0050829891,-0.0114913713,0.0230660141,0.0098675909,-0.0018458363,0.0295056235,0.016973367,-0.0243289545,0.0056901718,0.0451327786,-0.0401642881,0.024870215,0.0177366827,0.0198184531,-0.0043855957,0.0128237046,0.0280900188,0.0048539941,0.008930794,0.0244816169,-0.0089585511,0.0024252622,-0.0127265556,-0.0079384837,0.0598439537,0.0015543884,-0.0364171006,-0.0272989459,0.0340855159,-0.0034991088,0.0063806255,0.0076539749,0.0304771159,0.0213034488,-0.003840866,-0.0053848457,-0.0209981222,-0.0055409782,-0.0051419726,-0.0297554359,0.0046631652,-0.0021823891,0.0562910661,-0.0479639843,0.0084103514,0.0349459834,-0.0051315636,0.022510875,-0.0116926096,-0.0211507846,0.0376661606,-0.0379159749,-0.0020887095,0.021234056,0.0391372815,-0.0155716408,-0.0116717918,-0.0293668378,0.0389984958,0.0087781306,0.0009307248,0.0058636526,-0.0043508997,-0.0322258025,0.0087503744,0.0198878441,0.0060371337,0.0036673851,-0.0123518361,0.0134898713,0.0164321065,-0.0147250546,-0.0512393042,-0.0376106501,-0.0429399796,-0.0212618131,0.0021112619,0.0066859517,-0.0176395327,-0.0212895703,-0.0386931673,0.0032336831,-0.0291447826,0.0191800427,0.0358897187,-0.0256196521,-0.0251755416,-0.0116648525,0.0205540117,0.009222242,0.0071335323,0.0233158264,-0.0105198789,0.007390284,0.0295611359,0.023329705,0.0231215283,-0.0138090756,-0.014711176,0.0373608358,0.0236905441,0.0300885178,-0.0125114387,0.0173897203,-0.0054750554,-0.0220390074,0.0383045711,-0.0061308132,-0.0198739655,-0.0027982462,0.0082299318,0.0494351014,-0.001231714,0.0214283541,-0.0317816921,-0.0080078756,-0.0247314293,0.0014537695,-0.0152108008,-0.0391372815,0.0359729901,-0.0046562259,0.0013826424,-0.0249951202,0.0301717892,0.0026872184,0.020248685,0.0355011225,0.0290059987,-0.0156549122,0.0291725397,0.0265633874,0.0000641337,0.0294778664,-0.0041878279,0.004031695,-0.0115121892,0.0149887456,0.0704471022,-0.0096038999,0.0054854644,-0.0371665359,0.0224414822,0.0001301106,-0.0072861956,-0.0202903207,0.0092777554,0.0075082514,0.016612526,0.0269519854,0.0009888408,0.007765003,0.0199711155,0.0165570118,0.002817329,-0.0188885946,0.0041531315,-0.007765003,-0.0491575338,0.0003391551,0.0124975601,-0.0500735119,-0.0477141738,-0.0258694645,0.0049442044,-0.0200266298,0.0008795479,0.0155716408,-0.0329197273,-0.027229555,0.0008227329,-0.0393038206,0.004201706,-0.0054854644,-0.0201654136,0.0036847333,0.0239681136,0.0091736671,-0.0189857446,-0.0263413321,0.0064777751,-0.0121991737,-0.0219418574,0.0133025115,-0.0398312025,0.0109709287,0.0522107966,0.0169178527,-0.0038373964,0.0053015747,0.0200682655,0.0350014977,-0.0172925703,0.0111166527,-0.0116856704,0.0020436044,0.0184306055,-0.0342243016,0.0207205527,-0.0250783917,-0.0190828927,-0.0169039741,-0.0274932459,0.0109223546,-0.023496246,0.0416631624,0.0580119975,0.0082299318,0.007355588,-0.0079523623,0.0126432842,0.0151552875,0.0072376211,0.001435554,-0.0330862664,-0.0243567117,-0.0284508597,-0.0285896435,0.0355011225,-0.0159186032,0.0234129764,-0.0148777179,0.0210397579,-0.0073000742,0.0471867919,0.011796698,-0.0158630889,-0.014350336,-0.0450495072,0.024217926,-0.0045556072,-0.0263413321,-0.0180975217,0.0452715643,-0.0109501109,0.0057318071,0.0022014719,0.0264523607,0.0126502234,-0.0115885204,-0.0008348766,-0.0505176224,-0.0570682585,-0.0117411837,0.0022656599,0.016876217,-0.0076262183,-0.0187914465,-0.0537929423,-0.0378604606,-0.0261609126,-0.0150581375,0.0295056235,0.0119493613,0.0189163517,0.0076539749,-0.1172452942,0.0058116084,0.0260221269,-0.0164737422,-0.0130041242,-0.006186327,0.0058671222,0.0325033702,0.0198878441,0.0040976177,0.0088752806,-0.064229548,-0.0255502593,0.0091597885,0.0084936228,0.0157520603,0.033752434,0.0124073504,0.0259943698,-0.0015248967,-0.0014130016,0.0057109897,-0.0041739494,0.0409137234,0.0101174032,0.0088891592,-0.0091736671,0.0239681136,0.0133094508,0.0181669146,0.0210120007,0.0232603122,0.0282288045,0.0207344312,0.0093124518,0.0374163501,-0.007848274,0.0088058878,0.0274516102,0.0230660141,-0.0056069009,-0.0620089956,0.0165570118,-0.0190690141,0.0368889682,-0.0174591132,0.0192633141,0.0076678535,-0.0167374332,-0.0067171785,0.0369999968,0.0324201025,0.0055166911,0.0105476361,0.0029786662,-0.0176256541,-0.0211646631,-0.0125114387,0.0269519854,-0.0011683935,-0.0196796674,0.0093193911,0.0352235511,-0.0469092205,-0.0180142522,-0.0001559159,-0.0378049463,0.015987996,0.0083895335,-0.0375828929,0.0187220536,0.0124906208,0.0055166911,-0.0177228041,0.0161406584,0.0005560061,0.011942422,0.0041600708,-0.0385543853,-0.0238154512,0.030116275,-0.0089585511,0.0008825838,0.0080009364,-0.011172167,-0.0103186406,-0.0250089988,-0.009631657,0.0248147007,0.0255502593,0.0509062223,0.011845272,0.0059018186,0.0149471099,-0.0139339818,-0.0031486775,0.0101035247,0.0342520587,-0.021234056,0.0097149275,0.0138229541,0.030116275,-0.0040837391,0.0109431716,-0.050850708,-0.0235517602,0.0330862664,0.0036153409,-0.0056624147,0.0090487609,0.0093471482,-0.0183889698,-0.0238987226,0.0168345813,0.0100965854,0.0096177785,0.0314763673,-0.0055860835,-0.0260221269,-0.0014407585,0.0238432083,-0.0083478987,-0.0115399463,0.0170843937,-0.007993998,0.0005651138,-0.0001323876,0.0002745334,0.0323645882,-0.0109084761,0.0327531844,0.0347239263,0.018805325,0.0359174758,-0.0256612878,-0.0348904692,0.0211091507,-0.0278263278,0.0075429473,0.0278402064,-0.0148915965,0.0456601605,0.0164876208,-0.0240930207,0.0318372063,0.0017434825,-0.0063008247,-0.0135384453,-0.0300052483,0.0527659357,0.0034193075,-0.0048192982,-0.0243844688,0.0578454547,-0.0246342812,0.0670052469,-0.0631192699,0.0006045807,-0.00516279,-0.0112554375,0.0318094492,0.0261886697,0.0411912948,-0.0221222788,-0.008667103,-0.0027323235,-0.0483248271,-0.0200682655,-0.0118730292,0.0131567875,0.0070745489,0.0516279005,0.0300607625,0.0336691625,0.0402475558,0.0131082134,0.0222610626,0.0161406584,-0.0050101271,-0.0126085877,-0.030837955,-0.0216781665,0.0326421559,0.0174591132,0.0099855578,-0.0191661641,0.0069253556,0.0143780932,-0.026049884,0.0085630147,0.0130526992,0.0264384821,0.0075013121,0.0470757633,-0.0214144755,0.0047013313,0.0141352201,0.0001175333,-0.0118105765,0.0028207987,-0.0164459851,0.0199433584,0.0183889698,-0.0220112503,-0.0044862148,0.0489354767,-0.0109362332,0.006512471,-0.0108807189,0.009076518,-0.0043127341,0.0047984803,0.0283398312,0.0042225239,-0.0534321032,-0.0007260173,0.0022916819,0.0287839435,-0.0355288796,-0.025494745,-0.0204291046,-0.0081050256,-0.0302550606,0.0009567469,-0.0055548567,-0.0130526992,-0.0103117013,-0.0163627136,0.0161129013,-0.0065888027,-0.0378882177,0.0091320323,-0.0085630147,0.0075429473,0.0167651884,-0.0038235178,-0.003768004,0.0149471099,-0.0351402797,-0.0184861198,0.0129902456,0.0270630121,0.0202764422,-0.0163765922,-0.0216642879,0.0077441852,0.0371110216,0.0280206278,0.0622310489,-0.0196519103,0.0053466796,0.0149609884,0.0127404332,0.0043335515,0.0485191233,-0.0034435948,-0.018250186,0.0329752415,-0.0007611472,0.0024825109,-0.0203180779,0.0035528878,0.0155161275,-0.0108599011,-0.0009923105,-0.0216642879,-0.0239403564,-0.0139131639,0.0171399079,-0.0039518937,0.0020765658,0.0032302134,0.022413725,-0.0282704402,0.0083895335,0.0161129013,-0.0324201025,-0.0310877692,-0.0138645899,-0.0052078953,-0.0054091327,0.0221222788,-0.0262025483,0.0089863082,0.0248147007,-0.0423570834,-0.0071821073,-0.0290892683,0.0167374332,-0.0158353318,-0.0283537097,0.0127473725,-0.0203041993,-0.0124004111,-0.0369722396,0.0166680403,-0.0088405842,-0.0043543694,0.0331417806,-0.0292835683,0.0192216784,-0.0180003736,0.0255502593,0.0258000717,0.0094026625,0.0144891208,-0.0249396078,-0.0165292546,-0.0004779397,0.0155993979,0.0166402832,0.016779067,0.0106586637,0.0330029987,-0.0072445604,0.000844418,0.0238293298,0.0064500179,0.0264662392,0.048852209,0.0024096491,0.014974867,-0.0008621998,0.028672915,0.0201237779,-0.0067032999,0.0469369777,0.0020349303,-0.0221500341,0.0002057917,-0.010568453,0.0219834931,0.0045764246,0.0096524749,-0.0403585844,0.0275210012,0.004874812,0.0023090302,0.009798198,-0.0060718297,-0.0035442137,-0.0031746996,0.0011510454,-0.0065402281,-0.0170982722,-0.0048505245,0.0095483856,0.0253420826,0.0022292288,0.0249673631,0.0505731367,0.0112207411,0.0212895703,0.0016966427,-0.001377438,-0.0041704797,-0.0038686229,-0.0146556618,0.0097773811,0.0017217974,-0.0170566365,0.0267854426,-0.0036084016,0.0189024732,0.0009541447,-0.0111860456,-0.0218447093,0.0208177026,0.013073517,-0.0216087755,0.0096455356,0.0101174032,-0.0119354827,0.0084728049,-0.0183750913,-0.0444388539,0.0206234027,-0.0244816169,-0.0214838684,-0.0075915218,0.0159324817,-0.0087017994,0.0037159598,0.0517944433,-0.0205678903,0.0333360806,-0.0016246481,0.0121852951,0.0113109518,0.0019776816,-0.0100549497,-0.0251616631,0.0044723363,0.0094720544,0.002708036,0.0358897187,0.0139547996,-0.0188608374,-0.0286451578,-0.0462430567,-0.0105615137,0.0101312818,0.005273818,-0.020151535,0.0099022873,0.0030931635,0.0469092205,0.0283953454,0.0186110251,0.0231354069,-0.0127751296,0.0018406318,-0.0203597117,0.0012464599,-0.0358897187,-0.0629527345,0.0166402832,-0.0404140987,0.0125044994,-0.0158769675,-0.0067032999,0.0520997681,-0.0233852193,0.0053917849,0.012712677,0.019790696,0.0158769675,0.0050760498,0.0173619632,-0.0075984611,-0.0426068977,0.0030914287,-0.0108390832,0.0180420075,-0.0367501825,0.0093887839,-0.0025900691,0.0082160532,-0.0141490977,0.0235656388,-0.0065575764,-0.0163488351,-0.0157243051,-0.0018007312,-0.0122893834,-0.0156965479,-0.0214699898,-0.0001427964,0.0155716408,-0.008354838,0.020415226,0.0015075486,0.0092430599,0.0483525842,0.0059677414,-0.0306991711,-0.0021216709,-0.0237321798,-0.0001056065,-0.0118244551,-0.0085144397,0.0235517602,0.0091042751,0.0176256541,0.0119146649,0.0388874672,0.0149609884,0.0052321823,-0.0164043494,-0.0296721645,0.0489354767,0.0114427973,-0.0039935294,0.0237599369,0.0016645488,0.0259388573,0.0323645882,-0.023954235,-0.0041600708,-0.0010122608,0.0091875456,0.0053119836,0.026868714,-0.0059261057,0.0356121473,0.0117064882,-0.0027548759,-0.0340022482,0.0142254299,0.0071196542,-0.0648957193,0.0203597117,0.0071196542,-0.0074874335,0.0124420468,0.0156549122,-0.004177419,-0.0115468856,0.0033915506,-0.0213589631,-0.005464647,-0.0204568617,0.0277569368,0.0136633515,-0.0153218284,-0.0165847689,0.0188330803,-0.0130110634,-0.0013548854,-0.0032753185,0.0159186032,0.023496246,0.0183473341,-0.0176117755,0.0138298934,-0.0291725397,-0.0142254299,-0.0057942602,-0.0194020979,0.0330307521,-0.0008960286,-0.0259111002,-0.000324626,0.008764253,0.0313098244,-0.0109223546,0.0022344333,0.0132400589,-0.0090695787,0.0189163517,-0.0098259551,-0.0201792922,-0.0038478053,0.0222333055,0.0104990611,-0.0104851825,0.009701049,-0.000448448,-0.0001438807,-0.0020488088,-0.0014858635,-0.0121020237,0.0002704133,0.0338912196,0.017264815,0.0331972949,0.0221639127,0.0106447851,-0.0281732902,-0.0118313944,-0.0175840184,-0.0117689408,-0.0160851441,0.0063771559,-0.0232603122,0.0253420826,-0.0089654904,0.0104851825,-0.0148083251,0.0281177759,0.0328919701,-0.0136911087,-0.0289782416,0.0282843169,0.0075845825,-0.0194853693,-0.0251894202,0.0557636842,-0.0140380701,-0.0478252023,0.002029726,0.0269103497,0.0197490603,-0.0321702883,-0.002907539,0.0288116988,0.0026074171,0.0114983106,0.0043960046,0.0218169522,-0.0139686782,0.0013184545,0.0165292546,0.0222610626,0.0216087755,-0.0050170664,0.0423570834,-0.012206113,0.0249812417,-0.0291170254,-0.0258833431,0.0155855194,0.0173203275,-0.0081050256,0.0110333823,0.0116579132,0.0280206278,-0.0094998116,0.019138407,0.0002463428,-0.0060163159,0.0495183729,0.0031330641,-0.0328364559,-0.0447719395,0.0028502904,0.0067518745,-0.00706761,0.0003330832,-0.0332250521,-0.0083964728,-0.0048227678,0.0162794422,-0.0289227273,0.0147528118,-0.0057595642,-0.0071196542,-0.0346684121,-0.0309212264,0.0374996215,-0.0097843204,0.0339467339,0.0199017227,-0.0103117013,0.0075013121,0.0175146274,0.019596396,0.012303262,-0.0145168779,-0.0216226541,0.0241762921,-0.0025952735,-0.0193327051,-0.015987996,0.0022292288,0.0116370954,-0.0054264809,0.0214005969,0.0084172906,0.0371110216,0.0124351075,0.0329474844,-0.0009350618,-0.001884002,0.0012455925,-0.0304493587,0.0077580637,0.0398589596,0.0193465836,0.0179032236,-0.0226357821,0.0148360822,-0.0223998465,-0.0345296301,0.0145029994,0.0090626394,-0.001974212,-0.0035442137,-0.0364171006,0.0018163444,0.0500457548,-0.0036743244,0.0231492855,-0.0109292939,-0.028672915,0.0167513117,-0.0220390074,0.0358897187,-0.0014398911,0.0107280556,-0.0030931635,-0.0049997182,0.0417741872,-0.0140103139,0.0288949702,0.0094581759,-0.0180697646,-0.0204846188,-0.0034435948,-0.0270907693,0.0220112503,0.0042606895,0.0322813168,-0.0282565616,0.0139825568,0.0084866835,0.0229411069,0.0325311273,0.0017018472,-0.0308657121,-0.018708175,-0.005454238,-0.0189302303,0.0079801194,-0.001847571,0.040830452,0.0158769675,0.0248008221,0.0029300915,0.0055271001,-0.0341687873,0.0110403216,0.0077233673,-0.0315873921,-0.0110195037,0.0198739655,0.0154606132,0.0252588112,-0.0031677603,-0.0004723016,-0.0060614208,0.0108876582,0.0078413347,0.0140380701,-0.0180836432,0.0022673947,0.0423015691,0.0063598081,-0.0019863558,-0.0125114387,0.0017755765,0.0117550623,-0.0012811561,-0.0203319564,-0.0021528974,-0.0246204026,-0.0199988727,0.012566953,0.0064743054,0.0074527375,0.0115052499,0.010061889,0.0159324817,0.0085144397,0.0509062223,0.0259804912,-0.0131776053,0.0379159749,0.0352790654],"11":[0.0004605462,-0.035309121,0.0553830601,0.0046279281,0.0175024848,0.0112881353,-0.0102719953,0.0423045829,-0.0411432832,-0.0056440677,0.0334842168,-0.0474751443,-0.0023070516,-0.0424981341,0.0450695902,0.0335671678,0.0024487581,-0.0011388366,-0.0172121599,0.0462308936,-0.0008273415,-0.0205854662,0.0350326188,0.0172951091,-0.0184425861,-0.0566273145,-0.0317699127,0.0666366369,0.0064113564,-0.0609960221,-0.0072374018,-0.0455672927,-0.0603877194,0.0476410463,0.0083157541,0.0000604845,0.0434935354,0.0109494217,0.038461227,-0.0115024233,-0.0129402261,-0.0150969299,0.0216638185,0.0131130386,-0.0686827376,-0.0295855589,-0.0255210008,-0.0195900649,0.0108457338,0.048028145,-0.014405679,-0.0023606236,-0.0434105881,-0.0200324655,-0.0023329735,-0.0335948169,-0.0191614889,0.0212075915,0.0110461973,-0.0210969914,-0.0020685697,-0.0392630771,0.0438529886,-0.0094424943,-0.0450142883,0.0095392689,-0.013230551,0.0298067592,-0.0202398412,0.0075000776,0.036857523,0.0141568286,0.0235993229,-0.0373275764,0.034396667,-0.0638716295,-0.0237790477,0.0728855431,0.0056475238,-0.0269173291,0.0117512736,0.0024556706,-0.0103549454,0.0389312766,-0.0070058326,-0.0526733547,-0.0187329128,-0.0069678137,-0.0135485269,0.0063767941,-0.0412538834,0.0532263555,-0.0061417683,0.0366086736,0.0432723351,0.0000998534,-0.0014818702,0.0190647133,0.0143503789,0.0245394241,0.0009133159,-0.0040507331,0.0029931185,-0.0392907299,0.0365533717,0.0069263387,0.0269173291,-0.0094217565,0.0276500545,0.0400372818,-0.1018628031,-0.0032696191,-0.0253274515,-0.0242352728,-0.0227145199,-0.0234887227,-0.0386824273,-0.0300279595,-0.0083364919,-0.021249067,-0.0268205535,-0.0048629534,-0.003146922,0.0390695296,0.0102650831,-0.0363045223,0.0053191795,-0.0624338239,-0.0073134396,0.0151937054,0.0437700376,0.0109148594,0.0309957117,0.0146545293,-0.0343690179,-0.0083503164,-0.0575674139,-0.0101130074,-0.024401173,-0.0307192113,0.0246638488,-0.0077351029,-0.0173365846,-0.0045933654,-0.0184011124,-0.0020772105,0.0227559954,0.0428852364,-0.0375487767,-0.021249067,0.0162444077,-0.002084123,-0.0415856838,-0.0063284063,0.062599726,0.0042131771,0.0132443765,0.0615490228,-0.0180831365,-0.0347561203,0.0138250273,0.0469497927,-0.0096014813,0.0137282526,0.0162305832,0.0241523236,-0.025285976,-0.0337054171,-0.0815123618,-0.024083199,-0.0420004353,-0.0524521545,-0.0118964361,0.0310233627,0.0415856838,-0.0113226976,0.0219403189,-0.056129612,0.0018318162,-0.0511249527,-0.0564890616,-0.0113226976,-0.0361109711,-0.008820368,-0.0478069447,-0.0039643268,-0.042470485,0.0470603928,0.021622343,0.0463414937,-0.0153872557,0.0713924393,0.0138042904,0.0179310609,-0.0075069899,-0.039318379,0.0318528637,0.0334289186,-0.0414750837,0.0261707772,0.0157467071,0.0273320805,0.0270555783,0.0037327574,0.0185808372,-0.0197974388,0.0061867,-0.002972381,-0.0763694495,-0.0396501794,-0.0036498073,-0.0283136573,-0.0099609327,0.0166176837,-0.0262675527,-0.0174471848,-0.048885297,-0.0173089355,-0.0254104007,-0.011066935,0.0079563037,0.0458161421,0.0103203831,-0.0215532184,0.0163550079,0.0111291474,0.0212352425,-0.0371893235,0.0237652231,-0.0075622899,0.0065012192,-0.0547471084,-0.0071959267,-0.0430511348,0.0102858208,0.0046555782,-0.0023191483,-0.0382953249,0.0046935971,-0.0449589901,0.0144195035,0.0189126376,-0.0075692027,0.0172951091,-0.0093249809,0.0154425558,-0.0340372175,-0.0722772479,0.0170186087,0.0458437912,0.0324058644,-0.0133065889,0.0134586645,0.0074447775,-0.0283413064,-0.0585628189,-0.0349496715,0.0220647436,0.0016209845,-0.016064683,0.0279542059,-0.0747104511,-0.0414197817,-0.0091590807,-0.0150416298,0.0200877655,0.01523518,0.0065876255,0.0299173594,-0.004023083,0.0590052195,0.0426087342,0.0140462285,-0.0394289792,-0.0177236851,-0.0220370945,-0.0150554553,0.0214011427,0.0229495466,-0.0536134578,-0.0041613332,-0.0178066362,0.0019268632,-0.0062696501,0.0220647436,0.0105899712,-0.0066049071,0.0151245799,0.0026872398,-0.037631724,0.017239809,-0.0108733838,0.0193135645,-0.0337330662,0.0316593125,0.0130923009,0.0466179922,-0.0184287615,-0.0102581708,-0.0035115571,0.0312445629,-0.0204610415,0.0011379726,-0.0254657008,-0.0136245647,0.0043583401,0.0109494217,-0.0346731693,-0.0169771332,0.003053603,0.0081844162,-0.0200048145,0.0033802192,-0.034451969,0.0166176837,-0.0025991052,0.0387100764,0.0000029027,-0.0047972845,-0.0419174843,-0.0389036275,-0.0778072551,-0.0044274651,0.0229357202,0.0266408287,0.0032644346,0.0276500545,-0.0054816236,0.0362215713,-0.0124632623,0.004023083,-0.0221476946,-0.0087097678,-0.0059274808,-0.0070853266,-0.021705294,0.004102577,-0.0023156921,-0.0171706844,0.0429958366,-0.0211384669,-0.0081705917,-0.0881483778,0.0318528637,0.0460096933,0.0073549147,-0.0166315082,-0.0131545141,-0.0104724588,0.0016304892,-0.0510420017,-0.0047523533,0.0242905729,-0.0029965749,0.0008143805,0.0035081008,-0.0070403954,-0.0039677829,-0.041640982,-0.0214287937,-0.0305256601,0.0164517835,0.0268205535,-0.0056613488,-0.0038606389,0.0111637097,-0.0172951091,-0.0033180066,-0.0078111407,-0.0136729525,0.0128711006,-0.0220094435,-0.0173089355,-0.0217882432,-0.061825525,0.0034372476,0.0516226515,0.0115162479,0.0058445306,0.0820100605,0.0281339306,0.0111014973,-0.010610709,-0.0130784763,0.0361662731,0.0479451977,0.0175992604,0.0048076534,-0.0029274495,0.0015803735,0.0291708075,-0.016382657,-0.0141706532,0.0096014813,0.0146407047,0.0295302588,-0.0086682923,0.0412262343,0.065530628,-0.0360556729,-0.004451659,-0.0080323415,-0.0274012052,-0.0290602073,0.0013643574,0.0426916853,-0.0003959574,0.0604430214,-0.0260187015,-0.016382657,-0.0704523399,-0.0383782759,0.0311063118,-0.0476133935,0.040147882,-0.0549683087,-0.0368298739,0.0789685547,0.0244426485,0.0283689573,-0.0217191186,-0.0137006026,0.0125254747,-0.0024764081,-0.0227421708,0.020073941,0.0454013906,0.0048698662,-0.0252306759,-0.0437700376,-0.0095807444,-0.0021618886,0.0461479425,-0.0255071763,-0.0124356123,0.0048456723,0.0658071339,0.0074862526,0.0426363871,0.0587840192,-0.0083779665,0.0353644192,-0.036857523,0.0097328192,0.0028220338,-0.0365257226,-0.0399819799,-0.0399543308,-0.0265164021,0.0090553928,0.032903567,-0.000296158,-0.0293090586,-0.009165993,-0.0475857444,-0.0351432189,0.0411985815,-0.0090415683,0.0230739713,-0.0334012657,-0.0221200436,0.008447092,-0.0832819641,0.0055300109,0.0191753134,-0.066526033,0.0331247672,0.0331800655,0.0033024536,-0.0188296884,0.0216085184,0.0282860063,-0.0383229777,0.0072097518,-0.0498530492,0.0093042431,0.0238758232,-0.0132720266,0.0086199045,-0.0237237476,0.0046866843,-0.012960963,0.0158158317,0.0708947405,0.017696036,0.0473921932,0.021276718,-0.0090139182,0.002232742,0.0296132099,-0.0039850641,0.0189264622,0.0256730765,-0.0163964834,-0.018387286,0.0067500696,-0.0830607638,0.0106245335,-0.0110600218,-0.0214840937,0.0218573678,0.0226039197,0.0082742786,0.071447745,-0.0290878583,0.0277606547,-0.0290602073,-0.0214564428,0.0087374179,-0.0078526158,-0.0550512597,-0.0082535418,0.0389036275,-0.0022310137,0.0003598827,0.03453492,-0.0262537282,-0.0054228669,0.0000851103,-0.0352538191,-0.0152213555,-0.020474866,-0.0460926406,-0.0008925783,-0.0162997078,-0.0008359822,-0.0289772581,-0.0300279595,-0.012670638,-0.0061728749,0.0032125907,-0.0178204607,0.0169909596,-0.0295026097,-0.0482769981,0.0216085184,-0.0129333129,-0.0455949418,-0.046424441,0.0034873632,0.0148480795,0.0306639113,0.0346455202,0.0407561809,-0.0052742478,-0.0265855286,-0.0100024072,-0.0002918377,-0.0012710384,0.0355026722,0.0499912985,-0.0251339003,0.019645365,0.0011716711,0.0064320941,0.0036428948,0.0158434808,-0.0095600067,0.018414937,0.0027200743,0.0159402564,-0.005906743,0.0084678298,0.0088825803,0.0115646357,0.0446271896,-0.0052500544,-0.0540558584,-0.0284519065,0.0111637097,0.0006713779,0.0079217404,-0.0155669814,-0.0057892301,0.0296132099,0.0099678449,-0.0367469229,-0.0332077146,0.0129886139,0.0160508566,-0.0145024536,0.0193826891,-0.0370234251,0.0395119302,-0.0327100158,0.0073341774,0.0244149994,0.0330971144,0.0418621823,-0.031382814,0.0035875947,0.0203089658,-0.0399543308,0.0087028546,0.0229771957,0.0069954642,0.0245808996,-0.0102305207,-0.0128711006,0.0355579704,0.0060760998,-0.010638359,0.016119983,-0.0161752831,-0.0096706068,0.0148895551,0.0015172968,-0.0035236538,0.0242076237,0.0029499154,0.0238066968,0.0186776128,0.0065565193,-0.037769977,-0.004437834,-0.0138319405,0.003981608,0.0128918383,0.0322399661,-0.022852771,-0.0172259845,-0.0400649309,-0.0157467071,-0.0518438518,0.0268482044,0.0093457187,-0.027207654,-0.0370787233,0.0178066362,0.0295026097,0.0107558714,0.0084263543,0.0390418768,0.002932634,0.0043203211,0.0391524769,0.0423045829,0.0207098909,0.0032246877,-0.0140531408,0.0088894926,0.0044862214,0.0063042124,-0.0023675361,0.0326823667,-0.0230186712,-0.0013686777,0.0644246265,-0.0172951091,-0.0092835063,-0.0243735239,-0.0019130382,0.0531987064,0.0130508263,0.0124079622,-0.0246361997,-0.0044309213,-0.0180278365,0.0293643586,0.0042062649,-0.044931341,0.0134586645,-0.0134932268,0.0059516742,-0.0484428965,0.034396667,-0.0035564883,0.0110047217,0.0324888155,0.0214840937,-0.0420833826,0.0266408287,0.0045484342,-0.0119171739,0.0284242574,-0.0030207685,0.0001373862,-0.0230463203,0.0202536657,0.056959115,-0.0117789237,-0.0069505326,-0.036774572,-0.0077973157,-0.0071959267,0.0045346092,-0.0149586797,0.0150969299,0.0335671678,0.0179034099,0.0076106777,-0.0079701282,0.0181799121,-0.0137282526,-0.0056336988,-0.0181107856,-0.0047592656,0.0059136557,-0.0223274194,-0.0279956814,0.0018249037,-0.0134517523,-0.0452354923,-0.0144886291,-0.0094701443,0.0036532634,0.016119983,-0.0036912824,0.0395948775,-0.0149863297,-0.0420004353,-0.017696036,-0.0170324333,0.0179034099,0.0060449932,-0.0235578474,0.0056751738,0.0159679074,-0.0322123133,-0.0129194884,-0.0566273145,-0.00860608,0.0015846938,-0.0243596993,0.0271108784,-0.0217191186,0.0251477249,0.0300003104,0.0101613952,-0.0226039197,0.0069712703,0.0237790477,0.0248159245,0.0136798648,0.0245808996,-0.0222721193,-0.0331800655,0.0085369544,-0.0374658257,-0.0016080235,-0.0182490367,0.0142536033,-0.0289219581,0.0404243805,0.0298067592,-0.0459820405,0.0291708075,0.0528392568,0.0024902332,-0.0206545908,0.0096083945,0.0123733999,0.0014049684,-0.0035288383,-0.0147098294,0.0009383737,-0.0369404741,0.0160232075,-0.0277330056,0.0061728749,0.0027822868,0.0314657614,-0.0207237173,0.0382400267,0.0025559019,0.0198527388,0.0115093356,-0.005464342,-0.0009098596,-0.0418898351,0.019244438,-0.0154563813,-0.0074931649,-0.0057408428,0.0676320344,-0.0118964361,-0.0146821793,0.0173780601,0.0024660393,-0.0169356596,0.0287560578,0.0025714552,-0.0258113258,-0.0555489622,0.0074171275,0.0096014813,-0.0105692334,0.0139563652,-0.0315487124,-0.0269449782,-0.0241246726,-0.0030916219,-0.0085369544,0.0320187658,0.0245394241,-0.0079148281,-0.0174610093,-0.0744892508,-0.0129402261,0.0345902182,-0.0058756368,0.0123733999,-0.0122351497,0.0059032869,0.0270555783,0.0324611664,-0.0154978558,0.0098434193,-0.0507378504,-0.0276224054,-0.0082881041,-0.0162029322,0.0070784143,0.0263090283,0.0312722139,0.0347561203,0.013790465,0.0008593119,0.001466317,0.0002119118,0.0331524163,0.0113779977,-0.0227283463,-0.0113572599,0.0353920721,-0.0052984417,-0.0018767475,0.0048871473,0.0232675206,0.0070922393,0.0050288537,-0.0055783987,0.0606642216,-0.0154840313,0.0130992141,-0.0157743562,0.0305809602,-0.0469497927,-0.0524798036,0.0482216962,-0.0367469229,0.0512355529,-0.0124287,0.0207928419,0.0241661482,0.0058479868,0.0153043056,0.0266823042,0.0360280238,-0.0093042431,0.004531153,-0.0084678298,0.0164517835,-0.0222444702,-0.0071406267,0.0278159548,-0.011841136,-0.0205025151,0.00758994,0.0212628916,-0.036000371,-0.0401202291,0.0128987506,-0.0207790174,0.0359174237,-0.0183181614,-0.0089240549,-0.00866138,0.0428299345,0.021276718,-0.0104862833,0.0068675824,-0.0106867468,0.0058583557,-0.0101752207,-0.0268482044,-0.0291984584,0.0070680454,0.0095392689,-0.0483599454,0.0148480795,-0.0152628301,-0.0177651607,0.0089240549,-0.0161338076,0.0308574624,0.0022794015,0.0587840192,-0.003929764,-0.0046486654,0.0098019447,0.0103756832,0.0023364297,0.030498011,0.0083157541,-0.013016264,-0.0193826891,0.0218158942,0.0033110941,0.0222582947,0.0185255371,-0.0201015901,-0.006656751,0.0106037958,-0.0092005562,-0.0113434354,0.0173227601,-0.0189817622,-0.0230739713,0.0016641878,-0.0091590807,0.0246361997,0.0192859136,0.0069885515,0.0142397787,-0.0015034718,-0.0125185624,0.0297514591,0.0024746798,-0.0413368344,0.0231430959,0.0050979787,0.0198527388,0.0248988755,-0.0172121599,0.0179034099,-0.0305533111,0.0278021302,0.0362768732,-0.0080046915,0.0342860669,-0.0063560563,-0.0303874109,0.0117443614,-0.0270832293,0.0213181935,0.0264472775,-0.0065979944,0.0319358148,-0.0048594973,-0.0012554853,0.0421663336,-0.0016719643,-0.0400649309,-0.0067224195,-0.0150278052,0.0578992143,0.0249403492,0.0075346399,-0.0493829995,0.0550789088,-0.0072581396,0.0586734191,-0.0364427716,-0.0057892301,-0.0236822721,-0.032903567,0.0215808675,0.0194656383,0.0160923321,-0.0070991516,-0.0149310296,-0.0319358148,-0.0425810851,0.0049113412,-0.0141084408,0.0221338701,0.0093042431,0.0365533717,0.0077351029,0.0236407965,0.0295855589,0.0085162167,0.009165993,0.0218850188,0.0111498851,-0.002044376,-0.0278574303,-0.0121383741,0.0370234251,0.0124494378,0.0089862682,-0.0193135645,-0.0206269417,0.0047800033,-0.0110876719,-0.0082535418,0.0295579098,0.021193767,-0.0162997078,0.0531987064,-0.024428824,-0.0090208305,0.0321846642,-0.0024988737,-0.0442124382,-0.0020374635,-0.0378529243,0.0249265246,0.0058756368,-0.0074931649,0.0033404722,0.0471709929,-0.0124909123,0.0058479868,-0.0114194732,0.016811233,0.0235993229,-0.0012425244,0.0116890613,0.0033750348,-0.0212075915,0.0003307206,-0.0058756368,0.0176822096,-0.0410603322,0.0095047066,-0.0046694032,-0.0126913758,-0.0306639113,0.0253274515,-0.0114885978,0.0344796181,-0.024401173,-0.0097051691,0.0073134396,-0.0021428792,-0.0254795253,0.0100300573,0.0050012036,-0.0020806666,0.0303597599,-0.0234057717,0.0174195357,-0.0045484342,-0.0127121126,0.0003104151,0.0330694653,0.0213596672,0.0083987042,-0.0080945538,-0.0245117731,0.0182490367,0.0608854219,0.0221338701,0.0398437306,-0.0096498691,0.0020633854,0.0324611664,0.0074240398,0.0381570756,0.0256039519,0.0096775191,0.0150139797,-0.0092489431,-0.0090000927,-0.0150278052,0.0001952785,0.0123941377,0.0364151224,-0.0128227128,-0.0096291313,-0.0203504413,-0.0122005865,-0.009221293,0.032848265,0.0308021624,-0.0175854359,0.0211522914,0.0047419844,-0.0129333129,-0.0037500388,0.0215255674,-0.0319358148,-0.0240970235,-0.0005931801,-0.0084678298,-0.0316040143,0.0151245799,0.0030363216,0.0070092892,0.0226315707,-0.0262537282,0.0034683538,-0.0183596369,0.0159817319,-0.0335395187,-0.026087828,0.0308298115,-0.0078249658,0.0088549303,-0.0418068841,0.0089517049,0.0037846013,0.0131476009,-0.0244702995,-0.0203227904,0.0392907299,0.003902114,0.0018888444,0.0064908504,0.0074586025,0.0015371703,-0.0161061566,-0.023198396,-0.0063767941,0.0044758525,0.0033180066,-0.0000315653,-0.0006005247,0.0455119908,0.0171706844,-0.0121245496,0.0172812846,0.0116683235,0.0128434505,0.0437700376,-0.0014006482,-0.0063837063,0.0102858208,0.0538346581,-0.0023623516,0.0112812221,0.0171292089,0.01523518,-0.0332353674,0.0103687709,-0.014861905,0.0011777196,-0.0182766858,0.0086199045,-0.054442957,0.0084885666,0.0255486518,-0.0159817319,0.0047558094,-0.0197836142,0.0072719646,0.0137282526,-0.0073618274,0.0020737541,-0.0090692183,-0.0003782441,0.039318379,0.0261154771,-0.0039055704,0.003121,0.0540835075,0.0150416298,0.0006769943,0.0054436047,-0.0026993367,-0.005813424,-0.010424071,0.0175439604,-0.0028721495,0.0101406574,-0.0193688646,-0.0009712082,-0.0209863912,0.0131268641,0.0065530632,-0.0185531862,-0.0091521684,0.0173365846,-0.0007163092,-0.0095807444,0.0210278668,0.040147882,-0.0239725988,-0.005879093,-0.0184564125,-0.0246914998,0.0194656383,-0.0261016525,-0.0175577849,-0.0021584325,0.0108664716,-0.0082397163,0.0239449479,0.0611066222,-0.0140946154,0.0032246877,-0.0014870545,0.0218158942,0.005799599,-0.0061279433,0.0136936903,-0.0433552861,0.0055576609,-0.0245670732,-0.0184564125,0.0298620593,-0.0068261074,-0.0174333602,0.0000899707,-0.044931341,-0.0286178067,-0.0130508263,-0.0070784143,-0.0209172666,0.004289215,0.0076452401,0.0562402122,0.0317975618,0.0282721817,0.0261984281,-0.0125393001,-0.0066014505,-0.0333183184,-0.001022188,-0.0121176364,-0.0208066665,0.0094701443,-0.0318805128,-0.0116683235,-0.0150278052,-0.0112743098,0.0393460281,-0.0180554856,0.0197421387,0.0448483899,0.0084540043,0.0070922393,0.0273320805,0.0255486518,-0.0122904498,-0.0325164646,0.0287007578,-0.0280786306,0.0236960966,-0.0379358754,-0.0066187321,0.0014853264,0.0129264006,-0.0014291622,0.0245947242,-0.0171983335,0.0050357664,-0.0023243327,0.0055507487,-0.0161061566,-0.0177651607,-0.0275118053,0.0045760842,0.0059827808,-0.0263919774,0.0342860669,0.010237433,-0.0137559026,0.0462032408,-0.0094908811,-0.0286731068,-0.0056060487,-0.0176683851,-0.0005460886,-0.0198389143,0.0031261845,0.0219541434,0.0390418768,0.0174333602,0.0190647133,0.0498530492,0.0123733999,-0.0044412902,-0.0116199357,-0.0138941528,0.0248020999,-0.0036325259,-0.0110600218,-0.0023658078,-0.0211108178,-0.0008523994,0.0361662731,-0.0506825522,0.0081705917,-0.0105415834,0.006228175,0.0063595129,0.0391524769,-0.0042477399,0.0453184396,0.0038191639,-0.0048767785,-0.0208343174,0.0048353034,0.0235301964,-0.0531987064,0.0100093205,0.0022396545,-0.00761759,-0.0139010651,0.0044032712,0.0035979634,0.0035063727,0.0048353034,-0.0277606547,0.0060519059,0.0070991516,0.025285976,0.0079010036,-0.0092489431,-0.0470603928,0.0281062815,-0.0049009724,0.0011751273,-0.0005495449,0.0023986422,0.0283966064,-0.020073941,-0.025285976,0.0222029947,-0.0221062191,0.0086821178,-0.0000520869,-0.0341754667,0.0439635888,0.0191614889,-0.0368851721,0.0093180686,0.0045518903,0.0260463525,-0.0215393938,-0.0274288543,0.0068122824,0.0089447927,0.0115577234,0.021649994,-0.0084609166,-0.0061832438,0.0266961288,0.0054332358,-0.0004722111,-0.0081222039,-0.00860608,-0.0006199661,-0.0213596672,-0.0102028707,0.0205025151,0.007776578,0.0376040749,0.0100853574,0.0243458729,0.0222306438,0.001574325,-0.0398713797,0.0064182691,0.0034700818,-0.0084885666,-0.0247053243,0.0027166179,-0.0000428252,0.0099471072,0.0004614103,0.0106936591,-0.0031953095,0.012642988,0.0184011124,-0.0084954798,-0.0386824273,0.0078664403,0.0066947695,0.0004627064,-0.0095254444,0.0571803153,0.0178066362,-0.0595582202,0.016064683,0.0157052316,0.0097742947,-0.0337330662,0.0073065269,0.0156775806,0.0151107553,-0.019189138,-0.0128918383,0.0224656705,-0.0224518441,-0.0304703601,0.026405802,0.0317699127,-0.0030708842,-0.0064666565,0.0246914998,-0.0092904186,0.0126775503,-0.0337330662,-0.0281062815,0.0015371703,0.013444839,-0.0023606236,0.0201845411,0.022396544,0.0147236548,0.0067811762,0.006442463,0.0152904801,-0.0338160172,0.0221338701,-0.0036394384,-0.023654623,-0.0283413064,0.0316869617,0.0076452401,-0.0015440828,0.0016339455,-0.000511526,-0.0175024848,-0.014433329,0.0124217877,-0.0420557335,0.0012070978,-0.0007024842,0.0318805128,-0.0366916247,-0.0418345332,0.0525627546,0.0021549761,0.0210555177,0.0218850188,-0.0153457811,-0.0218297187,0.0054677986,0.0015509953,0.0082120663,0.0138803273,-0.0058618118,0.0078387903,0.0118549615,-0.0368298739,-0.0050288537,-0.0004145348,-0.0130992141,-0.0093733687,-0.0140531408,-0.0083019286,0.025285976,0.0118687861,0.0298620593,0.004451659,-0.0089586182,0.0271385293,0.0071337144,-0.0020789385,0.0408944301,0.0086475546,0.0116544981,-0.0002339454,0.0219679698,-0.0104378955,-0.0278021302,0.0365257226,0.0274426807,0.0080669038,-0.0071268016,-0.0213181935,0.0011898164,0.0205854662,-0.0108111715,0.0113987355,-0.020820491,0.0001083861,0.0156775806,0.0069989203,0.0342860669,0.0071959267,0.0202121902,0.0066878572,-0.011599198,0.0125531247,0.0055369237,0.0524245054,0.0197559651,0.0085093044,-0.0014023762,0.0257283766,-0.0257422011,0.026405802,0.0007171733,0.0408391319,-0.0350326188,0.0264196284,-0.0091037806,0.0258804522,0.0218988433,-0.0047730906,-0.0273044296,-0.0420557335,0.0143918535,-0.019272089,0.0254380517,0.0061728749,0.0430511348,-0.0135001391,0.0139909284,-0.0015242093,0.0121245496,-0.0204057414,0.0346731693,-0.0192997381,-0.0037120199,-0.0134724891,0.0300832596,0.0140531408,0.0192306135,-0.0282583572,0.0029654684,0.0320464149,0.006508132,0.0003294245,0.0078457035,-0.0348114185,0.0143918535,0.0263781529,-0.0096083945,-0.0037915139,-0.0482769981,0.0171153843,0.0008320939,-0.0019804351,-0.020073941,-0.0131959887,-0.0447101407,0.0118756983,0.0314104632,0.000766857,-0.0046728593,0.0185255371,0.0130853886,0.0424428359,0.0085300421,0.0170877334,0.0061383122,0.011841136,0.0209172666,-0.0122627998],"12":[0.0338582359,0.0095095662,0.0479210466,0.0473836139,0.0199894961,0.031380076,-0.0262147542,0.0391429849,-0.0583412647,0.0019108704,0.0086063817,-0.0323056541,0.0231991615,-0.0232887343,0.0080838781,0.0712993518,0.0056803608,-0.0182279125,-0.0258863233,0.0521010756,0.0296632778,0.0340672359,0.0259460378,-0.0394415595,-0.0093677435,-0.0355302468,-0.0601924174,0.054638952,0.0536835156,-0.0652681664,0.0373515449,-0.0278270505,-0.0469954684,0.0464580394,0.0167947598,0.0515935011,0.0130700553,-0.0535342284,0.0117190098,-0.001836227,0.0112412926,-0.0099798199,0.0206762161,0.0185712725,0.0233783051,-0.0296035632,-0.0523996502,-0.016585758,0.0058483086,0.0207956452,-0.0120623698,0.0158393253,0.0019108704,-0.0505783521,0.0371126868,-0.0534446575,-0.0006489308,0.0447561704,-0.0469954684,-0.0057438076,0.0416808613,-0.0350525305,0.0014844702,0.0072702649,-0.016929118,0.0111069344,-0.031708505,0.0411434285,-0.0193475634,-0.0113980435,0.0804357007,0.0227811579,-0.0379785486,-0.0237515233,0.0099798199,-0.0201835688,0.0002108675,0.0883180425,-0.0150182471,-0.0192579906,0.0129879471,-0.0517427884,0.0304843541,0.0225422997,-0.0515636429,0.0200044252,0.0017849097,0.0152347134,-0.0282301251,0.0370529704,0.0035250334,0.0734490827,0.0008234098,0.011577188,0.054638952,0.0053855195,-0.0079420554,0.0029036275,0.0417704321,0.0292900614,-0.0243337415,-0.0069567626,0.0205717143,-0.0423377231,-0.0202880707,-0.0018698166,0.0246920288,-0.0177800525,0.0095618162,-0.0205866434,-0.0908260643,-0.0415614322,0.0230946615,0.019422207,-0.0383965522,0.0035735518,-0.0771513954,-0.0015329884,0.0054937527,-0.0320070796,-0.0248263869,0.0085765244,-0.0102261426,0.0143688498,0.0221840125,-0.0537133738,-0.0363662541,-0.0740462318,0.0014527467,-0.0594459847,0.0390832722,-0.0246472433,0.0745239481,-0.0496826321,0.0015824396,-0.0128909107,-0.0163916852,-0.0371126868,-0.022915516,0.0218555816,0.0162722562,-0.0112786144,0.031708505,0.0049637845,0.0070463349,-0.0377396904,0.0029726725,0.0317980796,-0.000349191,0.0221541543,-0.0095170308,-0.0073075867,-0.0381875522,-0.0086511672,0.0218107942,0.0147047453,0.0555048138,0.0585502647,-0.0231245179,-0.0174516216,0.0423377231,0.0498916321,-0.0447263122,-0.0307829287,-0.0008318071,0.0051168036,-0.0233185906,-0.0070836563,-0.0822868571,0.0372022577,-0.0836602971,0.0236320924,-0.0181084834,0.0314397886,0.0158243962,-0.0162871853,-0.0020191034,-0.0060311849,0.0022635604,-0.0306634996,-0.0641335919,-0.015122748,-0.0245725997,0.0000277434,-0.0503992066,-0.0233484488,-0.0595355555,-0.0233335197,-0.0357093923,0.0122340498,-0.034873385,0.0491153412,0.0330222286,0.0137866316,0.0046689431,-0.0611478537,0.0336193778,0.0225422997,0.010218678,-0.0050944104,-0.0206165016,0.0367245413,0.0688510537,-0.0321563669,0.0439798757,0.0176158361,-0.010151499,-0.0001183797,-0.0573858283,-0.0033085677,0.0248263869,0.0220795106,0.0259758942,0.009479709,-0.0305440705,-0.0142718134,-0.0298722796,0.0088527044,-0.0136821307,0.0157796107,-0.0293796323,0.0465774685,0.0203776415,0.0244680997,-0.0281853396,-0.0194968507,0.0076210885,-0.0387846977,0.0354108177,-0.0143016707,-0.0001842758,0.0012941295,-0.0209150743,0.0122116562,-0.0325146541,-0.040844854,0.0242441688,-0.0024072488,0.0215122215,0.0551465265,0.0130028762,0.0224228706,-0.0003400939,0.0231991615,0.0324549414,0.0109053971,-0.0351122431,-0.0684927627,0.0316487923,0.0552062429,0.0406657122,-0.0178099088,0.0256026778,-0.0566095375,0.0033832111,-0.0038889199,-0.0591474101,-0.0092109926,-0.0459803194,0.034664385,0.0064491876,-0.0455921739,-0.0381278358,-0.0615658574,-0.0364856832,0.0150331762,-0.0181681979,-0.0367543995,-0.0184816997,0.0509067811,0.0026890277,0.0232290197,-0.0089273481,-0.0584606938,-0.0304246396,0.0113233998,-0.0038515981,0.0021627918,-0.0094722444,0.0282749105,-0.0351719595,-0.0307530705,0.0457414612,-0.0282450542,-0.0015703101,0.0130178053,-0.0095244944,-0.0091438135,-0.0266924724,0.0070799245,-0.0123833362,-0.0280659106,-0.0062140613,0.0152123198,-0.0233783051,0.0141150625,-0.0366051123,-0.0244680997,-0.0226318724,-0.0167798307,0.005728879,-0.0267671142,0.0140404189,0.0052175722,0.013935918,0.0200641397,-0.038157694,0.0032357904,-0.029006416,-0.0209150743,0.020765787,0.0027785997,0.0261401106,-0.0011784323,-0.0067850831,0.0270358305,0.0317383632,-0.0436514467,-0.0167649016,-0.0274836905,-0.0372918323,-0.0703439191,0.0080017699,-0.0198999234,-0.0156601798,-0.0134656653,0.0084048444,0.0262595396,0.0108008962,-0.0460400358,0.0040382068,-0.0365752541,0.0331416577,-0.0332610868,-0.0073299794,-0.0234380197,0.0296782069,-0.0378591195,0.0544896647,-0.0244083833,-0.0095095662,-0.0747628063,-0.0408149995,0.0095767453,0.0445173085,0.018063698,-0.0241098106,0.0161826834,0.0285286978,0.0487869121,-0.0203925706,0.0166604016,-0.0448457412,0.0057251472,-0.0458011776,0.0600431338,0.0102933217,0.0042360118,-0.0001932564,0.0093005644,0.0044114236,0.0206165016,0.0264834706,-0.0207508579,-0.0080092344,0.0338880941,-0.0560422465,0.0136522735,0.0217958651,-0.0533849448,0.0220944397,-0.0051317322,0.017272478,-0.0171530489,-0.068313621,0.0072851935,0.0381875522,-0.0510560684,0.0048518195,0.0183025561,0.0055460031,0.016137898,0.0305739269,0.0035884804,-0.0014359519,0.0515337884,-0.0174217634,0.0035866143,-0.0677761883,-0.0279763378,0.0721950755,-0.0835408643,-0.0048182299,0.0021571936,0.0161677562,0.0524892211,0.0063745445,0.0341269523,0.0681941882,-0.0099574262,0.0410239995,-0.0191534907,-0.0462788939,0.0237515233,0.0179591961,0.0184966289,-0.0001487036,0.0235275924,0.0010571368,-0.0489959121,0.0174814779,-0.0351719595,0.0515337884,-0.0166753307,-0.0085839881,0.005478824,-0.024497956,0.0160931125,0.0148689607,-0.0008154789,-0.013211878,0.0150033189,0.0374411196,-0.0559825338,-0.0081361281,0.0239605233,-0.0031816738,-0.0582815483,-0.0336193778,-0.0874223262,-0.0454727449,-0.0042434759,0.0181681979,0.0401282795,-0.0508470684,0.0627601519,0.0022934177,0.0079047335,0.0251249615,-0.0154959653,-0.0093154935,-0.0537133738,-0.0341568105,-0.004799569,-0.0148689607,0.0018978078,0.016257327,-0.0059042913,-0.0414718613,-0.0342165232,0.0255429633,-0.0053407336,-0.0064715808,0.0296334215,-0.0427855849,-0.0052660904,0.016257327,-0.0231543761,0.0470253266,-0.0020862825,-0.0144434934,0.0127864107,0.0115921162,-0.0093677435,-0.0255280342,-0.0429945849,-0.0499214903,-0.0200342815,0.013316378,-0.0274986196,0.0361273959,0.0413524322,-0.0140926698,0.0198849961,-0.0244830269,-0.0312606469,-0.0295289196,0.0176009089,0.004661479,-0.0443381667,0.0118906898,0.0015955021,-0.0674178973,0.0275732633,0.0239903815,-0.0151152834,-0.0204074997,0.0196013507,0.0246621724,-0.0010487394,0.0201238543,0.0270059742,0.0104799299,-0.0185414143,0.0006288704,-0.0181084834,0.0120325126,-0.0491451994,0.0201686397,0.0067029754,0.0498916321,0.0073001222,0.0029782706,0.0741059408,-0.0007594964,0.0146524953,-0.0007907533,0.0269910451,-0.0010226143,0.008740739,-0.0032395225,0.0409642868,-0.0190042034,0.0483390503,0.0061804717,0.0211240761,0.0290362742,0.0022598282,-0.0042957263,-0.0405164249,-0.003467185,-0.0295438487,0.0131297698,0.0156452525,0.0121220844,0.0110920062,-0.0747628063,-0.0175859798,-0.0146674234,0.0446665958,-0.0103306435,-0.0090019908,0.0314099342,0.0459803194,-0.0381875522,0.0264685415,0.0130999126,-0.0526385084,-0.0392922722,0.0334103741,0.0196162798,-0.0193475634,-0.0016514848,0.0128237326,0.0104724653,-0.0014014294,-0.0031518165,-0.0066208676,0.0011065881,0.0593265556,0.0325146541,-0.0139657762,0.027662836,-0.0140852053,0.0175710507,0.0254832488,-0.0047958368,-0.0081809144,0.024378527,-0.018511558,0.015070498,-0.0087929899,0.0072702649,0.006236454,0.0121220844,0.0364259668,0.0102933217,0.0498916321,-0.0113831153,0.0075315167,-0.0183771998,-0.0246770997,-0.0246770997,-0.0026834293,0.0230946615,-0.008016699,0.0097334962,-0.0206911433,-0.0201089252,-0.0007870211,-0.0031294236,-0.0041016536,0.0020657554,0.0326042287,-0.0246173851,-0.0240650252,0.0022411675,0.0204373561,0.0527579375,-0.0311710741,-0.0212435052,-0.0202432834,0.0131894844,0.0262893979,0.007251604,0.0189594179,0.0267223287,-0.0050682854,0.0003368282,0.0327833705,0.0124803726,0.0143987071,-0.0096588526,-0.0174814779,0.0252443906,0.0022766229,0.0231991615,0.0040344745,-0.0150033189,-0.0121594062,0.0108830044,0.0063894731,0.0043927627,0.0042807977,-0.0347240977,0.0085541308,0.0086213099,-0.0326639414,0.0212733615,-0.0006396004,-0.0191684198,-0.054847952,-0.012816268,-0.001724262,0.0240948815,0.0112562208,0.0039001165,-0.0192729197,-0.0125400871,-0.0007669607,-0.0009834265,-0.0227214433,0.0105769662,0.010323179,-0.0290213451,0.0112412926,0.0148913534,0.0265879706,0.0030697088,-0.0181234125,0.0349629559,0.0161976125,-0.0276926924,-0.0493541993,0.0280360524,-0.008412309,-0.0112711499,0.0444277376,-0.013831418,-0.0158542525,-0.014727138,-0.0255728215,-0.0004756183,0.0186160579,-0.0197207797,0.0035847481,-0.0329326577,0.0072478717,-0.0231842324,0.0465177521,-0.0525787957,0.0095468881,0.0000048329,0.0025042852,-0.0001562846,0.0156452525,0.0325743705,-0.0070911208,0.0127043026,0.0339179486,-0.0201238543,-0.0103605008,0.0286331996,0.0278419796,0.0250353888,-0.0018063697,0.0179890543,-0.0240650252,0.0317980796,0.0334402323,-0.0088750971,0.0145405298,-0.0024315079,-0.0068112081,-0.0359183922,0.0083227362,0.0144136362,-0.0026330452,0.0257967506,0.0024072488,0.0082182353,-0.0006456652,0.0150033189,-0.0221690834,0.0045271209,0.0043890304,-0.0080241626,-0.0297229923,-0.0015973683,-0.0932743624,0.0033458893,-0.0044300845,-0.0472641848,0.0099648908,-0.0224825852,-0.0238858797,-0.0154511789,0.00221131,0.0334103741,-0.008412309,-0.0404567085,-0.010494859,-0.0322757959,0.0093154935,0.0025994556,-0.0290213451,0.0061879358,0.0063297586,-0.0008901223,-0.0140777407,-0.0056803608,0.0039971527,-0.0289467014,-0.0349331014,0.0078674117,-0.0281256251,0.0044599418,0.0207807161,-0.012592338,-0.0058109867,-0.0052474295,-0.0097932108,0.0008481354,-0.0161080398,-0.0175710507,0.008292879,-0.0135328444,-0.0348136723,-0.018735487,-0.0171381198,-0.0638947338,-0.0128834471,0.0259012524,-0.0024594993,0.0187802743,-0.0293348469,-0.0179293398,0.0082630217,0.0019257991,0.0460698903,-0.0027282154,0.0158393253,-0.0309620723,0.0008042824,0.0022616943,-0.0136895953,0.0101216417,0.0216764361,0.0270806178,0.0244382415,0.0215122215,0.0247666724,-0.0270806178,0.0242292397,0.0177352671,0.0476224758,0.0345150977,0.0108008962,-0.0083302008,-0.0417704321,0.0152794989,-0.0206762161,0.0003895451,0.0046689431,0.0085018808,-0.0056094499,0.0050906781,-0.0259609669,0.0115921162,-0.0198402088,0.0416808613,-0.0032843086,0.0008327402,-0.000303472,-0.0121071553,-0.0026293129,0.0356198177,-0.0143837789,-0.0316487923,-0.0229603034,-0.0299319942,0.0176904798,-0.0006559287,-0.0197506379,-0.0037956156,0.0149286753,-0.0069381017,-0.0395908467,-0.0155855371,0.0173023343,-0.0010506056,-0.0306037851,-0.0005910823,0.0029092256,0.013316378,0.0439500213,-0.0074531413,-0.038366694,-0.0137791671,0.0212435052,-0.010718789,-0.0056616999,-0.0145330653,-0.0123609435,0.0200044252,0.0274836905,0.0191684198,-0.0277076215,-0.0142344916,-0.0353212468,0.0087482035,0.0104575371,-0.0173919071,-0.0119802617,0.0188399889,-0.0107337171,-0.0062215254,-0.0256773215,0.0084272372,-0.0302753542,0.0297229923,-0.0274687633,0.0120623698,0.0149286753,-0.008912419,-0.0082182353,-0.0039934209,0.0063446872,-0.0144434934,0.0072702649,-0.046607323,-0.0069343699,-0.0162871853,0.0124355862,0.0061842036,-0.0337089486,0.0326639414,0.0024725618,-0.0073822299,-0.0334999487,-0.0217958651,0.0105545735,0.0082182353,-0.0632975847,-0.0046801399,0.0013361165,0.0051653218,-0.0246173851,-0.0136448089,0.0113010071,0.0158094671,-0.0484584793,0.0195416361,0.0269313306,0.0015199258,-0.0024427045,-0.0056393072,-0.0011924279,0.0115025444,-0.0330520868,-0.0142568853,0.0127789462,0.0092259217,0.0292303469,-0.0017718471,0.0193774197,-0.029902136,-0.0058371122,-0.0093528153,-0.0217212234,0.0412927158,-0.0127714816,-0.0295139905,-0.0098603899,-0.0015740423,-0.0307530705,-0.0176755525,0.0357392505,-0.004885409,-0.0073001222,-0.0405761413,0.0115697235,0.0104500726,-0.0079420554,-0.0091811353,0.0166753307,0.0119802617,0.0171381198,0.0175262652,-0.0080017699,-0.0199148525,-0.0056878254,0.0016897394,0.0147644598,-0.0263938978,-0.0137045244,0.0155258225,0.0082331644,0.0102634644,-0.0013193217,0.0230050888,0.0166753307,0.0198849961,0.0146077089,-0.0119280117,0.0147420671,-0.016033398,0.0314099342,-0.0392027013,-0.0458907485,0.0034074702,0.0059826667,-0.0146823525,0.0196759943,0.0203328561,0.0122415135,-0.0066544572,0.007535249,0.033081945,0.0101738926,0.0575948283,0.0115025444,-0.0295139905,0.0207210016,-0.0042994586,0.0007268399,0.0065051704,0.0067328326,0.0090617063,-0.0244531706,-0.0052884831,0.0021012111,0.0078300899,-0.0118160462,0.0047062649,-0.0213778634,0.0682539046,0.0143987071,-0.0115100089,0.000719842,0.0250353888,-0.0236918069,0.0174366925,-0.053056512,-0.0147196734,-0.0542209484,-0.002498687,0.0253638197,0.0205269288,-0.0272000469,0.0233036615,0.0122937644,-0.0225273706,-0.0318876505,-0.003427997,0.0157198943,-0.0166006871,-0.0271701887,-0.0238709524,-0.0130103407,-0.0286331996,0.0048518195,0.0041165822,0.004180029,0.014450958,0.031708505,0.0270358305,-0.0516233593,0.0130327335,0.0021553275,0.0223332979,0.0322757959,0.0193923488,-0.0263043251,-0.0087855253,-0.0167350452,0.0009656987,0.0361273959,0.0032469868,0.0110397553,0.0026666347,-0.0154213216,-0.0106068235,-0.0216167215,0.0097185681,-0.0147868525,0.0178546961,-0.0436813049,0.0007566972,0.0056952895,-0.0119802617,-0.0152869634,0.0051503931,-0.0283794124,0.0011709679,-0.0528475121,-0.0042136186,0.0020079068,-0.0332312323,-0.0233484488,-0.0269910451,0.0064529199,0.0049563204,0.0219302233,0.0509366393,-0.0045607104,-0.0024594993,-0.0098678544,-0.014107598,-0.0296184923,-0.0149137471,-0.0246173851,0.0168096889,-0.0037023115,-0.000321433,-0.0294094905,0.0172127634,-0.0123161571,0.042427294,0.0321265087,-0.0144957434,0.029902136,0.0010590029,0.0064529199,0.0073747658,-0.003776955,-0.0162722562,-0.0200939961,-0.0202432834,-0.0013865008,-0.0312905051,-0.0093304217,0.0054265736,0.0179741252,0.0351421013,0.0144808153,0.0054526986,-0.0161229689,0.0112412926,0.0314397886,-0.0240202378,0.035888534,0.0112786144,0.0214972924,0.0274836905,-0.002498687,0.0145853162,-0.0480703339,0.00159177,0.0148689607,-0.0117040817,-0.0281853396,-0.0336790904,0.0012969286,-0.029797636,0.0212435052,-0.0000504426,-0.0336193778,-0.0063297586,-0.0291258451,0.0127490889,-0.0060946317,0.0007781572,-0.0554451011,0.0120175835,-0.014107598,-0.0203627124,-0.0369633995,0.0119429398,0.0113233998,0.0079271263,-0.0123758717,0.0144211007,-0.0146674234,0.0029129577,0.0091736708,-0.0272896178,-0.0135029871,-0.0032227277,-0.0349032432,-0.0005840844,0.0145479944,-0.0144584216,-0.000260552,0.0113084717,0.0252294615,0.0028793681,0.0233932342,-0.0192430634,0.0296782069,0.0246472433,0.0145629225,0.0040344745,0.0166604016,-0.0438604467,-0.0278419796,0.0241396688,0.0121370135,0.0253339615,0.0156303234,0.0505484939,-0.0074195517,-0.0069567626,0.0096737817,-0.010494859,-0.0182279125,-0.0178845525,0.0163916852,0.0288571287,0.0283794124,0.0107113244,-0.0158243962,-0.0248114578,-0.0168395452,-0.0237365942,-0.0378889777,-0.0011289811,0.0003505906,0.0094423871,0.0275135487,0.0249308869,-0.0128983753,0.024497956,-0.003401872,0.0048555518,-0.0027953945,0.0055646636,-0.0075165881,-0.0173471216,-0.0088527044,0.0164215434,0.026871616,0.0136895953,-0.0137791671,-0.0010636682,0.0124803726,0.0151824625,0.0780471116,0.0090915635,-0.0030043959,0.0063596158,0.0052884831,-0.0309919305,-0.020317927,0.0031499504,0.0144285643,-0.00090785,-0.011353258,-0.0001322587,-0.0137866316,-0.0046316213,0.0000634469,-0.0118608326,-0.0366648249,0.005281019,-0.0000502385,-0.0347240977,0.0000341435,-0.002386722,-0.0066992431,-0.0440097339,-0.0183473416,0.007845019,-0.010838218,0.0086213099,-0.0045569781,-0.0022075779,0.0112711499,0.0051802504,-0.0174366925,0.0012054906,0.0338880941,-0.001635623,0.0212584343,-0.0101067135,0.0250055306,0.0207508579,-0.0180189107,-0.0330222286,0.0122265853,-0.0148391034,0.002804725,-0.0023941863,-0.0049600522,-0.0317383632,-0.0024874904,-0.0098603899,-0.0378889777,-0.0036369986,-0.0200641397,0.0060797031,-0.038038265,-0.0057064863,0.0088825617,0.029902136,0.0194968507,0.0263789687,-0.0143763144,-0.0006843865,-0.0243337415,-0.0130476626,-0.0312606469,-0.0160632543,0.0259609669,-0.0251100324,0.0170933325,-0.0034429256,-0.021004647,0.020661287,0.0311412159,0.0279166233,0.016481258,0.028558556,0.0304992832,0.0382771231,0.0087929899,-0.0495034866,-0.0400685631,0.0163767561,-0.0176606234,0.0058632372,-0.0321265087,-0.0143389925,0.0072068181,0.0067291004,-0.0084421663,0.0269611869,-0.0071433713,-0.0249159597,0.0065014381,-0.0018940757,-0.0024277759,0.0130327335,-0.0379486941,-0.0309919305,-0.0128013389,-0.010270929,0.0273791905,0.0049525881,-0.0580725484,-0.0352018178,-0.0160035398,-0.0545195229,-0.0114428299,-0.013659738,-0.0413822867,0.0236918069,-0.015913967,0.0147196734,0.0048816768,0.0204970706,-0.0144136362,0.0271254033,0.0283495542,-0.0286481287,-0.0045532458,-0.0119354762,0.0236022361,-0.0327535123,-0.0135403089,-0.0056990217,-0.0007142438,-0.0061879358,0.0208255015,-0.0249756742,-0.0099126408,0.035560105,-0.013092448,0.006098364,0.0106740026,-0.0093602799,-0.0153914643,-0.0023885882,-0.017376978,-0.0105321808,-0.0294692051,0.0326042287,-0.017048547,0.0130252689,-0.0180487689,0.0017578516,0.0041427072,0.0002743144,0.003401872,0.0096140672,-0.0221541543,-0.0186608434,-0.0306634996,-0.0024594993,-0.0013295851,0.0374411196,0.0075949635,-0.0470551848,0.0296184923,-0.0067776185,-0.0046465504,0.0016505517,-0.0051914467,-0.0155556798,-0.0162274707,0.0219600815,0.0365752541,-0.0054974845,0.0133313071,-0.0110024335,0.0113831153,0.0043479768,0.0198103525,-0.0282002669,-0.0349032432,0.0114726871,0.0259161796,-0.0316487923,-0.012248978,0.0216764361,0.0151600698,-0.0183025561,0.0160632543,-0.0014574119,0.0020788179,0.0139209898,-0.0484286211,0.0030547802,-0.028454056,-0.0026946259,0.010494859,-0.0145256007,-0.0071023172,-0.030364925,-0.0084944163,0.020422427,0.042218294,0.0023904541,0.0037209722,-0.0367842577,-0.0274687633,0.023930667,-0.015913967,-0.0460400358,-0.0155556798,-0.0235126633,0.0072030858,-0.0084944163,-0.0234977342,0.0097260317,0.029797636,0.0248114578,-0.0221840125,0.0081734499,0.0192579906,0.0123012289,-0.0038124104,-0.0144061716,-0.0295438487,0.0193027779,0.0329326577,-0.0119951908,0.0045868354,-0.0149137471,0.0338283777,-0.0208255015,-0.0035287656,0.0035586229,0.0426661558,-0.0229304451,-0.0314397886,-0.0209897179,0.019078847,-0.0179293398,0.0104052871,0.0213032197,-0.0270059742,-0.010718789,0.0014984658,-0.0412031449,0.0241396688,-0.0078823408,-0.0149212107,-0.0085541308,0.0261401106,-0.003491444,-0.0014088937,-0.0240948815,-0.000685786,0.0010356768,-0.0048816768,0.0256176069,-0.0375306904,0.0160035398,-0.0005225036,-0.0204821434,-0.0200044252,0.022348227,-0.0072478717,-0.0172575489,0.0010785968,-0.0098305326,0.0085242735,-0.0067477613,0.0171530489,-0.0330222286,-0.0326937996,0.0058109867,0.0116966171,-0.0041091177,-0.0046502822,-0.0011224498,-0.0333805196,-0.0188549161,-0.0034578545,0.0129506262,0.0034074702,0.0155855371,-0.0144658862,-0.0137418453,-0.0110173626,-0.0289168432,0.0006391339,0.0109352544,-0.0019369957,0.0049451236,0.0461594649,0.0452637449,-0.015122748,0.0352913886,0.0235275924,0.0131223053,-0.0171530489,0.0377695486,-0.0022934177,0.0176456943,0.0063596158,0.0053817877,-0.0327833705,0.0150406407,0.0041874936,-0.0210195743,-0.0170933325,-0.0067962795,-0.0180935543,-0.0320070796,0.0312009323,-0.0008789258,0.0057624686,0.0260356106,-0.0089870626,-0.0143539216,0.012420658,-0.0121817989,0.0084944163,0.0078151617,-0.0099574262,0.0267223287,-0.0021254702,-0.024945816,-0.0119578689,-0.0068261367,0.0224676561,0.021452507,0.0494736284,-0.0140628126,0.0160931125,0.0287824869,-0.0081659853,-0.0530266538,0.0070463349,0.0122041916,0.0119280117,-0.012816268,-0.0015656449,0.0046726754,0.0260206815,-0.0186907016,0.0021441311,0.0417704321,-0.010218678,0.0045121922,0.0216167215,0.0276329778,0.0020265677,0.0245128851,0.0036407306,0.0185862016,0.0222735833,-0.0043629054,-0.0129580898,0.0060759708,0.0224228706,-0.0047025327,-0.0015591135,-0.0024221775,-0.0314696468,-0.0036929811,0.041322574,-0.0114726871,-0.0003809145,0.0294841342,-0.005616914,-0.0099424981,-0.0119578689,0.0093602799,-0.0262595396,0.0167350452,-0.0060647745,-0.0096066026,0.012472908,0.010046998,-0.0070164776,0.0004462274,0.021004647,-0.0329326577,-0.0495333448,-0.0397998467,0.0216913652,0.0209598597,-0.0335895196,-0.0100768562,0.0025322766,-0.0079644481,0.0266924724,0.0080988063,0.0018287627,0.0056878254,-0.0274389051,-0.0019892459,-0.0099051762],"13":[-0.008399304,0.0001601141,0.0607718788,0.0128148086,0.0406256691,0.0243269298,0.0033476036,0.0210853573,-0.0458667129,0.003254825,0.0156625435,-0.0439278297,0.0073314034,-0.0434128121,0.0440490097,0.0461393669,-0.0076419278,-0.0363540649,-0.0388382599,0.0323551185,0.0122694969,0.0361722969,0.0329913162,-0.0255084354,-0.0199038517,-0.0152005441,-0.0463211387,0.0751317367,0.0366873108,-0.0496838912,-0.0117014647,-0.0285379421,-0.0724051818,0.0486841537,0.0190252941,0.0186314583,0.0302799065,-0.0127012022,0.0209187362,0.0064717811,-0.0520772003,-0.0009405668,0.0110501209,0.0238573551,-0.0134661524,-0.0498353653,-0.0458061248,0.0009358332,0.0161927063,0.0573182441,-0.0515015945,-0.023993684,-0.0184345413,-0.0165865421,0.0276896805,-0.0255841743,-0.0068731904,0.0352937393,-0.0336881019,-0.0188132282,0.0289923679,-0.0346878394,0.0212216862,0.0415345207,-0.038505014,0.0115878582,-0.0358693451,0.026432436,-0.0349907875,0.0264778789,0.0695574433,0.0398985855,-0.0115802847,-0.0035236937,0.0393835716,-0.0667703003,-0.0099746464,0.045897007,-0.0139281517,-0.0293862037,0.0136176273,-0.0302647594,0.0073730592,-0.0033362429,-0.0162230022,-0.0295073837,0.0048131268,-0.0305677112,-0.0161927063,0.016813755,-0.0036941033,0.0469876304,-0.0107850395,-0.0033949397,0.0428069122,0.0275533516,0.021373162,0.0205400474,0.012042284,-0.004877504,-0.0351422653,-0.0254175514,0.0131026115,-0.0149884783,0.010822908,0.0072253705,0.018995,-0.0157685764,-0.004718455,-0.0002863829,-0.1147576645,-0.0039497176,0.0017429123,0.006089306,-0.0375658683,-0.0122467764,-0.0255993214,-0.0134585779,-0.0069830101,-0.0483206138,0.004237521,0.0232211594,0.0073276162,0.0128981192,0.0014465889,-0.0316583328,-0.021706406,-0.0461696647,-0.0222971607,0.0103154657,0.0452002212,-0.0368084908,0.0413224548,-0.0260386001,-0.0340213478,-0.0203431286,-0.0487750396,-0.0262355171,-0.0322642326,-0.0278563034,0.0110349739,-0.0190404411,0.0565002784,-0.014420446,-0.0012089621,0.0022929569,-0.0199795887,0.047987368,-0.019191917,0.0009045914,-0.0122013334,0.0140872002,-0.036232885,-0.0195857529,0.0559549667,0.0152232647,0.0456546471,0.0540463775,-0.0079600252,-0.0241148639,0.0490476936,0.0304465294,-0.0040633241,-0.0067709447,0.0057446999,0.0139584467,-0.0051501594,-0.0438975357,-0.0898551345,0.0152384127,-0.0543796234,0.0066649122,-0.0213428661,0.0398379974,0.0484720878,-0.0060325027,0.0156171005,-0.0452608131,0.0339607559,-0.0462908447,-0.0874315277,-0.0276290905,-0.0245844368,0.0088688778,-0.0352634452,0.0014058799,-0.0297951866,0.0270534847,-0.0053735855,0.0152762812,-0.0297345966,0.0717386901,0.0512895286,0.014390151,0.0113909403,-0.0461696647,0.0450790413,0.0190404411,-0.0256144684,0.0081948126,0.0641043335,0.033445742,0.0774341598,0.0033419232,0.0216609649,0.0064452728,0.0003185714,0.0083008446,-0.0609536506,-0.0401106514,0.0134737259,0.0211308002,0.0261294842,0.029083252,-0.0403227173,0.0259477142,-0.0566214584,-0.0249934196,0.0207672603,-0.0019010147,0.0008634091,0.0785853714,0.0148142818,-0.0012411505,-0.0346575417,0.0171167068,0.0022569816,-0.0387776718,0.0410800949,-0.0183285084,0.0236149952,-0.0463514328,-0.024145158,0.0037319721,-0.0105578266,-0.0028250138,0.0473208763,-0.0184345413,0.0091415327,0.0074450099,-0.0147839868,0.0268868618,-0.0078388453,0.0620139763,0.0304465294,0.013216218,-0.0373235084,-0.0740411133,0.0157231335,0.0351725593,0.0441398956,-0.0206309315,0.0123906778,-0.0230848324,-0.0199492928,-0.0352634452,-0.0412315689,0.0343242958,0.0210247673,0.0261597801,0.0036657017,-0.0257659443,-0.0005599852,-0.0209187362,-0.0562579185,-0.0125194313,-0.001578183,-0.0493809395,-0.0125345793,-0.0166319851,0.023948241,0.0317189209,0.0080054682,-0.0759194046,-0.0390503258,-0.0006683847,0.0086492384,-0.013216218,-0.0078918617,-0.024084568,-0.031022137,0.0014494291,0.0417768806,-0.0289317779,-0.0001874507,0.0019521376,-0.0009453004,0.0282955822,-0.0172530338,-0.0067141415,0.0053773723,-0.0197069328,0.0300829895,-0.0376264565,-0.013276808,-0.0038929146,0.0108153345,-0.004207226,-0.0180861484,-0.016662281,0.021751849,-0.0088310083,0.0149809048,-0.0281289592,0.028643975,0.0411103889,0.0044268649,-0.0104669416,-0.0012430439,0.0052334708,0.0441398956,-0.0347484276,0.0102700237,0.0128072342,-0.0126709063,-0.000090471,0.0572273582,0.0276745334,-0.0194191299,-0.0266142059,-0.0480479561,-0.0999130905,0.0088764513,-0.0088082869,-0.011905957,-0.0003848419,0.0248570926,0.0314462669,-0.0035445215,-0.0294467937,0.0170712639,-0.0430492721,0.0281895492,-0.0076608621,-0.0175408367,-0.0220548008,0.0089294678,-0.0279320404,0.0133298244,0.016859198,-0.0172227379,-0.0613171905,-0.071678102,-0.0099140564,0.0435642898,0.0050517004,-0.0265990589,-0.013276808,0.0041655703,0.0266293529,-0.0331730843,-0.0142008066,-0.006532371,-0.0138069717,-0.0158291664,0.019222213,0.0109365145,-0.0227061436,0.0005869667,-0.0068807644,-0.0509562828,0.0183739513,0.0398682915,-0.0046048486,-0.0065285843,0.0425342582,-0.0563790984,-0.0026318829,0.0023497602,-0.0254478455,0.0039800126,-0.0314159729,-0.0228424706,-0.0284622032,-0.0514410026,0.0162381493,0.0516530685,0.0073806327,-0.0128148086,0.0587118156,0.0221608318,0.0158746094,0.0292650238,-0.0207521133,0.0179043766,0.0533798859,-0.0020808915,0.0017495394,-0.0443519615,-0.0229485035,0.0350210853,-0.0071344855,-0.00041064,-0.0128299557,-0.0203128345,0.0194494259,0.0210247673,0.0458667129,0.0588329956,-0.0306434482,0.0423524864,-0.0017590066,-0.0252509285,-0.0100882528,0.0058469456,0.0013490766,0.0044874549,0.0071155508,-0.0243420769,-0.0332033783,-0.0173136238,-0.0551067032,0.019373687,-0.0163290352,0.0532889999,-0.0353543274,-0.003525587,0.0584694557,0.0210853573,0.0267959759,-0.0356269851,-0.0056689624,-0.0012629251,-0.0226607006,-0.0226001106,0.0427463241,0.055439949,-0.0421404205,-0.0416859947,-0.0671338439,-0.028825745,0.0131177586,0.0241603069,0.0199644417,-0.043261338,-0.0010006835,0.0078009767,0.0049191597,0.0140493317,-0.0166168381,0.023887651,-0.0087779919,0.0044950289,0.0301738754,-0.0157079864,-0.0170561168,-0.0230848324,-0.0196614899,-0.0114363832,-0.009573237,0.0327489525,-0.00164256,-0.0164047722,0.031234201,-0.0130268736,-0.0295073837,0.0085583534,-0.0137312338,0.0474117622,-0.041261863,-0.0476844162,0.0046162088,-0.0330519043,-0.033324562,-0.0318703987,-0.0465937927,0.0094217621,0.0028893908,0.0340819359,-0.0266293529,0.0451396331,0.0063165189,0.003078735,-0.0174650997,-0.0458061248,-0.0148142818,0.000129464,-0.0115878582,0.021706406,0.0089749098,0.0349907875,-0.0030124646,-0.0857350081,0.0631348938,0.0028931778,-0.0091566807,-0.0000452947,0.0346272476,-0.0282198433,0.0237361751,-0.0344151817,-0.0003299321,0.0512592345,-0.0193433929,-0.0283258762,0.0254326984,-0.0218275879,-0.0505927429,-0.0008908639,-0.001009204,0.0538949035,-0.0065550925,0.0134282829,0.0625289902,-0.0179952625,0.0140038887,-0.0280532204,0.0094217621,-0.0086189434,-0.0025826534,-0.0164653622,0.0410800949,0.0204188675,0.031476561,-0.0257962383,0.0312947929,0.0167531651,0.0101564173,-0.0125270048,-0.0116635961,-0.031082727,-0.0203734245,-0.0237210281,0.0251751915,0.0093081556,0.000633356,-0.0517136604,-0.016859198,-0.03374869,0.0085356319,0.0193282459,-0.019267654,0.0102548758,0.0098610399,-0.0577726699,0.0356269851,0.0175559837,-0.0543493293,-0.0328095444,0.0067444365,0.0085432054,0.0434431098,0.003586177,0.0207672603,0.0000585192,0.0063278796,-0.0214791931,-0.0277805645,-0.0120044155,0.0644678771,0.0340213478,-0.0126103163,0.0465332046,-0.004229947,0.0125042843,0.0135494629,0.0123528084,0.0010603269,0.0212519802,-0.0117241861,0.004131488,-0.0058772406,0.0228727665,0.0009230524,0.0096565485,0.0299466625,-0.0012061219,-0.0009012779,-0.0309918411,-0.0042147995,-0.0132995294,-0.0314159729,-0.0009486139,0.003078735,0.0197978187,0.002709514,-0.0176923126,-0.0052675526,-0.0194645729,-0.0036675951,-0.0292650238,-0.0259022713,-0.0283864662,0.0315068588,-0.0508351028,-0.0055591427,0.0028647762,0.0293104649,0.0345969535,0.0009713352,-0.0059946338,-0.0137842502,-0.0021812438,0.0386867858,0.0247207657,-0.0001366828,0.0032037022,0.0030673742,-0.0206763744,0.0445943214,0.0099064829,-0.0018555721,-0.0221456848,-0.0051312251,-0.0155262155,0.0055061262,0.0340213478,0.0136554958,0.0192070641,-0.0343545936,0.0162078552,-0.0071572065,0.0116030062,-0.0208884403,-0.0177226067,0.0080054682,0.0043094717,-0.0107017281,0.0206763744,0.0042526685,-0.0202522445,-0.0248570926,0.0055364212,-0.0233574882,-0.0043132585,0.0113227768,-0.0217972919,-0.0412315689,-0.0002403487,0.0064187646,0.003319202,-0.0004837741,0.0411103889,-0.0010887285,-0.0112546133,0.0234180782,0.0463514328,0.0421101265,-0.0019322565,-0.0101867123,0.0257810913,0.0027133008,-0.0127617922,-0.009709565,0.0126936277,-0.0255235843,-0.0235392582,0.0418374725,-0.0020146212,-0.0071912888,-0.0194039829,-0.0427160263,0.035717871,0.0107017281,-0.0076495013,0.0030730546,-0.0537434258,-0.0029367269,0.0005708724,0.0205703415,-0.0468058586,0.0084826155,-0.0108153345,0.0097019915,-0.016783461,0.0332942642,0.0519863144,0.0098761879,0.0336881019,0.0366873108,-0.013291955,0.03835354,-0.0005296901,0.0269928947,0.0115121212,0.0013519168,0.0010394991,-0.0118983826,0.018995,0.0558640808,-0.0192070641,0.006089306,-0.00973986,-0.0057257656,0.0048509957,0.0049418807,-0.0000869799,0.0238422081,0.0230848324,0.0463817306,0.0202219486,-0.0123073664,0.0193888359,-0.035717871,-0.012072579,-0.0416254066,-0.0028799237,0.0207369644,-0.01326166,-0.0548340492,-0.0306283012,0.0051009296,-0.0524710342,0.0069565019,-0.0271746647,0.0113682197,-0.0006309892,-0.0022153258,0.0488659218,0.0093308771,-0.0545008034,-0.0177074596,-0.0226909965,0.0197675228,0.0086189434,-0.0142841181,-0.0105578266,0.0394744575,-0.0369599685,0.0085280584,-0.0551975891,-0.0038967014,-0.0318703987,-0.0307797752,0.0396562256,-0.0356269851,0.0128602507,0.0204794575,0.0064945025,-0.0323248245,0.0094293356,-0.0000052846,0.0051350119,-0.0227515865,-0.0110349739,0.0037433328,-0.0176771637,-0.0108910725,-0.0212065391,-0.0071231248,-0.0567729324,0.0176620167,-0.0014607897,-0.0179649685,0.0271746647,-0.0315068588,0.000053253,0.0465332046,0.0003315888,-0.0072443052,-0.0093157291,0.0158443134,-0.0321733467,-0.0160715263,-0.0057560606,-0.0344454758,0.0195251629,0.0218730289,0.009633827,0.0354452133,0.0054758312,0.0349604934,-0.0318098068,0.0137615288,0.0094066141,0.0340213478,0.016662281,0.0142916925,-0.0235089622,-0.0379294083,-0.0159200504,-0.0360814109,0.0096262535,0.0010536999,0.0447457954,-0.0103533352,-0.0080130417,0.0151248062,0.0270989258,-0.0024425387,0.028856039,-0.0083311405,-0.0014920315,-0.0394138657,0.0040708981,-0.002777678,-0.0043738484,-0.014450741,-0.0196008999,-0.0389291458,-0.0317189209,0.0280683693,-0.0269171558,-0.0209490303,0.0212065391,0.0089749098,0.0076911571,-0.0736169815,-0.0155716585,0.0246601738,-0.0224183407,0.0010944089,-0.0103306137,0.0118605141,0.0230090935,0.0379597023,-0.0264778789,0.0200856216,-0.0149430363,-0.0069905841,0.0230242424,-0.026311256,-0.0066876332,-0.0045669796,0.0188283771,0.0192828029,0.0251903385,-0.0188283771,0.0009410402,-0.0500777252,0.0398985855,0.000768737,-0.0373235084,-0.0165259521,0.0385353081,0.0229636524,-0.0161169693,0.0051653069,-0.0131783485,-0.0217669979,0.0243875198,-0.0226607006,0.0277805645,0.0032529314,0.0033438166,-0.0078161238,-0.0024747273,-0.0054644705,-0.0379597023,0.0418980606,-0.0099897943,0.0326580703,-0.0386867858,0.0028969646,0.0122089069,-0.0296891537,0.0087174019,0.0212671291,0.0078464188,-0.0268414188,-0.01923736,-0.0168894939,0.0229636524,-0.0652555451,-0.005487192,0.0123906778,0.0126784807,-0.0354755111,0.0005008151,0.0111485803,-0.0406559631,-0.0438369438,0.0086946804,0.0156322476,0.0220396519,-0.0052751265,0.007248092,-0.0003668542,0.0343848877,0.0110274004,-0.0040178816,0.0256750584,0.0046389303,-0.0002941934,-0.0033229887,-0.008444747,-0.0238422081,0.0175862797,-0.0111410068,-0.0376264565,0.0445337296,-0.0030313989,-0.0129359886,0.0066346172,-0.0151020847,-0.0177377556,0.0075624031,0.0180558525,0.004169357,-0.0291438419,-0.0176923126,0.0223880447,0.0266899429,-0.00264135,-0.0102397287,0.0099746464,0.0084220255,0.0293862037,0.0002799926,-0.0081720911,0.0167683121,-0.0114818262,0.0127617922,0.0037812016,-0.0181618854,-0.0099216308,0.0061650435,-0.0092702871,0.0187223442,-0.0120953005,0.00146647,0.0146931019,0.0082856975,0.0186163113,0.0049570282,0.0521074943,-0.0352028534,0.0347787216,-0.0300678425,-0.0425342582,0.0349907875,0.0074374359,0.0306888912,0.03374869,0.0077934028,0.0316583328,-0.0254478455,0.0160109363,0.0328701362,0.0198432617,0.0648314208,-0.0046502911,-0.0156473964,0.0164350681,-0.0174348038,-0.0114591047,0.0080206161,0.0035236937,0.0214791931,-0.0234938152,-0.0301435795,0.0396865234,-0.012102874,-0.0001141982,0.0065929615,-0.0185405742,0.0235392582,0.0249025356,-0.0281289592,-0.0219184719,0.0598327331,-0.0196008999,0.0203279816,-0.048138842,-0.0046616518,-0.0331730843,-0.004741176,0.0324762985,0.0273261387,0.0118302191,0.0056613884,0.0208581444,-0.0386564918,-0.0177074596,-0.0105275316,-0.0137085123,0.0193433929,-0.0050782086,-0.0155034941,-0.0037225049,-0.0093838936,0.0459575988,0.0118680876,-0.0097625814,0.0049494547,-0.0083765825,0.0235998482,-0.0393532775,0.0007658969,-0.0024671536,0.0345060676,0.0593783073,-0.0125875957,-0.0602265708,-0.0002201125,-0.0344151817,0.0392926857,0.031082727,0.0124209728,0.0365964249,0.0298406295,0.0037925623,-0.0093990406,0.0215246361,0.0087249754,-0.003190448,0.0049191597,-0.0042943242,0.0188738201,0.0147385439,-0.0105805481,-0.0105578266,0.0199795887,0.0232817493,-0.0075055999,-0.0424736664,0.0259628613,0.0035236937,0.0037793082,-0.0152459862,-0.0296588596,-0.0039913733,0.011981694,0.0306585953,0.0180407055,0.0098837614,-0.0291589908,-0.0408377349,-0.0073654852,-0.0187677871,0.0154277571,-0.0097853029,0.0403833091,0.001131331,0.0061612567,-0.0367479026,0.0047752582,0.0138069717,0.0001364461,0.026508173,-0.010928941,0.0381414741,0.0241754539,-0.005509913,-0.0062786499,-0.0081796646,0.0166471321,-0.0106411381,-0.0047525368,-0.0086416649,-0.0222062748,-0.0197826717,0.0082402546,0.0235998482,0.0215397831,0.0134737259,-0.0047146678,-0.0027000469,0.008278124,0.0346575417,-0.0016501338,0.0297800396,0.0088764513,0.0023459734,0.0327489525,0.0013149948,-0.0053849458,-0.0077176653,0.0181467384,0.0092854341,0.0100428108,-0.0147536919,-0.0118150711,0.00152422,-0.0102700237,0.0299315136,-0.0040746848,-0.0779188797,0.0310524311,-0.0080054682,-0.0154504776,-0.0070284526,0.0118074976,-0.0691939071,-0.0086113689,-0.0066724857,0.0014446954,-0.0393835716,0.0260537472,0.0060703717,0.0063771089,0.0204037186,-0.0235241093,0.0072140098,-0.0142765446,0.0035520953,-0.0157534294,-0.0091491062,-0.0008146529,-0.0266445,0.0145794954,-0.004169357,0.0122316284,-0.0046351436,0.0011218637,0.0079145832,-0.0344151817,0.0282955822,-0.0263415501,0.0081720911,0.0114439568,0.0066876332,0.0001544338,-0.0009694418,-0.0187223442,-0.0394138657,0.0372326225,-0.0075396816,0.000386972,0.040868029,0.0357481651,-0.0070701083,0.0013670643,0.0131253321,0.0261597801,0.0193433929,0.0201916546,0.0249025356,0.0155868055,0.0179952625,0.0495324135,-0.0378385223,0.0282046963,0.0007535895,-0.0092778606,-0.0180255584,0.0165108051,-0.0106032696,-0.0137766758,0.0163290352,0.0295831207,-0.0341122337,0.0058583063,0.026447583,-0.0292347278,-0.0013642242,0.0127087757,0.0182982124,-0.0050744219,-0.0148748718,0.0027114074,0.0160715263,0.0162381493,0.0230393894,0.0178286396,0.0170258209,0.0038853409,0.0694968551,0.0201310646,-0.0225546677,-0.0129587101,-0.0098686144,-0.0234786682,0.0027890385,0.0146249374,0.002472834,0.011966547,-0.0043624877,-0.0031639398,-0.0304616783,0.0130344471,0.0214791931,-0.0053963065,-0.0425948463,0.0087249754,-0.0093990406,-0.0204340145,0.0069565019,0.0092324177,0.0050024712,-0.036111705,-0.0319915786,0.0163138863,0.005290274,-0.0032680791,-0.0140341846,0.0111182854,0.0147461183,-0.0257053543,0.0095353685,0.0298103336,0.0089521883,0.0076873703,0.009709565,-0.0068050269,0.0160260834,-0.0050706347,0.0146552324,-0.0215246361,0.0090506477,-0.013110185,-0.0010167778,0.0131783485,-0.0148748718,-0.0088007133,0.0130268736,-0.0200856216,-0.0322036445,0.0230242424,0.0056348802,-0.0067482237,-0.0210853573,0.028750008,0.0350210853,0.0326277725,0.0151929697,0.0407771431,-0.0024406454,0.002679219,-0.026432436,0.0174802467,-0.0220245048,-0.0026905795,0.0140569052,-0.0101639908,0.0173590668,-0.0488962196,0.0029367269,0.0146703804,-0.0070814691,0.0198432617,0.0335669219,0.0356572792,0.0134131359,0.0221153907,0.0098231714,-0.0654373169,-0.0362025909,0.0207521133,-0.0301587265,0.0164653622,-0.0024236045,-0.0447155014,-0.0142008066,0.0077782553,-0.021706406,0.0118832355,0.0074147149,-0.0199189987,0.0161927063,0.0105199581,-0.0217821449,-0.0068163872,-0.0610445365,-0.0097550079,-0.0032794396,-0.0367781967,0.0046843728,0.0295982677,-0.0343242958,0.0166925751,-0.0025353173,-0.026326403,-0.0051274379,-0.0366267227,-0.0170864109,0.0022228996,-0.0331730843,0.0201159157,0.0175256897,0.0196008999,0.0336275101,0.0195251629,0.0113379247,-0.0175862797,-0.0272049587,0.0000855599,0.0057144049,-0.0117014647,-0.0094823521,0.0010442326,0.0046086353,0.010928941,0.0172227379,-0.0182830654,0.0038209639,-0.0209944732,-0.0029348335,0.0135646109,0.0177377556,-0.011996842,-0.0075207474,0.0106562851,-0.0246753227,-0.0256296173,-0.0020127278,0.0084371725,-0.0381111801,0.0146931019,-0.0035502017,0.0156473964,0.0036941033,-0.0152914291,0.0215852261,0.021373162,0.0122392019,-0.0173742138,-0.0179498196,0.0208884403,0.0586209297,0.001378425,-0.0298709236,-0.0329913162,0.0309615452,-0.0094066141,-0.0175256897,0.0094217621,-0.0090430742,-0.0026356697,-0.0060325027,-0.0343848877,0.0318401009,0.0040216683,0.0257205013,-0.013291955,0.0007606899,0.0175862797,0.0146628069,-0.0218578819,-0.012118022,-0.0062483549,0.0425039604,-0.0219033249,-0.0332639702,0.0206915233,-0.0052599791,-0.0085129105,0.0138751352,0.0117696291,-0.000141298,0.0195857529,0.0172378868,0.0111258589,-0.0332033783,0.0035464149,-0.0030029973,-0.0218881778,0.0005296901,-0.0237361751,-0.0215397831,0.0289317779,0.0206915233,0.0228273235,0.0051615201,-0.016738018,-0.0448972732,0.008308419,-0.0055553559,-0.0121483169,-0.0474420562,-0.0055477819,-0.0083008446,0.0164956581,-0.0171318538,0.0079827467,0.0207369644,0.0072215837,0.0048244875,-0.008247829,-0.002675432,0.0187526383,0.0012676587,-0.0230848324,-0.013170775,0.0615898483,0.0035653494,-0.065497905,0.040868029,-0.0117696291,0.0022153258,-0.0112849083,-0.0087855663,0.0111713018,0.02640214,-0.0078009767,0.0140720531,-0.0057144049,0.004260242,-0.0111258589,0.0013623307,0.0299012195,-0.0219033249,-0.0199189987,-0.0040784716,-0.0369902626,0.0237664711,-0.0354452133,-0.0280683693,-0.0186769012,0.0137539553,0.0299466625,0.0044268649,0.0132237915,0.0155262155,0.0209490303,-0.0051539461,0.0114818262,-0.0369296707,0.0082175341,-0.0032926938,-0.0248722397,-0.0279168934,0.028856039,0.0137388073,0.0051047169,-0.0031601528,-0.0226607006,0.0139887417,-0.0112773338,-0.0039232094,-0.0196160488,-0.0163744763,0.0084220255,0.0226304065,-0.0202522445,-0.0156625435,0.0525013283,-0.0171621479,0.01929795,0.0099216308,0.0117544811,0.0099064829,-0.0123603828,-0.0019445638,0.0212822761,-0.0159654934,-0.0123073664,0.002099826,0.0085659269,0.0038853409,0.0019038549,0.0213580132,-0.0038077098,-0.0114818262,-0.0013254087,0.0123528084,0.028916629,-0.0156322476,0.0285985321,0.0139205782,0.0093535986,0.021509489,0.0135343159,-0.0002470941,0.0068921251,0.0014058799,0.0081796646,-0.0015403142,-0.0002278046,0.000978909,-0.0162987392,0.0305677112,-0.0131934965,-0.0122997919,0.0293862037,-0.0138978567,-0.0176771637,-0.0021566292,-0.0015601953,0.0028666696,-0.0146325119,0.0180407055,0.0046843728,0.0309918411,0.0111258589,0.004139062,0.0309312511,0.0318401009,-0.0031525791,0.0150945112,-0.0031601528,0.0346878394,0.0060135685,0.0064452728,-0.0371114425,0.0051236511,-0.0166319851,0.0434128121,-0.0059188963,0.0258568302,-0.0237513222,0.0601356849,-0.0082099596,0.0057825688,0.0282046963,0.0187071972,-0.0042034388,-0.0187829342,0.0033551774,-0.0270080417,0.000228278,-0.0141705116,0.0514712967,0.0112849083,0.0048585692,-0.0015488347,-0.0002790459,0.0048509957,0.014420446,-0.0150566427,-0.0261446331,-0.0170864109,0.0010574867,0.0098231714,-0.008369009,-0.0156473964,0.0317189209,0.0262809601,-0.0079373047,-0.0267050918,0.0119438255,-0.0340516418,-0.0028647762,0.0270231888,-0.0035975378,-0.0013415029,-0.0124588413,0.0076570753,0.0056765359,0.0121255955,-0.0463817306,-0.0076873703,-0.0344454758,0.0237967651,0.0074412227,0.0006328826,0.0022210062,0.0050251922,0.0246904697,0.0163138863,0.0112091703,0.0305677112,-0.0015194863,-0.0157231335,0.0195857529,-0.0190858841],"14":[0.0062708021,0.0024673773,0.0674057379,0.0013001319,0.0779791847,0.0180007219,-0.0290913507,0.0099700727,-0.0271662921,0.0218364708,0.0200119764,-0.0383574851,0.0151706003,-0.0222387202,0.0320938639,0.03358794,-0.0131234312,-0.0287465639,-0.0233880095,0.0158601739,-0.0187477581,0.0157883428,0.0260170046,-0.0002051659,-0.0079085371,-0.0256578531,-0.0406273268,0.0462013744,0.0003714983,-0.0770597532,0.0280282591,-0.0435867421,-0.0386160724,0.0187764913,0.0415180251,0.0255285576,0.0331569575,0.0093451468,0.0251263063,0.0056853835,-0.03358794,0.0441326536,0.0085406452,0.01290794,-0.0090434588,0.0008264996,-0.0262037646,-0.0269938987,-0.0144163799,0.0641302615,-0.0399952196,0.0159751009,-0.0173398815,-0.0137842717,0.0290051531,-0.0345361009,-0.0137052583,0.0232012495,0.0205578879,-0.0177852307,0.0197390188,-0.0526373871,0.0297378246,0.0550796241,-0.0139853973,0.030398665,-0.0289333221,0.0272524897,-0.028143188,0.0340763852,0.0435292795,0.0029270926,0.0087776864,-0.0113420347,0.0481838956,-0.0653944835,-0.0154866548,0.0499365591,-0.0062600276,0.0015784751,0.0224542115,-0.0027708614,-0.0257584155,0.0305710584,0.0074919206,-0.0356566571,0.0087274052,-0.0102861263,-0.0125918854,-0.0078438902,-0.0264623538,0.0523213297,0.0184604377,0.0009014727,0.0390470549,0.0342487805,0.0114354147,0.0101352828,-0.0259882733,0.0232012495,0.0104082385,-0.0077792425,-0.0289045908,-0.0201700032,0.0563725717,-0.0097761303,0.0253705308,0.0205435213,-0.0010999044,0.0270369984,-0.1024015546,0.0095750047,-0.056286376,0.0063462239,-0.0158458073,-0.0007196518,-0.0351394787,-0.0032287806,-0.0175122749,-0.0006518617,-0.0328983665,-0.0119238617,-0.0241206791,0.0468047485,0.0250544753,-0.0437304042,0.0188483223,-0.0482126288,-0.0368921421,0.0101927472,0.0145097598,0.0017751111,0.0362887643,-0.0089572622,-0.0085478285,-0.0093307812,-0.0500802211,0.0041266619,-0.0084257172,0.0029737824,0.0165210143,-0.0549934246,0.0418915451,0.0057500312,-0.0221812557,0.0093451468,-0.0149694746,0.0318640061,-0.020069439,-0.0087992353,-0.009790496,0.0035502221,-0.0365760885,-0.0023991384,0.0518041514,-0.0099844383,0.0240632147,0.0482700914,-0.0141218752,-0.0196384564,-0.0062959427,0.0384436809,-0.028631635,-0.0168370679,-0.0067125596,-0.01095415,-0.0529534407,-0.0399952196,-0.0917706415,-0.0077074119,-0.0134466682,-0.0216497108,-0.0117945671,0.0305135939,0.0295079667,-0.0150556713,-0.0102214795,-0.0706812069,0.036145106,-0.0324386507,-0.068842344,0.0180438198,-0.0318640061,0.0142224375,-0.0305997897,0.0036094822,-0.0540739968,0.0262612291,-0.0005203221,0.0317778103,-0.0436154753,0.076772429,0.0136046959,0.0192218404,0.0069962903,-0.069934167,0.0290769842,0.0517466888,-0.059073396,-0.0014069797,0.0452819429,0.0273674186,0.0688998103,0.0042739143,0.0008983301,0.0324673839,-0.0082605071,0.0059116497,-0.0741290674,-0.0345935673,-0.0064970683,0.0045576449,-0.000119306,-0.0054986244,-0.0313755609,-0.0060158037,-0.0431557596,-0.0276403744,0.012211184,0.0099988049,0.0086124763,0.0693020597,0.0096899336,-0.0229570251,-0.0009400816,0.0218508355,0.0328983665,-0.0348808877,0.0378115736,-0.0046330667,-0.0168514345,-0.0470920727,-0.0092589511,-0.0457416587,0.0074057239,0.0097473981,0.0076786797,-0.0184460711,-0.0087561375,-0.044908423,-0.0130803324,0.0075637512,-0.0101927472,0.0220519621,0.02014127,0.0137770884,-0.0130372345,-0.0729223192,0.0091583878,0.048586145,0.0477529131,-0.0258877091,0.008325154,-0.0131593468,-0.0079588182,-0.0544187836,-0.0182162132,0.0321800597,0.0222674534,0.0081671271,-0.0149263768,-0.0078079747,-0.0030510002,-0.0018343712,-0.0608547926,0.0084257172,0.029536698,-0.0476379842,0.0156877805,-0.0355417281,0.0376679115,0.0230001248,0.0043529277,-0.0613719746,-0.0084975474,-0.0450233519,0.0107961232,-0.0229139272,0.0074703712,-0.0009499583,-0.0033006112,-0.0457416587,0.0355704613,-0.0124554075,0.0247096904,-0.0026254046,0.021003237,0.0189632494,-0.0083179716,-0.031002041,-0.0009104515,-0.0157021452,0.0139925806,-0.0399664864,0.0047695446,0.0151562337,0.0043744771,-0.0106955608,-0.0312031657,-0.0149694746,0.0211181659,0.0083610695,0.0181587487,-0.02386209,0.0318640061,0.0016000243,-0.0107099265,-0.0176415686,-0.0286603663,0.0025679402,0.0131952614,-0.0232156161,0.0019160784,-0.0291775465,-0.0099844383,-0.0305710584,0.048701074,-0.0207159147,-0.0297665559,-0.0539877973,-0.0213480219,-0.0823464766,-0.005570455,0.0230288561,0.0045181382,-0.0159607362,0.0314617567,-0.0027564953,0.0354267992,-0.0137483561,-0.0056135529,-0.0343349762,0.0145744067,0.0150700379,-0.0412019715,-0.066141516,0.0132455435,0.0111840079,-0.0229139272,0.0203423966,-0.0048449668,-0.0134466682,-0.0830360502,0.016722139,0.0217215419,0.0248102527,-0.0477816425,-0.0072189644,-0.0037962415,0.0056961579,-0.031260632,-0.0094026113,-0.0028750156,-0.0026846647,0.0268789697,0.0020920632,0.0230144896,-0.0141003262,-0.0288471263,-0.0055632717,-0.0288327597,0.0099844383,0.0024566029,-0.0009122473,-0.020629717,0.0247815195,-0.0494768433,0.0008740873,-0.0099916216,-0.0288614929,0.0234885719,-0.0040763803,-0.0242068768,-0.0070609376,-0.0438453332,0.0085550118,0.0328409001,0.0365186222,0.0070968526,0.0609697215,0.0240344834,0.028631635,0.000156568,-0.0120603396,0.0345648341,0.0415180251,0.010767391,0.0372656584,-0.0436729416,-0.0152711626,0.0366910174,0.0101783806,-0.0284592416,-0.0350532793,-0.0222961847,0.0106955608,-0.002855262,0.0247671548,0.0594181828,0.0026343833,0.0252412353,-0.0253705308,-0.0534993522,-0.0025356165,0.0121968174,0.0169376303,0.0175553728,0.005071233,-0.0141290585,-0.0243649036,-0.0254567266,-0.0011591646,0.0412881672,-0.0171818547,0.0071938238,-0.0324386507,-0.0337603316,0.0606824011,0.0208739415,0.0644175857,-0.014560041,-0.0034748001,-0.0332144201,-0.0100850016,-0.0311457012,0.0685550198,0.0652220845,-0.0163055211,-0.0248964485,-0.070451349,-0.0042308159,-0.0180438198,0.0363174975,-0.0191787425,-0.017885793,0.0270657297,0.0220519621,-0.0212043617,0.0380126983,0.0109900655,-0.0158745386,0.0154148238,0.0095462725,0.0112917535,-0.0186040979,-0.017957624,-0.0168227013,-0.0364324264,-0.0167652369,-0.0126708988,0.0442188531,-0.0053298227,-0.0368059464,0.0194804296,-0.0099557061,-0.0584412888,0.0338752605,-0.0285454374,0.0350820124,-0.042983368,-0.0217502732,0.035398066,-0.0626361892,-0.0337603316,-0.0124769565,-0.0499652922,0.0362600349,0.0059511564,0.0309733097,-0.0271519274,0.0370358042,0.029048251,-0.013188079,-0.0044786311,-0.0246234927,0.0070214309,0.0202561989,0.0106883775,0.0231437851,-0.0231437851,0.0276403744,-0.0105159841,-0.0211181659,0.049677968,0.0016242671,0.0324386507,0.001292051,0.0289907865,0.0168657992,0.0457991213,-0.0215635151,0.0082245916,0.0436154753,-0.0175410062,-0.0144379288,0.00090686,-0.0793583319,-0.0247527882,-0.0077361441,0.0126421666,0.0448509604,-0.0099485237,0.0181156509,0.0724626034,-0.0252986997,0.0322662592,0.0001153777,-0.0022788225,0.022583507,-0.0491320565,-0.0101137338,0.0223105513,0.0382712856,0.0256291199,-0.0165784787,0.0058865091,0.012117804,0.0133245569,-0.0192793049,-0.0138273695,-0.0093595134,-0.0331569575,-0.0314042903,0.005710524,-0.0260170046,-0.0054483428,-0.0565449633,0.0002451216,-0.0182593111,-0.0090506421,0.0009697117,-0.0223536491,0.0002089818,-0.0207015481,-0.0457703918,0.0179432575,-0.0125344209,-0.0493906476,-0.0271662921,0.0351394787,0.0191069115,0.0391619839,0.0067736157,0.0217933711,0.0100778183,-0.0063929139,0.0026361791,-0.011909496,0.00277984,0.0423225276,0.0310307741,-0.0173686128,0.0235460363,-0.0031210349,0.0181587487,0.0284161437,0.0152280647,0.018561,0.0037280025,-0.0102430284,-0.0102214795,-0.004209267,0.002145936,-0.013303007,-0.0100275371,0.0185897313,0.0017589492,-0.0215060506,-0.0420352034,0.0220519621,-0.0013055193,-0.0079803681,0.0067736157,0.0148258135,0.0223680157,0.0091727544,-0.0292924754,-0.0141506074,0.016535379,0.016118763,-0.0306572542,-0.0106309131,-0.0272955876,0.0490171276,-0.0259882733,0.0060158037,0.0231006872,0.0053908788,0.0316341482,-0.0101783806,0.0109038688,0.0040225075,-0.0122255497,-0.0026164257,0.0252843332,0.0015838624,0.0001916976,0.0015757815,-0.0207015481,0.0401963443,0.0123045631,-0.0033580756,-0.0192505717,-0.0358003192,-0.0341051184,0.0327259712,0.0083754351,0.0012830722,0.033070758,-0.0223823823,0.0249539129,-0.0058793258,0.0004664493,-0.0647049099,-0.0204860568,-0.001292051,-0.0292637423,-0.0296803601,0.0149120102,-0.0144738443,-0.0485574119,-0.0303412005,-0.0105231674,-0.043098297,0.0173398815,0.0243361704,-0.0105231674,-0.0375242494,-0.0147108855,0.0265485495,0.0085550118,0.0174404439,0.034162581,0.0024548071,0.0048198262,0.0231725164,0.041747883,0.0411732383,0.0001017973,0.0068274885,0.0207590126,0.0292781089,-0.0077074119,-0.0213767551,-0.0138561018,-0.0373231247,0.0141937053,0.0279707946,-0.0439889953,-0.016118763,-0.0062528444,-0.0224542115,0.0745887831,0.0168514345,0.026979534,-0.0071902326,-0.0240919478,-0.0128648411,-0.0094744423,0.0249539129,-0.0411732383,0.0034927577,-0.0356566571,0.0168657992,-0.0350245498,0.0025140673,0.0341338515,0.0178283285,0.0503675416,0.0253130663,-0.0200981721,0.0175122749,0.0214485861,0.0178283285,0.0363749601,-0.0039003957,0.0088136019,-0.0303412005,0.0145025766,0.0657392666,-0.0341338515,0.0129366722,-0.0410870425,-0.0086196596,-0.0145528577,0.0019250573,-0.0156015828,0.029910218,0.04735066,0.0326397754,0.0025733274,-0.0059978464,0.0066263629,-0.021980131,-0.0090147266,-0.0152424304,0.0021010418,0.0383287519,-0.0266922116,-0.0067484747,0.0200550742,0.0025733274,-0.0725200698,-0.022166891,-0.0206728168,-0.0076068491,0.0194085985,-0.0102573941,0.0256865844,-0.028631635,-0.0537579395,0.0092876824,-0.0277265701,0.0173255149,-0.0169807281,-0.0106811943,-0.0211612638,0.028143188,-0.022396747,-0.0195091628,-0.0528097786,-0.0007582607,-0.0268215071,-0.0437016711,0.0434430838,-0.0130228689,0.0169519968,0.0283299461,0.0009230218,-0.0413169004,0.0170238279,0.0057033412,0.0102214795,-0.0005337903,0.0113923158,-0.0084472662,-0.0129941367,-0.015443556,-0.0318352729,0.0060660853,-0.0113779502,0.0106093641,-0.012793011,-0.0246522259,-0.0030061062,-0.037122,0.0230144896,0.0439889953,0.0172536839,-0.0050496836,-0.0103220418,0.0138273695,-0.0136693427,0.0038860296,-0.0173398815,-0.0098048626,-0.0105016185,0.011349218,-0.0061989715,0.0419777408,0.0117371026,0.0377541073,-0.0344786383,0.0088136019,0.0069819242,0.0398802906,-0.0222530868,0.006708968,-0.0083682528,-0.0646474436,-0.0169950947,-0.0235604011,-0.0010630913,-0.009675567,0.0635556206,0.0063390411,-0.0115144281,-0.000233898,-0.0180438198,-0.0246091262,0.0365760885,-0.0105231674,-0.0291919131,-0.0192074738,-0.0004251467,0.0122470995,0.0066299546,0.0014554653,-0.0202992968,-0.0302262716,-0.0105662653,-0.0129725868,-0.0272381231,0.0282006525,0.0038393398,0.003785467,-0.0058685513,-0.0979767963,-0.0442763157,0.0373231247,-0.0128001943,-0.0175553728,-0.007118402,0.0157452449,0.0260744691,0.0332144201,-0.0064934767,-0.0051143309,-0.0624637976,-0.0237327944,-0.0112702046,-0.0375242494,0.0028839943,0.0108464044,0.0397653617,0.0196240917,0.0088997977,-0.0201843679,0.0009634265,-0.0302837361,0.0686699525,0.0061666477,-0.0187046602,-0.0026667072,0.0231006872,0.0084544495,-0.0144451121,-0.0112702046,0.0044606738,0.0020363946,0.0068059391,-0.0077002291,0.0146821532,0.00277984,-0.0017499704,0.008303605,-0.0034281104,-0.025212504,-0.0519478135,0.0422363319,-0.0371794626,0.0515455604,-0.0274823476,-0.0021854427,0.0218795687,-0.014955109,-0.0071615004,0.0151849659,-0.0015596196,-0.0014024904,0.00111876,-0.0188770536,0.0208021104,-0.0518903472,-0.0033149773,-0.0004022508,-0.0021710766,-0.034679763,0.003907579,0.0155297527,-0.0468047485,-0.0068741781,-0.0091009233,-0.0020723098,0.0318065435,0.0064000972,-0.0022411114,0.0438453332,0.0348521546,0.0246234927,-0.0164922811,0.0107171098,0.0105088009,0.0046474328,-0.0042703226,-0.0429546349,-0.0178283285,0.0252412353,-0.0087202219,-0.0299964137,0.0141290585,0.0059978464,-0.014258353,-0.002501497,0.0018478394,0.0241925102,-0.0092302188,0.0461151786,-0.0127427299,-0.0175410062,0.0128863901,0.0207015481,0.0187621247,0.006536575,0.0051179226,0.0233018119,-0.0059870714,0.0428684391,-0.0127427299,0.0147970812,0.0126493499,-0.0164060853,-0.0182162132,0.0169807281,-0.0005261584,-0.0004213307,0.0020579437,-0.0204285923,0.0001545478,-0.0008848619,0.0125990687,0.0043206043,0.0140572274,0.0164060853,-0.0124554075,0.0038357484,-0.0273817834,0.046776019,-0.019652823,-0.0238477234,0.0273674186,-0.0163917188,0.0264192559,0.0401676111,-0.0076427646,0.0127642788,-0.0090650087,-0.0059331986,0.0471208021,0.003702862,0.0534418859,0.0120172417,-0.0400814153,0.0391045213,0.0157021452,0.0160612985,0.0374380536,0.0018164136,-0.0025894893,0.0132311769,0.0084903641,0.0207733791,-0.0120531572,-0.0129007567,-0.0089859944,-0.0375242494,0.0261606649,0.0382712856,-0.0228133649,0.0012938468,0.0575505905,-0.0153429937,0.055912856,-0.0579528436,-0.0249251816,-0.0200838055,-0.011816116,-0.0016287564,0.0332718864,0.0313180946,-0.0156877805,0.0387597345,-0.0281862859,-0.0040799719,-0.0103795063,-0.0346222967,0.0300826114,0.0061881971,0.0120747061,0.0119166793,0.0201987345,0.0489309318,0.0238908213,0.0114354147,0.0094026113,0.0123835774,0.0007753204,-0.0243361704,-0.0038644806,0.0252412353,0.043098297,0.0315192193,-0.0137196239,-0.0384436809,0.0075206528,-0.0223823823,0.0243936349,0.0326685086,-0.0017553577,0.0079013547,0.0183455087,-0.0082174083,0.0028355087,0.0197102875,-0.0058362274,-0.0108607709,0.0238477234,-0.0293499399,0.0164635498,0.0180869177,-0.0146462377,-0.0130587835,0.0116509059,0.0043349704,0.0076355813,-0.0364611596,0.023071954,0.0240775812,0.0246091262,0.0102430284,-0.0129941367,0.0159894675,0.0033562798,0.0147252511,0.00909374,-0.0046977145,-0.0251119398,-0.0382425562,-0.0248677172,-0.0196815562,0.033070758,-0.0124051264,0.0378977694,0.0102286618,0.0152136981,-0.0131090647,0.0130659668,0.0171531215,0.0079085371,0.0252699684,0.0138776517,0.0180438198,0.0168945324,0.0071363593,0.0011896925,-0.0097545814,0.0120028751,0.0157596096,0.0075493851,0.0048054601,-0.015256797,-0.0174260773,-0.0132814581,0.0458278544,0.0245229304,0.0410870425,0.0006110081,0.0160900299,0.0140141295,0.0403687358,0.0171531215,0.0238046255,0.023933921,-0.0050999653,0.0061738309,0.0077433274,-0.0078295236,-0.002244703,0.0270082653,-0.0024799479,0.0012121396,0.0056171445,0.0141865229,-0.0057428479,-0.0163055211,0.0177852307,-0.0108320387,-0.0319214724,0.0286747329,0.0149838412,0.0043637026,0.0019932962,0.0445061736,-0.0601652227,-0.0205291547,0.0096396524,-0.0345073678,-0.0218939353,0.006604814,-0.0166359432,0.0022680478,0.0491895229,-0.0228995606,0.0091512045,-0.0365473554,0.0226266049,-0.0481838956,-0.0160612985,0.0063139005,-0.0264479872,0.0285023395,-0.0292206444,0.0018675928,0.0151706003,0.0176415686,0.0159607362,-0.0244941991,0.0099054249,-0.0113133024,0.0243361704,0.0349670835,0.0292206444,0.0054734838,-0.0051682042,-0.0274823476,-0.0032521256,0.0220519621,-0.0033706459,-0.0069675581,0.0217215419,0.0444199778,-0.0167652369,0.0169232637,0.0246665906,0.0308583807,0.0202992968,0.0191356428,0.0101280995,0.0148545457,0.0234167408,0.0337315984,-0.0144451121,0.008677124,0.0298527535,0.0050891903,-0.0272668544,0.0069352342,0.0030348382,-0.0111983735,0.0190781783,0.0281000882,-0.0144882109,0.0050209514,0.0258158799,-0.0044858144,-0.0100059882,-0.0061199581,0.0254854597,0.0120316073,-0.0018002518,0.00160182,0.0112917535,-0.0083538862,0.0511145778,0.0141506074,0.0021369571,0.0155010205,0.0613719746,0.0309733097,-0.0053621465,0.0165066477,-0.0100850016,-0.0017796005,-0.016046932,-0.012024425,-0.0009055132,0.0350245498,-0.0235029366,-0.0173829794,-0.0374380536,0.0156159494,-0.0135687804,-0.0329270996,-0.0015497429,0.040541131,0.0083107883,-0.0012265057,0.0209170394,0.0253848955,0.0101568317,-0.0065724901,-0.0255860221,-0.0001287337,0.0088997977,-0.0203567613,-0.0037998331,0.0193080362,-0.0097976793,-0.0192505717,0.0049167974,0.0464886948,0.0040153246,-0.0031156477,-0.0210750662,0.0202274676,0.0166934058,-0.0063677733,-0.0103292251,-0.026792774,-0.0020238243,-0.0047659534,-0.015141868,0.0273386855,-0.0198970474,-0.0135328649,-0.0125847021,-0.0209601372,-0.0522926003,-0.0070932615,0.0084975474,-0.0159894675,0.0069208681,0.0036741297,0.0671184137,0.0123332953,0.0179145243,0.0316628814,-0.025025744,0.0129366722,-0.0311457012,0.0012175268,-0.0399664864,-0.021980131,0.0334730111,-0.0246665906,-0.0053657377,-0.0385873429,-0.0104082385,0.032352455,0.0054986244,0.0000165968,0.0385298766,0.0244941991,0.0060984087,0.0341051184,0.0219657645,-0.0434143506,-0.0165497456,0.0264048893,-0.0322949886,0.031978935,0.004977853,-0.0168801658,0.0067592496,0.0035196941,-0.0280138925,0.0354267992,0.010070635,0.0037244111,0.0280426238,0.0020507607,-0.0000962978,-0.0138345528,-0.0585274845,-0.0095750047,-0.0006918174,-0.0390757881,0.02544236,0.0201125387,-0.0271950252,0.0346510299,0.0212187283,-0.0045289127,-0.0049275719,-0.0264192559,-0.014955109,-0.0019681556,-0.0324099176,0.0247671548,0.0304561295,0.0077074119,0.0118951295,0.041374363,-0.0102214795,0.0199832432,-0.0297665559,-0.0274248831,0.0166503079,0.0225260425,-0.0084759984,0.0052184854,-0.000634353,0.0064180545,0.0314042903,-0.0102358451,-0.0052831327,-0.0239051878,0.0076427646,0.0119741429,0.0412881672,-0.0123907598,0.0179863553,0.0116940048,-0.000196187,-0.0173255149,0.0345073678,0.0057069329,-0.0498216301,0.0351107456,-0.029795289,0.0097114826,0.0300826114,-0.0120387906,0.0117514683,0.0127283633,0.0107242931,0.005908058,-0.0234023742,-0.0029199095,0.0293643065,0.0059511564,0.0094026113,-0.0088064186,0.0162336919,-0.0176703017,-0.0130156856,-0.0130156856,-0.0037818756,0.01818748,-0.0090147266,-0.0303412005,0.0148976445,-0.016535379,0.0136837093,-0.0286460016,-0.020629717,0.0072261477,0.0070465715,-0.0212474596,-0.0097761303,0.004141028,0.0174404439,-0.0059906631,-0.0276403744,0.0223249178,-0.0211037993,-0.0015856582,0.0125487875,-0.0065976307,0.0041877176,0.03358794,0.0040368736,0.0104369707,-0.0266203806,0.0013845328,0.0023434698,0.0075493851,-0.0200263411,-0.00909374,0.0033490967,0.0520627424,0.0228995606,0.0220663268,0.0320938639,0.0173111483,-0.0524362586,0.0025212504,-0.0371794626,-0.0140787764,-0.0121465363,-0.0176415686,0.0022662522,0.0179863553,-0.0214485861,0.0162193254,-0.0043529277,0.0091152899,0.0132455435,-0.0086196596,-0.0294792354,0.0150413057,0.0328409001,-0.0093092322,-0.0051897531,0.0472931974,0.0075996662,-0.0372369289,0.0114641469,-0.0190350804,0.012117804,-0.0193224028,0.0041661686,0.0101783806,0.0422650613,-0.0129151223,0.0209888704,-0.0039147618,-0.0120818894,-0.0316628814,0.0308009163,0.0167652369,0.004245182,-0.0217790063,0.0138704684,-0.0228708293,0.0418628119,-0.0156590473,-0.0093738791,-0.0145744067,0.010767391,-0.0089716287,0.0311744343,0.0131377969,0.0238046255,-0.0050532753,-0.0204142258,0.0051969364,-0.0350820124,0.00636059,-0.0033042028,-0.0139135662,-0.0326110423,0.0208739415,0.0016943017,-0.0048880652,0.0150844036,-0.0099269738,-0.0106668286,0.0026469538,0.0172680505,-0.0263474248,0.0242499746,-0.0038572976,0.0367484801,-0.0446498357,-0.026979534,0.0470920727,-0.0067341086,0.0301975403,0.011349218,0.0174691752,-0.0116868215,-0.0186328292,0.0107530253,0.002478152,-0.0117730182,-0.0012166289,-0.0029683951,0.0005647673,-0.0249826461,-0.0367197469,0.0213623885,0.0150987701,-0.0193655007,-0.0152280647,0.003710045,0.0118879471,0.0049742619,0.0239482857,-0.0145744067,0.0080593815,0.005778763,-0.0018164136,0.0129366722,0.0250544753,-0.0136549771,-0.0077792425,0.0107314754,0.0101137338,-0.0056817918,-0.0111552756,0.0305997897,0.0213911217,0.0021297741,0.0079516359,-0.0125416042,-0.0062169293,0.0234742053,-0.0012085481,0.005523765,-0.0116365403,-0.0025032926,-0.008001917,0.0135687804,0.0539877973,0.0089859944,0.0016009221,0.0334155448,0.0016907102,0.0062600276,0.0026325877,0.0449371561,0.0098407781,0.0210750662,-0.0014617506,-0.0052723582,-0.0043672938,0.0273243189,0.0111696413,0.0371794626,-0.0217646398,0.0303412005,0.008023466,0.0117442859,0.0213623885,0.0116868215,-0.013188079,-0.0037890584,0.029306842,-0.029910218,0.0292062778,-0.0052148937,0.0519765466,0.0030545918,0.0144953933,-0.0075422018,-0.0021477318,0.0047336295,0.0237327944,-0.011442598,-0.0254136287,-0.0124410419,-0.0054519344,0.0367772132,0.0215347819,-0.0241925102,0.0215922464,0.0411732383,0.0039434941,-0.017397346,0.0147108855,-0.0280713569,0.0206153523,0.0252556019,-0.0075565679,-0.0189057868,-0.0105231674,-0.0001101588,-0.0041194786,0.0134323025,-0.0233449098,-0.0007268348,-0.0484999493,0.0177852307,0.0210463349,-0.014653421,-0.0017535619,0.0211468972,0.012793011,0.0223536491,0.0150413057,0.0294792354,0.0145744067,0.0034873704,0.0236465987,0.0085837441],"15":[0.0102092307,0.0046216953,0.0160570908,0.0145630566,0.0546906888,0.0071230703,-0.0022844379,0.0179887693,-0.0282055475,0.0178076755,0.0268020611,-0.0367924683,0.0263342317,-0.0492880233,0.0338949487,0.0680313557,-0.019226253,0.0039350437,0.0060327272,0.0513102524,0.0011724015,0.0174002107,0.0264096875,0.0176718533,0.003885997,-0.021429576,-0.0427987874,0.0748526007,0.0337742195,-0.0592784323,0.0072098449,-0.0328989252,-0.0550830625,0.0224406887,0.0409878343,0.0461792238,0.0487447381,-0.0040557734,0.0179434959,0.0062553231,-0.0253231172,0.0178076755,0.0176114887,-0.0104431454,-0.0045198295,-0.0084888283,-0.0633832514,-0.0351927951,-0.0081190923,0.0624777749,-0.0159816332,0.0066061947,-0.0128879277,-0.0396598056,0.0218974035,-0.0298504923,-0.0021618216,0.0370037444,-0.0103525976,-0.0298655834,0.0308465157,-0.051370617,0.0271793418,0.0140197715,-0.0221841373,0.0182151385,-0.0171587523,0.0451832041,-0.0468432419,0.0239196308,0.0440664515,-0.0081568211,-0.0175360329,-0.0010205458,0.0441268161,-0.0718947127,0.0110015217,0.0543888658,-0.0059044515,-0.0396296233,0.0064779189,-0.0135217598,-0.0310276095,0.0303786863,-0.0231499784,-0.0126162851,-0.0352229774,-0.0157703571,-0.013129388,0.0435533486,0.0060289544,0.069963038,0.0233763456,0.0215050317,0.03066542,0.0040972745,0.015860904,-0.0032483917,-0.0002683413,0.024055453,-0.0013808494,-0.0183207784,-0.0241610911,-0.0278584473,0.0330196545,0.0122918235,0.0329291075,-0.0196789894,-0.0029107248,0.0048442911,-0.1052161977,-0.0068627461,-0.0248703808,0.0336836688,-0.0073833941,0.0147743337,-0.0604253672,-0.0048669283,0.0184716899,-0.0047386526,-0.0225161444,-0.0123069147,-0.0394485295,0.0034898517,0.0167060141,-0.042859152,-0.0040784106,-0.0746715069,-0.0206750128,-0.0080662733,0.0512197018,-0.016796561,0.0584031381,-0.0201317277,-0.0003298853,-0.0177774932,-0.0627795979,-0.0048405183,-0.0177624021,0.0081794579,0.0057044928,-0.0432817042,0.005251755,-0.0264549609,0.001574206,0.0122088213,-0.0224557798,0.0622363165,-0.0098394947,-0.0016487191,0.0064062355,-0.0087378342,-0.0450021066,-0.0319029018,0.034981519,0.0140725905,0.0404445492,0.0571958385,-0.0176265799,-0.061029017,-0.000661657,0.0419838578,-0.021746492,0.0006159117,0.0004609905,-0.0047726077,-0.0494691171,-0.0479298122,-0.0677295327,-0.0037501757,-0.0426780544,-0.0464206859,-0.025519304,0.0335327573,0.0396296233,-0.0010243186,-0.0076474911,-0.0525175519,0.0327480137,-0.0546001419,-0.0537248515,-0.0218974035,-0.0082096402,0.0087001054,-0.0238592662,-0.0243421867,-0.0576485768,0.0157854483,-0.0067533343,0.0310276095,-0.0509178787,0.0482014529,0.0353135243,0.0288091972,0.0215804875,-0.0560489036,0.0242214557,0.0128803821,-0.0203882791,-0.0040331366,0.0525779165,0.0311785229,0.0582522266,-0.0084661916,-0.0062892786,-0.0145404199,0.0197695382,0.0061572301,-0.0654356629,-0.0546605065,-0.0119371787,-0.0168720186,0.0308012422,0.0203882791,-0.0365811922,-0.0100356815,-0.0258814935,-0.0207806509,-0.0257003997,-0.0068702917,-0.0015279891,0.047054518,0.0083756438,-0.0201015454,0.0137934024,0.0232556164,0.026575692,-0.0216861274,0.0350418836,0.0198751763,0.0039614532,-0.0274358932,-0.024266731,-0.0561394505,0.0084812827,-0.0138084935,0.0218672212,-0.0177020356,-0.0088359267,-0.0100054992,0.0024862834,-0.0036822651,-0.0175058506,0.0131746614,-0.008881201,0.0267567858,-0.030137226,-0.0609384701,0.0411689319,0.0576485768,0.0396899879,-0.0305295996,0.0201920923,-0.0453944802,-0.0193017088,-0.0562601797,-0.0121333655,0.019950632,-0.0087529253,0.0103903254,0.0097791301,-0.0420442224,-0.0164645538,-0.0186829679,-0.0368226506,0.0258211289,0.0231197961,-0.045273751,0.0147743337,0.018909337,0.044639919,0.0429798812,0.0239649061,-0.0271642506,-0.0376375765,-0.0180491358,-0.0228330623,-0.0007668242,0.0036747195,-0.0089868391,-0.0131067503,-0.0356757157,0.0137858568,0.003371008,0.0329592898,0.0124653727,-0.0019788402,0.0461792238,0.0008262459,-0.0229085181,0.0157250818,0.0091377515,0.0277226269,-0.0108581549,-0.010450691,0.0070362953,0.0053762579,-0.0154081667,-0.0248703808,-0.0539361276,0.0101186829,-0.023421621,0.0095678531,-0.0359171741,0.0048216544,0.0320839994,-0.0245685559,-0.020690104,-0.0158910863,-0.0002019634,0.0070627052,-0.0257607643,0.0163136423,-0.021218298,-0.0371848419,-0.0040595462,0.0661600381,-0.0217917655,-0.022470871,-0.0523666367,-0.032446187,-0.0982742235,-0.0015874109,0.039599441,0.0098093124,-0.019105522,0.0029729763,-0.0078097219,0.015755266,-0.0322952755,0.0072739827,-0.0373659357,0.0155741703,0.0364906415,-0.0357662626,-0.0538153984,0.0327480137,0.0045764218,-0.0137330377,0.0249307454,-0.0130011123,-0.0301674083,-0.0761202648,0.0201317277,0.0194526222,0.0405049138,-0.0017571874,0.0173549373,-0.0185622368,0.0035502166,-0.0473865271,0.0171285681,0.0147667881,0.0013799062,0.0146762412,0.0159967244,0.0102846874,-0.0182151385,-0.02499111,0.0066854237,-0.0169474743,-0.0005159321,0.028356459,-0.0138311312,-0.0211730246,0.0124351904,-0.0249156542,-0.0033313935,-0.0153478011,-0.010926065,0.0260173157,-0.0254740305,-0.0114618046,-0.0223199595,-0.0714721605,-0.0046179225,0.0455152094,0.0266964212,0.0026013542,0.052094996,0.0051876171,0.0140273171,0.0235574413,-0.0190904308,0.0474167094,0.0437646247,-0.0026089,0.0289902911,-0.0347400568,-0.0144951455,0.0447606482,-0.0013657581,-0.0065873307,-0.0272246152,-0.0047575166,0.0129860211,-0.0031842538,0.0169323832,0.0579805821,-0.0302730482,0.036037907,-0.0164343715,-0.0482919998,0.003371008,0.0329592898,0.0117334472,0.0189395193,0.0336836688,-0.0217314009,-0.0192866176,-0.0053347568,-0.0104884189,0.0417725816,-0.0267115124,0.0312388875,-0.0249005631,-0.0507669672,0.0711703375,0.0059874537,0.0441569984,-0.0184264164,-0.0138990413,-0.0316614434,-0.0328083783,-0.0283262767,0.0646509156,0.0219728611,-0.046330139,-0.029609032,-0.0439155363,-0.013023749,0.0022844379,0.0289450176,-0.003603036,-0.0164041892,0.0308314245,0.0434628017,-0.0086548319,0.0562299974,-0.006194958,-0.0344382338,-0.0026541736,-0.0147592425,0.0079002697,-0.0149478829,-0.0202524569,-0.037396118,-0.0198449939,-0.0083077336,-0.0135594886,0.0235423502,-0.0256702174,-0.0028296094,0.0224406887,-0.0242063645,-0.0104129622,0.0414707549,-0.0329291075,0.0400521792,-0.0216861274,-0.0346193276,0.0009050034,-0.060606461,-0.0082549136,0.0048027905,-0.038875062,0.0255494863,0.0139594069,0.0308465157,-0.0240101796,0.0190904308,0.0306050554,-0.020795742,-0.0114919869,-0.028567737,-0.0057874946,0.0110543407,0.0240856353,0.0091000237,-0.0487447381,0.0142536862,-0.0285979193,-0.0344684161,0.0563205443,0.0258060377,0.013023749,0.0007286244,-0.005693174,-0.0144045986,-0.0002834325,-0.0235121679,0.0000830019,0.0203128234,-0.0193922557,-0.0327480137,0.0223652329,-0.0877707079,-0.0473865271,-0.0020241139,0.008247368,0.0476581678,0.0093188472,0.0010205458,0.0853561088,-0.0182604119,0.0386034176,0.0007970067,-0.0172643904,-0.0027239707,-0.0369433798,-0.0223652329,-0.0176265799,0.0251722056,0.0380903147,0.0026843562,0.0412292965,-0.0049310662,0.0164645538,-0.0098772235,-0.019105522,-0.0181547739,-0.0480807237,-0.0174907595,-0.0067948354,-0.0106846048,0.0141706839,-0.0430704281,-0.0174907595,-0.0265455097,0.0032615964,-0.0072362544,-0.0297599453,0.0234518033,-0.0239799973,-0.0490163788,0.0177020356,-0.0223501418,-0.0489560142,-0.033200752,0.0194526222,0.0029069521,0.0257003997,0.0045198295,0.0109034283,-0.003269142,-0.0060402728,-0.0023033021,-0.0213239361,-0.0040897289,0.0305899642,0.032023631,-0.0261229537,0.0230141561,0.000429629,0.0227123313,0.0223652329,0.0124653727,0.0040482278,0.0339854956,-0.0013204844,0.0288242884,-0.020690104,-0.0070815692,0.0096131265,-0.0006484521,0.0289902911,0.0082096402,0.0056554461,-0.0412594788,0.0061610029,-0.0002905066,-0.0040406822,0.0241158176,0.0252476614,0.0168267433,0.000415481,-0.0325367339,-0.0328687429,-0.0075569437,0.0065533752,-0.027103886,0.0089038378,-0.0450021066,0.039901264,-0.0283111855,0.0075154426,0.0438551717,0.0095452154,0.0482014529,-0.0356153511,-0.021218298,0.0000298141,-0.0207504686,0.0036935834,0.012654013,0.0216408521,-0.0048065633,0.0199657232,-0.0095301243,0.0314803496,0.0127219241,-0.0134689407,-0.0008385076,-0.0332309343,-0.02499111,-0.0015468531,-0.0134161217,0.0055498071,0.0218219478,-0.0073683029,0.0209617466,0.000828604,-0.0038746784,-0.0447304659,-0.0379394032,-0.0047160159,-0.0121107278,-0.0248854719,0.0273906197,-0.0199657232,-0.0312992521,-0.028567737,-0.0329592898,-0.0442475453,0.0215201229,0.032446187,-0.008775562,-0.0506462343,-0.004123684,0.0224105064,0.0156345349,0.0055799899,0.0510084257,0.0109109739,0.0019118728,0.0503444113,0.0281602722,0.0325971022,-0.0048895651,-0.0042519597,0.0295486674,0.0250514746,0.0095904898,0.0141857751,0.0127370153,-0.0293826647,-0.0188640635,0.0361888185,-0.0190149751,-0.0107977893,-0.0053951219,-0.0265455097,0.0647716448,0.0327178314,0.0092358449,0.004546239,-0.0382412262,-0.0252174791,-0.0096584,0.0116579905,-0.0549019687,-0.0073947124,-0.0035087157,-0.0022806651,-0.0372452065,0.0353738889,0.0292317513,0.0276622623,0.0386637822,0.027300071,-0.0178831313,0.0228632446,0.0495898463,0.029729763,0.04032382,-0.003691697,0.0218672212,-0.0337138511,0.0215955786,0.0604857318,-0.0170380212,0.013551943,-0.0171587523,-0.0010658195,-0.0125936484,-0.006115729,-0.0031823674,0.0368226506,0.0450021066,0.013023749,0.0013393485,0.0058742692,0.0193167999,-0.0102318674,0.0076889922,-0.0411387496,0.0173398461,0.0065986491,-0.0177171286,-0.0320839994,0.000659299,-0.0106317857,-0.0878310725,-0.031721808,-0.015068613,-0.0020486373,0.0170531124,0.0002933362,0.0188791547,-0.0116051715,-0.0424667783,0.0109185195,-0.0305145085,0.0236479882,0.0068627461,-0.0433420688,-0.0154987136,0.0281149987,-0.0154836224,-0.0166758318,-0.0668240562,-0.003440805,-0.018486781,-0.0380601324,0.0439759046,-0.0394183472,0.0336233042,0.0317519903,0.0008734061,0.0084284628,0.0000364607,0.006194958,0.0090245679,0.0046594236,0.0203882791,-0.0030937062,-0.0157854483,-0.0008927418,-0.0281602722,-0.0096659455,-0.0512800664,-0.0053762579,-0.0165249184,-0.0226368755,0.0379997678,-0.0440362692,-0.0023334846,0.0256551262,0.023527259,0.0050216136,-0.0069193384,0.0156345349,-0.0163589157,-0.026047498,0.0106846048,-0.0309068803,-0.0136726722,0.0072098449,0.0057610846,0.0259720422,-0.0016770152,0.0190904308,-0.0377884917,0.0251872968,0.0112354355,0.0436740778,-0.0170531124,0.0153176188,-0.0152195254,-0.066401504,0.0068552005,-0.0197695382,0.0006970271,-0.0240856353,0.0405954644,0.0077040833,-0.0150082484,-0.0130011123,-0.0017439825,-0.0156043526,0.01050351,0.0042972337,-0.0211126581,-0.0426780544,-0.0112052532,-0.008722743,0.0122239124,-0.0190451574,-0.0272397064,-0.0355248041,-0.0284922812,-0.0225916021,-0.0110090673,0.0147743337,0.0116881728,-0.0159212686,-0.0006762766,-0.0806476399,-0.0388448797,0.0340760425,-0.0011724015,-0.026153136,-0.0212635715,0.0226670578,0.0482316352,0.0440966338,-0.0182000473,-0.0026541736,-0.0408972874,-0.0175813064,-0.0162381846,-0.0240101796,0.0169474743,0.0264096875,0.0120352721,0.0247345585,0.0087906532,-0.0043236432,-0.0029993861,-0.0206599217,0.0360680893,0.0080662733,-0.0342571363,-0.0056063994,0.0569543764,0.0055045336,-0.0121861845,-0.0027051065,-0.0006588274,0.0015817516,0.0111599797,-0.0211277511,0.0032936654,-0.0111599797,-0.0037275387,-0.0024146,0.0035256934,-0.0146686956,-0.0571052916,0.0281300899,-0.0697215796,0.0454548448,-0.0316010788,-0.0038124272,0.0242818221,-0.0318425372,0.003520034,0.0194073468,0.0035181476,-0.0205995571,-0.0232707076,0.0009705561,0.0245987382,-0.0447606482,-0.0147743337,0.0063345521,0.0127445608,-0.0273302533,-0.0159363598,0.0153779844,-0.0464508682,-0.0204335526,-0.0061383662,0.0161929112,0.0138084935,0.0055045336,0.0043915538,0.0208561085,0.0401125439,0.0111826165,-0.0204939172,0.0228330623,0.0111599797,0.014910155,-0.0242365487,0.0121107278,-0.0124880094,0.012231458,-0.0109864306,-0.0362793654,0.0289751999,-0.0084284628,-0.0211579334,-0.0026183319,-0.020478826,0.019226253,-0.005534716,0.0450322889,0.002516466,-0.0137783112,-0.0101941396,0.0030823878,0.0127445608,0.0255343951,-0.0060251816,-0.013235026,0.0000679696,0.0158910863,0.0010912861,0.0024391233,0.0031729355,-0.0357360803,-0.0159967244,0.0064892378,-0.012495555,-0.0074513047,0.0287488308,-0.0152874365,-0.0041878219,0.021746492,0.0338647664,0.0002676339,0.00205241,0.0108657004,0.0014261232,-0.0098244036,-0.018909337,0.0236630794,-0.022470871,-0.0360680893,0.0365811922,-0.0113938935,0.0069721574,0.0192111619,-0.0026711512,0.0241158176,-0.0183509607,0.0083756438,0.0512498841,-0.0016025021,0.0543285012,0.0058289953,-0.0433420688,0.0172643904,-0.0011780608,0.0089868391,0.022787787,0.0080511821,0.0018420757,0.0090019312,0.0119598154,-0.0016647535,-0.0187584236,-0.0069382023,-0.0033276207,-0.0078549953,0.0240856353,0.0203882791,-0.0377884917,-0.0049122018,0.0657374859,-0.0128426543,0.0785348639,-0.0561092682,-0.0341665894,-0.0100734094,-0.0002872054,0.0105487835,0.0157703571,0.0053687124,-0.0020825926,0.0080285454,-0.0194073468,-0.0266511478,-0.0204335526,-0.0222897772,0.0085642841,-0.0154232578,0.0029767491,-0.0025749446,0.0176567622,0.0267115124,0.0035238068,-0.0038388367,0.0234065298,0.0121333655,0.0096433088,-0.029624125,-0.0116504449,0.0204637349,0.0431911573,0.036037907,0.0068250177,-0.0307106934,0.0308917891,-0.0100432271,0.0116655361,0.0398408994,-0.0041953675,0.0302277748,0.0202826411,-0.0088887466,0.0093037561,0.0223652329,-0.0109562473,-0.0039576804,0.015438349,-0.0466923267,0.0248401985,0.0012912451,-0.0188187882,-0.0008658605,0.0715325251,-0.0069834762,0.0114995325,-0.0263040494,0.0138613135,0.0306050554,-0.0004388253,0.0130086578,-0.0123295514,-0.023738537,-0.0018467917,0.0328687429,0.0208561085,0.0002052646,-0.0128501998,-0.0289450176,-0.0291412044,-0.0190149751,0.0038935426,-0.0217163097,0.0383015946,-0.0048178816,-0.0018835766,-0.0054215319,0.0108355172,-0.0005055569,0.033925131,0.0218370389,0.0091830259,0.042104587,0.019226253,0.0004251488,0.0052970289,0.0093565751,0.0115825348,0.019437531,0.0007668242,0.016389098,-0.0201317277,-0.0262285937,0.0079455432,0.0397201702,0.0330196545,0.034226954,-0.0118239941,0.0034860787,0.0270586107,0.0217163097,-0.0091905715,0.041380208,-0.0093565751,0.0073909396,0.0096055809,-0.0081643667,-0.0106393313,-0.0248100162,0.0239950884,0.0193469822,-0.0047160159,-0.0194828045,-0.0059195431,-0.0212635715,0.003371008,0.0355549864,-0.0066099674,-0.0261984095,0.0317821726,-0.0126087395,-0.0222143196,-0.0175058506,0.0218370389,-0.0689971969,-0.0175360329,-0.0048216544,-0.030876698,-0.0255947597,0.0141405016,-0.0115146236,-0.0060025449,0.029624125,-0.0038784512,-0.0034030769,-0.0274962578,0.0108581549,-0.0301221348,-0.0161174554,-0.0007522045,-0.0288544707,0.0295335762,-0.0143215964,0.0096055809,-0.0051197065,0.014646058,0.0112354355,-0.0272095241,0.0200562719,-0.0226670578,0.0293524824,0.0296844896,0.0191357061,0.0041350024,-0.0002603241,-0.0220181346,-0.0000657884,0.0103827799,-0.0015638308,0.0232254341,0.0003631332,0.0530910194,-0.0043613715,-0.0153628923,-0.0021712536,0.0247194674,0.0202373657,0.0319330841,-0.0003131434,0.0283111855,0.0168569256,0.0462697744,0.0017298346,-0.0024259184,0.0234668944,-0.0128275631,-0.0364302769,0.0062440047,-0.0183056872,-0.0116202626,0.0048292,0.0254438482,-0.0306201465,0.0132501181,-0.002242937,-0.0000566217,0.0023523485,-0.0002361545,0.0020014769,-0.0044745556,0.0048178816,0.0068438821,0.019226253,-0.0115900803,0.0272246152,0.0268322434,-0.0046330136,0.0279489961,0.0699026734,0.0032766876,-0.0121182743,-0.0055309432,0.004150094,-0.0022297322,-0.0107902437,-0.0047084698,0.0009743288,0.0113259833,-0.0307710599,-0.0065684668,-0.0325669162,0.0043160976,-0.0157401748,-0.0280999076,-0.0200864542,0.0202222746,0.0130312946,-0.0162683669,0.0236781724,0.0068099266,-0.0202071834,-0.0099677704,-0.0197846293,-0.0127294697,0.0110769775,-0.0182604119,-0.0268473346,0.0199355409,0.0074211224,-0.0185622368,0.0093113016,0.050616052,0.0092433905,0.0114391679,-0.0118315397,0.0184113253,-0.0017071976,0.0036313322,0.0015081818,-0.0322650932,-0.0112354355,-0.0121484566,0.006459055,0.0427082367,-0.0134312129,-0.0272698887,-0.0056026266,-0.0273755286,-0.0328385606,-0.0062968242,0.000467593,-0.0098998602,0.0012497442,0.0065722396,0.0500124022,0.0153779844,0.0143291419,0.034558963,-0.0119975442,0.0041199112,-0.0282206386,-0.0063081426,-0.032778196,-0.0307257846,0.0289902911,-0.0213239361,0.007119297,-0.0213541184,0.0154836224,0.0326272845,0.0173398461,0.024266731,0.0368830152,0.0144498721,0.0030540917,0.0323556401,0.0479298122,-0.0429798812,-0.0104129622,0.0301674083,-0.0320538171,0.0466621444,-0.0284922812,0.0013959407,-0.0014317824,0.0045877402,-0.006459055,0.0314803496,0.017113477,0.0031427529,-0.0043462799,0.0010205458,-0.013235026,-0.007304165,-0.0239649061,-0.0138235856,-0.0074324408,-0.0174303949,0.0090472046,0.0251872968,-0.0314803496,0.0507669672,0.0192715265,-0.0163740069,-0.0106544225,-0.0369131975,-0.012812471,-0.0018939519,-0.012812471,0.0295637585,0.01376322,0.0277679004,0.0268020611,0.0382714123,0.0166758318,-0.0164192803,-0.0070513869,-0.0258664023,0.03633973,-0.010714788,-0.0084888283,0.0008248311,0.0190753397,0.0029258162,0.0377281271,-0.025111841,0.0075229881,-0.0064439639,0.0114089856,0.0011676855,0.0175511241,-0.0008729345,0.0027164251,0.0092886649,0.0018317004,-0.0223199595,0.0086548319,0.0190602485,-0.0309370626,0.0148497904,-0.0266209655,0.0041312296,0.0295637585,0.0028786559,0.0167512875,0.0159665421,0.0275717136,-0.0113184378,-0.0237838104,0.0279942695,0.0354946218,0.0077003106,0.0072739827,-0.0139065869,0.0490163788,-0.010767607,0.0044783284,-0.0130992047,-0.0090019312,0.0033276207,-0.0133783929,-0.0249005631,0.0167060141,-0.0202826411,0.012231458,-0.0116051715,-0.0247345585,0.0247345585,0.0052253455,-0.0239950884,0.0098470403,-0.0070551597,0.0326876491,-0.0166758318,-0.0070249769,0.0190149751,-0.0071155243,0.0151591608,0.0090924781,0.0062930514,0.0170078389,0.0205844659,-0.0122163668,-0.0101790484,-0.0221237727,-0.0035992633,0.0010488419,-0.0033879858,-0.0114768958,0.0003801109,0.0018071772,0.0398107171,0.0097715845,0.0242818221,0.0239045396,0.008194549,-0.0328083783,-0.0056328094,-0.0167060141,-0.0273906197,-0.0404747315,-0.0064062355,-0.0014544192,0.0090849325,-0.0199053586,0.0150912507,-0.0093792118,-0.0022599148,0.0033993041,-0.0127671976,-0.0216861274,0.0325669162,0.0133331195,0.0102167763,0.0043500527,0.0502840467,0.0049838852,-0.0338345841,0.0216861274,-0.0202826411,0.0156647172,-0.0261984095,0.000729096,0.0085416473,0.0113259833,-0.0121786389,0.0270435195,0.0040633189,-0.0028069725,-0.0135594886,0.0248251073,0.0251722056,-0.01533271,-0.026153136,0.0132425716,-0.0337440372,0.0341364071,-0.0153025277,-0.0339854956,-0.0251420233,0.0116202626,0.0008007794,0.0390561558,-0.0147743337,0.0227274224,-0.0024089408,0.0109939761,0.0190149751,-0.0326876491,0.0100356815,0.0043840082,-0.0045688758,-0.0344985984,0.0235423502,0.0158156306,-0.0137179466,0.0006687311,-0.0059534982,-0.0237687193,0.0003263483,0.0278433561,-0.0237687193,0.0057686302,0.0003961453,0.0211730246,-0.0358568095,-0.0442777276,0.0359775387,-0.0106846048,0.0192866176,0.0221690461,0.0146611491,-0.0102846874,0.019754447,0.0123295514,0.0157854483,0.0066891965,-0.0170832947,-0.0199657232,-0.020795742,-0.0207353774,-0.0063043698,0.0187131502,0.0141178649,-0.0373357534,0.0192111619,0.0073456662,0.0174002107,0.0081190923,0.0341665894,-0.0002527784,0.0014261232,0.0014978066,-0.0002321459,0.008458646,0.0403540023,0.000201256,0.0049763396,-0.0108128805,0.0041085929,-0.0012035272,-0.0348909721,0.0339553133,0.0087831076,-0.0176567622,0.0230745208,-0.0098696779,-0.0062251408,0.0082247313,0.0239950884,0.0087378342,0.0014968634,-0.0095225787,0.0040218183,0.01376322,0.037396118,0.0172643904,0.0151365241,0.025624942,0.0014779993,0.0290506575,-0.0048178816,0.0184264164,0.0174153019,-0.006194958,-0.0254891217,0.0005069717,-0.0250816587,0.024462916,-0.0041614124,0.0191357061,-0.039901264,0.0358568095,0.0052743917,0.0245383736,0.0302730482,-0.0053951219,-0.0035162612,-0.0067797443,0.0410180166,-0.0157099906,0.0001598729,-0.0009271687,0.0453039333,-0.0017138001,0.0158005394,-0.0085265562,0.0212484803,-0.0104431454,0.031389799,-0.0291713867,-0.0198449939,0.0013421781,0.0069117928,0.0288091972,-0.0011337302,-0.0031502985,0.0099904081,0.0210673846,-0.0077003106,-0.0008639741,-0.0099677704,-0.0139971348,0.0219124947,0.026153136,0.0040746378,-0.0085039195,-0.0312690698,-0.0050102952,-0.0018024612,-0.0032314139,-0.0224859621,0.0020316595,-0.0378790386,0.0086623775,0.0140876817,-0.0236630794,0.0335629396,0.0193469822,0.0223501418,0.0302881394,0.0084511004,0.0400219969,0.0070513869,-0.0067571071,0.0145706022,0.0136424899],"16":[0.0073595918,-0.0144398818,0.0392418467,0.0264358763,0.0354992077,0.0002439523,-0.0073945043,0.0358064398,-0.0238802694,-0.0100827804,0.0072339061,-0.0212548357,-0.0108648241,-0.0257376228,0.0344657898,0.0261146799,0.0106553482,-0.0168279093,-0.0033952575,0.067590937,-0.015557087,0.0203191768,0.0358343683,0.0405545607,0.0120728025,-0.0206822678,-0.0365605503,0.030667292,0.0327620544,-0.0249695443,0.0247879978,-0.0333765149,-0.0416159071,0.0858572498,0.0359740183,0.001276931,0.0158643182,-0.024145605,0.0535420775,-0.0161296558,-0.0276368726,0.0054882723,0.0157944933,-0.0116817802,-0.0148588335,-0.0211850107,-0.0324827507,-0.0377056859,0.028991485,0.0772547647,0.0136438729,-0.0462523103,-0.014013947,-0.035303697,0.0100967456,-0.0351081863,-0.0065461262,-0.0041266782,-0.0086304126,0.0225396212,-0.0143141961,-0.0196069572,0.023628898,0.0262682959,-0.051447317,-0.0152358906,-0.0231261551,0.0109206839,-0.0447999425,0.009761584,0.0424817428,0.0013965069,0.0032625895,0.0085536046,0.0185316466,-0.0691550225,-0.0628428161,0.0466154031,-0.0137835238,-0.0420907177,0.0045246826,0.0000282029,-0.0390742645,0.0262124352,-0.0217296481,-0.0224279016,-0.0347171612,-0.0093286661,-0.0466154031,0.0240338836,0.001815459,0.0436827354,-0.0101595884,0.0231261551,0.0046643331,0.0597704984,-0.0181825198,-0.004769071,0.0192019697,0.0639600158,0.017177036,-0.0224977266,-0.0348009542,-0.0466712639,0.0370353647,-0.0130363926,0.0230563302,-0.0013546117,0.0404987,-0.0131900078,-0.1020008698,0.0073316614,-0.0178752895,-0.0250672996,0.0041930121,-0.0262124352,0.0232239105,-0.0632896945,0.0156688076,-0.0351919755,-0.0664178729,0.0037426385,-0.0234333873,0.021352591,-0.0157665629,-0.0349126719,-0.0338513292,-0.0162693057,-0.0207241625,-0.0064972485,0.0313655473,-0.0022501219,0.0441575497,-0.0047167023,-0.0349126719,-0.0207381286,-0.0419510677,-0.0284747761,-0.0500228778,-0.0414762571,0.0258214138,-0.0356388576,-0.0170653146,-0.0191740412,-0.0036728133,-0.0259610638,-0.0031561058,0.0135461176,-0.0176937431,-0.0258214138,0.0071920105,-0.0143700568,-0.0420907177,0.0246343818,0.004220942,-0.0195510965,0.0283071958,0.0083301635,-0.0290194135,-0.030667292,0.0592118949,0.0193276554,-0.001243764,0.0159481093,-0.0004202613,0.0148169389,-0.0350802541,-0.0090074698,-0.0640158802,-0.0069092182,-0.0323151723,-0.0604408197,-0.0038089727,0.0487660207,0.0626752302,-0.0130014792,0.0086304126,-0.030667292,-0.0504976921,-0.0114723044,-0.0487660207,-0.0101945009,-0.0520059168,-0.0309745241,-0.0401635394,0.0532069132,-0.0136997327,0.0091052251,0.0464198925,0.0255421121,-0.0486822315,0.0522852205,0.0406942107,0.0133156935,0.0626193732,-0.044101689,0.035890229,0.0372588038,-0.001282168,0.0017980026,-0.0103900116,0.026785003,-0.0174982324,-0.0189924948,0.0279161744,0.0012603475,-0.0023810444,0.0252628103,-0.0373705253,-0.0219670534,-0.0051670759,0.0050972505,0.0162832718,0.0132319033,-0.0093426313,-0.0356109254,0.0159900039,-0.0233635604,-0.0301366206,0.006057349,-0.0292987153,0.0374543145,-0.0161575861,-0.0035541102,0.0295500867,0.0590443127,0.0020930148,-0.0311141741,0.043375507,0.0281396154,0.0133645711,-0.0534024239,-0.0203610715,-0.0388508216,0.0292987153,0.0072548534,-0.0177635681,-0.0333206542,0.0356388576,-0.0184338912,0.0231959801,-0.0309186634,0.0104738018,0.029131135,-0.0091610858,0.021422416,-0.0315889865,-0.0497435778,-0.0067381458,0.0585974306,0.0286563225,-0.0075620851,0.0139301568,-0.0161715504,0.03228724,-0.0362812504,0.0124917543,-0.0163391307,0.0151521005,-0.033097215,0.0410852358,-0.0222603213,-0.0215899982,-0.0134483622,-0.0220368803,-0.0151939951,0.0043431367,-0.0273855012,0.0007309841,0.0088259242,0.0136718033,-0.0029309189,0.0297735278,-0.0663061514,-0.0052613397,-0.0358343683,0.0092937537,0.0012036144,0.0175540932,0.0036763046,-0.0044862786,-0.0327899829,-0.0384318717,-0.0113466186,-0.0030705696,0.0052334098,0.0202772804,-0.0003692015,0.0280837547,-0.0054044817,-0.0228747837,0.0086234305,0.0231680498,-0.0285166726,-0.0001316862,0.0433475748,0.0139231738,-0.035303697,-0.0106483651,0.0107949991,0.0166323986,-0.0521176383,0.001900995,-0.0421186499,0.0166882575,0.0148309041,-0.0188249145,-0.0347171612,0.0272179209,-0.0243271515,0.0191461109,0.0028541111,0.0002775558,-0.0165905021,-0.0129456194,-0.0130433748,0.0541565381,0.0438223891,-0.0094264215,-0.0333485864,-0.050916642,-0.0575360842,0.0205845125,-0.0187411234,0.0045316652,-0.0273156762,0.0370912254,-0.0168837681,0.0341027007,-0.0101386402,0.0064832834,-0.0758582577,0.007485277,0.0401635394,0.0159900039,-0.055916138,0.0301924795,-0.0329017043,-0.0134972399,0.0074503645,-0.0497435778,-0.0202772804,-0.0534303561,0.0600497983,0.0198303983,0.050637342,0.0009915199,-0.0244388711,-0.0434313677,-0.0046433858,-0.0752437934,-0.0110603347,-0.0284887422,-0.0009906471,-0.0273855012,0.0010822929,0.0026009942,0.0019324165,-0.0062668249,0.0162274111,-0.0480956994,0.0053451303,0.0118353963,-0.0254303906,0.0057536084,-0.0007135278,-0.0240897443,-0.0311421044,0.0074363993,-0.0224837624,0.0434592962,0.0090633305,-0.0102154482,-0.0082324082,-0.0425096713,0.0167860128,0.0490173921,0.0163949914,0.0104668196,0.0308069438,0.0203471053,-0.0266872477,0.0285725314,-0.025248846,0.0312258955,0.0090493653,-0.0176518485,-0.0106274178,-0.0192159358,0.014677288,0.0405824929,0.0038054814,0.0242712907,0.0179870091,0.0411969535,-0.0035157062,0.0278463475,0.0450233854,0.0531789847,-0.0246343818,0.0080508627,-0.0051880232,-0.043515157,-0.0295780171,-0.0043571019,0.011374549,-0.0042628376,0.0097336536,0.0177775342,-0.0096987411,-0.0347171612,-0.0386832431,0.0373984575,-0.0172328949,-0.0180708002,-0.0464757495,0.0048144576,0.0154593317,0.0082952511,0.0301086903,-0.0012970058,-0.0413366072,0.013350606,-0.0264079459,0.0365046933,0.0335161649,0.0237126872,0.02421543,-0.0077506136,-0.0503301099,-0.0636807159,0.0108718062,0.0587650128,-0.0340747684,-0.0036658307,-0.0179311484,0.0634014159,-0.0233914908,0.0623400696,0.03228724,-0.0010962579,0.0181964859,0.0067451284,0.0255141817,0.0175261628,-0.0350523256,-0.0222184248,-0.0545754917,-0.0295221563,-0.0047760536,0.034493722,-0.0344657898,0.0262403656,0.0200538393,-0.0302762706,-0.0175540932,-0.0012612203,0.004622438,0.016213445,-0.0010421433,-0.0230144337,0.0434034355,-0.0278742779,-0.0210034642,0.0359460898,-0.0701605082,-0.0036064791,0.0147610782,-0.0194533411,-0.0186014716,0.030667292,0.062451791,-0.0070209387,0.0226653069,-0.0652448013,0.0056104665,0.0102084661,-0.0128199337,-0.0015475042,-0.0134972399,-0.0091890153,0.0095521072,-0.0082673207,0.0908288136,0.0047271759,0.0287959725,0.0133017283,-0.0288797636,-0.0294383671,0.0043431367,0.0062493687,0.0413366072,0.0264079459,-0.0165905021,0.0100408848,-0.0336558186,-0.0679261014,-0.0279720332,-0.0119750472,-0.0280139297,-0.0345495827,-0.0335720256,-0.0136648202,0.0520617776,-0.0103411339,0.018852843,-0.0286842529,-0.0282373708,-0.0291869957,0.0145236719,-0.0136857685,-0.0121635757,0.0426213928,0.0118563436,-0.0080857752,0.015333646,-0.0625076517,0.0154314013,-0.0104877669,-0.0420907177,-0.0225675516,0.0327899829,-0.0285585672,-0.0129386373,-0.0080787931,-0.015850354,-0.0210034642,-0.0491011851,0.0256957281,-0.0055476236,-0.0140488595,-0.0415321179,0.0069755521,0.0014733148,-0.0499949493,0.0410852358,-0.0257795174,-0.0270224102,-0.0283770207,0.01614362,0.0096708108,0.0361416005,0.0128897587,0.0401635394,-0.0439341068,-0.0271899905,-0.0356388576,-0.0232099462,-0.0040673264,0.0408617929,0.0471460745,-0.0419510677,0.0247461032,-0.0034319158,0.022162566,0.0226513427,0.0186294019,-0.0248019639,0.0056663267,0.0240199193,-0.0035925142,0.0007501861,0.0098733045,-0.0017962571,0.0063610892,0.0058024866,0.0022623413,-0.0134902569,-0.0224279016,-0.0078972466,0.0131271649,-0.035359554,-0.0029658317,-0.0077855261,0.0248298943,0.0068079713,-0.0367281325,-0.0348847434,0.0227211677,0.0019481272,-0.0034563546,-0.0200538393,-0.0212687999,0.0204448625,-0.0459171496,-0.021645857,0.006856849,0.0134483622,0.0343261398,-0.0367839932,-0.0060294187,-0.0139999818,-0.0008021187,0.0192438662,0.0298293885,-0.0217017177,0.0112348981,0.0095032295,-0.03242689,0.0189505983,-0.003760095,0.0342982113,-0.0108019812,-0.0292149261,0.0044827871,-0.0152498558,-0.0098663215,-0.0114373919,0.0180009753,-0.0087142037,0.0034633372,0.0094264215,0.0363929719,-0.056055788,0.0055650803,-0.0220787749,-0.0019446359,0.0341864899,0.0355550684,-0.0416159071,-0.0258772746,-0.0349406041,-0.0205007214,-0.002129673,0.044827871,0.000838777,-0.0225116927,-0.0520059168,-0.0085326573,0.0207520928,0.0268408637,-0.0131201828,0.0279301386,-0.0055999928,0.0076738056,0.0132528506,0.0225815177,0.0726742223,0.0137835238,-0.0058548553,0.0251929853,-0.0183640663,-0.0319520794,-0.0317844972,0.0349406041,-0.0392697752,0.0174004771,0.0367281325,0.0302483402,0.0154034719,-0.0372029431,-0.0058199428,0.0399121679,0.0117097106,0.0159620736,-0.024508696,-0.0178194288,0.0047376496,0.0407221429,0.0085047269,-0.0115910079,-0.0106553482,-0.026924653,-0.000548129,-0.009175051,0.0148588335,-0.0037915164,0.0216039624,-0.0077506136,0.0441296212,-0.0324548222,0.0309465937,0.016436886,0.0045875255,0.0209196731,0.0078064739,-0.0202912465,-0.0167301539,0.0166463628,0.0364209004,0.0023845355,-0.000164526,-0.0169116985,0.003683287,-0.0254024621,-0.0307790134,-0.0020738128,0.0128827766,0.0470622852,0.0011608464,-0.0272179209,0.0049296697,-0.0058967504,-0.0570054129,-0.0101526054,-0.0024665804,-0.0223720409,0.0075341552,-0.0108927544,-0.0336558186,-0.0009234402,-0.0133645711,-0.0385994501,-0.0135949953,-0.0090423822,0.0025276775,0.051586967,0.0090772947,0.0404707715,-0.0011241881,-0.0663620085,-0.0080648279,-0.0334044471,0.0104877669,-0.0402194001,-0.0125964927,-0.0223301463,-0.006895253,-0.0301924795,0.0124428766,-0.0598263592,0.0133645711,-0.0158922486,-0.0308348741,-0.0166323986,0.0109835267,0.0227072034,0.0097755482,-0.0058094687,-0.0172608253,0.0050029862,0.0166044682,0.0291590653,0.0136159426,0.005394008,-0.0199979786,-0.0340747684,0.0084279198,-0.0366722718,-0.0295780171,0.0092937537,0.0188807733,-0.0007711337,0.0542403311,0.0227770284,-0.0479001887,-0.0005891513,0.0272039548,0.0034581004,-0.0081625832,0.0059316633,0.0129037239,0.0064553535,-0.0119890124,-0.0012332902,-0.033823397,-0.0319520794,0.0109835267,0.0106972428,0.0155151924,-0.0138603318,0.0478722565,-0.0019184514,0.0211989749,-0.0053730602,0.0537375882,-0.0070488686,0.0279301386,-0.0075620851,-0.0526483133,0.0171211753,-0.0299690384,0.0105296625,-0.0080368975,0.0502742492,-0.0088189412,-0.0225954819,0.0148029737,0.0382642895,-0.0393256359,0.0397445858,0.0164927468,-0.0125964927,-0.0492687635,0.0066264253,-0.0365046933,-0.0076458757,-0.0251790211,-0.0262263995,0.0169256646,-0.0256538317,-0.0151800308,0.0020685759,-0.0193416215,0.008001985,0.002840146,-0.0151381353,-0.0494642742,-0.0222044606,0.0453026854,-0.0009827918,-0.0099501116,0.0018224416,0.0162972361,0.0090563474,0.0186852627,-0.0200119447,0.0218274035,-0.0313934758,0.0009758092,0.0104249241,-0.0161017254,0.0025172038,-0.0309745241,0.0086234305,0.0132388854,0.0446323603,0.0165486075,0.0254722871,-0.005579045,0.0353316255,0.0115560945,-0.035890229,-0.0217994731,0.0120797846,0.0085396403,-0.0032084747,0.0397166573,-0.0011695746,-0.0250672996,-0.0237685479,-0.0257655531,0.0532069132,-0.01005485,0.0327899829,-0.0035244343,-0.0236149319,-0.0222603213,-0.0085955001,0.0402194001,-0.0222742856,0.0357785076,0.0207381286,0.0193835162,0.0178613234,0.0112348981,-0.0006419568,0.0397445858,0.0409735143,0.0083790412,0.0020633391,-0.0202633161,0.019076284,-0.0256677978,-0.0420069285,0.0248717889,0.0114234267,0.0028436373,-0.0067800414,0.0039800447,-0.0428727642,-0.0452468246,0.0062458771,-0.0056174491,-0.0015588509,-0.0255141817,0.0181406252,0.0247461032,0.028097719,0.050776992,0.001534412,0.0274273958,-0.0090772947,0.0098802866,-0.0116747981,0.002749373,-0.0236568283,-0.0332089365,-0.0045805429,-0.0370912254,0.0418672785,-0.0017945115,0.0082812859,0.0154174371,0.0210174304,0.0076528583,0.00674862,0.0310583152,0.004217451,-0.0076319105,0.0000887,0.0111999856,0.0218413677,-0.0083231814,-0.0050309161,-0.0323710293,-0.0187690537,-0.0030967542,-0.009391509,0.0395211466,0.009391509,0.0448558033,-0.0054882723,0.0504138991,-0.0161715504,-0.0090842778,0.013797489,0.0025486252,-0.0100757973,-0.0248717889,-0.0178752895,0.0092658233,-0.0083720591,0.0415600464,0.0027441361,0.0300248992,-0.0092867715,0.0399401002,-0.0027930138,-0.0230842605,0.031700708,0.0249555781,0.0157944933,0.0166742932,-0.0080508627,0.015557087,-0.026715178,0.0214084517,0.0549944416,0.0174004771,0.0425096713,0.0052962527,-0.0320917293,0.0058827857,0.0103201866,-0.0145097068,0.0107042259,0.0082114609,0.0249416139,0.0088468716,-0.0074363993,0.0217156839,0.0025713183,-0.0222882517,-0.0036099704,-0.0069162007,-0.0004078237,0.0166603271,-0.0199421197,-0.0289635547,0.0357505791,0.011374549,0.069322601,-0.048514653,-0.0005952611,-0.0130154444,-0.0311421044,0.0096777929,0.0294383671,0.0210732892,0.0230283998,0.0123939989,-0.0249835085,0.0079670725,0.0002939211,0.0189924948,-0.0187969841,-0.0094613349,0.0205146875,0.0107670687,0.0179032199,0.0370074324,0.0089166965,0.0391859859,-0.0015317935,-0.00895161,0.0066578467,0.001530048,0.0201655608,0.0018241872,0.0517545491,0.0294104367,-0.0121216802,-0.022162566,0.0156967379,-0.0362253897,-0.0114234267,0.0154593317,0.0021628402,0.0242293961,0.0179590788,-0.0269805137,-0.0334882364,0.0143700568,0.0308069438,-0.0245924871,0.0247600675,-0.0394932181,0.014747113,0.0250672996,-0.0090354001,0.0083231814,0.0251929853,0.0064797923,0.015487262,-0.0187271573,-0.0077994913,0.0016190752,0.011227916,-0.03228724,0.0207939893,0.0242293961,0.0130573399,0.0032975019,-0.0096358983,0.0107810339,-0.0122124534,-0.0159062147,-0.0037496211,-0.0527321026,0.0078972466,-0.0348847434,0.0497156456,-0.026561562,-0.0274273958,-0.0321475901,0.0220927391,0.0088957492,-0.0034738111,0.0088887671,0.0043431367,0.0356947184,0.0050763027,0.0366164111,-0.0053137089,-0.0063157026,0.0353874862,-0.0048388964,0.0206403732,-0.0171910003,-0.0225815177,-0.0287680421,0.008735151,0.0342423506,-0.0056942571,0.0431799963,-0.0138044711,-0.0049087219,0.0296059474,0.0052438835,0.0155151924,0.0158643182,0.0102992384,0.0286283921,-0.0094264215,-0.0049820384,0.0208079536,0.0100129545,0.0247461032,-0.0114164446,-0.0059840321,-0.0167720485,0.0096079679,-0.0142792836,-0.0250393692,0.036169529,0.0288518332,-0.0219530892,0.041169025,-0.0056314142,0.0111231776,-0.0012411455,0.0222742856,-0.0441854782,-0.0328737721,0.0007226923,0.0115351472,-0.0258214138,-0.0022099721,-0.0186573323,-0.0144119514,0.0000019332,-0.0095660724,0.0059002419,-0.0026952585,0.0051391455,-0.0099291643,-0.0169116985,0.041308675,-0.0099920072,0.0118353963,-0.007338644,0.0001128116,-0.0187969841,0.0294383671,-0.0173306502,-0.0039172019,0.0477884673,0.0044653309,0.0022413936,-0.0076947534,-0.0177635681,-0.0122403838,-0.0100129545,-0.0205286518,-0.0074713123,-0.006605478,-0.0210174304,0.0122613311,0.0108368937,0.0289356243,-0.0055196937,-0.0021715683,0.0062179472,0.0152219255,0.0146633228,0.0194952376,-0.0110184401,-0.035890229,0.0150543451,0.0591560341,-0.0387111716,0.0355550684,0.0006834156,-0.0009714451,-0.0156827737,0.0075620851,0.0051984973,-0.0491570458,-0.0208498482,-0.0139161916,-0.0370632932,0.0118004838,0.0129526015,-0.0047900188,0.0127361435,-0.0033097214,0.0225675516,-0.0110114571,-0.0235311426,0.0236149319,0.0334044471,0.002220446,0.000581296,0.0110184401,0.0004464458,0.019592993,0.0672557727,0.0076179453,-0.0245924871,0.0099012339,0.0081695653,0.0084977448,-0.002278052,0.0008998741,0.0209895,0.0454702675,-0.0146353925,-0.015780529,-0.0116538508,0.0349126719,0.0115910079,-0.0132737989,-0.0068009887,-0.004845879,0.0113396365,-0.0261845049,0.0113536017,0.0379570574,-0.0311979651,-0.009831409,-0.0013764321,-0.012254348,0.0336278863,-0.0052508661,-0.0028645848,-0.0031857814,0.0149286594,-0.0104319071,0.026421912,0.0271760244,-0.0203191768,0.004364084,0.0084139546,0.018783018,0.0084418841,0.0170653146,-0.0217715427,-0.0190343894,0.0059072245,-0.0575360842,0.0043501193,0.0087211858,-0.0091959983,-0.0095660724,0.0154732969,-0.0248159282,-0.0478163995,-0.003760095,0.0048703179,-0.0169116985,-0.0020912692,-0.000745822,0.0557485558,-0.0104388893,0.019592993,0.0056663267,-0.0351081863,0.0137067158,-0.041029375,-0.0053905169,-0.0074782949,0.0054463772,0.0094892643,-0.0108997365,0.0020266806,0.0002251867,0.0272598155,0.0209615696,0.009244876,0.0127850212,0.0401076786,0.0112558464,0.0337396078,0.0150264148,0.0271201655,-0.054379981,-0.0165625717,0.0240199193,-0.0091401376,0.0319520794,-0.044827871,-0.041169025,-0.0033498711,0.0058758031,0.0317565687,-0.0064693186,-0.0258353781,0.0358064398,0.0060329102,0.0023566054,-0.007743631,-0.0062493687,-0.0135670649,-0.0111720553,-0.0249974746,-0.0325944722,0.0196348876,-0.004807475,-0.0307790134,0.0430403426,-0.0075830328,-0.0091471206,-0.0032521156,-0.0006415204,-0.0308348741,-0.0192857608,-0.0210453589,0.006856849,0.0238663033,-0.0130573399,0.0070733079,0.0199979786,0.0141186854,-0.0156827737,-0.0119820293,-0.0223580766,0.005980541,0.0112069678,-0.0086792903,0.0067311632,-0.0105366446,-0.0010351607,0.023112189,-0.043375507,0.0658592656,-0.0012812951,0.0041615907,0.0224418659,0.0283909868,0.0045142085,0.0265196674,-0.0059246807,0.0062144557,-0.0151241701,0.0276368726,0.0056244317,-0.0301086903,0.0205146875,-0.0156408772,-0.0016042374,-0.0099989893,-0.00553715,0.0285585672,0.0070314123,-0.0029658317,-0.0330413543,-0.0192578305,0.0165206771,0.0264638066,0.023852339,0.0155850174,-0.0194254108,0.0169396289,0.0101386402,-0.0208777785,0.0198722929,-0.000610099,-0.0059770499,-0.0065391436,-0.039046336,0.0181964859,0.0077506136,0.0214782767,-0.0156129478,-0.0365326218,0.0469226316,-0.0138463667,-0.0296059474,-0.00630872,-0.0045700688,0.0313655473,-0.0170373842,-0.0292149261,0.0155710522,0.0134972399,-0.0072269235,-0.01005485,0.0058862767,-0.0038334115,0.0034581004,-0.0070034824,-0.0142443711,-0.0162832718,-0.0326503329,-0.0155850174,0.0052787964,-0.011667816,0.0312817544,-0.0142653184,0.0415879786,0.0080648279,-0.0091122082,0.0115141999,0.0002657727,-0.0183919966,0.0071920105,-0.0378732681,-0.0093984921,-0.0149984844,-0.0053206915,-0.0068428842,-0.0057850298,0.0048773005,0.0083790412,-0.0257934835,-0.021352591,0.0181545895,-0.0159062147,-0.0282373708,0.0094752992,0.0069022356,0.0050763027,0.0102922563,0.0453864746,0.0422303714,-0.0519779883,0.0219670534,-0.0067765499,-0.0039032369,-0.0365884826,-0.0082114609,0.0039625885,-0.0006607223,-0.0200398751,-0.0208777785,-0.0098942518,0.0009504975,-0.0153476112,0.0145376371,0.0040428876,-0.0032660805,0.0172189306,-0.0167860128,-0.0163670611,0.0116329025,-0.0110952472,-0.0011014949,-0.0119331516,0.0053172,-0.0021977527,0.0041441345,0.0132598337,0.0226653069,0.000860161,0.0148309041,-0.0231540855,-0.0296897385,0.0044967523,-0.002239648,-0.0017927658,-0.0508607812,0.0001646351,-0.0058059776,0.02832116,-0.0037496211,0.0234473515,0.0024281763,-0.0335440971,0.0173725467,-0.026421912,-0.0024718172,0.0057640825,0.0199840143,-0.0286842529,-0.0135391345,0.0345495827,0.0230144337,0.0259052031,-0.0010255597,-0.0051147067,-0.0458612889,-0.0067765499,0.0046922634,0.0034249332,0.0023792987,-0.0107321562,-0.0235032123,0.0160598289,-0.0536258668,-0.0148029737,-0.0016574792,-0.0218413677,-0.0166323986,-0.0109416321,-0.0012315445,0.0021610945,0.0124638248,0.0056733093,-0.0036099704,-0.0046294206,0.0430124141,0.000364401,-0.0330692828,0.0094752992,0.000860161,-0.0109137017,0.0191321447,0.0055860276,-0.0032905196,0.0109137017,0.0378732681,0.0400518179,0.0133645711,0.0197326429,-0.0083022341,0.0163670611,0.0147610782,0.0028523654,-0.0008527421,-0.0464198925,0.0067171985,-0.0184757877,0.0328179114,0.0162553415,-0.0230563302,-0.011891257,0.0273994654,0.0101037277,0.0116747981,0.0016522423,0.0024561065,0.0015797985,0.007118694,-0.0127920033,0.0385994501,-0.0344657898,0.0251929853,0.0129735498,0.0258772746,-0.033097215,0.0129526015,-0.0220927391,0.0267710388,0.0044478746,-0.0025660815,-0.0307790134,-0.0405266322,0.0177496038,0.0103550991,0.0008531784,0.0001372504,0.0459171496,-0.0261565745,0.0456099175,0.004989021,0.017246861,-0.0091471206,0.0136299077,0.0096708108,-0.0027284254,-0.0439061783,0.0267431084,0.0079391422,-0.0002315147,-0.035303697,-0.0018014939,0.0450513139,-0.0326503329,0.0445765033,0.008881784,-0.012840881,0.0244668014,0.001900995,-0.0251790211,0.0133226765,-0.0349406041,0.0126802828,-0.0176378824,0.0056349053,-0.0230283998,-0.0234613158,-0.0424817428,0.0028191984,-0.0006877797,-0.0361416005,-0.0511121526,0.013350606,0.0092099635,0.0282653011,0.0040812916,-0.0039870273,0.0042907675,0.0142513532,-0.0018189503,-0.0354154147],"17":[0.0075025819,-0.0098524755,-0.0019897991,0.0504280403,0.0477848761,-0.0189773366,-0.0142627014,0.0471315086,-0.015458066,-0.0265504532,0.0078255525,-0.0344502516,-0.0123026008,-0.0305894483,0.0249912813,0.0375685953,-0.0126738315,-0.0213829149,-0.0432707034,0.0139360176,0.0200613327,0.0061216019,0.0179081913,0.0482303537,-0.0101049123,-0.0069531598,-0.0693162829,0.0307379402,0.0041763508,-0.0460326634,0.0291936193,-0.0228381418,0.0075879651,0.0317179896,0.0295203011,0.0131490082,0.0375982933,-0.0465969369,0.0014208873,0.0113670984,-0.0218135435,-0.0119684925,0.0239518341,0.0162005275,-0.0218283925,-0.0110998116,-0.0598127656,0.0128742969,-0.0001446641,0.0200464819,-0.0435082912,0.0400929637,0.0023369002,-0.018413065,-0.0135647869,-0.0373310074,-0.0277383924,0.0598127656,-0.0433598012,-0.0108028268,0.0276641455,-0.0534572862,0.0193634182,0.0340047739,-0.0194376633,-0.0198385939,-0.0164826643,0.0303221606,-0.0135128144,0.0242191218,0.0653366819,0.0148195485,0.0011823713,-0.01556201,0.0093847234,-0.0480224639,-0.0063554775,0.0391129144,-0.0036065108,-0.0286590457,-0.0016157837,0.0166014582,-0.0256594978,-0.0196752511,0.0139731411,-0.0431519113,-0.0014951335,-0.0338265821,-0.0488540195,0.0168093462,-0.0188733917,0.0533978902,0.0221996233,0.0072687063,0.0294609051,-0.01487152,-0.0154432161,0.0388753265,0.0293866582,0.0178784933,0.0178042464,-0.031094322,0.024055779,-0.0156956539,0.0117309047,-0.0008969873,0.0288223866,-0.011285427,-0.0058840141,-0.0296687949,-0.0984802023,0.0049782097,-0.0054162629,-0.0193337183,-0.0476957783,0.0174033176,-0.0372419097,0.0179230403,-0.0242636688,-0.0571992993,-0.0348957293,0.0141587565,0.0153541211,0.0015693797,0.0137281287,-0.0315991975,-0.0455277897,-0.0299954787,-0.0286441967,-0.0041243783,0.0312428139,-0.0003677509,0.0725831166,-0.0130227888,-0.0370934196,-0.0040983921,-0.0377467833,-0.0262089204,-0.0224223621,-0.0193782672,0.0157105029,-0.0220511314,0.0160371866,-0.0286887437,-0.0421718583,-0.0069531598,-0.0279462822,0.0200167838,-0.0458544716,-0.0632577911,0.0333811045,-0.054971911,-0.069494471,-0.0195416082,0.0517050773,0.0444883443,0.0372122116,0.0509923138,-0.0190664325,-0.0218877885,0.0037939826,0.1012718603,-0.0465672389,-0.0171657298,-0.0200910307,0.0000723901,-0.0406572372,-0.0482006557,-0.0546452254,0.0083601261,-0.0216353517,-0.0314210057,-0.0194376633,0.0008761056,0.035430301,-0.0906397998,0.0181160811,-0.0040352829,0.002524372,-0.0021828392,-0.0574665852,-0.0038162563,-0.0118868221,-0.0019471075,-0.0483491458,0.0016250644,-0.0200761817,0.026832588,-0.0120427385,0.0187694468,0.016987538,0.0986583903,0.02404093,0.0394099019,0.0013475692,-0.0316585936,0.0476066843,-0.0174627136,-0.0146487821,0.0315991975,0.0566350259,0.0433004014,0.0700290501,0.029713342,0.0394099019,-0.0205216594,0.00526777,-0.0347175375,-0.0605255291,-0.0115972618,0.0419342704,0.024026081,-0.0066970102,0.029728191,-0.0188139956,-0.0102756787,-0.0385486446,0.015547161,-0.009904447,0.0088649997,-0.0440428667,0.0715139732,0.0064705592,0.0231499746,-0.0194822121,0.0317179896,0.0546452254,-0.0558331683,0.0620698519,0.0137058543,0.0417263843,0.0022942086,-0.0312725119,-0.0324307531,0.0136093348,0.0056835492,0.0286441967,-0.0361133665,0.0207889453,0.012636709,0.0134385685,-0.002431564,0.0320446752,-0.0161411315,0.0135276634,0.0110849626,-0.0147527261,-0.0078997994,-0.000798147,0.0590406023,0.0385486446,0.0039758859,-0.0129708173,-0.0322228633,-0.0205810554,-0.0220214333,-0.0171954278,0.056338042,-0.0138543472,0.0090654651,0.0082042087,-0.0477848761,-0.0552094989,-0.0110998116,-0.0326386429,0.0130302142,-0.032282263,-0.0188882407,-0.0152204772,-0.0162450764,0.0228826888,-0.0121689579,-0.0033819159,-0.0093030529,-0.0193485674,-0.0277829394,-0.0040278579,-0.0054905089,0.0084714955,0.0106320605,-0.0107063064,-0.0045475815,0.0249764323,-0.0122432038,0.0136390328,0.0202692207,0.0109290453,0.0215017088,-0.0200761817,-0.022674799,0.0051712501,-0.0168984421,0.0442210548,0.009199108,0.0136984298,-0.0047369096,0.0550907031,0.0085977139,-0.0433598012,-0.018427914,0.0492697991,-0.0328762308,0.0066561745,-0.0188139956,0.0300845727,0.000285384,0.009889598,-0.0089763692,-0.0014310961,-0.0185615588,0.0129411183,0.0077587315,0.0171805788,0.0037995509,-0.0004867769,0.0115527138,0.04220156,-0.001489565,0.0121615333,-0.0294163581,-0.0285402518,-0.0488540195,0.0022255308,-0.015472915,-0.0192000754,-0.0390238203,0.0303518604,-0.0376576893,0.0158738438,-0.0383110568,0.045408994,-0.0554173887,0.0377170853,-0.0145151382,-0.0109958667,-0.0043805279,0.0187248997,0.0096891336,0.0205068085,-0.0113225505,-0.0064631347,-0.0326089449,-0.0298469849,-0.0184724629,0.031064624,-0.0109216208,-0.0030700818,-0.0013113741,0.0075359927,0.0319555774,-0.0370043218,-0.0015768043,-0.0007823697,-0.0298766848,-0.030916132,-0.0287035927,-0.0176260564,-0.0187545978,-0.0241597239,-0.0001628777,-0.0529227145,0.0097039826,0.0228826888,0.0044250754,0.016839046,0.0379843712,-0.0394099019,0.0191109795,0.0056538507,-0.0587733164,-0.0009262218,0.0075100064,-0.0163787194,-0.0159332417,-0.0265207551,-0.0002800475,0.0273671616,-0.0073281033,0.0167054031,0.0814926624,0.0630795956,0.0510517098,-0.0009512798,-0.0043359799,-0.0053197425,0.0511705019,0.0178933423,-0.0152798742,-0.0552688949,-0.0110032912,0.0433301032,-0.0580902509,-0.0107879778,0.0360539705,-0.0014988459,0.0067378455,0.0262089204,0.018323971,0.0432113074,-0.0244567096,0.0210859291,-0.0069865705,-0.014812123,-0.0284957048,0.0241894219,0.0145002892,-0.0174775627,0.0308567341,-0.0452308059,-0.0005234359,0.0076473621,-0.0249021873,0.0447853282,-0.0230014827,-0.0496558808,-0.0249170363,0.0032705464,0.0087165078,0.0454683937,0.0116121108,0.023892438,-0.021130478,-0.0324901529,-0.0073355278,0.0104538696,0.0245161057,0.0497152768,-0.0265356041,0.0020176414,-0.0413700007,-0.043597389,-0.0328168347,0.0189030915,-0.0186803527,-0.0202098247,-0.0013949011,0.0348660313,0.0476660803,-0.0035805246,-0.0151610803,-0.02265995,-0.0377764814,-0.0356678888,0.015636256,-0.0089986436,0.0052232225,-0.00664875,-0.0160223376,-0.0359648764,-0.0375388935,0.0324901529,-0.0276789963,-0.0052640578,0.028154172,-0.0137132788,-0.0276344474,0.0712169856,-0.0182645731,0.032252565,0.0306488443,-0.0321337692,0.0246645976,-0.0326386429,0.010565239,0.0005327167,-0.0811956823,-0.0661088452,-0.0051007164,0.0308270361,0.0003104421,0.0262237694,-0.0152947241,-0.0289411806,0.0088946987,-0.0498340726,-0.0650990978,-0.0169281419,-0.0269216839,0.0120724374,-0.0327277407,-0.0108547993,0.0334405042,-0.0386377387,0.0463296473,-0.0010023242,-0.0055313441,-0.026847437,0.0437458791,0.0103053767,0.0242042709,-0.0093550254,-0.001560099,0.0551798008,-0.0186358038,0.0439240709,-0.0235509053,-0.0249764323,-0.0690192953,-0.0403305553,-0.0089021232,0.052180253,-0.0443695486,-0.0031387594,0.0542888455,-0.0207889453,-0.0299657788,-0.0331435166,-0.0124139702,0.0158589948,-0.0002944327,-0.0419342704,0.0409839191,0.0208334923,0.0150719853,-0.0242636688,0.0137875257,0.0050858669,0.0110849626,0.0132826511,-0.0347472355,-0.0056538507,-0.0249318853,0.0094960928,-0.0059137125,0.0005132271,0.0015424655,-0.048141256,-0.017017236,-0.0066895857,0.0140473871,0.0241003279,0.0114561934,0.0165866092,0.0246497486,-0.03958809,0.0136761563,-0.0226005539,-0.0572289973,-0.0242785178,0.0062589576,0.0080482913,0.0251397751,-0.0246497486,0.0224520601,-0.0111220861,0.0230163317,-0.0044139386,-0.0166460052,-0.0035712437,0.036766734,0.0412215069,-0.0259713326,0.0089837946,-0.0102459798,-0.004254309,0.0058580278,0.0026246044,-0.0274414066,0.0285847988,0.0392020121,-0.0064260112,-0.0167202521,-0.0079814699,0.0321634673,-0.0145225627,0.0541997515,-0.009184259,-0.0039461874,-0.0034190391,0.0004522059,-0.0054014134,-0.0272483677,-0.0151685057,-0.0109810177,0.0520020612,-0.0006171718,-0.0313913077,-0.0148863699,0.013401445,0.0199276879,-0.0514080897,0.0086719599,-0.0238033421,0.0188436937,-0.016824197,0.0379843712,-0.0125253396,0.0210710801,0.0265653022,0.0124436682,0.0088798497,-0.019794045,0.0046923617,0.0186209548,0.0151462313,0.0114784678,0.0117234802,-0.0002953608,-0.0034654429,0.013431143,0.0244864076,0.0003893287,0.009258505,-0.0282581169,-0.007090515,0.0164678153,0.0205216594,0.0111666331,0.0116046863,-0.0407760292,-0.0066524623,0.0313616097,-0.0013187987,-0.0124956407,-0.0270256288,0.0182794221,0.0011823713,-0.0186803527,-0.0097485306,0.0215165578,-0.0213235188,-0.0278126393,0.0035044223,-0.0153838191,0.0188733917,0.0012891003,0.0338859819,-0.0403899513,0.0036492024,0.0210562311,0.0083601261,0.0012092855,-0.0051601133,-0.0213977639,0.0184724629,0.0049262377,0.0147601506,0.0345096476,-0.0109290453,-0.0352224112,0.0360836685,0.004599554,-0.01055039,-0.0308270361,-0.0126886815,-0.0262386184,0.0053717149,0.0687817112,-0.0082116332,-0.0194525123,-0.0144260433,-0.0405681431,0.0287332926,-0.0171805788,0.0239518341,0.0253476631,0.0032556972,0.0110478392,0.003632497,0.0256891958,-0.0335889943,0.0423500501,-0.0195713062,0.0251249243,-0.0306785442,0.029728191,-0.013401445,0.0267286431,0.0411027148,0.0344799496,-0.0292381663,0.0574962832,0.03682613,0.0091619855,0.0160817336,0.0124659427,-0.0108028268,-0.0490619093,0.0080705658,0.0146413567,-0.0076919096,0.001465435,-0.0326089449,-0.0215611067,-0.0162599254,0.001214854,0.0118868221,0.0036083669,0.0424985439,-0.0176112056,-0.002464975,-0.0318070874,0.0265504532,-0.0246348996,0.0131935552,-0.0107657034,0.0028566238,-0.0034357444,-0.0176706035,-0.0585654266,-0.0137429778,-0.0101420358,-0.0433301032,-0.0084417965,-0.0239666831,0.0022348117,0.0090283416,-0.0026988506,0.0165272113,-0.0133717461,-0.0358757786,0.0087016588,-0.0137281287,0.0321040712,-0.0178339444,-0.0046775127,-0.0020306346,-0.0013911888,-0.0255555529,-0.0324901529,-0.032698039,-0.012696106,-0.0386971347,-0.0140845105,0.0324307531,0.0142033044,-0.0048037311,0.0501310565,-0.0061772866,-0.0284363069,0.0083972486,-0.0042580212,0.0153392721,-0.0380140692,0.0006366614,-0.0125995856,0.0037215925,-0.0122135049,-0.0511111058,0.003823681,-0.0288966335,-0.0229866337,-0.0117383292,-0.0051898118,0.0071165012,-0.0385783426,0.0086051384,0.049477689,0.0195119102,0.0123248743,-0.001560099,0.0150571363,0.0060213692,0.0166905522,0.0209522862,-0.0025559266,-0.006633901,-0.014797274,-0.0142107289,0.0312725119,-0.0046366774,0.0547046252,-0.0058134799,0.0548234172,0.0059062876,0.0121244099,0.0229866337,-0.0083527016,0.0015573148,-0.023892438,0.0189624876,-0.0162153766,0.0217095986,-0.0093995733,0.0161708295,0.0012176383,-0.0061178897,0.0217838455,-0.0062700943,0.0007192604,0.0250506792,0.0124510936,-0.0022663663,-0.0105578145,-0.0104612941,-0.0108696483,0.0107879778,-0.0474878885,-0.0274562575,-0.0362618603,-0.038162563,-0.0050190454,-0.0194525123,-0.0365885422,-0.0173587687,0.0224669091,-0.0087239323,-0.0650990978,-0.0593969859,0.0393802002,-0.015517463,-0.002693282,-0.002013929,0.0387268364,0.0341532677,0.0148937944,-0.0276789963,0.0138097992,-0.0681283399,0.0180269852,0.0022589415,-0.0067118593,0.0045215958,-0.0111369351,0.0167351011,0.0062626698,0.0621292479,-0.0356678888,0.0180418342,-0.0114487689,0.0298024379,0.0041986243,-0.0132529521,-0.0152947241,0.0223926641,0.0285402518,-0.0110404147,0.0057689324,0.0218877885,0.0008524396,0.0257188957,-0.016853895,0.0312428139,0.0255407039,-0.0164678153,0.0034543059,-0.010505842,-0.0097411061,0.0062478203,0.0274562575,-0.0181160811,0.0162747744,0.0080854148,-0.0048371418,0.0063146423,-0.0142330024,0.0478145741,0.0118868221,0.0110329902,-0.009889598,-0.0173736177,0.0145077137,0.0179081913,-0.0525366329,0.0001230863,0.0127406539,0.0097039826,-0.0159035437,-0.0032946765,0.0101346103,-0.0207295474,0.0008529036,0.0392911062,0.0033039574,0.0097262561,-0.021145327,0.0122729018,0.0021995446,0.0117680281,0.0246794485,0.0066042026,0.0174924117,0.0032185742,0.0167796481,0.0073281033,0.0153541211,-0.0473097004,0.0062403958,-0.0425579399,0.0016519787,0.0104390206,-0.0308270361,-0.0394099019,-0.015651105,-0.0284660049,0.018427914,-0.0085383169,0.0482600518,-0.0251249243,-0.0157995988,-0.0158441458,0.0346284434,0.0074320477,-0.0277086943,0.0150942588,0.0356678888,-0.0070051323,0.0308270361,0.0342720598,-0.0092213824,0.0131490082,0.0119239446,-0.0104612941,0.006767544,-0.0000406034,0.0017930465,0.0075694034,-0.0193485674,0.0125327641,-0.0002244788,0.0062812311,0.0323713571,0.005230647,-0.009874749,-0.0202989206,0.005613015,-0.0029215892,0.0196010061,-0.0305894483,-0.0265207551,0.0092213824,0.0390535183,0.0302776136,0.0312725119,0.0388753265,0.022689648,-0.0167944971,-0.0158292968,0.0567241199,0.0096891336,0.0293569602,-0.0119016711,0.0001683301,-0.0109661687,-0.0073800753,-0.025436759,-0.0094441203,-0.0271295737,-0.0132826511,0.0178042464,-0.0050858669,-0.0232836194,-0.0139508666,-0.0235509053,0.0316585936,-0.0192743223,0.0194673613,0.0090209171,0.0078701004,0.0103647737,0.0504280403,0.0128148999,0.0285699498,-0.0538730659,-0.0067044348,0.0200019348,0.0034580182,0.022704497,0.053635478,0.0060510677,0.0138766207,-0.0120650129,-0.0040946798,-0.0598127656,-0.0145225627,0.0006983786,0.0139879901,-0.0129336938,-0.029535152,0.0269662309,-0.0050932914,0.019749498,-0.0051489761,0.0312131159,0.00562044,0.0101420358,0.0325495489,-0.0065188194,-0.0402711555,0.0050487439,0.0306785442,0.0060881912,-0.0202840716,-0.0185318589,-0.0102756787,-0.0225857031,-0.0064519974,0.0447853282,-0.0181012321,-0.0097485306,0.0179378893,-0.0123991212,-0.0016408417,0.017017236,0.0208780412,-0.0337077901,0.0207592472,-0.0383110568,-0.0090654651,0.0131193092,-0.0354897007,0.0071870354,0.024055779,-0.0170469359,-0.0106617594,-0.0353412069,0.025436759,-0.0396474898,-0.021189874,-0.0035062784,-0.0385486446,0.0023647426,0.0011582412,0.0202098247,0.0268919859,-0.0258970857,-0.0142552769,-0.0190812815,-0.0194376633,-0.0206850003,0.0117754526,-0.0035044223,0.0468345247,-0.0130227888,-0.0035990861,-0.0638517588,0.0035285521,-0.001987943,0.0352224112,-0.017017236,-0.0205513574,0.0412512086,-0.0337968841,0.0170766339,0.0143443719,0.0142107289,-0.0129930908,-0.0118571231,-0.0016761087,0.0037234486,-0.0398256779,-0.029698493,-0.0118645476,0.0284957048,0.0270404778,0.0115304403,-0.0028380621,-0.029579699,0.0246645976,0.0344502516,0.0158292968,-0.0082858792,0.0456465855,0.0169132911,0.023996383,0.0217838455,0.0092362314,0.0096297367,-0.0217095986,0.0222293213,-0.011270578,-0.0138172237,-0.0116046863,-0.0093624499,0.0144705903,-0.0104687186,0.0305894483,0.0029846986,0.0200910307,0.0014635789,0.0340047739,0.0002058013,0.0114042209,-0.0445774384,-0.0018292415,-0.0302627645,-0.0210413821,-0.0300548747,-0.024085477,0.0292975642,0.0135647869,-0.0089392466,-0.0198682919,0.0012213505,-0.0062218341,0.0330247246,-0.0500122607,-0.009213957,0.002765672,-0.0049485113,0.0117903017,-0.0033002449,0.0118719721,0.0009327183,0.0324604511,0.0083378516,-0.014151332,-0.0226154029,-0.0052343593,-0.0029234453,0.0137726758,-0.0191109795,-0.0280056782,0.0185912568,-0.0024965296,0.0024519819,0.0256001018,-0.0122209303,-0.0011879397,0.0133049246,0.0262831654,0.0236845482,-0.0153838191,0.0045661433,-0.0081373872,0.0279017333,0.0330841206,0.0167351011,0.0249467343,0.0149531914,0.0576447733,-0.0189327896,0.0121095609,0.0043545417,0.0108696483,-0.0218580905,0.0044733356,0.015472915,-0.0040835426,0.0311834179,0.0203286186,-0.0065707914,0.0105281156,0.0101791583,0.0058914386,0.0030775063,-0.0184576139,0.016824197,-0.0024445571,0.0023016331,0.018427914,0.0329356305,-0.0048668403,0.0067452705,0.022704497,0.0245309547,-0.0218432415,0.0710981935,0.0125476131,0.0184576139,0.0305003524,0.0158441458,-0.0111369351,-0.0127629275,0.0423500501,0.015472915,0.0126589825,-0.0210710801,-0.0071276384,0.0012993091,0.0096148867,0.0203434676,-0.0431816094,-0.0260010306,0.0213383678,-0.0128445979,-0.0010904915,0.0190664325,-0.0150868343,0.012696106,0.007361514,-0.0617134683,-0.0162153766,0.0120278895,-0.013356897,-0.0145893851,0.0269662309,0.0147230281,0.0015452497,0.0169132911,0.0380140692,0.0010459438,0.006348053,-0.0270701759,-0.0092956284,0.0132603776,-0.0123174498,0.009258505,0.0100455154,-0.0364994481,-0.0123471487,-0.0113670984,0.0011118373,-0.0136761563,-0.0222441722,-0.0312725119,-0.0038496673,-0.0329059288,-0.0151165333,0.0076919096,-0.0059990957,0.03112402,0.0152798742,0.0292678643,0.0451120101,0.0106469095,0.0088946987,0.0061921356,-0.0097559551,-0.0084269475,0.0145374127,-0.0227490459,-0.0307082422,-0.0005568467,-0.0334999003,0.0397365838,-0.0403008536,0.0355193987,0.0288075376,0.0124807917,0.0486461334,0.0308567341,0.0150200129,0.0041763508,-0.002990267,0.015636256,-0.0571398996,-0.0177596994,0.0230905786,-0.0047814576,0.0204622615,-0.0494182929,-0.001262186,-0.0105281156,-0.0196455531,-0.0302627645,0.0119536435,-0.0051229899,-0.0080928393,0.0176557545,0.0189179406,0.0147156036,-0.0130227888,-0.0269216839,-0.0033410804,-0.0016334171,-0.0007559194,0.0164826643,0.0331732184,-0.0269662309,-0.0131267337,-0.0232242215,-0.000369375,-0.0265801512,0.0198831409,-0.0127629275,0.0139063196,-0.0157847498,0.0196455531,0.0109661687,0.0188436937,0.0270701759,0.0288223866,0.0190812815,-0.0356381908,-0.015636256,-0.0343314596,0.0212641209,-0.0135796359,-0.0174181666,-0.028213568,0.0057912059,0.004944799,0.026788041,-0.0121986559,0.0031758826,-0.0060287942,0.0134682665,0.0087165078,0.0413403027,-0.0127777765,-0.014797274,0.0251991712,0.0053197425,-0.001083995,0.0057095354,0.0289411806,-0.05636774,0.003203725,0.0327574387,-0.0308864322,0.0071090767,-0.0165866092,-0.0024965296,0.0127035305,-0.0119981915,0.0140399626,-0.03094583,-0.0089318221,0.0139954146,0.0217541456,-0.0055944538,-0.0264168102,0.0036640516,-0.0243527647,-0.0245012566,0.0059137125,0.0205216594,-0.013342048,-0.029550001,-0.0478442721,0.0248427894,-0.0159332417,0.0088501507,0.0180566832,0.010594937,0.0044250754,-0.009919297,-0.0167944971,-0.0124956407,0.0198385939,0.0361430645,-0.0331732184,-0.0010329507,0.0027972269,-0.0006361974,-0.0148046985,0.0255852509,0.0005573108,0.0249021873,-0.0009986118,0.0031350472,0.0142627014,-0.0183091201,-0.0134088695,0.0053197425,0.0209671352,0.0039833104,-0.0188585427,-0.0172696728,0.0331435166,0.0335889943,0.0300697237,-0.0138246482,-0.0030422395,-0.0272483677,0.0404493473,-0.0174775627,0.003860804,-0.0239369851,0.0181309301,0.0047925944,0.0208037943,0.0047963066,-0.0145671107,0.0300251767,0.0403899513,-0.0071387752,0.0143220983,0.0166014582,0.0273226127,-0.0007679845,-0.0257634427,-0.0175666586,0.024011232,0.0258376896,-0.039469298,0.0051972363,-0.0120724374,-0.0124362437,-0.0369746238,-0.0308270361,0.0176112056,0.042290654,0.0019582445,-0.0259119347,-0.0170617849,0.0302330665,-0.0170766339,-0.0139954146,0.036796432,-0.0344799496,-0.0230163317,-0.0023406125,-0.0450823121,0.010654334,-0.0291193724,-0.0177299995,0.0064668469,0.0318367854,0.0115155904,0.0178933423,-0.0018607962,0.0153541211,0.0140473871,-0.0165272113,-0.0133940205,0.0288669355,0.0076844851,-0.009963844,-0.0103721991,-0.017002387,0.0076325126,0.0069160364,0.0200464819,-0.0097633796,0.0032371357,0.0220659804,0.0082413321,0.0274562575,-0.0103425002,-0.0246794485,0.0193337183,0.0309755281,-0.0058394661,-0.0305300504,0.0044139386,-0.0067861057,-0.012035314,0.0105281156,-0.018368518,0.0306785442,-0.015651105,-0.0320446752,0.0109884422,-0.0178933423,-0.0193337183,-0.0162005275,0.0132158296,-0.0243082158,-0.0084863445,-0.0042060493,-0.0044362126,-0.0113745229,0.0070422553,0.040805731,0.0406572372,0.0020380591,0.022541156,-0.0147898495,0.0177151505,-0.0072464324,-0.0151759302,-0.016839046,-0.0246645976,0.00285848,-0.0033707789,0.0016770368,-0.0092362314,0.0210562311,-0.0340047739,0.0265207551,0.0275899004,-0.0051229899,0.0048000189,0.0284808539,0.0011016285,0.0306488443,-0.0049744975,-0.0025949059,-0.0204028655,-0.0003111381,-0.001691886,0.009184259,0.0219471864,-0.0007285412,0.0185021609,0.0476066843,0.0188882407,0.0207146984,-0.0357272886,0.0182794221,-0.0261792224,0.0072538569,-0.0293272622,0.0175221115,-0.0001131095,-0.004562431,-0.0174775627,0.053576082,-0.0444883443,0.0454386957,-0.0073466646,-0.0083081536,0.0369152278,0.0439537689,-0.0315991975,-0.0080111688,0.0116343843,-0.0157253519,0.019794045,-0.022645101,0.0369449258,0.026847437,0.0024148587,-0.0026283166,0.0115601383,0.04220156,0.0159035437,0.0173884667,-0.0165717583,-0.0665840209,0.0255110059,0.0292233173,-0.0046144035,0.0027285491,0.0185912568,0.0067452705,-0.0224075131,-0.0251991712,0.0228826888,-0.0345096476,0.0231202766,0.0003396765,0.0035823807,-0.0115749873,0.0163193215,0.0017215845,-0.0210710801,0.0030682255,-0.009889598,-0.0125995856,-0.0403305553,0.0080111688,0.0145151382,0.0019953675,-0.0202989206,0.0227638949,0.0099267215,0.0470127128,0.0338859819,0.0330841206,-0.0024111464,-0.0087610558,-0.0022533732,0.0064297239],"18":[0.0006554564,-0.0099429786,0.0243276376,0.0088398159,0.0539388433,-0.0120912427,-0.016721623,0.0290160794,-0.021366518,-0.0107268048,0.0359689072,-0.0149943018,-0.0170699898,-0.0466811955,0.0579160377,0.036433395,-0.0303079411,0.0158361886,-0.0614867993,0.0043001571,0.0374784991,0.0074136881,-0.0235873591,0.0184924882,0.0019577506,-0.0033058589,-0.0339948274,0.0011739247,0.010458272,-0.0631125122,0.0255469233,-0.034198042,-0.0139709739,0.0027361335,0.0213810336,0.0074898936,0.0446490534,0.0124105792,0.0142612793,0.003284086,-0.0176360868,-0.0206262376,-0.0123670334,0.006963714,-0.0181876682,-0.0128895836,-0.0681057721,-0.0192472842,0.0124976709,0.049264919,-0.0598030239,0.0137895327,-0.0524002239,-0.0233115684,0.0157781281,-0.0283919219,-0.0122073647,0.0465941057,-0.0178828463,-0.0273613352,0.0197117738,-0.0420363024,0.0290015638,0.0173167493,-0.0621254742,0.025256617,0.0117719062,0.041862119,-0.0561451688,0.0509486943,0.0495552234,0.0132379513,0.043226555,-0.0310917664,0.0012165634,-0.0482198186,-0.0112275826,0.0274484269,0.0006486524,-0.0048843976,0.0020938315,0.0080124438,-0.042355638,0.0004025727,0.0134484228,-0.0733312815,-0.0249082502,-0.0027960092,-0.011401766,0.0453457907,-0.0472618081,0.0192327686,0.0259243213,0.0057153981,0.0075915004,-0.0008659282,-0.0217294004,0.0008550417,-0.0101679657,0.0090430304,0.0209455732,-0.0250534024,-0.0041658902,-0.0173748117,0.0418911465,-0.0165619552,0.0451425761,-0.0237325113,-0.0180134848,-0.0286241658,-0.0811114833,0.003710473,-0.0221503433,-0.0274339113,-0.0055448436,0.0155023374,-0.0360269696,0.015328154,-0.0265339632,-0.0114090238,-0.0123597756,0.0307724308,0.0179409068,0.0101679657,0.0157781281,-0.01234526,-0.0257501379,-0.0136008337,-0.0106469709,0.0028649569,0.0166490469,-0.0084406454,0.0719958767,0.0208439678,-0.0259678662,0.0075769853,-0.0501938984,0.0019668229,-0.0232680216,-0.0044344235,0.0235292967,-0.0399170667,0.0382623225,0.0025202185,-0.0409621708,0.0242115166,-0.0396267623,0.041862119,-0.0436329842,-0.0530098677,0.0358527862,-0.0352141112,-0.0226728953,-0.0359979384,0.0344012566,0.0427040048,0.0429652818,0.0442426279,-0.0249227658,-0.0377688035,-0.0250534024,0.0591353215,-0.0389880873,-0.0156620052,-0.0392493643,0.0326303877,-0.0539969057,-0.0468553789,-0.0643898621,-0.0327755399,-0.013136344,-0.0116993301,-0.0030264396,-0.0154152457,-0.0045215152,-0.0535904765,-0.0016574655,-0.0315272249,0.0535033867,-0.0357656926,-0.043110434,-0.00250026,-0.0044561964,0.0183908809,-0.0171861127,0.0303950328,-0.0526905283,0.0787309706,-0.0181876682,0.0387268141,-0.0225567725,0.0765246451,0.0573354252,0.0328336023,-0.0202778708,-0.0226003174,0.0201907791,-0.0084116152,-0.0127879772,0.0410202295,0.0688025132,0.0177376941,0.0584095567,0.0194650143,0.0263888109,-0.0067822728,0.0122654261,-0.0175489951,-0.036201153,-0.0283919219,-0.0051275287,0.020045625,0.0001372149,0.0171715971,-0.0395686999,-0.0068729934,-0.0608481281,-0.0120985005,-0.0006069209,0.0187537633,-0.0070580635,0.0855821967,0.0067895302,-0.0027125461,-0.0108284121,0.0571612418,0.0268678162,-0.0111840367,0.0234857518,-0.0142249912,0.0410492606,0.0028994307,-0.0084116152,-0.0066988096,0.0029266467,-0.0078164879,-0.0060855383,-0.0293499306,0.0118444823,-0.0099502364,0.0060492503,-0.0009834114,-0.024197001,0.0207713898,0.0091156065,0.006738727,-0.0170845054,-0.0500487462,0.0233115684,0.0731571019,0.0278838854,-0.0159232821,-0.0122726839,-0.0260839891,0.0012401508,-0.0515583344,-0.0202052947,0.063460879,-0.0070870938,0.0204665698,-0.0079543833,-0.0193198603,-0.0654930249,-0.0233260822,-0.0244873073,0.0096599301,0.002179109,-0.0218310077,-0.0207133293,-0.0146822231,0.0456070639,0.0152555779,0.0201617479,-0.0357366614,-0.0273032747,-0.011096945,0.01759254,0.0209455732,-0.0001626167,0.0073665134,-0.0040243664,-0.0434297696,0.0132960128,0.0213229712,0.0106469709,0.0043582181,0.0310046747,0.0203214157,-0.0013898397,-0.0378849246,0.0178102702,0.0170554742,0.0503680818,-0.0377978347,0.0526324697,0.0226728953,0.0303369723,-0.0052037342,-0.0210616961,-0.0371011011,0.0646801665,-0.0067931591,0.0089196507,-0.0538807847,0.0159958582,0.0093696248,0.012947645,0.0053198566,-0.022571288,-0.0083680693,0.0328626335,0.0089269076,0.0113291899,-0.0228470787,-0.0092244716,0.003984449,0.0435749218,-0.0374784991,0.0070544346,-0.0532130785,-0.0105090756,-0.0947558582,-0.0354753882,0.0374494679,-0.0000737672,-0.0267371777,0.0229341704,-0.0119243171,0.0214245785,-0.0312078893,0.0518776737,-0.0229631998,0.0424427278,0.008382584,-0.0230938382,-0.0353012048,0.0405267105,-0.0239647552,-0.0066770366,-0.0028068956,-0.0071959589,-0.0296547525,-0.0386397205,-0.0208729971,0.0451425761,0.002663557,-0.0190150402,-0.0156329758,0.0200311095,-0.0063468139,-0.0189424623,-0.0210471805,0.0128750689,-0.0071161245,0.0159087665,-0.0201036874,0.0023678078,0.0144354636,-0.056435477,0.000737105,-0.0605578199,-0.0034854857,0.0533582345,-0.0123670334,0.0203359313,0.0270129684,-0.0356205404,-0.0246614907,-0.0116920723,-0.0467682891,0.0143774021,0.0057299137,-0.0103494069,-0.0289144721,-0.0329206958,-0.027521003,0.0283193458,0.0406138003,-0.0012492228,0.0121130161,0.0515583344,0.007417317,0.0066371197,0.005472267,0.0563193522,0.0468263477,0.0201762635,0.0020811309,-0.0678154677,-0.0059331278,0.0342270695,-0.0185940955,-0.0133903623,-0.027521003,-0.0044852267,-0.0208875127,0.036433395,0.0137822749,0.0425007902,-0.003803008,0.0429943092,-0.0074463477,-0.0543743037,-0.035823755,0.0316143185,0.0230067465,0.0233405977,-0.0129186148,-0.0013145417,-0.0178102702,0.0096091265,-0.0107485773,0.0273177903,-0.012758946,0.0064665652,-0.0397719145,0.0240808781,0.0195085593,0.050135836,0.0291467179,0.0062452066,-0.0298724826,-0.056058079,0.0199149884,-0.0508325696,0.0205826908,0.0564064458,-0.0122218803,-0.0494971648,-0.0335883982,-0.0119388318,0.0003102645,0.0052799396,-0.0070653209,-0.0033548481,0.0075479546,0.0187973101,-0.0022371702,0.001760887,-0.0061399709,-0.0021972531,-0.0230938382,-0.0374494679,0.042239517,-0.0132016633,-0.0075987582,-0.0005007777,-0.0466521643,-0.0062778662,-0.0332980938,0.0486843064,-0.0016075692,-0.011779164,0.0183908809,-0.027898401,-0.02688233,0.0635770038,-0.0060746521,0.0313530415,0.0031135313,-0.0212939419,0.0497294106,-0.0543452725,0.0132379513,0.0260259286,-0.0533582345,0.0025020745,-0.0076205311,0.0382042639,-0.0170699898,0.0194359832,0.0041695191,-0.0168667752,-0.0147330267,-0.0245163366,-0.0216423087,-0.0011512445,-0.0177667234,0.0424427278,-0.0170119293,0.0046267509,0.0026526705,-0.0561451688,0.0503680818,0.0134847108,0.0476101749,-0.0031824789,0.0113219321,0.020118203,-0.0093405936,-0.0227309559,0.005417835,0.0639253706,-0.0176796317,0.0043836199,0.0134701962,-0.0844790339,-0.0326013565,-0.0056500793,-0.009739765,0.0620093495,-0.0250534024,0.0011893471,0.0378849246,-0.023442205,0.0063831019,-0.0286386814,-0.0060057044,0.0238341186,-0.0107413204,-0.0288128648,0.013818563,0.0219906755,0.0245453678,-0.0319336541,-0.0018298347,0.0179989692,0.0178393014,-0.0115178889,-0.0064193904,-0.0006772294,-0.0373623744,-0.0058097476,-0.0257646535,-0.0114525696,-0.0176215712,-0.0445329323,-0.0319626853,-0.0126573397,-0.0308595225,0.0232825372,-0.0304821245,0.0030572845,-0.0004497474,-0.0269984528,0.0333851837,-0.0358527862,-0.047523085,-0.007700365,0.0150959091,0.0311207976,0.0100010401,-0.0226874091,0.0238341186,-0.0005166539,0.0086801481,0.0061254553,-0.0364624262,-0.0101244198,0.0321078375,0.0442426279,-0.0095075201,-0.0001632971,-0.000070592,-0.000506221,0.0230502915,0.0165038928,-0.037565589,0.0067423554,0.0104219839,-0.0065282551,0.0210762117,0.0289289877,0.0110751716,-0.035823755,0.0037993791,0.0118807713,-0.006114569,-0.0348367132,0.021932615,0.0028377406,-0.0228761081,0.0082446886,0.0168812908,0.0341399796,0.0255178921,-0.010117162,-0.0017001042,0.0033022303,0.0317304395,-0.0469424725,0.001690125,-0.0442426279,0.027898401,-0.0335593671,0.0488294587,-0.0068040458,0.0456070639,0.0241679698,-0.0090285148,-0.005849665,-0.0205101147,0.0023569213,-0.0050368081,0.0013190777,0.0236018728,0.0326884501,0.014798346,-0.0234857518,0.0238486342,0.0208875127,0.0086003141,-0.0113146743,-0.0007788364,-0.0265194476,0.029596692,0.02098912,-0.0003948614,0.0474359915,-0.0317885019,0.0074390899,-0.0137822749,0.0025655788,-0.0310046747,-0.0217003692,0.0204665698,-0.0261420514,-0.0013481083,-0.0133540733,-0.0064665652,-0.0279709771,-0.041862119,0.0006178073,-0.0302208494,-0.0136371218,0.0225567725,0.0073374826,-0.0530388951,-0.0256049838,0.0310917664,0.0080487328,0.0145951314,0.0361430906,0.00237688,0.0105453636,0.0130419945,0.0291902628,0.0407589562,-0.0235438123,-0.037565589,0.0085567674,0.030424064,-0.0120622125,-0.0278258249,0.0154007301,-0.0530098677,-0.0066153468,0.0436329842,-0.0087527242,-0.0241824854,0.0019250913,-0.0119098015,0.0599191487,-0.0056283064,0.0030826863,-0.0027687929,-0.0407008938,0.0153571842,-0.0026653714,0.0417459942,-0.0127662038,0.0095365504,-0.021366518,0.0188844018,-0.0247195512,0.0312949829,0.015212032,0.0075479546,0.0538227223,0.0511228777,-0.0301627871,0.0636931285,0.0237615425,0.0407879874,0.0247050356,0.0048154499,0.0211197585,-0.0423846692,-0.0148128606,0.0473198704,-0.042094361,0.0043908777,-0.0689766929,-0.0167651679,-0.0077947145,-0.0137314713,-0.0012156562,0.033820644,0.0440684445,0.0089196507,-0.0020593577,0.0202198084,0.0308595225,-0.0074390899,-0.0200311095,-0.0019650084,0.020611722,0.0371591598,-0.0091881836,0.0251695253,0.0077874572,-0.0206552688,-0.0380300805,-0.0314401351,-0.0251114648,0.0150378477,0.0233986601,0.0016384142,0.0179263931,-0.0306853391,-0.0454038493,0.0244727917,-0.0214826409,0.0305982474,-0.0023351484,0.0087236939,-0.0189424623,0.0129694184,-0.0362882428,-0.0224406496,-0.0518776737,0.0213520024,-0.0476392061,-0.0368978865,0.0246179439,-0.0107340626,0.0129694184,0.0499326214,0.0176215712,-0.0449683927,0.0226003174,-0.0089922268,-0.0042965282,-0.0189279485,0.0160248876,-0.0324852355,-0.0026435985,-0.0209746044,-0.0433426797,0.0066008316,-0.0335303359,0.0014760243,-0.0389590599,-0.0051638172,0.0037449468,-0.0344883464,0.0105598792,0.0058750664,0.03457544,-0.0205101147,-0.0039771916,0.0144282058,0.0153426696,0.0071778144,-0.0025038887,-0.0241389386,-0.0017754023,-0.0000536669,0.0034401254,0.0164893772,0.0006119105,0.0277387332,-0.0017853816,0.0476392061,0.0006069209,0.0104727866,-0.0112348404,0.0136153493,0.0134919686,-0.0284935292,-0.0171861127,-0.0035907216,0.021932615,-0.0026780723,0.0291902628,-0.0188118257,-0.0097252494,-0.0083390381,0.0155603988,-0.0153571842,0.0305111557,-0.0142903104,0.007852776,-0.0322239585,0.001047823,0.03457544,0.0138693666,-0.0163151938,-0.0214536097,-0.0164458323,-0.0263162348,-0.0196246821,-0.0348367132,-0.0179554224,0.0021845521,0.0022952314,0.0145370699,-0.0830275044,-0.033936765,0.0619512908,-0.0188118257,-0.0005892303,-0.0202488396,0.0099066906,-0.0082737198,0.0247195512,-0.0074826358,0.0209310595,-0.0324562043,-0.0105381059,-0.0000296543,-0.0140653234,0.0116412686,-0.0128170075,0.0357947238,0.0287838355,0.0365495197,-0.0199149884,0.0318175331,-0.0196827427,0.0468263477,0.0189714935,-0.0324562043,-0.026200112,0.0460715555,0.0228470787,-0.0180715453,0.0089051351,0.0217003692,0.0212213639,0.0156910364,-0.0029230181,0.0223535579,-0.0134556806,0.013629864,0.0385526307,0.00617263,-0.0228615925,-0.0369849764,0.0514131822,0.0143193407,0.0517905802,0.0032096952,-0.0083172657,0.0169248376,-0.0151975164,-0.0074028019,0.0171715971,0.0175054483,0.0055266996,-0.0227019247,-0.0128097497,0.0416298732,-0.0297273286,-0.0137096988,0.0004989633,-0.0076132733,-0.0320788063,0.0153862154,-0.0013217992,-0.0552742518,-0.0058206343,0.0240808781,0.0014097983,0.0315562561,0.0092897899,0.0254017711,0.0060601365,0.0347205922,0.0357366614,-0.0205391459,0.017215142,0.0283338614,0.0094567165,-0.0134193925,0.0062742373,-0.0554484352,0.0179844536,-0.0450264513,-0.0327174813,0.0135355145,-0.0327755399,0.0087890122,-0.0114453118,-0.0218745526,0.0284935292,-0.0157345831,0.0166345313,-0.0431975238,0.0032496122,-0.0060637654,0.0424137004,0.0123597756,0.0259388369,0.0122291381,0.0181296058,-0.0109300185,0.0484230332,-0.0281016156,0.0358527862,0.0034455687,0.0065935738,-0.0154007301,-0.0212794263,-0.0026817012,0.0115686916,0.0195085593,-0.0123888059,0.0107921232,0.0144717516,0.0247195512,0.0285661053,-0.0026581138,-0.0066262335,0.005719027,-0.0131145716,-0.0216277931,0.0098994328,-0.022237435,-0.0192617998,0.0133032696,0.0039663049,0.0052617951,0.0283919219,0.0171715971,0.0294660535,-0.0427910984,-0.0121783344,0.0572483316,0.0039880779,0.0532421097,0.0000861279,-0.0042348378,0.0127371736,-0.0050114063,0.022310013,-0.0046557817,-0.0309466142,0.0213084556,0.0082011428,-0.012308972,0.0061508571,-0.0062125474,-0.012758946,0.0026435985,-0.0144644938,0.0031988088,0.0250243731,-0.0102913454,-0.0182457287,0.0213229712,-0.000475376,0.0515002757,-0.0789051577,0.0013199849,-0.0093260789,-0.0026526705,0.0180570297,0.0564064458,-0.002830483,-0.0163587406,0.0085857986,-0.0396848246,-0.0440394133,-0.0167071074,-0.0096671879,0.0255904701,0.0109009882,-0.0010568951,0.0283919219,-0.007700365,0.0597449653,0.029030595,0.0084696757,0.0044924845,0.0259823818,0.028653197,-0.0123742912,-0.049758438,0.0217148848,0.0359108448,0.0262146275,-0.0018053401,-0.0257065911,0.007700365,-0.005287197,-0.0154442769,0.0169248376,0.0188844018,-0.0089269076,0.0483649708,-0.0076713348,-0.0033530337,0.0248066429,0.0052980836,-0.0414556898,0.0305982474,-0.0335593671,0.0090938341,0.0161119793,-0.0423266068,-0.0214100629,0.0220051911,-0.0321368687,0.0134919686,0.0194650143,0.0210762117,-0.0282322541,-0.0076423041,-0.0171715971,-0.0113945082,0.0030336971,-0.0159377959,0.0198569261,0.0184199121,0.0005769831,-0.0402073748,-0.0175344795,-0.0231518988,-0.0008495985,0.0032477977,-0.0282322541,0.0481907874,0.0110824294,0.0049134283,0.004416279,0.0084841913,0.0088180434,0.0178102702,-0.004191292,-0.0139274281,0.0403525271,-0.0036651127,0.0124686407,0.0215987619,0.0145370699,0.0079326099,0.0171425659,-0.0058823242,-0.014762057,-0.0395106412,-0.0031879223,0.0042892704,0.0148781799,0.0530388951,0.0272452123,0.0134193925,0.0061399709,0.0248211585,0.0219471287,0.0273177903,0.007700365,0.018536035,0.0295096003,0.0159523115,-0.0319626853,-0.0263597798,0.0252130721,0.0057879747,0.0028014523,0.0077511687,-0.0093188211,0.0069056526,-0.0287548043,0.0058569224,0.0139346858,0.0158797354,-0.0076205311,0.0097252494,-0.0094276853,-0.0107630929,-0.0134121347,0.0344883464,-0.0516454279,-0.016199071,-0.0269549079,-0.0034110949,-0.035939876,-0.010269573,-0.0077947145,-0.0131145716,0.0151104247,-0.0078237457,0.0058968398,-0.0311498288,0.0108501846,-0.0198859572,-0.0101026474,0.0267807245,-0.0083970996,0.0003206973,-0.0200601406,0.0122581683,0.002104718,0.0039953357,-0.0087454664,-0.0202488396,-0.0018171337,0.0053888042,0.0068258187,0.0317304395,-0.004604978,-0.0410492606,0.0284790136,0.0010795753,-0.0052980836,0.0484230332,0.0104727866,0.0261565652,0.007889064,0.0378558971,0.0149217257,0.0133685889,0.0162716489,0.0100300703,0.0355044156,0.0353882946,0.0366366096,0.0113001587,0.0031806645,0.0415718108,0.009551066,0.0242695771,0.0115251457,0.008077763,-0.0074390899,0.0122001078,0.0180425141,-0.0022498711,0.0032096952,0.0294515379,-0.0203504469,-0.0017581654,-0.0005842407,-0.0185070038,-0.0089196507,-0.0247776117,0.0167071074,-0.0046666679,0.0100445859,-0.0009258038,0.0156329758,-0.0050912406,0.0362301804,0.0464779809,0.0102550574,-0.0034473832,0.0672348589,0.0263742954,0.01638777,0.0060347347,-0.0141016115,-0.0127734616,-0.0080051869,0.0087236939,-0.0092535019,0.0126791121,-0.0339948274,-0.0183037892,-0.0019287202,0.0119388318,0.0129186148,-0.0303079411,-0.0004998706,-0.0052218782,-0.0212649107,0.0098631447,0.0123742912,-0.014457236,-0.0020992749,-0.0034873001,-0.03457544,-0.0086293444,0.0071233823,-0.0017454645,0.0040388815,0.0190876164,0.015023333,0.0019377922,0.0135427723,0.0470876247,0.0182747599,0.0119606052,-0.0456941575,0.0102986032,0.0194359832,-0.0171570815,0.019406952,0.0114453118,-0.0535324179,-0.0120476969,-0.0187973101,0.0141669307,0.0033403328,-0.0209600888,-0.0195085593,-0.0110679138,-0.0247195512,0.0103276344,0.0155603988,-0.0001232666,0.0251985565,0.0308885537,0.0132306935,0.0330077857,0.0104002105,0.0164893772,0.008607571,0.0135209998,-0.0093478514,0.0096163843,-0.0127807194,-0.01234526,0.011213067,-0.0235728435,0.0194504987,-0.0640995502,0.0177376941,0.0093115633,0.0090938341,0.009739765,0.0429652818,0.0112566128,-0.0149652716,0.0017445573,-0.0104727866,-0.0394816101,-0.0334142148,0.0370720699,-0.0073556271,0.0228615925,-0.0476392061,-0.0144935241,-0.0052146204,0.0019377922,-0.0274339113,0.0028576991,0.0027887516,-0.0065645431,0.003398394,0.0210762117,-0.0009212678,-0.0020920173,-0.0331529379,0.008230174,0.0171570815,-0.0323110521,0.0137314713,0.0329206958,-0.0085640252,-0.0036360819,0.0032387257,0.0147693148,-0.0135935759,0.0067604999,-0.0075189238,0.0017899176,-0.0213084556,0.0153136384,0.0119170593,0.0156474914,0.0252275877,0.0133177852,-0.0010759464,-0.0127516892,-0.0256630462,-0.0193343759,0.0202923864,0.0098195989,-0.0331239104,-0.0250824336,0.0047283582,0.0130274789,0.0261565652,0.0024748582,-0.0216132775,-0.0062560933,0.0213229712,0.0090575451,0.0424137004,0.0092970477,0.0012011408,0.0199585333,-0.0088906195,0.0048444807,0.0319917165,0.0105381059,-0.017781239,0.0070108888,0.016910322,-0.0023206333,0.0203794781,0.0006717861,-0.0035471758,0.0301918183,0.0114090238,-0.0085640252,-0.028841896,-0.0120622125,0.0379720181,0.0144935241,0.0105090756,-0.03518508,0.0261710808,-0.0130710257,-0.0050948695,-0.0062996391,-0.0112058092,-0.0219471287,-0.0427620672,-0.0430814028,0.0260404442,-0.0237615425,-0.0063141542,-0.0001275759,-0.0015821675,-0.0069201682,0.0012328931,-0.0359108448,0.0152846081,-0.0051529305,0.0283193458,0.011060657,-0.0230067465,0.0083608115,-0.0079326099,-0.0266065393,0.0088906195,-0.0053416295,0.0169538669,0.0036324533,0.0143483719,0.0149217257,-0.0263742954,-0.0010559879,-0.017969938,0.0000692879,0.0290451106,-0.0247340668,-0.017403841,0.0371011011,0.0301627871,0.0115686916,0.0068693645,-0.0014596946,-0.0490036421,0.0044561964,-0.0356495716,0.0044525675,-0.0212939419,0.0082446886,0.0060274773,0.0435458906,-0.0159958582,0.0050259219,0.0108647002,0.0232680216,0.006361329,-0.0026544849,0.011779164,0.0382332951,0.0235873591,0.0047065853,0.0074681207,0.0331239104,0.0090720607,-0.0440103821,0.0196827427,-0.011590465,-0.0105961673,-0.0312949829,-0.005871438,0.0162716489,0.0431975238,-0.0056391931,-0.0010242356,-0.0044307946,-0.0121493042,-0.029901512,-0.0052545378,0.0280435551,0.0199004728,-0.0200601406,-0.0095728384,-0.0321658999,0.030540185,-0.0059440141,-0.0108429268,-0.0162716489,0.0022063253,0.0108574424,0.0332690626,-0.0252421014,0.0176360868,-0.0002642238,-0.0162135866,-0.0105163334,-0.0124904132,0.0174619034,0.0004499742,-0.0286096502,-0.0175635107,0.0239212103,0.0168667752,0.0020666155,0.0023315197,0.0065064821,0.0107703507,0.0110098533,0.0213374868,-0.0084261298,-0.0043437029,0.0070145177,0.0178393014,-0.0077076228,-0.0292628389,0.0488584898,-0.0045759473,0.0099429786,0.0221793745,-0.007475378,0.0152846081,-0.0125121865,-0.0037957502,0.0181150902,-0.0015785386,-0.0026272689,-0.0012564805,0.0024403844,-0.0354173258,-0.009776053,0.0068258187,-0.0188989174,-0.0167506523,0.0124323526,0.0215261858,0.0244582761,0.0175054483,0.0006708789,-0.0091010919,0.0069020237,-0.0081866281,-0.0050549521,0.0101026474,0.0278403405,0.0153571842,-0.0235728435,-0.0034673417,-0.0152410623,0.0048952838,-0.0058460361,0.0140580656,-0.0025057031,-0.0017227844,0.0139346858,0.035939876,0.0165764689,0.0056863679,-0.0014025406,-0.0056718523,-0.0011693886,0.0163297094,-0.0057916036,-0.0113509623,0.0424137004,0.0172006283,0.0341690108,0.0253582243,-0.0096744457,0.0257936828,-0.0011421725,0.0453167595,-0.0096599301,0.0182747599,-0.0219035838,-0.0024095394,-0.0079906713,0.0155894291,-0.0130347367,0.0347205922,-0.0373914056,0.0524002239,-0.0249808263,0.0021119758,0.0379429869,0.0151830008,-0.0251840409,-0.0190150402,0.0148564065,-0.0188698862,-0.0192617998,-0.012533959,0.0239502415,0.0070725786,0.0101099042,-0.0132742394,0.0023424062,0.0178683307,0.0486552753,-0.0045069996,-0.0201617479,-0.0466521643,-0.0033348897,0.0228615925,0.011474343,-0.0028649569,0.008418872,0.0249372814,-0.0051202714,-0.0339657962,0.0217148848,-0.0283628907,0.0099357208,0.021743916,-0.0090793185,-0.0379720181,-0.0025256618,-0.0043908777,-0.0171280503,0.0094639743,-0.0318755917,0.0046956986,-0.0155458832,0.0071814433,0.0028976162,-0.0013671595,-0.014798346,0.0329497233,0.03457544,0.0496132858,0.0113872504,0.0350108966,-0.0193924364,0.0228761081,0.0166490469,0.0068367049],"19":[-0.0039421413,-0.0166850295,0.0534513965,-0.006007554,0.0745570138,0.017439764,-0.0079786247,0.0278443228,-0.0120083699,0.0061726524,0.0261731241,-0.0049495776,-0.0152564244,-0.029272927,0.0541252643,0.0283834189,-0.0050068568,-0.0295424759,-0.0558503754,0.0213212576,-0.0093533201,0.0280869156,0.0260113943,0.011300806,-0.0178575646,-0.0089826919,-0.0287607852,0.0271300208,0.0113614537,-0.0791932419,0.0000480396,-0.0408095866,-0.0603787825,-0.0012424485,0.0267122202,0.003736611,0.0278982315,0.0269009043,0.0115905702,-0.0158089977,-0.0424538329,0.0319684073,-0.0001181379,0.0246636551,-0.0308363065,0.0048148036,-0.0414025933,-0.0237876233,0.0003318811,0.0693277791,-0.0467396453,0.0257822797,-0.0457692742,-0.0318875462,0.0532627106,-0.0131202554,-0.0050405501,0.0202834979,0.0156742241,-0.0251218863,0.0195152853,-0.0763899386,0.0444754437,0.0086727114,-0.0244075842,0.0102226129,-0.0090096463,0.0756891146,-0.0360924937,0.044771947,0.040863499,0.0164020043,-0.0069139097,-0.001291304,0.0250949319,-0.0472248346,-0.025283616,0.0516723767,0.0062366701,-0.0039556189,0.0051011983,0.0109369159,-0.0388688408,0.0392731652,0.0166041646,-0.0318066813,0.0017208963,-0.0138278194,0.0320223197,0.0017840717,-0.0255666412,0.0345830247,0.0128507074,0.0074193124,0.0156877022,0.0156742241,0.0037736739,0.0051281531,-0.0109571321,0.0441789404,0.0239358749,-0.0082010021,-0.0034232612,0.0089961691,0.0372785069,0.0211595278,0.0239089206,-0.0011961198,0.0114557957,0.0446102172,-0.0411869548,0.023046365,-0.0394618474,-0.0020755206,-0.0256744605,-0.0034535856,-0.0136863068,0.0029128045,-0.0082212184,-0.0077158152,-0.0154046761,0.0138952062,-0.0164154824,0.0168332811,0.0237876233,-0.0208225939,0.0169545785,-0.0363081321,-0.0535861701,-0.0068734773,0.0339630656,-0.0198791754,0.0301354825,0.0004801326,-0.0424268767,-0.0039387722,-0.0821582749,-0.0062130843,-0.0264696274,-0.0271704514,-0.0078775445,-0.0429659747,0.0357151292,-0.0232889596,-0.0625351667,0.0347177982,-0.0277095493,0.0459579565,-0.0111929867,-0.0170758739,-0.0151081728,0.0040128981,-0.0177766997,-0.0380062871,0.0448528081,0.0163076632,0.0259574857,0.0380332433,0.0088007469,-0.0381410606,-0.0083290376,0.0498933606,-0.0067589195,0.0003072428,-0.0113142831,-0.0020654127,-0.0314023569,-0.0662010238,-0.0885735154,0.0045486246,0.0085514151,-0.0364698619,-0.0147981923,0.0270626321,0.0323996842,-0.0031570825,-0.0374402367,-0.0493273102,0.0514297858,-0.0310249906,-0.0685191378,0.0096902559,-0.0103843417,0.0257822797,-0.0357959941,-0.0012744573,-0.0700825155,0.0427503362,0.0219681729,0.0272513162,-0.0380871519,0.0446910821,0.0104786837,0.0309441257,-0.0179249514,-0.0555808246,0.0315371305,0.0261461698,-0.0498124957,0.0336665623,0.0835599229,-0.0008819278,0.0585997663,-0.0051449998,-0.0024377259,0.0066814246,0.0058694105,0.0085581532,-0.0651228279,-0.0421034172,0.0120083699,-0.0062905797,-0.0171297844,-0.0076753832,-0.0320762284,-0.0122846561,-0.0438015722,-0.021011278,0.0111727705,-0.0022759971,0.0163346175,0.0462544598,0.0090702949,-0.0220086053,-0.0177632216,0.0464700982,0.0205665231,-0.0181136355,0.0193535555,-0.0296772495,-0.0125946365,-0.0449067205,-0.0098452456,-0.0420495085,0.0207147747,0.013800865,0.029272927,-0.0391653441,-0.0228576828,-0.0540713556,-0.0111121219,-0.0013452136,-0.0163211394,0.017534107,-0.0270087235,0.0076214736,-0.0302433018,-0.0589232221,-0.0125878984,0.0600553229,0.0180058163,-0.0171702169,0.0147847151,-0.0446641259,-0.0262000784,-0.0638289973,0.0200948138,0.0411060899,0.0162267983,0.0255531631,-0.0147173284,-0.0288416501,-0.001470722,0.0004405427,-0.0456884094,0.0044610216,0.0312136747,-0.0359038115,0.0002249042,-0.0333431028,0.0516993329,0.0238415319,0.0071834577,-0.0490308069,-0.0203643609,-0.0262809433,0.0155394496,0.0025792387,0.0037871513,-0.0108156186,-0.0154181533,-0.0262674652,0.0125676822,-0.0236798041,0.0151486052,-0.0057245283,0.003918556,0.0226824749,0.0283834189,-0.0419416912,-0.028302554,0.0074058352,0.0428851098,-0.0160515923,-0.01086279,0.0170354415,0.0001521473,0.0081807859,-0.043073792,-0.0247849505,0.0294077024,0.0024528881,0.0254453439,-0.0284103733,0.0062535168,0.0195961501,-0.0136997839,-0.0047777407,-0.0109369159,0.0104652066,-0.0052191257,-0.0054516112,0.0247175638,-0.0102428291,-0.0130730849,0.0120420633,0.0589232221,-0.0390305705,-0.0239763074,-0.0400009416,-0.0357959941,-0.0835060105,-0.0065399115,0.0380332433,0.0377906486,-0.0058929962,0.011920766,-0.0104786837,0.0326422788,-0.0055358447,0.0123655209,-0.0068701082,-0.0000662815,0.0173454229,-0.0277365036,-0.0304589402,0.0182349309,0.0195961501,-0.0188279375,0.027588252,-0.021712102,0.0010251253,-0.0357151292,0.0097576426,0.053828761,0.0232620034,-0.019218782,0.0131067783,0.0240032617,0.0109975636,-0.0231946167,0.000974585,0.042615559,0.0195018072,0.0268604718,-0.0068869549,0.0181271117,-0.0046126423,-0.033019647,0.006277102,-0.0240706485,0.0366315916,0.0044441749,0.0032716405,-0.0103371711,-0.0126215918,-0.0450954027,-0.0039690961,-0.0207821615,-0.0291651078,0.0308363065,0.02385501,-0.0121498825,0.0052427114,-0.0373054631,-0.0259170532,0.0433702953,0.0526157953,0.0112334182,0.0631281734,0.0455536358,0.0159168169,-0.0114086252,-0.0181271117,0.0365237743,0.0484108441,-0.0022406189,0.0325075053,-0.048949942,-0.0168737136,0.0181001574,0.0017352161,-0.0064792633,-0.0350143015,-0.0237876233,0.0038410609,0.0302702561,0.0266852658,0.0528853461,0.0307554416,0.0226016119,-0.0124868173,-0.0494890362,-0.033370059,-0.00925224,-0.0005765803,-0.0023012671,0.0046968763,-0.0226016119,-0.0263887625,-0.0175206289,-0.0175610613,0.0355803557,-0.0030374706,0.035337761,-0.0222242437,-0.0176284481,0.0665244833,0.0178710409,0.0852850303,-0.0178710409,-0.017439764,-0.0276286844,0.0027527604,-0.0400278978,0.0524271131,0.0568746552,-0.0154720629,-0.0071901963,-0.0356073081,-0.0283834189,-0.0258631445,0.0383027904,-0.0010697691,-0.02723784,0.0252431836,0.0281408262,-0.0154046761,0.030431984,0.0029599755,-0.0251218863,0.0140434578,0.0413217284,0.0153238112,-0.0175745394,-0.0249332022,-0.0247310419,-0.0282486454,-0.0154451085,0.0015507442,0.0545565411,0.0008537095,-0.0057346364,0.019852221,-0.0256879367,-0.0386532024,0.0303780753,-0.0015482171,0.036038585,-0.0398392156,-0.0452840887,0.0055223675,-0.0591388606,-0.0300276615,-0.0117051275,-0.0386262462,0.0633977205,0.0230059326,0.0378984697,-0.0198117886,0.0060479864,0.0160785466,-0.018073203,0.0122172693,-0.0332891941,0.0166445971,0.0464970544,0.0215234179,0.0077158152,-0.0143669154,0.0474674255,-0.026968291,-0.0150138307,0.062373437,-0.0030576866,0.0322918668,0.0194613747,0.0195422396,-0.029192064,0.0164828692,-0.0092185466,0.0123520438,0.0617804341,-0.0153238112,-0.0021007909,0.0038781238,-0.0626429841,-0.0077697248,0.0024208792,-0.0068903244,0.0587075837,-0.0145825539,0.0237606689,0.0475482903,-0.0285451468,0.0329657383,-0.0146229863,-0.0108021414,0.0050371806,-0.0553651862,0.0070958547,0.0270895883,0.0446371697,0.021712102,-0.0262405109,0.0355803557,-0.001587807,0.0229250696,-0.008901827,-0.026078783,-0.0011885389,-0.0304858945,-0.040755678,-0.0101754423,-0.0073182317,0.0036422692,-0.0670635775,-0.0175610613,-0.0130528687,-0.0283564646,0.007250845,-0.0167928487,0.0210247543,-0.0094813555,-0.0246232226,0.0152025148,-0.0235989392,-0.0390575267,-0.047602199,0.0257553253,0.0123453047,0.0290033799,0.0208495483,0.0290572885,0.0218603536,0.0025977702,0.0111862477,-0.0083290376,-0.0175745394,0.0414295495,0.0149329668,-0.0066881632,0.0168063268,-0.0049697938,0.0115299216,0.0197039694,0.0142995287,0.0091713751,0.0134639293,-0.0037568272,0.0132887233,-0.0084907664,-0.0139356386,-0.0270761102,0.0045115617,0.0071901963,0.0049630553,-0.0376019664,-0.0473056994,0.0207012966,-0.0012357098,-0.0078505892,0.0092724562,0.0387340672,0.0078168958,0.0214560311,-0.0559581928,-0.0084705502,0.0311867185,0.002629779,-0.0449606292,-0.0201217681,-0.0150812184,0.0510524176,-0.0145016899,0.0146095091,-0.0202834979,0.0065163262,0.0353647172,-0.0133898035,-0.0165098235,0.0123924753,-0.0112064639,-0.0122307464,0.0406209044,0.0227229074,0.011125599,0.0255127307,-0.0239897836,0.021267347,0.0122442245,0.0001525685,-0.0061120042,-0.0442058928,-0.0311597642,0.0321031846,0.0126148527,-0.0050675049,0.0406478606,-0.0301624369,0.0435589775,-0.0168871898,-0.0071025933,-0.0303241648,-0.0225342233,-0.0118129468,-0.0298659336,-0.008537937,-0.0018565127,-0.0189222787,-0.0454997271,-0.0146634188,-0.0188144594,-0.0299737528,0.0032345776,0.0209977999,-0.0044677602,-0.0251623187,-0.0235719848,0.0308093522,0.0022557809,0.0079853637,0.0370898247,0.001699838,0.0085177207,0.0199600402,0.0316988602,0.0242862869,-0.0078640673,-0.0146903731,0.0150003536,0.0179384276,-0.0125676822,-0.0076955995,0.0022338801,-0.0261731241,-0.0007859013,0.0283295084,-0.0012104396,-0.0094948327,0.0036827014,-0.0402435362,0.0700286031,0.0225611795,0.0285990573,-0.0057177898,-0.0314832218,-0.027763458,0.0161459334,0.0150946956,-0.019852221,0.0009366798,-0.0008364416,0.0136121809,-0.0227498636,0.0090500787,0.0135111008,0.0228576828,0.0282486454,0.0115231825,-0.0215234179,0.050459411,0.0137267392,0.0014210241,0.0112738507,0.0027072742,0.0184640475,-0.0178710409,0.0265370142,0.0552573688,-0.0477369763,0.0231541842,-0.0305398032,-0.014056935,0.0121094501,-0.0080864439,-0.0204047933,0.0134908846,0.0385184288,0.0266852658,0.0204721801,0.0026398872,0.0129248332,-0.0315640867,0.0091309436,-0.0450414941,0.0064758938,0.0518341064,-0.0319144987,-0.0059704911,-0.0122307464,-0.0126283299,-0.0525888428,-0.0286799222,-0.0358229466,-0.004848497,0.0162672307,-0.0197848324,0.0455805883,-0.0205934774,-0.0376558751,0.0264696274,-0.0096633006,0.0187470727,0.0014370285,0.0196770132,-0.0240706485,0.0347177982,-0.0267256983,0.0025657613,-0.0560660139,-0.008537937,-0.0186527316,-0.0243941061,0.0650150105,-0.0071430258,0.024030216,0.0278712772,0.0196904913,-0.0147308055,0.0104786837,-0.01761497,0.0056402949,0.0027611838,0.0431277007,-0.0245693121,-0.0225746557,-0.0057144207,-0.0351221226,0.0091511589,-0.0302972104,0.0044138506,-0.0074664834,-0.0023214833,-0.0053977016,-0.0372245982,0.0474943817,0.0494620837,0.0276556388,-0.0228576828,-0.0230598431,0.0119140279,0.0041678878,0.0056874659,-0.0104517294,-0.0298389792,0.0070217289,0.0030694795,-0.0207012966,0.0305128489,0.0037871513,0.028572103,-0.0320223197,0.002692112,-0.0096363463,0.0183157958,-0.0393270738,0.0104921609,-0.0127496272,-0.0426425152,-0.0195961501,-0.014151277,0.0079044988,-0.0056706187,0.063020356,-0.0022490423,-0.0220625158,0.016105501,0.0327500999,-0.002156385,0.0156203145,0.0010293369,-0.0141917095,-0.0408095866,-0.0066477307,-0.0140030254,0.0153911989,-0.0035277111,-0.0175071508,-0.0059536444,-0.0116040474,0.0139625939,-0.0052056485,0.024919726,0.0023703389,0.0033255501,-0.0046160119,-0.1108381972,-0.0375750102,0.0428311974,-0.0232620034,-0.0054954127,-0.0044475445,0.0278443228,0.0377097838,0.0282216892,-0.0145421224,0.0247310419,-0.0525079779,-0.031510178,-0.0218333993,-0.0073182317,0.0248388611,0.0013292092,0.0184640475,0.0019794942,0.0205126125,-0.0119679375,0.0240976028,-0.0402435362,0.0615647957,0.010856051,-0.0122374855,-0.0220759921,0.0381680168,-0.0071228095,-0.012635069,0.0026601031,0.0001674147,0.0157416109,-0.0003055581,-0.0018076572,0.0176284481,-0.0032345776,0.0096565615,-0.0025556532,-0.0034030452,-0.0266717877,-0.0433163866,0.0468744226,-0.0386801586,0.067710489,-0.0150273088,-0.0031789832,0.0459579565,0.0049327309,-0.0054145483,0.0277904123,0.0081538316,0.0023501229,-0.0018160805,0.0103573874,0.0205126125,-0.0507828705,-0.0072238902,0.0017369008,-0.0066005602,-0.0330735557,0.0156472698,-0.0026617879,-0.0558503754,-0.0046025342,-0.0048282808,0.0011472643,0.0421034172,0.0132887233,-0.0226150881,0.0171567388,0.0432355218,0.0278443228,-0.0290572885,0.0174667183,-0.0037029176,0.0148386247,0.0094678784,-0.0282216892,-0.0130461296,0.0359307677,0.0110784285,-0.0218468755,-0.0159033407,-0.0035546659,-0.0154451085,-0.0090096463,-0.0023585462,0.0063781827,0.0111727705,0.0253105704,-0.0084705502,0.0085311988,0.0183697063,-0.0006801879,0.0074193124,0.025283616,-0.0144612575,-0.0050843516,-0.0158089977,0.0301085263,-0.0116040474,-0.0010630304,0.0027780305,-0.0114153633,-0.0229924563,0.0137806488,0.0152564244,0.0148790572,0.0103439093,-0.0263887625,-0.0123520438,0.0286260117,0.0246636551,0.0192592144,-0.0000038136,-0.006007554,0.0004205372,0.0080123181,-0.0214829873,0.0162672307,-0.010593242,-0.0191918276,0.0375211015,0.0090837721,0.0336126536,0.0432624742,-0.0295963846,0.0118466401,-0.0104315132,0.0027813998,0.0551225953,0.0029549215,0.0480873883,0.0016947839,-0.022345541,0.0257014148,-0.0151755605,0.0176823586,0.0275208652,-0.0021816553,0.0066949017,-0.0111862477,0.0007707392,0.0084301177,-0.0183831826,0.0043700491,-0.0057413755,-0.0221838113,0.0311058555,0.022520747,-0.0248119067,-0.0187605508,0.060863968,-0.0206069555,0.037197642,-0.0526966602,-0.0042959233,-0.0074799606,-0.0036658547,0.0422921032,0.025000589,0.0419686437,0.0019508547,0.0013932269,-0.006455678,-0.0336935185,0.0075069154,-0.0106943222,0.0272782706,-0.0128372302,0.0198117886,0.0196365826,0.0113749318,0.0603248738,0.051618468,0.0028134086,0.0234776419,0.002754445,-0.0014269204,-0.0149599211,0.0069004325,0.0241919458,0.038356699,0.0306206681,-0.0362003148,-0.0388149321,0.0065129567,-0.0056672497,0.0247445181,0.0098385066,-0.0011910659,0.0139491158,0.0207821615,-0.0183427501,0.0036928095,0.0248119067,-0.0060648331,-0.0298659336,-0.001592861,-0.042372968,0.0280060507,0.0077764639,-0.0215773284,-0.0087872697,0.0283564646,0.006142328,0.0206743423,-0.0171702169,0.0194209423,0.0135650104,0.0240167398,-0.0019929716,-0.0072373673,-0.0012272864,0.0246906094,0.0164154824,0.0093870135,-0.0152025148,-0.0084368568,-0.0390305705,-0.0258631445,-0.0013923846,0.0063680746,-0.0342056602,0.0235180743,0.0182079766,0.0201487225,0.0052797743,0.0150542632,0.0264696274,0.024030216,-0.0045587327,0.006277102,0.0331813768,0.0273052268,0.0008431803,0.0019693861,0.003071164,0.0299198423,0.0224264041,0.0034451622,0.0111660315,-0.0264965817,-0.0065634972,-0.0200139489,0.0147038512,0.0187201183,0.0391383879,-0.0185449123,0.0400278978,0.0007096697,0.0027999312,0.0027510757,0.0285181925,0.0210517086,0.0064219842,0.0119948918,0.0085918466,-0.0095824366,0.0040937625,0.0241784677,-0.0018935757,0.0041274559,-0.0009105673,0.0122240083,-0.0232485272,0.001208755,0.0059772301,0.0007804261,-0.0313484482,0.0249601565,0.0251623187,-0.0310788993,-0.0117051275,0.03186059,-0.0602170527,-0.0076753832,-0.0364968181,-0.0233967789,-0.0115905702,0.008544676,-0.0264157169,-0.0007037733,0.0434781127,-0.022345541,0.0301354825,-0.0300546177,0.0122374855,-0.0400009416,-0.0144882128,-0.0042689685,-0.0092320237,0.0405400395,-0.0268739499,0.0266852658,0.0222242437,0.0205799993,0.009346582,-0.0269413367,0.0074597448,-0.0161324553,-0.0023972937,0.0280060507,0.0201352462,0.0124868173,-0.0211999603,-0.0210651867,-0.0066174068,0.0238684881,0.0001413022,0.0015692755,-0.0083425147,0.0276286844,-0.0068263067,0.0207552072,0.0407017693,0.0342865214,0.0227498636,0.0431007482,0.0038781238,0.0128304912,0.0238280557,0.0445293523,-0.0129652657,0.0156337917,0.0272513162,0.0062400391,0.0029178585,0.0261192136,0.0119948918,-0.0014193394,0.0079853637,0.0209843218,-0.0224803146,0.0091915913,0.0281947348,-0.0068734773,0.0026584184,-0.0115299216,0.0175071508,-0.0084772892,-0.0091915913,-0.0051011983,-0.0043633105,-0.0073249708,0.0341517478,0.0252297055,0.0033053341,0.0256475043,0.062373437,0.0128237521,-0.0101484871,0.0223859735,-0.0032025687,0.0025354372,0.0029026966,-0.01486558,-0.0046126423,0.0295424759,-0.0287607852,0.0099193715,-0.0118938116,0.0181405898,0.0018531434,-0.0255801175,0.0028622642,0.03186059,-0.0070015127,-0.0060749413,0.0285181925,0.0141108446,-0.0077629862,0.0010091208,-0.0213886444,0.0058289785,0.0123857372,-0.0401087627,-0.0002621777,0.011570354,0.023315914,-0.029812023,0.0101350099,0.0580606684,0.0160246361,0.0090096463,-0.0384106077,0.0277095493,0.0018228192,0.0078573283,0.0090635559,-0.0237876233,-0.0203374065,0.0061490671,-0.027763458,0.0295694303,-0.0039724656,-0.0095959138,-0.0074125738,-0.0346099809,-0.0446641259,-0.0005946906,0.0078573283,-0.0225342233,0.0180058163,0.015930295,0.0511871912,0.0058593028,0.0428581536,0.0210517086,-0.0078573283,0.0034636937,-0.0230598431,0.0024512033,-0.0317527689,-0.0260518268,0.028922515,-0.0215099417,0.0127091948,-0.0432894304,0.0155664049,0.0163211394,0.0053572692,-0.0096565615,0.026429195,0.0296502952,0.0114760119,0.0321570933,-0.0054212869,-0.03684723,-0.0314562693,0.026334852,-0.0235719848,0.0175880156,-0.0250679757,-0.0106673678,0.0071025933,0.0040971315,-0.027493909,-0.0051517389,0.0137671707,-0.0359038115,0.0102293519,-0.0123924753,-0.0145555995,-0.0036254225,-0.0467396453,-0.0219681729,0.0056739883,-0.0276825931,0.0051517389,0.0183966607,-0.0118735954,0.0392192528,0.0336396061,0.0032446857,-0.0107751871,-0.0059974459,-0.0027662378,-0.003783782,-0.0432355218,0.0168871898,0.0129585266,0.0230328888,0.0371437334,0.0434511602,-0.0094004916,0.0013393173,-0.0190031435,-0.0072441064,0.0220220834,0.0118938116,-0.0180192925,0.0275073871,0.0183562282,0.0074125738,0.030081572,-0.0211595278,-0.0073047546,-0.008450334,0.0227229074,-0.0189357568,0.038356699,-0.0006035351,-0.0009324681,0.0395966209,0.0001959489,-0.0178036541,0.0409443602,-0.0027679224,-0.0323727317,0.0201352462,0.0006970346,-0.0181944985,0.0246232226,-0.0038949705,0.0234372113,0.0034569548,0.0137402164,-0.0019003144,-0.0001397228,-0.0181540661,0.0357420817,-0.0052359723,0.0096026519,-0.0260518268,0.030351121,-0.0120218471,0.0100002354,-0.0107347546,-0.0204721801,0.0232754815,0.0098452456,-0.0308363065,0.0289494693,-0.0243536737,-0.0027224361,-0.0310788993,0.0258631445,0.0078371121,0.0043397248,-0.0208765026,0.0132011203,-0.0007762144,0.01548554,0.0152564244,-0.0271300208,0.0169950109,-0.0237202365,-0.0081201373,0.0186527316,-0.0205126125,0.0123318275,0.0232350491,0.0095150489,0.0011818002,-0.0142186638,0.0032362624,-0.0093263658,-0.0185718667,-0.0239358749,-0.0038477997,-0.0246232226,0.0399470329,0.0336935185,0.0377097838,0.0021867093,0.030431984,-0.0308363065,-0.0032244695,-0.026253989,-0.0080190571,-0.029272927,-0.0218333993,-0.0002020558,0.0368202738,-0.0204452258,0.0100608841,-0.0030425247,-0.0001778386,0.0235180743,0.0034771711,-0.0272108838,0.0170084871,0.0124666011,-0.0260248724,0.0208495483,0.042265147,-0.0200409032,-0.0432355218,0.0189492349,-0.0217390563,-0.0020468812,-0.0251892731,0.0309710801,0.0006603929,0.0314562693,0.0112199411,0.0092185466,-0.0085311988,-0.0197848324,-0.0275343414,0.0024629962,0.0093263658,-0.0135919647,-0.0047979569,0.0000266126,-0.0289764255,0.03773674,-0.0094678784,-0.0171163063,-0.0199061297,0.0137402164,0.0011447372,0.0577911213,0.002355177,0.0299737528,0.0129720038,-0.0040499605,0.0070352065,-0.0196500588,-0.0056739883,-0.0079314541,0.0146499416,-0.0280599613,-0.0011860118,0.0013763802,0.0039926819,0.009346582,-0.0086592343,-0.0118803345,-0.0072036739,0.0015827529,-0.0332083292,0.0029414441,-0.0095554814,0.0153507665,-0.0348525755,-0.0344752073,0.0300276615,0.0073114932,0.0398931243,0.0215773284,0.0195691939,0.0019912869,-0.0002179549,0.012641808,0.040863499,0.0213077795,-0.008814224,-0.0154046761,-0.013976071,-0.0382758342,-0.0301893912,0.0088816108,0.0134841455,-0.0307823978,-0.0031890913,0.0017520629,0.0067083794,0.0183697063,0.0266583115,0.002447834,0.0157685652,0.0091511589,-0.0306206681,0.0079247151,0.0210517086,0.0034215767,-0.0005668934,0.0009400491,0.0044374363,0.0089557366,-0.0168602355,0.0195152853,0.0114490567,-0.0285181925,0.02349112,0.0012348674,-0.010593242,0.0103776036,-0.0089355204,-0.0103439093,-0.0238145776,0.0121768368,-0.0194613747,0.0159707274,0.0552573688,0.0271704514,0.0117186056,0.0147308055,0.0117388209,0.0061456976,-0.0259035751,0.0462275036,0.0117792534,0.0475213379,-0.0044273282,0.0102495681,-0.0326422788,0.0260653049,0.0062872102,0.0175610613,-0.0182079766,0.031240629,-0.0079112379,0.0191783495,0.0103776036,0.0120218471,-0.0279251877,-0.0122846561,0.0184101369,-0.0304589402,0.0113547156,-0.0178979971,0.0225611795,0.0035108645,0.0265370142,-0.0242593326,0.0026870579,-0.0076619056,0.026253989,0.0004940312,-0.0329387821,-0.0192861687,-0.0060985265,0.049300354,0.0022945285,-0.0144343032,0.0070958547,0.0444484875,0.0098048132,-0.0088681336,-0.005161847,-0.0311867185,0.0173993316,0.0093937526,-0.0071901963,-0.0184370931,-0.0194613747,-0.0077697248,-0.0118803345,0.0123385657,-0.0104786837,0.0080864439,-0.03684723,0.0222646762,0.0104921609,-0.0131404717,0.0295694303,0.0140299806,0.0349334367,0.0059031043,0.014771238,0.043774616,0.0162133202,-0.0027797152,0.0232350491,0.0196904913],"20":[-0.0129649919,0.017354181,0.0749268457,-0.0136334989,0.0656892881,0.0384357981,0.0112633361,0.0011732642,0.0009040043,-0.0044533396,0.012978497,-0.0053919512,0.0117360186,-0.0361399129,0.0139643764,0.027023904,-0.0241337921,-0.0156525262,-0.0168950055,0.0206764601,-0.0240392555,0.0115536982,0.0302516464,0.020257799,-0.0096224546,-0.0120128747,-0.0339520723,0.0657433122,0.0148962354,-0.0601791702,0.0190018155,-0.0300625749,-0.0388409533,0.0009377673,0.0587206073,0.0195150133,0.0471601561,0.02303987,0.0210546069,0.0243498757,-0.0085960599,0.043729838,-0.018421093,-0.0034522666,-0.0252142083,0.0122019481,-0.0544529632,-0.0240932759,-0.0192314051,0.0635284558,-0.0489428453,0.0197310969,-0.0396782756,-0.0559655465,0.0433786996,-0.0171245933,-0.0336009376,0.0176512953,0.0229183231,-0.0367881656,-0.0144910794,-0.0651490837,0.0267943162,0.0154499486,-0.0267402958,0.0341141336,-0.0317372195,0.0570999831,-0.0284419507,0.0333848521,0.039354153,0.0165978912,-0.0160171669,-0.0465119071,0.0261865817,-0.0530484244,-0.0106150871,0.0351675414,-0.0067694811,0.0063271862,-0.0088324007,0.0211086273,-0.0313050523,0.0360588841,0.0124382889,-0.0343572274,-0.0182860401,-0.0355456844,-0.002285755,0.0106285922,-0.0035417387,0.0558034852,0.000371182,0.0004684616,0.0313320644,0.0073670866,0.0123370001,0.0009014721,-0.0181779992,0.0455125235,0.0311159808,-0.0133498898,-0.0266592633,-0.0061178557,0.0374904349,-0.0025035264,-0.0029660794,0.0006824346,-0.0131608173,0.023309974,-0.0678501204,-0.0203118194,-0.0401104428,-0.0063778306,0.0078532733,-0.0033070857,-0.033790011,0.0091160098,-0.0194744971,-0.0184345972,-0.029549377,0.0191233624,-0.0262676142,0.0169895403,0.026483696,-0.0127016399,0.0367611535,-0.0293603037,-0.0652031004,0.009939827,0.0425143689,-0.0309539177,0.0064419801,-0.0169625301,-0.0265377183,0.012721898,-0.0641767085,-0.0044533396,-0.0175027382,-0.0026166325,-0.0010947653,-0.0284149405,0.0327906236,-0.0152068548,-0.0030302291,0.0472141765,-0.0327906236,0.0478894375,-0.0071982713,-0.0170300566,0.0046154018,-0.0006389648,-0.0330067091,-0.045431491,0.0398403406,0.0030791855,0.0023279588,0.0395702347,0.0188667644,-0.0178808849,0.0103044678,0.0694167241,0.003342537,0.0007419419,-0.0225671884,-0.0200147051,-0.0514818206,-0.0592608154,-0.0850827545,-0.0126206093,-0.0137617989,-0.0525352284,-0.0273210183,0.0349514559,0.0275776181,-0.0077182218,-0.0234990474,-0.0682282671,0.0447022095,-0.0107906545,-0.0503743961,0.0125800939,-0.0209735744,0.0403265245,0.0095751863,-0.0081031201,-0.0767635554,0.0224051271,0.009149773,0.0439729318,-0.0409207568,0.0727119967,0.0286850445,0.0420011692,0.0041596014,-0.0485376865,0.0188667644,0.0243363697,-0.0333308317,0.0087041007,0.0746027231,0.0355456844,0.0425683893,-0.0024056137,-0.0103922514,0.015098813,0.0277937017,0.0006790583,-0.0433516912,-0.0223646108,-0.0153824221,0.0206494499,-0.0124855572,-0.0037983374,-0.0348974355,0.0004515801,-0.0675259978,-0.0117832869,0.0287120547,-0.0037105535,0.0251061656,0.0630962923,-0.0058646328,-0.0104800351,-0.0018738464,0.0454044826,0.0037747032,-0.0420281813,0.0284689609,0.009933074,-0.0053075436,-0.0447022095,-0.0004760583,-0.0547500812,0.0081436355,-0.000186013,0.0352755822,-0.0376254879,-0.0110877687,-0.0410287976,-0.024376886,0.014828709,-0.0336279459,0.0119858645,0.0007166197,0.0259164777,-0.030872887,-0.0534535795,-0.0091025047,0.0783841759,0.0337089784,-0.0145991212,0.0014045407,-0.0198931582,-0.0328986682,-0.06358248,-0.0184886176,0.0413799323,-0.0073265708,0.0229993556,0.0079815732,-0.0409477651,0.0103787463,-0.0079680681,-0.0350865088,0.016827479,0.0259569939,-0.0337629989,0.0205954295,-0.0125665879,0.0573160686,0.0334118642,0.0102504464,-0.0503473841,-0.0137347877,-0.0472682007,0.0068505127,-0.0044972314,0.0017506115,-0.0324394889,0.001767493,-0.0481595434,0.024376886,-0.0103922514,0.0328176357,0.00914302,-0.0091632782,0.0482405722,0.0120668961,-0.0303326789,0.012721898,0.0140589131,0.0371933207,-0.0384628102,0.0218919292,0.0120939063,0.0056451736,0.0084204916,-0.0219459496,-0.0364100188,0.018421093,0.0001654387,0.0056890654,-0.0192989297,0.0240797717,0.0200417172,-0.0019194265,-0.0210140906,-0.0007284367,0.0099533321,0.0102774566,-0.0207574926,0.0113376155,-0.0274560712,-0.0228372924,-0.0003591539,0.0593148358,-0.01457211,-0.0093050823,-0.0316831991,-0.005628292,-0.093239896,-0.0260110144,0.0299275219,0.024917094,-0.0053919512,0.0248630717,-0.0243363697,-0.0060300715,-0.0059220302,0.0092037935,-0.0258759633,0.0434057117,0.045431491,-0.0314130932,-0.0285229813,0.0155579904,0.0174217075,-0.0026925991,0.0377335288,-0.0364640392,-0.0231749229,-0.0664996058,0.0106420973,0.000293105,0.0133431377,-0.014302006,0.0007613556,0.0142749958,-0.0014805075,-0.0162332505,-0.0002720031,0.0310079381,0.0035214808,0.0291442201,-0.0054898635,0.0246604942,0.0047166911,-0.0282528773,-0.005888267,-0.0568298809,0.0159901567,0.0162602607,-0.0147746885,-0.0023077009,0.010601582,-0.0153824221,0.0112700891,0.0043419218,-0.0262541082,0.0313050523,0.016813973,-0.0414609611,0.0062461547,-0.0427304506,-0.0065263878,0.0545880161,0.0415149853,0.0206764601,0.046782013,0.0153959272,0.0244309064,0.0071442504,-0.0140048917,0.0297654606,0.0429465361,-0.0011960543,0.0414339527,-0.0409747772,0.0018299546,0.0330877379,0.0115064299,-0.0163547974,-0.0311700013,-0.0313320644,-0.0092915772,0.0006343224,0.0344382599,0.0564517342,0.0360588841,0.0491859354,-0.0014813516,-0.0544259548,-0.0248225573,0.0126611246,-0.0037308114,0.0257814266,0.0310079381,-0.0341411456,-0.0240257494,-0.0149907712,0.0056012818,0.0356537253,-0.0103044678,0.014045408,-0.0463228337,-0.0453234501,0.0470251068,0.0160171669,0.0608814396,-0.0265107062,-0.0135592204,-0.0291982424,-0.0021743372,-0.0391380675,0.0247550309,0.039867349,-0.026227098,-0.0162332505,-0.0313860849,-0.0254167859,-0.0258759633,0.0103382301,-0.018947795,-0.0116009666,0.0084947702,0.0220134761,-0.0103449831,0.0563436933,0.0106353443,-0.0353296027,0.0046592937,0.0292522628,0.0178943891,-0.0368962064,-0.0030302291,-0.0182860401,-0.0291172098,0.0075966748,-0.0026807822,0.0317372195,-0.0098250331,-0.0076506957,0.0116279768,-0.0150042772,-0.0132148378,0.0451613888,-0.0094468873,0.0558575056,-0.0272399876,-0.032304436,-0.0058612567,-0.0638525859,-0.0368151739,-0.0036835433,-0.0334928967,0.0635284558,0.0008601124,0.0281718466,-0.0267402958,-0.0049901712,0.0450263359,-0.01589562,0.0188667644,-0.0204333663,0.0244849268,0.0073265708,-0.0055405083,0.0306568034,-0.0266727693,0.0514278002,-0.0257544164,-0.0128704552,0.06358248,0.0096021965,0.0621779375,-0.010196426,-0.0125328256,-0.0217433721,0.0127894245,-0.0131540643,0.0047166911,0.0399753898,-0.0152743813,-0.0096224546,0.0134376734,-0.0955627933,-0.0254573021,-0.0035991357,-0.0186371747,0.029549377,-0.0069686831,0.0140994284,0.0700109527,0.0066918265,0.0139643764,-0.0159226302,-0.0040751938,0.0010415885,-0.0264566857,0.0046120258,0.000157842,0.0434867442,0.0364640392,-0.0159766506,0.0391650796,0.0100883842,0.0409747772,-0.0158821139,-0.0085622966,-0.0089944629,-0.0232559536,-0.0351675414,-0.0004262579,-0.0212977007,0.0170030463,-0.0372473411,-0.0246740002,-0.0128907133,-0.0134984469,0.0058747618,-0.0345463008,0.0137145305,-0.0247010104,-0.033654958,0.012985249,-0.0358698107,-0.0413799323,-0.0433516912,0.01218169,0.0148962354,0.0419741608,0.0174757279,0.0306568034,0.0041292147,-0.0089674527,0.0005153078,-0.0070362091,-0.0171921197,0.0401374549,0.0045174891,-0.0127894245,0.0057464624,0.0011943661,-0.0040042917,0.0267538,0.0081301304,0.0320073217,0.0113511207,-0.0010702871,0.0015514098,-0.0105813239,-0.0219324436,-0.0105137983,-0.0161792301,0.0359778516,0.0095009077,-0.0244579166,-0.0444861278,0.003185539,0.0062765414,-0.0135997357,0.0196230542,0.0206359457,-0.0081098722,0.0203793459,-0.0267267898,-0.0075629116,0.0333038233,0.0020713599,-0.0337629989,-0.0361399129,-0.0170300566,0.0365720801,-0.0318992808,0.0193934664,0.0102301892,0.0264161713,0.026362149,-0.0087243589,0.0216893498,0.0153013915,-0.0206764601,-0.0048686243,0.0161252078,0.0117495237,-0.0077384794,0.022378115,-0.0362479575,0.0322774276,0.0236070883,-0.0142479856,-0.0017489233,-0.0404345691,-0.0411908589,0.0206494499,0.0011462538,-0.0101356525,0.0248900838,-0.0142344804,0.0167599525,0.0137617989,-0.0116009666,-0.054696057,-0.0471601561,0.0002542776,-0.0461607724,0.0036396512,0.0024798922,-0.0256058592,-0.0160846934,-0.0088391528,-0.0226077046,-0.0520220287,0.0046457886,0.0291172098,-0.0059996848,-0.0365450718,-0.0284959711,0.0200147051,0.0039198841,-0.0095751863,0.0313320644,0.03179124,0.0122087002,0.0353836231,0.0321423747,0.0336819664,0.000844497,-0.0205684192,0.0104192616,0.0128772082,-0.0121479267,0.0045613814,0.0050847079,-0.0294683464,0.0034218801,0.0248225573,-0.0312510319,-0.015639022,0.0084069865,-0.0445671603,0.0544799753,0.0219594538,0.0183535665,-0.0137685509,-0.0284149405,-0.0249981247,-0.0013251978,0.0304947402,-0.0393271409,0.0081773987,-0.0290901996,0.0269023571,-0.0463228337,0.0163277872,0.0163277872,0.0239582248,0.0320613421,0.0127421562,-0.0253357552,0.006293423,0.0333308317,0.0094941556,0.0306297932,0.028090816,0.021729866,-0.034168154,0.0210411008,0.0723878667,-0.0346273333,0.0169895403,-0.0391380675,0.0049429033,0.0083732242,-0.0102639515,-0.0086298222,0.0287390649,0.0401644632,0.0111350371,0.0027111687,0.0105137983,0.0134241683,-0.0351405293,-0.0071104877,-0.0215813089,0.0196770765,0.0285499915,-0.0421092138,0.0162197445,0.0197175909,-0.0076169325,-0.0678501204,-0.028874116,-0.0194609929,-0.004433082,0.0239447188,-0.000023489,0.003219302,-0.0374634229,-0.0513197593,0.0149097405,-0.0176377911,0.0240122452,0.0273345243,-0.0188127439,-0.0212706886,0.0231614169,-0.0260785408,-0.0135592204,-0.04797047,0.000349658,-0.0311970115,-0.0277937017,0.039354153,-0.0209195539,0.0262541082,0.030602783,-0.0007634658,-0.0497531556,0.0070834775,0.0094131241,-0.009007968,-0.0040819468,0.0267402958,0.0088931741,-0.0000022355,-0.0059726746,-0.0322774276,0.0136942724,-0.0201767683,0.0044162003,-0.0227967761,-0.0241608024,0.0182185136,-0.0265917387,0.0294953566,0.0271184407,0.0220134761,-0.0049597844,-0.0348164029,0.0120601431,-0.009676476,-0.0286310241,-0.0094401343,-0.0257003941,0.0025727404,0.0004216155,-0.0027280503,0.0315211378,0.0143290171,0.0324124806,-0.0306568034,0.0136064887,-0.0068133734,0.0310079381,-0.0263756551,0.0088661639,-0.0173946973,-0.0266322531,-0.025308745,-0.0066681923,0.0096899811,-0.0225806944,0.0657973364,-0.0031197011,0.0011538505,0.0054189614,-0.0062326496,-0.0150853079,0.0156120108,0.0062461547,-0.0318182521,-0.0350865088,-0.0115469461,-0.0079883253,0.0228237882,-0.006485872,-0.028604012,-0.0192989297,-0.0151663395,-0.0071374979,-0.0180834625,0.0118845757,0.0245389473,-0.0006883431,0.0116009666,-0.1024234369,-0.0297114383,0.0627181455,-0.008744617,-0.010203178,-0.0131743224,-0.0122087002,0.0227562618,0.0423523076,-0.0119385961,-0.0058511277,-0.0587206073,-0.039894361,-0.0049496558,-0.0096224546,0.0154094324,0.0006022475,0.0165303648,0.0341951661,0.0241608024,-0.0190693419,-0.0022232935,-0.0010905449,0.0542638935,0.0130932909,-0.0163007751,-0.0271454509,0.0364100188,-0.0066681923,-0.0084339976,0.0181104727,0.0084069865,0.007488633,0.0044702212,0.0004819668,0.0303866994,0.0071307453,0.0011994306,0.005955793,-0.0039300132,-0.0167194363,-0.0488618128,0.042919524,-0.0346813537,0.0561276115,-0.0138563346,0.0026081917,0.0359508432,-0.0087851323,-0.0010930771,0.0191368684,0.0229048189,-0.0134579316,0.0080490988,0.0127354031,0.0287120547,-0.0524271838,-0.0161792301,0.0051893732,-0.0156930424,-0.0253357552,0.021189658,0.0266322531,-0.0620698966,-0.0182590298,-0.0205008928,0.016557375,0.046619948,0.0051454809,-0.0187452175,0.0271319468,0.0362749659,0.025308745,-0.0136537571,0.021473268,0.0047842171,-0.003377988,-0.0058241175,-0.0089404425,-0.0268213265,0.028874116,-0.0001471856,-0.0160711873,0.0038118425,-0.0052096308,-0.0280638058,-0.0199471805,-0.0056350445,-0.0037105535,0.0073873443,0.0469440743,-0.0084407497,0.0053919512,0.0182590298,0.0173946973,-0.0009099128,0.0394081734,-0.0107568912,0.0076304376,-0.008076109,0.0204603784,-0.0129649919,0.0099735903,0.0148557192,-0.0201632623,-0.0149907712,0.0151393292,-0.0040042917,-0.0025153435,0.0075156437,-0.0063710781,-0.0000628308,0.0380036309,0.0252142083,0.0160981975,-0.0148692252,0.0032378717,-0.0207034703,-0.0014973891,-0.0072320346,0.0288471058,-0.0201227479,-0.0279827733,0.0425954014,-0.0003302443,0.0181239787,0.0519139878,-0.0094401343,-0.0011968983,-0.0224996619,0.0020308443,0.0516438819,-0.0124180308,0.0460527316,-0.0109729748,-0.036031872,0.0185561441,-0.0198931582,0.0200417172,0.0306297932,0.005233265,0.012451794,0.0053784456,0.0029204995,-0.001158915,-0.0001921326,-0.002949198,-0.0133161265,-0.0411368385,0.0158686098,0.038705904,-0.0531024449,-0.0014720667,0.044783242,0.0003125188,0.0405966304,-0.0419201404,-0.0331687704,-0.0186236706,-0.0090619894,0.033654958,0.0339790806,0.0210816171,-0.011256584,0.022121517,0.0075291488,-0.0276046284,0.0070632193,-0.0177728422,0.0222565699,-0.0038591109,0.0049395268,0.009676476,0.0236746147,0.0692546666,0.0289551485,-0.002950886,-0.0026909111,-0.0195150133,-0.0004764803,-0.0246064737,-0.0187587216,0.023715131,0.0402454957,0.0179484095,-0.020527903,-0.0303866994,0.016152218,-0.0101559097,0.0426494218,0.0290361792,-0.0176377911,0.011391636,0.0136807673,-0.0409207568,0.0042879009,0.0206764601,-0.0005283909,-0.0148962354,0.0032817635,-0.0219459496,0.018407587,0.0064453566,-0.034303207,0.0008385885,0.0319533013,-0.0049462793,0.0457286052,-0.0130865388,0.0472411886,0.0191233624,0.0172326341,0.0170705728,-0.0140589131,-0.016827479,0.0050475686,0.0127826715,0.0089471946,0.0052974145,-0.0188397542,-0.0080693569,-0.0555333793,-0.0160036609,-0.0001485572,-0.019866148,0.0356267169,-0.0083664712,0.0019278673,-0.0116414819,0.0160711873,0.0039468948,0.0278747324,0.0138090663,0.0041933646,0.0149097405,0.0183670707,0.0103382301,0.0112835942,-0.0175162442,0.013782056,0.0049969237,0.0118238023,0.0095144128,-0.0277396794,-0.0038084663,-0.0043351692,0.036680121,0.0359238312,0.0462958254,-0.0098250331,0.0186101645,0.0010787278,0.0182455257,0.0014264868,0.0325205214,0.0290631894,0.0167734586,0.0072725499,0.0038759923,-0.0187722277,-0.0061820052,0.025835447,0.0142209753,-0.003636275,-0.0066681923,-0.0092578139,-0.0117630288,-0.0077519845,0.0184751134,-0.0127759185,-0.0223511048,0.0334388725,0.0140589131,-0.0230938923,-0.0131540643,0.0317372195,-0.0520490408,-0.0173811913,-0.0037105535,-0.0262676142,-0.0221620332,0.001362337,-0.0340060927,-0.0009689981,0.0512387268,-0.0371393003,0.0076912111,-0.0163683016,0.0167734586,-0.0279287528,-0.0025271606,0.0266322531,-0.0207709968,0.0164088178,-0.0185966603,0.0165303648,-0.0076101799,0.0249441043,-0.0150582977,-0.0241067819,0.0052568992,-0.0071374979,0.0322774276,0.0085622966,0.0140183968,0.0199066643,-0.0122357113,-0.0308998972,0.0217568763,0.0155174742,-0.0032885161,0.0151933497,0.0035349859,0.0468630418,0.0101626627,0.0067728576,0.039867349,0.0364640392,0.0253222492,0.0364640392,0.0019650066,0.020136252,0.0171786137,0.0581263788,-0.0124788042,0.0100613739,0.0337089784,0.0148422141,-0.0303866994,0.0082314191,0.0053581879,-0.0068707704,0.0077722422,0.0133093745,-0.0194069725,0.0125395777,0.0178403687,-0.006360949,-0.0130190123,-0.0166789219,0.0148827303,-0.005628292,-0.0270103998,0.0020544785,0.0041190861,-0.0136334989,0.0235395636,0.0194609929,-0.0054020798,0.0027246741,0.0563977137,-0.0061786287,-0.0152878864,0.0256598797,-0.0141669549,0.0018147612,0.004244009,-0.0177863482,-0.0203118194,0.0084475027,-0.0318722725,0.0124382889,-0.0237691514,0.0171516035,0.0081909038,-0.0172191299,0.000191816,0.0388139449,0.0040009152,-0.0000204952,0.0386248715,0.0265242122,-0.0088053904,0.0180564523,-0.0318182521,-0.0107028708,0.0075088912,-0.0127894245,0.0105205504,0.0143695325,0.0033526658,-0.0335199051,0.0142614907,0.0440539606,-0.0026875348,0.0163818076,-0.0352215618,0.0179484095,0.0198256336,-0.0015573184,-0.0019768237,-0.0362479575,-0.0190153215,-0.010736634,-0.0137955612,0.0348164029,-0.0034066867,-0.0266592633,-0.0008280376,-0.0377335288,-0.0406776629,0.0076101799,0.0024596346,-0.0258759633,0.0172731504,-0.0023482165,0.0558034852,0.0164088178,0.0358157903,0.0272399876,-0.0070834775,0.0031146368,-0.005965922,-0.0111958105,-0.0548851304,-0.0333578438,0.0188802686,-0.0165303648,-0.0038523581,-0.0354106352,0.0158145893,0.0151393292,0.0047572064,0.0081841508,0.0227697659,0.0228102822,-0.0085690496,0.0095819393,0.022378115,-0.0198526438,-0.0218379088,0.0059085251,-0.0400834344,0.0181374829,-0.0323584601,-0.0058072358,0.0038624872,-0.0093658557,-0.03046773,0.0215272885,0.0268888529,-0.0088999262,0.0178538747,0.0032057967,0.002917123,-0.0114389043,-0.0400024019,-0.0141669549,-0.0032716347,-0.0064588618,0.0187452175,0.0197716132,-0.017489234,0.0444321074,0.0157740731,0.0010525614,-0.0066952026,-0.0043959427,-0.0181104727,-0.0017489233,-0.0234855413,0.0119115859,0.0108986963,0.018407587,0.0334118642,0.0375444554,0.0023887323,-0.0053716931,-0.0154904639,-0.0241472963,0.0385978594,0.0044229529,-0.0122357113,0.0026875348,0.0200282112,0.0111552952,0.0094468873,-0.0261865817,-0.0037679507,-0.0197040867,-0.0020325326,-0.0129109705,0.0246604942,-0.0262406021,0.0089269374,0.0176783055,0.0204603784,-0.0140183968,0.0224051271,0.0077114692,-0.032979697,0.0271454509,-0.0215542987,0.021189658,0.0476733558,-0.0070699719,0.0177188218,0.025308745,0.0155579904,-0.0092983302,-0.0225536842,0.0003047111,0.0483756252,0.0069821882,0.0039198841,-0.019879654,0.0438378789,-0.000652892,0.0104395198,-0.0232424494,-0.029009169,0.0232964698,0.0012163121,-0.0332498029,0.0282258671,-0.025565343,-0.0097642597,-0.0100613739,0.0020240918,-0.0022317343,-0.002510279,-0.0157065466,-0.0013724659,0.0005271249,0.0083732242,-0.0038084663,-0.02332348,0.0197310969,-0.0179889258,0.021203164,0.0102099311,-0.0208790395,0.0114321513,0.0278477222,-0.0094671445,-0.0045276182,-0.0101694157,-0.0019548777,0.01166174,-0.0116887502,-0.0231884271,-0.008217914,0.0041258386,0.0335199051,0.0338710397,0.0312240217,0.0016273765,0.032331448,-0.0353836231,0.0227562618,-0.0331687704,-0.002149015,-0.0134984469,0.0014864161,0.0112768421,0.039867349,-0.0201092418,0.0254032798,-0.0038456055,0.0072050239,0.0167869627,-0.0065230113,-0.0275235977,0.0055911527,0.0344922803,-0.0251196716,-0.0051589864,0.0408127122,0.0040481836,-0.0257003941,-0.0084137395,-0.0205008928,0.0051927492,-0.011128285,0.0111147789,0.0099668372,0.0373283736,0.000191183,0.0163007751,-0.0079613151,-0.007812758,-0.0385168307,0.0123302471,0.0154769588,-0.0091565251,-0.009534671,0.0131338071,-0.0388409533,0.0150582977,-0.0158145893,-0.018421093,0.0047774645,0.0283879302,0.0042001172,0.0342221744,0.0114456564,0.0155985057,-0.0111620473,-0.0078600263,0.015233865,-0.0151258232,0.0078397682,0.0292252526,-0.0090889996,-0.0372473411,0.0173136666,0.0001256617,-0.0107433861,0.0087041007,0.0143695325,-0.0247550309,-0.0031669694,0.0007866779,-0.0229183231,0.0120466379,0.0028614141,0.0131203011,-0.0337629989,-0.034303207,0.0438648872,0.0045580049,0.0161927342,0.0168679953,0.0030251648,0.0012104035,-0.0047774645,0.0073130657,0.0165978912,-0.0015412809,-0.0059389113,0.0055776476,-0.0320613421,-0.0283068977,-0.0394892022,0.0187722277,0.0090484833,-0.0265107062,-0.0079207998,-0.0070699719,0.0233369842,0.017084077,0.0236881208,-0.0092645669,0.0025744287,0.0011530065,-0.0088188956,0.0107501391,0.0107096229,-0.0025474182,0.0050813314,-0.0241878126,0.0039570234,-0.0091227628,-0.0281988569,0.0182995461,0.0151258232,-0.0273615345,0.0112025635,-0.0088053904,-0.0004570666,0.0085217813,0.0050138053,0.008481265,-0.0138968509,-0.0008955636,-0.0236611106,0.010459777,0.047430262,0.0164628383,0.0215272885,0.0223376006,0.01218169,0.0004410292,-0.0107433861,0.0501042902,0.0200417172,0.0302246362,0.0153824221,-0.0016991229,-0.0359778516,0.0332498029,0.0109189544,0.0307918545,-0.0256868899,0.0184616074,0.0027077924,0.0257814266,0.0216083191,0.0079613151,-0.014045408,-0.0128299398,0.0103990035,-0.0406506509,0.0166384056,0.0021321333,0.042406328,0.0128772082,0.029009169,-0.0273750406,-0.0041866121,-0.0019042331,0.0368691944,0.008224667,-0.0304947402,-0.0023819795,0.0125328256,0.0272264816,0.0193934664,-0.0189613011,0.0041022045,0.0621779375,-0.0122694736,-0.0033003332,0.0002331757,-0.029549377,0.030197626,0.0305217505,0.0143560274,-0.023985235,0.0051893732,-0.0135794785,-0.0058680093,-0.0046187784,-0.0136605091,0.0160306711,-0.0366261005,0.0211086273,0.0094198771,-0.0210546069,0.0256598797,0.0034218801,0.0401644632,0.0065466454,0.0051353523,0.0278747324,0.0152878864,-0.0011276841,0.0317102075,0.007488633],"21":[-0.0296862125,-0.0062532797,0.0649403632,0.0053300243,0.0672698095,0.0484922156,0.0181810297,-0.0207945518,-0.0065053995,0.0384074226,0.0452537164,0.0065657664,-0.0010830496,-0.0445719287,0.0469865985,0.0429526828,-0.0015109429,-0.0077695493,-0.0124355396,0.0125136618,-0.0200559478,0.0255954806,0.0214053206,0.025112547,-0.0142039293,-0.0302259605,-0.0384358317,0.0454241671,0.0152834281,-0.0478104241,0.0148146981,-0.0319304317,-0.0560202971,0.0003124864,0.0541453771,0.0027484603,0.033123564,0.0310497899,0.0249278955,0.0035012686,-0.019445179,0.0328110754,-0.0004334418,-0.0153118353,-0.0138985449,-0.0005282086,-0.0438049175,-0.0152266119,-0.0149141252,0.0705651194,-0.034430325,0.0190900806,-0.05042395,-0.0340042077,0.0686902031,-0.0262630656,0.0024750347,0.0253966246,0.0006356259,-0.0283794496,-0.0189480409,-0.0729513764,0.0161924791,0.0199423172,-0.0144809056,0.0231950171,-0.0268454254,0.0558498502,-0.020283211,0.0563896,0.0275840312,-0.0062142191,-0.0198286846,-0.0140974,0.0253114011,-0.0449412316,-0.0071481275,0.0478388332,0.003955794,-0.0041830572,-0.0013902095,-0.037384741,-0.0441174023,0.0427822359,0.0211780574,-0.0232660361,-0.0173714049,-0.0328110754,0.0202548038,-0.0093035735,-0.0087922318,0.0477252007,-0.0134156113,0.0084016239,0.0317599848,-0.0173714049,0.0079613021,0.0141045013,-0.0176980961,0.0138133215,0.0500830524,-0.0089981891,-0.0182662532,-0.0108802095,0.0414754748,0.0034142695,-0.0182662532,-0.0039451411,-0.0039735492,0.0098220166,-0.0556509942,-0.0293737259,-0.0453105345,-0.0018713677,-0.0142181329,0.0140974,-0.0705651194,0.0044458299,0.0183656812,-0.0069208643,-0.0097509976,-0.0063278503,-0.0392312519,0.0446571521,0.0090336986,-0.0346859954,0.0226552673,-0.0294305403,-0.0417879596,0.0023827092,0.0514182225,-0.020453658,0.024175087,-0.039458517,-0.0269448534,0.0013937606,-0.0356234536,0.0040658745,-0.0031692516,-0.0278112926,-0.0190190617,-0.0216467883,0.0264051035,-0.0247858558,-0.0367029533,0.0547703505,-0.0127338227,0.0572134256,-0.0357370861,0.0006853396,-0.0018252049,0.0049962322,-0.0192747321,-0.0432083532,0.0660198629,-0.0037249804,0.019715054,0.0213769134,0.0132025518,-0.0385494642,-0.0060934857,0.0612473413,-0.0083164005,0.0212064665,-0.0160788484,0.0001946382,-0.0428958647,-0.0532931425,-0.0810192153,-0.0467309281,-0.0275698267,-0.0324985906,0.0019796726,-0.009069209,0.0462195836,0.0062071169,-0.0519295633,-0.0574406907,0.0271295048,-0.0251551587,-0.0495717116,0.0062852385,-0.0342882834,0.0333792344,-0.0174140166,-0.0155675067,-0.0844849721,0.0268454254,0.0402823426,0.0193031393,-0.0394016989,0.0395437405,0.0048009278,0.0187917985,-0.0096444683,-0.0451116785,0.0427538268,0.0121088494,-0.0223427806,0.0243313313,0.0528386161,0.0290044229,0.0427822359,-0.0168742687,0.0166185964,0.0260642096,0.0105606215,0.0265755523,-0.0457650609,-0.0214195251,-0.009587652,0.0125278654,-0.0132806739,0.0043890141,-0.056560047,0.0170731228,-0.0661903098,-0.0185787398,-0.0057809991,-0.0112921232,0.0300555136,0.0379528999,0.0077269375,-0.0234790947,-0.0304248165,0.032953117,0.0110861668,-0.0349984802,0.0198428892,-0.0135576501,0.010177115,-0.037384741,-0.0052092909,-0.0474411249,0.0164765585,0.0224564113,0.00321719,-0.048179727,-0.0087070083,-0.0508500673,-0.012421336,0.0127835367,-0.0251409542,-0.0046943985,-0.0168174524,0.0231097918,-0.0536624454,-0.065281257,0.0049110083,0.0374699645,0.0176270753,-0.0272147283,-0.0023525257,-0.0237631742,-0.0157095455,-0.0626677349,-0.000896623,0.0192463249,0.0098362211,0.0060437717,0.0039948551,-0.0330099314,-0.0157521572,0.0038918767,-0.0330951549,0.0175560564,0.0112424102,-0.0225274321,-0.0189906526,-0.0312202368,0.0480092801,0.0162208863,0.0016893798,-0.0585201867,-0.0011301001,-0.0465604812,0.0061218934,0.0022903837,-0.0054898188,-0.0007843232,-0.0093177771,-0.0483217686,0.0071658823,0.0062923408,0.0307373032,-0.0070700059,-0.0016032686,0.0391744375,0.0389471725,-0.0253682174,0.0039984062,0.0232802406,0.0382369757,-0.0379813053,-0.0122153787,0.012421336,-0.0313906819,-0.0028070514,-0.0330951549,-0.0203684345,0.0059265895,0.0071552293,0.0042079142,-0.0150703685,0.0199281126,0.0282942262,0.0028354593,-0.0062426268,-0.0077411416,0.0149425333,0.0143956821,-0.0409073159,0.0239336211,-0.0080962395,-0.043719694,-0.0157947689,0.0674402565,-0.0112566138,0.0006476104,-0.0395721458,-0.0435492471,-0.1005638167,-0.0009339083,0.0279249251,0.0450264551,-0.0168316569,0.0275130104,0.0010741721,0.0029366624,0.0004487554,0.0120875435,-0.025211975,0.024913691,0.00272893,-0.0318736173,-0.05042395,0.0275414195,-0.0032988626,-0.0185503308,0.0403107516,-0.0219024587,-0.0269732606,-0.0806215033,0.0060686287,0.0054791658,0.0045985221,0.0113063278,-0.0032438224,0.0150987767,-0.0168032479,-0.0434924327,-0.0085365614,0.0082595851,-0.0153260399,0.0300555136,0.0281521883,0.0046056239,-0.0272999518,-0.028933404,-0.0111571867,-0.0198570937,0.0196298305,0.0406516455,-0.0027378073,-0.0253256056,0.0025780131,-0.0359359421,-0.0165475775,-0.032526996,-0.0112282056,0.0413618423,0.001120335,-0.0282800235,-0.0278681088,-0.0657357872,-0.0100776879,0.0603382923,0.034799628,-0.0114483666,0.0493728593,0.034430325,-0.0006169832,0.0162777025,-0.0000751255,0.0367029533,0.0480092801,-0.0008131749,0.0290186275,-0.0351405218,-0.0017541853,0.0144311916,0.0338337608,-0.0015606567,-0.0169736948,0.0148289017,0.0097296918,0.0003497718,0.0279675368,0.0656221509,0.0068995585,0.0409925394,-0.0057241833,-0.0549976118,-0.0154396705,-0.0088845575,-0.0074002473,0.0084087262,0.0055501852,-0.013678384,-0.0372711085,-0.0119952178,-0.0307941176,0.0290896464,-0.0172577742,0.0350552984,-0.0382653847,-0.0342882834,0.0760194287,0.026618164,0.058236111,-0.0547703505,-0.0233086478,-0.0268170182,-0.0059834053,-0.0530658774,0.0464468487,0.018138418,-0.0294021331,-0.0365893207,-0.0385210551,-0.000826935,-0.0055040224,0.0463048108,0.0004272276,-0.006789478,0.0110577587,0.0163913351,-0.0174140166,0.0225132275,0.0015171572,-0.0105109075,0.0150987767,0.0256096851,0.0084655415,-0.0295441728,-0.0045204004,-0.03051004,-0.0121159516,0.0176554844,-0.0336917192,0.0442594439,0.005447207,-0.0207803492,0.0146300467,-0.0189196337,-0.0348280333,0.0383221991,-0.0049465182,0.0319020264,-0.0143104587,-0.0611337125,0.0051666792,-0.025780132,-0.02631988,0.0099711586,-0.020183783,0.0461059548,-0.0025602581,0.0104682958,-0.0035474312,0.01153359,0.0171867535,0.0028620916,0.0023489748,-0.0195872188,0.0169168804,0.0182520486,0.0149851451,0.0291748699,-0.0371006615,0.039259661,-0.0432935767,-0.0212916899,0.0670993626,0.0122082774,0.0532931425,0.0241040681,-0.014416988,-0.0265329387,-0.0130889211,-0.0272715446,0.0032935361,0.0465604812,-0.0172577742,-0.0066971527,-0.0003233613,-0.0634063408,-0.0383506082,0.032526996,0.0035651862,0.043890141,-0.0213769134,0.0453105345,0.0590315312,-0.0088135377,0.0065302565,-0.0216894001,-0.0130889211,-0.0109015154,-0.0393164754,-0.0036166755,0.017200958,0.0451684929,0.0370722562,-0.0433788002,0.0347144045,0.0195304025,0.0123432148,0.0024377494,0.002599319,-0.0351121128,-0.0374699645,-0.0309929736,-0.0089484751,0.0049252124,0.0176838916,-0.0411345772,-0.0100137703,-0.0282374118,0.0036131244,0.018607147,-0.0387483202,0.0195872188,-0.0008668836,-0.0365609154,0.0391176194,-0.0313622765,-0.0338053517,-0.0275982339,0.0164339468,-0.0035829411,0.0525829457,0.0224706158,0.0260215979,-0.0048897024,-0.0257375203,0.0233512595,-0.0037178784,-0.0064840936,0.0336917192,0.0204962697,-0.0229109377,0.0146158431,0.0259931907,0.0141400117,0.0053158207,0.016561782,0.0289476067,0.0150419613,-0.0009756324,-0.0053477795,-0.0190332644,-0.0038279588,-0.0002530075,-0.0201695785,0.0095237345,-0.0017328793,-0.0184509046,-0.0617018677,0.0084087262,0.0222433526,-0.0174850374,0.0104043782,-0.0161498673,-0.0134298149,0.0074286549,-0.0542590097,-0.0060331188,0.0170021039,-0.0087993341,-0.0340042077,-0.0198428892,-0.0285641011,0.0179537665,-0.0413902514,0.0084442357,0.0048151319,0.0198570937,0.0277544782,-0.0400550812,0.0220302939,0.0130747166,0.0109441271,0.0144595997,0.0220302939,0.0238626003,-0.0079542007,-0.0036930216,-0.0300271064,0.0241608843,0.0120307282,0.0136641795,-0.0151271848,-0.0503955409,-0.0386346877,0.0255670734,-0.0110435551,0.0299418829,0.0283368379,-0.0117395474,0.0279533323,0.0042185672,-0.0091615347,-0.050225094,-0.0335496813,-0.0239620283,-0.0236921534,0.0049607223,0.0151982037,-0.017967971,-0.0234790947,-0.0088916598,-0.0289191995,-0.0267602019,0.0078689763,0.0265471432,-0.0182804577,-0.0444298908,-0.0174566284,0.0386630967,-0.0015606567,0.0160788484,0.0372995175,0.0200133361,-0.0132025518,0.0382369757,0.0325554051,0.0442594439,-0.0018837961,-0.0245727971,0.0423845239,0.0106671508,0.012961085,0.0063207485,0.0090336986,-0.0191468969,-0.0045488081,0.0293169096,-0.0202548038,-0.025950579,-0.0058804266,-0.0337769426,0.0672129914,0.0398846343,0.0219734777,-0.0007306146,-0.0133303879,-0.039259661,-0.0026880936,0.0145306196,-0.0458502844,-0.0156527292,-0.0205956977,0.0067681721,-0.0125065595,0.0207093284,0.0143246623,0.0040481198,0.0450832695,0.0151840001,-0.0126343947,0.0411629863,0.0112211043,0.0171867535,0.0146584548,0.0047725202,0.0184367001,-0.0153686516,0.0100847892,0.0724968538,-0.034231469,0.019715054,-0.0346575864,0.0014612292,-0.0061183423,-0.0166470055,0.007393145,0.0147578828,0.0390039906,0.0317315795,0.010006668,0.0019175304,-0.0126841087,-0.0403107516,0.0053477795,-0.0298850667,0.0338053517,0.0447707847,-0.0102481348,-0.0099356482,0.009637366,-0.0183088649,-0.0540885627,-0.0457366519,-0.0171441417,0.0082453806,0.0251409542,-0.0027715417,0.0401403047,-0.0352541506,-0.0371290706,0.0074996748,-0.0041972608,0.0071800863,-0.0004975814,0.0141187059,-0.0168884713,0.0202121921,-0.0287913643,-0.0085791731,-0.0317599848,-0.0106103355,-0.0293737259,-0.0052270461,0.0396005549,-0.0141258072,0.0053903912,0.0218314398,0.0299702901,-0.0104682958,-0.005003334,-0.0025726866,0.0160788484,-0.0071445764,0.0192037113,-0.0088845575,-0.0184367001,-0.0231239963,-0.0342882834,0.0004820458,-0.0512477756,0.0187917985,-0.0152266119,0.005816509,0.0197860729,-0.0524693131,0.0219450705,0.0411345772,0.0309929736,-0.003412494,-0.0254250336,0.0133587951,-0.0100350762,-0.0222149454,-0.0071410253,-0.0305668563,0.0063242996,-0.0002062899,0.0033130664,0.0316463523,0.0218314398,0.0269448534,-0.0273851752,0.0100137703,-0.0194877908,0.0208229609,-0.0326122195,0.0199139081,-0.0118247708,-0.0530942865,-0.0249278955,-0.0209081843,0.0159368087,-0.0052661067,0.0699401498,-0.0138488309,0.0013076492,0.0044955434,0.0068960078,-0.0143104587,-0.0061041387,-0.0112779196,-0.0256949086,-0.0275982339,-0.006370462,-0.0102339312,0.0218882542,-0.0135434465,-0.0387199111,-0.0137707097,-0.028095372,-0.0106600486,0.0024395247,0.0184082929,0.0198428892,-0.0068072332,0.0080465255,-0.0946549848,-0.0219734777,0.0549407974,-0.020382639,-0.0202405993,-0.0174708329,-0.0087567223,0.024075659,0.028833976,-0.0177833196,-0.0110222492,-0.0413334332,-0.0069102114,-0.0050779046,-0.0090905149,0.0108447,-0.0076133059,0.0380381234,0.0263624918,0.0333792344,-0.0181526206,0.0068285391,-0.0232802406,0.0685197562,0.0290754437,-0.0224422086,-0.024274515,0.0203400273,-0.0019246323,-0.0225274321,0.0141116036,0.0143033564,-0.005667368,-0.0023631786,-0.0172293652,0.0077340393,0.0097652012,0.0057206326,-0.0060295681,-0.0175986681,-0.0206525121,-0.0506228022,0.0581224784,-0.0479524657,0.0583497398,-0.0105677228,0.0218740515,0.0415606983,-0.0128190462,0.0036504099,0.0249421,0.0326690376,-0.0057312855,0.025013119,0.0325554051,0.0310497899,-0.0464184396,-0.0380949378,-0.0190474689,0.0147010665,-0.0226268582,0.029771436,0.0274988059,-0.0557646267,-0.0252687894,-0.0000235253,0.0110719623,0.0209365916,0.004399667,-0.0123503162,0.0176980961,0.0206099004,0.0205956977,-0.004239873,0.0341462456,0.0291748699,0.0002238228,-0.0134582231,-0.027356768,-0.0158799924,0.0239620283,0.0009374594,-0.0253256056,0.0126272934,-0.0192605276,-0.0204110462,-0.0061929133,0.0047973772,-0.0039699981,0.0128261484,0.0478956476,0.0159794204,-0.00968708,0.0084442357,0.0193031393,0.0102055231,0.0173287932,0.0023915865,0.0162350908,-0.019445179,0.0160788484,-0.0128687602,0.0246012062,0.0018855716,-0.0170731228,-0.0025371769,0.011384449,0.0033592293,0.0254108291,0.0205246769,-0.0034071675,-0.0154112633,0.0443730764,0.0306236707,0.0058058561,0.0191042852,0.0170731228,-0.0318736173,0.0092325537,-0.0252971984,0.0282374118,-0.0093745934,-0.0445719287,0.0145590277,-0.0034835136,0.0271295048,0.043890141,-0.017300386,0.0099427504,-0.0174424257,0.0150845731,0.055082839,-0.0066829487,0.0570713878,0.0105038052,-0.012790638,0.0170163065,-0.0027129506,0.0058555696,0.0285925101,-0.0039344882,0.0062852385,-0.0008438022,-0.0085791731,0.0161214601,0.0041617514,0.0074144509,-0.0220160894,-0.0190616734,0.0304532237,0.026788611,-0.0529522486,-0.0270584859,0.062724553,-0.0011256614,0.0366177298,-0.0511341467,-0.0161072556,-0.0123077044,-0.0032047615,0.0101913195,0.0287061408,0.0280669648,0.0151413884,0.0142891528,-0.0139624625,-0.0183230694,0.0124497442,-0.0118460767,0.0062319739,0.002404015,0.018138418,0.0116685275,0.002686318,0.0526681691,0.0327826701,-0.0125775794,0.0130392071,-0.0019317344,-0.0032669038,-0.0186355542,0.0240898635,0.0130250035,0.0343451016,0.0180105828,-0.0345155485,-0.0334644578,0.0237205625,-0.0148004945,0.0316747613,0.0259079672,-0.0032047615,0.0199707244,0.0238341931,-0.0065089506,0.0047157044,0.0343166925,0.0087780282,-0.0281379838,0.0115975086,-0.0372427031,0.0220729057,0.0048897024,-0.028933404,0.0052732085,0.0300839227,-0.0045204004,0.0222149454,-0.0298850667,0.0404811986,0.0078405691,0.0115619982,0.0070806588,0.0047831731,-0.0151271848,-0.0038244079,0.0190758761,-0.0309361573,0.0201553758,-0.0263909008,-0.0356234536,-0.0408505015,-0.0166043937,-0.004041018,-0.0197292585,0.0336064957,0.008650193,0.0043073413,-0.0110719623,0.0242034961,0.0319588408,0.0131031247,0.0101558091,-0.010056382,0.0140121765,0.0294305403,-0.0010448765,-0.0100705856,-0.0157095455,0.0183940884,0.0211070385,0.0036788175,-0.0073505333,-0.0297430269,-0.0274419915,-0.0024022395,0.0271863211,0.0316747613,0.0419015922,-0.0094598169,0.0283794496,0.0258227438,0.0222575571,-0.0118389754,0.0245585926,0.0378108583,0.0190190617,0.0319588408,-0.0125562735,-0.0174566284,0.0116259158,0.0481229126,0.0019548158,0.0037356333,0.0001747749,0.00545786,-0.0257091112,0.0109938411,-0.0028301328,-0.0068320897,-0.0395721458,0.0274703987,0.0152692236,-0.0240614563,-0.0266465712,0.0292032789,-0.0508500673,-0.0138843404,-0.0057348362,-0.0340894312,-0.0253398102,0.0132877761,-0.0233086478,-0.0104611935,0.0484922156,-0.0166470055,0.0012162115,-0.010106096,0.0141684189,-0.0174566284,0.0050246399,0.0079613021,-0.0124852536,0.0165049657,-0.0222291499,0.0107310684,0.0039415904,0.0267317947,-0.0007448185,-0.0142891528,-0.0196014214,-0.015624322,0.0058875284,0.0146726584,0.0062781367,0.0187349822,-0.021121243,-0.0243597385,-0.000620978,0.0365609154,-0.0098717306,0.0022264658,0.0024057906,0.0235075019,-0.0015286979,-0.0030112329,0.0293169096,0.0209792033,0.0132025518,0.0362200178,0.0093816957,0.0393732898,0.0119170966,0.0491455942,-0.0199849289,-0.0111926962,0.0302259605,-0.0022655267,0.0044387276,0.025950579,-0.0226410627,-0.0007172984,0.001901551,0.0012188747,-0.0190048572,-0.0119384024,0.0092751654,0.0035634108,0.012052034,0.0134937325,0.0065018483,-0.0048009278,-0.0148146981,-0.0054933694,0.0006919976,-0.0269590579,0.024274515,0.0215331558,-0.0166043937,0.0172151625,0.0598837659,-0.0044564828,-0.0367881767,0.0060189147,-0.012052034,0.0200985596,0.0198855009,-0.0073150233,-0.0265613478,0.0251835659,-0.0266607758,0.0229109377,-0.0394869223,0.0259079672,0.0134227127,-0.0098859351,-0.0038528158,0.0361632034,0.0198286846,0.0083164005,0.0314475,0.0166470055,0.0077411416,-0.0168742687,-0.0378960818,-0.0058058561,0.0131244306,0.0029721721,-0.0049536205,0.0188486148,0.0015988298,-0.0326690376,-0.0016299009,0.0361347944,0.0033112909,-0.0006049986,-0.0210644267,0.0285641011,0.0020418148,0.0103049502,-0.023436483,-0.0135647524,-0.0071303723,-0.0137636075,-0.0246864296,0.0400550812,-0.0145093137,-0.0048754988,0.011753751,-0.0258369464,-0.0244307574,0.0101487078,0.0071410253,-0.018706575,-0.0074996748,0.0076701217,0.0543726422,0.0102410326,0.0130960224,0.0181100089,-0.0156811383,0.0017435323,-0.0185929425,-0.0182520486,-0.0285783056,-0.028166391,0.0248284675,-0.0041937102,0.0103191547,-0.0402823426,0.00437481,0.0351405218,0.0068675997,0.0223853923,0.0171157345,0.0244165547,-0.010177115,0.0291180555,-0.0063988701,-0.0411913954,-0.032725852,-0.0057596932,-0.0293453168,0.0015313611,-0.0236637462,-0.0112424102,0.0243171267,0.0091615347,-0.0065906229,0.0335780866,0.0251267515,-0.0179821737,0.0267744064,0.0032580262,-0.0079826079,-0.0179111548,-0.0338053517,-0.0490603708,0.0091189221,-0.0309645664,0.0014354846,0.0080749337,0.0000093976,0.0097936094,0.0166896172,-0.0066722957,0.0031781292,-0.0082950946,-0.0303964075,0.0151840001,-0.0376120061,-0.0032154145,-0.0016822779,0.0204394534,0.0417027362,0.0397141874,0.0126343947,-0.0047512143,-0.0370154381,-0.0246012062,0.0363904648,0.00269342,-0.0133445915,-0.008131749,0.0123645207,0.0205814932,0.0141542153,-0.016561782,-0.0268738344,-0.0118602812,0.0302827768,0.0022513228,0.0249563027,-0.002704073,-0.011483877,0.0294305403,0.0111784926,-0.0166896172,0.0149141252,0.0105180098,-0.0405948311,0.0221723337,-0.0175560564,0.0092183501,0.0349132568,0.0027520112,0.0118957907,0.0193741601,0.0338337608,-0.0082098711,-0.0147436783,0.0032935361,0.0714741722,-0.0120236259,0.019516198,-0.0137991169,0.0319020264,0.0096231624,0.0150419613,-0.0100492798,-0.0057383873,0.0043108924,-0.004424524,-0.0147152701,0.0213058945,-0.0059407935,-0.0009401226,-0.010894414,0.0019406119,0.0017710524,-0.0033840861,-0.0057170815,0.0223143734,-0.0087709259,0.0168032479,0.0027697661,-0.025481848,0.0167038199,-0.0033006379,-0.0080394242,0.0213200971,-0.0149283297,0.0138204228,0.029032832,0.0023596277,0.0026898691,-0.0003926055,0.0022602002,0.009438511,-0.0259079672,-0.0209792033,-0.0169878993,0.005383289,0.0288765877,0.040367566,0.0233938713,0.0106174368,0.0453105345,-0.0405096076,0.0224706158,-0.0103617664,-0.0135292429,-0.0088987621,-0.0190332644,0.0024306474,0.0263909008,-0.0237205625,0.0134369172,-0.0022282414,-0.002791072,0.0222291499,-0.0038883255,-0.0341462456,0.0221155174,0.0169168804,-0.0051418222,0.0003701899,0.0494296737,-0.0010777231,-0.0368449911,0.0028567652,-0.0005610552,-0.0043002395,-0.0263056774,0.0209507961,-0.0051950873,0.0166754127,-0.0174566284,0.0238626003,-0.0102126254,-0.0231666081,-0.0386062786,0.0216183793,0.0131031247,-0.0032367203,-0.0172861814,0.0026632368,-0.0093603889,0.0415606983,-0.0136570781,-0.0408505015,-0.0077695493,0.012740924,-0.0138772391,0.0439753644,0.0032686791,0.0388903581,-0.0015686464,0.002389811,0.0095734484,-0.0240898635,0.0175276492,0.0199707244,0.0020347128,-0.0337485373,0.0219024587,0.008131749,-0.0052625556,0.0069386195,0.0276692547,-0.0221297219,-0.0051489244,-0.0059549971,-0.0245585926,-0.0177407078,-0.0090052914,0.0067859273,-0.0311066043,-0.0514750406,0.0386346877,0.0097367931,0.0165049657,0.0161924791,0.0071765352,0.0042292201,-0.0069244155,0.0180247854,0.0125207631,0.0083164005,-0.0126699051,-0.0116614262,-0.0227546953,-0.016362926,-0.0383790173,0.0261210259,0.0041866079,-0.0191610996,-0.0222859643,-0.0045132986,0.0177975241,0.0112921232,0.0224280041,-0.0059123854,0.0114199594,-0.002100406,-0.0137067912,0.0233228523,0.0285214894,0.0053158207,0.0017923584,-0.0048719477,0.0026543592,-0.0067007034,-0.0153828552,0.0262204539,0.0176980961,-0.0161782745,0.0282516144,-0.0044813398,-0.0085223578,0.0045417063,0.0099924644,0.0018056745,-0.0181526206,0.0110435551,-0.0078192633,0.0099214446,0.0276408456,0.031248644,0.0289902203,0.0316463523,0.0158799924,-0.0006081057,0.0030360899,0.0550544299,0.005013987,0.0364472829,0.0013902095,-0.0132806739,-0.0403107516,0.0294589493,0.0174708329,-0.0120094223,-0.0215615649,0.0172293652,0.0117111392,0.0371574797,0.0203400273,0.0024466268,-0.0211496502,-0.0008540112,0.0224137995,-0.0239620283,-0.0028532143,-0.010596131,0.0071232705,0.0041546491,0.0238199886,-0.0232660361,0.0145874349,-0.0033663311,0.0413902514,-0.001189579,-0.0240898635,0.005592797,-0.0090479031,0.0220018867,0.0158373807,-0.0223143734,0.0050672516,0.0263909008,0.012272195,-0.0283936542,0.0058271619,-0.0274846032,0.0215473603,0.0297998432,-0.0223711878,-0.0138133215,-0.0076346118,0.0020364884,0.0145590277,0.0009853976,-0.0119739119,0.0084797461,-0.0268880371,0.028734548,0.01710153,-0.0141400117,0.0281095766,0.0040658745,0.0200701524,0.0055998992,0.0075564901,0.0438333265,0.0004065875,-0.0044032182,0.0200275406,-0.0161640719],"22":[0.0011930139,0.0019557031,0.0437461734,0.0306754988,0.0366650596,0.0012726064,-0.0157435834,0.0254416317,0.0180806313,0.0112164291,0.0190462377,-0.0206555817,0.0001431136,-0.0273728445,0.061127089,0.0172269791,-0.0003209942,-0.0218311027,-0.035125684,0.0307034887,-0.0293600354,0.0521707386,0.0148479491,0.0419549011,-0.0004475988,-0.0034076113,-0.0408073701,0.0505194142,0.0609591566,-0.0568728223,0.0033114005,-0.033222463,-0.0313192382,0.0314871669,0.015183812,0.0046391096,0.0119651239,0.0013626947,0.0354895368,-0.0053598159,-0.033978153,0.0345099382,-0.0013819368,0.0218450986,-0.02637925,-0.0188643131,-0.0265611764,-0.0375327058,0.0083475979,0.0745616183,-0.0217471384,0.0100618992,-0.011986115,-0.0413111635,0.0166812018,-0.0403035767,-0.0297238864,0.0206275936,0.0041003292,0.0059125903,-0.0064688637,-0.0552494861,0.0318510197,0.0263372678,-0.02397223,0.0096910512,-0.0254136436,0.0453135334,-0.0488960743,0.0341460854,0.0241821446,-0.0276947133,0.014791972,-0.0086974557,0.0219010748,-0.0747855231,-0.0179127008,0.0691878051,0.0324667692,-0.0425426625,0.0202077646,0.0052163741,-0.0349577554,0.0340341292,0.0173389334,-0.0029457996,-0.0117062293,-0.0101598594,-0.0252597071,0.0080817062,-0.0064058895,0.0462371558,0.0002210662,0.0201517884,0.0149459094,0.0181645975,0.0053668129,-0.0025242213,-0.019620005,0.0184444841,0.0022653269,-0.0099359509,-0.0410592668,-0.0072140601,0.0260014031,0.0123709589,0.013189625,-0.0024490019,0.0177587625,0.0265751705,-0.0853092372,0.0095301159,-0.0551655181,0.0108735692,-0.0230626017,-0.0220969953,-0.0137983765,0.006794231,0.0025766999,-0.0146100465,-0.0048630182,-0.0065528294,-0.0150158806,0.0193960965,0.0201237984,-0.0044501866,0.0014510336,-0.0368889682,-0.0253576655,-0.002205851,0.0136794252,0.0022530819,0.048420269,0.0025592071,-0.0243920591,-0.0150158806,-0.0627504289,-0.022768721,-0.0132735912,-0.0296399221,0.002485737,-0.0663889423,0.0241541564,-0.0127138188,-0.0303116478,0.032830622,-0.0296679102,0.0471607819,-0.0656612441,-0.0108385831,0.0024262613,-0.0370848887,-0.0184444841,-0.0262533017,0.0391280539,-0.0020991445,0.0163033567,0.0178567227,-0.0241821446,-0.0571527109,0.0044466881,0.0478325076,-0.0042297761,0.0093831765,0.0069236783,0.0160374641,-0.0528984442,-0.0541019514,-0.0806071535,-0.0032554234,-0.0149179203,-0.0666128546,-0.0161354244,0.0055242488,0.0322428606,0.0065353368,-0.031990964,-0.0413111635,0.0209774505,-0.0464330763,-0.0434942767,-0.0123429699,-0.0143581489,0.0088723842,-0.0258614607,0.0211173948,-0.0587200709,0.0290801488,0.0373647735,0.0218730867,-0.0520028062,0.0370569006,0.0288282521,0.0345099382,0.0055137533,-0.0405274853,0.042346742,0.0310113616,-0.0615189299,0.030395614,0.0329705626,0.0175488479,0.0307314768,0.0006656037,-0.0045796339,-0.0023842785,0.0101738544,-0.0000258703,-0.0582722537,-0.0312632583,-0.0106426626,-0.0070321341,-0.0197879355,-0.0177867524,-0.0410592668,-0.0292760693,-0.0486161895,-0.0273028743,-0.0138823427,-0.0091102878,-0.0231185779,0.0693557337,-0.0129937045,-0.0276247431,-0.033642292,0.0245879795,0.0138193686,-0.0377846025,0.0184864663,0.0128327701,0.0214252695,-0.05357017,-0.0266451426,-0.0426546186,0.0130776707,0.0061924765,0.0123429699,-0.0312352721,-0.006007052,-0.0641498566,0.0051149158,-0.0148479491,-0.0111534549,-0.0110904807,-0.0190882217,0.0208654962,-0.0259314328,-0.0699155107,-0.0126648387,0.0793756545,0.0249658264,0.013574468,0.0101668565,-0.0084525552,-0.0106986398,-0.0665009022,-0.0024804892,0.0436901972,0.0212993193,-0.0043207393,0.0045551439,-0.0466289967,-0.0048350296,-0.0282964688,-0.0431024358,0.0236503612,0.018388506,-0.0564529933,0.0101598594,-0.0068537071,0.0590559356,0.02719092,0.0137843825,-0.0474406667,-0.0325787254,-0.0192421582,-0.0041528079,-0.000392059,-0.0067767384,0.007808818,-0.016373327,-0.042010881,0.0093551874,0.0102298316,0.0352656282,0.0074449661,0.0472167581,0.0236363672,0.0338941887,-0.0366650596,0.0133085763,-0.0018577429,0.0335303359,-0.025973415,0.0144561091,0.0194800608,0.006591314,-0.0325227454,-0.0534302257,-0.0197039712,0.0135394828,-0.0029283066,0.0125109013,-0.0353216045,0.0008838273,0.0372808091,-0.0205016453,-0.0052548586,-0.0083336039,0.0137843825,0.0138263656,-0.0147220008,0.00880941,-0.0239442419,-0.0053073373,-0.0177027863,0.0472167581,-0.0266171526,-0.0032326826,-0.0366650596,-0.0400516801,-0.0850853249,-0.0132456021,0.0438581258,0.0193681065,-0.0177027863,0.02240487,-0.0057201688,0.0173249394,0.001437914,-0.0099639399,-0.0285903495,0.016779162,0.0193681065,-0.0299198069,-0.0435502529,0.0366930477,0.0149738975,-0.0340341292,0.0075989035,-0.0109295463,-0.0110415006,-0.0366650596,0.0356854573,-0.0094671417,0.008403575,-0.0053668129,-0.0016058456,-0.0035772922,-0.0008449057,-0.0532063171,-0.0286883097,0.0087674269,-0.0097540254,-0.0028425916,0.0017064296,-0.0291081388,-0.0167511739,-0.0294719897,0.0035195658,-0.0430464596,0.011622264,0.0088653872,-0.0101878485,0.013588462,-0.0027516286,-0.0520587862,-0.0180386491,-0.0194940567,-0.0376166701,0.0097470284,0.0038029503,-0.0012953471,-0.0341460854,-0.0510232076,0.0140852602,0.0440540463,0.0546617247,0.0017073043,0.0308994073,0.0256655402,-0.0014938912,0.0014615294,-0.0204316732,0.0400236882,0.0157855675,0.0112864003,0.0162893627,-0.0238602757,0.0033673777,0.0347338468,0.0514150485,-0.0166812018,-0.0146520287,0.0007591906,0.0205156393,0.0069971485,0.0286043435,0.0567608699,-0.0066717812,0.0200538281,-0.0139453169,-0.0364691392,-0.0201797765,-0.0014431619,0.0110345036,-0.0035965343,0.0076408861,-0.0451176129,-0.0265471824,-0.0120700812,-0.0176188201,0.0227967091,-0.0218171086,0.0237763114,-0.0337822326,-0.0404155292,0.0464610681,0.009180259,0.04480974,0.0043277363,-0.0248678662,-0.0103417858,-0.014372143,-0.0068502086,0.0424586982,0.0721545964,-0.0160514582,-0.0411712229,-0.0281425323,0.0030577539,-0.0142601887,0.0381204635,-0.0334183797,0.008410573,0.02397223,0.0569288023,-0.0036525116,0.0361332744,0.0138403596,-0.0326626897,0.0268830452,-0.0042052865,0.0245040134,0.0279466119,-0.0412271991,-0.0137354024,-0.0250218026,-0.04875613,-0.029947795,0.0460692272,-0.0194380786,0.0007386365,0.0047860495,-0.0264772102,-0.0257215183,0.0436342172,-0.0085575124,0.0353495963,-0.0040758392,-0.0235524029,0.0095021278,-0.0346498787,-0.0067732399,0.0123359729,-0.0564250052,0.0334463716,0.0169051103,0.0059020948,-0.0129517224,0.0073050233,0.011594275,-0.003690996,0.0025574579,-0.0214812458,0.0026274293,0.0109505374,-0.0216071941,0.0113493754,-0.0305635445,0.0291921031,-0.0304515902,0.0020326716,0.0610711128,-0.0214112755,0.0495118238,0.0318510197,-0.0161214303,-0.0281705204,0.007395986,-0.0026886542,0.0001167649,0.0330265425,-0.0169470944,0.0004994215,-0.0074309716,-0.0687399879,-0.0448377281,0.0160514582,-0.0158415437,0.0118391756,-0.0378685668,0.0061015137,0.064821586,-0.0384843163,0.0312072821,-0.0302556697,-0.0178427286,0.0040828362,-0.0103557799,-0.0283244569,-0.0006717262,0.032410793,0.0163033567,-0.0282964688,0.0336982682,-0.0142042115,0.0406114496,-0.0055662319,-0.025973415,-0.009600088,-0.031179294,-0.0111184688,-0.017968677,-0.0217751265,0.0082776267,-0.0418149605,-0.039967712,-0.0055172518,-0.0129867075,-0.0088234041,-0.0315711349,0.0248818602,-0.0157016013,-0.0469368733,0.0197879355,-0.0242661107,-0.045145601,-0.0069201798,0.0213133153,0.0034618392,0.0346778668,0.0123429699,0.0216771662,-0.0017099282,-0.022782715,-0.0160934422,-0.0089003732,-0.0023702842,0.0302556697,0.0217751265,-0.0228806753,0.0402755886,0.0177307744,0.0263652559,0.0250777807,0.0245180093,0.0170590486,0.0154497037,0.0068012285,-0.0026606657,-0.0134065365,-0.0069341743,0.0084315641,-0.0098239966,0.016793156,-0.0015297516,-0.0071860715,-0.0541299395,0.0169470944,0.0114893178,-0.0108455801,0.0159115158,0.0050239526,0.0276387371,0.0185844265,-0.0382044315,-0.0248258822,0.0146240406,0.0086274846,-0.0388761573,-0.0007443217,-0.0370569006,0.0281005483,-0.0422627777,0.0104817282,0.0144421142,0.0198019296,0.0303396359,-0.0340341292,-0.0013801876,0.0058741062,-0.0162473787,-0.0148759382,0.027204914,0.0130076995,-0.0058985963,0.007990744,-0.0238742717,0.0092292391,0.0204876512,0.0181086212,-0.0012201278,-0.0218450986,-0.0248958543,0.0297518764,-0.0037084888,-0.0072420486,0.0647656098,-0.0049539814,0.0404994972,0.0073679974,0.0025207228,-0.0442499667,-0.017198991,-0.0247419178,-0.0080397241,-0.0110834837,0.033642292,-0.0446418077,-0.0496237762,-0.0280865543,-0.0221389774,-0.0534302257,0.0366370715,0.0350137316,-0.0043312348,-0.0565369613,-0.0077038608,0.0224468522,0.0343140177,-0.0035353093,0.0495398119,0.0182345696,0.0090683047,0.0147359949,0.0398837477,0.0377846025,-0.0117901955,-0.0260433871,0.0236783512,0.0189762674,-0.0088793812,-0.0104537401,-0.0076758722,-0.0382883959,0.0138263656,0.0387082249,-0.0117622064,-0.0014973897,0.010397763,-0.0175208598,0.064261809,0.0172689632,0.015589647,-0.0114893178,-0.010789603,-0.0026379251,-0.0056676902,0.0340621173,-0.0337262563,-0.0035720444,-0.028772274,-0.0012454925,-0.0202497486,0.0184864663,-0.0158555377,0.0244900193,0.0343420058,0.0262113176,-0.0308994073,0.0385962725,0.0153377494,0.0204176791,0.0462371558,-0.006787234,0.0001357884,-0.0334743597,0.0063429154,0.060791228,-0.0244760253,0.0152677782,-0.0184584782,-0.0044501866,-0.0012358713,-0.0126438476,-0.019620005,0.0326067135,0.0414511077,0.014777978,-0.0007425724,0.0017352928,0.01200011,-0.0295279678,0.0074239746,-0.0205296334,0.0207255539,0.0427385829,-0.0351816639,-0.0109995175,-0.0084945383,0.0184444841,-0.0641498566,-0.0298358407,-0.0040688417,-0.0033183978,0.0163173508,-0.0111464579,0.0232165381,-0.0385402925,-0.0514430366,0.0126088616,-0.024769906,0.015995482,0.0045201578,-0.014791972,-0.0249798205,0.0056641917,-0.0234544426,-0.0075569204,-0.0708671212,-0.0008326607,-0.0155756529,-0.0422347896,0.0411712229,0.0180946253,0.0312632583,0.0366370715,0.0143091688,-0.0264212321,-0.0081306864,-0.0083266068,-0.00920125,0.0158695336,0.0332504511,0.0060840207,-0.005013457,-0.0126018645,-0.0505474024,0.0109855235,-0.0200678222,0.0353216045,-0.0144141261,-0.0049154968,0.0021428769,-0.0600635223,0.0134345256,0.017562842,0.0460412391,0.0024175148,-0.0053353258,0.0125388904,0.0116642462,-0.0278906338,-0.0226847548,-0.0203197189,-0.0293600354,-0.0096560651,-0.0139523139,0.0258474667,-0.0201797765,0.0333903916,-0.0496797562,0.0301717054,-0.0185984205,0.0382604077,-0.0165692475,0.0130286906,-0.028800264,-0.066724807,0.0141062513,-0.022390876,-0.0066682827,-0.0091032898,0.0655492842,-0.0120280981,-0.0060315421,0.0022390876,0.0123499669,-0.0344819464,0.0012743557,0.0211173948,-0.016415311,-0.0437181853,-0.0159674939,0.0081376834,0.0129307304,-0.0237623174,-0.0322988369,-0.0008750809,-0.0282264967,-0.0031294746,0.0137004172,0.011993113,0.001138786,-0.0173109453,-0.0133015793,-0.0950492695,-0.0198858958,0.0484762453,-0.025553586,-0.0052583572,-0.0036245231,-0.0037679644,0.04243071,0.0399397239,-0.0058601121,0.0052058785,-0.0824543983,-0.0085505154,-0.004173799,-0.0047790525,0.0327186659,-0.000515165,0.0071161003,0.0208934862,0.022810705,-0.0009830993,0.0359653421,-0.0288842283,0.0541019514,0.00348458,-0.0370009206,-0.0160374641,0.0366090797,0.0044676792,-0.0375047177,0.0276807193,0.0202777367,-0.0021778625,-0.0064898552,-0.0164572932,0.0380644873,-0.0116082691,-0.0181226153,-0.0260433871,-0.0096350731,-0.0136164511,-0.0342860296,0.0487841181,-0.031990964,0.0657731965,-0.0418149605,-0.005209377,0.0122310156,0.0018874808,0.0047405683,0.0280305762,0.0308714192,0.0114823207,0.0046880897,-0.0050239526,0.0106286686,-0.0358813778,-0.0479444601,-0.0041073263,0.0090333186,-0.0305075683,-0.0079277689,0.0201797765,-0.0561451204,-0.0382044315,-0.0017466632,-0.0072350516,0.0376726463,-0.0011746463,-0.005219873,0.021943057,0.0527305119,0.0366370715,-0.0135324849,0.0166812018,-0.00358254,0.0150298746,-0.0076618777,-0.0243220888,-0.0044431891,0.0097470284,-0.0164992772,-0.0450056605,0.0193541124,-0.0115243038,-0.0025242213,-0.0025067285,-0.0048455256,0.0047370694,-0.0233844705,0.0395758711,0.0054997588,-0.0039393948,-0.0033166483,0.0319069959,-0.0016180906,0.0207115598,-0.0140222861,-0.004397708,-0.0223069098,0.027582759,-0.0107686119,0.0197879355,0.0247139279,-0.00065642,-0.0069621629,0.0188223291,-0.0037854575,0.0193541124,0.037588682,-0.0168771222,-0.0277366973,0.0242521167,0.0276667252,0.0198998898,-0.0120560871,0.0311233159,0.0085645095,0.0217611324,-0.0280585662,0.0179266948,-0.0177727565,-0.0378405787,0.0215652119,0.0041598049,0.0106006805,0.0155336699,0.0071930685,-0.0029965288,-0.0056466991,0.0033201471,0.0687959641,-0.0008973843,0.0369449444,0.0046705967,-0.0345099382,-0.0028793267,-0.0127558019,0.0065598269,0.0090403156,0.0030297653,0.0077528404,0.0106076775,0.0003249301,0.0048280326,-0.0333624035,-0.0099079628,-0.0127278129,-0.0148899322,0.0113213863,0.0226147845,-0.0128467651,-0.0169750825,0.0694117174,0.0069096843,0.0707551688,-0.0417030044,0.0108385831,-0.0093341963,-0.0213972796,0.033166483,0.0268270671,0.0026939022,0.001918968,-0.0140852602,-0.0102578197,-0.0548296571,0.0089213643,-0.0043137423,0.0104257511,-0.0197319593,0.0207115598,0.0170730427,0.028394429,0.0340341292,0.0182625577,0.0040058675,0.0074939462,-0.0013644439,0.00186474,-0.0141272433,-0.0062939352,0.0069516669,0.0524786152,0.0514990129,-0.0104327481,-0.0184584782,0.0089073703,-0.0117762014,-0.003405862,0.013980303,-0.0042822547,0.0089283613,0.0233704764,-0.0008536521,0.011188441,0.0373927616,0.0029318053,-0.0135254879,0.0188923012,-0.0415630639,0.0070881117,0.0381484553,-0.0208934862,-0.0087394388,0.0354335606,0.0230066236,0.0211453829,-0.0194240846,0.0194100905,0.0015454952,0.0181366093,0.0004591879,0.0124339331,0.0042787562,0.0139523139,0.0047300723,0.0124409301,-0.0153097613,-0.0110764857,-0.0413111635,-0.0176328141,-0.0056432001,-0.0011414099,-0.0287442859,0.0460412391,0.0072490461,0.0172829572,0.0167511739,-0.015211801,0.0285623595,0.0068432111,0.0320189521,-0.0158835277,0.0228526872,0.0154077215,0.0148479491,0.0089143673,-0.0034793322,0.0234404486,0.0387642048,-0.0015962245,0.0059475764,-0.0084595522,-0.0210054405,-0.0143301599,0.0433823206,0.0250917748,0.0411712229,-0.008774424,0.0188363232,0.0197319593,0.0181226153,-0.0012953471,0.016401317,0.035209652,0.0065143453,-0.0023475434,-0.0086414786,0.026015399,-0.0096770562,0.0309833735,0.0218171086,-0.0092362361,-0.011188441,0.0075429264,-0.007773832,0.0071370914,0.0258474667,-0.0090473127,-0.0227967091,0.0478884839,0.0023125575,-0.0121680414,-0.0127418078,0.0543818399,-0.0529264323,-0.0143091688,-0.0066927727,-0.0107756089,-0.0113633694,-0.0200958103,-0.0071615814,-0.0178147405,0.0390720777,-0.0221949555,0.0088234041,-0.0340061411,0.0118951527,-0.0251197629,-0.0092852162,0.0201937705,-0.0095091248,0.0392400101,-0.0260293931,0.0013478257,-0.0011046749,0.0249938145,-0.0133225713,0.0037434744,0.0138053745,-0.0162473787,0.0109785264,0.0098239966,0.0090613076,0.0061260033,-0.0282544866,-0.0158275496,-0.0163173508,0.0043452294,-0.0216911603,-0.0125039043,0.0044466881,0.0374767259,0.0061539924,-0.0185144544,0.033642292,0.012007107,0.0111394608,0.0220130291,0.0062204651,0.0112584122,0.0113283833,0.0624145642,-0.0210334286,0.0104187541,0.0268970393,0.0085295243,-0.0305635445,0.0276387371,-0.0089353584,-0.0025924435,0.0007714356,0.0406394377,-0.0031627112,-0.0042507676,0.0192981362,-0.0054297871,0.0071580829,-0.007990744,0.0150438696,0.0026606657,-0.0087184468,0.0218031146,-0.0080257291,0.0028565859,0.0155476639,0.0247839,-0.0146520287,0.0311233159,0.0555013828,0.0148479491,-0.014372143,0.0066927727,-0.0157855675,0.0288842283,0.0024962327,0.0001707742,-0.0050309496,0.0309273973,-0.0182065796,-0.0039288988,-0.0210614167,0.0113703664,0.0120490901,-0.0301437154,0.0031697082,0.0193401184,0.0191861819,-0.0115243038,0.0271069538,0.030395614,-0.0073540029,-0.0036630072,-0.0103487829,-0.0209914465,0.0242381226,-0.0237483215,-0.0152537841,0.0079067778,0.0192281641,-0.0206275936,0.01359546,0.0442499667,-0.0013417032,0.0046635997,-0.0259314328,0.0385402925,0.0070251371,-0.010376771,-0.0061574909,-0.0312632583,-0.013217614,-0.0277227033,-0.0192281641,0.0221109893,-0.0093831765,-0.0332504511,-0.0077388464,-0.022768721,-0.0242661107,-0.0082286466,-0.0053458214,-0.0169610884,0.0156316292,0.019200176,0.0649335384,0.0170730427,0.039212022,0.0132525992,-0.0178427286,-0.0019049736,-0.0115033118,-0.0044361921,-0.0319069959,-0.0329985544,0.0285063833,-0.0307594649,-0.0004946109,-0.0375606939,0.0288562402,0.0321309045,0.0097330334,0.0149599034,0.027568765,0.0158835277,-0.0085785044,0.0125388904,0.0021831105,-0.038400352,-0.0140712662,0.0114683267,-0.0358254015,0.0442499667,-0.0321868844,-0.015197807,0.0121400524,0.00133733,-0.0008523401,0.0190602317,0.0105726914,-0.0068537071,0.0066472911,0.0009376179,-0.0245599914,-0.0192981362,-0.0382324196,-0.0090263216,0.0035370586,-0.0248118881,0.0216211881,0.0222649276,-0.0120141041,0.0390161015,0.0015341248,0.0032239363,-0.0077178548,-0.0066612856,0.0003997121,-0.0093062073,-0.0101528624,0.0092292391,0.0379525349,0.0107406229,0.0321588963,0.0483922809,0.0049469839,-0.0109085543,-0.0342020616,-0.0340341292,0.0348737873,0.0025539591,-0.0152817722,0.0036735029,0.0067102653,0.0130007016,0.0218031146,-0.0162613727,0.0083475979,0.0067032683,0.0166672077,0.0128607592,0.0469928496,0.0025732014,-0.0077528404,0.0283524469,0.0037434744,-0.0074169775,0.0392959863,0.0072280546,-0.0530943647,0.0368050002,-0.0027638737,-0.0276667252,0.0096770562,-0.0145260803,0.0149459094,0.01278379,0.0046775937,-0.01843049,-0.0453415215,0.0028845745,0.0498196967,0.0041248193,0.0051079183,-0.0062099695,0.0197739415,-0.0189762674,-0.0112444181,-0.0039498904,-0.013581465,0.019606011,-0.0114823207,-0.0399397239,0.0121960295,-0.0235244129,0.0144840972,-0.0136234481,-0.0121400524,0.0189622734,0.0074729547,-0.0188643131,0.0158415437,0.0024594977,0.0467969291,-0.00360703,-0.0149039263,0.0031452184,0.0043312348,0.0090822987,0.0284084231,-0.0139313228,0.0100968853,0.0308434311,0.0141552314,-0.0121120643,-0.0153097613,-0.0169470944,-0.0049259928,0.0098309936,-0.0200818162,0.0039079073,-0.0253436714,0.0398837477,0.0184724722,0.038820181,-0.0045901295,0.006409388,-0.0413951315,-0.0109295463,-0.0270789657,-0.0085015353,0.0046461066,-0.0200118441,-0.008403575,0.0181086212,-0.0114263436,-0.0003185889,0.0008431564,-0.0031469676,0.02559557,-0.0093341963,-0.0259314328,0.0387642048,0.0377286263,-0.0104397461,0.0103277909,0.0395758711,0.0068572056,-0.0495118238,0.0118531696,-0.0223768819,0.0050449441,-0.0259454269,-0.0037014915,-0.0076338891,0.0142112086,-0.0130916648,0.0421228334,0.001931213,-0.0179266948,-0.0473846905,0.0209634565,0.016821146,-0.0005234742,-0.0105237113,-0.0160794482,-0.0296119321,0.0406954177,-0.0269390214,-0.0263232738,-0.006605308,0.0085505154,0.0018192587,0.044725772,0.001501763,0.0140922572,-0.0200398341,-0.0180526432,-0.0072630402,-0.0184164941,0.0109085543,-0.0144980922,0.0166392196,-0.0201937705,0.015953498,-0.0058601121,0.0016154667,-0.0060385391,0.02080952,-0.0245879795,-0.0215652119,0.0048840097,-0.0394079424,-0.0077598379,-0.0143091688,0.0285063833,-0.0417309925,-0.0470208377,0.0297518764,-0.0024682442,0.0258054845,0.0039393948,0.0110065145,-0.0272748843,-0.0030297653,0.0106006805,0.0200118441,0.0172829572,-0.0157715734,-0.019200176,-0.019969862,-0.061966747,-0.0335023478,-0.0029702897,-0.0036315201,-0.0165412594,-0.0161494184,0.007976749,0.0123709589,0.0126438476,0.009977934,0.004019862,0.0001240901,-0.0089983335,-0.019200176,-0.0015559909,0.0137843825,0.001047823,0.0150578637,0.0069341743,0.0265751705,-0.011195438,-0.0055767274,0.0371128768,0.0073050233,-0.0192561522,0.0332504511,0.0114263436,0.0065598269,0.0094881337,0.0159115158,-0.0013172132,-0.0221949555,0.0043067448,-0.019200176,0.0265331864,0.0474126786,0.0198719017,0.0090053305,0.0124899102,0.0057376618,-0.0026589164,-0.0111534549,0.0186543986,0.0042997478,0.0114823207,-0.0138403596,0.0136864223,-0.0178007465,0.0175208598,0.019620005,0.0250917748,-0.028800264,0.0335023478,0.0000969214,0.0212433431,0.0053388244,0.026743101,-0.0262533017,-0.0293600354,0.0385962725,-0.0259174388,-0.0015979738,0.0197739415,0.0530383848,-0.0138893398,0.012811779,-0.0192701463,0.0059545734,-0.0002652357,0.0506313667,-0.0069551659,-0.0257355124,-0.0156456251,0.0075289318,0.0264212321,0.0124899102,-0.0226287786,-0.0008300368,0.050799299,-0.0104817282,0.0019644494,0.0054017985,-0.0128677562,0.015169818,0.0286883097,-0.0062904367,-0.0089703444,-0.032830622,0.0158135556,0.0087044528,0.0113633694,-0.0358813778,0.010019917,-0.011188441,-0.0104467431,0.0055382429,-0.0205716174,0.0041458104,-0.0050274511,0.0562290847,0.0289122183,0.0041528079,0.0282964688,0.0193541124,0.0130986618,0.0285763554,-0.001918968],"23":[0.0019094327,0.0391396545,0.0329581462,-0.0133437393,-0.0035848299,-0.0001472009,-0.0149485543,0.0224674102,-0.0231658015,0.0028270006,-0.0035718279,-0.0060997829,-0.0369107462,-0.0066978736,0.0319179855,0.0143467486,-0.0127790822,-0.0082989736,-0.052245643,0.0276087616,0.0112857129,0.0041197683,-0.0103421407,-0.0022010484,-0.0174300745,-0.0061109276,-0.0408039056,0.0567926206,0.0151342973,-0.0346223973,0.0016428923,-0.0281882789,-0.0346223973,0.0070062061,0.009502585,-0.0109736659,0.0233441144,-0.0361083373,0.0010661618,-0.012400168,0.0233886931,-0.0585757494,0.0047698668,0.0279208086,-0.0368513092,-0.0196292643,-0.0663917884,0.0356031172,0.0332256146,-0.022333676,-0.0184999499,0.039793469,-0.0155577902,-0.0526319891,0.0003013672,-0.0017199754,0.0045618354,0.0381886549,-0.0735243037,-0.0388127491,0.0058991811,-0.0079794964,0.0061369315,0.0178609975,-0.0021508979,-0.0056428565,0.0023997929,0.0209963303,0.012400168,0.0416063145,0.0612801574,0.0240276475,0.0396151543,-0.0484119207,-0.0242208187,-0.0031761962,-0.0190348886,0.03848584,0.0051599261,0.0177421216,-0.0086630294,-0.0162710417,-0.037267372,-0.0282774344,-0.0267914943,-0.00789777,-0.0136409272,-0.0200601872,0.0097997729,0.0009194253,0.0009458936,0.0557227433,0.0394071229,0.0114565957,-0.00028674,-0.0197184216,0.0162116028,0.049600672,0.0379211828,-0.0174895115,0.0312938914,-0.014681085,-0.0574167147,-0.0588134974,0.0144879129,0.0006812105,0.03848584,0.0418737829,-0.0123481601,-0.0235372875,-0.1009250358,-0.0150154214,-0.039793469,-0.0380103402,-0.0077714655,0.0034343784,-0.0371187776,-0.0442215689,0.0704929829,0.0066681551,-0.0366135575,0.0368513092,0.0238790531,-0.0104090087,0.0514729545,-0.0156172272,0.0036442673,-0.0418143459,-0.0069876318,0.0133734588,0.1063338518,-0.013143138,0.0705524236,-0.0283220131,-0.011040533,-0.0095843114,-0.0298525319,-0.0639548525,-0.0095768822,0.0299119689,0.0364946835,0.0168505572,0.0304914843,-0.0364352427,0.0176975429,-0.0223633945,-0.0196292643,0.0090270843,-0.0556633063,0.0154389143,-0.0193023589,-0.0124447457,-0.054712303,0.0189011544,0.0498978607,0.007281105,0.0644303486,0.0457372293,-0.0438946635,-0.0218730345,-0.0307292361,0.0381292142,-0.0490360148,0.0042757918,-0.0314722061,-0.0328095518,0.0273115747,-0.012400168,-0.0713251084,0.0045729796,-0.0533452407,-0.0589620918,-0.0222296603,0.0371187776,-0.0032783546,-0.0036832732,0.0491251722,-0.0124224564,-0.005182215,-0.0578624979,-0.0232103802,-0.0281139817,-0.0034436656,-0.0332553349,-0.0160927288,-0.0350681804,0.0166425258,-0.0073516872,-0.0000817267,-0.0098592108,0.0274304487,0.0718600526,0.0489765778,0.0358408689,0.033611957,-0.0147628123,0.0265388843,0.044667352,-0.0149634136,-0.0139604043,-0.0095843114,-0.0242951158,0.0386938713,-0.0438649431,0.0049110311,-0.0283963103,0.0358111486,0.0076228711,-0.0045544053,-0.0063672522,0.039912343,-0.0034195189,0.0843419433,-0.0088636307,-0.0585757494,-0.0067053032,-0.0244734287,0.0077937543,0.0069281943,-0.0013661359,-0.0421115346,0.0530183315,0.0020933177,0.0108845094,0.007065644,0.0116943466,0.0392288119,-0.0157658216,0.0647869781,0.0031074716,-0.0068501825,-0.0172963403,0.0018537099,-0.0478472635,-0.0035216773,0.0050410507,0.0572086833,-0.02540957,-0.0275047459,-0.0095471637,0.0041049086,-0.0156469457,0.0352762118,0.0417251885,-0.0033916577,-0.0092351157,-0.0336713977,-0.062112283,0.0451131314,-0.0076674493,0.042497877,0.0408633463,-0.0021248939,0.0196144059,0.015483493,0.0264051501,-0.0245180074,0.0044615343,-0.0131877158,-0.0359300263,-0.0035253922,-0.047074575,-0.0279356688,0.0573869944,-0.0268806517,0.0022456266,0.0165533703,0.0006519561,0.0098592108,-0.0117686437,-0.0278613716,0.0264794473,0.0497492664,-0.0137449428,0.0205208287,-0.0130242622,0.0378320292,0.003345222,-0.0156320874,-0.0042014946,-0.0057765911,0.0113377208,0.0300605632,0.0034826715,-0.0036275506,0.0282625761,0.0015704526,0.0429733805,0.019376656,-0.0646086633,0.014866828,0.0008534867,0.0071027922,0.0130242622,-0.0158104002,-0.0314722061,0.0639548525,0.0222742371,-0.0483524799,-0.0052453675,0.0285894815,0.0178015586,0.0089527871,-0.0345926806,-0.0304171871,0.0238196161,0.0143318893,-0.0190943275,-0.0200750474,-0.0212786589,-0.0184107944,0.0635387897,-0.026776636,-0.0203722343,0.0314424857,-0.0042869365,0.0330175832,0.027207559,-0.002592965,-0.0600914061,-0.0240276475,-0.0764961839,-0.0068056043,-0.0460046977,0.0118503701,-0.0353059284,0.0457372293,-0.0149188358,-0.0089007793,0.0065827132,0.0403878428,0.0156172272,0.0293918904,0.0102827037,-0.010921658,-0.039912343,-0.0297782347,-0.008328693,0.0117463544,-0.0000801595,-0.037267372,-0.0197035614,-0.0471042916,0.018143326,0.0123035815,0.0531966463,-0.0123630194,-0.0505219549,-0.00253167,0.0412199721,-0.0131059894,0.0405364372,-0.0079274885,-0.0246666018,-0.0065938579,-0.0350978971,0.0513243601,-0.0042423583,0.0087670451,0.0041680611,-0.0359300263,0.0722166747,0.0123481601,-0.0161224473,0.006816749,0.0324232057,-0.0266577601,0.0382480919,-0.0402689688,-0.0736431777,0.0029142995,0.0247260388,0.0082098171,-0.005460829,-0.0412199721,0.0574167147,0.0763773099,-0.0015936705,-0.024800336,0.0517701432,0.0808945671,0.0068576122,-0.0136037795,-0.0217541587,0.0290798414,0.0374754034,0.0274304487,0.0099706566,-0.0854118243,-0.0208774544,0.0012082548,-0.0462127291,0.0037241366,-0.0273561515,0.0167614017,0.0110256737,-0.0529291779,0.0320071429,0.0277276374,0.0244437102,0.0220216289,0.0055054072,-0.0851146355,0.0475797914,-0.0299268272,0.044667352,-0.0125561915,0.0567331836,0.0008191243,-0.0250826646,0.0008000857,-0.0382480919,0.0528103001,0.0020728861,-0.0157063846,-0.0214569718,-0.0406850316,-0.0162710417,0.0512054861,0.0574464351,0.0046398472,-0.0104981652,0.0172369014,-0.0127790822,0.0251272414,0.0183364972,-0.0113377208,-0.0277870744,0.0465693548,-0.0318882689,-0.0341468975,0.0156766642,-0.0158401188,-0.0055537,-0.0216947217,0.0129945436,0.0237304587,0.0435974747,0.0356328376,0.0354545228,-0.0156766642,0.0014190725,-0.0462127291,0.0316208005,-0.0056242822,-0.00937628,0.0302834529,0.0044578193,0.00364241,-0.0344143659,0.0404472835,-0.0787548125,0.0091311,-0.0096437493,-0.0416954719,-0.0187674202,0.0450834148,0.0397637486,0.022883473,-0.0146736559,-0.0333444886,-0.0190200303,-0.0952190235,-0.0280248243,-0.0326015204,-0.0456480719,-0.0007452917,0.0152308829,0.00333222,0.0352464914,0.0419926606,-0.0112782829,-0.0640737265,-0.0319477059,-0.0442512892,0.0000026011,0.03355252,0.0091459593,0.0144210458,-0.0532560833,-0.00814295,-0.008759615,0.0191983432,0.0136112086,0.0157212429,0.0067981747,0.0029347311,0.0492440462,0.0157658216,-0.0174300745,-0.0024072225,0.02738587,0.0300902817,-0.0188862942,0.02368588,-0.051027175,0.0090493737,0.0227497388,-0.0004506577,-0.0139826937,0.0187971387,0.0018035595,-0.0005576918,0.0557821803,0.049719546,0.0224971287,-0.0295553431,0.0366432741,-0.0328392684,-0.0078086136,-0.0121475579,0.0034603823,-0.0019521534,0.0413388461,-0.00579888,0.0092945537,-0.03848584,0.0170140117,-0.0102827037,-0.0071622301,-0.0192726403,-0.009004795,-0.0313236117,0.0312047359,0.0287975129,-0.0000603663,-0.0149559844,-0.0122664329,-0.0086630294,-0.01011925,-0.0112782829,-0.0084921457,-0.0212043617,0.0235224273,-0.0331958942,-0.0198224373,-0.0113228615,-0.0581002459,0.0117240651,0.0005781234,0.0395854376,0.0393774062,-0.0460046977,-0.0065901433,0.0020654562,0.0121624172,0.0008493075,-0.0321854576,-0.0090642329,0.0108250715,0.0715628639,-0.0396151543,0.0438352264,-0.0315910801,0.0009143173,0.0369107462,-0.0228537545,0.0032504934,-0.0110256737,-0.0278762318,-0.0296444986,0.0041866354,0.0274453089,0.0079349186,0.0091533894,0.0348304287,-0.0044132411,0.0028530045,-0.0231658015,0.0185742471,0.0219770502,-0.0288272332,-0.0368810259,-0.0125339022,0.0335228033,-0.0098889293,-0.0201047659,0.0005748729,0.0132397236,0.0219176132,-0.0070173508,0.0193023589,0.0237304587,0.0376834348,-0.0370890573,-0.0236115828,-0.0408039056,-0.0016456783,0.0271332618,0.0056131375,0.0034901011,0.0272372775,0.0156469457,0.0360489003,-0.0014812963,0.0035866871,0.015424055,-0.0268806517,-0.0330770202,0.0410713777,0.0089602172,-0.0027861372,-0.0092871236,-0.0269995257,0.0050076172,0.004963039,0.0231212229,0.0015007992,-0.0010912371,-0.0169991516,-0.0241465215,0.0160778686,-0.0078309029,-0.0065047015,-0.0313830487,0.047312323,-0.0085664429,-0.024800336,0.0313236117,0.0207288601,-0.0285746232,0.0005939116,0.0088264821,-0.0083584115,-0.0189605914,0.0292284358,-0.0065047015,-0.0354842432,0.0076154415,-0.0046101282,-0.0048998864,-0.0042274985,0.0279653873,-0.0064601232,-0.034979023,-0.0222742371,0.0130242622,0.0361380577,-0.025543306,-0.033611957,0.0162561815,0.0160630103,-0.0090790922,0.0031984854,0.0291244201,-0.0216650032,-0.0308778286,0.0364946835,0.040031217,-0.0168802757,-0.0108176423,0.0143170301,0.0426167548,0.0531372093,0.0168505572,-0.0097923437,-0.0195846874,0.0407741889,-0.0334633663,-0.0006538135,-0.0304617658,-0.0149708437,-0.0312938914,-0.0072216676,0.0364055261,-0.0113674393,0.0125413323,0.0256473217,0.0077640354,0.0288866702,-0.0025056661,-0.0457075089,0.0351573378,0.0018174901,0.0056502861,-0.0080760829,0.0221999399,-0.0311155804,0.0105798915,0.039793469,-0.0115011744,-0.0230915044,-0.0198075771,0.011538323,-0.0215609875,0.0314424857,0.0026263986,-0.0028195707,0.0312047359,0.0088264821,0.0143170301,0.0053828168,-0.0038337247,-0.0134180365,-0.0019651554,-0.0371782146,-0.0000856157,-0.006969058,-0.026776636,-0.0476095118,0.0092202565,0.0209517516,-0.0457075089,0.0124150272,-0.0114045879,-0.01875256,-0.0257067587,-0.0069170496,0.011909808,0.0050076172,-0.0033340775,0.0042460728,-0.0300457031,0.0145622101,0.010735915,-0.0125487614,0.0216204245,0.0214569718,0.0040083225,0.0033786558,-0.0754857436,0.0536424257,-0.0132100051,-0.033493083,-0.0017469079,-0.0478472635,-0.0225565657,0.0326609574,-0.0135220522,0.0125487614,0.0122069959,0.0138563886,0.0341766141,-0.0182324816,-0.0192874987,-0.0119246673,-0.015364618,0.0102827037,-0.012704785,-0.0365541205,-0.0199561715,0.0011599618,-0.0182473417,0.0279802475,0.0051116329,-0.021100346,0.0095100151,0.03601918,-0.002605967,0.0100449529,0.0084178494,0.0151491566,0.0163601972,0.0098294923,0.0054756883,0.0104610166,-0.0016633238,0.0283220131,0.0369998999,0.0278019346,-0.0275344644,0.0127122151,0.0040083225,-0.0074742772,0.0059771929,0.0229726303,-0.0238641929,-0.0102752736,-0.0047735819,-0.0074928515,-0.0088562015,-0.0294513274,-0.0043760929,0.0251421016,0.0121475579,-0.0186188258,-0.0147182336,-0.0125116128,0.0032913566,-0.0051116329,0.0214718301,-0.0119395265,-0.0598833747,0.01036443,0.0090568028,-0.0276830588,-0.0019242921,-0.0102232657,-0.0034158041,-0.0352167748,-0.0258404929,0.0177421216,-0.026776636,-0.0199710317,0.0457075089,-0.0051079183,-0.0238047559,-0.0655596629,-0.0060552047,0.0415468775,0.0194955301,-0.0186634045,-0.0046732808,0.0265983231,-0.0087150373,0.0114491666,0.0011079538,0.0227497388,0.0026821215,-0.01800959,-0.0165087916,-0.0062223729,-0.0030721806,0.007526285,0.0150005622,0.0230915044,0.01677626,-0.0008172669,0.02417624,-0.014740523,0.0188268572,0.0092128273,0.003516105,-0.0438352264,0.0064006858,0.0191389043,0.0112634236,0.0193617959,0.0331067406,-0.018633686,0.035900306,-0.0401500948,0.0103718601,0.0036646992,0.0398826264,0.0484713577,-0.0353950858,-0.0017125456,-0.0511757657,-0.0362272114,-0.0087670451,0.0024239393,-0.0122441445,-0.0662134811,-0.0036646992,0.0045246868,0.0091236709,0.0091385301,0.0125413323,-0.0125116128,0.0037315665,-0.0481741689,0.025350133,-0.0101861171,0.0178461373,-0.0008530223,-0.0025613888,-0.009807203,-0.0075039961,0.0417549089,-0.0403581262,-0.0438946635,0.0164344944,0.0023626443,-0.0035179625,-0.042200692,0.0040157526,0.0100152344,0.047193449,0.0238344744,-0.0162561815,0.0170288701,0.0035179625,-0.0120584015,-0.0459749773,-0.01283109,-0.0262416974,-0.0361974947,-0.0357219949,-0.0251421016,-0.0039971783,-0.0031056141,-0.0046175579,-0.0153497579,0.002912442,0.0057914504,0.0025539591,0.0012259004,-0.0133288801,0.0004049186,-0.0469259806,-0.0255135875,0.0132322945,-0.0242802575,0.010981095,0.0342657715,0.0113302907,0.0302240159,0.0264794473,-0.0296593588,-0.0322746113,0.0104164379,-0.0196292643,0.0141832959,-0.0044206711,-0.0293918904,-0.0353356488,0.0097700544,0.0094431471,0.0058954661,-0.000142093,-0.0277573559,-0.0017905575,0.0232549589,-0.033493083,-0.0330472998,0.0009022441,0.0487091057,-0.0209220331,-0.0081726694,0.0184702314,0.001217542,0.0088562015,0.0080909422,-0.0035532536,0.0270441044,-0.0033340775,0.0225119889,0.0299565475,0.0129053872,0.0096957572,-0.0073368279,-0.0131134186,-0.0225119889,0.0238196161,-0.0331364572,-0.0056540011,-0.0158846974,0.0153051801,-0.0239533503,0.0301051401,-0.0217393003,-0.0176529642,-0.0078309029,0.0431219749,-0.002973737,0.0227943175,-0.0142278736,-0.0334633663,-0.0445781946,-0.0193023589,-0.0106541887,0.0165682286,-0.0403878428,0.0026115393,-0.0378914662,-0.0067796004,-0.0018165614,0.0354545228,0.0063746818,-0.0123333009,-0.0104312971,-0.0122590037,-0.0086184507,-0.053612709,0.0243545529,0.0130614107,0.0009110668,-0.0239087716,0.00468814,-0.0095323035,0.004840449,-0.0110553922,-0.0007768679,0.0101638287,-0.0256176032,0.0250083674,0.0016679674,0.006415545,0.0457669459,0.030966986,0.0292878747,-0.0285894815,-0.0150228515,-0.0177124031,-0.0204613917,0.0070582139,0.0139158266,-0.0010550172,0.0017376209,-0.0074928515,-0.0237007402,0.0170140117,0.0081503801,0.0342360549,-0.0254690088,-0.0208774544,0.0032932141,0.004101194,0.0000117975,-0.0075820079,-0.0146736559,0.0036108338,-0.0264348686,0.0014348606,-0.0511163287,0.0247557573,0.0055128369,-0.0167614017,-0.0133808879,-0.0264943074,0.0030461766,0.015364618,0.0231063645,0.0057097236,-0.0337011144,-0.0302834529,0.0081578093,-0.0172369014,-0.0202830788,0.0020301652,0.0088562015,0.006077494,-0.0587540604,-0.022333676,-0.0145919286,0.0205059703,0.0207140017,-0.0040491861,0.0044801086,-0.0011729638,0.0187674202,-0.0218284559,-0.0206991415,-0.0100895315,-0.016226463,0.0377428718,-0.0322746113,-0.0040900493,-0.0077714655,0.0048515936,-0.0138415294,0.0046026986,0.0320071429,-0.0225714259,-0.0025818204,0.0039340258,-0.0183513574,0.0070990776,0.0392882489,0.0146290772,-0.0111296894,0.0165830888,0.0237007402,0.0129796844,-0.0172071829,0.0226903018,-0.0368215889,-0.0190943275,0.005549985,-0.0113451509,0.0220216289,-0.0032783546,-0.0295850616,-0.0107210558,-0.0179204345,-0.0356922746,0.0034622399,0.0092425458,0.0056094229,-0.0282477159,0.0007787253,-0.0106616179,-0.0401500948,-0.0105278837,-0.0240276475,0.0276087616,-0.049778983,0.0207734387,-0.0087373257,0.0318882689,0.0033006438,-0.0080315052,-0.0339685827,0.0119023779,0.0205654074,-0.0055276961,-0.0110925408,0.0125710508,-0.0367324315,-0.0326312371,0.0044169561,-0.0258999318,0.0002813998,-0.0075931526,0.0550689287,-0.0184702314,0.0100003751,0.0086184507,0.0163750574,0.0031780538,0.0192577802,-0.013759803,-0.0176381059,-0.0229131915,-0.0150005622,0.0019967316,-0.0112708537,0.0104610166,0.0385749973,0.0406553149,-0.0063523925,-0.0043538036,0.0081503801,-0.0007634016,-0.0040194672,0.0096734678,-0.0206991415,-0.008261825,0.0362866521,0.0489468575,-0.0134254666,0.0062075136,-0.0248746332,-0.0155726494,-0.0122069959,0.0033916577,-0.0002192922,-0.0372970887,0.0149857029,-0.0096586086,-0.0070507843,0.0291541386,0.0339091457,0.00456555,0.0353356488,-0.0086481702,-0.0212489385,0.0010057956,-0.0062818103,0.0311452989,0.0029663073,0.0145993587,0.0415468775,-0.0058917515,-0.0039600297,-0.0049816133,0.0803596228,0.0046101282,0.0328392684,-0.0099706566,0.0073256833,0.0017970585,-0.0188565757,-0.0004344052,0.0020060188,-0.0158995558,0.0013178429,-0.0109290872,0.0034956734,-0.0231063645,-0.0067833154,0.008700178,-0.027816793,-0.000234616,0.0186039656,-0.0073665464,-0.0079646371,0.02368588,-0.001278837,-0.0323043317,-0.0356922746,-0.0108622201,-0.0221702214,-0.0092276866,-0.005304805,-0.0195995457,0.0013011261,0.007184519,0.0044578193,0.0073033944,-0.0111296894,-0.0167465415,-0.0091608185,-0.0121772764,0.0147330929,-0.0072216676,0.0018982881,-0.0238790531,-0.0281585604,-0.01085479,-0.0283368714,-0.0002565568,0.0193617959,-0.0214718301,-0.023076646,-0.044667352,-0.0129871136,-0.0157063846,0.0390207805,-0.0079869265,0.0233589746,-0.0063040997,0.0212935172,0.0103272814,-0.0102752736,0.0118355108,-0.0102678444,-0.0152754616,-0.0153497579,-0.005457114,-0.0085070059,-0.0314127691,0.0284706075,-0.0184850916,0.0078457622,-0.0183959343,-0.0300605632,-0.0068761865,0.0301348586,0.0315316431,0.0126602072,-0.000217667,-0.0202830788,0.0107804937,0.0312344544,0.0098220622,0.0126379179,0.0125784809,-0.0041197683,0.0245328657,-0.028440889,-0.0012416885,0.0158549771,0.0129945436,-0.0011896805,0.0165682286,-0.0148148201,-0.0099112187,-0.0233292542,-0.0065492797,0.0068353233,-0.0050150468,-0.0214272514,0.005427395,-0.0118280808,-0.0151491566,0.0358705856,0.0019985891,0.0077937543,-0.0083658416,-0.0330175832,-0.0235075671,0.0056800051,-0.0213380959,-0.0254838672,0.0335228033,-0.0155280707,0.0084475679,0.0236561615,0.003051749,0.0271481201,-0.0268806517,-0.0253798515,-0.0325718001,0.0069133351,-0.0271481201,0.0080092158,0.0055091218,-0.0150228515,-0.0074891369,-0.0008873847,-0.0145770693,0.0238047559,-0.0001728566,0.0220810659,-0.010304993,-0.0009955796,-0.0129499659,0.0468368232,0.0070210658,0.0075300001,0.0010531598,-0.001598314,-0.0229131915,0.0060589197,0.0130242622,-0.0302685946,-0.0221405029,0.0062298025,-0.0037705724,-0.006690444,-0.037445683,-0.0111891264,0.0415171571,0.010735915,-0.0065344204,-0.027207559,-0.0030944697,-0.006047775,0.0453211628,-0.0272967145,-0.0184850916,-0.0056242822,-0.0230172072,-0.0419035032,0.0077788951,0.0173111986,-0.0346223973,0.000426279,0.0191686228,0.02047625,0.01381924,0.010550173,-0.0109439464,0.0153051801,0.0185296703,0.0169694331,-0.008328693,0.0244437102,0.0076005822,0.0072476715,-0.0084549971,0.0027545609,-0.001779413,-0.020416813,0.001724619,-0.0088413423,-0.0150377108,0.0304320473,-0.0003410696,0.0150005622,0.0191389043,-0.0123258708,0.0000487574,0.0176975429,-0.0012193994,0.0120658316,0.0158401188,0.0018769277,0.0305509232,0.0420520976,0.0031539074,0.0417549089,-0.0195549671,-0.0476095118,0.0266131815,-0.0269995257,-0.0011608904,-0.0094580073,0.0008790263,0.007061929,-0.0011506747,0.0005860175,0.0083509814,0.0108325016,0.0062075136,-0.044964537,-0.0168059785,-0.0014998706,-0.0037111347,0.0065864283,-0.0089750765,0.0030944697,0.0252461173,-0.0195698272,-0.0173706356,0.0201642029,-0.0068204636,0.0055165514,-0.0197778586,-0.0068241786,-0.0042980807,-0.0014107141,-0.0063152444,-0.0144136166,-0.0066532954,0.0132397236,-0.0095100151,0.0025651036,0.0208477359,-0.0379806235,-0.0083138337,0.0128608095,-0.0500761718,-0.0355436802,0.0063523925,0.0030833252,-0.012645348,0.0287380759,0.0019298643,-0.0040677604,0.0253798515,0.0124818943,0.025602743,-0.0046658511,-0.0228983331,0.0015100864,-0.0065158461,-0.0236413032,-0.0336713977,-0.0264348686,0.0221850816,0.0351276174,-0.0196738429,0.0296444986,0.0120584015,0.0163007602,-0.0039934632,0.0337902717,0.0102678444,-0.0057022939,0.019436093,-0.0003406053,-0.0181730445,-0.0368810259,0.0008637025,-0.0046026986,-0.013759803,-0.0013494191,-0.00240908,-0.0130391223,-0.0185891073,0.0047141439,0.0318882689,0.0110628223,0.0088264821,-0.0264200103,-0.00493332,-0.0323637687,0.0080315052,-0.0131951459,0.042497877,-0.0011014529,0.0104535865,0.0013512765,0.0226457231,-0.0329284258,-0.0017543377,-0.0010030094,-0.000199441,0.0208477359,0.0340280235,0.0094059994,0.0307292361,0.0080017857,0.0039377403,0.0011441737,0.0174152143,-0.016167026,-0.025290696,0.0213232357,0.012214425,-0.0344440863,-0.0029310163,-0.0053159497,-0.0049741836,0.020669423,-0.0076080118,0.0049741836,-0.007801184,0.0100078043,0.0036442673,0.0107433451,0.0043017957,-0.0242951158,0.0391396545,0.0064378344,0.0223188158,0.0099632265,0.0315910801,0.0299416874,-0.01505257,-0.0009593599,-0.0353950858,0.0141684357,-0.0148445386,-0.0231509432,-0.0014970844,0.0331958942,-0.0073516872,0.0187822785,-0.0099037886,-0.0225417074,0.0286489204,0.0214123931,-0.0258256346,-0.0202385001,0.0025948223,0.0188714359,-0.0161521658,0.0000317794,0.0351573378,-0.0043909522,-0.0202979371,0.009502585,-0.0172220431,-0.0022586286,0.0099260779,0.0245625861,-0.00592147,-0.0224971287,0.0117017757,-0.0282922946,0.0260188058,-0.0129128173,0.0411902517,0.0131134186,-0.0145770693,0.0115829008,0.0520970486,-0.0155875087,0.0025372421,0.0353653692,-0.0119023779,0.0403284058,-0.013388318,0.0287677944,0.0093911393,-0.0179947317,-0.0229131915,-0.0312344544,-0.0312344544,-0.0111594079,0.014866828,0.0098443516,-0.0013791379,0.0494223572,0.0238047559,0.0158995558,0.028009966,0.010178688,-0.0113897286,-0.0116497679,0.0092722643,0.0052193636],"24":[-0.03521014,0.0050183372,0.066375874,-0.0300059393,0.0273889694,0.0090776142,-0.0043269219,-0.01760507,-0.0049848817,0.0203558635,0.0053975005,0.0234486461,-0.0467783362,-0.0081036855,0.0733346343,0.0375594646,-0.026006138,0.0278945211,-0.050822746,0.0210844502,-0.0111741647,-0.0154787824,-0.0206086375,-0.0200436115,-0.0076947836,-0.0182444435,-0.0078583444,0.0456780195,0.0139100878,-0.0229877029,-0.0142000355,-0.0348830186,-0.0242367107,0.0135829663,0.0263778679,-0.0096872495,0.0158951189,-0.0077022184,-0.0356859528,-0.0068360907,0.0241623651,-0.0194191057,-0.0396708846,0.0268536806,-0.0021114189,-0.0316712856,-0.066316396,-0.0058993343,0.0347045884,0.0371431299,-0.0289948378,0.061558269,-0.04603488,-0.0246827845,0.0221996363,0.0059550935,0.0069699129,0.0556998253,-0.0289650988,-0.0342287757,0.0160289407,-0.0186756495,0.0201923028,0.0345558971,-0.0010399109,-0.012534691,0.0371133909,0.0270469785,0.0077393912,0.0176199395,0.0507037938,0.0404440798,0.0520717539,-0.0499008596,-0.019999003,-0.0207127221,-0.035299357,-0.0128320744,-0.0051075523,0.0229282249,-0.0094121704,0.0042116861,-0.10170497,-0.0047172369,-0.0004054166,-0.0545102954,-0.0280729495,-0.0166831836,0.058852084,-0.0089066196,-0.0143487277,0.0105273565,0.0134119708,0.0142669473,0.0170103051,0.0309575647,0.0181106217,0.0418120436,-0.0288758837,0.0012490083,0.0397898369,-0.0371728688,-0.0347343273,-0.0499900728,0.0137390923,-0.0176794156,0.0252924189,0.021396704,0.0003247979,-0.0206978526,-0.0600713566,-0.0170103051,-0.0613203645,-0.028147297,-0.0001525249,0.0035184121,-0.0270172413,-0.0422283784,0.0724424869,0.0236122068,-0.0312549472,0.0378568508,0.0147501938,0.0388084762,0.0159248561,-0.0115012852,0.00095906,-0.0347343273,-0.0133822327,0.020340994,0.071669288,-0.0329797678,0.0558187813,-0.0437450334,-0.0103414925,-0.0056948834,-0.0505848378,-0.0543021262,-0.0197313596,0.0430313125,0.0375892036,0.0388084762,0.0375297293,-0.0149657968,-0.0017136693,-0.0204599462,-0.0431800038,0.0245489627,-0.0301100239,0.0182741825,-0.0009702119,0.0389274284,-0.0159545951,0.0144602461,0.0537073612,0.0369944386,0.0647105277,-0.0044904826,-0.0504956245,-0.0077988678,-0.0439234599,0.0449643023,-0.0338719189,-0.0078137368,-0.0538560525,-0.0038009258,-0.0119994022,-0.0570083112,-0.0790443867,0.0106611783,-0.0573056936,-0.0402359143,0.004758127,0.0082300734,0.0181254912,-0.0054309559,0.0137390923,-0.0166831836,0.0361022912,-0.0444290116,-0.0241028871,-0.0325634331,0.0094344737,-0.0231066551,0.0033251131,0.0214413106,-0.0147948014,0.0371728688,0.0261250921,0.0048696459,0.0212926194,0.0375594646,0.0757731721,0.0334853195,0.0253072884,-0.0314928554,0.0149509273,0.0488302819,-0.0166237075,0.009486516,-0.0055424748,0.0006858394,0.0337232277,-0.050822746,-0.010170497,0.0264224745,0.0321768336,-0.0249950364,0.0105942674,-0.0102225393,0.0193298925,0.0190622471,0.0730967298,-0.0363699347,-0.0632236153,0.0033697207,-0.0587628707,-0.0190919861,-0.0063193878,-0.022675449,-0.0262440443,0.0444884896,0.0015203704,-0.00483619,-0.0103786653,0.0450832546,0.0378271118,0.0067989179,0.0337232277,0.0061558271,0.0122893499,0.0151739651,0.0152260074,-0.0355075225,-0.0122224391,-0.0332771502,0.0265414286,-0.0322660506,0.0095385583,-0.0309278276,-0.011724323,-0.0097913332,0.0308683496,0.097363174,0.0194488447,0.0001964354,-0.0486221127,-0.0544210784,0.0284446795,0.0355075225,0.0103043187,0.0153598292,-0.0118061034,-0.0283257253,-0.0008210557,0.0086389743,-0.0576030761,0.0134863164,-0.0145494612,-0.0084679797,0.0170697812,-0.0367862694,-0.0168764815,0.037916325,-0.0538560525,-0.0125123877,0.0246233083,-0.0333366282,-0.0061112195,-0.0169656966,-0.0001269686,0.0188243408,0.0597739741,-0.0208316762,-0.00793269,0.0135160554,0.0463025235,-0.0180511456,0.0013846894,0.0000524196,-0.0139546953,-0.0287271924,-0.0041559269,0.0337827019,-0.0328608155,-0.0081036855,0.022734927,0.0478191786,0.0220509451,-0.0881443024,0.012504953,0.0226605814,0.0287420619,-0.0059253555,0.0180065371,-0.0265860353,0.02196173,0.0119399251,-0.0495439991,-0.0250842515,0.0098210722,0.0127725974,0.0317307599,-0.0138580455,-0.0238203742,0.0389869064,0.0432394817,-0.0138283074,-0.0375594646,0.010512487,-0.0098433755,0.0324147418,-0.0290840529,-0.0250396449,0.0060517429,-0.0292624813,0.0783306658,0.0236865524,0.0046689124,-0.0610824563,-0.0217981692,-0.0696470886,-0.0015649778,-0.0237460285,0.00575436,-0.0266901199,0.0099623287,0.011196468,-0.0142966853,-0.0167277902,0.0422283784,0.0340800844,0.0500198118,0.0304222759,-0.0247273929,-0.0625098944,-0.0416038744,-0.0053937831,-0.0164601468,0.0320578814,-0.0279539973,-0.0620340817,-0.0600118786,0.0174266417,0.0040146699,0.0319984071,-0.0299464632,-0.0371133909,0.0138729149,0.0124306073,-0.0312252101,0.0425554998,-0.0056539932,0.0064011682,0.0336934887,-0.0129807657,0.0421094261,-0.0151516609,-0.0008972601,-0.0140885171,-0.0218725167,0.0223483294,0.0510606505,-0.0390761197,0.0063825813,-0.0002790288,-0.0214413106,0.0000284895,-0.0221104231,-0.0522799231,0.0306007061,-0.005988549,0.0304074064,-0.0095608616,-0.0510606505,0.0238947198,0.0786280483,0.0068658288,-0.0151590956,0.0395519324,0.0380650163,-0.0059699626,-0.0077468259,-0.0226308424,0.0490681864,0.0225862358,0.0053454586,0.024385402,-0.1109238416,-0.0157464277,-0.0062376074,-0.0259466618,-0.0024905822,-0.0253965035,-0.0032674952,0.0276714843,-0.028400071,0.0386895202,0.019315023,0.0343477316,0.0290840529,-0.0133822327,-0.0871332064,0.0079698628,-0.0073379241,0.0594468527,-0.0181106217,0.0294111744,0.0137242228,-0.030511491,-0.032593172,-0.0320578814,0.0361915044,-0.0217833016,0.008490283,-0.0271956716,-0.0187499952,0.0659595355,0.0293368287,0.0558187813,-0.0309278276,-0.0005729268,-0.0070256721,-0.0092263063,-0.0008888962,0.0205789004,-0.0027916825,-0.0354480483,0.033217676,-0.0208762828,-0.016950829,0.0244002715,-0.002230372,0.0184823498,-0.004044408,0.0043789637,0.0458267108,0.0190325081,0.0276566148,0.0233891681,0.0162371099,-0.0209208913,-0.0653647706,0.0347045884,-0.0235229917,0.0146535449,0.0296342112,-0.0327121243,0.0260507464,-0.0223185904,0.043298956,-0.0341693014,-0.0366375782,0.019002771,-0.0447561331,-0.0446966588,0.0077096531,0.0462430492,0.0161181558,-0.002955243,-0.0029180702,-0.0208168067,-0.0826724619,0.0009953035,-0.0253518969,-0.0392842889,-0.0053900657,0.0032489088,0.0262291767,0.0131071536,0.0277904365,-0.0375892036,-0.0260507464,-0.0228241421,-0.0453508981,-0.005285982,0.0422581173,0.0198057052,0.0383029245,-0.0131963687,-0.0195826665,-0.0154936519,-0.0255303252,0.048800543,0.0516851582,0.0222591143,0.0275376607,0.0125272563,-0.025441112,-0.0226159729,-0.0191068538,0.0137985684,0.0293070897,-0.0191068538,0.0210695826,-0.0225564968,-0.019285284,0.0214859173,0.0044793305,-0.018973032,0.0242218412,0.0020036176,-0.0022322307,0.0593576357,0.0515364632,0.0310170408,-0.0094939508,0.0100589786,-0.0273294933,-0.0145345917,0.0053937831,-0.0043492257,-0.0051521594,0.0238947198,-0.0346748531,0.0021987751,0.0112485103,0.0186459105,-0.0283257253,0.0096500767,-0.0163858011,-0.0182741825,-0.0323552638,0.0155233899,0.0359833352,0.0086761471,-0.0027861064,-0.042793408,-0.0048956666,-0.0416633524,0.0107578281,-0.0451427326,-0.0162222404,0.0616772249,-0.035239879,-0.0150475772,-0.0307196584,-0.0542129129,0.0041410574,0.0222591143,0.066375874,0.0441018902,-0.045380637,-0.0349127576,0.0193893686,-0.0171143878,0.0212480109,-0.0320876203,-0.0137613956,0.0059439419,0.0135532282,-0.029455781,0.0311062559,-0.0295003876,-0.0263183918,0.0604876913,-0.0133227557,-0.0047023678,-0.0225862358,-0.0209654979,-0.0153152216,0.0258277096,0.0211736653,-0.0084085027,0.005133573,0.0024682784,0.0175307244,0.0089214882,-0.0264968202,0.0263035223,0.0315820687,-0.0302735846,-0.0133153219,0.0102448426,0.0226605814,-0.0148840165,-0.0388382114,0.0173374265,0.0031875735,0.0269280262,-0.0362212434,0.0096649462,0.0013976998,0.0330392458,-0.0373512991,0.0082821148,0.0017684993,0.0205640309,0.0091222217,-0.0321768336,0.0125198225,0.0256492794,-0.004728389,0.0131963687,0.0056056688,-0.0037767633,0.0197016206,-0.0068621114,-0.0482057743,0.0295003876,0.0063379742,-0.0067766141,-0.0363401957,-0.0333068892,0.0361915044,0.0276268758,0.0184526127,0.0076873493,0.0099028526,-0.0107950009,-0.0315820687,-0.0031076518,-0.0239690654,-0.0113600288,-0.0202666484,0.0595063269,-0.0118061034,-0.0219468623,0.0229728334,0.0025742212,-0.0347938053,-0.0022489585,-0.0032600607,-0.0002908777,-0.0286379773,0.0473731048,-0.0038139364,-0.0470459834,-0.0219319928,-0.0348532833,-0.0191960689,0.0162817165,0.0485031605,-0.0080367746,-0.0089809652,0.0075052022,0.0143561615,0.0079029519,-0.0053528929,-0.01508475,0.0209803674,0.0298721176,0.0082598114,-0.0023827809,0.0564730205,-0.0193596296,-0.0151590956,0.0336637497,0.0149360588,-0.0253221579,-0.0425257608,-0.0033213957,0.0400574841,0.0191960689,-0.0049328399,0.008772797,-0.0078583444,0.0155085204,-0.0290989224,-0.008646409,-0.0235229917,0.0009850811,-0.028147297,-0.0157761648,0.0308088735,-0.0078806486,0.033158198,-0.0031968667,0.0131443264,0.0375297293,0.0173076876,-0.0040629944,0.0388679504,0.0368160084,0.0215751324,-0.0152854836,0.010824739,-0.0128320744,0.006516404,0.0603687391,-0.0340503491,0.0078211715,-0.0210101046,0.0234486461,-0.0338124409,0.0287866686,0.0009195638,0.0159397256,0.0162371099,0.0090107033,-0.0008559053,0.0394329801,0.0045388071,-0.0173820332,-0.0026615774,-0.0064048851,0.0064234715,0.0107578281,-0.0168021359,-0.0129138548,0.0247571301,0.0093601281,-0.0473731048,-0.0202666484,-0.0024515507,0.0194191057,0.0107652629,-0.0372323468,0.0287271924,-0.0271659326,0.0043380735,0.0075609614,-0.0389869064,0.0083861994,0.0093378248,0.0050257719,0.0045648282,-0.0029831226,-0.0255005881,0.0060963505,-0.0520420149,0.0431205258,-0.0266157743,-0.0216643475,0.0220063385,-0.0191514622,-0.0278796516,0.0164155383,-0.0032767884,0.0074531604,0.0150401425,0.0125792986,0.0190622471,-0.0113228559,-0.0123859998,-0.0137093542,-0.0042042513,0.0095534269,-0.0042451415,-0.010698352,0.0154193062,-0.0071817981,-0.0450832546,0.016579099,0.0124826496,-0.0308088735,0.000634262,0.0057023182,0.0067431582,-0.0193744991,-0.0096129039,0.0148765817,0.0035890404,0.0029701123,0.0171143878,-0.001889311,0.008832274,0.0046466086,0.0430610515,0.0202071723,-0.0170549117,0.0106165716,0.0110031692,0.005691166,0.0150252739,0.0108396085,-0.0484139435,0.0328905545,0.0003489603,-0.0116871502,-0.0362807214,-0.0349127576,0.0124752149,0.0087281894,0.0328608155,-0.0246381778,-0.0233148225,0.0174117722,0.0029831226,0.0192555469,0.0045127864,-0.0390761197,-0.0320578814,0.016266847,0.0222293753,-0.0080144703,-0.009144526,-0.0175158549,-0.0093601281,-0.0211587977,-0.0410091095,0.0043603773,-0.0362509824,-0.0183336586,0.0284446795,-0.0103340577,-0.0090032686,-0.0823156014,-0.0231810007,0.0435071252,-0.0072449921,-0.0112931179,-0.0098879831,0.0024162366,-0.0214413106,0.0137390923,-0.0049700127,0.0094642127,-0.0204302091,-0.0334258452,0.0072524268,-0.014869147,-0.0234635156,0.0038771301,0.0322065726,0.0119027523,0.0122744814,-0.0028214208,0.0164155383,-0.0006900214,0.0416633524,0.0131294569,-0.0166980531,-0.0260953531,0.0145940678,0.0050480757,0.0131963687,0.0177983698,0.0269875024,0.019999003,0.0248463452,-0.0197313596,-0.0036280719,-0.0014729749,0.0132632796,0.0546589866,-0.0233148225,-0.0149137545,-0.0729182959,-0.0315820687,0.0055796476,0.0290245749,0.0119622294,-0.0522501841,0.0215305258,-0.0093526933,-0.0057023182,0.0346451141,0.0105347913,-0.0090924837,0.0096277734,-0.043417912,0.0324444808,-0.0190919861,0.0048510595,-0.0013670323,0.0033269718,-0.0258871857,0.0038176535,0.0475812703,-0.0470162444,0.0009414029,-0.0064197546,0.0274484456,-0.017947061,-0.0015631191,-0.0055722129,-0.0062376074,0.0259615313,0.0257384945,-0.0005408652,0.0260953531,0.0204599462,-0.0134863164,-0.0468972921,-0.0205789004,-0.0030407407,-0.0280580819,-0.0414551832,-0.040592771,-0.001366103,0.0256344099,-0.0053082858,0.0187648647,0.0093229553,-0.0054718461,0.0096649462,0.0034905323,-0.02196173,0.0083192876,-0.0208762828,-0.0148096709,0.0243407935,-0.0086687133,-0.0029496672,0.0387489982,0.0068212212,0.041217275,0.0029961332,-0.0002078196,-0.0301546305,-0.0014655404,0.0013447285,0.0040890155,0.0068472424,-0.0165642295,-0.0142818158,0.0060703293,0.0223185904,0.0057060355,-0.0013205662,-0.0029886987,0.0112039028,0.0133153219,-0.0027507923,-0.0238649808,-0.0075460924,0.041247014,-0.0233148225,-0.0173969027,0.0380650163,0.0208762828,0.0173671637,0.0228984877,0.0107950009,0.0329500325,0.0113897668,0.0012973332,0.0372026078,-0.0128395092,0.0069513265,-0.0061298059,0.0013986292,0.0189581625,0.0383029245,0.0129584624,0.0173522942,-0.0138654802,0.0278499126,0.0239095893,0.0168616138,0.0003694054,0.002715478,-0.0035314225,0.0124083031,-0.00933039,0.0329797678,-0.0104678795,-0.0399682671,-0.0303330608,-0.0192406774,0.019285284,0.0413659699,-0.0512390807,0.0062413248,-0.0187202562,0.0050592273,-0.012504953,0.0232107397,-0.0010882358,-0.0199841335,0.003258202,-0.0237906352,-0.0179024544,-0.0334853195,0.0010445577,0.0087281894,-0.0002205977,-0.0451427326,0.0277606975,0.0117466263,0.0336042717,-0.0093824323,-0.0017229625,-0.0008071159,-0.0132335415,0.0181849673,-0.0258871857,-0.0013391526,0.0556998253,0.0294409115,0.0473731048,-0.0147278905,0.0035109774,0.0158802494,-0.0272254087,0.0196867511,-0.0023418907,0.0104158381,0.0204302091,-0.0023957915,-0.0259020552,0.0069290227,0.0055313227,0.0495737381,-0.0165047534,0.0051261387,-0.0193001535,0.0141033866,0.0108396085,-0.0263481289,-0.0076427418,0.0192406774,-0.04062251,-0.0093898661,-0.0011542175,0.0280580819,0.0051447251,-0.0301100239,0.002721054,-0.0170400422,-0.0113972016,-0.0172184724,0.0497819073,-0.0090850489,-0.0183782671,-0.0292922202,-0.0194191057,-0.0462430492,-0.0221252907,0.0139100878,-0.0029775468,0.0043380735,-0.0368457474,-0.0459159277,-0.0056465589,0.0472244136,0.0330987237,-0.001196037,-0.0091891335,0.015582867,0.0271956716,-0.0001150616,-0.0110180378,0.0347045884,-0.0003877595,0.0309575647,-0.0275971368,-0.0391058587,-0.0067134202,-0.0114269396,-0.0239095893,-0.0114343744,0.0268834177,0.0144974189,0.0179768,0.0147278905,0.004587132,0.0088174045,0.0297085568,0.0043863985,0.0027229127,0.0139844334,0.0036392238,0.0125421258,-0.0187648647,0.0086538438,-0.0165642295,0.0196570121,-0.0066539436,-0.0170400422,0.0194934532,0.0007216183,-0.0345558971,-0.0032228876,-0.0022842728,0.0013995585,0.0037265802,0.0212034043,0.0033529927,-0.0255600642,-0.007527506,-0.0083638951,-0.0417525657,-0.0139472606,-0.0126090366,0.0266455114,-0.0163560621,0.0001007152,0.0121034859,-0.0232553463,0.0117614958,-0.008802535,-0.0344072059,-0.0063825813,0.0269428957,0.0058398577,-0.0003333942,0.0463917404,-0.0301248934,-0.0100961514,-0.0210547131,-0.008616671,0.0122819161,0.0039589107,0.0374405123,-0.0523988754,0.007308186,-0.0093229553,0.0129807657,-0.0020463665,0.0064494926,-0.0122967847,0.0135829663,-0.014214905,-0.0184674803,0.002434823,-0.0072078193,-0.0226159729,0.0218130387,0.0342882536,-0.0113674635,0.0001807531,0.015612605,0.0000509384,0.0070925835,0.0354480483,-0.0104678795,-0.0087430589,0.0437450334,0.0425554998,-0.0146312406,-0.0035648781,0.0082375081,-0.0187797323,-0.0057209046,0.0268982872,-0.0244597476,-0.0109065194,-0.0182741825,0.0102968849,-0.0055164536,0.0009130586,0.0109288236,-0.0041336231,0.0248017386,0.0009943743,-0.0096352072,0.0047135199,0.0066799647,0.0056354068,0.0139546953,0.0090850489,0.0368457474,0.0049588606,-0.0302289762,0.0026968915,0.0677438378,0.0045945668,0.0272402782,-0.0143635962,-0.0094567779,0.0066576609,-0.0246233083,-0.0030110024,-0.0093824323,-0.0010510628,0.0035091187,0.0056279721,-0.0021244294,-0.0274187084,-0.0036039096,0.0289056227,-0.0144379418,-0.0162073709,0.0091296565,-0.0156720821,0.0022805554,0.0047804308,0.0146312406,-0.0204748157,-0.0116871502,-0.0050666621,0.0014450953,-0.0058138366,0.0131591959,0.0039551933,0.0039774971,-0.0017536301,0.0180957522,0.0054867156,-0.0154787824,-0.0088917501,-0.013003069,0.0133450599,0.0050034681,0.0025835144,-0.0183485281,-0.0399087928,-0.0070888661,0.0033752965,-0.0098805483,0.0202220399,0.0149583621,-0.0015036425,-0.0074382909,-0.0391950719,0.0076130037,-0.0061112195,0.0339016579,-0.0202071723,0.0127056865,-0.014371031,-0.0015157238,-0.0093080867,-0.0177091546,0.0093155205,-0.0315820687,-0.0202369094,-0.0071780807,-0.0019032509,-0.0141777322,-0.0172630809,0.0179321915,0.0046205875,-0.0143338582,-0.0258723162,-0.0179321915,0.0019236959,0.00793269,0.0183187891,0.0254262425,0.0154639138,-0.0128543777,0.0092337402,0.029143529,-0.0023790635,0.0084754145,0.00368569,-0.0283257253,0.0233743005,-0.0018474916,0.0013716789,0.015582867,0.0217833016,0.0054049352,-0.006375147,-0.0020742461,-0.0110626454,-0.0090701804,-0.0063454085,0.0115458928,0.0057320562,-0.019002771,0.0100738471,0.0200733487,-0.0343477316,0.0443695374,0.0068026348,-0.0001290596,0.0043194871,0.0068844152,0.0105496598,0.0070702797,-0.0415146612,-0.0459456667,0.0252626818,-0.0158951189,0.0021188536,0.0064569274,-0.0135234892,0.028087819,-0.0399385318,-0.0291286595,-0.0129138548,0.0031002173,-0.0145271569,0.0118953176,0.0258871857,-0.0090404414,-0.0252180733,0.0098210722,-0.0025091686,0.0005455118,-0.0002778672,-0.0029032012,-0.0024924409,0.0143933343,-0.001600292,0.0387787372,0.0093526933,-0.0065201214,-0.0037117109,0.0077022184,-0.0170549117,0.0369944386,0.0221252907,-0.0421689004,-0.0112931179,-0.0016458287,-0.0274038389,0.0263927374,-0.0128692472,0.0035518676,0.0242069717,0.0110998182,0.002752651,-0.0212182738,-0.0074940501,0.0290989224,0.0224078055,-0.008088816,-0.0383623987,0.0091370912,-0.0066019013,-0.0346153751,0.0243705325,-0.0016746378,-0.0255303252,-0.0061075022,0.0000156242,0.018259313,0.0025760797,-0.0112856831,-0.0070070857,0.0180660132,0.0082598114,0.0107057858,0.0012090475,0.0449345633,-0.0075237886,0.0099400254,0.0244300086,-0.0242069717,-0.0040332563,-0.0222591143,0.0065498594,0.0253072884,-0.0122596119,0.0296639483,0.0132038025,0.0395221934,0.0314036384,-0.0137539618,0.003273071,0.0068175043,-0.0016709204,0.0255749337,-0.0011477123,-0.0026708706,0.0141182551,0.0330689847,0.0170846507,0.0365186259,-0.0042154035,-0.0522204451,0.0259020552,-0.0187946018,-0.0110552115,-0.0220063385,0.010512487,0.0056465589,0.0217238236,-0.0131443264,-0.0107132206,0.0145197222,-0.0213223565,-0.017664548,-0.0194339752,-0.0020761047,0.0086761471,-0.002830714,-0.0064643617,-0.0051856153,0.040681988,-0.0076650456,-0.0362807214,0.0110849496,-0.0154341748,0.0021430159,-0.0240582805,-0.0072375573,0.0089735305,0.0251139905,0.0111146877,-0.0085274559,-0.0262291767,0.0104678795,0.0090924837,-0.0156274736,0.0075014848,-0.004587132,-0.0096798148,-0.0076724803,-0.0256492794,0.0164304078,0.0374107733,-0.0173820332,-0.0317902379,0.0157166887,-0.0075646788,0.0242515802,0.0194488447,0.0247571301,0.0269577652,-0.014400769,-0.0055350401,-0.0313441642,-0.0258723162,-0.0255154576,-0.0188392103,-0.0359833352,0.0388976894,0.0496034771,-0.0043380735,0.02301744,0.0094939508,-0.0210695826,-0.014586634,0.0261548311,-0.0093080867,0.0064643617,0.0029106357,0.0032805055,0.0046577603,-0.0286082402,0.0177983698,0.0021857647,-0.0064234715,-0.0029849813,-0.0058695958,0.0116053699,0.0048882323,0.0272551477,0.0348235443,0.0083787646,0.0306899212,-0.013902653,-0.0160140712,-0.0354777873,-0.0010045968,-0.0009674239,0.0443397984,0.0041930997,0.0268536806,-0.009984633,0.0272848848,-0.013218672,0.0147576286,-0.0031020758,-0.0141256899,0.003810219,0.0387192592,0.0141182551,0.0451129936,0.0259764008,0.0004483977,0.0157464277,-0.006144675,-0.0293219592,-0.0235824678,0.006687399,0.0140810823,-0.0163560621,0.0134788826,0.0187499952,-0.0087876664,0.0341990404,0.0075795478,0.0087133208,-0.0139323911,0.02196173,0.0000540459,-0.0062264553,0.0213520955,0.0118730143,0.0383029245,0.0148840165,0.0120960511,0.0200882182,0.0088471426,0.0368160084,0.0011319139,-0.0109065194,-0.0453508981,0.0036299306,-0.0184228737,0.0020798219,0.0194339752,0.0293814354,-0.0058733132,0.0076724803,-0.0234635156,-0.0221104231,0.0408009402,0.00793269,-0.0305709671,-0.0069884993,0.0208168067,-0.0219468623,-0.0367862694,0.0012657362,0.0295896027,0.0043603773,-0.0333663672,0.0223185904,0.0023344562,-0.0207127221,0.0052042017,0.0134342751,-0.0065349904,0.0044533098,0.008646409,-0.0261399616,0.0374107733,-0.0296044722,0.0518933237,0.0087058861,-0.0198354423,0.0137688303,0.0533505008,-0.0118655795,-0.0194934532,0.0395519324,-0.0180511456,0.0012044009,-0.0102968849,0.018229574,0.0200584792,0.0047990172,-0.0338719189,-0.004821321,-0.009828506,0.0093155205,0.0106314402,-0.0099771982,0.0001527573,0.0164155383,-0.0019459997,-0.0063937334,0.0033938829,0.0245786998,-0.0440126769,0.0092560444,0.0126462094,-0.0030667617],"25":[-0.0604782999,0.0194826312,0.0659650564,-0.0379733071,0.0189711526,-0.0073699211,-0.0110510066,-0.0306111332,-0.0123064509,0.0201491006,-0.0119732162,0.0224739965,-0.0438630432,-0.0334785059,0.0669570118,0.050589744,-0.0291851982,0.0069398154,-0.077248551,0.0399572179,0.0012118522,-0.0070173121,-0.0321145654,0.0041305656,-0.0246593989,-0.019405134,-0.0092840856,0.0812783763,0.0113377441,-0.0474588834,-0.0042313114,-0.0329205319,-0.0387172736,-0.000253559,0.0376633182,0.0027433776,0.0307816267,-0.0001773944,-0.0332615152,0.0056572477,-0.004769912,0.0169252455,-0.0023675193,0.0050760233,-0.0259613413,-0.0179636981,-0.0371983387,0.0197306201,0.0361133888,0.0292316955,-0.0278057586,0.027914254,-0.0387792699,-0.0088501051,0.0310761128,0.007059935,0.0142128654,0.062028233,-0.0314170979,-0.0610052794,0.0104852822,-0.0082146339,0.0435220562,0.0155845545,0.0131589128,0.0145693496,0.0170027409,0.0354624167,-0.0007953083,0.0486058295,0.052325666,0.0236209463,0.0252018757,-0.0596103407,0.0004439099,-0.0014646846,-0.0370743461,0.008098389,0.0125544397,-0.0184906758,0.0062462213,0.000282378,-0.0743966773,-0.0068158209,-0.0044483016,-0.0390582569,-0.0049055312,-0.0174677204,0.0169407446,0.0069436901,-0.0107642701,0.009113593,0.0025496362,-0.0044793002,0.0135773942,0.0182891842,0.0338194892,0.0243184157,0.0006102853,0.0145306019,0.0212805513,-0.0478928648,-0.0348734446,-0.0363613777,0.0268758014,-0.0254343655,0.00806739,0.0302546509,0.001572211,-0.0064825858,-0.0403291993,-0.0183356814,-0.0698708817,-0.0069475649,-0.0070676845,-0.0103070401,-0.0367953591,-0.0412591584,0.0688789263,0.0091988398,-0.0355244167,0.0177777074,0.0160882827,0.0098885586,0.0389652625,-0.040825177,-0.0127249323,-0.0285342261,-0.0240084287,0.0112292487,0.0526976474,-0.0374463275,0.0529456362,-0.0396782309,0.0005657247,-0.0033323513,-0.0394922383,-0.0254188664,-0.0026581313,0.0501557626,0.0113377441,0.0239774305,0.0389342643,-0.0184131786,-0.0231249686,-0.0004347072,-0.0399262197,0.0543405749,0.0041576894,0.0117329769,-0.0306421332,0.028813215,-0.0476138741,-0.0105627785,0.0535656102,0.0440800339,0.0298981667,-0.0000176789,-0.0139106289,-0.030285649,-0.0205520838,0.019110648,-0.0276507661,-0.0121979555,-0.0618732385,-0.0009255993,-0.035586413,-0.0569444597,-0.0967156813,0.0036985225,-0.0625242069,-0.0648491085,-0.015282318,0.0113532431,0.0343464687,-0.016150279,0.0002584025,-0.0362063833,0.0382212959,-0.0312001072,-0.0299136657,-0.0071645551,-0.0076101604,-0.0073234234,-0.0062965942,0.0360823907,-0.0330135264,0.0343774669,0.0055875005,0.0250468832,0.0102140438,0.0487608239,0.0641671345,0.054991547,0.0051806439,-0.0561384968,0.0212495513,0.0407631807,-0.0372603387,-0.0034621579,-0.0017814517,0.0156543013,0.0291541982,-0.0356484093,-0.0111362534,0.008834606,0.0239154324,-0.0018947904,-0.0144686047,-0.0162897725,0.0096793184,0.0296346769,0.0523566641,-0.0594553463,-0.0427780896,0.0089276014,-0.0667090267,0.0274957735,-0.0141431186,0.0127094332,0.0050411499,0.0372293405,-0.0022028391,-0.0225049965,-0.0101520466,0.049132809,0.0490088128,-0.0111827506,0.0424681045,0.0030184903,0.0333545133,0.0092840856,0.0401122086,-0.018211687,-0.0066220793,-0.0431810729,0.0336025022,-0.039709229,0.0169562437,-0.0345634595,-0.0192036424,0.0144531047,0.0183356814,0.0634851679,0.0131589128,-0.0019829427,-0.0413521565,-0.0631441846,0.0180566944,0.0285342261,0.0218075272,0.0155923041,0.0129186735,-0.0092220884,0.0105782775,-0.0060098567,-0.0380353034,0.0286272224,-0.0092220884,-0.0097413156,0.0337574929,-0.0485438332,-0.0350284353,0.035245426,-0.0536586046,-0.0229699742,0.0154218115,-0.0071335565,-0.011322245,-0.0479858592,0.0084858714,0.0426540971,0.0528526418,-0.0491948053,0.0094778268,0.0095165754,0.0500007682,-0.0083541274,-0.0262713283,-0.0145693496,-0.0182426851,-0.0473968834,-0.0059439847,0.0056804963,-0.0033672247,-0.0080441413,0.0056649973,0.04054619,0.0128256781,-0.0826423094,-0.0087571088,0.0400812104,0.0445140153,-0.0057579931,-0.0025612607,0.0038225169,0.0102682915,0.0223035049,-0.049132809,-0.0387792699,0.0244114101,-0.0136936391,0.0396472327,0.0051651443,-0.0061183521,0.0469939038,0.0611912683,0.0039794473,-0.0330445245,0.0333235115,-0.0133526539,0.0037314584,-0.0398952216,0.0208155718,-0.0146235973,-0.0039561987,0.0713588148,-0.014414357,0.0271547884,-0.0482028499,-0.0162897725,-0.0842542425,0.0110587562,0.0152358199,0.019715121,-0.0337574929,0.0282087419,0.0024605151,-0.0279917512,-0.0304716397,0.0371983387,0.0100513017,0.03115361,0.044947993,-0.0416311435,-0.0725987628,-0.041445151,-0.0154915592,-0.0109037636,0.0231094696,-0.0229079779,-0.0439560376,-0.0629271939,0.0174677204,0.0360513926,0.0373533331,-0.0210790597,-0.009260837,0.0118647208,0.0157550462,-0.0277747605,0.007707031,-0.0040220707,0.0126706846,0.055270534,-0.0134379007,0.0298051704,-0.0316650867,-0.0234194547,-0.0027395028,-0.0321765654,0.0138796307,0.0385622792,-0.0026949423,0.0011362931,-0.0045567965,-0.02735628,0.0146623459,-0.0675149858,-0.0411971621,0.0333545133,-0.046125941,-0.0106867729,-0.0241944212,-0.0407631807,0.0031366725,0.0513957068,0.0100048035,-0.0262713283,0.0555185229,0.0607572906,0.0035299675,-0.0263643228,-0.0232799612,0.034687452,0.0140656224,0.0043088077,0.0457229614,-0.0652210861,-0.0040646936,0.0148095889,-0.0195291284,0.0169872418,-0.0174832195,0.0014394983,0.0093383333,-0.0135231465,0.057006456,0.0398642197,0.0272632837,0.0190641489,-0.0188626591,-0.0901439786,-0.014693344,-0.011601232,0.0350594372,-0.0106480252,0.0143058617,-0.0130969156,-0.0105317803,-0.026178332,-0.0351524316,0.0322075635,-0.0213890448,0.0338814892,-0.0146003487,-0.0254498646,0.0265968125,0.0058354898,0.0650350973,-0.0023481452,-0.0174987186,-0.0200096071,-0.0110742562,-0.0119887153,0.0136238923,0.0260388386,-0.0354314186,0.0326105431,-0.0440800339,-0.0259458423,0.0293091927,0.0248918887,0.0463119335,-0.0238689352,0.024101425,0.0490398109,0.0003480079,0.0379423052,0.0289527085,0.0285652261,-0.0365783684,-0.0400812104,0.0458159558,-0.006250096,-0.0128489267,0.0214045458,-0.0055255033,0.016460266,-0.0146235973,0.0750786513,-0.0368573554,-0.0504657477,0.0263488237,-0.017653713,-0.0568514615,0.0167857502,0.0258218478,0.0015644614,-0.0002462937,0.0014278737,0.0072730505,-0.0576264299,0.0085866172,-0.0278987549,-0.0316495895,0.0075481632,0.0019974734,0.0223655012,0.0102062942,0.0182426851,-0.0574714355,-0.0129419221,-0.0188781582,-0.0556115173,0.0283947326,0.0392132513,0.0319285765,0.0300066601,-0.0256048571,0.0010791393,-0.0137013886,-0.0247523952,0.0345014594,0.0436770506,0.0208775681,0.0212805513,-0.0052968888,0.0040259454,-0.0108727645,-0.0308901221,0.0014065623,0.0436770506,-0.0201645996,0.0033149146,-0.0341604762,-0.049411796,0.0284412317,-0.0082146339,-0.0140733719,0.0422821119,-0.0027840633,0.0059478595,0.0691269189,0.0427160934,-0.0012709433,-0.0391822532,0.0195446275,-0.0140733719,-0.0272322856,0.0111285038,0.0083696265,0.0302701499,0.0366093665,-0.0219780188,0.0245664045,0.0066298293,0.0325795449,-0.0128644258,0.0046652919,-0.0246903989,-0.0224739965,-0.0416931398,0.0006364404,0.0288752113,-0.0180876926,-0.0172352307,-0.0753266364,-0.0253568683,-0.0189401545,0.0179791972,-0.0298051704,-0.0223810021,0.0479238629,-0.0363613777,-0.0216215346,-0.0266433116,-0.039988216,-0.0070173121,0.0314325988,0.0334165096,0.0241944212,-0.0354314186,0.0122444537,-0.0017737021,0.0091833398,0.0103457887,-0.0357104056,-0.0213270485,0.035586413,0.0263333246,-0.0270772912,0.0309676174,-0.0266743097,-0.0023830186,0.0410731658,0.0001434897,0.0183046833,-0.0133139063,-0.0005342418,-0.0170182399,0.0166772567,0.0094003305,-0.0178242046,0.0079976432,0.0191726442,0.0081526358,-0.0083696265,-0.0285497252,0.0146235973,-0.0055410028,-0.016754752,-0.0021137181,0.0384692848,0.0239154324,-0.0111982506,-0.0532246232,0.0063740904,-0.0195136294,0.0163517706,-0.0405771881,0.0033013527,0.0122289546,0.0386862755,-0.0175762158,0.0019693808,-0.0090205977,0.0080208918,0.0129651716,-0.0089431014,0.0185991693,0.0154915592,-0.0202110987,0.0062074731,-0.0068700686,0.0055332533,0.0067189503,-0.0032587296,-0.0135696447,0.0286737215,0.0183201823,0.0021815277,-0.0420961231,-0.0351214334,0.020583082,0.0183201823,0.0202110987,0.0005497411,-0.0043165572,-0.0157937948,-0.0148095889,-0.0168012511,-0.0247678943,-0.0183511805,-0.0379423052,0.0462809354,-0.0515816994,-0.0321145654,0.0212805513,-0.0104775326,-0.0248298924,-0.0194516312,0.0199011117,-0.012484693,0.0023210214,0.0466529168,-0.0039949468,-0.0303321462,-0.0224739965,-0.016460266,0.0134766484,0.0099350568,0.0452579819,-0.0011353244,0.0038515781,-0.0072808,0.0041189413,0.0642291307,-0.0131124146,-0.038810268,0.0254498646,0.0242409185,0.0120429629,-0.0266743097,0.0618422404,-0.0372913368,-0.0210325606,0.0197771173,0.0159952864,-0.0185836703,-0.0396782309,-0.0038806393,0.0400192142,0.0318665765,0.0040375697,0.0143058617,-0.002266774,0.007354422,-0.0350594372,-0.0041925628,-0.0301306564,0.0070250616,-0.006323718,-0.0252328739,0.0028383108,0.0058161155,0.0340054817,0.0058393646,0.0431810729,0.0368573554,0.0280382484,0.0216990318,0.0295261834,0.0336335003,0.0097878128,0.0032064195,0.0066065802,-0.0137556363,0.0063043437,0.0705528483,-0.0286272224,0.0105472794,-0.0324245542,0.023233464,-0.0274647754,0.0327035412,0.0078349002,0.0125311911,0.0045374227,-0.0064593367,0.0082921302,0.0461879373,0.0211100578,0.0110045094,-0.0244889073,0.0148173384,0.0038225169,-0.0022319003,-0.0323315561,0.0133526539,0.0311226118,-0.001939351,-0.0566344745,-0.050868731,-0.0280072503,-0.0048047858,-0.0012331638,-0.0415071473,0.0164292678,-0.0326415449,0.0038922639,0.0316340886,-0.0242564175,0.0003480079,0.0032877908,0.0024818268,0.0008742579,-0.0088501051,-0.0204900857,0.0065407082,-0.0294331871,0.0450719893,-0.0380972996,-0.0148870861,0.0191726442,-0.034687452,-0.0124381948,0.0274492744,0.0152358199,-0.0072343023,0.0166462567,0.0037837687,0.0135541456,0.0029409938,0.0209395662,0.000507118,-0.0112834964,0.001037485,-0.0168012511,-0.0083541274,0.014840588,-0.0026600689,-0.0321765654,-0.0040956922,-0.0039252001,-0.0379733071,0.010570528,0.0331065245,0.0002022175,-0.0262248293,-0.0045606713,0.0168167502,0.0363923758,0.0192966387,0.0122677023,-0.0271702874,0.0113067459,-0.0077186557,0.0487298258,0.007354422,-0.034067478,0.0276042689,0.0096793184,0.0213890448,0.012352949,0.0121824564,-0.0312776044,0.0224739965,-0.0090283472,-0.0253258701,-0.0251088794,-0.0242564175,0.0000709578,0.0086408649,0.0111982506,-0.0262713283,-0.0128566762,-0.0068700686,0.0041654389,0.0124536939,0.0128799248,-0.0402052067,-0.034408465,0.0078736488,0.0196531229,-0.0078194011,0.0096173212,-0.0289527085,-0.0118259722,-0.0379733071,-0.0447930023,-0.0040414445,-0.0229699742,-0.0235434491,0.0386862755,-0.0024798894,-0.0061338511,-0.1186007112,-0.0313086025,0.0121669574,-0.0045180484,-0.0231249686,-0.0204745866,0.0111130038,0.0144453552,0.0110432571,-0.0033362261,0.0123219499,-0.0218695235,-0.051426705,0.0098885586,-0.0064477124,-0.0216060355,-0.0015073078,0.04996977,0.011601232,0.0350594372,-0.0085633676,0.0115624843,-0.0011275747,0.0422821119,0.0142206158,-0.0152745685,-0.0131046651,0.0016187091,0.0092840856,0.0021214678,0.0073660463,0.0313551016,0.0123296995,0.0383452885,0.0299291648,0.001199259,0.0122367041,0.0284567308,0.0234039556,-0.0149335833,-0.0162277762,-0.0478308648,0.0032722915,-0.0049869027,0.0404221974,0.0044211778,-0.0036442748,0.0078000268,0.0030862999,-0.0161192808,0.0061144773,0.0082533816,-0.0267828051,0.0250313822,-0.0263333246,0.0277747605,-0.0165997595,0.0017097675,-0.0090360967,0.0123994472,-0.0110045094,0.0075365389,0.0346254557,-0.0394612402,-0.0196531229,0.0042971834,0.0116864787,-0.0041770637,0.0109735103,-0.0292161964,0.0218540244,0.0247213971,0.019079648,-0.0079666441,0.0493807979,0.0344704613,-0.0014491853,-0.0360203944,-0.0087726088,-0.0041654389,0.0194671322,-0.0199476108,-0.0271237902,0.0073970449,0.0264883172,-0.0024624525,0.0080518909,-0.0214820411,-0.0064205886,0.0036791484,0.0228459798,-0.0133139063,0.0193431377,-0.0281002466,-0.0158015452,0.0209085662,-0.0021156557,0.0099893045,0.0334475078,-0.0071529308,0.046125941,0.0172042325,-0.0071606804,-0.0117407264,-0.0062617208,-0.0094468286,0.0084703723,0.0066530779,0.0109347617,-0.0062190974,0.0083618769,0.002009098,0.0005807397,-0.0159177892,0.0140423737,-0.0006403152,0.0090825949,-0.0130814165,-0.0147785908,-0.0007890117,0.0448549986,-0.0493497998,-0.0086873621,0.0113997413,0.0128876753,0.0218230262,0.0277747605,0.0002484733,0.0261938311,0.0065290835,-0.0295881797,0.0319595747,-0.0064942101,0.0291232001,0.0103845363,-0.0085323695,0.0093615819,0.0184751749,-0.0146080982,0.0301771536,0.0006412839,0.0225204956,0.0117407264,0.0226289909,0.0110587562,-0.0066143298,-0.0065639573,0.0145693496,-0.0180721935,0.0302701499,-0.0238224361,-0.0178242046,-0.0177312084,-0.0032199812,0.0006262689,0.0752026439,-0.0459089503,-0.0050605242,-0.0024450158,0.0049132807,-0.0002408447,-0.0021350298,-0.0007216865,-0.0162432753,0.0390272588,-0.0251088794,-0.0238224361,-0.031448096,0.0090593453,0.0287512168,-0.0070870589,-0.0202110987,0.0119189685,0.0027491897,0.0428090915,0.0152900675,0.0109192627,-0.0005076024,0.0082688807,0.0079976432,-0.0144608552,-0.0005076024,0.0362373814,0.0531626269,0.0528216437,-0.0302701499,-0.0258373469,-0.0085943667,-0.0206295792,0.0076721576,0.0008713517,0.0306886304,0.011616732,0.0136161428,-0.0171112362,0.0026910675,-0.0068119462,0.0280382484,-0.0332925133,0.0360823907,-0.0132131604,0.0199786089,-0.0030824249,-0.0349354409,-0.0148250889,0.0386552736,-0.0479238629,-0.004549047,-0.0358963981,0.0053085131,0.0171267353,-0.0241324231,0.0214200448,-0.0061338511,0.0005986608,-0.0126551855,0.0296501778,0.0212030541,-0.0167082548,-0.029402189,-0.0136471409,-0.0187386647,-0.0100358026,0.0139416279,0.0090283472,0.0194671322,-0.0201336015,-0.0299136657,-0.0143291103,0.0398332216,0.0166307576,0.0129496725,-0.0102992905,-0.0152513199,0.002388831,0.0128876753,0.0105550289,0.0392442495,0.0049365298,0.0010006741,-0.0253878664,-0.0412591584,-0.0155535564,-0.0141818672,-0.0356174111,-0.0168477483,0.0391822532,0.0194826312,0.0218075272,0.0138408821,-0.0188936573,0.0151040759,0.0178242046,0.0152435694,-0.0037178965,0.0280692484,0.0184286777,0.0278832559,-0.0263333246,0.01366264,-0.0075675375,0.0079123974,-0.0099118082,-0.0113454936,0.0110897552,-0.0052232668,-0.0303786453,-0.0190176517,0.0189246554,-0.0115314852,-0.0029274318,0.0022396501,0.0242564175,-0.0127016837,-0.0208930671,-0.0039600735,-0.0500007682,-0.0087183611,-0.0121204592,0.0014046248,-0.0204590876,0.0181341916,0.0205675829,-0.0256513562,0.0108107673,0.0238844343,-0.009113593,-0.0075210393,0.000522133,0.0119422171,-0.0113532431,0.0574094392,-0.0171267353,-0.0037837687,-0.0310916118,0.0012583501,-0.015414062,0.0185061749,0.0270617921,-0.0351834297,0.0251553766,-0.0163672697,0.0095243249,0.0067073256,-0.0061416011,-0.0096638184,-0.0087571088,-0.0146545963,-0.025573859,0.0118569713,0.006323718,-0.0131976614,0.0106790233,0.0147708412,-0.0109890094,-0.0174522214,-0.0094468286,0.0087416098,0.0034408465,0.0036404,-0.0025225123,0.0050295256,0.0460949428,0.040267203,-0.0030959868,-0.0099893045,0.0044289273,-0.0177157093,-0.0135541456,0.0174367223,-0.0025283247,-0.0105162803,-0.0105085308,0.0036152138,-0.0303631444,0.0073272982,0.0198236164,0.0015082764,0.0133294053,-0.0075985361,-0.0091833398,0.0034098478,-0.0014743718,0.0077419044,0.0133759035,-0.0051728943,0.04528898,-0.0073776706,-0.0095863221,0.0248608906,0.0755126327,0.0141973663,0.0159177892,-0.0179636981,0.0089121023,-0.0048357844,-0.0201800987,0.0017611089,0.0124071967,0.0079201469,-0.0012360698,-0.0101210484,-0.0003603589,-0.0163982678,0.0065135844,0.0318665765,-0.0010849516,-0.0044947993,-0.0099505559,-0.0122987013,0.0102062942,0.0000196163,-0.0007725437,-0.0015044017,-0.013957127,-0.0134921484,0.0004727289,-0.0086331144,-0.0035900273,0.0179636981,-0.0155690555,-0.0139028793,0.0076217847,0.0192501415,0.0028518727,0.0039406992,0.0037934557,0.0190021526,0.0064670863,0.0079898937,-0.0213890448,-0.0099273073,-0.0065019601,0.0037876435,-0.0229544751,0.0267983042,0.013058167,-0.0061183521,0.0036539619,-0.0568204634,0.0030611134,-0.0051457705,0.0241944212,-0.0117794741,0.0000776176,-0.0151893226,0.0001181217,-0.0119577162,-0.0019596939,0.0082921302,-0.0563864857,-0.0007754498,0.0100745503,0.0041460651,-0.0181961879,-0.0246593989,0.0303941444,-0.0031424847,0.0046614171,-0.0479548611,-0.0150885768,0.0053472612,0.0135618951,0.022055516,0.0078930231,0.0080518909,-0.0227374863,0.0331375226,0.0314016007,-0.0090283472,-0.0059246104,-0.006455462,-0.0161192808,0.0181031916,-0.0034582831,0.0156078031,0.0060214815,0.0061454759,0.0019035088,0.0060602296,-0.0203815904,0.001787264,0.0040801931,-0.002131155,0.0145770991,-0.0016061158,-0.0282707382,-0.0025941967,0.0160882827,-0.0347494483,0.0106092766,0.0244734082,-0.0040259454,-0.0026891299,0.0105007812,-0.0033187894,0.0040840679,-0.0329825282,-0.0456299633,0.0143833579,-0.019389635,0.004769912,0.0115779834,0.0168477483,0.0153985629,-0.0166152585,-0.015135075,-0.0061493507,-0.0225049965,-0.0028228115,0.0107797692,0.0165222622,0.0065290835,-0.0164912641,0.0087416098,0.0163672697,-0.0046536676,-0.0162587743,-0.0068080714,-0.0021834651,0.013089166,0.0057424936,0.0220245179,0.0000659931,-0.0008514933,0.0073389225,0.009834311,-0.0240394268,0.0245509036,0.02732528,-0.0496287867,0.0165222622,0.0103225391,-0.0323935561,0.0522636697,-0.0187541638,0.0120042143,0.0146778449,0.0146778449,-0.0117407264,-0.0192656405,-0.0128334276,0.0223190039,0.0224429984,0.003419535,-0.0209705643,0.0075907861,-0.0067731976,-0.036144387,0.0307971258,0.0008277599,-0.0189866535,0.0052775145,0.001829887,0.0295106824,0.0009774251,-0.0077419044,-0.0098420605,-0.0046807909,0.0118802199,-0.0096793184,-0.0105240308,0.016165778,-0.0116632292,0.0167082548,-0.0044328021,-0.0111672515,-0.0137168877,-0.022334503,0.0059749833,-0.0073350477,-0.0082766311,0.036702361,0.0155613059,0.0351524316,0.0149645824,-0.0217145309,-0.0117949741,0.0329205319,-0.0078426497,0.0000636925,-0.0079821441,0.0059052366,0.0085711172,0.0483888425,0.0197616182,0.0287202187,0.0093615819,-0.0494737923,0.0260853358,-0.0101210484,-0.0076256599,0.0099815549,-0.0007589817,0.0074784164,0.0210635606,-0.0031327978,-0.0023229588,0.0084858714,-0.0143136112,-0.0020168475,-0.0262868274,-0.0085943667,0.0277282633,-0.0223965012,0.0137013886,0.0025457614,0.0348734446,-0.0026523191,-0.0310451146,0.0290302038,-0.006029231,-0.0133371549,-0.046404928,-0.0242099203,0.0073621715,0.0409491733,0.0007735124,0.0000008438,-0.0112602478,0.0038845141,-0.000370046,-0.0058277398,-0.0086253649,-0.0335715003,-0.0057618679,0.0018657292,-0.0294951834,0.0079898937,0.0371053442,-0.0036094014,-0.0189711526,0.0013038793,-0.0291232001,0.034129478,-0.0009410986,0.0172352307,0.0084626228,0.0056107496,-0.0058858623,-0.0358963981,-0.0245509036,-0.0003625385,-0.0244734082,-0.0195756257,0.0418481342,0.016460266,-0.0076760324,0.003452471,0.0259458423,-0.0119267181,0.0198856127,0.0380043052,-0.0090283472,0.0197461192,0.0013590956,-0.003808955,-0.0014055935,-0.0434910581,0.0259923395,0.0073931701,-0.0212340523,-0.0151118254,-0.011601232,0.0310141165,-0.0107952682,0.0409181751,0.0346564539,0.0247678943,0.0199631099,-0.0038283293,-0.0054790056,-0.0226134919,-0.0058471141,0.0102527924,0.0366713628,0.016754752,-0.0103457887,-0.0131511632,0.0324555524,-0.0021582786,0.0270307939,0.004549047,-0.003125048,0.0208155718,0.0089198519,0.0139028793,0.0504347496,0.0328275338,-0.0195446275,0.0132131604,-0.0071529308,-0.0092298379,-0.0376013219,0.0140036251,0.0280382484,-0.0024973261,-0.0058548637,-0.0079162717,-0.0036345879,0.0583083965,-0.0081913844,0.0070754341,-0.0181806888,-0.0007391233,0.0026542565,-0.004188688,0.0473038889,-0.0024837642,0.0224894956,0.02352795,0.0092530875,0.0127559304,0.0171112362,0.0486058295,-0.0141586186,0.0023093969,-0.0227839835,-0.0142981121,0.0024430784,0.0178087056,0.0277127642,0.0309676174,-0.0073311729,0.0034447212,-0.0206140801,-0.0150808273,0.0175917149,0.0142671131,-0.0343774669,0.004483175,0.0019044775,-0.0180411953,-0.0271082912,-0.0269532967,0.0526666492,-0.0044986741,-0.0343154706,0.011175001,-0.0212495513,-0.0035784028,0.016739253,-0.0038031428,-0.0087416098,0.0069475649,0.024380412,-0.028782215,0.0168942455,-0.0259613413,0.0304251425,0.013809884,-0.010865015,-0.0188316591,0.0324245542,-0.0275422707,-0.0066065802,0.0515507013,-0.0125079416,-0.0276972633,-0.001271912,-0.0070560602,0.0150808273,0.0031192359,-0.0371673405,-0.0189556535,-0.016165778,-0.0027995626,0.0190176517,-0.0050062765,0.0152668189,0.0378183126,0.0108185168,-0.0120972106,0.018800661,0.0345944576,-0.0259613413,-0.0010549217,0.0182736851,0.000829213],"26":[-0.0017071211,-0.0004770176,0.0844442025,-0.0085081169,0.0649710745,0.0127470102,-0.0206409059,0.0011782075,-0.0239015911,0.0029952819,0.0171830598,-0.01601528,-0.0141422804,-0.0306656212,0.0559624843,0.0337291509,-0.0021421954,-0.0019658906,-0.0309234429,0.000767778,-0.0069953105,-0.0032455206,0.0311812647,-0.0033990764,-0.0013791567,-0.0095090726,-0.0050540646,0.0539909042,0.0019810568,-0.0881447047,0.0063886712,-0.036701683,-0.049380444,0.0005014254,0.0146503411,0.0256608464,0.0420704409,0.0255091861,-0.0073972088,-0.0161062758,-0.0396438837,-0.0025175535,-0.0072834641,0.0161062758,-0.016803911,-0.0111015011,-0.0493197814,0.0015886369,0.014779252,0.0425254218,-0.0349727608,0.045285631,-0.0260096639,-0.0371566638,0.0147489198,-0.0326068662,-0.012716678,0.0308021139,-0.007143179,-0.0389765799,0.0147337541,-0.0505633913,0.0668516606,0.0277082548,0.0170162339,0.0136721348,-0.0103962822,0.0444060043,-0.0224456564,0.0447093211,0.0328191891,0.0378239639,0.0363983624,-0.0363983624,0.0306807868,-0.0505633913,-0.0338201448,0.0236741025,-0.0148854135,0.028527217,-0.008917599,-0.0016521445,-0.0387945883,0.0120190429,0.020974556,-0.045285631,0.0131489085,-0.0072569237,0.0177745335,-0.0052701798,0.0018853215,0.0580553897,0.0398865379,0.0183963384,0.0323035456,0.0122844474,0.0142029449,0.01601528,-0.0100474646,0.0390372425,0.0350637548,-0.025721509,-0.0282542296,-0.0306807868,0.0281480681,-0.0166067537,0.0451946333,0.0213688724,0.000676782,0.00745029,-0.0763152316,-0.0144456001,-0.083958894,-0.0203375854,-0.0125346864,-0.03648936,-0.0162579361,-0.0045460039,0.0220816731,-0.0090540927,-0.0201404281,0.0226428155,-0.0232646205,0.0393405631,0.0351244211,-0.0394922234,0.0077877329,-0.0555681661,-0.0371869951,0.011601978,0.0689142346,-0.0198674407,0.0661236942,-0.0356703959,-0.0356400646,-0.012345111,-0.069884859,-0.0335774906,-0.00067773,0.003634149,0.0242049117,-0.0212172121,0.0360343792,-0.0050464813,-0.0284058899,0.0370959975,-0.0186844934,0.0456799455,-0.049380444,-0.0015194421,0.0048986129,0.0080683036,-0.0284362212,-0.0270257853,0.0463775806,-0.0029175563,0.0359433852,0.0528989546,-0.0181081854,-0.0165157579,-0.016637085,0.0335774906,-0.0201404281,-0.0207622331,-0.0364590287,-0.0188209862,-0.0359130502,-0.054779537,-0.0832309201,-0.0163185988,-0.0220210105,-0.054900866,-0.0078408141,0.0201252624,0.0431320593,-0.0022066508,-0.0142408591,-0.0367926769,0.0398562066,-0.0325462036,-0.0324855372,0.0096986471,-0.0239622556,0.0137100499,-0.0144759323,0.0198219419,-0.0626051873,0.0379149616,0.0251906998,0.0269044563,0.0030369884,0.0740100071,0.0577824004,0.016803911,0.0140740341,-0.044042021,0.029967986,0.0218693502,-0.0402505249,0.0167887453,0.0275414288,0.0329101868,0.0427680761,-0.0145441797,0.0070635574,0.0009668315,0.0010502444,-0.0016767891,-0.0384306051,-0.048379492,-0.0046369997,0.0029971777,0.0196247846,-0.0167887453,-0.0318788998,-0.008546032,-0.0461652577,0.0046559572,0.0126105165,-0.0084171211,0.0292096864,0.0817749873,-0.0032170846,-0.0186389945,-0.0142939407,0.0627871752,0.0228551384,-0.0128228404,0.0083488747,0.0244475678,-0.0011023775,-0.0136038885,0.0356400646,-0.0350637548,0.0051602265,-0.0126863457,0.0365500227,-0.0265101418,-0.0185176674,-0.0449519791,-0.0003004761,-0.0030313011,0.0025440939,0.0200797636,-0.0091071734,0.0006270187,-0.0439813547,-0.0554165095,0.0213992037,0.050654389,0.0431623906,-0.0194579586,0.0267224647,0.0003260687,-0.0227641426,-0.041858118,-0.0237954296,0.0163185988,0.0154313892,0.0186238289,0.0094332425,-0.0278447475,0.0071886769,0.0173043888,-0.0573880859,0.0018881651,0.0153783085,-0.0472572073,0.0206257384,0.0058313212,0.040917825,0.0248418823,0.0097138127,-0.0394922234,-0.0043526376,-0.0308172815,0.0275262613,-0.0049289451,-0.0120645408,0.0030426756,-0.0105403597,-0.0519889966,0.0125953499,-0.0066389097,0.0124588562,-0.0008137499,0.0166219193,0.0409784913,0.0074351239,-0.0639397874,-0.0095621534,0.0235072765,0.0112910755,-0.0036834385,0.0037649556,-0.0027924369,-0.0047772853,0.0168190766,-0.0374599807,0.0008023754,-0.0044133016,0.0053308434,0.0143242721,-0.0253726915,0.002310917,0.0105100274,-0.0006649336,-0.0010132773,-0.0011620936,0.0280874036,-0.0031317759,-0.0127015123,-0.0161669403,0.0125119369,-0.0207167342,-0.0323945433,0.0604516156,0.0083337082,-0.0157422926,-0.056023147,-0.0456496142,-0.0963950008,-0.0136569692,0.0074464986,0.0180475209,-0.0254788548,0.001302379,-0.0002495278,0.0230067987,-0.0415851288,0.0194731243,-0.0202920865,0.0351244211,0.0186541602,-0.0455586165,-0.0727360621,-0.000255926,0.0271926112,-0.0057630739,0.0195792858,-0.0345177799,-0.025676012,-0.0581160523,-0.0035905468,0.01089676,0.0098503074,-0.0279812422,-0.0243869033,0.0217176899,0.0086976923,-0.0404325165,0.0216266941,0.0065706628,0.011397237,0.0110939173,-0.0183963384,0.0132399043,-0.0370656662,-0.0294978395,-0.0178200323,-0.0355187356,0.0367926769,0.0218845159,0.0020208675,-0.0249632113,0.0104569467,-0.0465292409,0.0421007723,-0.0196096189,-0.0247812197,0.0309537742,0.0164095946,-0.0136493864,-0.014157447,-0.0518979989,0.0006241751,0.0486828089,0.0490164608,-0.0200645979,0.0474391989,0.0639397874,0.0077346521,0.0002995282,-0.0088190204,0.0370959975,0.0461652577,0.0301954746,0.0463775806,-0.0470752157,-0.0400381982,0.0213688724,-0.0111545818,-0.0164854247,-0.0294675082,-0.0148399156,0.0087280245,-0.0167432465,0.0609369278,0.0525653027,0.0102597885,0.0448306501,0.0025440939,-0.0636971369,-0.0105479425,0.0031696907,0.0232949518,0.0128683383,0.0108436793,-0.0079393927,-0.0282087307,-0.0205499083,-0.0118673826,0.0355793983,-0.0156209646,0.0384306051,-0.0402808562,-0.0350030921,0.065274395,0.0009952678,0.079591088,-0.0167432465,0.0104645295,-0.0178806949,-0.0152266482,-0.0204892457,0.0481671654,0.0284968857,-0.0410998166,0.0082502952,-0.018411506,-0.0187148247,0.0056076227,0.034184128,0.0035090297,0.0058426955,0.0253271945,0.0177745335,0.0039734878,0.0692782179,0.0200645979,-0.0173043888,-0.0018644682,-0.0094332425,0.030134812,-0.0174863804,-0.0297859944,-0.0067526544,-0.0059791896,0.0255243517,0.0028038113,0.0599663034,-0.0309992731,-0.0372173265,0.030589791,-0.0225214865,-0.054870531,0.0362770334,0.0143166892,0.0486221462,-0.0276930872,-0.0067905695,-0.0080303885,-0.0778318346,-0.0299528204,-0.0323338807,-0.0391585715,0.0517463386,0.0127470102,0.0314239189,-0.0307414513,0.0410391539,0.0185783319,-0.0279812422,-0.0065896204,-0.0300286487,0.0157726239,0.0434657112,0.0352154151,0.0266466346,-0.0058768191,0.009660732,-0.0034521571,-0.0222484991,0.055932153,0.0308931097,0.0416761264,0.0131716579,0.0017289222,-0.0058995681,0.0306049567,-0.0327585265,0.0346997716,0.0690355599,-0.0196399502,-0.005531793,-0.0471965447,-0.053505592,0.0024549938,0.0071204295,-0.039674215,0.0586013645,-0.0096531492,0.0142332762,0.0545065477,0.0050843963,0.0369140059,-0.0147034219,-0.0030730076,-0.0227186456,-0.0403718501,-0.0222181678,0.003920407,0.0323338807,0.0379756242,-0.0103735337,0.021550864,-0.0177896991,0.0019137576,-0.0315755792,0.0031621079,-0.0265859701,-0.0129138362,-0.0406448394,0.0126180993,-0.003160212,0.0097896429,-0.0417671204,-0.026919622,-0.0181385167,-0.0221726689,-0.0080607207,-0.0265708044,-0.0059602321,0.0079469755,-0.0451339707,-0.0082351295,-0.0229006372,-0.0508363806,-0.0427377447,0.0129820826,0.0422221012,0.0294068437,-0.0040720669,0.0116095608,0.0104341973,-0.0090161776,0.0080531379,-0.0154238064,-0.0131868236,0.01725889,0.0032265633,-0.0159394499,-0.0014862665,0.003581068,0.0059185256,0.021839017,0.0105934404,-0.0002829404,0.0042388928,-0.011435152,-0.0024929086,0.0119811278,0.0043260972,0.0027583134,-0.0016682583,0.0196702816,0.006297675,-0.0163337663,-0.0162427686,0.0130882449,-0.0002954997,-0.030013483,-0.0011924255,0.0195641201,0.0220968388,0.000248106,-0.0410694852,-0.0048606982,0.022991633,0.0190029796,-0.0480155088,-0.0093194973,-0.008174466,0.0412514769,-0.029558504,0.0020417208,-0.0111015011,0.0055014607,0.0223546606,-0.0282542296,-0.0037099789,0.0356097333,-0.0101839583,0.0022862721,0.0130503299,0.0143546043,0.0053460095,-0.0052815541,-0.0041782288,0.0478638485,0.0128304232,-0.0039924453,-0.003581068,-0.0320912227,-0.0155906323,0.0400988646,0.0256001819,0.0111621646,0.0370959975,-0.0171830598,0.0098503074,-0.0280570723,-0.0115413144,-0.0318485685,-0.0117536383,0.013747965,-0.0343964547,-0.0147413369,0.0278295819,-0.0226731468,-0.0299831517,-0.0169707369,-0.00656308,-0.018699659,-0.0112531604,0.0396135524,0.0049024047,-0.0471965447,-0.0340628028,0.00522089,-0.0206560716,0.0101460433,0.0294978395,0.0314542502,-0.0081820488,0.0363680311,0.036701683,0.0495624393,0.0009649358,-0.019897772,0.0123906098,0.0192456339,-0.0082730446,-0.0044436334,0.0201555938,-0.0308931097,-0.0239774212,0.0515340157,-0.0027867497,-0.0212778766,0.0030881737,-0.0070142681,0.0699455217,0.0340324678,0.0175167117,0.0130351642,-0.0294220094,-0.0021004889,-0.0219300129,0.0239774212,-0.0325765349,0.0023639977,-0.0346997716,0.0049668602,0.0131640751,0.0032872271,0.0222788323,0.0086749429,0.0331831761,0.016591588,0.000669199,0.0120038772,0.0379149616,0.0132702366,0.0193669628,0.0012673076,0.0205499083,-0.0059981467,0.0034635318,0.061058253,-0.0463472493,0.0277234204,-0.027905412,0.0131640751,-0.0014398206,-0.0096303998,-0.0159091186,0.0300893132,0.0381879508,0.0337898135,0.0202769209,-0.0003049785,0.006502416,-0.0256153475,0.004500506,-0.0099868011,0.0205499083,0.0212475453,-0.0270561166,0.0018189703,0.0177138709,0.0104190316,-0.0515036844,-0.0212627109,-0.0240077544,-0.0003661164,0.0260096639,-0.014407685,0.0212627109,-0.0201404281,-0.0355187356,0.0072493404,-0.0380059592,0.0222484991,0.0015061719,0.0134673947,-0.0135128926,0.0403415188,-0.0434353799,0.0169555712,-0.0680649355,0.0062104706,-0.0386125967,-0.0359130502,0.0319092311,-0.031332925,0.0102067078,0.050442066,0.0394315608,-0.0055052526,0.009744145,0.0147868348,0.0059791896,-0.0027810624,-0.0037971833,-0.0255698506,-0.012716678,0.0061763474,-0.0293613467,0.0070673488,-0.010608606,0.0175015461,-0.0453462936,-0.0068095271,-0.0023867469,-0.0297859944,0.0205499083,0.0591473393,-0.0142863579,0.006191513,-0.030134812,0.015605798,0.0013099619,-0.0020606781,-0.0223546606,-0.0200797636,-0.0023222915,0.0271167811,0.0052284733,0.0135356411,-0.0129972491,0.0165460892,-0.0188513193,0.0013488247,-0.0055052526,0.0285120513,-0.0405235104,-0.010692019,-0.0261916555,-0.0237650983,-0.0073137959,-0.018911982,-0.0003566376,0.0022142339,0.0371869951,-0.0056076227,-0.0047317874,0.0068398588,0.0177593678,0.0019450375,0.0040076114,-0.0044095102,-0.0282542296,-0.0326978639,0.0179565251,-0.0040796497,-0.001948829,0.002805707,-0.0009620921,-0.0241594128,-0.0341234654,-0.0113441562,-0.0359433852,0.0315452479,0.0305291265,0.0019431418,0.0101991249,-0.1130775809,-0.0422827639,0.0470145531,-0.0024360362,-0.0310296044,-0.0171375629,0.0233252849,0.0113896541,0.0317575708,-0.0196399502,0.0240987502,-0.0372779891,-0.0450126417,0.0082047973,-0.0076853628,0.0118446341,0.0051412689,0.0200797636,0.0248267166,0.017213393,0.0121176215,0.0141043654,-0.0396438837,0.0582677126,0.0076284902,-0.0296798311,-0.0334561616,0.013004832,0.0136797177,0.0000270292,0.0179413594,0.0165612549,0.0163944289,0.0134825604,0.0059716064,0.012549852,-0.0077611925,0.0173195545,0.0056493292,-0.014157447,-0.0259641651,-0.0615738966,0.0329708494,-0.0319395624,0.0453159623,-0.0043488462,-0.0102142906,0.0373083204,-0.0074047921,0.0076512392,0.0195186213,0.0142560257,-0.0128304232,0.0020189716,-0.0394618921,0.02080773,-0.0608762614,0.0028000199,0.0036303576,0.0113820713,-0.0189271495,0.0149081629,0.0308021139,-0.0680042729,-0.034184128,-0.0051412689,0.0214447025,0.0185631644,-0.0054862951,-0.0180323552,0.0339718051,0.0404628478,0.0464989096,-0.0037099789,0.0226428155,0.003920407,-0.0008947931,-0.0441633463,-0.0254030246,-0.0200645979,0.0022085465,-0.0192911327,-0.0435567088,-0.0170617327,-0.0060777683,-0.0155603001,-0.0033725358,0.0199129377,-0.0032625825,0.0066957823,0.0394315608,-0.016060777,-0.0070521827,-0.0092588337,-0.0018654161,0.0256456807,0.0137176327,0.0072152172,0.0275110956,-0.0055431672,0.0426770821,0.0025118662,0.0063014664,-0.012094873,-0.0110029215,-0.0089327646,0.0111924969,0.0014322377,-0.0081365509,0.0164702591,-0.0137782972,0.0181688499,0.0189271495,0.0170162339,-0.0115564801,-0.0008924234,0.0137555478,-0.0119811278,0.0008848404,-0.0120721236,0.031211596,-0.0122541152,-0.0219451804,0.0524136424,-0.0176532064,0.0208683945,0.03773297,-0.0043640123,0.0436477028,0.0035431532,0.0239015911,0.0523833111,-0.0064265858,0.0339414738,-0.0047962428,-0.0208532289,0.0208683945,-0.0060815597,-0.0142711913,0.0276324246,-0.0036474194,0.023203956,-0.0025099705,-0.0079469755,0.0312419292,0.0084853685,0.0081365509,0.0132399043,-0.0217480212,0.0221120063,0.0020891144,-0.0290580261,-0.0093953274,0.0306049567,-0.0005786771,0.0413728058,-0.043101728,-0.0220210105,-0.0304229651,0.0005218047,0.0044019269,0.0243717376,0.0104645295,-0.0014237068,0.013376398,-0.0153783085,-0.0174712148,-0.0244324021,0.0019298715,0.0053839246,0.013747965,-0.0047166212,-0.0051374771,0.0188058205,0.0597539805,0.0071355957,-0.0142484428,0.0057668658,-0.0165157579,0.0130958278,-0.0134522282,-0.0031658993,0.0244930647,0.0340021364,0.0171223972,-0.0143091064,-0.0148778306,0.0098958053,-0.0089100162,-0.0053687585,0.0252968632,-0.0024948046,-0.0076284902,0.0114427358,-0.0200494323,0.0060095214,0.022415325,-0.0043374714,-0.025721509,-0.0050806049,-0.0227641426,0.01824468,0.0099109709,-0.012345111,-0.0184873361,0.0429500677,-0.0296040028,0.0245233979,-0.0348514318,0.0257973392,0.017380219,0.0155451344,0.0162882674,-0.0316665769,0.0036986044,0.0092209186,0.0180323552,0.0072493404,-0.0255395174,-0.040705502,-0.0378239639,-0.03327417,-0.0217025243,-0.0003109027,-0.0225973167,0.009001012,-0.0049061961,0.0044322591,-0.0181840155,0.0065441225,0.0263584815,0.0175773762,0.0208987258,0.011184914,0.0464685783,0.0084019555,-0.0042502671,0.0269044563,-0.0102218734,0.0198067762,0.0015222857,-0.0204285812,0.0212020464,0.0043753865,-0.0176835377,-0.0138996253,0.0240077544,0.0299831517,0.0350030921,-0.0110105053,0.0214295369,0.0114958165,0.0245233979,0.0010673061,0.0334561616,0.0315755792,0.0170617327,0.012633265,-0.0264798086,-0.013042747,-0.0156816281,0.0116323102,-0.0037877047,-0.0096683148,0.0070104762,0.0093194973,-0.0229006372,-0.0259793308,0.0082199639,-0.0156664625,-0.0190333109,0.0390979089,0.0262826513,-0.0083640404,-0.00689294,0.032364212,-0.0658203736,0.0042351014,-0.0174712148,-0.0128304232,-0.019321464,0.0015857932,-0.010320453,-0.0063507562,0.0446789898,-0.0384306051,-0.0041554798,-0.0073213791,0.0263584815,-0.0298618246,-0.0000622042,0.0199736021,-0.0237954296,0.016182106,-0.0146200089,0.0143394386,-0.0071128467,-0.0008222807,0.0029649499,-0.0373083204,0.0028625797,-0.0214598682,0.0374296494,0.0130199976,0.0308627784,0.0089630969,-0.0049024047,-0.0211868808,0.0087356074,0.0132474871,-0.0048265746,-0.0254181903,0.0129290018,0.0350940898,-0.0095924856,0.0234314464,0.0288760345,0.0288153701,0.0237499326,0.03773297,-0.0037118748,0.0096758986,0.0236286037,0.0370959975,-0.0105403597,0.0104493629,0.0235679392,-0.0012009564,-0.016182106,0.0250542071,0.0074010007,-0.0200039335,-0.0023886426,0.0091602551,-0.0373083204,0.0043981355,0.0237499326,0.0020057014,0.0330315158,-0.0106237726,0.0085687814,0.0173953846,-0.0065062074,-0.0038976581,0.0046369997,-0.0097138127,0.0301499777,0.0352154151,-0.0150749888,0.0416761264,0.0681862682,0.0050199409,0.0056417463,0.0158029553,-0.0062294281,0.0024701597,0.0042351014,-0.0040910244,-0.0083412919,0.0076057413,-0.0106465211,-0.0007061661,-0.0097062299,-0.0151811503,0.0119432127,-0.0136342198,-0.0224001594,0.0257973392,0.0146275917,-0.0079697249,0.0305139609,0.0268589593,-0.0104948618,-0.0135204755,-0.0299831517,-0.0125119369,-0.0010066422,-0.0161517728,-0.0036587939,0.0002039114,-0.0125422692,-0.022005843,0.0148550821,0.0391585715,0.0021327166,-0.0111318324,-0.0315755792,0.0185025018,0.0233707819,0.0047621191,-0.0135583906,-0.0374903157,-0.0164854247,0.0145820938,-0.0295888353,0.0380969532,-0.0003568746,-0.0327585265,0.0052891369,-0.0464685783,-0.0188058205,-0.0150446566,0.000071209,-0.0169555712,0.0112304119,0.0145820938,0.0315149166,0.0122389495,0.0212627109,0.0385519341,-0.0325158723,-0.0003981071,-0.0239015911,0.0058957767,-0.0252058655,-0.0276172571,0.0288608689,-0.0257518422,-0.0100853797,-0.0277689174,-0.0175015461,0.0182143468,0.0128910867,0.0129441675,0.0096910642,0.0197916105,-0.0021687357,0.0333348326,0.0152114825,-0.0157119595,-0.0371869951,0.0109119257,-0.0270257853,0.0234162807,-0.0135204755,-0.0133157345,0.0234617777,0.0217783544,-0.0088417688,0.0223091636,0.0174408816,0.0005175392,0.0017801074,-0.000737446,-0.0075829923,-0.0142939407,-0.0447699875,-0.004026569,0.0059791896,-0.0156816281,0.0193972941,0.0149081629,-0.0056303716,0.0338808112,0.0272077769,-0.0050388984,0.0092133358,-0.0369443372,-0.0298163258,0.0153707257,-0.0273442697,0.0202314239,0.0224911552,0.0120872902,0.0379756242,0.0171982273,-0.0218996815,0.0063469647,-0.0126408478,-0.0249025468,0.0250238739,0.0248418823,-0.0040303604,-0.009948886,0.0001287924,0.0053763418,0.0424344242,-0.0252816956,-0.0171527285,-0.013292985,0.0117308889,-0.0084702028,0.0237650983,0.008212381,0.0098351408,0.0099943839,0.0047279955,-0.0065706628,0.0336684845,-0.0095090726,-0.055810824,0.0257518422,-0.0093953274,0.0045118802,0.0240229201,-0.0074919965,0.0258125067,0.0097062299,0.0162124373,0.0095014898,-0.0181840155,-0.0252816956,0.0414031371,0.0264343116,-0.0013630429,-0.0365196913,0.0074616643,-0.0011327094,-0.0122010345,0.0057820315,-0.012633265,0.0055166269,0.00912234,-0.0225063208,0.0147640863,-0.0326371975,0.0029289308,-0.0239319243,-0.0036796471,0.0037327281,0.0062332195,-0.0319092311,0.0119811278,-0.0007568774,0.0252361987,0.009865473,-0.0350940898,0.02080773,-0.0275110956,-0.0112000797,0.0001379157,-0.0026445684,0.0239167586,0.0096758986,0.0126711801,0.0175167117,-0.0211868808,0.0074578729,-0.0135583906,-0.012633265,-0.0091602551,0.0244778991,-0.0145593453,0.0360040478,0.0299224872,0.0278144162,0.0210048892,0.0300438162,-0.0550525226,0.0168797411,-0.0187148247,-0.0161517728,-0.0443150066,-0.0097213965,0.0000554506,0.0284968857,-0.0114654843,0.0069915191,0.0049213618,-0.0001490532,0.0051678093,0.0075147455,-0.0159546155,0.0237044338,0.0066389097,-0.008546032,0.0012464543,0.0497747622,-0.0093119144,-0.0328495242,0.0153858913,-0.0112228282,-0.0017156521,-0.0069839358,-0.0060171043,0.0046787062,0.0221423376,0.0024189746,0.0081896316,-0.0086370278,-0.0225518197,-0.0168797411,-0.0106996018,0.0202465896,0.0042161439,-0.0192153025,0.0251906998,-0.0246143937,0.0195944514,0.0024208704,-0.0101157119,-0.0307414513,0.0188209862,-0.0061953049,0.0584497042,0.0089706797,0.0334864929,0.0140133696,-0.0011251265,0.0173953846,-0.0224759895,-0.0096152341,-0.0106844362,-0.0015715752,-0.0271016136,0.0449519791,0.0331225097,-0.0078787291,0.0316665769,0.0027829581,-0.0030313011,-0.0138920415,0.0199736021,-0.0049365279,-0.0025099705,-0.0020151802,0.0046256254,-0.0354884043,-0.0426164158,0.0283300597,0.0151432352,0.0060095214,0.0117384717,0.0068891486,0.0016891116,-0.0168949068,0.0156664625,0.0375509784,0.0106389383,-0.0047848681,-0.0059753978,-0.0125726014,-0.0475301966,-0.025099704,0.0205044113,0.0431320593,-0.0000475714,0.0167280808,-0.0034047635,0.0229612999,0.0200949293,0.0000492895,0.0021402996,0.0028341433,0.0016284476,0.0200645979,0.0111697474,0.0436780341,-0.0035677978,-0.0165005904,-0.0089251818,0.0069081062,-0.0209442247,-0.0189271495,0.0182143468,0.0105403597,-0.0135963056,0.0095849019,0.0147565026,-0.0169555712,0.0252816956,-0.0038635347,0.0029004945,0.012178286,-0.0026900666,0.0108057642,0.0023962255,0.0459225997,0.0189423151,0.0239015911,0.0337291509,0.0179413594,-0.0138617102,0.0183205102,0.0482884943,0.0237195995,0.0096152341,0.0023279786,0.001639822,-0.0153328106,0.0134825604,0.0198067762,0.0512610264,-0.015317644,0.0154617215,-0.0061498065,0.0097972257,0.0419187807,0.009744145,-0.0362770334,-0.0089630969,0.0414638035,-0.0237195995,-0.0046332083,-0.00778015,0.0309689399,-0.0049365279,-0.0125650186,-0.0148095842,0.0013488247,-0.0074047921,0.0360950418,-0.0163792633,-0.0162124373,-0.0129365847,-0.0161214415,-0.0006554549,0.0086597772,-0.0422827639,0.0024720554,0.0269499552,-0.0065517053,0.0066995737,0.0110863345,-0.0282997265,0.0014218111,0.0213385411,-0.0194731243,-0.0099033881,-0.0127242608,0.01824468,0.0096683148,0.027950909,-0.0221726689,0.0178048667,-0.0244324021,0.0212020464,0.0223546606,-0.0233101174,0.0213688724,0.0224911552,0.0246598907,0.0208532289,0.0205954071,0.0231129602,0.0056531206,0.0199736021,0.0251148697,0.0077725672],"27":[-0.0297793932,-0.0027033722,0.0854619369,-0.0102059022,0.007091064,0.0049029863,0.0023822745,-0.0004066595,-0.0273644328,0.0033628719,0.013812962,-0.0382086858,0.0028033545,-0.0285488404,0.0449767299,0.0502065793,-0.0219346154,0.010213594,-0.0197657645,0.0445152707,-0.0233651344,0.0035993687,0.0372857675,0.0146666588,-0.0326096676,-0.0336248726,-0.0344554968,0.0696493238,0.036301326,-0.0419003442,-0.0076140496,-0.0347323716,-0.0432847179,0.032548137,0.0268875919,0.0281950552,0.0574053191,-0.0232882239,0.0019381216,-0.0473455451,0.024180375,-0.000886383,0.0116594937,0.0448844358,0.0082985451,-0.0267491546,-0.0450690202,-0.0237342995,0.0056528547,0.0439307578,-0.0191966332,0.0206886791,-0.0251955818,-0.033224944,0.0093906606,-0.0221961085,0.0031340658,0.0279027987,-0.0065565426,-0.0200734027,0.001119996,-0.0280104727,0.0320251547,0.0274567232,-0.0177353509,0.013282286,-0.0139283268,0.0252724905,0.0002139048,0.0125208814,0.0554364324,0.0193965994,0.0211039912,-0.045868881,0.0070526092,-0.0592511483,-0.0508218557,0.0405467376,0.0053413711,-0.0247187428,0.0171508379,0.0010277044,-0.0644809976,0.008306236,0.0171662197,-0.0187659394,-0.0341478586,-0.0246879775,-0.0022476828,-0.0078755422,-0.0250571445,0.0423002727,-0.0012488195,0.0108288703,0.0255339835,0.0368550755,0.0090138037,0.0190581959,0.0054990356,-0.0051798611,0.0230421126,-0.0128746657,-0.0307330713,-0.0477147102,0.0594972596,-0.0060989303,0.0285180751,0.0294563733,0.0019515809,0.0173508041,-0.0784477815,-0.029687101,-0.0250879079,-0.0183352455,-0.0148281688,0.0057951375,-0.0262261704,-0.0467610322,0.0533752553,-0.0241649933,-0.049960468,-0.0119748227,0.023657389,0.0319328606,0.0398699306,-0.048945263,-0.0161048677,-0.0420234017,-0.0040300624,-0.0275028702,0.0660807192,-0.0305023436,0.0637426674,-0.0443306863,-0.0536828935,-0.0185044482,-0.0633734986,-0.0321789719,-0.000005787,-0.0081524169,0.0407928452,0.0207194444,0.0225652736,-0.0297178663,-0.0005806674,-0.0180122256,-0.0161356311,0.0643579438,-0.0234112795,-0.022119198,-0.0145051489,-0.0119978962,-0.0211193729,-0.0220115241,0.0277182162,0.0278720353,0.066203773,0.0137206707,-0.0367012545,-0.0343632065,0.0136206886,0.0186121203,-0.0087369299,-0.0137668168,-0.0112595642,0.0121901697,-0.0267337728,-0.0537751839,-0.0767250061,0.0071179825,-0.0746330693,-0.0850312412,-0.0190889593,0.0067680441,0.019950347,-0.0040685171,0.0092445323,-0.0441153422,0.0080293613,-0.0402083322,-0.052698452,0.0039839167,-0.0375318788,-0.003028315,-0.0249648523,0.0178122614,-0.0219653789,0.0073410203,0.0113749281,0.0233958978,-0.0164740346,0.0455920063,0.0290102977,0.051590953,0.0086830929,-0.0450382568,0.0318405703,0.0199657287,-0.0094675701,0.0338709839,0.0298101567,-0.0055836365,0.0235189535,-0.0375318788,-0.0026687628,-0.015666483,0.0551903211,0.003295576,-0.0123439888,-0.0390700735,0.011690258,-0.0067603528,0.0284411665,-0.0108211795,-0.0286103673,-0.0161510147,-0.0397161134,-0.0096675353,-0.0155741917,-0.014182128,-0.0381471552,0.0430078432,-0.01058276,-0.0222268719,0.0043723104,0.0179814622,0.0528215058,-0.0114056924,0.0590665638,0.0193196889,0.0188274682,-0.0436846465,0.0024495705,-0.0137206707,0.0112441825,-0.028994916,0.0224575996,-0.0346708447,-0.0022938284,-0.0036474373,0.0036301326,0.006560388,0.0268722102,0.0208886452,-0.0104520135,-0.0029840921,-0.0387931988,-0.0863233209,0.0318098068,0.0447921455,0.0177045874,0.0142128924,0.0016420197,0.0061719944,-0.0070795277,-0.0203656591,-0.0379010476,0.0090445681,-0.0182583369,-0.0214577764,0.0131976856,-0.0490067899,-0.0357168131,0.0091830054,-0.0425771475,0.0343632065,0.0061758403,-0.0199657287,-0.028364256,0.003693583,0.0102289757,0.0460534617,0.0433770083,-0.0505757481,-0.0214885399,-0.0189659055,0.0367320217,0.0229036752,0.027041411,-0.0217654146,-0.0179506987,-0.0213962477,0.0102443574,0.000710933,-0.00119306,0.0035493777,0.0145128397,0.0134822512,0.0333479978,-0.0607585758,0.0379318111,0.0278720353,0.0306407809,-0.0193196889,0.0022995968,0.0267953016,0.0390085429,-0.0029937057,-0.0664498881,-0.0408543758,-0.0110365264,-0.0278105084,0.0291179717,-0.0289180055,-0.0024053475,0.0196580905,0.0033551808,0.0059912573,0.0021784641,0.0257339496,0.0035378411,-0.0089907311,0.0061335396,-0.0079678334,-0.019212015,-0.0040300624,0.0605739914,-0.0040339078,-0.0336863995,-0.0343939699,-0.0423002727,-0.0849081874,0.0107673425,0.0273029041,-0.0031052248,-0.0283181109,0.0000234785,-0.0090599498,-0.0050452692,-0.0150588974,0.0168739632,-0.0369166024,0.0291179717,0.0700184926,-0.0094060432,-0.0391931273,-0.011590275,-0.0255801305,-0.0436846465,0.0298716854,-0.0219807606,-0.0377472267,-0.0688494667,0.033224944,-0.0056451638,0.0472840145,-0.0173508041,-0.0139590902,-0.0346400775,0.0008181258,-0.0537444204,0.0188889951,-0.0238265917,0.0077986326,0.0309945643,-0.0110134529,0.0084831277,-0.0123132253,-0.0399622247,0.0062835137,-0.0451305471,0.0239496455,0.0380856283,-0.0027745136,-0.0125670275,0.0167970546,-0.0365474373,0.0142205833,-0.0364243835,-0.0550980307,0.0144743845,-0.0203656591,-0.033809457,-0.0229036752,-0.054236643,0.0126285544,0.0858311057,0.001816989,0.001270931,0.060481701,0.0590665638,-0.0077178772,-0.0076102042,-0.0301177949,0.0125901001,0.0178122614,0.0196888559,0.028364256,-0.0542674065,-0.0114749111,0.0247033611,-0.0153357722,-0.0161048677,-0.0046184207,-0.0003963247,0.0099213375,-0.0148973875,0.0415311791,0.0556210168,0.0133207412,0.019950347,0.0026283853,-0.0459611714,-0.0017612296,0.0115210563,0.0103904856,-0.0072448836,0.0455612428,-0.011959441,-0.0156818647,-0.041746527,-0.0345477872,0.031594459,-0.0233805161,0.0267645381,-0.0360244513,-0.0398084037,0.0407313183,-0.0011161504,0.0410389565,-0.0136822164,0.0120517332,0.010475086,-0.0464226268,-0.0343016759,0.0327634849,0.0486068614,-0.0248571802,0.0216885041,-0.061220035,-0.0451613106,0.0062104496,0.0088292211,0.0215500668,-0.0403006263,0.0292717908,0.0591896214,-0.0094137341,0.0573437922,0.0257031843,0.0030187014,0.005687464,-0.0112518733,0.026087733,0.0021650048,-0.0192889255,-0.0231651682,0.0008234133,-0.0103597222,-0.0100367013,0.0709414035,-0.0585128143,-0.0303639062,0.0269798841,-0.0136283794,-0.0148743149,0.0410697199,-0.0033186488,0.0424233302,-0.0366089642,-0.0442691594,0.0055759451,-0.0691571012,-0.0129592661,0.004922214,-0.0742023736,0.0173200388,0.0213808659,0.0185044482,-0.0100443922,0.0336248726,0.0254416931,-0.0367627852,-0.0082985451,-0.0694032162,0.0087061655,0.0214885399,-0.0265030451,-0.0234881882,-0.0196734723,0.0167047624,-0.0162433051,-0.0015362691,0.0603586473,0.0162740685,-0.0048491498,0.0372242406,-0.002445725,-0.013812962,0.0016958565,-0.0114364559,0.0013238064,0.0052836887,-0.0203964226,-0.0256878026,-0.0070064636,-0.0942603946,0.0072102742,-0.0054682717,-0.0337786935,0.0311945304,-0.0079447608,0.0005984528,0.0682341903,0.017196985,0.0291794986,-0.018627502,-0.0003552262,-0.009367588,-0.0071218279,-0.0270875581,-0.0026841448,0.0288564786,0.0254878383,-0.0200734027,0.0339632742,-0.0239035003,0.0173200388,-0.002895646,-0.0011671031,-0.0375011154,-0.0236881543,-0.0400852785,-0.0019035124,-0.0068987901,0.0127823735,-0.0180737544,-0.0751868188,-0.0167355277,0.0025457074,0.008675402,-0.0280873831,-0.0309176557,-0.007594822,-0.0484530404,-0.0075563672,-0.0197503828,-0.0347016081,-0.0299024489,0.0149281519,0.0277643614,0.0392238908,-0.016566325,0.0187967047,-0.0031936707,-0.0209040269,-0.0057105371,-0.0280719995,-0.009736754,0.0246264506,0.0297332481,-0.0554671958,0.0179660805,-0.0143513298,0.0069180178,0.0475608893,-0.0021688505,-0.0079678334,0.0014699346,-0.0080755074,0.001466089,0.0090830224,-0.0063142772,-0.0029667874,0.0282719657,0.0346093141,0.0141744372,-0.0253340192,-0.0420541652,0.0034955409,0.0227190927,-0.020581007,-0.0012795833,0.0149512244,-0.0040300624,0.0216115955,-0.0486683883,-0.0193196889,0.0336248726,0.0238112099,-0.0353784114,0.0064911693,-0.0329788327,0.024764888,-0.027625924,-0.003280194,-0.0025956987,0.0150358249,0.022380691,-0.0605739914,-0.0023688155,0.032701958,-0.024503395,0.0091137867,-0.009367588,0.006721898,0.0232574604,0.0030110104,-0.0374395885,0.0131823039,0.0202579852,-0.0021246274,-0.0081754895,-0.023226697,0.0036397465,-0.000350179,0.0202733688,0.011113436,0.0147974053,-0.0151281161,0.0041761906,0.0021861552,0.0089753494,-0.049375955,-0.0105673773,0.0173661858,-0.0220884345,0.0021784641,0.0252571087,-0.0338402204,-0.0256570391,-0.0218423232,-0.0133130504,-0.0208424982,0.0182583369,0.0429155529,-0.0110903624,-0.0535906032,-0.0054375082,0.0127439192,-0.0093445154,0.0024880252,0.0386701412,0.0114364559,0.0164740346,0.018412156,0.0286565125,0.0361167453,-0.0194273628,-0.0201964583,0.0125593357,0.0326404311,0.007617895,0.0042261821,0.0294409916,-0.0431924276,0.0005643241,0.0309638008,0.0004705905,-0.0102751208,-0.0291333534,-0.0020592543,0.0381779186,0.0173354223,0.0180891361,-0.0133130504,-0.021273192,-0.0092752967,-0.0025245573,0.0019621558,-0.0396853499,-0.0104827769,-0.017935317,-0.0093829697,0.002830273,0.0097213723,0.0228729118,0.0093445154,0.0076601952,0.041592706,0.0016622085,-0.008144726,0.0348246619,-0.0070718369,0.0368550755,0.0028206592,0.0086446377,-0.024288049,0.0169662554,0.048422277,-0.0056951554,-0.0046530301,-0.0296563376,0.0239957925,-0.0048183859,0.0239804108,0.00505296,0.016566325,0.0247187428,0.0152357901,-0.0037608789,0.0307176895,0.0070872186,-0.0199195836,-0.0028706505,0.0121286428,0.0128208287,0.0078909239,-0.0270567946,-0.0627582222,0.0009282026,-0.006929554,-0.0430693701,-0.0156511012,-0.0137437433,-0.0109826894,0.0128515922,-0.0202887505,0.051067967,-0.0278258901,-0.0267953016,0.0238881186,-0.0368243121,0.0330711231,0.0089830402,-0.013174613,-0.0156049561,0.0294409916,-0.0236420073,0.0064411783,-0.0678650215,0.0229190569,-0.0301485602,-0.0190120507,0.0256570391,-0.0216269772,0.0044376832,0.0121363336,-0.0038300976,-0.0309484191,0.0060643214,0.0004797236,0.0513140783,-0.0219961423,0.0215500668,-0.0048337677,-0.0125977909,0.0014747414,-0.0205502417,0.0037128103,-0.0083216177,0.011797931,-0.0084292907,0.0005350023,0.0075486763,-0.0506680384,-0.000377578,0.0190120507,0.0019112033,0.0043453919,-0.0008536964,0.016089486,0.0124132074,-0.0351323001,-0.0139744729,-0.003878166,-0.0159510486,0.0191812515,0.0086369468,0.0313483477,-0.0117440941,0.0253032558,-0.027149085,0.0221345797,0.0005042385,0.039100837,0.0108442521,0.0110903624,-0.0094060432,-0.0492221378,-0.0058758925,-0.0251648184,0.0061489218,0.0066719069,0.0578667745,-0.0100136288,-0.0079293791,-0.0086600194,0.0424848571,-0.0030706155,0.0299793575,-0.0065219332,-0.0361475088,-0.0145743676,0.0312560573,-0.0165509433,-0.0032763486,-0.0184890646,-0.0201964583,-0.0245187767,-0.0273644328,-0.0064027235,-0.0208424982,0.0059758751,0.0197196193,-0.0057951375,0.0034070949,-0.0972752497,-0.0566054583,0.0538674779,0.0120748058,-0.0294563733,-0.0041992636,0.0007027614,0.0317482799,0.0297178663,-0.0072102742,-0.0087523116,-0.0412543043,-0.0158587582,-0.0036397465,-0.0268414468,0.0163817424,0.0054990356,0.0350092463,0.0078178598,0.0422079824,0.0107519608,0.0121286428,-0.0029398692,0.0514678992,0.0245341584,-0.0139590902,-0.0144128576,0.0213347208,0.0013372655,0.0088138394,0.0080908891,0.0101982113,-0.0068487991,0.033809457,-0.0212424286,0.022380691,0.0003434494,0.032548137,0.0090753315,-0.0158126112,-0.0373780616,-0.0534675457,0.0003706081,-0.0186121203,0.0545442812,-0.0002574068,-0.0170124006,0.0240111742,-0.0135053238,0.0062604407,0.0306253992,-0.0049452865,-0.0186121203,-0.0246264506,-0.0304100513,0.0166432355,-0.0328865424,-0.0247341245,-0.0115825841,-0.0130977035,-0.0217346493,0.02053486,0.0513756052,-0.0371627137,-0.0220269058,-0.002659149,-0.0181198996,0.016089486,-0.031594459,-0.0211962834,0.0123439888,0.0199195836,0.030533107,-0.0175969135,0.0263646077,0.0131130852,0.0082985451,-0.0387009047,0.0232113134,0.0082447082,-0.0228882935,-0.0181660447,-0.049960468,0.0301793236,0.0122055523,-0.0049683596,0.0171354562,0.0026322308,-0.0101520661,-0.0001042485,0.0365782008,0.0077755596,0.009898264,-0.0183352455,0.0036070598,0.0035359184,0.0340555683,0.0190889593,0.0050683422,-0.025610894,0.0142052015,-0.0055067264,0.0212116651,-0.003243662,-0.0142205833,-0.0027014494,0.0131438486,-0.0149050783,-0.0104366317,-0.0111441994,-0.0270567946,0.0026322308,0.0111980364,0.0017266202,0.0162279233,0.0072948746,0.0213193391,-0.0066603706,-0.0077870958,-0.042546384,0.0611892715,-0.0124439718,-0.0265953355,0.0247341245,-0.0019515809,0.0094598792,0.0384240299,-0.02318055,0.0195965637,0.005318298,0.0193043072,0.0284565482,-0.0099905562,0.048422277,0.0119748227,-0.02285753,-0.002711063,0.0225806553,-0.0033378762,0.0088522937,0.0028898779,0.013174613,0.0028937233,0.0166739989,-0.0223345459,0.0080524338,-0.0114902928,0.0326711945,-0.0099136466,0.023703536,0.0105904508,-0.0225652736,-0.0189659055,0.0318405703,0.0308099817,0.0840468034,-0.0471917242,-0.0027898953,-0.0410389565,0.0033051895,0.0157972295,0.0085369647,-0.0069641634,-0.0001406003,0.0365166739,-0.0246418323,0.0057374556,-0.0293948445,0.0295486636,0.0326404311,-0.0017035474,0.0168739632,0.0071487464,0.0153126996,0.0260108225,0.0020323358,0.0146820405,0.0078370869,-0.0037089649,0.002157314,-0.0344247334,0.0094829528,0.0349477194,0.0548519194,0.0301639419,-0.0467917956,-0.0097675184,-0.0139437085,-0.0273490511,0.0136591429,0.0168893468,-0.002674531,0.020581007,-0.0039281575,-0.0073717842,0.019258162,0.0234881882,0.0219346154,-0.0435615927,0.0093598971,-0.0093829697,0.0211039912,0.0062335222,-0.0313022025,-0.0086677112,0.0509449132,-0.0157433935,0.0029148734,-0.0254263096,0.0336248726,-0.0028629594,0.0249956176,-0.0018410233,-0.0194273628,0.0220422894,0.0235189535,0.0312406756,0.0352245905,-0.0112057272,-0.0417772904,-0.0137283616,-0.0362090357,-0.0288257152,0.0269798841,-0.0185659751,0.0441153422,-0.0163355973,-0.0343016759,-0.011482602,0.0127593009,0.0190428142,0.0048030037,0.0176584423,0.0106673604,0.0359936878,0.0241496116,0.0038954706,-0.0046299575,0.017304657,0.0099213375,0.0192889255,0.0024572613,0.0051452518,-0.0197657645,-0.0295948107,-0.0115748933,0.0554979593,0.0092906784,0.0153665356,0.0241496116,-0.0069372449,0.0141206011,0.0197042376,0.0361167453,0.0036608966,0.0353784114,0.0187197942,0.0251955818,-0.0114672203,0.010636596,-0.0290410612,0.0123132253,0.0124978088,-0.032701958,-0.0050029689,0.0054259715,-0.0316867493,-0.0351630636,0.0175046232,0.0285026934,-0.0184736829,0.0146282036,-0.0076102042,-0.0290410612,0.001289197,0.023703536,-0.0469456129,-0.0280258544,-0.0113672372,0.0190581959,-0.0330095962,0.0188582316,-0.0001470896,-0.0187813211,0.0173815675,0.0051606335,-0.0141975107,-0.0229805857,0.0246418323,-0.0173354223,-0.0109749986,0.0194427446,0.0054067443,-0.0025072526,-0.0164894164,-0.0058682016,0.0040646717,0.023965029,0.0111365085,-0.017089311,0.041008193,0.0040838993,-0.0033090352,0.0138360355,0.0078678513,0.0013295745,-0.0134053417,-0.0121978605,-0.0105750682,0.0300408863,-0.0032071299,0.0090984041,0.0242572855,0.0478992909,0.0028706505,-0.0261646416,0.0014978143,0.0163048338,0.0001618707,0.0191966332,-0.0060412483,-0.0086138742,0.0172431301,0.0549749732,-0.0107211964,0.0063027409,-0.0062219859,0.0019611944,-0.0120363506,0.0011699871,-0.0036839694,-0.017412331,-0.0073256386,-0.0065526972,-0.0244726315,0.0239804108,0.0188120864,-0.0148358596,0.0182737187,-0.0188582316,-0.0070526092,0.0195350368,-0.0071179825,0.0058028284,0.0147512592,-0.0115748933,0.0278566536,-0.004764549,-0.0027841271,0.0367320217,0.0700800195,0.0072410377,0.0009902109,0.0133515047,0.0149127692,-0.0009070525,-0.0076486589,-0.0009084945,0.0154357543,0.0423925668,-0.0021957688,-0.0085600372,-0.0195504185,-0.0125362631,0.0015372304,-0.0131284669,0.0050760331,0.0118363863,0.0001569436,0.0076909591,0.0141513646,0.0302562322,0.0031013791,-0.0199811123,0.0025553212,-0.0186890308,0.0088522937,-0.0148204779,-0.0049991235,0.0265030451,0.0067949621,-0.0075871311,0.0291333534,0.0154203726,-0.0221038163,-0.00629505,-0.0081677986,0.0006787271,0.0182891004,-0.0087600024,-0.0048491498,-0.0345170237,-0.0114210742,-0.0218115598,-0.005637473,0.0308407452,0.0083908364,-0.0018371778,-0.0104827769,-0.0589435101,-0.0066372976,-0.0147743318,0.0325173736,-0.0135899242,-0.0107442699,-0.0084369816,0.031009946,0.0162894521,0.0066488339,0.0307176895,-0.0120517332,0.0000431415,-0.0106212143,-0.0012728537,-0.0295948107,-0.0242726672,0.0215808302,-0.0195504185,-0.0073948572,-0.0252263453,0.0001692011,0.0093522063,0.0043030917,0.0134207234,0.0339940377,0.0041684997,0.0091291685,0.0200580209,0.0368243121,-0.0187813211,-0.0009796359,0.0142513467,-0.0408236086,0.0263338443,-0.0566054583,-0.0118210036,-0.002991783,0.0014901233,-0.0052836887,0.0287488047,0.0091753136,-0.0123209162,-0.0010748116,0.0098213544,-0.0042454093,-0.017196985,-0.0248264149,-0.0200734027,0.0054067443,-0.0160587225,0.0343939699,0.0477454737,-0.0235497169,0.027410578,0.00056144,-0.013120776,0.000633062,-0.0343632065,-0.0203041323,0.0065642335,0.0007657311,0.0157433935,0.0036551282,-0.015666483,0.0217192676,0.0327327214,-0.0089368941,-0.0148435505,-0.0056143999,-0.0222883988,0.0183198638,0.0296717193,-0.0151665714,-0.0023245923,0.0266876277,0.0157972295,0.0267183911,-0.0213654842,0.016566325,-0.0020727133,-0.0082216356,-0.0160741042,0.0362090357,0.0073141018,0.0113518555,0.0044338377,0.0031379112,-0.0228267666,0.011428765,0.0298101567,-0.0543596968,0.020796353,-0.0013632225,-0.0130515574,0.0240265559,-0.0201349314,0.0133207412,0.0178276431,-0.0130592482,-0.0124285901,0.0040877447,-0.0019708083,0.0297640115,0.0170431659,-0.0070064636,-0.0268568285,0.0104058674,-0.0152896261,-0.0240111742,0.0042838641,-0.0121132601,-0.0071102916,-0.0135822333,-0.0086677112,0.0238419734,-0.0147512592,0.0113287829,-0.0022111507,-0.0101136109,0.0261031147,-0.0173354223,-0.0141667463,0.0403621532,-0.020581007,0.0307330713,-0.004499211,-0.0078909239,0.0164432712,0.0033878675,0.0333787613,0.0050337329,-0.0192273967,0.0343016759,0.0377472267,0.009313751,-0.0004842901,-0.015343463,-0.0195811819,-0.0117902402,-0.0091214776,-0.0009219537,0.0089138215,0.0107827242,0.0302100871,0.0375318788,0.0307330713,0.0503296368,-0.0000553689,-0.0384855606,0.0100905383,-0.0458381139,-0.0184890646,-0.0146128219,0.0033686401,0.0208578799,0.0045453566,0.0048068492,0.0149973696,-0.0036243645,-0.0125285722,-0.0087292381,-0.0233036056,-0.0059451112,0.0163355973,-0.0079755243,0.0133668864,0.0307023078,0.055344142,0.0199042019,-0.0449459627,0.0160587225,-0.026303079,0.0038839343,-0.039900694,0.001647788,0.0205040965,0.0196427088,-0.0086984746,0.0003362391,-0.016089486,-0.0162894521,-0.0136822164,0.0159664303,0.0282719657,-0.0195965637,-0.0122593883,0.0024380339,-0.0323943198,0.0235343352,-0.0008508124,-0.0122516975,-0.0159664303,0.0122593883,-0.0248879436,0.0295486636,0.0209809355,-0.0010065542,0.0063104318,0.0139667811,-0.0150127523,-0.0388547257,0.0007114137,-0.0096982997,-0.0368243121,-0.0266261008,0.0283027291,0.0085292738,0.0209655538,0.0038474023,0.0133668864,0.0136899073,-0.0308715086,0.023442043,-0.0063142772,0.0145359123,0.0070487638,0.0224575996,-0.0308868922,-0.036301326,0.0197811462,-0.0101674479,0.0036397465,-0.0130054113,-0.0117671676,0.0062796678,0.0072410377,0.0025649348,0.0292871725,0.006087394,-0.0121132601,-0.0184736829,-0.0055913273,-0.0136668338,-0.0125285722,0.0045069018,0.0011603734,-0.0293179359,-0.0046107299,-0.0014680118,0.0360859782,0.0038897025,0.0203964226,0.016089486,0.0044684471,0.0116441119,0.0169662554,0.0108519429,0.0574360825,0.024180375,0.0140590733,0.004949132,0.0253955461,-0.0182737187,-0.0375626422,0.0410389565,0.017412331,-0.0128669748,0.0016112559,-0.0042184908,-0.0122670792,0.0459919348,0.0111672729,0.0037185787,-0.0037897201,0.0207655896,-0.0071102916,0.0140206181,0.021642359,-0.0108903982,0.0173661858,0.0209347904,0.0188274682,0.014551294,0.0011132663,0.0409466662,-0.0275797788,-0.0080370521,-0.0314867869,0.0396238193,-0.0277643614,0.0148973875,0.01555881,0.0283950213,-0.0335325822,0.028364256,-0.0161971599,0.0068180352,0.0212116651,-0.0007407355,-0.0116364211,-0.0220115241,0.0195658002,-0.0044223014,-0.0099674826,0.0123439888,0.0463610999,-0.0206886791,-0.0068411082,-0.002711063,-0.0195965637,-0.0094444975,0.0069680088,-0.0085369647,-0.0174430944,0.0083293086,-0.0055759451,-0.016350979,0.0356860496,-0.0295486636,0.01788917,0.025026381,0.0079063056,0.004441529,-0.0014516686,-0.0250571445,0.0383009762,-0.0026764537,-0.0050145052,0.0006542122,-0.0450997837,0.0177814979,0.0051452518,-0.0032686575,-0.0200887844,-0.0012853516,-0.0587896891,0.0061296942,-0.0033032668,-0.008144726,-0.0130515574,0.0227498561,0.0202733688,0.0089215124,0.0043415464,0.0300716497,-0.0070987553,0.019473508,0.0092137689,-0.004522284],"28":[0.0006947529,0.0116580054,0.0459958091,-0.0193337929,0.031857755,-0.0002238526,-0.0300904959,0.0069924472,-0.0138552953,-0.0278284065,0.0219728965,-0.035651464,0.0286295637,-0.0164708365,0.0516981594,0.0283232387,0.0137728229,-0.0040941453,-0.0114989523,0.0692293495,-0.0238461886,0.0245530903,-0.0173426829,-0.0005703086,0.0310565978,-0.0134900622,-0.01656509,0.0135607524,0.0289358888,-0.0510855094,-0.0034873872,-0.0411888696,-0.0291479602,0.0382198803,0.0203588009,-0.0055167875,0.0299255531,0.012629997,0.0229861233,0.0133958086,-0.0427676216,0.0092427544,0.0522165559,0.0454774126,0.0139495488,-0.0335778855,-0.0269094333,-0.0225619823,0.0505671129,0.0356043391,-0.0027598664,-0.0430503823,-0.0386440195,-0.0514153987,-0.0105858697,-0.0164001454,0.0026935942,0.0442285538,0.016553307,-0.0344968587,-0.0128538497,-0.0526878238,0.0272628851,0.0301140603,-0.0188036151,0.0249536689,-0.0098318402,0.0311744139,-0.0244588368,0.020123167,0.007734695,-0.0187918339,0.0167771596,0.0080115655,0.0291243959,-0.0570234954,0.0050690821,0.041400943,-0.0207593795,-0.0095019517,0.050095845,0.0507084951,-0.0209478866,0.0487291664,0.0323761478,-0.053111963,-0.0376779214,0.0116285514,0.022597326,0.0133015551,0.0208889786,0.0237048082,-0.0072869901,-0.0092427544,0.0441814251,-0.0045565777,-0.0042620348,0.0008519652,-0.0019631281,0.0129834488,-0.0328945443,-0.0237401538,-0.0379135534,0.0025669408,-0.022055367,0.0128420675,0.0200996026,-0.0304203853,0.016011348,0.0508027487,-0.0684753209,-0.0049895556,-0.0359813534,-0.016258765,-0.0085535245,-0.0473153628,-0.0226091091,-0.0062030721,-0.0111042652,-0.0437808484,-0.0303732567,0.0131955193,-0.0183559097,0.0258255154,0.0083061084,-0.0134311533,-0.0157757141,0.0054608244,-0.0125239613,0.0137021327,0.0223145653,-0.0169892311,0.0426969305,-0.0076522231,-0.0092839906,-0.0096079875,-0.048776295,-0.0297841728,-0.0040293462,-0.0085888691,0.0263439119,-0.0270272512,0.0071809543,-0.0127124693,-0.0188860875,0.0129834488,-0.0070336829,0.0053930795,-0.0122647639,-0.017766824,0.0419429019,-0.0377014838,-0.0214191545,0.0090306839,0.0466555841,-0.0279933512,0.028040478,-0.0057700942,-0.0323525853,-0.0215487536,0.0546671525,0.0373715945,0.0036523312,0.0111690648,-0.0110100117,-0.0129363211,-0.0426969305,-0.0290537048,-0.067391403,-0.0300904959,-0.0109216487,-0.0287473816,-0.0056080958,0.0082059633,0.0179317687,0.0362169892,0.0289594512,-0.0593798347,0.0150570301,-0.0245766547,-0.0447940752,0.0109628849,-0.0320698246,-0.0054961694,0.0152101927,0.0296192281,-0.0333422497,0.018615108,0.0336250104,0.0435687751,-0.0656477064,0.0328945443,-0.0075461874,0.0423434786,0.0254249386,-0.0291479602,-0.0047981027,0.0405762233,-0.0393744856,0.0212659929,0.034214098,-0.0030691363,0.0112515362,-0.0136078792,0.0067450311,0.03190488,-0.0152101927,-0.0147978319,-0.059097074,-0.0473153628,0.0120644746,-0.009219191,-0.0319284424,-0.0189685579,-0.0479515754,-0.024718035,-0.0073400075,-0.0387382731,0.0049129748,0.0263674743,-0.0055845324,0.0223734733,-0.010332563,0.0131601738,0.0145386346,-0.0056434409,0.0111985188,-0.0177432615,-0.0079526566,-0.0161880739,-0.0210185777,-0.0432624519,-0.0370417088,-0.0026906489,0.0174015909,0.0306324549,-0.0012709524,-0.021513408,-0.0124297077,-0.0192866642,-0.0079408754,-0.0089599928,-0.0287002549,0.026108278,0.0137374783,-0.0051309364,-0.0112161916,-0.0276634637,0.0068039396,0.0475745611,0.0098966397,-0.027380703,0.0062030721,-0.0303496942,0.0098907482,-0.0583430454,-0.012571088,0.0351095051,0.0313157961,0.0037730937,0.0415423214,-0.0747903213,-0.003142772,-0.0053017712,-0.0276634637,-0.0234573912,0.0563637167,-0.0557510704,0.0282996763,-0.0113929166,0.0605108812,0.0340255871,0.0257076994,-0.0631028563,-0.0138670765,0.0015772769,-0.0014241146,-0.0169067588,0.0140555846,-0.0217490438,0.0279933512,-0.0449118912,-0.00194251,-0.0047745393,0.0286766905,0.0020441273,0.0588143133,0.0019734369,-0.0021030358,-0.0164001454,0.0129481032,-0.0300433692,0.00245796,-0.0588614419,0.02344561,0.0025743044,0.0005592632,0.0008851012,-0.0219022054,-0.027734153,0.034214098,0.001581695,0.0059910011,-0.0384083875,-0.009672787,0.0337428264,-0.0382905677,0.0141498381,0.0236105546,0.0355100855,-0.0011995257,-0.0065329601,0.0142323095,-0.0268623065,0.0046920674,0.0072162994,0.0394451767,0.0143736908,0.022243876,-0.0659775957,-0.0297134817,-0.1088630334,0.0182027481,0.0199582223,-0.0014182237,-0.0269565601,0.0026008133,-0.0039026926,0.0467027128,-0.0275220834,-0.0302083138,-0.0224441644,-0.0228093974,0.0307267085,0.0290301424,-0.0864777789,0.026226094,-0.0097081317,-0.0264617279,0.0150216846,-0.0088068312,-0.0346382372,-0.0967043042,0.0383141339,0.004426979,0.0181909651,-0.0397750661,0.0028482291,-0.0202292018,0.0011479807,-0.0326589085,-0.0329181068,-0.0179906767,-0.0024005242,0.0065447418,-0.0072162994,0.0203116741,-0.0345911123,-0.0276163369,-0.00154635,-0.0341198407,0.017224865,0.0220671501,-0.0300198067,0.0360991694,-0.0062796534,-0.0252835564,-0.0146211069,-0.0123001086,0.0020573817,0.0194633901,-0.0015949495,-0.0050720279,-0.028040478,-0.0278755352,0.0053960248,0.0401992053,0.0628672242,0.0147389239,0.0411888696,0.0009749368,0.010697796,-0.0081293825,0.0007687568,0.0383376963,0.0202527661,-0.0224088188,0.029195087,-0.0057671489,0.0053518433,0.0112927724,0.025684135,-0.0074519338,-0.0094960611,0.0267916173,-0.0165768713,0.0224677268,0.0124650532,0.0514153987,-0.0084121432,-0.0068746298,-0.0129009765,-0.041400943,-0.0147271417,-0.0183441285,0.0155518623,0.0222674385,0.0012981975,-0.0209125411,-0.0369474553,-0.017707916,-0.0480458289,0.0200524759,0.0057111857,0.048776295,-0.0375836678,-0.0143147819,0.03251753,0.0088951942,0.054384388,-0.006585978,-0.0213249009,-0.0013725696,-0.0149156498,-0.0499544665,0.0472446717,0.0721512139,0.0187093616,-0.0397986285,-0.0321640782,0.0143854721,0.0054755514,0.0236576814,-0.0333186872,-0.0048039937,0.0133604631,0.0348974355,-0.0328709818,0.0596154705,0.0451710895,0.0174958445,0.0491533093,-0.0189567767,0.0089069754,0.0005272317,-0.0420607179,-0.0326589085,-0.0158464052,-0.0169067588,0.019887533,0.0493889451,-0.0028187749,-0.0311508514,-0.007734695,-0.0143501274,-0.062725842,-0.0046891221,-0.0192277562,0.0318106264,0.0062678717,-0.041754391,0.0301611871,-0.059709724,0.0061677271,0.045265343,-0.0618775599,0.0393744856,0.0108863031,0.0326589085,-0.0253306851,0.0088775214,0.0462314449,-0.0262732208,-0.0064504882,-0.0288651977,0.0126889059,0.0459722467,-0.0175783169,-0.0087832678,-0.0391152874,0.0076286597,0.0056257681,0.0142912185,0.0516981594,-0.0039056381,0.0844513252,0.0199110955,-0.0079938928,-0.0094901705,-0.0051898449,0.0075756419,0.0323290229,0.0397279374,-0.010845067,-0.0272393227,0.03190488,-0.0952904969,0.0015669679,0.0012392889,-0.0188978687,-0.0030779727,-0.0235163011,0.0001292307,0.0644695386,-0.0542430095,0.0121587282,-0.0327531621,-0.012088038,0.0036611676,-0.008883412,-0.0282054227,0.0079526566,0.0200406946,0.0046714493,-0.0012230892,0.0035080053,-0.033059489,-0.0179435499,-0.0224795099,-0.0214191545,-0.0111572826,-0.0064328155,-0.0448176377,-0.0152691007,-0.0206297804,-0.0092015183,-0.0121116014,-0.0311037246,-0.0073871342,-0.0422727875,-0.0134311533,-0.0239404421,0.019640116,0.0113222264,-0.0204530545,0.0091072647,-0.0157639328,-0.0241053868,-0.0252364296,0.0431917608,0.0127713773,0.0377014838,0.0081588365,0.0125357434,-0.0154576078,-0.0231039412,-0.0328002907,-0.0304675121,-0.004998392,0.0501429737,0.0108509585,-0.0377957374,0.0155754257,0.0324468389,0.0244352743,0.0376543552,0.0303496942,0.0044976692,0.033059489,-0.0085240696,-0.0229507778,-0.0062089632,0.0108038317,0.0050072283,-0.0274042655,0.0109746661,-0.0140438024,-0.0666373745,-0.0284881834,-0.0027583938,0.0248594154,0.0108038317,0.0009859821,0.0513211451,-0.0133368997,0.0247415993,0.0022503072,-0.0126771238,0.007434261,0.0007599205,-0.0136314426,0.0072280811,-0.0350859426,0.0140909292,-0.0104150344,0.0056522773,0.0125828702,0.046844095,0.023209976,-0.0573533811,0.0246944726,0.0229389966,-0.027498519,-0.0325882211,0.0294542834,-0.0139259854,0.0237637162,0.0227033626,0.0034638238,0.0226562358,0.031857755,0.0203588009,0.0095431879,0.004895302,-0.0035256778,0.0224795099,-0.0101911826,0.0345204212,0.0399871357,-0.0110983746,0.0065506329,0.0088303946,0.019274883,-0.0718213245,0.0034962236,0.0179906767,-0.0037937118,0.0073871342,0.0469854735,-0.0453831591,-0.0347560532,-0.0017967114,0.0077759312,-0.0215958804,0.0325646549,0.0095785335,-0.0460429378,-0.0205590893,-0.025919769,0.0045359596,-0.0032164077,-0.0275692102,0.0376307927,-0.0174958445,0.0071750637,0.0260847136,0.0240346957,0.0373715945,0.0392331071,0.0099025303,0.0111278286,0.0239404421,-0.0085653057,-0.0086065419,0.054761406,-0.0335543193,0.0090778107,0.0381491892,-0.0219846778,0.0058525661,-0.0003707558,-0.0190510303,0.022844743,-0.00749317,-0.0027053759,-0.0178139508,0.0051927902,-0.0229154322,0.0203941464,0.0280640423,-0.0167182516,0.0015389863,-0.0275220834,-0.0117876045,-0.0139966756,0.0044034156,0.0041913446,-0.0020382365,0.0207358152,0.0334836282,0.0079821106,0.0235869903,0.0152926641,0.0272393227,0.0344026051,-0.0392095409,0.0284646191,-0.0030117005,0.01251218,0.0530177094,0.0142087461,-0.0255191922,-0.0371359624,-0.0083002169,0.0098966397,-0.0006196445,-0.0230096858,0.0147860507,0.0278755352,0.0102559812,-0.0109334299,0.0211128313,-0.0088657392,-0.0269565601,0.0002383956,-0.0018953831,0.0350152515,0.0240229145,-0.0255427547,0.0233277921,0.0050867549,0.010697796,-0.0421078429,-0.0392566696,-0.0130070122,0.0163883641,0.0339077711,0.0143501274,0.0020500182,-0.0206415616,-0.0501429737,-0.0276163369,-0.0261554047,0.0354393944,-0.0068039396,0.0065741963,-0.0190156866,0.0041324361,-0.047739502,0.0127713773,-0.054148756,0.0013438517,-0.0384555124,-0.0397750661,0.0159877855,0.0275927726,0.0293364674,0.0239993501,-0.0040234551,-0.0468205288,0.0256605726,-0.0029881371,0.0158581864,0.0262025315,0.0347324908,0.0003267585,-0.0194044821,0.0093311174,-0.007404807,-0.0283703655,-0.0134547167,0.0456423573,-0.0048098844,-0.0120762568,-0.0088303946,-0.0249772333,0.0311979782,0.0240464769,0.040317025,-0.0512268916,0.0028717928,0.00625609,0.0043209433,-0.0000134615,-0.0142676551,-0.0619718134,-0.0182852186,-0.0127124693,0.0108509585,0.0267916173,-0.0045271236,0.0308445264,-0.0296899173,0.0219139867,-0.0157757141,-0.0060499101,-0.0127831595,0.0007168436,-0.0334600657,-0.0303732567,-0.0186033249,-0.0082295267,0.002396106,-0.0034255332,0.0231275037,0.0195576437,-0.0356279016,0.0014101239,0.0085417423,-0.0108097224,0.0429325625,0.0060675824,-0.0132662095,-0.0447705127,-0.019039249,0.0122412005,0.0310094692,0.0095962053,-0.0259668976,-0.0001008809,-0.0344968587,0.0005021956,0.0010529907,0.0177314784,0.0158346239,-0.0166946873,-0.0063385619,-0.0398457535,-0.0031368812,0.0178610776,-0.0048687933,0.027922662,0.0002262457,0.0074637155,0.0196047705,0.0044976692,0.0090071196,0.0066036503,-0.0785604641,-0.0505199879,-0.0095314067,-0.0045065056,0.0025271776,0.0314100496,0.0155872069,0.036688257,0.0226915795,0.0058555119,0.0065624146,-0.0051221,0.0602752455,0.0146564515,-0.0091720643,-0.0178375151,0.0540073738,0.0066036503,-0.0131955193,0.0250007957,-0.0093900254,-0.0077405856,-0.0077582584,0.0233867019,0.0420135893,-0.0172484294,0.0085122883,-0.0314100496,0.0076993499,-0.0363819301,-0.0476688147,0.0583901741,-0.0345675461,0.0375601016,0.0288180709,0.0129481032,0.0331066139,-0.0228093974,-0.0068216124,0.0162116382,0.0539602488,0.0098612942,0.0004576459,-0.0092427544,0.0324232765,0.0008549106,-0.0100439107,-0.0021398538,0.0052958801,-0.021336684,0.0065035061,0.0003968965,-0.0644224063,-0.0275456458,-0.0114989523,-0.006497615,0.0303261299,-0.0135725336,-0.0141616194,0.0134547167,0.0303261299,0.0322818942,-0.0017216029,-0.0155518623,-0.0260847136,0.0125946514,-0.0046449406,0.0278048441,-0.0287709441,0.0108686304,-0.0150923748,-0.0526878238,-0.0052192989,0.0029837189,0.0008652196,0.0003575014,0.0074754972,0.0180967115,-0.0002034186,0.0574476346,0.0039851647,-0.0033990243,0.0030131734,0.0229743421,0.0281347316,0.0141027113,0.0090247924,-0.03190488,-0.0013769878,0.0414951965,-0.0120114572,0.0396572463,0.0606522597,0.0196636803,-0.0184619445,0.0009977638,0.0070749191,0.0022179077,0.018308783,-0.0140320212,-0.0135018434,0.019581208,-0.0214427188,0.0028143569,-0.0040175645,0.032941673,0.005693513,-0.0040470185,-0.0107154688,0.0103089996,-0.0125475246,-0.0067155766,0.0292422138,-0.0149981212,-0.0074460432,0.0380313732,-0.0210185777,-0.0137139149,-0.0231746305,0.005013119,0.0508970022,0.0124886166,0.0375836678,0.0160231311,0.0030603001,0.0232217573,0.0011428262,0.0055933683,0.0436630286,0.0037524758,0.0025109777,0.0005865084,-0.0224559456,0.0540545024,0.0083473437,-0.0240346957,0.0166475605,-0.0208536331,0.02344561,0.036806073,-0.0329887979,-0.0371830873,0.0359106623,0.016258765,0.0726696104,-0.0207593795,0.0119289849,-0.0336485729,-0.0343083516,0.0195105169,0.0319991335,0.0388089642,0.0100615835,0.0114282621,-0.0459958091,-0.0499544665,0.013596097,-0.00154635,0.0215369724,-0.0015021685,0.0378192998,-0.001860038,0.01595244,0.0246473439,-0.0054254793,-0.0055462415,0.0112750996,-0.0005714131,-0.0086065419,-0.0377957374,0.0258255154,0.0253071208,0.0439222269,0.0296663549,-0.0184737276,-0.0338135175,-0.0059939469,-0.017825732,-0.0038408386,0.0086006513,-0.0081529459,-0.0045683593,-0.0011192628,0.0279697888,-0.0051250453,0.0209243242,0.009366462,-0.0060499101,0.015657898,0.0058967476,0.0099143116,0.0350623801,-0.0337428264,0.0197343696,0.0325410925,-0.0055727507,0.0057671489,-0.0224323831,0.0059114746,0.0203352384,-0.0171188302,0.0100733647,-0.0126417782,-0.0007555024,-0.016800724,0.0017731478,0.0186268892,-0.0258490797,0.0053754067,-0.0268151797,-0.0264146011,-0.0270979404,0.021395592,-0.0103502357,0.0404584035,-0.0026877034,0.0132897729,-0.0055344598,0.0045978138,-0.0016155675,0.0005044046,0.014444381,-0.0275220834,0.0178375151,0.0286531281,0.0237283707,0.0080822557,0.0000894214,0.014927431,-0.0199110955,-0.0042561442,-0.0159406587,0.0076522231,-0.0101970732,-0.0184737276,0.0541958809,-0.0054755514,0.0622074492,0.0002314002,0.0223734733,0.0180613678,-0.0066743409,-0.0121705104,-0.000837238,0.0108509585,-0.004580141,-0.0065035061,-0.0123825809,-0.0182734374,0.0021207083,0.0427204929,-0.0020647454,-0.0075756419,0.0044446513,0.017283773,-0.0301376227,-0.0151630649,0.0214427188,0.0202998929,-0.008341453,0.0179199856,-0.001344588,-0.0127713773,-0.0108097224,0.0396808125,-0.0282054227,-0.0224677268,0.0001700064,0.0021162904,-0.0246709082,0.005920311,-0.0224441644,-0.0115460791,0.0453831591,-0.0169892311,0.032022696,-0.011634442,0.0290537048,-0.0223852564,-0.0057730395,0.0300433692,-0.0234220475,0.0245530903,-0.019887533,0.0032546984,0.0234691743,0.0211246125,-0.023268884,-0.008429816,0.0417779572,-0.0049748286,0.0251893029,0.0051927902,0.0159995668,0.0124414898,0.0054637697,0.0064681605,-0.0141262747,0.0215251911,-0.0254249386,0.0049188654,0.0144208176,0.0228683054,-0.0038820747,-0.0158464052,0.0106447786,0.0263674743,0.0067450311,0.048776295,-0.0070219012,0.003204626,0.0212306473,0.0557510704,-0.0328709818,0.0359813534,0.0321640782,-0.0120468019,-0.007828949,0.0060322373,-0.02441171,-0.0062678717,-0.0205708724,0.0059880558,0.0032576439,0.01347828,0.0323525853,-0.0150216846,-0.0019822733,-0.0018232202,0.0012945158,-0.0175194088,-0.0160349123,0.007734695,-0.0270979404,0.003761312,0.011722805,0.0416601375,0.009790604,0.03383708,0.0271686316,0.0248829797,0.000587613,0.0176018793,-0.0238344073,0.0002067322,-0.0296663549,0.0114164809,-0.0143854721,0.0387618393,-0.0076993499,-0.0124768345,-0.0168714132,0.0178021695,0.028582437,-0.0063267802,0.0113398992,0.0018364746,0.0143736908,0.0141144926,0.0278284065,0.062066067,-0.0200878214,-0.0187211428,0.0236105546,-0.0188507419,0.0043150526,-0.0190274678,0.0075402968,0.0123001086,0.0113222264,-0.0123354541,0.0172484294,0.0420842804,-0.0145504158,0.0087479223,-0.0346617997,0.0297606084,0.0012768432,0.0038820747,-0.0082354182,-0.02405826,0.0143501274,-0.0073282258,-0.009189737,0.0375365391,-0.0134429354,-0.0254249386,-0.0005471133,-0.0289594512,-0.0224088188,0.0144090354,-0.0054961694,0.0012223527,0.0052192989,0.0394923054,0.0535361059,-0.0127360327,0.0372066498,0.008883412,-0.0085594151,0.0206179991,-0.0049954467,0.0248122886,-0.0183323454,-0.0185444169,0.0213720277,-0.0135607524,0.0023578154,-0.026532419,0.0231864117,0.0267209262,-0.0129481032,-0.0009322281,0.0341905318,0.0194280464,0.0400813892,0.0471268557,0.0171423927,-0.016011348,-0.0391152874,0.0254013743,-0.0588143133,0.0257076994,-0.0026877034,-0.0009432734,-0.0360284783,0.0031987352,0.0269094333,0.0106860138,-0.0024638509,0.007281099,-0.0118936403,0.0121233836,-0.0336485729,-0.0165297445,-0.0306088924,-0.0018718197,0.027380703,-0.0235869903,0.0141144926,0.0193102285,-0.0242938939,0.0596625991,-0.008883412,-0.0309152156,-0.0084946156,-0.0246237814,-0.0214898456,-0.0168949775,-0.0155754257,0.0265088547,0.0138199497,0.0059379837,0.00245796,0.0489176735,-0.00522519,-0.0087891584,-0.0185915437,-0.0099025303,0.032022696,0.0044210879,-0.0111926282,-0.0086242147,0.0168242864,0.0017908205,0.0265795458,-0.0088716308,0.0100439107,-0.0118524041,0.0071102642,-0.0163412374,0.0522165559,-0.0105917603,0.0586729348,0.0173308998,-0.0037406941,-0.002963101,0.0341434069,-0.0245530903,-0.0289594512,0.0174958445,0.0034608783,-0.0059497654,0.0174840633,-0.0079703294,0.0129481032,0.0200053491,0.0124768345,-0.0163412374,-0.0258255154,0.0048864656,-0.0005920311,0.0304675121,-0.0065977597,-0.0192277562,0.0289594512,-0.0278990977,0.0017112939,0.0025124503,0.0033901881,0.0004215644,-0.034873873,-0.030396821,-0.0006457852,-0.0060616918,-0.0183441285,-0.0036464403,-0.009425371,0.0379135534,0.0080351289,-0.0075344057,0.0106212152,0.0082236361,0.015410481,-0.0166475605,-0.0220671501,0.0181791838,0.0368767641,0.0114341527,0.0181556214,-0.0057259127,-0.0202645473,0.0490590557,0.0379135534,0.0105564157,0.020182075,-0.0046302136,-0.0352037586,-0.0082059633,0.0012591706,0.0042502531,-0.0309387799,0.0542901345,-0.0119937845,0.0086418865,0.0169067588,0.0090247924,-0.0568349846,-0.0037053488,-0.0206769072,0.008094037,-0.0241760761,0.0052163536,0.0138435131,-0.0010043911,-0.0094724977,0.0180495847,-0.0169892311,-0.007039574,0.0326117836,-0.0172484294,-0.0166357793,-0.0018718197,0.0287238173,-0.0122883273,0.0219022054,0.0669672564,0.0055521326,-0.0544315167,0.0113340085,0.0041677812,-0.0050396281,-0.0300669335,-0.002915974,0.0055167875,-0.000177278,-0.0202056393,0.0144325988,0.0216430072,-0.0342376605,-0.0132426461,0.0390917249,-0.0100792563,0.0071102642,-0.0217490438,-0.0205001812,0.0137021327,0.0284881834,-0.0014049694,-0.0037789845,-0.0117169144,0.0331537426,-0.009337008,0.0465142056,0.0018674016,0.0235987715,0.0044593788,-0.002952792,0.0138199497,-0.0373009034,0.0135607524,0.0104857255,-0.0210657045,-0.0669201314,0.0155518623,0.0067803762,0.0228800885,0.0208065063,0.0302790031,-0.0006225899,-0.018132057,0.0174958445,-0.0358635373,0.0248122886,0.0027760663,0.0170599204,-0.0371595249,-0.0150334667,0.0391152874,-0.0151866283,0.0245530903,0.0138199497,0.0046007591,-0.0409296714,-0.0149745578,0.0216312259,-0.000857856,0.0052192989,-0.0283703655,0.0112868818,-0.0306088924,-0.0363348052,-0.0421078429,0.0174369365,-0.0078760758,0.0154929534,-0.0204059277,-0.0100969281,0.003066191,0.0119230943,0.008883412,-0.0175900981,-0.0117110237,0.0066743409,-0.012571088,0.0095844241,0.0453595966,-0.0112456456,-0.0016803669,0.0147153605,0.0036228769,-0.004332725,-0.0029483738,0.0094076982,-0.0100792563,-0.0013217609,0.0068157213,-0.0090778107,-0.0074401521,0.0312922299,0.0204884,-0.0109157572,-0.0413066894,-0.0024299785,-0.0091013741,0.0206533447,0.0318813175,-0.0267209262,0.0028570655,0.008400362,-0.0088893026,0.0256605726,0.0082707629,0.0376307927,-0.0287002549,-0.0148331774,0.0200642589,0.0208182875,-0.0121351648,0.0218315143,-0.0018320564,0.0077111316,0.0053754067,-0.0010095456,-0.0256605726,0.0145386346,0.0019528191,-0.0011553443,-0.0161173847,-0.035651464,0.0243410207,-0.0308916532,0.0136314426,-0.0139966756,0.0231039412,0.0218315143,0.0087243589,0.0023327793,0.0230921581,-0.0293600298,0.0497659594,-0.0329181068,-0.0193691365,-0.0071220458,0.0182498749,0.011121938,0.0187211428,-0.0380313732,-0.0059615471,0.0649879351,0.0177314784,0.0178492963,0.0052192989,-0.0239050966,-0.001860038,0.0131719559,0.0114400443,-0.038502641,-0.0413066894,0.0081529459,-0.0137846051,-0.0223970376,-0.0103207808,-0.0019572373,-0.0172602106,-0.0026553038,0.0337899551,-0.0402463339,0.0085888691,-0.00012785,0.0230096858,0.0386675857,0.0041854535,0.0064799422,0.0044328696,0.0187564883,0.0219022054,-0.0093252258],"29":[0.0043221586,0.0150830327,0.0423859246,0.0083155325,0.0557565317,0.0234122649,-0.0321661755,0.0332073309,-0.0091511952,-0.0150693338,0.0356732234,-0.035837613,-0.0118157277,-0.0133363605,0.0557291359,0.0382761061,0.0059523867,-0.0338375047,-0.0343580805,0.060058143,0.0307688396,0.019644931,0.0250835903,0.0160556901,-0.026165843,-0.0315634049,-0.0238232464,0.0511535369,0.0066133826,-0.0867993608,-0.033947099,-0.0435366742,-0.048632849,0.0254945718,0.0439476557,0.0256178658,0.0382761061,0.0167954564,0.0017244113,0.0387966819,0.0033186781,-0.0026474078,0.0174667276,0.0284399427,-0.0080757923,-0.0422489308,-0.0268782116,-0.0312894173,0.0314264111,-0.0090005016,-0.010980064,-0.0149049405,0.0035584175,-0.0589621924,0.024097234,-0.0021970402,0.0016901627,0.0428791046,0.0078155044,-0.0259329528,-0.0192339495,-0.0646611378,0.0968821123,0.0665790513,-0.0115759876,-0.0346046686,0.0075552156,0.0569346808,-0.0173023343,0.0282481499,0.0466875359,0.0200833119,-0.0013579525,-0.0045379242,0.0243301243,-0.0534824356,-0.0047365655,0.0202614032,-0.0043461327,-0.0170968436,0.0064215912,-0.028987918,-0.0212614592,0.0140966764,-0.0011755793,-0.0502493754,0.0008694834,-0.036275994,0.0006502931,0.0281659532,-0.0217820369,0.0721136108,0.0071784826,0.0509069487,0.0304126553,0.0279193651,0.0180421025,0.0335361175,0.0338375047,0.0305496491,-0.0251109898,0.0019658629,0.0469067246,0.0117540797,-0.0027963887,-0.0346046686,0.0332621299,0.0093909344,0.0098909624,-0.0149597386,-0.0794016868,-0.004298185,-0.0129870251,-0.0327963494,-0.0228094906,0.0029898928,-0.0100485059,0.0109595153,0.0213573556,-0.0348786563,-0.0467697307,0.0305770468,-0.0233300682,0.0284673404,-0.0248917993,-0.0369883627,-0.0158091001,-0.0215765461,-0.0137541918,0.0065380358,0.0187818687,-0.0102197481,0.0346320681,-0.0459203683,-0.0312346183,-0.0327689499,-0.0187407713,-0.0074867187,-0.0002547231,0.0061167795,0.0152200265,-0.018576378,0.0262754373,-0.0155899106,0.012925378,0.0186037775,0.0077538569,0.0118362764,0.0395364501,-0.0285769366,-0.0098567139,-0.0244671181,-0.0709628612,-0.0224396065,0.0523042865,0.0250835903,0.0039283014,0.0485232547,0.0037707582,-0.0368787684,0.044112049,0.024289025,-0.0435640737,0.0032604558,-0.0683325753,0.0385774933,-0.0177407153,-0.033947099,-0.0853746235,0.0188777652,-0.0799496621,-0.0544961877,0.0231930744,0.0402488187,0.0266179219,-0.0385774933,0.0368513688,-0.0272480939,0.0111170579,-0.033563517,-0.0812100098,-0.026919309,-0.0241520312,-0.0185626782,-0.019398341,0.0001222243,-0.0637295842,-0.0164118744,-0.0119321719,0.0581950247,-0.0450162068,0.0413173735,0.0021251184,0.0160556901,0.0010420101,-0.0218916312,0.0181790963,-0.0170831438,0.0121034142,0.016000893,0.0387418866,0.0276864748,0.0452353992,-0.0210011713,0.0249465965,-0.0070825866,-0.0212203618,-0.021590244,-0.0686065629,-0.0331525318,0.0033717633,0.0205764901,0.0245904122,0.0209326744,-0.0396186486,0.0177133158,-0.0428243056,-0.0017655094,0.0248643998,-0.0141514735,-0.0008159702,0.0820319727,-0.0219327305,-0.0045755976,-0.007438771,0.0463587493,0.030440053,-0.0463587493,0.0532632433,0.0164803714,0.0094936797,-0.0472355112,0.0046372451,-0.023097178,-0.0022672496,0.0027090551,0.0225492027,-0.0221793186,-0.0001610749,0.0245630126,-0.0160967875,0.0290427152,0.0210559685,0.0312620178,0.0023939691,0.0075209672,-0.0452627987,-0.0358650126,-0.0106923766,0.0247137062,0.0168502554,-0.0139459828,-0.0325223617,-0.0431530923,-0.0221930183,-0.0271658991,-0.0109047173,0.0445778295,-0.0078634517,0.0265357252,0.0172338374,-0.0409885868,-0.0152337262,0.0201381091,-0.0057537453,0.0172886346,0.0322483741,0.0029761933,-0.0012064029,-0.0135144526,0.033508718,0.0126856389,-0.0077264584,-0.052660469,-0.0253849775,-0.0544413924,-0.0085141733,-0.0221930183,-0.0156858061,-0.0014255932,-0.0147542469,-0.0277549718,0.0290975124,-0.0047982126,-0.0007449046,-0.0067572263,0.0215080492,0.0208641775,-0.0235766564,-0.0435914733,-0.0366595797,0.0003234341,0.0129116792,0.0139596825,0.0167132597,-0.022467006,-0.0036577382,0.0220012274,-0.0310976245,-0.0309332311,0.0131103201,-0.0179599058,0.0042262631,-0.0149734374,-0.0216998402,-0.0070620375,-0.0064318655,-0.0074935686,0.0110896593,-0.0164666716,0.0341662876,-0.030248262,0.0227409936,0.0155762108,-0.0401118249,-0.0064900881,0.059181381,-0.0092128422,-0.0162885804,-0.0475642942,-0.0350430496,-0.0763878226,0.0347142629,-0.0357280187,-0.0036508886,-0.0053770123,0.0125417951,0.0035721171,0.0100074075,0.0087128142,0.0069387429,0.008534722,0.009918361,-0.0031166121,-0.0137130935,-0.0188640654,0.0123089058,-0.0523590855,-0.0247000065,-0.0130418232,-0.023467062,-0.0344402753,-0.0731547624,-0.0084867748,0.0544961877,-0.0227272939,-0.0417831503,-0.0203435998,0.0174393281,0.0446326248,-0.0307414401,-0.0014624103,-0.0368787684,-0.0140213296,-0.0175215248,-0.0134048574,-0.0156036094,-0.0070346389,-0.0132336142,-0.0179736055,-0.036275994,0.0488520376,0.030878434,-0.0197545253,0.0050516515,0.033563517,-0.0406871997,0.007342875,-0.0121582123,-0.0131514184,0.0293988995,-0.01424737,-0.023097178,-0.0039454256,-0.0561675169,0.0136103481,0.0204805937,0.0127472859,0.0320017859,0.0460025668,0.0514823236,0.058304619,0.0166447628,-0.0205627903,0.0066133826,0.0523042865,-0.0021336805,-0.0043529826,-0.0620308556,-0.0165214688,0.0355636254,-0.0397830419,-0.0081922375,-0.009103247,-0.0343580805,-0.0065859836,0.0208093803,-0.0211107656,0.0550441667,-0.0303578563,0.0113704968,-0.0097608184,-0.0507151559,-0.0201518089,0.0126239918,0.0268782116,0.0108088218,0.0316455998,-0.0118088778,-0.0261932407,-0.0225492027,-0.0340840928,0.0548523739,-0.0092607904,0.0160693899,-0.0024504792,-0.0115417391,0.0564962998,-0.0021953278,0.0401940234,-0.0306318458,-0.0194805376,-0.0230012834,-0.0292619057,-0.0254534744,0.050961744,0.0330977365,-0.0000546103,-0.0239876397,-0.0737575367,-0.0134459548,0.0030823636,0.0601677373,-0.0113704968,-0.0316455998,0.0012663377,0.0129322279,0.011863675,0.033563517,0.0049454812,-0.005962661,-0.01920655,-0.0037296601,0.0132062156,-0.0236451533,-0.0117129823,-0.0226724967,0.0044043553,-0.0230834782,-0.0141651733,0.0209463742,-0.0009581014,0.0071784826,0.0319743864,-0.0558387302,-0.0116855828,0.0520302989,-0.0120897153,0.0325497612,-0.0255493689,-0.0348512568,0.0579210371,-0.0231245775,0.0016918752,-0.0451532044,-0.0619212613,-0.0093909344,-0.0376185365,0.0259466525,-0.0206586868,0.0105485329,0.0313990116,-0.0517289117,0.0008544997,-0.0156173091,0.0230423808,0.0144391609,0.01694615,-0.0045927218,-0.025289081,0.0294810962,-0.0082949828,-0.0556743369,0.0452901982,0.0338923,-0.0377007313,-0.0019144904,0.045427192,0.0167132597,-0.0112883011,0.0002517264,-0.0066887289,0.1002247632,-0.0155351125,-0.0142884683,0.0110211624,-0.0380021185,-0.0575922541,-0.022905387,-0.0027467285,0.0272617936,0.0072195805,0.0033272402,0.0618664622,-0.0002292508,0.0040892693,-0.0190695561,-0.0144117624,0.0279056653,-0.0301934648,-0.0020240855,0.0829635262,0.023288969,0.0237273499,-0.0106307296,0.0183160901,-0.0019761375,0.0133911576,-0.0064215912,-0.0044009304,-0.0138500873,-0.0244671181,-0.0002557934,-0.0019316146,0.0263439342,-0.0056373007,-0.0449066125,-0.0015317635,0.010980064,0.0304948501,0.0361390002,-0.0053804368,0.0096717719,0.0252616834,-0.0550715625,0.0136582954,0.0073154764,-0.0295906905,-0.0363307931,0.0105827814,0.0153981186,0.0537016243,0.033015538,0.0255082715,0.0090552997,0.004113243,-0.0360020064,-0.0276590772,-0.0012603443,0.051454924,0.0431256928,-0.0268234126,0.0294810962,-0.009411484,-0.008788161,0.0198778212,0.012178761,-0.0109252669,0.0315908007,0.0127541358,-0.0032399066,-0.029809881,0.0017107119,0.0069216187,0.0100553548,0.0460025668,0.0162063837,-0.0233848654,-0.0392898619,0.0222478155,0.0013879199,-0.0009033038,-0.026987806,0.0063599437,0.0124116512,-0.0277138744,-0.053208448,-0.0139459828,0.0143432654,0.0309606306,-0.025604168,-0.01694615,-0.0217409376,0.0182338934,-0.0123911016,-0.0254671741,0.0280289594,-0.0045687477,0.0333717242,-0.0288509242,-0.0147131495,-0.0098635638,-0.0066544805,0.0120075187,-0.005428385,0.0220697243,0.0091511952,0.0043975054,-0.0000499279,0.0534824356,0.0077401577,-0.0009880688,0.0101375515,-0.0277823713,0.0017158492,0.0058667655,0.0416187607,0.026165843,0.0196175314,-0.0299194772,0.0010608468,0.007342875,-0.0088498089,-0.034823861,-0.014493959,0.0080415439,0.0256726649,0.0056133266,0.009288189,0.0293715,-0.0349060558,-0.0452627987,-0.0082333358,-0.0448518172,0.0196997281,-0.0032039457,-0.0186311752,-0.0208778773,-0.0312346183,0.0091922935,0.0045961468,0.0076785102,0.0267412178,0.0207956806,-0.0126582403,0.0007461889,0.0144665604,0.0156858061,0.0271932967,-0.0129596265,0.0020737457,-0.0021405304,0.0272754934,-0.0060380078,0.0163981747,-0.02961809,-0.0015326197,0.0161789842,0.000185691,-0.0084525263,-0.019891521,-0.0427969061,0.0558387302,0.0069524422,-0.0012372265,0.0172475372,-0.0242205281,-0.0304948501,-0.0142199714,0.0162200816,-0.0454819873,0.0020001116,-0.0245082155,-0.0344950743,-0.0085073235,0.0317277983,0.0360568054,0.0256315656,0.0250972901,0.0526056737,-0.0290427152,0.0414817631,0.0289331209,0.0100759044,-0.0035036199,-0.0038221308,-0.0107129263,-0.007966198,0.0329333432,0.030248262,-0.0233574659,0.0120828655,-0.0144802593,0.0035789667,0.0045447741,0.0087676123,0.0043392829,0.0318647921,0.0353992358,0.0116581842,0.0030515401,-0.045317594,0.0145350574,-0.0265220273,0.0018596927,-0.0394816548,0.0124458997,0.0209052749,-0.0095210792,-0.0853198245,-0.0353444368,0.0028563237,-0.0544961877,-0.0079319496,-0.012233559,0.0169735495,-0.0048427358,-0.020644987,0.0427695066,0.0182338934,-0.035262242,-0.0044934014,-0.014493959,0.0316182002,0.0017389668,0.0000021037,0.0089662531,0.0378651246,-0.0070038154,0.0194394402,-0.0255630687,-0.0093635358,-0.024727406,-0.0398926362,0.0263302345,-0.0060825311,0.0088224094,0.0355362296,0.0186585747,-0.0418653488,0.0114595434,0.0007170776,0.0176448189,-0.0328785442,0.0294536967,-0.0022244391,-0.0136514464,-0.0135418512,-0.0387966819,0.0064318655,-0.0444134362,-0.0134117063,-0.0214806497,-0.0128431823,0.0138295386,-0.035837613,0.0039146016,0.041235175,-0.0135692498,0.0052845413,-0.0255493689,0.0127541358,-0.0023802698,0.0123911016,-0.0089457044,-0.0300290715,0.0024590413,0.0204257965,0.0129801761,0.0131034702,0.0314264111,0.0287139304,-0.0178503096,0.0012132525,0.0142199714,0.0128226327,0.0016516332,-0.0077470071,0.026165843,-0.0467971303,-0.015562512,-0.0268645119,0.0138226887,-0.0185078811,0.0165762659,-0.0062982962,-0.0021764913,-0.0128294826,-0.0063633686,0.0130555229,0.0374815427,-0.0098087657,-0.0164255742,-0.0194942374,0.0121582123,-0.0044865515,0.0244808178,-0.0202340055,-0.0048598601,-0.0353170373,-0.0206175875,0.039974831,-0.029179709,0.0072606788,0.0167817585,-0.0192887466,0.0277823713,-0.076168634,-0.0066442061,0.0121445125,-0.0312072188,0.0115896873,-0.0045516235,0.0589621924,0.0376185365,0.0311524216,-0.0405228063,0.0152337262,-0.0343580805,-0.0144391609,0.0083223814,-0.0043461327,-0.0043084593,0.0268782116,0.0085484218,0.0105553828,0.0520302989,-0.0101512512,-0.027549481,-0.0200011153,0.0332621299,-0.012048617,-0.0317003988,-0.0034197113,0.0259055533,0.0506603606,-0.030001672,-0.0009786504,-0.0045413491,-0.0260288492,0.0312620178,-0.0163707752,0.0324949622,0.0120417671,0.0007453326,-0.0258096587,0.0049797297,-0.0050071287,-0.0238369461,0.0146309528,-0.0470985174,0.0051920703,-0.0015309072,-0.013302112,-0.0089662531,-0.0125623439,0.0178366117,0.0252753813,-0.0113978954,-0.024919197,-0.0303578563,-0.0024367797,0.0207956806,-0.0350704491,0.0059318375,-0.0074730194,0.0171516407,-0.0182749908,-0.0012132525,0.0010522847,-0.0196586307,-0.0168228559,0.0089457044,0.0020001116,0.0391528681,-0.0057023726,0.0121582123,0.0346868671,0.0398104377,0.0111513063,-0.027741272,0.0152063277,-0.0056920983,0.0001685668,-0.01719274,0.0115143405,-0.0170557462,0.0013185666,0.0076716607,-0.0144665604,0.0011618799,-0.013178817,-0.0036954116,-0.0091443453,0.0254260749,-0.0010402977,-0.0089183059,0.0125280954,-0.0078840014,-0.0309058335,0.0020977198,0.0037604836,0.0537016243,-0.0002538669,-0.0106923766,0.0037022613,0.0141925719,0.0263850335,0.0258644558,0.012486998,0.0347964615,-0.0257411618,-0.0129596265,-0.0094388826,-0.0212066621,-0.0155899106,0.0061544529,-0.0143843638,0.0196860284,0.0390158743,0.0310702249,-0.0001105584,0.0232615713,0.007596314,-0.0414817631,0.0313168131,-0.0510987379,0.0448244177,-0.0317277983,-0.0363581926,0.0197408274,0.004113243,0.0314812064,0.060058143,-0.0143295657,-0.0059421123,-0.0072880774,-0.008288133,0.0504411682,0.0178640094,0.026165843,0.0084662251,-0.0066716047,0.0220560245,-0.0132610137,0.000254295,0.0107882731,-0.0209052749,0.0162063837,-0.0166858621,0.0013057234,0.0325223617,-0.0133089609,-0.0098635638,0.005582503,-0.0162885804,0.0413995683,0.0001985342,-0.0050961748,-0.0225492027,0.0591265857,-0.0207819808,0.0418653488,-0.0355636254,-0.0279056653,-0.0393172614,0.0144665604,-0.0071990318,0.0284125432,0.0037399346,0.0087676123,0.0118773747,-0.0160693899,-0.0240424369,-0.0168365557,0.0094594313,0.0234533623,-0.0038289807,-0.0245767124,0.0069421679,0.0092676403,0.0286865309,-0.0182064939,0.0174941253,0.0342758819,0.0042536617,0.0197271276,-0.0630720109,-0.0048119123,0.0299468748,0.0260014497,0.0152748246,-0.0060688313,-0.0446874239,0.0126034422,-0.0022621125,0.0323305689,0.055482544,-0.0043221586,0.0111992545,0.0027056304,-0.0004165472,0.0145350574,0.0027946765,0.0314538069,0.0127130374,0.0138774859,-0.0304948501,-0.0276727751,0.0153981186,-0.0408789925,-0.003152573,0.0281385556,-0.0062674726,-0.0014281619,-0.0557291359,0.0392350629,0.0028683105,0.0164118744,-0.0129459277,-0.033563517,-0.0099389106,0.0318099931,0.0034522472,0.0337827057,0.0100896033,-0.026357634,-0.0061441781,-0.0335361175,-0.019329844,0.0457559749,-0.0209737718,0.0305222496,-0.0180421025,-0.0023425964,-0.0066373562,0.0074730194,-0.0055790781,0.0319743864,-0.009226542,0.0098293154,0.0290975124,0.0113293985,0.0173708312,0.0146172531,-0.0164666716,0.0027741273,0.0122198593,-0.0004212564,0.0049968539,-0.0071579334,-0.0125212464,0.0020155234,0.038467899,0.0078771515,0.0175489243,-0.005743471,-0.0358924121,-0.0151652293,0.0118842246,0.0011224941,0.0152748246,0.0257548615,0.0166036654,0.0124595985,0.0090826983,0.0061202045,0.0110622607,0.0125006968,0.0247000065,0.004924932,-0.0071716327,-0.0148501433,-0.005585928,-0.0297824834,0.0252479836,0.0146583514,-0.0116170859,0.0138637871,0.0200833119,-0.0244808178,0.0203025024,0.0202614032,-0.0523590855,0.0257000625,0.0197545253,-0.0174941253,-0.0316729993,0.0048187617,-0.0029744809,0.0266316216,0.0314538069,-0.0212340616,-0.024727406,-0.0160556901,0.0406871997,-0.0424955189,-0.0142336702,-0.0045139501,-0.0105211344,0.0221382212,-0.0039351508,-0.0103361923,-0.0126034422,0.0095827263,0.0184393842,-0.0164255742,0.0268645119,-0.038084317,-0.0050242529,0.0360842049,0.016562568,0.0149734374,-0.0032570309,-0.0156036094,-0.0250561908,0.0396186486,-0.0097402688,0.0115348902,0.0288235247,0.0316182002,-0.0153707201,0.0147953453,0.022905387,0.0354266316,0.0365499817,0.0403310172,0.036275994,0.0243164245,0.0302208625,0.0229738839,-0.0117061324,-0.0001669614,0.0208915751,-0.0189736616,-0.0143980635,0.0239465404,0.0041372171,-0.0169187523,0.0152337262,0.017946206,-0.0147542469,0.0204257965,0.0036132152,-0.0087470626,-0.0114252949,-0.0104320887,0.0267412178,-0.0045036757,0.0029231082,-0.0201107096,-0.0158912968,0.007500418,0.017822912,0.0317277983,0.0190421585,0.0085073235,0.0602773353,0.0172749367,-0.0223848093,0.0052502928,0.0165488683,-0.0028528988,-0.0010676965,-0.0104937358,0.000060363,0.0164666716,0.0170009471,-0.0078634517,-0.0168228559,-0.0014315867,-0.0016781758,-0.0118225766,-0.0042742109,0.0327689499,-0.0056715491,-0.001945314,0.0129527766,0.0215217471,-0.0008938854,-0.0347964615,-0.0105142845,-0.0099115111,0.0028032386,0.0048050624,-0.0189325623,0.017137941,0.0028289249,-0.0277686715,0.0433448814,0.0290153157,0.0069764163,0.0296728872,0.0006186133,-0.0491534248,0.0080552436,0.0217820369,0.0091854436,-0.0229601841,-0.0239602402,-0.0196038336,-0.0056544249,0.0257137623,-0.0171242431,-0.0239602402,-0.0074935686,-0.034823861,-0.0391254686,-0.0241109338,0.0077538569,-0.0189051628,-0.0029213957,-0.0035858164,0.0456189811,0.0422763303,-0.0046064211,0.0451258048,-0.0007847184,-0.0112883011,-0.0083703296,0.0228505898,-0.0257685594,-0.0120212184,0.0205079932,-0.0161378868,0.0181242991,-0.0480848737,0.0164392721,0.0134391058,0.0064969375,0.0167406593,0.0005668124,0.0247000065,0.0124664484,0.038467899,0.030878434,-0.0520576984,-0.031125024,0.0098087657,-0.0464135483,0.0189462621,-0.0173434336,-0.0219464283,-0.0021525172,-0.0022518379,-0.0304948501,0.0034573846,0.0156995058,-0.0018939412,-0.0014144625,0.004205714,-0.0076305624,-0.0079045501,-0.0552359559,-0.024097234,0.0085689705,-0.0194257405,0.0199326184,0.0144802593,-0.0213162564,0.013808989,0.0079935966,-0.0178366117,-0.0297824834,-0.0206312872,-0.0169735495,-0.0009572452,-0.0353992358,0.0201381091,0.0027912515,0.0149323391,0.0121034142,-0.0071579334,-0.003592666,0.0079113999,0.000367101,-0.0048495852,0.0098978123,-0.0108430702,0.0111444574,-0.0104663372,0.0075141178,-0.0016730385,0.0229464844,-0.0276316777,0.0212066621,0.0084799249,0.0275768805,-0.0011969846,0.027549481,0.0079319496,0.006962717,0.0098841125,-0.0212477595,-0.0279741623,0.0199874155,-0.0010445787,-0.0228231903,0.0020086737,-0.0399474315,-0.003592666,0.0372349545,-0.0014880967,0.0150556341,0.0018939412,0.0378651246,-0.0138774859,-0.0198230222,0.0413173735,0.0137541918,0.0111307576,-0.0151515296,-0.0437558629,0.0063462444,-0.0230286811,0.0016841693,-0.0164666716,0.0095895762,-0.0149460388,-0.0066955788,-0.0406598002,0.0270563029,-0.030878434,0.0023494461,-0.016562568,-0.020644987,0.0061133546,0.0096306736,-0.0003405584,0.0016165285,-0.0126993386,0.0250698905,-0.0305770468,-0.0147953453,0.0006584271,-0.0083497809,-0.0089525543,0.0039180266,0.0167406593,0.003527594,0.018768169,-0.01129515,0.0322483741,-0.0270015057,-0.0110896593,-0.0069729914,-0.0276590772,-0.0142336702,0.012678789,-0.0346868671,0.0008784736,0.0370157622,0.0266864188,0.0015189203,0.0186448749,-0.0160145909,0.0428517051,-0.0123089058,0.0095895762,-0.0369061679,-0.0234533623,0.0098430142,0.0027707024,0.0163844749,0.0169050526,0.0287139304,-0.0047468399,-0.0166721623,-0.0007877151,0.0055345553,0.0241931304,-0.0162337814,-0.0366321802,0.0027895391,0.0537290238,0.0123294545,-0.0392898619,0.0299468748,-0.0218916312,0.009096398,-0.0087470626,0.0158638991,-0.0022432758,0.0468245298,-0.0073771235,0.0079456484,-0.0058496413,0.0390980691,-0.0163981747,0.0053667375,0.0097745173,-0.016192684,-0.0094388826,-0.0057845693,-0.01355555,0.0076922099,-0.0319195874,-0.0284399427,-0.0049078078,0.0269330088,-0.009664922,0.0264261309,-0.0089046061,0.0338101052,0.0154529167,-0.0001042973,0.0119938198,-0.0161515847,0.0187544711,0.0080346949,-0.0163022783,-0.0418653488,-0.0042468123,0.0273987874,-0.007500418,-0.0085278731,0.0135829495,-0.0182612929,0.0226998962,-0.0071784826,-0.008911456,0.001012899,0.0092539405,0.0242205281,-0.0208641775,-0.0212203618,0.0440846495,-0.0403858125,-0.0182338934,0.0214258526,0.010918417,-0.0043153092,-0.0015771427,0.0010805397,0.0090621496,0.0184393842,0.0114115952,-0.025480872,0.0105690826,-0.0085210232,0.0023665703,0.0297276843,-0.0061647273,-0.0403858125,0.0215080492,0.020836778,0.0291249119,-0.0014726849,0.0263028368,0.0042776358,0.0027210421,0.0004248953,0.0226176996,0.0091991434,0.0203846991,-0.0051064491,0.0098224655,-0.0242616273,-0.0211655628,-0.0117677795,-0.0371253565,0.002664532,0.030056471,-0.0077127586,-0.0034248484,-0.0203572996,-0.0000661424,0.0235903561,0.0076511116,-0.008096342,-0.0215217471,0.0059729358,0.0163570773,0.0247137062,0.0173982307,0.0100690546,0.0365225859,0.0155488122,0.0016165285,0.0256178658,-0.012678789,0.0539208129,0.0179599058,0.0094320327,0.0038872031,0.0189051628,-0.0116444845,0.0463039503,0.003794732,0.0116239358,-0.0171790402,0.0448518172,0.0051886453,-0.0121445125,0.036714375,0.0184667837,-0.012363703,-0.026165843,0.0313990116,-0.0141103761,-0.0046920422,-0.0057879938,0.0401666239,0.0095621767,0.0115965372,-0.0203846991,-0.003592666,0.0171516407,0.0111581562,-0.0150967324,-0.0218094345,-0.024973996,0.0047160164,0.0303030591,-0.0042810608,-0.008096342,0.0455367863,0.0191517528,0.000794993,-0.003705686,0.0013040111,-0.0231519751,0.0212340616,0.0381391123,0.0143295657,-0.0007577477,-0.0178640094,0.0143021671,0.0128568811,-0.0009795066,-0.0202203058,-0.0202203058,-0.0392624624,0.0168639533,0.0111102089,0.0028802976,-0.0073223263,0.0241109338,0.0155077139,0.0253712777,0.0292893052,0.0450162068,-0.0042091389,-0.0020514843,0.0175352246,0.0198641215],"30":[-0.0201689415,-0.000562552,0.0362687074,0.0073348302,0.070709236,0.0172202643,-0.0201836843,0.0147654926,-0.0065128873,-0.0008799954,0.0305777658,-0.0214221273,-0.0196971521,-0.0385097042,0.0316392891,0.0527812913,-0.0105341431,-0.0265528224,-0.0433455296,0.0143747935,0.0317277499,0.0288380459,0.0054808506,0.0149792721,-0.0052818148,-0.0103351073,-0.0077918749,0.0846859589,0.0190484431,-0.0559363738,-0.0139840934,-0.02636116,-0.0137998015,0.0437288582,0.0516018234,0.0105046565,0.0283662584,-0.0006643735,0.0333790071,0.0317277499,-0.0213778969,-0.0022336217,-0.0049611465,-0.0024768875,-0.0052781291,-0.0281156208,-0.0389225185,-0.0195054878,-0.0059710681,0.0291034281,-0.0387161113,-0.0158196446,-0.0042682081,-0.0200509932,0.0164241232,-0.0305777658,-0.0027164673,0.0562312417,-0.0305187926,-0.0003665111,-0.0046109916,-0.0444660261,0.0466480479,0.0610375851,-0.0317867212,-0.0165715571,0.0037227029,0.0447314084,-0.0260662921,0.0447903797,0.0577645525,0.0198003557,-0.0190042146,0.0171760358,0.0299437996,-0.0275553726,0.0017655195,0.0221887827,0.0067045512,-0.0477390587,-0.0150235016,-0.0066197766,-0.035266161,0.0093178144,-0.0101360725,-0.0179574341,-0.0113155423,-0.0276585761,-0.0241349097,0.0359443538,-0.0249752812,0.0714758933,-0.0092735849,-0.003433364,0.0118389325,0.0364751182,-0.0157016981,0.0292361174,0.0171760358,0.0308431461,-0.0456160121,-0.0157016981,0.0178394876,-0.016217716,0.0195202325,-0.0058789221,0.018901011,0.015937591,-0.0012697733,-0.0165125839,-0.0777270868,-0.0183555055,0.0005353689,-0.0046773367,-0.0377430469,-0.0108142672,-0.0292656049,-0.0026630226,0.0228669792,0.0092146108,-0.0259925742,0.0131584648,-0.027231019,0.0419301651,-0.0086101322,-0.0305777658,-0.0099370368,-0.0094136465,-0.0241496526,0.0127603933,0.0457339585,-0.0505108126,0.0584132634,-0.0533710271,-0.0001341878,-0.0289265066,-0.0230881292,0.0074748923,-0.0116104102,0.0233682543,-0.0005874315,-0.0043566683,0.02317659,-0.0219971202,-0.0198888164,0.0119052771,-0.0103351073,0.0228374917,0.0218054559,-0.0042313496,-0.0166157875,-0.0360328145,-0.061332453,-0.0544325486,0.0698836073,0.0200804807,0.0150824757,0.0322290249,-0.0026593367,-0.0509825982,0.0300617479,0.0095315939,-0.0455865227,0.0042866371,-0.0115072066,-0.0019590263,-0.0368289575,-0.0608016886,-0.0767245367,0.0175298769,-0.0790245011,-0.0350892395,0.0286758691,0.0287053566,0.0633965209,-0.0046662791,0.0318751819,-0.0522800162,0.0174414162,-0.032376457,-0.0661093071,-0.0137039693,-0.0068630422,-0.0264053904,-0.0019166392,0.0031624546,-0.0232797936,0.0214663576,-0.0307251997,0.0296931621,-0.058295317,0.0751322508,0.0198593289,0.0380674005,0.0175151322,-0.0357379466,-0.0031569258,-0.0007376296,0.0006017141,-0.0010716593,0.0509531125,0.0310495533,0.0543146022,0.0081014857,0.0134459604,-0.0122222602,0.0150603605,-0.0058162627,-0.0486531481,-0.0198298432,-0.0114113744,0.0151709355,0.0196676664,0.0282188244,-0.0294572692,-0.0049869474,-0.0415173508,-0.0030666227,0.0047473675,-0.0187240895,0.0203458611,0.0570568703,-0.0043419246,0.0046773367,-0.0197118968,0.0553466417,0.0213484112,-0.0275406297,0.0434339903,0.0022373076,0.0126277031,-0.0464121513,-0.0204638075,-0.0363866575,-0.0414288901,0.014197873,0.0373007469,-0.0429032296,0.0179721769,0.0268476903,-0.0298995692,0.0188862663,0.0056467135,0.0360917896,0.0130184023,-0.0104309395,-0.0274669118,-0.0562607311,0.0114261173,0.0282040816,0.0185029395,-0.0157459266,-0.0027975559,-0.0291624013,-0.0165863,-0.0310790408,-0.0131658362,0.0410160758,0.0019240108,-0.0146917757,0.0095537091,-0.0282925423,0.0093841599,0.010106585,-0.0358853824,-0.0097601162,0.0053665894,-0.0173234679,-0.0332610607,-0.0172792394,0.021584304,0.0285874102,0.017382443,-0.03998404,-0.043021176,-0.0106299752,-0.0194907449,-0.0340866894,-0.0178100001,-0.014197873,-0.0300764907,-0.0965396389,0.0074159191,-0.0121927736,-0.0065829181,-0.0077107865,0.0123770656,0.0166895036,-0.0130773764,-0.0250342544,-0.0332610607,-0.0067414097,0.0246656705,0.0171907786,0.007607583,-0.0110870199,0.0369469039,0.0104383118,-0.008330008,-0.0184439663,0.0441416726,-0.0515428483,0.0271573011,-0.0149718998,0.0088902563,-0.0100992136,0.0152446525,-0.0088976286,-0.0008910529,-0.0263906457,0.0232945364,-0.0209945701,0.0384802148,0.0010274291,-0.0381558612,-0.0060410989,0.0806167871,0.0024418719,-0.0153625999,-0.0122591183,-0.0429327153,-0.0529582128,0.006896215,-0.0251079723,0.0221887827,-0.0219528899,0.0146696605,0.0206259862,0.0223951899,-0.0283515155,0.0312264748,-0.0292361174,0.0276880637,-0.0195054878,-0.0343225822,-0.0572927669,-0.0059784395,-0.0222477578,-0.0079614241,-0.022808006,-0.0278502405,-0.0513069555,-0.0793193728,0.0172792394,0.0176330805,-0.0235009436,-0.0363866575,-0.0263759028,0.0208913665,0.0505108126,-0.0328482464,-0.0277765244,-0.0092293546,-0.0014872382,-0.0060927006,-0.0083816098,-0.0141905006,-0.0542556308,-0.0167779643,-0.0184587091,-0.0369174182,0.0105931172,0.0378609933,0.0190189574,0.0060742716,0.0063433382,-0.0257714242,0.0200509932,-0.0309021194,0.0072242552,0.0119052771,-0.025565017,-0.0073753749,-0.0109690726,-0.0558774024,0.0143305631,0.0036084417,-0.0078508491,-0.0046220487,0.04635318,0.0426083617,0.0520441234,0.018974727,-0.0292656049,0.0066603208,0.0516607948,0.0251227152,0.0017950062,-0.0775501654,-0.0318751819,0.0558184274,-0.0479159765,0.0114924628,-0.0208471362,-0.0360623002,0.0168516804,0.0094431331,-0.02295544,0.0563491881,-0.018326018,0.0181343537,-0.0068151262,-0.0244592633,-0.0401904471,-0.0006252113,0.0005478087,0.0116104102,0.0350597538,-0.0222477578,-0.0557299666,-0.0087059643,-0.0105415154,0.0437878333,-0.0201836843,0.0036360854,-0.0163798928,-0.0293835513,0.0603888743,0.0178394876,0.0648118854,-0.0122370031,-0.0235451739,-0.0217022523,-0.0401019864,-0.0259778313,0.029619446,0.0375366397,-0.0186356287,-0.0044561857,-0.0495967232,0.0032730298,0.0197118968,0.0259483457,-0.0057978332,-0.0488005802,0.0331136249,-0.0116841272,-0.0100254966,0.0338507965,0.014846581,0.0051012086,-0.0109911878,0.0086764777,0.02021317,-0.0288675334,-0.0019553404,-0.0195497181,-0.0201247111,0.0065092011,-0.0078213615,0.0087944251,-0.0220560934,-0.0188272931,0.0301502068,-0.0352366716,-0.0329661928,0.0757809579,-0.0128046237,0.0109322146,0.0122296317,-0.0234714579,0.0324944034,-0.0076223263,0.0071615959,-0.0465890728,-0.053312052,0.0074380338,-0.0126129594,0.0426378474,-0.0103424797,0.0400725007,0.0323174857,0.0150382454,-0.0506582446,-0.0464711264,0.0340277143,-0.0225573685,0.022527881,0.0249015652,-0.0334379822,-0.0143969087,0.0208471362,-0.0743066221,0.0435814261,0.0299732871,-0.0155100329,0.0111975949,0.037890479,-0.0201247111,0.0048911157,0.0064760288,-0.0101287002,0.0800270513,-0.0184292216,-0.0204785522,0.000492521,-0.0391584113,-0.0416352972,-0.0388340577,0.0059157801,0.032818757,0.0207291897,0.0133501282,0.0524864234,0.0155395204,-0.0291771442,-0.0148981828,0.0219971202,0.0072389985,-0.0299732871,-0.0113155423,0.0360623002,0.0134533318,0.0511890091,0.0141462712,0.0399250686,0.0047326242,0.025343867,0.0034794372,0.0100328689,-0.0357969217,-0.0133058988,-0.0192401074,0.0170580875,-0.0007477657,-0.0276438333,-0.0505992733,-0.0105046565,0.0025690335,-0.0075707245,0.0200215075,-0.0301649515,-0.0047952835,0.0113818878,-0.061273478,0.0067229802,-0.0170286018,-0.049832616,-0.0228227489,0.0228669792,0.0112491967,0.0127456496,-0.0070325914,0.0337033607,-0.0000739473,0.0256977081,-0.0222772434,-0.0046699648,0.0046441639,0.0457634442,0.0247983616,-0.0149645284,0.0464416407,-0.0028233568,0.0007500693,0.038745597,0.0196529217,-0.0111091351,-0.0071247374,0.0244445205,-0.0068409271,-0.021879172,0.0276438333,0.0003022392,0.0050569787,0.0224394202,0.0079098223,-0.0330546536,-0.0393058434,0.0015001387,0.0059858114,0.0053149876,0.0068261838,0.0198298432,0.0136892265,-0.0140651828,-0.0449083298,0.0016328291,-0.0013241397,0.0156427231,-0.0185619127,-0.0223951899,-0.0398366079,0.0420481116,-0.0316098034,0.0199035592,0.0194760021,0.0144042801,0.0684092715,-0.0401904471,-0.0333200321,-0.0236041471,-0.0016254574,0.0230733864,-0.0060668997,0.0080867428,-0.0080277687,-0.0035623687,-0.0129004559,0.04679548,0.0123328352,-0.0305482782,-0.0182080716,-0.0300617479,-0.0353251323,-0.0184144787,0.0327303,0.006608719,0.0185029395,-0.0120748263,0.0085659027,0.0083521232,0.0151267052,-0.0257271938,-0.0316687748,0.0143379346,0.0108879842,-0.0049943193,0.0236336347,-0.0013333543,-0.034116175,-0.0495377481,-0.0055140234,-0.0258746278,0.0323174857,-0.0017590693,-0.0191663913,-0.0322290249,-0.0120232245,0.0072979718,0.0044488143,-0.0022188784,0.0309021194,0.0190926734,-0.0184439663,0.0285874102,0.006535002,0.0412224829,0.027231019,-0.0194612592,0.0074011758,0.0013877205,0.0226900578,-0.015790157,0.0074011758,-0.0454390906,-0.0183407627,0.0074306624,-0.0101581868,-0.0143453069,-0.0237368383,-0.0256682206,0.0960678458,-0.0019387541,0.0096642841,-0.0039954553,-0.0115440646,-0.0176330805,-0.0090598054,0.0333200321,-0.0499800518,-0.021510588,-0.019122161,-0.0261989813,-0.0366815254,0.017883718,0.0350302644,0.0137850577,0.0539902486,0.049036473,-0.0466185585,0.0421955474,0.0314033963,0.0288822763,0.0220560934,-0.0078877071,0.0092588412,-0.0283662584,0.0292803477,0.0352366716,-0.0225721113,-0.0133058988,-0.0136892265,0.0043492964,0.0125171272,0.0038148491,0.004998005,0.0322879963,0.0294572692,0.0150235016,0.0206849594,-0.0009094821,0.0191811342,-0.0322879963,-0.0060558422,-0.0421660617,0.0199183039,0.0403673686,-0.0086912215,-0.0339392573,-0.0151709355,0.02317659,-0.0632196069,-0.0161734857,-0.033231575,-0.0059489529,-0.0227637757,-0.0125392424,0.0475916229,0.0197118968,-0.0580889098,0.0028565293,-0.0205964986,-0.0078287339,0.0223657042,-0.0189304966,-0.0084921857,0.0175741054,-0.009089292,-0.0155542633,-0.0418122187,-0.0011426117,-0.0176920537,-0.0362981968,0.001232915,-0.0139914658,0.0180458948,0.0516313091,0.029398296,-0.0269951243,0.0230881292,0.0104014529,0.0105415154,-0.0241791401,0.0226163417,0.001304789,-0.0017996136,-0.0102687627,-0.0462352335,-0.0184144787,-0.0377725326,-0.0203458611,-0.0068519847,-0.0121485433,0.022306731,-0.0476800837,-0.003461008,0.0541966558,0.0152593963,0.0124434112,-0.0115956664,0.0149424132,-0.0210240558,0.0038037915,0.0071173655,-0.0200509932,-0.0063433382,0.021436872,0.0220266059,0.0153478561,0.01680745,0.0258746278,-0.0247246437,0.0091114072,0.0151709355,0.0173382126,-0.0045225313,-0.0021248893,0.0087059643,-0.0358264074,-0.0045114737,-0.0176183358,0.0071468526,-0.0564671382,0.0037816763,-0.0366815254,-0.0164536089,-0.0170286018,-0.00222625,0.006608719,0.0133796148,-0.0331431143,0.0081973178,-0.019844586,0.0111312503,0.0016420437,-0.003414935,-0.0144337667,0.0020898739,-0.03998404,-0.0233387668,0.0268182047,-0.0141315274,0.0059858114,0.0414878651,-0.021584304,0.0043492964,-0.0943576172,-0.0212746933,0.0081236009,-0.01999202,0.0032896162,-0.0113671441,0.0107405502,0.0117062423,0.0494787768,-0.01549529,0.0083226366,-0.0237220954,-0.0163356625,0.0161145125,-0.0014116784,-0.0035162957,0.0103129931,0.0446724333,-0.0077255298,0.0366815254,-0.0073127155,0.0094136465,-0.0443480797,0.0406327471,0.0025026884,-0.0242233686,-0.0245329812,0.0126793049,0.0261694957,-0.0065202587,0.0000341229,-0.0044119558,-0.0321405642,0.0424609296,-0.0107774092,0.0342636108,-0.0016438866,-0.006136931,0.0079319375,0.0122370031,-0.0001007272,-0.0399545543,0.0077329017,-0.0390699506,-0.0188420359,-0.019623436,0.0342636108,-0.0013831131,-0.0063986261,0.0097748591,0.0173529554,-0.0253143795,-0.0162766892,-0.0157016981,0.0012596373,0.0314623676,-0.0451442227,-0.0171318054,0.000010892,0.0272162743,-0.0123402076,-0.0020788163,-0.0005911173,-0.0346764252,0.0080203973,0.0167927071,0.0109469583,0.0125834728,-0.002416071,0.0130036594,0.0367110111,0.0323469713,-0.0134459604,-0.0024400291,0.0388045684,0.0183849912,0.0269066636,-0.0201247111,0.0264201332,-0.0408981293,0.0004892959,-0.0031698262,-0.0075559812,0.0192401074,-0.0100254966,-0.0047363099,0.0067487811,0.0055508818,-0.0021875487,-0.0145369703,0.0111754807,-0.0159965642,0.0065976614,0.0111017637,-0.0048690005,0.0141683863,-0.0072647994,-0.006210648,-0.0060484707,0.0165273268,0.0383327827,0.0294277817,-0.0085880179,0.0254618134,-0.0335264392,-0.018753577,-0.0068814717,-0.0207439326,-0.0113007994,0.0067303521,0.0060890149,0.0364161432,0.0153183695,0.0357969217,0.0035623687,0.0389225185,0.0061516743,-0.0298995692,0.0400135256,-0.024695158,0.023677865,-0.0307841729,-0.0585606955,0.0050459211,0.0058752359,0.0158786178,0.0554940738,-0.0120158531,0.0135049336,-0.0118168173,-0.0270983279,0.035708461,-0.0016097926,0.0269951243,-0.0035476252,-0.025712451,0.0156132374,-0.018252302,-0.0197266396,0.0017111533,0.0045704469,0.0068335556,0.0018733304,0.0014466939,0.0411045365,-0.0000246059,-0.00088921,0.0262284689,0.0136228809,0.0129299425,-0.0017277396,-0.0155247767,0.0106373467,0.0782578513,-0.0178984609,0.058383774,-0.0342636108,-0.0158491302,-0.0305777658,0.0191811342,0.006822498,0.0057130586,-0.0042718938,0.0058199484,0.0103129931,-0.0160555374,-0.0087723099,-0.013033146,-0.0259483457,0.0193285681,-0.0214663576,-0.0138514033,-0.0220266059,0.008330008,0.0394827649,0.0019405971,-0.0137260845,0.0349712931,0.0105562583,0.0092293546,-0.0479749516,-0.0294867549,0.0233240239,0.0273489654,0.0557299666,0.0021083029,-0.0443480797,0.0089566018,-0.0061959047,0.0289854798,0.0245772097,-0.006822498,0.0203753486,0.0247836187,-0.0029560472,0.0102540189,0.015790157,-0.0057462314,-0.0008979638,0.017677309,-0.0220560934,-0.0148318382,0.0095315939,-0.0394532792,-0.0086175045,0.0254912991,-0.003647143,-0.0028233568,-0.0357379466,0.020714445,0.0036379285,-0.0002695274,-0.0098043466,-0.0147212623,-0.0171760358,0.0032103704,0.042077601,0.0408096686,0.0347353965,-0.0340866894,-0.0130184023,-0.0270246118,-0.0012089569,0.0078139901,-0.0001338422,0.0069994186,-0.0007385511,-0.0063396525,-0.0267739743,0.0197856128,-0.0102024172,0.0256387331,0.0177805126,-0.0179721769,0.0449967869,0.0153478561,0.0082268044,0.0264791064,-0.0046773367,-0.007227941,-0.0047178809,-0.0129225701,0.0028104563,-0.0037282316,-0.0376545861,-0.0027385824,0.0278060101,0.0216285344,0.0262432117,0.0110870199,-0.0280419048,0.001041251,0.0240317062,0.0034683796,0.0123033486,0.0131142344,0.0075006932,0.0154658034,-0.0089344867,0.0041023446,-0.0060816435,0.0155395204,-0.0027570117,-0.0076591847,-0.0131216059,-0.0022815377,0.0090303188,-0.0280713905,0.0342046358,-0.0021451614,-0.0297521353,-0.0038627649,0.0025671907,0.0102466475,0.0272752494,0.0195939485,-0.049390316,0.0149350418,0.0175446197,-0.0220708363,0.0027772838,0.0005565625,-0.0010974602,0.0279829316,0.0112418253,-0.0037779906,-0.0184144787,0.0008588018,0.0345879644,-0.0380379148,-0.0027312108,0.0242823437,-0.0144632533,0.0129962871,-0.0177362841,-0.0056430278,-0.0197856128,0.0165715571,0.0206554718,-0.0330251679,0.0288085602,-0.0245477241,-0.0054292488,0.031432882,0.0051196381,0.0052560139,-0.0021746482,-0.024768874,-0.0171465483,0.0087133367,0.0006335045,0.0055471957,0.0182080716,0.054904338,-0.0201394539,-0.0042313496,0.0152299087,0.0149866436,0.0212452076,0.0295604728,0.0429916903,0.0469724014,0.0071173655,0.0282188244,-0.005377647,-0.007062078,0.0160555374,-0.0183997359,-0.0082341768,0.0117578441,0.0205227826,-0.0294425245,0.0118241888,0.0155247767,-0.0371533111,0.0079540526,-0.0077034147,-0.0080793714,-0.0034481075,0.0134312175,0.0070399628,0.0089123715,0.0066345199,0.0060521564,-0.0151709355,-0.006321223,0.028174594,0.0272752494,-0.0002674541,0.0104088243,0.0709451362,0.006424427,-0.0061590462,-0.006015298,0.0111533655,-0.004784226,-0.0194907449,-0.0108142672,-0.0080277687,0.0355905145,0.0025542902,-0.0240169615,-0.0274079386,0.016217716,0.0093251867,-0.028100878,-0.0164830964,0.0241643954,-0.012605588,-0.0283515155,0.0204638075,0.0079098223,-0.0063912543,-0.0317572355,-0.0066971793,-0.0073458878,0.0017415615,-0.0119200209,-0.0162324589,-0.0057536033,-0.0143379346,-0.0307546854,0.0338213071,0.056201756,0.0260957778,0.0324059427,0.0027367396,-0.0035715832,0.0051491247,0.0130036594,0.0026022061,-0.0256682206,0.0031679834,-0.0096716555,0.0212599505,0.0157016981,-0.0218496863,0.0023018098,0.0142494747,-0.0308726337,-0.0498031303,0.0021691194,-0.0003543018,-0.0074490914,0.0030058061,-0.000634426,0.0646349713,0.0355020538,-0.0007546766,0.0190631878,-0.0069625601,-0.0067229802,-0.0039696544,0.0217022523,-0.0132616684,0.0068482989,0.0083889822,-0.0262874421,0.0293540657,-0.0549927987,0.0043824692,0.0190042146,0.003365176,0.0166305304,0.0154805463,0.0364751182,0.0052523282,0.0349712931,0.037802022,-0.0386571363,-0.0369469039,0.0074490914,-0.0208913665,0.0236926079,0.0125466147,-0.0169106536,-0.0142199881,0.0191074181,-0.0287938174,0.0103645949,-0.01488344,0.0055656251,-0.0002741347,0.0368289575,-0.0012227789,-0.0067524668,-0.0718297362,-0.0261694957,-0.00829315,-0.0396007113,0.0018576656,0.0223657042,-0.0194170289,0.0152446525,0.0085732741,-0.0026906664,-0.018974727,-0.0257271938,0.0094431331,-0.0055877403,-0.0421660617,0.0299143139,-0.005090151,-0.0008763095,0.0163356625,0.0095610805,0.0080867428,-0.0076002111,-0.0080425125,-0.0088386545,0.0049832617,-0.0246066973,-0.0030094921,-0.0173234679,-0.0190926734,-0.0003761865,-0.0088755134,-0.0283957459,0.0162619464,-0.0007666557,0.0261989813,0.0217022523,0.0200657379,-0.0043898406,0.0118315602,0.0073569454,0.0036084417,-0.0477685444,0.0058273198,0.0118241888,-0.0648708642,0.0023957989,-0.0188420359,0.007607583,0.0504813269,-0.0108953565,0.0263021849,0.0144116515,0.0523389913,0.0105267717,0.0035236673,0.0196824092,0.045114737,0.0227637757,0.001612557,-0.0456160121,0.0010200575,-0.006535002,0.0042718938,-0.0092072394,0.0156722106,-0.0040949732,0.0200509932,-0.0421955474,0.0255502742,-0.0115661798,-0.0017839487,-0.035354618,-0.0376545861,0.0420481116,-0.0182965323,-0.0297079068,0.0043787831,-0.0052412706,0.019195877,-0.0011260255,-0.027953444,0.0029376179,0.0004245632,-0.0203016307,0.0086543625,-0.0128635969,0.0210388005,0.0112786843,0.0046662791,0.0339097679,-0.0313739069,-0.013866147,-0.0094283903,-0.010571002,-0.0022667942,-0.0319931284,-0.0092588412,0.0204048343,0.0250195116,0.026213726,-0.004850571,0.0133722434,-0.0330841392,0.0019387541,-0.0086691063,0.0046589072,0.0053407885,-0.0130257746,0.0210388005,0.0190189574,-0.0118241888,0.0006616091,0.0074454057,0.0106668342,-0.0098780626,-0.00145683,-0.0037853622,0.0111091351,-0.0196381789,-0.0104604261,-0.0013969351,0.0466185585,0.0218349416,-0.0551697202,0.0384212434,-0.0214073844,-0.0065534315,-0.0028362572,0.0158196446,0.0071210512,0.0204785522,0.0022170355,0.0119200209,0.0049832617,0.0228817221,0.0014043067,-0.0106520904,0.0094578769,-0.0151709355,-0.0224541649,0.0153478561,-0.0132985264,0.0081309732,-0.0344405286,-0.0209503397,0.0169401411,0.013328013,0.0038148491,0.0105857449,0.0276438333,0.0332020856,0.0067229802,-0.0080498839,0.012642446,-0.0277322941,0.0285284352,0.000562552,-0.0093325581,-0.0162766892,-0.0069072726,0.0200657379,-0.0065681748,-0.0110575333,0.0035826408,-0.0007058392,0.0102761341,0.0034020343,-0.0126571897,-0.0118610477,-0.0032509149,0.0180753805,-0.0187683199,-0.0383622684,0.0384802148,-0.0066308342,-0.0056209126,0.0236041471,0.0005929602,0.0077034147,-0.0027238391,0.012384437,0.0022778518,-0.0147581212,0.0076886714,-0.0388340577,0.0004791598,-0.0273637082,-0.0203311183,0.0314033963,0.0085511589,-0.0493313409,0.0456160121,0.035767436,0.0360328145,-0.0079098223,0.0154363168,-0.0069994186,0.0074564633,0.0047473675,0.0098706912,0.0073016579,0.0234862007,0.0132690398,0.019844586,-0.0023183962,-0.0065313163,0.0005091073,-0.0327892713,0.0072795427,0.0323174857,0.0027127815,0.0241643954,-0.0154658034,-0.0252848919,0.0210240558,0.0104309395,-0.006988361,-0.0130847478,0.0167484768,0.0101360725,-0.0058199484,0.0357379466,0.0098633198,0.0300027728,0.0263021849,0.0109469583,0.0414288901,-0.0030868948,0.0633965209,0.0196381789,0.0144853685,-0.0110059315,0.011013303,-0.0045962478,0.0482403301,-0.0089713456,0.0279239565,-0.0130994907,0.0426083617,0.0138808899,-0.0027809697,0.0389225185,0.0102761341,-0.0033504325,-0.0154215731,0.0106373467,-0.0176920537,-0.0042424072,-0.0046220487,0.0633965209,0.0141388988,0.0209798273,-0.0138219167,0.0061074444,0.0305777658,0.0245477241,-0.0127309067,-0.0291329138,-0.0351482108,0.0271278154,0.0233682543,0.0018963669,-0.0100844707,0.03954174,0.0145295989,-0.014994015,-0.0138882622,-0.0016346721,-0.0268919207,-0.0073827463,0.0368879326,-0.0001093083,0.0046699648,-0.0165420696,0.0080867428,0.0150898471,0.0229406953,-0.0251374599,-0.0179574341,-0.0384212434,0.0143379346,0.0069072726,0.0111754807,-0.0062364489,0.0236188918,0.0052707577,0.0184587091,0.0470903479,0.035266161,-0.0122370031,-0.0029044454,0.0114998342,0.013976722],"31":[0.0021356095,-0.0047034696,0.0527784973,0.0156342741,0.0910802707,0.0312099382,-0.0180665981,0.0162643343,-0.0035532441,0.0029469947,0.0375984497,-0.0020806626,0.0056302436,-0.0399135537,0.0492325798,0.0211582873,-0.0101395668,-0.0323528387,-0.0429905914,0.0038902529,-0.011524233,0.0429612845,0.0206454471,0.0083959131,-0.0059232945,-0.0201033037,-0.0272830538,0.056470938,0.0322649218,-0.0927799642,-0.0077731796,-0.0418476909,-0.0495549329,0.007963663,0.0423165746,0.0297739878,0.0416425541,0.0151214348,0.0304773096,0.0216857791,-0.0147624472,0.0352540426,0.0136268744,0.0152679607,0.0086962907,-0.0171288345,-0.0349902958,-0.0297300294,-0.0015696548,0.0492032729,-0.0254221801,0.0085790697,-0.0106231011,-0.0406754874,0.0260229334,-0.0443679318,-0.0036521489,0.0371881798,-0.0058317161,-0.0136635061,0.0111798979,-0.0724422187,0.0441334881,0.0458917953,-0.0007797906,0.0123447757,0.0191655401,0.0553866513,-0.0328510255,0.0217297357,0.044104185,0.0227700677,-0.0148283839,-0.0039708419,0.0260375869,-0.0517235138,-0.0118246106,0.0469467789,0.0118832206,-0.0306531414,0.0046302066,-0.0098904734,-0.0358987562,0.0096267276,0.0179200731,-0.0173486229,-0.0080149462,-0.0178321563,0.0052785822,0.0431957282,-0.0067365114,0.0332612954,0.036455553,0.0174951479,0.0217883456,0.0111066354,-0.0078171371,0.0270339604,-0.0018361481,0.0303307846,-0.0027125538,-0.0050917622,-0.008051578,-0.0067731426,0.0168064777,0.0138173578,0.0163815543,-0.0112897921,0.0113850338,0.0213634223,-0.0501996465,0.003099015,-0.0541851409,0.0226674993,-0.033906009,-0.0033096455,-0.0171434879,0.0129528567,0.0105058802,0.0192827601,-0.0323528387,-0.0083959131,-0.0296274628,0.0316788182,0.0191508867,-0.0290413611,0.010454597,-0.0453643054,-0.031942565,-0.0027052276,0.0286017843,-0.0242206696,0.0462141521,-0.0367779098,-0.0115388855,0.0086230272,-0.0188431833,-0.0227114577,0.005516686,0.0062200087,-0.0138393361,-0.0371295698,0.0345800258,-0.0171727929,-0.032001175,0.039122317,-0.0302721746,0.0513718501,-0.0088940999,-0.0202498287,-0.0157368425,-0.0305359215,-0.0570570417,-0.0550349876,0.036865823,0.0016328439,0.0300084278,0.0259203669,0.00469248,-0.0765449405,-0.0159273259,0.0293197595,-0.034609329,-0.0168797411,-0.0060624937,-0.0045203124,-0.0241913646,-0.0418476909,-0.0847503692,0.0090479515,-0.0451005585,-0.036865823,-0.0066083013,0.0322649218,0.0515476801,-0.0032473721,0.0038682739,-0.0478845425,0.0183303431,-0.0366606861,-0.0712700188,-0.0023022825,-0.0132752126,0.0031338148,-0.0206454471,-0.0000944975,-0.0632990301,0.0225502793,0.0041393461,0.0377742834,-0.0563830249,0.0553573444,0.0049305842,0.027019307,0.0092311082,-0.0610132292,0.0336422622,0.0257005785,-0.0372760966,0.0026191438,0.06353347,0.0306238364,0.054038614,0.0229605511,0.0022216933,-0.0056778644,0.0101029351,-0.0054251077,-0.0523389205,-0.0501117297,-0.0250558648,0.0123814074,0.0100589776,0.0031356465,-0.0431957282,0.0004585791,-0.0571742617,-0.0253782216,-0.0171434879,-0.0056668748,0.036983043,0.0567053817,-0.0143888071,-0.0426682346,-0.0215685572,0.0335543454,0.0032894982,-0.0157514941,0.0328217186,0.0021667462,0.0120150931,-0.0630059764,-0.0051247305,-0.0142203029,-0.0107329953,-0.0054507498,0.0323235318,-0.0244258065,-0.0054800548,-0.0229605511,-0.0254221801,-0.0212755073,-0.0046705012,-0.0062896083,-0.0110846562,0.0304773096,-0.0379208066,-0.0569105148,-0.0147184897,0.0427268445,-0.0056632119,-0.0155903166,-0.0027015645,-0.0477966294,-0.0422872677,-0.0534232073,-0.0187845733,0.0334957354,0.0011511412,0.0187406149,0.0050661201,-0.0188724883,0.0066192909,0.0136488527,-0.0415839441,0.0390344001,0.0166746061,-0.038829267,-0.0130187934,-0.0030550573,0.0359866694,0.0157514941,0.034316279,-0.0451591685,-0.0176856313,-0.0151360873,-0.0100956094,-0.0225209743,0.0151360873,0.0130920559,-0.0238103978,-0.0680464581,-0.0086743115,-0.0007422434,0.0072676665,-0.0158101041,0.0092164557,0.0223891009,-0.0144767221,-0.0305359215,-0.0026685963,-0.0051210672,0.0270046555,0.010886847,0.0093996124,-0.0006227335,-0.0203670487,-0.002236346,-0.029510241,-0.0355763994,0.0159566309,-0.0136342002,0.0192241501,-0.0196197685,0.0063299029,0.0059416103,-0.0076999166,-0.0024744498,-0.0337301753,0.0075753699,0.0092311082,-0.0072090561,0.0024634604,-0.0022967877,-0.0438404381,0.0082347346,0.0709769651,-0.0183889549,-0.0209238455,-0.0480310693,-0.0469760858,-0.0752555132,0.000112756,-0.0010128578,0.0183596481,0.0015256971,0.0079197045,0.009062604,0.0305652265,-0.0264478587,-0.0110260462,-0.006864721,0.0489688329,0.0270046555,-0.0250851717,-0.0625957102,0.0000442152,-0.0124619966,-0.0323528387,0.0075680437,-0.024469763,-0.0169676561,-0.0721491724,0.0186380483,0.0358108394,0.0168211311,-0.0038646108,0.0136561794,0.0268581305,0.0035001286,-0.0292611476,-0.0101468926,0.0131213609,0.0245869849,0.0332319885,0.0006689806,-0.0097805792,-0.0082127564,-0.0186820049,-0.0061504091,-0.0194439385,0.023312211,0.0367192961,-0.0024506394,-0.0098904734,0.0109308045,-0.0397084206,0.0194878951,-0.0026319649,-0.0029067001,0.028147554,0.0001516768,-0.0128502892,-0.001415803,-0.0499945097,-0.0127916792,0.0399135537,0.0212462023,-0.0065643438,0.0264478587,0.0307410564,0.0347265489,0.0173632745,-0.0069343206,0.0278691556,0.0445144549,0.0084691755,0.0298325978,-0.0665812045,-0.028176859,0.029246496,-0.0102274818,-0.0157661475,-0.0266529936,-0.0415839441,0.0058939895,0.0043481453,-0.0007440749,0.0331440754,0.0018306534,0.0153119182,0.014740468,-0.0444265418,-0.0258471034,0.0007129383,0.004285872,0.008022273,0.0158394091,-0.0161764193,-0.0309461914,-0.0234147795,0.0004922342,0.041320201,-0.0226968043,0.0194439385,-0.0182717331,-0.0500531197,0.0670500845,0.0106743854,0.0744349658,-0.0273270123,0.0131946243,-0.041378811,-0.0135169802,-0.0361918062,0.0672845244,0.0352833495,-0.0400600806,-0.0180079881,-0.0544781908,0.0144107863,-0.0077292216,0.0243671965,-0.0025293969,-0.0176416747,0.0238103978,-0.0165720377,-0.0251730867,0.0330561586,-0.001729917,-0.0305652265,0.0184036065,0.013956557,-0.0211875923,-0.0255247466,-0.0222572275,-0.0278251991,-0.0287776142,-0.0043188399,-0.0041539986,0.0351368226,-0.026814172,-0.0207773205,0.0194439385,-0.0579654984,-0.0417597778,0.0513425469,-0.0194585901,0.0183743015,-0.0108721945,-0.0571156517,0.0336715654,-0.0275761057,-0.0174218863,-0.039356757,-0.039298147,0.0632990301,-0.0000440149,0.0310634132,-0.0116780847,-0.0078024846,0.0245869849,-0.0089746891,-0.0314736851,-0.0123008182,0.038829267,0.0089453841,0.0310048014,0.0140298195,-0.0454522185,0.0275907572,-0.0162057243,-0.0325579718,0.0757243931,0.0184329115,-0.0014341186,0.0081394929,0.0338767022,-0.0155756641,-0.0004171399,-0.0113484021,-0.0137733994,0.0556503981,-0.0180812497,-0.0249972548,0.0119857881,-0.0652331635,-0.0536869541,0.0068207635,0.0051210672,0.0435766913,0.0059965574,0.0087475739,0.0446316749,-0.0090039941,0.0015220339,0.0014231292,-0.0077805058,-0.0019799261,-0.0552108213,0.0038133268,0.0272244439,0.0315615982,0.0290120542,-0.0214806423,0.0201619137,0.014564638,0.0087768789,-0.0098391892,0.0125352591,-0.0194439385,-0.0353712626,-0.0104692494,-0.0004876553,-0.0205428787,0.0072859819,-0.0599875525,-0.0111212879,-0.0013810032,-0.008659659,0.0111798979,-0.0510788001,0.0121982507,0.0123008182,-0.0487636961,0.0091871507,-0.0132678868,-0.0298179463,-0.0164694693,0.0274588838,0.0266090371,0.0305945314,0.0208505839,0.0162203759,0.0220227875,0.002503755,-0.0029524895,-0.0074398336,-0.0049782051,0.0257591885,0.0174511913,-0.038946487,0.0221400075,-0.0136708319,0.0255833585,0.0413495041,0.0244551115,0.0161617659,0.0133631285,-0.0032968244,0.0019872526,-0.0174658429,0.0051174043,0.00920913,0.0166892577,0.0161764193,0.0010659732,-0.0057401378,-0.0519872569,0.0270339604,0.0097439475,0.0034909707,0.0054983706,0.0175830629,0.0082786921,-0.0037986743,-0.0474156626,-0.014593943,-0.0052346247,0.0095974226,-0.026843477,-0.0175684113,-0.029363716,0.0431664214,-0.0160445459,0.0153265707,0.0240594912,0.0106890379,0.0482948162,-0.0319132619,-0.0227700677,-0.0116634322,-0.002049526,0.0079270313,-0.0042455774,0.029510241,0.0023608927,0.0020202207,-0.0251730867,0.0287776142,0.0217736941,0.0049379105,-0.0067438376,-0.0355177894,-0.0282940809,0.0276054107,0.0007797906,0.0123887332,0.0411736742,-0.0058573582,0.0399721637,-0.0017986009,0.0002667223,-0.0421993546,-0.0325872786,-0.0059123053,-0.0087475739,-0.0224916693,0.0130480984,-0.0191508867,-0.0383603834,-0.0373053998,-0.0289241392,-0.0419356078,0.0223597959,0.0001343914,-0.0021667462,-0.0262134168,-0.0363676362,0.0183010381,0.0022564931,0.005011173,0.0374226198,0.0511081032,-0.010945457,0.0259936284,0.0259789769,0.036924433,0.0168064777,-0.0115315588,0.0125865433,0.0206894055,0.0056595486,-0.0047877217,0.007282319,-0.048793003,-0.0118758939,0.0111286137,-0.0117366947,-0.036865823,0.0001967792,-0.0323821418,0.0808820948,0.0187699199,0.0128136575,0.0081761247,-0.0190629717,-0.0271511804,-0.0217150841,0.0172607079,-0.0472984426,-0.0092311082,-0.0198542103,-0.0101395668,-0.036689993,0.0216418207,0.0355177894,0.0128942467,0.0445437618,0.0327338018,-0.032177005,0.0332319885,0.0351661257,0.0255540516,0.0246895514,-0.0031887619,0.0005462655,-0.0174511913,0.0326165818,0.0612476729,-0.0225502793,0.0173046645,-0.0119857881,-0.001139236,-0.0062163458,-0.011524233,-0.014652553,0.0270046555,0.0227847192,0.0337301753,0.0149749089,-0.0026814172,0.0129382042,-0.0327338018,-0.0063921763,-0.0501996465,0.0191948451,0.0383310802,-0.0250998233,-0.0373640098,-0.0012308145,0.012190924,-0.0703322515,-0.0313857682,-0.0272537488,-0.0084984805,-0.0124253649,-0.0315615982,0.0500531197,0.0023224296,-0.0329096355,0.0052053193,-0.0192094967,0.0095974226,0.0253342651,-0.0093116974,-0.0292318426,0.0279131141,-0.0240155347,0.0011685411,-0.0446609817,-0.0144987013,-0.031883955,-0.0447195917,0.0406168774,-0.0067438376,0.0212462023,0.0297593344,0.0301549546,-0.0139199253,0.0028261112,-0.0095974226,0.0130554251,-0.0034580026,0.0172753595,-0.0004494213,0.0023480717,-0.0112385079,-0.0396791138,-0.0015476759,-0.041496031,0.0015128761,-0.0155317066,-0.0349609926,-0.0033078138,-0.0573500916,0.0082127564,0.0051174043,0.0386241302,0.005428771,-0.0182717331,0.0146452272,-0.0017528117,0.0122055765,-0.0150042139,-0.0247774664,-0.0029982787,0.0082347346,0.0068757106,0.0117513472,0.0110993087,0.0083812606,-0.0474449657,0.0187552683,-0.0028187849,0.0264332052,-0.0331440754,-0.0133851068,-0.0077658533,-0.068749778,-0.0070808465,-0.0006085389,0.0012912563,-0.0117147164,0.0415253341,-0.0089820148,-0.0068244264,-0.0102274818,-0.0000565783,-0.0038060006,0.0194292851,-0.0033938976,-0.0019542843,-0.0205868371,0.006095462,0.0071504461,0.0095388116,-0.0118905464,-0.0053848131,-0.028235469,-0.0153998332,-0.0019231476,-0.0061394195,0.0419356078,0.0057694428,-0.0165134277,0.0157954525,-0.0982307121,-0.0307996664,0.0400600806,-0.0213927273,-0.0102714393,-0.0039818315,0.0261548068,0.0383017734,0.0266383421,-0.0221107025,-0.0110260462,-0.0536283441,-0.0173046645,-0.0057035061,-0.0378328934,0.0133558018,0.0339353122,0.0227407627,0.0182570815,0.0329682454,0.0015192865,-0.0121762715,-0.031708125,0.0613062829,0.0218909141,-0.0145499855,-0.0109088253,0.0495842397,0.0059635891,-0.0408806242,0.0169823095,-0.0182570815,-0.0053042243,0.0087182689,-0.0079197045,0.0222425759,-0.0022931246,-0.0154877482,-0.0011328255,-0.0010742153,-0.0070771831,-0.0489981361,0.0203230903,-0.0634748563,0.0159712825,-0.0402945206,0.0133997593,0.0267702136,-0.0109967412,-0.0106597319,0.0274588838,-0.0103593552,-0.0183889549,-0.0050478047,0.004589912,0.0087695532,-0.0517528169,-0.0206601005,-0.0179640297,0.0150481723,-0.0258764084,-0.0001457242,0.0004098136,-0.036572773,-0.0205721837,-0.0055679702,0.0158247575,0.0243378915,0.0049195946,-0.0047437642,0.0383017734,0.0351368226,0.0152093498,-0.0277226306,0.0121249873,-0.0020092314,0.0180079881,-0.0174658429,-0.0059562628,-0.0089380573,0.0121689457,-0.0109527837,-0.0269753505,0.0112092029,-0.0150921298,-0.0185940899,-0.0012189093,-0.0047107958,-0.000123402,-0.0128209842,0.0143961338,-0.0078610945,-0.0195611585,-0.0001153316,0.0033041507,0.0166599527,-0.0000590681,-0.0069196681,-0.0191655401,-0.0021044728,0.0458038822,-0.0075826962,0.0037272433,-0.0033352873,-0.0186526999,-0.0189164467,-0.0020751678,-0.0200886503,-0.0024689552,0.0180079881,-0.0190336667,0.0118392631,0.0272390954,0.034140449,0.0201619137,0.0175244529,0.0103886602,-0.0088940999,0.0212755073,-0.0397377238,0.0192974117,-0.0397670306,-0.0247774664,0.0224770159,0.0076266536,0.0305652265,0.043693915,0.0088135106,0.0130480984,-0.0142349554,-0.0132312551,0.0518114269,-0.0075607174,0.0482362062,0.0029781314,-0.025803145,0.0163669009,-0.0088647949,0.0135609377,0.0102128293,0.0044140816,0.0141177345,-0.0044323974,0.0187406149,0.0275321472,-0.0152972657,0.0177295897,0.0099490834,0.0016539069,0.0221253559,0.0050917622,-0.0306238364,0.0004127899,0.0743177459,-0.0194292851,0.0675775781,-0.0264918152,-0.014103082,-0.0290853176,-0.0012518775,0.0185647849,0.0220227875,0.0027839851,-0.0187992249,0.0104033127,-0.0108721945,-0.0236492213,-0.0035385916,-0.0335543454,0.0287776142,-0.0174804963,-0.0333785154,-0.0120004406,0.0082420614,0.036279723,0.0146012688,-0.0133338235,0.0420528278,0.0182717331,-0.0002461171,-0.036924433,-0.0079490105,0.0262134168,0.0300377347,0.0329682454,-0.0146965105,-0.0364848562,0.0144327646,-0.0116854114,0.0257005785,0.028264774,-0.0148137314,0.0097366218,0.0201033037,0.0090845833,0.0275028422,0.0134290652,0.0103447028,0.001615444,0.008630354,-0.0160591975,0.0202351753,0.0132312551,-0.0468002558,0.007414192,0.0450126417,0.0055752965,0.0180372931,-0.0452177785,0.0400014706,0.0179933347,0.0288069192,-0.0005705338,-0.0155317066,-0.0055056969,0.0121835982,0.0218029991,0.0424924046,0.0039781681,-0.034081839,-0.0126891108,-0.0296860728,-0.0066632484,0.0267555621,-0.0326751918,0.0359280594,-0.0072933082,0.0192827601,-0.0113044446,0.0161031559,0.0057840953,0.0442214049,0.0182277765,0.0173779279,0.0330854654,0.0145133538,0.0017454854,0.0275467988,-0.0093996124,0.0015366866,0.0174365379,-0.0178175047,0.0156635791,-0.0101542193,-0.0314736851,-0.0056046015,0.036924433,0.0123521024,0.0371588729,-0.0194732435,0.0071797511,-0.0137001369,0.0131140351,0.0205135737,0.0375105366,0.0121469665,0.0130407726,0.0126891108,0.0054983706,0.0002685538,-0.0253928751,0.0283380374,0.0074874545,0.0048243529,-0.0127330683,-0.0031100044,-0.0054104552,-0.0095974226,0.0186820049,-0.0029012056,-0.0217736941,0.0288655292,0.0112238554,-0.0096047483,0.0107183428,0.0371295698,-0.0691600516,0.0004501081,0.0164548177,-0.0346972458,-0.0109014995,-0.0009569949,-0.0203817021,0.0107769528,0.0372467898,-0.0114289913,-0.0239422712,-0.0014899815,0.0259789769,-0.0321477018,-0.0187113099,0.0135975694,-0.0091871507,0.0386534333,-0.0356350094,0.0002626012,-0.0053884764,0.0130774034,0.0043591345,-0.0220081341,0.0197662935,-0.0284406058,0.0055056969,0.028206164,0.0178028513,0.007414192,-0.0111945504,-0.0157075375,-0.0185794365,0.0303307846,-0.0061394195,0.0073336028,0.0115755172,0.0514011569,-0.0011126782,-0.0024817763,0.0278105456,0.0203230903,0.0371295698,0.0420235209,0.0201619137,0.0337301753,0.0309754964,0.0306238364,-0.0126011958,-0.0073958761,0.013956557,-0.0028664058,-0.0113410763,0.0128356367,0.0022729773,-0.0182717331,0.0165134277,0.0468295589,-0.0142422812,0.0177588947,0.0183743015,-0.0095754433,-0.0034396867,0.0069160052,0.0205575321,-0.0006245651,0.0095021809,-0.0214513373,-0.0283819959,0.0077072429,0.0264185537,0.0210703705,-0.0022638193,0.0258764084,0.06365069,0.0009689,-0.0164841227,-0.0045276387,0.0169676561,0.0095534641,-0.0131433401,-0.0148357097,-0.0074105286,0.0266676471,-0.0043261661,-0.0101908511,-0.0334664322,-0.0053262031,-0.0025806809,-0.0118319364,-0.0080882097,0.0267555621,0.0068793735,-0.0215832107,0.0229019411,0.0137294419,-0.0074508232,-0.0352833495,-0.0113484021,0.0026466174,-0.0039818315,0.0083153239,-0.0219348725,0.006806111,0.0196197685,-0.0179347247,0.0170409195,0.043928355,0.0114216655,0.0029836262,-0.0131067084,0.0157221891,0.0201912187,0.0138686411,-0.0066485959,-0.0397084206,-0.0157368425,0.0048976159,-0.014681858,0.0205282271,-0.0217736941,-0.0104839019,-0.0012482144,-0.0348437726,-0.0305945314,-0.0135902427,-0.0117220422,-0.0232096445,0.0067841322,0.0065973122,0.0669328645,0.0178321563,-0.0037144222,0.0378915034,-0.0126671325,0.0006190704,-0.0095241591,-0.0036155174,-0.0494963229,-0.0220813975,0.0254221801,-0.0166599527,0.0202058703,-0.0615993328,0.0134290652,0.029217191,0.0189604033,0.0034506763,0.0158833675,0.0291439276,0.0047657429,0.0392102301,0.0253635701,-0.0385069102,-0.0303893946,0.0063958396,-0.0434008613,0.0514304601,-0.0067987847,-0.0091724982,0.0026594384,0.0082493871,-0.0228726361,0.0153558757,0.036279723,-0.005300561,-0.0163962077,0.0155903166,-0.0108428895,-0.0085277855,-0.0410564542,-0.026843477,0.0168357827,-0.0374226198,0.0164987743,0.0168943945,-0.0112678129,0.0326165818,0.0327044986,-0.0036668014,-0.0234733894,-0.0334371254,-0.0020476943,-0.0023901977,-0.0623026565,0.0224916693,0.0188138783,0.0178175047,0.0234001279,0.0265357736,-0.0044800183,-0.0081687979,-0.0167332161,-0.0273416638,0.0267409086,-0.0213927273,0.0004313345,0.0118612414,0.0098977992,0.0105864694,0.0139492303,-0.0153119182,-0.0040624202,0.006835416,0.0260668918,-0.0190922767,0.0247774664,-0.0119784623,0.0062419875,0.0297739878,0.0169090461,-0.0311220232,0.036865823,-0.0052346247,-0.0387999602,0.0158687141,-0.0337301753,-0.0015962125,0.041496031,0.0180079881,0.0271511804,0.0116048222,0.043693915,-0.00303491,-0.0139712095,-0.0000454458,0.0589325689,0.0001256914,0.0244551115,-0.0364848562,0.0119125256,-0.0200007353,0.0044470499,-0.0068683843,0.013985862,0.0143228704,0.0076413066,-0.0208505839,0.0190336667,-0.0308289714,0.0084252181,-0.0417890809,-0.0332319885,-0.0013187298,-0.0016795489,-0.006487418,0.0227993727,-0.0170116145,0.031649515,-0.0062126825,-0.0546540245,-0.007095499,-0.0165866893,-0.0104619227,0.0301256496,-0.0148796672,0.0058427057,0.0309168864,0.0197223369,0.0190776233,-0.0289387926,-0.004055094,0.0008960952,-0.0153412232,-0.0057218219,0.0040697465,-0.0274295788,0.0475914925,0.0206894055,0.0353712626,0.0010705522,0.0228579827,-0.036455553,-0.0028664058,-0.0281622075,-0.001338877,-0.0249239933,-0.0159273259,0.010886847,0.0148650147,-0.002503755,0.0118099581,-0.0015513391,-0.0059892312,0.004212609,0.0010842889,-0.0241620596,0.0266090371,0.012161619,-0.0135169802,0.0097439475,0.0458331853,0.0056668748,-0.0294662844,0.0277958941,-0.0185208265,0.0039671785,-0.0086230272,0.0132019501,0.0004707133,0.0412322842,0.0037217485,0.0304773096,0.0085937222,0.0078684213,-0.0155756641,0.0149382781,0.0002930511,-0.0191655401,-0.0114216655,0.0143668279,-0.0211875923,0.0422579646,-0.0390930101,-0.0429612845,-0.023312211,0.0158687141,-0.0043591345,0.0341111422,0.0031338148,0.0054067923,0.0060734833,0.0056925169,0.0142642604,-0.0221986175,0.0100736301,-0.0033847399,0.0075680437,-0.0206161421,0.0143155446,0.013319171,-0.0122641865,0.0111725722,0.0055533177,-0.0215246007,0.0043627978,0.0004711712,-0.0177881997,-0.0020348732,0.0052089826,0.0254221801,-0.0221546609,-0.0450712517,0.0387120433,-0.0217883456,0.0188578349,0.0119198523,0.0013059088,0.0116487797,0.0091651715,0.0188431833,0.0210996773,0.0196783785,-0.0049122684,-0.0324700586,-0.0096120751,-0.0330854654,-0.0195318535,0.014593943,0.0118685681,-0.0309461914,0.0089234049,0.0129015725,0.0259350184,-0.0080076205,0.0215099473,-0.0105791437,0.0161324609,-0.0077145691,0.0061284304,0.0242060181,0.0394153669,0.0023956925,0.0054947073,0.0010623101,0.0226381943,0.0089307306,-0.0212462023,0.0201033037,0.0012610353,-0.0076046749,0.0272097904,-0.0051137409,-0.0082274089,0.0181398615,0.0031191623,0.0146891847,-0.0079563363,0.0128649417,0.0016822963,0.0144693963,0.0415839441,0.0176416747,0.0211289823,0.0197223369,0.012278839,0.0195611585,-0.0024945971,0.0405289605,0.043693915,0.0154144857,-0.0142129762,-0.0012124988,-0.029305106,0.0394153669,-0.0032840034,0.0167185627,-0.0218616091,0.033906009,0.0182131231,0.0094948541,0.0382724702,0.0353419594,-0.0252170432,-0.0178175047,0.0492618829,-0.0201179553,0.0145060271,0.0063262396,0.0330854654,-0.0077438741,0.0146745322,-0.0234147795,0.0047291117,0.00619803,0.0374519266,-0.0230338126,-0.0230924245,-0.0261987653,0.0032235617,0.0253196117,0.0029524895,-0.0251291282,0.0299498178,0.0448661186,0.0097586,-0.009062604,0.0036631383,-0.0214513373,-0.0027784903,0.0355177894,-0.0117659997,-0.0199421253,-0.0227993727,-0.0078098108,0.0073555815,0.0125792166,-0.0227847192,0.0026759226,-0.034081839,0.0165573843,0.0131433401,-0.0022418406,0.0129308784,0.0186087415,0.028030334,0.0128942467,0.0161471143,0.0398842506,-0.0072273719,0.003498297,0.0357229225,0.0119784623],"32":[-0.0199733954,-0.0166101772,0.0478812382,0.0075706714,0.0494736172,0.0453004837,0.0220599622,0.0080579948,-0.0112839388,0.0042074537,0.0468105003,0.0139127392,-0.003685812,-0.0163219012,0.0376680382,0.0215383209,-0.0058993581,-0.020234216,-0.0008172104,0.0300355926,-0.0179280099,0.0176122785,-0.0043893424,-0.0021397613,0.0283608474,-0.0171318185,-0.0272351988,0.0216755942,0.075555712,-0.0730298683,0.0106867952,-0.0452455729,-0.0240778923,-0.020522492,0.0389035046,0.0285804868,0.0271391068,0.0262193698,0.0242014397,0.0094238734,0.0014696917,0.0094101457,0.0017399504,0.0029702703,0.0169259068,-0.0174063668,-0.0309690572,-0.0361580215,0.0052610333,0.0403037034,-0.0112496195,0.0600162745,-0.0118673537,-0.0418137163,0.0197263006,-0.0117300795,0.0096160574,0.0455201194,0.0199871212,-0.023515068,0.0207970403,-0.0718218535,0.0429119132,0.0289923083,-0.0087100472,0.0194380246,-0.0044888658,0.0648483261,-0.0173240025,0.0284157563,0.0370365754,0.0366796628,0.0020059191,-0.009348372,0.0596868172,-0.047030136,0.0021071588,0.0256016366,-0.0026408122,-0.0420882665,0.0220874175,-0.0130753666,-0.0068705734,0.0418411717,0.02967868,-0.0142765157,-0.04722232,0.0054909675,-0.0161434449,0.0271665622,-0.0078658108,0.0434884615,0.0001549697,0.0067916405,0.0222796015,0.0055733323,0.0153335268,-0.0085315909,-0.0188340191,0.0061224289,0.0161709003,-0.0009789366,-0.0104534291,-0.0169396345,0.0356089249,0.0182300117,-0.0044339565,-0.0024417646,0.0050963042,0.024187712,-0.041621536,0.0235287957,-0.0451632068,0.0256016366,-0.0179554634,0.0104740206,-0.0022255578,0.004914416,-0.0001859636,0.0109956628,-0.0297610443,-0.0022478648,-0.0288275797,0.0062116571,0.0003283856,-0.0383818634,0.0142490612,-0.0429942757,-0.0278529339,-0.0085933646,0.040276248,-0.0028432917,0.0517249145,-0.0385740474,0.0139607852,-0.0007944744,-0.0580944382,-0.0079138568,-0.0127047263,0.0237209797,-0.0101376986,-0.0082089966,0.0297335889,-0.00590279,-0.0491716154,0.0444219261,-0.029294312,0.0639697686,-0.0238857083,-0.0210853163,0.004722232,-0.0248054452,-0.0348127335,-0.0210990421,0.0317103378,-0.0209343135,0.0324516185,0.0401115194,0.0008643984,-0.0649032369,-0.0204538535,0.0118879452,-0.0360207483,0.0167062692,-0.01483934,0.0114623951,-0.0441748351,-0.0225816034,-0.0892282203,-0.0309690572,-0.0263429172,-0.0527132899,0.0073784878,-0.0122242663,0.020810768,0.0082982248,-0.0319299772,-0.0463712215,0.0262468252,-0.0327536203,-0.0679232702,0.0103161549,-0.0194105711,0.0371463969,0.0047565508,0.0009909481,-0.0490343422,0.0197949372,0.0067641856,0.0448337495,-0.0517523699,0.0197125729,-0.0077834465,0.0310788769,0.0085453186,-0.0576002486,0.04818324,0.0286353957,-0.0464261323,0.0394251458,0.0556235015,0.0577649772,0.0432413705,0.0238445271,0.0092660077,-0.0173102748,0.0070764846,0.0081266323,-0.0380524062,-0.0274136551,-0.0283608474,0.0024143099,0.0058478806,-0.0305297803,-0.0301728677,-0.0109064346,-0.0583140738,-0.0106318863,-0.0330556259,-0.0285530314,0.0275372025,0.0426373631,0.0322045237,-0.0131096849,-0.0055149905,0.0225129668,-0.0093346452,-0.0218952335,0.0345381871,0.0085521815,0.0278392062,-0.0284981225,-0.0363776609,-0.0291295834,-0.0081540868,-0.000283986,0.0263291895,-0.0112427557,-0.01850456,-0.0435982831,-0.0253819972,-0.0085933646,-0.0032636938,0.0060194731,-0.0049555982,0.025340816,-0.031408336,-0.0757204443,0.0382994972,0.0427197292,-0.0197674837,-0.0163768101,-0.0121624935,-0.0383269526,-0.0588082634,-0.0599613674,-0.0106387492,0.050297264,0.0288275797,0.0208794046,0.0038402455,-0.0401389748,-0.0298983175,-0.0072549409,-0.018216284,0.0439551957,0.02967868,-0.0179829188,0.0012963831,-0.0152374348,0.0577100702,0.0445592031,0.0391780548,-0.0344832763,-0.0189575665,-0.0056316736,-0.0178868268,0.0027060173,0.006311181,-0.0113868937,0.0031264196,-0.0518896431,-0.0033529222,0.0089365495,0.0465084948,-0.0134391431,-0.0020196466,0.0326712579,0.0245446246,-0.0401115194,0.0340714529,0.0171180908,0.0288275797,0.0049178479,-0.0272077452,0.0274685659,-0.0438728295,-0.0146883382,-0.0447513871,-0.0356089249,-0.0267410129,-0.0217854138,0.0399467908,-0.0148667945,0.0143314255,0.0277293865,-0.0134048248,-0.0019921917,-0.0332478099,0.0187791083,-0.0015177377,0.0042417725,0.0130410483,-0.0332203545,-0.0176809151,-0.0221972372,0.0520269163,-0.0273862015,0.0122448578,-0.056666784,-0.0130616389,-0.0778070092,-0.0027763704,0.0162395369,0.0071176668,0.0099317878,-0.000518639,0.01483934,0.0137823289,-0.0057346295,-0.0053605572,-0.0053056474,0.0161709003,0.0166239049,-0.0257114563,-0.0655072406,-0.0112015735,0.0018566335,-0.005806698,0.0404409766,-0.0275234748,0.0247368086,-0.0672643557,0.0041010664,0.0083668614,0.0173926391,0.0546351261,0.0264664646,0.0175299142,-0.006118997,-0.0171867292,0.019177204,0.0199184846,0.0080991769,0.0585337132,-0.0107828872,-0.0154570742,-0.0271665622,-0.0014671179,0.0063454993,0.0030646464,0.0114143491,0.0375033095,-0.0168709978,-0.004698209,0.0239131637,-0.0518347323,0.0134322792,0.0151687982,-0.0074883071,0.0245995354,0.0114967134,0.0106936591,-0.0422529951,-0.037201304,-0.0189575665,0.0273450185,0.0412097126,0.0019269864,0.0175024588,0.0138509655,0.0169808175,0.0181888305,-0.0144961542,0.0320397951,0.0343734585,0.0054188985,0.0691861883,-0.0429942757,-0.0495834388,0.0133499149,-0.0039294735,0.0033529222,-0.0109887989,-0.0239406191,0.0356638357,0.0069941198,0.0085109994,0.0244622603,-0.0000235404,0.0244485326,0.0074608522,-0.0313534252,-0.0403586105,-0.020234216,0.0264939182,0.0092248255,0.0142216058,-0.0184908342,0.000128909,-0.0085453186,-0.0075843991,0.0235013403,-0.0514778197,0.0251898132,-0.0317652486,-0.0549096763,0.0604555532,0.0047428231,0.0559255034,-0.0247779917,-0.0047531188,-0.0310788769,0.0068122316,-0.0565569662,0.0786855668,0.0374483988,-0.0273038354,-0.0200832132,-0.0169808175,0.0042863865,-0.0230895188,0.0331654437,-0.0224168748,0.01228604,0.0134734614,0.0181888305,0.0190124754,0.0448886603,-0.0284981225,-0.0379974954,0.0196713917,-0.0023422409,-0.0223070551,-0.0331928991,-0.0081540868,0.020330308,-0.0249289926,0.0283883028,-0.0135970088,0.0513954572,0.0156355295,-0.023322884,0.0265213735,-0.0276058391,-0.0520269163,0.0458770357,-0.0170906372,0.05935736,0.0052164192,0.0020230783,0.0106044309,-0.060126096,0.0007009563,-0.0168023612,-0.0111741191,0.0337145403,0.0063763862,0.0020505332,-0.0065445472,-0.0091630518,0.0014293675,-0.0032877168,0.0401115194,0.0169121809,0.0252584517,-0.0140843317,-0.0106112948,-0.0239543468,-0.0687469169,0.0411548018,-0.0591926314,-0.0022564444,0.0407429785,-0.0146334283,0.0513954572,0.0279215705,0.0075294892,0.0082158605,-0.0012260301,-0.0240778923,-0.0103916563,0.0655072406,-0.0166239049,-0.0117987162,0.0259585492,-0.0789052024,-0.0243524406,0.0280862991,-0.0242288951,0.0403586105,0.0155394385,0.0273862015,0.0253545418,0.002623653,-0.0177083705,-0.0164317209,-0.0173102748,-0.0012895194,-0.0411822572,-0.0127527723,0.025629092,0.0395349674,0.0227463339,-0.0124713602,0.0428570025,-0.0095611475,-0.0056865835,0.0042177495,-0.0260820966,-0.0082776332,-0.0291570369,0.0125880428,-0.0085865008,-0.0288001243,0.0280176625,-0.0400566086,-0.0453279391,-0.0066337753,-0.0006923767,-0.0036961075,-0.0338792689,0.0541134849,-0.002479515,-0.0386289582,0.0071588489,-0.0053571253,-0.0093140537,-0.0055218544,0.0262605529,0.0104328385,0.0422255397,-0.0095817382,-0.0089022312,0.0286903065,-0.0079619028,0.0084217712,-0.0051443502,0.0055115586,0.0020162147,0.0286353957,-0.0235425234,0.0382994972,-0.0141392415,0.02361116,0.0414568037,0.0142902434,0.0267272852,0.0055733323,0.0085109994,-0.0056007868,-0.0086414106,-0.0034061158,-0.0119909002,-0.0120526738,0.014262788,0.001842906,-0.0207833126,-0.0482381508,0.0280176625,0.0012629225,0.0152511625,-0.0122036757,0.0195341166,0.0081472229,-0.0299532283,-0.029294312,0.0123272222,0.0025704592,-0.010405384,-0.0355814695,0.0044854339,-0.0135352351,0.0532349311,-0.0561451428,0.0103298826,0.0257526375,-0.0108377971,0.0106456131,-0.0370914862,-0.0159100778,-0.004602117,-0.0094238734,0.0090463692,0.0040564523,0.0365973003,-0.0207970403,-0.0109819351,-0.0403860658,0.0300081372,0.0220874175,0.0146883382,-0.0064484552,-0.0135077806,-0.0510110892,0.0202753972,-0.0087992754,0.0076804911,0.0424177237,0.0170494542,0.0317103378,0.0112702111,-0.0108446609,-0.0502148978,-0.0232679751,-0.0221972372,-0.0099592423,-0.0233503394,0.0375582166,-0.0535918437,-0.0211264975,-0.0481008776,-0.0409626178,-0.0165964495,0.0332203545,0.0162532646,-0.0274411105,-0.0381347686,0.0053399662,0.0409900732,0.0099592423,-0.0013015309,0.0282784831,0.0184221957,-0.0038917232,0.0306395981,0.0258761849,0.0317652486,0.018792836,-0.0164317209,0.0397820584,0.0218540505,0.0315730646,-0.006407273,0.0032774212,-0.0084492266,-0.0163630825,0.0030921011,-0.0294041317,-0.0181201939,0.0233777948,-0.0451906621,0.0406331606,0.0247505363,0.0032877168,0.0067985044,-0.0321496166,-0.0330830812,-0.0278392062,0.0137891928,-0.0575453416,-0.0148667945,-0.0222658738,-0.0158688966,-0.0143726077,0.0230071545,0.0166239049,0.0194380246,0.0587533526,0.0402213372,-0.0155257108,0.0330281705,0.0557607748,0.0146746105,0.030447416,0.0275372025,-0.0089640049,-0.0341538191,0.0041216575,0.097903952,-0.0144000622,0.0139470575,-0.0365973003,-0.0124233142,-0.0007022433,-0.0010981935,-0.0092728715,0.0134665975,0.0167886335,0.0236386154,0.0054738084,-0.000991806,0.0074402611,-0.0169396345,-0.0107348412,-0.0200557597,0.0138715571,0.0268096495,-0.0118261715,-0.0083737252,0.0037853357,0.0083462708,-0.0746771619,-0.0486225188,-0.0279352982,0.000113144,-0.029486496,0.0141804237,0.0106044309,-0.0328634419,-0.0226502419,0.0444493815,-0.0286628511,0.0009163052,0.012862592,-0.0115447594,-0.0434610099,0.0147707025,-0.0017296547,-0.0430491865,-0.0486225188,-0.0118124438,-0.0131028211,-0.0314632431,0.0540311225,-0.0128969103,0.0182574671,0.0335772671,0.0286903065,-0.0212774985,0.0007121098,0.0087580932,0.0392878726,0.0046192766,0.0147707025,0.0272489265,0.0115928054,0.0047805738,-0.0325614363,0.014070604,-0.0350323729,-0.0155531652,-0.0096709663,-0.0171180908,0.0220325068,-0.0480459668,0.0149766142,-0.0097601945,0.0228286982,0.0167199969,-0.0351971015,0.011661442,-0.0046570268,-0.0111123454,-0.0080785863,-0.0269194692,-0.014743248,0.0080511309,0.0035279468,0.0320123397,0.0163493566,-0.0004219036,-0.0387113206,0.0347852781,-0.0010947617,0.0235287957,-0.0497481674,-0.046453584,-0.0112015735,-0.0638599545,-0.0149079766,0.003950065,0.0001017223,-0.0087375017,0.0336596295,-0.0191222951,-0.0018926678,0.0016987681,0.0147569757,-0.0103916563,0.0082501788,0.0251760855,-0.0186830163,-0.0323418006,-0.0202479437,0.0240641646,0.0401938818,-0.0295963157,-0.0165689941,-0.0246544443,-0.0116271237,-0.0184633788,0.0025944822,0.0267272852,-0.007948176,-0.0131508671,0.01435888,-0.1146514043,-0.0185457431,0.0542782135,-0.0171043631,-0.0247917194,0.0072000311,-0.0235013403,0.0541683957,0.0134254154,-0.0247917194,0.0103710648,-0.0542782135,-0.015896352,-0.0169259068,-0.0188614745,0.0380524062,0.0362403877,0.0158277135,0.0197263006,0.0009746468,-0.0022495808,0.0034335707,-0.0175848231,0.0470850468,0.0350598283,0.0139882397,-0.0169670898,0.0606202818,0.0053331023,-0.0356912874,0.0036720845,0.0195752997,-0.0008142075,0.009876878,-0.0126978625,0.0259310938,-0.0138578294,0.0045472076,0.0051752371,-0.0160198975,-0.0069735288,-0.0576002486,0.003541674,-0.0306395981,0.0307768732,-0.0372287594,0.0136862369,-0.0003832953,-0.0011222165,-0.001250911,0.0246407166,0.0101376986,0.0018995316,0.0113525754,0.0239543468,-0.0108995708,-0.0447513871,-0.059741728,-0.0164179932,0.0118742175,-0.0138372378,0.0178181902,0.0221148711,-0.0392604172,-0.0283883028,-0.020522492,-0.0048869611,0.0310514215,0.0235287957,-0.0021912393,0.0341538191,0.0272901095,0.0200145766,-0.0179417357,0.0336596295,0.0178593714,-0.0108721154,0.0028003934,-0.0281961188,0.006022905,0.0173240025,-0.0126360888,0.0059165177,0.0182300117,-0.0158688966,-0.0111535275,0.0120595377,-0.0116545791,-0.0188752003,-0.0085384548,0.0322319791,0.0182849225,-0.0053090793,-0.0087992754,-0.0195752997,0.0017845645,0.0216481388,-0.0131234126,-0.0320672505,-0.0064587505,0.0358560197,-0.0105563849,0.0257389098,-0.0040633162,-0.0325065292,-0.0338518135,0.0130753666,-0.0206048563,0.0069598015,0.0129518202,0.0062528392,0.0112015735,0.0149079766,0.0196851194,0.0019527253,0.0043275687,0.0251349043,-0.00717944,-0.0128351366,-0.0282235742,0.0158688966,0.0018995316,0.0029239403,0.0348401889,-0.0160336252,0.0475243255,0.0139264669,0.0279764794,-0.0059474041,0.0190536566,-0.007611854,0.0448612049,-0.0092797354,0.0432413705,-0.002881042,-0.0410998911,0.0274273828,0.0106112948,0.0370365754,0.0092660077,0.0060640872,0.0091699157,-0.0145236095,0.0020591128,0.0277705677,0.0044408198,0.0002539573,-0.007083348,-0.0297061354,0.0182986502,-0.0144824274,-0.0269743782,-0.0084423628,0.0589180812,-0.0086070914,0.0420333557,-0.0468105003,0.0124644963,-0.0081815412,-0.0221423265,-0.0072892592,0.0270018335,0.0101857446,-0.0176534615,0.0230346099,-0.0077628554,-0.0501599871,-0.0010184029,-0.0236660708,0.0232954305,-0.012814546,0.0146197015,0.0015091582,0.0106318863,0.0357187428,0.0169121809,0.0073647602,0.0324241631,0.0185731985,0.0031796135,-0.0211127698,-0.0112770749,0.0368993022,0.0265488289,0.0137205552,0.0005006218,-0.0263291895,0.0230208822,0.0081884051,0.0256840009,0.0149766142,-0.0039294735,0.0043584555,0.0249976292,-0.0109613445,0.0189163834,0.0270841978,0.0121624935,-0.0035142193,0.0188477468,0.0091836434,0.0378327668,0.0162669923,-0.0290472191,-0.00047188,0.0688567311,-0.0126086343,0.0172416382,-0.0485950634,0.0392055102,-0.0079138568,-0.0189438388,0.0367894843,0.0125194062,-0.0195752997,-0.0215795022,-0.003613743,0.0240504388,-0.0072000311,-0.0540585741,0.0010175449,-0.0314357877,-0.0309965126,0.0165689941,-0.0302003212,0.0125674522,0.0232954305,0.0102681089,0.0104328385,-0.0035931519,-0.0035245148,0.0196164809,0.0129998662,0.0321496166,0.0144000622,0.0040976345,0.0049521662,-0.0044270926,-0.0382720456,-0.0241602566,0.0313259698,-0.0187241994,0.0424177237,0.0029376675,-0.0216618665,-0.0032962966,0.0105289305,0.0309965126,0.0370914862,-0.0120389462,0.0133705065,-0.0014842772,0.0046467315,-0.0063180444,0.0340165459,0.0242700763,0.0196713917,0.0166788138,0.0281961188,0.0154021643,-0.0196164809,0.0253133606,0.0227326062,-0.0021054428,-0.0048972568,-0.0110299811,0.0008785548,-0.0078658108,0.0249427203,-0.0068534138,-0.0099935606,0.0426099077,0.0006254555,-0.0354991071,-0.0199322123,0.0251211766,-0.0383818634,-0.0142490612,0.0184359234,-0.0199871212,-0.0220462345,0.0115104411,-0.0003487622,0.0015752213,0.0517523699,-0.0205362178,-0.0197674837,-0.01435888,0.0035965838,-0.0209754966,-0.0344558209,0.0003120843,-0.0000057075,0.0287726708,-0.0225404222,0.000128909,-0.0051855324,0.0213461369,-0.0076736272,-0.0231169742,0.0016155456,-0.0268782862,0.0154296188,0.0213735905,0.0007121098,0.0150589785,-0.0099592423,-0.0135352351,-0.0073167142,0.019177204,0.0101994723,0.0217716862,0.0172965471,0.038738776,0.0037750402,0.0112015735,0.0288275797,0.0046227085,0.0248878114,0.01946548,0.0160198975,0.02457208,0.0244897157,0.0013058208,0.0013572986,-0.0027266087,0.0343185477,-0.0004903263,-0.0054738084,0.0131851863,-0.0108103426,-0.0098082405,0.007515762,0.0321496166,-0.0224168748,0.0159375332,0.0267959218,-0.0109476168,-0.0098906057,-0.0148942498,0.0224168748,-0.0050516902,-0.0139745129,-0.025533,-0.0414568037,-0.0046158447,0.0025824707,-0.0004826046,-0.0076049902,0.0165964495,0.0553214997,0.0080374042,-0.0115790777,-0.0082158605,0.0027163131,0.0121213105,-0.0094307372,-0.0068465504,-0.0137068275,0.0095542837,-0.0047085048,0.0058890628,-0.0246818997,0.0154708009,0.0223207828,0.0068019363,-0.0114280758,0.0312985145,0.0323967077,-0.0127802268,0.0083462708,-0.0145373363,-0.0126498165,-0.0103847925,-0.0124439057,-0.0084286351,0.0122929038,0.0103367465,-0.0266586468,0.020042032,0.0187379271,-0.0117643978,0.00997297,0.0418960825,0.0084629534,-0.0009248849,-0.0294590406,0.0370640308,-0.0062219528,-0.0083805891,-0.0284706671,-0.0084629534,-0.0073441691,0.0151550705,-0.0080374042,0.02361116,-0.0156492572,-0.0131440032,-0.0146334283,-0.0269881058,-0.015896352,-0.0084011806,0.0078795385,-0.0261507332,-0.0045472076,0.0070284386,0.047414504,0.0026991537,0.0120869922,0.0438179225,-0.0093620997,-0.0049830531,-0.0172279105,-0.0158277135,-0.0382720456,-0.0340165459,0.0085796369,-0.0331105329,-0.0176397339,-0.0217579585,0.0025790387,0.0456299409,-0.0066131842,0.0116820335,0.0067676175,0.0177632794,0.0083805891,0.0151550705,0.0168023612,-0.0006567712,-0.0193144791,0.0126909986,-0.0286903065,0.0427197292,-0.0169121809,-0.0109682074,0.0133567788,0.0128831826,-0.0047119367,0.0443670191,0.0309416018,-0.0194380246,-0.0215245932,0.0064004092,-0.0145922462,-0.0170631818,-0.0175573695,-0.0358011089,0.0240229834,-0.0373111255,0.0264939182,0.0063763862,-0.0012105867,0.0312710591,0.0185731985,-0.0106662046,-0.0174475498,-0.0291295834,0.0003940198,0.0071657128,-0.0224031471,0.0178456437,0.0281000268,0.0308317821,0.0267821942,0.0475517809,-0.00307151,0.0071519851,-0.0239406191,-0.0288001243,0.0409351625,-0.0180241019,0.0028175528,0.01850456,0.0216069575,0.0179142822,0.0179966465,-0.0220736898,-0.0090257777,0.0064999331,0.0355814695,-0.0261232778,0.0266861022,-0.0054086032,0.0282510277,0.0207009483,0.0107828872,-0.0075226254,0.0500227138,0.018696744,-0.0303101409,0.0389035046,-0.0326987132,-0.014166696,0.0303375963,-0.0032328072,0.004554071,0.0044751386,0.0240778923,-0.0446141101,-0.0290197637,-0.0013169743,0.0408253446,0.0277705677,0.0009506238,-0.0071108029,0.0191085674,-0.023515068,-0.0049933488,-0.0046570268,0.0048732338,0.0068328227,0.0226914231,-0.0211951341,0.0282510277,-0.0264939182,-0.0133705065,-0.0367620289,-0.0106112948,-0.0056934468,0.0168023612,-0.0187241994,0.0203577615,-0.0182300117,0.0425275452,-0.0111603914,-0.0247779917,0.0140568772,0.0045334799,0.0082913609,0.0144275175,-0.0209480412,0.0010861821,0.0300081372,0.024283804,0.0007442835,0.0029599748,-0.0035725608,0.0218815058,0.0024606399,-0.0066097523,0.0020488172,-0.0029376675,0.0353343748,0.0207009483,0.0217579585,0.0053742845,0.040084064,-0.0210441332,0.000921453,-0.0105289305,-0.0249701757,-0.0302277766,-0.0129037742,0.0127733629,0.0219226889,-0.0066612302,-0.0006936637,-0.0173102748,-0.0152099803,0.0147981578,0.0136381909,-0.0219501425,0.0339341797,0.0044614109,-0.012189948,-0.0075432169,0.0432139151,-0.0152511625,-0.0223756935,0.0324790739,0.0102475183,0.0270979255,-0.0267547388,0.0092934631,-0.0139607852,0.0081129046,-0.0029239403,0.0482381508,0.0054188985,0.0016618756,-0.018696744,0.0168572702,0.0000691733,0.0021672163,-0.0084835449,0.0229247902,-0.0217167772,0.0373660326,-0.0169945452,-0.0592475384,-0.0136175994,0.0279902071,-0.0060881102,0.0305023249,0.0064141364,0.0155668929,0.0051031681,0.0079756305,0.003471321,-0.0170219988,0.0432962775,-0.0005641111,0.0122929038,-0.0212363172,0.0255467258,0.001206297,-0.0091287335,0.0107966149,0.012237994,-0.0421980843,0.007852084,0.0023731275,-0.0400566086,0.0193968434,0.0011144949,0.0161983538,-0.0430217311,-0.0336321779,0.0549920388,-0.0035622653,0.0249015372,0.0118742175,0.0021002952,0.0005357983,0.0080854502,0.0204675812,0.0125125423,0.0141529692,-0.0128831826,-0.0132263685,-0.0158688966,-0.0254506338,-0.0389035046,0.0182574671,0.0082570426,-0.0258212741,0.0110642994,0.0143176978,0.0313534252,0.0225266945,0.0154982563,-0.0102681089,-0.0104191108,-0.0197400283,-0.0134048248,-0.0057792435,0.028525576,-0.0051066,0.0092591438,-0.0099043325,0.009156188,-0.0168435425,-0.025244724,-0.0017416662,-0.0030286119,0.0073441691,0.0300081372,0.0127939545,0.0024022984,0.014935432,0.0129037742,0.0142353335,0.009156188,-0.0072961231,0.0119634457,-0.0124027226,0.0342087261,0.0257663652,0.0383818634,0.0077903103,0.0031470107,0.0173377302,-0.0203852169,0.0303375963,0.0235287957,0.0064038411,-0.0033186036,-0.014743248,-0.0147981578,0.020810768,-0.0061292928,0.014166696,-0.0196713917,0.025148632,0.0349225551,0.0195890274,0.0427197292,0.0268508308,-0.0220874175,-0.0178044625,0.0409626178,-0.0099111963,0.0194792077,0.0092728715,0.0351147391,0.0008922822,-0.0032242276,-0.0220736898,-0.0084766811,-0.0105495211,0.0477439612,0.0021414773,-0.0179691911,-0.0069117555,0.0042005903,0.0162944458,0.0439826511,-0.0132126408,0.0217442308,0.0176671874,0.0226090588,-0.0095680114,0.0249976292,-0.0143451532,-0.0108309332,0.0266723745,0.0186281074,-0.0064896373,0.0018343263,0.0018875201,0.0045266165,0.0030835215,-0.0220599622,0.0033117398,-0.0274273828,-0.0126635442,0.0152374348,-0.0252172686,0.019561572,0.0015752213,0.0343460031,0.0129724108,0.0150589785,0.0496658012,0.0125056785,-0.0177220982,0.0394251458,0.0031624541],"33":[-0.022863023,0.0042281407,0.0548657328,0.0013745772,0.0952625945,0.0395961031,-0.0076348139,0.0078764223,-0.0069962782,-0.0054983087,0.0197428279,-0.0247958861,0.0255966447,-0.0187902022,0.0302079078,0.024505958,0.0092777479,-0.0382707119,-0.0425506271,0.0184312407,-0.0010087135,0.00167745,0.0088083381,-0.0020761034,-0.0155733638,-0.0026594142,-0.0201155934,0.0387953483,0.0137302391,-0.0718473271,0.0164983775,-0.0312847868,-0.0230701156,-0.0047424203,0.0328034684,0.0291862506,0.0342669226,0.0061368439,0.04152897,0.0112727406,-0.0198532771,0.0366691947,0.0013763029,-0.0158632938,-0.0051393481,0.0095952908,-0.0431028716,-0.0271567423,-0.0213167313,0.0738354176,-0.0396237187,0.0116938287,-0.0153524643,-0.0263974033,0.0311191138,-0.0551142432,-0.0120734982,0.0356475376,-0.0052705067,-0.02240742,0.0121494327,-0.0745533332,0.0443178155,0.021523824,0.0056950464,0.0429924242,0.0071861129,0.0396237187,-0.0444282666,0.0466648638,0.0531261526,0.031837035,0.0305944793,-0.0069272476,0.0470790491,-0.0546172224,-0.0298489463,0.04931565,0.012404847,-0.0101061184,0.01464835,-0.014496482,-0.0009431342,0.0140339751,0.0360893384,-0.0171472672,-0.0148968613,-0.0105134007,-0.0053913104,0.0212338939,-0.0182241481,0.0551970787,-0.0010673897,0.0196185727,0.0419431552,0.0131917987,0.0005034939,0.0071170824,-0.0184864663,0.0099473475,0.0014919296,-0.0340184122,-0.0069341506,-0.0120665953,0.0308706034,-0.0076900385,0.015987549,-0.0028130077,0.0176995136,0.0084217656,-0.0606919378,0.0036966028,-0.0485425033,0.0029372633,-0.0152005963,-0.0149658918,-0.0614098571,0.005298119,-0.0000440341,0.0096643213,-0.0157528445,-0.0003106389,-0.0403692499,0.014192746,0.0345982686,-0.0274742842,0.0087462105,-0.0516626984,-0.0339079611,-0.0027198161,0.053650789,-0.0325273424,0.0506686568,-0.0254585836,-0.0111415815,-0.0014461967,-0.0455051474,-0.0229320545,-0.018072281,-0.018072281,-0.0224902555,-0.0416394174,0.0441245288,-0.0014289389,-0.0330519788,0.0204055235,-0.0382707119,0.069306992,-0.0167468879,-0.0189144574,-0.0164845716,-0.0140201692,-0.043489445,-0.0301250704,0.0373595059,-0.0039278562,0.0525739081,0.0478521958,0.0008344106,-0.0538992994,-0.021965621,0.0449528992,-0.0208059028,0.0019984436,-0.0221312959,-0.0104443701,-0.0519940481,-0.039899841,-0.0716264248,-0.0237328112,-0.0469686016,-0.072951816,-0.0375527926,0.013902816,0.0338803492,-0.0189420693,-0.001737852,-0.0605814867,0.0525186844,-0.032416895,-0.0657726079,0.0086978888,-0.0215514358,0.0491499752,-0.0299593955,-0.0069962782,-0.0634531751,0.0480730943,-0.0105479164,0.0506686568,-0.0400102884,0.0568262078,0.0184174348,0.0435998961,0.0031633393,-0.0464991927,0.0266873334,0.0081801573,-0.0604710393,0.0302355196,0.0626248047,0.0242574457,0.0648890138,0.0046043587,0.0010492691,-0.0008042096,0.0083113164,-0.0160841923,-0.0518836007,-0.0384916104,-0.0196599904,-0.0008827322,-0.020018952,0.0058538173,-0.0320027098,-0.0169401746,-0.0705771595,-0.0074139149,-0.0111899031,-0.0280127246,0.0491499752,0.073227942,0.0043765567,-0.0464439653,-0.0318646468,0.0377184637,0.0195495412,-0.0363378488,0.0358960517,0.0043489444,0.008221576,-0.0156147815,-0.0282060113,-0.0420812145,-0.0008676317,-0.0021572146,0.0090361405,-0.017492421,-0.0379117504,-0.0322512202,-0.0374423414,-0.0132677322,-0.0185969155,0.0071101794,-0.0091396868,0.0222831629,-0.0306497049,-0.0589799732,0.0252929088,0.0377460793,-0.0149935037,0.0018327695,0.0001148717,-0.0326654054,-0.0421088301,-0.0796340033,0.0062541966,0.0487081781,0.0224488378,0.0163465086,0.001269305,-0.012108014,0.0026007378,0.006951408,-0.0296556596,0.0213029254,-0.0248096939,-0.0311743394,-0.0137992697,-0.0279022753,0.0371662192,0.0227801856,0.0315885246,-0.0510276146,-0.0027940243,-0.0130123179,-0.0009103445,-0.0005962541,0.0164569579,-0.0070515028,-0.0058607203,-0.0537060127,-0.0108378455,0.0284683295,0.0044766515,-0.001972557,0.0145102879,0.038850572,0.0193976741,-0.0319198743,0.03048403,0.0085598277,0.0301250704,0.0062369388,0.0171610732,0.0204883609,0.0087116957,0.0123634282,-0.0188868456,-0.0237328112,-0.0058123991,0.00124687,0.0229320545,-0.0061092316,0.0275847334,0.0226421244,-0.025417164,0.0207092594,-0.018665947,0.0234704949,-0.0055362755,-0.0114453174,0.0006247293,-0.0075726858,-0.0442902036,0.0062231324,0.0560806766,-0.0420259908,-0.0153386584,-0.0437931828,-0.0230010841,-0.1139837652,-0.0168849491,0.0024298865,0.0054948567,-0.0352333523,-0.0029372633,-0.0119768549,0.0069997297,-0.0213581491,0.0175890643,-0.0245473757,0.0599187911,0.0322236083,-0.0410043336,-0.0416946448,-0.0072827563,0.0190939382,-0.0143031953,0.0143860327,-0.0213167313,-0.0185693037,-0.0765414238,0.0237051994,0.0147173805,0.0504477583,0.0106652686,0.0175200347,0.0004504264,-0.0057916897,-0.0224764496,0.0116731199,0.0090430435,0.0092225233,0.0437931828,0.004027951,-0.0060022338,-0.021813754,-0.0422745012,-0.0201984309,-0.0279022753,0.0206540357,0.0214547925,-0.0015169532,-0.0261765048,-0.0011648958,-0.0398170017,0.0187625885,-0.0158770997,-0.0403968617,0.030622093,-0.0059815245,-0.0155043323,-0.03048403,-0.0193010308,-0.0116731199,-0.0016947078,0.0339631848,0.0054810508,0.0426058508,0.0395684913,0.0331624262,-0.0092570391,-0.0166088268,0.0397065543,0.0449252874,0.0148140239,0.0350400694,-0.0588142984,-0.0025731255,0.000456898,-0.0036758936,-0.0299870074,-0.0331072025,-0.0229458604,0.012404847,0.0212615076,0.0222555511,0.0355370902,0.0255138073,0.045726046,-0.0147587992,-0.0564948618,-0.0388229601,0.0134057943,0.0032013063,-0.0043420414,0.0222417451,-0.0033583515,-0.0230977274,-0.0108654583,0.0137371421,0.0314780734,-0.0246440191,0.0320855454,-0.0471342765,-0.0317541994,0.0706876069,0.0245335698,0.0720682219,-0.0175614525,-0.0061679077,-0.0262593422,-0.0069237957,-0.0370557681,0.0586486235,0.0495365486,-0.0271843541,-0.0371938311,-0.0323064439,-0.0147173805,-0.0223936122,0.031698972,0.0031667911,-0.0218689777,0.0344325975,0.0139304288,-0.0216894988,0.0224902555,-0.002312534,-0.004631971,0.0072137257,0.0085529247,-0.0071585006,-0.0163603146,-0.0230839215,-0.0181136988,-0.0249891728,0.0184726603,-0.0106376568,0.0381326489,0.0098714139,-0.0256656762,0.022573093,-0.033604227,-0.0604158156,0.0200051442,-0.0015350739,0.040479701,-0.0243955087,-0.027046293,0.006423322,-0.0713503063,-0.0142479707,0.0100854095,-0.0365311354,0.046637252,0.0136681115,0.0361721739,-0.0063094213,-0.0246302132,0.0164845716,-0.0130951554,-0.0088290479,-0.0098023834,0.0228492171,0.0267011393,0.017630484,0.0172024909,-0.0544515476,0.0249753669,-0.0048666759,-0.0297937226,0.0495917723,-0.0087116957,0.0221727137,0.0100716036,0.0104995947,0.0174095836,0.0273362231,-0.0005216145,-0.0134886308,0.0427715257,-0.0160841923,-0.0004098708,0.0226007048,-0.0705771595,-0.0446215533,0.0271567423,-0.0114729302,0.0492328145,-0.0098990258,0.0278884694,0.0776459202,-0.0289101265,0.0371109918,-0.0105893351,-0.0087738233,-0.0087255016,-0.0337698981,0.033604227,0.0266321078,0.0500887968,0.0149106672,-0.0356475376,0.0194667038,-0.003106389,0.0138683012,-0.0115902824,-0.0144688692,-0.0254585836,-0.0483492203,-0.0278608575,-0.0073724966,-0.0376080163,0.0193010308,-0.0392647572,-0.0005833108,-0.0261626989,-0.014192746,0.0072344346,-0.0370281562,0.0158770997,0.0022711155,-0.0302631315,0.013744045,-0.023898486,-0.0400102884,-0.0453670844,0.0218689777,0.0188040081,0.0173405539,-0.0009983589,0.0487910174,0.0048666759,0.0028475232,0.0158632938,-0.0079799686,-0.0109759076,0.0337975137,0.0110311322,-0.0281369817,0.010610044,-0.003173694,0.031505689,0.0178651884,0.0323064439,0.0276123472,0.0040106932,0.0086978888,-0.0068478617,0.0117904721,0.0042799138,0.0024782082,-0.0193148367,0.0335766114,0.0062472932,-0.0344602093,-0.0320855454,0.0271843541,0.0024436926,-0.0115212519,0.0081456425,0.0191353559,0.0030735994,0.0156700071,-0.0484320559,-0.0135162435,0.0077728755,-0.0061748112,-0.0391266942,-0.0011916453,-0.008359638,0.0413356833,-0.0288825147,0.0213029254,0.0163327027,0.0127569037,0.0292966999,-0.0386848971,-0.0007882462,-0.0126602612,0.0014625915,-0.0033669805,0.0070825666,0.0301250704,-0.0146069312,0.0103546297,-0.0289653521,0.0577098057,0.0327206291,0.0141030056,0.0036379267,-0.0219518151,-0.0230701156,0.0271567423,-0.0072068223,-0.0021468599,0.0402864143,-0.0092777479,0.0341564715,-0.014047781,-0.0203502998,-0.0550314076,-0.0328586921,-0.0057640774,-0.0340184122,-0.0081732543,0.00507722,-0.0204193294,-0.0087738233,-0.0230839215,-0.0183069855,-0.0200051442,0.0147864111,0.0411147848,-0.0158770997,-0.0273362231,-0.0205573924,0.0134196002,-0.0110242292,0.0164845716,0.025403358,0.0239399038,-0.0000667658,0.045587983,0.0136543056,0.0411700085,0.0081042238,-0.0096919332,0.020474555,0.0171334613,-0.0006859942,-0.0220622644,0.0142203588,-0.0420812145,-0.0085460208,0.0250167865,-0.0217171106,-0.0248096939,0.0211786702,-0.0401759632,0.0797444582,0.0239951294,0.0102717932,0.0099818632,-0.020930158,-0.0268530063,-0.0151039539,0.030622093,-0.0393752046,0.0017223201,-0.0174648091,0.0159323234,-0.0338803492,0.0320027098,0.0264388211,0.0160703864,0.0497850589,0.0226421244,-0.0148968613,0.0405073129,0.0361445621,0.0166364387,0.0254447777,0.0055155661,0.0279851127,-0.0291586369,0.0153386584,0.0635636225,-0.0301802941,0.011210613,-0.028689228,-0.0109482957,-0.0081939641,-0.0204331372,-0.0084907962,0.0137854638,0.031975098,0.0200051442,0.0157942623,0.0155595569,0.0156700071,-0.0240365472,0.0040037902,-0.0308982152,0.0087462105,0.0560806766,-0.02240742,0.020170819,0.005608758,-0.0106652686,-0.0691413134,-0.0279160831,-0.0228906348,-0.0058469144,0.0090706553,-0.0249063373,0.0316437483,-0.0300974566,-0.0422468893,0.0223660003,-0.0087324046,-0.0040417574,0.0228216052,-0.0075726858,-0.0164845716,0.0133919884,-0.0129778031,-0.0029010221,-0.0439036302,-0.0153248524,-0.0143998386,-0.045256637,0.0494261011,-0.0277366024,0.004414524,0.0507238805,0.0307325423,-0.0152558209,0.0178513825,0.002321163,0.0056915949,-0.0102579864,0.0279989187,0.0039244047,-0.0023004536,-0.0001267364,-0.0407005996,0.0039899843,-0.0320855454,0.0077797784,-0.02601083,-0.0292966999,0.0085805366,-0.0285511669,0.0217723344,0.0347087197,0.0439864695,-0.0148968613,-0.0076486198,0.0128397411,0.0141306184,0.0033894156,-0.0159047116,-0.0333557129,-0.0017792706,-0.0126188425,0.0030787766,0.012998512,-0.0047493237,-0.002048491,-0.0311467275,0.012108014,0.0064371284,0.0308153778,-0.0407834351,-0.0222003274,-0.0064509343,-0.0427991375,-0.0059366543,0.0008400194,0.004928804,-0.0076555233,0.0386296734,0.0067684762,0.0003417028,-0.0075174612,0.0135852741,0.0104305642,0.0309534408,0.0060988772,-0.0122322692,-0.0368348695,-0.01165241,0.0102165686,0.0160427727,-0.0181827303,-0.0212753136,-0.0350124538,-0.0313952379,-0.0084907962,-0.0069134412,0.0110656479,-0.0023021793,0.0160151608,-0.0024574988,-0.1074120253,-0.0162084475,0.0458364934,-0.0307049286,-0.0033014012,-0.004179819,0.0246026013,0.0169953983,0.0285235532,-0.0087047918,0.0059262998,-0.0663248524,-0.0409767218,0.0013262555,-0.012404847,0.0334937759,0.0091880085,0.0379117504,0.0208335146,0.0203641057,-0.0151591785,0.0060643614,-0.0145102879,0.05260152,0.0526567437,0.0024764824,-0.0223107766,0.0350676812,0.0030908571,-0.0165536013,0.0000811652,-0.0112727406,0.0113003524,0.01286045,-0.0068237013,0.0110035203,0.0047562267,0.0074139149,0.0020381364,-0.0032668856,-0.0195081234,-0.0498955101,0.0423297286,-0.0255828388,0.0477969721,-0.0080006775,0.0119354371,0.0219518151,0.01883162,-0.0111691942,0.0080835149,0.0039485656,-0.0191629678,-0.0081525454,0.0219103973,0.0125912298,-0.0456155948,-0.020764485,-0.0162084475,0.0144136446,-0.0363930725,0.005750271,0.0067132516,-0.0544791594,-0.016277479,-0.0178237688,-0.0079109371,0.0289377384,0.0278608575,0.0017516583,0.0379945897,0.0197842456,0.024367895,-0.0198670831,0.0166364387,0.016733082,0.0158356801,-0.0209577717,-0.0310915019,-0.0133988913,0.022559287,-0.0047734845,-0.0008042096,0.0117628593,0.0022158909,-0.0062438417,-0.0055742422,-0.0210406072,0.0088911755,0.0047976454,0.0333833285,-0.0253895521,-0.0068478617,0.0048770308,0.0166088268,0.0120389834,0.0221312959,0.0044973609,-0.0042902683,-0.01464835,0.034653496,-0.0038864377,0.0034515434,-0.0181965362,-0.0239260979,-0.0232495964,0.0023919195,0.0090568494,0.0052774097,0.0135369524,-0.0213995688,-0.0058434629,0.0124117499,0.0190525185,0.0207368713,0.0050530592,0.0216894988,-0.0035015906,-0.003468801,-0.0252929088,0.0079799686,-0.0272533856,-0.0178789943,0.0379945897,-0.0093674883,0.0278194398,0.0396513306,-0.0045594885,0.0309258271,-0.0045491341,0.0032323704,0.0552523062,-0.0011916453,0.0656069368,-0.0062265843,-0.0102510834,0.0008365678,-0.0030131973,0.0014841636,0.0359236635,0.0110794539,0.0132677322,0.0025817545,0.0040797242,0.0096574184,0.0001983559,0.0318094231,-0.0048114513,-0.0234152693,0.0187487826,0.0193148367,-0.0385468341,0.0107412031,0.075050354,-0.0182103422,0.0719025508,-0.0414461307,-0.0166640505,-0.0045353277,0.011355577,0.0123427184,0.0308153778,0.0185969155,-0.0206816476,0.0275985394,-0.0162084475,-0.0114453174,-0.0015014213,-0.0280403383,0.0268530063,-0.0027922986,-0.0133574726,-0.004407621,0.0331624262,0.0510828421,0.0269496497,0.0013003689,0.0331348144,0.0228216052,0.0106997844,-0.0274742842,-0.0068237013,0.0227387678,0.0460021682,0.0295452103,-0.0114867361,-0.0410595573,0.005750271,-0.0143031953,0.0117076347,0.0173405539,0.0094641317,0.0175200347,0.0317265876,-0.0085322149,0.0177133195,0.0110932598,-0.0125152962,-0.0205021668,0.0264388211,-0.0596426688,0.0307049286,0.0156700071,-0.0231391471,0.0015307595,0.0413632952,-0.0216618851,0.0290481877,-0.0211096387,0.038850572,0.0158770997,0.0170920417,-0.0008188786,-0.0250858162,-0.0361997858,0.0097264489,0.0020312332,0.0234152693,0.0070825666,-0.0329691432,-0.0210820269,-0.0172439106,-0.0180446692,0.0237051994,-0.0255276151,0.0451737978,0.0137785608,0.0028026532,-0.0152972396,0.0056915949,-0.0048977397,0.0296556596,0.0019846375,-0.0055224691,0.0277227964,0.0255966447,-0.0007429447,0.01464835,0.0061402954,-0.0002299591,0.0113072563,-0.0033272877,0.0080835149,-0.0275018979,-0.0282750428,-0.0090154307,0.0274328664,0.0440693051,0.033466164,-0.0093674883,0.0237190053,0.0043869116,0.0147864111,0.0218827836,0.0376080163,0.0178789943,-0.0013331586,0.0177409332,0.0014177214,-0.0180584751,-0.0197290219,0.0227939915,0.0075657829,0.004701002,-0.0162084475,-0.0073863026,-0.0219242033,-0.0154767204,-0.0031270983,0.0045318762,-0.0211924762,0.0144826761,0.0292690881,-0.0050875749,-0.0151039539,0.0198118594,-0.0668771043,-0.0050288984,-0.0015419769,-0.0292690881,-0.0276813768,-0.0026179955,-0.0181413107,-0.0240917727,0.0298213344,0.0029217314,0.000548364,-0.023028696,0.0135645652,-0.0426334627,-0.0099266386,0.0086771799,-0.0091811055,0.0069479565,-0.0210958328,0.0040521119,0.0104857888,0.0108447494,-0.0044317818,-0.0244783442,0.0103615327,-0.0198118594,0.0311743394,0.0250996221,0.0141306184,0.0093743913,-0.0117697623,-0.0124738775,-0.0065475777,0.0256242566,0.0115419608,0.0069410536,-0.0089256912,0.0358408242,-0.0026887523,0.0181275047,0.0281783994,0.0155871697,0.0306497049,0.0327206291,0.015393883,0.0329139158,0.0195633471,0.0259556063,0.0086219553,-0.0056398218,0.0207782909,0.0012900144,-0.0133919884,0.0036413781,0.0052118306,-0.003182323,0.0166916642,0.031367626,-0.0180998929,-0.0053429892,0.0368624814,-0.0144550633,0.0004689785,-0.0159185175,0.0198256653,-0.0153386584,-0.0112175159,-0.0063301306,-0.0082422858,-0.0177133195,0.0227801856,0.0317541994,0.0061264895,0.0275571216,0.0554455929,-0.0017965282,0.0057157557,0.0110725509,0.0042419466,0.0035412833,-0.0172301047,0.0075312676,0.008221576,0.0098714139,-0.01883162,0.0056674341,-0.0285511669,0.0030701477,-0.0059884274,-0.0116317011,-0.006430225,0.0519940481,0.0193148367,-0.0046595833,0.0308706034,0.007400109,-0.0232772082,-0.0008451967,-0.0080835149,-0.0101820529,0.0111277755,-0.0121356258,-0.000752005,0.0195081234,0.0050944779,-0.014054684,0.0045767464,0.0491775908,-0.0054741479,0.0134265032,-0.0277366024,0.0050358018,0.0039727264,0.0067581218,-0.0020070723,-0.0263835974,-0.0172715224,-0.0049564163,-0.0127914194,0.0228216052,-0.0084286686,-0.0153386584,0.0058158506,-0.0418327041,-0.0444006547,-0.0152144032,0.0026576885,-0.014344614,0.0189972948,-0.0001994345,0.0547828935,0.0063094213,0.0163188968,0.0230563097,-0.0142065519,-0.0074967518,-0.0350676812,0.0030080199,-0.063011378,-0.0293795373,0.0151867904,-0.013744045,0.008663374,-0.0723443478,-0.0047803875,0.0257208999,0.0056812405,-0.0000917895,0.0158632938,0.0274604782,0.0203502998,0.0276537649,0.027046293,-0.0447872244,-0.0349848419,0.0176719017,-0.0386848971,0.0312571749,-0.023608556,-0.0014487853,0.0022624866,-0.0060160398,-0.0116386041,0.031975098,0.031837035,-0.0219518151,-0.0028527007,0.0065337713,-0.0108723613,-0.0045284247,-0.0270324871,-0.0105410134,-0.0019363158,-0.0223660003,0.0100854095,0.0220898762,-0.0156562012,0.0188592318,0.0308153778,-0.0117697623,-0.0211786702,-0.0082422858,0.0093329735,0.0069479565,-0.0265216585,0.0248234998,0.0032375476,0.0149658918,0.0300146211,0.0363102369,-0.0020346849,0.0032806918,-0.0190801322,-0.0237190053,0.0287720654,0.0053015705,-0.0131987017,0.0038829863,0.0250996221,0.0089533031,0.0278746635,-0.0192596111,-0.0018534787,0.0019363158,0.0125567149,-0.0184588544,0.0374975652,-0.001405641,0.0189144574,0.019880889,0.0176719017,-0.0129432874,0.0237742309,-0.0074829459,-0.0317541994,0.0274604782,-0.0197704397,0.0147173805,0.0414185189,0.0048632245,0.0251686536,0.0179480258,0.0202950742,-0.0047320658,-0.0155181391,-0.0071377917,0.0265492704,0.0191905815,0.0077314568,-0.0070307939,0.0235119127,-0.012101111,-0.015531945,-0.0034325598,-0.0051462511,0.0221589077,-0.0034912361,-0.0342669226,0.0235809442,-0.0285511669,-0.0027129131,-0.023028696,-0.0152696278,-0.0075312676,-0.0130261248,-0.017023012,0.0135162435,-0.0009137961,0.016733082,-0.00377944,-0.0222279392,0.0180308614,-0.0124324588,-0.0112520307,0.0152558209,-0.0187349766,0.0122046573,0.0318646468,-0.0061437469,0.0096021937,-0.023456689,-0.0001551037,-0.0111346785,-0.0205573924,-0.0181136988,-0.0234428812,-0.0037587306,0.0532918274,0.0210129954,0.0399550647,0.0135438563,0.0297108851,-0.0385468341,0.0128328381,-0.031367626,-0.0052670552,-0.0223245826,-0.0048045483,-0.0131365741,0.0370833799,-0.0207506791,0.0179204121,-0.0022020845,-0.0068823774,0.0276537649,0.0031788715,-0.0153800771,0.0277366024,-0.0005440495,-0.0197704397,0.001927687,0.0522425584,-0.0012080402,-0.0341564715,0.006720155,-0.0146897687,-0.0053498922,-0.0310362782,0.0040969821,-0.0018500272,0.025997024,0.0004970222,0.0163327027,0.0122736879,-0.0188178141,-0.0116869258,0.0085253119,0.0101199253,-0.001156267,-0.0054016653,-0.0087047918,-0.033328101,0.0290758014,-0.0220208466,-0.0109621016,0.0042523015,0.0187211707,-0.000241608,0.0539269112,-0.004783839,0.0296004359,0.0058158506,0.0138199795,0.0043662023,-0.015090147,-0.0026007378,0.0058676237,-0.0039520171,-0.03048403,0.0087945322,-0.001132969,-0.020474555,0.0119147273,-0.0022158909,-0.0124186529,0.0077245538,0.0041487552,-0.0235395245,0.0084217656,0.0102027617,0.0138268825,-0.0203364938,-0.0512209013,0.028992964,-0.0246992446,0.0191491619,0.0142341647,-0.0010251084,0.0139580416,-0.0075036553,0.0163879283,0.0142893894,0.017782351,-0.0136474026,-0.0132746352,0.0010932763,-0.0152696278,-0.0388229601,0.0197842456,0.0057295617,-0.0081249326,-0.0054292777,0.0064198705,0.0217447225,0.0118664056,0.0294623729,0.0014824378,0.0202260446,-0.0073586903,-0.0189834889,0.0155871697,0.0204883609,0.0149520859,-0.0067443154,-0.0071239853,0.0140961027,0.0241193846,-0.0180170555,0.0149658918,0.0018655591,-0.017934218,0.0190249067,-0.0159047116,0.0011545413,0.0217309166,-0.0123772342,-0.001095865,-0.0143170012,0.0074277213,-0.015531945,0.0124324588,0.0534298904,0.0117421504,0.0230701156,0.0257761255,-0.0127914194,0.0085667307,-0.0031702425,0.0264940467,0.0249753669,0.0232910141,0.0001220983,-0.0181965362,-0.020930158,0.0165536013,-0.0144550633,0.0177271273,-0.0182655677,0.0182517618,0.0012624019,0.0297937226,0.0272948053,0.0062024235,-0.0072068223,-0.0109966174,0.0127983224,-0.0312295631,0.0190525185,-0.0045871008,0.0230010841,-0.0007369045,0.020170819,-0.0083527351,0.0136612086,-0.0132677322,0.0261488929,-0.0085460208,-0.0119768549,-0.0078695184,0.0120389834,0.022573093,0.0114936391,-0.0127292918,0.0101337312,0.0358684361,0.009422713,-0.0073793996,-0.006720155,-0.0229044408,-0.015849486,0.0273638349,-0.0077728755,-0.0233738516,-0.010610044,-0.00145914,-0.0049460614,-0.0019604766,-0.0048839338,0.0067132516,-0.046167843,0.0186797529,0.0008227616,-0.0271429364,0.0026283502,0.0265492704,0.0312571749,0.0124876834,0.0127292918,0.0309810527,0.0069686659,-0.0023349691,0.028233625,0.0117214406],"34":[-0.0171297062,0.0089625577,0.0601670295,-0.007442758,0.0820975974,0.0411624312,-0.0090122707,0.015368443,-0.029174475,0.005195017,0.0105320709,-0.0168030206,0.0321288519,-0.0286773443,0.024004316,0.0072368039,-0.0173711702,-0.0421850979,-0.0405942798,0.0082381675,-0.0166751873,0.0217743292,0.0272711739,0.0054116235,-0.0065940847,-0.0198000092,-0.0283790659,0.073916249,-0.0039841481,-0.0723822415,0.0256945603,-0.0361343063,-0.0669848248,0.0375830866,0.064200893,0.0031780861,0.0321572609,0.0212345868,0.0161922593,0.0029845601,-0.0138344401,0.0040658196,-0.0188199505,-0.0104681542,-0.0151411835,0.0269871,-0.0479234084,-0.0143528758,-0.0221720338,0.0410487987,-0.0557638705,0.0147292754,-0.0031443522,-0.0313902572,0.0278393235,-0.0374978669,0.0053264014,0.0241037421,0.0077836476,-0.0164621305,0.0157661475,-0.0603942908,0.0425259881,0.0260922648,-0.0233225357,0.0216749031,0.0107451268,0.0336060412,-0.0411340222,0.0369013101,0.0393443517,-0.0018624649,-0.0324981511,-0.0100988569,0.0100917546,-0.0507641546,-0.0122010102,0.0557638705,0.0104965614,-0.0032863896,0.0031301484,0.0019015253,-0.0145375244,0.0067290203,0.0052376278,-0.0254673008,-0.0500823744,-0.0284500849,0.0071018683,0.0056566382,-0.0089909658,0.0813021883,0.0228964239,0.011618657,0.0478949994,0.0191608407,0.0188483596,0.0329810753,-0.011064711,0.0133373085,-0.0137492176,-0.0125845112,-0.0177688748,-0.0318447798,0.0259360243,-0.0173711702,0.041247651,-0.0109865908,-0.004594909,-0.0092821419,-0.0985171199,-0.0255951341,-0.0099284118,0.0258081891,-0.0250411872,-0.0171297062,-0.0081742508,0.0076061012,-0.0019317082,0.0206948444,-0.0186068956,0.0140261902,-0.0288335867,0.0588034689,0.0138131343,-0.0139054582,0.0093389573,-0.0288904011,-0.0519288629,0.002398656,0.0269444883,-0.0206806418,0.0256377459,-0.0122010102,-0.0189335812,0.0073007206,-0.0410772078,0.008898641,0.0018731178,-0.0221436266,0.0031443522,-0.0624964423,0.0151979988,-0.0193881001,0.0108658588,0.0132591883,-0.040480651,0.0308789238,0.024075333,-0.0026010594,-0.0112777669,-0.0059726713,-0.0499971546,-0.0200556759,0.028237028,0.0187205244,-0.00307866,0.0592579916,0.0347423404,-0.0311914068,-0.0186068956,0.0439747684,0.0010466379,0.0004909167,-0.0369013101,-0.0348559693,-0.0181097649,-0.0438611396,-0.0736889839,-0.0050352248,-0.0598261394,-0.0205101967,-0.0229106266,0.0499971546,0.0371569768,-0.0096940501,-0.0233225357,-0.0507073402,0.040764723,-0.0572694652,-0.0572694652,0.0284926966,-0.0401681662,0.00425757,-0.008010908,-0.0104042375,-0.068575643,0.0166467801,-0.0225413311,0.0267882477,-0.0706777945,0.0696551278,0.0067183673,0.0289188083,0.0107380254,-0.0440031774,0.009885801,0.0113345822,-0.0230810717,-0.0050494284,0.0702232718,0.0376967192,0.056616094,-0.0259076152,0.023308333,0.0013999558,-0.0073291282,0.0047156406,-0.0488608554,-0.0355377495,-0.0181949865,-0.0079185832,-0.0128401779,0.0133799203,-0.0344014503,0.017967727,-0.0652803779,-0.0204959922,-0.0205954183,-0.0643713325,0.0420714691,0.05834895,-0.0039557405,-0.0227969978,-0.024004316,0.0440599918,0.0313334428,-0.0254104845,0.0521845296,0.0192602668,0.0000412796,-0.0568433553,-0.0003635269,-0.0279529542,-0.0027661778,-0.0019601157,0.0020950511,-0.0513891205,-0.0187205244,-0.0287057515,-0.0305096265,-0.0087921135,-0.0103616258,-0.0132662905,-0.0038882729,0.0132094752,-0.0247571133,-0.0406226888,0.0108161457,0.0396284275,0.0411908366,-0.0171439108,0.0043534455,-0.0168456323,-0.0530083477,-0.0606783628,0.0016813674,0.0095378095,0.007613203,0.0175416153,0.0062425425,-0.0102906078,-0.010439747,0.003554485,-0.033407189,0.0517868251,0.0320436321,-0.0459917001,0.0179819316,-0.0354525261,0.0451962911,0.0135219572,-0.0068533029,-0.0548264235,-0.0120873805,-0.0213198084,-0.0076274066,-0.0221436266,0.0012632449,0.0073078228,-0.0227685906,-0.0615305863,0.0045096865,-0.0051417528,0.0198000092,-0.0039166803,0.0114624156,0.0382080525,-0.0260638576,-0.0241605565,-0.0107806362,0.0280097686,0.0178825054,-0.0239474997,0.0235639997,-0.0040196576,0.0045025847,0.0246150754,-0.036844492,-0.0287625678,0.0308505166,0.0021571924,0.0096727451,-0.0310209617,0.0327538177,0.0101059591,-0.003318348,-0.0168030206,-0.0343162268,0.0108658588,0.0132946977,-0.0381796435,-0.0137918284,-0.0104752555,-0.0389750525,-0.0094596883,0.0667007491,-0.0211777724,-0.0066544507,-0.0472700372,-0.0352252685,-0.0747684687,-0.018905174,0.0000510169,0.0199136399,-0.0077055274,0.0317879617,-0.0126413256,0.0383500904,0.018905174,-0.0228680167,-0.0178967081,0.0326401889,0.0251832251,-0.0338617079,-0.0438043252,-0.0100846533,0.0038492128,-0.0218595508,0.00832339,-0.0423271358,-0.0083802044,-0.0722686127,-0.0144523019,0.0294301435,0.0170302801,-0.0117677962,-0.0382080525,0.0303959977,0.0110789146,-0.0260070413,-0.0243310016,0.0160644259,0.008081926,0.0123998625,-0.0026667516,0.0143457744,-0.006036588,-0.0180813577,-0.0311914068,-0.0436622873,0.0227543861,-0.0097579677,-0.0043072831,-0.0148571087,0.0090761874,-0.0332367457,0.005557212,-0.0423555449,-0.027228564,0.0452531055,0.0030165187,-0.0097153559,-0.0090122707,-0.0386057571,-0.0215328652,0.0172007252,0.0241605565,0.0039024767,0.053178791,0.0203539543,0.0464746282,0.005230526,-0.0079682963,0.0172007252,0.0540310144,0.0013484673,0.0165757611,-0.0549400523,0.0017124381,0.0369297154,-0.0240895376,0.0003937098,-0.0025282651,-0.0106741078,0.0133657167,-0.0157803521,0.005134651,0.0445713252,-0.0138841532,0.0442872532,-0.0120660746,-0.0651099309,-0.0064662513,0.0045309919,-0.0039948011,0.034202598,0.0246008728,-0.0210783463,-0.0085577518,-0.0132023729,0.0124779828,0.0525822341,-0.0205812156,0.0130887432,-0.0389466472,-0.0228112005,0.0740298778,0.0413328744,0.0722117946,-0.036389973,-0.0089412527,-0.0282228254,-0.0321572609,-0.0280523803,0.0670984536,0.043917954,-0.0109581826,-0.0455939956,-0.0428384691,-0.0094028739,-0.0064591495,0.0259218197,0.002592182,-0.00566374,-0.0066437977,0.0215186607,-0.0022796998,0.0458780713,0.0042256117,-0.015226406,0.01113573,0.003421325,0.0303391814,-0.0061040558,0.0038279071,-0.0268592667,-0.0023471676,0.0085719554,-0.0116328606,0.0249701701,-0.0064911079,-0.0264331549,0.0092750406,-0.0254673008,-0.0472416282,0.0347707495,-0.0082097603,0.0386341624,0.0110007944,-0.0053370539,0.007059257,-0.0803363323,-0.0494005978,-0.0146298492,-0.0255099107,0.0462189615,-0.0128188729,0.0059371619,-0.0245014466,0.0014594339,0.0386057571,-0.0095946239,-0.0184932649,-0.031219814,0.000196522,0.0259644315,-0.0010075776,-0.0128543815,-0.0079896022,0.0148713123,0.0173143558,-0.0436054729,0.0722686127,0.031986814,0.0153116286,0.002995213,0.037639901,-0.006963382,0.0199704543,-0.0046375203,-0.000526426,0.0511334538,-0.0170018729,-0.0116967773,0.0230810717,-0.082495302,-0.0227969978,-0.0155814998,-0.0135148559,0.0397136472,0.0139622735,0.0192034524,0.0765297338,-0.0090122707,0.0341457836,-0.0118388142,-0.0001154054,-0.0087495018,-0.0388898328,0.0077552404,0.0023791259,0.0493153743,0.0170018729,-0.007442758,0.0248423349,-0.0139693748,0.0282512326,-0.0195443425,0.0012472656,-0.0271859523,-0.0164337233,-0.0264757648,-0.0006072097,-0.0183654316,0.0039770463,-0.0661325976,0.0072439057,-0.0299130697,0.0002825212,0.0300835148,-0.0027342194,0.0043108342,-0.0308221094,-0.0471848138,0.0212771986,-0.0138486437,-0.0444861054,-0.0407363176,0.0246150754,-0.0032189218,0.0296005867,0.0251974296,0.0296005867,-0.0054329294,-0.0105320709,0.0126129184,-0.0022566186,-0.015368443,0.0522697531,0.0167746134,-0.0148429051,-0.0086926874,-0.0090264743,0.0055039478,0.0101272641,0.0225555338,0.0207232516,0.0164621305,0.0145446267,0.0138841532,0.0028442983,-0.0053832163,-0.0029721318,-0.0263479315,0.0126555292,-0.0013813134,-0.0428668782,-0.0354809351,0.033435598,-0.0157235358,-0.0349696018,0.0022868016,0.044230435,0.0237344448,0.0163769089,-0.0293733273,-0.0335776322,0.0019707684,-0.0057028001,-0.0148571087,-0.0064129871,-0.0313902572,0.0326117799,-0.0083731031,-0.0075989994,0.0135858739,-0.0111215264,0.0195869524,-0.028237028,0.0153968511,-0.0090548825,0.0091685122,0.0162774827,0.0263763387,0.0114340084,-0.0029916621,0.0049429005,-0.0315038897,0.0264189504,0.0013156211,0.0068319975,-0.0011318603,-0.0288761966,-0.0372421965,0.0351684541,-0.0057028001,-0.0061253617,0.0502528213,-0.0193596929,0.0191324335,-0.0091116969,-0.0043143849,-0.0564172417,-0.014743479,-0.0122578247,-0.0206238255,-0.0098431893,0.015055961,0.0089341504,-0.0448554009,-0.031702742,-0.0312766284,-0.0599397682,0.0088631315,0.0074640638,-0.0068248957,-0.0149565348,-0.0270439144,0.0212203823,0.0146440528,0.0126626315,0.0293165129,0.0344866738,-0.0146156456,0.0345434882,0.0297142174,0.0359922685,-0.010439747,-0.0372990146,0.0074214526,-0.00615732,-0.0113132764,-0.0172433369,0.0067361221,-0.0108587565,-0.0035402814,0.0503096357,-0.0034444062,-0.0184080433,0.0056885965,-0.0377251245,0.0824384913,0.0304528121,0.0210499372,0.0144380983,-0.0313334428,-0.0179961342,0.0128756873,0.0302255526,-0.0477529615,-0.0038811711,-0.0163342971,0.0161922593,-0.0095662167,0.0070130951,0.0295437723,0.0228822194,0.0409635752,0.0226833671,-0.0238480736,0.0357366018,0.0216180868,0.0121868066,0.0191750452,0.0300835148,0.0203539543,-0.0147576826,0.0236350186,0.05002556,-0.0363047495,0.0151411835,-0.0319299996,-0.004857678,0.0097011523,-0.0146582564,-0.0246150754,0.0345434882,0.0396284275,0.0176836532,0.0109084696,-0.0406510942,0.0126768351,-0.0420146547,0.0119666485,-0.0330662988,-0.006807141,0.0452815145,-0.0273563974,-0.0124069639,-0.0141966352,-0.0117819998,-0.071245946,-0.0154252583,-0.0471848138,-0.0088489279,0.0126200197,0.0031159448,0.030907331,-0.0080748247,-0.0367876776,0.0015144735,0.0015020452,0.0224703122,0.0221152175,-0.0205954183,-0.0335208178,0.0233367402,-0.0119027318,0.0123998625,-0.063973628,-0.0153542394,0.0031212713,-0.0361343063,0.0367308632,-0.010077551,0.0130887432,0.0363615677,0.0179393198,-0.0202545281,0.0075421841,0.0059052035,0.0053583598,-0.0155388881,0.0290892534,-0.0224561077,-0.0162774827,-0.0051666093,-0.0476393327,0.0023613712,-0.0192602668,-0.0024128598,-0.0199704543,-0.0097082546,0.0294301435,-0.0242741872,0.0426396169,0.0419010222,0.0260212459,-0.0098076807,-0.0210641418,0.0136568928,-0.006963382,0.0050707338,-0.0022548432,-0.0077552404,-0.0078972774,0.0186068956,-0.0147576826,0.007059257,0.0023595958,0.0108303493,-0.0400545374,0.0011664819,0.0110789146,0.0253962819,-0.01828021,0.0007292731,0.0241321493,-0.0406510942,-0.0137705225,0.0089128446,0.0107309232,0.0021660698,0.0610760674,-0.0092679383,-0.0104042375,-0.0054222764,0.009331855,-0.0139764771,0.0262058936,0.0006018833,-0.0145375244,-0.015609907,0.002622365,0.0239190925,-0.0021270097,0.0086784828,-0.0294869579,-0.0251264106,-0.0079540927,0.0087921135,-0.0081742508,0.0314186662,0.0109652849,-0.0214192346,0.0038421107,-0.0818703398,-0.0345718972,0.0057418607,0.0015100348,0.0032189218,-0.0053761145,0.0158939809,0.0578092076,0.0309357382,-0.0377251245,0.0059975279,-0.049571041,-0.0196721759,0.0013387022,-0.0208368823,0.0001294981,0.0217033103,0.0383500904,0.0131100491,0.0014399039,-0.0258934125,-0.0126484279,-0.0316743329,0.0647690371,0.0132023729,-0.034685526,-0.0130745396,0.0115192309,0.0037462355,0.0062034819,-0.0030111922,-0.0154394619,0.0118388142,0.0093531609,-0.0043463437,0.0333503745,0.0013706606,0.0021128058,0.0139409676,0.0001120209,-0.0274132118,-0.027058119,0.0362763442,-0.0447701775,0.0291460678,-0.0282796398,0.0165615566,0.0089838635,0.0243594088,-0.0099923285,0.014502015,-0.0034426306,-0.0231947023,-0.0208368823,0.0130674383,0.0340321548,-0.0413328744,0.0078688702,0.0113203786,0.0100349402,-0.0134793464,0.001889097,0.0105462745,-0.0463609956,-0.0075137769,-0.0089483541,0.0164053161,0.0427816547,-0.0145872375,-0.0000757903,0.03295267,0.0172007252,0.0222856626,-0.0140545974,0.0056601893,-0.004111982,0.0148855159,-0.0143812839,-0.0095875226,-0.0400829464,0.0256093368,-0.0052589336,-0.0142676532,0.0118956296,-0.0185784884,-0.0232231095,-0.0177404676,0.0206664372,0.0131739657,-0.0106030898,0.0533492342,-0.0113984989,-0.0117464904,-0.0048150667,0.0254104845,0.0220157914,0.0231662951,0.0007452523,0.0148287015,-0.0048683309,0.022583941,-0.0092679383,0.0090051694,-0.0050849379,-0.0047440482,0.0085364459,0.0028904604,-0.0138628474,0.0183228198,-0.0008078375,-0.0147576826,-0.005603374,0.0519288629,0.0474120751,0.00733623,0.0098076807,0.0022654959,-0.022825405,0.0004527441,-0.0191892479,0.0204533804,-0.0233935546,-0.0250553917,0.0327822231,-0.011568944,0.0223282743,0.042213507,0.0195727497,0.0133799203,-0.0205528066,-0.005340605,0.0396284275,-0.0162774827,0.0285068993,0.0037249299,-0.0058448375,0.0206238255,-0.010319015,0.0173001513,0.0426396169,0.0176836532,0.0099142082,-0.0062283385,-0.0045274412,0.0244304277,-0.0121797044,0.0284074731,0.0031692088,-0.0188341551,0.0162916854,0.0356797874,-0.036844492,0.0073220264,0.0893130973,-0.0158797782,0.0471848138,-0.0594284348,-0.0338048935,-0.0128827896,-0.0080251116,0.0015357791,0.0344866738,0.003504772,-0.002261945,0.018592691,-0.0224987194,-0.0058981017,0.0004418694,-0.0090051694,0.0025371425,-0.0243025944,-0.0325833708,-0.0187063217,0.0039734952,0.0509346016,0.0288051777,0.0147150718,0.017726263,0.0067219185,0.0258650053,-0.0060898522,-0.0056211287,0.029174475,0.0533776432,0.03295267,-0.0296858102,-0.0294301435,0.0100846533,-0.0174705964,0.0432929881,0.0442020297,-0.0139622735,-0.0131597621,0.0040374123,-0.0208226778,-0.0159365926,0.0244020205,-0.0037533375,0.0099710235,0.0252116323,-0.0520709008,0.016859835,0.0075847954,-0.0233225357,-0.0159792043,0.0204391778,0.0094738929,0.015993407,-0.0020648683,0.0295437723,0.0169024467,0.0347707495,0.0065940847,-0.0163485017,-0.0069420766,0.0374978669,0.0294017345,0.0080677224,0.0165615566,-0.0262200981,-0.0330094844,-0.0293449201,-0.0057205549,0.0051026926,-0.0159507971,0.0506789349,-0.0205670111,-0.0044812788,-0.0161780566,0.0014896169,-0.0145446267,0.0229106266,0.0158655737,0.0169024467,0.0261916909,0.0019104026,0.0123217413,-0.0025531217,-0.0154110547,0.0091756145,0.0183370244,-0.0020062779,-0.0065195151,-0.0300267003,-0.0120589724,-0.0147292754,0.0322424844,0.0263053197,0.0110007944,-0.0110434052,-0.0113487858,-0.0228680167,0.020851085,-0.000849561,0.0409351699,0.0232373141,0.0222288482,0.0086287698,0.0047262935,-0.0233793501,0.0007452523,0.0081884544,0.0067325714,0.00566374,-0.0140616996,0.0035722398,-0.0141966352,0.0084867328,0.0238196664,0.0062922556,-0.0227259789,0.0135148559,0.0215470679,-0.0000167976,0.0186495073,0.042980507,-0.0636327416,0.0037923977,0.0076984256,-0.0274132118,-0.0252826512,-0.0148002934,-0.0221152175,-0.0031727597,0.0396284275,-0.0315038897,-0.0148429051,-0.0031052919,0.0071160723,-0.0396284275,-0.0060117315,0.0214618463,-0.0245298538,0.0104042375,-0.0325833708,0.0042859777,-0.0129609099,0.0266746171,-0.0023045563,-0.0331799276,-0.0093673645,-0.0117748976,0.0103900339,0.047071185,-0.0062673991,-0.0052198735,0.003131924,-0.0118317129,-0.0025477952,0.0119524449,-0.0070841135,0.0173995774,0.0258223936,0.026362136,-0.0131455585,0.001575727,0.0272853784,0.0246576872,0.0448554009,0.0172149297,0.0032757367,0.0261348765,0.0235355925,0.0388046093,-0.0133160036,0.0039486387,0.0301687364,0.027441619,-0.0162774827,0.0232089069,0.0242599826,-0.0121583985,0.0305664409,0.0383216813,-0.0143741816,-0.0098929023,0.0273279902,-0.0123359459,-0.0081245378,-0.0038634164,0.0214618463,-0.0033893667,-0.0119950557,0.0074001467,0.0046659275,-0.0169024467,0.0308505166,0.0337764844,-0.0159507971,0.0048647798,0.0525538251,0.006530168,-0.0165189467,0.0057276567,0.0012153073,-0.0117180832,-0.0100562461,-0.0378387533,-0.0244588349,0.0218169391,-0.0171155035,-0.0041687968,-0.0098929023,0.0128188729,0.0002018484,-0.0292596985,0.0081742508,0.0438611396,0.0055607632,-0.01448071,0.0286489371,0.0390034616,-0.0226975717,-0.0226549599,-0.0358218253,-0.0085932612,-0.0098431893,-0.0126413256,0.0043463437,0.0220442005,-0.0080606211,-0.0219021626,0.0004409816,0.0503664501,0.0196153615,0.017726263,-0.0211635679,-0.0052482807,0.0070876647,-0.0046659275,-0.0146156456,-0.0118530188,-0.0340321548,0.0049819606,-0.0350832306,0.0314186662,-0.0162206683,-0.0314186662,0.0029455,-0.0103687281,-0.0274274163,-0.0125987148,0.0089838635,-0.0215470679,0.0152406096,-0.0155530917,0.0327822231,0.0064307419,0.0067325714,0.03732742,-0.0333219655,-0.00832339,-0.0027430968,0.0053974199,-0.0490028933,-0.0270865262,0.0574967265,0.0064555984,0.0116612678,-0.0323845185,0.0089909658,0.0406226888,0.0064165383,-0.0076700179,0.0336628556,0.0248565394,0.0063242139,0.0260212459,0.0150701646,-0.0387477949,-0.0361343063,0.0355945639,-0.0238764808,0.0286347326,0.0112422574,-0.0242883898,0.0025087351,-0.0133870216,-0.0091543086,0.0121512972,0.0219163653,-0.0077836476,-0.0097721713,0.020851085,-0.0028194417,-0.0067396732,-0.0539742,-0.0028336456,0.0043392414,-0.0188341551,0.0141682271,0.0155246845,-0.0170870963,0.0363047495,0.0127691599,0.0053974199,-0.0157519449,0.0082452688,-0.0044457698,0.0138912546,-0.026745636,0.0099355141,0.0095946239,0.0096017262,0.0311914068,0.0354525261,0.0112209525,0.0065656775,-0.0124637792,-0.017413782,0.0211067535,0.0055856197,0.0111144241,-0.0122649269,-0.0261632837,0.0076203048,0.0282086208,-0.0097721713,-0.0021536415,-0.0337480791,0.0269018784,0.0047333953,0.0260212459,-0.0219021626,0.0129325027,0.0128188729,-0.0050068172,-0.0215470679,0.024174761,-0.0188199505,-0.035140045,0.0131384563,-0.0052731372,0.0294585507,0.0184364505,-0.0059478148,0.0269728955,0.0195727497,0.0114127025,0.0058945506,-0.0112209525,0.0106812101,0.0438895486,-0.0012836627,0.0053086467,-0.0090406789,0.0391454995,-0.0178683009,-0.0025904065,-0.0294017345,0.0005113345,0.022441905,0.010006533,-0.0353673063,0.0196579713,-0.0341741927,0.0192744713,-0.0067041637,-0.0112777669,-0.0085435482,-0.0096017262,-0.0242599826,-0.0111783408,0.0191040263,0.0266604144,0.0021856001,-0.0313334428,0.0001672268,-0.0214618463,-0.0169166513,0.0077055274,-0.0056317816,0.0160786305,0.0164905377,-0.0160786305,0.0243594088,-0.0536333099,0.0011922262,0.0157519449,-0.0082665747,-0.0205101967,-0.0119382404,-0.0259076152,0.0293165129,0.0185216721,0.0374126434,0.0085719554,0.0251406133,-0.0280665848,-0.0043569962,-0.0429521017,-0.0092963455,-0.0167604089,-0.0110434052,0.0054080728,0.0355377495,-0.0162632782,0.0028354209,-0.0019370347,0.0030449261,-0.0005104468,0.005496846,-0.037810348,-0.008465427,0.0294017345,-0.0248565394,0.013997783,0.0542014614,0.018038746,-0.0445145108,0.007240355,-0.0093602622,0.0073078228,-0.0255951341,0.0225697383,-0.0023187601,0.0327822231,0.0030165187,0.0002257063,-0.0146298492,-0.0026738534,-0.0258223936,0.0266604144,0.0160360187,-0.0184790622,-0.0277398974,0.0042753248,-0.030736886,0.0258223936,-0.03059485,-0.0221578293,0.0052624843,0.0180813577,-0.0178398937,0.0255951341,-0.0001129641,0.0245156493,0.0194733236,-0.0034355288,0.0249275584,0.0032384519,0.0008877335,0.0072723133,-0.0139125604,-0.0213766247,0.0173853748,0.0195727497,-0.0070486045,0.0136924023,0.0102479961,0.0052482807,0.0057702679,-0.001305856,-0.0083731031,0.0029383982,0.0159365926,0.0218453482,-0.0274842307,-0.0278961398,0.0477813706,0.0146156456,0.0195017308,0.0335776322,-0.0016440825,0.0069172201,-0.0067041637,0.0215470679,0.0311061833,0.0102195889,-0.0041581439,-0.0386625715,-0.0147292754,-0.0112280538,-0.0249559656,0.0209363084,0.0103900339,-0.0226975717,0.0007168449,-0.0001338258,0.0097366618,0.0040587178,0.0034781401,-0.0081884544,0.0176552441,0.0004021433,0.0176978558,0.0128614837,0.0087708076,0.0012348373,0.0036929715,-0.0189619884,0.0042895284,-0.010823247,-0.0107593304,0.0245298538,0.0277256947,0.0096514393,-0.0020701946,-0.028094992,-0.0023507185,0.0063064592,0.0048789838,-0.0003027171,0.0107664326,-0.0064378437,0.0111002205,0.0094312811,0.024075333,0.010752229,0.0113629894,0.014118514,0.0064875567,0.016859835,-0.0200840831,0.0777796656,0.0118459165,0.0293449201,0.0108019421,-0.0002257063,-0.0252400395,0.0419294313,0.0060223844,0.0252400395,-0.0144736078,0.0268024523,-0.0033538574,0.0347423404,0.0294017345,0.0225697383,-0.0120873805,-0.0296289958,0.0173995774,-0.0382648669,0.0128614837,-0.0087921135,0.0244446304,-0.0064982097,0.0112777669,-0.0315891095,-0.0024607973,-0.0080961296,0.033407189,-0.011185443,-0.0158371665,-0.015297425,0.0100207366,0.0364467874,0.0064733531,-0.0280239731,0.0059052035,0.0438327305,-0.0043001813,-0.0080393152,0.0042220606,-0.0137634212,0.0063774777,0.0252116323,0.001269459,-0.0156667214,-0.0129751135,-0.0115121286,0.0048221685,0.0247429088,-0.0198284164,0.0062212367,-0.0476109274,0.0092750406,0.0081600472,-0.0303391814,0.0123501495,0.0229958501,0.0399409086,0.0161212422,0.0146582564,0.0307652932,0.0203823615,-0.0004709426,0.0090122707,0.010006533],"35":[-0.0005084388,0.0114922179,0.0487959869,0.0036222397,0.0795549825,0.0247937888,0.0119586922,0.011562896,-0.0057531768,0.0264052432,0.0205248464,-0.0166799724,-0.0033094902,-0.0325683542,0.0249351449,0.0214436594,-0.0081915623,-0.0121777933,-0.0171464458,0.0144324163,-0.0026857583,-0.0168354642,0.0413606763,0.0224755555,-0.0133298421,-0.0305328295,-0.0252037197,0.0651367083,-0.0096970005,-0.0639493167,0.02319647,-0.0411062352,-0.0312396083,-0.0004278219,0.0707909316,0.0167223793,0.0179380383,0.0348017737,0.0224896912,0.0164679382,-0.0034261087,0.0118173361,-0.0278470721,0.0194364078,0.0002679132,0.0073080896,-0.0712998137,-0.0366959386,-0.0020390558,0.0777456313,-0.0389010869,0.0132026216,-0.0262921602,-0.037459258,0.0332751311,-0.017104039,-0.027041344,0.011781997,-0.0136549603,-0.0183196981,-0.0188144427,-0.0520188957,0.0219949465,0.0400319323,-0.0093577467,0.0461384989,-0.0143970773,0.0317202173,-0.0498420186,0.0584081747,0.0561464839,0.0174432937,0.0139942141,-0.0207651518,0.0307589993,-0.0446683988,-0.0145313656,0.032766249,-0.0050746696,-0.0136196213,0.0141638406,-0.012559454,-0.0257550087,0.0019047681,0.0045481194,-0.0178249534,-0.0203410853,-0.0218111835,-0.0261932109,0.0167365149,-0.0120223016,0.0534324534,0.0047142124,0.0225886405,0.0193374585,0.0256136525,0.0012889872,-0.0048131617,0.0013331609,0.007223276,0.0246241614,-0.0107783722,-0.0217405055,-0.0531214699,0.0513686612,-0.0273805987,-0.0195494927,0.0240446031,0.0052230931,-0.0144182807,-0.0559768565,-0.0255147032,-0.0343777053,-0.0126796057,0.001837624,0.0186306816,-0.0273947343,0.0394665115,-0.0115204891,0.0253874827,-0.0028041436,0.0198463406,-0.0478913113,0.0185600035,-0.007258615,-0.0206237957,0.0233095549,-0.041077964,-0.0555245169,-0.0002389795,0.046025414,-0.0362718701,0.0424632505,-0.0316354036,-0.0045375177,-0.001740442,-0.0436506383,0.0056471601,0.0038872818,-0.0002714471,0.0014692157,-0.0305328295,0.0254581608,-0.0080290036,0.0055482113,0.0314940475,-0.0565988198,0.0583516322,-0.0320312008,-0.0120859118,-0.0064705568,-0.0032670835,-0.0748054311,-0.0453469083,0.0459406003,0.0178108178,0.0228430796,0.0694904625,0.017768411,-0.0331055038,-0.0182348844,0.0507749654,-0.0214012526,-0.013040063,-0.0321442857,-0.012262607,-0.024638297,-0.0478913113,-0.0796680674,-0.0215426087,-0.0650801659,-0.0534041822,-0.0266596843,0.0471845306,0.0332185887,-0.0123544876,-0.0558072291,-0.0691512078,0.0328793339,-0.0268717185,-0.0488242581,0.0082339691,-0.0359608904,0.0012130085,-0.0247231107,-0.0021768778,-0.0610091202,0.0502095446,0.0247937888,0.0248786025,-0.0535738096,0.0746358112,0.0169768184,0.0329641476,0.0079865968,-0.0392403416,0.0485132746,-0.0030939227,-0.0207792874,0.0107288975,0.0776890889,0.0254016183,0.0710171014,0.0046788733,0.0020796957,0.0212740321,0.0021927801,-0.0169768184,-0.0340101793,-0.0532910973,-0.0350844823,0.0188144427,-0.0137256384,0.0149271619,-0.0452903658,-0.01030483,-0.054337129,0.0072338777,-0.0006970603,-0.0413606763,0.0209206436,0.0597651899,0.02157088,-0.0342363492,-0.018729629,0.0241152812,0.0310134403,-0.044102978,0.0428307764,0.0266172774,0.0223624706,-0.0041841287,0.0014144405,-0.0425197929,0.0016149888,-0.0165244807,0.0195918996,-0.020425899,0.0095132384,-0.0264617857,-0.02976951,-0.009640458,-0.0242425017,0.0264335144,0.00170687,0.0349996686,-0.0350279398,-0.0404277295,0.0356499068,0.0706778467,0.0275926311,-0.0211185403,-0.0084106643,-0.0036028032,-0.0395513251,-0.0659848377,-0.0078735119,0.0270837508,0.0062691253,0.0155773973,0.0226310473,-0.016510345,-0.0423501655,0.00246489,-0.0036646465,0.0223766062,0.0173160732,-0.0335295722,-0.0007443261,-0.0091103744,0.0461950414,0.0448380262,0.0150967883,-0.0531497411,0.0029401984,-0.0070218444,0.0155067202,-0.0102482876,-0.0003818813,-0.008792324,0.000984189,-0.0595390201,0.0365263112,0.0040357052,0.0117254546,0.0027387666,0.0163124464,0.0181642063,0.04639294,-0.0160862785,0.0306459144,0.0382508524,0.0403146446,-0.0117890649,0.0326248929,0.0370069221,-0.0018888655,0.0225886405,-0.0252461266,-0.050011646,-0.0017581115,-0.0176270548,0.0059581427,-0.0074635809,0.0151250595,0.0138457902,-0.0175139699,0.0050110593,-0.0060888967,-0.0084672058,0.0131248767,-0.0273381919,0.0366959386,-0.0206237957,-0.0308155417,0.0164820738,0.0670591444,-0.0153512284,-0.0117961327,-0.0750316009,-0.0504639819,-0.0857180953,-0.0159731936,-0.0014656818,0.0169485472,-0.0113720661,0.0409366079,0.0226875897,-0.0193091873,-0.016694108,0.0147433989,-0.0153936353,0.0217263699,0.0254722964,-0.041077964,-0.0227017254,0.0081986301,-0.0085732229,0.0019118357,0.0059263376,-0.057362143,-0.0454034507,-0.0724306554,0.0156622119,0.0125170471,0.0422653519,0.0239880625,-0.0027917749,0.0199170168,-0.0194788147,-0.0269141253,-0.0024807926,-0.0171323102,-0.0056224228,0.0368090235,0.0188992564,-0.0029720035,-0.0221504383,-0.0296846963,-0.0261649396,-0.045064196,0.0202280004,0.0269141253,-0.0117890649,-0.0191112906,0.0274088699,-0.0252602622,-0.0046046618,-0.0228430796,-0.0240587387,0.0408800691,-0.0155208558,-0.0119445566,-0.0062161167,-0.0408235267,-0.0131319445,0.0333599448,0.0048449663,-0.0027493683,0.0392403416,0.019097155,0.0393534265,0.0134570627,-0.002722864,0.0147292633,0.043367926,-0.0175422411,0.034094993,-0.0494462214,-0.0076756142,0.0209630504,-0.0115416925,-0.0119162854,-0.0341232643,-0.0001657616,-0.0120081659,-0.0037989344,0.0236912146,0.0376288854,0.0026044787,0.0448662974,-0.0068416158,-0.0611787438,-0.0110469479,0.032172557,0.0189416632,0.0248786025,0.004042773,0.0036540448,-0.0340384506,-0.0006179895,0.0158883799,0.0334164873,-0.012114183,0.0227582678,-0.030843813,-0.0165668875,0.0489090718,-0.0048237629,0.0505205244,-0.0304197464,-0.0142486542,-0.0246807039,0.0021132675,-0.059030138,0.0353106521,0.0617441684,-0.0365545824,-0.0491352417,-0.0336426571,-0.0108419815,-0.0164820738,0.0425480641,-0.0349148586,-0.0145879081,0.0255005676,0.027295785,-0.0269423965,0.02903446,-0.0005283169,-0.0191961043,0.0269848015,-0.0047389497,0.0152098732,-0.0465060249,-0.0162700415,-0.0251613148,-0.0453469083,-0.0213305745,-0.0147999413,0.0522167943,-0.0137539096,-0.0181783419,0.0322856419,-0.0235498585,-0.0459688716,0.0250906367,-0.0206803381,0.0296281539,-0.0163407177,-0.0316071324,0.0145596368,-0.0518209971,-0.0123050129,-0.0096333902,-0.0081067495,0.0397209488,-0.0278329365,0.0230975207,0.0109550664,-0.0094354926,0.02976951,0.0017519272,0.0003971212,-0.0365545824,0.0024825593,0.0079017831,0.0047177463,0.022532098,-0.0176977329,0.010566338,-0.0263204314,-0.0460819565,0.0356216356,0.0191395618,0.0147292633,-0.0257974137,0.0060288203,0.0107430331,-0.0021079669,0.0080855461,-0.0016962683,0.035169296,-0.0168071929,-0.0189275276,0.0216132868,-0.0996274948,-0.0213729814,0.0151674664,-0.0023412036,0.0584647171,-0.004396162,0.0230692495,0.0372330919,0.0164538026,0.0060182186,-0.0003295355,-0.0145737724,-0.015845973,-0.0291475449,-0.0101705426,0.0064281505,0.037120007,0.0310134403,-0.0514252037,0.0368655659,0.0024843263,0.0155915329,-0.0173726156,0.0137821799,-0.0224614199,-0.0345756039,-0.0222069807,-0.0038837478,-0.0130541986,0.003675248,-0.0514817461,-0.0212598965,-0.0265324637,0.0009232294,0.01451723,-0.0238042995,0.0127361482,0.0187154934,-0.0390989855,0.0177825466,-0.0374027155,-0.0575034954,-0.0224331487,0.0226734541,0.009456696,0.0249068737,-0.0054139229,0.0246524327,-0.0003514014,0.0100715933,0.0181500707,-0.048060935,-0.0069122934,0.0295716114,0.0150967883,-0.0105804736,0.0123262163,-0.0104461862,0.0059581427,0.0391555279,0.0192667805,0.0330489613,0.00118032,-0.0111246929,0.0068416158,0.0101776104,0.0179097671,-0.0016052707,-0.028440766,0.047721684,0.0028659867,-0.0428873189,-0.0448097549,0.0168637354,-0.0016688807,-0.0133793168,0.0130117917,0.0067744716,-0.0197191201,0.014185044,-0.0280025639,-0.0033925367,-0.0083046472,0.0017280733,-0.0235922653,-0.026150804,-0.0215567444,0.0275219548,-0.0284266304,0.0033041893,0.0324552692,0.0305611007,0.0358760767,-0.0186589528,-0.0008892157,-0.0003648744,-0.0028748214,0.0299391355,-0.0014524298,0.0299108662,0.0009833055,-0.0106864907,-0.0212316252,0.0255853813,0.0253450759,0.0282994099,0.0029030927,-0.0205531176,-0.0393251553,0.0139376717,-0.0120081659,0.0078664441,0.0358760767,-0.0052513643,0.0154784489,-0.0111812353,-0.0101352036,-0.0520754382,-0.0312396083,0.0028783553,-0.0351410247,-0.003675248,0.0217829123,-0.0011246613,-0.0289213751,-0.0105875414,-0.0215567444,-0.0476085991,0.0082056979,0.0310699828,-0.0123262163,-0.0171181746,-0.0212316252,0.0131814191,0.004173527,0.0047248141,0.0303066615,0.0180511232,-0.0136408247,0.0396078676,0.0361870565,0.0356216356,-0.0194222722,-0.0267162267,0.0068663531,-0.0065164976,0.0114356754,-0.0151957376,0.0078381738,-0.0169061404,-0.0239173844,0.0352541097,-0.0173302088,-0.026334567,-0.0046612043,-0.0227724034,0.0774063766,0.0289779175,0.0034632145,-0.0095061706,-0.053969603,-0.0225462336,0.0030161771,0.0047707548,-0.0336991996,0.0081138173,-0.025967041,0.004597594,-0.047721684,0.0459123291,0.045318637,0.0053008385,0.0359608904,0.0528670289,-0.033755742,0.0206944738,0.027225107,0.034462519,0.0292040873,-0.0057567107,-0.0114356754,-0.040116746,0.0209347792,0.0732787922,-0.0545632988,0.0164113957,-0.0426894203,0.0052160253,-0.0061419052,-0.0332468599,-0.0081420885,0.0129269781,0.0253450759,0.0394665115,0.0042017982,0.0197332557,0.0138387224,-0.0262073465,-0.0021839456,-0.000320259,0.0192667805,0.0293454416,-0.0328510627,-0.0195636284,0.018503461,-0.0247655176,-0.0826082677,-0.0330206901,-0.0066613872,-0.018022852,0.0119940313,-0.0015301754,0.0190406125,-0.0221928451,-0.0275360905,0.0167365149,-0.0197756626,-0.0013234427,0.0133863846,-0.0191395618,-0.0283276811,0.0068840226,-0.0212881677,-0.020722745,-0.0383922085,-0.0126018599,-0.0340384506,-0.0255571101,0.0247372463,-0.0316354036,0.0237477571,0.02408701,0.0256843306,-0.0188851207,0.0084672058,0.0113225915,0.0200159661,-0.0320312008,0.0166375656,0.0108561171,-0.0089690192,-0.0311265234,-0.0240021963,0.0087711206,-0.0306176431,-0.0058662612,-0.015775295,-0.0051418133,0.0367242098,-0.0359326191,0.0214577951,0.0146727208,0.0157894306,-0.0168495998,-0.0218959972,0.0136125535,-0.0089054089,-0.0000702361,-0.0022758266,-0.0273240563,0.0091386456,0.0112801846,0.0194081366,0.0036257736,0.0006312415,0.02482206,-0.0244404003,0.0023235343,0.0009753543,0.0065907096,-0.026631413,0.0065235654,0.0164962094,-0.0549308248,-0.0069829714,0.0069440985,0.0059616766,-0.0054563298,0.0576731227,-0.0279742926,0.0006162225,-0.0028854231,-0.001723656,-0.0260518547,0.019167833,-0.0015372431,-0.0102058817,-0.0078805797,-0.0211609472,0.0175705124,0.0063786758,-0.0021998479,-0.0296281539,-0.0276209023,-0.0306176431,-0.010488593,-0.0021115006,-0.0023959791,0.0180087164,-0.0147858057,0.0342928916,-0.1105966941,-0.0261790752,0.0398623049,-0.0141779762,-0.0105097964,-0.0326248929,0.0121212509,0.0264335144,0.0258539561,-0.0193515942,0.0101281358,-0.0280025639,-0.0281580538,-0.0023288352,-0.0161852278,0.0025178983,0.013075402,0.037120007,0.0132945031,0.0098100854,-0.0277905297,-0.0038802139,-0.0143122645,0.0452620946,0.0132591641,-0.0074635809,-0.0106935585,0.0403994583,0.0201149154,-0.0087640528,0.0234367736,-0.0002612872,-0.0007593451,-0.0016909675,-0.0049827881,0.0309851691,0.0013499469,0.0125029115,0.0243838578,0.009972644,-0.0404560007,-0.0427176915,0.0323421843,-0.0215567444,0.0411345065,-0.0085237483,-0.0083611896,0.0120717762,0.0093365433,-0.0000974581,0.0101352036,-0.0004068394,-0.0187720358,-0.0017298403,0.0070960559,0.0290910024,-0.0230975207,-0.0139588751,-0.005283169,0.0045304499,-0.018432783,0.022348335,0.0495593064,-0.059030138,-0.013372249,-0.0167930573,0.0060676932,0.0280449707,0.002427784,-0.0161145497,0.0320594721,0.011746658,0.0449511111,-0.0131743513,0.0219525397,0.0112165743,0.0098100854,-0.0068098106,-0.0135136042,-0.0244969428,0.0211750828,0.0028076775,-0.0123403519,0.0033837019,-0.0155632617,-0.0225179624,-0.0245393496,0.0036222397,-0.0041205185,-0.0085378839,0.0235215873,-0.0233660974,-0.0062903287,-0.0140436888,0.0159307867,0.0234650448,0.0103825759,0.0127714872,0.0212881677,-0.0189557988,0.0285255797,-0.0250623655,0.0161852278,-0.0075766654,-0.0320877433,-0.0362718701,-0.0006012035,-0.0052124914,-0.0108490493,0.005484601,-0.0167789217,-0.0082410369,0.0243838578,0.0188003071,0.0280025639,-0.0052054236,0.0241718236,-0.0391272567,-0.0039120191,-0.0313244238,0.0130966054,-0.0284549017,-0.0240587387,0.0359326191,-0.0301653054,0.0353106521,0.0452620946,-0.0108914562,0.0085237483,-0.0247372463,-0.010156407,0.0361022465,-0.0011034579,0.04469667,-0.017768411,-0.0022069158,0.0098383566,0.0046046618,0.0083258506,0.0350844823,0.0019012342,-0.0091810524,0.0142839933,-0.0122202002,0.0050676018,-0.011562896,0.0068734209,0.0065518366,-0.046986632,0.0121071152,0.0323139131,-0.0230268426,-0.0069370307,0.0476651415,-0.024341451,0.0394382402,-0.0570228882,-0.0233519617,-0.0058485921,0.0175705124,0.0207368806,0.0306741856,0.0068875565,-0.0346886888,0.0107430331,-0.0274088699,-0.0143758738,0.0082693081,-0.0307307281,-0.0037423919,-0.0228996221,0.0198604744,0.0230975207,0.0192526467,0.0448662974,0.0005932522,-0.0003257807,0.0307589993,0.0048308307,0.0023146996,-0.0283842236,-0.0086085619,0.0416716598,0.0499268323,0.0305893719,-0.0155208558,-0.0381943099,0.0081491554,-0.0133581134,0.029995678,0.0117183868,0.012078844,0.0165810231,0.0153794996,-0.0280732419,0.0376854278,0.0151533308,-0.0005632141,-0.0128987068,0.0375440717,-0.0575034954,0.0199452881,0.0234791804,-0.0500964597,-0.0121989967,0.0459971428,-0.027479548,0.0282145962,-0.0350844823,0.0346604176,-0.0056294906,0.0063822097,0.012043505,0.0060818288,-0.035423737,-0.0055941516,0.0259529054,0.0105309989,0.0143829416,-0.0563443787,-0.0211185403,-0.0263628382,-0.0190406125,0.0223059282,-0.0200725086,0.032172557,-0.0076332074,-0.0122202002,-0.0229278933,0.009640458,-0.0002506855,0.013407588,0.0106723551,0.0287658833,0.03471696,0.02408701,0.00703598,0.0111812353,0.0084035965,0.003314791,-0.019167833,0.0057249055,0.0016847833,-0.0572773293,-0.0245958902,0.0062125828,0.0056224228,0.0367807522,0.031437505,-0.0134287914,-0.0029667027,0.0126371989,0.0235922653,0.0055411435,0.0480326638,0.0107218297,0.0048767715,0.0175705124,-0.0292606298,-0.0143829416,0.0022016149,0.0210761335,0.0100221187,0.0065412349,0.0061383713,0.0045869923,-0.0144041451,-0.0050145932,0.0094072213,-0.0005190404,-0.0224755555,0.0153088216,-0.0006550953,-0.0076049366,-0.0169909541,0.0311830658,-0.0585212596,-0.019761527,-0.0173867512,-0.0380529538,-0.0195918996,-0.0110116089,-0.0244828071,-0.0175987836,0.0338970944,-0.0060959645,-0.0125382505,-0.0085661551,-0.0020072509,-0.0222493857,-0.0085661551,-0.0048060939,-0.01824902,0.0104744574,-0.0279177502,-0.0092870696,0.0044597723,0.0119092176,-0.0066401837,-0.0228854865,-0.011301388,-0.0250623655,0.0192243755,0.0300239492,0.0081844945,0.009011426,-0.003122194,-0.0327945203,0.0062514558,0.0169626828,0.0009656361,-0.0037600615,0.013407588,0.0495593064,-0.006004083,0.0034208079,0.02976951,-0.0017130544,0.0258822273,0.0316636749,0.0090679675,0.0179663096,0.0115487603,0.0392686129,-0.0161852278,0.0022652249,0.0205813888,0.007979529,-0.0156763475,0.0138952648,0.029515069,-0.008976087,0.0094849672,0.0305045601,-0.0297977813,0.0007191471,0.0011750192,-0.0218959972,-0.0084884092,-0.0015663978,0.0199876949,0.0006922012,-0.0135630788,-0.0067002601,-0.0078735119,-0.008311715,0.0259953123,0.0106158126,-0.0175705124,0.0014488959,0.0598217323,0.0011423307,-0.0239456557,0.007223276,-0.0109621342,-0.0128280297,-0.0239032488,-0.0074494453,0.0013755676,-0.0115770316,-0.0088983411,0.0206379313,-0.0093860179,0.0179097671,0.0073292931,-0.0069122934,0.0003964585,0.0308155417,0.0141285015,-0.0126513345,0.0280873775,0.0162276346,0.0032918209,-0.00703598,-0.0279460214,-0.0137327062,0.0002185492,0.0030073423,-0.0032017066,0.0157894306,-0.0144465519,-0.0331055038,0.0101069324,0.0328510627,0.0004748668,0.0219384041,-0.0284124948,-0.0124817081,0.0039579594,0.0154077709,-0.0069476324,-0.0138457902,-0.0122484714,-0.0144465519,-0.0077392245,0.0413324051,-0.0093224086,0.0004375401,0.0065412349,-0.0359608904,-0.0342646204,0.0082551725,0.016877871,-0.017584648,0.0254016183,-0.0066790567,0.0369221084,0.0321442857,0.0105804736,0.0310699828,-0.0193233229,0.0038978832,-0.007682682,0.0030532831,-0.03471696,-0.0301370341,0.010085729,-0.0069971071,-0.0102270842,-0.0423784368,0.0105522024,0.0195212215,0.0139871463,0.0186306816,0.0387314595,0.021683963,0.0123050129,0.0103472369,0.0215567444,-0.0405973569,-0.0284549017,0.0020178526,-0.031805031,0.0121071152,0.0015443109,-0.0083399862,0.0201431867,0.0162700415,-0.0385052934,0.0305045601,0.0377985127,-0.0101422714,0.0112731168,0.0088700699,0.002954334,-0.0220373534,-0.0510576777,-0.009753543,-0.0027210971,-0.0229561646,0.0251330435,0.021683963,-0.0017678296,0.0263487026,0.0045763906,-0.0194364078,-0.0247655176,-0.0129057746,-0.0020867635,0.0056365584,-0.014884755,0.0262073465,-0.0080784783,0.0033571979,0.0176129192,0.035169296,-0.0041487897,-0.0094708316,-0.0235781297,-0.0419826433,0.0372048207,-0.0034084392,0.0067426665,-0.0196343064,0.0186872222,0.0221787095,0.0404560007,-0.0203552209,-0.0143405357,-0.0089690192,-0.0003434502,0.0027670378,0.0409648791,-0.0270130727,-0.0065341671,0.0220656246,0.0066048447,-0.0377985127,0.0202704072,0.0213164389,-0.0419261009,0.0247089751,-0.0187861715,0.0027369997,0.0479195826,0.0030338466,0.0188003071,0.031437505,0.0217122342,-0.0030250119,-0.018503461,-0.0116265062,0.0368090235,0.0109904055,0.0079653934,-0.0193657298,0.0284549017,-0.0136973672,0.0126725379,-0.0070819203,-0.0036434431,0.0015513788,-0.0141921118,-0.0314940475,0.019832205,-0.0193515942,0.0213588458,-0.0322573707,-0.0153794996,0.0080855461,-0.0068628192,-0.0127361482,0.0019206705,0.0100574577,0.01735848,0.0031911049,-0.0088347308,0.030363204,-0.0011175935,0.0147151276,-0.0045905262,-0.0182914268,0.0209489148,0.0215284731,0.001906535,0.0165527519,-0.0463363975,0.0047318819,0.0112165743,-0.0119162854,0.0026557201,-0.0324835405,0.0044173654,0.0196201708,0.02976951,0.0190547481,0.0234650448,0.0226734541,-0.029995678,0.0224472843,-0.013372249,-0.005576482,-0.0366393961,0.0038872818,-0.0110469479,0.0190123413,-0.0437071808,-0.0027263979,-0.0090821031,0.0127149448,0.0076332074,-0.003415507,-0.0145737724,0.0305611007,0.0209347792,-0.0213729814,-0.0129623171,0.0617441684,0.0078169703,-0.0542523153,0.0167930573,-0.027041344,0.0053397114,-0.0121495221,0.0060712271,0.0109833376,0.035169296,-0.0247513819,0.0370351933,-0.0103189657,-0.0099585084,-0.0270130727,0.0137185706,0.0386466458,-0.002362407,-0.00867924,0.0035975024,-0.0449511111,0.0218818616,-0.0287093427,-0.0171464458,-0.0019012342,0.0089972904,-0.0045657889,0.0408800691,-0.0154643133,0.0219101328,0.0091457134,0.0032617827,0.0159166511,0.0011670679,0.0336143859,0.0174291581,-0.0121353865,-0.028370088,0.0235639941,0.0265465993,-0.0184893254,-0.0000268631,0.0003195964,-0.0207934231,0.0199876949,-0.0056436262,-0.0207086094,-0.0112236422,0.012707877,0.0228572153,-0.0314092375,-0.0367807522,0.0541957729,0.0041629253,0.0119233532,0.0122555392,-0.0146161793,0.0219242685,-0.0004987206,0.0143546714,-0.0018411579,-0.0063928114,-0.0127008092,-0.0046824072,-0.0104673896,-0.0062867948,-0.0220232178,0.0041275863,-0.0117254546,-0.0153936353,-0.0030179441,0.0075271907,0.0163831245,0.018729629,0.0361870565,-0.0010212949,0.0036363753,-0.0037141209,-0.0085802907,0.0016759485,0.0165951587,0.0249634162,-0.0006016452,-0.0040533748,0.008495477,0.0002160092,-0.0170333609,0.0495027639,0.0206096601,-0.0093294764,0.0074211741,0.0070147766,0.0070642508,0.01123071,0.0040357052,-0.0030815541,-0.0065589044,0.00305505,-0.026334567,0.0071844035,0.0113862017,0.0256843306,0.0210195929,0.0235922653,0.01987461,0.0283418167,-0.0050393306,0.0430569462,0.0148423482,0.015959058,-0.0055270079,-0.0021821787,-0.0161145497,0.0238891132,-0.011633574,0.0193798654,-0.0128633687,0.0360174328,0.0093153408,0.029288901,0.0229420289,-0.0121000474,-0.0176977329,-0.0107783722,-0.0029278297,-0.0616310835,0.0135630788,-0.0053644488,0.0318898447,-0.0068486836,0.0215426087,-0.0173867512,-0.0002097144,-0.0010813711,0.0421805382,-0.0140295532,-0.0177825466,0.0018270224,0.0048343646,0.0249775518,0.018503461,0.004470374,0.0089548836,0.0040498408,0.0062373201,-0.027041344,0.0092587983,-0.0201149154,0.0127926907,0.0409931503,-0.0119021498,-0.0098666279,-0.0038802139,-0.005191288,-0.0128987068,0.0009629857,-0.0251754504,-0.0140295532,-0.0531780124,-0.0033077232,0.0120929796,-0.0122060645,-0.0081986301,0.0132167572,0.0277339872,0.0088488664,0.0090750353,0.0515948273,0.0024913941,-0.009824221,0.0188568495,0.0050181272],"36":[0.0079977084,0.006431066,0.0389780588,0.0118203154,0.0365967602,0.011146659,-0.0187683739,0.0330561511,-0.0048879236,0.0093058543,0.031332843,-0.0444926359,0.0067287283,-0.0448686332,0.0343094654,0.0151729295,0.0131911272,-0.0151259303,0.0001832237,0.0127054676,0.0268365797,-0.0218233261,0.0540178232,0.016387077,-0.0396987125,-0.0233899672,-0.0261159241,0.0498505533,0.0035229865,-0.058028426,0.0256772656,-0.0292962082,-0.0584670864,0.0013179377,0.0193636976,0.0082640378,0.0238129608,0.009728848,0.0166534055,0.008311037,-0.009235356,-0.012627136,0.0156429224,0.053516496,-0.0083580362,-0.0122041423,-0.0475945882,-0.0094233528,-0.0141624454,0.0449939631,-0.0447119661,-0.0177970547,-0.0075120493,-0.0339334682,0.0131127946,-0.0530465022,-0.0144131081,-0.0053344164,-0.0459026173,-0.0026867914,-0.0185803771,-0.0476259217,0.0228103101,0.029766202,-0.0190190356,0.0052600009,-0.0425186679,0.0409206934,-0.0409833603,0.0155410906,0.070937559,-0.0071438882,-0.0049897553,0.0006971558,0.0335574746,-0.0543624833,0.02478428,0.0274475701,-0.0276355688,-0.0172957294,-0.0035934856,-0.028027229,-0.0300168637,-0.0135436216,0.002154133,-0.033996135,-0.026350921,-0.0304241907,-0.0279175639,0.0160345826,-0.02044468,0.0510725342,-0.0033154064,0.0232489705,0.0262412559,0.0383514017,-0.0057848264,0.0364400968,0.0032449076,0.0286852177,0.0215569958,-0.0085303662,0.0035739024,-0.0354374461,0.0293902066,0.0147891017,0.0144209415,0.0069323918,-0.0172173977,-0.0118438145,-0.0939358622,-0.0247216132,-0.0278235655,0.0118751479,-0.0066347294,0.006066822,-0.0212436672,0.0371294208,0.0053109168,0.0121649764,-0.0026809163,0.0208363403,-0.0344347954,0.025363937,-0.0216196626,-0.0422680043,-0.0162460785,-0.0517305247,-0.0456832871,-0.0045510954,0.0404193699,-0.0062195696,0.0391033888,-0.0343094654,-0.0188623723,-0.0095956838,-0.0249879435,-0.0106610004,-0.0351241194,-0.0154705914,0.0198180228,-0.0155567564,0.0074454667,0.0057613268,-0.0175150596,-0.0018153467,-0.0106610004,0.0323668271,-0.0203663483,-0.0033741556,-0.0035171118,-0.0114129884,-0.0780187771,-0.0181417167,0.0481272489,-0.0219956562,-0.0041633514,0.0649843141,0.0051190034,-0.0344661288,0.0094311861,0.0490045659,-0.047312595,0.0179693867,-0.0130187962,0.0024537533,-0.0309725162,-0.0226223134,-0.081590727,-0.0129091311,-0.0976958051,-0.0300168637,-0.0175307263,0.0182513818,0.0421426743,-0.0222776514,-0.0161050819,-0.0711882189,0.0034250715,-0.0049349228,-0.0454012901,0.0261472575,-0.0377247445,-0.0048605073,-0.0361580998,-0.005252168,-0.0506965406,0.0529211722,0.0013747285,0.0178440548,-0.0747601613,0.1080983132,0.0302205272,0.0403253697,0.0254579354,-0.0222933181,0.0232646354,0.01363762,-0.0131754605,-0.0002878705,0.0611303784,0.0117341494,0.0795227587,0.0004814977,-0.0077666286,0.0269775782,-0.0052952506,-0.0087653631,-0.0591564067,0.0028062477,-0.0200060215,0.0014981016,-0.0126663018,0.0595950671,-0.0627283528,0.0187683739,-0.0648589879,0.0058044093,0.0054558315,-0.0075237988,0.0295782033,0.0315208398,0.0564304516,-0.0052795843,0.0110996598,0.0440226458,0.0224029832,-0.0541431531,0.0382887349,0.0172957294,0.0202880166,-0.043834649,-0.0185177103,-0.0260062609,-0.00897686,0.0111388257,0.0236092974,-0.0301891938,0.0371294208,-0.0193480309,-0.0035601943,0.0025888763,-0.0284188893,0.0042495169,0.0158152524,0.0474065915,-0.041296687,-0.0324608274,0.0031685338,0.0528585054,0.0555217974,-0.0569004454,-0.0148361018,-0.0000853086,-0.0222933181,-0.0426126681,-0.0288888812,0.0463726074,-0.0096975155,0.0042651831,-0.0013316459,0.0143191097,-0.0443359725,-0.0014471858,0.0096896822,0.0209616721,0.0030588689,-0.0091256909,0.0107001662,-0.0335574746,0.0457459502,0.0388527252,0.0018868246,-0.0472812615,-0.0216353275,-0.0194106959,0.0156350881,-0.0040419367,-0.0052756676,-0.0303771924,-0.0246902797,-0.0428946614,0.0512918644,-0.0046803434,-0.0197866913,0.0044492637,0.0147577692,0.0034426961,0.0013169586,-0.011467821,-0.0003544528,0.0001336542,0.0459652804,-0.014796935,0.032429494,0.0178753864,0.0246432815,-0.032022167,-0.0220269896,-0.0182357151,0.0123216407,-0.0496312231,-0.0103711709,-0.0162617452,0.0308001842,0.0156742558,0.0027377072,-0.0097680138,-0.0079467921,-0.0264605861,0.038915392,-0.0243142862,0.0130579621,-0.0366907604,-0.0406386964,-0.0163714103,0.0773294568,-0.0058827414,-0.0096505154,-0.0097993473,-0.0470932648,-0.0594697371,-0.0210400037,-0.0097680138,0.0250506084,-0.0009644641,0.0285442211,0.0259749275,0.0085460329,-0.0404506996,-0.0154940914,0.0023891293,0.0234839655,0.0091961892,-0.0269305781,-0.0276669003,0.018533377,-0.0186743755,0.0101205083,0.0279018972,-0.0338081382,-0.0270559099,-0.0782694444,-0.0196456928,0.0249722768,0.0168100707,-0.0151964286,-0.0289985463,-0.0011935855,0.0210243389,-0.0039244387,-0.038633395,0.0226693116,-0.0091570234,0.0098620122,0.0427066647,-0.026758248,-0.0469992645,-0.0118438145,-0.0233273022,-0.041296687,0.0178910531,0.0153139271,-0.0013218543,-0.016387077,0.0360954367,-0.0193323642,-0.0053931656,0.000394598,0.0061686537,0.0193636976,-0.0286538862,-0.0256772656,-0.0195516944,-0.0453699566,-0.0074141342,0.0415473506,0.0070733894,0.0300951954,0.0541431531,0.0245649498,0.0557411276,-0.0056399116,-0.0080603743,0.0242359545,0.0547698103,-0.0162460785,0.0180163849,-0.0743215084,-0.0183610469,0.0190033689,-0.0142721105,-0.025019275,-0.0292962082,0.001086858,0.0050994204,0.0162930787,0.050727874,0.0637310073,-0.0229983069,0.011788982,-0.0063605672,-0.0423620045,-0.0182200484,0.0110918265,0.0144836064,-0.023687629,0.0327741541,-0.0379754081,0.0106766662,0.0223873165,-0.0076217144,0.0485345758,-0.0249409433,0.0185803771,-0.0311605129,-0.0164654087,0.036659427,0.0140136145,0.0433646552,-0.0344974622,-0.0516678579,0.0280428957,-0.0290455464,-0.0028884965,0.0117811495,0.0271342415,-0.0186430421,-0.0441166423,-0.0536104962,-0.0054401648,0.0337768048,0.0506025404,-0.022528315,0.0001389171,0.0241106227,0.0415473506,-0.0219643228,0.0493805595,-0.0270089116,-0.011640151,-0.0122824749,-0.040012043,0.028089894,-0.0455579534,-0.0111388257,-0.0569317751,-0.0566497818,-0.017264396,-0.0010046093,-0.0106453337,-0.0073867179,-0.028027229,0.0330248177,-0.0626030192,-0.0301108621,0.0482212454,-0.0454952903,0.0380694047,0.0243299529,-0.0026437086,0.0106375003,-0.0311448462,0.0185647104,-0.0013071671,-0.0192070324,-0.0076804631,-0.0227476452,0.0139431152,-0.0164654087,0.0075237988,0.0098385131,-0.0219486561,-0.0185177103,-0.056179788,-0.0035562778,-0.0003147972,-0.0187683739,0.0041672681,-0.0357821062,0.0055224136,0.0117576495,-0.02044468,0.0633550063,0.0125331376,0.0083658695,-0.0262099244,-0.0372547507,-0.0369100906,-0.0018163258,-0.0082718711,-0.0145776058,0.0490045659,-0.0208363403,-0.0299228653,0.0215883292,-0.0949385166,-0.033996135,0.0069323918,0.0106375003,0.0339334682,0.0176717229,-0.0083815353,0.039604716,0.0307375193,0.0313015096,0.0101126749,-0.0028414973,-0.0129796304,0.000608053,-0.0383514017,0.0078645442,0.008483367,0.0060080728,-0.0311448462,0.026288256,0.0068344763,0.0091570234,0.0114521543,0.0027553318,-0.0367220938,-0.0524825118,-0.0027455403,-0.0011955438,0.0084363678,-0.0199276879,-0.0512291975,-0.0014824352,-0.0320064984,0.0181417167,0.005788743,-0.0487852357,0.0078841271,0.0230296403,-0.0532658324,0.0128307994,-0.0061099045,-0.0255206004,-0.0325861573,0.0314895064,0.0402940363,0.0368787572,0.0325234905,0.0174210612,-0.0310038477,0.0105278352,-0.0178753864,-0.0171077326,0.0150632644,0.0269932449,0.0513545312,-0.0320848301,0.0037716911,-0.0365967602,0.0276982337,0.0012317724,0.0231863037,0.0143269431,0.0084207021,0.0004991224,0.0072183036,-0.0104886694,0.0110918265,-0.015290428,-0.013786451,0.0536418296,-0.0079232929,-0.0315051749,-0.0075081326,0.0176560581,0.004229934,-0.0049780053,0.0033976552,-0.0165750738,0.0123999724,0.0131911272,0.0112406574,-0.0075707985,0.0012660427,0.0284502227,-0.0169197358,-0.0209616721,-0.0061059878,0.0192853659,-0.0400433727,0.0000965076,0.042456001,0.0113033233,0.0269932449,-0.02044468,-0.0097993473,-0.0212436672,-0.0055968291,0.0386960618,-0.0168884024,0.0283875559,-0.0052678343,-0.00087683,0.0140371136,0.022528315,0.0275885686,0.0044179307,0.0063096513,-0.0311291795,-0.0284032226,0.0086791981,-0.0279802289,0.0054479982,0.0044296808,0.0094311861,0.0012396056,-0.0051033371,-0.0012121894,-0.0273535717,-0.020209685,0.0147186033,0.0000066399,0.0143661089,0.0360014364,0.0049310061,-0.019865023,-0.0334008113,-0.0143739423,-0.0404193699,0.0229513086,0.0094468519,-0.0024615866,-0.0325548239,0.0135749541,0.0122746415,-0.0116636511,0.0063762334,0.0352494493,-0.0102693392,-0.005271751,0.0404193699,0.0141702788,0.0312545113,0.0008278725,-0.0129952971,0.0192226991,-0.0097445147,-0.0076765465,-0.0164967421,0.0191600341,-0.0363147669,-0.0118438145,0.0320848301,0.0022363816,-0.0153217604,-0.024094956,-0.0462472774,0.0724415332,0.0240479577,0.0097210146,-0.0103633376,-0.0200843532,-0.0119769797,0.0189093705,-0.0002900736,-0.0597204007,0.0206483435,-0.0284658875,0.0231236387,-0.040482033,0.0648589879,0.0349987857,0.0164184105,0.055083137,0.0527331755,-0.0403880365,0.0386647284,-0.0124469716,0.0216823276,0.02044468,0.0134887891,0.0162617452,-0.0454952903,-0.0008876007,0.0515111946,-0.0082405377,-0.0035171118,-0.0093841869,-0.0200530197,0.0035249449,-0.016449742,0.0034387796,0.0240166243,0.026695583,0.0127759669,0.0094311861,0.0201783516,-0.0102850059,-0.0011054619,0.0094311861,-0.030753186,-0.0040184371,0.0160580818,-0.0384140648,-0.0131754605,0.0090943575,-0.0080525409,-0.0557097942,-0.0285598859,-0.0128542986,-0.0055145803,0.014452274,-0.0039538131,0.0406073667,-0.0060119894,-0.0298915319,-0.0251759402,-0.0103476718,-0.0109116631,0.008397202,-0.0041359356,-0.0259279273,0.0098620122,-0.0164967421,-0.0295155384,-0.0351867825,-0.017201731,-0.0348107889,-0.0179537199,0.0302205272,-0.0261159241,0.0154235922,0.029766202,0.0221366547,-0.0188467056,0.0157525875,0.0197710246,0.0187527072,-0.0253326036,0.0059689065,-0.0067561446,-0.0217606593,-0.0243612863,-0.0152825946,0.00309216,-0.0041085193,-0.0229983069,-0.0340901352,-0.014969266,0.0474065915,-0.0177343898,0.0259749275,0.0457459502,0.0109038297,-0.032899484,-0.0211026706,0.0167004056,-0.0071869711,0.0110526606,0.0419233441,-0.0068031438,-0.0000511913,-0.0207110103,-0.0163087454,0.0217606593,0.0109586623,0.0109273288,0.001610704,0.0005835742,0.0136297867,0.0029785784,-0.005788743,0.0038793976,0.0085773664,-0.0266329162,0.0001692708,0.0190817025,0.0131049622,-0.0569317751,0.0350301191,-0.0210556705,0.0027474987,0.0106923329,0.0044649304,-0.0216823276,0.0254892688,-0.0013668953,-0.0034309463,-0.0292492099,0.0071125557,-0.0118751479,0.0226849783,-0.0229356419,-0.0212280005,-0.0345914587,-0.0276355688,-0.0139431152,-0.014279943,0.0101988409,0.0002312021,0.0028062477,0.0144601073,-0.1049023569,-0.0220113229,0.0245179497,-0.0117654828,-0.0154000921,-0.0208833404,0.0220113229,0.0222933181,0.0215256643,-0.0091726901,-0.0117419828,-0.0463099442,-0.0153295938,-0.007602131,-0.0176247247,-0.0131362947,-0.0197710246,0.0453699566,0.0167787373,-0.0097445147,-0.020209685,-0.0228259768,-0.0468112677,0.0256302655,0.0125018042,-0.0231236387,-0.0244082846,0.0348421223,0.0339648016,-0.0299541987,0.0268679131,0.0192540325,-0.0182357151,0.019113034,0.000918444,-0.0082170386,-0.0040536867,0.0037991072,0.0198806897,0.0131832939,-0.0210243389,-0.0174210612,0.0507592075,-0.0305338558,0.0356254429,0.0056947442,0.0080447076,0.013120628,-0.0120239789,0.0070733894,0.023045307,0.007355385,-0.0123843066,-0.0055889958,0.0208833404,0.0243926179,-0.0186273754,-0.0311918464,0.0139431152,0.0105513353,-0.0113973217,0.014452274,0.0228573084,-0.045933947,-0.0178910531,0.0053187502,0.0122511415,0.0198180228,0.0123686399,0.0130422963,0.0319908336,0.0282152258,0.0062234858,0.0006398754,0.015204262,-0.0023147138,0.0394167155,-0.0084285345,-0.001655745,-0.0413280204,0.018470712,-0.0034642376,-0.005357916,0.0250506084,-0.0128699653,0.009556517,0.0005786784,0.002968787,0.0094860187,-0.0122589748,0.0504145436,-0.0199903548,-0.0093528535,-0.002109092,-0.0200843532,0.0009649537,0.0133164581,0.0211653356,0.0211496688,0.0010330047,0.0425500013,0.0097523471,-0.0050171716,0.0150319319,-0.0496312231,-0.0069872239,0.0023147138,-0.0038049822,-0.0096661821,0.0181417167,-0.0213376656,0.0073123025,-0.0000818203,0.0492865629,0.0201470181,0.0235779639,0.0318968333,-0.0042495169,0.0033878637,-0.0103868376,0.0293118749,-0.0206013452,-0.0674282759,0.0284815542,0.0034231131,0.0411086902,0.0187683739,-0.0294528734,0.0203350149,-0.0351554491,0.0471559279,0.0267739147,0.0012298141,0.0337454714,-0.040482033,-0.0144366072,0.0126663018,-0.0267425813,-0.0070263902,0.0291238781,0.0127603002,0.0201940183,0.0186430421,-0.0072496366,0.024502283,-0.0052443347,-0.0260845926,0.0002788134,-0.0294058733,0.0278862305,0.0314581767,0.000511117,0.0045980946,0.0608483814,-0.0420173444,0.0464666076,-0.0269305781,-0.0344347954,0.0013159794,0.0017771597,0.0333694778,0.0362521,-0.002620209,-0.0334321447,0.0186743755,-0.0349361189,0.0191600341,-0.0123686399,-0.0293275416,0.0051307529,-0.0176403914,0.0126036359,0.0040536867,0.0151650961,0.030753186,0.0381007381,0.0090473583,0.0253012702,0.0083502028,0.0185960419,-0.0194733627,-0.0044061812,0.0211340021,0.0384140648,0.051542528,-0.0386960618,-0.0091570234,0.017374061,-0.0002707354,0.0146951033,0.0305495225,0.0116088185,-0.0064858985,0.0266799163,-0.0374114141,-0.0197396912,0.0286382195,-0.0016342036,-0.0047743418,0.0429259948,-0.0877319649,0.0130501296,0.0103868376,-0.0091413567,-0.0267895814,0.0245492831,0.0100891758,0.0192383658,-0.020789342,0.0099325115,0.0100186765,-0.0156820882,0.0040262705,-0.0165750738,-0.0248626117,-0.0049584224,0.0104025044,0.0104338368,0.0440226458,-0.0360641032,-0.0441166423,-0.0348734558,-0.040482033,0.0134731224,-0.02478428,0.0258809291,-0.0165437423,-0.009298021,0.0089611933,0.0041281022,-0.0208050087,0.0207110103,0.0044688466,0.0268209148,0.0047625923,0.0147264367,0.0113659892,-0.0004555502,-0.0165594071,-0.001106441,-0.028606886,0.0277608987,-0.0152199287,-0.0313485116,-0.0126819685,0.0094155194,0.0412026905,0.0392913856,0.0187683739,-0.0164340772,-0.0325548239,0.0193166975,0.0240009576,0.0185020436,0.0249096099,0.0154862581,0.007355385,-0.0137707843,0.008311037,-0.02942154,-0.0052913339,0.0188467056,0.0294372067,0.010136175,-0.0201000199,-0.0130266296,-0.0168100707,-0.0174210612,0.0171547327,0.0033996135,-0.0338081382,0.016857069,-0.0020150936,0.0051033371,-0.0221053213,0.030283194,-0.0492865629,-0.0181573834,-0.0261315908,-0.0070381397,-0.0239539593,-0.0061451541,-0.0293275416,0.0019553653,0.0274319053,-0.0173270628,-0.0161834136,0.0030804102,0.0090473583,-0.0237502959,-0.0029257042,0.0486285724,-0.0138177844,0.0069754743,-0.0306121875,-0.0148282684,0.007613881,0.0169667341,0.0138569502,0.0006893225,-0.007065556,-0.0036150268,-0.0085147005,0.0113894884,0.0210713372,-0.0037423165,-0.0003277709,-0.0160894152,0.0119926454,0.023170637,-0.0111858249,-0.0087026972,-0.0137159526,0.0377560779,0.0137002859,-0.021713661,0.0334634781,0.0326174907,0.0118046487,0.0216353275,0.0239382926,0.0116088185,0.0050328379,0.0175307263,-0.0067757275,-0.0066660624,0.0136924526,-0.0045354292,-0.0082483711,0.0025751682,0.0016714113,-0.015611589,0.0082562044,0.0271342415,-0.0435213186,0.0141232796,0.0195830278,-0.031567838,-0.0137786176,-0.0040536867,-0.00181143,-0.0080016246,0.0032194497,-0.0259435941,-0.005788743,-0.0209146738,0.0149379335,0.0120161455,-0.0179537199,0.021196669,0.0839720219,0.0031665755,-0.0214003325,0.0062665688,-0.0063958168,-0.0270559099,-0.0007338739,-0.0212123357,-0.0282778908,0.007645214,-0.0250506084,0.0056829946,0.0180007182,0.0096661821,-0.0146951033,-0.0183923785,-0.0132694589,0.0315521732,0.0216666609,-0.0033624058,0.0181417167,-0.0078292945,-0.0000574333,-0.0287322178,-0.0118829813,-0.0216823276,0.0307688527,0.0004792946,-0.0176403914,0.0052913339,-0.0049270894,-0.017139066,-0.0129091311,0.0404506996,-0.0097523471,0.0154784247,0.0095251845,-0.001688057,0.0118359812,0.0204916801,0.0005130753,-0.0283092242,0.0135279549,-0.0348107889,-0.0106844995,0.0534851626,-0.0055733295,-0.0137237851,-0.0041946843,-0.0420800075,-0.052701842,-0.0056085791,0.0098071797,-0.0064702323,-0.0038598147,0.0012797508,0.0255519338,0.0435213186,0.0078410441,0.038633395,0.0165594071,0.0018545127,-0.0252229385,0.0198806897,-0.0117028169,-0.028089894,0.0246119481,-0.0164967421,0.007860627,-0.027337905,0.0047586756,0.0141781112,0.0029198295,0.004316099,0.0087026972,0.0214629974,0.0094546853,0.0091256909,0.0028669552,-0.0485659055,-0.0268835798,0.0136846192,-0.0289202146,0.0039773127,-0.0227946434,0.0054244986,0.0294528734,0.0237502959,-0.050445877,0.0494745597,0.0127681335,-0.0231393054,0.0249096099,0.0192226991,0.0069637243,-0.0159797501,-0.0456206203,-0.0156507548,-0.0012670219,-0.00618432,0.0179850515,0.0290925447,-0.0179223865,0.0270089116,0.0097993473,-0.0151885962,-0.0169197358,-0.0002952141,0.0008141643,0.001785972,-0.0207110103,0.0096896822,0.0227789767,0.0158779193,0.0450566299,0.0231863037,0.0139979478,-0.0114913201,-0.030345859,-0.0157212541,0.039322719,0.0114051551,-0.0099951774,-0.0229669735,-0.0095408512,0.0228886418,0.0060394057,-0.0361894332,-0.0111153265,0.0075355489,-0.0115853185,0.0165124089,0.0450566299,0.0066973954,-0.0114599876,0.0176090579,-0.0023225471,-0.0392287187,0.0085538663,0.0322414972,-0.0153844263,0.0241732895,-0.0278548971,0.024376953,0.0213220008,0.0079546254,0.0007818523,0.0079115434,0.0091805235,-0.015118097,-0.005788743,-0.0058396589,0.0295312051,0.0085851988,0.0022461733,-0.0159092508,0.0219486561,-0.0048879236,0.0082405377,-0.0116009852,0.0006212716,0.0139666153,-0.0177343898,-0.0363147669,0.0372547507,-0.0303301923,-0.0205386784,-0.0189720374,-0.0367534272,-0.016794404,-0.0034994869,-0.0239696261,-0.0091335243,-0.0027279158,0.0219173245,-0.0099716773,-0.0339021385,0.0195830278,-0.0207580086,-0.0058827414,-0.0135357883,-0.0078018778,0.0060433224,0.0249566101,-0.0090865251,0.0139117828,-0.0354061127,-0.0185803771,0.016214747,-0.0105513353,0.0063684005,-0.0339021385,0.0129952971,0.0109899947,0.0350614525,0.0417353474,0.0130031304,0.0065759807,-0.0251602735,0.0360954367,-0.0139744477,0.0073397188,-0.0411400236,0.0158309191,-0.0152355954,0.0338081382,-0.0101596741,0.003033411,-0.0015754545,0.0272282418,-0.0069637243,0.0064584822,-0.0241262894,0.0222306531,0.0244552847,0.0059963227,-0.0239069592,0.0586864166,0.0293902066,-0.0472185947,0.0185177103,-0.0167474058,0.0094233528,-0.008890694,-0.0019152201,0.0266329162,0.0131676272,-0.0043082661,0.0258182622,-0.0199120212,-0.0037971491,-0.0188623723,0.0058004926,0.0136062875,-0.012478305,-0.019457696,0.0150397653,-0.0251602735,-0.0086165322,-0.02727524,-0.0117811495,0.0063253175,0.010136175,0.008162206,0.0153139271,0.0225753132,0.0181417167,-0.0082953703,0.0073083858,-0.0103006726,-0.005765243,0.0293275416,-0.0010310464,-0.0133634573,-0.0309411827,0.0182043817,0.023170637,-0.0039420635,-0.0236719623,0.0238756258,-0.0218233261,0.0083423695,0.0112406574,-0.0261942577,-0.0226536449,0.0138647836,0.0079742083,-0.0082092052,-0.0398867093,0.0379440747,-0.0171860643,-0.007989875,0.0126428027,-0.0086713647,0.0480959155,0.0127916336,0.013551455,0.0100735091,-0.0142094446,-0.0086791981,-0.0262099244,0.0151259303,0.0056869113,-0.0018750748,0.0034348629,-0.0360954367,-0.0208676737,0.0178753864,0.0324921571,0.0165437423,-0.0003453956,0.0170294009,-0.0101988409,0.0238756258,0.0064937319,0.0080760401,-0.014945766,-0.0075433822,0.0030941183,0.0222306531,-0.0024948777,0.0341841318,-0.0156037556,-0.0275102369,0.0372860841,0.0229983069,-0.0011015453,0.0265545845,-0.0219486561,-0.0003931293,0.022528315,-0.0039753546,-0.0080995401,-0.0193636976,-0.0091570234,-0.0176560581,-0.0054440815,-0.0205386784,0.00512292,0.0091726901,0.0126898019,-0.000004257,0.0142564438,0.0000607074,0.0454639569,0.0105670011,0.00683056,0.0028277892,0.0159484167,-0.0323981605,0.0279958956,0.0026300005,0.041296687,-0.0176090579,0.0269305781,-0.0099560106,0.0214473307,0.0204133485,0.0121728098,-0.0077548786,-0.0044022645,0.0172800627,-0.0294685401,0.0046529272,-0.0201940183,0.023045307,-0.0022148404,0.0375680812,-0.0059101577,0.0316618383,0.006411483,0.0463726074,-0.004210351,-0.0071282219,0.0178127214,0.0174837261,0.0287635494,0.0101596741,0.0114913201,0.0148517676,0.0005889595,0.0097523471,-0.0021972156,-0.0115226535,-0.0250349417,0.0268052481,0.0424873345,-0.0078097112,-0.0109586623,-0.0170137342,0.0331188142,-0.0140841128,0.0058788247,-0.0345601253,-0.0219956562,-0.0458712839,0.0108959964,0.0079742083,-0.0083267028,-0.0088358615,0.0217919927,0.0232333038,0.0384140648,0.019802358,0.0215413291,-0.0097601805,-0.0130187962,0.0088985274,0.0039381469],"37":[0.0092574991,0.0158406086,0.0520183295,-0.0041879164,0.0721203238,0.0118731102,-0.0062267701,-0.0059696175,-0.0067814854,0.0057822634,0.0334151648,-0.0275814701,0.0100950822,-0.0295211356,0.0232466087,0.0346201062,0.0092795407,0.0050806035,-0.0039564786,0.0355899408,0.0036772843,0.0307995528,-0.0043164925,0.0155320261,0.0032419614,-0.034649495,-0.0122845545,0.0859331042,0.0192203317,0.0012416805,0.0172806643,-0.0274933018,-0.0400864407,0.0307113864,0.0750592127,0.035883829,0.0422024392,-0.0007815607,0.0394398831,-0.0169279985,-0.0301823858,0.019484831,0.0261120256,-0.0203371085,-0.0064288187,-0.0348846056,-0.0501374379,-0.0546339378,-0.011138388,0.0342380516,-0.0551335514,-0.0286247749,-0.0187060256,-0.0052238745,0.0262442753,-0.028154552,-0.0101097766,-0.0067961798,-0.0222326927,0.0092207631,0.0295799132,-0.0282427184,0.0416734405,0.0065427008,0.0005262448,-0.0106020402,0.0047683469,0.0083390959,-0.0597769916,0.0537228845,0.0327392183,0.0109987902,0.0032878816,0.0190733876,0.0049850899,-0.0429959409,-0.0225118864,0.0710035488,-0.0052055065,-0.0356781073,-0.0090517765,-0.0026762255,-0.0143932067,-0.0077513186,0.0060026799,-0.0203371085,-0.0302705523,-0.0000284274,-0.0239813309,0.0139229847,-0.0156054981,0.0598651618,-0.0032199197,0.0245691091,0.0266557187,-0.0048601869,0.0251715798,0.0246425811,0.0102126375,-0.0064104507,-0.027537385,-0.0094411792,-0.0188382752,-0.007766013,0.0456115492,-0.0253332201,0.0134894988,-0.0019341561,-0.0470516048,-0.028154552,-0.1065640971,0.0029811352,-0.020719165,0.0224824976,-0.034649495,-0.0089562628,-0.0504607148,-0.014767915,0.0168251377,-0.0003414162,-0.0248336084,0.0105432626,-0.0235698856,0.0300060529,0.0253185257,-0.0236286633,-0.0038352497,-0.0513717718,-0.0211306084,-0.0206163041,0.068828769,-0.015238137,0.0455821604,-0.0339147747,-0.0544869937,-0.0179419145,-0.0585132726,-0.0128135541,-0.0398513302,-0.0191321652,0.017163109,-0.0199550539,-0.0000506843,-0.0123212906,0.0120567903,0.0034440099,-0.0626571029,0.038969662,-0.0366773307,-0.0142462626,-0.0015135276,-0.0208808035,-0.0408211611,0.0119539294,0.0308877192,0.0200579148,0.0083170542,0.0275814701,0.0021031422,-0.067241773,-0.016002249,0.0333563834,-0.0369712189,0.0143270819,-0.0607174374,0.000898657,-0.0365891643,-0.0572789386,-0.0608349927,0.0211012196,-0.0136511372,-0.039733775,-0.0234670248,0.0067410758,0.0480508283,-0.0285953861,0.0098893596,-0.0557213277,0.0302705523,-0.030476274,-0.0372063294,0.0006961492,-0.0281839408,-0.0080084717,-0.0222620815,0.0097203739,-0.0389402732,-0.0241723582,-0.040997494,-0.0002112326,-0.0395868272,0.0375002176,0.0141727906,0.0085815545,0.037588384,-0.0337972194,0.0177655816,0.0030546072,-0.0202048589,0.0045516035,0.0527236611,0.0477569401,0.03635405,0.0009353932,0.0054883743,-0.0085227769,-0.0186766367,0.0189117473,-0.0625983253,-0.0429959409,-0.0288011078,0.0165018588,-0.0089342212,0.024495637,-0.0219681915,0.0021527358,-0.0446123295,0.0003347578,-0.0227616914,-0.0069798604,0.0489324965,0.0627158806,0.0048748814,-0.0194701366,0.0024925449,0.0252009686,0.0534289926,-0.0605998822,0.0354429968,0.0013619912,0.0467283279,0.008706457,0.0179419145,-0.0410562716,0.0492557734,-0.0263177473,0.010050999,-0.031563662,-0.0085227769,-0.0277431086,0.0056683812,-0.0058924714,-0.0207338594,0.0271847192,0.0237462204,0.0064067771,-0.0309758857,-0.0752355456,0.0044964994,0.0407036059,0.0437894389,-0.0263912193,0.0195436087,0.0071892561,-0.0256124139,-0.0651845485,0.0138348183,0.0140552344,-0.0123580266,0.0070092492,-0.0179859977,-0.0033172704,-0.0214685816,0.0311228298,-0.0284043588,0.044524163,-0.0630685464,-0.0247307476,-0.0158846918,-0.0335621089,0.0075602909,0.0369712189,0.0609525479,-0.0496966057,-0.0109987902,-0.0310346633,-0.0147164846,0.0187501088,-0.002321722,-0.0023143748,-0.0039674994,-0.0536347181,0.0072847703,0.0152234426,0.0320632756,0.0094485264,-0.0045332354,0.0520477183,-0.024054803,-0.0387051627,-0.0116894292,0.0080966381,0.0196758583,-0.0098746652,0.0090297349,0.006821895,0.0023547844,0.0033815587,-0.0263765249,-0.0125490539,-0.0122772073,-0.0430253297,0.0104624433,0.0247013588,0.0159728602,-0.000996467,-0.0015906735,0.016398998,-0.0069063883,-0.0126519157,0.0368830524,-0.0162520539,-0.0022813124,-0.027463913,-0.0208367202,-0.0138348183,0.0714149922,0.0075235548,-0.0476099961,-0.0571319945,-0.0363834389,-0.0471691601,0.0253479145,0.0011186145,0.0329743288,-0.0288158022,0.0129458038,-0.0219388027,0.0248776916,-0.0476099961,-0.0118143316,-0.0330624953,0.0291096903,0.0295799132,-0.0318281613,-0.0583663285,-0.0014979148,-0.0075896797,-0.0394398831,0.0069100619,-0.0333269946,-0.0421142727,-0.0809957683,0.0340911075,-0.0007898263,-0.0007898263,-0.0020719164,0.0022353921,-0.028845191,0.0116600404,-0.0563384928,0.0076117213,-0.0180888586,-0.006039416,0.0068806726,0.0151058873,-0.0319751091,-0.026817359,-0.0387345515,-0.0080525549,-0.0435543284,0.0106461234,0.0255536363,-0.0133205121,-0.0308583304,0.0395574383,-0.0097791515,-0.0118363732,0.0226441361,-0.0103154993,0.016149193,-0.0242605247,-0.00896361,-0.0119612766,-0.0540755503,0.0105506098,0.0229821093,0.0386463851,-0.0045993607,0.0754118785,0.0362952724,0.0225265808,0.0096395547,-0.0484916605,0.0433192179,0.0295211356,-0.0263030529,0.0158846918,-0.0647143275,-0.0407036059,0.0354429968,-0.0105873458,0.0027074511,0.0103301937,0.0175892487,0.0117114708,-0.027537385,0.0146356653,0.0377353281,-0.0648906603,0.068358548,-0.0063039158,-0.0617754385,0.0088019716,0.0051981593,0.0070974161,-0.0390578285,0.0097791515,-0.0079056099,-0.0213216357,0.0063737147,-0.0105506098,0.0426726602,0.006840263,-0.020425275,-0.0200726092,-0.0012471909,0.0716501027,0.006568416,0.0017550675,-0.0030509336,-0.0316224396,-0.0246425811,-0.031563662,-0.0360013843,0.0667127669,0.0364128277,-0.0186619423,-0.0387345515,-0.0507252179,-0.0024760137,0.0189705249,0.0347082727,-0.0130339712,-0.0182211082,-0.0028727637,0.03635405,-0.0181623306,0.0610113256,-0.0149075119,-0.0070496588,0.0093383184,-0.0224678032,0.039880719,-0.0166047197,-0.0048161037,-0.0102714151,-0.0508133844,-0.0293594971,-0.0055434788,-0.0006079826,-0.0138421655,-0.0225265808,0.0277724974,-0.0097424155,-0.0182945821,0.0126813045,-0.0123580266,0.0477275513,-0.0052863257,-0.0355899408,-0.0161932763,-0.0499317162,-0.0022004929,0.0152822202,-0.063127324,0.0117629012,-0.0139523735,0.0180447754,-0.0262883585,0.0083758328,-0.0099260965,0.0190293044,-0.0169279985,-0.0399101079,-0.0034770726,0.0080011245,0.0152675258,0.0074353879,-0.0408211611,0.01872072,0.0015025068,-0.0276255533,0.056309104,0.0403509401,0.0212334692,-0.0030417496,0.0176480263,0.0193084981,0.0057014436,-0.0618929937,0.0006837508,0.0262883585,-0.0182064138,-0.0191321652,0.0027386767,-0.0454646051,-0.0496672168,0.0054663327,0.0176039431,0.0434661619,-0.0089929989,0.0206016097,0.0574258827,-0.0004688446,0.0350315534,-0.0038279023,0.005550826,-0.0057198117,-0.0237609148,-0.0185443871,0.0109106237,0.0132543873,0.0263471361,-0.0245984979,0.0067814854,-0.0187501088,-0.00702027,-0.0227763858,-0.0035174822,-0.0469928272,-0.0328567736,0.0005032847,-0.000205263,-0.0289921351,0.0113514569,-0.0136658316,0.0135409292,-0.0178243592,0.0133719426,0.0107857212,-0.0189705249,0.0140993176,-0.0209101923,-0.0233788583,0.02358458,-0.0186472479,-0.03294494,-0.0125343595,-0.0040005622,-0.0087872772,0.0382055528,-0.0086623738,0.0222033039,-0.0116086099,-0.0044928258,-0.0143050402,0.0002244347,-0.0161198042,0.027140636,0.0425551049,-0.0326804407,0.0261414144,-0.0063957563,0.0171190258,0.0157965254,0.0285953861,-0.027537385,0.0244221631,0.0175598599,-0.0136952205,-0.0197934136,0.0001673789,0.0222033039,0.0197052471,0.0330624953,-0.0168692209,-0.0509897172,-0.0310346633,-0.0132617345,0.0085448185,-0.000962486,0.0076851938,0.0106461234,0.0052936729,-0.0052385689,-0.0425844938,-0.0196464695,-0.0053010201,0.0158259142,-0.0066271937,0.009470568,-0.0676532164,0.010631429,-0.0255389418,-0.0054957215,0.0380879976,0.01872072,0.0275226906,-0.0425551049,0.021189386,-0.0146283181,-0.0001027463,-0.0017963956,0.0289921351,0.0249805525,0.001509854,0.0060908464,-0.0184415262,0.0303587187,0.0167516656,0.0039564786,-0.0165606365,-0.025759358,-0.0357368849,0.020792637,-0.0221592207,-0.0115939155,0.0250540245,-0.0104771378,0.0139376791,-0.0057161381,-0.0069247563,-0.0487855487,-0.0181182474,-0.0111310408,-0.0215714425,0.0120200543,-0.0025237706,-0.0024576455,-0.0156201925,-0.0135115404,-0.0076704994,-0.0283896644,0.0350609422,0.0279341359,-0.0002615152,-0.0261120256,-0.0146870958,-0.004915291,-0.0059585967,0.0046103816,0.0721203238,0.0088093188,-0.026200192,0.0400570519,0.0269643031,0.0065427008,0.0156789701,-0.0063259578,0.0186325535,0.0152822202,-0.003339312,-0.0099922214,0.0182358027,-0.0322102197,0.0087211514,0.0782332122,-0.0128723318,-0.0136217484,-0.0310052745,-0.0158993863,0.0552511066,0.0065647424,0.0227323025,0.0113220681,-0.025906302,-0.0131221376,-0.0114837075,-0.0012527013,-0.0510191061,0.0044340482,-0.0391459949,-0.0084566521,-0.0104771378,0.019411359,0.0325334966,0.0116306515,0.0233347751,0.0255683307,-0.0698867738,0.0144813731,0.0140111512,0.01676636,0.0214538872,-0.0271259416,0.0232466087,-0.0240401085,0.0115939155,0.0386463851,-0.0208367202,-0.0130780544,-0.0129678454,-0.0044964994,0.0060504368,-0.0091252495,0.0198081098,0.0218506362,0.0472279377,0.0407917723,-0.0021821246,-0.0117335124,0.0147532206,-0.0196023863,0.0093309712,0.0008632985,0.0023272324,0.0029058261,-0.0281986352,-0.0460817739,0.0018285398,-0.0107857212,-0.0457878821,0.0000264328,-0.0302411634,-0.0121669983,0.0133205121,0.0138642071,0.0316812173,-0.0381173864,-0.0378528833,-0.0047279368,-0.0202195533,0.0184856094,0.0043495549,-0.0060100271,-0.0027203087,0.0180153865,-0.0324453302,0.0065022912,-0.0753531009,-0.0201166924,-0.0211453028,-0.0145401508,0.0301823858,-0.0013151526,0.015781831,0.0058447146,-0.0055618468,0.0044707842,-0.0188970529,0.0347376615,0.0125123179,-0.0083611384,0.0274198297,0.0043201661,-0.0455527715,0.0202048589,-0.0415264964,-0.012372721,-0.0164430812,0.006748423,-0.0262148865,0.0037764718,0.0539286062,-0.0444066077,0.0122331241,0.0335621089,0.0029094997,-0.0062084021,-0.0053010201,0.0149295535,-0.0195876919,-0.0032125725,0.0239225533,-0.0185590815,-0.0125417067,-0.0053487774,-0.0062928949,0.0320632756,0.0106167346,0.037265107,-0.0365303867,0.0290362183,0.0215861369,0.0285513029,-0.0179859977,-0.0063810619,0.0087946244,-0.0451707169,-0.0108151101,-0.0240694974,0.0253038313,-0.0089709572,0.0322983861,-0.0115130963,-0.0076411101,-0.0202930253,-0.0182064138,-0.0228057746,0.0049557011,-0.0054332702,-0.0236433577,-0.0043642493,0.006711687,0.0278900526,-0.0004918046,-0.0200579148,-0.0275079962,-0.0450237729,-0.0274345241,-0.0082068462,-0.0503431596,0.0156936646,-0.0107342908,-0.0197199415,-0.0172659699,-0.1086213216,-0.0327686071,0.0310346633,0.0082509294,0.0038499441,-0.0267438851,0.0243780799,0.0267291907,0.0300060529,-0.0290509127,-0.0282721072,-0.0372063294,0.0002895264,-0.0068843463,-0.0147164846,0.0255389418,0.0306526069,0.0344143845,0.0132470401,0.0044964994,-0.0107636796,0.0120274015,-0.0160169434,0.0685348809,0.0554862171,-0.0281104688,-0.0187501088,0.0331800506,0.0048271245,-0.0264206082,0.0066161728,0.0274345241,0.0185443871,0.0195583031,-0.0314167179,0.0336796641,-0.0137980822,-0.0203077197,0.0130192768,-0.0435249396,-0.0295505244,-0.0253773034,0.048579827,-0.0466695502,0.0493439399,0.0048381453,0.0045699719,0.0058520618,0.0019892601,0.0078321379,0.0249217749,0.0097571099,-0.0134233739,-0.0078100963,0.0060283951,0.0340911075,-0.0498435497,-0.0115277907,-0.0052312217,0.0150397625,-0.0045332354,-0.038499441,0.0206016097,-0.0268467478,-0.0152822202,0.0001308724,0.0160463322,-0.0091399439,-0.0134894988,0.0219534971,0.0233347751,0.0285953861,0.0196317751,0.0064361659,0.0160610266,0.0456997156,0.0194407478,-0.0127033461,-0.0053634718,-0.0263324417,-0.0172071923,-0.0306819975,-0.0228645522,0.0399688855,0.0013399496,-0.0085962489,0.0046324232,-0.0203811917,0.0124388458,-0.0036938156,0.0508427732,0.0062782005,-0.0149442479,-0.0251274966,-0.0041805692,0.0155467205,-0.0026101004,-0.0102934577,0.0139670679,0.0139744151,0.033268217,-0.0042319996,0.0226882193,0.0195289142,0.003971173,0.0170749426,0.0073251799,-0.0167810544,0.0172512755,-0.0109914429,-0.0136290956,0.0077366242,0.0138642071,0.0206309985,0.0067778118,0.0321220532,0.01872072,0.0127253877,-0.0197493304,-0.0297562461,0.0264646914,-0.0229821093,-0.0206016097,-0.0095146522,-0.0210718308,0.0200138316,0.0221739151,0.0164136924,0.0120053599,0.0071488465,0.0235992745,0.0547808819,-0.0203224141,0.0349139944,-0.0032382878,-0.0062524853,0.0103522353,0.018867664,-0.003548708,0.0244662482,0.0221739151,0.0049520275,-0.0245984979,-0.0036276905,0.0047903885,-0.0012811717,-0.0010855519,0.0129825398,-0.0013215814,0.027140636,0.0233053863,-0.0287864134,-0.009397096,0.0647731051,0.0012866822,0.0412913859,-0.0432604402,-0.0242164414,0.0138495127,-0.0165459421,0.0121376095,0.0365891643,0.0349139944,0.0026615309,0.0244662482,-0.0268761367,0.0045369091,0.0042356732,-0.0101759015,0.0041328119,0.0113000264,0.0091766799,0.0118510686,0.0212040804,0.0463756621,0.0076117213,-0.0056536868,0.0080231661,0.0109473597,0.0264059138,-0.013100096,-0.0012876006,-0.0129972342,0.0387933291,0.0360013843,-0.0377353281,-0.0310934409,0.005154076,0.0124755818,-0.0133719426,0.0459936075,0.0069504716,0.0037158572,0.0199109707,-0.0183386654,0.0178978313,0.0540461615,0.0133278593,0.0268467478,0.0150911929,-0.0635387674,0.0314167179,0.0253919978,-0.0427020527,0.0162226651,0.0243339967,-0.0186766367,0.0147605678,-0.0196758583,0.0111898184,0.0104918322,0.0119759711,-0.0010488159,-0.0221592207,-0.0141948322,0.0114322761,0.030623218,0.0126666101,0.0096615963,-0.0206016097,-0.0528706051,-0.0243927743,-0.0284778308,0.0113294153,-0.0134086795,0.0300354417,0.0024833609,0.015781831,-0.0063920827,-0.0067778118,-0.0006433411,0.0059843119,0.0092428047,0.0044156802,0.0477569401,0.0030637914,0.0304468852,0.0401158296,0.0079570403,0.039292939,0.0223796368,0.0114616659,-0.0012334147,-0.0342086628,-0.0245984979,-0.0102052903,0.0563972704,0.0071341521,0.017089637,-0.0093162768,-0.0070643532,0.0231731366,0.0368242748,0.0082656238,0.0202195533,-0.0090223877,-0.0017412915,0.0142756514,-0.0109547069,-0.0107269436,0.0071304785,0.0048638606,0.0009551388,-0.0190439988,-0.0069394507,0.0046214024,-0.012989887,-0.009470568,0.0104036657,-0.0088313604,-0.0382349417,0.0281692464,0.0052348953,0.0302411634,-0.0070423116,0.0057455273,-0.0433192179,-0.017016165,0.0176774152,-0.0463756621,-0.0141948322,0.0054663327,-0.0116673876,-0.0301823858,0.0257446636,-0.0201460812,-0.0271847192,-0.0095293466,0.0159728602,-0.0384700522,-0.0059732911,0.0005257856,-0.0265675522,0.0168104433,-0.0105726514,0.0082509294,0.0092868879,0.0216449145,0.015855303,-0.0181917194,-0.0070239436,-0.02612672,0.003245635,0.0020333435,-0.0163108315,0.0017523123,0.0080745965,-0.0124021098,-0.0203224141,0.0062635061,0.0092721935,0.0100950822,0.0195436087,-0.0036717739,0.001797314,-0.0026652045,-0.008236235,0.0000873631,0.0172218867,0.0132984705,0.0274786074,0.0072480338,0.0266263299,0.038969662,-0.0292272475,-0.0206163041,0.0156348869,0.0102714151,-0.0331506617,0.0121155679,-0.0230702758,-0.0234082472,-0.0167810544,0.0384406634,-0.0389402732,-0.0054993951,-0.0067337286,-0.0113881929,0.0050952979,0.0123874154,0.0379998274,-0.0216889977,0.0121302623,-0.0061422773,-0.0016274096,-0.0081774574,0.0255242474,0.0519007705,-0.0254801642,0.0079496931,0.0760584325,0.0110943047,-0.0035156454,-0.0156495813,0.0246719699,-0.001849663,-0.0049520275,0.006821895,0.0016632272,0.0032088989,-0.0165606365,0.0055104159,-0.0265381634,0.0208514147,-0.0145989293,-0.0284337476,-0.0006800772,0.0122992489,0.0159875546,-0.0096248602,0.0425257161,0.0103889713,-0.00653168,-0.0165606365,0.0038793329,-0.0087211514,0.0083317487,-0.020572219,-0.0101318182,0.0191174708,-0.001340868,-0.0177214984,-0.0153556932,0.0128355958,-0.0097791515,-0.0010185086,-0.037911661,-0.0108371517,0.0242458303,0.0054406174,-0.0091987215,-0.0199697483,0.0006052274,0.0150471097,-0.0083537912,0.0480802171,-0.0036827947,0.0003776931,0.009977527,-0.040203996,-0.0183386654,0.0039013745,0.0025164234,0.0145695405,-0.0250099413,-0.0143785123,0.0499904938,0.0137613453,0.0007980919,0.0381467752,-0.0280957744,0.0055067423,-0.0256711915,0.0090738181,-0.0350021645,-0.0439951606,0.0293007195,0.0034476838,0.0078468323,-0.0457878821,0.0005740017,0.0313285515,0.0008467673,0.0073692631,0.035413608,0.0204840526,0.0056683812,0.0198668875,0.0266263299,-0.037588384,-0.0012425989,0.0103375409,-0.0364422165,0.0360307731,0.0013417864,-0.0151646649,-0.0096469019,0.0061386037,0.0168692209,0.0156495813,0.0126739573,-0.001712821,0.0252009686,0.0002534791,-0.0144813731,-0.0123800682,-0.0305056628,-0.0196023863,0.0050659091,-0.0031078747,0.0321220532,0.0535465479,-0.0192644149,0.0295064412,0.0016062863,-0.0346788839,0.0131956097,-0.0103375409,-0.0146503597,0.0036074857,-0.0359719954,-0.0025678538,0.0121155679,-0.0056830756,0.0004941006,0.0581312142,-0.0195876919,-0.012879679,-0.0169426929,-0.0146283181,0.0197493304,0.0050585619,-0.0189852193,-0.0160904154,-0.0088974852,0.0097718043,0.0111016519,-0.0475806072,-0.0088019716,-0.0222326927,0.0150397625,-0.0076778466,0.0499023274,0.0109473597,0.009580777,0.0200138316,0.0000261745,-0.0110428734,0.0324159414,-0.028154552,-0.046551995,0.0411444381,-0.0192644149,-0.0008261032,0.0363246612,0.0172218867,0.0273022745,0.0199256651,0.030623218,0.0008155416,0.001651288,0.0170014706,0.0538698286,0.0254654698,0.008419916,-0.0212922469,0.0402627736,-0.0060467632,0.0074133463,-0.0155761093,0.0209248867,-0.0045038466,-0.0093677072,-0.0116453459,0.0129090678,-0.014767915,0.0090444293,0.000395602,-0.0221592207,0.0245250259,-0.0017780276,-0.0079349987,0.0070974161,0.0098893596,0.0382055528,0.0042907773,-0.0225706641,0.0095146522,0.0001614093,-0.0144446371,-0.0109473597,0.0172953587,0.0116600404,0.0416440517,0.0105432626,0.0367654972,-0.0303587187,-0.0235258024,0.0083905272,0.0005166015,0.0056096036,-0.0129458038,0.0068990411,0.0265381634,-0.0029976664,0.0400864407,-0.0126151787,0.0175010823,-0.0488737151,-0.0114102345,-0.0061092144,-0.0199256651,-0.0215126649,-0.0021655934,-0.0135262348,0.0085595129,-0.0156642757,0.0275079962,0.0294329692,0.0056867492,0.0106608178,-0.0068843463,-0.0158699974,0.0019286457,0.0149075119,0.009867318,-0.0079864301,0.0498435497,0.0137613453,-0.0165900253,0.0214244984,-0.0136217484,0.0085521657,-0.0658898801,0.0048234509,0.013026624,-0.0048491661,-0.0211012196,0.0256271083,-0.0195289142,0.0077733602,-0.0286982469,-0.002858069,0.0242899135,0.0000676748,-0.0016981266,-0.0155173317,-0.0258916076,0.0291537754,-0.0209689699,-0.0008476857,0.0008527369,0.020498747,0.0138054295,0.0092428047,-0.0077366242,0.0060834992,0.0324453302,0.0213510264,0.0060247215,-0.0047940621,-0.0036681003,0.0021766142,-0.0098011931,-0.002123347,0.0198521931,0.0137686925,-0.021806553,0.0074059991,0.0219388027,-0.0091619855,0.0006502291,0.0254066922,-0.0093897488,0.0018377238,0.0188088864,0.0220269691,-0.0212481637,-0.0464050509,0.0428489968,0.0081407214,0.0181917194,0.0355017744,-0.0217771642,-0.0208073314,-0.0023621316,0.0027735762,0.0232025255,0.0407917723,-0.0114763603,-0.031563662,-0.0115351379,-0.0150103737,-0.0023290692,-0.0025788748,-0.0091913743,-0.0177949704,0.0020517115,0.0194995254,0.0162667483,0.0238931645,0.0412619971,-0.0235698856,0.0294917468,-0.0161638875,-0.0045589507,0.0107269436,0.0313579403,-0.0114984019,-0.0043532285,0.0235551912,-0.0283014961,0.0071010897,-0.0244368576,0.0462581068,0.018397443,-0.0206603874,0.0235992745,-0.0061386037,0.0063186106,0.0481096059,-0.0055802148,0.0039454577,-0.019484831,-0.0017853748,0.0110134846,0.0015980207,0.0337972194,0.0012738245,0.0291684698,0.0118951518,0.007057006,0.0158112198,0.00178813,0.020719165,0.0155614149,-0.0041217911,-0.0258034412,0.0036607531,-0.0142536098,0.0563678816,-0.0013224998,0.0117629012,-0.017412914,0.0564266592,0.015708359,0.0168692209,0.0263618305,0.0130045824,0.005352451,-0.0171778034,0.020425275,0.0041181175,-0.0067594438,-0.0286100805,0.0427314416,0.0044707842,0.0103522353,-0.0268320534,0.0115424851,0.0062230965,0.0501962155,-0.0104697905,0.000211003,-0.00560593,0.0031042011,0.0173100531,0.0053965342,-0.0053120409,0.0264059138,0.0119980127,0.005679402,-0.0129604982,-0.000887177,-0.0255389418,-0.0043458813,0.0086476794,-0.0291684698,-0.0182064138,-0.0196023863,0.0054369438,0.0392635502,0.0299031921,-0.0122625129,-0.0051467288,-0.0613639951,0.0165165532,0.0158259142,-0.0163696092,0.0068255686,0.0412032194,-0.0091032069,0.033855997,0.0189558305,0.0335914977,-0.006748423,0.003330128,0.0184121374,0.012879679],"38":[-0.0077562784,-0.0055579557,0.0331275463,0.0326161459,0.0681302398,0.0040983264,-0.0188082643,0.0305421222,-0.0069074915,-0.0085873082,0.0074508572,-0.025484914,0.0020083222,-0.0052347775,0.0464240238,0.0239791162,0.0002663557,-0.0180695709,-0.0019923407,0.0395200849,0.0210243445,0.0351163372,0.015711436,0.0287806224,-0.0325877331,-0.0526460931,-0.0578453578,0.0330991372,0.0320195071,-0.080062978,0.0077917925,-0.0444636457,-0.0298318397,0.0297750179,0.0506288931,0.040912237,0.0310535245,-0.001250984,0.041480463,-0.0027470153,-0.0189361162,0.0249024834,0.0195327513,0.0207260251,0.0048050568,-0.0545780621,-0.0624479838,-0.0361391418,0.0232688356,0.0317069851,-0.0242490247,0.0073159034,-0.0332980156,-0.0336957723,0.0423043892,-0.0347469896,0.0058172089,0.026308842,0.0233824793,-0.0113645103,0.0040947753,-0.0627889186,0.0145607786,0.0441795327,-0.0117764743,-0.045798976,0.021038549,0.0094680581,-0.0370198935,0.0080830082,0.0447193496,0.0033649604,-0.0060196389,-0.0222886465,0.0135095613,-0.064436771,-0.0248172488,0.0485264584,0.0005278282,-0.0282976311,0.0009349086,-0.0043611308,-0.0323888548,0.0142837688,-0.0108673126,-0.036877837,-0.0299738962,0.0164217167,-0.0079125399,0.0084239431,-0.0458273888,0.0582431145,0.0261241682,0.0462535582,0.0113716135,0.0487253368,-0.0072129127,0.0379290543,-0.0116273146,0.0354288593,0.0166348014,-0.0183820948,-0.0172314383,-0.0337810069,0.0306841787,-0.0177144296,0.0282123964,-0.0354004502,0.0256695878,0.0085304854,-0.0737556741,-0.034576524,-0.0207402315,-0.0253712703,-0.0315649286,0.0055046845,-0.0324456766,-0.0339798853,0.0022143037,-0.0005389264,-0.0456853323,0.0105405832,-0.0293772593,0.0345481113,0.0054833763,-0.0438385978,-0.0285391267,-0.0476741195,-0.040031489,-0.0027434637,0.0581578799,-0.0269623008,0.0375881195,-0.0252292138,-0.0314512812,0.0060835644,-0.0276441723,-0.0463103801,0.0195611641,-0.0368494242,0.0157824643,-0.0275731441,-0.0027168281,-0.0194333121,0.0122878766,-0.0013193486,-0.0136018982,0.0034022504,-0.0370483026,-0.0238796771,-0.0241779964,-0.0250871573,-0.065004997,-0.0026671086,0.0286811832,0.0350595154,0.0520210452,0.0172314383,0.0055650584,-0.0315081067,0.0171319991,0.0422191545,-0.0372755937,-0.0009659834,-0.0486969277,0.0229136944,-0.0342924111,-0.0366221331,-0.0735283792,0.0115846973,-0.0479582325,-0.0413099937,-0.0124654472,0.0332980156,0.0595500357,-0.0250445399,0.0522767492,-0.0470490716,-0.0133675057,-0.0025232765,-0.060118258,-0.0279993117,-0.000571333,0.0251865964,-0.017572375,0.0065807616,-0.0696076229,-0.0096598342,-0.0018254245,0.0363948457,-0.054634884,0.0531006753,-0.0079338485,-0.0146176014,0.0179843381,-0.0469070151,0.0246609878,0.003565615,-0.0398610197,-0.0005415899,0.0357982069,0.0135876928,0.0331559591,0.0003142997,0.0178706925,0.0053732824,-0.0199447162,0.0203424729,-0.0660846308,-0.0487253368,-0.0101499287,0.018737236,0.0089637572,0.0128845135,-0.0419634543,-0.0174871404,-0.0410542935,0.0064706681,-0.0199731272,-0.030883057,0.0031589787,0.0404292457,0.0079835681,-0.0417361632,-0.0028091648,0.0520778671,0.032644555,-0.036877837,0.0216920096,0.0249308944,0.0447477587,-0.0252292138,0.0069572111,-0.0175297577,0.0415088758,-0.0032033713,0.0243484639,-0.0180837773,0.01453947,-0.0242490247,0.0122310547,-0.0113645103,0.0095177777,0.0099226385,0.0064706681,0.0222034119,-0.0359402634,-0.0700053871,0.0058775828,0.0477309451,-0.0052489834,-0.0167058297,0.0185951795,-0.0484980494,-0.0177854579,-0.0517937541,-0.0081895506,0.0232120119,0.0178280752,-0.0050962726,0.0363664329,-0.0401167199,-0.0110946037,0.0107749766,-0.0144116199,0.0120676896,0.0105832005,-0.0130052613,0.0097734788,0.0140919928,0.0323320329,0.0199873317,0.0267350115,-0.0429010279,-0.0258258507,-0.0393780284,-0.0165779795,-0.0105618918,-0.000667221,-0.0263514575,-0.0063783312,-0.0393496156,-0.0203708839,0.0051957122,0.0180979818,-0.0138362916,-0.0081469333,0.0084736627,0.0071383333,-0.0551746972,-0.0346901678,0.0202288292,0.0253854748,-0.0049293563,0.0022675749,-0.0062682377,-0.000775539,-0.0050962726,-0.0127708688,-0.0063605742,0.0201293882,-0.0380995199,0.0135734873,-0.0096598342,0.0031341189,0.0215641577,-0.00171977,0.0140209645,0.0037893539,-0.0060516018,0.0103061907,-0.0097379647,0.0113076875,0.0139854504,-0.0165921859,-0.0328150243,0.0660846308,-0.0324740894,-0.017316673,-0.0533279665,-0.0358266197,-0.0506288931,0.0048689824,-0.0218624771,-0.0021823412,-0.032644555,0.0370767154,-0.0148448916,0.0443215892,-0.0383836329,0.0108886212,-0.0455716848,0.0166916251,0.007884129,-0.0227006096,-0.0373892374,0.0033472034,-0.0215641577,-0.0439238325,0.0255275313,-0.0114710527,-0.0201720055,-0.0997235775,0.0004421505,0.0454012193,-0.0139854504,0.0002366127,-0.0052099177,0.0037076715,0.009304693,-0.0647777095,-0.0121174091,-0.0132396547,0.0062398263,-0.0025641175,0.0340082981,-0.0257974379,-0.0448614061,-0.0318774506,-0.0190639663,-0.0267208051,0.0016389755,0.036593724,-0.0163222775,-0.015995549,0.0097521702,-0.0203424729,-0.0135876928,-0.0007981793,-0.00476244,0.0217062142,-0.0161376055,-0.003043558,-0.0025960803,-0.0779605433,0.0075289882,0.0361675546,0.0179559272,0.0154699394,0.0440943018,0.0410542935,0.0186235905,0.0087932898,0.0025481363,0.0512255318,0.0381563418,-0.0064635654,-0.0069927252,-0.0296045486,-0.0087861875,0.0257832333,-0.0196890142,-0.0053058057,-0.0074366513,0.0057639377,0.0245047249,-0.0258116443,0.0325024985,0.044065889,-0.0318490416,0.0199731272,-0.0023243974,-0.0267065987,-0.0178422816,0.0079551572,0.0108744157,-0.0483275801,0.0066695469,-0.003547858,-0.0416793413,-0.0189077035,-0.0169899426,0.0407133587,-0.0094893659,-0.0029565485,-0.0439522453,-0.028041929,0.056652084,0.0118546048,0.0370767154,-0.0273742639,0.0009233665,-0.0255275313,-0.0008621046,-0.023623975,0.0586976968,0.0346333459,0.0035940264,-0.0382415764,-0.0601750836,-0.0215215422,0.0037538398,0.030911468,-0.0272180028,0.0066908556,0.000021905,0.0135663841,-0.0077988952,0.0686984658,0.0004053046,-0.0245331358,-0.0178706925,-0.027317442,-0.0030080439,-0.0101783397,-0.0071489871,-0.0463387892,-0.0169331208,-0.0298886616,-0.0122523624,0.0314512812,-0.028610155,-0.0176291969,0.0176434014,-0.0520778671,-0.0287806224,0.0075502964,0.0068648746,0.0150579764,-0.0029547727,-0.0537541322,0.015739847,-0.0543791838,0.0088572148,-0.0063712285,-0.084097378,-0.010157031,0.0185667686,0.032928668,-0.0045280471,-0.0119114276,0.0496344976,-0.0244621094,0.0113716135,-0.0526745059,-0.0138504971,0.011101706,0.00902058,0.0136942351,-0.0195469577,0.0031731843,0.0037112229,-0.0286953878,0.0776196048,0.0355993286,0.0338378288,0.007948054,-0.0203424729,0.0071525387,-0.005394591,-0.0089779636,0.0042652427,0.0717668831,-0.0169331208,-0.0127779711,0.0228568707,-0.0601750836,-0.0448329933,-0.0093757212,-0.0243484639,-0.0134101221,0.0119256331,-0.0001128127,0.0680734143,-0.0093970299,0.0200157445,-0.0257548224,-0.0024646781,0.0195611641,-0.0398610197,-0.0094041321,0.0126785319,0.0330423154,0.0162796602,-0.0252860356,0.0046310378,-0.0089495517,-0.015711436,-0.0113503048,-0.0262378138,-0.0225159358,-0.0121458201,-0.0067725377,-0.0084736627,-0.0088856267,-0.0043504764,-0.0524472147,0.0012900495,-0.0094112353,0.0179843381,0.0147596579,-0.0403724238,0.0125932982,0.0007329221,-0.0452875756,0.0207118206,-0.0094680581,-0.0333832502,-0.0233398639,0.0204135012,0.0098160962,0.0424464457,0.0259252898,0.0332980156,-0.015171621,-0.0167910643,-0.0359402634,-0.0103772189,0.0051069269,0.029462494,0.0255417377,-0.0255559422,0.0287806224,0.0029778569,0.0240785554,-0.0044960845,-0.0022320608,-0.0029387914,0.0116415201,0.0148733025,-0.0258826725,-0.0163506884,0.0033685118,0.0202288292,-0.032076329,0.033212781,-0.0038532794,-0.0357129723,-0.0468217842,0.0219050944,0.0243200529,0.0425600894,-0.0214789249,-0.0058065546,0.0135663841,-0.0132325515,-0.0653459355,-0.0298602507,0.0080048768,0.0178138707,-0.0225301422,-0.0072342213,-0.0324172676,0.0429010279,-0.0252860356,0.0186662078,0.044065889,0.0094254408,0.0332980156,-0.036593724,0.0027292583,-0.0076852501,0.0000550746,0.0104340408,0.0173734948,0.0059699193,0.0085233832,0.0088501126,0.0125151668,0.0353436284,0.0241779964,0.0115633896,-0.0096456278,-0.0451455191,-0.0005038562,0.0230841618,-0.0049329079,0.0286953878,0.0092975898,-0.0112792766,0.0073940344,-0.0070815105,0.004872534,-0.0726760402,-0.0127495602,0.0062327236,0.0186946187,-0.0032211284,0.0296613723,-0.0010094881,-0.0330991372,-0.0277720224,-0.0073514176,-0.0369630717,0.0265219267,0.0248598661,-0.010000769,-0.0325877331,-0.0219477098,-0.0018005646,0.0257264096,0.0053697312,0.0390370935,0.0301443636,0.0047269259,0.0447193496,0.0028961743,0.0237944443,0.0193338729,-0.0259821117,0.0222034119,0.0059379567,-0.0203708839,0.0042332802,0.021038549,-0.0347469896,-0.0207402315,0.0316217504,-0.0133817112,-0.0117125483,-0.0181832165,-0.0329854898,0.0435260758,0.020882288,0.0071028192,-0.0062220693,-0.0125577841,-0.02618099,-0.0013042551,0.0118261939,-0.0389518589,-0.0019248639,-0.0254991204,-0.0091058137,-0.0616524704,0.0207260251,0.0114568472,0.0068897344,0.0155693796,0.0473900065,-0.030627355,0.0261951964,0.0341219418,0.0217630379,0.0353152156,-0.006087116,0.0005553517,-0.0357982069,0.0235103313,0.0380426981,-0.0162938666,-0.00582076,-0.0155267622,0.0184815358,0.0054833763,-0.0172172338,0.0074224458,0.0315081067,0.0315365158,0.0182116274,0.0063712285,-0.0020562662,0.0272180028,-0.0337241851,0.000595305,-0.0333832502,0.0159103144,0.0195043404,0.0033720634,-0.0428442024,-0.006261135,-0.0034892599,-0.0431851409,-0.0243768748,-0.0080688028,-0.0111869397,0.0121529233,-0.0236950032,0.0541234799,-0.0088572148,-0.032360442,0.0081469333,-0.0178564861,0.0132751688,0.0052916002,-0.0193196684,-0.0221892074,0.0271043573,-0.0100149745,0.0159387253,-0.0372187719,-0.0009428992,-0.0266213659,-0.0227006096,0.0304284766,0.0002603627,0.025300242,0.0172456447,-0.0087790843,0.0053448714,-0.000595305,0.013090495,0.0076142219,-0.0145749841,0.0137368515,-0.0132183461,0.0026493515,0.0013939282,-0.0584135838,-0.0103203962,-0.0137581602,0.0177428424,-0.0281129573,0.0076355306,0.025016129,-0.0619934052,0.0099510495,0.0439238325,0.0183820948,0.0093331039,0.0066517899,0.0135237677,-0.0039314101,-0.0016221063,-0.0063037518,-0.0242490247,-0.0130762896,-0.0090987114,0.0211948119,0.0084381485,0.0116557255,0.0312808156,-0.0349742807,0.0144258253,-0.0040486068,0.0313944593,-0.0160665773,-0.001479162,-0.0047304775,-0.0586408749,0.0151574155,-0.0212374292,0.0043043084,-0.0018112188,0.0663687438,-0.0256411768,-0.0280703399,0.0009491142,0.0094112353,-0.0240785554,-0.009780582,0.000016342,-0.0111159114,-0.0458842106,0.0132680656,0.0083316071,-0.0220755618,-0.034860637,-0.0288374443,-0.0209106989,-0.0165495686,-0.0067476779,-0.0087506734,0.0220613554,0.0136018982,-0.009780582,0.0016514054,-0.0754035264,-0.0278714616,0.0072022583,-0.0152852666,-0.0093188984,-0.0103630126,0.0393780284,0.024192201,0.0373608284,-0.0268202443,0.0042474857,-0.0325593203,-0.0305137094,-0.0022196309,-0.0079338485,0.025200801,0.0147454524,0.005550853,0.0325877331,0.0386677459,-0.0253854748,-0.0275589377,-0.0136018982,0.037730176,0.0299454853,-0.0478730015,-0.025300242,0.0302295983,0.0268060379,-0.0130833928,0.0257974379,0.0162654556,0.0061439383,0.0242916401,0.0003502578,0.0312808156,0.0070602018,-0.0128205884,-0.0140848896,-0.0107394625,-0.0249024834,-0.0272180028,0.0255417377,-0.0325877331,0.0229563117,-0.0191065837,-0.005881134,-0.0022444909,0.0021628083,-0.0164359231,0.0246041641,0.0299738962,-0.0195611641,-0.001912434,0.0007821979,-0.0020615931,-0.0395200849,0.0030648664,0.0001185283,-0.0046878606,-0.0134740472,-0.0300023071,-0.0027612208,-0.0274452921,-0.0014090217,-0.0001393928,0.0149017144,0.0150011536,-0.0109596495,0.0158108752,0.0319342725,0.0563111492,0.0119398385,-0.0223028511,0.0475604758,0.0044925329,0.012742457,-0.0338946506,0.0049506649,-0.0106968451,-0.0107039483,0.0082676811,-0.0318774506,0.0345481113,-0.0000636479,-0.0375881195,0.0068897344,0.010945444,0.0090774028,0.0015182275,0.0441795327,-0.017188821,-0.0322752111,0.0192770511,0.0277294051,0.0303716548,-0.0125080645,-0.0046523465,0.0154273231,-0.0148022743,0.0360254981,-0.0108033875,0.0405713022,0.0189219099,0.0296045486,-0.0014622929,-0.0030755205,-0.0121529233,0.0116202114,0.0343208201,-0.0139570395,0.0000574884,0.0344060548,0.0043788878,-0.0076284274,0.0241779964,-0.0008199317,-0.0076000164,0.007571605,-0.0318490416,0.0469070151,-0.0197600424,-0.0151290046,0.0248314552,0.0150011536,0.0175297577,0.0565668494,0.0091839451,0.0182684511,-0.0035851479,0.0051673008,0.0565384403,0.0036472976,0.0239933226,0.0102777788,-0.0313376375,0.0191349946,0.0105547886,-0.0173024666,0.0329854898,-0.0108104907,0.0074579599,-0.0112366593,-0.0185667686,0.0331559591,-0.0085446909,-0.0032317827,0.0228142552,0.0045351498,0.0350595154,0.0202146228,-0.0196890142,-0.0288516507,0.0844383091,0.0114852581,0.0583567619,-0.0405713022,-0.0439522453,-0.0278004333,-0.0096456278,0.0074437545,0.0402587764,0.0257974379,0.0080403909,-0.0089566549,-0.0177712534,-0.0160523709,0.0049577677,0.0056041242,0.0381563418,0.0018751442,0.0247462206,0.0215073358,-0.0136871319,0.0234819204,0.0198026597,-0.0002912156,0.018765647,-0.0043646824,0.0118048852,-0.0442363583,0.0139002167,0.0161660165,0.0539814234,0.016464334,-0.018865088,-0.0134030189,0.0129555417,-0.0176576078,-0.0117835766,0.0517369322,-0.0112579679,0.0068258089,0.0094396463,0.0148022743,0.0045848698,0.0354288593,0.0220329445,0.0077491757,0.0266071595,-0.0250303335,-0.0004954216,0.0188366752,-0.039747376,0.0234250966,0.0209533162,-0.0094183376,0.0137936743,-0.0260957573,0.0314228721,-0.0040024384,0.0181405991,0.0111159114,-0.0180979818,-0.0026280431,0.0268628616,0.0156688187,0.0249877162,-0.0065736589,-0.0049932818,-0.0184815358,-0.0228000488,-0.0230699554,0.0317638069,-0.0430146717,0.0467649586,-0.0254138857,-0.0096243201,-0.0207118206,-0.0019337424,0.0173024666,0.0493219756,0.0189361162,0.0043291682,0.0355709158,0.0177428424,0.0308546461,0.0097237593,-0.0175155513,0.012586195,0.0060302932,0.0137013374,0.0094183376,-0.0242064074,-0.0384688675,-0.0019834621,0.0304852985,0.0253286529,0.0000885633,-0.0214647185,-0.0016522933,-0.001521779,0.0144968536,0.0231409837,-0.0089282431,0.0082889898,-0.0036348675,0.0183963012,-0.0126430178,0.0087648788,-0.0003260638,0.0205697641,0.0137084406,-0.0092407679,-0.0179843381,-0.0209106989,-0.0156119959,-0.0199020989,0.0159245208,0.0493503846,-0.0235529486,0.0388382152,-0.0069359029,0.0104553495,0.0143334884,0.0086086169,-0.0448898152,-0.0134243276,0.0013371056,-0.0249593053,-0.0253286529,0.0056183296,-0.0236807987,-0.0156404078,0.0156830251,-0.0177002251,0.0000215859,-0.0094822636,0.0107323593,-0.0334116593,-0.0231409837,0.0232830402,-0.0071170246,0.0302580092,-0.0172030274,0.0118048852,-0.0237660315,0.0246751923,-0.0055011334,-0.0379006416,0.0157540534,-0.0243342575,0.030883057,0.0132254492,-0.013502459,-0.014226946,-0.001972808,-0.0165069513,-0.0116273146,0.0108104907,-0.0079835681,0.0065168366,0.0151574155,0.0281839855,-0.0028304735,0.0005282722,0.0146033959,0.0256979987,-0.0036970172,0.0380995199,0.002917483,0.037730176,0.0287948288,0.0313092247,-0.0337810069,0.0101854419,0.0182258338,0.0113360994,-0.0178564861,0.0034129045,0.0030701936,-0.0153847057,0.0023723415,0.0201151837,-0.0127992798,0.0158108752,-0.0005398142,0.0127566624,0.0181121882,0.0154699394,0.0113076875,-0.002388323,0.0001998778,-0.0083742235,0.0111585287,-0.0145891905,0.045514863,0.0287095942,0.0075645023,0.0164217167,0.0622206926,0.0005522442,-0.0086370278,-0.0031749601,0.0277720224,0.0142553579,-0.0035460824,0.0032015957,0.0123304939,0.0344344676,-0.0173450839,-0.0047695427,-0.0334684812,-0.0009269179,-0.0251297727,-0.0080474941,-0.0118190907,0.0132680656,0.0215783641,-0.0104553495,0.0111301169,0.010661331,-0.0049613193,-0.0098018898,-0.0047588889,-0.0305705331,0.0269480944,-0.0166916251,-0.0228568707,0.0212942511,-0.0042829998,-0.020598175,0.0285817441,0.0538109578,-0.0110946037,-0.0000520226,-0.017572375,-0.0216209814,0.0251581855,0.0131899351,0.0076710447,-0.0354856849,0.0044144019,-0.0096669365,-0.0013708441,0.0229847226,-0.0272890311,-0.02302734,-0.0291499682,-0.024476314,-0.0261099618,-0.0235529486,-0.0117764743,-0.0075858105,-0.0078131007,0.011101706,0.0525324494,0.0126359146,0.0007932961,0.0469638407,-0.0198594816,-0.0003640195,-0.0222176183,-0.0160665773,-0.0316785723,-0.0199589208,0.0240785554,-0.0160807818,0.0096882451,-0.0456569195,0.017728636,0.0272322074,0.0213794857,0.0101144146,0.0256979987,0.0332696028,0.0102777788,0.0450034626,0.0339230634,-0.0425885022,-0.0109951636,0.0242064074,-0.0278714616,0.037446063,-0.0092549734,-0.0131615233,-0.0137936743,0.003974027,0.0278572552,0.0029512213,-0.0070921648,0.0047979541,0.0169473253,-0.0010778528,-0.0114781559,-0.0093473094,-0.028610155,-0.0105832005,0.0082676811,-0.0192060228,0.0139215253,0.0150863873,-0.0274168812,0.0322752111,-0.0120392777,-0.0066802013,-0.0031802871,-0.0322183855,-0.0283970702,-0.0058385171,-0.0354856849,0.0132751688,0.0308546461,0.0089779636,0.0042723455,-0.0005167301,-0.0038284194,-0.0166063905,-0.0163506884,-0.0003733419,-0.0004445921,0.0032974838,-0.0315081067,0.0097024506,0.0060302932,-0.0025818746,0.0356561504,-0.0298318397,0.0243910812,0.0070637534,-0.0023261732,0.0034839327,0.0334116593,-0.002429164,-0.0064031915,0.017757047,0.0091768419,-0.0213510729,0.0305421222,-0.0081682419,-0.0410542935,0.0194333121,-0.0394064412,-0.0271327682,0.0304000657,0.007571605,0.008232167,0.0225869641,0.0309967026,-0.0216920096,-0.0134101221,0.0294056702,0.042332802,0.0209675208,0.0032530911,-0.0316501595,0.0289937072,-0.0161660165,-0.0081611387,-0.0003040894,-0.0013486478,0.0079693627,-0.0259537008,-0.0293772593,0.0179275144,-0.0314512812,0.0227148142,-0.0157966688,-0.0585272275,0.022743227,-0.0188082643,0.0047766459,0.0025410336,-0.0025037436,0.0446909368,-0.0177854579,-0.0297466051,-0.0247036051,0.0022498178,0.0083245039,0.0132751688,0.0274310876,-0.0112011451,0.0445488803,0.0292352028,0.011577595,-0.0175865795,-0.0120747918,0.0003331666,-0.0057532834,-0.026024729,0.015583585,0.0037573911,0.0357982069,0.0106116114,0.0487253368,0.0089211408,0.0113929212,-0.0345481113,0.0120250722,-0.0191491991,0.0049222535,-0.0367926024,0.0073443148,-0.0065736589,-0.0013149093,-0.0100078722,0.013310683,0.0207402315,0.0106684342,-0.00451029,0.0147738634,-0.0122097461,0.0010263573,-0.0055579557,-0.0012527597,0.0033685118,0.0629025623,0.0364516675,-0.0384972803,0.0421623327,-0.0154415285,-0.0122310547,-0.0417077541,-0.0136161037,-0.0142837688,0.0242348183,0.0007045108,0.0068400148,-0.0068045007,0.0047375802,-0.0226579923,0.0234961249,0.0046985149,-0.0260531399,0.0016585082,-0.0166916251,-0.0507709496,0.0339514762,-0.0284823049,-0.0517085232,-0.0155409677,0.0090987114,-0.0013504234,0.03514475,0.0060125361,0.0373324156,0.0088714212,0.0109951636,0.0254280921,-0.0176576078,0.0414520502,0.0066588926,-0.0057852459,-0.0330139026,0.0093260016,0.0137794688,-0.0092478702,0.0073372121,0.0076355306,-0.0140706841,-0.0048512253,0.0225869641,-0.0155409677,-0.012238157,0.0036792601,0.052617684,-0.0373892374,-0.0504300147,0.0655164048,-0.0076142219,0.0228426661,0.0497765541,-0.0123233907,-0.0183963012,-0.0155977905,0.0048228139,0.0025215007,-0.0023190703,-0.0022480423,-0.0192770511,0.0146033959,-0.0132183461,-0.0321899764,-0.0101286201,-0.0062469291,-0.0232972465,0.0005939732,-0.0111514255,0.0239649117,-0.0002481547,0.0358834416,0.001383274,0.0131260091,-0.0050962726,0.0128489994,0.0086015137,0.042645324,-0.0048263655,-0.0010485536,-0.0026671086,0.0062504807,0.0022285094,-0.0247036051,0.0381279327,0.0222886465,-0.0004998609,0.022459114,-0.0109099299,0.0078983344,0.045514863,-0.0247036051,0.0078202039,-0.0255985595,-0.010313293,-0.0111159114,0.0315649286,0.0433271974,0.0295761377,0.0162654556,0.0314228721,-0.0022657993,0.0252292138,-0.0117480624,0.027601555,0.025484914,-0.003517671,-0.0043859906,0.0075218854,-0.0301159527,0.0310535245,0.0057071149,0.0226011705,-0.0226011705,0.0461399108,0.0081753442,0.0218198597,0.0414236411,-0.0009100487,-0.0139641417,-0.0301159527,0.0342355892,-0.0125293722,0.0025286037,-0.006797398,0.0484980494,-0.0105192745,0.0140635818,0.0198310707,0.0071312301,-0.0271469746,0.0377585851,-0.021038549,0.0009517777,-0.0272748247,0.0027168281,0.0254707094,-0.0050003845,-0.0301443636,0.0350026935,0.0299738962,-0.0168336816,-0.0065416964,0.0086299246,-0.025016129,0.0059450595,0.0209817272,-0.0029831841,-0.0136018982,-0.0139215253,0.0179701317,-0.0075005768,-0.0086086169,-0.0309682898,-0.000956217,-0.044350002,0.0260815509,0.0290079135,-0.0047695427,-0.0270475354,0.0206123814,-0.0044286074,0.030059129,0.0139783481,0.0369346589,-0.0043504764,0.015455734,0.0124725504,0.0186946187],"39":[0.007998975,-0.0186005589,0.0240998548,0.0088076955,0.0535813719,0.0212325733,-0.0343191326,0.0821071267,-0.0435532443,0.0064513795,0.0180271026,-0.0148216309,-0.026055485,-0.0377010517,0.0638741702,0.0285698697,-0.0157626867,-0.0114764711,-0.0600805394,0.0137188304,-0.0052125677,0.0196445417,0.0234822854,0.0274817739,-0.0048192358,-0.049846556,-0.0472880602,0.0473174676,0.0143143432,-0.0907530785,-0.0035032276,-0.0341132767,-0.0525520928,0.0166743342,0.0217178054,-0.0086680073,0.0327016935,-0.0174095351,0.0254967343,0.0031540077,-0.0006345694,-0.0029738836,0.0088003436,0.05211097,-0.0684618205,-0.0181153268,-0.0405830368,-0.0178800616,0.0374069735,0.0501994528,-0.0497877412,0.0506699793,-0.0214678384,-0.0264377892,0.024335118,-0.0253496934,-0.0023599919,0.0211737584,-0.0114617674,-0.0370246693,0.0132850632,-0.0389655977,0.0297167823,0.0167037435,-0.03140774,0.0470233895,-0.0212472789,-0.016924303,-0.0501406342,0.0113441348,0.0382892117,0.0383186191,0.0479938537,-0.0172771979,0.0101163508,-0.0586983636,-0.0232911333,0.0638741702,-0.0085209673,-0.0145569583,0.0188211184,-0.0098443273,-0.0299520455,0.0165125914,-0.0071130595,-0.0590512604,-0.0354954526,-0.0394949391,0.0162332151,-0.010697159,-0.0327311009,0.0300990846,0.018100623,-0.0091826469,0.0130424472,0.0018049158,-0.0141673032,0.0099987192,-0.0034076518,0.01688019,0.0019262239,0.0020420179,0.0178359505,-0.0077710631,0.0230411664,0.0091679431,0.029731486,-0.0002754702,-0.008094551,0.000534858,-0.0726377517,-0.0268053897,-0.0510522835,0.0088076955,0.0148069272,-0.0016725799,-0.0000379949,0.0072453953,0.0096605271,-0.0238204785,-0.0235116947,-0.0044589876,-0.0181447342,0.0011073949,0.013343879,-0.0418181717,-0.024585085,-0.0364071019,-0.0407888927,-0.0262025259,0.0235263985,0.0048817275,0.0581102036,-0.0017415049,-0.0340838693,-0.0284228288,-0.0473468751,-0.0233205426,-0.0271288771,-0.0279817097,-0.0080136796,-0.0601687618,0.0178359505,0.0048265876,-0.0378775001,-0.0153215667,-0.0374657884,0.0299079344,-0.0465528592,-0.0302608293,0.0000084002,-0.0283934213,-0.0475527309,0.0281287488,0.0626390353,0.0059918794,0.0179388784,0.0602275804,-0.0080063269,-0.0242174864,0.0034444118,0.0522286035,-0.0483173393,0.0077122473,-0.0256584771,0.0015402439,-0.0048118834,-0.0212766863,-0.0686382651,0.0164096635,-0.0289962851,-0.0515816286,-0.0209237896,0.0043450315,0.0108221434,-0.0109691834,0.0153950863,-0.0444943011,0.0170713421,-0.0370834842,-0.0678736567,-0.0235705096,-0.0350837409,0.0344073586,-0.0111970948,-0.0327605084,-0.0275111813,0.0252614692,0.0006979805,0.0570515133,0.0113294311,0.08763583,0.0178506542,0.0252614692,-0.0235558059,-0.0069917515,0.0610510036,0.0021706778,-0.0489643142,0.0175271668,0.0278346688,0.0536695942,0.0448766053,0.0168507826,0.025805518,-0.0402301401,0.012954223,-0.0216442868,-0.0733435452,-0.0273494385,0.014277583,-0.0060984837,0.0201738868,-0.0348778851,-0.0429944918,0.008682711,-0.0293197744,-0.0068998514,-0.0039627277,0.0166890379,0.0158803184,0.0572279617,0.0058558676,-0.0135203265,-0.0025198979,0.0246144943,0.0273200292,-0.0246439017,0.041112382,-0.0071939314,0.0245409738,-0.0169537105,-0.0218942538,-0.0465822667,0.0178947672,0.0334957093,0.0176153909,-0.0294668134,-0.0148289828,0.0098810876,-0.0124469353,0.0493466184,0.0366129577,-0.0013371449,-0.0319959,0.0029573417,-0.0410829708,-0.0768725052,0.0362306535,0.0518462993,0.0349072926,0.0033708918,-0.0216589905,-0.0360542051,-0.0323487967,-0.0268789101,-0.0436708778,0.018791711,-0.0110941669,0.0062491996,0.0099399034,-0.0576690845,-0.0276288129,-0.0084033357,-0.0344661735,-0.0062749316,-0.0018986538,-0.0343779474,0.0144687351,-0.0169537105,0.0523168258,0.0228059012,0.0041979915,-0.0367599986,-0.0350249261,-0.0342603177,0.017806543,0.0088591594,-0.0022772818,-0.0264524929,0.0060323155,-0.0054294514,0.0131821353,-0.010844199,0.0208943821,0.0353484116,0.0093958555,0.0265554208,0.0060433433,-0.0464940444,-0.0078078234,0.0327605084,0.0398184285,-0.0545812435,0.0067270794,0.0055176755,-0.0056316317,0.0123293027,-0.0223353747,-0.0115499906,0.0242027827,-0.0032256898,0.0066167996,-0.0088665113,-0.0090429597,-0.0158950221,-0.0146010704,-0.0291580297,-0.0094546713,-0.0339074209,0.009910495,-0.0063153673,-0.0366717726,-0.015453903,-0.0252467655,-0.0172477905,0.057110332,-0.0290256944,0.0117705511,-0.0670502335,-0.0334957093,-0.0610510036,-0.0159832463,0.0102486871,0.009520839,-0.0218795501,0.0271288771,0.0026026077,0.0405536294,-0.0229970533,0.0135717904,-0.0030731356,0.0167625584,-0.012071983,-0.0112926709,-0.0260113738,0.0038046597,0.0130056869,0.0125645669,0.029981453,-0.0214531347,-0.016630223,-0.0495524742,-0.0027220778,0.0670502335,-0.0034591157,-0.0184094068,0.0033231038,0.0129909832,-0.0140202632,-0.0435532443,0.0053118197,0.024923278,-0.029687373,-0.0293491818,-0.0050986116,-0.0275699981,0.020217998,-0.0779900104,-0.0277170371,-0.0274082534,0.0686382651,0.0045582396,0.0199974384,0.0044332556,0.0211737584,-0.0355542675,0.0042641596,-0.0338486061,-0.0181153268,0.0075357994,0.0252026543,-0.0344073586,-0.009079719,-0.0401125103,-0.0120131671,0.0343191326,0.0284669418,-0.0121528553,0.08645951,0.0645799637,0.0272759181,-0.0055838437,0.0202768147,0.0076460792,0.0424063317,0.040288955,0.012366063,-0.0380539484,0.0144687351,0.0192622375,-0.0449648276,-0.0018343239,0.0232029092,-0.0301726051,0.0243645255,0.0382303968,0.0319076777,0.0664032549,-0.0282463823,0.0061352435,-0.0077195992,-0.0096311187,-0.0229382385,-0.0033580258,0.0241880771,-0.018100623,0.0399360619,-0.028849246,-0.0061646514,-0.0189681575,-0.0169390067,0.0459941067,-0.0394949391,0.0060029076,0.0091679431,-0.024629198,0.0364953242,0.0407300778,0.0378775001,-0.0187770072,-0.00103847,-0.0013886088,0.0073777311,-0.0082636476,0.0397302061,0.0340838693,-0.0213207975,0.0157920942,-0.0624625869,-0.0025603338,-0.0329957716,-0.0006860335,0.0029738836,-0.0471410193,0.0117043834,0.0320547186,0.0310842525,0.0184094068,0.0004774205,-0.0237910692,0.0084106876,-0.0016955548,0.0405536294,-0.0023728579,0.0034683058,-0.0058963033,-0.0143511025,0.0006290554,0.0028709557,0.0401419178,-0.0496112928,-0.0247174222,0.0220412947,-0.0350249261,-0.0524050519,0.0347896628,-0.0097855115,0.05093465,-0.0042715115,-0.0519051142,0.0261437092,-0.0580513887,-0.01982099,0.0138438148,-0.0671090484,0.0241439659,-0.0005555354,0.040377181,-0.0088518076,0.0142628783,0.0427592285,-0.0271288771,0.0132041909,-0.0375834219,-0.0069366116,0.0285992771,-0.0002488192,0.0095428955,-0.021688398,0.03434854,-0.0226882696,-0.0076534315,0.060639292,-0.0048229117,-0.0092047034,0.0172330867,0.0354954526,0.0025731998,0.0378186852,0.0253938064,0.0091091273,0.0893414989,-0.0184535179,0.0319370851,-0.0363482833,-0.0396419801,-0.0532284752,0.0028452238,-0.0408183001,0.03670118,-0.0080871992,0.0027882457,0.0429944918,-0.0337309726,-0.0116823269,-0.0143952146,-0.0264819022,0.0107339192,-0.0338486061,0.0068888236,0.0032017957,0.0081092557,0.0234675817,-0.0078886952,0.0221148133,-0.0080798473,-0.0191004947,-0.0148289828,-0.0184682216,-0.0049515716,-0.0321723484,-0.0396713875,0.0070652715,-0.0029628559,-0.0053449036,-0.041112382,-0.0250115022,-0.0116896788,-0.0050618513,0.0400242843,0.0018187008,0.0041502034,0.0000228888,-0.055786971,0.01629203,-0.0459352918,-0.0284228288,-0.039112635,0.0048155594,0.0042568077,0.0327899158,0.0450824611,0.0434944294,-0.0071534952,0.0044038477,0.0045067756,-0.0130056869,-0.018688783,0.0483761542,0.0217766222,-0.0253496934,0.0302020125,0.0191740151,-0.0172919016,0.0347602516,0.025217358,0.0027275917,0.0070395395,-0.0041244715,-0.0078886952,-0.0137482388,0.0089179752,0.0235263985,-0.010204575,0.0330839977,0.0048523196,-0.0217913259,-0.0221295189,0.0004464042,0.0102854474,-0.0060212873,-0.0182182547,0.0127483672,0.0256584771,0.0048449677,-0.0650504902,-0.0358189419,0.0021284039,0.0135350311,-0.0215119496,0.0009585169,-0.013637959,0.0351425558,-0.0075431513,0.0038193637,-0.0005422099,0.016924303,0.0336721577,-0.0095134871,0.0110353511,-0.0047126315,-0.0358189419,0.0095870076,0.0286139809,0.0121160951,0.0128512951,-0.0107265674,-0.031201886,0.0275994055,0.0026246638,0.0110794632,-0.0245115664,-0.0283934213,-0.0073409714,0.0165419988,0.0277170371,0.0044259038,0.0377010517,-0.0428474508,0.008932679,0.0114691192,-0.0166449267,-0.048082076,-0.0141673032,0.0114617674,-0.0198798068,0.0053890157,-0.0062712557,0.0266289413,-0.031643007,-0.0269083176,-0.0322017558,-0.0530814342,0.0094326148,0.020556191,0.0154097909,-0.026687758,-0.0118881827,0.0201444775,0.0125278067,0.0209384933,0.0012571919,-0.0216148775,-0.0001974701,0.0209531989,0.0332016274,0.0437296927,-0.0188946389,-0.0150348386,0.0388773717,0.0037384918,-0.0133218225,-0.0138291111,-0.0104251355,-0.0102339834,0.0030363759,0.0507876128,0.0017837789,-0.0286727976,-0.0149833746,-0.021144351,0.0275994055,0.013836463,0.0221883338,-0.0284375343,-0.0110647595,0.0006805194,-0.0076387273,0.0067932475,-0.0130939111,0.0280699339,-0.0158215035,0.0070174835,-0.0321135335,0.032819327,0.0095943594,0.0265113097,0.0107045108,0.0105648227,-0.0385832936,0.0094840787,0.0352601893,-0.0029867496,0.0278346688,0.0044038477,-0.0088518076,-0.0165567026,0.0294521097,0.0471116118,-0.0484349728,0.0139099825,-0.0311430693,-0.0047126315,-0.0213060938,0.0003542745,-0.0007623105,0.0086312471,0.0271729901,0.028805133,-0.0004027517,-0.0180859193,0.027672926,-0.041112382,-0.0045325076,-0.0038193637,0.0143363988,0.0276435185,-0.0342015028,-0.08763583,0.0154833104,-0.0193210542,-0.0509052426,-0.0131233186,-0.0299226381,0.0050839074,0.0094767269,-0.0024518918,0.0301431976,-0.0038634758,-0.0401125103,0.0317018218,-0.0292168446,0.027819965,-0.0163949579,0.0008753474,0.0051427237,0.0377304591,-0.0197474696,-0.0264377892,-0.0237763654,0.0207767505,-0.040288955,-0.0033874337,0.0274670701,-0.0222324468,-0.0064072674,0.0376422368,-0.0000313896,-0.0296579655,0.0142481746,0.0062014116,0.0300843809,-0.0294227023,0.0373481587,-0.0291286223,-0.0224824138,-0.01805651,-0.0459352918,-0.0067638396,-0.0277170371,-0.0083665755,-0.0307607651,-0.0188211184,0.0234381743,-0.0523756444,0.021394318,0.0327605084,0.0234234706,0.0089914948,-0.0008951059,0.0148216309,-0.0016790129,0.0166155193,-0.0318782702,0.0011579399,-0.0119396467,-0.0027717038,-0.0010862579,0.0214825422,-0.0191151984,0.0300990846,-0.0100501832,0.0292756613,0.00083629,0.042641595,0.0090135513,-0.0047751237,-0.0234822854,-0.0697557703,0.0121602071,-0.0162479188,-0.013248303,0.0179829895,0.0576102659,0.0024960039,0.0037752516,0.0173213109,0.0184535179,0.000546805,0.0411711968,-0.0046721958,-0.0462587811,-0.0136306072,0.0072895074,-0.0277758539,0.0122043192,-0.0232029092,-0.0279228929,-0.0217178054,-0.0271582864,-0.0160126537,-0.0134394551,0.0124322306,0.0161449909,0.0297461897,0.0201444775,-0.0749315768,-0.0544047952,0.0349367,-0.0096825836,-0.0305255018,-0.0194827989,0.0282757897,0.0275111813,0.0212325733,-0.0277023334,0.0114250071,-0.0499053709,0.0087488797,-0.021144351,-0.0009879249,-0.0026798039,0.0036686477,0.0015448389,0.0287169088,0.0551105887,-0.0290403981,0.0007549584,-0.0386421084,0.0537872277,0.013637959,-0.0013160079,-0.0304666851,0.0433179811,0.016336143,-0.0046023517,0.0093811508,0.0192769431,0.0134247504,0.0237763654,-0.0351719633,0.0416417234,0.0032109858,-0.0017350719,-0.0097119911,-0.0029334477,-0.0236440301,-0.023158798,0.0476409569,-0.0209826063,0.0586689562,-0.0041354997,-0.0185123347,0.0324076116,-0.0061058355,0.0007765549,0.0313195176,0.0057382355,0.0025750378,-0.0124175269,-0.0190269742,0.0181594379,-0.0639918,0.0244086385,-0.0026154737,-0.0065506315,-0.0131527269,0.0065065194,0.0040288959,-0.0442002192,-0.0199386217,0.0134835672,0.000517397,0.0187181905,0.0020989957,0.0010421459,-0.0078739915,0.0151010063,0.0471704267,-0.0020328278,-0.0179241747,-0.0146231269,0.0085724313,-0.0011450739,0.01688019,-0.049846556,0.0113882469,-0.0122337267,-0.0210120138,0.0128733506,-0.0334368944,-0.0463470034,-0.0133659346,0.0339368284,0.0039406717,0.0113147274,0.0527285412,0.0030510798,-0.0287757255,-0.0110353511,0.0301726051,0.0175418705,-0.013542383,0.0099031432,0.0138952788,-0.0051096394,0.0344073586,-0.0135644386,-0.0271141734,0.0215266533,-0.0251879506,-0.0125425113,-0.0012066469,0.000430092,0.0140202632,-0.0217178054,-0.0182476621,-0.0081607196,0.0357601233,0.0214237254,0.0022772818,-0.0018150249,0.001105557,-0.0275847018,0.0022258179,-0.0111529827,0.0499053709,-0.0067123752,-0.0242615975,0.0288345423,-0.0078592878,0.0279228929,0.0346720293,0.0143805109,0.0330839977,-0.0156597588,0.0113220792,0.0719907805,-0.0003852907,0.0434944294,0.0149025023,-0.0080651436,0.0157920942,-0.0280552302,-0.0038634758,-0.000660761,-0.0022147899,0.0274082534,-0.0108809592,-0.0086238952,0.0239381101,-0.02011507,-0.0067160516,0.0366423652,-0.0271582864,0.0378775001,0.0163067337,-0.0003264747,-0.0059330636,0.0352601893,0.0084842071,0.0194092784,-0.0330839977,-0.0367599986,-0.0205855984,-0.0102633908,0.0099913673,0.0300843809,0.0204532631,-0.0289521739,0.0007388759,-0.0135350311,-0.029981453,-0.0016054929,0.0015310539,0.0262025259,-0.0028250057,-0.0279817097,0.0111750392,-0.0078004715,0.0307607651,0.0025621718,0.0146304788,-0.0037973076,0.0017203678,0.0166743342,0.0012268649,-0.0053632837,0.0055029714,0.0125792706,0.0077637113,-0.0204679668,-0.0239087027,0.0048376154,-0.0377892777,-0.0039480235,0.0377892777,-0.0130939111,0.0236734375,0.0319664925,0.0059918794,0.0228941254,0.0155862384,0.0469939783,-0.0466999002,-0.028555166,-0.0519051142,-0.010792735,0.0194092784,0.0015457579,0.0041832877,0.0188652296,0.0123881185,-0.0081019029,-0.0214972459,0.0206003021,0.0223500784,0.0057823476,-0.0267612785,-0.01688019,0.013101263,0.0002043626,0.013395343,0.0040656556,-0.0312312935,0.0084180394,-0.0295844451,-0.0139982067,-0.0096017113,-0.0015861939,-0.0292756613,0.0441119969,0.0138585186,-0.0021063478,-0.0315841883,0.0043156235,-0.0095502473,0.0121160951,0.0119469985,0.0045508877,0.0293785892,-0.0090576634,0.0144834388,-0.03434854,-0.0108000869,-0.0088518076,0.0047604195,-0.000740714,0.0267612785,-0.0182770696,-0.0042090197,-0.0075725592,0.0345543958,-0.0086606555,0.0093885036,-0.0179241747,-0.0076681352,-0.0040950635,0.0248350538,0.0182035509,0.0158362072,0.0098590311,0.026687758,0.0229676459,0.0043487079,-0.0062896353,0.01893875,0.0112485588,0.0145422546,0.0005978094,-0.0047052796,-0.0276582222,-0.0198798068,0.0024206459,0.0002952287,0.0382892117,0.0104251355,0.0230852775,0.0165714063,0.0096972873,0.0147481104,0.0142408228,-0.0443178527,-0.0080136796,-0.0156744625,-0.01952691,-0.0521991961,0.0147848707,0.0278640781,0.0286433902,0.0245556775,-0.0367305875,0.0082195355,-0.027672926,0.0141011346,-0.042053435,0.0153950863,0.0035381496,0.0004296325,0.0142996386,-0.0111529827,0.0096237669,-0.0095502473,0.0071865795,0.0167478547,-0.0307019502,-0.0137408869,0.0024463779,0.0118293669,0.0143878628,0.0045949998,-0.0066241515,-0.0306725409,-0.0168213751,-0.0036851896,-0.0197033584,-0.0066425316,0.0098957913,0.0145937186,0.0497877412,-0.0046942518,0.0049736276,0.0188652296,0.0169537105,0.0127851265,0.0283051971,0.0254967343,0.0149686709,0.0035620437,0.0676383972,-0.0365247317,-0.0018481088,0.0097193429,0.008197479,-0.0045361836,0.0209826063,0.0214972459,-0.0199239179,0.0002433052,0.0136159025,-0.0389655977,0.011969055,0.0439355485,-0.0083592236,0.021394318,-0.0291874371,0.0068483874,0.008881215,-0.0005881599,0.020850271,0.0013647149,-0.0033488357,0.0345543958,0.0080504389,0.0043303277,-0.0126307346,0.0637565404,0.0131674306,-0.009616415,0.0312312935,0.0176300947,-0.0060690753,-0.0036943797,0.0131674306,0.0042237234,0.0342897251,-0.0169095993,-0.0123219509,-0.0039774315,0.0197474696,0.0224530064,-0.0161302872,-0.0251879506,0.0343191326,-0.000355653,0.0060837795,0.0141746551,0.0083151115,0.000617568,-0.0236293264,-0.0322017558,-0.0059073316,0.0084253913,-0.0212031659,-0.0092635192,0.0188064147,0.0302020125,-0.0252614692,0.0171889737,0.0340544619,-0.0014042319,-0.0054662116,-0.0284669418,0.0098516792,0.0054110717,-0.0056022233,-0.0209679026,-0.0126233827,0.0059293876,-0.0016422529,-0.0277464464,0.0271141734,-0.0159244314,-0.0087194713,-0.0193357579,-0.0259231497,-0.0280405264,-0.0070101316,0.0072417194,-0.0190563817,-0.0059661474,0.0244968627,0.0584336892,0.0388479643,0.0327311009,0.0339662358,0.0128365913,-0.0021559738,-0.0150715988,0.0127998311,-0.0031521698,-0.0215560626,0.0199092142,-0.0237763654,0.0273494385,-0.0215707663,-0.0313489251,0.0227470864,-0.0007099275,0.0216148775,0.0331134051,0.0239381101,0.0164831821,0.0124763427,-0.0188358221,-0.0182917751,-0.0102192787,0.0188799351,-0.0220707022,0.0128659988,-0.0121528553,-0.0150715988,-0.0026099598,0.0224824138,0.0033433216,0.0376128294,0.0084180394,-0.0008335329,0.009616415,0.0160273593,-0.0039811078,-0.0116014546,-0.0188505258,-0.0270406529,-0.0007361189,-0.0193063505,0.0190269742,0.0317606367,-0.0172919016,0.0017332338,0.0053228475,-0.0044148755,-0.0184388142,-0.0027919218,-0.0232470222,-0.0183799993,-0.0245997906,0.0162038058,0.0266730543,0.0159391351,0.0120499274,0.0307019502,0.0099178469,-0.0043266518,-0.0250115022,0.010697159,0.0176153909,-0.0032440696,-0.0033488357,-0.000122227,-0.0034241937,0.0182476621,0.048082076,-0.0358189419,-0.0066278274,-0.0060580475,0.0143069904,-0.0039406717,0.0212913901,-0.0035050658,0.0032679636,0.0132556548,-0.0094840787,-0.0229088292,0.0016808509,0.009814919,-0.0245409738,0.0074144914,0.0088297511,-0.0050728796,0.0292609576,-0.0222471505,0.0111529827,-0.0106603988,0.0047346875,0.0072380435,-0.0069476394,-0.0042935675,0.0409947485,-0.0080430871,-0.0018361618,-0.0394067168,0.0288933571,0.0072306916,-0.0032918577,-0.0095796548,0.0165567026,-0.0087488797,-0.0194239821,-0.0227470864,0.0272906218,-0.0110647595,0.01599795,0.0128218867,0.0246144943,0.0131086148,0.0342603177,-0.0216589905,0.012461639,-0.0192475338,0.0494642518,-0.0219530705,-0.0100207748,-0.0227911975,-0.0056022233,-0.0125204548,-0.0075505031,-0.015453903,-0.0078886952,0.0337897874,-0.0061867074,-0.0011459929,-0.0207473431,-0.0088371029,-0.0164243672,0.0153215667,0.0038671517,-0.0076240231,-0.0180271026,0.0239675175,0.0442590378,0.0148510383,-0.0039296439,0.03552486,-0.0312312935,0.0212766863,0.0104913032,-0.0169831179,-0.0477879941,-0.0052860877,-0.0043082717,0.0222471505,0.0121896146,-0.0254820306,0.0178359505,0.023746958,0.0150568951,0.0279523022,-0.00100171,0.0206444133,0.0183358863,-0.0278052613,-0.0086900629,0.0398478359,0.0084621515,-0.0330839977,-0.0207326375,0.0067932475,0.0134615107,-0.025805518,-0.0043560597,0.0095649511,0.0349367,-0.0397302061,-0.0230117589,-0.0267171655,0.0067491354,-0.0112044467,-0.0159097258,0.0679324716,0.0199239179,-0.0275699981,-0.0024592439,-0.0412888266,0.0059734993,-0.0414358675,-0.0257467013,-0.0008372089,0.0126013272,0.0206150059,0.0293785892,0.0296138544,0.0154244946,0.0016955548,0.0261437092,-0.0091826469,-0.0121969674,0.0256878864,-0.0152627509,0.0038561237,-0.008587135,0.0078592878,-0.0073740552,0.0046354355,-0.0208208617,-0.0106603988,-0.0152186388,0.0064918157,0.0109544788,-0.0452000909,-0.0078298794,0.0136453109,0.0330545902,-0.0222912617,-0.0254526213,0.0395537578,-0.014130543,0.0112412069,0.0232323185,-0.0092855748,0.0002757,0.0145643111,-0.0059918794,-0.0008055035,0.0100869434,-0.0169831179,-0.012314599,0.000250887,-0.0461999625,-0.018688783,0.0033690538,-0.0121749109,-0.0232617259,-0.0300402697,0.010498655,0.0202327017,0.0119396467,0.03140774,0.0033139137,0.0083592236,-0.0030804877,0.0113588395,0.0044259038,0.030025566,-0.0144393267,-0.0106751034,-0.0168360788,-0.0020622357,-0.0038120116,-0.0416417234,0.0375540145,0.030319646,0.0009405964,0.0193210542,0.0031466556,0.0043303277,0.0296138544,0.0130718546,0.0033598638,-0.0215266533,0.0023011758,0.0093443915,0.0323782042,0.0014658049,0.0052934396,0.0481997095,0.0393479019,0.0275405888,0.0007159009,-0.0040619797,0.0517286658,0.0081754234,0.0375540145,-0.0105280634,0.0260848943,0.0013251979,0.0248497576,0.0022864719,0.0134541588,-0.0341132767,0.0415240936,0.0128365913,0.0001817322,0.0226441585,0.0115426388,-0.0208355654,-0.0327899158,0.0072564236,-0.0159097258,0.013101263,-0.0031815777,0.0240263343,0.0031852538,-0.0107633267,-0.017806543,-0.01982099,0.0155421263,0.0382303968,0.0096972873,0.0217913259,-0.0197621752,0.0167772621,0.0372011177,0.020217998,-0.0061462712,0.0218795501,0.010403079,0.015306863,0.0026228258,-0.0009649499,-0.0377892777,0.0415829085,0.0072895074,-0.0155421263,-0.0194827989,-0.0245997906,-0.0004160772,-0.0116382148,0.0048596715,-0.0127777746,-0.0187623017,-0.0174536463,-0.0067050233,0.0090870708,-0.0171595663,-0.0208649747,0.0128659988,0.0135203265,0.0372011177,0.0265554208,0.0110721113,-0.0016266298,-0.0069292593,0.0084474469,0.0223059654],"40":[-0.0228439663,-0.0122639881,0.032450147,-0.0008278192,0.0630844906,0.0131938551,0.0063223606,0.0513110645,-0.0229464713,0.0175137073,0.0333580486,-0.0386883058,-0.0271931067,-0.0353495739,0.0729835406,0.0532147251,-0.0141383652,0.0064029,-0.0684733242,0.0078635961,0.0386590213,0.0121761272,0.0101187052,0.0062235165,0.0208670851,-0.0312200878,-0.0262705609,0.0456879325,-0.0319229774,-0.0593943112,0.0317179672,-0.0266512949,-0.0074352715,0.0044553056,0.0091082994,-0.0066664843,0.0269588083,0.000594895,0.0532733016,-0.0029287136,-0.0305171963,-0.0072192792,0.0249087103,0.0426420718,-0.0642559752,-0.0325380079,-0.0361110382,-0.0191684309,0.0261387695,0.055557698,-0.0921959057,0.049934566,-0.0209695902,0.0542690642,0.0632602125,-0.0277642049,-0.0545619354,0.0018981725,-0.0079514571,0.0036865182,0.0193295106,-0.0312200878,0.0277642049,-0.0042686001,-0.0479137562,0.0328015909,-0.0229757577,-0.0159907769,-0.0418806039,0.0479430407,0.0133988652,0.0195198767,0.0412655734,-0.0332994722,0.0037853625,-0.0444578715,-0.0027529907,0.0725735202,-0.0006621638,0.0031428759,-0.0234150663,0.0112535823,-0.0359646045,-0.0112023298,0.0201202631,-0.0533611625,-0.0314543843,-0.0155661125,-0.0222728662,-0.0043894094,-0.0495245457,0.0149144745,0.0198127478,0.0104555078,0.020295985,-0.0087641757,-0.0236493628,0.0316593945,-0.0232979171,0.0265780762,-0.0459515154,-0.005429103,0.0032307373,-0.0039501027,0.030019315,0.0070435563,0.035818167,0.0024674411,-0.023371134,0.0139040677,-0.0665403754,-0.0195784513,-0.0289503336,-0.0479430407,0.0090790121,-0.0289356913,-0.0074352715,0.0179823022,0.0120736221,-0.0002931002,-0.0308979284,0.023005046,0.0169865396,-0.0240886696,0.0328308791,-0.0266659372,-0.0227707475,-0.0282474421,0.0118686119,-0.0002617538,0.0223167986,0.0209988765,0.0825897232,-0.0005193891,-0.0589842908,-0.0184801836,-0.051340349,0.0178944394,-0.0222435798,-0.0224778764,-0.0119345076,-0.0269002337,0.0036645529,0.0053339195,-0.0584864095,-0.0261387695,-0.0250844322,0.0170597564,-0.0400062278,-0.021701768,0.0068568508,0.0016181143,-0.0374289602,-0.0042466349,0.0525411218,0.0371360891,0.0030458621,0.0141017558,-0.0180408768,-0.035993889,-0.0164886583,0.0375461094,-0.0376339704,-0.0088081062,-0.0398305058,0.0451021902,-0.0137722762,-0.0486459322,-0.0722806528,0.0032343981,0.0205302816,-0.0473572984,0.0093059875,-0.0259484034,-0.0053668679,-0.04152916,0.0226389561,-0.0354667231,-0.0067397021,-0.0178944394,-0.0625573248,-0.0190659259,0.0028079043,0.0451900512,-0.0219799951,-0.0209695902,0.0044077141,0.0281888694,-0.0166497361,0.0511939153,0.0157711226,0.0851084143,0.0158150531,0.0332408994,0.015712548,0.0070838262,0.0589842908,-0.0000608623,-0.0410019904,-0.007252227,0.0313372351,0.0736864358,0.0422906242,0.0081198588,0.008793463,-0.0240154509,0.0054474073,-0.0356424451,-0.0237225797,-0.0280277897,0.0578128062,-0.0154489642,0.0376925431,0.0035327608,-0.043579258,-0.0223753713,-0.0348224044,0.0080905715,-0.0158589836,0.0266366508,0.0127984788,0.0210135207,0.0220092833,-0.0336216316,-0.0410898514,0.0332408994,0.0580763929,-0.0139553202,0.0132597508,-0.0234443527,0.0207206495,-0.004067251,-0.0079294918,-0.0307807811,0.0470937155,0.0037158055,0.0055023208,-0.0448678918,-0.0102944281,0.0047554988,-0.0155075388,0.0357303061,0.0410312787,-0.0135965534,-0.043579258,-0.0047994293,-0.0483237766,-0.0798953101,0.0119491518,0.0315422453,0.017586926,-0.0066884495,-0.0001284744,-0.0633773655,-0.0215553325,-0.0453950614,-0.0577542335,0.0187437665,-0.0134135084,-0.0366089195,-0.0136258397,-0.0551183894,-0.0083395122,0.0053339195,-0.0306343436,0.0086397054,-0.0329187401,-0.0007239414,-0.0375461094,-0.0438721292,0.0244694017,-0.0090277595,0.0321865641,-0.0104262205,-0.0178212225,-0.0175137073,0.0230489764,0.0167815294,0.0008008201,-0.0067433631,0.0076512643,-0.0480601899,-0.0073108012,0.0236054324,0.0458050817,0.04152916,0.0084054079,0.0025900812,0.0071643656,-0.0610343926,-0.0079953885,-0.0062088729,0.0340609401,-0.04583437,-0.0041404688,-0.0004292396,0.0139919296,0.0064321873,-0.0021343001,0.0224632341,0.0220385697,-0.0080686063,-0.002154435,-0.0025827594,-0.0373410992,-0.0203984901,0.004070912,-0.014028538,0.0019421033,0.0077684131,0.0018487505,0.0215846188,-0.0220532138,-0.0085884528,-0.0406798311,-0.0082882596,0.0382782854,-0.0367553569,0.008888646,-0.0731006935,-0.0276324134,-0.0668332428,-0.0114146611,0.0055535734,-0.0266512949,-0.0261680558,0.023473639,-0.0089106113,0.0509596169,-0.0266659372,0.035993889,-0.0242497493,0.0117514636,-0.049114529,-0.0158296973,-0.0478258952,-0.0076732296,0.0136624491,0.0190952122,0.0189927071,-0.0328894556,-0.0082809376,-0.0378682688,0.0031501977,0.0615029857,-0.0113780526,-0.0314543843,0.0368139297,0.0158296973,-0.0131645678,-0.0486166477,0.000611369,0.0522482507,-0.0511939153,0.0117441416,-0.0264462847,-0.0342366621,0.0279692151,-0.059277162,-0.0124177458,-0.0183923207,0.048528783,0.0308393538,0.0360231772,-0.0081198588,0.0002805158,-0.0297703743,-0.0202227682,-0.0327430181,-0.0428177938,0.0239129476,0.0156832617,-0.0361988991,-0.0107190916,-0.0254505221,0.0314250961,0.0415584445,0.0289796218,-0.0282620862,0.0826482996,0.0704648495,0.0266073626,-0.0113414433,0.0065566576,0.0029396962,0.0797195882,0.0402405262,0.0055316077,-0.0452193394,0.0466836952,0.0206327867,-0.0504617356,-0.006077081,0.0137137016,-0.0300486013,0.0063516479,0.0288478285,0.0295946505,0.0494074002,0.0045321845,0.0078269867,-0.0183776785,-0.0161372125,-0.0275152642,0.0007921255,0.0420563258,-0.0231368374,0.0182605293,-0.0242497493,-0.023283273,0.0018277003,-0.0250844322,0.0371360891,-0.0372532383,-0.0210720953,-0.0176015683,-0.0105506908,0.0110412501,0.0296092946,0.0616787076,-0.0078928834,-0.0325380079,0.0050410484,0.0005116097,-0.0157418363,0.0167229548,0.0670675412,-0.0149144745,-0.0093352748,-0.0701134056,-0.0139919296,-0.0071936529,-0.0209549461,0.0073181232,-0.0455122106,-0.035906028,-0.0013096841,0.0061210115,-0.0048287166,0.0180115886,-0.0062381602,0.0079807444,0.0161225684,0.046302963,-0.0446043089,0.0202666987,-0.0024601195,-0.0157564785,-0.009723329,-0.003459543,0.0145337414,-0.0663060769,-0.0036791966,0.0010406085,-0.0011184025,-0.0759122595,0.058369264,0.0030806407,0.0489680916,0.036667496,-0.0267537981,0.020383846,-0.0421149023,0.0031373845,0.0139772855,-0.0643145517,-0.0037194663,0.0232393425,0.0275006201,-0.0217164122,0.0284963828,-0.0190512817,-0.0235615019,-0.0173819158,-0.0442235768,0.0170890447,0.0268855914,-0.000788007,-0.0037267881,-0.0003519032,0.0148558998,0.0178358667,-0.045160763,0.0300778896,0.0039464417,0.0253187288,-0.0097819036,0.0141603304,0.0070472173,0.0146069592,-0.0000588031,0.0047079073,0.0837612078,-0.0179383717,0.0322158486,-0.0269734524,-0.0555284098,-0.0369603671,0.0153318159,-0.0176308565,0.0586621352,0.004909256,-0.0181580242,0.0513696373,-0.0291699879,-0.0114805577,-0.0108801713,-0.0034998127,0.0193734411,-0.0082955817,0.0228878967,0.01009674,0.0243522543,0.0220825002,0.0159761328,0.0019970166,-0.0212771036,0.0052204318,-0.0287892558,-0.0033918165,-0.0142921228,-0.010660518,-0.0289942641,-0.0175283514,-0.0074975067,-0.0098697646,-0.0502567254,-0.0090131164,-0.0329187401,-0.0302243251,0.0358767435,0.0151268058,-0.0080539621,0.0031080972,-0.0327137299,0.02244859,-0.0376632586,-0.0531561524,-0.052746132,-0.0052533802,0.0075414376,0.0256115999,0.0317179672,0.023107551,-0.0129229492,0.0108801713,0.0017261106,0.0163568649,-0.0236200746,0.0248062052,0.0383954346,-0.016093282,0.0173379853,0.0221410748,-0.0008085995,0.0064212047,0.004345479,-0.0179237276,0.0081784325,0.0069520338,-0.016093282,-0.0242790356,0.0253333729,0.0248647779,-0.0110192848,-0.018333748,-0.0011751463,-0.0226682443,-0.0528047085,0.0242351051,0.0076512643,-0.0187876988,-0.0069520338,0.0113560874,0.0029726443,0.0109680323,-0.0664232224,-0.0178944394,0.0017297715,-0.0191098563,-0.0008790717,-0.0094524231,-0.0356717333,0.0336509198,-0.0071607046,0.0520432405,-0.0388933159,0.0246158373,-0.005191145,-0.0033625292,0.0077830562,-0.0088520367,-0.0374582484,-0.0101626366,0.0283353049,-0.0025790983,0.0234150663,-0.0063772737,-0.0229318272,0.0114659136,0.0291553438,-0.0228439663,-0.038629733,-0.0139113897,-0.0159175582,0.0215406884,0.0313958116,-0.0089325765,0.0070289127,-0.033006601,0.0001812142,0.0173672717,-0.0090643689,-0.0559384301,-0.0452486239,0.0099795917,-0.0555284098,-0.0016885864,0.0143873058,-0.0054766946,-0.0299900267,-0.0173233412,-0.0122347008,-0.0286428183,0.005330259,0.0290089082,0.0284963828,0.0007861766,-0.0434913971,0.0174258463,0.0170304701,0.0317765437,-0.0009321547,-0.0296092946,-0.0100454874,0.0064871009,0.0254651643,0.018890202,-0.0215406884,-0.0175283514,0.0148412567,0.0101333493,-0.0275445525,-0.0617372841,0.0081930766,-0.0134208305,-0.0208670851,0.0291114133,-0.0061649424,-0.0290089082,-0.0118100373,-0.0001995186,0.0257287491,0.015053588,0.0345588215,-0.0358474553,0.0012071792,-0.0257873237,0.0028042432,0.012058978,-0.0127106169,0.0150828753,-0.0038109885,0.0152000235,-0.0456293598,-0.0005994711,-0.0107776662,0.0233564917,0.0201788377,0.0198420342,-0.0174404904,0.0469472781,-0.0092986654,0.0007010608,0.0257433932,-0.0010799632,-0.0057073305,-0.0427006446,0.0064321873,0.0290528387,-0.0225071646,0.0131499246,-0.0315715335,0.0023576145,0.0136624491,0.0092327697,0.0413241498,0.0037011618,0.0303414725,0.0142848007,0.0174258463,-0.0050044395,0.0111217899,-0.0159029141,0.0101846019,-0.0089472197,0.0198420342,0.0586035587,-0.0070728436,-0.0369017906,0.0147900041,-0.0220385697,-0.0419098921,-0.0357010178,-0.0337387808,0.0044150357,0.0294482149,-0.0133988652,0.0277642049,-0.0158004109,-0.0410605632,0.0503738746,-0.017674787,0.0250405017,-0.0178065784,0.0077757346,-0.0025882507,0.0291406997,-0.004447984,-0.0485580713,-0.0111217899,0.0236786492,-0.029931454,0.0232393425,0.0441357158,-0.0316008218,0.0137137016,0.0236054324,-0.0087056011,-0.0028500045,0.0211013816,0.009730651,0.0404748209,-0.0150975185,0.0290528387,-0.0302828997,-0.0357595943,-0.0010360325,-0.0353788622,-0.0133402906,0.0087714978,-0.0043308353,-0.0472108647,-0.0125056067,0.0164447278,-0.0546205081,0.017865153,0.0539469048,0.0367553569,0.0056011649,-0.0080759274,0.0151121626,0.0114585925,0.0337973535,-0.0171476174,-0.0081052147,-0.02076458,-0.0179237276,-0.0123225627,0.0196955986,0.0041075209,0.0554991215,0.0047225505,0.0505788848,-0.0126520433,0.028613532,-0.0132451076,-0.0006003863,-0.0089911511,-0.0506374575,0.0092474129,-0.0104042552,0.0133695779,0.0109973196,0.0337387808,-0.0243961848,-0.0035217782,-0.0070362343,0.0294042844,0.0125568593,0.0126373991,-0.0174112022,-0.0276177693,-0.0209403019,0.0018029893,-0.0184508953,0.0207938664,0.0124250678,-0.0107703442,-0.0164447278,-0.0253333729,0.0090131164,-0.0123811364,-0.0141896177,0.029931454,0.0206474308,0.0112389382,-0.074623622,-0.0437256955,0.0159322023,-0.0127911568,-0.0123957805,-0.0173379853,-0.0093572401,0.0246451255,0.001678519,-0.0167668853,-0.0094231358,-0.0219799951,-0.0182019547,0.0054583899,0.0049971174,0.0151121626,0.0136185186,-0.0095842155,0.013098672,0.0371653773,-0.0214967579,0.0162397176,-0.0356131569,0.0489388034,0.0113268001,0.0109460671,-0.0369310789,0.0225510951,0.0169718955,-0.0026138769,0.0006269278,-0.00907169,0.0166204497,0.0181873124,-0.0264902152,0.0108728493,-0.0241911747,0.0064797788,0.0047994293,0.016181143,-0.0070728436,-0.0168108158,0.0319522657,-0.0183044598,0.0270759575,0.0148046473,-0.0008333105,0.04583437,-0.0084786257,0.0077757346,0.0163422227,0.0138015626,0.0064724572,-0.0126447212,-0.0159761328,0.0156686176,-0.0345588215,0.0247622728,0.0033131072,-0.0126007907,-0.0002654147,-0.0021489437,0.0028701394,-0.0524532609,-0.0007033489,0.0056670611,-0.0077098384,0.0024656109,-0.0307807811,0.0153611032,-0.0205302816,0.0305757709,0.0261826999,-0.0087641757,-0.0093133096,-0.0007056369,-0.0079441359,-0.0153025286,0.0213942528,-0.0524532609,0.0151707362,-0.0185387582,-0.0068458682,-0.0181873124,-0.0196516681,-0.018421609,0.0051398925,0.018524114,0.0219946392,0.0113853738,0.0309857894,-0.010938745,-0.0009088165,0.012249345,0.0394790582,0.0030696581,-0.0091595519,0.0197834596,0.038073279,0.0031703324,0.0310736522,-0.0117221763,-0.0135965534,0.010470151,-0.0252308678,0.0022715835,-0.0031685021,0.001789261,0.0170451142,-0.0232979171,0.0098331561,-0.0257580355,0.0436085463,0.0101626366,0.032274425,0.0407384075,0.0027456691,-0.0197541732,0.024879422,-0.0016382491,0.0355838723,-0.0084786257,-0.0161957871,0.0004910171,-0.0085664876,-0.0073950021,0.0277202744,0.0061136899,0.0384832956,-0.0209256597,-0.0110632153,0.0523653999,0.0049897959,0.0310150776,0.0044736098,0.0007285175,0.0352031365,-0.0144824889,0.0275445525,0.0197248869,-0.016093282,0.050783895,0.0213503223,-0.0078123435,0.020852441,-0.0177333616,-0.0317472555,0.0438721292,-0.0262998492,0.0240740255,-0.002802413,-0.0071350788,0.0117441416,0.0228000358,0.0179090835,0.0118466467,-0.0343245231,-0.0334166214,-0.0206620749,-0.015434321,0.0233125612,0.0368725061,0.0235322136,-0.0120370127,0.0106678391,-0.0052533802,-0.0004997118,-0.015243954,-0.0197395291,0.0340609401,-0.0000122125,0.0033076159,0.0006333343,-0.0225950256,0.0181580242,0.0211599562,0.0131792109,0.0130108101,-0.0029616617,0.0198859647,0.012908305,-0.0408262685,0.0071094525,0.0381025635,-0.0027895998,-0.0187730547,-0.0411777124,0.0152146677,-0.0379854143,-0.0114805577,0.018524114,-0.0106531959,-0.0069593559,0.0557627082,-0.0009646451,0.0014076129,0.0043894094,0.041441299,-0.0372825228,-0.0200763326,-0.0167375989,0.0017215345,0.0063479869,0.0096720764,0.018699836,0.0195198767,-0.0235468578,-0.0144605236,-0.0314543843,0.0189780649,-0.0034503906,0.0111657204,-0.0400648005,-0.0077976999,-0.015522182,0.0095109977,0.0148192905,0.0313079469,-0.0529511422,-0.0063662911,-0.0277934931,-0.0247183423,-0.0025351676,-0.0183483902,-0.020105619,0.0320694149,0.0249819271,0.0053888331,-0.0132670728,-0.0101699578,-0.0082809376,0.0202813409,0.0335044824,0.0035016432,0.0093865274,0.0023045316,0.0072229397,-0.0144824889,0.0220825002,-0.0081198588,0.0222142935,-0.0186705496,0.0204277784,-0.0187437665,-0.0149437608,-0.0030843015,0.0212771036,-0.003271007,-0.0242643915,0.0042612785,-0.0011605028,0.0055462513,0.0265927203,0.0535075963,0.0250112135,-0.008976507,0.0281010065,0.0372532383,0.0037487533,0.0009001218,0.0019073248,0.0089984722,0.0030037619,-0.0039501027,-0.0113926958,-0.0255969577,-0.0131572457,0.0027182123,-0.0037524144,0.0258166101,-0.0054144594,0.0262412746,-0.0021105043,0.0143360533,0.0017910914,-0.0030806407,-0.0205595698,-0.0331530385,-0.0053522242,-0.0042466349,-0.0258898288,-0.0091961604,0.016093282,0.0197248869,-0.0123152407,-0.0411484279,0.0041038599,-0.0264316406,0.0099283392,-0.0095329629,0.0074682198,0.0124104237,0.0047994293,0.0141530083,-0.0116416365,0.0163422227,-0.0021068433,-0.005055692,0.0208085105,-0.0151853804,-0.0073693758,0.0087861409,0.0155661125,0.0065237097,-0.0155807566,-0.0115610966,-0.0197102427,-0.038805455,-0.0054474073,-0.025348017,-0.0154782515,0.0131426025,0.0316886827,0.0419098921,-0.0034888301,-0.0115903839,0.0085884528,-0.0082077198,0.0127032958,0.0178944394,0.0199884698,0.0169865396,-0.0059892195,0.0530097149,-0.0193295106,-0.0272223931,0.0202227682,0.0213063918,-0.0014973049,0.0257433932,0.0257433932,-0.0002894393,-0.0192123614,-0.0046676374,-0.0327430181,0.0054034768,-0.001440561,-0.0060148458,0.0137210237,0.002802413,0.0134940483,0.0151121626,0.0132743949,0.0454536341,-0.011685567,-0.0174551327,0.0455707833,0.0296678692,-0.0045248624,-0.0228732526,0.0705234259,-0.003902511,-0.0200031139,0.0107630221,0.024776917,0.0029488485,-0.0030184055,0.0046822811,-0.007856274,0.0228878967,-0.0014698481,-0.0213649664,0.0014625264,0.0301071759,0.0176601429,-0.0318351164,-0.0269002337,0.0223900154,-0.0163715091,-0.0261241253,0.0039574243,0.0144605236,0.0069520338,0.0085884528,-0.0311615132,0.001399376,0.011692889,-0.0297703743,-0.0122713102,0.0448971801,0.0253187288,-0.0442528613,-0.013655127,0.0616787076,-0.0008726651,-0.0116782458,-0.0310736522,0.0513110645,-0.026944166,-0.0199738275,0.009349918,0.0273395423,-0.0064248657,-0.0106458738,-0.0272370372,0.0132377855,0.0007381273,0.0118832551,-0.0362574756,-0.016840104,0.0040745731,0.0103969332,0.0221996494,-0.0120296916,0.00406359,0.0290821269,0.0337973535,0.0134208305,0.0335630588,0.0132890381,-0.0019421033,0.0026065551,-0.0265048575,0.012717939,-0.0011193177,-0.0315129571,0.0202666987,-0.0044662883,0.0065932665,-0.0302828997,-0.0353495739,0.0178797971,0.0004230618,0.0295360778,0.0253040865,0.0365210585,0.0175429955,0.0143946279,-0.000136025,-0.0011842985,-0.0221264306,0.0215260442,0.0020006774,-0.0133256475,-0.0235322136,-0.0199591834,0.0176894311,0.0217749849,0.0125861466,0.0198127478,-0.0208817273,0.0219653528,0.0187291242,0.0209549461,-0.00467862,-0.0068714945,-0.0101699578,-0.0171769056,0.0031868066,-0.042261336,0.000405215,0.0176601429,-0.0324794352,-0.0110632153,0.0021745698,-0.013940677,-0.0243815407,0.0068605118,-0.003972068,-0.0176162124,-0.0031721629,-0.0011129112,0.0267245118,0.0019457641,0.0188755598,0.0240447391,0.0035107955,-0.0189341344,-0.0304879081,0.0228293221,0.0096720764,0.0095915375,-0.0111144679,-0.002200196,-0.0137942415,0.0245865509,0.0170451142,-0.0296971556,-0.0169426091,-0.0188169852,0.0347638316,0.0111876857,0.0297557302,0.0063919174,0.0225218069,0.0049788132,-0.0018743767,-0.0151414499,-0.0301950369,0.0011129112,-0.0544740744,0.0076146554,0.0368139297,-0.0196663123,0.0537711829,-0.0195198767,0.0193148665,0.0049458649,0.0057476005,0.035906028,-0.0078050219,-0.0236054324,0.0216871239,-0.0122054145,-0.0031721629,-0.0302243251,0.0191098563,-0.0002553472,0.0001671426,-0.0083541553,0.0108069535,0.0107410569,-0.0130034881,-0.0467715561,0.0203984901,0.0098477993,0.0022880575,-0.0012959557,0.0093425969,0.0252601542,0.0282035116,-0.00603315,0.0204131342,-0.0216285493,0.0482944883,-0.0168693904,-0.0061795856,-0.0291406997,-0.0080978936,0.0038439366,-0.0231514815,-0.0142481914,0.0065713013,0.0199006088,0.0118612899,-0.0032966333,0.0039464417,-0.0048213946,-0.0199152529,0.0055316077,0.0046566548,-0.0115391314,-0.0220239256,0.0039354591,0.0316301063,0.0247476306,0.0162543599,0.0165033005,-0.0318644047,0.0245719068,-0.0088740019,0.0004292396,-0.0262266304,-0.0106458738,-0.0058318009,0.0296532251,0.001468933,-0.0142555134,0.0166204497,0.0428177938,0.0141603304,0.0134354737,0.0009692212,0.0173233412,0.0179676581,-0.0204424206,-0.0277202744,0.0062235165,0.0013261582,-0.0090790121,-0.0006392833,-0.0072339228,0.0019585772,-0.0251283627,-0.017953014,0.0096720764,0.0311029386,-0.0216871239,-0.0177040733,-0.0099063739,-0.0018103111,-0.0133915432,-0.0215699766,0.0415877327,0.0117734289,-0.014497132,-0.0221264306,-0.0485873595,0.0194027275,-0.0163715091,0.0114805577,-0.0174551327,-0.0058830534,0.0166790243,0.046390824,0.0299460962,0.0299753845,0.0124616763,0.0164154395,-0.0065310313,-0.0135160135,0.0230636206,-0.0086177401,-0.0053192759,-0.0018295308,-0.0116489585,-0.028803898,0.0023576145,-0.016927965,-0.0225218069,0.0009875257,0.0127325822,0.0191537868,-0.0340609401,-0.0082589723,0.0127472263,0.0237518679,0.0006292158,-0.0337094925,0.0233272035,-0.0097599383,0.0072851749,0.0215406884,-0.0084054079,-0.011129112,-0.0069923038,0.0171915498,-0.0070472173,0.0313958116,-0.0166936684,-0.00250405,-0.0099869138,-0.0408262685,-0.0220678579,0.0131938551,-0.0318058282,-0.0307514928,-0.0241179559,0.0178944394,0.030956503,0.0051545361,0.0255676694,0.0059709148,0.0344416723,0.0106458738,-0.0039208154,0.0310150776,0.0459515154,-0.0200763326,-0.0108655272,-0.0049458649,-0.0065786229,0.0143873058,-0.0323329978,0.0283645913,0.0295214336,0.0208231546,0.0103456806,0.0102065671,0.0086104181,0.0194613021,0.0037450925,0.0136990575,-0.0218189172,0.0131133152,-0.0010845392,0.0107703442,0.0431399532,-0.0103603248,0.0318936929,0.0212478172,0.0137649542,0.0109094586,0.0040306421,0.0209403019,-0.0189487766,0.015522182,-0.0140431821,0.008324868,0.006406561,0.0192562919,0.0224193037,0.0170744006,-0.0431399532,0.032450147,0.0093425969,0.0151707362,0.0208963715,0.0152585981,-0.0247329865,-0.0370189399,-0.0157564785,-0.0136258397,-0.0214967579,-0.009540285,0.0003226161,0.0098477993,-0.0111510772,-0.0301071759,-0.0298582353,0.0221410748,0.0360231772,0.0207499359,0.0191684309,-0.0174551327,0.015434321,0.0131718898,0.0261387695,-0.0343245231,0.0199152529,0.0012922949,0.0225510951,-0.0114878789,0.0189634208,-0.0318058282,0.0385125838,0.0040928773,-0.0209842324,-0.0304586217,-0.0079953885,-0.0064724572,0.0132084982,0.0012355511,0.005425442,-0.0090350816,-0.0312493742,-0.0156539734,0.0240740255,-0.0095036756,-0.0139699643,0.0300486013,-0.0110412501,0.0288771167,0.0326844454,0.0241033137,-0.01309135,-0.0291553438,0.0054474073,0.0048982734],"41":[-0.0203462187,-0.0015495054,0.0602599196,0.0154331094,0.0693215653,0.0338678882,0.0112137822,-0.004675949,0.0125234723,0.0176985208,0.0323387347,-0.0101093948,0.0198223423,-0.0351704992,0.0639978498,0.0629784167,0.0011371298,-0.009196151,-0.0461577401,0.0609961785,-0.011100512,-0.0148950741,-0.002189307,0.0090970388,0.0025184993,-0.0173445493,-0.0226116292,0.026137175,0.0340377949,-0.0614492595,0.0339245237,-0.0291671604,-0.0285158549,-0.0483948328,0.0091395155,0.0181940775,0.0475453027,0.0544264875,0.0163534321,-0.0224417225,0.001254825,0.0275530554,-0.0049272678,0.0082262717,0.0022406327,-0.0110084796,-0.0370394625,-0.0429012105,-0.0243248455,0.039871227,-0.0447701775,0.0148101216,-0.0334431231,0.0203179009,0.0405508503,-0.0380872153,-0.0079643335,0.0471488573,0.015631333,-0.0402676724,0.0192135125,-0.0738523826,0.0483381972,-0.0083678598,-0.0328201354,0.041202154,-0.0044352491,0.0710772574,-0.0258823149,0.048649691,0.0038299598,0.0085519245,0.0365580618,-0.0193551015,0.0273973085,-0.0269867033,-0.0184347779,0.026731845,0.015928667,0.0021627592,0.0212523825,0.0107677793,-0.014321642,0.0532371476,0.0398429073,-0.0263637155,-0.0495275371,-0.0255000275,-0.0020211709,0.0073555047,-0.0587307699,0.0532654636,0.0187887494,-0.0007159051,0.0151357744,-0.0062369583,0.018109126,-0.0055856528,-0.0393615067,0.04004113,0.0055290177,0.0061980216,0.0157587621,0.0028972477,0.0038441184,0.0203603767,0.0135145895,-0.006789152,-0.0212948583,0.0040812786,-0.0327918194,-0.0067077391,-0.0262079686,0.0013787147,-0.0025804441,-0.0025061104,-0.0466674566,0.0222859755,0.0178825837,0.0227532163,-0.0460727885,-0.0236452222,-0.013288049,0.0043750741,0.020742666,-0.0340944305,0.0086722746,-0.0398429073,-0.0213231761,-0.0128208082,0.056408722,-0.0140455458,0.0337829329,-0.0180383306,-0.0384836607,-0.0056564468,-0.0128703639,0.0285300147,-0.0282609966,-0.0012424361,-0.0172029622,0.0257407278,0.0433826111,0.0190860834,-0.0310361236,0.0345475115,-0.0284167435,0.0645075664,0.0031698048,0.018986972,0.0190294478,0.0244947523,0.0038405787,-0.0162967965,0.0796858147,0.0017981696,0.0434958823,0.0252026916,0.0055891927,-0.0416835546,-0.0041308347,0.0499239862,-0.0331882648,0.0200488828,-0.0233195703,0.0416269191,-0.0585042275,-0.0436091535,-0.0703409985,0.0029574228,-0.0115252761,-0.0720966905,-0.0250469446,-0.0596369319,0.0140597038,-0.0560689121,-0.0601466484,-0.0177693143,0.0415136479,0.0029397241,-0.0677357763,0.0098899333,-0.0082475105,0.0162684787,0.0195958018,0.0033998857,-0.0612227209,0.0250469446,0.0251035802,0.0329334065,-0.0243673213,0.058164414,0.0060245763,0.0291388426,0.0002251031,-0.0359067582,0.0292804316,0.0239850339,-0.0802521706,0.0439772829,0.0557574183,-0.0013680956,0.0236452222,-0.0388517901,-0.0200347248,0.0043078195,-0.0092811035,0.0061732437,-0.0325652771,-0.0091182776,0.0202895831,0.0224275645,0.0268875919,-0.0294786543,-0.038710203,0.0049803634,-0.0415985994,-0.0214930829,-0.0167357195,0.0166082904,0.0475169867,0.0496691279,-0.003394576,-0.0189161785,-0.0331316292,0.0760045201,0.0137694487,-0.0339528397,0.000295344,0.0078510633,-0.0017840108,-0.0086722746,0.0112279411,-0.0432976596,0.0139039569,0.0406074822,0.0079784924,-0.0389933772,0.0055573354,-0.0239991937,-0.01900113,0.0112845767,0.0244239569,0.0109872408,-0.0418251418,0.0205586012,-0.0474037156,-0.0800822601,0.0122119784,0.0735692084,-0.0049166488,-0.0226116292,0.0189586543,-0.0171180088,-0.0442887768,-0.0587307699,-0.0083607808,0.0553043336,-0.0092173889,-0.0074121403,0.0323104188,-0.0346607827,-0.0185197312,-0.0172171202,-0.0359633937,-0.0064918171,0.0256982502,-0.0254009161,0.0105483178,-0.035085544,0.042787943,0.0130615076,0.0012707537,-0.0154189505,-0.0053626513,-0.0226116292,0.018986972,0.0267884806,0.000175326,-0.0008835986,-0.0062263394,-0.0278503913,0.0098545356,0.0110155586,0.0054122075,-0.0092315478,0.0200630426,0.0316307954,0.0269725434,-0.0600900128,-0.0101023149,0.0036352759,0.0684153959,-0.0350005925,-0.0163675919,0.0198223423,-0.0343492888,0.0169339441,-0.0325652771,-0.0058298926,0.0049803634,-0.0267743208,0.007737793,-0.0027999058,0.0130119519,-0.0213656537,0.0024441655,-0.0336413458,0.001806134,0.0338678882,0.0067643742,-0.0208700951,0.040324308,-0.0285441726,-0.0399278626,0.0001379378,0.0674526021,-0.0480267033,0.0420516841,-0.0566352643,0.0330466777,-0.1001311466,0.0061307671,0.0115606729,0.0325652771,-0.0330466777,-0.0020884254,0.0022176246,0.0024353163,-0.0242823698,-0.0078156665,0.0280769318,0.0270574968,0.0037768641,-0.0114403237,-0.0676225051,-0.0030529946,-0.0205019657,0.0125022344,0.0206860304,-0.0069767567,-0.024551386,-0.0299317371,-0.0052493811,0.0440622345,0.0034759892,0.0179816969,0.0166082904,0.0244522747,-0.013443796,-0.0314892083,0.03242369,0.029223796,0.0035237754,0.0237301756,-0.0186046846,-0.008466972,0.0089979274,-0.0190577656,-0.0137411309,-0.0398145914,0.0059856395,0.0111713056,-0.009649233,0.0124739166,0.0143358009,-0.009486407,-0.0139676714,-0.0187462717,-0.0282468386,0.0115960706,0.0054405248,-0.0297618303,-0.0264203511,-0.0390500128,-0.040324308,0.0524159372,0.0516796783,0.0069590579,0.0566635802,0.0624686964,0.0340661108,-0.0136066219,-0.0055042398,0.0269583855,0.0118084522,0.0304697715,0.0545114428,-0.0581077822,0.0046299328,0.0283459499,-0.0121907406,-0.0182790309,0.0042759622,-0.0389933772,0.0159994625,0.0323387347,0.0728329495,0.0498673506,0.0060741319,0.0161552094,0.0241832584,-0.0334997587,-0.0545397587,-0.0094156126,0.0333298519,0.0010804946,0.036246568,-0.0126084257,-0.0129482374,0.0049308077,-0.0083112251,0.0372660048,-0.0195250064,0.0125234723,-0.0266185738,-0.0392199196,0.0603731908,0.0186046846,0.0442038216,-0.0298184659,-0.0361332968,0.0079006189,0.0295069721,-0.0600900128,-0.006874105,0.0147393271,-0.058447592,-0.0181374438,-0.0386818834,-0.017542772,-0.0052847778,0.016664926,0.0146402158,-0.019581642,0.0144986277,0.014753486,-0.0421366356,-0.0037343877,0.0181374438,-0.0133871604,0.0096704708,0.0280202962,0.0114827994,-0.0177976321,0.0201479942,-0.0159569848,-0.0225266758,0.0562954508,0.0118934056,0.0348590054,-0.0119925169,-0.036954511,0.0064068642,0.0060493541,-0.0157870799,0.0451666228,0.0068599465,0.05346369,0.0268875919,-0.0320555605,0.0305264071,-0.0458745621,0.0003694566,0.0288556665,-0.04530821,0.0425614007,-0.0114190849,0.0309794899,0.0159569848,0.0018813526,-0.0110297175,0.015192409,0.0083749397,-0.0252593271,0.0347174183,0.0269867033,-0.0294503365,0.039163284,-0.0515947267,0.0548512526,-0.0054511442,-0.0292521138,0.0501222089,-0.0135641452,0.0558706857,0.025273487,-0.026746003,-0.0062900539,0.0050617768,-0.0155463796,-0.0031627256,0.0551627465,-0.0180524904,0.0029715814,0.0243673213,-0.0400694497,-0.0208700951,0.0121057872,-0.0457896106,0.055247698,-0.0215497185,0.0059006866,0.0427596234,-0.0261938088,0.0045732977,-0.0086439569,-0.0170188975,0.0042193271,-0.0146968504,0.004817537,0.0140455458,0.0134508749,0.0494425856,0.0001308584,-0.0002816277,-0.0075254105,0.0186046846,-0.0266468916,-0.0162401609,-0.0035892599,-0.0412587896,-0.0442321412,-0.0068422477,0.0252593271,-0.0229514409,-0.0396163687,-0.0523309819,-0.031687431,-0.0327068642,0.0319706053,-0.0311493948,0.021478923,0.0130190309,-0.0174011849,0.0171888024,-0.0499523021,-0.0009866925,-0.0494992211,0.033754617,0.0137836076,0.0437224247,0.0022176246,0.037549179,0.0104916822,-0.0349722765,0.0303848181,0.0311777126,-0.0157729201,0.0256274566,0.0126862992,0.0012256225,0.0252026916,-0.0048139975,0.0214081295,0.0175144561,0.0029326447,0.0223992467,0.0107465414,-0.0025096501,-0.0155605385,-0.016509179,0.0060564335,-0.0262504444,-0.0188453831,-0.0000566906,0.0034866084,-0.0183781423,-0.0358218029,0.0172171202,-0.007090027,-0.0133446837,0.0025255787,0.0157870799,0.0038299598,0.0003809606,-0.0040317229,0.0235036351,0.0091890711,-0.0079501756,-0.0329334065,-0.0229514409,-0.0149941863,0.0152632035,-0.0466674566,0.044402048,-0.0186188426,0.0072634728,0.0102934595,-0.0594670251,-0.0040104846,0.0077165547,-0.0117234997,-0.0073484252,0.0132455723,0.0424764492,-0.0152065679,0.0135075105,-0.023234617,0.0153623149,0.0093235802,0.0046299328,-0.0060564335,-0.030667996,-0.0231921412,0.0303281844,-0.0137836076,0.0207992997,0.0079360167,-0.0060989098,-0.0028530015,0.0041697714,-0.0362748876,-0.0562954508,-0.0541149937,0.0106969858,-0.0144561511,0.0171604846,0.0029273352,-0.0154189505,-0.0209833644,0.0002400362,-0.0253018048,-0.0415985994,0.002260101,0.0427029878,-0.014753486,-0.0260380618,-0.0296768788,0.0223850887,-0.0206860304,0.0168489907,0.0193126258,0.0058546704,0.0207851417,0.0083749397,0.0253584385,0.0322254635,-0.0139181158,-0.014753486,0.0541716293,0.012856205,0.0116456263,0.0037591655,0.004601615,-0.0142933242,0.0036140378,0.0104350476,-0.0202895831,-0.0150791388,-0.0003210069,-0.0151782511,0.0372376852,0.0019627658,0.0209550466,-0.0031361778,-0.0142579274,-0.028048614,-0.0055360971,0.0028512315,-0.0034529811,0.0080209691,-0.0232062992,0.0148525983,-0.0214222893,0.0118226111,0.0062865145,0.0029698117,0.0540866777,0.031687431,-0.0040529612,0.0251743738,0.0207992997,-0.0024176177,0.0025645155,0.0117164198,0.0146685336,0.009196151,0.0092740245,0.0481966101,-0.0451666228,0.025273487,-0.0188170671,0.0003435725,0.0141234193,0.0092457067,-0.000807495,-0.0008698822,0.0171746444,0.0228806473,0.0100173624,0.0236027464,0.0259672683,0.0022459421,-0.0126013458,-0.0319422893,0.0096067563,0.04734708,-0.0090970388,-0.0140101481,0.0148950741,-0.015645491,-0.0589006729,-0.0539450869,-0.0257690456,0.0089412918,0.0320555605,0.0036494348,0.0412871055,-0.0400977656,-0.0184914134,0.0311777126,-0.0255849808,0.0062617362,-0.0278928671,0.0124809965,-0.0261088572,0.0213231761,-0.0110084796,-0.0343776047,-0.0356235802,0.0213231761,-0.0580511466,-0.0152773624,0.0365297459,-0.0210683178,0.004449408,0.0408340245,0.0203886945,-0.0254433919,0.0101660294,0.0072917901,-0.0089837685,-0.013288049,0.0171888024,-0.0038582773,-0.0128137283,-0.0191002432,-0.025131898,0.0082545895,-0.006718358,-0.0048352354,-0.0428728946,-0.0093094213,0.0272132438,-0.0199356135,0.0198506601,0.0299034193,-0.0018813526,-0.0028653904,-0.0329617225,0.0126650613,0.0210824776,0.0030140579,0.0091041187,-0.0368695557,-0.0238717627,-0.0187887494,-0.0093731359,0.0089766895,0.0238292869,0.0195958018,0.0065519921,0.0177126788,-0.009790821,0.0199639313,-0.0430711173,0.0052069044,-0.0320555605,-0.0523593016,-0.0328767709,-0.015192409,-0.016056098,-0.0404375792,0.0442038216,-0.027765438,-0.0039963257,0.0051113325,0.0439489633,0.0132030956,0.0163534321,-0.0049414267,-0.0190719254,-0.0374642275,-0.0112633379,-0.0238009691,0.0074404576,-0.0232629348,-0.0145552624,-0.0417968258,-0.0079360167,0.0053130956,-0.0088704983,0.0034175841,-0.008042207,0.0059360834,0.0283459499,-0.1150262207,-0.0240416694,0.037549179,-0.044402048,-0.0205444414,-0.0023131967,-0.0004871518,0.0265194625,0.0196241196,-0.0098191388,-0.0197940245,-0.0486213751,-0.0162684787,0.0002973351,-0.0176985208,0.0306113604,0.0075678872,0.0414570123,-0.0017158715,0.0204594899,-0.0288698263,0.0194542129,-0.0383420736,0.0628651455,0.0096917097,0.0252876449,-0.0140880216,0.0512832329,0.0110721942,-0.0082121128,0.0128986817,0.0156738088,0.0513681844,0.0215638764,0.0053024767,-0.0053095561,-0.0047396636,0.011978358,0.0018096736,0.0067749936,-0.0159711447,-0.0242823698,0.0409189798,-0.030696312,0.0612227209,-0.0109872408,-0.0198648181,0.0344625562,0.0070510902,-0.0086439569,0.0244522747,0.0265477803,0.0072847106,-0.011404926,0.0302998666,0.0103500942,-0.0306113604,-0.0136066219,0.0064104041,-0.0000517129,-0.0318573341,0.0268167965,0.0168489907,-0.0588440374,0.028048614,-0.0242115743,0.0030777727,0.0064634993,0.0285583325,-0.024112463,0.0102509828,0.0187604316,-0.0066581829,-0.0218895301,0.0207568239,0.0432976596,0.0280910917,-0.0129907141,-0.0110721942,-0.0249053575,-0.0044741859,0.0147393271,0.0027609691,-0.0021698386,0.0206860304,-0.0107323825,-0.0225549936,0.0086722746,-0.0037414671,0.0228806473,0.0340944305,-0.034632463,0.0191002432,0.0450533517,0.0164525434,-0.0023149664,0.0000992223,0.0156738088,0.011695182,0.0045095826,0.0163534321,-0.0005959977,0.0119641991,0.0034706797,-0.0186330024,-0.0102580618,-0.0042405655,0.0183356665,0.0235885866,-0.0107536204,-0.0123110907,-0.0072493139,0.0343209691,0.0368412398,0.0400694497,0.0109730819,0.0034759892,-0.052755747,-0.0214930829,-0.0232487749,0.0225125179,-0.0266752094,-0.0133305248,-0.0027538897,0.0106828269,0.0383137576,0.020601077,-0.0071112653,0.0061236881,-0.0039644684,0.0070581697,0.0289972555,0.0155039039,0.0280910917,0.0131039843,-0.0101872683,0.0199639313,-0.0096775508,0.0554742403,0.025570821,0.0050794752,0.0279636607,0.019723231,-0.0361332968,0.0087430691,-0.013146461,0.0101164738,-0.0142508484,-0.0159003511,0.0272274036,-0.0040954375,0.0055962722,0.0011858009,0.0347740501,-0.0029237955,0.0379456282,-0.0762877017,0.0055856528,-0.0087997038,-0.0064139436,0.032593593,0.0606563687,0.0144986277,-0.0173303913,0.0042653433,0.0030990108,-0.0295636076,-0.0009185532,0.009358977,0.0164383855,0.0156596508,0.0006353768,0.0149658686,-0.0242398921,0.0456763394,0.0156596508,0.0091111977,0.0179250613,0.0043679946,0.0110934321,-0.0037096099,-0.033471439,0.0274114683,0.0494709015,0.0047538225,-0.0400977656,-0.0038547376,0.0112845767,-0.0198223423,0.0212948583,-0.0080209691,0.0146260569,0.0315175243,0.0410605669,0.0164383855,-0.0023362045,-0.0037627053,0.0319422893,-0.0333864875,0.0251460578,-0.0243956391,0.0058794483,0.017542772,-0.0306113604,0.0244664345,0.0231638234,-0.0187887494,0.0169622619,-0.0274256263,0.0304980893,-0.0028158345,0.0243956391,-0.0001170315,-0.0219036881,-0.0273265149,0.0220735949,0.0379456282,0.0088634184,0.0054688426,0.0135712251,-0.0130544286,-0.0491877273,-0.0125163933,-0.006279435,-0.0326219127,0.0126296636,0.0053378735,0.0263070799,0.0048564738,0.0102722207,0.0021291319,0.0019556864,0.0096775508,0.0283742677,0.0346041471,0.0446852222,0.0029857403,-0.0021220525,0.0131818578,0.0068528671,0.0067502153,0.0041237553,-0.024537228,-0.0152490446,-0.0163817499,-0.0069838357,0.0231213458,0.0479134321,0.0196949132,0.0199072957,0.0222293418,0.0065626111,0.0326502286,0.0084528131,0.0259814281,0.0125942668,-0.008771386,0.0179958548,0.0292804316,-0.0212099068,0.0100032035,-0.0010486373,0.0025662854,0.0128137283,-0.0187321138,-0.0171180088,-0.031687431,0.0060528936,0.001565434,0.0194966886,0.0122827729,0.0021025841,0.0047644414,-0.0144065954,-0.0221019108,0.020176312,-0.0320272408,0.0122473761,-0.0113836881,-0.0442321412,-0.0098970123,-0.0044706459,-0.0109660029,-0.0146260569,0.0116597852,-0.0064741187,-0.0002741058,-0.0204736479,0.0364731103,-0.02367354,-0.0148667563,0.003575101,-0.0082545895,0.0080492869,-0.0327918194,0.0263353977,0.0011070424,0.0244805925,0.0301582776,-0.0093448181,0.0088775773,-0.0176418852,0.0045202021,0.0290538911,-0.0122332172,0.0276804846,-0.0051538092,-0.0135075105,-0.0218328945,0.0263495557,0.0178967435,0.0208842531,0.0117801344,0.0351421796,-0.005773257,0.0284592193,0.0234328397,-0.0037450069,0.0171604846,0.0379456282,0.0132809691,0.0041308347,0.0133800814,-0.0023716018,-0.0074192197,-0.0010247444,0.024551386,-0.0087359892,-0.0124455988,0.0153764738,0.0215921942,-0.0020034725,0.0239142403,0.0155463796,-0.0051750471,0.0068988833,0.0273689907,-0.0027963661,-0.0024229274,-0.0167781971,-0.0020601077,-0.0034954576,-0.0056422884,-0.002260101,-0.0164383855,-0.0152632035,0.0159003511,0.0348023698,-0.0063785464,0.0134013193,0.0667163432,0.0157729201,-0.0091324365,0.0258115213,-0.0089837685,0.0106545091,0.0081059225,0.0052564605,-0.0125234723,0.0453931652,-0.033726301,0.0239142403,-0.0323104188,0.0164525434,0.003396346,0.0143499598,-0.0141304983,0.0322254635,0.0155463796,-0.014180054,0.0344625562,-0.0043467563,-0.0121907406,0.0200064071,-0.0228948053,0.0021132033,0.0096209152,-0.0055148588,-0.0003778634,0.0244381167,0.0199356135,-0.037549179,0.0016521568,0.019723231,0.0041272948,0.0004333925,-0.0369261913,0.0264061913,0.0139181158,0.0034724495,-0.02307887,-0.0281477254,-0.0196807534,-0.0092173889,-0.026746003,0.015489745,0.0073979814,0.0096987886,-0.016509179,-0.024254052,-0.0435241982,-0.008332463,0.004962665,-0.0199214537,0.0054830015,0.0243956391,0.0629217774,0.005992719,0.0296768788,0.0259672683,0.0051396503,-0.006505976,0.0042299461,-0.0175710898,-0.0169764198,-0.0321971476,0.0228240117,-0.0033910363,0.0192418303,-0.046440918,0.0019680755,0.0300166905,-0.0032052021,0.0300166905,0.0110863531,0.0440055989,0.0037450069,0.0092669446,0.0018123285,-0.0283459499,-0.007666999,0.0197515488,-0.0086722746,-0.0013229643,-0.0268734321,-0.0194258951,0.0009185532,0.0066829612,-0.0159003511,-0.0024565544,-0.0146685336,-0.0117588965,-0.0198648181,-0.0144349132,-0.0070227729,-0.0172312781,-0.0010061609,-0.0133517636,0.0258115213,-0.0224275645,0.0062617362,0.0268875919,0.0040989774,0.0543981716,0.0177409966,-0.0155180618,-0.0233903639,0.0124951554,-0.0228098519,-0.0259672683,-0.0232629348,0.0081413193,0.0032264402,0.0153764738,0.0137765277,0.0426463522,0.0101801883,-0.0262646042,-0.0123040108,-0.0247637685,0.0408623442,0.0355669446,-0.0159994625,0.0160277802,0.0186471604,0.0326502286,0.0285583325,-0.0081059225,-0.0240416694,-0.0100386003,0.0102863796,-0.0152065679,0.0359633937,-0.0111359088,0.0038334995,0.0209408887,0.0201338362,-0.0028689301,0.0282185208,0.0027273418,-0.0319706053,0.0144278333,-0.0067431359,-0.0206152368,0.0269159097,0.0144278333,0.0278645493,0.0102793006,-0.0103642531,-0.0213090181,0.0208134595,-0.0192559902,-0.0051821265,-0.000825636,-0.0114757204,-0.0088563394,0.0067749936,-0.0120774703,0.002702564,-0.0117376586,0.0134579549,0.0228381697,0.0027432705,-0.0179392193,0.0314042531,-0.023517793,-0.0100669181,-0.0259247925,0.0110792732,0.02104,0.0023857604,-0.0028600809,0.0576263815,-0.0375208631,0.0121765817,0.008757228,-0.0115960706,-0.007019233,-0.0115677528,-0.0161552094,-0.0037025304,-0.0240841452,-0.0026494684,0.037549179,-0.0003101666,-0.0451666228,0.004460027,-0.0042511844,0.0031220189,-0.0143004041,-0.0069873757,-0.0205161236,-0.0071855993,0.0145694213,0.0275955331,0.0260805395,0.0122119784,0.025570821,-0.0579378754,0.0207143482,-0.0157162864,-0.0162401609,-0.0352554508,-0.0250044689,0.0218895301,0.0540017225,-0.0264345091,0.0146543747,-0.000241806,-0.0099111712,0.0331033133,0.0147818038,-0.0255425032,-0.0015636642,-0.0115960706,-0.0232912526,-0.0224842001,0.0396730006,-0.007224536,-0.0368695557,-0.0081483983,-0.0067289774,-0.0026724765,-0.0316591114,-0.0078510633,-0.0152632035,0.0176560432,0.0163251143,0.004314899,-0.033726301,-0.0220169593,-0.0001919183,0.0005061777,0.0167074036,0.0361899324,-0.0087855449,0.0004712231,-0.0057201618,0.0224700402,-0.0048139975,-0.0105766356,-0.0096067563,-0.0058511305,-0.0043715346,0.0547379814,0.0159569848,0.0130473487,-0.0045839166,0.0257973634,0.0087855449,-0.010222665,0.012417282,0.0117164198,-0.0235319529,-0.0022654105,-0.010668668,-0.0141942129,-0.0137128131,-0.0024777928,-0.0102580618,-0.0129836341,0.0173728671,0.0173870251,-0.0285441726,0.0085660834,0.0025857538,0.0066935802,-0.0313476175,-0.0022158546,0.035340406,-0.0259106327,0.0114403237,0.025131898,0.003097241,-0.0238292869,-0.0102085061,0.0250186268,-0.0072847106,0.0219036881,-0.0179816969,-0.0075395694,-0.0152915213,-0.0161410496,-0.0143074831,0.0202329475,-0.0108881295,-0.0190294478,-0.013295128,0.0178542677,0.021620512,0.0101023149,0.0302998666,-0.0109093674,0.0056458279,-0.0158578735,-0.0180808082,-0.0200772006,-0.0090050073,0.0313476175,-0.0124031231,0.0149375508,0.0335563943,0.0007725404,-0.0211391114,0.0026760162,-0.0069555184,0.0078723021,0.0127570927,-0.0073909019,0.0185197312,0.0172312781,-0.0107607003,0.0017866655,-0.0265336204,-0.0157446042,-0.0117942933,0.0047821403,0.0251460578,0.0090970388,0.0216488298,0.0115819117,0.0163251143,0.0164383855,0.0011858009,0.0405791663,0.0124809965,0.0213656537,0.0178684257,-0.0071502021,-0.0031237889,0.026292922,0.0085094487,-0.016650768,-0.0045520593,0.0055148588,-0.0073696636,0.0446285866,0.0339528397,0.0064033247,-0.0268451143,-0.0020370996,0.0182790309,-0.030243231,0.0091890711,-0.0328201354,0.0095218038,0.0048564738,-0.0073696636,-0.0032264402,-0.0128703639,-0.0035857202,0.0525292084,0.0085519245,-0.051141642,-0.0191568788,0.0160277802,0.0333864875,0.0138331633,-0.0186188426,-0.000034125,0.0129340785,0.036671333,0.0163109563,0.0095855184,-0.0179533791,0.008912975,0.0263353977,0.0033467901,-0.0254150741,0.004757362,0.008183796,0.0014512787,-0.0019574563,-0.0243673213,0.0097058685,-0.04004113,0.0186754782,-0.008920054,-0.0200064071,0.0128278872,0.0267035272,0.0353687219,-0.0108810496,-0.0116597852,0.0122544551,-0.0238576047,0.003037066,0.0165658146,0.0204453301],"42":[-0.0372250378,-0.0052211541,0.0579229072,0.0013257141,0.0310312398,-0.0038224917,0.0217249803,0.023623582,-0.007244254,0.0323384739,0.0252264999,-0.0278565306,-0.0157257114,-0.0352953114,0.0520092323,0.053596586,-0.0147219431,-0.0012780544,-0.0494881384,0.0408666171,0.0261602383,-0.0290081408,-0.0001332523,0.0108158039,0.0087615792,-0.0388746448,-0.0181300882,0.0244172607,-0.01544559,-0.0501728766,0.0311401766,-0.0404619984,-0.0325563475,-0.0108858338,0.0037155009,-0.0154533712,0.0536277108,0.0271873511,0.0416758582,-0.0018645589,-0.0203866232,-0.0262691751,0.0073882053,0.013305773,-0.0695946366,-0.031155739,-0.0495192632,-0.0220984761,-0.0028128871,0.0737030879,-0.0771267936,0.0239348281,-0.0493325144,0.035357561,0.0249152537,-0.0197330061,-0.0317626707,0.0585142747,0.0118195722,0.0366336703,0.0020269905,-0.0238881409,0.0443525761,-0.0263469853,-0.0314202979,0.0338013321,-0.0277320314,0.0190171394,-0.0276075322,0.0334589593,0.0173052847,0.0161847994,0.0466557965,-0.0253976844,0.0006375683,-0.0323073491,-0.0061237677,0.0342682004,0.0393103883,0.022783218,0.0073103937,-0.0229388401,-0.0430764668,0.0434188358,0.0348906927,-0.0781227797,-0.0619379841,-0.018083401,-0.0220984761,-0.0348906927,-0.0443837009,0.0196863189,0.0307978056,0.0273274109,0.0286035202,-0.0187681429,-0.0115627944,0.0239037033,-0.0124342833,0.020526683,0.0029101514,-0.0193906352,-0.0014686928,-0.0156401191,0.0318093561,0.037349537,0.0279499032,0.0067229168,-0.0297551323,0.0362601765,-0.0861529335,-0.0198263787,-0.0140527636,-0.0231722761,0.030968992,-0.010434527,0.0047114887,0.0242460743,0.0260046162,-0.0202776864,-0.0223941598,-0.0165894199,0.0295528211,-0.0203243736,0.0098665031,-0.0373184122,-0.0138426721,-0.0395282619,-0.0107302107,0.0009711852,0.0177721549,0.0220206641,0.0751970708,0.0025269296,-0.0278565306,-0.027638657,-0.0290703904,0.0465312973,-0.0285879578,0.007722795,0.0117884474,-0.0206200574,0.0108702714,0.0209468659,-0.0415202342,0.0155700883,-0.0266115461,0.0462823026,-0.0539389551,0.0168695413,0.0122786602,0.0166361071,-0.0065867463,-0.0199664403,0.0345794484,0.033147715,-0.0191260763,0.0392170139,-0.0264559221,-0.0137726422,-0.0357933082,0.0540012047,-0.0338635817,0.0220517889,-0.0206978694,0.0299263168,-0.0030151971,-0.0049021267,-0.123440221,-0.0043652272,0.0109403022,-0.0615644865,-0.0013626745,-0.0464068018,-0.0073337373,-0.0245573204,-0.0013461396,-0.0238258932,0.0217249803,-0.0166049823,-0.0499238819,-0.0101933116,-0.0070224912,-0.0134536149,-0.0176632181,-0.0150098456,-0.0299574416,0.0229699649,-0.0088938586,0.024697382,0.0284478981,0.0900123864,0.0273429733,0.0434810854,-0.0067190262,-0.0134691773,0.0185502693,0.0074893604,-0.0234057102,0.0362601765,0.0421738513,0.0360734276,0.0461889282,0.019188324,0.0007508813,0.0150720943,0.0195462573,-0.0310468022,-0.0141539183,-0.013648143,0.0437612087,-0.0360734276,0.0147997541,-0.0289303288,-0.0321517251,-0.0308756176,-0.0401507542,-0.0193750728,0.0022682063,0.0167917293,0.0098976269,0.0146441311,0.0239348281,-0.0015970818,-0.0139749516,0.0491457656,0.0519469827,0.0034178717,0.045908805,-0.0136014568,0.0134380525,0.0209313035,0.0049293609,-0.0427963436,0.01490869,-0.0163715463,0.0082635852,-0.0328053422,-0.0135858944,-0.0482431538,-0.0046648015,0.0515112355,0.0283233989,-0.0146908183,-0.0120141013,-0.0027506377,-0.0367270447,-0.0712131187,-0.0129167149,0.0638677105,0.0110258944,-0.0011613371,-0.0173675343,-0.0170251634,-0.014449602,-0.032836467,-0.0460333042,0.0520403534,-0.0223319102,-0.0125587815,0.0213514846,-0.0466557965,-0.0226120315,-0.0390613899,-0.0146052251,0.0195462573,0.0260046162,-0.0140761072,-0.0053728865,-0.0535654612,0.0418003574,0.0176943429,0.0008962916,-0.0399640054,-0.0301130638,-0.0562110543,0.0234057102,0.0485855229,-0.0050382968,-0.0178655293,-0.0114460774,-0.0124187209,0.0251331255,0.0346728191,0.015904678,0.0214137342,-0.0158113036,0.0024996956,0.0302531254,-0.047247164,0.0139827328,0.0078044971,0.0546859466,-0.063276343,0.0065789656,0.007512704,0.00674626,0.0260201767,-0.0096875364,-0.03089118,0.0015289966,-0.0196396317,0.0030463217,-0.040679872,-0.0099131893,-0.0108080227,0.0127922166,-0.0118195722,0.0089327646,0.018005589,-0.0023187837,0.0018703948,0.0026767168,-0.0281210896,-0.0211491752,-0.0262847375,0.0462511778,-0.0503907502,0.0302998126,-0.0507019982,-0.0112282047,-0.083413966,0.0185813941,0.0615022369,0.0109169586,-0.0288836416,0.02981738,-0.0119285081,0.0284478981,-0.0375985354,0.0216471702,-0.0409599915,0.0049799383,-0.0143173225,-0.0239348281,-0.0156556815,-0.0124965329,0.0155078387,0.0107535543,0.020604495,-0.02569337,-0.0112593295,-0.045037318,-0.016169237,0.0497993827,-0.009633068,-0.0077539193,0.0197330061,0.0250241905,0.0049099079,-0.05826528,0.0031844371,0.0645524487,-0.0128155602,0.0091973236,-0.0278409682,0.0001897872,0.0170251634,-0.0561799295,0.0112437671,-0.0539078303,0.0173052847,0.0201687496,0.0074815792,0.0081468681,0.0340814516,-0.0129867457,-0.0385011472,-0.0113604842,-0.0434499606,0.0524761006,0.0002567781,-0.0326808468,-0.0271562263,-0.0294438861,-0.0155856507,0.0301286262,0.0414891094,0.0204177462,0.0684119016,0.0559620559,-0.0177410301,-0.0000322188,-0.0018684495,0.0002728267,0.0655484349,0.0469981693,0.0132201798,-0.0104034021,0.0176632181,0.0292104501,-0.0543747023,-0.0230633393,0.0012294223,-0.0386256464,-0.0079251053,0.044570446,0.0404308736,0.0337079577,-0.0098509407,0.0103800585,-0.0174920335,-0.0294905715,-0.0368515439,0.0343926996,0.0381587781,0.0067229168,0.0432632156,-0.0242616367,-0.0144262584,0.0188615154,-0.0516668595,0.0347039439,-0.0474961624,0.0245106332,0.0004454711,0.0133680217,0.0043418836,0.0451306924,0.0377230309,-0.0294127613,-0.0437300839,0.0171963498,-0.0180989634,-0.053596586,0.0189860146,0.0382210277,-0.0136559242,-0.0020328264,-0.068972148,0.0234990846,-0.0082713664,-0.0102010928,0.0307978056,-0.0154144652,-0.0079756826,-0.0137026114,0.0143017601,-0.0103567159,0.0560554303,-0.0101777492,0.0238258932,-0.0139438268,0.0016068082,-0.0496126339,0.0324007235,0.0001024924,-0.0387812704,0.0041940417,0.0136948302,0.0172119122,-0.0256622452,-0.0223319102,0.0203088112,-0.0156634618,-0.026798293,0.0529429689,-0.0092051048,0.0510132425,0.0357933082,-0.0211958624,0.0306733083,-0.0481186546,0.0186436437,0.0302998126,-0.0291948877,0.0055362908,0.0057697254,0.0147686293,-0.0095474757,0.0216160454,-0.029973004,-0.0119907577,-0.0144807268,-0.002744802,0.0262536127,0.0493325144,-0.0196396317,-0.009671974,-0.0377541557,0.0345794484,-0.0185658317,-0.0164649207,0.0304709971,0.005524619,0.0572692901,-0.0196396317,-0.0134613961,-0.0022370818,0.0159669276,0.0053923395,0.0091895424,0.0833517164,-0.0208534915,0.0114849824,-0.0076994514,-0.0902613848,-0.0106134936,0.0143562285,-0.0326808468,0.0445393249,-0.0182234626,-0.0086837672,0.0540012047,-0.0505152494,0.0095708193,-0.00674626,-0.0007737385,0.0208068043,-0.003939209,-0.0299263168,-0.0132201798,0.0127144046,0.0322450995,-0.0047893003,-0.0003795744,-0.0008972643,0.0150098456,-0.0168072917,-0.0204333086,-0.0003275379,-0.0261602383,-0.0356065594,-0.0015669299,0.0335834585,-0.0133213345,-0.0314358622,-0.0562733039,-0.0441347025,-0.0140761072,0.0326185971,-0.0142395115,0.0098353783,-0.0107691167,-0.0193750728,0.0281055272,-0.0526628457,-0.0072364728,-0.0690343976,-0.0181923378,0.0023246196,0.0125276577,0.0163715463,0.0089172022,-0.0141772619,-0.0269383546,0.0211180504,0.0196240693,-0.0070886309,0.0474961624,0.0472160392,-0.00728316,-0.0179900266,0.00674626,-0.0312024262,-0.0085203629,-0.0023304555,-0.0114927636,0.0265181717,-0.0053962301,-0.0296150707,-0.0067034638,0.0142784165,-0.0148931276,-0.0162937362,0.0181456506,0.0239348281,-0.0150954379,-0.0300041288,0.020604495,-0.0036532516,-0.0295683835,-0.0037271725,-0.0069096643,0.0206200574,0.0039139204,-0.0320894793,-0.0016719754,-0.0056724609,-0.0267516058,-0.0196863189,-0.0129478397,-0.0269539151,0.0186903309,-0.0484298989,0.0517291091,-0.0304865595,0.0174609087,-0.0157801788,-0.0045091785,0.0135158636,0.0017818842,-0.0158424284,0.0086215185,-0.0059175673,0.0147141619,-0.0009021275,-0.0010601822,-0.0178344045,0.022285223,0.0159513652,-0.0312802382,-0.0261913631,0.0132902106,-0.0357933082,-0.0098042535,0.0031572031,0.0147608481,0.0167139173,-0.0138426721,0.0039781146,0.0118273534,-0.0025736166,-0.0304243099,-0.0327742174,0.0142550739,-0.0540945791,0.0265492965,0.0285879578,-0.0075632813,-0.0394037627,0.0029471118,-0.0111737363,-0.0263625477,0.0149164712,0.0491457656,0.003487902,-0.0098275971,-0.0104189645,0.0458776802,-0.0135158636,0.0563977994,0.0067579318,-0.0010708813,0.0007800607,-0.014986502,0.0241371393,0.0116094807,-0.0224564094,-0.0198886283,0.0299107544,-0.0124342833,-0.0137103926,-0.0161069874,-0.0114071714,0.0041356832,-0.0102944663,0.0164337959,-0.0206200574,-0.0186280813,-0.0008889968,-0.0044469293,0.0321206003,-0.0060809716,0.0135936756,-0.0228299052,-0.0203554984,-0.0130801192,0.0007722795,-0.0018898477,-0.0291793253,0.0176943429,-0.0009191488,0.0054079019,-0.0304865595,0.01112705,-0.0139827328,0.0421738513,0.0251798127,0.0180211514,-0.0357933082,0.0562110543,0.0149320336,-0.0013782368,0.020339936,0.0263781101,-0.0010310028,-0.0222385377,0.0150176268,0.0615022369,-0.0029724007,0.001571793,-0.0392481387,0.0171496626,0.013609238,0.0147375045,0.0257400554,0.0184724592,0.0195773821,-0.0100065637,0.0223007854,0.0012051061,0.0175854079,-0.0068551963,0.0078239497,-0.0105745876,0.0296461955,0.0488345213,-0.0227209684,-0.0123564722,0.0015893006,0.011586138,-0.035855554,-0.04923914,-0.0279965904,0.0223941598,0.0454419367,0.0101388432,0.0195618197,-0.0307199936,-0.0324318483,0.0284790229,-0.037660785,0.0291015152,-0.0269227922,0.0063688741,-0.0089327646,0.002178723,-0.011352703,-0.0600082576,-0.0191572011,0.0221296009,-0.047900781,0.0042718532,0.0361045524,-0.004034528,0.0114460774,0.0384388976,0.0000332523,-0.0059097861,0.0015251061,0.0219739769,0.022285223,-0.0100843748,0.0153055293,-0.0185347088,-0.0486788973,-0.0037758048,-0.0174609087,-0.0098898467,-0.0018830391,-0.0293038245,-0.0635253415,-0.0150954379,0.0310623646,-0.0220362265,0.033147715,0.0495192632,0.023359023,0.0169940386,-0.0117184175,0.0163559858,0.0059058955,0.0124265021,0.0021067474,-0.0112282047,-0.0353264362,-0.03433045,-0.0223474726,0.0146130063,-0.0240437649,0.0276697818,-0.0176787805,0.0648636967,0.0058319746,0.0518224835,-0.0391547643,0.0156401191,-0.0248841289,-0.0247907545,0.0082480228,-0.013189055,-0.0031319144,-0.011313797,0.0281210896,-0.0165894199,0.0010844982,0.0134380525,0.0573937893,-0.0122397542,0.0134147089,-0.0344549492,-0.0182545856,-0.0060848622,0.0003742249,-0.0192194488,0.008216898,0.0030093612,-0.0008481457,-0.0447883196,-0.0256466828,-0.0052561695,-0.004147355,-0.0004065653,0.0143795721,-0.0016972641,0.0160291772,-0.1302253902,-0.0349840671,0.028977016,-0.0227520932,-0.0162626114,0.0075555001,-0.011430515,0.0336768329,0.0044741635,-0.0086604236,0.0047309413,-0.0403374992,-0.0226898436,-0.0090261381,0.0016145894,0.0197018813,0.0423606001,-0.0162781738,-0.0081157433,0.0192194488,-0.0224875342,0.0321517251,-0.0647391975,0.0787452757,-0.0107146483,0.0145040704,-0.0048943455,0.0526005998,0.013305773,0.0089794509,0.013033432,0.0245261956,0.0239037033,0.0066061993,-0.0067696036,0.0201531872,-0.0362601765,0.0183946472,0.0067073544,0.0327430926,-0.0322762243,-0.0207289923,0.0376296602,0.0009172035,0.0333967097,-0.0177410301,-0.0272496007,0.0397772565,-0.0137103926,0.0004481458,0.0315136723,0.0018091182,0.005754163,-0.0100065637,-0.0157179311,0.0200442523,-0.0272340383,0.0040072943,-0.0007936776,-0.0280899648,0.0036571422,0.0291948877,0.0049137985,-0.0478074066,-0.0002514285,0.0080301501,-0.0144262584,-0.0048943455,0.0015494222,0.0079756826,-0.0046103336,0.0069991476,0.0215693582,-0.0081702117,0.0058514276,0.0119362893,0.0011049238,-0.0093996339,0.0217872299,-0.0377230309,0.0173364095,-0.0089249834,0.0014988447,0.0259268042,-0.0106134936,-0.0229232777,-0.0113760466,-0.007473798,0.0252264999,0.003668814,0.0350463167,0.0148775661,0.0269539151,0.0302531254,0.022285223,-0.0022740422,0.0239659529,0.0134069277,0.0300975014,0.0196551941,0.0195773821,0.0037777501,0.0126599371,0.0054973848,-0.0172741618,-0.018083401,-0.0052600596,0.0162159242,0.0220517889,-0.0177410301,-0.0194061976,-0.0260046162,0.0202154368,0.0167606045,0.0250397529,0.0231100265,-0.0071080839,-0.0069330079,-0.0044547105,-0.0139671704,0.0343926996,-0.0033575678,-0.011313797,0.0033828565,-0.0209624283,-0.0211803,0.0169473533,-0.0056335554,0.0392481387,0.0002168997,-0.0047426131,0.0152977481,0.0137804234,0.0318404809,0.0008739208,0.0031202426,0.0148464413,0.0134458337,0.0186747685,0.0095786005,-0.0008257749,0.0267360434,-0.0002648024,-0.006442795,0.0188615154,-0.0047192695,-0.0272496007,0.0018275984,-0.0453796871,0.0381276533,0.018083401,0.0104267458,0.0002464437,0.031077927,0.0007358053,0.0270317271,-0.0573004149,-0.03089118,-0.0003613373,0.0151110003,0.0197330061,0.0684119016,0.0415824838,-0.016091425,0.0245728828,-0.0136559242,-0.0405864976,-0.00917398,0.0110803628,0.0132046174,-0.0007465044,0.0316692963,0.0107691167,-0.0391858891,0.0275141597,-0.0093918527,0.0333967097,-0.0029762913,-0.0049176891,0.0242771991,-0.0003540425,-0.0337079577,0.0310156774,0.027903216,0.0111037064,-0.018270148,-0.0167450421,0.036011178,-0.0315759219,0.0071508801,0.0125276577,0.0164337959,-0.0006862005,0.0599771328,-0.0118584782,0.0136637054,0.0096797552,0.030968992,-0.0266271085,0.0103878397,-0.0089561082,0.0165894199,0.0129322773,-0.0074971416,0.0114849824,0.0198886283,-0.0102633415,-0.0118740406,-0.0447571948,0.0145196328,-0.005637446,0.0026883886,-0.0306888707,-0.0117106363,-0.0261602383,-0.0263002999,0.0285257082,0.0092751347,-0.0255688708,0.0019666867,-0.0138815781,-0.0313891731,0.0013354404,-0.0273585357,-0.0144106969,0.0255688708,0.038376648,0.01315015,0.0229232777,0.0003827355,0.0062988438,0.021258112,0.0269227922,0.0312491134,0.0197796933,-0.0226431563,0.0197641309,-0.0056919139,0.0061354395,0.0111348312,0.0272029135,-0.0261135511,-0.0017789663,-0.0272029135,-0.0357621834,0.0316381715,0.0190949515,0.0176165309,0.0015883279,0.0174764711,0.0056413366,0.0036124005,0.0236391444,0.0163715463,0.0103567159,-0.0181300882,0.0261446759,0.0262536127,0.0077889347,-0.0061510019,-0.0015251061,0.0303620622,0.0185969565,-0.0027778719,-0.0256622452,-0.0085903937,-0.0236080196,0.0156012131,-0.0012196958,0.0227987804,0.0122630978,0.0288213938,0.0070769591,0.0078161685,-0.0068513057,0.0171029754,-0.0146052251,-0.0215071086,-0.0129556209,-0.0223007854,-0.0241993871,-0.0201065,-0.0186592061,-0.003534589,0.0121308183,-0.0240593273,-0.0057230387,-0.0389057696,0.0226275939,-0.0383144021,0.0093607279,0.006252157,0.0092673544,-0.0181923378,-0.0208068043,0.006804619,0.0091428552,-0.0003863829,0.0076644365,0.0085670501,0.0048515494,0.0037738595,0.0084192082,0.0138737969,0.0064155613,0.0153055293,-0.0097964723,-0.0395282619,-0.0033984189,-0.0093762903,-0.0044741635,0.0064194519,0.0278409682,0.0365091711,-0.0109947696,0.0063805459,0.0084425518,-0.0159980524,0.0350463167,0.0355754346,0.0234212726,0.0022545892,-0.0017274161,0.0213514846,0.0093840715,-0.00133155,0.0259890538,-0.0057580536,-0.0136325806,0.0094229775,0.013725955,0.0027195131,0.0006497263,0.006442795,-0.019343948,0.0193750728,0.0371005386,0.0076994514,-0.0020503339,-0.0211647376,0.0068979925,0.0256778076,-0.0087071108,0.0154767148,-0.0097964723,-0.017165225,0.0357933082,0.0382210277,-0.0077850441,-0.0157257114,0.0807372481,0.0034762304,-0.0063494211,0.0073492997,0.0065906369,0.0137337362,0.0085359253,0.006252157,-0.0345171988,0.014986502,-0.0094618825,-0.0232656486,0.0043224311,0.018083401,0.0220673513,-0.0125198765,-0.0054001207,0.0252576247,0.0223319102,0.0013257141,0.0000216261,0.0245261956,-0.0018791487,0.003487902,-0.005275622,-0.0040967772,0.0064038895,-0.0124187209,0.0131268064,0.0480875298,0.0239659529,-0.0150565319,-0.0112437671,0.0299885664,0.0174764711,-0.0207756795,-0.0316070467,0.0520714782,0.0042096041,-0.0180211514,-0.0039956225,-0.020682307,-0.0278565306,-0.0094385389,-0.0471537896,0.0168384165,0.0250241905,0.0097886911,-0.0364158005,-0.0076761078,-0.0065517314,0.0088238278,0.0333967097,-0.0138971405,-0.0183946472,0.0238881409,0.035357561,0.0282455869,0.025880117,0.0178499669,0.0201998744,0.009671974,-0.0205111206,0.0131579312,-0.0074271113,-0.0424539745,0.0131968362,-0.0103333723,-0.011850697,-0.0095863808,-0.010473433,0.0338013321,-0.00337313,0.0306577459,0.0171029754,0.0290237032,0.0039294828,-0.0002886322,-0.0088549526,-0.0069991476,-0.0048087528,0.0130412132,0.0031591484,-0.0044741635,-0.0176943429,-0.0177721549,0.0064933728,0.0188615154,0.0017945286,0.0072481446,-0.0105356816,0.0057891784,0.0238725785,-0.0110570192,-0.0156868063,-0.0323073491,-0.0389057696,-0.0234835222,0.0055401814,-0.040213,0.0127610918,0.0193750728,-0.005505166,0.0032855922,-0.0137570798,0.0156089943,-0.0132513046,-0.0045480845,-0.0068007284,0.0020853491,0.0053495429,0.020184312,0.0367270447,-0.004127902,0.0084658954,0.0102633415,0.0002740425,-0.0192972608,-0.0325252227,0.0103878397,0.0353264362,0.0108702714,-0.0162781738,-0.0163715463,-0.0016875376,0.0196396317,0.0295995083,-0.0040928866,-0.0233123358,-0.0147297233,0.0409599915,0.0099520953,0.0460955538,-0.0011788447,0.0219428539,0.0236080196,-0.0119596329,-0.0041706981,-0.0003141641,0.0105356816,-0.0278409682,0.0106446184,0.0133291157,-0.0586387739,0.0454730615,-0.0057113669,0.0141305747,-0.0095319133,0.0085748313,0.0087304544,-0.0032175069,-0.0282611493,0.0233745854,-0.0134847388,-0.0153989028,-0.0291482005,0.0131034628,-0.0100688124,0.0058436464,-0.0053884489,0.0136714866,-0.0142083867,-0.0197952539,-0.0394348875,0.0355443098,-0.0144807268,-0.0048982361,0.0101232808,0.0195773821,0.0225964691,0.0372561626,-0.0214759838,0.0178499669,-0.0017176897,0.0679139122,-0.0010261396,0.0104500894,-0.0047114887,-0.025880117,-0.0149398148,-0.0109247398,-0.0278876536,0.0121619431,0.0179744642,-0.0166049823,-0.0255066212,-0.0152821857,-0.0048593306,0.0046609109,-0.001834407,0.0188148301,-0.0166205447,-0.0212425496,0.026798293,0.0357310586,0.0309534296,0.0239348281,0.0202776864,-0.0514801107,0.0100065637,-0.0031961089,-0.0033264433,-0.0278254058,-0.0077111232,-0.0192505736,0.0367270447,-0.030050816,-0.0130801192,0.0166049823,0.0203554984,-0.0053106374,0.0054623699,-0.0111426115,0.0202932488,0.0256311204,-0.0341437012,-0.0177721549,0.0285879578,0.0082091168,-0.0250086281,-0.0157723986,0.0093529467,0.0164182335,-0.0334278345,-0.0127922166,-0.002840121,0.0224719718,-0.0119751953,-0.0306733083,-0.0238725785,-0.0080223698,-0.0250708777,-0.0263158623,0.041706983,0.0421116017,-0.0137103926,0.0056024306,-0.0147530669,0.0301130638,0.0141539183,-0.005065531,-0.0315603577,0.0075749531,0.0114927636,0.0601327568,0.0075788437,0.0179900266,0.0134069277,-0.0025833431,-0.0125432191,0.0083803022,0.0325874723,0.0135936756,-0.00600316,-0.0002905774,-0.0041395738,0.0100376885,0.0009026138,0.0093918527,-0.0096953176,0.0025638901,0.0188459549,0.0090417005,-0.040368624,0.0158424284,0.0117028551,0.0063105156,-0.0054545887,-0.0090961689,0.0505152494,-0.0222385377,0.0089950133,0.0283389613,0.000410699,0.0073959865,-0.0048593306,0.0049760477,-0.0000923404,0.0081468681,-0.0293505117,-0.0003849239,-0.0039528259,-0.0217405427,-0.0088860774,-0.0045558657,-0.018005589,-0.0423294753,0.0031669296,0.0102010928,0.0192038864,0.0020328264,0.0344549492,-0.00559854,-0.0062365946,0.0090183569,-0.0015270514,0.0145351952,0.0257867426,0.0167761669,-0.0008773251,-0.0106134936,0.0068201809,-0.0035637685,-0.0133524593,0.0112048611,-0.0019063826,0.0108158039,0.0257556178,-0.0071858955,0.0103567159,0.0171185378,0.0028809721,0.0196863189,-0.0206200574,0.0225964691,-0.0032680845,0.0127377482,0.0264870469,-0.0237636436,0.0310312398,0.0120841311,-0.0000451976,0.0134224901,-0.0199197531,0.0456598103,-0.0055751964,0.0224719718,0.0024646805,-0.0107846791,-0.0079990262,0.026720481,0.0043341024,0.0340814516,-0.0354820602,0.0336768329,0.0117261987,0.0359800532,0.0212269872,0.0123564722,-0.0362913013,-0.0116017004,-0.0264403597,-0.0017750757,-0.0209935531,-0.0112748919,0.0077266856,0.0013364131,-0.0344549492,-0.0132590858,-0.0057969596,0.0030832822,0.0378475301,0.0048087528,-0.0032466864,-0.0151732499,-0.0214137342,0.0150954379,0.0169006661,-0.0152121549,-0.0076021869,-0.0007124619,0.0267671682,-0.00829471,0.0058047404,-0.0310934894,0.045908805,0.0024646805,-0.0025677807,-0.0134380525,0.0025152578,0.0061354395,-0.0156401191,0.0176320933,-0.0265181717,0.0272340383,-0.0106134936,0.0049137985,0.008216898,-0.0176165309,-0.0203710608,0.0055518532,0.0110648004,0.0267049186,0.0113993902,0.0147219431,-0.0058903331,-0.0318093561,0.0044858349,0.0098820655],"43":[-0.0139795151,-0.0185999256,0.0626305938,0.0250019673,0.0526357181,-0.0008293637,-0.0037554698,0.0530497096,-0.0109189544,0.0224588923,0.0291714258,-0.0232129432,-0.0280625261,-0.0382052511,0.0656467974,0.0493238084,-0.0205368008,-0.0028960735,-0.0455091968,0.0301472563,0.0020828811,0.0379686877,0.0119243562,0.0314631499,0.007388961,-0.0360465981,-0.0388853773,0.0293192789,0.0016356254,-0.0403047651,0.0319658481,-0.0320545621,-0.0423155688,0.0478748493,0.0333260968,0.0068825637,0.0347454883,-0.0049235099,0.059289109,-0.0057551838,-0.0158498567,-0.0048237089,0.0116286501,0.0310491603,-0.045893617,-0.0343610719,-0.0407778956,-0.0537889749,0.019427903,0.0760556534,-0.0893624425,0.0042138146,-0.0323502682,-0.0138612324,0.0366380103,-0.0309900194,0.0097804852,0.0287722219,0.0240409207,-0.0098174484,0.0187034234,0.0015543061,0.0338287987,0.0224588923,-0.0684855729,0.0332373865,-0.028166024,-0.0005465946,-0.054232534,0.0478157066,0.0132772122,-0.0081097446,0.0287574362,-0.0241000615,0.0035614127,-0.0553266481,-0.0113033727,0.0895398632,0.0336513743,-0.022473678,0.0107489238,-0.0233903676,-0.0326459743,0.0332965292,0.0055999379,-0.0450360663,-0.0258595143,-0.0151401618,-0.0107711013,-0.005544493,-0.0396837853,0.0320841335,0.022621531,0.0328529701,0.0325868316,0.0369928554,-0.010638034,0.0261552203,0.0086198384,0.0445037968,0.0078140385,-0.0234199371,-0.0131811081,0.0048163161,0.0184077155,-0.0087972619,0.0398316383,-0.00153028,0.0089377221,0.0179345869,-0.1007175595,-0.00249687,-0.0272493344,-0.0278407466,0.0123679154,-0.0294523463,0.0179493725,0.0048200125,0.0018361512,-0.0109559176,-0.0505066328,-0.005995445,-0.0163673423,0.0107711013,-0.0131515367,-0.0189547725,-0.0087011578,-0.0323206969,-0.0236860737,-0.0022030119,0.0357804596,0.0213056374,0.0496786572,0.0006819726,-0.0344793536,-0.0125157684,-0.057189595,-0.002397069,-0.0344202109,-0.017476242,0.0075663845,-0.0709695071,-0.0171066094,0.0128040826,-0.022976378,0.0113403359,-0.0267614182,0.0450360663,-0.0553562157,-0.0168996137,0.0144230742,-0.0055555818,-0.0343019292,0.0202854518,0.0359283127,0.0022362787,-0.004668463,0.0277076792,-0.0268649161,-0.0340357944,0.007991462,0.055237934,-0.0053153206,0.0167221911,-0.0233460106,0.0292305667,-0.0339470804,-0.0476678535,-0.0894807205,0.0080653885,-0.0111185564,-0.0500039347,-0.0185703542,-0.0226067454,0.0460118987,-0.0212021414,-0.0402751975,-0.0402456261,0.004442987,-0.0228876658,-0.0421381444,-0.0518668815,0.012035246,0.0116138645,-0.0203002375,0.0176240951,-0.0213647801,0.0086050527,-0.016278632,0.0228876658,-0.0181859359,0.0507136285,0.0244401246,0.0287722219,0.0204037335,-0.003847878,0.0529609956,0.0372589938,-0.0112220533,0.0099726943,0.0386783816,0.0427295603,0.0383531041,0.0104088616,-0.0147483507,-0.009092968,-0.0105493218,-0.0125453388,-0.045893617,-0.0167665463,0.0023231425,-0.0157167893,0.0172544625,-0.0098691974,-0.0437940992,-0.0264361426,-0.0231833737,0.0043616677,-0.0455683395,-0.0011791288,0.0004874533,0.0628080145,-0.0134472437,-0.0140016926,-0.0065277163,0.0490576737,0.0775341913,-0.0249132551,0.0290383566,-0.0083758803,0.0280477405,-0.0127227632,-0.0091373241,-0.042906981,0.0354847535,-0.001608827,-0.007592259,-0.0271458365,0.0043247044,-0.0483479761,0.0186442807,0.0202706661,0.0137725202,-0.0133881019,-0.0131441448,0.0111703053,-0.0443559438,-0.0816149339,-0.0278851036,0.0580175743,0.0131663224,-0.0387375243,-0.0208472926,-0.036963284,-0.0057514873,-0.0453317724,0.0021124517,0.0152880149,0.0063170255,-0.0354847535,0.0225032493,-0.0508023389,-0.0232720841,-0.0252828877,-0.0524582937,-0.0023065091,0.0085680895,-0.0525174364,-0.0025282889,-0.0152288741,0.0251498204,0.0111185564,0.0167961176,-0.0391810834,-0.0089672934,-0.0257855877,0.0001825062,0.0095513128,-0.0003220426,-0.0065794648,-0.0027278904,-0.0108302431,0.0271901935,0.0200488865,0.0257855877,0.0181563664,-0.0097065587,0.0312857255,-0.0105049657,-0.034656778,-0.0207142252,0.0147631364,0.0241296329,-0.0407187566,0.0032435283,0.0014757592,0.003195476,0.0038441818,-0.0372589938,-0.0176832359,0.0410440341,-0.0122496327,-0.0175649542,-0.017831089,-0.0217787679,-0.0028775919,-0.0068123336,-0.0522808731,0.0127597265,-0.0126118734,0.0124788051,0.0114290481,0.0086715864,-0.0259334408,-0.0030513192,-0.0229320228,0.059436962,-0.025918657,-0.0004879154,-0.067421034,-0.0538776852,-0.0772976205,-0.0152140884,0.037850406,0.016929185,-0.0129962917,0.0333556682,0.0027352832,0.0192800499,-0.0328233987,0.0182155073,-0.0301028993,0.025120249,0.0120943869,-0.0083463099,-0.0375251286,0.0088490108,-0.0139055885,-0.0312561542,0.0450360663,-0.0491759554,-0.0100466209,-0.0627488717,0.0197679661,0.0554449297,0.0054631736,-0.0195018295,0.0025338333,-0.0280920975,0.0024672993,-0.0285060853,-0.0389149487,0.0214682762,-0.0412214547,-0.0152436588,0.0102314372,-0.0053559802,0.0103423269,-0.0380278267,-0.0087602986,-0.0467511639,0.0312857255,0.0203593783,-0.0152732302,0.0177571625,0.0272789057,-0.0371407084,-0.0597622395,-0.0253863856,0.0133881019,0.0254455265,0.0007267906,-0.0082797762,-0.0121313501,-0.05414382,-0.0032305911,0.0756416693,0.0314927213,-0.0242035594,0.0577514395,0.045095209,-0.0223258249,-0.0121609215,0.0222223271,0.0389445163,0.0571008846,0.0171361789,0.0047867456,-0.0552083626,0.0143935038,0.0354847535,-0.0118800001,0.0078362171,0.0034338892,-0.0003807218,-0.0040253019,0.0130110765,0.0509501919,0.0584907047,0.0051046298,0.0329712518,-0.0190878417,-0.0353073291,-0.0220596883,0.0189399868,0.0142308651,-0.0232425146,0.0180232991,-0.0283878036,0.005319017,0.0046721594,-0.0135581335,0.0332669578,-0.0273971874,0.0001532821,-0.0148740262,-0.0305168889,0.0208472926,0.0578697212,0.0582541376,-0.026717063,-0.0377912633,-0.0039070193,0.0023693466,-0.0146004977,0.0451247804,0.032557264,0.0163969137,-0.0294967014,-0.0709103644,-0.0214830618,0.0008349082,0.0038441818,-0.0104236463,-0.0132550346,-0.0079544988,0.0282103792,-0.0125379469,0.022074474,0.012634051,-0.020078456,0.0064537898,-0.010985489,0.0342427865,0.0109263472,-0.0121830991,-0.0233016554,-0.0357804596,-0.0288905036,-0.0182155073,0.0192504786,-0.0415763035,0.0002349479,0.0013038799,-0.0293636341,-0.0324981213,0.0474904291,-0.0270127691,0.0365492962,0.0221188311,-0.058283709,0.0224441066,-0.0318475664,-0.0141791161,0.0103645055,-0.0490576737,0.0166482646,0.0276041813,0.0128558306,-0.026968414,0.0328233987,0.0080210334,-0.0222962536,0.0148296701,-0.0345976353,0.0170178972,0.0668296218,-0.010985489,0.0093517117,-0.0286539383,0.0395063609,-0.0079618916,-0.0398316383,0.0656467974,-0.0136394529,0.0336218067,0.0137133794,-0.0079988549,-0.0208620783,0.0068012448,-0.019028699,0.0048347977,0.0675393194,-0.0187329929,0.0056073302,-0.0303986054,-0.0433505401,-0.0211873557,-0.0004925358,-0.0200045295,0.0357804596,-0.0090560047,-0.0141939018,0.049087245,-0.0400682017,-0.0209507905,-0.0010044773,-0.0051748599,-0.0027038644,-0.0144452518,-0.048200123,0.0024414251,0.0168256871,0.0236860737,-0.0119613195,0.0127597265,-0.021970978,0.0011735844,-0.0294671319,-0.0028535656,-0.0200636722,-0.0179345869,-0.042906981,0.0022547604,-0.0082797762,-0.0146300681,-0.0534341261,-0.0200193152,-0.0281512383,-0.0168552585,0.0241592042,-0.0049567767,0.0054262104,0.0082797762,-0.0422268584,0.0086715864,-0.0419607237,-0.0400682017,-0.0470764413,0.0065794648,0.0071597886,0.0346272066,0.0192061234,0.0406300426,-0.0156280771,-0.028018171,-0.0080136405,0.0087750843,-0.0025634039,0.0507431999,0.0607972108,-0.014933168,0.0302507523,0.0118134664,0.0020810331,0.0130480397,0.0048495829,0.0058438955,0.0168552585,0.0105788922,-0.0020662476,0.0012096235,0.0056849532,-0.0053264094,0.0152436588,0.0128188673,0.0117321471,-0.0180085134,-0.040896181,0.0102240453,0.0026816863,-0.0193391908,-0.0087159425,-0.0184668582,0.015982924,0.0277076792,-0.0450360663,-0.0433505401,0.0007582094,0.0126118734,-0.0361353084,-0.0229911637,-0.0503587797,0.0234347228,-0.0412510261,0.0262735039,-0.0211282149,0.0223849658,0.002485781,-0.021379564,-0.0011985345,-0.0302803237,-0.0008861948,0.0189399868,0.031817995,0.0020459178,0.0092260363,0.0231981575,-0.0301028993,0.0181267951,-0.0095439209,-0.0131293591,-0.0315814316,-0.0461301804,-0.0140460487,0.0214682762,-0.0048791538,-0.0026114562,0.0299402624,-0.017328389,0.0237156451,-0.0266431365,0.0196940396,-0.0534932688,-0.0227250289,0.0015210392,-0.0187921338,-0.0026225452,0.021423921,0.0057330057,-0.0453613438,-0.0112220533,-0.005219216,-0.0410736017,0.011687791,0.0248097572,0.0167517606,-0.0319362804,-0.0136690233,0.0063576852,0.0097509148,0.0330895334,0.0403343365,-0.0238043554,-0.0102240453,0.0226511024,0.0340357944,0.0391810834,-0.003182539,-0.018481642,0.0306351706,0.0068714749,-0.0355734676,-0.0255490225,-0.0128262602,-0.0385305285,-0.012286596,0.0435575359,-0.0055740634,-0.0208620783,-0.0135507407,-0.0072152335,0.0332373865,0.0246323328,0.023922639,-0.0193835478,-0.0245584063,-0.0164560545,0.019028699,0.0042581707,-0.019427903,0.019028699,-0.0138242692,-0.0131589295,-0.0374364145,0.0147261731,-0.0150514496,0.0303098951,0.0307830237,0.0353369005,-0.022473678,0.0305464603,0.001124608,-0.0029884817,0.043054834,0.0068714749,-0.0233755819,-0.0264657121,0.0276485384,0.0397133529,-0.0345976353,0.0171213932,-0.0452430621,0.0098470198,-0.0007790013,0.0044836467,0.0106676044,0.0230946615,0.0482296944,0.0135803111,-0.0135063846,0.0075515993,0.0006283759,-0.0222518984,-0.0193391908,-0.031758856,-0.0043025264,0.0559476279,-0.0318771377,-0.0364310145,-0.0048606722,0.0047386931,-0.0426704176,-0.0364901572,-0.0249428246,0.0150588425,0.0424042828,0.0062024393,0.0374659859,-0.0359283127,-0.0376434103,0.0207881518,-0.031611003,0.0140608335,-0.0250019673,-0.0018925202,0.0057995394,0.0054816552,-0.032616403,-0.0307830237,-0.0429365523,0.0048828502,-0.0402751975,-0.0212760679,0.0173579585,-0.0025541631,0.0172692463,0.0218526945,-0.0006283759,-0.0194574744,0.0213056374,0.0179050155,0.0317884274,-0.030117685,0.0509797633,-0.0204185192,-0.0448290743,-0.0260517243,-0.0414875932,-0.0117469318,-0.0263769999,0.0161603484,-0.0205663722,-0.0095291352,0.0166039076,-0.0633994266,0.0270866957,0.0250463225,0.0390923694,-0.0180380829,0.0052709645,0.0148296701,-0.0023139017,0.0310491603,0.0068714749,0.0090338271,-0.0103127565,-0.0240852777,0.0007184739,0.030664742,-0.0167517606,0.0522513017,-0.0125083756,0.0346272066,0.010638034,0.0166778341,-0.0321728438,0.0314335786,-0.010386683,-0.0561546236,-0.0030014189,-0.0194574744,0.0324094072,0.0013482359,0.0525470078,-0.0057477909,-0.0188364908,0.003419104,0.0371111408,-0.0186294969,0.0303986054,-0.0062061357,-0.0042840447,-0.0310491603,-0.0034024704,-0.0136912009,0.0102684004,-0.0117099686,-0.0285947975,-0.0062689735,-0.0371407084,-0.0067494959,-0.0344202109,-0.001574636,0.0077992533,-0.0002536605,0.0101796892,-0.0948625803,-0.0579584315,0.0308717359,-0.0148222772,-0.0059252148,-0.024617549,0.0185112134,0.0532271303,0.020374164,-0.04095532,-0.0016587274,-0.0131219663,-0.0234051533,0.0004028998,-0.0056258123,0.0240409207,0.0138020907,0.0005452085,0.0028812881,0.0293044932,-0.0133733172,0.0162638463,-0.0570417419,0.0511276163,0.0289496463,-0.0078583946,-0.0224145371,0.0461301804,0.0129519356,-0.0043394896,0.0117617175,-0.0192800499,0.0063059367,0.0054262104,-0.0231685881,0.0286391545,-0.0162934158,0.0214091353,-0.0140977977,0.0071819667,-0.0383235365,-0.031167442,0.0497377962,-0.0227989554,0.0521034487,0.0112738023,-0.0077475049,0.017978942,-0.0095439209,0.0090560047,0.0510684773,0.0017908711,-0.0156280771,-0.0210395027,0.0123531297,0.025918657,-0.0432618298,-0.0081023518,0.0261995774,-0.0045316988,-0.0174171012,-0.0121535286,0.0040992284,-0.044001095,-0.0175205972,0.0026410269,-0.008287169,0.0069823647,-0.0033692035,0.0109559176,-0.0085237334,0.0434688255,0.0309604481,0.0021937711,0.0072078407,0.0192652643,-0.0065646796,-0.0013888954,0.0169883259,-0.0409257486,0.0068751713,-0.0231833737,-0.0402456261,0.0288461484,-0.0238634981,-0.0363127328,-0.0005909505,0.0109780962,0.0265544243,0.0089007588,0.0329712518,-0.0251054633,-0.019930603,0.0092851771,0.0131219663,0.0101649035,0.0082354201,0.0163082015,0.0107784942,0.0032287431,0.0205072314,-0.0048052273,0.0052820537,0.0208472926,0.002520896,0.0006847449,0.0125601245,-0.0102905789,0.0210099313,-0.0182746481,0.0051785563,-0.0215865597,0.0352186188,0.0119613195,0.0150440577,0.0042322963,0.0037037213,0.0030938271,-0.0022972682,-0.0233164411,0.0618617535,-0.0159237832,-0.0433505401,0.010334935,-0.0022566086,0.0080210334,0.0173136033,0.0121830991,0.013986907,-0.0165743381,0.0092851771,0.0397429243,-0.0081467079,0.0294375606,-0.0092482138,-0.0270127691,0.013484207,-0.0146374609,0.0208325088,-0.0048828502,0.0042581707,0.0000989345,0.0131515367,-0.0007711466,0.0169439707,-0.0160124954,-0.0142160794,0.0016744368,-0.0419607237,0.0228580963,0.0233016554,-0.0102462228,-0.0052635721,0.0332965292,0.0019572061,0.0470764413,-0.0663564876,-0.0130997887,0.0198862478,0.0032638581,0.0245288368,0.0503587797,0.0277520344,-0.0081762793,-0.0044134161,-0.0033229995,-0.0300289728,0.0130702183,-0.0044282018,0.0038996267,0.0003389071,-0.0043062228,0.014933168,0.002249216,0.0504474938,0.0033359365,0.0320249908,-0.0252385307,-0.0111629125,0.0123753082,0.0246027634,-0.0205368008,0.0109189544,0.0675393194,0.0056960424,-0.0458640456,-0.0434096828,0.0346863456,-0.0257264469,-0.0040548723,0.009787878,0.0051120226,0.0154950097,0.0453317724,-0.0061950469,-0.0071080397,0.031758856,0.0312265847,-0.0263326447,0.0021642004,-0.0571008846,0.0121165654,0.0104901809,-0.0147557436,0.0140090855,0.0250315368,0.0075848661,0.009839627,-0.0288313627,0.0242035594,0.0027556131,0.0321137011,-0.0254898816,0.0025597075,0.0264657121,-0.0036187058,0.0242922716,0.0047534783,-0.0381756835,-0.0201523826,-0.0257116612,-0.0221927576,-0.0054816552,0.0155393658,-0.0442080908,0.049294237,0.0023175981,0.0168109033,-0.0037887369,0.0030550156,0.0216309149,0.0061728689,0.0236121472,-0.0041990294,0.0296889115,0.0144452518,0.0335330926,-0.0013482359,-0.0082945609,0.0090264343,0.0140608335,-0.0046388926,0.0016688923,-0.0170918237,-0.0163377728,-0.0009813752,0.0323798396,-0.0106306411,0.0037092657,-0.0026927753,0.0208620783,0.013535955,0.0110668074,0.018925203,0.0222075414,-0.0014387959,0.0262439325,0.0041435845,0.0028720472,0.0022917236,0.0196940396,0.0128114745,0.0179050155,-0.0197236091,-0.018481642,-0.0160864219,-0.0073630866,-0.0049604732,0.0073963534,0.0226954576,-0.0129815061,0.0395359322,-0.0099283382,0.0081614936,0.016382128,0.0236121472,-0.0341245048,-0.0092038577,-0.0055075297,-0.0115473308,-0.0285800118,0.0113107655,-0.0250315368,0.0061728689,0.0171805359,-0.0251350347,-0.0004805227,-0.0325276926,0.0066053392,-0.0123013817,0.0130480397,0.0167074054,0.0116656134,0.0291270688,-0.012138743,0.0087676914,-0.0042581707,0.0250758938,0.0086272312,-0.0103718983,0.0167961176,-0.0155541506,0.0004971562,0.0004038239,-0.0122570256,0.0038515744,-0.0014304791,-0.0264804978,-0.0152436588,-0.0014249347,-0.0170622524,0.0100761913,0.0082797762,0.0425225645,-0.0132032856,0.0023638022,0.0136542376,0.0244105533,0.003768407,0.0496195145,0.0162490606,0.0052155196,0.0247949716,0.0540255383,-0.0363127328,0.0008182747,-0.0031751462,0.0026613565,-0.024469696,0.0335626639,0.004468861,0.0031326385,0.0134028876,0.0090486128,-0.0294227749,0.0054040323,0.0139573365,-0.0034708525,0.0240409207,-0.0280920975,0.0282103792,0.0033322403,0.011636042,0.0241148472,0.0250463225,0.0020015619,0.0310195889,0.0183633603,0.0010506815,-0.0017742377,0.0651736632,0.0055149221,-0.021970978,0.0035281456,0.0123753082,0.0131145734,0.007614437,-0.0006981441,-0.0124714123,0.0352186188,-0.0255638082,0.0131515367,0.0049382951,0.0298811197,0.0141569385,-0.0162047036,-0.0029274921,0.0232720841,0.0125970878,-0.0260369387,0.0246766899,0.015332371,-0.0217787679,-0.0287574362,0.0002538916,-0.0082649905,0.0205072314,-0.0227102432,-0.0156132923,0.0258003734,0.0129445428,-0.043054834,0.0079323212,0.0475495718,-0.0067531923,-0.0152140884,-0.0376434103,0.0389740877,0.0051896451,-0.0000176875,0.0050454885,-0.0124788051,-0.0133067826,-0.0370519981,-0.0361057371,0.0064094337,-0.0049124206,-0.0055814562,-0.0020680958,-0.0226954576,-0.03994992,-0.0028369322,0.0217639823,-0.0151993027,-0.0047349967,0.0268649161,0.0387670957,0.0239374246,0.0341540761,0.0104680024,-0.0178902298,0.0022676976,-0.0236860737,0.0091299312,-0.0020292844,-0.027471114,0.0110520227,-0.0119465338,0.0023360797,-0.0166482646,0.0025412259,0.0203150213,0.0210838579,0.0107193533,0.0366971493,0.0171805359,-0.0000176586,0.0153767271,0.0154506536,-0.0184077155,-0.0155985067,0.0312265847,-0.0138908029,0.0042877411,-0.0121535286,-0.0230798759,0.0112885879,0.0233312268,-0.0068382081,0.0012798538,-0.0234347228,0.015835071,0.0310491603,-0.0030938271,0.0013242097,0.0041472805,-0.0298219789,-0.0061691725,0.0184372868,-0.0180380829,0.0158202872,0.0158055015,-0.0288609341,0.0118430369,-0.008789869,-0.0009282405,-0.0156280771,0.0092260363,-0.0085015558,0.0009970847,-0.0166482646,-0.0015570784,0.0135950968,-0.0011070505,0.0106232483,0.0186442807,-0.0125970878,-0.0222814679,-0.0342132188,0.0034837897,0.0278259609,0.0052746609,-0.0136616305,0.0075183325,-0.0112885879,0.0320545621,0.034656778,-0.0322615542,0.0165004116,-0.0111333421,0.0282990914,0.0091151465,0.0401569121,0.0086641945,-0.0015552302,0.0254455265,-0.0114512257,-0.0072485004,0.0447995029,-0.0040733539,-0.0371407084,-0.0078879651,0.0120204603,-0.0324389786,0.0302803237,-0.0223553944,0.0291862097,0.0145931048,0.0024063098,-0.0119169634,-0.0094847791,0.0129223643,0.0402456261,-0.0117838951,0.0013399192,-0.0419311523,0.0392106548,-0.0164708402,0.0134472437,-0.0178163033,0.0102831861,-0.0025707965,-0.0301472563,-0.0588751212,0.0362535901,0.0045797513,0.0040216055,0.0010811761,-0.0069454014,0.0183190051,0.0290383566,-0.0089155445,-0.0077475049,-0.0061728689,0.0462780334,0.0035891351,-0.0066607841,-0.0026890791,-0.0150514496,-0.0139055885,-0.004546484,0.0064427005,-0.0065831612,0.0029977225,0.0171509646,-0.0055038333,-0.0233312268,-0.0111481268,-0.021527417,-0.0077105416,-0.0079027507,0.0128706163,-0.0047313008,0.0115990788,0.0129297571,0.0134546356,0.0055075297,-0.0025227442,-0.0306943133,0.0008741817,0.0048865462,-0.034656778,-0.028565228,-0.0170031115,-0.0027186496,0.0311378725,0.0063133291,-0.0014600498,0.0229320228,0.0067753703,0.017978942,-0.0081614936,-0.0298515502,0.018525999,0.0151549475,-0.0108524207,-0.0007078469,0.030664742,0.0128040826,-0.0361944512,-0.0028387804,-0.0094699934,0.0170474667,-0.0231981575,-0.006017623,-0.0023139017,0.0319067091,-0.0223258249,-0.0041214065,-0.0394176468,0.0001209393,-0.0309604481,-0.018378146,0.0528722852,0.0009023662,-0.0081762793,-0.006243099,-0.030117685,0.0321728438,-0.0216309149,-0.0257560182,-0.0230503045,0.0036464282,0.0192061234,0.0484071188,0.0237156451,0.0231981575,0.0019867767,0.0025818856,-0.0079766773,0.0017705414,0.020522017,-0.0091299312,-0.0091003608,-0.0168996137,0.0188364908,0.0258151591,0.0098470198,-0.0192061234,-0.0145265711,-0.0063576852,0.0025671001,-0.0015561543,-0.0373772755,-0.0100096576,0.0129667204,0.0317292847,-0.0099283382,-0.0276928935,0.0483479761,0.0031973242,0.0116434349,0.0374364145,-0.0008972838,-0.026170006,0.0114438329,-0.0062135286,0.0208620783,0.003781344,-0.0235086493,-0.0223997515,-0.0294671319,-0.0364605859,-0.0130480397,-0.0091447169,-0.031758856,-0.0243218429,0.0000461752,0.0053596767,0.0077105416,0.0068899565,0.021379564,-0.0023933728,-0.0134250652,-0.0044836467,-0.0043949345,0.0092629995,0.0218231231,0.0047165151,-0.0105419289,0.0021142999,0.0113994777,0.0038885376,-0.0103792902,0.044148948,0.0222075414,-0.0079544988,0.0263769999,0.0080062477,0.0169143993,0.0234051533,-0.0174910277,0.0092186434,-0.0319954194,0.0071117361,-0.017978942,0.0311378725,0.0371998511,-0.0189104173,0.0148962038,0.0221927576,0.0024728437,0.0043838457,-0.0115990788,0.0207437966,-0.0156576484,-0.0011929901,-0.008191064,0.0071856626,-0.0250611082,0.0290235728,0.0204628743,0.0317884274,-0.0283434484,0.0612112023,0.0102462228,0.0047534783,-0.0001730344,-0.0018878998,-0.0288609341,-0.0238191411,0.0099726943,-0.0202706661,-0.0136468448,-0.0218970496,0.0485549718,-0.004442987,0.0294227749,-0.0118060736,0.0062689735,0.0113181584,0.0359874554,-0.0130110765,-0.0076809707,-0.0222075414,0.0094182454,0.0266283508,0.0126044806,-0.0156428628,0.0216752701,0.0253124572,-0.0051637711,0.0066570877,0.0147483507,-0.0268057752,0.0447995029,0.0178754441,-0.0114216553,-0.0089303302,-0.0096326321,-0.0122718113,-0.0034634599,0.0237008594,-0.0364605859,-0.0069380086,-0.0171953198,0.0093147485,0.0282990914,-0.0032915806,-0.0110963788,0.0263622161,0.0130628254,0.0333556682,-0.005895644,0.0071080397,0.0087455139,0.0055629746,0.0014591257,-0.0133511387],"44":[0.0047190092,0.0457473397,0.0256088916,-0.0021584958,0.0167720206,0.031650424,-0.0126316156,0.0202887338,-0.0331532955,-0.0173130538,0.031830769,-0.0370908119,-0.0124963569,-0.0143674295,0.0513380133,0.0445750989,-0.0193870123,-0.0093478467,-0.0474606082,0.0381127633,-0.0193268973,-0.002552999,0.0439138375,0.0203037634,-0.0100992806,-0.0396757461,-0.0331833512,0.0497449711,0.0508570932,-0.0579806939,-0.0107304864,-0.0371809825,-0.0529009961,0.0018428933,-0.0104299122,-0.0011093053,0.0271117594,0.0084386105,-0.0185003206,-0.0123535851,-0.0161859021,-0.0313498527,-0.0267811287,0.0607760288,-0.0028648444,-0.0377220176,-0.0670279637,0.0141344843,0.0616176352,0.0090021864,0.0156598967,0.0345359333,-0.0096784774,-0.0532316267,0.0137362247,-0.0372711569,0.0124061853,0.045296479,-0.0326423198,-0.0207546242,-0.0048805675,-0.0378422476,0.0211603977,0.0293209776,-0.020949997,-0.0002533743,-0.003353277,0.031890884,0.0067253397,-0.0014436938,0.0583714396,0.0108507155,0.0072626155,-0.0294111501,0.0159905273,-0.0585818402,-0.024106022,0.0078900633,-0.0302978437,-0.0133454781,0.0112564899,-0.0287198294,-0.0020439022,0.0175084267,0.0002496172,-0.0247973409,-0.0223326366,-0.0049294108,-0.0132628204,-0.0121882688,-0.0408179276,0.055636216,-0.0208147392,0.0430722311,0.0218216609,0.0062256358,-0.0033852127,0.0423508547,0.0314099677,0.0444248132,-0.0060039624,-0.0292458348,0.0045837509,-0.0291706901,0.0407578126,-0.0373613276,-0.0054216008,0.0336041562,-0.0212505702,0.0162911024,-0.0511276089,-0.0207846817,-0.0150136631,-0.0104223974,-0.0292007476,0.0026318997,-0.0060227481,-0.0099039078,-0.0195823852,-0.0232343581,-0.0402167812,0.0179442577,0.002889266,0.0134506794,0.0122108124,-0.0383532234,0.0199731309,-0.0374214426,-0.0648037195,0.0029493808,0.0588824153,-0.0424109697,0.0419901647,-0.0354075991,-0.002902416,0.0043996493,-0.0143674295,-0.0197627302,-0.0085738683,0.0078074057,0.0235048737,0.0279082805,0.0531414561,-0.002348233,0.0194170699,0.0361590311,0.007476774,0.0416895896,0.0111588035,-0.0231441855,0.0271117594,-0.0183350034,-0.0370908119,-0.0166217331,0.0636014268,-0.0145402597,0.0370306969,0.0904126093,0.0016099486,-0.0482420996,0.0268412437,0.014029284,-0.0308088176,0.0041930052,-0.0388341397,0.0133905644,-0.0159304142,-0.0100842519,-0.0794717222,0.0142246569,-0.0699134767,-0.0379624739,-0.0223025791,0.0413890183,0.0431323461,0.0210251398,0.0083860103,-0.052480191,0.0031447539,-0.0174032245,-0.0736405924,-0.024226252,-0.0228886977,0.0112414612,-0.0127819022,-0.0240909923,-0.0581610389,-0.007476774,-0.0179893449,0.0060077198,-0.0201534759,0.066306591,-0.0061955783,0.0064999093,0.0063834367,-0.0331532955,0.0357382298,-0.0275475923,-0.0115044639,0.0033194623,0.0038623738,0.0221522916,0.0407878682,-0.0222725216,0.0347763933,0.0006161763,-0.0341451876,0.0014145756,-0.0612569489,-0.034986794,0.0215511434,0.0120004108,0.0344758183,-0.0062857503,-0.0394352861,0.0028817516,-0.0425612554,-0.0114518628,0.0025079129,-0.0137512535,-0.0076608756,0.1055615321,0.0141194556,-0.0098813651,-0.0227083527,0.0124287279,0.0514582396,-0.0057033887,0.0752035752,0.0549148396,-0.0189662091,-0.0529310517,-0.0056921169,-0.0396757461,-0.0082883239,0.007446717,-0.0015639232,0.0013291,0.0015094442,-0.0044672787,0.0088443849,0.0202286188,0.0045349076,0.0106102563,0.0016353095,0.0183800906,-0.0253684316,-0.0427716561,0.0285394862,0.0234898459,0.0283140559,0.0109183444,0.0058236183,-0.0521195047,-0.0143223433,-0.0167569909,-0.0791711509,0.0594234467,0.0138489399,0.0072851586,0.017493397,-0.0328827761,-0.0311394501,0.0388641991,-0.0512177832,0.0492339954,0.0087466985,0.0020232378,-0.0323116891,-0.0449658446,-0.0016118272,0.0093628755,0.0316203684,-0.0254435763,-0.0276227351,-0.0198979881,0.0279533677,0.0414791889,-0.0251430012,0.0088669285,-0.0157500692,-0.0140367979,0.0089345574,-0.0044823075,-0.0074955602,0.0245568827,-0.0025586348,0.024782313,0.0096258773,-0.0373312719,-0.0024628269,0.0257892348,0.0255788341,-0.0033250982,0.0297417808,-0.0132327629,-0.0138489399,0.0286446866,-0.0439138375,-0.0393150598,0.0157200117,0.0332735255,0.0422005653,0.0069207125,0.0291406345,0.0070446995,0.0281637684,0.0060002054,-0.0109033156,0.001460601,0.0046288371,-0.0445149839,0.0204690788,0.0086940983,-0.0174633395,0.0011130625,0.0651042908,0.0274724495,-0.0020044518,-0.073099561,-0.0249175709,-0.0602650531,-0.0138113676,-0.0277429651,0.0453265347,0.0036219147,0.0360388048,0.0163361877,-0.0166067053,0.0038078949,0.0114368349,0.0051999274,0.0339648426,0.0050609121,-0.0210551973,-0.0472502075,-0.0111362608,0.0062331501,-0.0189361516,0.031650424,-0.0306585319,-0.0469796918,-0.0686510652,0.0163361877,0.0403370075,-0.0051135123,0.0017686891,-0.0515784696,0.0251880884,-0.0066126245,-0.031530194,0.0308989901,-0.0299371537,-0.0311093926,0.0066163815,-0.00732273,0.0038285593,0.0007072878,-0.0171777941,-0.030222699,0.007078514,0.0706949681,0.0541634038,0.0030921535,-0.0072663724,0.0310793351,-0.0364896655,0.0143073145,-0.0478212982,-0.0041253758,0.0287649166,0.0055230442,-0.0153217511,-0.0019612443,-0.0681701452,-0.0208447948,0.0643227994,-0.0164714456,0.0010877015,0.0646233782,0.0564778224,0.0200933609,-0.0214008577,-0.0002594798,0.0153518086,0.0040915613,-0.0000835384,0.0096108485,-0.0611667745,-0.017373167,0.0576200038,-0.063300848,-0.0315602534,-0.0155697251,-0.0144951735,0.0219418909,0.0106854001,0.0861444622,0.0611066595,-0.0133154206,-0.0071574147,0.0006584445,-0.070214048,-0.0066764965,0.0340550169,0.0265406705,0.0115495501,0.048572734,-0.0327625498,-0.0312596783,-0.0232644156,-0.0199731309,0.0431624018,-0.0043357778,0.0260597523,-0.041839879,-0.0365798362,0.0653447509,-0.0205442216,0.0186205488,-0.0528709367,0.0053351857,-0.0047377953,-0.0096559348,-0.0215210859,0.0295313802,0.0363393761,-0.0417497046,0.0044935788,-0.0585217252,-0.0122333551,0.0069920989,-0.0188159216,0.0152541222,-0.0234297309,-0.0108882869,0.0634811968,-0.0305383019,0.0296966955,0.0128044458,0.0049256538,-0.0355578847,-0.0128645599,0.0276527926,-0.0243765377,0.0118200658,-0.0039187316,0.00011295,0.0143298581,-0.0212355424,0.0785098895,-0.0457473397,0.0045574508,0.0406976976,-0.0379324183,-0.0257441495,0.0258192923,-0.0019311869,0.015945442,0.0180644877,-0.0095958197,0.0258794073,-0.0764659867,-0.0283441134,-0.0073565445,-0.0149385193,0.0289452597,-0.0100917667,0.0373913869,-0.0327324905,-0.0028291512,0.0168321356,-0.0473403782,-0.0070071276,-0.0140142553,-0.0060828631,0.0009918937,-0.0275626201,0.0307787601,-0.0126616731,0.0163812749,-0.000027944,0.0033420054,0.0333035812,0.0305082444,-0.0163211599,-0.0250227712,0.0184552334,-0.0076308185,-0.0039600604,-0.0049557113,-0.0106177712,0.0594234467,-0.0192968398,0.0369405262,-0.0241511073,-0.0554258153,-0.049264051,-0.0219418909,-0.0038116521,0.0409682132,0.0299371537,-0.0047377953,0.0690117553,-0.0041516763,0.0076834187,-0.001976273,0.0001312662,-0.0134957656,-0.0330330655,-0.0089345574,0.002008209,0.0100842519,0.007604518,-0.0164864752,0.0165616181,0.0205141641,0.0000635197,-0.007232558,0.0022505466,-0.0227534398,-0.0243013948,-0.0250828862,-0.0084461244,0.034926679,0.0105726849,-0.0643829182,-0.0176286548,-0.0212956555,0.0203187913,0.0249776859,-0.0097235637,0.004020175,-0.0252782591,-0.0590026453,-0.0210702252,-0.0270215888,-0.0212655999,-0.0542235188,0.0109934881,0.0387740247,0.0335440412,0.0165465903,0.0229788702,0.028494399,0.014029284,0.0032593475,-0.0131951915,0.0050609121,0.0198829602,0.0084010391,-0.0499854274,0.0099715367,-0.0100692231,-0.001210749,0.0301776137,0.0204991363,-0.0201534759,0.0042831772,-0.0237453338,0.0049707401,-0.0009768649,-0.0041854908,0.0013253428,-0.0217014309,0.0216563456,0.0234597884,-0.0456571653,-0.0458375104,0.0192517545,-0.012736816,-0.0267961584,-0.0206193645,0.0232944731,0.0267210137,-0.0059363334,-0.0445750989,0.0314099677,0.0081380364,0.0005790743,-0.0238204766,0.0006687768,-0.0308689326,0.0633609667,-0.0128420172,-0.0239407066,0.0040276893,0.0132778492,0.0121807549,-0.035167139,0.001944337,0.01538938,0.0164714456,0.0234297309,0.025774207,0.0276377648,0.0181246027,0.0371208675,-0.0250678584,0.0371509269,0.0183800906,-0.0105801988,-0.0148708904,-0.026570728,-0.0179292299,0.0101518817,0.0243164226,0.0230239555,0.0067704255,-0.0034810207,-0.0154344663,0.0023087829,-0.038383279,-0.0288550891,-0.0141419992,0.0120830685,0.0328226648,-0.0167720206,-0.0015329266,0.0208447948,-0.0351971947,-0.0063909511,-0.0179442577,-0.0379324183,-0.0024834913,0.0147957476,-0.0169523638,-0.0108507155,-0.0129096461,0.0070296708,-0.0148784053,-0.0043771067,0.0361890905,-0.0048805675,0.0133680217,0.0354977697,0.0432826318,0.0383532234,-0.0102420533,-0.0241961945,0.0392850004,-0.0213557705,0.0098963939,-0.0070522139,0.0192667823,0.0091675017,-0.0337243862,0.0170275085,0.0147957476,-0.0340550169,-0.0437334925,-0.0202737059,0.0259244926,0.0284342859,-0.0052412562,0.0037233585,-0.0144801447,-0.0215210859,-0.0257591773,-0.0312596783,-0.0383532234,0.0089495862,-0.0239106491,0.0013366143,-0.0217765737,0.0030639747,0.0174783692,-0.0440641232,-0.004174219,0.0478513539,0.0082131801,-0.0038586166,0.0248724855,0.0199881606,0.0328827761,0.0080704074,0.0159604717,-0.0049294108,0.028058568,0.0402167812,-0.012300984,-0.0197477005,-0.0115420353,0.0339949019,-0.0093703894,0.0339047275,-0.0117148655,0.0023294473,0.034926679,0.0200182181,0.013473222,-0.0029756811,-0.0121732401,-0.0147581752,0.0025417276,-0.0333035812,-0.0094981333,0.021010112,-0.0218366887,-0.0887895152,0.015945442,-0.0142622283,-0.0345359333,-0.0184101481,-0.010505056,-0.0178089999,0.0051999274,0.0090021864,0.0437034369,-0.0165465903,-0.0326423198,0.009580791,-0.0377220176,0.0235048737,0.0030339172,0.0018569827,-0.0026055994,0.0614974089,-0.0084536392,0.0037628086,-0.042020224,0.0055794017,-0.0432525761,-0.0161859021,0.0327625498,-0.0342053026,-0.0119252671,0.0327625498,0.0000238639,-0.0364596061,0.0275926776,-0.0005278828,0.0340550169,-0.0264204405,0.0354677141,-0.0051698699,0.0052600424,-0.0342053026,-0.0029080519,-0.0152466083,-0.0372711569,-0.0184702631,0.0054892297,0.0234447587,0.0185153484,-0.0319810547,0.0261348952,0.0323116891,-0.0173130538,-0.0032818906,-0.0336342119,0.0154795526,0.029726753,-0.0002799094,-0.0178089999,-0.0116397217,0.0028329084,0.0410283282,-0.0115946354,0.0243765377,-0.0148032615,0.0470097475,-0.0058987616,-0.0046513802,-0.0066163815,0.0328226648,-0.0125865294,-0.0103923408,0.0135183083,-0.0669678524,0.0108507155,-0.0370607525,-0.0108432015,-0.0049519539,0.0489634797,-0.0166067053,-0.0198228452,0.0022730897,0.0222124066,0.0064172517,0.0406676419,-0.0030282815,-0.0255938619,0.0082357228,0.0001690728,-0.0115946354,0.0006274479,0.0015892842,-0.0336342119,-0.0479715839,-0.0387740247,-0.0048317243,-0.0307787601,0.0047716098,0.0027840652,0.0003099668,0.0267510712,-0.0961235166,-0.027818108,0.0173581392,0.0212806277,-0.042020224,0.012300984,0.0509472638,0.0174783692,-0.0045349076,-0.0216713734,0.0205893088,-0.0335139818,-0.0153668374,0.0042080339,-0.0266308412,-0.0139240827,0.0278932527,0.0242563095,0.0409982726,0.0254886616,-0.0188760366,-0.0311093926,-0.0211754274,0.0413589589,0.0218366887,-0.0122859553,-0.0288250316,0.0608662032,0.0188459791,0.0013084355,0.0217916034,0.0088293562,0.0185454059,0.0373913869,-0.0169673935,0.031890884,0.003107182,0.0339648426,0.0164564177,0.0048655388,-0.0187558066,-0.0283891987,0.0363093205,-0.042080339,0.0391948298,-0.0035110782,-0.0019969374,0.0436433218,-0.0003104364,-0.0135032795,-0.0069319843,-0.0125865294,-0.0016108879,0.0127142733,-0.0104223974,0.0019020688,-0.0473403782,0.0411485583,0.0039600604,0.0254586041,0.024045907,0.0019462156,0.0348365083,-0.0440040082,-0.0319509991,0.008408553,-0.0186055209,0.0098813651,-0.0161708724,-0.0235649887,0.0215962306,0.0248875134,0.015825212,0.0111062033,0.0028141225,0.0091750165,-0.0005654545,-0.0333336368,-0.000711045,-0.0205291938,-0.0086865835,-0.003866131,-0.0212355424,-0.0002331795,-0.0034209059,-0.0217314884,-0.0108056292,0.024782313,-0.006706554,0.0111062033,0.0061054062,-0.010016623,-0.0112715187,-0.0276678223,0.0041216188,0.027878223,-0.0043808636,-0.0178991724,0.0125414431,-0.0048505105,0.0173581392,-0.0006589142,0.0101518817,-0.0099114226,-0.0128420172,0.0001211688,-0.0022054606,-0.0283591412,-0.0164113324,0.008716641,-0.0131200477,0.0149460342,0.009520676,0.0128720747,0.0103697972,0.0230991002,0.0025116701,-0.026390383,0.0001540441,-0.0248875134,0.0430421717,-0.0193569548,-0.0241210498,0.0172078516,-0.0049820114,-0.0016691241,0.0297568105,-0.0276828501,0.0431022868,-0.0056958743,0.0096484199,0.0598743074,-0.0010106795,0.035287369,0.0137512535,-0.0141269704,0.0181396306,0.0208147392,-0.0063195648,0.0105952276,0.0153142372,0.028118683,0.007912606,-0.0148258042,-0.0001418333,-0.0070033702,-0.0098437928,0.0087542133,-0.0077848625,0.0508270375,0.0195523277,-0.0202286188,-0.0178390574,0.016125787,0.0032330474,0.0333035812,-0.0429219455,-0.0086865835,-0.0218066312,0.0043545635,0.0146529749,0.0375416726,0.0073903594,-0.0143599147,-0.0031447539,-0.0233996734,-0.029486293,-0.0241210498,-0.0105501413,0.0093253031,0.0035016851,-0.0269013587,0.0254586041,0.011992896,0.0346862227,-0.0109033156,0.0148032615,-0.0148633765,-0.0248273984,0.038142819,-0.0146304313,0.0115796067,0.0248574559,0.0052187131,0.0221372638,-0.0298920684,0.0087617273,0.0002204991,-0.0275325626,-0.0099414801,0.0499854274,-0.0079802359,0.015329266,-0.0291406345,-0.0042155483,0.0135107944,0.0099865654,0.0408780426,-0.0414791889,-0.0175384842,-0.0172679666,-0.0005508955,0.0094530471,-0.0406676419,-0.0133304494,0.0345359333,-0.0094755907,-0.0295163505,-0.0374815576,0.0189060941,-0.003866131,-0.0098738503,0.0104674837,0.0094680758,0.0057447175,0.0070747565,0.0214008577,-0.0087466985,-0.011557064,-0.028118683,0.0072926725,-0.0560269617,-0.0201234184,0.0257291198,-0.0068305405,0.0433427468,-0.0297568105,-0.0176587123,-0.0378422476,0.0062369071,-0.0004870236,0.0036576078,0.0141945994,0.0167720206,0.0089946724,-0.0010463727,0.0183951184,-0.000483736,-0.0137888249,0.0047528236,0.0027164361,0.0006894412,-0.0056395167,-0.0159604717,-0.0296816658,-0.0008063833,0.0398560911,0.0156598967,0.0098137362,0.0079576923,-0.0156448688,-0.0017160887,0.0259695798,0.026149923,0.0094229896,0.0229638405,0.0219418909,0.0283290837,-0.0304180719,0.0062970221,0.0107755717,-0.000483736,0.0090097012,-0.0262551252,0.0012736816,-0.0050083115,-0.0419901647,-0.0210852548,0.0149610629,0.0205893088,-0.0166818481,-0.0157200117,0.0173581392,-0.0164113324,-0.009084844,0.0019039474,-0.0602049381,-0.0149760917,-0.0079877498,-0.0043695923,-0.0313498527,0.0336943269,0.0111212321,-0.0080779223,0.0291406345,-0.0215361156,-0.0369104668,-0.012609072,0.0232193284,-0.0308689326,-0.0182748903,0.0139917126,-0.0096333912,-0.0003341536,-0.0233545881,-0.0118576381,-0.0110686319,0.0290654898,0.0229638405,-0.0469496325,0.0020645666,-0.010880773,0.0219118334,0.0198378731,-0.0062819934,-0.0138188824,-0.0209650248,-0.0119553246,-0.0237002466,0.0510975532,-0.0099414801,0.0153442947,0.0131576201,0.0290354323,-0.0226031523,-0.0169072784,0.0281036533,0.0271869041,0.0209199395,0.0115495501,-0.0030921535,0.0018156539,0.0068831407,0.0455970503,-0.0272620469,0.0263603255,-0.0023407189,-0.0012154455,-0.0140518267,0.018049458,-0.00695077,-0.0170876235,0.0211754274,0.0181246027,-0.0230991002,0.0368503518,0.0163512174,0.0042568771,0.0162309874,-0.004016418,-0.0052713137,0.0233095009,-0.0058461609,0.0254736319,-0.0023407189,0.0015188372,-0.0043545635,-0.0093102744,0.0015047478,0.0113541763,0.0720776096,-0.0011581485,0.0006903805,-0.0107981153,0.0112865474,-0.0094831046,-0.0051961704,0.0190112945,0.0020871095,0.0311394501,0.0102721108,0.0079576923,-0.0197927877,0.0012417457,0.0196274724,0.0143749435,-0.0266759284,0.0061993352,-0.0066351676,0.0188459791,0.0144951735,0.0094755907,0.010880773,-0.0087917848,-0.0284192562,-0.0431624018,0.0078449771,-0.002453434,-0.0219869763,0.0041930052,-0.0036519722,-0.0036500935,0.0248123705,0.0162911024,-0.003152268,0.013473222,-0.0065675383,-0.0203037634,0.0079877498,-0.0019650015,-0.0194170699,-0.0175384842,0.0073490301,-0.0265256409,-0.0285545141,0.0316203684,-0.0264655259,-0.0210251398,0.0073715732,-0.0268713012,-0.0260447226,-0.0151864933,0.0255938619,-0.0117073506,0.0058198608,0.0192968398,0.0157500692,0.0221973788,-0.0030977891,0.052359961,-0.0249025431,-0.0168471634,-0.0087091271,-0.0033382482,-0.023174243,-0.0130373901,0.0189962666,-0.002303147,-0.024722198,-0.0506767482,-0.0202586763,0.0207395945,0.0201985613,0.0300423559,0.0222725216,0.0100992806,0.0128420172,0.014893434,0.0175685417,-0.0414491333,-0.0114819203,-0.009205074,-0.0166968759,0.0357081704,0.0010830051,-0.004974497,-0.0078074057,-0.0002993997,-0.0314099677,0.0273371898,0.031470079,0.0235950463,0.003757173,0.0039224885,-0.0022054606,-0.0303278994,-0.0159304142,-0.0086490121,0.0253383741,-0.0095732771,0.0071536573,-0.0069958563,-0.0166818481,0.011617179,-0.0028178797,-0.0204239916,0.0005851797,-0.0256990623,-0.0183350034,0.0027953368,-0.0048129386,0.0109859742,0.0200933609,-0.0015432588,0.0163812749,-0.0021509815,-0.005996448,-0.0190263242,-0.0089946724,-0.0117298942,0.0053013712,0.0226782952,-0.0080027785,-0.024541853,0.0205742791,-0.0125865294,0.0603251681,-0.0144200297,-0.0105952276,0.0015338658,0.0014108184,0.0167870484,0.0364896655,-0.0135859372,0.0374515019,0.0129472185,-0.0178691149,-0.0122558987,0.0128720747,0.0054178433,-0.0314400233,-0.0232343581,-0.0120454961,-0.0130223613,0.0242563095,-0.0107981153,0.0027690365,0.0134957656,-0.0098362789,0.0185003206,-0.0239106491,0.0147882327,0.0129472185,0.0067290966,-0.0377821326,-0.0187708363,-0.0054854727,-0.013721196,-0.0237904191,-0.0066539533,0.0037740802,-0.0075218603,0.0065262094,0.0068342974,0.038563624,-0.0285695437,-0.0069470126,-0.0192367248,-0.0154494951,-0.0117975231,0.009212588,-0.0083033526,-0.0007772652,-0.0193118695,0.0050947266,-0.0221522916,0.0146304313,-0.0007251344,-0.0178991724,0.024662083,0.0089195287,0.0126391295,0.0014812654,0.0270366166,0.010940888,0.0219268613,-0.0641424581,-0.0164113324,0.0182448328,-0.0547044389,0.0115194926,-0.0113466624,0.0033946058,0.029426178,0.0324018598,0.0234297309,0.0225730948,0.0245268252,-0.0295163505,0.0115946354,-0.044935789,-0.0150211779,-0.042020224,-0.0093177892,-0.0126541583,0.0009787435,0.0292909201,-0.0042005195,0.0040051462,-0.0124663003,-0.0198078156,0.001287771,-0.0175685417,0.0046927091,0.0154645238,-0.0186956935,0.00608662,0.0554558747,-0.0156749263,-0.0254586041,-0.0086039258,-0.0200633034,0.0007500257,-0.0151113495,0.0045123645,-0.0018748293,0.0632407367,-0.0487530753,-0.0228586402,-0.0015798912,0.0106177712,0.0047039804,0.0028967804,0.0278932527,-0.0397058055,-0.0227834973,0.0030001027,-0.0430421717,0.0003458947,-0.0071837148,-0.0238655619,0.0025924493,0.0201685037,-0.0112640047,0.0122558987,0.0156148113,0.010016623,0.0008308049,0.0023745333,0.0092276167,-0.031470079,0.0203187913,0.0063796798,-0.0096859923,-0.027878223,-0.0003449554,0.0163512174,-0.0352573097,0.0159304142,0.0183199756,-0.0132327629,-0.0051698699,0.0240609348,0.0122709265,0.0083258953,-0.0011515735,0.0228886977,-0.014337372,-0.0036181575,0.0325521454,-0.0122558987,-0.0122333551,0.0066314102,0.0212505702,0.006304536,0.0094680758,0.0253534038,-0.009888879,0.0205742791,-0.0104900273,-0.011865152,-0.0104073696,-0.0089796437,0.0006063138,0.0132177342,0.0043733492,-0.0069131982,-0.0165165327,-0.0149610629,0.0535923168,-0.0009397629,0.0227534398,0.0241811648,-0.0249025431,0.0164864752,0.0175084267,0.0279533677,0.0316804834,-0.0066088671,-0.0097235637,-0.0266007856,0.0013413108,-0.0345058776,-0.0295013227,0.0161408149,0.0255036894,-0.0018673149,0.0068455692,0.0088894712,-0.0016315524,0.0457473397,-0.015201522,0.000501113,-0.0056094592,0.010009109,0.0156899542,0.0198529027,0.0256389491,0.0164564177,0.0352573097,0.0199881606,0.0042005195,0.0152165508,-0.0012389278,0.0400364362,-0.0045048506,-0.0074354452,-0.0162911024,0.006428523,-0.003571193,0.0321613997,0.0179142002,0.0214008577,-0.0216112584,-0.0001771742,-0.0091975592,0.0049932827,0.0329428911,0.0163211599,-0.0198529027,-0.0175985973,-0.0045048506,-0.0367301218,0.021010112,-0.0293961205,0.049264051,0.0004417026,-0.0266759284,-0.0329428911,-0.0123535851,0.0111738322,0.0192066673,-0.0153217511,-0.0111212321,-0.016937336,0.0127894171,0.0140067404,0.0134581933,-0.0240008216,0.0249776859,0.0138865113,0.0069432557,0.0283441134,-0.0055493447,-0.0185454059,0.0172829963,0.0013187677,-0.0348365083,0.0015432588,-0.0345359333,0.0121281547,0.0027145576,-0.0030846391,-0.0306885894,-0.0402167812,-0.0332735255,-0.0017113923,0.0011872667,-0.0148483478,-0.0046551372,0.0239557344,0.0142847719,0.0149535481,-0.0120454961,0.0217465181,-0.0232644156,-0.020649422,0.0179142002,0.0100692231],"45":[0.0209649559,0.0489451699,-0.0088256486,-0.0171178784,-0.0215630308,0.0482339449,0.0075931288,-0.0553138591,0.0044734399,-0.0038733443,0.0479753166,-0.0397962369,-0.01816855,-0.0173765048,0.0184271783,0.012591905,-0.0068091652,0.0094237234,-0.0311160665,0.0140547641,-0.0001529284,-0.0072092293,0.0396669246,-0.0087609915,0.0113230152,-0.0500766635,0.01816855,0.06148858,0.054634966,-0.0326678306,0.0127939573,-0.0307604559,-0.0850882977,-0.0039743702,-0.0299199168,0.0135536743,0.0062595829,0.0008390225,-0.0249251816,0.0005063938,-0.0158570707,-0.0362077877,-0.0353025943,0.0345267132,-0.0057140416,-0.0626847297,-0.0856702104,0.0101187835,0.0290147234,0.0245210771,-0.0007501195,0.0327324867,0.0099490592,0.0183140282,0.0043926188,0.0101026194,0.0099733053,0.0664024949,-0.0079729874,-0.0023458281,-0.0161722731,0.0039763912,0.0327809788,-0.0116624637,-0.0221934337,0.0105713811,-0.007374912,0.0188474469,0.0147740701,0.0543763377,0.059484221,0.0079325764,0.018895939,-0.034882322,0.0326678306,-0.0454213768,-0.0215630308,0.0035480398,-0.0062595829,0.0123979347,-0.006283829,-0.0284328125,0.0044289883,0.0039824527,-0.0191060733,-0.0208194777,-0.0305826496,-0.027268989,-0.0194940139,-0.0129394345,-0.0673076883,0.0499150194,0.0108138435,0.055960428,0.0037056408,-0.0169724002,0.0015517623,0.0453567207,0.0204961933,0.0178614315,0.0037884822,-0.0241654646,0.0148791373,-0.0338478163,0.0416066274,-0.0349469818,-0.0261374973,0.0491068102,-0.0239876583,-0.0074638152,-0.0069384789,-0.0285782889,0.0088498946,0.0135617564,-0.042026896,-0.0314716808,-0.0236482117,0.0057261647,0.0195748359,-0.0186211485,-0.0610036552,0.0434170179,-0.0040834788,0.0342680849,0.021029612,-0.0376625657,0.0268648844,-0.0436433144,-0.0124302628,0.0253616162,0.0600661337,-0.0287399311,0.0284004826,-0.0389233716,0.0171663705,0.0142244883,0.012591905,0.0082316138,-0.0225005541,0.0099248132,0.0261698253,-0.0008738766,0.0627493858,0.0235673897,0.0277377516,0.0311968885,-0.0106198732,0.0571889058,0.0258303769,-0.0041158069,0.0393113121,-0.0168430861,-0.0137638086,0.0101187835,0.0635252669,0.0023175408,0.0093429023,0.0746785626,-0.0030328063,-0.0587083399,0.0099571412,0.030081559,-0.0368220285,-0.0066071129,-0.0223389119,0.0241008084,-0.0213690605,-0.0083083939,-0.0841184482,-0.0019972879,-0.0627170578,-0.0375979096,-0.0011729141,0.0279155578,0.0117836948,-0.0408630744,-0.0041259099,-0.0711870939,-0.0045461785,-0.0244402569,-0.0507878885,-0.0210457761,-0.0114846574,0.040572118,-0.0080376435,-0.0407984182,-0.0160267949,0.0003442467,-0.0450980924,-0.0248605255,-0.0202375669,0.047684364,0.0144427046,0.0005063938,0.050464604,-0.0440959111,0.0360461436,-0.0034227674,0.0121877994,-0.0222419258,0.0286752749,0.0169077441,0.0541177094,-0.0121312253,0.0265577659,-0.0061141052,-0.0151539287,0.0114927394,-0.0266870782,-0.0449687801,0.0105875451,-0.0029600675,0.0443545394,0.0311160665,-0.0302432012,-0.0176028032,-0.023826018,0.0275761094,0.0106037091,-0.0157843325,0.0007839632,0.0689241067,0.0209326278,0.0193646997,-0.0388263874,0.0616825521,0.0823727176,0.0017366402,0.0625877455,-0.0030024985,-0.0142002413,-0.0250544958,0.010522888,-0.0382768027,-0.0124625908,-0.0047037797,0.0179745797,-0.0043360442,0.0150973545,-0.0176351313,0.0081225056,0.023033971,-0.0095126266,-0.0008718561,-0.0189282671,0.0270911846,-0.0461002737,-0.0630403459,0.0130849127,-0.0051240483,0.0289015733,-0.0279155578,0.0053584292,-0.058158759,-0.0246827193,-0.0087933196,-0.0353672504,0.0392143279,-0.001372946,0.036369428,-0.013311211,0.0153074889,-0.0464882143,0.0134486072,-0.0330396071,0.0277215876,-0.0011143188,-0.0002329917,-0.0328941271,-0.0696999878,-0.0129151884,0.0093105743,0.0438696146,-0.00150428,-0.0497857071,-0.0053301421,0.0263637956,0.0375332497,-0.0388910435,0.0079042893,-0.0316009931,-0.0252484661,0.0066919751,0.01049056,-0.004570425,0.0200274326,-0.0108461725,0.0101591935,0.0094722155,-0.040572118,0.0027782202,0.0080740135,0.0226137023,-0.0114119183,-0.0040046782,-0.0158570707,-0.0224197321,0.0366927125,-0.0678249449,-0.0207548216,0.0077668936,0.0254424363,0.0298552606,-0.0210781042,-0.0085427752,0.0177806094,0.0427057929,-0.0030792784,0.0025741474,-0.0094237234,0.0190737452,-0.0420915522,0.0030247243,0.0029822933,-0.002804487,0.0139658609,0.063105002,0.0126646431,0.0131334048,-0.0587083399,0.0029418827,-0.0887090787,-0.0034268084,-0.0442575552,0.0129636815,0.0000038556,0.0108380895,0.0159702208,-0.0072455984,-0.0065060868,0.0222742558,0.0385677591,0.0498180352,0.0098359101,-0.0355935469,-0.0451304205,-0.0260081831,0.0289015733,-0.0295158122,0.023793688,-0.0309544262,-0.0215468667,-0.0514021255,0.0209326278,0.0382768027,0.0080780545,-0.0097550889,-0.0613915958,0.0345913693,-0.0023013768,0.0055160299,0.005233157,-0.0417682678,-0.0165521316,0.0334275477,-0.0022973355,-0.0038511185,0.0088498946,0.0125353299,-0.0491391383,-0.019542506,0.0662731826,0.0795278177,0.0110078137,-0.0001852568,0.0215953588,-0.0561544001,-0.014006271,-0.0440312549,-0.0080295615,0.0296451263,0.0114523293,-0.0201244168,0.016794594,-0.0623291209,0.010522888,0.0578031465,-0.0045300145,0.0091974242,0.0547319502,0.0629433617,0.0105390521,-0.0187504608,-0.0316009931,0.014693249,0.0426411368,0.0110078137,0.0019144464,-0.0684068576,-0.0185403265,0.0363047719,-0.0426734649,-0.0022387404,0.0061545158,-0.0230824649,0.043481674,-0.014685167,0.0742259622,0.0448071361,0.0170693863,-0.007035464,0.0017447224,-0.0838598236,0.0127697103,0.0209326278,0.0321667381,0.0338801444,0.0318596214,0.0204961933,0.031390857,0.0092863273,-0.0082679838,0.0567686372,-0.0218378212,0.0386324152,-0.0667904392,-0.0335568599,0.0443545394,-0.007702237,-0.0124545088,-0.0451627485,-0.0452274047,-0.0218216572,-0.009084275,-0.0092620812,0.0388587154,0.0159217287,-0.0673723444,0.0218216572,-0.0800450742,-0.0244402569,0.0283196624,-0.0211912543,0.0213528965,-0.0028246923,-0.0013982025,0.0341387726,-0.0234219134,0.0056332205,0.0391819999,0.029434992,0.004574466,0.0028145898,0.0524366349,-0.0262991376,-0.0002674669,-0.0091974242,-0.0188636109,0.0278508998,-0.0467791669,0.0446778238,-0.0607773587,-0.0026408248,0.0326031744,-0.0306311417,-0.0456800014,0.0493977666,-0.0227430165,0.0214175526,0.0276892595,0.0044734399,0.0299522448,-0.0590639524,-0.0161076169,-0.0277862437,0.0124140987,0.0043481672,-0.0020164829,-0.0165844597,0.0113230152,-0.0036106762,-0.0035985529,-0.0071688187,-0.0083649689,0.0264284518,0.0121554714,-0.0042592641,-0.0197203122,0.042026896,-0.019542506,0.0262021534,0.0006879884,0.0040430683,0.0302108731,0.0455506891,-0.0126484791,-0.0819847733,0.0128990244,0.0017719994,0.0025822294,-0.0288854092,-0.0054837018,0.0548289344,-0.0219348073,0.0400225371,0.0048411749,-0.0708638132,0.0038733443,0.0211265981,0.0165844597,0.0477490202,0.0436756425,-0.0022003504,0.0562513843,0.0140386,0.0027580149,-0.0215953588,0.0309705902,0.0139254499,-0.0054756198,-0.0086155133,-0.0041784435,-0.0103450818,-0.0080336025,-0.010482478,-0.0178291015,0.024504913,0.0308897682,0.0082639428,0.0258303769,-0.0157115944,-0.0264607798,-0.006267665,0.0053382241,0.0248281974,-0.039828565,-0.0324738584,-0.0254262723,-0.0537297688,0.0107653514,0.0166006237,-0.0222095978,0.0048775445,-0.0246018991,-0.0503999479,-0.0229854789,-0.0297421105,-0.0289500654,-0.0603894182,0.019623328,0.0226621963,0.0241977945,0.0125838229,-0.0158166606,0.0190575812,0.028707603,-0.0135617564,0.0043279622,-0.0008890305,0.0221611056,0.0181038938,-0.0263637956,0.0166976098,-0.0365634002,-0.0120261582,0.0283681545,0.0131172407,-0.0078355912,-0.0001000159,-0.0091893421,-0.0133435391,0.0155257052,0.0047037797,0.0039440626,0.0074436096,0.0008865048,0.0037601949,-0.0503352918,-0.0162692573,0.0165521316,-0.0441282392,-0.0470054671,-0.0134890173,-0.0089953719,0.0154772131,0.0021700426,-0.0211912543,0.0148791373,-0.0098359101,-0.0361108035,-0.0133839501,0.0065990309,-0.0215468667,0.0602924302,-0.0452920608,0.0114765754,0.0154772131,-0.0005071515,-0.0070395051,-0.0117756128,-0.0211427622,0.0096338578,0.0347530097,0.022468226,0.0048815855,0.0453567207,0.01473366,0.0438372865,-0.014006271,0.0272204969,0.0085266102,-0.0170855504,-0.0409600586,-0.0080780545,-0.0326193385,-0.0078073042,-0.0191707294,0.0365957282,0.0090196189,-0.0089549618,-0.0218378212,0.0032853717,-0.0162773393,-0.0060817767,-0.0036591687,-0.0040834788,0.0012860635,0.0018851487,0.0177159533,0.0226621963,-0.028723767,0.0165682957,-0.0067040981,-0.0371453092,-0.0005344286,0.0299845748,-0.0322152339,0.0159863848,-0.0246180631,0.0122605385,-0.0164147355,-0.0005008373,0.0325385146,0.0181200579,-0.0159944668,0.0418975838,0.0202052388,0.0434170179,-0.0173603408,-0.0319404416,0.0214983746,0.0047361078,0.0056493846,-0.0318272933,0.0211589262,-0.0053180186,-0.0276892595,-0.0041541969,0.0174573269,-0.0401518494,-0.0219348073,0.0035985529,0.0147821521,0.0201567467,0.0009435847,-0.0113715082,0.0093105743,-0.0444191955,-0.027996378,-0.068600826,-0.0188312829,0.0105390521,-0.0324576944,-0.0011021957,0.0065020458,0.0173603408,0.0314878449,-0.0258142129,-0.0033358848,0.0534064882,-0.017505819,0.0257980488,-0.019639492,0.0189929251,-0.0124949198,0.0173280127,0.0057625342,-0.0322152339,0.0220641196,0.0568009652,0.0118160238,-0.0236158837,-0.0163743254,0.0089145508,0.0013547612,0.0174573269,0.025232302,0.0126808081,0.0344620533,0.0154529661,0.0128990244,-0.0118241059,-0.0215630308,-0.0061464338,0.0054675373,-0.0269941986,-0.0280772001,0.0308736041,-0.0103208357,-0.0431907177,0.0225490462,0.0057180827,-0.0264931079,0.0047037797,-0.021724673,-0.0406044461,-0.0089711258,0.0057342467,0.0227591805,0.0002569854,0.0041865255,0.0218216572,-0.0159540568,0.0309867542,0.0067243036,-0.0010951239,-0.0082356548,0.0182978641,-0.0136829875,-0.0276246015,-0.0536327846,-0.0036005734,-0.0574798621,-0.0292733498,0.0300492309,-0.0606157146,-0.0009632848,0.0384061188,-0.0229046587,-0.0276892595,0.0181200579,0.0116382176,0.0291440357,-0.0419299118,0.0528569035,0.0083326399,0.004574466,-0.0135698384,0.0110482248,-0.0166652799,-0.0330234431,-0.0107653514,0.0001304501,-0.0091489321,0.0176351313,-0.0276407655,0.0127939573,0.0332659036,-0.0162046012,-0.0102480967,-0.0357875191,0.0178129375,0.0054230862,0.0109027466,0.0200274326,-0.0082114087,0.0035945119,0.0169724002,-0.0227268524,0.0113310982,-0.0101753585,0.0218701493,-0.0119857471,0.0093105743,0.0231956132,0.0121312253,-0.0037965644,0.0124302628,0.0239876583,-0.0065707434,0.016075287,-0.0254101083,0.0069667664,-0.019607164,0.0318919495,-0.0002544597,-0.0083407229,-0.0061100642,0.0120584862,0.025135316,0.0134728532,-0.0363047719,-0.0176189672,0.0144992787,-0.024488749,-0.0046674102,-0.0103531638,0.0236158837,-0.0157600865,-0.0590316243,-0.0247150473,-0.0131334048,-0.0193646997,0.0067808782,-0.0013567818,-0.0409600586,0.0116867097,-0.1084940508,-0.0124706728,0.0164308995,0.0022710687,-0.0372422971,-0.002618599,0.0289500654,0.0247150473,0.0045098094,-0.0437079705,0.0145396898,-0.0194131937,-0.0417359397,0.0028408566,0.0088014016,-0.0256848987,-0.0008713509,0.0454537049,0.0107491873,0.0017810918,-0.0151943397,-0.0005723134,-0.0277054235,0.0353349224,0.0169400722,-0.0180715658,-0.029370334,0.0577708185,-0.0039319396,-0.0006566703,0.0147579061,-0.0056574666,0.0172148626,0.0331689194,-0.0010739084,0.0111694559,-0.000437696,0.0268002283,0.0234219134,-0.0155741982,0.0044289883,-0.0332335755,0.0421238802,-0.0225167181,0.0187827889,-0.0281418562,0.0032490024,0.0135617564,-0.0327486508,-0.0306311417,-0.0050674737,-0.0030893809,-0.014717496,-0.0007455733,0.030097723,0.0245857351,-0.0246503912,0.025878869,-0.0003091402,-0.0041360124,0.0123656057,0.0166976098,0.0313423648,-0.0393113121,-0.0023539104,-0.0032510229,-0.0172795206,-0.0001443412,-0.0004495665,-0.0089387977,0.0004119343,0.0181038938,0.0045017269,0.030178545,-0.0187504608,0.0453243926,-0.0070031355,-0.0230016429,-0.0146366749,-0.0140386,-0.0110401427,-0.0223065838,0.0102480967,0.0027681177,-0.0129394345,-0.0086155133,0.0013244534,0.0056978771,0.0103531638,0.0205123574,0.0109674037,-0.0297097825,0.0095287906,-0.0216923449,-0.0084538721,0.0106602842,-0.0213690605,-0.0045461785,0.0140628461,0.0096661858,0.004582548,0.0149842044,0.0128101213,-0.0298552606,-0.0002866618,0.0159378927,0.0049341191,-0.0060736947,0.0046229586,-0.0003306082,0.0187989548,0.0229369868,0.0002881772,0.027980214,0.0354319066,0.0220317915,-0.0037399896,-0.0167137738,0.0146528389,-0.0093105743,0.0112664411,-0.0033823568,-0.0481692888,-0.0051927464,0.0086963344,0.0140709281,-0.0097470069,-0.0224843901,0.0359168313,0.003479342,0.0201244168,0.0246018991,-0.0096257757,0.0223227479,-0.0056372616,-0.0226460304,-0.0065222508,0.0162530933,-0.02796405,0.0160267949,-0.0005374593,0.0101107014,0.0088903047,-0.0166491158,-0.0464882143,0.0022710687,-0.0206578355,0.0239876583,-0.0166652799,0.0482016169,0.0157277584,-0.0047765183,-0.0079446994,0.0185241625,-0.0115654785,0.0480399765,-0.0373069532,0.0143699655,-0.0081103826,0.0041865255,0.0286591109,0.0419299118,-0.0355612189,-0.0122039644,0.0281580202,-0.0158247426,-0.0301947091,-0.02935417,0.0153802279,-0.013973943,0.0135940844,-0.0389880277,0.0200597607,-0.0096500218,0.0379211903,0.0096823499,0.0098844031,0.0082477788,-0.0158004966,0.039957881,-0.0064535532,-0.0148710553,0.0210942682,0.0479106605,0.0531155318,-0.0148953022,-0.0005990853,-0.0211265981,-0.0216115229,0.02237124,0.0390203558,0.0152266677,-0.0062555419,-0.0062515009,-0.0180392377,-0.007378953,-0.027349811,0.0292248577,-0.0418329276,-0.0137557266,-0.0341387726,0.013303129,0.0013577921,-0.0451304205,0.0202375669,0.0183786843,-0.0127697103,-0.0127131362,-0.0418329276,0.0488158576,-0.0105875451,-0.0193646997,-0.0054473323,0.0143780475,-0.0010880521,-0.0229208227,0.0034005416,0.0142972264,-0.0150165334,-0.0477813482,-0.0044734399,-0.0351732783,-0.0064575942,0.0373392813,-0.0130606666,0.0605833866,-0.0562190562,-0.0007238527,-0.0374685936,0.0090034539,-0.0036813945,-0.017538147,0.0197203122,-0.0162046012,0.0182817001,-0.0165359676,0.0319081135,0.0060696537,0.0049462426,-0.0103046717,-0.0060494486,-0.0264446158,-0.0316656493,-0.0143861296,-0.0254747644,0.0070758746,0.0446131676,0.0426734649,0.005580687,0.018912103,-0.0254262723,0.0020094109,0.0280448701,0.018879775,0.0252969582,-0.0065262918,-0.0049947351,0.0240361523,-0.0153155709,0.0222095978,-0.0145073617,-0.0310514104,0.0102319326,-0.0264769439,-0.0002233942,-0.0234219134,-0.0333952196,-0.0050391867,0.0186534766,-0.0055119889,-0.0239068381,-0.0134405242,-0.0065586204,-0.0220479555,-0.0140870921,-0.0010688571,-0.0540853813,-0.0337831602,-0.0023256231,-0.0207871497,-0.0211750902,0.0184918344,-0.0165117215,-0.0066394415,0.0137557266,-0.0166491158,-0.0359168313,-0.0129636815,0.0106926123,-0.0040046782,-0.0113472622,0.0145396898,-0.0067808782,-0.0232117772,-0.0381474905,0.0047967238,-0.009811664,0.0212074183,0.0268972144,-0.0275599454,-0.0111613739,-0.0113795903,0.0185726546,0.0010355185,-0.029451156,-0.0290632155,-0.0193000436,-0.0233572554,0.0087286634,0.0559280999,-0.0254262723,0.0223550759,0.0221126135,0.0269457065,-0.0136829875,-0.0177806094,0.0238745101,0.0293380059,0.0327324867,0.0169885643,0.0135051813,0.0008455892,-0.0020811395,0.034882322,-0.0208518058,0.010555217,-0.0275437813,-0.0051240483,-0.0451950766,0.0044047418,-0.000401074,-0.0296612903,0.0351086222,0.0040491298,-0.0075203897,0.0502383038,0.0159540568,-0.0115493145,0.0019801133,0.0219832994,0.0075971698,0.0146124288,0.0095126266,0.0193970297,-0.0158974808,0.0071324492,0.0085589392,-0.0193808656,-0.0201567467,0.0083407229,0.0862521231,-0.0253939442,0.0078557972,-0.023826018,0.0276892595,-0.0075729233,0.0104420669,-0.0034409522,-0.0067889602,0.0112583591,0.0081790807,0.0065262918,-0.0109189106,-0.0093186563,0.0161641911,0.0189767592,-0.0319404416,-0.01049056,-0.016810758,0.0032490024,0.010506724,0.0087933196,0.0087771555,0.0102965897,-0.0109997317,-0.0264122877,-0.0037682769,0.0052089104,-0.0267194081,0.0001934652,-0.0140790101,-0.0077709346,0.0012355504,0.0101591935,0.0048896675,0.0099086491,-0.0118402699,-0.0055564404,-0.007702237,0.0032348586,-0.0057665752,-0.0033924596,0.005241239,-0.020997284,-0.0128182033,0.0218216572,-0.0064171837,-0.0413156711,0.0043804958,-0.0099167312,0.0065384153,-0.0278185718,0.0178452674,-0.0174249969,0.0083245579,-0.0034126649,-0.0062434189,0.0144669507,-0.004566384,0.0404428057,-0.0204638653,-0.0166814458,-0.0021154885,0.0082275728,-0.0046350816,-0.0011112881,0.0028226718,-0.0129071064,0.0274306312,-0.0402811617,-0.0200597607,0.0060817767,0.0292410217,0.0230178069,-0.0170855504,0.0282711703,-0.0018518101,0.0004503243,0.0016750143,-0.01473366,-0.0080699725,0.0176512972,-0.0004745706,0.0121393073,0.0100056343,0.0291117076,-0.0091974242,-0.0005114451,-0.0137233976,0.0106360372,0.0078355912,0.0130929947,0.0013709255,0.0214822087,0.0007935608,-0.0226945244,-0.0189444311,0.0061262283,0.0332659036,-0.0137961367,0.0100945374,-0.0004316344,-0.0080416845,-0.0021862069,-0.0001425732,-0.03074429,0.0029822933,-0.0256364066,-0.0097308429,0.0149033843,-0.0172956847,0.0070839566,-0.0013577921,0.0068212887,0.0195101779,-0.0166167878,0.0057584927,0.0018730256,-0.0104097389,-0.0440959111,-0.0121554714,0.0361431316,-0.0043239212,-0.0331689194,-0.0028246923,-0.0008996382,0.0140790101,-0.0321829021,-0.0010557238,-0.0112745231,0.0281580202,0.026606258,0.0349793099,-0.0140224351,0.0311645605,-0.0090519469,0.0175704751,-0.0198819544,0.0101349475,0.01049056,-0.0295158122,-0.0093429023,-0.010482478,-0.0340417847,0.0223389119,0.0108219255,-0.0014871055,0.0073425835,0.0209811199,0.0201729108,-0.0105956271,0.0013375868,-0.0049502836,0.0053220596,-0.0458093174,0.0121877994,-0.0122605385,-0.004901791,-0.0001760381,0.0058029443,-0.0146528389,-0.0129071064,-0.0214013886,-0.0000767799,0.018249372,-0.0100702904,-0.0270911846,0.0027054814,-0.0178452674,-0.006267665,0.002452916,0.0053503471,0.0128586134,-0.0186373126,0.0152832428,-0.0362077877,0.006279788,-0.0066394415,-0.0213690605,0.012624233,-0.027980214,0.0318596214,-0.0060413661,0.0232117772,0.0057584927,0.0469084829,-0.0694413632,-0.0064737583,0.0185564905,-0.0425764769,0.0176512972,-0.0189929251,0.0088822227,0.0206255075,0.0240846444,0.0260566752,-0.0071122441,0.0152347498,-0.0411217026,0.0135940844,-0.0425764769,-0.0141194202,-0.0297259465,-0.0106279552,-0.0199951045,0.0146205109,0.0095934477,-0.0218701493,0.0227915086,-0.0049341191,0.0041784435,-0.0301623791,-0.0115250684,-0.0037460511,0.0260890033,0.0099490592,-0.017521983,0.0215468667,-0.007702237,-0.0120180761,-0.015364063,-0.0038389952,0.0201890748,-0.0097146789,-0.0292086937,-0.0164389815,0.0222257618,-0.0247150473,-0.0231471211,-0.0107330224,0.0042673466,0.0034086236,-0.0065626614,0.0353995785,-0.0310675744,-0.030825112,-0.0214660447,-0.0457446612,-0.0012618172,-0.0174734909,-0.0138688758,0.0221126135,0.0065869079,-0.0053220596,0.0069303969,0.0249575097,0.0020387087,0.0239068381,0.0044734399,-0.016810758,-0.0201567467,0.0082841478,-0.0035500603,-0.0110805528,0.0001586111,0.0030994837,0.0205123574,-0.0491068102,0.0023094588,-0.0162692573,0.0055241124,0.0006662678,0.0153478989,0.0165440496,-0.0063080755,0.0087044165,0.0353349224,0.0035318758,0.0166006237,0.0184110142,0.000690514,-0.0190252531,-0.0414126553,-0.0036046146,0.0235673897,0.0165682957,-0.001064816,-0.0099813882,-0.0071647777,-0.0470054671,-0.0369513407,-0.0339448005,0.0010769392,-0.0051159663,0.0295481402,-0.0021457963,0.0181200579,0.0151216006,-0.0102157686,0.0311160665,-0.0179907437,0.0202052388,0.0119695831,-0.0111452099,0.0305341557,0.0205285214,0.009092357,0.0446454957,0.0336215161,-0.0138769578,-0.0120019121,0.007710319,-0.0193808656,-0.0114846574,0.0162692573,0.0035359168,-0.0262829736,0.0019669801,-0.0233895835,-0.0078153862,0.0232764352,-0.0327809788,0.0029034929,-0.0119534191,0.0142164063,-0.0032490024,0.0065141688,-0.0121473894,0.0037985849,0.0103127537,0.0155337872,-0.0243755989,0.0130768307,0.016148027,0.0361108035,-0.0109431576,0.0075890874,-0.0099167312,0.0105956271,-0.0280933641,0.0352702625,0.0176836252,0.0498826914,-0.0189767592,0.0082922298,-0.0347853377,-0.0188312829,0.0378888622,0.0089064687,-0.0215307027,-0.0065667024,-0.017505819,-0.0337185003,0.0020265854,-0.032991115,0.0542470254,0.0040026577,-0.008437708,-0.0368866846,0.0038632415,0.0016598604,-0.0021639811,0.0028469181,0.0105794631,0.0040693348,0.0226621963,-0.010555217,0.0080820955,0.0147498241,0.0103046717,-0.0028509591,0.0046067946,0.0121716354,-0.0065707434,-0.0219509713,-0.0041360124,-0.0177806094,-0.0034975267,-0.0131899798,-0.0199789405,0.0008344764,0.0061464338,-0.0047320668,-0.0307604559,-0.0310029183,-0.0355612189,-0.008413461,0.0013204124,-0.0086478423,-0.0051321303,0.0415419713,-0.0055402764,0.0156065263,-0.009811664,0.0429644175,-0.020350717,-0.0261698253,0.0224197321,-0.0001560855],"46":[-0.0137382243,-0.0032425858,0.0475934036,-0.016543651,0.0551049523,0.038622126,-0.0086063473,-0.0186268128,-0.0387133583,0.048840262,0.0026799801,-0.0158746056,0.0024366912,-0.0258190427,0.0689724237,0.0310953725,-0.0166500881,0.0058275312,-0.0201929845,0.0049570128,-0.0032863019,0.0367670469,0.0130007546,-0.0039078291,0.0040598847,-0.058632642,-0.0124381483,0.0634984225,0.0122480793,-0.0297116656,-0.0086063473,-0.0404467918,-0.0570208542,0.0071998332,0.0306848213,0.0383788347,0.0325703099,-0.0197824351,0.011943968,-0.002400578,-0.0266249366,0.0305783823,-0.0210292898,-0.0019035462,-0.0031532531,-0.0537668616,-0.0550745428,-0.0147037776,-0.0075343554,0.0701888651,-0.0189157184,0.0382267796,-0.0368886888,-0.0041739265,0.0237358809,-0.0058883536,-0.0004535534,0.0233101249,0.0050824587,-0.0027331996,0.0008904756,-0.0235230029,0.0171062555,0.0461032614,-0.0133960992,0.0106819067,-0.0089028561,0.0554090627,-0.024313692,0.0395952798,0.0265337043,-0.002400578,0.0233253296,-0.0401426814,-0.0039230348,-0.0431533828,-0.0216831304,0.049965471,-0.0062760953,0.0154184382,-0.0132972626,-0.0067132553,-0.0764535591,0.0356418341,0.015243575,-0.0436703712,-0.0028909573,-0.0056830784,0.0257582199,-0.0075913761,-0.0354289562,0.0487490296,0.0412678905,0.044856403,0.012476163,0.0049798209,-0.0332697667,0.0230516307,-0.0303350929,-0.0003867914,-0.0042727627,-0.0288145375,-0.0275828876,-0.0348815545,0.0489923172,-0.0081805913,0.0152283693,0.0088192252,0.0006467115,0.0414503589,-0.0704321563,-0.0267161708,-0.0539189167,0.0040978985,-0.0051584863,-0.0087127862,-0.0500262938,0.0014872939,0.0193718839,-0.027293982,-0.0306696165,0.0042499541,-0.0198584627,0.0363412909,0.0339084007,-0.0172431059,0.0109251952,-0.0650798008,-0.0235077962,0.0183227006,0.03819637,-0.0176080391,0.0450084582,-0.0164068006,-0.0088800471,-0.0224434081,-0.0405380242,-0.0281759035,-0.0133048659,0.0135481544,0.0174407773,-0.0307304375,0.0329048336,0.0055082142,-0.0418761149,0.0316275656,-0.0365237556,0.0523983613,-0.0090244999,-0.0130843846,0.0213486068,0.0214854572,-0.0183987282,-0.033999633,0.0381659567,0.0144300768,0.0439136587,0.0167261176,-0.0133580854,-0.0355506018,0.0006134493,0.0280086435,0.0063293148,0.0151523417,-0.0178665332,0.0086899782,-0.0315667428,-0.0666003525,-0.070128046,0.0163763892,-0.026655348,-0.0190221574,-0.0048923893,0.0095262835,0.0389566459,-0.0184443444,-0.0030639204,-0.0798596069,0.0423931032,-0.0341212787,-0.0700064003,-0.0125978068,-0.0233405363,0.0212421678,-0.0103701921,-0.0046909153,-0.0511210971,0.0027598094,0.0203906577,0.0239031408,-0.0554090627,0.0645932257,0.0344862118,0.0303959157,0.0514252074,-0.0248002689,0.043305438,0.02154628,-0.0145517215,-0.005280131,0.0458295606,0.0027122919,0.0345774442,-0.0419977605,-0.0336651132,0.0208316185,0.0155400829,-0.0048695807,-0.0445522927,-0.043305438,-0.0146885719,-0.0189157184,0.0256669857,-0.0115942396,-0.0446739383,0.0067094536,-0.0434574932,-0.0344558023,-0.0256973971,0.0012981747,0.0152359717,0.0673302263,-0.0087431977,-0.0239791702,-0.024100814,0.0127574652,0.0525504164,-0.0374969132,0.0182314683,0.0073746969,0.0094274478,-0.0130159603,-0.0033642303,-0.0293467324,0.0154260416,0.0066448301,0.0156769324,-0.0255149305,-0.0018132632,-0.024952326,-0.0060594161,0.0001815164,0.0126130125,0.0193566792,-0.01856599,0.01873325,-0.0437920168,-0.0374665,0.023675058,0.0501479395,0.0263512377,-0.011837529,0.0114421844,-0.0278565865,-0.0215766914,-0.0559564643,-0.0470155925,0.0291946772,0.0099520395,-0.0163459778,0.0267161708,-0.0416328236,-0.0168173499,0.0175168067,-0.0512123294,0.0103701921,-0.0073252791,-0.0459512062,-0.0331481211,-0.015327205,0.037983492,0.0551049523,0.0286624823,-0.0606701858,-0.0121948598,-0.0150382994,0.0284343995,0.0066296244,0.0010358788,0.0028263335,-0.0039876583,-0.0399298035,-0.0060518133,0.0355506018,0.0163003616,-0.0108643733,-0.01856599,0.0322053768,0.0597274415,-0.0235230029,0.0075913761,0.0145289134,0.0289209764,-0.0326919556,0.010560262,-0.005162288,0.0015167547,0.0202538073,-0.0466202497,-0.0233557411,-0.0098075867,-0.0308824945,0.009282995,-0.0147341881,-0.0024937119,0.026655348,0.0017229801,-0.016391594,-0.0233861525,0.024845887,0.00989882,-0.0293771438,0.0135633601,-0.008963678,-0.0225802585,0.0042917696,0.0868541598,-0.003858411,0.0052079046,-0.0948826969,-0.0414807685,-0.1036411002,0.0014217199,0.0115942396,0.0169846117,-0.0026115552,0.0213029906,0.0010349285,0.0058427369,-0.0147189824,-0.0034326552,0.0012601608,0.0457991473,0.0528241172,-0.0309737269,-0.0643499345,0.0084010726,0.0344862118,-0.031718798,0.0499350615,-0.0246482138,-0.0198432561,-0.0681817308,0.0415415913,0.001665009,0.0249979421,-0.0586022325,-0.0159962494,0.009389434,-0.0049950266,-0.0511515066,-0.012582602,0.0058085243,0.000351391,0.0290578268,0.0127118491,-0.0153728221,-0.012453354,-0.0357330665,-0.0109556066,0.0058731479,0.0284343995,0.0458903834,0.0070021609,-0.0190221574,0.0109784147,-0.0397169255,-0.0160874836,-0.0421194024,-0.0117615014,0.02154628,-0.0163459778,-0.0313234553,-0.021333402,-0.0294075552,0.0072302441,0.0808327645,0.0176232457,-0.0119591737,0.0533411056,0.0390782915,0.004588278,0.0114193764,-0.0180033837,0.0534931645,0.0336346999,0.0197824351,0.043518316,-0.055500295,-0.0080817556,0.0192198288,0.0060518133,-0.0001842486,-0.0257278085,-0.0266705528,0.0055500297,-0.0316275656,0.0184899624,0.0485969707,0.0055120159,0.0234013572,0.0131528098,-0.0625860915,0.0082490165,-0.0017182283,0.0462553166,0.0017372353,0.0432142019,-0.0014549821,-0.0230060127,-0.0193718839,0.0182010569,0.0495701283,-0.0347903222,0.0304567385,-0.0574466102,-0.0622819774,0.0712836683,-0.0021705937,0.026655348,-0.0235382076,-0.0136165796,-0.0248154756,-0.0104994401,-0.0237662923,0.0693373606,0.0160418674,-0.0356114246,0.0008334548,-0.0656272024,-0.0014967974,-0.0231428631,0.0217743628,-0.0142628159,-0.0091385422,0.0043525919,0.0168477613,-0.0552570075,0.0577507205,0.0433966704,-0.0039572474,0.015859399,-0.021652719,0.0353377238,-0.0245721862,-0.0176536553,-0.049478896,-0.0256517809,0.0132668521,0.003316713,0.032144554,-0.0365845785,-0.037557736,0.029316321,-0.008195797,-0.0402643234,0.0275524762,-0.0073366831,0.0231732745,-0.0177600943,-0.0432142019,0.0318404436,-0.088374719,0.018778868,-0.0176688619,-0.0130615765,0.0431837924,0.0414807685,0.0096707363,-0.0138218552,0.0006067969,0.025165204,-0.006184862,-0.0039724526,0.0014188689,0.0364325233,0.0129551375,0.009473064,0.0037215611,-0.0450388715,0.0079981247,0.0008743198,0.0194327068,0.048201628,0.0129475351,0.0068425024,0.0151219303,-0.0033015073,0.0113205398,0.0047023199,-0.0454342142,0.0013551957,0.0540709756,-0.0199496951,-0.003379436,-0.0060936287,-0.0740814954,0.0019444111,0.0180946179,-0.016543651,0.0382876024,0.0200713407,0.0028168301,0.0752979368,-0.0149622718,0.0312322211,-0.0335738771,-0.004842971,-0.0054017752,-0.0412983038,-0.015965838,0.0044248183,0.0193718839,0.024313692,-0.007686411,0.0177448895,-0.0002207182,0.015456453,-0.0176232457,-0.026229592,-0.0168933775,-0.0475325845,-0.0356722474,-0.0035809095,-0.0101193003,0.0176232457,-0.044430647,0.0048239641,-0.0175928343,-0.0030810267,0.0130615765,-0.0270354878,0.002942276,-0.0054359878,-0.0426059812,-0.0055880435,-0.0232036859,-0.0342733338,-0.039321579,0.0227019023,0.0419977605,0.0436703712,0.0177144781,0.0029289711,0.0004447626,-0.0028985599,-0.0052231103,0.001088148,-0.01268904,0.0321749672,0.0114878016,-0.0309129059,0.027400421,-0.0035219879,0.0176232457,0.0485361516,0.0031057359,0.0105450563,0.0106286872,0.0101573141,-0.0073822998,0.0010301768,0.01268904,0.0105070425,-0.0070477775,0.0274764486,0.0065535968,-0.0138750738,-0.0323270224,0.001870284,0.0115410211,-0.0189765394,0.0076027806,0.0253780801,-0.0283431653,0.0232645087,-0.0420889929,-0.0137914438,-0.0044020098,-0.0035390942,-0.0167109109,-0.0181402341,-0.0266401432,0.0293619372,-0.0294987876,0.0116626648,0.026336031,0.0411462486,0.0299397483,-0.0416024141,-0.0085911416,-0.0003784759,-0.015859399,0.0032825004,0.0152055612,0.0242528692,0.0022922382,0.0142248021,-0.0451605171,0.040811725,0.0268226098,0.0087584034,0.0075761708,-0.0245569814,-0.0065611997,0.0267921984,-0.0040560835,0.0140423356,0.0266249366,-0.0032920039,-0.0117615014,0.0054207826,-0.0089484723,-0.0583893545,-0.0245873909,0.0053523574,-0.0284039881,-0.0059947926,0.0185051672,-0.0405076146,-0.0391695239,-0.008218606,-0.0021743951,-0.0407509021,0.0080209337,0.0388958231,-0.0020983673,-0.0232645087,-0.0273091868,0.0005882651,-0.0000573178,0.0038222978,0.0714053139,0.0004782624,-0.0067474674,0.0412983038,0.0471980609,0.0356114246,0.0036626395,-0.0153119992,0.0175472163,0.0512731522,-0.0140575413,-0.0100660808,0.0259406865,-0.0269594584,-0.0231580697,0.0449476391,-0.0265184976,-0.0121036265,-0.028784126,-0.0113357455,0.0779741183,0.0186876338,0.0029289711,-0.0195999686,-0.0057058865,-0.0318708569,-0.0310041383,-0.0199953131,-0.0435791388,0.0158746056,-0.035064023,0.0033680317,-0.0288753603,0.0148710385,0.0369191021,-0.0089256642,0.0164828282,0.0258950703,-0.0207099747,0.0020033326,0.0014245709,0.0299093388,0.0304415319,-0.0127878767,0.0201169569,-0.0203754511,-0.0025051162,0.0766968504,-0.0123317102,-0.0134569211,-0.0213638134,0.0290426202,-0.0064813704,0.0089712804,0.007982919,0.0391391143,0.0310801659,0.007716822,0.0065231854,0.0070135649,0.0180337951,-0.0145213101,-0.00691853,-0.0000652176,0.0256061647,0.0447347611,-0.0358243026,-0.0520334281,0.0174255725,-0.0067398646,-0.0682425573,-0.0404163823,-0.0167109109,-0.0044400236,0.0167565271,-0.0043411874,0.02171354,-0.0311105773,-0.0269442536,0.0116474591,-0.0386525355,0.0317796208,-0.0062494855,-0.0140195275,-0.0055766394,0.0258038361,-0.0176536553,-0.0058161272,-0.0579940081,-0.0125217792,-0.0326311328,-0.0301374216,0.0303350929,-0.0151903555,0.0265641138,0.0482320376,0.0108947847,-0.0319012664,0.0019063972,0.0200561341,0.0272179544,0.0024575987,0.0334522352,-0.0006628674,-0.0024138829,0.0042157415,-0.0075723692,0.0014131668,-0.0109327985,0.0436399579,-0.0229603965,-0.0430317372,0.008408675,-0.0541317947,0.0059073605,0.0166196786,0.0179425608,-0.0107959481,-0.0033338191,0.0154488496,-0.0083706612,-0.0039724526,-0.0022086077,-0.019098185,-0.0419977605,0.0101497117,0.0190677736,0.0277501475,-0.0245113634,0.0089104585,-0.0334826447,0.0259863026,-0.0014407269,0.0283887815,-0.0294075552,0.0175776277,-0.0092982007,-0.0406292565,0.0054549947,-0.0083934693,0.0024499961,-0.0050710547,0.0618258119,-0.0032501887,0.0087431977,-0.0160570722,0.0232340973,0.0050900616,0.0032520893,-0.0197672285,-0.0074963416,-0.0170606393,0.0184139349,0.0187636614,-0.0058161272,0.0197672285,-0.0256821923,-0.0161483064,-0.0300918054,-0.012453354,-0.0125217792,0.035702657,0.0106438929,-0.0053637614,0.0050330404,-0.1176302209,-0.0526720621,0.0401426814,0.0020394458,-0.0303655043,-0.0095110787,0.0225650519,0.011176087,0.0206795633,-0.0301374216,-0.0312322211,-0.0482320376,-0.0045844764,0.0267921984,-0.0166652948,0.0103321783,0.0337563455,0.0222609416,0.0358243026,0.0409333706,-0.0103017678,-0.0017866534,-0.0346686803,0.045707915,0.0322053768,-0.0107427286,-0.0245569814,0.045495037,0.0098912176,-0.0157529619,-0.0064927745,0.0034212512,0.0261383597,0.0044590309,-0.0082718255,0.0215006638,0.0024271877,0.0048391698,0.0077662403,0.0055842423,-0.01471138,-0.0567167401,0.0272331592,-0.0332393572,0.0477758721,-0.0070135649,0.0173495449,0.0333305895,-0.0190829784,0.0072644567,0.0235230029,-0.0013466425,-0.0146581605,0.0037519722,0.0173951611,0.0139282933,-0.0315363333,-0.0199649017,-0.0243593082,-0.0026343635,0.0047783474,-0.0067550703,0.0166500881,-0.0551049523,0.0005383719,-0.0130615765,0.0174255725,0.0037538728,-0.001318132,-0.0125749987,0.0006980303,0.0260927416,0.0092753917,-0.0101497117,0.0163763892,0.0246025976,0.0108339619,-0.026655348,0.0159202218,-0.0027579085,-0.0078612752,-0.0046871142,-0.0376185589,0.0105906734,0.0098608062,0.0017457885,-0.0176080391,0.0030221052,0.0036265263,-0.0036930505,0.0396256931,0.0036683416,-0.003347124,-0.0015414638,0.0075913761,0.0200409293,-0.0034687684,-0.0011689275,-0.0026400655,-0.0128030824,0.0240856074,-0.0061164368,0.0059643812,0.0053219465,-0.012901918,-0.0092297755,-0.0004414364,0.0041435151,0.0086823748,0.0033262165,0.0006871013,0.0161026884,0.0261535645,-0.0051584863,0.0030886296,0.0200561341,0.0165588558,-0.0050786571,0.0004321705,-0.0346686803,0.0254084915,-0.0304263271,-0.0302286539,0.0291946772,-0.0073062722,0.0079449052,0.0331481211,-0.0089560756,0.0099900533,-0.0045312573,0.0157073438,0.0412070714,-0.0053713643,0.0391695239,-0.0081653865,-0.0230212193,0.0117082819,0.0057629077,0.0053029391,0.0169542003,0.0077054179,0.0254997257,0.0097771753,0.0219264179,-0.0038755173,-0.0061012311,-0.003385138,-0.0055310228,-0.0341516882,0.0337867551,0.021333402,-0.0445827059,-0.0203754511,0.0353985466,-0.0020831618,0.0608830638,-0.0456166826,-0.0125978068,-0.0175168067,0.0117919128,0.0053143436,0.0356114246,0.0102561507,-0.0137838405,0.0273548029,-0.0140347322,-0.0275372714,-0.0212117564,-0.0197824351,0.014414872,0.0121872574,-0.0128334928,0.0107655367,0.015350014,0.0303046834,0.0171974897,0.0047137239,0.007142812,-0.0043601943,-0.008089358,-0.0295596104,0.0059415731,0.0068995231,0.0672085807,0.0375273228,-0.0066790427,-0.022291353,-0.0104766311,-0.0080285361,0.0169694051,0.0263968538,0.0070059621,0.0166348834,-0.0007959161,-0.0059871897,0.0143692549,-0.0016003853,0.0395648703,-0.0149470661,0.0159354284,-0.0509386286,0.0072796624,0.0022010049,-0.0361892357,0.011069648,0.0371015668,-0.0083858669,0.0071504149,-0.024313692,0.023887936,0.021226963,0.010879579,0.0058009215,-0.0195543505,-0.0065041785,0.0239487588,0.0256517809,0.0249827355,-0.0229451917,-0.0329048336,-0.0313842781,-0.0480799824,-0.019311063,0.0133352764,-0.0311409887,0.0439136587,-0.0003136147,-0.0146657638,-0.0120960232,0.0043107765,0.0036436324,0.0026020515,0.0173495449,-0.0042955708,0.0208772346,0.0236446466,0.0313538648,0.0239335522,-0.001514854,0.0004286068,-0.0058427369,-0.0183379054,-0.0083554555,-0.0018313198,-0.0210901126,-0.016604472,0.0381659567,0.0191133898,0.0275220647,-0.0028529433,0.0214702524,0.0124837654,0.0375273228,0.0061506494,0.0198888741,0.016437212,-0.008621553,0.0100432727,-0.0240704026,-0.0077700415,-0.018839689,0.0355810113,0.0021173744,-0.0107275229,-0.0033509254,0.0140803494,-0.0248762965,-0.0117615014,-0.0009931131,0.0048961905,-0.0185811948,0.0223521739,0.0147722019,-0.007450725,-0.0009403689,0.0094426535,-0.0395952798,-0.0269138422,0.0137686357,-0.0254389029,-0.0136621967,-0.0092221722,-0.009070117,-0.0213790182,0.0383788347,-0.0169998165,0.0051812949,-0.0223673806,0.0200105179,-0.0287993327,-0.0225042291,0.0091537479,-0.024100814,0.0145441191,-0.0395648703,-0.007462129,0.002868149,-0.0014967974,0.0171974897,-0.0117538981,0.0053257477,-0.0176536553,0.0226410795,0.0147189824,0.011518212,0.0017115759,-0.0059453743,-0.0302438606,-0.028677687,0.0252260249,-0.0092982007,0.0061088339,0.0232949182,0.0498438291,-0.0268226098,0.0003316713,0.0047973543,0.01471138,0.0288297441,0.0415111817,-0.0070477775,-0.0072948677,0.0261687692,0.0390782915,-0.0279630255,-0.0079601109,0.0106134815,0.0081425775,-0.0056982837,0.0215766914,-0.0025089176,0.0072758608,0.0140955551,0.0232036859,-0.016285155,0.007142812,0.0041663237,-0.0019729214,0.0095947087,0.0062646912,0.012476163,0.0072530527,0.0105298506,0.014817819,-0.0015024994,-0.0258646589,0.0299093388,0.0105982758,-0.0047935531,0.0253324639,0.0682425573,-0.0086747725,0.0070971954,0.0167413224,0.0056184549,-0.0047213268,-0.0180794112,-0.0048277657,0.0184139349,0.0509386286,-0.0085911416,0.0232036859,-0.0308520831,0.0230668355,-0.022078475,-0.0109784147,-0.026336031,0.0134949349,0.0183227006,0.0017933059,0.0292859096,0.0344862118,-0.0218808018,-0.0088116229,-0.0085531278,-0.0205275062,0.0049532116,-0.0092601869,-0.0090244999,0.0024233863,-0.0010928997,-0.0185507834,0.0247242413,0.0240399912,-0.0143844606,-0.0008633907,-0.0220480636,0.0008424831,-0.0040522818,-0.0041055013,-0.0165284444,-0.0350032002,0.007610383,0.0168173499,-0.0075305542,0.0376185589,-0.004162522,-0.0187028404,0.0174255725,-0.0528849401,-0.0231884792,-0.0030886296,0.0196912009,-0.0130539741,0.0041587208,0.0149698742,0.0347903222,0.011518212,0.0009627021,0.0255909581,-0.0107427286,0.01085677,-0.0089028561,0.0056944825,-0.0141183631,-0.0334218219,0.0276589151,-0.0111000594,0.0052953367,-0.0507257506,-0.0188701004,0.026761787,0.0144908996,0.0153348083,0.0395952798,0.0208924413,0.0203298349,0.0110772513,0.0160266608,-0.0263512377,-0.0109936204,0.0263056196,-0.0191133898,0.029954955,-0.0265945252,0.0030506155,0.0004015218,-0.0066486313,0.021226963,0.0139282933,0.003385138,0.004002864,0.0084466888,0.0179577675,0.0087964172,-0.0178513285,-0.0309281107,-0.0021078708,0.0220176522,-0.0561693422,0.029103443,0.0225042291,-0.0136241829,0.0171062555,0.0158441942,-0.0118907485,0.02171354,-0.0268226098,-0.0270963088,0.0087508,-0.0134949349,0.0178513285,0.009176556,0.0058123255,0.0264728814,0.0278717931,-0.0270354878,-0.0163155664,-0.0040940973,-0.0392303467,0.0385004804,0.0180794112,-0.0144756939,-0.0100812865,0.0186116062,0.0089332666,0.0338779911,-0.024313692,-0.0175472163,0.0227779299,0.0291642658,-0.006120238,0.0481712148,-0.0131984269,0.013646991,-0.0069869552,0.0058503393,-0.0259102751,0.0176080391,0.0126510262,-0.0364933461,0.0099064233,-0.0223065577,-0.0012896216,0.0297876932,-0.0173343401,0.015965838,0.0150078889,0.0109784147,0.0171670783,-0.0219568294,0.0157833714,0.0343037434,0.0103853978,-0.0061050327,-0.0336651132,0.0203602463,-0.0230516307,-0.0026514695,0.0046224906,-0.0085455254,0.0085987449,-0.0173191335,-0.0109784147,0.0111152651,-0.0156769324,0.019204624,-0.0168477613,-0.0318708569,0.0146885719,-0.0004682837,0.0079449052,0.0087736081,-0.0062646912,0.0220480636,-0.0052079046,-0.0182010569,-0.0068995231,-0.016285155,-0.0043944069,0.012476163,-0.0023530605,0.0068995231,0.0197064076,0.0177753009,0.0057857158,-0.0153956302,-0.0099596418,0.0058503393,-0.0148938466,0.0167109109,-0.0150459027,-0.0072758608,0.0196912009,0.0155248772,0.0221392959,0.0423018709,0.0043259822,-0.0438224263,0.0109784147,-0.0441873595,-0.0109784147,-0.0158137828,-0.0158441942,0.0200105179,0.0230212193,-0.01375343,0.0092221722,0.0123089012,-0.0025412294,0.0057895174,-0.0164068006,-0.0145593248,0.0182618778,0.0221392959,-0.0073518888,0.0001104779,0.0424539261,0.0124913678,-0.0404163823,-0.010028067,-0.0136241829,0.018778868,-0.0386525355,-0.0043868041,0.0105678644,0.0326007232,-0.0092449812,0.0325094871,-0.0054702004,-0.0151447384,-0.0036474338,0.0178817399,0.0175928343,-0.0143388435,-0.0287385099,0.0181858502,-0.0257886313,0.0370103344,-0.0305175614,-0.0241768416,0.0068196938,0.0165892672,-0.0062722936,0.048840262,0.0195391458,0.0064661647,-0.0025773426,0.0279934369,0.0195391458,-0.0636200681,0.0050786571,-0.0007854623,-0.0036816464,-0.0315059237,0.0229299851,0.0263816472,-0.0015576197,-0.005280131,-0.0177600943,-0.0194935296,-0.003060119,0.0202994235,-0.034212511,-0.0083326474,0.0138902795,0.0491139628,-0.0305175614,-0.0303959157,0.0273243934,-0.0301982444,0.0033490248,0.0174407773,-0.0005564285,0.013327674,0.0049304031,0.0192958564,0.0101649174,-0.004227146,-0.0066106175,0.0012972244,-0.0154184382,-0.0371623896,-0.0162699502,0.0193566792,0.0219112132,-0.0168325566,-0.0005407478,-0.0094654616,0.0219872408,-0.0036436324,0.0177600943,0.0113737592,-0.0059149633,0.0107047148,0.001224998,0.0131680155,0.044856403,-0.0036873484,0.0007312924,0.0076179858,0.011282526,0.0005184146,-0.0172583107,0.0194479115,-0.0206035357,-0.0075153485,0.0128563019,0.003098133,0.0013209831,0.0364629366,-0.0037006533,-0.0045426614,-0.0170302279,0.0092373779,0.001268714,0.003092431,0.0436399579,0.0012211966,0.007462129,0.0244505424,-0.0097771753,0.0156769324,-0.02346218,0.0451605171,-0.0136621967,-0.0080513442,-0.0123165045,-0.0008743198,-0.0143844606,0.0389870591,0.0131071936,0.0157377552,-0.02452657,0.0141411712,-0.0146809686,-0.0012943734,0.0120275989,-0.0089484723,-0.0126130125,-0.0171670783,0.0099596418,-0.0465594269,0.0094350502,-0.0084771002,0.043731194,0.0116094453,0.0004587803,-0.0033490248,0.0015956336,-0.000801143,0.0286928937,-0.0178057123,-0.0121416403,-0.0005122373,0.0120732151,0.0012516077,0.0307760555,-0.0182010569,0.009176556,0.031718798,0.013540552,-0.0092677893,0.0016003853,-0.0289209764,0.0258494541,0.0292859096,-0.0010919493,-0.0032920039,-0.0204514787,-0.0012544588,0.0027312988,-0.003497279,-0.0411158353,-0.0198888741,-0.0379530787,0.0021781966,0.0222761463,-0.0208164118,0.0164068006,0.0201625731,0.0171822831,0.012050407,-0.0009403689,0.0437616035,-0.0108187562,0.0095034754,0.0172431059,-0.0022789335],"47":[-0.0315143093,-0.0123502016,0.0526252426,-0.0097873826,0.0434994772,0.0347387455,-0.0043423432,-0.0073956717,-0.0381152779,0.020122312,0.0250350144,-0.0173237436,0.0228904597,-0.0308450852,0.0488836803,0.0434386395,-0.0085021704,-0.015802782,-0.0450508595,0.0414309725,-0.0089128306,0.0099318745,0.0329744294,-0.0161526036,-0.011703793,-0.0612338819,-0.0105706779,0.0587090887,0.0515301526,-0.0456592441,0.0037358599,-0.0417960025,-0.0518343449,0.0036807251,-0.0138179287,0.0435298979,0.041522231,0.0223429147,-0.008266422,0.0211413559,0.0117266076,0.0014268514,0.0011987073,0.0069469884,-0.0034582845,-0.0455071479,-0.0425260626,-0.0263734609,-0.002496277,0.0667397603,-0.0297499932,0.0407009125,-0.0132247545,-0.0035780603,0.0285180155,-0.0152704464,-0.0124490643,0.0417655818,-0.0063424064,-0.0134072695,0.0055400999,-0.0525948256,0.0549979433,0.0290047228,-0.0150575116,0.0279552601,0.0006026807,0.040609654,-0.0366551541,0.0197268613,0.0485490672,0.0297652036,0.0123730162,-0.0234227963,0.0208675824,-0.0843829066,-0.0078101335,0.0354688056,-0.0129890051,0.0051522548,0.0435603186,-0.0056351596,-0.0312709548,0.0113539724,0.0242441148,-0.0356513225,-0.0372939594,-0.0306169409,0.0004748249,0.0044297981,-0.0180385951,0.0424652249,0.0304952636,0.0358338356,0.028533224,-0.0080230683,-0.0194074605,0.0041103964,-0.0200918913,-0.0026559778,0.0323052071,-0.0012452867,-0.011962357,-0.0565493219,0.0182971582,0.0130270291,0.0201831497,0.0047111763,0.0039849174,0.0360467695,-0.0329440124,-0.0172476955,-0.064975448,0.0110041518,-0.0201831497,-0.0060306094,-0.039879594,0.0056883935,0.0190272201,0.0109128933,-0.037202701,0.0042891093,-0.0330961086,0.0370810255,0.0480319411,-0.0397579148,0.0361380279,-0.0456896611,-0.0323660448,-0.0266928617,0.0457505025,-0.0137342764,0.0244570505,-0.0117113981,-0.0104946299,-0.0150651168,-0.0478494279,-0.0149130207,-0.0099014547,-0.0201375205,-0.0330352671,-0.0148293674,0.0591653734,-0.0039735101,-0.0274837613,0.0370810255,-0.0363509618,0.0556671657,-0.0070762699,-0.0132855922,0.0125251124,0.0135669699,-0.0223124959,-0.0361684486,0.0462980457,-0.0046921642,0.0203960836,0.0396970771,-0.0203808751,-0.0507696718,-0.0086162426,0.0168826655,0.0008099116,0.0186926089,-0.0240920186,0.0142514026,-0.0638195127,-0.040640071,-0.0702683926,-0.0082360031,-0.0397274978,-0.0702075511,-0.0079394151,0.0124034351,0.0417351648,0.0056237527,-0.0369897671,-0.0679565296,0.0334611386,-0.0208371636,-0.0559409373,-0.0107760075,0.002771951,0.0510738641,-0.0166697297,-0.0095440289,-0.0477277488,0.0275902282,0.014228588,0.0328223333,-0.0202439874,0.0518647619,-0.0003049051,0.0410355218,0.0088748066,-0.045324631,0.0198637489,0.035225451,-0.0254304651,0.030981971,0.0535074025,-0.0050267754,0.0578573495,0.0022282077,0.0027681487,-0.0037396625,-0.002790963,-0.0277727451,-0.0471193641,-0.057036031,-0.0080915112,-0.032153111,0.0099622933,0.0009453722,-0.0304040071,-0.023118604,-0.0542374626,-0.0230577663,-0.0203960836,-0.0311796963,0.0077873194,0.0458113402,0.0087835491,-0.0168826655,-0.0205633901,0.0202439874,0.038267374,-0.041887261,0.0093310941,0.0017167846,0.0189968012,-0.0096657062,-0.0029848856,-0.0441382825,0.0036408,0.0207154863,0.0154073332,-0.028639691,-0.0064184545,-0.0306321513,-0.0324573033,-0.0135441562,-0.0050952188,0.0008132387,-0.0159092508,0.0251414813,-0.0414613932,-0.0503438041,0.0335219763,0.0482448749,-0.0045096488,-0.0010228461,0.0076200138,-0.0331265256,-0.0533857234,-0.0757438466,-0.0437124148,0.0409442633,-0.018251529,0.0184948836,0.0200614724,-0.0353471301,-0.0354992263,0.0096809156,-0.0313317925,0.0172629058,0.0186469797,-0.0065059098,-0.0278487913,-0.0440774448,0.0473323017,0.0594695657,0.0320314355,-0.0380848572,-0.0063386043,-0.0028518015,0.0130878678,0.0146240378,0.0175670981,0.0035172219,-0.0054944707,-0.0341911986,0.0105326539,0.0291111898,0.0315447263,0.0076238159,0.0200006347,0.0268753767,0.042252291,-0.0268905871,0.0181298535,-0.0167609882,0.0417960025,-0.017415002,0.0014392092,0.0105934916,-0.0133084068,0.0057568369,-0.0442903787,-0.018069014,-0.0201831497,0.0024468456,0.0519560203,-0.0282898713,-0.0005689344,0.0237421989,-0.0215368047,-0.0081447447,-0.0081827687,0.0347083248,-0.0194378793,-0.0184644647,-0.0111562479,-0.031240534,-0.0377806649,0.0019867551,0.0780557096,-0.0418264233,0.0063880351,-0.0692949742,-0.0207459051,-0.1123685837,0.025171902,0.0051598595,0.004406984,-0.0347995833,0.0237421989,-0.0073804623,0.0298716705,0.0199093763,0.0047910265,0.0134757124,0.0357729979,0.0397579148,-0.0344345532,-0.0611426234,-0.0052206977,0.0151715837,-0.0201071016,0.0255369321,0.0031902152,-0.0032605596,-0.0590132773,0.0133084068,0.0248829182,0.0295522679,-0.0015361704,0.0130878678,-0.0011055483,-0.0250045955,-0.051621411,0.0157875735,0.0271491501,0.0034982099,0.0391191132,-0.0002016461,-0.0134528987,-0.0121372668,-0.0361076109,-0.0102512762,-0.0212630313,0.0400012694,0.0469976887,-0.0037966983,-0.0070116292,0.005361387,-0.025278369,0.0116961887,-0.0260692686,-0.0127152326,0.0436211564,-0.0104413955,-0.0156050576,-0.0344345532,-0.0249589663,0.0079698348,0.0301606525,0.0307081994,0.0053385724,0.0550892018,0.0520472787,0.0043423432,0.0294610113,-0.013939606,0.0516822487,0.0407313295,0.0245330986,0.0418264233,-0.0553021356,0.0032529549,0.0160157178,-0.0122969681,-0.0163046997,-0.0317272432,-0.0126924179,0.0072131567,0.0082360031,0.0187382363,0.0364118032,0.0297499932,0.0158484112,0.0122437347,-0.0650971234,-0.0047910265,0.0110725947,0.0486099087,0.0054222252,0.0424652249,0.00191546,-0.0218866263,-0.0536899157,-0.0144415228,0.0373852178,-0.0576139949,0.0509521887,-0.0354992263,-0.0594695657,0.0970373005,-0.0097341491,0.0394841433,-0.0339174271,-0.0043765646,-0.00022553,0.0042244685,-0.0529294349,0.0527165011,0.0399708487,-0.0570968688,-0.0141145159,-0.0302214902,-0.0059659686,-0.0156811066,0.0254760943,-0.0067758802,-0.0068139043,0.0119015183,0.0334307179,-0.0385411456,0.0278335828,0.025460884,-0.0117722368,0.0125707407,-0.0184036251,0.0041446183,-0.036837671,-0.0189968012,0.0021882823,-0.0229512993,0.0290807709,0.0083576795,0.0359859318,-0.0257954951,-0.0518951826,0.0073348335,0.0023175641,-0.0325485617,0.0239855517,0.0108976839,0.0514388941,-0.0287309494,-0.0104185818,0.0277271159,-0.0546633303,0.0031141671,-0.0235748924,-0.007498337,0.0542983003,0.0284875967,0.0205177609,-0.0100003174,0.0020380875,0.0006045819,-0.0162894893,0.0260540582,0.0029373555,0.0098786401,0.0218562074,0.0115821166,-0.0016787605,-0.064123705,0.0315143093,-0.0358338356,0.0057150102,0.0655229911,0.0121676866,0.0351646133,0.0318489186,-0.0041940496,-0.001674958,0.0089052254,-0.0174606293,-0.0006283469,0.0401837826,-0.0200310536,0.0118406797,-0.0114072058,-0.0730061159,-0.0135061322,0.0304344259,-0.0143882893,0.0566405803,0.0143806841,-0.0052168956,0.0789074451,-0.0128369089,0.0206090193,-0.0251871105,-0.0043955767,-0.0208675824,-0.0410355218,-0.0019791503,0.020411294,0.0145099657,0.0207002759,-0.0281529836,0.0185253024,0.0125935553,0.019422669,0.0010741786,-0.0030495264,0.001934472,-0.0307234079,-0.0467847548,-0.0063424064,-0.0147609245,0.0188294947,-0.0391191132,-0.0446554087,-0.0156506859,-0.0360467695,0.0048784819,-0.0255369321,0.0241528582,-0.0055629141,-0.0366247371,-0.0025362021,-0.0164720062,-0.0257498659,-0.0505263172,0.045324631,0.0077454927,0.034860421,-0.0034050511,0.0128521184,0.0200006347,-0.0102740899,0.0179169178,-0.0061256695,-0.0058975257,0.0283202901,0.0306169409,-0.0229817182,0.0296891555,-0.0016074654,0.0262061544,0.032153111,0.0322139487,0.032487724,0.0056351596,0.0062283343,0.0119243329,-0.0010038342,-0.0041864445,0.0037244528,-0.0022396147,0.0352558717,0.0172476955,-0.0169587135,-0.019422669,0.0005423176,0.003319497,-0.0257346574,0.0000853164,0.0266624428,-0.0000099442,0.0064640832,-0.0471497849,-0.019422669,-0.0046883617,-0.0094223525,-0.0168370362,-0.0034392725,-0.0062017175,0.0526860803,-0.0235748924,0.0104490006,0.0455375649,0.0180842243,0.0070078271,-0.044594571,-0.0117646316,0.0050533921,-0.0030799457,-0.0084945662,0.0248220805,0.038267374,-0.0015333187,0.0045894994,-0.0249893852,0.037932761,0.0442903787,-0.0005104725,0.0023517855,-0.0177039839,-0.0175366774,0.0458417572,-0.0005513483,0.0229056701,0.032883171,-0.014890206,0.0087227104,0.0062739635,-0.0123730162,-0.075865522,-0.0195747651,-0.0023765012,-0.0229817182,0.0018565228,0.0293849632,-0.0311340671,-0.0212021936,-0.0167001504,-0.032518141,-0.0243810024,0.0031578948,0.0452333726,0.000372873,-0.0218714159,-0.0467543341,0.0300389752,0.004190247,0.0034563835,0.047666911,0.0124566685,-0.0116809793,0.0411876179,0.0278487913,0.031240534,0.002212998,-0.0209132116,0.0317880809,0.0293545444,-0.0019810514,-0.0190576389,0.0196356047,-0.0326702371,-0.0154605666,0.0351037756,-0.0151183503,-0.0339782648,-0.0137418807,-0.0220691413,0.0636978373,0.0255217217,0.0004137489,-0.0096961251,-0.0109357079,-0.0341911986,-0.0319097564,-0.0196508132,-0.0405183956,0.0106315156,-0.0151639795,0.0040305462,-0.0313622132,0.0275598094,0.0260692686,0.000421116,0.0310732294,0.044594571,0.0009691372,0.0390582718,0.0227687825,0.0230273474,0.0361684486,0.0080154631,0.0089584589,-0.0171412285,-0.001541874,0.0658880249,-0.021475967,0.0200614724,-0.0293241236,0.0233619586,-0.0156963151,0.0069736051,-0.0030799457,0.0153921237,0.0129966103,0.0249589663,0.0166241024,-0.0140384678,0.0158940405,-0.0244570505,0.0103349285,-0.0232402813,-0.0107760075,0.0208980013,-0.0220691413,0.002760544,0.0197420716,-0.0075971992,-0.061051365,-0.0271491501,-0.0291416086,-0.0247308221,0.026266994,-0.0059811785,0.0468151718,-0.0135821803,-0.0062777656,0.0254760943,-0.0263582505,0.0370810255,0.0025400044,0.0080002537,-0.0051180329,0.035560064,-0.0114072058,-0.0005869958,-0.037932761,-0.0069850124,-0.0213086605,-0.0438340902,0.0490053557,-0.0349212587,0.0103729526,0.0428302549,0.0155366147,-0.0245787259,0.0054108179,0.0034696918,0.0284571759,-0.003631294,0.040640071,0.00113977,0.0066732154,-0.0024107229,-0.0181906912,0.0063424064,-0.0177344028,0.0109965466,-0.0339174271,-0.0369289294,0.0112094814,-0.0319401771,0.0111410376,0.0257042367,0.0342216194,-0.0151183503,-0.0305256825,0.0154453572,0.0162286516,-0.0058062677,-0.0089964829,-0.0307081994,-0.0107303783,-0.0021863813,0.0057758489,0.0325789787,-0.0203808751,0.0250045955,-0.0256129801,0.0417047441,-0.0103349285,0.0141145159,-0.0164111666,-0.0078709722,-0.0092930701,-0.040609654,0.0109204985,-0.0133616403,0.0218714159,-0.0104337912,0.0572185442,0.0011911024,0.0065135146,-0.0208067428,0.0290351417,0.0171108097,0.0150423022,-0.0065743532,-0.0191032682,-0.0320314355,-0.0056351596,0.0223277044,-0.0073842648,-0.0044412054,-0.0273316652,-0.0382369533,-0.0146544576,-0.0132399639,0.0024088216,0.0181906912,-0.0042434805,0.0009848222,-0.0082131885,-0.1205817759,-0.0227992032,0.0439557657,-0.0296587348,-0.0444424748,0.0010950918,0.0154225426,0.0337044932,0.013498527,-0.0202287789,-0.0079926495,-0.037932761,-0.0295978971,0.0154301478,-0.0198333282,0.037202701,0.0279704686,0.0303887967,0.0327006578,0.0179321282,-0.0126924179,-0.00834247,-0.0446858294,0.0494616441,0.017415002,-0.0047225831,-0.020669857,0.0435603186,0.0052739317,-0.0040191389,0.022129979,0.003302386,0.0164111666,-0.0014496658,0.0198637489,0.0086390572,-0.0066922274,0.0112018762,0.005448842,-0.003045724,-0.0155898482,-0.0487924218,0.0244266298,-0.0232098624,0.0685649142,0.0032757693,-0.001905954,0.032122694,-0.0181906912,-0.0083500752,0.0099851079,0.0009653348,-0.0221756082,0.0071371086,0.0302062817,0.0201527309,-0.0349212587,-0.0216432717,-0.0176583547,0.0052245003,-0.0274533425,0.0198485386,0.0268601682,-0.0598345995,-0.0195747651,-0.0136202043,-0.0080534872,0.0196660236,0.0012310277,-0.0107227741,0.010061156,0.0288069975,0.0113615775,-0.0257346574,0.018069014,0.0206850674,0.0085630091,-0.0190120097,-0.034495391,0.0085173808,0.0049050986,0.0027966667,-0.0247156136,0.0002704458,-0.0199245866,0.0054070158,-0.0044944393,-0.0167761985,0.0088976203,0.017080389,0.0378719233,-0.0125555312,-0.00095773,-0.0127608608,0.0219170451,-0.0169587135,0.0013593587,0.000296825,-0.0047225831,-0.0030229096,0.033552397,-0.0065781553,0.0176583547,-0.0110649895,-0.020487342,-0.0174758397,0.0262822025,-0.0146468524,0.0190728493,0.0230425559,-0.0227992032,-0.0078101335,0.0183732063,0.0123045733,0.0311340671,0.0141677503,-0.0001837036,-0.0186621882,-0.0128901424,-0.0149814636,0.0042586904,-0.0350429378,-0.021947464,0.0250350144,-0.0081675593,0.0361988656,0.038267374,-0.009475586,0.0047035711,0.0107075637,-0.0059811785,0.0607471727,-0.0018907444,0.0655838326,0.0025190914,-0.0292784963,-0.011194271,-0.0127608608,0.0131563107,0.0292632859,-0.0017434013,0.0311796963,0.0115669072,0.0128521184,-0.0168218259,-0.0027282233,0.0031864129,-0.0045780921,-0.0315751471,0.0450812764,-0.0007823442,-0.0356209017,-0.0213847086,0.042982351,-0.0040419535,0.0677740127,-0.0465109795,-0.0101067843,-0.0132627785,0.0042815045,-0.0016065148,0.0562451296,0.0152780516,-0.024183277,0.0238486659,-0.0105402581,-0.0369289294,-0.0248220805,-0.0104642101,0.0207306966,0.007262588,-0.0203656647,0.0077074687,0.0271187313,0.0263430402,0.0151715837,0.0137114618,0.0140764918,0.0130574489,-0.0046237209,-0.040609654,-0.0144034987,0.028533224,0.0456896611,0.0106315156,-0.0085477997,-0.0193618312,0.0087531293,0.0058671064,0.0122133149,0.0264951363,0.0112627149,0.0047948291,0.018434044,-0.0144034987,0.0313622132,0.0277119055,0.0187990759,-0.0351646133,0.022647107,-0.0142970318,-0.0050952188,0.0195899755,-0.025460884,0.017780032,0.0428910963,-0.0094451662,0.0123730162,-0.0299172997,0.0200766828,-0.0032320416,0.0212782416,0.0009192307,-0.0077416906,-0.0340086818,0.0128216995,0.0138027193,0.0205481797,-0.027620649,-0.0130802626,-0.0153769134,-0.0274077132,-0.0139243957,0.0334611386,-0.034495391,0.0450812764,-0.0049811467,-0.0226014778,-0.019422669,0.0036084794,0.0044564153,0.0330961086,0.0156658962,0.0023803036,0.0170499701,0.0205633901,0.0095972624,0.0049089012,-0.0061370768,-0.0136049939,0.0246395655,-0.0080458829,0.0108444504,-0.0026198549,-0.0203808751,-0.007699864,0.0456592441,0.032852754,0.0461155325,-0.004171235,0.0114224153,0.0159852989,0.0320314355,0.0103729526,0.0126087647,0.0212478228,0.0057074055,0.0196964424,0.0034601858,-0.0075287558,-0.0249437578,0.0281986129,0.0183579978,0.0039354861,-0.0036236891,-0.0097113345,-0.0323964655,-0.0145708043,0.0060572266,0.0063614184,-0.0123882256,0.0129585862,0.0219018348,-0.0257650763,-0.0177191924,0.0181146432,-0.0386628248,-0.0240311809,-0.0043537505,-0.0169435032,-0.0217041112,0.0156354774,-0.0266016051,-0.0276054386,0.0297347829,-0.020958839,0.0030951551,-0.0266624428,0.0176127255,-0.0320922732,-0.0182363205,-0.0013935803,-0.0079698348,-0.0057226149,-0.0431344472,-0.0065401313,-0.0223429147,0.0241680667,0.0184036251,-0.0188142844,-0.013133497,-0.0236965697,0.0163655374,0.019422669,0.0027776547,0.0226014778,-0.0256890282,-0.0315447263,-0.0090421122,0.0213390794,0.0056465669,0.0015741944,0.0052549196,0.0352558717,-0.0141905639,-0.0039354861,0.020487342,0.0144795468,0.0124794831,0.0202591978,-0.0032016225,0.0303127486,0.0163807478,0.0311036482,0.0013450998,-0.0061332746,0.0203352459,-0.0042662951,0.0035419376,0.0118710995,-0.0351646133,0.0095364247,0.0109128933,0.0143198455,-0.0227231551,0.0340999402,0.035195034,0.008266422,0.0034145571,-0.005760639,0.0171260182,0.0150955357,-0.0011968061,-0.0007504991,-0.0060686334,-0.0103729526,0.0224645901,0.027179569,-0.0151107451,0.0251414813,0.0717285126,0.013498527,0.004992554,0.0137570901,0.0080763018,-0.0031122661,0.001111252,-0.0020818152,0.0107303783,0.0131639158,-0.0001667116,0.0026711875,-0.0179169178,0.0133464308,0.0009905257,-0.0058062677,-0.0257194471,0.0317576602,0.0231338143,-0.012950981,0.0291111898,0.0214455482,-0.0074108816,-0.0068062996,-0.0139548155,-0.0167457778,0.0070344438,-0.0102284616,-0.0259171724,0.0177191924,-0.0001152009,-0.0061370768,0.0062701609,0.0421001948,-0.0211261455,0.009255046,-0.0402142033,0.0232554898,-0.0112931337,-0.0117266076,-0.0174758397,-0.0272708274,-0.0088215722,0.0140688876,-0.0123730162,0.027803164,0.0007020184,-0.0067074373,-0.0039811148,-0.019498717,-0.0168370362,-0.005817675,0.0094147474,-0.0274837613,0.0068481262,0.0038290189,0.0449291803,-0.0003293831,0.015072722,0.039544981,-0.0162134413,-0.010426186,-0.0068671382,-0.032518141,-0.0378110856,-0.0395754017,0.024472259,-0.0083272606,0.0042396784,-0.0386628248,-0.0121981055,0.0251566917,0.0107836118,0.0340999402,0.0022434171,0.0184644647,0.0339478441,0.0178560801,0.0292176567,-0.0117342127,-0.0083880993,0.0230273474,-0.0314838886,0.0306473598,-0.035925094,-0.0036560094,0.014228588,0.0050381827,0.0008522134,0.0252023209,0.0279704686,-0.0157571547,-0.0091105551,0.0033632247,0.0037757852,-0.0101676229,-0.0260844771,0.0020837162,0.0214151274,-0.0407617502,0.0153388893,0.0280769356,-0.0113615775,0.0120079853,0.0218257867,-0.0010789316,0.0040381509,-0.010646726,-0.0135517605,0.0116809793,-0.0294001717,0.0269210059,-0.0004886087,0.0192249436,0.0147381099,0.0323356278,-0.0101676229,-0.0015675402,-0.0172933247,-0.0095972624,0.0254760943,0.0075895945,-0.0376894102,0.0052245003,0.0229969267,0.0052625244,0.031058019,-0.0211261455,-0.016897874,0.0054830639,0.0034734942,-0.0042434805,0.0433778018,-0.0036198867,0.0201983601,-0.0020361862,0.0109585226,-0.0074565103,0.0207306966,0.0059469566,-0.039179951,0.0215215962,-0.0124490643,-0.0160157178,0.0311188586,-0.0308450852,0.014228588,0.0021331476,0.0216432717,0.0054830639,-0.0000080801,-0.0113311578,0.0199854244,0.0158788301,-0.0154225426,-0.0099470839,0.0127228368,-0.0120688239,-0.0118787037,-0.0188599136,0.0097037302,0.0134681081,-0.0059621665,-0.0217345301,0.0291416086,-0.0244874693,-0.0082360031,-0.0240159705,-0.0148978112,-0.0090801362,-0.0119015183,-0.0084109129,0.0261148978,-0.0214911755,0.0249437578,0.0026882982,-0.0253848359,-0.0138711622,-0.0013251371,-0.0009905257,0.0024012169,-0.034830004,-0.0003531481,0.0274989717,0.0085630091,-0.0212630313,-0.00892804,-0.0044564153,-0.003897462,-0.0295674782,0.0086390572,-0.0133008026,0.0102740899,0.0432257056,0.0377806649,0.0536899157,0.030981971,0.0188142844,-0.0290047228,0.0146164335,-0.0247612409,-0.0065363292,-0.0136049939,0.006053424,0.0198789574,0.0223885421,-0.0180233847,0.0190576389,0.0058823158,-0.0069051622,0.025643399,-0.0165936816,-0.0255217217,0.0137494858,-0.0027035079,-0.0043537505,-0.009840616,0.0440470241,-0.0004783897,-0.0440470241,0.0023004531,-0.0082283979,0.0093843285,-0.0497354195,-0.0010133401,0.0043917745,0.0531423688,-0.0011274122,0.0103653483,0.0114908591,-0.0332482047,0.0031236731,0.0050153681,0.0178864989,-0.0057188128,-0.0099470839,0.0175670981,-0.0212174039,0.0313317925,-0.030981971,-0.0254456736,0.0107455878,0.0271643605,-0.0094831903,0.0542678796,0.0198333282,0.0050229728,-0.0019069046,0.0168826655,0.0138939768,-0.0368072502,0.0259019621,-0.0062511489,0.0056655789,-0.0261301063,0.0106391208,0.0075401631,-0.0188447051,-0.0039773127,0.0073918696,-0.0175518878,0.011597326,0.0096048675,-0.0254152548,0.0039050668,0.0114756497,0.0332482047,-0.0200614724,-0.0407617502,0.0095668435,-0.01009918,0.0245026778,0.0118787037,-0.0117190033,0.0226318967,0.0158940405,0.0099851079,0.0059735738,0.0161069743,-0.0299477186,-0.0072397734,-0.0198789574,-0.019133687,-0.0160917658,0.0144491279,0.0046807569,-0.0188599136,-0.0051066261,-0.010023132,0.0331265256,0.0118026556,0.0126391845,-0.004445008,0.0088443868,0.004863272,-0.0202439874,0.0014297032,0.029339334,0.0050533921,-0.0027130139,-0.0173085332,0.0260540582,-0.0110878041,-0.0181754809,0.0108672651,-0.0059317471,-0.0101295989,0.0083957035,-0.0159852989,-0.0015143066,0.0275598094,0.0014468139,0.0128293047,-0.0041940496,0.0130878678,-0.000066245,0.0088139679,0.0455679856,0.019133687,0.0131106824,0.024107229,-0.0036560094,0.0194074605,-0.0166393109,0.0339478441,0.0106391208,0.0120155904,0.006072436,0.0006354764,-0.0002422843,0.0185709316,0.0191641059,0.0063157897,-0.020487342,0.0089736683,0.0007885231,0.0299629271,0.0250806436,0.0059431545,-0.0143958936,-0.0122589441,0.0067948923,-0.0335219763,0.0113463672,-0.0131563107,0.0363509618,0.0085858237,-0.0265407655,-0.0170043409,0.0097493585,-0.0200158432,0.0141829597,-0.0093539087,-0.0190880578,-0.0123958308,0.0194378793,0.0218105782,0.0154605666,-0.0268601682,0.0346170664,0.030875504,0.0241224375,-0.0163503289,0.0019544347,-0.0245787259,0.0215063859,0.032122694,0.0052587218,-0.0238334555,-0.0079926495,0.0086542666,0.0068861502,0.0069812099,-0.0127532566,-0.0140536781,-0.0349212587,-0.0070496532,0.0151867932,-0.0164567959,0.0075819897,0.0172020663,0.0204265043,0.0109204985,0.0030723407,0.0478494279,0.0117722368,-0.0053195604,0.0151943984,-0.0019240155],"48":[-0.0227371678,-0.0144255534,0.0478469096,0.0135586523,0.048364006,0.0193303935,0.0038136085,-0.0164863467,-0.0427063294,0.0199691635,0.0152544342,-0.0307522081,0.0147297299,-0.0363794677,0.0685004666,0.0285013057,-0.0272845998,0.0091557018,-0.0288967341,0.0279994141,-0.0066994797,0.0070416778,0.0251553673,-0.006760315,-0.0001648017,-0.0420067273,-0.020851275,0.0618390106,0.0438317843,-0.0325468481,-0.009513109,-0.042189233,-0.0424021557,-0.0140149165,-0.0125320572,0.0341893993,0.0337331332,-0.0204710551,0.0050265109,-0.0126689365,0.0021045187,0.0146536855,0.0091024712,0.0109047145,-0.0139844986,-0.0358319506,-0.0406683497,-0.025079323,0.0272693913,0.0521662086,-0.0547821261,0.0359232016,-0.0368661508,-0.0107450224,-0.0010341989,-0.0127373766,-0.0151327634,0.0439534523,-0.0005936188,-0.0356798619,0.0201212522,-0.0420371443,0.0456264205,0.0412158668,-0.0258549731,0.0026463326,-0.0175509639,0.0136346957,-0.0322426707,0.0152924554,0.0562725887,0.0198170766,0.0057869512,-0.0182809867,0.0094218561,-0.068926312,-0.0051862034,0.0505236574,-0.0204862636,-0.0092241419,0.0156954899,-0.0094142519,-0.056181334,0.0248664003,0.0143038835,-0.0555729829,-0.036257796,-0.0308130439,0.0239234548,-0.0119008915,-0.0279689971,0.0376570076,0.0101899011,0.0484856777,0.0129807172,0.0085245362,0.003901059,0.0191174708,-0.025048906,0.0212619137,0.0222656932,0.0060759187,-0.0333072878,-0.0591318421,0.0486681834,-0.0029219922,0.0335810483,0.0024524203,0.0088515263,0.0322122537,-0.0828575864,-0.0282731727,-0.0815800428,-0.0180528536,-0.0246686861,-0.0127677936,-0.0120453751,0.0033649486,0.0219463091,-0.0256724674,-0.0274062715,0.0062166001,-0.030463241,0.0267066658,0.0169274025,-0.040455427,0.014927444,-0.0449268185,-0.0532004088,0.0054751704,0.0209121108,-0.014478785,0.016303841,-0.0174597111,-0.0177638866,-0.0232694745,-0.0190718453,-0.0191935152,-0.005334489,0.0081138983,0.0095967576,-0.0227827933,0.0307217911,-0.0175813809,-0.025976643,0.0338852219,-0.0359232016,0.0333985426,-0.0254899617,0.0047945767,0.0044561806,0.0276648216,-0.0408204384,-0.0212923307,0.0504324064,-0.012205068,0.010539704,0.0354669392,-0.0086233942,-0.0228588376,0.0088135041,0.04401429,-0.0212923307,-0.0012005452,-0.0065968204,-0.005011302,-0.0646070167,-0.0017851337,-0.1014731601,0.0132164536,-0.0376874246,-0.0546604544,-0.009034032,0.0063648857,0.0401512533,-0.0152544342,-0.006197589,-0.0733064488,0.0454134978,0.0072051724,-0.0575501285,0.0119769359,-0.0325772651,0.0281667113,-0.0234215632,0.0063915015,-0.0467822924,0.0243645087,-0.0103571983,0.0228588376,-0.0203493852,0.0907661617,0.0024201015,0.0518316142,0.0291552842,-0.0429192558,0.0213075392,0.0385695361,-0.0282123387,0.0325468481,0.070690535,0.028029833,0.0493373722,-0.0378699303,-0.0232998934,0.0126385186,-0.0103876153,-0.0489419438,-0.0570330285,-0.0491548665,0.0009367675,-0.0217029676,0.0159084126,0.0132012451,-0.012334343,-0.0171251167,-0.0538695976,-0.0252618287,-0.0163342599,-0.0325772651,-0.0082203606,0.0650936961,0.0294898767,-0.0295507126,-0.0317559913,0.0155053791,0.0550254658,-0.0497632176,0.0403033383,-0.0172163695,0.0341893993,-0.0220527705,0.0072393925,-0.04042501,0.0038364218,0.0053991266,0.0128742559,-0.0305544939,0.0037774874,-0.0420675613,-0.0275431499,-0.0145852463,0.0025550798,0.0205166806,0.0046805106,0.0165471826,-0.0469343811,-0.0506453291,0.0338243879,0.0427367501,0.0018545239,0.0209425278,-0.0002017543,-0.0365011394,-0.0314518139,-0.0602572933,-0.0497936346,0.0314213969,-0.0040949713,0.0155129833,-0.0062432154,-0.0329118595,-0.0413983725,0.0241059605,-0.0332768708,0.0236496963,0.0173684582,-0.0193760209,-0.0044523785,-0.0349802561,0.044135958,0.0445313863,0.0107906489,-0.0555121489,-0.0109731546,-0.001129254,0.0076462277,0.025946226,-0.0042622681,-0.0117411995,-0.0001233339,-0.018357031,0.0321514197,0.0005432396,0.016243007,0.0109807588,-0.0161061268,0.0469039604,0.036136128,-0.0321818367,0.0048097852,0.0273758527,0.0514361858,-0.0171403252,-0.0014619466,-0.008136712,0.0078325355,0.0043002903,-0.0416112989,-0.0226915404,-0.0030683768,0.0077222721,0.0469039604,-0.0169882383,0.0129959257,0.0042052353,-0.0021387385,-0.0334593765,-0.0092013283,0.0151479719,-0.0186003707,-0.0270412602,0.0033573443,-0.0156802796,-0.0339764766,-0.0241667945,0.0650936961,-0.025018489,-0.0038060041,-0.0545387827,-0.0218246393,-0.1115109771,0.0081975469,0.0109275281,-0.0024923433,-0.0467518754,0.040333759,-0.0027185744,0.0081671299,0.00208931,0.0084865149,-0.0066158311,0.0202277135,0.0512536801,-0.0234823991,-0.0633294731,0.0411550328,0.0027261786,-0.0177638866,0.0348281674,-0.0122963209,-0.0385087021,-0.0684396327,-0.0091252849,0.0337939709,0.005478973,-0.0019828482,0.0032508825,-0.0230109263,-0.0056158523,-0.0165623911,0.0055055884,0.0109047145,0.0087298555,0.0148514006,0.0173684582,-0.0073344475,-0.0398470759,-0.0194216464,-0.0092393504,-0.0392083041,0.0377178416,0.0294746682,0.0055968412,0.007817327,0.0226002876,-0.0474818982,0.0273150187,-0.0278473273,-0.0182961952,0.0302198995,-0.0047603566,-0.0291704927,-0.0353756845,-0.0615956709,0.0022661122,0.0300069768,0.0210946165,-0.0019942548,0.0639378279,0.0377786793,0.0278777443,0.0190718453,0.004821192,0.0591926798,0.0176422168,0.003859235,0.034402322,-0.0556033999,0.0161213353,0.0179007668,0.0029276954,-0.0209273193,-0.0342198163,0.0011672759,0.0122659029,0.0129122771,0.0360448733,0.0625386164,0.0149046313,0.0275127329,0.0049542692,-0.0773824155,0.0053953244,0.0187068339,0.0643028393,0.0297788456,0.0385087021,-0.0166384354,-0.0189197566,-0.0427367501,-0.0143038835,0.0382045247,-0.0484248437,0.0453222468,-0.042189233,-0.0503411517,0.0819450542,0.0046995217,0.0368965678,-0.0453526638,0.0029219922,-0.0033573443,0.0003688136,-0.0263568629,0.068804644,0.0283035915,-0.0431930125,-0.0200908352,-0.0564550944,-0.0008108196,0.0014771554,0.0347977504,-0.0305849109,-0.015406522,0.0117640123,0.0446226411,-0.0317255706,0.0305544939,0.0363490507,-0.0033060145,-0.0038706416,-0.0201212522,0.0314213969,-0.05432586,-0.0012300123,-0.012783003,-0.0284252614,0.0165319741,0.0077602938,0.0552383885,-0.0475123152,-0.0348585881,0.0286077671,-0.0141974222,-0.0202733409,0.0316951536,-0.0127069587,0.0230565518,-0.0130491564,-0.0148057742,0.0357102789,-0.0817625523,-0.0021102221,-0.0145776421,-0.0202277135,0.0411246158,0.0082431734,0.0215356704,-0.0185699537,0.0360144563,0.0266610403,-0.0251553673,0.0075207553,-0.0062432154,-0.0147069171,0.016045291,-0.0093610212,-0.0064827544,-0.0466606207,0.0310411751,-0.0227523763,0.0120225623,0.0547821261,0.0062964461,0.0245622247,0.0082431734,0.0001859514,0.0040949713,-0.002243299,-0.0229044631,-0.0140225207,0.040485844,-0.0197714493,0.0098477025,0.0088591306,-0.0746448264,-0.0038269162,0.0071329307,-0.0137259485,0.0586451627,0.0149198398,0.0162125882,0.0822492316,-0.0221136063,0.016243007,0.0002516582,-0.005574028,-0.0083952621,0.0095891533,0.0083952621,0.004501807,0.0374745019,0.0253987089,-0.0248055644,0.005125368,-0.0123571558,0.0035474543,-0.0155738192,-0.0032052561,-0.0046653016,-0.030493658,-0.0318472423,-0.0095815491,-0.0125092445,0.0140681472,-0.0287294369,-0.0120377708,-0.0088058999,-0.0101670874,0.0048782248,-0.0315430649,-0.0017708755,0.0191022623,-0.0557554886,-0.0036406082,-0.0203950107,-0.0393299758,-0.0444401354,0.0412767045,0.0074713267,0.0322426707,0.0018345624,0.0132088494,0.0150415106,-0.0116955731,-0.0039466857,-0.0103876153,0.0148742134,0.0176270083,0.0509190857,-0.0405162647,0.0366836451,-0.003691938,0.0093001854,0.044105541,0.0218398478,0.0149122356,0.0176270083,-0.0058059623,0.0092165377,-0.0022185848,0.0082507776,-0.0120453751,-0.0041862242,0.046417281,0.0118248481,-0.0300069768,-0.0457176752,-0.0035436521,0.0013916058,-0.028090667,0.0146917077,0.0223417375,0.0119997486,-0.0083344262,-0.0277864914,-0.0048896316,-0.0079009756,-0.017231578,-0.0263872817,-0.0096651968,-0.0121518373,0.0379003473,-0.0416112989,-0.0084789097,0.0316647366,0.0187068339,0.0112088909,-0.0278625358,0.0032356738,0.0168513581,0.0155129833,0.0195433181,0.0209881552,0.0458089262,0.0060645118,0.0071899635,-0.0274823159,0.0189045481,0.0361057073,-0.016045291,-0.017231578,-0.017839931,-0.0141061693,0.0367748961,0.0057261158,0.0131556187,0.0136879263,-0.0175205469,0.0014191718,-0.012684145,-0.0147221256,-0.072454758,-0.0221744403,0.0058667976,-0.0056158523,0.0050036977,0.0174445026,-0.0308434609,-0.0353452675,0.0011910397,-0.0183266122,-0.0538087599,0.0142582571,0.044044707,0.0030550691,-0.0250032786,-0.0290792398,0.011627133,-0.0087602735,0.0139540806,0.0214140005,-0.0035436521,0.0127677936,0.0228284206,0.0186612066,0.0246078502,0.0007604404,-0.0096880104,0.031999331,0.0152544342,-0.0332768708,-0.0127221672,0.0195433181,-0.0431625955,0.0009258362,0.019893121,-0.016942611,-0.0251401588,-0.0331551991,-0.0435580239,0.0397558212,0.008007437,0.007478931,-0.0080834813,-0.0170794912,-0.0236344859,-0.0114750452,-0.0082127564,-0.0445009694,0.0288967341,-0.0374440849,0.004034136,-0.0360752903,0.0218550563,0.0263416544,-0.003636806,0.0330943651,0.0401512533,0.0004881077,-0.0012014958,0.0221288148,0.040394593,0.034311071,0.011178473,0.0060264901,-0.008745064,-0.001393507,0.0691696554,-0.018098481,0.0068135457,-0.0269347988,0.0228132103,0.0021444419,0.0040759603,0.0045208181,0.024440553,0.0247903559,0.006935216,0.0021254309,-0.0109351324,0.0021767605,-0.0353148505,-0.0101899011,-0.0113609787,0.0102431318,0.0239842888,-0.0290336125,-0.0470560491,0.0318776593,0.0006573056,-0.0506453291,-0.0431321785,-0.0162582155,-0.0201060437,0.0055854344,-0.0014666994,0.0528658144,-0.0156954899,-0.0177943055,0.0418242216,-0.0364707187,0.034311071,-0.0185243282,-0.0071329307,-0.0007537865,0.0323035084,-0.0238474105,-0.0019733428,-0.056090083,-0.0014248751,-0.048211921,-0.0273150187,0.0471168868,-0.0300830211,0.0170490723,0.0396341532,-0.0001975957,-0.0167296883,0.0237409491,-0.0001126996,0.001892546,-0.0248055644,0.0204406381,0.0020284746,-0.0141365863,0.0067222929,-0.0148818176,0.0089579877,0.0009999791,0.0021482441,-0.024410136,-0.0302959438,0.0173988752,-0.0261287317,0.0275735687,0.0257637203,0.021398792,0.0037299599,-0.0266914573,0.0156498626,0.0050645331,-0.0009106274,0.0068439632,-0.0378699303,-0.0203189664,0.0083572399,-0.0157259069,0.0329118595,-0.0142126307,0.0356494449,-0.0286990199,0.0329118595,-0.0023896839,0.0163798854,-0.0140909599,-0.008296404,-0.0166384354,-0.046447698,-0.0023041344,-0.0024334092,0.0074333046,-0.0101366704,0.0627819598,0.0106765823,-0.0011473144,-0.0129350908,0.0153304776,-0.0016710677,0.0057527316,-0.0264785346,-0.0361057073,0.0140757514,0.0094826911,0.0103952195,-0.007513151,-0.017809514,-0.0212923307,-0.0315126479,-0.0420979783,-0.0268131271,0.0061063361,0.0081519205,0.0038896524,0.0072964253,-0.0001365228,-0.1125451773,-0.0230869688,0.0411246158,-0.0265849959,-0.0297028013,0.0055854344,0.0218550563,0.0493677892,0.004372532,-0.0196193624,-0.0201364607,-0.0521357916,-0.0168209411,0.0278169084,-0.0351323448,0.0053611044,0.0332464539,0.0203798022,0.0384174474,0.0269956328,-0.0209121108,-0.0106005389,-0.0246686861,0.0450180694,0.0073040295,0.0024067939,-0.0243645087,0.0332464539,0.0004966626,-0.0029181899,0.0295659211,0.0382653587,0.0270108413,-0.0155129833,-0.0016739194,0.0080986898,0.0139312679,0.0264481157,0.0059618526,0.0105625167,-0.0459914319,-0.0260831043,0.0292921625,-0.018068064,0.04221965,-0.0150947412,-0.0207752306,0.0333681218,-0.0064561386,0.0129350908,0.0246230587,0.0088363169,-0.0045436313,-0.0013545344,0.0046006641,0.0158779956,-0.0243340917,0.0104484512,-0.010859088,0.0163190495,-0.0087602735,0.0218550563,0.0332768708,-0.042250067,-0.0056348629,-0.005235632,-0.0113153523,0.010570121,-0.0125700794,-0.0107070003,0.0082735913,0.0176878422,0.0194976907,-0.0302198995,0.0192239322,0.0269652158,0.0256116316,-0.021429209,-0.0259614345,-0.0135358386,0.0108134616,-0.0216421336,-0.0106537696,0.0212162863,-0.0244861804,0.0016064303,0.0006007479,0.0065283808,-0.0063306661,0.0154749611,0.0390257984,-0.0133305201,0.0022604091,-0.0018792383,0.0131099923,0.0084180748,0.0291552842,0.0083344262,0.0133001022,0.0139616849,0.0381436907,-0.0170642827,0.0227523763,-0.0064561386,-0.0067793261,-0.0176878422,0.0019885516,-0.0071557439,0.0179616008,-0.0114522316,-0.0235432331,0.0030892889,0.0071025132,-0.0025113544,0.0041405978,0.0173380412,-0.0033782565,-0.0209121108,-0.0170034468,-0.0318776593,0.0258853901,-0.0366836451,-0.0185699537,0.0156042362,-0.0108210668,0.0234976076,0.0335810483,-0.0018792383,0.0071443371,0.0141061693,-0.0088211084,0.0450789034,-0.0089731961,0.0541737713,-0.0033136189,-0.0101899011,0.0174901281,0.0133533329,-0.0048478073,0.0413679555,-0.016303841,0.0187372509,0.0042470596,-0.0182353593,-0.0046424884,-0.0052242256,-0.0058705998,0.0006382946,-0.0342806503,0.0461435206,0.0158779956,-0.0495502949,0.0030873879,0.0609264821,-0.0025417719,0.0452005751,-0.0612610765,-0.0184026565,-0.008296404,0.0000927975,0.0094446698,0.0564246774,0.0252618287,-0.0233759377,0.0218398478,-0.0220983978,-0.0165471826,-0.0167448968,-0.0169730298,-0.0010265945,0.023193432,-0.0038459271,-0.0034866191,0.0250032786,0.0208360665,0.0175357554,-0.0042812792,0.0126004973,-0.0046653016,0.0041367956,-0.0321514197,-0.0045056092,0.0027908161,0.040333759,0.0160909183,-0.0134826079,0.0015237324,-0.0164863467,-0.0172619969,0.0186916236,0.0300069768,0.0050721373,0.0094979005,0.0215965062,-0.0053725112,0.0107146045,0.0355886109,0.0182961952,0.0014895126,0.0172467884,-0.0290336125,-0.0079770191,0.0107146045,-0.0205470994,0.022037562,0.0279537886,-0.0146993119,0.0145472242,-0.030143857,0.0152544342,-0.0052280277,0.010281154,0.0026140139,-0.0152544342,-0.0178247225,0.0142126307,0.0142202349,0.0059542479,-0.0128058158,-0.0284404699,-0.008456097,-0.0251857843,-0.0074371067,0.019254351,-0.0252009947,0.0354973562,-0.0058211712,-0.0232846849,-0.0176422168,0.0039352789,0.001414419,0.0200908352,0.000245242,0.0127297714,0.0203341749,0.0099237468,0.0205927249,0.000809869,-0.0035303445,0.0002101905,-0.0052470388,-0.0212162863,-0.0150110926,-0.0117716165,-0.0348585881,-0.0132772885,0.0677704439,0.027451897,0.0269347988,0.0014068147,-0.0047223349,0.0161365438,0.0265241601,0.0079009756,0.0137259485,0.0090796584,0.0063610836,0.0249272361,-0.0029505086,-0.0064675454,-0.0050683352,0.0401208326,-0.0074257003,-0.0065892157,-0.0014743038,-0.0042736749,-0.0218854733,-0.0124712223,0.0116499467,-0.016014874,-0.0100149997,0.0247447304,0.0191783067,-0.0067679193,-0.0051101595,0.0154673569,-0.0539608486,-0.0281362943,0.0086614154,-0.0205775164,-0.0261439402,0.0139844986,-0.0213227477,-0.017809514,0.0092013283,-0.0269195884,-0.0061671715,-0.0304480325,0.017809514,-0.0557250716,-0.0100149997,0.0100073954,-0.0057565337,-0.0019752439,-0.0378395133,-0.0121442331,-0.0055512148,0.0232390575,0.0294138342,-0.0299765598,-0.0031862452,-0.0032470804,0.0238474105,0.0212923307,-0.0139921028,0.0148437964,-0.0271477215,-0.0251097418,-0.0035341466,0.0071101175,0.00072527,-0.0056424676,0.0229044631,0.0285013057,-0.0301286466,-0.006950425,0.0264481157,0.0185395367,0.0082887998,0.0291704927,-0.0002939577,0.0351931788,0.0248359833,0.0428888351,-0.0163950939,-0.0126917502,0.0111708688,0.0069200075,-0.0050607305,0.019026218,-0.0109883631,-0.0022566067,0.0096575925,0.0229196735,-0.0210337806,0.0348585881,0.0160909183,0.0155890277,0.0213379562,0.0031083,0.0254747532,0.0237865746,-0.0096043618,-0.0080910856,0.0111252423,-0.0201972965,0.023832202,0.0115434844,-0.0091024712,0.0427671671,0.0758615285,0.0197866578,-0.0108058574,0.0206383523,-0.0002595003,-0.0060036769,-0.0156346541,0.0135130258,0.0138552235,0.0158475768,-0.0221744403,0.0051025548,-0.022326529,0.0042812792,0.0043116971,-0.0015836171,0.0024086949,0.0364098847,0.0238017831,0.0066576554,0.0240451247,0.026204776,-0.00640671,-0.0016862765,-0.0107678352,-0.0263720714,0.0274671055,-0.0183266122,-0.0186003707,0.0164103024,0.0083952621,-0.0167905241,0.0267827101,0.0286686011,-0.0420675613,0.0148970271,-0.0173836667,0.0132240579,0.0066576554,-0.013292498,-0.0208969023,-0.0208816919,-0.0067489082,0.0037660808,-0.0038421249,0.0304784495,0.0124788266,-0.0145320157,-0.0026444313,-0.027451897,-0.0017109908,-0.0050417199,0.0282427557,-0.0273606442,-0.006197589,0.0026634424,0.0458697639,0.0036273005,0.0028649592,0.0300830211,-0.0148590049,-0.000386874,0.005574028,-0.011916101,-0.0251705758,-0.0435276069,0.022067979,0.0037679821,0.0034371905,-0.0349194221,-0.0144939935,0.0344935767,-0.0019087053,0.0147449384,0.0379307643,0.0288054813,0.0316647366,0.0174749196,0.024121169,-0.0348890051,-0.0175965894,-0.0028307394,-0.0413375385,0.0282427557,-0.0329118595,0.0082583828,0.0028877724,0.0081671299,-0.0092241419,0.0245165974,0.023254266,-0.0085701626,0.0203341749,0.0173988752,-0.003691938,-0.0004510362,-0.0511015914,0.0128970686,0.0105625167,-0.0340981446,0.0178703479,0.0223113205,-0.0194520652,0.01345219,0.0224634092,-0.005783149,-0.004786972,-0.022296112,-0.0053953244,0.0229805075,-0.0103495931,0.0225698706,0.0147525435,0.0114218146,0.0052166209,0.0221136063,-0.0094446698,-0.0004272724,-0.0434667729,-0.0020189693,0.0185547452,0.0231325962,-0.0347977504,0.0012110013,0.0259614345,0.023223849,0.0315734856,-0.0151175549,-0.0091785155,-0.0084180748,0.0080834813,-0.0066842707,0.0546604544,-0.0046995217,0.004517016,0.0029923329,-0.0048744227,-0.0070797,0.0222504847,0.0039162678,-0.0532612428,0.0312997252,-0.0146156643,-0.0017024359,0.0458393469,-0.0175357554,-0.0030683768,0.001740458,0.0103191761,-0.0016634633,-0.0028174315,0.0073382496,0.020820858,0.0229500905,-0.0008379102,-0.0224481989,0.0165167656,-0.0389953814,-0.0118856831,-0.0180376451,0.0106917918,0.011817243,0.0019372219,-0.0085017234,0.0264785346,-0.0189349651,0.0079085799,-0.0113913966,-0.0036995425,0.0007789761,0.0107602309,-0.0000404281,-0.0015940731,-0.0131784314,0.0204862636,-0.0152240163,-0.0097564496,-0.0026387281,-0.014638477,0.0235584434,0.0047071259,-0.0265241601,0.0164559297,0.0358927846,0.0090720532,0.0030816847,-0.0128970686,-0.0010608144,0.0267370827,-0.0175965894,0.0100454176,-0.0097640548,0.0000841831,0.0408508554,0.0307826269,0.0552992225,0.0237257387,0.0196801964,-0.0436492786,0.020212505,-0.0357406959,-0.0185395367,-0.0137943886,0.001497117,0.0139844986,0.0046462906,-0.0182505697,0.0061101383,0.0077146674,0.0167144798,-0.0008402866,-0.0185243282,-0.0144103449,0.0112545174,0.0236801133,-0.0058249733,-0.0168209411,0.0451701581,0.0088135041,-0.0363186337,-0.0013954081,-0.0227980018,0.0094826911,-0.0473602265,-0.007513151,0.0141670043,0.0383566134,-0.0039885095,-0.0031995529,-0.0188741293,-0.0129122771,0.0007362014,0.0097792633,0.0177182611,-0.003275597,-0.0098553076,-0.0013716443,-0.0321514197,0.0292313285,-0.0152924554,-0.0285925586,-0.0028896735,0.022296112,-0.0149350492,0.0358015336,0.0146536855,0.0106537696,-0.010220319,0.0088135041,-0.0094370646,-0.0471473038,0.0177943055,0.0134673994,-0.0219158921,-0.0236496963,-0.0121594416,0.0189197566,-0.008775482,0.0083116135,-0.0096804062,-0.0234215632,0.0106005389,0.005364907,-0.0357102789,0.0165319741,0.0119389137,0.0351019278,-0.0203493852,-0.0407291874,-0.0000157732,-0.0209425278,0.0154673569,0.0209273193,-0.0110415937,0.0260678958,0.0256724674,0.0057071052,-0.0049694777,-0.0101366704,-0.0081519205,-0.0015931226,-0.0152924554,-0.0225698706,-0.0263872817,-0.0057413247,0.006292644,-0.0127069587,0.0164863467,-0.0133609371,0.0224938262,0.0094522741,0.0216725506,-0.0123267388,0.0073002274,-0.0079085799,0.0018573756,0.0093001854,0.0256268401,-0.0069314139,0.0014961665,-0.0067375018,0.016014874,-0.002034178,-0.012075793,0.0258549731,0.0091785155,-0.001336474,0.0269195884,-0.0171251167,-0.0057527316,0.0141137736,-0.0023060355,0.0064789518,-0.0129807172,0.020212505,-0.011817243,0.0146536855,0.0336722992,-0.0005437149,-0.0046957191,0.0219463091,-0.008296404,0.0055816323,-0.0305849109,0.0336722992,-0.002619717,-0.0239538718,-0.0145472242,0.0085093277,-0.0051139616,0.0396645702,0.0125320572,0.0325468481,-0.0063724904,0.0141137736,0.003467608,0.0156346541,0.046508532,0.0022642112,-0.0141517958,-0.0085093277,0.0133685414,-0.0251857843,0.0034885202,-0.0092925811,0.0361057073,0.0112469131,-0.0075777881,-0.0086005805,0.0052584452,-0.0150339063,0.0267979186,-0.0053535001,-0.0142886741,-0.0050151041,0.0099693732,0.0157715324,0.0064409301,-0.0281667113,0.0453830808,0.0352540165,0.0288206898,-0.0170794912,-0.0024124971,-0.0182353593,0.036196962,0.0431017615,-0.0097944718,-0.0198627021,-0.0232086405,0.0056804894,-0.00208931,-0.0001182247,-0.0210489891,-0.0068629743,-0.0503715687,0.0086005805,0.0192239322,-0.0060911272,-0.0097792633,0.0271781385,0.0096575925,0.0071709529,0.0050265109,0.020212505,0.0126004973,0.0034428937,0.0140073113,0.0136499051],"49":[-0.0049704928,-0.0340453833,0.0353486836,-0.0021644086,0.0516532287,-0.0113240797,-0.0090233563,0.0213847551,-0.0351093002,0.0366253853,0.0291513596,-0.0201213527,0.0097813979,-0.0384872407,0.0776660293,0.0422907472,-0.0012634029,-0.0048707505,0.0015526556,0.0270900168,0.0007073394,0.0247095004,0.0093624806,0.0188446511,0.0393649749,-0.0542864278,-0.0398703367,0.0535948798,0.0374765173,-0.0436738431,-0.0037469869,-0.0311196074,-0.0860177875,0.0175812487,0.015573103,0.0310930088,0.0361732207,-0.004957194,0.0331942476,-0.0005747652,-0.0078862933,-0.0019150528,0.0256271306,-0.0112974811,-0.041386418,-0.0408278629,-0.0337794051,-0.0077533037,-0.0182993934,0.0448175557,-0.0483550839,0.0104263984,-0.0315185785,-0.0021644086,0.0090499539,-0.0383808501,0.0071880976,0.0152539276,-0.0069420664,-0.0279012546,0.0193367135,-0.0150411436,0.0401363149,0.0272629037,-0.0012542598,0.0329814628,-0.008624387,0.0212783646,-0.0424503349,0.0206400137,0.0389926024,-0.0313589908,-0.0089036655,-0.0037935334,0.0179669186,-0.0672928244,-0.0062538441,0.0608029254,-0.0051666526,-0.0300822873,-0.0011644918,-0.0245100167,-0.0309334211,0.0273161009,-0.0057917046,-0.0236455817,-0.021637436,-0.0222358909,0.0166503191,-0.011357327,0.0083717061,0.0274224915,0.0262122843,0.0334602259,0.0287257917,0.0152938245,0.00136647,0.0186451674,-0.0029773086,0.0262388829,-0.002724628,0.0139373289,-0.0153603191,-0.0493924022,0.0333272368,0.0088704182,0.0198686719,-0.0072745406,0.015573103,0.0297897104,-0.0866561383,-0.0016607099,-0.035747651,0.0070152106,-0.0343911573,0.0032067159,-0.0215310454,-0.0068290252,0.0104596457,-0.0244967174,0.0006520655,-0.0024736098,-0.0401629135,0.0247493982,0.0336464122,-0.0382212624,0.0065863188,-0.0484614745,-0.0190441366,0.0041260077,0.0252680574,0.0101936664,0.0587282851,-0.0076668607,-0.0085578924,-0.0207331069,-0.0527969413,-0.0168365054,-0.0189643428,-0.0196957868,0.01574599,-0.0400033258,0.0231402218,-0.0052763694,-0.0183126926,0.0236721803,-0.016344443,0.0447111614,-0.0152406283,-0.0043620649,0.0242041387,0.0155465044,-0.0395511612,-0.0194697026,0.0425833277,0.0149081536,-0.0012284931,0.0313057937,-0.0322633199,-0.0580899343,0.0049871164,0.0235125925,-0.0282470286,0.02744909,-0.0253744498,0.0177142378,-0.0364126004,-0.0442323983,-0.0750062317,-0.0130728949,-0.0227811486,-0.0503233299,-0.0045083533,0.0146953706,0.0374765173,0.001174466,-0.0020912641,-0.0584623069,0.0243770257,-0.0378754884,-0.0485944636,-0.0296035241,-0.0355614647,0.0022890866,-0.0231668185,-0.0354816727,-0.0359338373,0.0069952621,0.0006911312,0.0039863684,-0.0387266241,0.0326090939,0.0027445764,0.0151874321,0.0531161167,-0.0323165171,0.0244834181,0.0355614647,-0.0317313597,0.0107522234,0.0373701267,0.0036871415,0.0402427055,-0.038593635,-0.0167567115,-0.0429025032,0.0047311112,0.0050303382,-0.0798470601,-0.078783147,-0.0294971317,-0.0277150702,-0.0177009385,0.0018435707,-0.0224087778,-0.011915884,-0.021038983,-0.0140969167,-0.0180866104,-0.0007135732,0.0056786635,0.0135450084,0.0113107804,-0.035667859,-0.021038983,0.0022840993,0.0380084775,-0.0480891019,0.0261191912,-0.0168099068,-0.004667941,-0.0467326082,-0.0079461392,-0.0527969413,0.0210921783,0.0301354825,0.015400216,-0.0180068165,-0.0391255915,-0.029124761,0.0178871248,0.0059612668,-0.0138309365,0.0268240385,-0.0137644419,0.002036406,-0.0296567194,-0.0520256013,0.0127071729,0.0475571454,0.0096883057,-0.0153470198,0.0084780985,-0.0222491901,-0.0265048631,-0.0702717975,-0.0301886797,0.0235923864,0.0227279533,0.0083916551,-0.0292577501,-0.0492860116,-0.0356412604,0.0314121842,-0.0372637361,0.0248557888,0.0304014627,-0.0317845568,0.0046978639,-0.0120089771,0.0434344597,0.0254409444,0.0161981545,-0.0456686877,-0.0200814568,-0.036013633,-0.0055589727,0.0143229989,-0.0023522566,0.0014844984,0.0036206467,-0.0112841828,0.0138708334,0.0246696044,0.0191372279,0.0042556729,0.0180334132,0.0185387749,0.0294173378,-0.0336996093,-0.0025218187,0.0213182606,0.021637436,-0.0281406362,-0.0045748483,0.0019915218,0.006582994,0.0131460391,-0.0346837342,-0.0198287759,0.0049372455,0.0174083617,0.0167567115,-0.027103316,-0.0124278944,0.0237918701,-0.013185936,-0.0246430058,-0.0111312447,0.0286193993,-0.0130462972,-0.0144027928,0.0007493143,-0.0144293904,-0.0068622725,0.0079261903,0.0378754884,-0.0365455896,-0.0176078472,-0.0727188066,-0.0486210622,-0.0790491253,-0.0114836674,0.0211852714,0.0299226996,0.0055556479,0.0130396476,0.0050802096,0.0208261982,-0.0099409856,-0.0133322254,0.0054126838,-0.0044285594,0.0556961186,-0.0232865103,-0.0632499382,0.0203740336,0.0001079503,-0.0029457235,0.0547385924,-0.0018502203,0.0254276451,-0.0539140552,0.0317047611,0.0156661961,0.0292577501,-0.0095619652,0.0007131577,0.0158523805,-0.0040029921,-0.0368115716,-0.0013955615,0.0086842328,-0.0177408364,-0.0007131577,0.0151475351,-0.0093425317,-0.0413066261,-0.0348167233,-0.0040661623,-0.0321303308,0.0265846569,0.0184323825,-0.0029939322,-0.0069221179,0.031146206,-0.0401363149,0.0097282026,-0.0310664121,0.0192170218,0.0217970237,-0.0190973319,-0.0028858781,-0.0394979641,-0.0573451929,-0.0231535193,0.0379552804,0.0410672426,-0.0042191008,0.0722400472,0.0148948552,0.0255739335,0.0130064003,0.0010797108,0.0354816727,0.0194564052,0.0150810406,0.0346039385,-0.0637818947,-0.0103732022,0.0408278629,0.0178738255,-0.0045515751,-0.0243770257,0.010240213,0.0046812403,-0.006150777,0.0339389928,0.0539672524,-0.0394979641,0.0307206381,-0.0109051615,-0.0492860116,-0.0174482595,0.0368115716,0.0220630039,0.0183259919,0.0343911573,-0.0038400798,-0.0290183686,-0.0120621724,-0.0115169147,0.0505893119,-0.0272895023,0.024350429,-0.0159321744,-0.0718676746,0.0847410858,-0.012281606,0.0234593973,-0.0471581742,-0.0430886857,-0.0338325985,-0.0036006982,-0.0079793865,0.056706842,0.0024303882,-0.0118028428,-0.0372903347,-0.0358540453,0.019403208,-0.0034178372,0.0315451734,-0.0101936664,-0.017035991,0.0080791293,0.0406682752,-0.0513872504,0.0623456053,0.0103266565,-0.0049538692,0.0390989929,0.005668689,0.0368115716,0.0060809576,-0.0339389928,-0.0678247884,-0.0344177559,0.0022275788,-0.0110182026,0.0412002318,-0.0170093924,-0.0364657976,0.0080059841,-0.0031917547,-0.0407746658,0.0212783646,-0.0576643683,0.0367317759,-0.007141551,-0.0415460058,0.0247227997,-0.0866561383,-0.012261657,0.0026165738,-0.0270102229,0.0543130264,0.0280874409,0.0044983793,-0.0136115039,0.0355614647,0.0202543437,-0.0086576343,-0.0107854707,-0.0413598195,0.0109982546,0.0155997006,0.0234726947,-0.0382744558,-0.0300556887,0.0400299244,-0.0242307372,0.0307738334,0.0678247884,0.0166769177,-0.0218635201,0.002049705,0.0079993354,0.0176610425,0.0265979562,-0.0445515737,-0.0071282522,0.0448707491,-0.0149081536,-0.00305544,0.0372903347,-0.0530097261,-0.0178738255,-0.0028160585,0.0285130087,0.0546322018,0.0167833101,-0.0045781732,0.0841027349,-0.0425833277,0.0233663041,0.000728119,-0.0280608423,-0.0169561971,-0.031837754,-0.0374499224,-0.0184190832,0.0260659959,0.0290183686,-0.0164907314,0.0094356248,-0.0190574341,0.0155598037,-0.0032216774,-0.0055589727,-0.007141551,-0.0343113616,-0.02236888,-0.0099609345,0.0105859861,-0.007035159,-0.0376095101,-0.0039896932,-0.0103599038,-0.0101670688,0.001648242,-0.0163178463,0.0308536272,-0.0263718721,-0.0624519996,0.0018186352,-0.0277416669,-0.0246962011,-0.0452431217,0.0321835242,0.0116964504,0.0503233299,0.0249488819,0.02744909,0.0007941983,-0.0070617571,0.000658715,-0.0189244449,-0.0047942814,0.0194431059,0.0296301227,-0.0221294984,0.0301886797,-0.0025783393,0.0240977481,0.0394713655,0.0182727948,0.0071282522,0.0117961932,0.0050802096,0.0260260999,-0.0217305291,0.0075604687,0.0098811407,0.0251616649,0.0244967174,-0.0028659296,-0.0509350859,-0.0562280789,0.0015559804,0.0046114204,-0.0122550083,0.00806583,0.0242839325,0.001330729,-0.0045482502,-0.0192702189,-0.0254542436,0.0140703181,0.0260659959,-0.0105726868,-0.0177674349,-0.0247095004,0.034630537,-0.0139772259,-0.0215443429,0.0210256837,0.0288587809,0.0705377758,-0.0298695043,0.007247943,0.0224752724,-0.0115767596,0.0003347602,0.0224486738,0.0328750722,0.0104263984,0.0133455237,-0.0357742496,0.0038301055,0.0186451674,-0.0060177874,0.0101404702,-0.0304014627,-0.0135117611,0.0178206302,-0.0091895936,0.0160784647,0.0272629037,-0.0321835242,0.0170226917,0.01574599,-0.0149480505,-0.0576643683,-0.0196558889,-0.0153736183,0.0045981216,-0.0080259331,0.0191106312,-0.0107389241,-0.0501903407,-0.0033696285,-0.0179137234,-0.0364657976,0.023618985,0.0233530048,-0.0269038323,-0.0403756946,-0.0063668857,0.0199750643,-0.0021810324,0.0298429057,0.0430354923,-0.0135250604,0.0156661961,0.022887541,0.0381946638,0.0299226996,0.0008536282,0.0055789212,0.0225550663,0.0136846481,-0.0016706841,-0.0107256258,-0.0000370917,-0.030800432,-0.0022126173,0.0369711593,-0.0157991853,-0.026717646,-0.016304547,0.0001267559,0.0726124197,0.0171290841,0.0169561971,-0.003926523,-0.0069620148,-0.0552705526,0.0094156759,0.0034311363,-0.0444717817,0.0047111628,-0.0362264141,-0.0109517081,-0.0166769177,0.0054492559,0.0191505272,0.0093691293,0.0271831099,0.0159853715,-0.0025849887,0.004774333,0.0114504201,0.0237120762,0.0148815559,-0.02744909,0.0241908412,-0.005582246,0.0190840326,0.0482752882,-0.0144958859,-0.0011179453,-0.0132989781,0.0111312447,-0.008797274,0.0038899509,-0.0153337214,0.0535682812,0.0403225012,0.0110580996,0.0023106975,-0.0269437283,-0.0072146952,-0.0269038323,-0.0125675341,-0.021770427,0.019788878,0.0251882635,-0.0305078551,-0.0490200333,0.00897016,0.0046380186,-0.0467326082,-0.0370243527,-0.0208261982,0.0096085109,0.0004376195,0.0018867925,0.0104729449,-0.0183392894,-0.0223023854,0.0047543845,-0.0270900168,0.0416789949,-0.0282736272,-0.029896101,-0.011357327,0.0326090939,-0.0315717719,0.0051832767,-0.0651117936,-0.0143229989,-0.015400216,-0.0285130087,0.0323963091,0.0009591887,0.0406416766,0.0190574341,0.0023372953,-0.0073077884,-0.0011736348,0.0149746491,0.0320239365,-0.0081190262,0.0192436203,-0.0278746579,-0.0272097085,0.0164907314,-0.0193633121,0.0075272215,-0.0354816727,0.0156794954,-0.0263585728,-0.0007202228,-0.0047710082,-0.0468921959,0.0284864102,0.0299226996,-0.0010672429,-0.0192436203,-0.0054958025,0.0114437705,0.0003008894,0.0036971157,0.0207863022,-0.0124212448,-0.0501903407,0.0062804422,-0.0090632532,0.0413332209,-0.0072213449,0.0159321744,-0.0490998253,0.0357742496,-0.0149746491,0.0355348699,-0.0241642427,-0.0102801099,-0.0211852714,-0.0667608678,0.013205885,0.0063801846,-0.0105793364,0.001294988,0.0618136488,-0.0008332641,-0.0169162992,0.0072678914,0.0108253676,0.0043753637,0.0202144459,0.0010556064,-0.0135117611,-0.0123680495,-0.0097680995,0.0123082036,-0.00334968,-0.0103266565,-0.0293109473,-0.0183791872,-0.0223954786,0.0039431467,-0.0094489232,0.0400565192,-0.0132790292,-0.0249754805,-0.0109450584,-0.1079877019,-0.0278746579,0.0417055935,-0.0081788711,-0.0325026996,-0.0000871187,0.042929098,0.0394447669,0.023871664,-0.0263053775,0.0023273211,-0.0555897281,-0.0045116781,0.0046213949,-0.0308536272,0.0124212448,0.0304280613,0.0222624894,0.0541534387,0.0242706351,0.0188712496,-0.0115235643,-0.0256271306,0.0727720037,0.0096218102,-0.0090233563,-0.0185653735,0.0620264299,0.0016158258,-0.0298429057,0.0182860941,0.0210123844,0.0292843487,-0.0146421744,-0.00585155,0.0262787789,-0.0095752636,0.0000172601,-0.0137777412,0.0014354584,-0.0185520742,-0.029470535,0.0356944576,-0.0768148974,0.0544726141,-0.0188978463,0.0218236223,0.0456952862,0.0008519657,0.0063535864,0.0423173457,0.0295503289,-0.000609675,-0.0020713157,0.0483550839,-0.0054459316,-0.0177674349,-0.0262388829,0.0034909816,0.0230338294,-0.0149081536,-0.0213448592,0.0042556729,-0.0423173457,-0.0222890861,-0.0038101571,0.034630537,0.0047710082,-0.0156927928,-0.0011736348,-0.0072878399,0.050376527,0.0282736272,-0.0099609345,0.0025866511,0.0150411436,0.0217970237,-0.0117031001,-0.0009799685,-0.0096218102,0.0005947137,-0.0061906739,-0.0266910475,0.0130196987,0.0111112958,-0.0087307785,0.004139307,0.0187249612,0.0109650074,0.0189776402,0.0314653814,0.0211187769,-0.0256670266,-0.0047710082,-0.0083118612,0.0052963179,0.0040761367,-0.0070817056,-0.0204937253,-0.0103399549,0.0369977541,-0.0244036242,0.0010107222,0.0137511427,0.0064899009,-0.0057285344,0.003296484,-0.0040628375,-0.0004438534,0.0074208295,-0.0255340375,0.0026714322,0.0358008482,0.0185786709,-0.0147219682,0.0344177559,0.0267708413,0.002684731,-0.0132524315,-0.0280874409,0.0129798017,-0.0168498047,-0.0116033582,0.0245765112,-0.001053944,0.0094023775,0.0309334211,0.0035707755,0.0260260999,-0.0198952705,0.0379552804,0.0752722099,-0.0013456903,0.0422375537,0.0043554152,-0.0343911573,0.0255872328,-0.0035475022,0.0323697105,0.0126606263,0.0013390408,0.0206001159,-0.0012351426,-0.0058748233,0.021424653,-0.0210123844,-0.0263452753,0.0146953706,-0.019748982,0.027103316,0.028911978,-0.0437536351,-0.0283268224,0.0485944636,-0.0134585658,0.0533555001,-0.0441792049,-0.0079993354,-0.0144825866,-0.013185936,-0.0024636355,0.0224486738,0.0241376441,-0.0206267145,0.0116565535,-0.0050669103,-0.0262255836,-0.0116299558,-0.0319175459,-0.0060011637,0.0024619733,0.0017438284,0.0247095004,0.0162114538,0.0397639424,0.0071681491,0.0021394731,0.019230321,-0.0146421744,-0.0211187769,-0.0074341283,-0.0048474772,0.0097946972,0.0242839325,0.0396841504,-0.019748982,-0.0275022853,-0.0137910396,0.0033230821,0.0090499539,0.009162996,0.0034278114,0.0108918631,-0.0039531211,-0.0058116531,0.0164641347,0.0236455817,0.0130196987,-0.0010290084,-0.0061474526,-0.0701122135,0.0076801595,0.0048574517,-0.010625883,0.0135184107,0.0616008639,0.0131460391,-0.0008058349,-0.0259064082,0.0162247531,0.0244036242,0.0151874321,0.0110913478,-0.0038700025,-0.0211852714,0.0328484736,0.0206134152,0.0225683656,-0.0251084697,-0.0284066163,-0.0327952802,-0.0256404281,-0.0154401129,0.0344975479,-0.011742997,0.0663884953,0.0349497125,-0.0058681737,-0.0146155767,-0.0107455738,-0.0026714322,-0.0057418337,0.0189643428,-0.0084382016,0.0202410445,0.0027462388,-0.0018818054,0.0035275538,-0.0117762443,-0.0007389244,0.0231535193,0.0160518661,0.0009384091,-0.0019433131,-0.0250951704,-0.007892943,0.0495519899,-0.0243238304,0.028353421,-0.0040728119,0.0097149033,0.0158789791,0.0256271306,0.0063535864,0.0353752822,0.0180866104,-0.0050735599,0.0042889202,-0.0053195911,-0.0059280191,-0.027236307,0.0452165231,0.0032017289,-0.0161981545,-0.0063037155,0.0020713157,-0.0222890861,-0.001612501,0.0187648572,0.0180999078,-0.0297365133,0.0248557888,-0.0020995762,-0.0116166566,0.0094223255,0.0316515677,-0.0641010702,-0.0233530048,-0.0012974815,-0.0299758948,-0.0260260999,-0.001840246,-0.0159321744,-0.0151475351,0.0480359085,-0.0341783725,-0.0203740336,-0.0384606421,0.0185786709,-0.0466262139,-0.0194564052,-0.0037569611,-0.0043653892,0.0261457898,-0.0437802337,-0.0088637685,0.015573103,0.0093292324,0.0337528065,0.0030238552,0.0016947885,-0.0113972239,0.0185919702,0.0197356828,0.0110381516,0.0077333553,-0.0083850054,-0.0297897104,-0.0097813979,0.0205602199,-0.0204671267,0.0084780985,0.0138043389,0.0336996093,-0.0281140395,-0.0007019367,0.0143628959,0.0298695043,0.0262521822,0.0504297242,0.0101537695,0.0066262158,0.0186850633,0.0407746658,-0.0203740336,-0.0086177373,0.007247943,0.0100806253,-0.0129199568,0.0002709667,0.0183126926,-0.0067691798,0.012607431,0.0491530225,-0.0333272368,0.0123082036,0.0112708835,-0.0065198238,0.031013215,0.0023888289,0.0151741337,0.0077466546,0.0087374281,-0.0088903662,0.0025750145,-0.016730113,0.0306940395,0.0294971317,-0.0185786709,0.036864765,0.0569728203,-0.0091164494,-0.0279544517,0.0115568116,0.0099010887,0.0223821793,0.000420788,-0.0104795946,0.0050901836,0.0468921959,-0.0120023275,0.0207996015,-0.0299492981,0.028911978,-0.0053395396,-0.0186052695,-0.012108719,0.0188446511,0.0006799102,0.0183924865,0.0290981624,0.0344975479,-0.0170093924,-0.0215177462,-0.0174748562,-0.0186850633,0.0089369128,-0.0032848474,-0.009143047,0.0096883057,0.002983958,-0.0394979641,0.0099941818,0.0136447512,-0.0121353175,0.0023223339,-0.0296035241,0.015014546,0.0081589231,0.0062239217,-0.0250286758,-0.0402959026,0.0065397723,-0.0027030171,-0.0205602199,0.0455622971,0.0087706754,-0.0188978463,-0.0068090768,-0.0349231139,-0.0231269225,-0.0130462972,-0.0041625798,-0.022501871,0.0064566536,0.0050768848,0.0517862178,0.0044152606,0.0253345519,0.0218369216,-0.0087440778,-0.0079195416,-0.0241509434,0.0039730696,-0.0140703181,-0.0426897183,0.0263851713,-0.021038983,0.0130595956,-0.035401877,-0.0298163071,0.0390989929,0.0064300555,0.0146820713,0.0290715657,0.0053062919,0.0060909316,0.012647328,0.0029889452,-0.0394713655,-0.0084847482,0.0169960931,-0.0322633199,0.0377690978,-0.0137378443,0.000208316,0.0042855954,0.0155598037,0.0121286679,0.0116033582,-0.0035109301,0.0081788711,0.0063801846,0.0163311437,-0.0134253176,-0.004917297,-0.0315717719,-0.0105992854,0.0014803425,-0.0330346599,0.0297099166,0.0237652734,-0.0247227997,0.0173019692,0.0155864013,-0.0158390831,0.0058349264,-0.020347435,-0.0130861942,0.0051068072,-0.0342581682,0.021637436,0.0092693875,0.0038766519,0.0244967174,0.0248823874,-0.0149347521,0.0186052695,0.0180866104,-0.0309334211,0.0236056857,0.0056753387,-0.0170492902,-0.0131925857,0.0064167567,0.0143362982,0.0418917798,0.0031269221,-0.0015243953,-0.0013839249,0.0197755806,-0.0232998095,0.0494987965,0.0080525307,0.0171290841,0.0050170394,0.009315934,-0.0164907314,0.0370243527,-0.0155864013,-0.0399235301,0.0026165738,-0.0013207548,-0.019921869,0.0092228409,-0.0147884628,0.008238717,-0.000513673,0.0241243448,-0.0130396476,-0.015227329,0.0113307294,0.0145357829,0.0121885128,-0.0129465545,-0.0121419663,0.0250552744,0.001166154,0.0020862771,-0.0147086689,0.0046878895,0.0143628959,-0.0130462972,-0.0029640095,0.0135250604,-0.0104130991,0.0081323246,-0.002425401,-0.0253611505,0.0139107304,0.0050702351,-0.0070019118,0.0093225837,-0.0079926858,0.0255473368,0.0008432383,-0.0121286679,0.0061275042,-0.0106923776,-0.0037769096,0.005582246,-0.0040029921,0.0102668107,0.0313323922,-0.0005868174,0.0294439364,-0.0065198238,-0.0036173218,0.0108120684,-0.0295769256,-0.022156097,0.0062538441,0.0005560635,0.0181265064,0.0200548582,0.0318111554,0.0205868166,0.0158656798,-0.0338059999,-0.0303216688,-0.0052564209,-0.0127936164,-0.0250020772,-0.0010497881,-0.0008968498,0.0219034161,-0.0024952206,0.0206134152,0.0226880554,0.0009001745,0.0071681491,-0.0104596457,-0.0303216688,0.0015268889,0.0473443605,0.0041725542,-0.012800266,0.0402161069,-0.0084913969,-0.0499243625,0.0037170642,-0.0105460892,0.0183924865,-0.0393649749,0.0032881722,-0.001424653,0.0167700108,0.0017521403,0.016477434,-0.0105726868,-0.0264915638,-0.0163843408,0.0280874409,0.0179270227,-0.014110215,-0.0103466045,0.002724628,-0.0139107304,0.0425301306,-0.02822043,-0.0269969255,-0.0198819712,0.0168498047,-0.0249621812,0.0472911634,0.0081256749,0.0319441445,-0.0012692212,0.0197090842,0.0095553156,-0.0363860019,0.0209990852,0.0068888706,-0.0048840498,-0.022927437,-0.0040262653,-0.0001905494,-0.0033729533,-0.0052896682,-0.0072612418,-0.0283268224,-0.0075870669,0.0232865103,-0.034896519,0.0089435624,0.0137112457,0.0224885717,-0.0272629037,-0.0474241525,0.0303216688,0.0010888538,0.013225833,0.0333272368,-0.0101471199,-0.0081855208,0.0136314519,0.0292843487,0.0079195416,-0.0014462639,-0.0125076883,-0.0289917719,-0.0213980544,-0.0299492981,-0.0159454737,-0.007035159,0.0187382586,-0.0186850633,0.0095819132,-0.0085179955,0.0177275371,0.0112043889,0.0191372279,-0.0125808325,0.0094888201,0.0107256258,-0.0013648076,-0.0063968082,0.0495519899,-0.0169428978,0.002166071,0.0151874321,0.0153470198,-0.0164109375,-0.0116432551,0.0315983705,0.008085778,-0.0083983047,0.0316781662,-0.0198553745,-0.0154800098,0.0279012546,0.0012293243,0.0060377358,-0.0064533288,0.0057983543,0.0031767932,0.0153736183,0.0520787947,0.0192170218,0.013724545,0.0071747983,0.0013540022,0.0037702601,-0.0068157259,0.0407480672,0.0069686645,0.0076136645,-0.0197622813,0.000176627,-0.0263851713,0.0596326143,0.0222491901,0.0198952705,-0.0217172299,0.013378772,-0.0064998753,0.0060078129,0.0098412437,0.0068223756,-0.0032216774,-0.0005244784,0.01574599,-0.024004655,0.0143495966,0.0029656719,0.0496317856,0.0078796446,0.0137777412,-0.02121187,0.0115634613,-0.0037902086,0.0334602259,-0.0181531049,-0.002054692,0.0015069405,0.0024769346,0.043274872,0.009335882,-0.0350827016,-0.0077400049,0.0322899185,0.0150943398,-0.0070617571,-0.0044651316,-0.0284066163,0.029896101,0.0355614647,-0.0198686719,-0.0036206467,-0.0252414588,0.0061042309,0.0074806749,0.0151475351,-0.0253212526,-0.0009533705,-0.0129997507,0.0238583665,0.0269969255,-0.0036206467,0.0111445431,0.0391255915,0.019748982,0.0237519741,0.0085046962,0.0231535193,-0.0042423741,0.0054924777,0.008411603,0.0287257917],"50":[0.0062976442,0.0230591763,0.0417411141,-0.0057755224,0.0321855731,0.0139399301,-0.0308409333,0.0125809833,-0.0075600338,-0.0368202962,0.0191253833,-0.0340451859,-0.0208991673,-0.0194543917,0.0554736257,0.058563441,0.003452797,0.0109073333,-0.0451170243,0.0405681282,-0.019297041,0.0101420321,0.0310125891,0.0136037692,-0.0097200433,-0.0193256494,-0.0469194166,0.0479493551,0.0453458987,-0.0525268577,0.0058005559,-0.0388515666,-0.0195402205,0.032300014,-0.0041912771,0.0213569179,0.0306978859,-0.0040231966,0.0081751356,-0.0028967017,-0.03484625,-0.0071022836,0.0199121423,0.0520977154,-0.0152488099,-0.0413405821,-0.0612241141,-0.0096771298,0.0599080846,0.0444303975,0.0288525801,-0.008518449,-0.0253050141,-0.0509533398,0.0217288397,-0.0093195122,0.0453458987,0.0453745089,0.0039802827,-0.0362195,-0.0215714872,-0.0167221949,0.0225585122,0.0363911577,-0.029725166,0.0008256494,-0.0064335386,0.0223725513,0.0023960373,0.0267927032,0.0228303019,0.0325002782,-0.0158496071,-0.0217002295,0.0177950468,-0.0471196808,-0.0671748742,0.0251333583,-0.020470025,-0.0188822038,0.0135823125,-0.0150342397,-0.0156779513,0.029725166,0.0026267006,-0.0290242359,0.0115295881,0.0121589946,-0.0225728173,-0.0018417301,-0.025290709,0.0435435064,-0.0021439169,0.0184387583,0.0146480128,0.0253622327,-0.0152202006,0.0193971731,0.0251619667,0.0628262386,-0.0014662318,-0.0535854064,-0.0312700756,-0.01476245,0.0355614834,-0.0231450051,-0.0222867224,0.0135823125,0.0026374292,0.0055859853,-0.0699785948,-0.043314632,-0.0539859384,-0.0160498731,-0.0167364981,-0.0051783016,0.0014456687,-0.0258056782,0.0032954453,-0.0033437237,-0.0359047987,0.0142760901,0.0003012927,0.0262348205,0.0148339737,-0.0266639609,-0.0074026822,-0.0222008936,-0.0301256981,0.0226443391,0.003350876,-0.0338735282,0.0159640443,-0.0309553705,-0.0131174102,-0.0132604567,-0.0261919051,-0.0372494385,0.0041769724,-0.0100705083,0.0337877013,-0.0009141598,0.0515541397,0.0042198864,-0.0046526035,0.0110074664,0.0165934525,0.010728525,0.0087044099,-0.0405109115,-0.0050638639,-0.0192827359,-0.0449167565,-0.0007787121,0.0236742776,-0.0343884975,0.0321569666,0.0442015231,-0.0133462846,-0.0180096179,0.0233881846,0.0232022237,-0.0301256981,0.0014832186,-0.0317278244,0.0122591276,-0.037106391,-0.0119658811,-0.0713518411,0.0109216385,-0.0513538718,-0.0439726487,-0.0174660385,0.0552733615,0.0541003756,0.002514051,0.0202554557,-0.0400817692,-0.0304690115,-0.0311270263,-0.0584490038,-0.0302687455,-0.0221007615,-0.0032453788,-0.0130172772,0.011715549,-0.0831961334,0.0104853455,0.0147052314,0.0331869051,-0.035647314,0.0301543083,0.0496373102,0.0261060782,0.0180954449,-0.0357045308,0.0260345545,-0.0113078654,-0.0275365468,0.0063405582,-0.0169510692,0.0105783259,0.0057969796,-0.0193399545,0.0228875205,-0.0052677058,-0.0061689019,0.0260774679,-0.0561316423,-0.0219148006,0.0114008458,-0.0031738554,0.0209992994,-0.0114079984,-0.0114223026,-0.0256054122,-0.020183932,-0.0053070439,-0.0110646849,-0.0076673194,-0.0057862513,0.0936671719,0.0006361121,-0.0261060782,-0.0397098474,0.0422560833,0.0302115269,-0.0036262413,0.0478349179,0.0355328731,-0.023617059,-0.0443445705,0.0084040109,-0.0616246462,-0.0017067295,0.0089618945,-0.0290242359,0.0000582246,0.0223296359,-0.0249044821,0.0014081189,-0.0207847282,0.0062690349,0.0221722852,0.0160784833,0.0108644199,-0.009841634,-0.0656299666,0.028638009,0.0482926667,0.0222151987,0.0251619667,0.0115438933,-0.0409686603,0.017709218,-0.0423991308,-0.0440584756,0.0464044474,0.0336160436,-0.0265781321,0.0216287058,-0.032385841,-0.0243609045,0.0373066589,-0.0592786781,0.0368775167,0.0357617512,-0.0353898294,0.0041340585,-0.0229590442,-0.0002644135,-0.0012212638,0.026678266,-0.0545009077,-0.0274793282,0.0037692885,0.0351895615,0.0011676211,0.0037549837,0.0144548994,-0.0037978978,-0.0474057756,-0.025691241,0.0016030205,-0.0094267968,0.0082895737,-0.003965978,0.0160641782,0.0139184734,-0.0585062243,-0.0176376943,0.0259773359,-0.0048671742,-0.0366486423,0.0226729494,0.0202554557,0.0083897067,-0.0027411382,-0.047148291,-0.0037764409,0.0090405708,-0.0024246466,0.0428568795,-0.0101420321,-0.0094411019,0.0515541397,0.0051282351,-0.0295821186,0.014862583,0.0225012936,0.007581491,-0.0211423468,0.0315275602,0.0077960617,-0.0188249853,0.0037049174,0.0506386384,0.0322427936,-0.0152917244,-0.0801635385,-0.0113436272,-0.0696924999,-0.0257770699,-0.0084397728,0.0198406186,0.0068519511,0.0370491743,-0.0105068022,0.0179667026,0.0132533042,0.0024014015,-0.0411975347,0.038594082,-0.0049923402,-0.0109788571,-0.0455747731,0.029038541,0.0118514439,-0.0541862026,0.0196689628,-0.0395668,-0.0274221096,-0.0732972845,0.0249473974,0.0265352186,0.0171513353,0.0087616285,-0.0460611321,0.0320139192,-0.0132175423,-0.0397670642,-0.0163788814,-0.0395954102,0.0031345175,0.0209849942,-0.0365342051,0.0057469131,-0.020570159,-0.0143976808,-0.0264350846,-0.0115295881,0.0316419974,0.0665454641,0.0184816718,0.0055716806,-0.0037764409,-0.033759091,0.001206959,-0.0196546577,-0.027951384,0.024604084,-0.0250761397,-0.0253479276,0.0006656155,-0.0729539692,-0.0140114538,0.0842260718,-0.0088474574,0.0155778183,0.0150056304,0.0563605167,-0.0026624622,0.0135036372,-0.0124093276,0.0004257883,0.0007237284,0.0042306152,0.0181955788,-0.0391376577,0.0099703763,0.0718668103,-0.0458608679,0.0152917244,-0.0401103795,0.0122877369,0.0235026218,-0.0100776609,0.0684336871,0.0523552001,-0.0162644442,-0.0243752096,0.0030558414,-0.0317850448,0.0085041439,0.0004617736,0.0315275602,-0.0024121301,0.0280229077,-0.0345029347,-0.0346745923,-0.0500378422,-0.0089761997,0.0359620154,0.0129815154,0.0135823125,-0.0293532442,-0.0420558192,0.0561030321,-0.0234310981,0.0508675128,-0.0377357975,0.0243895128,0.0069771176,-0.0160927866,-0.0132103907,0.014612251,0.0406253487,-0.0110646849,-0.0056682373,-0.0450884141,-0.0197261814,0.0236742776,0.0268213116,-0.0165648423,0.0111719705,0.0018023922,0.0656299666,0.0028251782,0.0592214577,0.029238807,0.0143118519,-0.0139971487,0.0038443881,0.0099274619,0.04094005,-0.0432574116,0.0011586807,-0.0020688171,-0.0178951789,0.0021993476,0.0773025975,-0.0640850589,0.0211995654,0.0060008215,-0.0318136513,-0.0292101968,0.0149341067,0.0068412228,0.0073061255,0.0093052071,-0.0055609522,0.0346459821,-0.0711801872,-0.0369919538,-0.0129886679,-0.0599080846,0.0301829167,0.011465217,-0.0111147519,-0.0510105602,0.0120159481,0.0247757398,-0.0311842468,-0.0003987435,-0.0371350013,0.0095698442,0.0005024526,-0.0059829406,0.0450025871,-0.0210708231,0.0320711359,-0.0046955179,-0.0016226894,0.0672320873,0.0150056304,0.0597936474,0.0065694335,-0.0161070917,-0.0083897067,-0.0017192462,-0.0056217471,-0.0034849825,0.0551589243,-0.0174517334,0.0235598404,-0.0326719359,-0.0537284538,-0.0450025871,-0.0084111635,-0.0031631268,-0.0151343727,0.026878532,-0.0185675006,0.0536998436,-0.0080320891,0.0348176397,-0.0433432423,0.0146909272,0.0058792317,-0.0066481093,0.021943409,-0.0098702433,0.0286666192,-0.0009745077,-0.0105354115,0.0013258669,0.0070486409,0.0009020902,-0.0180096179,-0.0054000244,-0.0125738317,-0.0135680083,-0.019983666,0.0008158149,0.0049565784,0.0016083847,-0.0552733615,-0.0640278384,-0.0198549237,0.0113722365,0.0017961339,-0.0110217715,0.0060902261,-0.0220578481,-0.061910741,-0.0003265495,0.0000875045,-0.0000065726,-0.0185818058,0.0257913731,0.0230734814,0.0375069231,0.0005462607,0.025290709,0.0178951789,0.0017281866,-0.0175947808,-0.0012203697,0.0162787493,0.0455175564,0.0149913253,-0.0462900102,0.0194686968,-0.0089189801,0.0120946234,0.0180382263,0.0083825542,-0.0157923885,0.0077459952,0.0183386263,-0.0108215054,0.0046239942,-0.0125881359,0.0090620276,-0.0262491237,-0.0012963634,0.0162215289,-0.0452314615,-0.0610524602,0.014862583,-0.039166268,-0.0142117199,-0.0029932584,0.0169081558,0.0097343484,0.0238459352,-0.0305834487,0.0110575333,0.0076530143,-0.0013929202,-0.0216144025,-0.0002784946,-0.0177378282,0.074384436,-0.0121446904,-0.0017880875,0.0107642869,0.0122877369,0.0225442071,-0.0037335267,-0.0080392417,-0.0024425276,0.0094267968,-0.013188933,0.0261060782,-0.0016656035,0.0194543917,0.0360764526,-0.0251476634,0.0357617512,-0.008067851,0.0055752569,-0.0097271958,-0.0089118285,0.0089905038,0.0199264474,0.0169510692,0.0102421651,0.0227730814,0.0064585721,-0.0056467801,-0.0282231737,-0.0114723695,-0.0217145346,0.002653522,0.0092122266,0.0078103663,-0.0059328745,0.0093981875,-0.0081107644,-0.0245897789,-0.0267927032,-0.0037835932,-0.0314703397,0.0047169747,0.0197404865,-0.0232022237,-0.0221007615,0.0036351818,0.0313559026,0.0226729494,-0.0150342397,0.0549300462,0.0117513109,0.0108858766,0.0332441218,0.0291815884,0.0291815884,0.0126882689,-0.0354184359,0.0103136888,-0.0069985744,-0.0011568926,-0.007213145,0.0504097641,-0.0029235231,0.0066659902,0.0101634897,0.0178951789,-0.0267927032,-0.0354756564,-0.0176519994,0.0424849577,0.0528987795,0.0051496918,-0.0296679474,-0.032300014,-0.0245468654,-0.0097343484,0.0001508699,-0.0155349039,-0.000837272,-0.0055788332,0.0121160811,-0.0303545725,0.011515283,-0.0098773949,0.0116368737,0.0088474574,0.0531848744,0.034359891,0.0182957109,0.0266067423,0.0262920391,0.0479493551,-0.0163645763,0.0107070683,-0.0095984535,0.0173086878,0.0375069231,-0.0336446539,-0.0090405708,-0.0110575333,0.0308123231,0.0007478676,-0.0002054066,-0.0392234884,0.0096127586,0.0341024064,0.0233738795,-0.0163788814,0.0103422981,-0.0017755709,-0.0216144025,-0.0048242602,-0.0427996628,0.0197690949,-0.0060794973,-0.0311842468,-0.0389660038,0.0220578481,-0.0001740033,-0.0661449358,-0.0323572308,-0.0132246949,-0.0213855263,0.0164504051,-0.0314703397,0.0314703397,-0.0181526635,-0.0271503199,0.0030969675,-0.0224011596,0.0131746288,-0.0065622809,0.0193256494,-0.004234191,0.0205129404,-0.0188822038,0.0300398692,-0.0246613026,0.0314703397,-0.0209563859,-0.0176376943,0.0111362087,-0.0226014256,0.0102564702,0.0598508641,-0.0199693609,-0.0140114538,0.0190395564,0.0122448234,0.0173516013,-0.0078175189,0.0392234884,-0.0315847769,0.0024371631,-0.0251476634,-0.0139113208,-0.0179953128,-0.0195402205,0.0110217715,0.0068054609,0.0152345058,0.0197977051,-0.0349606872,0.0183958448,0.0229590442,-0.0079033468,-0.0097200433,-0.003862269,0.0138326446,0.0037978978,-0.0065300954,-0.018796375,-0.0226729494,-0.0132747618,0.0273219775,0.0242750756,0.0220864564,-0.0110718375,0.0256769359,-0.0090334183,0.0137825785,-0.0142617859,0.0429713205,-0.0295821186,0.0167364981,-0.018896509,-0.088689141,-0.0051961821,-0.0529846102,-0.0134964846,0.010778591,0.0570471436,-0.0256626308,-0.039480973,0.0123378038,0.0169796795,0.0030504772,0.0142832426,-0.0014394104,-0.0154061615,-0.033272732,-0.0022386855,-0.0072739399,0.0033830616,0.0040661111,-0.005045983,-0.0210708231,-0.0387371257,-0.0036494865,-0.0086972574,-0.0200122744,0.0211995654,-0.017709218,0.0293532442,-0.0584776141,-0.0311270263,0.011028924,0.000016442,-0.0237601064,-0.0131817814,0.0276795942,0.0168223269,-0.0048242602,-0.0204414167,0.0601941757,-0.042828273,-0.0399959423,0.0124951554,-0.0165934525,0.0018166968,0.0048528695,0.0106856106,0.0326719359,0.0377357975,0.0137396641,-0.0125809833,-0.0058685034,0.0395381898,0.0008766099,-0.0187391564,-0.0180525314,0.0379360653,0.0091907699,-0.0256340224,0.0215571821,-0.0181526635,0.011515283,0.0225871205,-0.0110432282,0.0327291526,0.0006700858,0.0285950955,0.0039266399,-0.0064299628,-0.021056518,-0.0365342051,0.0405967385,-0.0264493898,0.0542720333,-0.0167651083,-0.0219291057,0.0407683961,0.0118442914,-0.0137682734,0.0296679474,0.0092408359,0.0053356532,0.0233595744,-0.0343312807,0.0255195852,-0.0508675128,-0.0094840163,0.0182814058,0.0022368974,0.0297537763,-0.0073883776,0.0101849465,-0.0262348205,-0.0218146667,0.0182527974,-0.0043879668,0.0332155116,-0.0191969071,-0.001533285,0.036133673,0.0401962064,0.0124808503,0.0135894651,0.0110432282,-0.0140543673,-0.0109073333,-0.0067589707,0.002104579,-0.0152774192,-0.0103923641,0.0078103663,-0.0739266872,0.0041412106,-0.0162215289,-0.0126167452,-0.0000149613,0.0249187872,-0.0028305424,-0.0004380814,0.0214856602,-0.0111290561,-0.0196546577,0.0128241638,0.0109502478,0.0136538362,-0.0278941654,-0.0148768881,-0.0099560712,-0.0193113443,0.0175804757,-0.0175804757,0.0172943827,-0.0030397486,0.0222581122,-0.0112077324,0.0281659551,-0.0106856106,-0.0115581974,0.0192827359,0.0061724782,0.0101420321,0.0057969796,0.0136967506,0.0184101481,0.0082824212,-0.0027804761,-0.0016816963,0.0391376577,-0.0225871205,0.0287667513,-0.0017308687,-0.0193685628,0.0427710526,0.0098988526,-0.0193542596,0.0042377673,-0.0104066692,0.0410258807,-0.010728525,0.0199550558,0.0702646896,0.001614643,0.0391376577,0.0228159968,-0.0386226885,0.0249760058,0.042513568,-0.000796593,-0.0009512625,0.0151772862,0.0033365712,-0.0205558538,-0.0231307,0.0137110548,-0.007381225,-0.0082395067,0.0176090859,-0.0206989013,0.0280801263,0.0248758737,-0.0138612539,-0.0385082513,0.0198692288,0.0108000487,0.0593358949,-0.04428735,-0.009691434,-0.0198835321,0.0010862631,0.0246469975,0.0387657359,0.0017210342,0.0138612539,0.014075825,-0.0180525314,-0.0093195122,-0.0189251173,-0.0060723452,-0.0063155252,-0.0309553705,-0.0112220375,0.0101706414,0.014175958,0.0181383602,-0.0150914583,0.020670291,-0.0052605532,-0.0095984535,0.0241463333,-0.0124236317,-0.006176054,0.0167508032,0.0341310129,0.0307837147,-0.0108572673,-0.0038479643,0.0155062946,-0.0300112609,-0.0216430109,0.0275222436,0.0021349764,0.0231736135,-0.0194543917,0.0132533042,-0.0023263018,0.0350751244,0.0265924372,-0.0331296846,0.0057254559,-0.0204843301,0.0007295397,0.0312128551,-0.009791567,-0.0307837147,0.0393093154,0.0089189801,-0.0280372128,-0.03424545,-0.035246782,0.0169653744,-0.0055967136,0.0350179039,0.0259344205,0.0116011119,-0.0257341545,0.0040160445,0.0035654465,-0.0173945148,-0.0045095566,-0.0017255044,-0.0403678641,-0.0356759205,0.0328149833,0.0012167935,0.0780464411,-0.0417697243,-0.0034599493,-0.0413978025,0.0236885827,-0.0039337925,-0.0003068805,0.0276652891,0.0127955545,0.0337877013,0.0106641538,0.0173086878,0.0199979711,-0.0101205753,-0.0095126256,0.0166506711,0.0081965933,-0.0025837864,0.0026123959,-0.0304404013,-0.0030272321,0.0479779653,0.0389373936,0.0311270263,0.0140972817,0.002372792,0.000006845,0.0200265795,0.0111719705,0.0212996975,0.0233452711,0.0281230398,-0.0049494263,-0.0250761397,0.0113007128,0.0237458013,0.0098917,-0.0010254682,-0.0243322942,-0.0140329106,0.012101776,-0.0421702564,-0.0142832426,0.0331296846,0.0031094842,-0.0258342884,0.0213855263,0.0165934525,-0.0262634289,0.0015261327,-0.0022851757,-0.0459753051,-0.0092265317,0.0041233297,0.0164933186,-0.0104495836,0.0037871692,0.0152345058,-0.0233166609,0.0266639609,-0.00821805,0.0134464176,-0.0215571821,0.0050424067,0.006987846,-0.0388229564,0.0184673686,-0.0129958196,0.0379074551,-0.0402534269,-0.0083539449,-0.0178093519,0.0174517334,-0.0229161289,-0.03484625,0.0242607705,-0.0117227016,0.0350179039,-0.0117870728,-0.023817325,-0.0034259756,0.0013383835,-0.0035708107,-0.0048922072,0.0150199346,-0.0194973052,0.0136609888,-0.0058398936,0.0489220731,-0.0127383349,-0.0053356532,0.0066373809,0.0412833653,-0.0015878216,0.0217717532,-0.0140329106,-0.0249760058,-0.0080463933,0.057762377,-0.0311842468,0.0172800776,0.0220149327,-0.003166703,-0.0182384923,0.0183815397,-0.0149770211,-0.0055967136,0.0010236801,0.0042949864,-0.0060651926,0.0230877865,0.0096413679,0.0075457292,0.0013008337,0.0037728646,0.0072810925,0.0039695543,-0.01476245,0.0010505014,0.004745584,-0.0057719466,0.0129457535,-0.0010710644,0.0308981519,0.0268070083,0.0672320873,0.0357903577,-0.0026410052,-0.0007062946,-0.000077223,0.0072918208,-0.0176090859,-0.0032400144,-0.0052641295,0.0457178205,-0.0021439169,0.0039445208,-0.0175661724,0.0045095566,-0.0018631872,0.0185675006,0.0151057635,-0.0162644442,-0.0010549716,0.0098487856,0.0057576415,0.0304690115,0.0027679594,0.0073669204,-0.0157780834,-0.0452600718,0.026478,-0.0095626917,-0.019096775,0.0118299872,-0.0009141598,0.0084326202,0.0157351699,0.0335874371,0.0096771298,-0.0047849221,0.0002099885,0.0195974391,0.001411695,0.0000898514,-0.0089618945,-0.0168223269,-0.0033151142,-0.03149895,-0.0157923885,0.0198835321,-0.0481782295,-0.0300398692,0.0197547898,0.0007259635,-0.0250332244,-0.0095698442,0.0099703763,0.0005650357,0.0011229189,0.0147481458,0.0092909029,0.0231736135,0.0050388305,0.0237028878,-0.0458322577,-0.003084451,-0.0013553703,-0.0178522654,-0.0155062946,0.0012561315,0.013289066,-0.0123234987,-0.0136252269,-0.0473485552,-0.0079033468,0.013289066,0.0239889827,0.0167221949,0.0389660038,0.0168080218,0.0020080223,0.0218432769,0.0152488099,-0.0323572308,-0.0030576296,0.0157065596,-0.008718715,0.0635700896,0.0067303614,-0.0265781321,-0.0030790868,0.0006030325,0.0065157907,0.0106498487,0.0094411019,0.0441729128,0.0009172889,0.0113150179,-0.0069091702,-0.0053714151,-0.044773709,-0.0047992268,0.0310125891,-0.0215571821,0.0025194152,-0.0116082644,-0.0245182551,0.0592214577,-0.001451927,-0.0187105481,-0.0166077558,-0.0335016064,-0.0320139192,0.000816709,0.0024264348,0.0056753899,0.0572474077,-0.0077173854,0.0074455962,-0.020670291,0.0080392417,-0.053757064,-0.0069485079,0.0061867828,-0.0029735896,0.0164074916,-0.0016977891,-0.0098773949,0.0080893077,-0.0232308321,0.0344457179,-0.0431143641,0.0280944314,0.0015931859,0.0034492207,0.020770425,0.046175573,-0.011865749,0.0494942628,0.0061224117,0.000571741,-0.0053714151,0.0588209257,0.017122725,-0.0254194513,0.0001529932,-0.0312414654,-0.020470025,0.0329008102,-0.0146480128,0.0093838833,0.0047706175,0.0042449199,-0.0136395311,-0.037106391,0.0067410897,0.0171942487,0.0146194035,-0.008754476,-0.0237887166,-0.0268213116,-0.0262348205,-0.0357903577,-0.0094196452,0.0078532798,-0.0006294068,-0.0164647102,0.0026034554,0.0229590442,-0.0235741455,-0.0093910359,-0.0260917731,-0.028051516,0.0120731667,0.0139470827,-0.0145335747,0.0046740607,-0.0302973539,0.0074312915,-0.0245754737,-0.0112721035,0.0030647819,-0.0255052801,0.0063334061,0.0363911577,0.0075099673,0.0195688289,-0.0014152712,0.0057183038,0.0228589103,-0.061910741,-0.0208276436,0.0027858403,-0.0265781321,-0.0012498732,0.0309839807,-0.0049851881,0.0302401353,0.022444075,0.0023620636,0.0069914223,0.0109144859,-0.0292245019,-0.0152774192,-0.0284234397,-0.0142188715,-0.0126525071,-0.0225728173,-0.0029145826,-0.012302042,0.0133963516,0.0134678753,-0.0099131567,-0.0173086878,-0.0021188837,0.004352205,-0.0367916897,0.0362195,0.002598091,-0.0213855263,0.0247614365,0.0538142808,0.003003987,-0.0364483744,0.0278369468,-0.0130029721,0.0063727438,-0.0243036859,-0.0065408242,-0.002903854,0.0486645885,-0.0583631769,-0.0049315454,0.0000467697,0.0018345778,-0.020670291,0.0219004955,0.0045453184,-0.0433432423,-0.0150914583,0.0223582461,-0.0148053644,0.0180096179,-0.0110003138,-0.0241892468,-0.0103566032,-0.0020384197,-0.0056038662,0.0362481102,0.0180811416,0.0104209743,0.0007943579,-0.0133033711,-0.0047420082,-0.0224297699,0.0102207083,-0.0283948295,-0.0320425294,-0.0295249,0.0174517334,0.0235741455,-0.0118943583,-0.0074241394,0.0112220375,-0.0016271597,-0.0390518308,0.0239603724,-0.0085828202,0.0151915913,-0.0054286337,0.0226586442,-0.0257627647,-0.0202983692,0.0548442192,-0.005807708,-0.0273076724,-0.0091836173,0.0282231737,-0.0461183526,0.0200694948,0.0345315449,-0.0016396763,0.0282946974,0.0026016673,-0.0195116103,0.0066731423,-0.0232594423,0.0014689139,-0.0062010875,-0.0006495228,0.0064728768,-0.0105783259,0.0100347474,0.0370205641,-0.0022994806,0.0331582949,0.0203841981,-0.0336160436,0.011615416,0.0123163471,0.0008864444,0.0444017872,0.0055287667,-0.0328435898,-0.0096485205,0.0099131567,-0.0378216282,-0.0168080218,0.0312700756,0.0095841493,0.0081107644,0.0062547303,0.0100204423,0.0100275949,0.0207418147,-0.0162644442,-0.0063906247,-0.0191110782,0.0104638878,0.0094124926,0.0454603359,0.0423705205,0.0001552284,0.0167651083,0.0433718488,-0.0087973904,-0.0007188112,0.0013509002,0.0603086166,-0.0037120697,0.0063262535,0.0154204667,0.0025641175,-0.0032185575,0.0159211308,0.0171799455,0.0170368981,-0.0224583782,-0.0255481936,-0.0226586442,-0.0129886679,0.0135107888,0.0026767671,-0.0220578481,-0.0334443897,0.017623391,-0.0226443391,0.0051282351,-0.0012230518,0.0597364269,-0.0198978372,-0.0053463816,0.0046955179,-0.0074599008,0.0035922679,-0.0025158392,-0.0209277757,0.0001196901,-0.0250189211,0.0306978859,-0.0071237404,0.0086257337,-0.0395095795,0.0142832426,0.0224869885,-0.0126954215,0.0440298654,-0.0114223026,-0.0000286653,0.0032596835,0.0103422981,-0.0367630795,-0.0068734083,-0.0549586564,0.0055931378,0.004252072,0.0061045308,-0.0456606038,-0.0258342884,-0.0310984179,-0.004552471,0.0122090615,-0.0326719359,-0.016836632,0.0193399545,0.0084111635,0.0204986352,-0.0138326446,0.0203841981,-0.0143404612,-0.0181669686,0.0344457179,0.0037227981],"51":[0.0098179597,-0.0084706675,0.0502989106,0.0127820028,0.0506305508,0.0262411069,-0.0286593232,0.0489999801,-0.0154765872,0.0045738844,0.0352092348,-0.0333852097,0.0335786678,-0.0409576818,0.0386361964,0.0255501866,-0.0292949695,-0.0090164943,-0.0615747087,0.0312019046,0.0117387148,0.0063357279,0.0160984136,0.0237123426,-0.0167478789,-0.0107230637,-0.0452690162,0.0453795642,-0.0248869043,-0.0708053857,0.0367568955,-0.0350157805,-0.0336339399,0.0099215982,0.0426988006,-0.0318375528,0.0292396955,0.00742738,0.0326113813,-0.0044149728,-0.0194562804,-0.0208795741,0.0191660952,0.0601928718,-0.0397140272,-0.0189450011,-0.0236570686,-0.0308979005,0.0316164568,0.0113241635,-0.0272360295,0.0278854948,-0.0211835783,-0.0255640056,0.0126645463,-0.0498567224,-0.012305269,0.0375859961,-0.011275799,0.0219850447,-0.0054617152,-0.0289356913,0.0434449911,0.0287145972,0.0035513241,-0.0110063413,-0.0060904515,0.0042284247,-0.03031753,0.0391612947,0.0526480339,-0.0021383946,0.0441082753,0.0025754008,0.0280236769,-0.0520400256,-0.052841492,0.048944708,0.0075793825,-0.0008200346,0.0073030149,-0.0090372218,-0.0181020796,0.0058037201,0.0105917891,-0.0464850366,-0.0304004401,-0.0154351322,0.0139012914,-0.0012021991,-0.0561579019,0.050879281,0.0107645197,0.0250665434,0.0433620811,0.0013187918,-0.0015847957,0.0519847497,-0.007489563,0.0119667184,0.0161398705,-0.0073651974,0.0212112162,0.0125954552,0.0289909653,0.0135696502,0.0445780978,0.003748236,-0.0143572986,-0.0014017021,-0.1167376861,-0.0148823969,-0.0033043204,0.0067917346,0.0012522908,0.009520865,-0.0012747457,0.0159049574,-0.0101081459,-0.0016253871,-0.0272774845,0.0046395217,0.016955154,0.0127958218,-0.0101012373,-0.0085881241,-0.0120219924,-0.061961621,-0.0241683498,-0.0111237969,0.0242512599,0.0078281127,0.0181158986,0.0145507557,-0.0393271148,-0.0168446079,-0.0654438585,0.0091132224,-0.0398798473,-0.0181435347,-0.0135627417,-0.0468443148,0.0091892239,0.015131128,-0.026310198,-0.0159602314,-0.0123950886,0.0432515331,-0.0507410988,-0.0095692296,0.0041178777,-0.0671573356,-0.0395482071,0.0158911385,0.0702526495,0.0302898921,0.0113863461,0.0541680567,0.0061699073,-0.020713754,0.0247349031,0.0743428916,-0.0267662052,0.0198431965,-0.0359001569,-0.001064879,0.0129270963,-0.0337721258,-0.062182717,-0.0049331621,-0.0278302208,-0.052620396,-0.0556880794,0.041123502,0.0142743886,-0.0509345531,-0.0017497526,-0.0307320803,0.0128580043,-0.0443293676,-0.0806440711,-0.0142882066,-0.0203130208,0.0096314121,-0.0133761931,-0.047175955,-0.0335510299,-0.0116903512,0.0188344549,0.0543338768,-0.0236294325,0.0751719922,0.0077728396,0.031754639,-0.0000102963,-0.0229385141,0.0270978455,0.0331088416,-0.0079110237,0.0032110463,0.0417867862,0.0130376434,0.0323350132,0.0127681848,0.0235188846,-0.0220126826,-0.0046982495,-0.0125194537,-0.0551906154,-0.0233392473,0.0147994868,-0.0003456754,0.0123536335,-0.0376965441,-0.0303451661,-0.0053131678,-0.0445504636,0.0025045816,-0.0052924403,0.0423118845,-0.02065848,0.0321415551,-0.0158635024,-0.0105848806,-0.0052993493,0.0410129577,0.0556328036,-0.0193733703,0.0315335467,0.0008373075,0.0022869422,-0.0133209201,-0.0045047924,-0.0486130677,0.0409853198,-0.0078626592,0.0144402087,-0.0314782746,-0.0062355446,0.0020451206,0.0085604871,0.0184060838,0.0204235688,-0.0197879225,-0.0421460643,-0.0006347819,-0.0475628711,-0.0370332636,-0.0190140922,0.0461257584,0.0423671566,-0.0033198663,-0.0303728022,-0.0422013365,-0.0134798316,-0.0328324735,-0.0053408043,0.0232425183,-0.0164438747,0.0028137679,0.0379176401,-0.0718555823,-0.0477563255,-0.0312295426,-0.0531178601,0.0389125608,0.008574306,0.0006611232,0.020617025,-0.017010428,0.0554117113,0.0331364796,0.0044840649,-0.0450755619,0.0055929897,-0.0496908985,-0.0115176206,0.000998378,-0.0134245576,-0.0005915994,0.0035029596,-0.0035962339,0.0160293225,-0.0016176143,0.0138736553,0.0460152104,0.018806817,0.0328601114,-0.018792998,-0.0324179232,0.0026652203,0.0113932556,0.0466508567,-0.0240578018,0.0302346181,0.0097212316,-0.0064704572,0.0068780994,-0.0165682398,-0.0343524963,0.035651423,-0.0146613028,0.0177289844,-0.0499672666,-0.0080561163,-0.0315888189,0.0153107671,0.0180053506,-0.0143987536,-0.0278993119,0.0217501335,-0.0265589301,0.0017169339,-0.0172177032,-0.0047915238,-0.0040349676,0.061961621,-0.0242098048,-0.0310084485,-0.0632881895,-0.0420078784,-0.0456559323,0.0010121964,0.0125332717,0.0206861179,-0.0298200678,0.022510143,-0.0083186654,0.0389678366,-0.0215566754,0.0415104181,-0.0221646838,0.0065671857,-0.0288804173,-0.0460704826,0.0208795741,0.0115383482,-0.0019639374,-0.0064670024,0.0105779711,0.0030607716,-0.0079732062,-0.0589215793,-0.0072201043,0.0725741386,-0.0009482864,-0.0236432515,0.0036825987,0.0251494553,0.0111721614,-0.0566000901,-0.0062217261,0.0335510299,-0.0300411619,-0.0205202959,-0.0279131308,-0.0118147163,0.012180903,-0.060027048,-0.031865187,-0.0244447161,0.0269182064,0.0069161002,-0.0039762394,0.0236985236,0.0240854397,-0.0390783846,0.0019449372,-0.0211144872,-0.0449926518,0.0233530644,0.032279741,-0.0312571786,0.0121256299,-0.0352645107,-0.0091546774,0.0554669835,0.035983067,0.0373372659,0.0589215793,0.0539745986,0.011220526,-0.0263378359,-0.0012695638,-0.0157114994,0.0525098518,0.0212250333,0.004663704,-0.0502159968,0.0010424241,0.0252876375,-0.0481432416,-0.033937946,0.0348775946,-0.0016202052,0.022565417,0.0371161737,0.0485577919,0.0665493235,-0.0232977904,0.007050829,0.0020468477,-0.030179346,-0.0040073306,-0.006062815,0.0042456975,-0.0223719589,0.0288251434,-0.0213079453,0.0155594973,0.0032214101,-0.0436384492,0.0234497935,-0.0396311171,0.0035375056,-0.0146336658,-0.0124779986,0.0213217624,0.0593084954,0.035983067,-0.0097488686,-0.0328601114,-0.0157667734,-0.0139496559,-0.0327219293,0.0305109862,0.0526756719,-0.009396499,-0.0145369377,-0.0554669835,-0.043389719,-0.0224272329,0.0228556022,-0.0127889123,-0.0334404819,0.0120772654,0.0328048393,-0.0135903787,0.0199399237,0.0111997984,-0.0343801342,0.0156562254,-0.03371685,-0.003806964,0.0160845965,-0.0090510398,0.0055929897,0.0036687802,-0.0365081653,-0.0081597539,0.0429198928,0.0066535505,-0.0265036561,0.0403496735,0.0051093465,-0.0452690162,0.0564895421,-0.0028914963,0.0265312921,-0.0057173553,-0.0461810306,0.0309808105,-0.0377794541,0.0100805089,-0.0119321728,-0.086558342,-0.0137769263,-0.0204788409,0.0336339399,-0.0011728351,-0.0093481354,-0.0215428565,-0.0283829551,-0.0145507557,-0.0147994868,-0.0266280212,0.0556604415,-0.0078350222,0.0142743886,-0.0160984136,0.0220403187,0.0082979379,-0.0499672666,0.0655544028,0.0333022997,0.0064773662,-0.0036791442,0.0233807024,0.0095554106,0.0458217524,-0.0031160451,-0.0151864011,0.045324292,-0.0163471457,-0.0078695687,-0.0059142672,-0.0402114913,-0.0297095198,-0.0224963259,-0.0256607346,0.0410405919,-0.0167064238,-0.030068798,0.0672126114,-0.0461257584,0.0173282512,-0.0273327585,-0.0270563904,0.0284935031,-0.006695006,-0.050768733,-0.0082357554,0.030206982,0.0212664884,-0.0059246309,0.0118285343,-0.0083117569,-0.0115798041,-0.016913699,-0.0511280112,-0.0041938787,-0.0197464675,-0.0387191065,-0.0099008707,0.0137907444,-0.0019760286,-0.0599165037,-0.0339932181,-0.0510451011,0.0076968386,0.0197326485,-0.0066397325,0.0295713358,0.0350157805,-0.0528691262,-0.005199166,-0.0401285812,-0.0344906822,-0.0343801342,0.0186133608,0.0305386242,0.0258956477,0.015034399,0.0270425733,0.0011218799,-0.0064220927,0.0022023045,-0.0251218174,-0.0115659852,0.0441082753,0.0180882607,-0.0148962149,0.0064462749,-0.0006093043,-0.0085397596,-0.0069091907,0.0088990377,-0.0154489502,0.0269043893,0.0130652795,-0.032058645,-0.0110823419,0.0137423808,-0.0189726371,-0.0227865111,0.0495803542,-0.0039451481,-0.032086283,0.0073582884,0.0491934381,-0.0055688079,-0.0160569586,0.0006809871,-0.0100252358,0.0444399156,-0.0045704297,-0.0342695862,-0.0335510299,0.0105572436,0.0143711166,-0.0311189946,0.0201748367,-0.0265036561,0.0029294968,-0.0267938413,0.0201195627,0.0071441033,0.0312571786,0.0130307339,0.0006399638,0.0035893247,0.0102256024,-0.0138460184,0.0180191696,0.0097074127,-0.0096797766,0.0154213142,0.0160016865,-0.0007250332,-0.0004151992,0.0197879225,0.0124779986,0.0049953451,-0.0557986237,-0.0125263631,0.0219435897,0.0079179322,0.0036342344,0.0175493453,-0.0263931081,0.0123674516,0.0116005316,-0.0166511498,-0.039465297,-0.0161675066,0.0230214242,-0.0040729679,0.0152693121,0.001340383,0.0166649688,-0.03031753,-0.0327772014,-0.0058244476,-0.0274433065,0.0090372218,0.0369779877,0.0114623476,-0.0219988637,-0.00040829,0.0346288644,0.0012056538,0.0192213692,0.0035996884,-0.0080353888,0.0076484741,0.0270840283,0.0352368727,0.0344630443,-0.0086503066,-0.0144816637,0.0246381741,0.0007263287,-0.0069230092,-0.0023750344,-0.0077382936,-0.0077590211,0.0035755062,0.0786542296,0.0024337624,-0.0123605421,-0.0145783927,-0.0253981855,0.0410682298,0.0353197828,0.024513809,0.0256469157,-0.0177842565,-0.0033146844,0.0341037661,0.0206861179,-0.0109096123,0.0306768063,-0.0140394755,-0.0002290829,-0.0152969481,0.0127336383,0.0018844818,0.0252323654,0.024610538,0.0433068089,-0.0410958678,0.0593637675,0.0270702094,0.0033837762,0.0295160636,0.0220817737,0.0099837808,-0.0252600014,0.0079317512,0.0473417751,-0.0444675535,0.0157805923,-0.0268352963,-0.0170933381,-0.0249007232,-0.006522276,0.0013429739,0.0051197102,0.039686393,0.0076208375,0.0086779436,-0.0120289009,0.0073168329,-0.0332193896,0.0057139006,-0.030124072,0.0261581969,0.0321139172,-0.0302346181,-0.0685391724,-0.0001708945,-0.0087677632,-0.066328235,-0.0362870693,-0.022758875,0.0101634199,0.0176184364,-0.0052371668,0.0249007232,-0.0262549259,-0.0554946214,0.0011408802,0.0124641806,0.0196635574,-0.0047189775,0.0286869593,-0.0159049574,0.0233945195,-0.0212526713,-0.0022990333,-0.0461810306,-0.018765362,-0.0302346181,-0.0177566204,0.0352092348,0.0023663978,-0.0177980755,0.0493039861,0.0161398705,-0.0120219924,-0.0058762669,0.0097557772,0.0140325669,-0.0176322553,0.0353474207,-0.0476734154,-0.0003955512,-0.0268352963,-0.0159878675,-0.0053546228,-0.0068573719,0.0119114453,-0.0222337767,-0.0071026483,0.0268491153,-0.0416762382,0.0116488952,0.0672678798,0.015131128,-0.0016573422,-0.0024130349,0.0125609087,-0.0220264997,0.0133692846,-0.006207908,0.0018585724,-0.0228556022,-0.0054651699,-0.0180191696,0.0126438187,-0.0058140839,0.0379729122,-0.0359277911,0.0326666534,-0.0075793825,0.0262825619,-0.0121601755,0.0256469157,0.0003765509,-0.0606903322,-0.0118838083,-0.0069817374,0.0076899296,0.0158220474,0.0247210842,-0.0052578943,0.011220526,0.0285211392,0.0228556022,-0.0193595532,0.0498014465,-0.0007613064,-0.0028794052,-0.0252323654,-0.0171486121,-0.0199537426,0.0186548159,-0.0186271779,-0.020603206,-0.0389678366,-0.0152831301,0.0121049024,-0.0286593232,0.0101426924,-0.0201472007,-0.001950119,0.014143114,-0.0741770715,-0.0210177582,0.0438871793,-0.0370885357,0.0049366169,-0.0362317972,0.0273742136,0.0374478139,0.0226897821,-0.0457112044,-0.0156009523,-0.0587557591,0.0106263356,-0.0337721258,-0.0451861061,0.000831262,0.0178948045,0.0119390814,0.0017488889,0.0377518199,-0.0224410519,0.0236432515,-0.0372819938,0.0362870693,0.0052129845,-0.0242650788,-0.0179500785,0.0367568955,0.0296818838,-0.0012721547,0.0015433405,0.0372819938,-0.0125470906,0.0263378359,-0.0185719039,0.0284382291,0.0060662697,-0.0002750721,-0.0140809305,0.0184751768,-0.0152140381,-0.0213217624,0.0552735254,-0.0326942913,0.0403496735,-0.0402944013,-0.0120289009,0.0306491703,-0.0066397325,0.0176046174,0.0326390155,-0.0011909718,-0.007503381,-0.012374361,-0.0003750395,0.0162365977,-0.0623485371,0.0071233758,0.0334681198,0.030262256,-0.0352645107,0.007607019,0.0250665434,-0.0253014565,-0.0052509848,0.0058348118,-0.0135765597,0.0178257115,0.0005946222,0.0228141472,0.020810483,0.0214323103,0.0136525612,0.0199122876,0.0117248967,-0.012277632,0.0051128012,-0.0096590491,-0.0010130601,-0.0270702094,0.0070162835,-0.007455017,-0.0177013464,0.0172729772,-0.0213079453,-0.0258956477,-0.0213355813,0.0281342249,0.0059868139,0.0010752428,0.0412616879,-0.0026876752,-0.0326666534,-0.0143158436,0.0234221574,-0.0107783377,0.0052786218,0.0118630808,0.045324292,-0.0195391923,0.0374754518,0.0057829926,0.0077313846,-0.0028103134,-0.0193319153,-0.0052578943,-0.0016417964,-0.0062286356,-0.0121325394,0.0107092457,-0.0177013464,-0.0035254145,0.0408471376,0.0267662052,0.0242512599,-0.0134521946,0.0097212316,-0.0225377809,-0.0124779986,-0.0269872993,0.0384980105,-0.0173835233,-0.0294607896,0.0271669384,0.0047846148,0.0429198928,0.0195944645,-0.0041144229,0.0088506732,-0.0262549259,0.0152554931,0.0517360196,0.0159325935,-0.0066984603,0.0022541236,0.0197741035,-0.0118285343,-0.0073375604,0.0269320253,0.0112827085,-0.0164991468,0.0211006682,0.0012203358,0.0169827901,0.0179224405,-0.013991111,-0.0044667916,0.0064324564,-0.0272774845,0.026324017,0.035983067,0.0181711726,-0.0159464125,0.0409576818,0.018792998,0.0272774845,-0.0496908985,-0.0103085125,-0.0019190278,0.0032058645,0.0160293225,0.0400733054,0.0224963259,-0.0094034085,0.0160707776,-0.0072891964,-0.0343801342,0.002373307,0.0013930656,0.0201472007,0.022468688,-0.0202439297,0.0057519013,-0.0385256484,0.0330259316,0.0104328785,0.0024458535,-0.0051369835,0.0129132774,0.0155318612,0.0070646475,-0.0210453942,0.0158220474,0.018862091,-0.0135765597,-0.0348499566,-0.0381663702,-0.0025788555,-0.0165129658,0.0047984328,0.0414551459,-0.0002480831,0.0250250883,0.0048606158,0.0125125442,0.0048986161,0.0202577468,0.0247349031,-0.0533665903,0.0129270963,-0.032058645,-0.0008481031,0.0250941813,-0.0193871893,-0.0052717128,0.026406927,-0.0030020433,0.0025460368,-0.0255916435,0.0099975988,0.0072753779,0.0178809855,-0.0294884257,-0.0074135619,0.0009042404,0.0164715108,0.033910308,0.0063322731,-0.0392994769,-0.0039555118,-0.0275262166,-0.0302898921,-0.0266003851,0.0156838633,-0.0200919267,0.0309808105,0.007496472,0.0142329326,-0.0001247973,-0.0024631266,-0.0087954002,0.0145783927,0.001972574,0.0086157611,0.0220126826,-0.0018706634,0.0136041967,0.0090648578,-0.0126645463,0.0029968615,-0.0047846148,-0.0059971777,0.0123881791,-0.0308979005,-0.0174802523,0.022413414,0.0385532863,-0.0017791166,0.0004035399,-0.0141776595,-0.0197602864,0.0089681298,-0.0065706405,0.0038691468,0.0129547324,0.0056551727,0.0503265448,0.033827398,0.0145922108,0.0014569756,0.0058106296,0.0002960156,0.0418973342,-0.0000490391,-0.0164853297,-0.0120703559,-0.0096383216,-0.0089681298,-0.011165252,0.0502159968,0.008574306,0.0239196178,0.0045220652,0.0027567672,0.0160984136,0.037420176,-0.0388020165,-0.033827398,-0.0103776045,-0.0131067345,-0.0214323103,-0.0114416201,-0.0009094222,0.0367292576,0.0064186384,-0.0310637224,-0.0125056356,-0.018806817,0.0178395305,-0.0503541827,0.0199813806,-0.0006235545,-0.0135765597,-0.009355044,-0.0206308439,0.0162227806,0.0025356731,0.0068055531,-0.0007513745,-0.0178257115,-0.0091270413,0.0007781476,0.0017549344,0.0353197828,0.0163886007,0.0015727045,-0.0101081459,-0.0015312494,-0.0006270091,0.0077452026,-0.0093895905,-0.0062389993,0.0114139831,0.0133278286,0.0143434796,0.016968973,0.0287422333,0.008574306,0.0297924299,0.016761696,0.024361806,0.0307873543,0.0114139831,0.0439700894,-0.0126783652,0.016872244,0.0339655802,0.0179224405,-0.0294607896,0.0167755149,0.0117525337,-0.012277632,0.0096797766,0.0229108762,-0.0034943232,-0.0017281614,0.0241268948,-0.0095761381,0.0124019971,-0.0220264997,-0.003463232,0.0102256024,-0.010301603,-0.0012583364,-0.00844994,-0.0000414012,0.0323626511,0.0256607346,0.0018706634,-0.0091823144,0.0675442517,0.0072546504,-0.0215981305,-0.0010562425,0.0077452026,-0.011220526,-0.0229937863,0.0085604871,-0.0343248583,0.0230905153,-0.0166926049,-0.0230490603,-0.0017497526,0.0124158161,-0.0185580868,-0.0307044443,-0.0153660402,0.0237399787,0.016761696,0.0006745097,0.0198293775,0.0110616144,0.0019984834,-0.0134314671,-0.026379291,-0.0160569586,0.0027153119,0.0050609824,-0.0168307889,0.0089335833,0.0239196178,-0.0018067533,0.004663704,0.0483366996,0.0195530094,-0.0100736003,-0.0163056906,0.013086007,0.0256054606,-0.0167893339,-0.016955154,-0.0087124892,-0.0214323103,-0.0048433426,-0.0359554291,-0.0034235041,-0.0190140922,-0.0135074677,-0.0248178132,-0.0365357995,-0.0344354063,-0.0376689099,0.0227726921,-0.0155871343,0.0300411619,0.0262272879,0.0640620142,0.0299582519,0.0139151104,0.0315611847,-0.0004098014,-0.0021850315,0.0006546458,0.0051266197,-0.0215566754,-0.0387191065,0.0340761282,-0.0197188314,0.0038691468,-0.0278302208,0.0258541927,0.0362317972,0.0048571611,0.0261858329,0.007537927,0.0119667184,0.0047086137,0.0178118944,-0.0185857229,-0.0378900021,-0.0251356363,0.0202853847,-0.0119598089,0.0078073856,-0.033937946,0.0090924948,-0.0171347931,-0.0028966782,-0.0091408594,0.0181849897,-0.0001768321,-0.0104052415,0.0133140106,0.005095528,-0.014074022,-0.0233807024,-0.0165267847,-0.0213079453,-0.0024562173,-0.022468688,0.017010428,0.035983067,0.0003996535,0.0278993119,-0.0255916435,-0.0101357829,-0.0215843115,0.0002141849,0.0100528728,-0.004601521,-0.041620966,0.008546669,-0.0022610326,0.0082081184,0.0133554656,0.0596954077,0.0060317237,-0.0257712808,-0.0114278011,0.0040107854,0.0423118845,0.0197602864,-0.005617172,-0.0015554315,-0.0176875275,0.0071510123,0.0433620811,-0.0003888579,-0.0275538526,-0.0035185055,0.0048847981,0.0110754324,0.0248730872,-0.011206707,-0.0023283972,0.0307320803,-0.0220126826,0.0071026483,0.0182678998,0.0136663793,-0.0443293676,0.0018015715,0.0087055806,-0.0090164943,0.039465297,-0.0074757445,0.0101910559,0.0196635574,0.0043942453,0.0107368827,-0.0372267216,-0.0008796264,0.0397693031,-0.0130307339,-0.0024993997,-0.0359001569,0.0270563904,-0.0070162835,-0.0024631266,0.0045911572,0.0018931183,-0.022579236,-0.0412340499,-0.0417038761,0.0257574636,-0.0315611847,-0.0190693662,0.015075854,0.009355044,0.0220126826,0.0113863461,-0.0357343331,0.006028269,0.0051715295,0.0102739669,-0.022565417,-0.0154765872,0.0082012098,-0.0065291855,-0.0202577468,0.0201333817,0.0054928069,0.0317822769,0.0166373309,0.0146474848,0.0015606135,-0.0313400887,-0.0044115181,0.0063944561,0.0196082834,-0.0069264639,0.0008783309,-0.0119598089,0.0181158986,0.0541956909,0.0117041692,-0.0135351047,0.0056724455,-0.0322244652,0.0288251434,-0.0057933563,-0.0107576102,-0.0180053506,-0.0024993997,-0.006598277,0.0206861179,-0.0145645738,0.0008610579,0.0273603946,0.0114416201,-0.0027049482,0.0111030694,0.0025391276,0.0202162918,-0.0117318062,-0.034048494,0.0145507557,0.0424777046,-0.0034494135,-0.0572633743,0.0072546504,-0.0329706594,-0.0091477688,-0.0229937863,0.0001607466,0.0052751671,0.0251909103,-0.0258818287,-0.0178948045,-0.0114278011,0.0116281677,-0.0141638415,0.0198708326,0.0296818838,-0.0030884084,-0.0216672216,0.0085259415,-0.0352921449,0.00760011,-0.020755209,-0.0322244652,-0.014992944,0.0153107671,0.008408485,0.0564619079,0.024513809,0.0305386242,0.0392165668,0.0073721064,-0.0183231737,0.0063737286,0.0493868962,-0.0217224956,-0.0107852472,-0.030262256,0.0285764132,-0.001082152,-0.0034027766,-0.0172038842,0.0031350453,0.0092168609,0.0008580351,-0.0035962339,-0.0114623476,-0.0023750344,0.0214875825,0.0124849081,-0.0317270048,-0.0379452743,0.0266280212,0.0121463574,-0.0109579768,0.0266971122,-0.0152278561,-0.005644809,-0.0097005041,0.0036756895,0.0026047649,0.0058900854,0.0063080913,-0.0002079235,-0.0330812037,0.0027377668,-0.0034425042,-0.007503381,-0.032058645,-0.0162642356,-0.0022178502,0.0143434796,0.0242236238,0.0103223315,0.0447991937,-0.0247901771,0.0186271779,-0.0107092457,-0.0112136165,0.0009776505,-0.0027515853,-0.0207966641,-0.0133071011,-0.0090994043,-0.0026375835,0.0069817374,-0.0269043893,0.0096383216,0.0279407669,-0.0061560888,0.0073444699,0.0143849356,-0.0082633924,0.0236432515,-0.0155871343,-0.0160845965,-0.0329430215,-0.0125954552,-0.0093274079,0.0275676716,0.0199951977,0.0128718223,0.0240716208,0.0386914685,0.022413414,0.015131128,-0.0096245026,0.0690919086,0.0033457757,0.018668633,-0.0080422983,0.0186962709,-0.0052820765,0.048806522,-0.0081528453,0.0394100249,-0.0108750667,0.0496908985,0.0026272198,0.0031505909,0.0443570055,0.0294607896,-0.0352645107,-0.0229246952,0.0126990927,-0.0052820765,0.0321968272,-0.0233116094,0.037530724,-0.0013023824,0.0118354438,0.0022523962,-0.0061629983,0.0116903512,0.0262825619,0.015034399,0.007634656,-0.0317270048,0.000686169,0.0233807024,0.0000986179,-0.0097903237,0.020603206,0.0477286913,0.0012237905,-0.0196359195,0.0153936772,-0.037420176,0.0345735922,0.0140394755,-0.0023957619,-0.028327683,-0.0211144872,0.0131896455,-0.0093343165,0.0064255474,-0.0238367077,-0.0106401537,-0.0366739854,0.028286228,0.0220264997,-0.0066397325,0.0005000527,0.0144263906,0.0144402087,0.0095761381,0.0232425183,0.0251218174,-0.0043838816,0.0062459083,0.0056620818,0.0005933268],"52":[0.0036105164,-0.0085703842,0.0789838061,0.0031295596,0.0656238943,0.0114761647,0.0233130474,0.0054541845,-0.0301934034,0.0312889144,0.0332127437,-0.0215094592,-0.0095055774,-0.0539740473,0.0482292846,0.0504203103,0.0006091285,0.0130125545,-0.0569132268,0.0072677922,-0.013333193,0.0140947076,0.0201333892,0.0176618043,0.0110820476,-0.0281626955,-0.0038576748,0.0448358655,0.0065864371,-0.0550962798,0.01228444,-0.0406141356,-0.0295521263,0.0298193246,0.0323577076,-0.0003939087,0.0444885083,0.0512753427,0.040159896,0.0042818519,-0.0019588971,0.0045089703,0.0140145486,0.0195188317,-0.0234332867,-0.0274145398,-0.0503935888,-0.0177820437,0.014936382,0.0569666661,-0.0357511267,0.0154707786,-0.0483094454,-0.055310037,0.0251166355,-0.031529393,-0.0201868284,0.0456641801,0.0245287996,-0.0284031741,0.0031412495,-0.0531190112,0.0273878202,0.0143351862,-0.0239008833,0.026172068,-0.0012750367,0.0399728566,-0.0503935888,0.0468665734,0.0406942926,-0.0015739647,0.0162055735,-0.0019438673,0.0435533151,-0.0476414487,-0.0195989925,0.0464657769,0.0038476549,0.0022311055,-0.0029876104,0.0107146502,-0.0460649803,0.0371405557,0.0164994914,-0.058195781,-0.0036272162,-0.0034936171,-0.006289179,0.020440666,-0.0235134456,0.0306476392,0.02152282,0.0157780573,0.013987828,0.0193451531,0.0239409637,0.0053406251,-0.0317965932,0.0237940047,-0.0127119571,-0.0056813029,-0.0167132504,-0.0044688908,0.0327317864,0.0059184413,0.0206410643,-0.0103205321,-0.002591823,0.0298994835,-0.0960310549,-0.0251967944,-0.0293918084,-0.0099397749,0.0019872871,0.0017267687,-0.0008358295,0.00304272,0.0103138527,0.0135469511,-0.0285100527,0.0090513406,-0.0047795088,0.0225248132,-0.0055243238,0.0062056794,0.0193852335,-0.0496988744,-0.0321973898,0.0176618043,0.0121708801,-0.0087707825,0.0380757526,0.00760847,-0.026385827,-0.018770678,-0.0658910871,0.0071074734,-0.0236069653,-0.0099531347,0.0084434645,-0.0342280976,0.0083499458,0.0008408395,-0.0249295961,0.037193995,-0.0077153496,0.0367931984,-0.0266931057,-0.0116097638,0.0084768645,-0.0085570244,-0.0096124569,-0.0212422609,0.046252016,0.0079491483,-0.01072801,0.0324111469,-0.0022661751,-0.0329455435,-0.0156444572,0.0412821285,-0.0023446647,0.0149631025,-0.0063559785,0.0080293072,-0.0342548154,-0.0583560988,-0.096191369,-0.0198795497,-0.0138007896,-0.0457176194,-0.0172342882,-0.0067500956,0.007468191,-0.0172342882,-0.0213892199,-0.0506875068,0.0366595984,-0.0424845219,-0.0695784241,-0.0107881296,0.004766149,-0.0148027828,-0.0239543226,-0.0121975997,-0.037915431,0.0205475464,0.0161654949,0.0343082547,-0.038636867,0.0698456243,0.0192516334,0.042324204,0.0043052319,-0.0422974825,0.0166464504,0.0375413559,-0.0474276915,0.001673329,0.0704334602,0.0325981863,0.0482560061,0.0112891262,-0.0089177415,0.0004329447,0.0145623051,-0.0118836425,-0.029498687,-0.0573941842,0.0023396546,0.0039211344,0.0038676946,-0.0175148454,-0.0470536128,-0.0096258167,-0.0484697632,-0.0145355845,0.005651243,0.011449445,0.0099063748,0.049939353,-0.0253971945,-0.0040781135,-0.0267064646,0.0440609902,0.0294185281,-0.0062056794,0.0427784398,-0.0160452556,-0.0054608644,-0.0185836386,0.0109484484,-0.0263056681,0.0222843345,-0.0069805542,0.0111889271,-0.0400262997,-0.0136939101,-0.0492980778,-0.0189176369,0.0150566213,-0.0180893224,0.0096124569,-0.0131060742,0.0229924098,-0.0405339748,-0.0733191967,-0.0090179406,0.0692043453,0.0293918084,-0.0152169401,-0.0029575506,-0.0482827239,-0.012137481,-0.0604936853,-0.013299793,0.0385567062,-0.0049364879,0.0161521342,0.0128722759,-0.0549894013,-0.0220572166,-0.003353338,-0.0351365693,0.0233798474,0.0512753427,-0.0302468427,-0.0036839959,-0.0351632908,0.0669598803,0.0388239063,-0.0015447399,-0.055310037,-0.0197993908,-0.0379955918,-0.010186933,-0.0183030795,-0.0077153496,-0.01225104,0.0051869862,-0.0226584114,0.0001623021,0.0166330915,0.0329989828,0.018049242,-0.0050233272,0.0308881178,-0.0003907775,-0.033693701,0.0120372809,-0.0057781623,0.0161254145,-0.0378085524,0.0067467559,0.0030126602,0.0033566779,0.0118302023,-0.0409080535,-0.0422707647,0.0101134535,0.0217365772,-0.0004859668,-0.0474544093,-0.0010070034,0.0108014895,-0.0079959081,-0.0075283106,0.0033867378,-0.0139477486,0.0266129468,-0.0096124569,0.0227920115,-0.0421638824,-0.0137607101,-0.0080693876,0.0640741438,-0.0238207243,-0.0150833409,-0.0582492203,-0.0071208333,-0.0685630739,-0.0011907022,0.0578217022,0.0128589161,-0.0208414644,0.0191581137,-0.011563004,0.0125583177,-0.0286703724,0.0142683871,-0.0169670898,0.0286169332,0.028777251,-0.0293650888,-0.0376482345,0.0127186365,-0.0040847934,-0.0249162372,0.0331860222,-0.0301132426,-0.020654425,-0.0451832227,-0.0077220295,0.0364725627,0.0081361867,-0.0193985924,0.0155776581,0.026238868,-0.0106612099,-0.0360450447,-0.0326783471,0.0320103504,-0.0139210289,0.023339767,-0.0043653515,0.0014862902,-0.0125382775,-0.0484697632,-0.0031779893,0.001212412,0.0164861325,0.023192808,0.0091315005,0.0008496069,0.0115229245,-0.0358580053,-0.0234332867,-0.0113292057,-0.0263591073,0.0235936064,0.0100065749,-0.0339341797,-0.0028690412,-0.0183431599,-0.0164326932,0.0773806125,0.0724641681,0.0025651031,0.0505271889,0.034655612,-0.0205341857,-0.0011806823,0.0003901512,0.0202001873,0.052103661,0.0070807538,0.0410416499,-0.0489239991,-0.0116565237,0.052771654,-0.0092517398,-0.0168869291,-0.027321022,-0.0247826371,-0.0103806518,0.0186637975,0.0250631962,0.0564322695,0.0105610108,0.0262923073,-0.0249563176,-0.0278153382,-0.0197593104,0.0228187311,0.0070005944,0.0217365772,0.0063158986,-0.0172075666,-0.0083031859,-0.0099397749,-0.0156711768,0.0236737654,-0.0000194789,0.017835483,-0.0176350847,-0.0335333794,0.0544015653,0.0209617037,0.066532366,0.0039779139,-0.0413890108,-0.0292047691,-0.0014837853,-0.042030286,0.0208815429,0.0487102419,0.0017785383,-0.0369802378,-0.0305407606,0.0026452627,0.0061722798,0.0087240227,-0.0059585208,-0.0035570767,0.0307277981,0.0267999843,-0.0128789553,0.0420837253,0.0153371794,-0.0230191294,0.0462252982,0.000912649,0.0106344903,0.0013126114,-0.0188775565,-0.0173678864,-0.0152169401,-0.0320637897,0.01840996,0.0257044714,0.002436514,-0.0208815429,0.0222976934,-0.0110219279,-0.0450763442,0.0556841157,-0.0240879226,0.0241547227,0.0093452586,-0.0263457485,0.023700485,-0.0513287857,-0.0064060781,0.0136805503,-0.0478552058,0.0405339748,0.0008270621,0.0367397591,-0.018623719,0.0023630345,0.0079491483,-0.0146291042,-0.0239676833,-0.0040246737,0.0094454587,0.0432059579,0.0071408735,0.0262923073,0.000847937,0.0123846391,-0.0125249177,-0.0425112434,0.0507943891,0.0379955918,0.0488972813,0.0036338961,0.0062457593,0.0245955996,0.0120840408,-0.0357244052,0.0096592167,0.063700065,-0.015150141,-0.0121508408,0.0131060742,-0.0918627605,-0.0385567062,-0.0251032766,-0.015724618,0.039491903,0.002297905,0.0011932072,0.040453814,-0.0262923073,0.0101401741,-0.0256510321,0.0013501862,0.0248627979,-0.0244085602,-0.013446752,-0.0053038853,0.0313690752,0.0400262997,-0.0340944976,-0.0010879979,0.0052036862,0.0206811447,-0.0165796522,-0.0238608047,-0.0163792521,-0.0309415571,-0.052103661,-0.0162857343,-0.0069271149,-0.0134333922,-0.0556841157,-0.0460115373,-0.0299529247,-0.0244619995,0.0194653925,-0.0045757699,-0.0066966563,-0.0083098654,-0.0461718589,0.0193985924,-0.0430723578,-0.0442480296,-0.0176350847,0.0188909173,0.0070740739,0.0429120399,-0.0009869635,0.0140546281,0.0224980935,-0.0123979989,-0.0010596081,-0.0044922708,-0.0097928159,0.0360717624,0.0245822389,-0.0128722759,-0.0025684433,0.0051803063,-0.0102270134,0.020373866,0.0121107604,0.000763185,0.0277084596,-0.0083833449,-0.005961861,-0.0098729758,0.0157513376,-0.0061021401,-0.0149230221,0.0259449501,0.0004563245,-0.0188508369,-0.057180427,0.0219904166,-0.0107747698,-0.0257979911,0.0203872267,-0.0189844351,-0.0079691876,0.032544747,-0.004422131,-0.0105610108,0.0244753603,0.0152703803,-0.0292582083,0.0036539361,-0.0397056602,0.0153772598,-0.0423776433,0.0403736569,0.0172743667,0.0276282988,0.0177820437,-0.009926415,0.003820935,0.0082697859,-0.0215896182,-0.0008600444,0.0151635008,-0.0040814532,0.0158582162,0.0122977998,-0.0337738581,0.0069738743,0.0164326932,0.0084701842,-0.0272408612,-0.0319836326,-0.0265060663,0.0203471463,0.0060553802,0.0104140518,0.0392247029,-0.0056278631,0.0110419681,0.0019104675,0.0101401741,-0.0309415571,-0.0113692852,0.0222041756,-0.0315828323,0.005798202,0.0187305976,-0.0223511346,-0.0386903062,0.0016441043,-0.0279222168,-0.0433395579,0.0056612631,0.0434998758,0.0006028661,-0.0199062694,-0.014495505,0.0294185281,-0.0013844209,0.0228721704,0.0391712636,0.0029826006,0.0118302023,0.0138809495,0.0460649803,0.0259983893,0.0063259187,0.0055477037,0.0038409748,0.0331325829,-0.0151902204,-0.0001871431,0.0238741636,-0.0350564122,0.0079090679,0.029792605,-0.0005343965,-0.013593711,-0.0075483508,-0.0245154388,0.0653032511,0.0209750626,0.0124046784,-0.021309061,-0.0340410583,-0.0364992805,0.0181694813,0.0460382588,-0.0171541274,0.0054040845,-0.0142951068,-0.0036439162,-0.0302468427,0.0227252115,0.0363656804,0.0255575124,0.0178488437,0.0366863199,-0.024208162,0.0410416499,0.0350029692,0.0226584114,0.0234199259,0.0003711551,0.0057180426,-0.0122243203,0.0169804487,0.0588904954,-0.031449236,0.0188107565,-0.0525578968,-0.0050467071,-0.0038142551,0.0017217587,-0.00760847,0.0216029789,0.0450763442,0.0197993908,0.0001890219,-0.0010429082,0.0135603109,-0.0196657907,0.0037073758,-0.0215094592,0.0177820437,0.045958098,-0.0438739546,0.0059485012,0.0053673447,-0.0025250234,-0.0566460304,-0.0386903062,-0.0137874298,0.0245555192,0.0322775505,-0.0066565764,0.0217365772,-0.037621513,-0.043713633,0.0005632038,-0.0239810422,0.0138141494,-0.0243818406,-0.005070087,-0.0448893048,0.0138141494,-0.0333997831,-0.023767285,-0.0596386492,0.0032948884,-0.0244486406,-0.0367931984,0.0329188257,-0.0169537291,0.0182362814,0.0280825365,0.0135603109,-0.02456888,0.0255441535,-0.0091582201,0.0190645959,-0.008009268,0.0275748596,-0.027321022,-0.015510859,-0.0166063718,-0.0075416705,0.011416045,-0.0219369773,-0.0006366833,-0.031395793,-0.0211086627,0.0104207322,-0.0482025631,0.0342280976,0.0360717624,0.0345220156,-0.0194787532,-0.0139744682,0.0113225263,-0.0040781135,-0.0041649528,-0.0061555798,-0.010514251,-0.0253437534,-0.0003139579,-0.0014971452,0.0220037755,-0.0010913379,0.0113626057,-0.0446221083,0.0337738581,-0.0161521342,0.0267999843,-0.0315561146,0.0366328806,-0.023633685,-0.0742811114,-0.0455305837,-0.00454571,0.0088041825,-0.0004392071,0.0519967787,-0.0028439914,-0.0047728289,0.0098729758,0.0373275951,-0.0262522288,0.0212957002,-0.0099531347,-0.0081094671,-0.0075750705,-0.0143752657,0.0081695868,0.0100332946,0.0092450595,-0.011890322,-0.0158582162,-0.0265461467,-0.0055911234,-0.018623719,0.0154306991,0.0288574118,-0.0076017901,0.0146825444,-0.1059173867,-0.0475880094,0.0603868067,-0.0266931057,0.0083967047,-0.0337738581,0.0086438637,0.0356442481,0.0303804409,-0.0263457485,-0.0057681422,-0.0572338663,-0.0200265087,-0.0243951995,-0.0306476392,0.013513552,0.0170472488,0.0286436528,0.0124514382,0.0149898222,-0.0201200284,0.0194787532,-0.0232195277,0.0492713563,-0.0021208862,-0.0181694813,-0.005380705,0.0453168228,0.0063025388,-0.017541565,0.0333730616,0.0017918983,0.00304272,0.0173545256,-0.0168869291,0.0286169332,-0.0077153496,0.0191581137,-0.02283209,0.0082497457,-0.0351632908,-0.0408011749,0.0460115373,-0.0511951856,0.0500195138,-0.0263591073,-0.0162055735,0.0630587861,-0.0224847328,-0.0055343439,0.0382093489,0.0051469062,0.0153371794,-0.011088727,-0.004111513,0.0251299962,-0.0400262997,0.0000080433,0.0351632908,-0.0227786507,-0.0385299884,0.0278687775,0.0080627073,-0.0618831143,0.0048463084,-0.0138141494,0.01225104,0.0194119532,0.0062591191,0.0127653964,0.0281092562,0.0276282988,0.0243684798,-0.0149497418,0.0080760671,-0.0031963591,0.0143218264,-0.0071074734,-0.0012992515,-0.0436334759,0.0248093568,-0.0101201339,-0.0483361632,-0.0010120134,-0.0175282061,-0.0275214203,-0.0052972054,0.0013209614,0.0350296907,0.0038342949,0.0178622026,-0.005070087,-0.0054441644,0.037247438,0.0327050649,0.0181828402,0.0488705598,-0.0113559254,-0.00305441,-0.0249028765,0.0298193246,-0.0201467481,0.0208147448,0.0183431599,-0.0259850305,-0.0140947076,0.0039278143,0.013152834,-0.0050934665,0.0092784595,-0.0046392297,-0.0097594159,0.0406408533,0.0352701694,0.0115897246,-0.0039946139,0.0096926168,0.0027187422,-0.0022227555,-0.0185836386,0.0383162275,-0.0164193325,-0.0364725627,0.0434464365,-0.0139210289,0.0312621966,0.0413622893,-0.0009260089,0.0219503362,-0.0262789484,0.0145890247,0.0543214045,0.0028222816,0.0479353666,0.0103472527,0.0039612139,0.0185435582,0.0068736752,0.0203204267,0.0139076691,0.0041783126,0.0054274644,0.0089578209,0.0002496634,0.045877941,-0.0182496402,-0.0126050776,-0.0061689396,-0.0331058651,0.0123111596,0.0550962798,-0.0250631962,-0.021309061,0.0229389705,0.0194787532,0.0583560988,-0.0573941842,-0.0075617107,0.0116632041,-0.0041014934,0.0124180391,0.0463321768,0.0266663861,0.002738782,0.0257579107,-0.0011589724,-0.0330257043,0.0117366835,-0.0371405557,0.0183297992,0.0075951102,0.007788829,0.0257044714,0.0048663481,0.0489239991,0.0248494372,0.0099397749,0.012104081,0.0063225785,0.0039779139,-0.0187840369,-0.0390376635,0.0228588097,0.0383162275,0.0307010785,-0.0077554295,-0.0241413619,0.0176484454,-0.0056545832,0.0148829427,0.0011923722,-0.0080293072,0.0189977959,0.0375947952,-0.0034869371,0.013480152,0.017755324,0.0159650948,-0.0259583108,0.0157646965,-0.0103138527,0.0032464587,0.0172877274,-0.0150299016,0.0007226877,0.0351900086,-0.0037507955,0.0029325008,-0.0244486406,0.0300865229,0.0027655018,0.0258647911,0.0006575582,0.0028423213,0.0072277128,0.0045557301,0.0371405557,0.0015798097,-0.0047193891,-0.0274145398,-0.0515959822,-0.0467596948,-0.0267198253,-0.0163926128,-0.0200131498,0.0215896182,0.0249696765,0.0016157144,-0.0097594159,0.023553526,0.0148295034,0.0121842399,0.017541565,0.0195321925,0.0152703803,0.0074013914,0.0035303568,0.0086037833,0.0054241247,0.0185969975,0.0101936134,-0.0169938095,-0.0104407715,-0.0337204188,-0.0311285965,-0.0014645804,0.0292314887,0.0075617107,0.0341212153,0.0045056306,0.011890322,-0.0024765937,0.0222442541,-0.0045123105,0.036900077,0.0037608154,0.0148963025,0.0233264081,-0.0010946778,-0.0030343703,0.00610882,0.0352434479,0.0169270094,0.0116899237,-0.0073880316,-0.0016265693,-0.0289642904,0.0032163989,0.0236203261,0.0293383673,-0.0208815429,0.0388506241,-0.0324111469,-0.0135335913,-0.0006596457,0.0432059579,-0.0544817224,-0.0276817381,-0.0045891302,-0.0132931126,-0.0100533338,0.0054141046,-0.0237272047,0.001234122,0.0322775505,-0.0293650888,0.0071007935,-0.0307010785,0.0192516334,-0.0463054553,-0.0044722306,0.003680656,-0.0254773535,0.0269335844,-0.0266663861,0.0113158459,0.002304585,0.0241814423,-0.0054642041,-0.0247959979,0.0107547296,-0.0115229245,0.0230592098,0.0215094592,0.0240077637,-0.0104808519,-0.0008546169,-0.0338807367,0.0023162749,0.0153238196,-0.0118034827,0.0296322852,0.0061355401,0.026452627,0.0087106628,0.0171274077,0.026025109,0.0200398695,0.0168067701,0.0603333637,0.0279222168,0.0066866362,0.0077487491,0.0236604046,-0.0053105652,0.0153638991,0.0345220156,0.0038843947,-0.0057681422,0.0258915108,-0.0027955617,-0.0026703125,-0.0025734531,0.0355373658,-0.0193852335,-0.0088509424,0.0125783579,-0.0126384776,-0.0082965055,-0.0204139464,0.0029659006,-0.001535555,-0.0090713808,-0.0018870877,0.0035670968,0.0065630572,0.0369267985,0.0248093568,-0.010367292,0.0087373825,0.0572873056,-0.0046158498,-0.0366061591,0.0149631025,-0.0161521342,-0.006887035,-0.0117567228,-0.012972475,-0.0223244131,0.0103138527,-0.0317698717,-0.0058048819,-0.0319034718,0.0220572166,0.0134400725,-0.022979049,-0.0045356904,0.0218167379,0.0055009439,-0.017608365,0.023914244,0.0285367742,-0.0050467071,-0.0121308006,-0.0311553162,-0.0085837441,0.006756776,-0.0154841384,-0.0106010903,0.014495505,0.0302468427,-0.0368199199,0.0189977959,0.0432593971,0.0079558278,-0.00761515,-0.0387971848,0.0182496402,0.0142283067,0.0016065295,-0.0006951329,-0.0203337874,-0.024274962,-0.0084501449,-0.0278420579,0.0297658853,0.0002119842,-0.0071675931,-0.0023062548,-0.0216296986,-0.023553526,-0.0044321511,0.0217365772,-0.007788829,0.0191981941,0.0184901189,0.0618831143,0.0121107604,0.0164059736,0.036526002,-0.0138809495,0.0020307067,-0.0050500468,0.0219503362,-0.0129457554,-0.0364725627,0.0198795497,-0.0197860301,0.0105743706,-0.034361694,0.0265060663,0.021015143,0.0055042841,-0.0024916236,0.0334532224,0.0482025631,-0.0017150788,0.0180225223,-0.0018035882,-0.0124581186,-0.0232061688,0.0354839265,-0.0135068716,0.0159784555,-0.0189176369,-0.0049231276,-0.0076017901,0.0277618989,-0.0277886186,0.0164059736,0.0081829466,-0.0140947076,0.0286436528,0.0142951068,-0.0082898261,-0.0105409706,-0.046252016,-0.0222442541,0.0160318948,-0.0347624943,0.0105276108,0.0307010785,-0.0100600142,0.0267866254,0.0122977998,0.0024431939,-0.015510859,-0.0068335952,-0.0110686878,-0.0304338802,-0.0402400568,0.0166998915,0.00461919,0.0011881972,0.0239676833,0.0451297835,-0.0053205853,-0.0218701772,-0.0049531874,-0.0162322931,0.0310751572,0.0018136081,-0.0165529326,0.008810862,0.0066832961,0.0091515398,0.0136805503,-0.0092717791,-0.0159250163,-0.0270805433,0.0143619059,0.0253571142,0.0390109457,-0.0044254712,0.0098662954,0.0421104431,-0.0063325986,0.0003164629,0.0463588983,0.0018670477,-0.0370603986,0.0121107604,0.0006316734,-0.0039912737,0.0310484376,-0.0169938095,0.0218300968,0.0053272652,0.0124714784,-0.0045624101,-0.0012591718,0.0060620601,0.0334799401,-0.0230592098,0.0123044793,-0.0296322852,0.0384498276,-0.0082297064,0.034361694,-0.011776763,-0.0055009439,0.0117567228,-0.0288306922,-0.0339608975,0.031449236,-0.0055911234,-0.010514251,-0.0020757965,0.0141882272,0.0291246101,0.0112423664,-0.0119170416,0.0276817381,-0.0119905211,0.0278954972,0.0087908227,-0.0158849359,0.0189577155,0.0037641553,-0.0080293072,0.0210552216,0.0019555571,0.0108415689,0.0214426592,0.0172610078,0.0041582729,-0.0179958027,-0.0007264452,-0.0166865308,-0.0071341936,0.0017868883,-0.0016207244,-0.0101000937,0.0280290972,0.0321973898,0.0121642007,0.0036439162,0.0255708732,-0.0379955918,0.0005753112,-0.0300865229,0.0003156279,-0.0311553162,-0.0151902204,0.0001499859,0.0168334898,-0.0350564122,0.0093318988,-0.0053773648,-0.0113826459,0.0272943024,-0.0101268133,-0.0209082626,0.0442480296,0.0325981863,-0.0112958057,0.0032047089,0.0373275951,-0.0205341857,-0.0617227964,0.020868184,-0.01667317,0.0122443596,-0.0124647981,0.003804235,-0.0017134087,0.0381291918,-0.0105209313,0.0108148493,-0.0164460521,-0.0104674911,-0.0431525186,0.010367292,0.0252235141,-0.0197325908,-0.0123579195,0.0037942152,-0.0047394289,0.0540007651,-0.0060320008,0.0038843947,-0.0293383673,0.0037140558,0.0023964343,0.0554169193,0.013186234,0.0187172368,0.0245287996,-0.0052504456,-0.006846955,-0.0266663861,0.0264125466,0.0028206115,-0.0193585139,-0.0364191234,0.0268667843,0.0248627979,0.0148829427,0.0071141534,0.0049030879,0.0090513406,0.0080760671,0.0001116805,-0.0109484484,0.0162857343,0.0109350886,0.0102938125,-0.0186103582,-0.0200665891,0.058569856,-0.0063726781,0.0230057687,0.029498687,0.0183965992,-0.0218434576,-0.007795509,0.0118302023,0.0161254145,0.013513552,-0.0120840408,-0.0080961073,-0.0307545196,-0.0333997831,-0.0191848353,0.0044020913,-0.0192516334,-0.0234733671,-0.0141080674,0.0012416369,0.0095189381,0.0160051752,0.0290978905,0.0051101665,-0.0035604166,0.0013443412,-0.0229122508,0.0167399701,0.0332394615,-0.006412758,0.0082029868,-0.0041682925,0.0193050746,-0.008663903,-0.0000313906,0.0160318948,-0.0017351187,-0.0059718811,0.0140145486,0.0207212251,-0.0081963064,0.0108348895,0.0145088648,-0.0022795352,-0.0288306922,0.0112156468,-0.0129657956,0.0226450525,0.0416562073,0.0014904652,0.0132597135,0.0144821452,0.0122443596,0.003186339,-0.0044421707,0.0459313802,-0.001993967,0.021669779,-0.0097193364,-0.0011581375,-0.0342013761,0.0359381661,-0.0118702827,0.029498687,-0.0234332867,0.0342815369,0.0145088648,0.0265194271,0.0198661909,0.003373378,-0.0346021727,-0.0172743667,0.0081428671,-0.0322775505,0.0052137058,-0.0047160489,0.034361694,0.0130593143,0.0159650948,-0.0287505314,0.0018720578,-0.0046058297,0.0389307849,-0.002620213,-0.0110352878,-0.0061288597,0.0058917212,0.0242215209,0.0291513298,-0.0197325908,0.0102938125,0.0483361632,0.0057714824,-0.0076552299,0.0097861355,-0.0376749523,0.0310484376,0.0293918084,-0.0134935118,-0.0178087633,-0.0219236165,0.0070807538,-0.0094588185,0.0163792521,-0.0156310983,0.0157780573,-0.0443281904,0.0237940047,0.0030777899,-0.0149497418,0.0068035354,-0.0038476549,0.0464123376,0.0066532367,0.0155642983,0.0285100527,-0.0101268133,0.0172075666,0.021669779,-0.003824275],"53":[-0.0004356809,0.0053616525,0.0368893631,0.0047269166,0.0550502837,-0.003291293,-0.0058246367,0.0433113985,-0.0262706038,-0.011193756,0.0382036418,-0.035724435,-0.0119629074,-0.0193258449,0.0612930991,0.0279433206,-0.014479449,-0.0113207037,-0.0596502498,0.0453724228,0.0065265796,0.0128142005,0.0107009029,0.0149947051,-0.017070666,0.0051450953,-0.0401451848,0.0324686132,-0.0187732521,-0.0615320578,0.0128366025,-0.0339621119,-0.0391893499,0.0457009934,0.0434906185,-0.0265244991,0.0100736339,-0.0020890282,0.0405633673,-0.0027200305,-0.0310945977,-0.0436698385,0.0282718893,0.041937381,-0.0467464402,-0.023014782,-0.0228056926,-0.0346491188,0.028869288,0.0525113381,-0.0630852953,-0.0063361591,-0.032110177,-0.0138447126,0.0067767403,-0.0394880474,-0.0172349494,0.0327075757,-0.0075122877,0.0137476353,0.0123362811,-0.0237316601,0.0416984223,-0.0073218667,-0.0317218676,-0.0080574136,-0.0056528845,0.0330958813,-0.0380542912,0.0368594937,0.0411906354,0.0095509104,0.0244037323,-0.0050853556,0.002613619,-0.0626671165,-0.0427139997,0.0523918569,0.0090057841,-0.0263154078,-0.0117687527,-0.0118060904,-0.0099914921,0.0189972762,0.0040137721,-0.0726436675,-0.0299894102,-0.0051264269,0.0037188064,-0.0098122722,-0.0315426476,0.0325283557,0.0098944148,0.0071239783,0.0288842227,0.0156966485,0.008109686,0.031930957,-0.0010725172,0.022432318,0.0109025249,-0.0105739553,-0.0172648206,0.0053728539,0.032886792,0.0172797553,0.0472542308,-0.0271517672,-0.0047045141,0.0231193267,-0.1169706509,-0.0200725924,-0.0054512625,-0.0003957766,-0.0070903748,-0.0153232748,-0.001696052,0.0212972611,-0.0081918286,-0.0139492573,-0.0459399521,0.0050032134,-0.0007276128,0.042654261,-0.0230446514,-0.0195797402,-0.0149424328,-0.0422659516,-0.0319010839,0.0068738176,0.0285257827,-0.0001548336,0.0214018058,-0.0156966485,-0.0408620648,-0.0411308929,-0.0792150572,-0.0233433507,-0.0327673145,-0.0178323481,0.0291530527,-0.047523059,0.0035321193,-0.000463684,-0.0339023694,-0.0259569697,-0.0172797553,0.028869288,-0.0489866845,-0.0069858301,0.0148677574,-0.0354556069,-0.0442074984,-0.0018379341,0.0459996946,-0.0020703597,0.0059702522,0.0675657839,-0.0064855088,-0.0230745208,0.0122765414,0.0839345083,-0.0177726094,0.0106560979,-0.0032931599,-0.004245264,-0.0188628603,-0.0352166481,-0.0805890709,-0.0068887528,-0.0202070083,-0.0375166312,-0.0457308628,0.0272712465,0.0275848806,-0.0196842849,-0.0096778572,-0.0425646491,0.0077213771,-0.0362023562,-0.0584554523,-0.0023130528,-0.0195199996,-0.0174291041,-0.0232238714,-0.0027405662,-0.0318114758,-0.0094687678,0.0207745358,0.0205654465,-0.053556785,0.0690592825,0.0090804584,0.0045402292,0.0296608415,-0.0453425534,0.0390101299,0.0398763567,-0.023418026,0.0379049405,0.0325283557,0.0220888127,0.0422659516,0.003664667,0.0059702522,-0.0268381331,0.0243141241,0.0191914309,-0.0482698083,-0.0159804132,0.0141956843,-0.0092372764,-0.0114028463,-0.0141135417,-0.0437594466,-0.0201920737,-0.0230894554,0.0042153941,-0.0160998926,0.0469256602,-0.01684664,0.0343802907,-0.0029365874,-0.0128888749,0.0102603212,0.0417282917,0.0589931123,0.002512808,0.0347387306,0.0151365874,0.0212375205,-0.0190868862,0.0124856308,-0.0521528982,0.0540048331,-0.0340218507,0.0080275442,-0.0461191721,0.0092895487,-0.0415490717,0.013605753,0.0234777648,-0.0067282016,0.0044692885,-0.003435042,0.0082963733,-0.0382036418,-0.0738982111,-0.0074301451,0.044954244,0.03441016,-0.0240303595,-0.0187881868,-0.0406231061,0.0048762662,-0.0350672975,-0.0096031828,0.0024474675,0.0110070696,-0.0218199845,0.0418477729,-0.0491957739,-0.0381737724,-0.0242543835,-0.0527204275,0.0260764491,0.019370649,-0.0346491188,0.0083486456,-0.0156966485,0.0375763737,0.0153979491,-0.0000224024,-0.0455516428,-0.0177128688,-0.0565437786,-0.0122392038,-0.0034649118,-0.0228056926,0.000509189,0.0040772455,-0.0265842378,0.0144495787,-0.0190719515,0.0135684162,0.0244634729,0.0375465043,0.0265095625,0.0019228768,-0.0402347967,0.0006001989,0.0165927466,0.0401153155,-0.0491360351,0.0175485834,0.0194154549,0.0308556389,-0.00588811,-0.0461490415,-0.0355452187,0.0380841605,-0.0139343226,0.0134115992,-0.0346192494,-0.0256134663,-0.0006814078,-0.0009679724,-0.0023261209,0.0091327308,-0.0273011159,0.0118434271,0.001449625,0.0307361577,-0.0335140638,0.0147333434,-0.0089087067,0.0517944582,-0.0314231664,-0.0271965712,-0.0498230457,-0.053736005,-0.0480607189,0.0131128998,0.022925172,0.0291231815,-0.0299894102,0.0300043449,-0.0130830295,0.0479113683,-0.036082875,0.0326777026,-0.0629060715,-0.0094986381,-0.0303030442,-0.0420568623,-0.0243141241,0.0415789448,-0.0051338943,-0.0103872679,0.0355153456,-0.0036291964,-0.0208342765,-0.0613528378,0.000942303,0.0468957908,0.0061382707,-0.001095853,-0.0113804433,-0.0084979953,0.0095434431,-0.0523619875,-0.0353062563,0.025269961,-0.0043871459,-0.0034145063,-0.0099840239,0.0110444063,0.0026770926,-0.0623684153,-0.0036198623,-0.0356646962,0.0129486145,0.0133369239,0.0064183013,0.0165927466,-0.0028376435,-0.0221336186,-0.014008997,-0.0076056309,-0.043968536,0.0215810239,0.0309751183,-0.0274504665,-0.0414594635,-0.0529295169,0.0030579341,0.0610242672,0.0538554862,0.0353062563,0.0733605474,0.0477918871,-0.0025557459,-0.00542886,0.0000719329,-0.0096778572,0.058246363,-0.0063212239,0.0023559907,-0.0360231362,-0.0064668399,-0.0007122111,-0.0262257997,-0.0236271154,0.0203264877,0.0026304207,0.0267335884,0.0263154078,0.0374270231,0.0601879098,-0.0338127613,0.0295861661,-0.0066124559,-0.0227608867,-0.0293770768,-0.0033118285,0.0060561285,0.00134228,0.020087529,-0.0576190948,0.0020404896,-0.0022925171,-0.0414893329,0.0274205953,-0.0217901152,-0.0048239939,-0.0621891953,0.0067879418,0.0221933592,0.050002262,0.0642800927,-0.0016549808,-0.0329465345,-0.0060747969,-0.0122914761,-0.0312738158,0.0302731749,0.045312684,0.0012918744,-0.0258822944,-0.0617710166,-0.0389503911,-0.0165031366,0.0383828618,-0.0282569546,0.0009105662,0.0204609018,0.0169063807,-0.0264946278,0.0413399823,0.0169959906,-0.0136878956,0.0264050178,-0.0024474675,0.0052123028,0.0233134814,0.0003010329,-0.0222381633,-0.0194303896,-0.0359335281,-0.0182206575,0.0374867618,-0.011507391,-0.0137625709,-0.0081918286,-0.0244186688,-0.0220290739,0.038143903,-0.0277192947,0.039637398,-0.0113431057,-0.039458178,0.0045887679,-0.0691787601,-0.0190271456,-0.0108203823,-0.0710306913,-0.0026752257,0.0185492262,0.0229401067,-0.013986595,0.0128664728,-0.0028339096,-0.0436399691,-0.0318712145,-0.0301088896,-0.0183849428,0.0608749166,-0.014322632,0.0279881246,0.0069372915,0.0166524854,0.0165628772,-0.0363517068,0.0856072232,0.0261660591,0.0171752106,0.0003855088,0.0019210099,-0.0347088575,0.0187881868,0.0039577656,0.0051413616,0.0402049273,-0.0192063656,-0.0286153927,0.0075122877,-0.0530489981,-0.0200128537,-0.014210619,-0.0432815291,0.0359335281,-0.0017445906,0.0090729911,0.0531386063,-0.0381737724,0.0088190967,-0.0520035475,-0.0218946598,0.0221784227,-0.0045327619,-0.0481503271,-0.0038270848,0.0365906656,0.0197738931,-0.0151589895,0.0079005966,-0.0142255547,-0.0078184539,-0.0297056455,-0.0368594937,-0.0111041469,-0.0175037794,-0.0458204746,-0.0155622335,-0.0146586681,-0.0091551337,-0.0413698554,-0.0267186519,-0.0221784227,-0.0169213153,0.0050704209,-0.0151365874,0.0302433055,-0.0027499006,-0.0416685529,0.004054843,-0.022656342,-0.0233433507,-0.0302582402,0.0202518124,0.0135385459,0.0352166481,0.0095807798,0.0172200147,-0.0313036889,0.0004417483,-0.0323491357,-0.0143973064,-0.0046858452,0.045671124,0.0307660289,0.003188615,0.0065713846,0.0030299311,-0.0079528689,0.0066348584,-0.0003787414,-0.0210583005,0.0069932975,0.003246488,-0.0191764962,-0.0103723332,-0.0013600152,-0.0071874522,-0.0235225707,0.0352763869,-0.0070418362,-0.0245530829,-0.0371581949,0.0178024787,0.0073592043,-0.0179219581,0.002669625,-0.0075570922,0.0338725001,0.0057238257,-0.0178622175,-0.0247920416,0.0270322878,0.0319906957,-0.0134937409,0.0026248202,-0.0425945222,0.0283017587,-0.0479711071,0.0265842378,-0.0002200574,0.0411010236,0.0300192796,-0.0335738026,0.0092895487,0.014367437,-0.0310647283,0.0135534806,0.0082739703,-0.0206401218,0.0010165111,0.0211927164,-0.0289439633,0.0061569395,0.025493985,0.0191018209,-0.0086996173,-0.0312738158,-0.025404375,0.0187433809,0.0017455241,-0.0046223719,0.0297803208,-0.0287946127,0.0205505118,0.0137327006,0.0036198623,-0.0513165407,-0.0300043449,0.0125827082,-0.0029757919,0.002481071,0.011619403,-0.0072919969,-0.0396672674,-0.0373971537,0.0019004743,-0.025673205,0.0205953177,0.0239556842,-0.0130008869,-0.0373374149,0.0098720118,0.0459399521,0.0126797855,0.0231641307,0.0136804283,0.0116044683,0.0044804895,0.0183102675,0.0275550112,0.0329465345,-0.0054587298,-0.0138671156,0.0223576427,-0.0006207345,0.0097450651,-0.0065863198,0.0216706339,-0.025718011,0.0058694412,0.0577087067,-0.0101707112,-0.0021039632,0.0000192375,-0.0272264425,0.0468957908,0.0365309231,0.0241199695,0.0003365034,-0.0201472677,-0.0140687376,0.0434607491,0.0471347496,0.0043423413,0.0213868711,-0.0114551187,0.0051712319,-0.0199680477,0.0142479567,-0.008557735,0.0485685058,0.0182803981,0.028197214,-0.0173544288,0.043968536,0.025359571,0.0218946598,0.0062054782,-0.0025501454,0.008938577,-0.0209089518,0.0206849277,0.0460893027,-0.0454321653,0.0048912009,-0.0343802907,-0.0117986221,-0.0000420629,-0.0345296413,-0.0065601836,0.0272413772,0.0497035645,0.0262556691,-0.0071538482,0.0003178347,0.0150320427,-0.0345595106,-0.000173969,-0.0329764038,0.0091103287,0.0370387137,-0.0273309872,-0.0196544137,-0.0064295027,-0.0098272068,-0.0494944751,-0.0073965415,-0.0316322558,0.0126573835,0.0439984091,-0.0053131138,0.0489866845,-0.0041668555,-0.060486611,-0.0001780528,-0.0090132514,0.0191764962,-0.0060822647,0.0104096709,-0.0104843453,0.0060635959,-0.0343802907,-0.004547697,-0.0691787601,-0.0167420954,-0.0312738158,-0.0291978568,0.0372478031,-0.0009035654,0.0237017907,0.0298251249,0.0114775207,-0.0096703898,0.0151141845,0.0173245594,0.0169661213,-0.0137028303,0.022387512,-0.0193407796,-0.0491360351,-0.0091327308,-0.0382633805,-0.0107755773,-0.0008008875,-0.0066497931,-0.0167570319,0.011709013,0.0125155011,-0.0322893932,0.025493985,0.055080153,0.0119330371,-0.0109174596,0.0066311248,0.0148901604,-0.0359335281,-0.0133667942,0.0121346591,-0.0146885384,-0.031214077,0.0096853245,-0.0222082939,0.020132333,0.011059342,0.0295861661,-0.0401750579,0.0237017907,-0.0178920887,0.0402646661,-0.0080424789,0.0216556992,-0.0221336186,-0.0335738026,0.0016708493,-0.0156070385,0.0000688409,0.0031232745,0.0440581478,-0.0109398616,-0.0158011932,0.0255238563,0.0190122109,-0.0329166651,0.0453724228,-0.002251446,-0.0130680948,-0.0233881548,-0.0108726546,-0.0239706188,-0.0048127924,-0.0063212239,-0.025538791,-0.0016297781,-0.0149200307,0.0099914921,-0.0289887674,0.0007607498,-0.0047717215,-0.0081022186,0.0107755773,-0.0788566172,-0.0306166783,0.0471048802,-0.0084606577,0.0127096558,-0.046208784,0.005944116,0.0391594805,0.0369491056,-0.0248965863,-0.0068962201,-0.0313335583,-0.0172200147,-0.0389503911,-0.023507636,0.025852425,0.0046261055,0.0225069933,0.0080947513,0.0324984826,-0.004446886,0.0301835649,-0.030945247,0.0549009331,0.002005019,-0.0407127142,-0.025718011,0.0374568924,0.0274355318,0.00430127,0.0343205519,0.0191316903,-0.0147184087,0.0101483092,-0.0191018209,0.0344997682,-0.0099765565,0.0068663503,0.0072135883,0.0050405506,-0.0076616374,-0.0341114588,0.0718670562,-0.0139641929,0.0515256301,-0.0031568783,-0.0161446966,0.036082875,0.0034499769,0.0087668244,0.0391893499,0.0247472376,-0.0027293649,-0.0290186368,-0.0284959134,0.0283465646,-0.0577087067,-0.0265095625,0.035724435,0.0196842849,-0.0139716603,0.022387512,0.0057574292,-0.0626073778,0.0047717215,0.0108651873,-0.0213868711,0.0187433809,-0.0162343066,0.0123885535,0.0118060904,0.0459399521,0.0237017907,-0.005585677,0.0105216829,-0.0100138942,0.002770436,-0.0027536342,0.0150693795,-0.0532580875,-0.0040735118,-0.0070642387,-0.0413399823,0.030542003,-0.019057015,0.0023279877,-0.0003920428,0.0300640855,0.0293024015,-0.0051525631,0.0481204577,0.011462586,-0.001848202,0.001443091,-0.0038681559,-0.0007700842,0.0277491659,0.0077512469,0.0305868089,-0.0150693795,0.0097450651,0.0054176585,0.0233881548,0.0104171382,0.0140164653,0.0051413616,0.0078931293,0.0103798006,-0.0133145219,0.0036534658,-0.0131128998,-0.0199232437,0.0262855384,0.0213420652,0.0187135115,-0.0185940322,0.0160849579,0.0009717062,-0.0082366336,-0.0181758534,0.0369491056,-0.0108950576,-0.0376361124,0.0297504514,0.0099466871,0.0062540169,0.0434906185,-0.014681071,0.0164135266,-0.0246426929,0.0102677885,0.0335738026,-0.0039764345,0.0246426929,0.0026341544,-0.0030280643,0.0009325019,-0.0015532364,0.0121197244,0.0100288289,0.0108502526,0.0076355007,0.0008158225,0.0005544606,0.0163239166,-0.0110518746,-0.0186239015,0.0189076662,-0.0295712315,0.0175784547,0.0426243916,-0.0107681099,-0.0273160506,0.050539922,0.014165815,0.041937381,-0.0523918569,-0.0049098697,-0.0066572609,-0.0032520888,0.0098720118,0.0393685699,0.0247920416,-0.0127843302,0.0062950877,-0.0012041315,-0.0488373376,-0.0029104513,-0.0087070847,0.0056192805,0.01756352,0.0166674219,0.0121645294,-0.0094164954,0.0391893499,0.0290335715,0.0169213153,0.0061830757,0.0109473299,0.0158758685,0.0116940774,-0.0136878956,0.011305769,0.03494782,0.0192661043,-0.0242095795,-0.0326777026,0.0016316449,-0.0187881868,0.0146661354,0.0209686905,0.0120450491,0.0052869776,0.0152187292,0.0237465948,0.0059814537,0.0321699157,0.030542003,-0.0352166481,0.0252400916,-0.0181011781,0.0153830145,0.0104395403,-0.0099317515,0.0099765565,0.0303926542,-0.0212673899,-0.0012638714,-0.0199381784,0.0096405204,0.0072807954,0.0101184389,-0.0168317053,0.0120749194,0.0109846666,-0.0010221117,0.0384127311,-0.0079379342,-0.0265095625,0.0084307883,-0.0105963582,-0.016801836,-0.0153830145,-0.0044170162,-0.0154128838,0.0310945977,0.0143599687,0.0192213003,0.007329334,0.0189524703,0.0130456919,-0.0037748124,0.0050517521,0.0230894554,0.0413399823,0.0052683088,0.0255238563,0.011328171,-0.0067954091,0.0290783774,0.0005899312,0.0113879107,0.0133369239,-0.0135908183,-0.008445723,0.0036198623,0.0236719195,0.0033323641,0.0161446966,-0.0197589584,0.0053653861,0.031124467,0.0046522417,0.0012974751,0.0220888127,0.0242991876,0.0304673295,0.0220440086,0.0135012083,0.0108875893,0.0081694257,0.0226115379,0.0212076511,-0.0215959605,-0.0196992196,0.0062390817,-0.0235673748,-0.0066385921,0.0064892424,0.0438191891,-0.0224920567,0.0439984091,-0.005540872,0.0024997399,0.0111190816,0.0266887825,-0.0410114154,-0.043012701,-0.0078184539,0.0020834277,-0.0301387589,-0.0095509104,-0.0084531903,0.0260615144,0.019997919,-0.0214316752,-0.0058694412,-0.0422062129,0.016712226,-0.0461191721,0.0085203974,0.0115596633,-0.0217901152,0.0013562816,-0.0356646962,0.0149499001,0.0139492573,0.0169511847,-0.0153083391,0.0026453556,0.0137327006,0.0047717215,0.0011789288,0.011910635,0.0104992809,-0.0158609338,0.001132257,-0.0243141241,0.0138148433,0.0029477887,-0.0258972291,-0.002585616,0.0248368476,0.0227907561,0.0160998926,0.0069634276,0.0106859673,0.0200725924,0.0153979491,0.0248069763,0.0243738629,0.0123288138,0.0210284311,0.0440581478,-0.0127992649,0.0187135115,0.0350374281,0.0160252172,-0.0284361746,0.0260465797,0.0093940934,-0.0188927315,0.0063286917,0.004547697,-0.0228056926,0.0057835653,0.0147034731,0.0100661665,0.0077512469,-0.0278238393,0.002077827,0.0130979642,-0.0143375667,0.0198336337,0.0131726395,-0.0011863963,0.0295114908,0.023014782,-0.0023877276,0.0137625709,0.0824410096,0.0112460284,-0.0313036889,0.0036217291,-0.008938577,-0.0168317053,-0.0043871459,0.0035843917,-0.0362023562,0.0209089518,-0.0058694412,-0.0177576728,0.0074114767,0.0235823095,0.0073218667,-0.0350672975,-0.0054923333,0.0211180411,0.0127992649,0.0000920601,0.0271368325,0.0409218036,-0.011395378,-0.0227608867,-0.0209537558,-0.0284063034,0.0259569697,-0.0062838867,-0.0038270848,0.0168167707,0.0265244991,-0.0109622646,0.0212823246,0.036620535,0.0024119969,-0.0176680647,-0.0133891962,0.0230595861,0.0139716603,-0.0232836101,-0.0077064419,-0.0162940472,-0.0218647886,-0.020401163,-0.0301984996,0.0095882481,-0.0164882019,-0.0237764642,-0.0032856923,-0.0455815122,-0.0292127915,-0.0106486306,0.0219095945,-0.0059851874,0.0008139556,0.0236569848,0.0763475448,0.0189076662,0.031572517,0.0063212239,-0.0164284613,0.0058059678,-0.0008951645,0.0152560668,-0.0173245594,-0.0324984826,0.0255537257,-0.0162193719,-0.0168615766,-0.022835562,0.0395776592,0.0159057379,-0.0024736037,0.0234329607,0.0218797233,0.0262706038,-0.0116343377,0.0312439464,-0.0041033817,-0.0150469774,-0.0358439162,0.0274654012,-0.0082739703,0.0215660892,-0.0126275131,-0.01756352,-0.0080051413,0.008020076,-0.0065340474,0.0285855234,-0.0078483243,-0.0071202447,0.0252400916,0.0137177659,-0.0132249119,-0.0137252333,-0.0198933743,-0.0104395403,0.0169661213,-0.0204459671,0.0193258449,0.03458938,-0.0149573674,0.0395477861,-0.0090356544,-0.0183102675,-0.0192362349,-0.0229102373,-0.0019527467,-0.0203414224,-0.0310647283,0.0136430906,-0.0021599694,0.014076205,0.0184148122,0.0508684926,0.0214018058,-0.0252550263,-0.0209836271,-0.0156070385,0.0316621251,0.0135534806,-0.0097226622,0.002468003,-0.0232388061,0.0028917827,0.0361426175,-0.0102155162,0.0002639288,-0.0046261055,0.0100661665,0.0111340163,0.0375763737,-0.0000890264,0.008938577,0.0393984392,-0.008154491,0.0041033817,0.0163239166,0.0018902066,-0.0411607623,0.0128739402,0.0056640855,-0.0120375818,0.0305121336,-0.0078632589,0.0130456919,0.0176083241,0.002077827,-0.0065676509,-0.0309153777,0.0048202602,0.0408620648,0.0001390819,0.0049920119,-0.0324686132,0.0345595106,-0.0181310475,-0.0150992498,0.0079379342,-0.0115895327,-0.0038942923,-0.0419971235,-0.06989564,0.0353361294,-0.011283366,-0.0012937414,-0.0061905431,0.004402081,0.0434010103,0.0262706038,-0.0309153777,-0.0103275282,0.0213719346,0.0247173682,-0.0120749194,-0.0251654163,0.031393297,0.006914889,-0.0009698393,0.0024026625,0.0002106063,0.0224920567,0.0343205519,0.0149125624,-0.000066799,-0.0224920567,-0.0160998926,0.005238439,0.0196842849,-0.0156369079,0.0104768779,-0.0114775207,0.0211777799,0.0422062129,0.0015896404,0.0001382651,0.0138596473,-0.0327673145,0.003954032,-0.0156667791,-0.0121421264,-0.0321699157,-0.0123362811,-0.008580138,0.0373672843,-0.0176829994,-0.0070567708,0.0068887528,0.0036161283,-0.0063286917,0.0045700995,-0.0284809787,0.0247920416,0.0075421575,-0.0065079113,0.0176680647,0.0470750108,0.0075048199,-0.0558567718,0.0186537709,-0.03494782,-0.0048762662,-0.0279433206,0.0036235959,0.0105440859,-0.008221698,-0.0148154851,-0.0239556842,-0.0095509104,0.0141807497,-0.0313335583,0.0159505419,0.0382633805,-0.0076541696,-0.0165479407,-0.0035395867,-0.0242245141,0.0154576888,-0.0017063197,-0.025942035,-0.0148080178,-0.0132995863,0.0310647283,0.0451035947,0.0090356544,0.0304673295,0.0005759296,0.0000150808,0.0015028309,0.0053653861,0.022835562,-0.0159654785,-0.0218199845,-0.0223576427,0.0098645445,0.0009451033,-0.002484805,0.0067879418,0.0048762662,-0.00842332,-0.0201472677,-0.0124184238,0.0031307421,-0.0056678192,0.0144495787,0.0211628452,-0.0287946127,-0.0236569848,0.044147756,0.0178024787,0.0089087067,0.0317816064,-0.0017025861,-0.0212823246,0.0150021724,-0.0129336799,0.0268530678,0.0074786837,0.0035134505,-0.008804162,-0.0138895176,-0.0204609018,-0.0175187141,-0.0147557454,-0.0343802907,-0.0035937261,-0.0059291814,0.0136356233,0.0095658451,0.0130830295,0.0345595106,0.0070082326,0.0034107727,-0.0072247894,0.018967405,0.0062988214,0.0083038406,-0.0040212395,0.0027667023,-0.007026901,0.0034947819,-0.0095807798,-0.0046709105,0.0133070536,0.0287498087,0.0114103137,0.0251206122,0.01756352,-0.0025482785,0.0163836572,0.0028955163,-0.0141583467,-0.0439386666,-0.0070381025,-0.0216108952,0.0369192325,0.0302433055,-0.0156966485,0.0042751338,0.0313335583,-0.0037561439,0.0217751786,-0.0064855088,0.0389802605,-0.0188777968,0.00271443,0.0149274981,0.0105739553,-0.0333049707,0.0264946278,0.0004195792,0.038143903,-0.0255686603,0.0493152551,0.0133145219,0.014277827,0.0286303274,0.0133070536,-0.0263751484,-0.0303478502,0.0027667023,0.0213719346,-0.017160276,-0.0097674672,0.0391296074,-0.0008503596,0.037606243,0.0087070847,0.0038905584,0.0116343377,0.0407425836,0.0055110021,-0.0063137566,-0.0242394488,0.0045850342,0.0193258449,-0.0054773986,-0.0209089518,0.0267634578,0.0403244048,-0.0189375356,0.0002639288,0.0010361132,-0.0236121807,0.0280030593,0.023014782,-0.0097301295,-0.0262257997,-0.0396672674,-0.0022943839,-0.0098346742,-0.000894231,-0.0324387439,0.0032278195,-0.0376361124,0.0198635031,0.0132771842,-0.0126424478,-0.0019247436,-0.0053056465,0.0273907259,0.0330361426,0.0092223408,0.0232985467,0.0039316295,0.008938577,0.0266141072,-0.0061158682],"54":[0.0318106636,-0.0067289122,0.0342512392,0.000339089,0.0309509169,-0.0132290209,-0.0744929761,0.0098316306,-0.0163629409,0.0255566929,0.0164877418,-0.0286767464,0.0002550209,-0.0020852347,0.0326149464,0.0244750753,0.0076545277,-0.0289540831,-0.0548574515,0.0229635835,0.0307845138,0.0019049651,0.0058830315,0.0041219355,-0.0233102553,-0.0420167036,-0.0569097511,0.0335856266,0.0409350842,-0.0945722461,-0.01334689,-0.0400476009,-0.0392155871,0.0169592164,0.0298138317,-0.0144354412,-0.0044582076,0.0151981208,0.0193581898,0.0132151544,-0.0056230272,-0.0165848099,-0.0066630444,0.0460103676,0.0215214267,0.0002821047,0.0085766762,-0.0457884967,0.0228110477,0.0211470202,-0.0700001046,0.0429596528,-0.006697712,-0.0433756597,0.0135964938,0.041572962,0.0069785165,0.0312559903,-0.017943766,0.0121959373,0.0199822001,-0.060681548,-0.0028357806,0.0456498303,-0.0358320661,0.0280943364,0.0248910822,0.0172642879,-0.0256953631,0.0128892818,0.074104704,0.0375238284,0.0074465242,0.0193304569,-0.0020852347,-0.0523614064,-0.0224505085,0.0965136141,-0.0033453892,0.0104625747,-0.0038861982,-0.0051307525,0.0040248674,-0.0047910134,0.0128546152,-0.0319215991,-0.0323653407,-0.0258340314,-0.0041046017,0.0285935439,0.0014525576,0.0660619065,-0.0147405127,0.0246553458,0.0296196956,0.023143854,0.0251961537,0.0062782383,0.027498059,0.0260004345,0.0169176161,-0.0137698296,-0.0286490116,0.0041254023,0.0432092547,-0.0016536276,0.0270959195,0.0114956591,0.0224366412,-0.0088193472,-0.0898020342,-0.0108508477,-0.0441522039,-0.0315610617,-0.0163074732,0.0250297524,0.0067081121,-0.0115025919,0.0171949547,-0.0132290209,-0.0321157351,0.0210083518,0.0171117522,-0.0188173819,-0.0030437843,-0.0607370138,0.0064723748,-0.0413788259,-0.0622346401,0.0066214441,0.0383003727,-0.027498059,0.0387163796,-0.0345840454,0.0020453676,0.0109201828,-0.081592828,-0.0465373099,-0.0233102553,0.0193304569,-0.0307013132,-0.0296751633,0.0259033665,-0.0000457174,-0.0210083518,-0.0135826273,-0.017916033,0.0320047997,-0.018401375,0.0208558142,-0.0124455411,-0.0142413042,-0.0658400357,-0.0003471058,0.0103585729,0.014296772,0.0295087602,0.0517235324,-0.0140541019,-0.0140055669,0.022852648,0.0438748673,-0.024336407,0.0103447065,-0.0302853063,-0.016848281,-0.0227833148,-0.0277199298,-0.0911332592,-0.0078139976,-0.0424604416,-0.0432092547,0.0020765681,0.033668831,0.0170008168,0.0024405741,-0.0144493077,-0.0198573992,0.0133260889,-0.0157527961,-0.0704438463,0.0248494819,-0.0300911702,-0.0069091823,-0.0460935719,-0.0193304569,-0.0467037149,0.0440967381,0.0183320399,0.0302575715,-0.0486728139,0.0167234801,-0.0211192854,0.0221454371,-0.0116828615,-0.0246692114,0.0296474285,0.0134162242,-0.0297306292,0.0027560461,0.0198989995,-0.0149623835,0.0853091553,-0.0225475766,0.0255566929,-0.016848281,-0.0047944803,-0.0127714137,-0.0538312979,-0.0098870983,0.0233795904,-0.0025064419,0.0090758847,0.0233241227,-0.0226307772,0.0034857916,-0.0248633493,0.0129170157,0.0455388948,0.0347781815,-0.0161826704,0.0480072014,0.0270265844,0.0081884032,-0.0260975026,0.0359152667,0.0433479249,-0.0228110477,0.0108092474,-0.0072662546,-0.0026347106,-0.0307845138,-0.0519731343,-0.0244196076,0.0209667496,-0.0165709443,-0.0173474904,-0.0018390974,0.0124524748,-0.020204071,0.0092214877,0.0157805309,-0.0157389306,0.0063163722,0.0157111958,0.0101228356,-0.0296751633,-0.0465650447,0.0088401474,0.0210915525,0.0439858027,-0.0254041571,-0.0316442624,-0.023046786,-0.0068363808,-0.0378288999,0.0224089082,-0.015267455,0.0448455475,0.015461592,0.0198712647,-0.0342235044,-0.023240922,-0.0160994697,-0.0417393632,-0.0033713896,0.0171949547,-0.0156834628,0.0268463157,0.0392155871,0.0777655691,0.0507251136,-0.0032899217,-0.0207587462,-0.0227001123,-0.0042398041,0.0156141277,-0.0111143189,-0.0137282293,-0.0104833748,0.0124039408,-0.0015617594,0.0084102741,-0.0146711785,0.0101991035,-0.0084588081,0.01276448,-0.0002732212,-0.0185123086,-0.0386609137,-0.009796964,-0.0337520316,0.0127714137,0.0033696564,0.0323930755,-0.0081676031,-0.0232963897,-0.0025861766,-0.0223257057,-0.03899372,0.0262223054,-0.0088193472,0.0018408308,-0.0175416265,0.0113015221,0.0115927272,-0.0205230098,0.0043230057,0.0350277871,-0.0258478988,0.0207310133,0.0223118402,0.0081052016,-0.0395206586,0.0158498641,-0.0171117522,0.0512797907,-0.0188451149,0.0180547014,-0.0548851825,-0.02611137,-0.0415452272,0.0152119873,-0.0012020868,0.049837634,-0.0229913183,0.0544137098,-0.026402574,0.0227833148,-0.023365723,0.0025827098,-0.0170701519,-0.003343656,-0.0495048277,0.0007210787,0.0023747063,0.003348856,-0.0527496822,-0.0465095788,0.0119671337,-0.0192333888,-0.0069126487,-0.0392433219,-0.0126743447,0.090634048,0.0041496693,-0.0130002173,-0.0161133353,0.05874018,0.02611137,-0.0104487082,-0.0060321009,-0.0039797998,0.0173474904,-0.0107884472,0.0218958333,-0.014685045,-0.0179853663,-0.0166680124,-0.0069230492,-0.0365808792,0.0409073494,-0.0117591294,-0.007391057,-0.0026572444,0.037218757,-0.0164600089,0.0217294302,-0.0769335553,-0.0140818357,-0.0087985471,0.0477575995,0.0187896471,0.0062505044,-0.0526664816,-0.009117486,0.0673931241,0.0397702642,0.0299525,0.0539977029,0.0552734584,0.0345285758,0.0097553628,0.0178882983,0.0303962417,-0.0003267388,0.0024336406,0.0119532663,-0.0533320904,-0.0114471242,0.0333637558,-0.0302853063,-0.0069057154,-0.0001454941,0.0347504467,0.023046786,0.0346117765,0.021271823,0.0728289485,-0.0017567627,0.0120642018,-0.0052312873,-0.0644533411,0.0107329795,-0.0125842104,-0.0308122486,-0.0125634102,0.0052278205,-0.0170840193,0.0103169726,-0.0246692114,-0.0078902654,0.0591839217,-0.0315610617,0.0089094825,-0.0336133614,0.0070582512,0.0432369895,0.0535262264,0.0769890174,-0.0075574596,-0.0042328709,-0.0189560503,-0.0183875076,-0.0136658279,0.07998427,0.032531742,0.0027508459,0.0179299004,-0.0126743447,-0.0321434699,-0.0244750753,0.037856631,-0.0339184329,-0.0143522397,0.0320880041,0.023240922,-0.0452060886,0.0460658371,-0.0008926816,-0.0314223915,-0.0149901174,0.0019829664,0.0056056934,-0.0269849841,-0.0084380079,-0.0213550236,-0.0295087602,-0.0124524748,-0.0019777664,0.0328368135,-0.0100327013,-0.0406854786,0.0395761281,-0.0391601212,-0.0317829326,0.0332250893,-0.018526176,0.0308954492,-0.0284271408,-0.039797999,0.0495325625,-0.0336133614,0.0014178903,0.0199683327,-0.0476189293,0.0429873839,-0.0194691252,0.012521809,-0.0034979251,0.0147543801,0.027498059,-0.0172642879,-0.0193304569,-0.0509192497,-0.0142413042,0.0070235841,-0.0135826273,-0.0062158373,-0.0133330226,-0.0454002246,-0.0121890036,-0.0419334993,0.057131622,0.0120295342,0.0295087602,-0.0051723532,0.0182488374,-0.0278447326,0.0006352773,-0.0142274378,0.0125148762,0.0888590813,-0.0163074732,-0.063454926,0.0100188339,0.0081676031,-0.0274425913,-0.0094918916,0.0061638365,0.0049643498,-0.05338756,0.0192333888,0.0493384227,0.0170008168,-0.006406507,0.0050475509,-0.0264164414,-0.0071969205,-0.0270959195,-0.0148514481,0.0282191373,0.0264580417,0.0319215991,-0.0488392152,0.004219004,0.0076129274,0.0145463767,0.0152397212,0.007730796,-0.0068606478,-0.0310618524,-0.0240868032,0.0228665154,0.0077723963,0.00339219,-0.0377734303,-0.0208696816,-0.0172504224,0.003329789,-0.0088054808,-0.0203427393,0.0094849588,0.0127783464,-0.0414342918,-0.0222979728,-0.0182765722,-0.0482013375,-0.0414342918,0.040602278,0.0257785637,0.0149901174,0.0256398953,0.049227491,-0.0057443627,0.010746846,0.0206339452,-0.0351109877,0.0071969205,0.028759947,-0.0032829882,-0.0405468121,0.0411846898,-0.0017524293,0.0274703261,0.0236014612,0.0197464637,0.0074049239,0.0040942016,-0.000517842,-0.0069854502,-0.0238787998,0.0189005826,-0.0151010519,0.015170387,0.053581696,-0.0110172508,-0.0573534928,0.0097830966,0.0359430015,0.0144215738,0.010088169,-0.0367195457,0.0007102452,0.0211608876,-0.0073494562,0.0055883601,-0.0320602693,0.0052451543,0.0242116041,-0.0205923449,-0.0012159536,0.0125287427,0.007051318,-0.0141303698,-0.000921282,0.032531742,-0.0058760983,0.023046786,0.0304794423,-0.017916033,-0.0003700728,0.0057928967,0.0275396593,0.0331696197,0.0001492858,0.031893868,-0.0341957696,-0.016848281,0.0113153886,0.0046419441,0.0145325093,0.0212163553,-0.031893868,-0.0268740486,0.0198989995,0.0087222792,-0.0013719563,0.0321989395,-0.0293146223,0.0167789478,0.0046731448,-0.023851065,-0.049227491,0.0051723532,0.0035949934,-0.000119277,-0.0094017573,0.020980617,-0.0004996417,-0.0229358505,-0.0402972065,-0.0020159003,-0.0244750753,0.0244612079,-0.00974843,0.0146295782,-0.0238926653,-0.0241838712,-0.000577643,-0.0010304839,0.0271375198,0.0141650364,-0.0133260889,0.0135895601,0.0102684386,0.0165293422,0.0354160592,0.0109548494,-0.0058032968,0.0426823124,0.020883549,-0.0072523877,-0.0100049675,0.0355547257,-0.0145047754,-0.0106567116,0.0341957696,0.0294532925,0.0015201587,0.0036331273,-0.0403804071,0.0293978248,0.0293978248,0.0169037487,0.0271929875,-0.0381062366,-0.036081668,-0.006721979,0.0195384603,-0.0244612079,0.0334192254,-0.0433756597,-0.0065798433,-0.0384945087,-0.0064030401,0.0388827845,-0.0047320789,-0.0099980338,0.0197325964,-0.0243918747,0.0595167279,0.0247246791,0.0273177903,0.0139917005,0.0218542311,0.0060702348,-0.0331696197,0.0169730838,0.0521950051,-0.036081668,0.0262361709,-0.0369691513,-0.0043299389,-0.0096929623,0.0279972684,-0.000361406,0.0502536409,0.0210083518,-0.0272068549,0.0030541844,0.0047424794,-0.0231022518,-0.0089926831,0.0048083472,-0.0232270546,0.0079873335,-0.0069022486,-0.0254318919,-0.0696118325,-0.0029744497,-0.0092838882,-0.0449010171,-0.0111281862,-0.0366918147,-0.0109479167,0.0202179383,-0.0243225396,0.0253486894,-0.0084449407,-0.0398534648,-0.0062401043,-0.0318383984,0.0130210174,-0.0112599218,0.0174861588,-0.010940983,0.0057408959,-0.0324485414,0.0159053318,-0.0313669257,-0.009117486,-0.0130348848,-0.0482290722,0.011863132,-0.0135756936,-0.0026572444,0.0418502986,0.0187757798,-0.0135895601,0.0246969461,0.0005702762,0.0155725265,-0.0259310994,0.0327813476,-0.0503645763,-0.0363590084,-0.0020141669,-0.0523059405,-0.0167096127,-0.0532766245,-0.0199683327,0.0086044101,0.0213272888,-0.0118769985,-0.0260004345,0.0170146842,0.03053491,0.0268324483,-0.0348059162,0.0051099518,0.0127852801,-0.001535759,0.0110033834,-0.0098801646,-0.0198573992,0.0209251493,0.0137698296,0.0274841934,0.0328645483,-0.0236291941,0.0292868894,-0.0115927272,0.0061361026,0.0220206343,0.0256814957,-0.0046350108,0.0139917005,0.019108586,0.0011076186,-0.0232825223,-0.021951301,0.0018026967,0.0141789038,0.0261252373,0.0190531183,-0.0004253238,0.0158914663,0.0172504224,-0.0002584876,0.0191640537,-0.0071830535,-0.0386331789,-0.025015885,-0.0374683589,-0.0027265789,0.0059974333,-0.0181795042,-0.020301139,-0.0103239054,-0.0320880041,0.0064758416,-0.0278169978,-0.0449010171,-0.0087014791,0.0008783814,0.0020731012,-0.0558836013,-0.0054046237,0.0061811698,-0.022561444,-0.00638224,0.0236430615,0.0340293683,0.0109825833,0.0116065936,-0.0170285515,0.0394651927,-0.0330864191,-0.0399089344,-0.0174861588,0.0071345191,-0.0246553458,0.0006491442,0.0089510828,0.0140679684,0.0230745189,-0.0000459341,-0.0189421829,-0.0063649062,0.0501981713,0.0187341794,-0.0015218921,-0.0202595387,0.0340571031,0.0465927795,-0.0309509169,-0.0003835064,-0.0041947369,-0.0177357625,0.0154199908,-0.0346117765,0.0210915525,0.0001289188,0.001437824,-0.0157250632,-0.0143799735,-0.0466205105,-0.0194413923,0.0198296644,-0.0274287257,0.0057408959,-0.012715946,0.0074049239,0.0212995559,-0.0008935482,0.018429108,0.0038168638,-0.0091798864,-0.020495275,-0.0036920616,-0.0292314216,0.02217317,-0.0281082038,0.0067081121,0.0331973545,0.0096236272,-0.0314223915,0.0355547257,0.0020245672,-0.0146018444,-0.0124940751,0.0145325093,-0.0182627048,0.0353051238,0.0209528841,-0.0005564093,0.0457052961,0.0572425574,0.0169869512,-0.0077654631,0.0152813224,-0.0260420348,0.0262361709,-0.0153229227,-0.0223534405,-0.0190531183,0.0098385643,-0.0056854282,-0.0016631611,0.0142690381,-0.0002968383,-0.0184845757,-0.0165848099,0.0263332408,0.0011656862,0.0131458193,0.032531742,-0.0084518744,0.0120503344,0.000380473,-0.0018200304,0.0272623226,0.0028739148,0.003378323,0.028759947,-0.0237123966,0.0298692994,0.0082092034,0.0093324222,0.0216462277,-0.0068606478,-0.0242948066,0.0150039839,-0.0053283558,-0.0246830788,-0.0189421829,0.0032309873,-0.0164600089,0.0564105436,0.035443794,-0.0079041319,-0.0059662331,0.0235321261,-0.0282330047,-0.0057166289,-0.0293423571,0.0315887928,-0.0223534405,-0.0237539969,0.0417393632,-0.0351387188,0.0478408001,0.0299247671,-0.0066110436,-0.0228110477,0.0088540148,-0.0060563679,0.0633994564,0.0108439149,0.0228387825,-0.0177912302,0.0159191992,-0.0004086402,-0.0196493957,-0.0065694433,0.0063995738,-0.0137975635,-0.0334746912,0.0176248271,0.0040214006,0.0210083518,-0.0015426924,0.0002450541,0.0054427576,-0.0158359986,0.0488114804,0.0170701519,0.0005438424,0.0050371508,0.0376624949,-0.0087222792,0.0254734922,-0.0549961179,-0.0449010171,-0.0269572511,-0.0026815115,0.0100812353,0.0411569551,0.0217016954,0.0205368772,-0.010455641,0.0089788167,-0.0632330552,0.0101991035,0.0393542573,0.0165293422,0.0205923449,-0.0301466379,0.0065694433,-0.0316442624,0.0349168517,0.0220345017,-0.0273455232,-0.0013355557,0.0143661071,0.0489224158,-0.0240868032,0.0067289122,-0.001435224,0.0401585363,0.0321157351,-0.0362758078,-0.0143245058,-0.0053179557,-0.0367472805,0.0019032318,0.037052352,-0.0003566393,0.0256814957,-0.0267631132,-0.0018009634,-0.0027751131,0.0063787731,0.0089164153,-0.0457052961,0.0249604173,-0.0346949808,0.0108092474,0.0117036626,0.0043022051,-0.0176941622,0.0246414784,-0.0018113636,-0.0031113853,0.0028912483,0.0032413874,0.0199683327,-0.0145602431,-0.0097276289,0.0319215991,0.0039173989,0.0105873765,0.0182627048,-0.0126743447,0.0026607111,-0.0323653407,-0.0088886814,-0.0334746912,-0.0409350842,0.0429596528,-0.0248633493,0.0411846898,-0.0313946567,-0.0028947149,-0.0265828446,0.020883549,0.0051515526,0.0482290722,-0.0048187473,0.0019725664,0.0404636078,0.0047702128,0.0016319606,-0.0135479597,-0.0054912916,0.0072870553,-0.0114609916,0.0191917866,0.0078139976,-0.000540809,0.0212440882,0.008070535,0.0586292446,0.0009836832,0.0170978848,-0.0002439707,-0.0057928967,-0.0029536493,-0.0006175103,-0.0273316558,-0.0136796953,-0.0272345878,0.0119740665,0.0028149805,0.030923184,-0.0140887685,-0.017236555,-0.0014664246,-0.0056680948,-0.0076961285,0.0017238288,-0.0133607564,-0.0007254121,0.0005455758,0.0236153286,0.0131111527,-0.005775563,0.0242393389,0.0278308652,0.0183043052,0.0220483691,0.0681142062,-0.0511688553,0.0062747714,0.0004745079,-0.0047008786,-0.0178605653,0.0091798864,-0.0069403825,-0.0089094825,0.0307567809,-0.0152535886,-0.0044374075,0.0162104033,0.0238926653,-0.0316165276,-0.0123554068,0.0301466379,-0.0119047323,0.0070478511,-0.015364523,0.0193165895,-0.0131250191,-0.0068294476,0.0381894372,-0.0235182587,-0.002693645,-0.0181656368,0.0039416659,0.0261391029,0.0472583883,0.0058934316,-0.048062671,-0.0255844276,-0.0153783904,0.0278724656,0.0086945454,0.0243918747,0.0068918485,0.0604596771,-0.0140957022,0.0094017573,0.0269295163,0.0491720214,0.0077238623,0.0364699438,0.0226723794,0.0201347359,0.0181240365,0.0145463767,-0.0245444104,0.0043438058,0.0110657848,-0.0132706221,-0.0219651666,0.0115511259,0.0196077935,0.0049400823,0.0238926653,0.0172642879,-0.0238649324,0.0313391909,0.0199960675,-0.0146573111,0.012715946,-0.0006309439,-0.0152397212,0.0067393128,0.0023435059,-0.0224227738,-0.0041115354,0.0026468441,0.0231161192,0.0119532663,0.0007449124,0.0046488778,0.0631775856,0.0163490735,0.0234627929,0.017333623,-0.0117452629,-0.0197325964,-0.0009715495,0.006746246,-0.006430774,0.0333637558,-0.0312282555,0.0061257025,0.0019274988,0.0041774032,0.004947016,-0.0065105087,-0.0137212956,0.029758364,0.0044443407,0.0015669595,0.0261529703,0.0207032785,0.0067843799,-0.01079538,-0.0123692732,-0.0316442624,0.0068363808,-0.022658512,0.0075366595,0.0018841649,-0.0161410701,-0.0138807651,0.0094988253,0.0484786779,0.0174861588,0.0041843364,-0.0127575463,-0.0137420967,0.0158914663,0.0115441931,-0.0295919608,-0.0374683589,-0.0353328586,-0.0148375817,-0.0089996168,0.0212163553,-0.0017836298,-0.0363590084,-0.0031183187,-0.03053491,-0.0542750396,0.0023296389,0.0005447091,-0.0024180403,0.0023019051,0.0130626187,0.0350832529,0.0165293422,0.023240922,0.0383835733,-0.0217432957,-0.0254457593,-0.0202872716,-0.0004779747,-0.0402417406,-0.0329754837,0.0029397823,-0.0040872684,0.0023279055,-0.0274564587,-0.0014196237,0.0234350581,0.0307567809,0.0188451149,0.0193720572,0.0199405998,0.0264441743,0.0252238885,0.0009169487,-0.0554675944,-0.0331418887,0.0367195457,-0.0097137624,0.0200238004,-0.0007301788,0.025626028,0.0009620161,0.0007106785,-0.0027369792,0.0187619142,-0.0133399563,-0.0245582778,0.0143106394,0.0010226838,0.0130140837,-0.0199683327,-0.0383003727,-0.0228665154,0.0117313964,-0.0151010519,0.0062470376,0.0065590427,-0.003865398,0.023046786,-0.0074950587,0.0074811918,-0.0366918147,-0.0253070891,-0.0100119002,0.0090689519,-0.0307567809,-0.0036435276,0.0369136818,0.0151287857,-0.0069958502,0.0185955111,0.0008900815,0.0067358459,-0.0330864191,-0.0097622965,0.0074187908,0.004340339,-0.0066526444,0.0117729967,-0.0194136575,0.0074118571,0.052777417,-0.0035568594,-0.0322821401,0.0051446194,-0.0120850019,-0.0260143019,0.0447346158,-0.0160162672,-0.0142135704,0.0164045412,-0.0041219355,-0.0063129053,0.0576862954,-0.0173058882,-0.0189005826,0.0100119002,-0.0252238885,-0.0263609737,0.0106636444,-0.0103447065,0.0236430615,-0.004922749,0.0107191121,0.003057651,-0.018040834,0.0131804869,0.0438471325,-0.017818965,-0.0182072371,-0.0319215991,-0.0065278425,-0.0215491597,-0.0017671628,-0.0129170157,0.0120572681,-0.0076614614,-0.0091452198,0.007037451,0.0264719091,-0.0168344155,-0.0105388425,-0.0009247488,0.0040560677,0.0213411562,-0.0341680385,-0.0060841017,-0.0098385643,0.0048048804,0.0199267324,-0.0148098478,-0.0360262021,0.0114332577,-0.0039069988,0.0091521526,0.0221454371,0.0113708563,0.0015227587,0.018040834,0.0364699438,0.0054670246,-0.0233934578,-0.0034736581,0.0012662212,0.0098385643,-0.009214554,-0.0061083687,-0.0298692994,0.0298692994,-0.0101436358,0.0072038537,0.0264996421,-0.0022117703,-0.0419334993,0.0322266705,-0.0039520659,-0.0312837213,-0.0082577383,0.0063371724,0.0188312475,0.0133676901,-0.0286767464,0.0011249521,0.0348059162,0.0253486894,0.011863132,0.0058310307,-0.0354992598,0.0046696779,0.0102892388,-0.0368304811,-0.0051134187,0.0398534648,0.0197741967,-0.0383558422,0.0126258107,0.0030559178,0.0191917866,-0.0232131872,0.0123346057,0.0199405998,0.0305071771,-0.0284271408,-0.0099772336,-0.0119324662,-0.0098732319,-0.0000127158,-0.0033211221,-0.0055432925,-0.0318383984,-0.0004006234,-0.022658512,-0.0062990384,0.022270238,-0.0279002003,-0.012813014,-0.0069057154,0.0081329355,0.0256953631,0.0167096127,0.0096790949,0.0246414784,0.0188173819,0.0055051586,-0.0071830535,0.0197880641,0.0486728139,0.0012913549,0.008874815,-0.0363867395,-0.0018425641,0.0419889688,-0.0296474285,0.0331696197,0.0302575715,0.0030420509,0.0039173989,0.0485896133,-0.0489501506,0.0029692496,0.009894032,0.0189699177,-0.0243225396,-0.0300911702,0.0422385707,-0.0108508477,0.0174445584,0.0223811734,0.0190669857,-0.0079041319,-0.019815797,-0.0249881502,-0.004607277,-0.032531742,-0.0300911702,-0.0088540148,-0.0024717746,-0.0095958933,-0.0240036007,-0.0259310994,0.0310895853,0.005688895,0.0217016954,-0.031893868,0.0106844455,0.0129447496,0.0302021038,-0.0140125006,0.0277337972,-0.0184707083,0.0177634973,-0.0095612267,0.0162520055,-0.0094988253,-0.0313946567,0.0178605653,0.0025411092,-0.002861781,0.001956966,0.0295364931,0.0348336473,-0.00737719,0.0253348239,-0.0268601812,-0.0048222141,0.0374960937,0.0017420291,-0.0102892388,-0.0232131872,-0.0238371976,-0.0074673248,-0.0038688646,0.0029796497,-0.0002660711,0.0076545277,0.0137559632,0.0113361897,0.0073425225,-0.006832914,0.0328368135,0.0259865671,0.0183043052,-0.0069958502,0.0315055922,-0.0063718399,0.0187480468,-0.0140887685,0.0524723418,-0.0287322141,0.0582409725,0.0082230708,-0.0012254871,0.0103031052,0.0180269685,-0.0199405998,-0.0120919356,0.0177496299,-0.0231715869,0.0240313355,-0.0094364239,0.0320047997,-0.0073841233,0.009796964,0.0179576334,-0.0355547257,-0.001614627,0.0288708825,0.0135340923,-0.0053595561,-0.028565811,0.0094017573,0.0465095788,-0.0265135095,-0.0116551276,-0.0011882199,0.0501704365,0.0062089036,-0.00099755,0.0118353982,-0.0088956151,0.0240174681,0.0053040888,-0.0033453892,-0.0157250632,-0.0218819659,-0.0009394824,0.0033280556,0.0013060885,-0.0096582947,-0.0185400434,-0.0361648723,0.0325040109,0.0166680124,-0.0282191373,-0.0004905415,0.0195800606,-0.0066595781,0.060515143,0.0250713527,0.0161826704,-0.0177080296,0.0164045412,-0.028177537,-0.001769763],"55":[-0.0001171355,0.0065649212,0.0503286906,-0.0241259076,0.0195880737,-0.007695823,-0.0587215461,0.003805236,-0.0163447335,0.0047689918,0.041907385,-0.0263734851,-0.0313238502,0.0098296003,0.0338274799,-0.0028272548,0.0007517119,-0.0635581091,-0.0591767542,0.0171271171,0.0312954001,0.0044204751,0.0120131653,0.0009735358,0.006998789,-0.0205838364,-0.0351930968,0.0273550227,0.0280093811,-0.0823353454,0.0067534046,-0.0366440676,-0.0694757849,0.0030850861,0.0091894669,-0.0516658574,0.0355345011,0.0269424934,0.0078807501,0.0153205199,-0.0227176137,-0.0031224273,0.0097371368,0.0457197316,0.0280662831,-0.0344818383,0.0273265727,-0.0053593367,0.0222197324,0.0214657988,-0.0642409176,-0.0110174026,0.0129022393,0.0073970943,-0.0077740615,0.0425048396,0.0437566563,0.0257475786,0.0053806747,0.0455205776,0.0363595635,-0.044923123,0.0043706871,0.0318928547,-0.0537996329,0.0131440675,0.0039617131,0.0000937417,0.0003567409,0.0108822631,0.0282796603,0.054197941,-0.0367294177,0.0078807501,-0.0113303568,-0.0555066578,-0.0168710649,0.0933171883,0.0080301147,0.0141398301,0.0235142242,0.0163731836,0.0233435221,-0.0193889216,0.0074113193,-0.029303873,-0.0048401179,-0.0606561713,-0.0283081103,0.0260889828,0.0008970755,0.0632736087,-0.013883777,0.0036487589,0.0264730621,0.0141042667,0.0318359546,0.0243108347,0.0420780852,0.0374975763,-0.0021355553,0.0090614399,0.0023044792,0.0003133985,0.0329170674,0.0186918881,0.0006494684,-0.0114157079,0.0137272999,0.0195596237,-0.1149963662,0.004637409,-0.0179948546,-0.0222339574,-0.055421304,0.0042711105,-0.0434152521,-0.0239836555,-0.0036949909,-0.0407124683,-0.013222306,0.0489346236,0.0108182505,-0.009345944,-0.0188625902,-0.010106991,0.0027916918,-0.0087271482,-0.0450084731,-0.0134854717,0.0254488494,-0.0384648889,0.0437282063,-0.013222306,-0.0003249565,0.0071801599,-0.0917239711,-0.0322342589,-0.0291331708,0.027724877,-0.0346525423,0.0016278941,0.0179664046,-0.0336852297,-0.0233150721,-0.0194031466,-0.0127244247,0.0227887407,-0.0246095639,0.0255057495,-0.0050570518,-0.0077029355,-0.0754503608,-0.0448946729,0.0039368188,0.0226891637,-0.0006445785,0.0055478206,-0.0003938597,0.0089760888,0.017041767,0.0434437022,-0.0019061742,0.0285072625,-0.0256480016,-0.0106190974,0.0102990307,-0.0175111983,-0.0911549628,0.0137486374,-0.0260889828,-0.0378958806,-0.015391646,0.0383510888,-0.0156334732,-0.004996595,0.0095450962,-0.0087555991,-0.0098011494,-0.0235711243,-0.0943413973,0.0270136185,-0.0106688859,0.0109747276,-0.0796610117,-0.0157899503,-0.015405871,0.0305841397,-0.0043920246,0.0311815962,-0.0127955507,0.0257049017,0.0281089582,0.0333153754,-0.0141469426,-0.0333438255,0.0339981839,-0.0145594729,-0.0252639223,0.0112734558,0.0181797817,-0.0319497548,0.0711828023,0.005842993,0.0182935838,-0.0168995149,0.0059034503,0.0120487288,-0.0482802652,-0.0004356462,0.0426186435,0.0081937043,-0.018634988,0.0564170666,-0.0017141344,0.0135779353,-0.0244246367,-0.0024929629,0.0349939466,0.0350223966,-0.0358759053,0.0399727598,0.0118282381,-0.0089334138,-0.0174827483,0.0420496352,0.0096731232,-0.0160175543,0.0365587138,-0.0486785695,0.0187630132,-0.0193604715,-0.0394606516,-0.0150786918,0.0106119849,-0.0007543791,-0.0004863234,-0.0265299622,0.0115223965,-0.0035847456,0.007766949,0.029446125,-0.0140900416,-0.0013398342,0.0109391641,-0.0036772094,-0.0114014829,-0.0352499969,-0.0091681294,-0.00609549,0.0279524811,-0.0363026634,-0.0040719579,0.0121625299,0.0064368946,-0.0245099869,0.0371277221,-0.0255341996,0.0315230004,0.0162878316,0.0361604095,-0.0339981839,0.0008779604,-0.0068458682,-0.0478819609,0.0112450058,-0.0033891494,-0.0031597684,-0.0027828009,0.0173404962,0.0675411597,0.0378674306,-0.0060030264,-0.0006005694,-0.0286068395,0.0029303874,-0.0075180084,-0.0149222147,-0.0160033293,-0.003277126,-0.0233719721,0.0303565357,0.0032611229,-0.058664646,0.0204984862,0.0126461862,0.0106688859,-0.0054375753,-0.0136348363,-0.0087058106,0.0301289335,-0.0299013313,-0.0048365616,-0.0208256654,0.0391761474,-0.0167572629,-0.0351077467,-0.0371277221,-0.0285926145,-0.0471706986,0.0085493336,0.0071197031,-0.0155907981,-0.0236707013,0.0086986981,0.0452360772,-0.0094881961,0.006963226,0.0265157372,-0.0080514522,0.0192182194,0.0274545997,0.0160886794,-0.0186065361,0.0104128327,-0.0276537519,0.054226391,-0.01312273,0.0119278142,-0.0260605309,-0.0259894058,-0.0763607696,0.0110458527,0.0223619845,0.0363026634,0.0126959737,0.0313238502,-0.0331731215,0.0167003628,-0.0055478206,0.0188199151,-0.0339697339,-0.0076033594,-0.061851088,0.0259894058,0.0249651931,0.008471095,-0.0683377683,-0.0147230625,0.007674485,-0.0322058089,0.00359008,-0.0339128301,0.0270562936,0.0541125871,0.0310393441,0.0013825098,-0.0405133143,0.044780869,0.0415659808,-0.0196876507,-0.0251501203,0.018521186,0.010007415,0.015533898,0.0171840191,-0.0218072031,-0.0253208224,-0.0057860925,0.010092766,-0.0651513264,0.0512675531,0.0242966097,0.0096091097,0.0178241525,0.0621924922,-0.0308117419,0.0091610169,-0.0595750585,-0.0008139471,0.0255768765,0.0370423719,0.0095522087,-0.0068174182,-0.0518365614,-0.0069561135,0.0599733628,0.0488777235,0.0376113802,0.0627046004,0.0827336535,0.0119633777,0.0163020566,-0.0140331415,0.0341404341,0.0012722646,-0.0167430378,0.0088694002,-0.0512675531,0.0101283286,0.0485363193,-0.0234146472,-0.0008832949,0.0000765715,0.0243392847,0.0315230004,0.0440696105,0.009303268,0.051210653,-0.0218072031,0.0165296607,0.013841101,-0.0417651311,0.0145239094,-0.0353638008,-0.0469715483,0.0150644667,0.0228598658,-0.0223477595,-0.003611418,-0.009317494,-0.0270562936,0.05883535,0.0030690827,0.0041537527,-0.0559049621,0.0199863799,0.0347663425,0.0656634346,0.0609406754,-0.0325756632,-0.0117073236,-0.0376967303,-0.0631598011,0.0026512181,0.064923726,0.0226038136,0.0202566572,0.0337990299,-0.0130089279,-0.0342542343,0.0047725481,0.020142857,-0.0242539346,-0.0401719101,0.0360750593,-0.0023435985,-0.0002638327,0.0051886346,0.0062804176,-0.027724877,-0.0102065671,0.0196165238,0.0208114404,-0.0444110148,-0.0078309625,-0.0097869243,-0.0347378924,-0.0178952776,-0.0016554554,0.0198725779,-0.0142891947,0.0008423975,0.0451222733,-0.0122549934,-0.0139762405,0.0338274799,-0.0117784496,0.0141042667,-0.0174258463,-0.0321204588,0.0061417217,-0.006237742,-0.0268855914,-0.0044524819,-0.0211386196,0.044723969,-0.0089049637,0.0190759674,0.0003614085,0.0297021773,-0.0051495153,-0.030868642,-0.0399158597,-0.0516374074,0.0368147679,-0.0281089582,-0.0183789339,0.0027401254,-0.0179237276,-0.0703861937,0.0192466695,-0.0543686412,0.0777832866,0.0281943083,0.0267291144,-0.0266153142,0.0343395881,-0.0214088969,0.0282938853,0.0166719127,0.0119989403,0.0946259052,-0.0173689462,-0.0837578624,0.0078451876,0.0075606839,-0.0119349267,-0.0378674306,-0.0145310229,0.020171307,-0.0343680382,0.035648305,0.0467439443,0.0188625902,-0.0014731953,0.0080870157,-0.0172978193,0.0024236152,-0.0167430378,0.0080443397,0.0076318095,0.0353922509,-0.0020982141,-0.0359897092,-0.0140046906,-0.0101994546,0.0198583528,0.0019488498,0.0095877722,-0.0400296599,-0.0348232426,-0.0349654965,0.0138126509,0.0271843206,-0.0067356233,-0.0351077467,-0.0009806484,-0.0310962461,-0.0119349267,0.0114512704,-0.0093103806,-0.0116077475,-0.0139904656,-0.0406840183,0.0032913513,-0.0096304473,-0.0461180359,-0.0091539044,0.0149933407,0.0191186424,0.0013380561,0.0253634974,0.0176961254,-0.0249225181,0.0086417971,0.0042391038,-0.0202566572,0.0160886794,0.0633874089,0.0227033887,-0.0227033887,0.0543401912,-0.0068565374,0.0240832306,0.0132863196,0.0228456408,-0.0047120913,0.0050357142,0.0138055384,-0.011600635,-0.0102563556,0.0018528298,-0.0348801427,0.047967311,0.0584939457,-0.0328317173,-0.0398874059,0.0074255443,0.0145808104,0.0226891637,-0.0113019068,-0.0176676754,-0.0081510283,0.0305272378,-0.0186918881,0.005370006,-0.018435834,-0.0048756809,0.0122052049,-0.0254630744,-0.0021764527,-0.0019132869,0.0157615002,-0.0196734257,0.0103488192,0.010092766,0.0144243333,-0.0041644219,0.0377820805,-0.0047014225,-0.0085351085,0.0007152599,0.0363595635,0.0169706419,-0.0068636499,0.037099272,-0.0499019362,-0.015434321,0.0252496973,0.0086275721,0.0011184548,0.0195027236,-0.0172551442,-0.0477112569,-0.0015825514,0.0071161469,-0.0327179171,0.0074824453,-0.0391476974,0.0241401326,0.0129591404,0.0021977904,-0.0372415222,0.0038265737,-0.0204273593,0.0142536312,-0.0203562342,0.0409116223,0.0320351087,-0.0164727606,-0.0438989103,0.0093388315,-0.0046694158,0.0484794155,-0.0357052051,0.0513529032,-0.0225753617,-0.0156477001,-0.0079020876,0.0226607136,0.0425901935,0.0222055074,0.0015914422,0.0070734713,-0.0433868021,0.0250647683,0.0444394648,0.0150502417,-0.0066751661,0.0190190673,-0.0079020876,-0.0036807656,-0.0127884382,0.024822941,-0.0217645261,-0.0267291144,0.0363026634,0.0134570217,0.0076531474,-0.0131298425,-0.0276679769,0.0258187037,0.0258613788,0.0306694899,0.0331731215,-0.0487639196,-0.0301289335,0.0167999379,0.0414806269,-0.0069810078,0.0281374082,-0.0238414034,-0.0151498178,-0.0433868021,0.0000446204,0.0396598056,0.0181513317,-0.0068707624,0.0064191129,-0.0248798411,0.0858062953,0.0133289946,0.0261032078,0.0071232594,0.0281374082,-0.0193035714,-0.0348801427,0.0214515738,0.0497596823,-0.0490768738,-0.0036700966,-0.0489915237,-0.0067178416,-0.0028877119,0.0168568399,0.0182651319,0.0302996356,0.0302711856,-0.0456628315,-0.0046658595,0.0053095487,-0.0127742123,-0.0219636802,0.0039937194,-0.0276537519,-0.0110387402,0.0025943173,-0.0074184318,-0.0577257834,-0.0173404962,-0.0189479403,-0.0380665846,0.0301004834,-0.0339412838,-0.0101852296,0.0279809311,-0.0026476618,0.0212239698,0.0028450361,-0.0475405566,-0.0021533368,-0.0187630132,0.0259751808,0.0149933407,0.0210105926,0.0033091328,-0.0063124243,-0.0176392253,-0.024680689,-0.0142251812,0.003118871,0.0107897995,-0.0386640429,0.013136955,0.0035278448,-0.01694219,0.029446125,0.03385593,-0.0120629538,0.0162309315,0.0065506957,-0.0195738487,-0.0252354704,0.0136561738,-0.0284930374,-0.0615096837,-0.0215084739,-0.023286622,-0.012404358,-0.0483371653,-0.0233719721,0.0268571414,0.0226607136,-0.0059212316,-0.0342257842,0.0072014979,0.0221770573,0.0078949751,-0.0260605309,0.018663438,0.0134712467,-0.0157899503,0.0125750601,0.0176249985,-0.0150786918,0.0191897694,0.0262596849,0.0168852899,0.0483656153,-0.0110102901,0.0198156778,-0.010782687,0.0162451565,0.0202139821,0.0240547806,0.0080087772,-0.0040470641,0.0240690056,0.010092766,-0.0071019218,-0.0226607136,-0.001083781,0.0194315966,0.0450653732,0.0004011946,-0.0116646485,0.0109747276,0.030868642,0.0176676754,0.0140331415,-0.0069810078,-0.0168426149,-0.0234573241,-0.0422772393,-0.0171128921,0.0489346236,0.0020768763,-0.0211101696,-0.04014346,0.0017185797,0.0189479403,-0.0283507854,-0.0371277221,0.0198725779,0.013926452,-0.0185069609,-0.0521210618,-0.0115650725,-0.0120914038,-0.00580743,0.0288486667,0.0090401024,0.0266295392,0.0091183409,0.00392615,-0.0209252406,0.0438135564,-0.0241401326,-0.0122621059,-0.0280947331,-0.0191897694,-0.0131298425,0.0177530255,-0.0248513911,-0.0015434321,0.020085955,-0.0030637484,-0.0137486374,0.0105621973,0.0540841371,0.0133858956,-0.029332323,-0.0102705806,0.0282938853,0.0390907973,0.0141896177,0.009345944,-0.0283081103,-0.0106973359,0.0170844421,-0.0275968518,0.0229025409,-0.0162309315,0.0070094578,0.0016314505,-0.0291189458,-0.0445532687,-0.0352499969,0.0177957006,0.0061168279,0.000312954,-0.0242397077,0.0175823234,0.0251785703,0.016927965,0.0167714879,0.0004385357,-0.0094312951,-0.0371561721,-0.0249509681,-0.0318644047,0.0033606989,-0.020057505,-0.001397624,0.0381803848,0.0125323841,-0.0082861679,0.0217076261,-0.0141469426,-0.0126248486,-0.0177814756,0.0145381354,-0.0163305085,0.0361888595,-0.0212950967,-0.0068707624,0.0310108941,0.0399158597,0.013954903,-0.013094279,0.0063444306,-0.0223193094,-0.006216404,-0.0097442493,-0.017155569,-0.0292754229,0.0214231219,-0.0128951268,-0.0122549934,0.0273976978,-0.0098082619,-0.0137415249,-0.0382941887,0.0228171907,-0.0192608945,-0.0099718515,0.0315514505,-0.0033340268,0.0423056893,-0.0051921909,0.0098793879,0.0297021773,-0.0116646485,-0.0028397017,0.0177957006,-0.0000362298,0.0034158216,0.0345387384,-0.0030459668,0.0353638008,-0.0179948546,-0.0045129387,0.0070450208,-0.0217503011,-0.008442645,-0.0344533883,-0.0029214965,0.0091539044,0.0323480628,0.0286352895,-0.0172124691,0.0108893765,0.0234288741,-0.0176107734,0.0194315966,-0.0257475786,0.0160602294,0.0176392253,-0.0261743329,0.0104626203,-0.0110814162,0.0256764516,0.0265299622,-0.0034353812,-0.0067320671,0.0002464957,0.0015478776,0.0248371661,0.0090756658,0.0299866814,0.0029321655,0.0063088676,-0.0107755745,-0.0229452178,0.0090258773,0.0036398682,-0.0009779813,-0.0475974567,0.0252212454,-0.0149506656,0.0211955197,-0.0104270577,-0.0168568399,0.0067996364,-0.015405871,0.0341404341,0.0207972154,0.0051103961,0.0305556897,0.0429031476,-0.0267006643,-0.0025249696,-0.0201144069,-0.0303280856,0.0014180727,0.0035047289,0.0054091252,0.010078541,0.0204558112,0.009345944,0.0133716706,-0.0142963072,-0.0583801419,-0.0042070975,0.0536858328,0.027924031,0.0137984259,-0.0359897092,0.0137842009,-0.0242681596,0.0229736678,-0.005384231,-0.0269282684,-0.0352499969,0.00226536,0.0299297813,-0.0237276014,0.0269993935,-0.0199294779,0.0485932194,0.0379527844,-0.0296737272,-0.0344249383,-0.0112307807,-0.0189906172,0.0235568993,0.027838679,-0.0028912681,0.0151782678,-0.0101283286,-0.0073473062,-0.0374122262,0.0063622124,0.0177103505,-0.0204558112,-0.0043849121,0.0135068092,0.0315799005,0.0132151935,-0.0117002111,-0.0038159047,0.0119918277,0.0033464739,-0.0009922064,0.002156893,0.0109818401,0.0097157983,-0.0011780228,-0.0255626496,0.0306694899,0.0137842009,0.0045627267,-0.0087342616,-0.013898002,-0.0171271171,-0.0315514505,-0.0174116213,-0.013954903,-0.0269567184,0.0017541427,-0.0207972154,0.0203704592,-0.0314945504,0.0168283898,-0.0286637396,0.0287348665,-0.0173120461,0.0584939457,-0.0088622877,-0.0163020566,0.029332323,-0.0124825966,0.0018314921,-0.0008664024,-0.0062341858,0.0239978805,-0.0456059314,0.0289197937,-0.001698131,0.0217360761,0.0049503632,0.0143247573,0.0289197937,-0.0004320899,0.021579599,0.0071659349,-0.0093530566,0.0124114705,0.0323765129,-0.0109462766,-0.0301289335,-0.0233577471,0.023059018,-0.0023684925,0.0334007256,-0.0169848669,-0.0126248486,-0.0028094733,-0.0166719127,-0.0168852899,-0.0013736191,0.0024591782,0.0028059171,-0.021636501,0.0323765129,0.0229736678,-0.0094668576,0.0124328081,-0.0017621443,0.0240547806,0.0189052653,0.0363311134,-0.0250505432,0.0143176448,-0.0021800089,0.0025125225,-0.0230305679,0.0132436436,-0.0217360761,0.0209679175,0.0265299622,-0.0176107734,0.0165154357,-0.0081439158,0.0049432502,-0.0273265727,0.0024147246,0.0357336551,-0.0183647089,0.0229736678,0.0005134401,-0.0032006658,-0.0002502743,-0.0239978805,0.0324049629,-0.0128737893,0.0079163136,0.0011851355,-0.0130444914,0.0081510283,0.0259325057,0.0062128478,-0.0105124088,-0.0266437642,-0.0092392555,0.0175680984,-0.0133645572,0.029417675,0.0254488494,0.0595750585,-0.0076389224,0.0188341402,-0.0023773834,0.0475690067,0.0279951561,0.0056225029,0.0257618036,-0.0117571121,0.0263734851,0.0139762405,-0.0089120762,-0.005842993,0.0070094578,0.0012820445,-0.0121838674,-0.024581112,0.0223619845,-0.0028325892,0.018649213,0.007766949,-0.0301004834,0.0148084136,0.0252212454,0.0001777036,-0.0082577178,-0.0123047819,0.0028966025,0.0213093217,0.006152391,-0.0052241976,0.0075535714,0.0211812947,0.0137557499,0.0049254689,0.0035438482,-0.0266437642,0.0584370419,0.0133574447,0.0017603661,0.0052455356,-0.0182082318,-0.0234999992,-0.0029535033,0.0145808104,-0.0257333517,0.0147088375,-0.021650726,-0.0307263918,0.0216080509,0.0058003175,0.0062946426,-0.0078523001,-0.0066787223,0.0151782678,0.0025445293,-0.0056722909,0.0249794181,0.0164016336,0.003879918,-0.0187345631,-0.0210674927,-0.0136419488,0.0147799635,-0.007759836,0.0027294566,0.0007214834,-0.0150786918,-0.0163020566,-0.0056580659,0.0471706986,0.0390623473,0.0169706419,-0.0222481824,-0.0202282071,0.0166576877,-0.0161171295,-0.0271131955,-0.0228171907,-0.021650726,-0.0321773589,-0.0102350181,-0.0004380911,0.0124114705,0.0007072582,0.0031455432,-0.0280520562,-0.0542832911,0.0182366818,0.0002787246,-0.0072370609,-0.0064546759,0.0144670093,0.0142536312,0.0436997563,0.0252639223,0.0207829904,-0.0251216702,-0.0190475173,-0.0244815368,-0.0119207017,-0.0487923697,-0.0273265727,0.0071303719,-0.0023400423,0.0234715492,-0.0397736058,0.0018883928,0.0134285707,0.0337421298,0.0114797214,0.0224473365,0.0038941433,0.012361682,0.0140829291,-0.0124399206,-0.038720943,-0.0302427355,0.0280520562,-0.0101923421,0.0160460044,0.0009842047,0.0197445508,-0.0035883018,-0.0143745458,0.007674485,-0.000319622,-0.0156761501,-0.0152351689,0.0258613788,-0.0092677055,-0.0032611229,-0.0210390426,-0.0183078088,-0.0088124992,0.0122621059,-0.0162878316,0.0162167065,0.0192324445,-0.0101852296,0.0030850861,0.0002378272,0.0069454447,-0.0563601665,-0.0224331114,-0.0166434627,0.0141682802,-0.0376113802,0.0075393459,0.004672972,0.0173973963,0.0295599271,0.0246522389,0.0418504812,0.0114299329,-0.0409685224,0.0080158897,0.0036594279,-0.0056545096,0.0097513618,-0.0112592308,-0.0093886191,-0.003805236,0.0316083506,-0.0018421609,-0.0163589586,-0.0195880737,-0.004939694,-0.0218356531,0.0236564763,-0.0236707013,-0.0012367017,0.0164727606,-0.001854608,-0.0039830506,0.0408262685,-0.0206265133,-0.0289340187,-0.004672972,-0.000861068,-0.0211243946,0.0194031466,-0.0229878929,0.0068458682,-0.0075464584,0.0032949075,0.0079234261,-0.0046907533,0.0177957006,0.0686222762,-0.0064617884,-0.0470568985,-0.0330308713,0.0129449144,-0.0210674927,0.0109533891,0.0141256051,-0.0029944007,-0.0048827934,0.0038159047,-0.020142857,0.0260747578,0.0045378329,0.0082008168,-0.0021231084,0.0057505295,0.0057114102,-0.0069916765,-0.0006552474,-0.023300847,0.0102136796,0.0151213678,-0.0223050844,-0.0456912816,0.018521186,-0.0164727606,0.004313786,0.0145808104,-0.0060670399,-0.0010704448,0.0436428562,0.0330308713,0.018535411,-0.009289043,0.0001624782,-0.0107186735,0.0130658289,-0.0005498921,0.0128382258,-0.0348801427,0.0287775416,0.0001198027,0.0062235165,0.017141344,-0.0036949909,-0.0298444293,0.0183647089,0.023158595,-0.0302711856,-0.003879918,0.0053877872,0.03385593,0.0384079888,-0.0156334732,-0.0001533652,0.0330593213,0.0259040538,-0.018563861,0.0302142855,-0.0436997563,0.000783274,0.0036949909,-0.0440411605,-0.0049112439,0.040314164,0.0195453987,-0.0341119841,0.0029695067,-0.03385593,0.0280520562,-0.0022884761,0.0206549633,0.0159464274,0.0198725779,-0.0003053969,-0.0100998785,0.009260593,-0.0150217908,-0.0084213074,0.00766026,0.0174827483,-0.0305556897,-0.0146377115,-0.0462318398,-0.005117509,-0.0108467005,-0.0380950347,0.0073544187,-0.0142465187,0.0072406172,0.0234288741,-0.0001903729,0.0096588982,0.0375829302,0.0205696113,0.0109391641,0.0011015624,0.0037625604,0.0341119841,-0.0114370454,0.0144029958,-0.0427039936,-0.0205553863,0.0273834728,-0.0106831109,0.0277391039,0.0177814756,-0.0039154813,0.0165581107,0.04008656,-0.0328886174,-0.0127315372,0.0171982441,0.0137059623,-0.0089405263,-0.0145950355,0.0229452178,-0.0126675237,0.0357052051,0.0080230022,0.0158753023,0.0003040633,0.0113588069,-0.0404564142,-0.0018955054,-0.044780869,-0.0261458829,-0.0051993039,0.0004912133,0.0138339885,-0.0105052963,-0.0124683715,0.0173547212,0.0060670399,0.0206976384,-0.0035954146,0.0258187037,-0.0056900722,0.0232439451,0.0015203162,0.0385502391,-0.0422772393,0.0148937646,-0.0071552661,-0.0096873483,-0.0049930387,-0.0210532676,0.0323765129,-0.0066218218,0.0080656772,-0.0031775499,0.0313238502,0.0353353508,-0.0218783282,0.0194173716,-0.0113445818,-0.0045485017,0.0242254827,0.0166007858,-0.0234999992,-0.0201144069,-0.0192182194,-0.0199152529,0.0119562643,-0.0109036015,-0.0115935225,0.0167003628,-0.0024591782,0.0175538734,0.0102563556,-0.0169848669,0.030868642,0.0261458829,0.0120131653,0.0002827255,0.034083534,0.0084213074,0.0187061131,-0.0081154658,0.0598595627,-0.0394037515,0.0402572639,0.0210248176,0.013983353,-0.0199721549,0.0316083506,-0.0096233347,-0.0274830498,0.0097442493,-0.0095450962,0.0014829751,-0.0337136798,0.0561325662,-0.0123118944,0.0023827178,-0.0083715189,-0.0186776631,-0.0050392705,0.0168852899,0.0078309625,0.0312100481,-0.027924031,0.0294745751,0.0360466093,-0.0249225181,0.00179504,0.0171128921,0.0400012098,0.0072121667,-0.0134925842,0.0195880737,-0.0298728794,0.0000042787,0.0114654964,0.0256906766,-0.0031224273,-0.0094810836,-0.0028005824,0.0143958833,0.0182224568,-0.0320066586,-0.0221628323,-0.0348232426,0.0202851091,-0.0103914952,-0.0137699749,0.0140758166,0.0182082318,-0.0096588982,0.0580387376,0.0162451565,0.0174685232,0.0085493336,0.0106333224,0.000764159,-0.0206122883],"56":[0.01900943,-0.0009787933,0.0517843105,-0.0245811604,0.0593367815,-0.0264906529,-0.0531808063,-0.0056999791,-0.0275451485,0.0158744417,0.0115424581,-0.0157034434,-0.0368218645,-0.0274026506,0.0593367815,-0.0162021909,0.0094477152,-0.0276306495,-0.0540358014,0.0016797126,0.009782589,0.0202776752,-0.0007018099,-0.0126397042,-0.0057890415,-0.0240539126,-0.0145349465,0.0340003744,0.0122050801,-0.0862406865,0.0038011735,-0.0408688523,-0.0411538482,0.028528396,0.017384937,-0.024011163,0.0309223868,0.0022105232,0.0165441893,0.012311955,0.0016636815,0.0317773819,0.0136657003,0.0526678078,0.0046526082,-0.0012816046,0.0039009233,-0.0175986849,0.0082364697,0.044032339,-0.0729027316,0.015503943,-0.0248376597,-0.0356818698,0.0274596494,-0.0141573232,-0.012974578,0.0209474228,-0.0125755789,-0.0015576974,-0.009661465,-0.0469108298,0.0122264549,0.0481078252,-0.0268611517,0.0504163168,0.0095403399,0.0078089712,-0.0351973698,0.0387883596,0.0410968512,0.0207479242,0.0016164784,0.0081082201,0.011962831,-0.01227633,-0.0459703319,0.0847016871,-0.011456958,-0.0218594205,0.0085570933,0.0012299486,-0.024011163,-0.0098680891,0.0030779887,-0.0424078442,0.0070644119,-0.0213036723,-0.0117277075,0.0351403728,-0.0171996877,0.0585387871,0.0043319841,0.0258066561,0.0308083873,0.048079323,0.0363658667,-0.0022051795,0.0056607919,0.0325468816,0.0003025887,-0.0271319002,-0.0389593579,0.0017999465,0.0702237412,-0.0117205819,0.0380473621,0.0139435744,0.0175986849,-0.0083433446,-0.0581112877,-0.0219876692,-0.0306658875,-0.0284998957,-0.0107515855,-0.0045813583,-0.0044459836,-0.012817828,0.0055432296,-0.0150621952,-0.0271034017,0.015503943,0.0206624251,-0.0006777631,0.0114142084,-0.0343138762,0.011456958,-0.0312928855,-0.075581722,0.0050159818,0.030010391,-0.0326608792,0.0660057589,-0.008685343,-0.0024794908,0.018396683,-0.0731307343,-0.0100818379,-0.0213891715,0.0260774046,0.0017144468,-0.0365368649,0.022130169,-0.0071819737,-0.0405838527,-0.0015861973,-0.0361093692,0.0381898619,0.0020804924,0.0091484664,0.0026219904,-0.0133379512,-0.0626997724,-0.0333163776,0.0275451485,0.0061773523,0.0109225847,0.0273598991,-0.0093764653,-0.0147201959,-0.0152901942,0.0511858128,-0.0123333298,-0.0109154601,-0.046055831,0.004271422,-0.0367648639,-0.0367363654,-0.0957596526,0.0147629464,-0.0233699139,-0.0282291472,0.0006644038,0.0412393473,0.0337153785,-0.0111505846,-0.021275172,-0.0339148752,0.0406408496,-0.0266331527,-0.0580257885,0.0488203205,-0.018154433,-0.0115709575,-0.0282718968,-0.0006710835,-0.0511858128,0.0308938865,0.0220304187,0.0349693708,-0.0520693101,0.0621867739,0.0179406852,0.0413818471,-0.0136585748,-0.0385888591,0.0156036932,0.034826871,-0.0358528681,0.0217169207,0.0531238057,0.0100034634,0.0708507374,-0.0042429222,-0.0000904538,-0.0025097721,0.0081723453,-0.0013653231,-0.044801835,-0.0363943651,0.0103810867,0.0089275921,-0.014492197,0.0065371636,-0.0320053846,0.0063198521,-0.0366223678,0.0139578236,0.0092339665,0.0114427079,0.004987482,0.0594507828,0.0186674315,-0.0296113919,-0.0402988531,0.0310363863,0.0560022965,-0.0131598264,-0.0244244114,-0.0021339296,0.0008362938,0.0019575865,-0.0176699348,0.0055574798,0.0195081793,-0.011179084,0.0074170977,-0.0093479659,0.0213464219,-0.0373348631,-0.0136443255,-0.0059386659,-0.0354538709,0.001810634,0.0041716723,0.0216314215,-0.0294973925,-0.0400423519,-0.0015790723,0.0593367815,0.0207051747,-0.0428068452,-0.0126539534,-0.0366508663,0.0020947424,-0.0420373455,-0.006957537,0.0084644686,0.0303238891,0.0135659501,0.0358243696,-0.0348553732,-0.008300595,0.0090130921,-0.0476803258,0.0094833402,0.028371647,-0.0489058197,0.0023743976,0.0250086579,0.0778047144,0.053779304,0.0138794491,-0.0334588774,-0.0093479659,0.0035286434,0.0152331945,-0.0336583778,-0.0280723982,-0.0115353325,0.0004499866,-0.0188526809,0.0045599835,-0.0092909662,0.0262199044,-0.0112004587,0.0257211551,0.0230136663,0.0039650481,-0.0387598574,-0.004542171,-0.0029461768,0.0095332153,-0.0095545901,0.0207906738,0.0340003744,0.0092125917,0.0343138762,-0.0537223034,-0.0594507828,0.0163019411,-0.0006140837,-0.0209474228,-0.0176271852,0.0100747133,0.0221586693,0.0037049865,0.0036942989,0.0091484664,0.0063554766,0.0322333835,0.0145278219,0.0064587886,-0.0259776544,0.0091342162,-0.0353968702,0.0775197148,-0.0393013544,0.0259919055,-0.0594507828,-0.0619017743,-0.0491338186,-0.0105378367,0.0208191741,0.0511288121,-0.0116208326,0.0367363654,0.001441026,0.0025543033,0.0028179272,-0.0171711873,-0.0268041529,0.0122692054,0.0085855937,-0.0183254331,-0.0476803258,0.0029782392,-0.0313498862,-0.0489343219,0.0271889009,-0.0213749222,-0.0175131857,-0.0505588166,0.0056643542,0.0635547638,0.0193514284,-0.0174134355,0.0040469854,0.0469393283,0.0041004224,-0.0086283432,-0.0361663662,0.0034573935,0.0238116626,0.0254504066,-0.0058959159,-0.0331168771,-0.0278443974,-0.0503308177,0.0083860941,-0.0299533904,0.0261771549,-0.022514917,0.0054363552,0.0094334651,0.0177981853,-0.0402988531,0.0143140722,-0.0404698513,0.0093907155,0.0140433237,0.0128677031,0.0057747914,0.0038652983,-0.041296348,-0.0182541832,0.0686847493,0.0489913225,-0.0060882904,0.0430633426,0.0342283733,0.0058211037,0.0164586902,-0.0163589399,0.0145919463,0.0319768824,-0.034285374,0.0398998559,-0.0632127672,-0.0232844148,0.0072959731,-0.0005161153,-0.0214176718,-0.0224721674,0.013323701,0.0128890779,0.0232844148,0.0205626749,0.0569712929,0.02190217,0.0303523894,0.0137369493,-0.0403843522,0.0037797987,0.0010108557,-0.0073458483,0.0150621952,-0.0131242024,-0.0052653556,-0.0070287869,0.0043996712,-0.0003451159,0.0470533296,-0.0166296884,0.0286423955,-0.0260774046,-0.0083504692,0.055090297,0.0391873568,0.0611037761,-0.0005067638,-0.0188099314,-0.0342568755,0.0177981853,-0.0185534321,0.0742707253,0.0625857711,-0.0093693407,-0.0215174221,-0.0123048304,-0.0149339456,-0.0036586742,0.0607047789,-0.0318913832,-0.0283146463,0.043490842,0.0055859797,-0.0564867929,0.0216741711,0.0018052902,-0.0144280726,-0.0086069684,-0.0007815206,0.0182826836,-0.008143845,-0.0295258928,-0.0313498862,-0.0518413112,-0.0164586902,0.0012700266,0.0498463176,-0.0002932372,-0.0597927831,0.0019736178,-0.0444313362,-0.0493333191,0.024239162,-0.0351688713,0.0187956821,-0.0376483612,-0.0331738777,0.0356248692,-0.0290698931,0.0222014189,0.0276448987,-0.0378478616,0.0452863351,-0.026020404,0.0108584603,-0.0121623306,0.0104594622,0.0198929273,-0.0162734408,-0.0320053846,-0.0438328385,-0.0077305967,0.037249364,-0.0073529729,0.0158031918,-0.0151049448,-0.0297253914,-0.0156464428,-0.0332023799,0.0474238247,0.0055254172,0.0403273515,0.0185106825,-0.0195366777,-0.0175701864,0.0108940853,-0.0106945857,0.0063483519,0.0897176713,-0.0172851868,-0.0592797846,0.015503943,-0.0742707253,-0.0418948457,0.0010349024,0.0059066033,0.0130600771,-0.049960319,0.0218736697,0.0608187765,-0.0096329646,0.0145919463,-0.004951857,-0.0102813374,-0.000581576,-0.0323473811,-0.0177981853,0.0003415534,0.0339148752,0.0579687878,-0.0551187992,0.0048770448,0.0153329438,0.0139649492,-0.0032454256,0.0151619446,-0.0295828916,-0.0442318395,-0.0140646985,0.0197361782,-0.0199356768,-0.0233129151,-0.0421513468,-0.0218166709,-0.0232844148,0.0019522428,0.0126325786,-0.0374488644,-0.028371647,0.0101602124,-0.0365653671,0.0045849206,-0.0257639065,-0.0473953262,-0.0563157946,0.0469108298,0.0137298247,0.010673211,0.014577697,0.0304093882,-0.021503171,0.017299436,-0.0004720295,-0.0328603797,-0.00206268,0.0418948457,0.0078232214,-0.0220019203,0.0165299401,-0.0139364488,0.0234411638,0.0345988721,0.0267186519,0.0283858962,-0.0194511786,-0.0007917627,0.0119770812,0.0033594251,0.0342283733,-0.0048912945,0.0032632381,0.0047167325,-0.00136087,-0.0526393056,-0.0208476745,0.0316633843,0.0053009805,-0.0073957229,-0.0032988628,0.027659148,0.0269324016,0.0259491559,0.002288898,-0.0304093882,-0.0179264341,0.0098965885,-0.0339148752,0.0137369493,-0.0096828397,0.0114640826,-0.0289273933,-0.0008118017,-0.0026433654,0.0125185791,0.0299533904,0.0086924685,-0.0062949145,-0.009119967,-0.0086283432,0.0177126843,0.0161024407,0.0151904449,-0.0014018386,-0.0244386606,-0.0217169207,0.0133593259,0.0194369294,0.0124330791,0.0006287789,-0.0158316921,-0.0415528491,0.0371638648,0.0046454831,0.0049376069,0.0529243052,-0.0190806799,0.0371068642,-0.0137796998,-0.0065086638,-0.0394723564,-0.0189381801,0.0003733932,-0.0245526601,-0.0144280726,0.0222441684,-0.0184394326,-0.0208619237,-0.0135232005,-0.0006759819,-0.0383038595,-0.0042037345,0.0113500832,0.0046846704,-0.0377623625,-0.0391873568,0.0117562069,-0.0032240506,0.0127679529,0.010010588,0.001678822,0.0169431884,0.0409543514,-0.0001506264,0.0461983308,-0.0141715733,-0.0088919671,0.0360238664,0.0296398923,-0.0105307112,-0.0174704362,0.0245384108,-0.0187956821,-0.0182256829,0.0540928021,-0.0086140931,0.0047915448,-0.0057676663,-0.023768913,0.0438898392,0.0226146672,0.0252651572,0.0079087215,-0.0306943879,-0.0170286875,0.003854611,0.0408973508,-0.0493903197,0.02992489,-0.0185676813,0.0089917174,-0.0386743583,0.0064409766,0.061331775,0.015660692,0.0075168475,0.0221016686,-0.0206624251,0.0536653027,0.0015603693,0.0215459205,0.0115567073,0.0060669151,0.0069076624,-0.0257781558,0.0081010954,0.0671457574,-0.0538363047,0.0255216565,-0.0628137738,-0.0148626957,-0.0078588463,-0.0087209679,-0.0093408404,0.0415528491,0.0318343826,-0.0128890779,0.0016654626,0.0072888485,-0.0166581888,0.0013769012,-0.0041039851,-0.007271036,0.0072567859,0.0262199044,-0.0376198627,-0.0171284378,-0.0074099731,-0.0000876149,-0.0438328385,-0.0231276657,-0.0275023989,0.0154896937,0.0079942206,-0.0323473811,0.0070359115,-0.0219876692,-0.0512713119,0.003444925,-0.0152616939,-0.0057249167,-0.0190379303,0.0230421666,-0.0317773819,0.0052724807,-0.0288133938,0.0127608282,-0.0478798263,0.014648946,-0.0512998141,-0.0426358432,0.0234839134,-0.0084715942,0.0169431884,0.0439753383,0.0155181931,-0.0412678495,0.0349123739,-0.0149909453,0.0078588463,0.0040291729,0.0233271644,-0.0338863768,-0.0245526601,-0.0005170059,-0.0365368649,-0.0043782964,-0.0361378677,-0.0013573075,0.0130173275,0.0046205455,-0.0091769667,-0.0213179216,0.0208191741,0.0194796789,0.0182826836,-0.0324898809,0.0042108595,0.0134305758,-0.0080369702,0.0045029833,0.0070074117,-0.0281436462,0.0124473292,0.0047844201,0.004264297,0.0294403918,-0.0157034434,0.0191234294,-0.0287848953,0.0013581981,0.0194796789,0.0208619237,-0.0205341745,0.001097246,0.0114712082,-0.0242961608,-0.037790861,-0.0137084499,0.005867416,-0.0130315777,0.0398428552,0.0249089096,-0.0028642395,-0.0059921029,0.0168719385,-0.0031617072,0.0306658875,-0.0171284378,-0.0158459414,-0.0137084499,-0.022130169,0.0114142084,0.0107872104,0.0068150377,-0.0145206973,-0.0100390883,-0.0270891506,-0.0306373872,-0.0200069267,-0.0305233877,-0.0045279209,-0.027744649,-0.0035215183,-0.0736437291,-0.0270464011,0.0425218455,-0.0045101084,0.0168861877,-0.0026291155,0.0249089096,0.000042388,-0.0018400245,-0.0030120828,-0.0012352924,-0.0321478806,-0.032974381,-0.0043711714,-0.0076237223,-0.0250941589,-0.0261914041,0.0297253914,0.0219876692,0.0231561661,-0.0035375496,0.0059244158,-0.020733675,0.0512143113,0.0162021909,-0.0185534321,-0.0086140931,0.0316633843,0.0316918828,-0.026262654,0.0115210833,-0.0086425934,-0.0026843338,0.0253079068,-0.0048984196,0.0357958674,0.0008683562,0.0043177344,-0.025792405,-0.0133308265,-0.0444883369,-0.0161166918,0.0505873151,-0.046597328,0.039272856,-0.0250371583,0.0148484455,0.0411823504,-0.0196221787,-0.0068827248,-0.0103810867,0.0017411655,0.0072104735,0.0068435376,-0.0181686841,0.0340288766,-0.0273171496,0.0054791048,0.0027092714,0.005179856,-0.0313498862,0.0252794083,0.0205626749,-0.0470533296,-0.0146204466,-0.0063447892,-0.0070287869,0.0514138117,0.014456572,-0.0198929273,0.0275736488,0.0624147728,0.0312643871,-0.0043711714,-0.0060134782,-0.0027609274,0.0180689339,0.0084858444,-0.0142713226,-0.0299818907,0.0206624251,-0.0109012099,-0.0464263298,0.0057569789,-0.0077092219,-0.0284998957,-0.0114427079,0.0061167902,0.0161736906,-0.0058282288,0.0304663889,-0.0007873096,0.0037227988,0.0021962733,-0.019166179,0.0498178191,0.0125114545,0.013601575,0.0281008966,-0.0189809315,0.0310933869,0.0022123044,0.0110935848,0.0091840914,-0.0035500182,-0.0184821822,0.0023619288,0.0030370201,0.0085927183,-0.0149766952,-0.0061631026,-0.0094405906,0.0378193632,0.0156036932,0.0020163676,-0.0001506264,0.0311218854,-0.0111862095,-0.0109368348,-0.0204486754,0.0396718532,-0.0177126843,-0.0242961608,0.0374773629,-0.0461698323,0.0193371791,0.0345703736,0.0039721727,0.0086069684,-0.0130458269,-0.0108798351,0.058994785,0.0155466935,0.0223011691,-0.0076664719,-0.0091627166,0.0018845556,-0.0131527018,-0.0062414771,0.021431921,-0.0174134355,-0.0221586693,0.0222726688,0.0040505477,0.0348553732,-0.0079443455,0.0043284218,0.003562487,-0.0386458598,0.0444598384,0.0232701655,-0.0306088887,-0.0053900429,0.0514993109,-0.0141145736,0.0442888364,-0.0489628203,-0.0254931562,-0.0120768305,-0.0039436729,0.0178551842,0.0440608375,0.0294118915,0.0106660863,0.0191091802,-0.0296683908,-0.0271604005,0.0060455403,0.0188241806,0.0195794292,0.0122905802,-0.0195224285,0.0250371583,-0.0124972044,0.0408118516,0.0438328385,-0.0332023799,-0.00204843,0.0188241806,0.0325753801,-0.0416383483,0.0026059593,-0.0110793347,0.0428353436,0.0515563115,-0.0379048623,-0.0184536818,0.0050622942,-0.0270606503,0.0185819324,0.0088705923,0.0041823597,0.027659148,0.0039080484,0.000449096,0.0086995931,0.0254789069,0.0083575947,-0.0260489043,0.0304093882,-0.0181259345,0.0065621012,0.0060027908,-0.023384165,-0.0045350459,0.0284571461,-0.0040327352,0.0003324246,-0.0101103382,0.0147771956,0.0164729394,0.0048556696,-0.0149481958,0.0106589608,-0.0038225485,0.0098823393,0.0293548927,-0.0080369702,0.0064445389,-0.0170571879,-0.0158031918,-0.0306088887,-0.0188526809,0.0433768407,-0.0300388895,0.0216741711,-0.0088705923,0.0079728458,-0.0080298455,0.0158744417,0.0086639682,0.0200069267,0.0064801639,-0.0000888395,0.027901398,0.0223296676,0.0091627166,0.0141929481,0.0051905434,-0.0001303648,-0.0211896729,0.0036729241,-0.0137511995,-0.0170571879,0.0060348529,-0.0027751774,0.0532948039,0.0189951807,0.0218594205,-0.0137227001,0.0087993424,-0.0006109665,0.0172281861,-0.0064694765,0.0296968911,-0.0173564367,0.0010081838,-0.009191216,0.002493741,-0.0227429159,0.0078089712,0.0060811653,-0.0203346759,-0.0067687253,0.0126468288,-0.0154896937,-0.0097255893,0.0050622942,0.0351403728,-0.0035963305,-0.0211469233,0.0114355832,0.0290271435,-0.0012477611,-0.0028963019,0.0640677661,-0.0648087636,-0.0224009175,-0.0047630449,-0.0123547046,-0.0132952016,-0.0028856145,-0.0102457125,-0.0280723982,0.0285853948,0.0084787188,0.0139649492,-0.004987482,0.0049411696,-0.0171711873,0.0060562277,0.0580257885,-0.0087993424,0.0261201542,-0.0063590393,0.0029728953,0.0076450971,0.0028660207,0.0202491768,-0.026647402,0.0197504275,-0.011962831,0.0067437878,0.0159314424,0.0498463176,-0.0127252033,-0.0209331736,0.0178694353,-0.0053651053,0.0242819116,-0.0033362689,0.0048164823,0.0195224285,0.0471388288,-0.0003034793,-0.0025097721,0.0308938865,0.0359383672,0.0054363552,0.0279441476,0.0101530878,-0.0056073545,0.0211326722,0.0165441893,-0.0178409349,-0.0057997289,0.007716347,0.0108869597,-0.0089418422,0.0211041719,0.0157746915,0.0032774881,0.0290983934,0.028371647,-0.0270321518,-0.0123048304,0.0136158252,-0.0066511631,0.0171569381,-0.0004782639,0.0043818587,0.0055040424,-0.0025436156,-0.0216884203,-0.0111363344,0.0078160968,0.0474808253,0.0311503857,-0.0117419567,0.018781431,0.0631557703,0.0096115898,0.0105235865,0.0148484455,-0.0244529098,-0.0257211551,-0.0016271659,-0.0053259181,-0.0133094518,0.0416383483,-0.0233699139,0.0080155954,-0.0182684325,0.0258921552,0.0255216565,-0.0224864185,0.0022229918,0.0271319002,0.0011996675,-0.0152901942,0.0134305758,0.0311788861,0.0130387023,-0.0088278428,-0.0128962025,-0.0209759232,0.0138580743,-0.0437473394,0.0131455772,0.0114640826,-0.0184964314,-0.0351688713,0.01098671,0.0330028795,0.0036551117,0.0024153662,-0.0220019203,0.0145206973,0.0111933341,0.028286146,-0.0049803569,-0.0419803448,-0.0235124137,-0.0052867308,-0.0032436445,0.0370498635,0.0037121114,-0.0184821822,-0.0046704202,-0.0378763601,-0.0298108906,0.0092624659,-0.0127465781,-0.006373289,0.0022693041,0.0212609228,0.0395578556,0.0015835254,0.0281008966,0.0203631762,-0.0227144174,-0.0151476944,-0.0134020764,0.017142687,-0.0166154392,-0.0392443575,0.0350263715,-0.0236834139,0.0111719593,-0.0347983725,0.0117562069,0.0134020764,0.0211896729,0.0078588463,0.0227286667,0.023925662,0.0156464428,0.037249364,0.0059101661,-0.0387598574,-0.0407263525,0.0388168581,-0.0228569172,0.0074812225,-0.0046846704,0.0109439604,-0.0016316191,0.0358243696,-0.0057106665,0.0160454419,-0.0130600771,-0.0416668467,0.0250656586,0.0056607919,-0.0029408331,-0.0114427079,-0.0496753193,-0.0083433446,0.0087850932,-0.0299818907,-0.0008077939,0.0231561661,-0.0094192158,0.0243531615,0.017142687,-0.0060562277,-0.033743877,-0.0263196528,0.0039757355,-0.0058068535,-0.0425788425,0.0087993424,0.0255786572,0.0018898994,0.008143845,0.0359098688,0.0067936624,0.0018524933,-0.0242961608,-0.015660692,0.0216741711,0.0049803569,-0.0196079277,0.0053722304,-0.0054327925,0.0136087006,0.0190806799,-0.011456958,-0.0235694144,-0.0043391092,0.0039329855,-0.0026184279,0.0298678912,-0.0097327149,0.0036177055,0.0298108906,-0.0210044235,-0.0243389104,0.0422083437,-0.0267186519,-0.0349123739,0.0226289164,-0.0156321935,0.0153756933,0.0067936624,-0.0003281941,0.0426073447,0.0086995931,0.0102670873,-0.0027181776,0.001441026,-0.004595608,0.0620157719,-0.0151619446,0.0066547259,-0.0165441893,0.0296398923,-0.0185819324,-0.0099820886,-0.0040612351,0.0045243585,0.016130941,-0.011962831,-0.011962831,0.0410968512,-0.0158174429,-0.0265761521,0.0048984196,0.0062486022,0.0187529307,-0.006993162,-0.0070287869,0.0038439233,0.0153044444,0.0354538709,0.0218451694,-0.0170856882,0.0067687253,-0.0081010954,-0.0117847072,0.0166296884,-0.0094477152,0.0106518362,0.0191091802,0.0174704362,0.0052439808,-0.0199926775,-0.0017821341,-0.0257781558,0.009119967,-0.0177981853,-0.0229994152,-0.0310363863,0.0339148752,0.0060811653,-0.005685729,0.0198929273,0.0251654088,-0.0452008359,0.0217311699,-0.0135730756,-0.0131384516,-0.0163304396,0.0157319419,0.0013296983,0.0260489043,-0.0220874194,-0.0075097224,0.0036426429,0.009661465,0.0321193822,-0.0092980908,-0.0470248275,0.0234411638,0.0077590966,-0.0229851659,0.0092197163,0.0358243696,0.0003451159,-0.0446023382,0.0100034634,-0.0189809315,0.009782589,-0.0115282079,0.0149196954,0.0187244322,0.0334873758,-0.0103739621,0.0012646829,0.0018756494,-0.0082008447,-0.0177269354,-0.0089062173,-0.0180831831,-0.0117419567,-0.0368788652,-0.0303808898,-0.0141501985,0.0383893587,-0.0288988948,-0.0060384152,-0.0035143935,0.0018631807,0.0069361622,0.0343138762,0.0034591749,0.0041966098,0.0114427079,0.0077448469,-0.0060277279,-0.0207194239,0.0163019411,-0.0095260898,-0.0026130842,-0.0469678268,0.0196506772,0.0409543514,-0.0122905802,0.0238829125,0.0131598264,-0.0112717086,0.0122335805,0.0234839134,-0.0377623625,0.0140005741,-0.0007294192,0.0217596702,-0.020804923,-0.0455998331,0.0558597967,0.0036978615,0.0118203321,0.0106162112,0.0186389312,0.0262484048,-0.0061880397,-0.004271422,0.0082079703,-0.0237119123,-0.0103525873,-0.0080084708,-0.0161879417,-0.0334303789,-0.0325468816,-0.0113144582,0.0154896937,0.0083504692,-0.015275944,-0.0099037141,0.0086283432,0.014648946,0.0088207182,-0.0085570933,0.0225434173,-0.0065086638,0.002253273,0.0199071765,0.039044857,0.0272458997,-0.0264764037,-0.0002304484,0.0188241806,0.0042322343,-0.0147629464,0.0251511578,0.0111007094,-0.0174561869,0.021588672,-0.0046989205,-0.0038759857,0.0208761729,-0.0187529307,-0.0061274776,-0.0275593996,0.0046169832,-0.0073458483,-0.0045457333,0.0132382018,0.0191946793,0.0046205455,0.0110864593,0.0041787974,0.0038047361,-0.0263054036,0.031549383,-0.0007356536,0.0480223261,-0.020106677,0.0187671818,-0.0198929273,0.0215601716,-0.0085927183,0.0401278548,-0.0293548927,0.0422083437,0.0001767884,0.0082150949,-0.0093764653,0.0074740979,-0.010131713,-0.0089275921,0.0199214276,-0.0423508435,0.0082863448,-0.022600418,0.024395911,-0.0015461193,0.022130169,0.0050801062,-0.0176271852,0.001367995,0.0426358432,0.0097255893,-0.0142784482,-0.0134662008,0.0186816808,0.0311218854,0.007167724,-0.0383038595,0.0037869236,0.051983811,0.0018952431,-0.0032988628,0.0053936052,-0.0225861669,0.0247236602,0.0016725876,-0.0172139369,-0.0583677851,-0.0071784114,-0.0057035415,-0.0103169624,0.0090059666,-0.0257069059,-0.0017286967,-0.0361948684,0.030551888,-0.0134947002,-0.0249516591,0.0021125549,0.0333163776,0.0217169207,0.0466258302,0.0110437097,0.0286566447,-0.0224009175,0.017299436,-0.0063661644,-0.0002858896],"57":[0.0291631781,-0.0105038062,0.0220622104,-0.0201358106,0.0496645831,0.0170001369,-0.0467398278,0.0081907194,-0.0211482253,0.0040812981,0.0238479991,-0.0221043956,0.0019756155,-0.0300912242,0.0755374134,0.0325660184,-0.0139347678,-0.0469648093,-0.0502270348,0.0226527862,-0.0121981949,0.0127887707,0.0259150136,0.0257743988,-0.0122474097,-0.0069216848,-0.0177594479,0.0296975076,0.0232714843,-0.0689567104,0.014581589,-0.0391467139,-0.0594512597,0.0105389599,0.0254791118,0.0251697637,0.0260556266,0.0085984971,0.0069462922,0.0099624451,-0.0197702162,0.0192499477,0.0024378814,0.0178156924,-0.0087672332,-0.0296975076,0.0097726174,-0.0321160555,0.022329377,0.0543329418,-0.0590013005,0.0177594479,-0.0299506113,-0.0451930836,0.0398779027,0.0054206387,-0.0071853343,0.0253244378,0.0265477728,-0.0143636381,0.0103069479,-0.0614760928,0.0136113577,0.0329034887,-0.0151299806,0.0351532996,0.0006705492,0.0513519421,-0.0328753665,0.0430838838,0.054529801,0.035996981,-0.0061342507,-0.0393154509,0.0173938535,-0.0419589803,0.0031567663,0.0941545963,0.0166204795,0.0015889292,0.0024589733,-0.0042570648,-0.0258868895,0.0462054983,0.018982783,-0.0395685546,-0.0185468812,-0.0363344513,-0.0137941549,0.0184062682,-0.0250853952,0.0604636781,0.0054557924,0.0002309132,0.0424370654,0.0489615165,0.0119521217,0.0014913788,-0.000079809,0.0506207533,0.0213732067,-0.0051464434,-0.0195030514,0.0042183958,0.0444056503,-0.0074595301,0.0263930969,0.0143355159,0.0215700641,-0.0032094964,-0.0627697334,0.0069673839,-0.0509582236,-0.0006433054,-0.0216263104,0.0032868336,-0.034787707,-0.0212747771,0.0068091941,0.0053503322,-0.0246916786,0.0075228061,-0.0119732143,0.0188843533,0.0215700641,-0.0445462614,0.0111646885,-0.0373187438,-0.0384998955,0.0101944571,0.0536579974,-0.0374312326,0.0259993803,-0.04432128,0.0124512985,-0.0075017144,-0.0641196221,-0.0264774654,-0.0033641709,0.0092945322,-0.017914122,-0.0503395274,0.0257743988,0.0046121129,-0.0200514421,0.0234683435,-0.012148981,0.0380218104,-0.0122333486,0.0107569098,0.0124653606,-0.0123528698,-0.0548953936,-0.0227090325,0.0178016312,-0.0048441249,0.0290506873,0.0199670754,-0.0221043956,-0.0076634195,0.0213450845,0.0428870246,-0.0113966996,0.0050444985,-0.0236089565,-0.0289381966,-0.0463742353,-0.0400185175,-0.0990479365,-0.0173797924,-0.0147362631,-0.054192327,0.0121630421,0.0311598852,0.0290506873,-0.0029774846,0.0009254107,-0.0507894866,0.0195311736,-0.0033641709,-0.0734563395,-0.0036207899,-0.0302599613,0.0186453108,-0.0129645374,0.0240589194,-0.0526737049,0.0394560657,0.0100749359,0.0392029621,-0.0343377441,0.0410590544,0.0152846547,0.0006604426,0.0043660398,-0.0330159813,0.0340565182,0.0215841271,-0.057229571,0.0387248769,0.0456430465,0.0145956501,0.0599012226,-0.02216064,-0.0011213903,0.0031216131,-0.0052097193,-0.0122895939,-0.0632196963,-0.0254650507,0.0201498717,0.0286288485,0.0016548416,-0.0157205556,-0.0253384989,-0.0115091903,-0.033859659,-0.0138714919,-0.000923653,0.0001894983,0.0247760452,0.0714877546,0.0058108405,-0.0213591456,-0.0072978251,0.0506488755,0.0151581028,-0.0227933992,-0.0090484591,0.0028685094,-0.0165361129,-0.0257603377,-0.0216403715,-0.0391467139,0.0136816641,-0.0100538442,0.007020114,-0.0116005894,-0.0142933317,-0.0773935094,-0.0164517444,0.0000650885,-0.0101030581,0.0247338619,0.0136886947,0.0070236293,-0.0225965418,-0.0532924049,0.0030565795,0.0500301756,-0.0062361956,-0.0238058157,-0.0251978859,-0.0055366447,-0.002103925,-0.0677755624,-0.0107287876,-0.0029212392,0.0211341642,-0.0088656619,0.0182937775,-0.050873857,0.0041621509,-0.0041797273,-0.0560484231,0.0036629739,0.0422964506,-0.0467398278,-0.0137027567,0.0135691743,0.0688442215,0.033859659,0.0299224891,-0.0394560657,-0.0109748608,-0.0249729045,-0.0106514497,-0.0164658055,-0.0288257059,-0.0361094698,-0.0006837317,-0.0268289987,0.0155799426,-0.0174500979,0.032481648,-0.0193483774,0.0137730632,0.0260415655,0.0121349189,-0.0225121733,-0.0018402752,0.0096460655,0.010321009,-0.014426914,0.0220340881,0.0036664892,-0.0081696268,-0.0193202533,-0.0395404324,-0.0199951977,0.035968855,0.0009280471,0.0380218104,-0.0018350023,-0.0060041836,0.0120927356,-0.0159595981,0.0223574992,0.0092382869,0.0144550372,-0.0015757467,-0.0011741202,0.0068970774,-0.0292756688,0.0175063442,-0.0124512985,0.0478647351,-0.013899615,-0.0146800186,-0.0551484972,-0.0317504592,-0.0891487673,0.0028351136,0.0289100744,0.0421839617,-0.01565025,0.0386967547,-0.007902462,0.0060744905,-0.0135621428,0.0246916786,-0.0357157513,0.0173938535,0.0103842849,-0.0137800938,-0.0372062512,0.0178297535,-0.0013463714,-0.0381342992,0.0243963897,-0.0232433621,-0.0002019118,-0.0652445257,0.0074946838,0.0358282439,0.0169298295,-0.005888178,-0.0215700641,0.0186031256,0.0148909381,-0.0348158292,-0.0180969182,0.0117552634,0.0168173388,0.0308505371,-0.0064084465,-0.0039055317,-0.0237776916,-0.0329878554,0.0037367959,-0.0525049679,0.0236792639,0.0238198768,-0.0049777073,-0.000356806,0.0087461406,-0.0116005894,0.0081836879,-0.0291913003,-0.0126340957,0.0349845625,0.0028737823,-0.0120575819,-0.01565025,-0.0559640527,-0.013280917,0.0588888079,0.0379655659,0.0118396319,0.0407215841,0.0541079603,0.0326222628,0.0041867578,0.0006498966,0.0401028842,0.0159595981,0.0161564574,0.042352695,-0.0370093957,-0.0020845907,0.0222731307,-0.0016952679,0.0009192588,-0.0132598253,0.0145534659,0.002088106,0.019137457,0.0409184396,0.0541642047,0.0259853192,0.0245229416,0.0046156282,-0.0399060249,-0.0053538475,-0.0055260989,0.0060323062,0.0093296859,0.026111871,-0.0332128368,-0.0226106029,-0.0204873439,-0.0182937775,0.0276586171,-0.0325941406,0.0392310843,-0.0437025838,-0.0310755167,0.0551484972,0.0197139699,0.0827368051,-0.0217388012,-0.0070095682,-0.0089148767,-0.0209513661,-0.0282210689,0.0656944886,0.019601481,-0.025057273,0.0181391034,-0.0340565182,-0.0125216059,-0.0251838248,0.0578763932,-0.0147503251,-0.0175907109,0.0025275224,0.01086237,-0.0186453108,0.0492146201,0.0304005742,-0.0223012529,0.0210919809,0.0075368676,0.0244104508,0.0049530999,-0.0224559288,-0.0024572157,-0.0395685546,-0.0022410229,-0.0062502567,0.0501707904,-0.002870267,-0.0241011027,0.0286569707,-0.0417058766,-0.0582701117,0.0334659405,-0.023693325,0.035996981,-0.0574826747,-0.0255353581,0.0322847925,-0.0516612902,-0.0353220366,0.0002862797,-0.0511550829,0.055879686,0.0237776916,0.0359407328,-0.015636187,0.0339721479,0.0368125364,-0.0340846404,-0.0193483774,-0.0516894124,0.0153690232,0.025211947,0.0059409076,0.0321441777,-0.018068796,0.0174782202,-0.0208951216,0.0052483878,0.0655257553,0.0118396319,0.0189405978,0.0281507634,0.0102647636,-0.0223153159,0.0133090392,-0.02823513,0.0199670754,0.0617573187,-0.0172954239,-0.0439838096,0.0052729952,-0.0600137152,-0.0005756353,-0.0069216848,-0.0106584802,0.0088375397,-0.0213310234,0.0310192723,0.0603511855,-0.0209935512,0.0076352968,-0.02491666,-0.035378281,-0.0115513746,-0.0550641306,0.0109045533,0.0136816641,0.043899443,0.0408621952,-0.0265618339,0.0193343144,0.0135340206,0.0205717105,-0.0045418064,0.0084016388,-0.0241011027,-0.0471897908,-0.0340846404,-0.0120083671,-0.01608615,0.0002414592,-0.0501989126,-0.0182515942,-0.015945537,-0.0157346167,-0.0081485352,-0.0527018271,0.0138433697,-0.0073470399,-0.0348720737,0.0090695517,-0.0257040933,-0.0562171564,-0.0545860454,0.0445743836,0.0061518275,0.0384436473,0.0284882337,0.0549235158,-0.0061658891,-0.0141527187,0.0172110554,-0.0225402955,-0.003541695,0.0475835055,0.0082188416,-0.034028396,0.0169157684,0.0098007405,0.014426914,0.0228637066,0.0264493432,0.0227933992,0.0015924445,0.0311598852,0.0057827178,0.0011864239,-0.0017831512,-0.0149190603,-0.0066053052,0.0148487538,-0.0138011854,-0.0419871025,-0.025816584,0.0286429096,0.0148909381,-0.0073821931,0.0055050068,0.0477241203,0.0047140578,0.0021830199,-0.0093578082,-0.0144690983,0.0043660398,0.0025204916,-0.0246776175,-0.0316379704,-0.0087109879,0.0236652009,-0.0206842013,0.0042816722,0.0228215232,0.0116005894,0.0438713171,-0.0216684937,-0.0170563813,0.0132527938,0.0012540939,-0.0024484273,0.0235948954,0.0086125582,0.0074665612,-0.0007962222,-0.0255916025,0.020796692,0.0091609498,-0.0069990219,0.0114951292,-0.0268852431,-0.0172813628,0.0347033367,-0.0025626756,-0.0085281907,0.0444337726,-0.0192077626,0.0272508375,-0.0213591456,-0.0096109118,-0.0729501322,-0.0217388012,-0.0169017073,-0.0250713341,-0.0096671572,0.0194046218,-0.0258025229,-0.0204873439,-0.0140050752,-0.0208669994,-0.0377968289,0.0200514421,0.0017084504,-0.015031551,-0.0350689329,-0.0063979006,0.0195311736,0.0017453614,0.0084789759,0.0263930969,0.0263790358,0.0060076988,0.0228777677,0.0257462766,0.0463461094,0.0064119617,-0.0035030264,0.0416777544,0.0034133855,-0.008134474,-0.0265337117,0.0234261584,-0.0310755167,-0.019432744,0.043561969,-0.0209513661,-0.0076493584,0.0041269977,-0.0178438146,0.0542204492,0.0276726782,0.0221465789,-0.0044609536,-0.0366719216,-0.035996981,-0.0064576613,0.0198545847,-0.0444337726,0.0274476968,-0.0338034146,0.0127184642,-0.0327628776,0.0064049312,0.0266883858,0.0162830092,0.0216825549,0.0187578015,-0.0193061922,0.0420433469,0.0268852431,0.008957061,0.0142441168,-0.0027560187,0.0176610183,-0.013512929,0.0367844142,0.0609698854,-0.0508176126,0.0062502567,-0.0449681021,0.0073962542,0.0112771783,-0.0095757591,-0.0291913003,0.0343939885,0.0202342402,-0.0024695194,-0.0077337259,0.0259853192,-0.0037789799,-0.0314129889,-0.0264634043,-0.0205857735,0.017309485,0.0331847146,-0.0371218845,-0.0305411872,0.0042008194,-0.0106866034,-0.0721626952,-0.0302599613,-0.0190671496,-0.0053784549,-0.0034889651,-0.0314411111,0.0176891405,-0.0332128368,-0.0352657922,-0.004401193,-0.0260134414,0.0022058696,-0.0004688571,0.0007131726,-0.0154252686,0.0153830843,-0.0283476207,0.0102647636,-0.0409184396,-0.0199248902,-0.0329597332,-0.0354907736,0.0270258579,-0.0130278133,0.0278835986,0.0372624993,0.0145675279,-0.0316098481,0.0410871767,0.0161845796,0.0018894899,-0.0021601703,0.040243499,-0.0230043195,-0.0211482253,0.017618835,-0.0429995172,-0.0057651415,-0.0295850169,0.0062537719,0.0004631447,0.0071115126,-0.0209513661,-0.0327909999,0.0086266203,0.0424370654,0.0206279568,-0.0246073101,0.0090625212,0.0128168929,0.0056421049,-0.0065877284,0.0043344018,-0.0201358106,-0.0118536931,0.0003820724,0.0109959524,0.0249025971,-0.0137941549,0.0287835225,-0.0217388012,0.0230605658,0.0154674519,0.0432244986,-0.0350408107,-0.0037192192,-0.0046683582,-0.0345346034,0.001778757,-0.0137027567,-0.0130770281,-0.0032253154,0.063050963,-0.0018508213,-0.005346817,-0.0034696308,0.0278414134,-0.0053679091,0.0110662589,-0.012753617,-0.0310192723,-0.0477522425,-0.0205154661,0.0080922898,0.0253384989,-0.0069568381,-0.0224418677,0.0052167499,-0.0344783552,-0.0117693245,-0.0240167342,-0.004098875,0.0070587825,-0.0040742676,-0.0164939277,-0.078180939,-0.0297818761,0.0253666211,0.0004543564,-0.0059690303,-0.0118255699,0.0095546674,0.0146659566,0.027475819,-0.0163111314,0.0117833866,-0.0448556095,-0.033269085,-0.0086477119,-0.012908292,0.002114471,0.007825125,0.025957197,0.0283757448,0.0134777753,-0.0053222096,0.0031813737,-0.0283476207,0.0615323372,0.0241854712,-0.0243963897,-0.0229761973,0.0505363829,0.0345064811,-0.0053011179,0.0027718376,0.003316714,0.0040426296,0.0126200346,-0.0183359608,0.0267727543,-0.008493037,-0.0000058635,-0.0004649024,-0.0161845796,-0.0434494801,-0.0466835834,0.0294162817,-0.0220340881,0.0397372916,-0.0268852431,0.0018508213,0.0383874029,-0.0051042591,0.0058213864,0.0366156772,0.000234868,-0.0070728441,-0.0076915422,-0.0241714101,0.0111295348,-0.035209544,-0.0282632541,0.0033465943,0.0157486778,-0.0104194386,0.0260134414,0.0145956501,-0.0342814997,-0.027785169,-0.0017313,-0.0025820099,0.0215138197,0.0127184642,-0.0145956501,0.0294725262,0.0490177609,0.0377405845,-0.0064049312,0.0033272598,-0.0067881024,0.0036032132,-0.0156924333,-0.0209232438,-0.021556003,0.0165923573,-0.0190530885,-0.0329597332,0.0112771783,0.0181109812,-0.0105741126,-0.0141878724,0.0204170365,0.0063275942,0.0204029754,0.0263509136,-0.0160299055,0.0185046978,0.0174079146,0.0130840586,0.0226387251,0.0192358866,0.0037754644,0.0163251925,-0.000616501,0.0155377584,-0.0046824198,0.0169860739,0.0149753056,0.0117201107,0.0017181175,0.0185890645,0.0099132303,0.003478419,-0.0105178673,-0.0130067207,-0.0164376833,0.0373749882,0.0256900322,-0.0007979799,0.0004277717,0.0196577255,-0.026280608,0.0047246036,-0.0407778285,0.0222028252,-0.0171126258,-0.0197842773,0.0385280177,-0.0213591456,0.0115935588,0.0385561399,-0.0100960275,-0.0049003703,-0.0010537201,0.0022955106,0.0469366871,0.018673433,0.0473022796,0.0083453935,-0.0210216735,0.0086969268,-0.0316379704,0.0202061161,0.0442369133,0.0114318533,-0.0160720889,0.0182937775,-0.004408224,0.0144128529,-0.0039793537,0.0176328961,0.0107428487,-0.0379655659,0.031131763,0.0190249663,-0.0352376699,0.0089640915,0.0561609119,-0.0000221905,0.0632196963,-0.0599574707,-0.0300912242,-0.0360813476,-0.0098358933,0.0215138197,0.0362500846,0.0427464135,0.0155096361,0.0057440493,-0.012985629,-0.0348439515,0.000344722,0.0252260081,0.021865353,-0.005051529,-0.0038176484,0.023383975,0.020332668,0.0755936578,0.0393154509,0.0036700047,-0.0028685094,0.0170282591,0.0163111314,-0.0384717733,-0.0045347759,0.0079868296,0.0381342992,0.0364469402,-0.0412840359,-0.0386686288,0.0016328708,-0.0258728284,0.0136746336,0.0123388087,0.0068021636,-0.0003642761,-0.003253438,0.0062678335,0.0049601304,0.0283616818,0.0028245677,-0.0267727543,0.0426901691,-0.0037754644,0.0208388772,0.0081415046,-0.0152284093,0.0054593077,0.0307380464,-0.0214153901,0.0139839826,-0.013140304,0.0100608747,0.0125919124,-0.0059409076,0.0115865273,0.0042957333,0.0036700047,0.0189968441,0.0195171125,0.0079587074,-0.0113474857,-0.0188702922,-0.0101311812,-0.0330159813,-0.0285585411,0.0347033367,-0.0184484515,0.0393998176,-0.0029669385,-0.0045593833,-0.0175485276,0.0204732828,0.012830955,0.033100348,-0.0037157037,-0.0186031256,0.0391185917,0.0323972814,0.0015775043,0.0086406814,-0.0011996063,0.0304005742,-0.0071607274,0.0127254948,0.0187437404,-0.0099202609,-0.0044117393,-0.0048054559,0.0527861938,0.0155799426,0.0207545087,-0.0073751626,0.0132668559,0.016409561,0.0049038855,0.0061201896,0.0161986407,0.0134707447,0.0164939277,0.0094140535,0.0184062682,-0.0091961036,-0.0178578757,0.0232996065,-0.0243682675,-0.0057194419,-0.0069498075,0.0004846761,-0.0061799502,-0.0011240267,0.0149190603,0.0082329027,-0.0266602635,0.0380780548,0.0103069479,0.0091328276,0.010939707,0.0583826005,-0.0495520905,0.0137871243,0.0003660337,-0.0224278048,-0.0249588434,0.0102014877,0.0037789799,-0.0015871715,0.0402716212,-0.0138152475,0.0090484591,-0.0133863771,0.0315254815,-0.0364750661,-0.0027876566,0.0362500846,-0.0264493432,0.0276164319,-0.0346470922,0.0179844275,0.0068865316,0.0219497215,-0.00252928,-0.023088688,0.0121630421,-0.0127465865,0.0178578757,0.0206701402,0.0381905437,0.0271664709,-0.0043801013,-0.0040461449,-0.0187718626,0.0133934077,-0.0074735917,-0.0032446496,0.0153971454,0.062432263,0.0047281189,0.0061096437,0.0172391776,0.0549235158,0.0243401453,0.0413121581,0.0075790514,0.0103069479,0.0185046978,0.0363344513,0.0044504078,0.0095546674,0.0164658055,-0.0021443514,-0.0212185327,0.0260978099,0.0003954746,0.0049706767,0.0069181696,0.0289381966,-0.0501989126,0.0112631172,0.0200795643,0.0114810681,0.0049566152,0.004060206,0.0202061161,0.0086969268,-0.0233136695,-0.0022058696,0.0025644333,-0.0162548851,0.030822413,0.0196577255,0.0063451706,0.031131763,0.074693732,0.0258025229,-0.0056913192,0.0375437252,-0.000852907,-0.0032762876,-0.0125286365,0.0025978289,0.0010168093,0.023693325,-0.0390904695,0.0078884009,-0.0152143482,0.0180406738,0.0195030514,0.007902462,-0.0025081879,0.0213169605,0.0296412632,0.0050234068,0.0331565924,0.0263368525,-0.011234995,-0.0153830843,-0.0291350558,-0.0183078386,0.0058565396,-0.0157768019,-0.0021513819,0.0236230176,0.0096671572,-0.0420433469,0.0123599004,0.0514363088,0.0093507776,0.0013964649,-0.0175063442,0.0226527862,0.0136254188,0.0020547104,-0.0174922813,-0.0382186696,-0.0228074603,-0.0111998413,-0.0163111314,0.0246073101,0.0006327594,-0.0266040172,0.0001333628,-0.0315536037,-0.0412840359,-0.0112560866,0.0051183207,-0.0152705936,-0.0010176881,0.0064014159,0.0517737791,0.0102436719,0.0242698379,0.022624664,-0.0392873287,-0.0036946118,-0.0395404324,-0.0090484591,-0.0319473185,-0.0329597332,0.0277008004,-0.0087672332,0.0148487538,-0.0311036408,-0.0033184716,0.0160580277,-0.0056139822,0.0405528471,0.0435900912,0.0141738104,0.0145534659,0.027644556,0.029613141,-0.0458117798,-0.0202764235,0.0245088805,-0.0305411872,0.0287975837,-0.0177453868,-0.0076845116,-0.0091398582,-0.0050480138,-0.0086758342,0.023524588,-0.0027648071,0.0021636856,0.0200936273,0.0138293086,-0.0092453184,-0.0103913154,-0.0448556095,-0.0052870563,0.0221887622,-0.0267024469,0.0075720209,0.0061518275,-0.0090906434,0.0368969031,0.0284741726,-0.0051886272,-0.0222028252,-0.0313848667,-0.0192921311,-0.0076282662,-0.0205717105,0.0304286964,0.0318629518,0.0037016426,0.0105600515,0.043899443,0.0104967756,0.0076774806,-0.027785169,-0.0089922138,0.0229621362,0.0117412023,-0.0100186905,0.0146659566,0.0078321556,0.0172813628,0.0262665451,-0.0143777002,-0.0149049992,0.0042640953,0.0033606554,-0.013590266,0.0244385749,-0.0082539953,0.0146800186,0.0151299806,-0.0100538442,-0.0139136761,0.0419589803,-0.0052272957,-0.0435057245,0.0339721479,-0.0298943669,-0.0144409761,0.0242276546,-0.006485784,0.033859659,0.0070798746,0.0287272763,-0.0114740375,-0.0347595848,0.0003576848,0.0469366871,0.0179703664,0.0031093094,-0.0273211449,0.0163533147,-0.0039863843,-0.0119450912,-0.0122474097,-0.015945537,0.0012848531,-0.0033712015,-0.0290225651,0.0179703664,-0.0329316109,0.0009377143,-0.0208669994,0.0007224003,0.0183078386,-0.0056210128,-0.0001806001,-0.0122403791,-0.006763495,-0.0004596294,-0.0007650237,-0.022329377,0.0216122493,-0.0230324417,0.016550174,0.0159877203,-0.0127184642,0.0048406096,0.0456149206,0.0063908701,-0.0059409076,-0.012303655,0.0032833181,0.0091398582,0.0021408361,-0.0086758342,-0.0050796517,-0.0123177161,0.0347314589,0.0203186069,0.017604772,0.0251697637,0.0184203293,-0.0426057987,0.0101100896,-0.0262103006,-0.0015168649,-0.0119029079,-0.005965515,-0.002812264,0.024283899,-0.0389498584,0.0095827896,0.0107147256,0.0101311812,0.0169438906,-0.004664843,-0.0262243617,0.0327066295,0.0144128529,-0.0358282439,-0.015636187,0.0532642789,0.0027876566,-0.0428026579,0.0135832354,-0.0077899713,0.0089640915,-0.0129012614,0.0015537759,0.0141527187,0.0307380464,-0.0097444952,0.0096601266,-0.0046999962,-0.0192640088,-0.0118677542,0.0067845872,0.0231308714,-0.009343747,-0.0105459904,-0.0015335627,-0.0263649747,0.0274055135,-0.0227933992,0.0005888178,-0.0191233959,0.0042851875,0.0067177955,0.0250010267,0.0227090325,0.0299787354,-0.0081696268,-0.0039266236,-0.003541695,-0.0166767258,0.0071009668,0.0065771826,-0.0117201107,-0.0413121581,0.0150737353,0.0086969268,-0.0152987167,0.0142370863,0.0132598253,-0.031131763,-0.0158330463,0.0298099983,-0.0215981882,-0.0027489881,0.0027718376,0.0068408321,-0.0322566666,-0.0233136695,0.0415652618,-0.0119521217,0.014722202,0.0179703664,0.0203889143,0.0012787012,-0.0127887707,0.0030548219,0.014131627,-0.0071572121,-0.0061096437,0.0169157684,-0.0186593719,-0.0372624993,-0.0397091694,-0.009561698,0.0345627256,-0.003599698,0.0015344416,-0.0202342402,0.0176610183,0.0088375397,0.0144831594,-0.0018086373,0.0079727685,-0.0060428525,0.0036032132,0.0082680564,0.0253103767,0.0017014197,-0.0265196506,0.0081485352,0.0034485387,-0.009407023,-0.0082891481,0.0224418677,0.0109326765,-0.012071643,0.0137519706,-0.0099202609,0.0013446137,0.0148346927,-0.004974192,0.0019176125,-0.0205998346,-0.0033483519,-0.0110662589,0.0011925757,0.0461211316,-0.0179844275,-0.0002568388,0.0085984971,-0.0110521978,0.0012391538,-0.015945537,0.0757061467,0.0169298295,0.010939707,-0.000026928,0.0063592321,-0.024888536,0.0159174148,-0.0058002947,0.0360251032,-0.0144550372,0.0343939885,0.0052940869,0.0222168863,0.0167189091,-0.0006907624,-0.0134707447,-0.0106233275,0.0301474705,-0.0368969031,0.0065068761,-0.0080501055,0.0456711687,-0.0181531645,0.0290225651,-0.0004974192,-0.0187999848,-0.0132457633,0.0280523337,-0.0046085976,-0.007104482,-0.0093929619,0.0248463526,0.0354626477,0.0007632661,-0.0311880074,-0.0060006683,0.0458961502,0.0023025412,0.014581589,0.0117974477,-0.0157486778,-0.0020898636,0.0375999697,0.0078110634,-0.0212044716,-0.0355188958,-0.0115794968,-0.0083102398,0.0079376148,-0.0216122493,-0.0065244525,-0.0526455827,0.0260556266,0.0127958013,-0.0143636381,0.0144690983,0.0069392617,0.0184484515,0.0383874029,0.0094140535,0.0343096219,0.00819775,0.0163533147,0.0335221887,-0.0011899392],"58":[-0.0185421016,0.0019114686,0.0367550552,-0.0177192278,0.043914061,-0.0405128486,-0.038181372,0.0631967485,-0.0088801859,-0.0178426597,0.0112870932,-0.0218884572,-0.0548308603,-0.0109168002,-0.0137351444,0.0125282621,0.0129122706,-0.039689973,-0.0205855742,0.018281525,0.0210792981,0.0298977681,-0.0092024785,0.0281148739,-0.0082218861,-0.0336007029,-0.0417745896,0.0541725606,-0.0027634865,-0.0661590993,0.0177603718,-0.0342590027,-0.0536788367,0.0508536361,0.0298429094,-0.0216690246,0.0284988824,-0.0070835766,0.0153191779,0.01180139,-0.0207775775,-0.0149214547,0.016169481,0.0471781306,-0.0421860255,0.019296404,-0.0122745428,-0.0109442286,0.014990028,0.0303640645,-0.0525816716,0.0333264135,-0.0219707452,-0.0520879477,-0.0101213548,-0.0100527816,-0.0054241135,0.0374956429,-0.0171295013,-0.03461558,-0.0092093358,-0.0766370296,0.0270451382,0.0471781306,-0.0385928079,-0.0025543391,0.0024446226,0.0100459242,-0.0199135598,-0.0025149097,0.0371116325,0.0240827892,-0.0196392685,-0.0184872448,0.0074812993,-0.0213535894,-0.0255365353,0.0719192177,0.0046766694,-0.0537336953,0.0019903274,0.0149351694,-0.0005841551,-0.0175409392,0.0243570805,-0.0425426029,-0.051758796,0.0008494463,-0.0514022186,0.0256188214,-0.0256462507,0.029980056,-0.0196118392,0.039278537,0.0525816716,0.0252073854,0.0387848131,0.0474798493,0.0476718545,0.0269079916,-0.0125762634,-0.0076458743,0.017102072,-0.0328875445,0.0177055132,0.0140985809,0.0316532329,-0.0011665958,-0.0209695809,-0.0072207227,-0.1032981649,0.0068401434,-0.0268805623,-0.018075807,-0.0263045505,-0.0210792981,0.0056846905,0.0195706952,-0.017870089,-0.0229444802,-0.0228347629,0.0002708628,0.0029109181,-0.0145237325,0.0045669526,-0.0644584894,0.0122539708,-0.0341218561,-0.0146471635,-0.0259479713,0.0256873947,-0.0016268912,0.0486318767,-0.0456969552,-0.0427346081,-0.0271274243,-0.0189672541,-0.018528387,-0.0012651694,-0.0237124953,0.0149763133,-0.0129259853,0.0053932555,0.0116505297,-0.0356030315,-0.0236302093,-0.0306932144,-0.016128337,-0.0422683135,0.0096413447,-0.0084207477,-0.0202427097,-0.0579852127,-0.0047040987,0.0108413696,-0.0090036169,0.0219296012,0.0645682067,-0.0148528824,-0.0548308603,0.0094150538,0.042816896,-0.0128025534,-0.0154974675,-0.0477541424,0.0263045505,-0.0210107248,-0.0386476666,-0.0590823777,-0.0177740864,-0.0340944268,-0.050167907,-0.0252211001,0.0601246879,0.033024691,-0.0534594059,0.0169512127,-0.0346704386,-0.0130768456,-0.0269217063,-0.0493450314,0.0205307156,-0.0687374398,-0.0093807681,-0.0433106199,-0.0163203422,-0.0291297529,0.0450660847,-0.0317355208,0.0325858258,-0.010827655,0.0364259034,0.0102996444,0.0620447285,0.0103339301,-0.0272645708,0.0650619343,0.0132002765,0.0024617659,0.0257285386,0.0273742881,0.0371939205,0.0233833473,-0.0088733286,0.0611121356,0.0100939255,0.0249330942,-0.0294314735,-0.0643487722,-0.0232736301,0.0444352143,0.0197078418,0.0071178633,0.0220941771,-0.0453403778,-0.0308029298,-0.0642939135,0.0184872448,0.0179935191,-0.0026503413,-0.004419521,0.0368099138,-0.0033943567,0.0146745928,-0.0132208485,0.0163066275,0.0502776243,-0.0237536393,0.0647327825,-0.0035417883,0.0299251974,-0.017143216,-0.0314338021,-0.0216827393,0.0084138904,-0.004306376,0.0400191247,-0.0165260602,-0.0093807681,0.0240005031,-0.0087841842,0.0187341068,0.0288554616,0.0295960475,0.0543919951,-0.0097853476,-0.0343961492,-0.0559005998,0.0646230653,0.0287457444,0.043996349,-0.0014160296,0.0068538575,-0.0358224623,-0.0119179636,-0.0325583965,-0.009730489,0.0339847095,-0.0118562477,0.0070150038,0.0203387123,-0.0382910855,-0.0527188182,0.0184186716,-0.0071932934,-0.0126859797,-0.0013294563,0.0089419018,0.0263868384,-0.0018223239,0.0243845098,-0.0023486207,0.0116299577,-0.0133579941,-0.0043269475,-0.0267022736,0.0016817495,-0.0318452381,-0.0156620424,-0.0029143468,-0.021573022,-0.0113076651,0.0191729721,0.0068915728,0.0189672541,-0.0121236825,0.0260714032,-0.0022783333,-0.0384556614,-0.0492353179,0.0148391677,0.0212164447,0.0309400763,0.0195981245,-0.0000115717,0.0109168002,0.0351093076,0.0316532329,0.0134471385,0.0258519705,0.0058218362,-0.0390865318,0.0187615361,-0.0336829908,0.0054481141,0.044764366,-0.0242199358,-0.0092504798,0.0095179137,-0.0038846526,0.0217513125,0.0091613345,0.0270725675,-0.007618445,-0.0024960523,-0.0179249458,0.0267434176,-0.039278537,-0.0160597656,-0.0235890653,-0.0166632067,-0.0429540426,-0.007090434,0.009668774,-0.0219570305,0.0121579692,0.0585337952,-0.0259479713,0.0159363337,-0.0195706952,0.0421585962,-0.0188575368,0.0125419768,-0.0057909782,-0.0167729221,-0.0200507045,0.0052046804,0.0016920355,0.0235479213,-0.0059315525,-0.0433106199,-0.0429540426,-0.0510456413,0.0167592075,0.0398819782,0.0120002516,0.0106150797,0.0158814751,0.0476718545,0.0328601152,-0.0146471635,-0.0116642443,0.0314886607,-0.015072315,0.0107933683,0.0123705445,-0.006387562,-0.0122676855,-0.0280874446,-0.0288554616,-0.0647327825,0.0142082972,-0.0032692114,0.0169923548,-0.0155660398,0.0166632067,-0.0160186216,0.0129259853,-0.01180139,-0.0206815749,0.0101213548,-0.0063909907,0.0199272744,0.00266577,-0.0861823782,-0.0116093857,0.0151271736,0.0020966153,-0.0265376978,0.0414180085,0.0233696327,0.0317629501,-0.0104025034,-0.0129465563,-0.0058869803,0.0209558681,0.0380167961,-0.0212987307,-0.053623978,0.0047143842,0.0561748892,-0.0896384493,0.0135499975,0.0107316533,0.0046869554,0.0170334987,0.0160186216,0.0192004014,0.0531851128,-0.0028114873,0.0265514124,0.0230816267,-0.0360967554,-0.0109030856,-0.0003034349,-0.0126379784,0.0056058317,0.0313240848,-0.0191044006,-0.0268394183,0.0012891699,-0.0090173315,0.0481381491,-0.0009557343,0.0118768197,0.0037989367,-0.0126379784,0.067749992,0.0387573838,0.0516490825,-0.0003700792,-0.0283343066,-0.0065349941,-0.0383185148,-0.0132894209,0.0310497936,0.0388670973,-0.0240553599,-0.0148117384,-0.0166906342,0.0011194519,-0.0255913921,-0.0006887287,-0.066213958,-0.0291571822,-0.0072001508,0.0235342067,0.0471781306,0.0069155735,0.0151546029,0.0156483278,-0.0450660847,-0.03656305,-0.0032109243,-0.0120139653,-0.0002247904,-0.025467962,-0.0429540426,-0.0088733286,-0.0246450864,0.0176095106,0.0009685917,0.0246313717,0.0402659848,-0.0461358242,-0.0285537411,0.0723032281,-0.0072481516,0.0639647692,-0.0064835642,-0.0016380342,-0.0089419018,-0.0429540426,0.0124254031,-0.0137214297,-0.0366179086,0.0021257587,-0.0157717578,0.0315435156,-0.0108345123,0.0219570305,0.001524889,-0.0050743921,-0.0534868352,-0.0531576835,-0.0179798044,0.0204072837,0.0054378281,-0.0353561677,0.0202838536,-0.0139065767,0.0275662914,-0.0189672541,0.0284988824,0.0281148739,0.0252211001,0.0036686482,0.0624835938,-0.0076664463,0.0101830699,0.0198449865,0.0080984551,0.0670368299,-0.0154426089,-0.0059486958,-0.0193649773,-0.0327503979,-0.0378796495,-0.0401562676,-0.0065898523,-0.0212850161,-0.018158095,-0.0114379534,0.059630964,-0.0391688198,-0.0267571323,0.0114173815,0.0009334481,0.0058389795,-0.0192004014,0.0101144975,0.0244256537,0.0187203921,0.0209147241,0.0133511368,0.0257559679,-0.0131934192,0.0094767697,-0.0088664712,-0.0120002516,0.0288554616,-0.0101693561,0.0007945881,-0.0007564444,-0.0010268786,-0.0159774777,-0.0681339949,-0.010580793,0.0018411814,0.0094150538,0.0470958427,-0.0022080461,-0.0005682976,0.0155797545,-0.0786119327,-0.0066652824,-0.01066308,-0.0586983711,-0.0605635531,0.0040732282,-0.0205992889,0.0569977649,0.0265376978,0.0353013091,0.0058184075,0.0053898273,0.0148940263,-0.022423327,-0.0295960475,0.0472329892,0.0332715549,-0.0210655835,0.045093514,-0.0113213798,0.0221490357,-0.0003587218,0.0182540957,-0.0228896216,0.0166220628,0.0219981745,0.011636815,-0.0326132551,-0.001183739,0.0206541456,-0.0196118392,0.0044640936,0.0133991372,-0.0314063728,-0.0156346131,0.0215318799,-0.0258931126,0.0412808657,-0.0168003514,0.0105053624,0.0225741863,-0.031077221,-0.012733981,-0.0124596898,-0.0026091975,0.0438592024,-0.0362887606,-0.0185832456,-0.0099019213,0.0208598655,-0.0294589028,0.0113693811,0.0081601711,0.0117328167,0.0210381541,0.0247959476,-0.0020674719,0.0024171935,-0.0103750741,-0.0056024031,-0.0205170009,-0.0031320655,0.0472329892,-0.0318452381,-0.0326406844,0.0485495888,0.0064218487,0.0040457989,-0.0084961774,0.006823,-0.0136185708,0.0073784404,0.0176369399,0.0388396718,0.0211341567,-0.0453952365,0.0124254031,-0.0264691245,0.0063909907,-0.0568880476,-0.0067818561,0.0024154792,-0.0021566167,-0.0166906342,0.0078858789,-0.0142220119,-0.0060446979,-0.0467666946,-0.0257559679,-0.0429266132,0.0089213299,-0.0252073854,-0.0009840206,-0.0232050568,-0.03656305,0.031077221,-0.0081533138,0.0199272744,0.040787138,-0.0184049569,-0.0075978735,0.0052561099,0.0251525268,0.0113899531,0.0158677604,-0.0359596089,0.0113556664,0.0168689247,-0.0228484776,-0.0143728722,0.0226016156,0.0041246577,-0.0272508562,0.0168689247,0.0281423032,-0.0344235785,0.0039257966,-0.0318452381,0.0429540426,0.0176780839,0.0138585754,-0.0165123455,-0.0328326859,-0.0098402062,0.0143180136,0.0208872948,-0.0743329823,0.0076870183,-0.0022611902,0.0225330424,-0.0257285386,0.000053519,0.0081258845,0.0111225182,0.0390865318,0.0106356507,-0.0675854161,0.0429266132,0.0193238333,0.0197215565,0.0251662415,0.0072138654,0.0037955081,-0.0429266132,0.0350270197,0.0133854235,-0.043667201,0.0131865619,-0.02372621,-0.0098539209,0.0070492905,-0.0071315779,0.0066378531,0.0172940753,0.0308029298,0.0011297379,-0.0019320404,-0.0023023339,-0.0228896216,-0.0361241847,0.0195158366,-0.0137488591,-0.0134197092,0.0227661915,-0.0187478215,-0.0568880476,-0.0431186184,-0.0136940004,-0.0442157835,-0.0134951398,-0.0220256038,0.0235342067,-0.0235342067,-0.0051875371,0.0281423032,0.0100802109,-0.0617704354,0.0126448357,0.0001021629,0.0119453929,-0.0132002765,0.000298292,-0.0204209983,0.0373584963,-0.007495014,-0.0176506545,-0.0468215495,0.0176232252,0.0182678103,-0.0431186184,0.0206404328,-0.0403208435,-0.0025817682,0.0229444802,-0.0028560597,-0.0075018713,0.0018240382,0.0033977854,0.0185969602,-0.0294314735,0.0142357266,-0.0265925564,-0.0317629501,0.0059795538,-0.0841526166,-0.0265102684,-0.0191729721,-0.0259479713,-0.0079955962,0.0201467071,0.0027874869,-0.038921956,0.0206130035,0.0353287384,0.041226007,-0.0178289451,-0.0341492854,0.0125625487,0.0000894126,0.0084824637,-0.0201467071,-0.0077418764,-0.0052629672,0.0058321222,0.0061475574,0.0128436973,-0.0106287943,0.0234519187,-0.0054172562,0.0322841033,0.0134334238,0.0117122447,0.0254816767,0.008324746,0.0095384857,-0.0311869383,-0.0322841033,-0.0445723608,0.0092984801,0.0080230255,0.0216553099,-0.0246725157,0.0057086907,0.024288509,0.0136528574,0.0107522253,0.0275525767,-0.0011168806,-0.028800603,-0.0557085946,-0.0066927117,-0.0118425339,-0.0256051067,-0.0238359272,-0.0576560646,-0.0269354209,-0.0124665471,0.0296783354,0.0052835392,-0.0177192278,0.0082630301,0.0237124953,0.0052869678,-0.0721386522,-0.0185832456,-0.000733301,-0.0297057647,0.0018446101,-0.0131522752,0.0005262967,0.0264554117,0.0292668976,-0.0117465314,0.0596858189,-0.0421585962,-0.0111499475,0.0210518688,-0.0167592075,-0.0115956711,-0.0033223552,0.0059041237,0.0254405327,0.0191318281,-0.0195432659,-0.0156483278,-0.0038846526,0.0411437191,-0.0115065267,0.0036206471,0.0033549273,0.0248370916,0.0167454928,0.0177603718,-0.0243845098,-0.0012317401,-0.0324212499,0.0094493404,-0.0281423032,0.0463826843,0.0001926469,-0.029733194,-0.0013826004,-0.029047465,-0.0091339052,-0.0220530331,0.0317629501,-0.0547211468,0.0063772765,-0.0097647756,0.0085167494,-0.0142768705,-0.0083864611,0.0138037177,0.0376327895,0.0005018677,0.0120688239,-0.0096002007,-0.0063772765,0.0056332606,-0.0508536361,0.0191044006,0.0028697744,0.0231227688,-0.0179523751,0.0067338552,-0.0198724158,-0.0033154979,-0.0348624438,0.0251250975,0.0152094616,0.0396351144,-0.0176917985,-0.0345881507,0.0014786024,0.0209421534,0.0077761626,-0.0088047553,0.0221627504,-0.0099293506,0.0209284388,0.0277720094,0.0015334607,-0.0578206405,0.027662294,-0.0168689247,-0.0372762084,0.0305834971,-0.0147568807,-0.0287183151,0.0161009077,-0.0094356257,-0.0089556156,-0.0184598155,0.0569429062,-0.0103407875,-0.0331892669,-0.0155934691,0.0094561977,0.013810575,-0.0031406372,0.0319823846,0.0198312718,-0.0087087536,0.0562297478,0.0282794498,-0.0280463006,0.0198038425,-0.0128299827,-0.034286432,-0.0011777389,-0.0124528324,-0.0212575886,-0.0040972284,0.0158951897,0.0131934192,0.0096413447,0.0305012092,-0.01730779,0.0328601152,0.0283891652,-0.0230541974,0.0138997193,0.0031817809,0.0399642661,0.0029023464,-0.0280051567,0.0273742881,-0.0177055132,0.0241376478,0.0204209983,0.0075087287,-0.0082630301,-0.0217375979,-0.0167866368,0.0096207727,-0.0134882824,0.0285811704,0.0077350191,-0.0214221627,0.033874996,0.0004962961,-0.0050538201,0.0089830449,0.0170746427,0.0256188214,-0.0046012392,-0.0072412943,0.0084413197,0.0027257714,-0.0003272211,-0.0060069826,-0.0207090043,0.056504041,0.0230267681,-0.0037886507,-0.0152506046,0.0616058595,-0.0231364835,0.020023277,-0.0351367369,-0.0424603187,-0.06028926,0.0248233769,-0.0027892012,0.0332441255,-0.0056846905,0.0327229723,0.0226153303,-0.0258108266,-0.0284440238,-0.0017708942,-0.004824101,0.0139614353,-0.0099499226,-0.0195706952,0.0081738858,-0.0045326664,0.0241513625,-0.0078447359,0.039278537,0.0229719095,-0.0002541482,0.0301172026,-0.0223684683,-0.02120273,-0.0240142178,0.0426797494,0.020270139,-0.020270139,-0.0097579183,-0.0042343745,-0.0035023589,0.0318178087,0.0240690745,-0.0323663913,0.0279365852,0.0335184149,0.0057875495,0.0111705195,0.0350818783,0.0227524769,-0.0538434125,0.0104162181,-0.0221216064,-0.0016183195,-0.0275937207,-0.0203798544,-0.0177466571,0.0283891652,-0.015922619,-0.0070218612,-0.0186243895,0.0050229621,0.0080573112,-0.003390928,-0.0213535894,-0.0293217562,-0.0248782355,-0.0088801859,-0.0071247206,0.0218198858,-0.0037440783,-0.0306932144,-0.0278954413,-0.0190083981,-0.0441609249,0.0146745928,-0.0253993887,0.046272967,0.0123911165,0.0063909907,0.0278542973,0.0101556415,-0.0088870432,0.0339572839,-0.0006051555,0.0007397298,0.032338962,-0.0080847405,0.0149214547,-0.0185969602,0.0056195464,0.0234244894,0.0136528574,0.0272371415,0.016169481,-0.0354384556,0.0005125821,0.0031337799,0.0348624438,0.0477815717,0.0148528824,-0.0123499725,-0.0072412943,0.0132894209,0.036151614,-0.0148391677,0.0177740864,0.0091133332,0.0180072337,0.0404305607,-0.0131385606,0.0071795788,-0.0274565741,0.0143042989,0.010621937,-0.0111842342,0.0105876504,-0.0100733535,-0.0001815038,-0.0008207315,0.0422957428,0.0397174023,-0.0221490357,0.0066755684,0.0103407875,0.0011700245,0.0027086281,0.0229170509,-0.0296234768,-0.0019320404,0.0007328725,-0.0038503662,-0.0227250475,0.0101213548,-0.0084344624,0.0103613595,0.0124048311,-0.0141122956,-0.0239456445,0.006294989,0.0309675056,-0.0353287384,-0.0004352234,0.0326132551,0.0013620285,0.0032709255,-0.0164986309,0.0054995436,0.0317355208,0.0155523252,0.0027840582,-0.0277994387,0.0237399247,-0.0066207098,0.0129465563,0.0313240848,0.015031172,-0.0177466571,-0.0267708469,-0.0395528264,-0.0172117893,0.0192415453,-0.0144688739,0.0184186716,0.004162373,0.03461558,0.0053761126,-0.0095110564,0.0110402312,-0.0101830699,0.0112802358,0.0002013256,0.0326406844,0.0187066775,0.0281971619,0.0422408842,-0.0137214297,-0.0127065517,0.0281697325,0.0143591575,0.003555503,-0.0035023589,0.0452306606,-0.0193924066,0.0179249458,0.0324212499,-0.0297606234,0.0375779308,0.0015660328,-0.0102379285,-0.003747507,-0.005475543,0.009648202,-0.001140881,0.01397515,0.0002682913,-0.0023520493,0.0219296012,0.0135637121,0.0026023402,0.0381265134,-0.013810575,0.0475621372,-0.0027017707,-0.0287731737,0.0009103048,-0.0078995936,0.0099773519,0.001758894,-0.0083453171,-0.0108207976,0.0022697619,-0.0264554117,0.0013954578,-0.0438592024,-0.0017983234,0.046272967,-0.030748073,-0.0092779081,0.0226016156,-0.0076733036,-0.004429807,0.0081875995,0.0332989842,0.0147294514,-0.0282245912,-0.0239730738,0.0098607782,-0.0042789467,0.0044880938,-0.0045223804,0.0187066775,-0.0117945326,-0.0239045005,0.0117465314,0.0488513075,0.0254542474,0.0261674039,-0.0103819314,0.0128711266,-0.0118151046,0.02120273,0.0086676097,0.0120756812,-0.0023829071,0.0010654508,-0.0014726022,0.006812714,-0.0232736301,-0.0235067774,-0.0107110813,-0.0250565242,-0.0220256038,-0.0055406876,0.0054446855,-0.0052595385,0.0150037427,0.0094081974,0.0381265134,0.009689346,0.0078858789,0.0262085479,-0.0254268181,0.0168826394,-0.0214770213,0.0221078917,-0.0372213498,-0.0229444802,0.0158403311,0.0049269604,-0.0190769713,-0.021614166,-0.0018274668,0.0489335954,0.014907741,0.0137831457,0.0314612314,0.0343961492,0.0106767947,0.0236987825,0.0385379493,-0.0258519705,-0.0261262618,0.017143216,-0.0077281618,-0.0058115502,-0.0101556415,-0.0411162898,-0.0054584001,0.0024926236,-0.0130357016,0.0046389541,-0.0064938501,-0.0075293006,0.0344510078,0.0075910161,0.0065315655,-0.0081464564,-0.0624835938,0.0049441033,-0.0114585254,-0.006956717,0.0122814002,-0.0033600703,-0.0404854193,0.01283684,0.007090434,-0.012960271,-0.0488787368,0.0129465563,-0.0041966592,0.0167180635,-0.031077221,0.0000280988,0.0407048501,0.0238633566,0.0200781338,0.0062675597,-0.0114859547,0.0012780267,-0.0221490357,-0.0375505015,-0.0004144372,-0.0320372432,0.005869837,0.02120273,-0.0271685682,0.0114653828,0.0386476666,-0.0359870382,0.0032709255,-0.0153191779,-0.0040732282,-0.0112939505,0.0286360271,-0.0104162181,0.0183500983,0.0074127265,-0.0138174323,-0.0346704386,-0.0003180066,0.0285263117,-0.0394979678,0.0099704945,-0.0181032363,-0.0015737473,0.0188986808,0.0072961529,0.0133511368,0.0029777766,0.0210655835,-0.0134539958,-0.0075841588,0.0049749613,0.0276485793,0.0164163429,0.007639017,-0.0417745896,-0.0063189892,-0.0231776275,-0.0296234768,0.0013937434,0.0010345931,0.0044812365,-0.0022903336,-0.0188849661,0.0385928079,-0.0242610797,0.0124322604,0.0108345123,0.0081944568,0.0197901279,0.0032640684,-0.0270314235,-0.0143454429,-0.0018651818,0.0329424031,-0.0352738798,-0.0239456445,-0.0004401521,0.0016406057,-0.004162373,-0.0021086156,-0.0129259853,0.0308029298,-0.0344784372,-0.0232050568,-0.0057189767,-0.0014743166,0.0005005819,-0.010477934,0.0191866867,-0.0058732657,0.002542339,-0.016375199,0.0343961492,0.020228995,0.0207227189,0.0192826893,0.0205855742,-0.0001598605,0.0241650771,-0.0032760685,0.011863105,-0.0303914938,-0.0151271736,0.0142494412,0.0373859257,0.0074881567,-0.0130768456,-0.0157443304,0.0285811704,-0.0059966971,0.0257971119,-0.0383185148,0.018240381,0.0067749987,-0.0382636562,-0.0092161931,0.028800603,0.00962763,-0.0449015126,0.0364259034,0.0071932934,-0.0003636505,-0.0219158866,0.0072207227,0.0250702389,0.024946807,-0.0245490856,-0.0232873447,-0.0036172185,-0.0018257526,-0.0188849661,0.0304463506,0.0410614312,-0.0067167119,0.0030514924,0.0174586512,-0.0628127456,0.0337927081,-0.0278405827,-0.0153877502,0.0210107248,0.0259754006,0.0281148739,0.0000408759,0.0039566541,0.0204484276,0.0163889136,-0.0095933434,0.0082013141,0.0411162898,0.0237124953,0.0116848163,0.0050709634,-0.0509907827,-0.0049338173,0.0036686482,-0.0136528574,0.0101282122,-0.0176643692,-0.0231501982,0.0236713532,0.0037029346,-0.0131865619,-0.0056675472,0.0208735801,0.0034646438,-0.0186243895,-0.0327778272,0.029980056,0.0151546029,0.0214633066,0.0199821331,-0.0186655335,-0.0037063633,0.0056778332,0.0054926863,0.0223684683,0.0054618288,-0.0073578684,-0.0230267681,0.0204895716,-0.0296509061,-0.0315160863,0.0176232252,0.0012300258,-0.0046732407,-0.0017708942,0.0186929628,0.008427605,-0.0252896715,0.0453129485,0.0062538451,0.0147843091,-0.0099499226,0.0205855742,0.0074607274,0.0212850161,0.0008340175,0.0196255539,-0.0041486584,-0.0203249976,0.0044366643,-0.0136185708,0.0446546488,0.0690117329,0.0103476448,0.0179798044,-0.030748073,-0.0021086156,0.0233284887,-0.0074332985,0.002158331,0.0226701889,-0.0154288942,0.0249193795,0.0049235318,0.0094356257,-0.0145100178,0.0210518688,0.0272371415,0.0131042739,0.000141003,0.0005854408,0.0412534364,0.0017726085,0.0271274243,0.0203661397,0.0304463506,-0.0164849162,0.0394431129,0.0029280612,0.0298703387,-0.0293491855,0.0095796287,-0.002132616,0.002691485,0.0299526267,0.0203387123,-0.0229581948,-0.0215318799,0.0146334488,-0.009668774,0.0085030347,0.0182129517,0.0274565741,-0.0263182651,-0.0057635494,-0.0012643122,0.0068298574,0.0193238333,0.0297606234,0.0079407375,0.0001673606,-0.0475347079,0.020228995,0.0072275801,-0.0007988738,-0.0451483727,0.0187615361,-0.0141945826,-0.01387229,0.019090686,0.0061166994,-0.0170472134,0.0138654327,-0.0058561224,-0.0086058946,-0.0054172562,-0.0251388121,-0.0016474631,-0.0015308892,0.0186243895,-0.0160186216,-0.0341767147,-0.0069601457,0.0154700382,0.0158677604,-0.0082150288,-0.0220393185,0.0433929078,0.0010543078,0.0322018154,0.0357127488,0.0401288383,0.0118768197,-0.0245079417,0.0198038425,0.017870089],"59":[-0.0072822622,-0.0070709782,0.067948997,-0.0237201732,0.0638360009,-0.0062258411,-0.0150716063,0.0382846966,-0.0156350303,0.007761173,0.0038981936,-0.0166491959,-0.0137405163,-0.0304249264,0.0538915582,0.0159167442,-0.0163533967,-0.0261428989,-0.0245230533,0.0328476503,0.0012333716,0.0309038367,0.0110149495,0.0221425854,0.000308563,0.0124939391,-0.0347632952,0.0439189449,0.0245934818,-0.0734142214,0.0071625346,-0.0388199501,-0.0450176224,0.0255513024,0.0370169915,-0.007902029,0.0530745909,0.0131066637,0.0208889656,-0.0236638319,-0.0259457007,0.029185392,0.0143602835,0.0409891345,-0.0432428345,0.0154660037,-0.024086399,-0.0158604011,0.0273542609,0.07521718,-0.0482854843,0.0375240743,-0.0596103184,-0.0270162076,0.0278190877,-0.0349886641,-0.0204804819,0.0151138632,0.0110431211,-0.0429611206,-0.0022660231,-0.0673855767,0.0442569964,0.0495813601,-0.0176070165,0.0285374541,-0.0177478734,0.0547085218,-0.0242835972,0.0143391546,0.0494968481,0.0136137456,-0.019832544,-0.0264105257,0.0087049091,-0.0389326364,-0.022311613,0.0647374839,0.0100078285,-0.0291008782,0.0222270992,0.0044299257,-0.040594738,0.0221566707,0.0275373738,-0.0462853275,-0.0026568989,-0.0163815692,-0.0017281288,0.017916901,-0.0171985347,0.0070146355,-0.0123882974,0.0177056156,0.034566097,0.0318053141,0.0374959037,0.0216214173,-0.027269749,0.0239314567,0.029889673,-0.0182690416,-0.0450176224,-0.0170717631,0.04518665,-0.0100219138,0.0152547192,0.007902029,0.0068385652,0.0274810325,-0.081809245,0.0041235634,-0.0430174656,-0.0177056156,0.0035407711,-0.0254104473,-0.0201424267,0.0140785705,-0.0036693024,-0.0248751938,-0.0208607931,0.0070392853,0.003204477,0.0356366038,0.0528210513,-0.0263964403,0.0040425709,-0.0413835347,-0.0409891345,0.0188606363,0.0310728643,-0.0186493527,0.0343970694,-0.027171148,-0.0177337881,-0.0188747216,-0.0239455439,-0.0027466947,-0.0133954184,-0.0094655324,-0.0069653359,-0.0371015072,0.0304812677,-0.0058138371,-0.0397496,0.0166632812,-0.0462008119,0.0303122401,-0.0540042445,-0.0172689632,-0.0049863071,0.009493704,-0.0352985486,-0.0372705348,0.0574129596,-0.0204100534,0.0155364322,0.0621457286,-0.0046376884,-0.0407919362,-0.0209593941,0.037467733,0.0036305669,-0.0070357639,-0.0157758873,0.0154096615,-0.0350731798,-0.0585961528,-0.0948806927,-0.0138813723,-0.0172689632,-0.0794992,-0.0385382399,0.0430456363,0.0075428463,-0.0132686477,-0.0256499033,-0.0615823045,0.0296361316,-0.0182126984,-0.0599483736,0.0136912167,-0.036763452,-0.0090077501,-0.031382747,-0.0081485277,-0.0382283553,0.0181845278,0.007063935,0.0601737425,-0.0173816476,0.0338899866,0.0207058527,0.0350168347,-0.0164238252,-0.0442006551,0.0390453227,0.0139095439,-0.045834586,0.0318616591,0.0683997422,0.018846551,0.036763452,-0.0329603367,0.0153955761,-0.0015925547,0.0126207098,-0.0361436829,-0.0562579408,-0.0349604934,0.0279317722,0.0024473753,-0.019593088,-0.0095007466,-0.0546521805,-0.0209030509,-0.0615259595,-0.026424611,0.0177901294,-0.02100165,-0.0081133135,0.059779346,0.0008715473,-0.0296924729,-0.0159871709,0.0077189165,0.0261288136,-0.012113628,0.0118953008,0.0228468645,-0.0044616181,-0.0403130278,-0.0187338665,-0.0440034568,0.024931537,-0.003683388,0.009331719,-0.0231567491,-0.0253963619,-0.0403975397,-0.0378903002,-0.0007742686,-0.0118812155,0.0269598644,-0.0215791594,0.0069089937,-0.0598356873,-0.0637233183,0.0299460143,0.0675546005,0.0174802467,-0.0067610946,0.0227764379,-0.004584867,-0.0126770521,-0.0594412908,-0.0071590133,0.0379466414,0.0008240084,0.0405665673,0.0338899866,-0.0372141898,-0.0320588574,0.0279740281,-0.0395805761,0.0247202516,0.0194944888,-0.0393833742,0.0134165473,-0.0184380691,0.0655262768,-0.0000074142,0.0235793181,-0.0389889777,-0.0162407123,0.0058631366,0.0143461972,-0.0194240604,-0.0077963872,-0.0028083192,0.0035231642,-0.0293825902,0.0359464847,0.0092824195,0.0304812677,-0.024832936,0.0376367606,0.0437780879,-0.0113389194,-0.0236497447,0.0192550346,0.0412145071,0.0203959681,-0.0197198596,0.0289881937,0.013120749,0.0057680588,0.0125854956,-0.0496940464,-0.0315236039,-0.0110219931,-0.0244526248,0.0113530047,-0.0421723276,0.0050637783,0.0388199501,-0.0237483438,-0.0025001965,-0.0215087328,0.0241004843,0.0019455753,-0.0493841618,0.0063772616,-0.0091626914,-0.0190578345,-0.004313719,0.0371296778,-0.0213819612,-0.0216355026,-0.0513843186,-0.0264386963,-0.096345596,-0.0109093077,0.0183958113,-0.0016101617,-0.0117685301,0.0327349678,-0.0241286568,0.0177901294,0.0021920737,0.0051236418,-0.0051764632,0.0296924729,0.0529900789,-0.0191986915,-0.0438907705,-0.0116769737,0.0229454655,-0.0407074243,0.0440597981,-0.0229454655,-0.0139377145,-0.0595539734,-0.0061589344,0.0325377658,0.0260583851,0.0049827858,0.0113600474,0.0178323872,0.0076344027,-0.0176633596,0.0118741719,0.0120502422,0.0114023043,0.0396087468,-0.0164519977,0.0150997778,0.0024297684,-0.028762823,-0.01136709,-0.0418342724,0.0154941753,-0.0075146747,0.0126700094,-0.0218749586,-0.0048736222,-0.0509335808,0.0163252261,-0.016466083,-0.0215228181,0.0228891224,0.0161421131,-0.0192972906,-0.0015053999,-0.0687941387,-0.0104163112,0.0311855488,0.0516660325,-0.0086908238,0.0479192585,0.0361155123,0.0212833621,-0.0000023831,-0.0165787674,0.0316362865,0.0206495095,0.0189451501,0.0317208022,-0.0503138117,-0.0087189944,0.0264809541,0.0031182028,-0.0128531223,-0.0247343369,-0.0184098966,-0.0089232363,0.0082189552,0.0305939522,0.0484545119,0.0314109176,0.0195226613,0.0168604795,-0.0441161431,-0.0331575349,-0.0069442075,-0.0135503607,0.0055567748,0.0383410417,-0.0027396518,-0.0193395484,-0.0127263516,0.0134517606,0.0276923161,-0.0146349529,0.0379748158,-0.0105078677,-0.0272556618,0.0660896972,0.0167055372,0.05808907,-0.0322560556,-0.0078949863,-0.0245793965,-0.01342359,-0.0346506089,0.0485953689,0.065864332,-0.0145081822,-0.0285656247,-0.0332702212,-0.0008125638,-0.0257485025,0.0450739637,-0.0476938896,-0.0107895797,-0.0075498889,0.0385100693,0.0191000924,0.0290163644,0.0388481207,-0.0210298207,0.0095993457,-0.0088950647,0.0147898942,-0.0230863206,-0.0283965971,-0.0444541983,-0.0157758873,0.0224947259,-0.012698181,0.0480601154,-0.0112614483,-0.0098881004,0.0161421131,-0.0320025161,-0.0409891345,0.0246357378,-0.003234409,0.0440316275,-0.0339463279,-0.0253118481,0.0019297291,-0.0877251998,-0.0250864774,-0.0141137848,-0.0415525585,0.0374113917,0.0071308417,0.0075358031,-0.0106557664,0.0099726142,0.0162688829,-0.0343970694,-0.0221284982,-0.0211565923,0.0243117698,0.0460881293,0.0145786097,-0.0055673388,0.0035566175,0.0210579932,-0.0206213389,0.0029808681,0.0548212081,-0.0171562769,0.0300023574,0.0199452285,0.0459472723,-0.0343125537,-0.0068350439,-0.012719309,-0.0069653359,0.0394115485,-0.0166210234,-0.0120150289,-0.0087542087,-0.0818655863,-0.0489897653,-0.0184803251,-0.01239534,0.00860631,-0.0049088364,-0.0017712659,0.0751044899,-0.0217904449,-0.0002163462,0.0055039534,-0.0193254612,-0.0104022259,-0.0289600212,-0.0163252261,-0.0079090716,0.0458064154,0.0326222815,-0.0163111407,0.0356647745,-0.0111135496,0.0270584635,-0.0260583851,-0.0173675623,-0.0066202385,-0.0299741868,-0.024508968,-0.0207621939,-0.0037643802,-0.0038418511,-0.0536661893,-0.0229877215,-0.0063702189,0.0022255271,0.0183676407,-0.0270584635,0.0099585289,-0.0010414551,-0.0508490652,-0.0005907154,-0.024508968,-0.0534408167,-0.0549902357,0.0279740281,0.0157758873,0.0358901434,0.0144377537,0.0338899866,0.013282734,-0.0051658987,0.0127756512,-0.032932166,-0.0243540257,0.0254386179,0.0259457007,-0.0260302145,0.0251850765,-0.0120924991,0.0096627306,0.0109022651,0.0300868712,0.0352422036,0.0101979841,-0.0071202777,0.0282698274,-0.0125995819,0.0153251477,-0.0118248723,-0.0145363538,0.020579081,0.0058173584,-0.0040531354,-0.0386509225,0.0200860854,0.0039334078,-0.0084231971,0.0023628618,0.0274387747,0.0097331591,0.0016726666,-0.0336927883,-0.0138250301,0.0055215606,-0.0027220449,-0.037467733,0.000971027,-0.0104515254,0.0493559912,-0.0336082727,-0.0000381027,0.0126770521,0.0054264828,0.02572033,0.0011083618,0.0111205922,0.0323405676,-0.0132193482,-0.006782223,0.0120502422,0.0268190093,0.0194804035,-0.0007857131,-0.0324250832,0.0262696687,0.0227482654,-0.0001313924,-0.0178605579,-0.0239032861,-0.0282134842,0.0561452545,0.0204663966,-0.0029315683,0.0417779312,-0.0063737403,0.0343407243,-0.0216495879,-0.0214523897,-0.0591595769,-0.0130714495,-0.012979893,-0.0302840695,-0.0057011521,0.0067364448,-0.0153674046,-0.0190296639,-0.0075428463,-0.0265513826,-0.0416652448,-0.0010643442,0.0273260903,-0.0179309864,-0.0354957469,-0.0287487376,0.0021533382,-0.0072893049,0.0054616965,0.047384005,0.0090429643,0.0033523762,0.0340026729,0.0300586987,0.0358338021,-0.0101557272,-0.0170576777,0.0065251607,0.0194381475,-0.0170013364,-0.0082964264,0.0028030372,-0.0122122271,-0.018100014,0.0330448486,-0.0053384476,-0.0093035474,0.0123319551,-0.0239455439,0.0851897895,0.0103036268,0.0262696687,-0.0185789242,-0.0281712282,-0.019086007,-0.0003987989,0.0091767777,-0.0618640147,0.0306221247,-0.0159449149,0.0196635164,-0.0427075811,-0.0030600997,0.0115431603,-0.0012958765,0.02479068,0.0128883366,-0.0116628883,0.0363127105,0.0139447572,0.0123319551,0.0213256199,0.0011937558,0.0158040579,-0.0401158296,0.0316081159,0.0499194153,-0.0512998067,0.014008143,-0.0538915582,0.0052785836,0.0014710663,-0.0153955761,-0.0309320074,0.0332983918,0.0484826826,-0.0056800237,0.01608577,-0.0224242974,0.011951643,-0.033720959,0.0098176729,-0.0202410277,0.0014525789,0.0572721064,-0.0518632308,-0.0062751407,0.0092612905,-0.006711795,-0.0596666597,-0.0135362744,-0.0131418779,-0.0018681046,0.0073315618,-0.0206213389,0.0165646821,-0.0265091248,-0.0433273464,0.0238892008,-0.0274387747,0.0262978412,-0.0026551383,-0.0208185371,-0.0308756661,0.0340026729,-0.0370451622,-0.0081907846,-0.0517505445,0.0064969892,-0.0056694597,-0.0231990051,0.0554691479,-0.0207481086,0.0230299775,0.0265513826,0.005856094,-0.0260161292,-0.0076414454,0.0051729418,0.0228891224,0.0018047192,0.022917293,-0.0043594972,-0.002378708,0.0031569381,-0.0377212726,0.0019737466,-0.0166914519,0.0039087576,-0.0078597721,-0.005613117,0.0029438932,-0.0396087468,0.0410454795,0.0164519977,0.0166773666,-0.0233257767,-0.015339233,0.0133954184,-0.0041587777,-0.0035020357,-0.0197198596,-0.0140996994,0.003482668,-0.0058173584,0.0008160853,0.0337773003,0.0081485277,0.0405383967,-0.0412426777,0.0181845278,-0.0013548599,0.009050007,-0.0292417333,-0.0061201993,-0.0166914519,-0.040594738,-0.0373550467,-0.0339744985,0.0017334109,0.0033189228,0.0610188767,-0.0146349529,-0.0134517606,-0.0045461319,0.0189874079,-0.0099374,0.0131489206,0.0077682161,-0.0472713187,-0.0460036136,-0.0040003145,-0.0055462103,-0.0018628224,-0.0102754552,-0.0347069539,-0.025959786,-0.0251850765,0.0027308483,-0.0051905485,0.0249456223,0.0068843435,0.0014464165,0.0100923423,-0.0921762586,-0.0204945672,0.031382747,-0.0083386833,-0.0137405163,0.0016004778,0.0126559241,0.0281007998,0.0046799453,-0.0052609765,0.011810787,-0.0659206733,-0.0301432125,-0.0020195248,-0.0164519977,0.0159590002,0.0011664649,0.0197621156,0.0355239175,0.0191141777,-0.0342843831,0.0042644194,-0.0155646028,0.0606808253,-0.0033770259,0.0036728238,0.0011435758,0.0509617515,0.0191705208,-0.0080992281,-0.0069195577,0.0028012765,0.0141842132,-0.0111769345,-0.0095218746,0.0173816476,0.0021374919,-0.0017624624,-0.0106275957,-0.0133813331,-0.0209875647,-0.0476657152,0.0371296778,-0.0346787795,0.0312982351,-0.0199311431,0.0016101617,0.0305376109,-0.0035214035,0.0020353713,0.0235511456,0.0113107478,-0.0022871515,0.0048208013,0.0065075536,-0.0010986779,-0.028340254,-0.0069442075,0.0031322883,0.0030583388,-0.0188747216,0.0062223198,0.0029386112,-0.0554691479,-0.0221284982,-0.0161280278,0.0183676407,0.0368479639,-0.0075217178,-0.0147758089,0.015437833,0.0374959037,0.0424258672,-0.021424219,0.0063244407,0.0122896982,0.0185648389,0.0060427282,-0.0137827732,-0.0148884933,0.0261992421,0.0000856691,-0.0351576917,0.0216636732,-0.0149870934,-0.0197762009,0.006651931,-0.0125432387,-0.0007610633,-0.0117544448,0.0593849458,-0.0136419171,-0.025678074,0.0174520761,0.0143602835,0.020719938,0.0308474936,0.0300305281,-0.0016849915,-0.0067082737,0.045834586,-0.0150997778,0.0064336038,0.0170013364,-0.0245793965,-0.0054546539,0.0047362875,0.0042256843,-0.0092472052,0.0016867522,-0.0113811763,-0.0068456084,0.0237765163,0.0361718573,0.0035372498,0.0057293233,0.0179450717,-0.0077400445,0.0085851811,-0.0124728112,0.0396087468,-0.0151842916,-0.01608577,0.0356366038,-0.0283965971,0.0388199501,0.0426230654,0.0036552167,-0.0051518134,-0.0312137194,-0.004313719,0.0511026047,-0.0055602961,0.0383973829,0.0114093469,-0.0273824334,0.0093458043,-0.014733552,0.0074090329,0.0367352813,-0.0058525726,-0.0006756693,0.0164519977,-0.0085851811,0.0346506089,-0.0232694335,0.0184380691,-0.0020776279,-0.0291008782,0.0162266269,0.0300023574,-0.0317771435,-0.0240723137,0.0641740561,0.0082612121,0.0411299914,-0.0489052497,-0.0212551914,-0.0457782447,-0.0111980624,0.0071730986,0.0374113917,0.0311292056,0.010479697,0.0258330163,-0.0258893576,-0.027171148,-0.0047926302,-0.0142405555,0.0077963872,-0.0038348082,0.0165224243,0.0030266463,0.0206354242,0.0397214293,0.023339862,0.0184098966,0.0220298991,0.0005180865,0.0075005894,-0.0261710696,-0.0017686249,0.0052468912,0.0363972262,0.029748816,-0.0440034568,-0.0115009034,0.0179309864,-0.0174239036,0.029467104,0.0170295071,-0.0015995975,0.0167337097,0.0046729022,-0.0185648389,0.0216636732,0.0342843831,0.0017510179,-0.0220017284,0.0232694335,-0.0035988742,0.0124939391,0.0054194396,-0.0248751938,-0.0079935854,0.0528773926,-0.0161139425,0.028720567,-0.0213397052,0.0532717891,0.0034104793,0.0192127768,-0.0045602173,-0.0128038228,-0.0195790026,0.0235652309,0.0176211018,0.0120431995,-0.0183535554,-0.032932166,-0.0355802588,-0.029185392,-0.0092401626,0.0197198596,-0.0310165212,0.0417215861,-0.0016444954,-0.0000939775,-0.0047891089,0.0074160756,0.0024931536,0.0100219138,0.0102684125,0.0169027373,0.0286783092,0.0171985347,0.0080287997,0.010240241,-0.0094232755,0.0133531615,0.0010440961,0.0185930096,-0.005937086,-0.0056765024,-0.0124235116,-0.010641681,0.0462853275,0.0262414981,0.0354957469,-0.0095782178,0.0180859286,0.0099374,0.0180718414,0.0030724246,0.0387917794,0.0207762793,0.0055497317,0.0219735578,-0.0083457259,-0.0102472836,0.0043454119,0.0331575349,0.0032361697,0.0045179604,0.0075217178,0.0050250427,-0.0215932466,-0.0012580213,0.0206776801,-0.0026956343,-0.0263119265,0.0180577561,0.0207621939,-0.0180436708,0.0141419563,0.030960178,-0.0457782447,-0.0095077893,-0.017916901,-0.0010916351,-0.0333265625,0.0012228073,-0.0141137848,-0.0245653111,0.0348759778,-0.0243540257,0.0178042166,-0.0288473368,0.0332983918,-0.008141485,0.0005634245,0.0282275695,-0.0109374793,0.0260161292,-0.0299460143,0.0059828642,0.0061941487,0.0230158921,0.0036904309,-0.0197621156,-0.0005405354,-0.0052292841,0.007761173,0.0219031293,0.010641681,-0.0002988791,-0.0156350303,-0.0160998572,-0.0110149495,0.021748187,-0.0050743422,0.0022149628,0.0034333684,0.0433836915,-0.0075358031,0.0090852212,0.018804295,0.0076062316,0.0134165473,0.0396932587,0.0053877472,-0.0022765873,0.0334110744,0.0415525585,-0.0052187201,0.0211143345,0.0377776176,0.0249033645,-0.0172407907,0.0286078807,0.010240241,-0.0093810186,0.01096565,0.0207621939,-0.0289318506,0.0083738975,0.0104303965,0.0052328054,0.0036693024,-0.0082400842,0.0103177121,-0.0003523604,-0.011550203,-0.006268098,0.0101627698,-0.0064582541,0.0348478071,0.0052644983,0.0137968585,0.0300305281,0.0553282909,0.0114938607,-0.0092753768,0.0298051592,-0.0117333159,0.0014296898,0.0065005105,-0.0136982594,0.0017950354,0.0336082727,-0.0093458043,0.0057891873,-0.0270443782,0.0123178689,0.009071135,-0.0118037444,-0.0085992673,0.0303967539,-0.0035037964,-0.0083668549,0.0261992421,0.0431583188,0.0067258803,-0.0003820723,-0.0315236039,0.0014314505,0.0058314442,-0.0212551914,0.0044686608,0.015198377,0.0197339449,-0.0351576917,0.015437833,0.0445668809,-0.0003109839,0.0145363538,-0.0281853136,0.0073526902,-0.010219113,0.006581503,-0.0059934286,-0.0332138762,0.0023241262,-0.0041799056,-0.0176492743,0.0338336453,0.0107895797,-0.0192832053,-0.0132123055,-0.0486517102,-0.020297369,-0.012254484,-0.0064300825,-0.0186352674,0.0346506089,0.0026111207,0.0448485948,-0.0118671292,0.0123037836,0.0197339449,-0.0191000924,0.0079090716,-0.0104444828,0.0072611338,-0.0323405676,-0.0359464847,0.0270021223,-0.0199593138,0.0000709783,-0.0458627567,0.0163956545,0.013120749,0.0063033123,-0.0072400053,0.0271148067,0.0202832837,0.0066448883,0.0183535554,0.0257344153,-0.0240582284,-0.0167618804,0.018804295,-0.0475530326,0.029044535,-0.0173675623,-0.0143109839,0.004363019,-0.0015987172,-0.0135926176,0.0132545624,0.011691059,-0.0185225811,0.0236356594,0.0158604011,0.0121910982,-0.0099092294,-0.0349604934,0.0031129206,0.0019314898,-0.0029755859,0.0271852352,0.0173957329,-0.0258471016,0.0262696687,0.0341998711,-0.0057152379,-0.0061730202,-0.0076837023,-0.0081485277,0.0104163112,-0.0117192306,0.0036411311,0.0258048438,0.0040777852,0.0310728643,0.0308193229,-0.0021286884,0.0107191522,-0.0212833621,-0.019128263,0.0328194797,-0.0016506579,-0.0014983572,0.0114023043,-0.0006158054,0.014733552,0.0326504521,-0.0142335128,-0.0062293625,-0.0086626522,0.0010256087,-0.0084795393,0.037552245,-0.0058737011,0.0139518008,0.0154660037,-0.0071414062,-0.0218186155,0.0277627446,-0.0027731052,-0.0329885073,0.0194240604,-0.0182972122,0.0018152834,0.031101035,-0.0075921458,0.0147758089,0.003929886,0.0174239036,-0.0222834405,-0.0156350303,-0.0248751938,0.0338336453,0.0047116377,0.0257485025,-0.0376367606,0.0067787017,-0.0094866604,-0.0177056156,-0.0055602961,-0.0116135888,0.0168604795,0.0037784658,-0.0153955761,0.0226074103,-0.0256076455,0.0021304491,-0.0096697742,-0.0023329298,0.0010573014,-0.0070885853,-0.0133602042,-0.0136700878,0.0022202448,0.0275092032,-0.0042749839,-0.0201565139,-0.0002839132,-0.0029033972,0.0081203561,0.0203537121,-0.0133813331,0.0110501638,0.0296361316,-0.0122685693,-0.0155927744,-0.024832936,0.0077330018,0.0039545358,-0.0201142561,-0.0150293494,-0.0057821446,-0.0202691983,0.017494332,0.0324250832,0.0199170578,0.0344815813,0.0208044518,-0.0272556618,0.0157054588,-0.0411863327,0.005926522,-0.0243821964,0.0041658203,-0.0096416026,0.0445668809,-0.0118600866,0.0106768953,-0.0145645244,-0.015480089,0.0247343369,-0.004373583,-0.0336646177,0.0087330807,0.0285937954,-0.0438625999,0.0010071214,0.045130305,-0.0016136831,-0.0495813601,0.0222552698,-0.0190296639,0.0045320462,-0.0270443782,0.0003098835,0.0024227255,0.043496374,-0.0022642624,0.0208889656,-0.0108459229,-0.0252273344,-0.0302277263,0.0329885073,0.0003693072,-0.0190719217,-0.0109938215,0.0081907846,-0.0465106964,0.0371578485,-0.0180577561,-0.0041693416,-0.016043514,0.0155646028,0.0137264309,0.0506518669,0.0121558849,0.0202410277,0.0001386553,0.0076555312,-0.002928047,-0.000795397,-0.0096627306,0.0154237468,-0.0127474805,-0.0398622863,0.021466475,0.0110149495,0.0006065617,0.0010837119,-0.0075146747,-0.0251569059,0.0092965048,0.0000013824,-0.0235934034,0.0299460143,0.0140574425,0.0177337881,-0.0387636088,-0.0586524941,0.0261428989,-0.0044968324,0.0162407123,0.0146208666,0.0060110358,0.0159730855,-0.0081203561,0.0211988483,0.0187479518,0.0035795067,-0.0013372529,-0.000742576,-0.0099937432,-0.0284670256,-0.0336927883,0.0097120302,0.0040284856,-0.0187197812,-0.0256499033,0.0008002389,0.0002975586,-0.0003618242,0.0114445612,0.0119093861,0.0117474021,-0.0001448177,0.0056941095,0.0229313783,0.0208185371,0.0038207227,0.0044897893,0.0023311691,0.0170576777,0.0080287997,-0.0313545763,0.0379184708,0.0239455439,-0.0075217178,0.0126911383,-0.0192409474,0.0030847494,0.0270725489,-0.0151279494,-0.000288535,0.0107332375,0.0118882582,0.0001045967,0.0173112191,0.0331575349,-0.0049405289,0.0048489724,0.0078949863,0.0011444561,-0.0066871452,-0.0073879045,0.0402003415,0.0033470939,0.0269316938,-0.0054757823,0.0130714495,-0.0037009949,0.0415525585,0.0071237991,0.0158322304,-0.0324814245,0.0052961907,-0.0246075671,0.0255090464,0.0108107086,0.0156491175,-0.0242554266,-0.0226919241,0.0145222675,-0.0604554527,0.0139095439,-0.0035953529,0.042087812,-0.011085378,0.0033013157,0.0095570888,-0.0086908238,-0.0019156435,0.0316362865,-0.0062187985,-0.0246639103,-0.0099867005,0.0062328842,0.0313545763,0.0036200027,-0.0258189291,-0.000363805,0.0436654016,0.0086626522,0.0220580716,0.010641681,-0.0207481086,0.0247765947,0.0263541825,-0.0059124362,-0.0276078023,-0.0051025134,-0.008726038,-0.0035566175,-0.0075428463,-0.023339862,0.0014816305,-0.0151561201,0.0098035876,0.0027449341,-0.0057574944,-0.0002856739,0.0314109176,0.0394678898,-0.0021867915,0.01721262,0.0505391806,0.0125854956,-0.0048701009,0.0300023574,0.029044535],"60":[-0.0074930252,0.0075273025,0.0778232589,-0.0237610489,0.0653188899,0.0119559346,-0.0089189624,0.0126072038,-0.0394600667,0.0016273165,0.028518742,-0.0296156164,-0.0204841346,-0.0168096051,0.0424216278,0.0295607727,0.01820812,-0.0208817516,-0.0049359361,0.0185371824,-0.021581009,0.0308221802,0.0243917517,0.036224287,0.0051004672,-0.0287929606,-0.0010523142,0.0335643664,0.0317271017,-0.0816623196,-0.0039041885,-0.033646632,-0.0473301448,0.0335095227,0.0582440458,0.0125317937,0.0289574917,0.0033660342,0.0249950327,-0.0149174957,-0.0085624782,-0.0051210336,0.0023737054,0.0299721006,-0.0062658968,0.0179750342,-0.0095770871,-0.0231166352,0.0387196764,0.0708032623,-0.0498529561,0.0086584548,-0.0410231128,-0.0192364398,0.0105779851,-0.0009940427,-0.0048193932,-0.0001677447,0.0132241957,-0.0223076902,-0.0004704564,-0.0564342029,0.029505929,0.0505659245,-0.0267088991,0.0130802309,-0.022554487,0.0341950692,-0.0487012379,0.0154933557,0.0298624132,0.0036471083,0.0033831729,-0.0208543297,0.0136355236,-0.0493319407,-0.0259410869,0.0598893575,-0.0122918524,-0.0121890204,0.014451324,0.010886482,-0.0040858584,0.0272984691,0.0370469429,-0.0463429578,-0.0297253039,0.0005587206,-0.0038013563,0.0218963623,0.0006139927,0.052046705,-0.0200590957,0.0150957378,0.0211422592,0.0291494448,0.0434088148,0.0130459536,0.0154933557,0.0232263226,-0.0052101547,-0.0270105395,0.0057585924,-0.0251458529,0.0173854642,-0.0330981947,0.0119902119,-0.0164531209,-0.012771735,0.0315351486,-0.0963056013,-0.0355661623,-0.0479882695,0.0013985153,0.0014207956,-0.0341950692,-0.0120039228,0.0417635031,-0.0116268722,-0.0101735126,-0.0110441577,0.0226367526,-0.0174677297,0.0102146454,0.0018235542,-0.026516946,0.024336908,-0.0565438904,-0.0317545235,-0.0055117956,0.0438475683,-0.0045280359,0.0306850709,-0.0480431132,-0.0330981947,-0.0254749153,-0.0306850709,-0.0116954269,0.0060533774,-0.0105642742,0.0350999907,-0.0432991274,-0.004603446,-0.0023497113,-0.0377599113,0.0250635874,-0.0000740176,0.0355935842,-0.0303834286,0.0020514985,-0.0114966184,-0.0204292908,-0.0475769415,-0.0115994504,0.0457122549,-0.0071776737,0.0245562829,0.0339208506,0.0016855879,-0.0604377948,-0.0280251484,0.0493593626,-0.0136286682,0.0040961416,-0.017426597,0.0043292274,-0.0301914755,-0.052046705,-0.0952635705,-0.0282171015,-0.0525402986,-0.0627960786,-0.0043772156,0.019195307,0.0090217944,-0.0193324164,-0.0125729265,-0.0508949868,0.0105299968,-0.0258862432,-0.0691579506,-0.0138274767,-0.0059128404,0.0062007699,-0.0218415186,0.0019263863,-0.069870919,0.0445605367,-0.0063310238,0.061534673,-0.0430523306,0.0541033447,0.002224599,0.0309044458,-0.0015613326,-0.0410231128,0.0489754565,0.0367453024,-0.0293413978,0.0205389783,0.0703645125,0.0005570067,0.0302737411,0.0194832366,0.0234456975,0.0503465496,0.0215672981,-0.0153014027,-0.0595602952,-0.0483447537,0.0098375948,0.0054912292,-0.0074450369,0.0189759322,-0.0617540479,-0.0277372189,-0.0365259275,-0.0122232977,0.0158635508,-0.009206892,0.0039316104,0.0457122549,0.0135326916,-0.0155756213,-0.0123124188,-0.000482025,0.0282719452,-0.0397617072,0.0294510853,-0.0032751993,0.0206075329,-0.0234182756,-0.027325891,-0.0311238207,0.0300543662,0.0125592155,0.0031706535,-0.0138686094,-0.0074039041,-0.0184274949,-0.0199219864,-0.0127648795,-0.0220197607,0.0056900377,-0.0063447347,0.0301092099,-0.0304931179,-0.070858106,0.0318093672,0.0476317853,-0.0112635326,-0.0327417105,-0.0013608102,-0.0478237383,-0.0265717898,-0.0539662354,0.0141771054,0.0181121435,-0.0065298323,0.0225819089,0.0286832731,-0.0255023371,-0.0097827511,0.002673632,-0.0067834845,0.0031843644,0.0244465955,-0.0349628814,0.0125180827,0.0141633945,0.0284364764,0.0400359258,-0.0114349192,-0.0531161577,-0.0152465589,-0.0109550366,0.0007613853,-0.0345241316,-0.0072462284,-0.0061459262,-0.0339756943,-0.0435459279,0.0256805792,0.00326663,0.0429974869,-0.0080277519,-0.0103791766,0.025337806,-0.0069891484,-0.0337288976,-0.0054329573,0.0001924887,-0.0038219229,-0.0249676108,0.0008809275,-0.0074724588,-0.0120313447,0.0073079276,-0.0673481077,-0.0424216278,0.0186468698,0.0003712664,0.009707341,-0.0405295193,0.0040173037,0.0121204657,-0.0387745202,-0.0046891393,-0.0099267159,0.0102626337,0.0208131969,-0.0030078362,0.0189210884,-0.011270388,-0.0324400701,-0.043518506,0.0641671717,-0.0535274856,-0.0073559158,-0.060931392,-0.0402553007,-0.0908212289,-0.0295607727,0.001079736,0.020401869,-0.0171798002,0.0233085882,-0.0016341719,0.0098787276,-0.0084733572,0.0063001742,-0.0068691778,0.0199768301,0.0306302272,-0.0110990014,-0.0512240492,0.0165353864,-0.0044869031,-0.0110921459,0.0123878289,-0.0475769415,-0.0092548802,-0.0585731082,0.0292865541,0.0155756213,0.0280114375,-0.0042298231,0.0329885073,-0.0047371276,0.0119079463,-0.028107414,-0.0151642924,0.0178379249,-0.0154522229,0.0382809266,0.0412973315,-0.0136355236,-0.0338934287,-0.0265032351,-0.0228972603,-0.0081374394,-0.0076918341,0.0420377217,-0.0011928512,-0.024528861,0.0251869857,-0.0222528465,0.0024234075,0.0016564522,-0.0010523142,0.0286832731,-0.0051176059,-0.0114691965,0.0046137292,-0.0745326355,-0.0071296855,0.0292591322,0.0452186614,0.0006139927,0.0268871412,0.0177556593,-0.0011500046,0.0136698009,-0.0157675743,0.0394874886,0.0538017042,-0.0178927686,0.006327596,-0.0580246709,-0.0164668318,0.0219786279,-0.0116200168,0.0137520665,0.0008436509,0.0039247549,-0.0224447995,0.0013188204,0.0155344885,0.0503739715,0.0154933557,0.0270105395,0.0130253872,-0.0376502238,-0.0244465955,0.0060259555,0.0021886078,0.0197026115,0.0238433145,-0.0045760241,-0.0251184311,-0.0119353682,-0.0194283929,0.0484544411,-0.0140811289,0.0388293639,-0.016425699,-0.0373211615,0.0709677935,0.0070474199,0.0406117849,-0.0335917883,-0.0243643299,-0.0113869309,-0.0292865541,-0.036224287,0.0432991274,0.0302737411,-0.0000910492,-0.0404746756,-0.0389390513,-0.0049702134,-0.0008757859,0.0292317104,-0.0629606098,-0.0498529561,-0.0131076528,0.0051210336,-0.0185371824,0.0438475683,-0.0210462827,-0.0257902667,-0.0010600266,-0.0170015581,0.0375953801,-0.01020779,-0.0264621023,-0.0523483455,-0.0187428463,-0.0296156164,-0.0050319126,0.0332353041,-0.0078495098,0.0218689404,0.0295333508,-0.0160006601,-0.0614249855,0.0184686277,-0.0388567857,0.0545695163,-0.0260644853,-0.0327142887,-0.0239941347,-0.0237336271,-0.0137863439,0.014053707,-0.0392132699,0.0545695163,0.02613304,0.0323303826,-0.0166450739,0.0142045273,0.0355113186,-0.0055563562,0.0000444802,-0.017412886,0.0021834662,0.0328788199,0.0187702682,-0.022348823,-0.012374118,0.0292865541,-0.0357855372,-0.0133338831,0.0377324894,0.0211559702,0.0188799556,0.0281896796,0.0216221418,-0.0138548985,0.0051724496,-0.0293962415,-0.0051416,0.060931392,-0.0157812852,-0.0463429578,-0.0012177023,-0.081388101,-0.0329610854,0.0259410869,0.0019640913,0.0167547613,0.0064201448,0.0047679772,0.0777684152,-0.0280799922,-0.0074107596,-0.0069994316,-0.0050147739,-0.0167273395,-0.037814755,0.0067732013,0.0173580423,0.0232400335,0.020004252,-0.0188388228,0.034441866,-0.0160966367,0.0085967556,-0.0166724958,-0.0021406196,-0.0099952705,-0.0368824117,-0.0310141332,-0.0028193109,0.0064852717,-0.0030335442,-0.0617540479,0.0004550316,-0.0216769855,0.0130322427,0.0280114375,-0.0337563194,0.0177008156,0.0082676932,-0.0536097512,0.0039384658,0.0012965401,-0.0302737411,-0.059999045,0.0106671061,0.0201550722,0.0497981124,0.0296430383,0.024131244,-0.0022280267,-0.0338111632,-0.0053027035,-0.0211011264,-0.0161377694,0.0332901478,0.028902648,-0.0243231971,0.0166999176,0.0011645724,0.0113526536,-0.012374118,0.0317545235,0.0260096416,0.0131487856,-0.0121204657,0.0107288053,-0.0232948773,0.0115994504,-0.0047131334,-0.0063447347,0.0159321055,-0.0049667857,-0.0310141332,-0.0538017042,0.0231029242,-0.0149860503,0.0004845958,0.0058614244,-0.0046822838,-0.0020617817,0.0220608935,-0.0295881946,-0.026516946,0.0208954625,0.0115446066,-0.0321384296,-0.0341676474,-0.0391035825,0.0101735126,-0.0366904587,0.0170564018,0.0169741362,0.034441866,0.0224859323,-0.0249676108,0.003612831,0.0212793685,-0.0116337277,-0.0121478876,0.0143005038,0.0117022824,0.0379518643,0.0206897985,-0.0043257996,0.0192775726,0.0232811663,0.0141222617,0.0035048574,-0.0199219864,-0.0165490974,0.0135052698,-0.0057585924,0.0409408472,0.0514708459,-0.005193016,0.0364710838,-0.0182355419,0.0027696087,-0.0360049121,-0.015836129,-0.0176322609,-0.0178790577,0.000726251,0.006673797,-0.0279017501,-0.0264895242,-0.0386374108,-0.0093371458,-0.0526774079,-0.0008912107,0.0125523601,-0.0168781597,-0.0404746756,-0.0519095957,0.0330707729,0.0008325108,-0.0051998715,0.0524854548,-0.0034911465,0.016220035,0.0415167063,0.0295881946,0.015438512,-0.0073901932,-0.0150957378,-0.0023857024,0.0018561176,0.0199768301,-0.0051827328,0.0192227289,-0.0199494082,-0.0134572815,0.0202647597,-0.0173580423,-0.0121204657,-0.0065538264,-0.0444508493,0.0542678759,0.0405020975,0.0191678852,-0.0179887451,-0.0073764822,-0.0197026115,0.015438512,0.0210188609,-0.0503191277,-0.0091383373,-0.0016478829,0.0221020263,-0.0242135096,0.0192501508,0.0309318677,0.0117502706,0.0223351121,0.0248030797,-0.0274218675,0.020196205,0.025927376,0.0308221802,0.0248716343,-0.0154110901,0.0237884708,-0.0361145996,0.0110167358,0.0418457687,-0.0481528006,-0.0100158369,-0.0260781962,0.0100432588,0.0086995875,-0.0192364398,-0.0071776737,0.0264895242,0.0410231128,0.0110441577,-0.0062419027,-0.0097553292,0.0018372651,-0.0297253039,0.0089806616,0.0046377233,0.0070679863,0.043518506,-0.0360871777,-0.0081854276,-0.0004807396,-0.009001228,-0.0545695163,-0.015054605,-0.0063378792,0.0284638982,0.0102763446,-0.0154110901,0.0259547979,-0.0183589403,-0.0342773348,0.012771735,-0.0228835493,0.0133681605,-0.022952104,-0.0231303461,-0.0191267524,0.0354564749,-0.034633819,-0.0056934655,-0.059011858,-0.0076849787,-0.0272436254,-0.0459864736,0.0435459279,-0.0347435065,0.0298075695,0.0310963988,-0.0091246264,-0.0024114104,0.0028313079,-0.0053027035,0.0218963623,-0.0112635326,0.0259547979,-0.0151368706,-0.0082128495,-0.0084870681,-0.0351274125,0.0007541014,-0.0335095227,0.0087681422,-0.00653326,-0.0141771054,0.0133544495,-0.0354838967,0.0267363209,0.0323029608,0.0244740173,0.0003757653,-0.0190993305,0.0123878289,-0.0104751531,0.002044643,-0.0082402714,-0.0336740538,-0.0242683534,0.0054878015,0.0022743011,0.0145061677,0.0147392536,0.0343596004,-0.0341402255,0.0422296748,0.0025365227,0.0055597839,-0.0402827226,0.0059196958,-0.0057551647,-0.0506481901,-0.0267774537,-0.0085487673,0.0172894876,0.0110030249,0.0551453754,0.0007091124,0.0092206029,0.0122164423,0.0189896431,0.0011739987,0.0227875728,0.0124838054,-0.0296156164,-0.0280799922,-0.0117434151,-0.0086310329,-0.0037602235,-0.0262153056,-0.02672261,-0.0298349913,-0.0344692878,0.004205829,0.0005531505,-0.0136903673,0.0102900555,-0.0033797452,-0.0034105948,-0.0932891965,-0.0232811663,0.0234045647,-0.004397782,-0.0002070565,-0.0056523327,0.0083910916,0.0217729639,0.0265992116,-0.0198534317,0.0068760333,-0.0596699826,-0.0221980028,-0.012079333,-0.0052718539,0.0028672991,0.0109550366,0.0138754649,0.0154110901,0.0166724958,-0.0251047201,-0.0025056731,-0.0239941347,0.0684998259,-0.0108522037,-0.0332901478,-0.0008192283,0.0563245155,0.0020172212,-0.0023085785,0.0276686642,-0.0119970674,-0.0160143711,0.0098787276,-0.0251047201,0.0098513057,-0.016631363,0.0002868584,-0.0280525703,-0.0008445078,-0.0211422592,-0.0434088148,0.038006708,-0.0507030338,0.0421199873,-0.0132379066,-0.0064578499,0.0194969475,-0.0233634319,0.0036094033,0.0391858481,-0.0017498579,0.0096319309,-0.0125112273,-0.0004383214,0.0127991568,-0.0318916328,-0.0112909544,0.0008436509,0.0239255801,-0.0383083485,0.029505929,0.0024371184,-0.0381438173,-0.0180710107,0.0148763629,0.0025468059,0.038418036,-0.0109070484,-0.0265855007,0.0056831823,0.0245151501,0.0211422592,-0.0071845292,0.0177008156,-0.010886482,0.0178653467,0.0132858949,-0.011270388,-0.0259410869,0.0324674919,-0.0145610115,-0.0368549898,0.0214027669,-0.0197437443,-0.0211148374,0.0090903491,0.002416552,-0.0052135824,-0.0111949779,0.0477140509,-0.0032289249,-0.0234182756,-0.0000714468,-0.0032546329,0.0150683159,0.0157812852,0.0239941347,-0.0018012739,-0.0069925762,0.0485915504,-0.0017755659,0.0081237284,0.0083568143,-0.0056283385,-0.0383906141,0.0241860878,-0.0047714049,0.0040344424,-0.0051210336,-0.0031843644,0.0072736503,0.0127443131,0.0379792862,0.0002521526,0.0120039228,0.021183392,0.0110578686,0.0155756213,-0.0305479616,0.0321384296,0.0024868206,-0.0330159292,0.0480705351,-0.0150820268,0.0196614787,0.0108453482,0.0006302745,-0.0040344424,-0.0066703693,0.0075890017,0.0565438904,-0.0254200716,0.0477963164,0.0043806434,-0.0113389427,0.0157812852,0.0235690959,0.0110304467,0.0348531939,0.0058751353,0.0106533952,0.0195106585,-0.0323303826,0.0246522594,-0.0172072221,0.0137177892,0.0076095685,-0.0038836221,0.0474672541,0.0296430383,-0.0420102999,-0.0332901478,0.0735454485,-0.017412886,0.0591763891,-0.0256120246,-0.0368824117,-0.020799486,0.0109070484,0.0282171015,0.0307124928,0.010694528,0.0183452293,0.0188662447,-0.0160006601,-0.0113389427,0.0063481624,-0.0249813218,0.0040927138,0.0077535333,0.0077603888,0.0120930439,0.0139303086,0.0525402986,-0.003240922,0.0177693702,0.0205526892,-0.0221020263,0.025529759,-0.0316448361,-0.0061390707,-0.0076986896,0.0471656136,0.0266951881,0.0021783246,-0.0298349913,0.0300269444,-0.0047919713,0.0329336636,0.0153425355,0.006584676,0.0132379066,0.0426135808,-0.0161926132,0.0199631192,0.0232400335,0.0137246447,0.0002836449,0.0086378884,-0.0368824117,0.0128540006,-0.002971845,-0.0121067548,0.0099198604,0.0483173318,-0.0066395197,0.0306850709,-0.0455203019,0.0309318677,0.0140811289,-0.0000385352,-0.0220060498,-0.0087955641,-0.0158498399,-0.0076644123,0.0215124544,0.0121136103,0.0044663367,-0.0320287421,-0.0369920991,-0.0342499129,-0.0386922546,0.034633819,-0.0421474092,0.0335917883,0.0035134268,0.0014962057,0.0155481994,-0.0066806525,-0.0057277428,0.0272024926,0.0189896431,0.0087132985,0.0327417105,0.0228561275,0.0166587848,-0.0026324992,-0.00568661,0.011181267,0.0151094487,0.0110373022,-0.0145747224,-0.0287929606,-0.0249538999,0.0029735588,0.0255983137,0.0331256166,0.0295881946,-0.0241038222,0.0105162859,0.002198891,0.0234319866,0.0052924203,0.0438201465,0.0015227706,-0.0012536935,0.032851398,0.0046240124,0.0027713226,-0.0016650215,0.0424216278,0.0053746859,-0.0108590592,-0.0015022042,-0.0066600861,-0.0132104848,0.0045314636,0.0214301888,0.0052718539,-0.0287929606,0.0391584262,0.0099815596,-0.0141908163,-0.0007618138,0.0358678028,-0.0465074889,-0.0191678852,-0.0058682798,-0.0127511686,-0.0019126753,0.0062590414,-0.0350725688,-0.0246659704,0.0471930355,-0.034825772,-0.0080551738,-0.0138206212,0.0316174142,-0.0246385485,-0.0130459536,0.0477140509,-0.0246796813,0.0286284294,-0.0440943651,0.0240901113,0.0200179629,0.032056164,-0.0023822747,-0.0217181183,0.0123124188,-0.0218963623,0.0242546424,0.0250635874,0.0109070484,0.0054261019,-0.0147666754,-0.018413784,0.0021834662,0.019195307,-0.0053815413,0.0250772983,0.007431326,0.059011858,-0.0070062871,0.0018424067,0.0268597193,0.0176322609,-0.0019520943,0.037211474,0.0137246447,0.0129911099,0.0291768666,0.0490028784,-0.0110921459,-0.0051244614,0.0239941347,-0.0025416643,-0.0270105395,0.0259547979,0.0008397947,0.0012194162,-0.0066669416,0.0287655387,-0.0236239396,0.0177145265,0.0286832731,-0.0089463843,0.0027970306,-0.0065949592,0.0113115208,-0.0025519475,0.0035648427,0.0019520943,0.0028895794,-0.0054672351,0.0278331954,0.0170701127,0.0072050956,0.0178653467,0.0535274856,-0.0016118917,-0.0375953801,-0.0068588946,-0.0163297225,0.0037567958,-0.0001525341,-0.0029872698,-0.0186880026,0.0197437443,-0.0214713216,0.0090423608,-0.0490577221,0.0147666754,0.0139028868,-0.0121136103,-0.0262290165,0.0301640537,0.0038390616,-0.018016167,0.0313157737,0.0366630368,-0.0092617357,-0.0372663178,0.0023976995,-0.0214438997,0.0161789022,-0.0119285127,-0.0159458164,0.0391310044,0.011476052,-0.0509224087,0.008308826,0.0506756119,0.0033077628,0.0089532398,-0.0240901113,0.0112566771,-0.0112086888,-0.0022108881,-0.0017841352,-0.0156441759,-0.0115308957,0.0036745302,-0.0019675191,0.0443960056,-0.0105299968,-0.0133475941,0.0062213363,-0.0234594084,-0.0121958759,0.007225662,0.0203470252,-0.0167410504,-0.0032066447,0.003859628,0.0290671792,-0.0078563653,0.0157812852,0.012758024,0.0029324261,0.0231851898,-0.0232537445,0.0103380438,-0.032056164,-0.0398165509,0.0246111266,0.0087132985,-0.0054329573,-0.0367453024,0.0156441759,0.0513063148,-0.0050216294,-0.0044457703,0.0233771428,0.0251732748,0.0014567868,0.0372663178,0.0365533493,-0.041982878,-0.0235690959,0.0252555404,-0.0262838602,0.0206212439,0.0042024013,-0.034633819,0.0165765192,0.009501677,-0.0036059755,0.0177967921,-0.0194283929,-0.030465696,0.0290397573,0.0114966184,0.0093234349,-0.0269008521,-0.0505385026,-0.0036848134,0.0190719087,-0.0127100358,0.008116873,0.0159458164,-0.0316996798,0.0234319866,0.0273807347,0.0003802642,-0.0316722579,-0.0160417929,-0.0112018334,-0.0167821832,-0.0223214012,0.0011654294,0.0150134722,0.0228149947,0.0280799922,0.0392132699,-0.0006302745,0.0045143249,-0.01820812,-0.0381438173,0.0313431956,-0.0000945305,0.0102832001,-0.0078837872,0.0068828887,0.0166039411,0.0288752262,-0.0091589037,-0.0089052515,-0.0159732383,-0.0007211094,-0.0055289343,0.0461784266,-0.006341307,0.0147940973,0.0218826514,-0.0021046284,-0.0103037665,0.0327142887,-0.0110098803,-0.0336740538,0.0092137475,-0.0067080744,-0.0034123086,0.0207309313,-0.0023411419,0.0103106219,-0.0066086701,0.0370743647,-0.0141222617,-0.0086515993,0.0240901113,0.0694321692,0.0014430758,0.0137040783,-0.0296430383,0.0290123355,-0.013861754,0.0203196034,0.0057243151,-0.0032717716,0.008617322,-0.0182903856,-0.0262701493,0.0349354595,-0.0230617914,-0.0043257996,-0.0105985515,-0.004257245,0.0118531026,-0.0026787736,-0.0056180554,0.022362534,0.0014310788,0.0369372554,0.0064475667,-0.015822418,0.0132721839,0.0093851341,0.0409408472,0.0126757585,-0.0021337641,0.0007930918,0.0136492345,0.0038699112,0.0218963623,-0.0071776737,0.0038801944,-0.0032563468,0.0002999267,0.0066909357,0.0051964438,-0.0043737879,0.0309592895,0.0292591322,0.02215687,0.0256394465,0.019003354,-0.0156715978,0.0184274949,-0.0059574009,-0.0054638074,-0.0469462387,-0.0088915406,0.0133475941,0.0315899923,0.0039795986,-0.0079249199,0.0045691687,0.0272436254,0.0164668318,0.0127443131,-0.0191130415,0.0232537445,0.0013462423,-0.0086927321,0.00044989,0.0347435065,-0.0031038127,-0.061534673,0.025132142,-0.020196205,0.0006217051,-0.0294510853,0.0062556136,0.0022640179,0.0157538634,0.0153562464,0.034633819,-0.0052787093,-0.0205115564,-0.0177967921,0.0297801476,-0.0034243057,-0.0125866374,-0.0105848406,-0.0064030061,-0.0188525338,0.0405295193,-0.0251869857,-0.0335643664,-0.013464137,0.0284638982,0.0085899001,0.0465349108,0.0141496835,0.0372388959,0.0173854642,-0.0042229677,0.0012871139,-0.0022862982,0.030657649,0.0216632746,0.0083636697,-0.0394326448,0.0310963988,0.0041578407,0.0050661899,0.0015210568,0.0111332787,-0.0206623767,0.0045211804,-0.0051313168,-0.0129431216,-0.0018458344,0.0271476489,-0.0011431491,-0.0390213169,-0.0260233525,0.0249813218,-0.0064681331,0.0423667841,0.0343870223,-0.0083293924,-0.0191541743,-0.000475598,0.016233746,0.0166587848,0.0175225735,-0.0161103476,-0.0077535333,-0.00000873,-0.0426135808,-0.0203058925,-0.0055769226,0.0036505361,-0.0191815961,-0.0117434151,-0.0058168638,0.0119559346,0.0280662812,0.0344144441,-0.0250910092,0.0116200168,-0.0095496653,-0.0023737054,0.0129019888,0.0196614787,-0.0100638252,0.0151368706,0.0068486114,0.0053575472,-0.003126093,-0.0177693702,0.0272162035,0.0308496021,-0.016425699,0.0319464765,-0.0155756213,-0.0034500137,0.0316722579,0.002843305,0.0079249199,-0.0053061312,0.0066429474,0.0109618921,-0.0023685638,0.0262290165,0.0096730636,0.0253103841,0.0102146454,0.0158498399,0.002869013,0.0036985243,0.0246522594,0.0109070484,0.0179476123,-0.0091863256,0.0095565207,-0.025132142,0.0439024121,0.0070679863,0.0042503895,-0.0354564749,0.0206212439,0.0238433145,0.019209018,0.0258588213,0.002327431,-0.019400971,-0.0177008156,0.0261878837,-0.0307399146,-0.0040035928,0.0147255426,0.0420651436,0.0081717167,0.0242546424,-0.0129156997,-0.0053198421,0.0019229585,0.0244191736,-0.0233634319,-0.0034345889,-0.0114966184,0.0013488131,0.0309044458,-0.0048365318,-0.04431374,0.0247619469,0.0330981947,0.0149860503,0.0184960496,-0.021581009,-0.0213753451,-0.0105437078,0.0296430383,-0.0179339014,-0.0302188974,-0.0233634319,-0.008603611,-0.0081785722,-0.0107013835,-0.0178379249,-0.0232400335,-0.0254337825,0.0149449175,0.0133270277,-0.0151505815,0.0063070296,-0.0072119511,0.0319190547,0.0300269444,0.00969363,0.0469736606,0.0112018334,-0.0073490604,0.0276686642,0.0182492528],"61":[-0.0028834674,0.0158744343,0.0355783962,0.0023255334,0.0389939249,0.0032651266,-0.0232100524,0.0042338292,-0.0306362342,-0.0438325852,0.0075943707,-0.0336895064,0.0167800654,-0.0083706267,0.0283850916,0.0284109674,0.0035384335,-0.0106670503,0.0065367222,0.0652572513,0.0018274359,0.0250989422,0.0059642331,0.0345951393,0.0051426957,-0.021786917,-0.0288249701,0.0346727669,0.0200662166,-0.0341035128,-0.002993437,-0.0333013795,-0.0431339554,0.0550624207,0.046937611,0.0256293844,0.0187465809,-0.012575346,0.0728128105,0.0065367222,-0.0199885909,0.0094185723,0.0444277152,0.0384505428,-0.0143219223,-0.0154604306,-0.032861501,-0.028229842,0.0551141724,0.0790746063,-0.0167800654,-0.0498356335,-0.0348021425,-0.0311796144,0.0064299866,-0.0173234455,0.0029869683,0.0112427734,0.0103630172,-0.0009816403,-0.0213729143,-0.0166636277,0.0278675891,-0.0053302906,-0.0256164465,0.0115597444,-0.0315159932,0.0202085301,-0.0334048793,0.0055664019,0.0118896533,0.0142701715,-0.0048160213,-0.0072838683,0.0249825045,-0.0519573987,-0.0580639467,0.0389162973,-0.0190441459,-0.0555281751,-0.0068181148,0.0493181273,-0.0439878367,0.0419695713,-0.0030160779,-0.0425388254,-0.0478949919,-0.02085541,-0.014722988,0.0104406429,-0.0117538087,0.03006698,0.0021055941,0.0342587642,0.0243744366,0.0448417179,0.0057281218,-0.0098907948,-0.0056440276,0.0381400436,0.0046219574,-0.0384246707,-0.0071933051,-0.0175433848,-0.0179962013,-0.0179444496,0.0313866138,-0.0066369884,0.0055696364,0.0001127997,-0.0741583183,-0.03130899,-0.0152922422,-0.0332755037,-0.0001508039,-0.0073162122,0.0181902647,-0.0511035174,0.0139855444,-0.0520091467,-0.0356301479,0.018410204,-0.0065464252,0.0000655471,0.0109128645,-0.0436514579,-0.0216963533,0.0003727646,-0.0254223831,0.0170258805,0.0508965142,-0.0400548056,0.0252153799,-0.0309208613,-0.012588284,-0.0123230629,-0.0281263404,-0.0194969624,-0.026729079,-0.0367169045,0.035552524,-0.0168188792,-0.0212694127,-0.0314642414,-0.0404170603,-0.0251506921,0.0065625971,0.0146453623,-0.012290719,-0.0395114273,0.0216575414,-0.0089528188,-0.0441172123,0.0228995513,0.0595647059,-0.0019454914,0.0301704817,0.0036936845,-0.0332496315,-0.0127500035,0.0685175285,0.0208812859,0.0170776304,0.0029627101,-0.0383470431,0.0262245126,-0.0382694192,-0.0234170537,-0.056200929,-0.0115338694,-0.0268325806,-0.0622557253,0.0030468046,0.0325251259,0.0057734037,0.0052785403,0.0290319733,-0.0289802216,-0.0017012943,0.0076202457,-0.0409086868,0.0118120275,-0.0362252779,-0.011663246,-0.05032726,0.0161202494,-0.0464718565,0.0156286191,0.0289802216,0.037156783,-0.0630837306,0.02947185,0.0395114273,0.0213341005,0.059202455,-0.0296788532,0.0106670503,0.0264703277,-0.0514916442,0.0317747444,0.011365681,0.0285920948,-0.0001992188,-0.038372919,-0.014101983,0.0158873722,-0.0036451686,0.0106670503,-0.043936085,-0.0382694192,0.0187724568,-0.0154604306,0.0249307528,-0.0292648487,-0.0252283178,-0.0640152395,0.0087264106,-0.021178849,-0.0224984847,0.011359212,-0.0152534293,0.0365357809,0.0071738986,-0.0350867696,0.0200274028,0.0394338034,0.0390974246,-0.0248531271,0.0375707895,0.0060062804,0.0319817439,-0.0359406509,-0.0198074635,-0.0349832699,0.0505342633,0.0140502322,-0.0279969648,-0.0294977259,0.0344916396,-0.0037422006,0.0189535823,-0.0212952886,0.018397266,0.0326286256,-0.0163790006,0.0148782386,-0.0287473444,-0.0746758208,0.0101689529,0.0765388384,0.0172199439,-0.0317747444,0.0177374482,0.0085646911,0.0333790071,-0.0655677542,-0.0010899927,-0.0090627884,0.0436514579,-0.0498615056,0.0505601391,-0.0531476587,-0.0061291875,0.0181773268,-0.0171423182,-0.0071092108,0.0149299894,-0.0412968174,-0.0014134326,-0.0094379783,0.0063944082,-0.0026247154,0.0185137037,-0.0331720039,-0.0051556332,-0.026987832,-0.0053141187,-0.0129375989,0.0180867631,-0.0236628689,0.0166765656,-0.0227572378,-0.0343105122,-0.0093150716,0.0213729143,0.001796709,0.0143348603,0.025137756,0.0246720016,-0.0235205553,-0.0123748137,0.0165989399,-0.0046478324,-0.0455920994,0.0083770957,0.0302998573,0.032861501,-0.023015989,-0.019005334,-0.0099425446,0.0304551087,-0.0013738113,0.0364064053,-0.0256552584,0.0082606571,0.01104871,-0.0110939909,-0.0045119878,0.0536134094,-0.0130022867,-0.0219162926,0.0022705486,0.0019341711,-0.0111586796,-0.0015969849,0.0020845707,0.0282039661,0.0041982508,0.0169482548,-0.0508188903,-0.0213341005,-0.0536651611,0.0020037107,-0.0149299894,-0.0099684205,-0.0216963533,0.0404946841,-0.0122519061,0.0235205553,-0.0158614963,0.0007285486,-0.0551659241,0.0128470361,0.0585814491,0.0305327345,-0.0496286303,0.0391491763,-0.0060612652,-0.0157321207,0.0388904214,-0.0330943801,-0.0386834219,-0.0701735392,0.0282039661,0.0257846359,0.0405464359,-0.0250083786,0.0008126429,-0.0248919409,-0.0308432356,-0.0693972781,-0.0173622575,-0.0341293849,-0.0189535823,-0.0145418616,0.0054499637,-0.002225267,-0.0265738294,-0.0311537385,-0.0194193367,-0.0240639336,0.0078789983,0.0406758115,-0.0309467372,0.0201438423,-0.0033039395,-0.0297564771,-0.0370532833,-0.0028252483,-0.0130863814,0.0416849442,-0.0048968811,-0.016275499,-0.038372919,-0.0569771864,0.0094573852,0.0425905772,0.0083382828,0.0138691058,0.0364322774,0.0097161373,0.0094638541,-0.0009250384,-0.0133386645,0.0135456659,0.0340000093,-0.0167541914,-0.0101818908,-0.0205319691,0.0225631725,0.034051761,0.0048386622,-0.0014926755,0.0216704793,0.010427705,0.0025648791,0.0149170514,0.0200015288,0.041426193,-0.0192899611,0.0212694127,-0.0090951324,-0.0356301479,-0.0316971168,0.0037292629,0.0291872229,-0.0004556461,-0.0014522455,-0.0057022469,-0.0422541983,-0.0566149354,-0.0535099097,0.0195875242,0.0028996393,-0.0022915723,-0.0517245196,-0.0235593673,0.041477941,0.0046219574,0.0615312196,-0.0041562039,-0.0305327345,0.0071221483,0.0046413639,-0.029782353,0.0539239123,0.0574946888,0.0217222292,0.0074455882,-0.0363546535,-0.0206354707,-0.0025066598,0.0218257289,-0.030041106,-0.0029190457,-0.0233782418,0.0406499356,-0.0029012566,0.0774185956,0.0377260372,-0.0150076151,0.0212564748,-0.0155380564,0.011061647,0.0086746598,-0.0256940722,-0.0033670103,-0.0378812887,-0.0304292329,-0.0139079187,0.0261339508,-0.0630837306,-0.0292648487,0.012575346,-0.0374414101,0.0012306891,0.0089463498,0.0147488629,0.01595206,-0.0051006484,-0.0223173592,0.0201309044,-0.0315418653,0.0090433815,0.0571841896,-0.0673790127,0.0016519697,0.0223432332,-0.0050974139,-0.0207260344,0.0379071645,0.0601339601,-0.0067922394,-0.0053141187,-0.0681552738,0.0074520572,0.0184878297,-0.0179315116,-0.006287673,-0.0198850892,-0.0003960118,0.0134680411,-0.0031503055,0.0612207204,0.0149041144,0.0737960637,0.02516363,-0.0191088337,0.0136879794,0.0062068133,-0.0149041144,0.0438067093,0.0363546535,-0.014127858,-0.0120643117,-0.0172975697,-0.0805236176,0.0037583725,0.0177374482,-0.0411933139,-0.0535616614,-0.0307656098,-0.0311019886,0.0441430882,-0.0401065573,0.0137267923,-0.0261986386,-0.0222656075,0.0077172779,0.0023222989,0.0192123353,-0.0199109651,0.0455403477,-0.0020732502,0.0010560316,-0.0053691035,-0.0452557206,0.0083512198,-0.0089269429,-0.0264444519,-0.0116955899,0.011042241,-0.0410639383,-0.0312313642,-0.0285920948,-0.0015500861,-0.0090110376,-0.031955868,-0.0027168959,-0.0033055565,-0.0108223017,-0.021489352,0.0012662675,-0.0112233674,-0.0586849488,0.0207907222,-0.0174657591,-0.0258493237,-0.0200144667,0.0446088426,0.0122971879,0.028540343,-0.0044117211,0.0248790029,-0.0305327345,-0.0471446104,-0.0354748964,-0.0126012219,0.010738207,0.0662922561,0.0320852473,-0.0182290766,0.0260433871,-0.0100201704,0.0229254253,-0.0106411753,0.0244261865,0.006125953,0.0045993165,0.0268843304,-0.0220068563,0.0109452093,0.0095285419,0.0002605713,-0.020557845,0.0167800654,-0.0108740525,-0.0402359329,-0.0317488685,-0.0106476443,-0.0013665339,0.0173751954,-0.019341711,0.0242579989,-0.0138432309,0.0156415571,-0.0599269606,-0.030972613,0.0063620643,-0.0276605878,0.0086487848,-0.0108869895,-0.0456179753,0.0211270992,-0.0519832745,0.0104923928,0.0383211672,0.0252671316,0.0206225328,-0.0397960544,0.0053367596,-0.0120319668,-0.0219809804,-0.0156933069,0.0429269522,-0.0124006886,0.021178849,0.0042241262,-0.008603503,0.0292648487,0.0403911844,0.0018775691,-0.0058122166,-0.0190182701,0.0175821967,-0.0096061677,-0.0318523683,-0.0031454538,0.0149429273,0.0009573823,-0.0037130909,0.002605309,0.0186689552,-0.0722953007,-0.0054887766,-0.0064105806,-0.0000441698,0.0208295342,0.0347762667,-0.0353455208,-0.0160296857,-0.0047772084,-0.0150981778,-0.0274794605,0.0136491675,0.0207519084,-0.0148523636,-0.0344916396,-0.0176598225,0.0148911765,0.0395890549,-0.0061841724,0.0433927067,0.0121354684,-0.0157709327,-0.0115726823,0.0031907354,0.0534581579,0.0166895036,-0.0129505368,0.0323698744,0.013791481,-0.0113009932,-0.0337930098,0.0342587642,-0.0091921641,0.0088557862,0.0242191851,-0.0128599731,0.0095285419,-0.0265997034,0.0177115723,0.0249825045,0.0088299112,0.010421236,-0.0355266482,-0.0141925458,-0.006132422,0.0278417133,0.0207907222,0.0013835145,0.0139596695,-0.0289025959,0.002160579,-0.032266371,0.0011166765,-0.0021735167,0.0292130988,0.0095802918,0.033456631,-0.0016406493,0.0403135605,0.0317229927,0.0151369907,0.0222267956,-0.0078401854,-0.0088169742,-0.0098713879,0.0390974246,0.049085252,-0.0262762643,-0.0175433848,-0.0145030487,0.0251506921,0.0219939183,-0.0234558675,-0.0108805206,0.0186689552,0.0269619562,0.0089592878,-0.0186042674,0.0125559401,0.0045540347,-0.0306103602,-0.0139208566,0.0020667815,-0.0047901459,0.0190182701,-0.0167930033,-0.0192123353,0.0095738238,-0.026729079,-0.0484383702,-0.0008652019,0.0101948278,-0.0107964268,0.0423059501,-0.0059318892,0.035604272,-0.0095996987,-0.0562526807,-0.0028203966,-0.0255129449,0.0350608937,-0.0264185779,0.0025260663,-0.0096191047,0.0005365061,-0.0419178195,0.0148653015,-0.0251506921,0.0068051773,-0.0356560238,-0.0397443064,0.0020538438,-0.0157968085,-0.0005389319,0.017776262,-0.005200915,-0.0175304469,0.0181902647,0.0194193367,0.0132998517,0.0105053307,0.0292130988,-0.0038489357,-0.0045734411,0.0196780879,-0.0320593715,-0.0235334933,-0.0046348949,0.0353972726,-0.0089334119,0.0289802216,0.006908678,-0.0536134094,-0.0006104929,0.0356301479,0.0324474983,-0.0028753814,0.0182678904,0.0102336407,-0.0085000023,-0.0092439149,-0.0086875977,-0.0483607464,-0.022382047,0.0232618041,0.025474133,0.0100137014,-0.0125106582,0.054648418,-0.0167412534,0.0299376044,-0.0102207037,0.0001117889,-0.0305586085,0.0255129449,-0.0100395773,-0.0478432402,0.0131834131,-0.0335083827,-0.0130281625,-0.0048580687,0.0627732277,0.0005312501,-0.0410380661,0.0264185779,0.0105958935,-0.0280228406,0.0248919409,0.0144901108,-0.0113980249,-0.0616347231,0.0014627574,-0.0215281658,0.0107188011,-0.0058801388,-0.0229124874,0.0089463498,-0.0346986391,-0.0161978733,-0.0002417714,-0.0219162926,0.0299376044,-0.0072450554,-0.0177633241,-0.0550624207,-0.0231453646,0.0239863079,0.0095802918,0.0156933069,0.0115468074,0.0072709308,0.0197298378,0.0244908743,-0.0126141589,0.0108546456,-0.0488265008,-0.0242579989,0.0053335251,0.0030759142,0.0232100524,0.0039233267,0.0076008397,0.0301704817,0.0434962101,0.0235205553,0.0048645372,0.003066211,0.0766423345,0.0182161387,-0.0306362342,-0.0083318138,0.0293942261,0.0206484087,0.0026295669,0.0345692635,-0.0049356939,-0.0152146164,-0.0194840245,-0.0302222315,0.056200929,-0.0193934608,0.0322404988,-0.0014773121,0.0038101228,-0.0462389775,-0.0386834219,0.0481537431,-0.020557845,0.0564079322,0.0087910984,0.0095867608,0.0150852408,-0.0013924091,0.0005320588,0.0199756529,0.0322404988,0.0079630921,-0.0083900327,-0.02575876,0.0105635496,-0.0191605836,-0.0367686562,0.03190412,0.0054079164,-0.00797603,-0.0025422382,0.0160167478,-0.0547519177,-0.0358371511,-0.0040753437,0.0064364555,-0.0013123577,-0.0361476503,0.0031422195,0.0032441029,0.0630319864,0.0498615056,0.0189277083,0.0270395819,-0.0056116837,0.0083059389,-0.0042338292,0.0089528188,-0.0427717045,0.0094056344,-0.0024921051,-0.0459543504,0.0196522139,0.0028123106,-0.002993437,0.0096837934,0.0147618009,0.0084676584,0.0114368377,0.0450228453,0.0065625971,-0.0017012943,0.0042014853,0.0135456659,0.0287473444,-0.0150981778,-0.0146841751,-0.0155639313,-0.022382047,0.0005263985,-0.0126012219,0.0420471989,0.0419178195,0.0307656098,-0.0248272531,0.0386057943,-0.0201567803,-0.0127047226,0.0024953394,0.0064235181,0.0028656782,-0.0012072397,-0.0222009197,-0.0094832601,0.0207260344,0.0379330404,0.0118637783,0.0138432309,-0.0122001562,0.0281004645,-0.0123489387,-0.0408051871,0.0119284661,0.0199756529,0.0184231419,0.0241933111,-0.0234429296,0.0003185884,-0.0271689575,0.0094444472,0.0425647013,0.0079566231,0.0526042767,0.0219421685,-0.0227701738,0.0258881357,0.0211141612,-0.0176856983,0.0267549548,-0.007995436,-0.0022220328,-0.0106476443,-0.0258105099,0.0200274028,-0.0073938379,-0.0263150763,0.0256035086,-0.0143995481,0.034414012,0.0507930145,-0.0222526714,-0.0305586085,0.0201697163,0.0178926997,0.07301981,-0.0273500849,-0.0068892715,-0.0505342633,-0.0274535846,0.0009193781,0.0481019951,0.0241544973,-0.0060580308,0.0014029209,-0.0428752042,-0.0214376021,0.0109387403,0.0060644997,0.0152793042,-0.0083900327,0.0611689687,0.0047707395,0.0079307482,0.03249925,0.023339428,0.0181773268,0.0023918387,0.0036322309,0.0233653039,-0.0296271015,0.0216575414,-0.0107188011,0.0549589209,0.0199756529,-0.008603503,-0.0356818996,0.0244003125,-0.0217351671,-0.0250342544,0.0257199463,0.0089592878,-0.0014045381,0.0241544973,-0.0240639336,-0.0032376342,0.0218645427,0.0258751977,-0.0176210105,0.0090692574,-0.0095285419,0.0206484087,0.0275053363,-0.0192123353,0.0206095949,0.0268843304,-0.0179703254,0.0283074677,-0.0179185756,-0.0072968057,-0.0084094396,0.0075361514,-0.017478697,0.011042241,0.0130475685,0.0071674301,0.0042208917,0.0018177327,-0.0094379783,0.0091856951,-0.0319299959,-0.0261468887,-0.0457732268,0.0057798722,-0.0186430812,0.0581156947,-0.0283592176,-0.0131575381,-0.0326545015,0.0051265238,-0.0006691164,-0.0080665927,0.0191605836,-0.0144383609,0.0276605878,0.020894222,0.0351902694,-0.0024613782,0.0055211205,0.0081054056,-0.0139337946,0.0119025912,-0.0040688748,-0.0134033523,-0.0391750485,-0.0045087533,0.0550106727,0.0166377518,0.0312572382,-0.0031454538,0.0084870653,0.0232747402,0.0058898418,0.033456631,0.0089851627,0.0034672765,0.00660141,-0.0076655275,-0.0033637758,0.0028106933,0.0104600489,0.0419436954,-0.0072903372,-0.005841326,0.0072838683,0.0078013721,-0.0082283132,-0.0094056344,0.0148135507,0.0264315158,-0.0340258852,0.030377483,-0.0075555579,-0.0064170491,-0.0000583708,0.0074132443,-0.0268325806,-0.0059254202,-0.0137009174,0.0136621045,-0.0400289334,0.0044602375,-0.0095932297,-0.0058672014,0.017478697,-0.010434174,0.028255716,-0.0131057883,0.0132610388,-0.0037163254,-0.0062035788,0.0302998573,-0.0234041177,0.0113074612,-0.0298858546,0.0170776304,-0.0062003443,0.0172199439,-0.0078595914,0.0001839565,0.0263150763,0.0085452842,0.0197427757,-0.0096126357,-0.0042079543,-0.0002019478,0.0032052903,-0.0099102007,-0.0029190457,0.0052753058,-0.0142572345,0.0167024396,0.0182290766,0.0492146276,-0.0033993542,0.0068698651,0.0001963887,0.0428234525,-0.0084417835,0.0301704817,-0.0084159086,-0.0132286949,0.010744676,0.0458767265,-0.0259010736,0.0326545015,0.0031001722,0.0054726047,-0.0160943735,0.0188500825,-0.0085323462,-0.033456631,-0.0297306031,0.0014215187,-0.0303516071,0.013519791,0.0170388184,0.0066628638,0.0174657591,-0.0046090195,0.0014336477,-0.0078078411,-0.0278417133,0.0151369907,0.0172846317,-0.01966515,0.0175563227,0.0068569276,0.0278158374,0.0257846359,0.054337915,0.0158097465,-0.0051394613,0.0118508404,-0.0174269453,0.0102530476,0.0060774372,0.0137138553,0.0004004591,0.0476103649,-0.0005975554,-0.0175692588,-0.0234429296,0.0127823483,0.0267808307,0.0070380541,0.0177633241,-0.0053108842,0.0090045687,-0.0422283225,0.0232747402,0.0354490206,-0.0281522162,0.0103436103,0.0123812826,-0.0275570862,0.0323181227,-0.0019681323,-0.0093732905,0.0246590637,0.0086940667,-0.0327062495,0.0281004645,0.0440137126,-0.0234946795,-0.0087781614,-0.0272465833,0.0151240537,-0.0026247154,-0.0119090602,0.0059674676,-0.0115662133,0.0080665927,-0.0308691114,0.0091792261,0.0008203246,-0.0250342544,-0.0226925481,0.0179444496,-0.0332496315,-0.0184878297,0.0152404914,-0.0002522832,-0.0100848582,-0.003761607,-0.0038780454,0.0404946841,0.0032376342,0.0444277152,0.0061680004,-0.0241027474,-0.00056602,-0.0099878265,-0.0165213142,-0.0140890451,-0.0084805964,0.0010600745,-0.0183713902,0.0017239351,-0.0104535799,0.0131510692,0.0247366894,0.0182032026,0.0218257289,0.0352161452,0.0204672813,0.0382694192,0.0324733742,0.0273500849,-0.0237922445,-0.0278934631,0.0261598248,-0.0182549525,0.0358630233,-0.0228736755,-0.0359406509,-0.0288249701,0.0076267147,0.041477941,-0.0177633241,-0.0219551064,0.0119608101,0.0225761104,0.0167541914,-0.0105441436,-0.0074391193,-0.0256035086,-0.0084417835,0.0073032747,-0.0211141612,0.022420859,-0.0126335658,-0.0305586085,0.0399771817,-0.004586379,-0.0095738238,-0.0223044213,-0.0240509976,-0.0163401868,-0.0086552538,-0.016586002,0.0156803709,0.0162237491,0.0011983451,0.0301963557,0.0193158351,0.0293424744,0.0009589996,-0.008597035,-0.003988015,0.0158356205,-0.0006444542,-0.0063232514,-0.0089140059,-0.0107058631,-0.0087070046,0.037156783,-0.0459026024,0.0535616614,-0.0075426204,0.0043664398,0.0148394266,0.0384764187,-0.0270395819,0.0523714013,-0.0125365332,0.0050294916,-0.0091016013,0.0234429296,-0.0013624909,-0.0179703254,0.0349832699,0.0087070046,-0.0220715441,0.0160038099,-0.0078337165,0.0270654578,0.0179315116,0.0267808307,-0.0180220753,-0.0161073115,0.0179056376,0.0087005356,0.0237534326,0.0091145383,-0.015977934,0.0134292282,-0.0206613466,0.0048321933,-0.0043567363,0.0056504966,0.0082412502,-0.0083253449,-0.0375966616,0.0030031402,0.0005009277,0.0136232916,-0.0065658316,-0.0410639383,0.051828023,0.0096837934,-0.0088751931,0.0049389284,0.018099701,0.0200274028,-0.0198850892,-0.036509905,0.0090175066,0.0191347096,0.0067793019,0.0135327289,-0.0075879018,-0.0153698679,0.0335860066,0.0072062425,-0.0033071737,0.0040462343,-0.014425423,-0.0161202494,-0.0020279686,-0.0111069288,0.0218774807,-0.0065205498,0.0417625718,-0.0016050709,-0.001982687,0.0112751173,0.0015428087,-0.0458508506,0.0136362296,-0.0283333417,0.0145806745,-0.0145806745,-0.0058995453,0.0137785431,-0.0003012035,-0.0156674329,0.0227572378,-0.008901068,0.0025373867,0.0164566264,-0.0112298364,-0.0234041177,0.0091080694,0.0026732315,-0.0096643865,0.0119219972,0.0438843369,0.0175175089,-0.0366910324,-0.0000711568,-0.0133516025,0.0078401854,-0.053095907,0.0006294951,0.0068633961,0.0114562437,-0.0335083827,0.0161331855,0.0114756506,-0.0330943801,-0.0043729087,0.032809753,-0.0008991631,0.0064364555,0.0049486319,-0.0242968109,0.0013252953,0.0214505401,-0.0108934585,-0.0092568519,0.0060127494,-0.001277588,-0.0186042674,0.0190182701,0.0214764141,0.0197557136,-0.0003952032,-0.004133563,0.0074585257,-0.032266371,0.0062488602,0.0036031213,-0.012568878,-0.0554246753,0.0113915559,-0.0002003306,0.0308173615,0.0157579966,0.0046413639,-0.0091533512,-0.0374414101,0.0194322746,-0.0240251217,0.0157838706,-0.0028737641,0.0307138599,-0.0496286303,-0.0182161387,0.0444535911,0.0099878265,0.0268843304,0.0153828049,-0.0145806745,-0.0578051917,-0.0169223789,0.0008191118,0.0125041893,0.0202214681,-0.0328873768,0.0023562603,-0.0066628638,-0.0531476587,-0.0264315158,-0.0051038829,-0.0043858462,0.0030937034,-0.0252412558,-0.0027282161,0.0057766382,0.0220197942,0.0108417077,0.004586379,-0.0102271717,0.0499132574,-0.0182161387,-0.0242191851,0.0482313707,0.0039524366,-0.0228607375,0.0190700218,0.0100201704,0.0105829565,-0.0061550629,0.022679612,0.0585296974,0.0075749643,0.0204284694,0.0068504587,-0.0057087154,0.0172328819,0.0136232916,-0.0064041116,-0.0634977371,0.0014021123,-0.0108934585,0.0233653039,0.0216834154,-0.0153698679,0.005517886,0.0232359283,-0.0018436079,0.0022398219,0.0052300245,-0.0036872157,-0.0043793772,0.0109322714,0.0152146164,0.0151628666,-0.0275312103,0.0208295342,0.0141796088,0.0074585257,-0.0168965049,0.0100654522,-0.026069263,0.0179573875,0.0048418967,-0.0112233674,-0.0216187276,-0.0360959023,0.0119090602,-0.0111133978,0.0169870686,-0.007982499,0.0619969741,-0.0025664961,0.0367169045,0.0115856202,0.0019632806,-0.0114238998,0.030998487,-0.0016050709,-0.0177374482,-0.0368462838,0.0448417179,0.0041367975,0.008267126,-0.0463166051,0.0190700218,0.0465236083,-0.0219033547,0.0265220776,-0.0020473751,-0.0190958958,0.0179185756,0.0228477996,0.0039524366,-0.0118184965,-0.0362770297,-0.0062197507,-0.0274535846,0.008603503,-0.018112639,0.0273759589,-0.0449193455,-0.0081054056,0.0046187229,-0.0148782386,-0.0366651565,0.01320282,0.0160555597,0.0327580012,-0.0043890807,0.0088622551,0.0187724568,0.0145289237,0.0287473444,-0.0234299917],"62":[-0.0020442612,0.0400240831,0.0466083921,0.0199053511,0.0367014408,-0.0068700896,-0.0164912622,0.0245082732,-0.0042866613,-0.0186098255,0.0481325388,-0.0298427846,-0.0067100539,-0.0444745868,0.0471875705,0.0129628638,-0.0049725273,-0.0159273278,-0.0300714057,0.0381036587,-0.0072739883,0.015988294,-0.0032769146,-0.0045419559,0.0013031451,-0.0167656094,-0.0303305108,0.0970576331,0.0345981196,-0.0540767089,0.0023357542,-0.0355735756,-0.0321594849,-0.0009926002,0.0209112875,0.0041609192,-0.0053078393,0.0119874105,-0.0028863521,0.0213075653,-0.0038618057,0.0033874151,0.0121017219,0.0477667451,0.0277242213,0.0052659255,-0.0407556705,0.0021204685,0.0050068204,0.0385913849,-0.0439258963,-0.0127190007,-0.0089238761,-0.0520953201,-0.0123151019,-0.0319765881,0.008222769,0.052308701,0.0056583933,-0.0109357499,0.0188994147,-0.0491994433,0.036518544,0.0097926399,-0.0318241753,0.0456024557,-0.0379817262,-0.0161864329,-0.034049429,0.0307115484,0.0613926128,0.0721835718,0.0191432778,0.0052354424,0.0331959054,-0.0536499508,-0.0484983362,0.0313364491,-0.0334092863,-0.0063480693,0.0311383083,0.0051935283,0.0083523216,0.0059213084,0.0003148315,-0.0500224829,-0.0364270955,-0.0237004757,-0.0249807574,0.0179544427,-0.0108976457,0.0762682781,0.0091829812,0.0254380014,0.0351163298,-0.0080779754,0.000510589,-0.0235785432,0.0063404487,0.0124675166,0.0149061503,-0.0356650241,-0.0115301665,-0.0259104874,0.0385913849,0.0008168471,0.0023167024,0.0400850475,0.036518544,-0.0086266678,-0.069683969,-0.0303457528,-0.0534975342,0.0171161629,-0.0236852337,0.0003348359,-0.021703843,-0.0309249274,0.0228317119,-0.0327691436,-0.0447794162,-0.0052202009,-0.0238376483,0.0248283427,0.0145327346,-0.0441392772,-0.0040466082,-0.0114844423,-0.0097088115,-0.0387133174,0.0651115328,-0.0097773988,0.041548226,-0.0467912927,0.0146699082,-0.0260019358,-0.0499615148,0.0125437239,-0.0072358847,-0.0073654368,-0.0180001669,-0.0231670234,0.0632215887,-0.034963917,-0.0169789903,0.0054869265,-0.0050144414,0.0336531512,0.0066338466,-0.0221001208,0.0262915231,-0.0173295438,-0.0413653292,-0.012795208,0.0606915057,0.0153633943,0.030376235,0.0286082253,-0.0421274044,-0.0072701778,-0.0308792032,0.0092668096,0.008222769,-0.0225421228,-0.0359393694,0.0046067322,-0.0410909839,-0.0103413323,-0.0847425312,-0.0077007492,-0.0514856614,-0.0553874746,-0.0115454085,0.0106004374,0.0528878756,0.0065423981,-0.0029778008,-0.0441697612,0.0058298595,-0.0597465336,-0.0472485349,0.0133667625,-0.032220453,0.0185031351,-0.0156682245,-0.0037493999,-0.0435905829,0.0243253745,-0.0247978605,0.0497481339,-0.0426760949,0.0555094071,0.0483764037,0.0253770351,0.0016841816,-0.0588320456,0.0123151019,0.0098383641,-0.0110805435,-0.0180916172,0.0339579806,0.0085657025,0.0695620403,-0.0310011357,0.0265353862,0.0185945854,0.0310468599,-0.013702075,-0.0194633473,-0.0314278975,-0.0019623383,0.0137325581,0.0346590877,0.0159120876,-0.0162778832,-0.0194328651,-0.0505406894,0.0324643143,0.0102956081,0.0130390711,-0.0184421707,0.062550962,0.0348419845,0.0142507674,-0.025346553,0.0068586585,0.0107757142,-0.0150890481,0.031305965,0.0047400948,0.0342628099,-0.0245844796,0.0222525354,-0.0148985302,0.0179087184,-0.007544524,0.0392315239,-0.0020480715,-0.008238011,0.002333849,0.0052087698,0.0329520442,0.0218714997,-0.0076778871,0.0096402252,0.0207436308,-0.0449623168,-0.0796823651,0.0351163298,0.0162931234,0.0152643248,-0.013702075,-0.0284405705,-0.0172533356,-0.0362441987,-0.0144870104,-0.0698058978,0.0351468138,-0.0174209923,-0.0093125338,0.0149975996,0.0065614497,-0.0197376944,0.0099298134,-0.0140831117,-0.0131152784,0.0333483219,-0.0451756977,-0.0409385711,-0.0507540703,0.0449318327,0.0454195589,0.011415856,-0.0145937009,-0.0457243882,0.008687634,0.0081236996,-0.0253313109,0.0139154559,-0.0036160371,0.002907309,0.0274955984,0.0393839404,0.0358174369,0.0163693316,0.0240205452,0.0336836316,0.0120178936,0.0007820775,-0.0204845257,0.0121855494,-0.0107452311,0.0112329582,0.0019089932,0.0161711928,0.0359698534,0.0148604261,-0.0258342791,-0.0083218385,-0.0471266024,0.0248435847,-0.0253770351,-0.0109814741,-0.0391400754,0.0204845257,0.0111491298,-0.0205912162,0.0167960916,-0.0229688846,-0.0133439004,-0.0392620079,-0.0325862467,0.0280747749,0.0097316736,-0.0052468735,-0.0272669774,0.0740735084,-0.0257275887,-0.0185336191,-0.0824258327,-0.0335007347,-0.0685865805,0.0069081932,-0.0112100961,-0.0067100539,-0.0462121144,0.0309858937,-0.0110576814,0.0219477061,-0.0105851963,0.006290914,0.01688754,0.0175429229,0.0131076584,-0.0442002416,-0.0709032863,-0.0183964465,-0.0241424777,-0.0040999535,-0.0066071739,0.0085428404,-0.0261543505,-0.0494128242,0.0204083193,0.0058641527,0.0073006609,-0.014395562,-0.0234261286,-0.008009389,0.0045876801,-0.052979324,-0.0086342888,0.0126046902,-0.0000786483,0.0165369865,0.0098688472,-0.0090381876,-0.012558965,-0.057307899,-0.0236852337,-0.0303609949,0.0389571786,0.0308182389,-0.0047324742,0.0040504187,0.0282424316,-0.0296294037,-0.0096859494,-0.0280595329,-0.0048734578,0.0149213923,-0.0266420767,-0.0344152227,-0.0360003337,-0.0626728982,-0.0254227594,0.0400850475,0.0024938844,-0.0009478285,0.0563629307,0.0253770351,0.0071139527,-0.0018813681,-0.0153405322,0.0179849267,0.0116063738,0.0304372013,0.0243710987,-0.0741954446,-0.0286082253,0.0465779118,-0.0175734069,-0.0072549363,-0.0067595886,-0.0130543131,-0.0199205913,0.0409385711,0.0323728658,0.0469437055,0.0091829812,-0.0023586163,-0.0185183771,-0.0375854485,-0.0189603791,0.0046524564,-0.0049229925,-0.01416694,0.0363661312,-0.0129857268,-0.0200577658,-0.0313669294,-0.034689568,0.0384694524,-0.0008035109,0.0398716666,0.0037589257,-0.0311383083,0.0297360942,-0.0100212619,0.0621242039,0.0120407557,-0.0185488611,-0.0344761908,0.0101508144,-0.0342323259,0.0485897847,0.0403593928,-0.0515466258,-0.0057155485,-0.0543815382,0.0003529351,-0.0107071279,0.0341103934,0.0178782362,-0.0588320456,0.0013745894,0.0578565933,-0.0051097004,0.0219477061,0.0166894011,0.0133667625,-0.0128866564,0.0114082349,0.0206979066,-0.0286234673,-0.0446270034,0.0054564439,-0.0135725224,-0.0097240536,-0.0302543044,0.0349943973,-0.000497729,-0.019661488,0.0470046699,-0.0285015348,-0.0159730539,0.0176038891,-0.0185488611,0.0466083921,-0.0078798365,-0.0032978714,0.0491994433,-0.0645628348,0.0047400948,0.0229841266,-0.0345981196,-0.0054297713,-0.025819039,0.0169637483,0.0003098304,0.0047705779,-0.0059594121,-0.0064014145,-0.0325252824,-0.0229536425,-0.0006625273,0.020088248,0.0137630412,0.0080170091,-0.004450507,0.0145784589,-0.0417006426,-0.0476143286,0.0552350618,0.0441087931,0.0383475199,-0.0183202382,0.0338665321,0.0183049962,-0.0114615802,-0.0499919988,-0.0005191623,0.0537109151,-0.0197072122,-0.0419445075,0.0103260912,-0.0741344765,-0.0372806191,0.0133515215,-0.0010897646,0.0559361689,-0.0429809242,-0.0175124407,0.0463035628,0.0097240536,0.0129476227,-0.0077921981,0.0264134556,-0.0327691436,-0.040908087,-0.0307877548,0.0454195589,-0.0178629942,0.0248131007,-0.0096783293,0.0036808134,0.0101431934,0.0114539592,0.0180458929,-0.0141745601,-0.0261848327,-0.0167960916,-0.0380122066,0.0103032291,0.010493747,0.0018251652,-0.0394144244,-0.0424322337,-0.0051401835,-0.0105623342,-0.0078264913,-0.0341408774,-0.0023814787,-0.0048391647,-0.0509979352,-0.0242034439,-0.0399021506,-0.0366709605,-0.0388047658,0.0252093803,0.0029816111,0.0222525354,0.0158206392,0.0176648553,0.0298427846,-0.0103260912,0.0147461155,0.0135572813,0.0126275523,0.0488336459,0.0248435847,-0.0344761908,0.0220239144,-0.0032330954,0.0225878488,0.0171161629,0.0155691542,-0.0003788933,0.0005677445,-0.0125970691,0.0029015935,0.0142202852,0.0224963985,0.0067748302,0.0057993764,0.0569116212,0.0013202918,-0.0474314317,-0.0428285114,0.0151957385,0.0047743884,-0.021932466,0.0038941938,0.0275870487,-0.008451391,-0.0006653851,-0.0194785893,-0.0189146549,0.0041418676,0.0058412906,-0.0311992746,-0.0165369865,-0.0099755377,0.0211094264,0.0023719526,-0.0088248067,0.0319156237,0.0248435847,0.0007820775,-0.0268402155,0.0200425237,-0.0018146867,-0.0127266217,0.0336836316,0.0008725738,-0.0240053032,0.0267792512,-0.0099602956,-0.0155005679,0.0299951993,-0.0005672682,-0.0259866938,-0.0111796129,-0.0134582119,-0.0249197911,0.0055631339,0.0100288829,0.0161711928,0.0279985666,-0.0198291428,-0.0162778832,0.0027739462,-0.0189146549,-0.0440478288,-0.0435905829,0.0281204991,-0.0016908498,-0.0057231695,0.0138773518,0.0340799093,-0.0075826277,0.0018461222,-0.0289587788,-0.0397497341,0.0144184241,0.020774113,0.0121931704,-0.0103718154,-0.0266420767,-0.0104099195,0.0139916632,-0.0225573648,0.0312449988,-0.0031797502,0.0109052667,0.041822575,0.0056240996,0.0389266945,0.0353601947,-0.0327996276,0.0191127937,0.0398107022,-0.0055212202,-0.023502335,0.0172380954,-0.0382560715,-0.006283293,0.0306353401,0.0138316276,-0.0270993207,-0.0004915372,-0.0267030429,0.036518544,0.0228012279,0.0155843962,0.0233041961,-0.0152414627,-0.0066871918,0.0040085046,0.0150509449,-0.0492908917,0.0283948462,0.0010183202,-0.0069996417,-0.0018832732,-0.0018194496,0.0419445075,0.0269926302,0.0428894758,0.0209570117,0.0076093003,-0.022161087,0.0337141156,0.0284253284,0.0205302499,0.0040046945,0.0005196386,-0.0083370805,-0.0124446545,0.036792893,-0.0031721294,0.0114615802,-0.0316107944,0.0111110266,-0.0075369035,0.0389876626,-0.0027206012,0.0242644083,0.0230146088,0.0263067652,0.0005710786,-0.0118731,0.0130619332,-0.0088095656,0.0263067652,-0.0348724686,0.0202711448,0.018747,-0.0116063738,-0.0612097159,-0.0100212619,-0.0068967622,-0.0281509813,-0.0298427846,-0.0255446918,-0.0085428404,0.0244625472,-0.013031451,0.0139459381,0.0149899786,-0.0292788502,0.0041837813,-0.0506626219,0.0186860338,-0.0130771752,0.0235937852,-0.0164607801,0.0229079183,0.0026405836,0.0112786824,-0.0547473356,0.025346553,-0.0295836795,-0.0599599145,0.0420664363,-0.0357869565,-0.0324338339,0.0343847387,0.0176038891,-0.0075940588,0.0213228073,0.0064661908,0.0282271896,-0.0035988905,0.0234413706,-0.0098688472,-0.0406032577,-0.0298427846,-0.0343847387,0.0014431761,-0.032189969,0.0121322041,0.0054754955,-0.013481074,0.0068091233,-0.0183964465,-0.0025700917,0.0056774449,0.0206826646,-0.0113091655,0.0033188285,0.0158206392,-0.0242948923,0.0175124407,0.0215514284,-0.010958612,0.0017537208,0.0128485532,0.0263220072,0.0153176701,0.0271450449,0.0656602234,-0.0428894758,0.0046295943,-0.0065919328,0.0130695542,0.0026615404,-0.0324338339,0.0135420393,-0.0242644083,0.0109814741,-0.0224506743,0.0012002653,-0.0061308783,0.0649895966,-0.0046562669,0.024432065,-0.003760831,0.034720052,0.0315803103,0.0298123006,-0.0123989303,-0.0012926665,-0.0088095656,-0.0079484228,-0.0208960455,0.0107909553,-0.010508989,-0.008238011,-0.0442307256,-0.037463516,-0.0124903787,-0.0142583884,0.0049877688,0.0192804504,0.0145784589,0.0180611331,-0.0989475772,-0.040908087,0.0249807574,-0.0056583933,-0.0199510753,0.0234718528,0.0520038716,0.0251331721,0.0258952454,-0.0308792032,0.0175581649,-0.0487726815,-0.0264286958,0.0249350332,-0.0169789903,-0.0236699916,0.0071025216,0.0284710526,0.0330130085,0.0238986146,-0.0276784971,-0.0325252824,0.0073768678,0.0470961221,-0.0200730059,-0.0160035361,-0.0120941009,0.0199053511,0.0259866938,-0.0077693355,-0.027876636,0.0006687192,-0.0326167308,0.0265811104,-0.020789355,-0.0106004374,-0.0115073044,0.0163388476,0.0092896717,0.0061308783,-0.03154983,-0.0343542583,0.0275260825,-0.021231357,0.0719397068,0.0032654833,0.0061994651,0.017131405,-0.0144184241,0.0167960916,0.0172990598,-0.013016209,0.0078264913,0.0065309666,-0.0085580815,0.0086190477,-0.0156834647,-0.0042256955,0.0209265277,0.0084971152,0.0012088385,0.0072206431,0.02010349,-0.0516685583,-0.0277851876,-0.0010326091,-0.0051820972,0.0184269287,-0.0034121824,0.0237919241,-0.0101050902,0.0568506569,0.0316717587,0.0247826185,-0.0027606101,0.0075369035,0.0341408774,-0.0140907327,0.0017918245,-0.0203778353,0.041822575,-0.0299951993,-0.0459987335,0.0340799093,0.0072130221,0.0065766913,-0.0139916632,0.0014336501,0.0104785059,-0.0041990229,0.0077769565,-0.0006125163,-0.0272822194,-0.0051973388,0.0251941383,-0.006271862,-0.0143193547,0.0149061503,0.0274803583,0.0135267982,0.0569725893,-0.001261231,0.0096630873,0.0005934645,-0.0060127573,-0.0049039405,0.0009092485,-0.0174667165,0.0136334887,0.0024862636,-0.032220453,0.0209570117,0.0165369865,-0.0149975996,-0.0177410636,0.0211856328,0.0249959994,0.0183354802,-0.0114615802,-0.0416701585,0.0251636561,0.0013174339,-0.0254684836,0.020560734,-0.0063633109,-0.0116368569,0.0116978232,-0.000209451,-0.006050861,0.0019566228,-0.0242644083,0.0544120222,0.0128714154,0.0541071929,0.0134048667,-0.0054983576,0.0088400487,-0.0055898065,-0.0175124407,0.0291569177,0.0277699456,0.006050861,-0.0037817881,0.0190365873,0.0351468138,-0.003145457,-0.0117206853,0.0151042901,-0.0410909839,0.0342628099,0.015774915,0.0042561786,0.0046067322,0.0379817262,-0.0163998138,0.0484373681,-0.0097850189,-0.0569116212,-0.0167198852,0.0220543966,-0.0236242674,0.029705612,0.0190213453,-0.0378293097,0.03563454,-0.029918991,-0.0396278016,-0.0101431934,0.0027815669,0.0343237743,-0.0184574109,-0.0282271896,0.0178934783,-0.0063137761,0.0453890748,0.0117206853,0.0238071643,0.0108747836,0.013473453,0.0068815206,-0.0303152688,-0.0059937052,0.0046715084,0.0308639631,0.0223439839,-0.0113625107,-0.006271862,-0.0006210896,-0.0313974135,0.0243406165,0.0263524894,0.0200425237,0.0060165673,0.0029396971,-0.0185183771,0.0058946358,-0.0025377036,0.0230146088,-0.0321290046,0.0047743884,-0.0003838943,0.0244777892,-0.0029358868,-0.020088248,0.0061461199,0.0596246012,-0.0319765881,-0.0353297107,-0.0231060572,0.0239595789,0.0155691542,0.0060089468,-0.0158511214,0.0118731,-0.0054450128,0.0065881223,0.0117892716,0.0094420863,-0.0025300828,-0.0094497073,0.0019337606,-0.031305965,-0.0265658703,-0.0143726999,-0.0002054025,0.0398716666,-0.023060333,-0.0072282637,-0.0247978605,0.0158358794,-0.0011926445,0.0058984463,0.009365879,0.0061461199,0.0042256955,-0.0048544058,-0.0099679166,-0.0142964926,0.0307877548,-0.0262457989,0.0080551133,0.0097545367,-0.0058184285,0.0052964082,-0.0073463852,-0.008687634,0.0679769218,0.0142431473,0.0324643143,0.0094116032,0.0000324179,0.0210332181,0.0334397703,0.0044771796,-0.0130390711,0.0085123572,-0.0129171396,0.0282881558,-0.0118121337,-0.0056431517,-0.0052049598,-0.0038656159,0.0151271522,-0.0124141714,-0.007647404,-0.0084818741,-0.0174667165,0.0117130643,0.0039284872,0.0433162376,-0.0098612262,0.0189146549,0.0149137713,-0.016445538,-0.0042980923,0.0174971987,-0.0640141442,0.0287149157,-0.0116902022,0.0007673124,-0.0036388992,0.0272669774,-0.0169332661,-0.0020290196,0.0360613018,0.0073273331,0.0049229925,-0.0344457068,0.00594036,-0.0088400487,-0.0033474064,0.0045991116,0.0173905101,-0.0224811584,-0.0073311436,-0.0248435847,0.0034388551,0.003541735,0.0097240536,-0.0306353401,0.0164607801,0.0031568881,0.0281814653,0.0143574579,0.0138240065,0.0145555967,0.0093963621,-0.0294007827,-0.0263677314,0.0149366334,0.0040999535,0.0235937852,0.0190213453,0.0336226672,0.007666456,0.0313669294,0.0320070721,0.0298885088,0.0003114974,0.0370367542,-0.0075483345,0.0221915692,0.0102117797,0.0441087931,0.0110043362,-0.0036217526,-0.0048239231,0.0196767282,-0.0155462921,0.005700307,-0.0097850189,0.0127494838,0.0159730539,0.0119112032,-0.0571859702,0.0116292359,0.0359393694,-0.0216581188,0.0398411825,0.0133286593,0.0212008748,0.0221306048,0.0019156614,0.0166284367,0.0002521986,-0.0132905552,0.0145479767,0.0170856807,-0.0032521472,0.0190518294,0.0685256198,-0.0079560438,0.0007954139,0.0083447006,-0.0195243135,-0.0047515258,0.0012974296,0.0060661021,-0.015988294,-0.0075102309,0.003094017,-0.0136030056,-0.0307267886,0.0076321624,0.0422188528,-0.0109967152,0.0039132456,-0.0084285289,0.0017756304,0.0011783557,0.0254989676,0.004332386,0.0225878488,-0.0272517353,-0.0117587885,-0.00583367,-0.0079484228,-0.0126961386,-0.0169485062,0.0710252151,0.0149442544,0.002958749,0.0161711928,0.0417616069,-0.0087867035,0.0391095951,0.0037265376,-0.0088857729,0.0321594849,-0.013709696,0.0070377453,-0.012787587,0.0227555037,-0.0235633012,-0.0092896717,0.0402984284,0.0129704848,-0.009815502,-0.0283948462,-0.0541986413,-0.0084056668,-0.0110576814,0.0049763378,-0.0051135109,-0.0081922859,0.0125284828,0.0177410636,0.0183354802,0.0258495212,0.0199510753,-0.0021623825,-0.0165369865,-0.0080932165,-0.0093201548,-0.0549302325,-0.019646246,-0.0005120179,-0.0138163865,0.0011697822,-0.0286082253,-0.0091143949,0.0371586867,0.0181678236,0.0299951993,0.0466693603,0.0231212992,0.0046219737,0.0323728658,0.0098917093,-0.0721226037,-0.0206521824,0.002802524,-0.0181983076,0.0133210383,-0.0150509449,0.0416396782,0.0177105796,0.0045991116,-0.0057155485,0.0160645023,0.0100212619,-0.0073349541,-0.0016632247,0.0029511282,-0.0254989676,-0.026032418,-0.0499615148,-0.0095030516,0.0387437977,-0.0158816036,0.013465832,0.0402984284,-0.0092896717,0.0069920211,-0.0103870565,-0.0109738531,-0.0307877548,-0.0192804504,-0.0068929517,-0.0369453058,-0.0248588268,0.007418782,0.0130619332,0.0341408774,0.020560734,-0.0012669466,0.0110500604,0.003656046,-0.0066338466,-0.0071063321,0.0251636561,0.0169332661,-0.019646246,-0.0327691436,0.0460292175,0.0189756211,0.0338360481,-0.0402374603,-0.0038808575,-0.0153862564,-0.0090229465,0.0024843584,0.055753272,-0.0202863868,0.0195547976,0.0405727737,0.0077198008,-0.0172380954,0.0152643248,-0.0070529869,-0.0193566587,0.0147537356,0.0037227273,-0.0010192728,0.0192956924,-0.0059174979,0.0162016749,0.005814618,0.0102270218,-0.0089238761,0.0041532987,-0.0015832069,0.0190975536,0.0099145714,-0.0276175309,-0.0330434926,0.006961538,0.0282729138,-0.0037322533,-0.0142050432,0.0051439935,0.0056583933,-0.0141135948,-0.004801061,0.005814618,-0.0438649319,-0.0028330069,-0.0184116866,0.0118731,-0.025590416,0.0108138183,-0.0180763751,0.0268097334,0.0043171444,0.0250722058,-0.030848721,-0.0030692497,0.0023586163,-0.0144108031,0.0055135991,-0.0073959199,-0.0058108079,0.047980126,0.0303609949,0.0183202382,0.0293398164,-0.015988294,-0.002979706,-0.0070529869,-0.0027758514,0.0023128919,0.0027320322,0.003187371,0.0413043648,0.0223135017,0.0289130546,0.0240510292,0.0195090733,-0.036792893,0.0029644645,-0.0135953845,-0.0186860338,-0.025590416,-0.0005720311,-0.0058298595,-0.015058565,-0.0043285755,0.0062108962,0.00594036,-0.0148604261,-0.0008173235,-0.0051973388,-0.0119264442,0.0046638874,-0.0008430434,-0.001151683,-0.0097011914,0.0575212799,-0.0090915328,-0.0626119301,0.0285320189,-0.0022747885,0.0165369865,-0.0392620079,-0.0128637943,0.0090991538,0.0538328476,-0.0130771752,0.0151881175,0.0051401835,-0.0013260073,-0.0107071279,-0.0052925982,0.0119645484,-0.0254837256,-0.0346286036,-0.0063823625,0.00958688,0.0276632551,0.0050906488,-0.0304219592,0.0189298969,0.0300256815,-0.0160187781,0.0275108404,-0.0161407087,-0.01781727,0.0197986607,0.0139992833,0.0156834647,-0.0216276366,0.0261086263,0.0161711928,-0.022618331,-0.0342018418,0.0376768969,0.0156529825,0.0035626919,-0.0037532102,0.0227097794,-0.0265963525,-0.0136258677,0.0492908917,-0.0272517353,-0.0150052207,0.004336196,0.0303305108,-0.0231822655,-0.0152795669,0.0241577178,-0.0033264493,0.0259409696,0.0110043362,-0.0029949474,0.0124294134,0.0055517028,0.0188232064,0.0032559575,-0.0011669245,-0.0089619802,-0.003033051,-0.0236699916,-0.023974821,-0.0040732808,0.0256513823,0.0024138666,-0.0023529008,0.0013298177,0.0018261177,0.0309249274,0.000264106,0.0241882019,0.0013869731,0.0079636639,-0.0116216158,-0.0037398739,0.0126732765,0.0299799573,0.0046181632,-0.0013879257,0.0007458791,0.0083142184,0.0029225505,-0.0262000747,0.019631004,0.0100746071,-0.0034521914,0.0083523216,-0.0147232534,-0.0341713615,0.0218562577,0.0026863078,-0.0027015493,-0.0132219689,-0.0121626873,-0.0015746336,0.0014469863,0.0074873688,0.0103413323,0.0195700377,0.0483764037,0.0094725695,0.0518514551,0.0183507204,0.0353601947,0.0000104785,0.0229536425,0.0053459429,0.0086495299,-0.0438954122,0.0743783414,0.0131838657,0.0529488437,0.0059022564,0.0125056207,-0.004332386,0.0294160228,0.0005586949,0.0295531973,-0.0237461999,0.009815502,0.0005972748,-0.0239595789,0.0091067739,0.0021985811,0.0370672382,-0.006972969,0.0091906022,-0.0135649024,0.0131076584,-0.0007935087,0.0461816341,-0.0277089793,0.0045876801,-0.0197681766,0.0014631804,0.0133896256,0.01917376,-0.0289282966,-0.0091220159,-0.0032711991,-0.0023605216,-0.0262000747,-0.0137630412,-0.0265506282,0.00708728,-0.0057612727,0.0067443475,-0.0226640552,-0.017131405,0.0361832343,0.0114920633,0.0200730059,-0.0276327729,-0.0051516145,-0.0667576045,-0.0046067322,-0.0025986694,-0.015988294,-0.0265811104,0.0255294498,0.0175734069,0.0249502752,0.0168265756,0.0032940612,-0.0049991999,0.0088781519,0.033134941,-0.0254837256],"63":[-0.0343698636,0.036895249,0.0595313162,0.0027024692,0.0450873487,0.0169847496,0.00421539,-0.0216351524,0.0332611613,0.0486598462,0.0518627726,-0.038034752,-0.0495529696,-0.0295346789,0.0284875669,0.0540801808,0.0224050861,0.0059361933,-0.0541109815,-0.0123959417,0.0058591999,0.0150753129,0.0040998999,0.0019363847,-0.0163380057,-0.0209268127,0.0053856904,0.0458572842,0.0055435267,-0.039205052,0.0260083787,-0.0368028581,-0.0420384109,-0.0181550495,0.0082844924,0.0454877168,0.0063789054,0.0220047217,0.0055550756,0.0388354845,-0.0329839848,-0.0044348212,-0.0084230807,0.0076338984,-0.0097396681,-0.0297502596,-0.0428699404,-0.0143361762,-0.0225128774,0.053279452,-0.0186786056,-0.0063558072,-0.0353861786,-0.0394206345,0.0156142665,-0.0140513005,-0.0114181247,0.0478899106,0.0330147818,-0.0050815661,-0.0080227153,-0.0277022347,0.0359405316,-0.0152523974,-0.0325220227,0.0375727937,-0.0244685113,0.0039151157,-0.0078725778,0.0360637195,0.0273018684,0.0139204115,0.0252076481,0.01276551,0.0341850817,-0.0475511402,-0.0043655271,-0.0121649615,-0.0317520872,-0.0109253675,0.0056590168,-0.0066137351,-0.0562975928,0.0287185479,0.0173081215,-0.0613791607,-0.0379423611,-0.013774124,-0.0296424683,0.0086001661,-0.0083075911,0.0679389983,-0.0305509921,0.0262085628,0.0406833254,0.0273480657,0.0195101351,-0.0355709642,-0.0283489786,0.0003707715,-0.0154525805,-0.0336307287,-0.0002318224,0.0130734835,0.0312439315,0.0248226803,-0.0177084878,0.0274558552,-0.00245994,-0.0174775068,-0.0216351524,-0.0449641608,-0.0401289724,0.0284567699,0.0002114913,-0.0180164613,-0.0393282436,-0.0238217656,0.024976667,-0.0254540257,-0.0019180988,0.0303508081,-0.0133737577,-0.0077878851,-0.0158298481,-0.0110408571,-0.0182782393,-0.0149906203,-0.0443174168,-0.0524479225,0.0196795203,-0.0455493107,0.0285953581,-0.0128579019,0.0032452729,-0.009962949,-0.0104788048,0.0161840189,-0.0346470401,-0.0020999957,-0.0301506259,-0.0166459791,0.0496761575,-0.0265011378,-0.0163380057,0.0540493838,-0.0414840579,-0.0024445413,0.0215119626,-0.0482594781,-0.025300039,-0.0098705571,-0.0549425073,-0.039728608,0.0672614574,0.0121264644,0.0319060758,0.0338463113,-0.0371724255,-0.0178470761,-0.0323372371,-0.0099398512,-0.0146672474,-0.0259467848,-0.0224358849,0.0167845674,-0.0414532609,-0.0195255335,-0.0913449973,-0.0093316035,-0.0206188392,-0.0424387753,0.0281949919,-0.0102786226,0.0389278755,0.0069987024,0.0155141754,-0.028071804,-0.0235137921,-0.0108714718,-0.0228054523,0.0003428613,-0.0128271049,0.0331379697,-0.0044694683,0.002588904,-0.0274096597,0.0211423952,-0.0137048298,0.0271632802,-0.0325220227,0.0587613843,0.0326760113,0.0469967872,0.0240373481,-0.0256080143,0.0034493054,-0.0163534041,-0.0147134438,-0.003289544,0.0077840355,0.0445637964,0.0423155874,-0.0165381879,-0.0005625332,-0.0070141009,0.0039690109,0.0318752788,-0.0281795934,0.027810026,-0.0043347301,0.0351397991,0.0370800346,0.0215119626,-0.0129964901,0.0017949092,-0.0481054932,0.0044386708,0.0023983452,-0.0174005143,0.0382811315,0.0614099577,0.0512776226,0.0065713888,-0.0479823016,0.0323372371,0.011626007,-0.0140051041,0.0289649274,-0.0191405658,0.0256234128,-0.013219771,0.0378807671,-0.0406525284,-0.0004184112,0.0010124636,-0.0177700836,0.0136586335,0.005843801,0.0075145583,-0.0152446982,0.0167383701,0.0326144136,0.0251768511,-0.0001786488,0.0016235989,-0.040837314,-0.0630114228,0.0631962046,0.0353861786,0.0176468939,-0.0281795934,-0.04077572,-0.0293498933,-0.0124883335,0.0034955016,-0.0501073226,0.0127809085,0.0031490312,0.0043847756,0.0141667901,0.0020172277,-0.0290573183,-0.0047966903,-0.0092392107,0.0002098071,0.039174255,-0.0685549453,-0.0382503346,-0.018724801,0.0169847496,0.0345238522,0.0404061489,-0.0177238863,-0.0627034456,0.0019161738,0.0016495842,0.0019238732,-0.0048120893,0.0052701999,0.0035801942,-0.0130503858,0.0272864699,-0.0080689108,0.0159684364,-0.0185092203,0.0232674126,-0.0004684569,0.0133891571,-0.0102863219,-0.0033915604,0.0067022778,0.0064905458,-0.031490311,-0.0080073159,0.0167075731,-0.0115182167,0.0118800858,-0.0336307287,-0.0155141754,-0.0199258979,-0.0150907114,-0.0301198289,-0.0046080565,0.0080689108,0.0214657672,0.0092700087,0.0198181085,-0.0015966512,-0.0039266646,-0.0310745463,-0.042500373,0.0461960547,-0.0092392107,-0.0207882244,-0.0248380788,0.0686165392,-0.0252076481,0.0070910947,-0.0709571391,-0.0209114142,-0.0751455873,-0.0203570612,0.002823734,0.0042461874,-0.0875261277,0.0190635715,0.0063327095,-0.0077763358,-0.0238063671,-0.0135508431,0.0278562214,0.0291343126,0.017616095,-0.055004105,-0.0675694272,-0.0309051611,-0.0167999659,-0.0239757523,0.0206650347,0.0176314954,-0.0357249491,-0.0915913805,0.0296886656,0.0334151462,0.0068177679,-0.010809877,0.0131966732,-0.0055473763,0.02494587,-0.0371724255,0.0128502026,0.0087079564,-0.0105327005,0.0143823717,-0.0339387022,0.0287647434,0.0255156215,-0.0740984753,-0.0317828879,-0.0152600966,0.0268399082,0.0586997867,-0.0113180336,-0.0073336237,0.0222972967,-0.0412992723,-0.005374141,-0.0373880081,-0.0107020866,0.0147827379,-0.0512468256,-0.0015928015,-0.0085847666,-0.0961493924,-0.0356325582,0.0649208575,0.0057668076,0.0270246919,0.0450565517,0.074960798,-0.0029526979,0.0317828879,-0.0256080143,0.0122342557,0.0411452875,-0.0163688026,0.0311823376,-0.0723738223,0.0051470106,-0.0065213433,-0.0230518319,0.0202954672,-0.0282257907,-0.030381605,-0.0081921006,0.0554968603,0.0485982522,0.0536798164,0.0194485392,0.0016592083,-0.0350474082,-0.0455493107,0.0312901288,-0.0189249832,0.0147673395,-0.0220663156,0.0088311462,-0.0226822626,-0.0047928407,-0.0219739228,-0.0279640127,0.042500373,0.0198797025,0.0131581761,-0.0008002504,-0.0236677788,0.0317212902,-0.0303970054,0.0585765988,-0.0019286853,-0.0064712972,-0.0307049789,0.025823595,-0.0139666079,0.0325220227,0.0329531878,-0.0411452875,-0.0293652918,-0.0326760113,-0.002434917,0.0087310541,0.0161532201,0.0291189142,-0.0399749875,-0.0122727519,0.0406525284,-0.0676310286,-0.0088311462,0.0103325173,0.0327684022,0.0203416627,0.0324604288,0.0055589252,-0.0326760113,-0.0015013719,-0.0265319347,-0.0023059531,0.0011231416,0.0295500774,-0.0035070505,-0.0150753129,-0.049398981,0.0465040281,-0.0197719112,-0.0289187301,0.0497069545,-0.0370800346,0.0672614574,0.0173697174,-0.0051701088,0.0274712536,0.0062557161,0.0308435671,0.0124190394,-0.015044515,0.0128040072,-0.011333432,0.0261623655,-0.0052240039,-0.0164765939,-0.0144747645,0.0221125111,-0.0285799596,0.0197565127,0.0289341286,0.0293960907,-0.0148751298,-0.0153909856,0.0103941122,-0.0065598399,-0.0578990579,-0.0617179312,0.0263625495,0.0413300693,0.0475819372,0.0169385541,0.0025138354,-0.0109561644,0.0054780822,-0.0437630638,-0.0198797025,0.0585458018,-0.0201414805,-0.0106866872,-0.020680435,-0.1032327861,-0.0501997136,-0.0188325923,0.0233136099,0.063042216,0.0372648165,-0.0021885382,0.0145594571,-0.009932152,0.0088927411,0.0108021777,0.0013493098,-0.0350166112,-0.0468427986,0.0353553817,0.0617487282,-0.019895101,0.0226976611,-0.038065549,0.0028545312,0.0080150161,-0.0040421546,0.0167845674,-0.0104557071,-0.0044463705,-0.0253924318,-0.0196795203,0.0120417718,0.0002738079,-0.0060478337,-0.0193869453,-0.0485366546,-0.0112641379,-0.02038786,0.0128425034,-0.0393898375,-0.0132582681,-0.0017583374,-0.0592849366,-0.0106096938,-0.040221367,-0.0036379395,-0.0185862128,0.0240065511,-0.0114489226,-0.0066214348,0.01790867,0.0140820974,0.0219585244,0.0219123289,-0.0249612685,0.0188479908,-0.0059515918,0.0400981754,0.017585298,-0.0292575024,-0.001861316,-0.0125576276,-0.0084769763,0.0436090752,0.0229440406,-0.0126962159,-0.0158914439,-0.0470583811,0.0075607547,0.0073374733,0.0387122929,-0.0171387363,-0.0280872025,0.0223126952,0.0236985758,-0.0503229015,-0.0460112728,0.0105865961,-0.0002368751,-0.021265585,0.0275944434,-0.0264857393,-0.019571729,0.0038477464,-0.0440402403,-0.0012800157,0.0147442408,0.0388662815,-0.0246378966,-0.0275636464,-0.0121649615,0.008923538,-0.0271324832,-0.0027063189,0.0226668641,0.0262701567,0.0152062019,-0.025561817,-0.0042962329,-0.0068293167,-0.0183706321,0.0163534041,0.0030258417,0.0173543189,-0.0150522152,0.0152139012,-0.0275482479,0.0308589656,0.0092623094,-0.0296116713,-0.0137356268,-0.0336307287,-0.0212193877,0.0291497111,0.0289649274,0.0271786787,0.0098243607,0.0104095116,-0.008238297,0.0209268127,0.0013666333,-0.0361561142,-0.0360021256,0.0159838349,0.0001222872,-0.006171023,0.0127809085,0.0048197885,-0.0140205026,0.0079380218,-0.0241605379,-0.0166767761,0.005585873,0.0336923227,0.0259005893,0.0086232638,-0.0652904287,-0.0190943703,0.0245917011,-0.0133121638,-0.0153216915,-0.0240989421,-0.0182782393,0.0142052872,0.0300428346,0.0508464575,0.0275636464,-0.0443174168,0.0508156605,0.0322448462,0.0049083307,-0.06134836,0.0156758614,-0.0213733744,0.0160146318,-0.0160146318,-0.0083152903,-0.0204802509,-0.0214195717,-0.0257466026,0.0071719377,0.0005379916,0.0252230465,-0.0027371163,-0.0069255587,0.0096549755,-0.0170925409,0.0070218006,-0.0285799596,0.0181242526,0.0016255237,-0.0091083227,-0.010255524,0.0007502047,0.0443482138,0.0349550135,0.0254694261,0.0326144136,-0.0213271789,0.018170448,-0.0343390666,0.0470583811,0.0102170277,-0.008500074,0.0163842011,-0.0506616756,-0.0017602622,0.0422539935,-0.0291651096,0.0243145246,-0.0351397991,0.0112564387,-0.0114489226,0.0296578668,0.0220971126,0.0219277274,0.0053125466,0.0059900885,-0.013612438,0.004754344,-0.0028545312,-0.0070102513,-0.0155603718,-0.0366488695,-0.017030945,0.0275482479,-0.0134738497,-0.018201245,0.0226976611,-0.0188017953,-0.0145363584,-0.008369185,-0.0341850817,-0.0151831033,0.0105403997,-0.0013829945,0.0107559813,-0.0240835436,-0.0090775248,0.0292421039,-0.0611019842,0.0138126202,-0.0285183657,0.0114489226,-0.0150291165,0.0409605019,0.0255772155,-0.0127193136,-0.0350166112,0.0293960907,-0.0160762277,-0.0210807994,0.0368336551,-0.0328299962,-0.0219585244,0.0454877168,0.0101785306,-0.0123266475,0.007799434,0.0060054874,0.0360329226,-0.0218815319,0.0291651096,0.0021789139,-0.0436398722,-0.026377948,-0.0503229015,-0.003453155,-0.0184014291,0.0132813659,-0.0163380057,-0.0345546491,-0.0154756783,-0.0326760113,-0.0022944042,0.0161994174,0.0050738668,-0.0055589252,-0.019633323,0.0162148159,-0.0351397991,0.0031124593,0.0152677968,-0.011071655,-0.0107713807,0.0477975197,-0.0162148159,-0.0072373822,0.0140128033,0.0323372371,0.0029142012,-0.0028872534,-0.0174775068,0.0364948846,-0.0062826634,-0.0254386272,0.0236369818,-0.0407449193,-0.0093008056,-0.0332611613,0.0036591126,0.0007737839,0.052786693,-0.013319863,0.0212501865,-0.0085231727,0.0099244528,0.0312131345,0.0183706321,-0.0379423611,0.0009556809,0.0158144496,0.0019027001,-0.01790867,0.0228054523,0.0042538866,-0.0183090363,-0.0589153692,0.0034858773,0.0102401255,-0.0243299231,-0.0088234469,0.0001542275,0.0239141583,0.0226360671,-0.0986747742,-0.0213425774,0.0238679629,-0.0050199712,-0.02155816,0.0119724777,0.0240373481,0.0303970054,0.0208344217,-0.039697811,-0.0102709234,-0.0129964901,-0.0288263392,0.0232058186,0.0198489055,-0.0050238213,0.0109869614,0.0180626586,0.0337231196,0.0340002961,-0.0090236291,-0.0195871275,-0.0014340025,0.0550656989,-0.0091083227,-0.0066021862,-0.025854392,-0.0092084138,0.0288879331,0.0116183078,0.0029199757,0.0025157603,-0.0280564036,0.0295500774,0.0061017289,0.0167691689,-0.0295192804,0.004346279,-0.0068524149,0.0139127122,-0.0241143405,-0.0447485782,0.0359405316,-0.0171233378,0.0514932051,-0.0076723951,0.0231596231,-0.0018362933,-0.0054318863,0.0135893393,0.0333535522,-0.0147750387,0.0103787137,-0.0078571793,-0.0168923568,0.0219431259,-0.0129579939,0.0083152903,0.0022790055,-0.0079303226,-0.0216505509,0.0062403171,0.0013897313,-0.0709571391,-0.0013762575,-0.0143746724,-0.0530022755,0.0290573183,-0.0152292997,-0.0121187652,-0.0045233639,0.0254694261,0.006009337,0.0205264483,0.0101092365,0.0476127341,0.0428391434,-0.0251614507,0.0363100991,-0.0275328495,0.0308281686,-0.0191867612,-0.0165381879,0.0041114488,0.0045503112,0.0239295568,-0.0008021753,0.0079072248,0.0165843833,-0.0105634984,0.0014561382,0.0328915901,-0.0168615598,0.027486654,0.0089697344,0.0341542847,0.0098243607,0.0092315115,0.0283181816,0.0016948178,0.0661527514,0.0142591828,0.039143458,0.0090005314,-0.0218507349,-0.0327991992,-0.0163072068,-0.0130195888,0.0101323351,-0.0326760113,-0.0007954383,0.0241759364,0.0497685522,-0.0001337761,-0.0101477336,0.0183706321,0.0059939381,0.0068485653,-0.0063288598,-0.0030547141,0.0203262642,0.0043732268,-0.0262393598,-0.0088773416,0.0014080172,-0.0066137351,0.0011173671,0.0051508602,-0.0251614507,0.0229594391,-0.0321524553,0.0734209344,0.0108021777,0.0204032585,-0.0013531594,-0.0157990512,0.0106943864,-0.0323988348,-0.0088388454,0.012896399,0.0084153814,-0.0051008146,0.0122419549,-0.0010009145,0.0212193877,0.0102786226,-0.0229594391,0.0299042463,-0.0444406047,0.0411452875,0.0076223491,-0.0098089622,-0.010063041,0.051092837,-0.0127732093,0.0338155143,-0.038558308,-0.0547577254,-0.0309975538,0.0567595549,-0.0106327925,0.0251922496,0.0045965076,-0.0263933465,0.0593465343,-0.0158760436,-0.0309821554,-0.0052355528,0.0142514836,0.0456109047,-0.0116491057,-0.0395438224,0.0229286421,-0.0145363584,0.0421308018,0.0242683273,-0.02038786,0.0063057616,0.0246070996,0.0200644862,-0.0370800346,-0.0073644212,0.0161378216,0.0513084196,0.028071804,0.0028314332,-0.0090236291,0.0318444818,-0.0203262642,0.0338771082,0.0208652187,0.031197736,0.0002584092,0.0220509171,-0.0209422112,-0.0097319689,-0.0260237772,0.0545113459,-0.0259313863,-0.0009802226,0.004265436,0.0064251013,0.0221433099,-0.004053704,0.000310861,0.036371693,-0.0174159128,-0.0241451375,-0.0073682708,0.0160916261,0.0053240955,0.0350166112,-0.0131812748,-0.0091391196,-0.0049429778,-0.0007141141,0.0026986196,0.0216813479,0.0183398332,0.004885233,-0.0295808744,-0.0283951759,0.0074606631,-0.0113180336,-0.0248534773,0.0235137921,-0.0142591828,-0.0118030924,-0.0207574274,0.0328299962,0.0011645255,0.0096626747,0.0257312022,0.0014070548,-0.0053009973,0.0175545011,0.0103479167,0.0088234469,0.0074414145,-0.0188479908,0.0038920178,0.0094470931,-0.0101092365,0.0131196799,-0.0105711976,-0.0087772505,0.0451797433,0.011887785,0.0183090363,-0.0116953012,-0.0047235466,0.0053779907,0.0125114322,0.0194331408,-0.0128117064,0.0204956494,-0.0098474594,0.0429931283,-0.0093316035,0.0090390285,-0.0221741069,0.013481549,0.000389298,-0.0128271049,0.0018362933,-0.0338771082,-0.0108637726,-0.0263009537,-0.0236523803,0.0136355357,-0.0117106996,0.0130734835,-0.012211157,-0.0159530379,-0.0104095116,-0.0095394859,-0.0686781332,0.0235753879,-0.0235753879,-0.0040960503,-0.0104018115,0.0232982114,-0.0270708892,-0.0036976093,0.0228054523,-0.0044848672,0.0025427078,-0.0388970785,0.0072681792,0.0080227153,0.001925798,0.0154756783,0.0114874188,0.0060247355,-0.0029430736,-0.004380926,0.0171233378,-0.0133352615,0.0153601887,-0.049460575,0.0006169098,0.0010047642,0.0201414805,0.0320292637,-0.0140205026,-0.0076877936,-0.0074914605,-0.0250998568,-0.0163226072,0.0298580509,-0.0026986196,0.0235753879,0.0235599875,0.0246070996,0.0024291426,0.003957462,0.0152139012,0.0083229896,0.0254694261,0.0170771424,0.0152523974,-0.0210654009,0.0261623655,0.0359405316,0.0082921917,-0.03523219,0.0038727694,0.0012453686,-0.0230364334,0.0082228975,-0.012342046,0.0168307628,0.0063173105,0.0051200627,-0.0311669391,0.0156296659,0.0233290084,-0.00304509,0.0200490877,0.0240219496,0.0011192919,0.0431779139,-0.0048582852,0.005258651,0.0297656581,-0.0227438584,0.0017246527,0.0003512825,-0.0196179245,-0.0017054044,0.0673230514,-0.0041422462,0.0201106835,-0.0039266646,-0.0248226803,0.0028526064,0.0080997087,0.018694004,-0.0052163047,0.0218353365,-0.0295654759,0.0009705984,0.0055088797,0.0115875108,0.0370184407,-0.0064443499,-0.0016033881,-0.0104788048,-0.0199258979,-0.0086925579,0.0239603538,-0.0188017953,0.0226052701,-0.0265165363,0.0104634063,-0.0078764278,0.020680435,-0.0160916261,-0.0246686935,0.0436706729,0.0071834866,-0.0031971519,0.0233444069,0.01790867,0.0000603917,0.0208806172,-0.0089697344,-0.0112179425,0.0242221318,-0.0010211254,-0.0029777207,-0.0177546833,0.00058515,-0.0119724777,-0.0228208508,0.0320600644,-0.0033434394,-0.0105788969,0.0159530379,-0.0507232696,-0.0027852373,-0.0194023438,-0.006221069,0.0020076036,-0.0186786056,0.0096857734,-0.0147596402,0.0011751122,0.0079842182,0.0138742151,-0.0023579237,-0.0122419549,0.0025735053,-0.0019825806,-0.0429315343,-0.0138819143,0.0052124551,0.0009316205,-0.0122727519,-0.0171233378,-0.0010268998,-0.0000834897,0.0064251013,0.03581734,0.027517451,0.0239911508,-0.0004672538,0.0297810566,-0.0077686366,-0.0776709691,-0.0301660243,-0.0128656011,-0.0109099681,-0.0022924792,-0.0095779821,0.024976667,0.0186632071,0.0262701567,-0.0043039327,0.0005326983,0.019895101,0.018986579,-0.0038400472,0.0032125507,-0.0220201202,-0.0066676307,-0.0473047607,-0.0176930893,0.0287955422,-0.0273788627,-0.0024118191,0.0009802226,-0.0048582852,0.0055358275,-0.0112872366,0.0133275623,-0.0281949919,-0.0211885907,-0.0027217176,-0.0152139012,-0.0030758874,0.0069024605,0.0209884085,0.0267783143,0.0159684364,-0.0061671734,0.0096087791,0.0172157306,-0.0242067333,0.025007464,0.0226360671,-0.0147442408,-0.0018728651,-0.037541993,0.0020287768,0.0048390366,-0.0035570962,-0.0323988348,-0.0105480989,0.0113950269,0.0044964161,0.0084461784,0.0326452143,-0.0046542524,0.0103325173,0.0068832124,0.0078841271,-0.0189095847,0.0168615598,0.0026639726,-0.0075222575,0.008207499,-0.0100784395,-0.0228670482,0.050600078,0.0000498051,0.0159992334,0.0340002961,0.0122804511,0.0086540608,-0.0002880035,-0.0068293167,0.0475819372,0.0114797195,-0.0271324832,-0.0382503346,0.0264241435,0.017616095,-0.0032914691,-0.005162409,0.0020114533,0.0097396681,0.0007376933,-0.0161378216,0.0129810916,-0.0181550495,0.012472935,0.0075415061,-0.0131658763,-0.0001761225,0.0037399556,-0.0259467848,0.0039767106,-0.0085154725,0.013643235,-0.0177084878,-0.0263163522,0.0028141097,-0.0318444818,0.0100553418,-0.0140897967,-0.0051970561,0.0297656581,0.0416072458,-0.0083922837,0.0270246919,0.0017631494,0.0156142665,-0.0214349702,-0.0214811657,-0.0051508602,-0.0262701567,-0.0074337153,0.01475194,0.0191559643,0.018139651,0.0097088711,0.0367104672,-0.0390818641,-0.0225590747,-0.0554044694,-0.0075453557,-0.0362177081,-0.008238297,0.0032029266,-0.0113411313,-0.000016316,0.0058515002,0.0185400173,0.0094932895,0.0060401345,0.0001923633,-0.00609018,0.0100245439,0.0002018671,-0.0019652571,0.0153524894,0.0295500774,-0.0140436012,-0.0400057845,0.0258389935,-0.0015312068,0.0038746942,-0.0390202701,0.0028275836,0.0251460522,0.0469351932,-0.0087772505,0.0221895054,-0.0315981023,0.0055627748,0.0054511344,-0.0412068814,0.0149521232,-0.0116183078,-0.0230672304,-0.0220817141,0.01732352,0.0096934726,0.0161840189,-0.0154987769,-0.0135277454,0.0077647869,-0.0057398598,0.0285029672,-0.0076800943,0.0177392848,0.0257158037,-0.011756896,-0.018724801,-0.0360945165,0.0048698341,0.0319368728,-0.0241451375,-0.0232212171,0.0044656186,0.0244377125,0.0041152984,-0.0203570612,-0.0035051256,-0.0448717698,0.0156142665,0.0203724597,-0.0485058576,0.0071719377,-0.024129739,0.0144670643,-0.0027371163,-0.0226052701,0.0396054201,-0.0030835867,0.0120648695,-0.0015735532,0.0159068424,-0.0064135524,0.0124344379,0.0240373481,-0.0132736666,0.0087849498,-0.0153601887,-0.0114489226,-0.0164457951,-0.0025273091,-0.0234060008,0.0295192804,0.0173543189,0.0062133693,0.0328299962,0.0124267386,0.0118030924,0.007345173,0.0158144496,0.0030547141,-0.0029892698,-0.0067484737,0.0070064017,0.0316288993,0.0366796665,0.0251306538,0.0036976093,-0.0103171188,-0.0087387534,-0.0052355528,-0.0252846405,0.0228516497,0.0069602057,0.0098782564,0.0302584171,0.0028121849,-0.010386413,0.0112487394,0.0007410617,-0.0021096198,-0.0427467488,-0.0045387624,0.0303508081,-0.008761852,-0.0015966512,0.0180318598,0.0263625495,0.0218969304,0.0008474089,0.0182782393,-0.0071103428,0.0388970785,0.0241451375,0.0168307628,0.0068601142,-0.0048390366,-0.0327991992,0.0467196107,0.0241143405,0.0292267036,-0.0240527466,0.0157990512,0.0074029178,-0.0094855903,0.0218045376,-0.0025427078,-0.006055533,0.0004547424,-0.0129579939,-0.0400673784,-0.0258389935,-0.0409605019,0.0392974429,0.0163842011,0.0038477464,-0.0152677968,-0.0040306058,-0.0058284025,0.0254540257,-0.0373572111,0.0282719862,-0.0077917348,-0.0147596402,0.0304739978,0.0311053433,-0.0216967482,0.0233444069,-0.0150522152,0.0082998909,-0.0062326179,-0.0103017204,-0.0127270129,0.026639726,-0.0200028922,0.0041999915,-0.0465656258,-0.0297964551,0.0024195183,-0.0088465447,0.0566055663,0.0004371783,0.024391517,-0.0421000049,-0.0219739228,0.0186478086,-0.0281949919,-0.0015389061,0.0320292637,0.0016033881,0.0267783143,-0.018432226,0.0080227153,-0.0199258979,0.020187676,0.0262855552,0.0111948438],"64":[-0.0243600011,0.0152723324,0.0458029732,-0.016380243,0.0542735793,0.0070787054,0.0004592919,0.0010588256,0.0188204497,-0.0028819691,0.0691111609,-0.0129863909,-0.0276697073,-0.0598552041,0.0442322642,0.0187783781,0.0061496031,-0.0184277724,-0.0350884981,0.0428859442,-0.009143766,-0.0206576176,0.0106583769,-0.0050907778,0.003495527,-0.0230136812,-0.0214710198,0.1028252915,0.0085196896,-0.0201807953,-0.0154967196,-0.0357055627,0.0051784287,-0.0090105357,0.0320592783,-0.0110861147,-0.0080709159,0.0050627291,-0.0048032817,0.0164363403,-0.0169271864,-0.0101745427,-0.0348921604,0.0298715048,0.0069454755,-0.003947807,-0.018960692,-0.0287215225,0.0012358809,0.0600234941,-0.0464761332,-0.0200405531,-0.0424932688,0.0032921764,-0.0004601684,-0.0211344399,0.0046981005,0.0673160702,0.0028293785,-0.0242618322,0.0091788266,-0.0614820085,0.0167729203,0.012137928,-0.030516617,0.0378933363,-0.0308251493,0.0196759254,-0.0202649403,0.0291141979,0.0607527494,0.0303202774,0.035004355,-0.0100202765,0.0312458742,-0.034499485,-0.0230697766,0.000019475,0.0087440768,0.0036077204,0.0307970997,0.0010719734,-0.0005250302,0.0222703982,0.0214850437,-0.0500663258,-0.04672857,-0.0073697069,-0.0129232826,0.0030712956,-0.0154265985,0.0762354434,0.0093050441,0.0343872905,0.0232240427,-0.0027049137,-0.0071067535,-0.0656892583,-0.0354250818,0.027431298,0.0201246999,-0.052226048,-0.0199984815,-0.000677105,0.0491968244,0.0009203369,0.0024454666,0.0207557864,0.0026137566,0.0063459417,-0.0714111254,-0.0343872905,-0.0415957198,0.0067210887,-0.016632678,-0.0172777902,-0.0271648373,-0.0183155797,0.0337982737,-0.0170393791,-0.0235886723,0.0174460802,-0.0143397246,-0.0043404838,-0.0104690511,-0.0278239734,0.0026312869,-0.0309653915,-0.0071348017,-0.0165765807,0.0650722012,-0.0089754751,0.0282447003,-0.0456907786,0.014557099,-0.0356214195,0.0036462869,0.0082251821,0.0062197242,-0.0080989646,-0.0252435245,-0.0277959257,0.0293946825,-0.0381457694,-0.0452981032,0.0196619015,-0.0153284296,0.0284270141,-0.008561762,-0.0224106405,0.0281465296,-0.0176283941,-0.0228313655,-0.0080007948,0.0565735437,0.0392677039,0.027515443,-0.0019721503,-0.0417640097,-0.026449604,-0.0505431481,0.0063810023,-0.0034815029,-0.0072084288,-0.0422969274,-0.0047857515,-0.035340935,-0.0096205883,-0.0923352018,0.0009606564,-0.0321995169,-0.0459151678,-0.0075590331,0.0080849398,0.049982179,0.0307410043,-0.0092419349,-0.030095892,0.0168290175,-0.0487761013,-0.0328726806,0.0094312616,-0.0153985498,0.0030397412,0.0261550974,0.0148656312,-0.0243319534,0.018708257,-0.0318068415,0.0276977569,-0.0238270834,0.0567698814,0.0053537311,0.0066614859,0.0190728847,-0.0438676365,0.0083794482,0.0133299837,-0.026533749,-0.0010640847,0.0443444587,0.0069069089,0.0797134414,-0.0288337152,-0.0246404856,0.0220600367,0.0205594487,-0.0384543017,-0.0096416241,-0.0196058042,-0.005364249,0.0123973759,0.0450737178,0.000022666,-0.0075520212,-0.0197600704,-0.068101421,-0.0061320728,-0.0040880488,-0.0027329621,-0.0109318485,0.0659136474,0.0183436275,-0.024205735,-0.0216393098,0.0195216592,0.0175302252,-0.0054203458,0.0209100526,-0.0047717276,0.019044837,-0.0143257007,0.0385664962,-0.0128110889,0.0327885337,-0.021625286,0.0317226946,-0.0371921286,-0.0155107435,-0.0152863571,-0.0243179295,0.0331251137,0.0126077384,0.016716823,0.0023455443,0.0091788266,-0.029927602,-0.0620990731,0.0343592428,0.0276136119,-0.0112964772,-0.0416518152,-0.0146692926,-0.0418762043,-0.0294227302,-0.0309653915,-0.0283709168,0.0293946825,-0.0213868748,-0.0309934393,0.0101044225,-0.0219057705,-0.0101254582,0.0162400007,-0.0170814525,0.0011438472,0.0541052893,-0.0423249751,-0.0343031473,-0.0597991049,0.0442603156,0.0719720945,0.0351445973,-0.0095434552,-0.0783671215,0.0136525398,0.0073276344,-0.0054869605,0.0013095079,0.0219197944,-0.0077553717,-0.0034990329,0.0493931621,0.0340787582,0.0263794828,0.0218496732,0.0100202765,0.0086809676,0.0334897414,-0.0378372408,0.0033184718,-0.0335738882,0.030769052,-0.0073486706,0.0328446291,0.0419883952,0.0088632824,-0.0198582392,-0.0198722631,-0.0163101219,0.0084355446,-0.0380616263,-0.0224947855,-0.0139821079,0.0127269439,0.0141644226,0.0093541285,0.0394640453,-0.0228874628,-0.0076992749,-0.0312739238,-0.0212746821,0.0405298807,0.0032904234,-0.0063950261,-0.0243880507,0.090876691,-0.0225228332,-0.0040985667,-0.0809475705,-0.0051854406,-0.0589015596,-0.0037760106,-0.0013515804,-0.0125796897,-0.085154824,0.0039162524,0.0008874677,0.0127129201,-0.0089684632,0.0027837998,0.0027557514,0.0023174959,0.0466444232,-0.0402774476,-0.057947915,-0.0413432829,-0.0200545788,-0.0241356138,0.0118854931,0.0061986879,-0.0197600704,-0.0736549944,0.0056973235,-0.0139610721,-0.0024069001,-0.0361262895,-0.0098449746,-0.0226770993,0.0184417982,-0.030180037,-0.0002704037,0.0184698459,-0.0149778249,0.0230557527,0.0073697069,0.0212326087,-0.0095294304,-0.0656892583,-0.0177686363,-0.0229575839,0.0145430751,0.0512724034,0.0033885925,0.0026453109,0.0424932688,-0.0549186915,-0.025944734,-0.0339104682,-0.0142625915,0.0266880151,-0.0523101948,-0.0367433541,-0.014304664,-0.0622673631,-0.0402493998,0.0382299162,-0.001171019,-0.0024980572,0.0750013143,0.0125025567,-0.010476063,0.0065177381,-0.0312178265,0.0564894006,0.0375006571,0.0063038692,0.0271087401,-0.0417920575,-0.0124955447,0.0603039749,-0.0435030088,-0.0086599318,-0.013799794,-0.030264182,-0.0092138862,0.0357616618,0.0135824187,0.0481870845,0.0265617985,0.0128812101,-0.0200125054,-0.016464388,-0.0226630755,-0.0140732648,0.0110440422,-0.0062162182,0.0208820049,0.0229996555,-0.0021106391,-0.025355719,-0.0037654925,0.029927602,-0.0123132309,0.0327324383,-0.0201387238,-0.0314983092,0.0284270141,-0.0135333342,0.0478224568,0.013308947,-0.0429700874,-0.0493651144,0.0025243524,-0.0684940964,0.049645599,0.0478785522,-0.0463078432,-0.0054028155,-0.0426054597,-0.025692299,0.0000769686,0.0139470473,-0.011892505,-0.0148375826,-0.0005894538,0.0389311239,-0.0168149918,0.0235465989,0.0127339559,0.0327324383,0.0012016969,0.0020212349,0.0095715029,-0.0305446647,-0.0272770319,-0.0222143028,-0.0315263569,-0.0132528506,-0.0141924703,0.0277538542,0.0241917111,-0.0293946825,0.0447090864,-0.016969258,-0.0323397592,0.0253837667,-0.0335738882,0.0226350278,0.0149357524,-0.0223685671,0.0564894006,-0.0438395888,0.0177125409,0.0126568228,-0.0325080492,0.0263935085,-0.0103428336,0.0239953734,-0.0092980321,0.0151881874,0.0046945945,0.016464388,-0.037079934,-0.027852023,0.0443444587,0.0311336815,-0.0154826958,0.0127900522,-0.0276416596,0.0331251137,-0.0441761687,-0.0346397273,0.0455505401,0.0424652174,0.0235746466,0.0279221442,0.0031081091,0.0136946123,0.0099852169,-0.0387347862,-0.0158192758,0.054133337,-0.0173198637,-0.0425213166,0.0098309508,-0.0866133422,-0.0110089816,0.0219057705,0.0033622973,0.0456066355,-0.0204051826,-0.0223545432,0.0356214195,0.0036357688,0.0447932333,-0.0126077384,0.0162400007,0.0124815209,-0.0355653204,-0.0207978599,0.0360421427,-0.0147534376,0.0321153738,-0.0104269786,0.006615907,0.0060479278,-0.0044596894,0.0007985018,-0.0186100882,-0.026113024,-0.0078815892,-0.0392116085,0.0024507255,0.0275575146,0.0079657342,-0.0237429384,-0.0670355856,-0.0234905016,-0.0304605197,0.0062653027,-0.0134912618,-0.0140101565,-0.0004991732,-0.0265477747,-0.0176143702,-0.0403054953,-0.0343311951,-0.0452700555,0.0098519865,0.0136665637,0.0214990694,-0.0067035584,0.0018529448,0.0173058379,-0.0023087307,0.0179509502,0.0198722631,0.0022263387,0.0361543372,0.0318629369,-0.0155247683,0.0135052856,0.0240514688,-0.0173759591,0.0228033178,0.0176143702,-0.0161698796,0.0211624876,-0.0215551648,-0.0002441084,0.033601936,0.0204051826,-0.0115839727,0.0018932644,0.0385104008,0.0032062782,-0.0472895354,-0.0420164466,0.030937342,0.0141924703,-0.0066895341,0.0049470295,0.023364285,-0.0058971681,0.0100693619,-0.0415115729,-0.0025629189,0.0216673594,0.0178948548,-0.027767878,-0.0131616937,-0.0363226272,0.0199003126,-0.0288898125,0.02328014,0.0242898799,0.0364628695,-0.0159454942,-0.0239953734,0.0052730921,-0.0314702615,-0.0331531614,0.0291702952,0.0199564081,0.0001985298,0.0079446984,0.0007467876,-0.0162820742,0.0181893613,0.0001154804,-0.0199704338,-0.0145430751,0.0039688433,-0.023364285,0.0202929899,0.0251593795,0.0171796214,0.0141503979,-0.0236447677,0.002787306,-0.0029871506,0.0099080838,-0.0317787938,-0.061201524,0.0273191035,-0.012719932,0.0015777203,0.0025839552,0.0075730574,-0.0156089133,0.0080568921,-0.023869155,-0.0347238705,0.0229996555,0.0380616263,-0.0103778932,-0.0088352337,-0.0219618659,-0.0115068406,0.030853197,-0.0191570297,0.0122711584,-0.008400484,0.0143537484,0.0254258402,0.0235746466,0.057050366,0.0097397938,-0.0485797599,0.025944734,0.053291887,-0.0020089638,-0.0297032148,0.0213307794,-0.0313019715,-0.0069630058,0.0253977906,-0.0106513649,-0.033097066,-0.0076501905,-0.0151881874,0.0601917841,0.0078745773,0.029843457,-0.0251734033,0.0076992749,0.011394647,-0.0032974354,0.0157491546,-0.035004355,-0.0044176169,-0.0127269439,-0.0212326087,0.0065107257,0.0033272367,0.0220600367,0.0085968226,0.0355372727,0.0385104008,-0.010973921,0.0032080314,0.0211765133,0.0405298807,0.0049926084,-0.0094312616,0.0153284296,-0.0176143702,-0.0336299837,0.0466724746,-0.0248368233,0.0029433249,-0.0268282574,0.0028784631,0.0047787395,0.0357336104,0.0278940946,0.0085056657,0.015384526,0.0085407263,-0.0101815555,-0.0115979975,0.0245142672,0.0043825563,0.0061040246,-0.0533199348,0.0400811061,0.032423906,0.0022035493,-0.0232240427,-0.0117803114,-0.0050066323,-0.0016907903,-0.0545260124,0.0028451555,-0.0053081522,0.0198442154,-0.0011175519,-0.0001933803,-0.0283148214,-0.0241496395,0.0299556497,-0.0352848396,0.0225368589,-0.0253276695,0.010973921,-0.0179509502,0.0167729203,0.009312056,-0.0131476689,-0.0485797599,0.0171796214,-0.0390713662,-0.0381457694,0.0177265648,-0.0095224185,-0.0364628695,0.0411188975,0.0131476689,-0.0036532991,0.0178948548,-0.0254679117,0.0229295343,-0.0151601387,0.0349482596,-0.0089894999,-0.0271367896,-0.0233923327,-0.0151461149,-0.0076782387,-0.0003558636,-0.0053467187,-0.0071698623,-0.0287495703,0.0224246643,-0.0171936452,-0.0017407514,0.0262252167,0.030937342,-0.0024191712,-0.0049926084,0.0125867017,-0.023364285,-0.001707444,0.0172497425,-0.0131967543,-0.0076992749,0.0081971334,0.0037795166,0.0161979292,0.0178387575,0.0478785522,-0.0187363047,0.0235465989,-0.0089614512,0.0248788968,0.0046139555,-0.0225088093,0.0037549743,-0.0415115729,-0.0023157429,-0.0251734033,0.0070261145,-0.0313300192,0.0551150292,0.0163381696,0.0220319871,0.0223545432,0.0318909883,0.0237289127,-0.0047471849,-0.0171515737,-0.0254819356,0.0027802938,0.008561762,-0.0291141979,0.0126988953,0.0183576532,-0.012551642,-0.0550869815,-0.0232941639,-0.0298715048,0.0050241626,-0.0253697429,0.0333214514,-0.0029293008,0.0171515737,-0.1135958657,-0.0105111236,0.0347238705,-0.0122641455,-0.0025085753,0.0125656659,0.0056727808,0.0076501905,0.0130144395,-0.0360982418,-0.0143327126,-0.0430542342,-0.0597991049,-0.0034359242,-0.0072505013,-0.0028416496,0.0217234548,0.0121098803,0.0133440075,0.0170393791,-0.0409225598,-0.0211063921,-0.0116120214,0.0355933718,-0.0087721245,-0.0153284296,-0.0262672901,0.0276977569,0.0011175519,0.0028609328,-0.0367714018,0.0167729203,-0.0221301578,0.0298715048,-0.0054869605,-0.0076221423,-0.0190167893,0.0236026961,0.0167729203,0.0036708293,-0.0262672901,-0.0505150966,0.0327043906,-0.027431298,0.0628283322,-0.0133440075,-0.0083443876,0.021036271,-0.0087581007,-0.0028521677,0.0170253552,-0.0217234548,0.012229085,-0.0086599318,-0.02378501,0.001868722,-0.0232520904,-0.0095715029,0.0090315724,-0.0118714692,-0.0103428336,0.0046665459,0.0340787582,-0.0547504015,0.001746887,-0.0075940937,-0.0108897761,0.0206015203,0.002494551,0.02277527,0.0130354762,0.0418201052,0.0187503286,0.0077483598,0.0219197944,0.0301519874,0.0400250107,-0.0163521953,0.008898343,-0.0105672199,0.0313580669,-0.0184698459,-0.0235465989,0.0327324383,0.0109598972,0.0024226771,-0.0074398275,-0.0241776872,0.0152583085,-0.0346397273,-0.0021930311,-0.0123553034,-0.0078535415,0.0028118482,0.015875373,0.0025804492,0.0080007948,0.0161698796,0.0357616618,0.0129162706,0.0328446291,0.0056797932,0.0391835608,0.0150339212,-0.0142836282,-0.0341909528,-0.0060198796,0.0047787395,0.0237148888,-0.0113525745,-0.0199564081,0.0048348363,0.0146412449,-0.0131055964,0.0048558726,-0.0011087868,0.0158613473,0.0094382735,-0.0004759456,-0.0403615907,0.0133229718,0.0091648018,-0.0312178265,0.0176844914,-0.0106724016,-0.0028241193,0.0160296392,-0.0036462869,-0.0096626608,0.0268002097,-0.0256362017,0.028020313,0.0227472205,0.0387347862,-0.0005530786,-0.0147814862,0.0090806568,0.0161839034,-0.0338263251,0.0317226946,0.0051503801,0.018792402,-0.0150619699,0.0121519528,0.0264215562,0.0155107435,-0.0139540592,0.0259587578,-0.023700865,0.0407542698,0.0019230657,-0.0066825221,0.0133299837,0.0544979647,0.0007213688,0.0850987285,-0.0158332996,-0.0514687411,-0.0149497762,0.0170393791,-0.0251734033,0.0166747514,0.0360982418,-0.0366872549,0.0323117115,-0.0300397947,-0.0254959594,0.0162680503,-0.0031992663,0.0167869441,-0.0053537311,0.0007375843,-0.0008515307,-0.0235606227,0.0578357205,0.0089474274,0.0140311923,0.0291141979,0.0110650789,-0.001669754,-0.0443444587,0.0219758917,0.0273752008,0.044148121,0.030769052,0.0002890296,-0.0241356138,0.0195917804,-0.0403054953,0.0089614512,-0.0022684112,0.0225368589,0.0177265648,0.0200826265,-0.0134912618,-0.0075520212,0.0069349571,0.0204051826,-0.0426054597,0.0243459772,-0.0331251137,0.0272489823,0.0015479189,-0.0168991368,0.0083233509,0.0838645995,-0.0316105038,-0.0373604186,-0.0295349248,0.0295910202,0.0026137566,0.0062898449,-0.0107635586,0.0107004493,-0.0178107098,-0.0081200004,0.0173899829,-0.0055711055,0.0109248366,-0.0073697069,-0.0049996204,-0.0191991031,-0.0039407946,-0.031021487,0.0129162706,0.0146412449,0.0098589985,-0.000327377,-0.0030572712,0.0230838004,0.026197169,0.0004737543,0.0239392761,0.0173759591,0.0031642057,0.0169271864,-0.0058025047,0.0076361662,0.0244020745,-0.0344433859,0.0323678069,0.0163942669,-0.0208820049,-0.0015452894,0.0067456309,0.0135403462,0.0555918515,0.0266038701,0.0366872549,-0.0011824138,-0.0082041454,0.0233502612,0.0334055983,0.0176704675,-0.009809914,0.0119626261,0.0104199657,0.0395201407,-0.0166887753,0.0095154066,-0.0082392059,0.0079096379,0.0197460465,-0.0272910558,0.009143766,0.0093330918,-0.0164223146,0.0004991732,0.0150339212,0.0245002434,-0.0045087743,0.034499485,0.0130424881,-0.0178107098,-0.0241075661,0.018035097,-0.0512724034,0.0202368926,0.0021439467,-0.0068332818,0.0162820742,0.0001837387,-0.0424652174,-0.028020313,0.0382860117,0.0066825221,0.0077273236,-0.0407262221,-0.0029222886,-0.0018844992,0.0156369619,0.0237990338,0.0024156652,-0.0100343013,-0.0158192758,-0.0131897414,0.0013428152,-0.0043369778,0.0141994832,-0.0278660469,0.0014646504,0.0130915726,0.032592196,0.0077062873,0.0147534376,0.0109598972,0.0016294345,-0.0260849763,-0.0179930236,0.0204192065,-0.0167729203,0.0097468058,0.0292544402,0.0402774476,-0.0046069431,0.0013138904,0.0508516803,0.0347238705,0.0218356494,0.0193112958,0.006903403,0.0180070475,0.0131687056,0.0401933007,0.0265617985,-0.016127808,0.0030432472,0.0072084288,-0.0329848714,0.0169973075,-0.031021487,0.0071698623,0.0110791028,-0.019044837,-0.0336580351,0.008568774,0.0025857084,-0.008568774,0.0283709168,0.0149778249,-0.0015260061,0.0117382389,0.0028924872,0.0327043906,-0.0045824009,-0.0174601041,0.0291702952,0.0108897761,-0.0240935422,0.0061425911,0.058621075,-0.001402418,-0.0018915114,0.0137436967,-0.0181753375,-0.0163101219,0.0010237652,-0.0046910886,-0.0097888783,-0.0161979292,0.01214494,-0.0091648018,-0.0226210039,0.0093891891,0.0343592428,-0.0205173753,0.0128741981,-0.007064681,0.016127808,0.0024542315,0.0284129903,0.0048698969,0.0144308815,-0.0114507433,-0.0000634375,0.0060128672,-0.0142625915,-0.0186100882,-0.0018739811,0.0431944765,0.0003834737,0.001554931,0.0229856316,0.0455785878,-0.0095154066,0.0252014529,-0.0006131196,0.0189887397,0.0199423842,-0.0041897241,-0.0028626858,-0.0071628504,0.0183576532,0.0027347151,0.0050416929,0.0337141305,0.0172076691,-0.0038356134,-0.0126778595,-0.042577412,0.0030835667,0.0011044042,0.0225789305,-0.0075379969,0.0100343013,0.0038987221,0.0063950261,0.0180771686,0.0238411073,0.021541141,-0.0021772541,-0.0002355624,-0.0104059419,-0.0104480144,-0.0471773446,-0.028861763,-0.0091507779,-0.0107635586,-0.0195076354,-0.0403896384,0.0002872766,0.0234624539,0.0192692243,0.0199564081,0.0337982737,0.0325361006,-0.0108266678,0.0323678069,0.0399128161,-0.0522540957,-0.0190167893,0.029843457,-0.0353970304,0.0127409678,-0.0162400007,0.0297873598,0.018035097,-0.0024349485,-0.0065072197,-0.0036462869,0.0273331273,0.028861763,-0.0165765807,-0.0009168308,-0.0268703308,-0.0116190333,-0.0539089516,-0.0154546471,0.0064370991,-0.0163101219,-0.0094312616,0.0175442491,0.0136525398,0.0232941639,-0.0035218224,-0.0103778932,-0.0125796897,-0.0263794828,0.0037760106,-0.0390713662,-0.0373884663,0.014472954,0.0173479114,0.0463358909,0.0097538177,0.0036287566,0.0173619352,0.0182735063,0.0080919517,-0.013883939,0.0250051133,0.0063003632,-0.0142485676,-0.0183997247,0.0273191035,0.0386225916,-0.0056482386,-0.0377811417,-0.0071418141,-0.0366311595,-0.0057323836,0.021288706,0.0477944091,-0.0057323836,0.0075169606,0.0173619352,-0.0178948548,-0.016380243,0.0307410043,0.0043545081,-0.0244301222,0.0041476516,-0.0178387575,-0.0020440244,0.0477663577,0.0117312269,0.0030537653,0.0116891544,0.0126427989,-0.0009194603,0.0097538177,-0.0036147325,0.0141994832,0.0119626261,-0.0289739575,-0.0291983448,0.021456996,-0.0008681844,0.0136595517,-0.0122431098,-0.0214008987,0.0026540761,-0.0186942331,-0.0150198974,-0.002640052,-0.0241776872,-0.0059392406,-0.0275575146,0.0007402138,0.0043229535,0.0034481953,-0.0270947162,0.033433646,-0.0002067471,0.0222563744,-0.0123202428,-0.0125796897,0.0263935085,-0.0330690183,0.0013568394,0.0101394821,-0.0002473953,0.0401372053,0.0412591398,0.0256221779,0.0185119174,0.0074398275,0.0084074959,0.0054203458,-0.0030800607,0.0096626608,-0.0168149918,0.0184838697,0.028945908,0.0212185849,0.0429700874,0.0230557527,0.0004301479,-0.0365470126,-0.0091858385,-0.0158893969,-0.003413135,-0.035340935,-0.0046139555,-0.0041897241,-0.0037795166,-0.0113736102,-0.0045508468,0.0077203112,0.0031764768,-0.0117803114,-0.0058130226,-0.0154826958,0.0102657005,0.0143397246,0.0220319871,0.0246545095,0.0442883633,-0.0061741453,-0.0530674979,0.0238270834,-0.016548533,0.0191710554,-0.0250752345,-0.004908463,0.0018319086,0.0393798985,0.0029293008,0.0182735063,0.0051714168,-0.0036077204,-0.0058130226,-0.0039863735,0.0161839034,-0.0076431786,-0.0222703982,-0.0156369619,-0.0049154754,0.0375006571,0.0143186888,-0.029843457,0.0086388951,0.0130284633,-0.0199984815,0.0436993465,0.0072224531,0.0150339212,0.0327043906,0.0225929543,0.0197320227,-0.0367153063,0.015047946,0.0321995169,-0.0207557864,-0.0149918487,0.0376408994,0.016716823,0.0343592428,-0.0022912004,0.0220460109,-0.0156229371,-0.0020001987,0.0376689471,-0.0270947162,-0.0079657342,-0.0148235587,0.0158192758,-0.0353128873,-0.0024735148,0.0326763391,0.0051083076,0.04723344,-0.0067421249,-0.0133369956,0.0040074098,-0.0029012524,0.0060339035,0.0132107781,-0.0063424357,-0.0154265985,0.0032010193,-0.0196058042,-0.0317226946,-0.0142135071,0.012888222,-0.0015040934,0.0065948707,0.0271367896,0.0164082907,0.0362384841,0.0085827988,0.0337141305,-0.0005933981,0.0143327126,-0.0111632477,-0.0017933421,0.0292263925,0.0316665992,0.0154546471,-0.0104269786,0.0012735709,-0.0154125746,-0.0176985152,-0.0090245605,0.0212746821,0.0198722631,-0.0138629023,0.0211624876,-0.011387635,-0.0418481529,0.0209661499,0.0159875657,0.0010623317,-0.0202088449,-0.0033535322,0.0021965373,-0.0112754414,0.0293666348,0.0002988903,0.0157351308,0.0279081184,-0.0206015203,0.0390152708,0.0035358465,0.0149077037,-0.0146552688,0.0189887397,0.0093751643,-0.0147113651,-0.0203771349,0.0688306764,0.0289178602,0.0387628339,0.0024682558,0.0078675654,0.0176143702,0.0184137486,0.0105531961,0.0034481953,-0.0172497425,-0.0076852511,-0.0029345597,-0.0222283266,-0.0213027298,-0.0149077037,0.0471492931,0.0296471175,-0.0118644563,-0.0103989299,-0.0002083906,-0.0161418319,0.0362945795,-0.039996963,-0.0122641455,-0.0193253215,-0.007064681,0.0268703308,0.0405298807,-0.0168430414,0.0080779279,0.003030976,0.0067245946,-0.0095925396,-0.016380243,-0.0312739238,0.0122571336,-0.0075590331,-0.0002594473,-0.0192692243,-0.0170674268,0.0294788275,0.0094172368,0.0349763073,-0.0209240764,-0.0039022283,-0.0388189331,-0.0091998624,-0.0072645256,-0.0281605553,-0.0092840074,0.019297272,0.0071698623,0.0148796551,0.0060900003,0.0328165814,-0.0432786196,0.0176985152,0.0442042165,-0.0113245258],"65":[-0.0065674717,-0.0051470902,0.0347778276,-0.0133358054,0.0417793058,0.0056492449,0.003794858,-0.0073063569,-0.0096700732,-0.0153802941,0.0461695753,-0.0238021519,-0.0108895926,-0.0020193809,0.0555813983,0.0581926033,-0.0055954428,-0.0264994428,-0.033371795,0.0646775812,-0.0276902672,-0.0041607139,0.021291377,-0.0004963265,-0.0393976569,-0.0080273086,-0.0135653615,0.0856820121,0.0290819556,-0.0441609547,-0.0124821411,-0.0442757346,-0.0236873738,-0.0073458119,0.0186945181,0.0175754298,0.0077260151,0.0218652692,-0.0251794923,-0.0287089255,-0.0169728436,-0.0040280013,-0.0106241675,0.0272885431,-0.001781754,-0.0001478443,-0.0227548014,-0.0486947,-0.008952708,0.0540605858,-0.0224391595,-0.0186658241,-0.0099498453,-0.0224965494,0.0196988285,-0.0277906992,0.0074175484,0.0412628017,0.0220517833,-0.0298997499,0.0136442715,-0.0487233922,0.0167432856,0.0212770291,-0.0192110203,0.0380777046,-0.0256673004,0.0323961787,-0.0350647755,0.0474608317,0.0526545495,0.0217935331,0.0252942704,-0.004619827,0.0419801697,-0.042697534,-0.0138451336,0.0530562736,-0.0097776772,0.0194979664,0.0505311526,-0.0103013534,-0.0214491971,0.0584221631,0.0097489832,-0.0428410061,-0.0064024776,-0.0155668091,-0.009182265,0.0196414385,0.004644935,0.054806646,0.0136586195,0.0095050791,0.0318222865,-0.0217935331,0.0109398076,-0.0279485192,-0.0215352811,0.0196270924,0.0084146848,-0.0609472841,-0.0022776322,0.0113989208,0.0095122531,0.0204305388,-0.0099426713,0.0071772314,0.0298710559,0.0087805409,-0.0656531975,-0.002975269,-0.0460834913,-0.00915357,-0.0005981026,-0.0034594901,-0.0481208079,-0.0148064028,0.0206600968,-0.0057460894,-0.0176328178,0.0108322036,-0.0315640345,-0.0084864218,0.0137375295,-0.0379342325,0.0354664996,-0.0681209266,-0.0240317099,-0.0130273383,0.064390637,0.0004355747,0.057303071,-0.0347204395,0.0050107907,-0.0346630514,-0.0348926075,-0.0048709046,-0.0100072343,-0.0132927634,-0.0236586798,-0.0080201346,0.0349786915,-0.014949875,-0.0183932241,0.0168580655,-0.0066571422,0.0441896506,-0.0056205504,-0.0148924859,0.0199570786,-0.0129197342,-0.0180488899,0.0155237671,0.024046056,0.021348767,0.0277046151,0.0156672392,-0.0468582474,-0.0024928416,-0.0202727187,0.0248638522,0.0196414385,-0.0123314951,-0.0158107132,-0.0064957351,-0.0257390365,-0.0253803544,-0.1050795466,-0.0083716428,-0.0365281999,-0.0619802885,-0.0083429487,0.0047274316,0.0604881719,0.003018311,-0.0131062483,-0.067260094,0.0164276455,-0.0472886637,-0.0281924233,0.0053371917,0.003136676,0.0085581578,0.039282877,-0.0099857133,-0.0547492541,0.0073816804,0.0055308798,0.0362986401,-0.0223817714,0.0307031982,0.0316788144,0.0281206872,0.0189527683,-0.0756389052,0.0235008597,0.0384507366,-0.0225252435,-0.0036406247,0.0451365709,0.0183071401,0.0712773353,-0.0080918707,-0.0198853426,0.0229556635,0.0446774587,-0.0277906992,0.0083931638,-0.0159398373,0.0097920252,0.0111765387,0.0320805386,0.003036245,-0.0206457488,-0.0358969159,-0.0457678512,-0.0494120643,-0.0105667785,-0.0072166864,-0.0137949185,0.0461121872,0.0324535668,-0.0061693345,-0.0205740128,0.0190388523,0.0294406377,-0.0122238901,0.0281924233,-0.0071126684,0.0136012305,-0.0334865712,0.0093759531,-0.0419514738,0.0502155125,0.012274106,0.0388524607,-0.0226256754,-0.0253516603,-0.0355238877,-0.0253660064,0.008895319,-0.0031922718,0.0241895299,-0.012152154,0.0280346032,-0.0449357107,-0.0522815213,0.0372742563,0.0352656357,0.0040746303,-0.0382785685,-0.0145983668,-0.0345482714,-0.0493833683,-0.0275898371,-0.0294119436,0.0260403305,0.0024480063,-0.0177619439,0.0339456871,-0.021176599,-0.0103228744,-0.0165998135,-0.007611237,-0.0106887305,0.0509902649,-0.03684384,0.00621955,-0.0393976569,0.0470017195,0.0564422347,0.0247060321,-0.0217648372,-0.06054556,0.0109039396,0.0259112045,0.0010697697,-0.0016311074,-0.0049390541,-0.0000325336,0.009053139,0.0352369435,0.0197849125,0.0250216722,0.0276185311,0.0348352194,-0.004422552,0.0451365709,-0.0435870662,0.0018741146,-0.0204735808,0.0567004867,-0.0099068033,0.0073816804,0.0344334953,0.0225826334,-0.0068651778,-0.0298997499,-0.0278911293,0.0058393469,0.0030631463,0.0063594361,-0.0668009818,-0.0074103749,0.035983,-0.0189671163,-0.0136514455,-0.0196988285,-0.0011352292,-0.0378194526,-0.0422958098,0.0137231825,-0.0041786479,0.0037231215,-0.0374177285,0.0919374302,-0.0270446409,-0.007424722,-0.0702443272,0.0099354973,-0.0949216634,-0.0032012388,0.0194262303,-0.0063199811,-0.0725398958,-0.0007590613,0.009103355,0.0226687174,-0.0037302952,-0.0101004913,-0.0326257348,-0.0124032311,0.0583647713,-0.0507607087,-0.0659975335,-0.0101937493,0.0021754077,-0.024003014,0.0246773381,-0.0225539394,-0.0023708895,-0.0598568916,0.0221522152,-0.008895319,0.015165085,-0.0135868825,-0.0022740453,-0.0379916206,0.0105022155,-0.035983,0.0382498726,0.0198279545,-0.0163128674,0.0170445796,-0.0174606517,0.0441035666,-0.007503632,-0.0506172366,0.0049282936,-0.0244190861,0.0285654534,0.0342039391,-0.0016786328,-0.0071557104,0.0198423006,-0.0552657582,-0.0230130516,-0.0425253659,-0.0237017218,0.0222526453,-0.0424679741,-0.009089008,-0.0318509825,-0.0613490082,-0.0294406377,0.02413214,0.0448209308,0.0100359283,0.0713347197,0.0049964436,-0.0117934719,-0.0036908402,-0.0197705645,0.0320518427,0.0398854651,0.0094333421,0.0351508595,-0.0664566457,-0.027317239,0.0380490124,0.0034989452,-0.0137949185,-0.0329700708,-0.042152334,-0.0079268776,0.0317075104,0.0218652692,0.0399428532,0.0033303646,-0.0043292944,-0.0200575106,-0.0278911293,-0.0009123979,-0.0059828195,0.0218078792,-0.0060868375,0.0392541848,0.0099283243,-0.0157246292,-0.0598568916,-0.009311391,0.0409758575,-0.0193975344,0.0411767215,-0.0164276455,-0.0482355878,0.0500720404,-0.0106098205,0.0295267217,-0.0251938403,-0.0232569557,-0.0258825105,0.0082927328,-0.0323100947,0.0223530773,0.045739159,-0.0350360796,0.0086944569,-0.0308753662,-0.0305597261,-0.0200144686,0.0439027064,-0.0149068329,0.0057496759,0.0080416556,0.0388811529,-0.0149785699,0.0035904092,0.0063056336,0.0111478437,0.0131205963,0.0050645932,0.0286228415,-0.0180488899,-0.0257820785,-0.0059397775,-0.0179341119,-0.0048924256,0.0077547096,0.0480921119,-0.0083142538,-0.0070122378,0.0187519062,-0.0100215813,-0.036929924,0.0024892546,-0.0269442089,0.0280059092,-0.0220948253,-0.0439027064,0.0205166228,-0.0534866937,-0.0158824492,0.0003651833,-0.0313918702,0.04826428,-0.0107030775,0.0277189631,-0.0111119756,0.0291393436,0.0309327561,-0.0233860817,-0.0170302317,-0.0143185947,0.0348639116,0.0503015965,-0.0132282004,0.002390617,-0.0415497497,0.0248495042,-0.0588812754,0.0049390541,0.0538310297,0.0136514455,0.0395985171,0.0036316575,0.0118939029,-0.0129340813,-0.0039311573,-0.0263129286,0.0011944118,0.045566991,-0.0175754298,-0.0485512279,-0.0145481508,-0.0819517151,-0.0140890377,0.0189527683,-0.0172023997,0.0265137907,-0.0394837409,-0.0118795549,0.0572169907,-0.0155237671,0.0385655127,-0.0276615731,-0.0124032311,-0.0146772768,-0.0385942087,-0.009160744,0.0236156378,0.0019530248,0.0057138079,-0.0079483986,0.0181780159,-0.0035043254,0.0262555387,-0.027102029,-0.0168724116,-0.0021305725,-0.0148494439,-0.0282354653,-0.0096485522,0.0232713036,0.0114132687,-0.027432017,-0.0338309072,-0.0038665945,-0.0191966724,-0.0065997532,-0.0272024609,-0.0047417791,-0.0019530248,-0.0216644071,-0.0136155775,-0.0244190861,-0.0258538146,-0.0620950684,0.0266429167,0.011965639,0.0263990127,0.0140459957,0.0130345123,0.006180095,-0.0017494726,0.0268581249,0.009146397,-0.014949875,0.0409184694,0.0323387906,0.0034792176,0.0226543695,0.0074318959,0.0027582664,0.0056707659,0.0323674828,0.0144692408,0.0198709946,-0.0224535074,-0.0050502457,0.0079770926,-0.0045516775,-0.001236557,-0.0089240139,0.04261145,0.0184793081,-0.0443044305,-0.0463991314,0.0196988285,0.0327118188,-0.0073242909,-0.0047274316,-0.0104376525,-0.0078407936,-0.0017306417,-0.0685800388,-0.0319944546,0.0231565256,0.00907466,-0.0296414997,-0.0032371071,-0.0109971967,0.0328552909,-0.0193544924,0.0000784617,0.0196414385,0.0165998135,0.0112841427,-0.0195266604,0.004540917,-0.0024695271,-0.0235725958,0.0023547488,0.0205022767,-0.0058285864,0.0084075117,0.0137733975,-0.03684384,0.0197131746,0.0157102812,-0.0264994428,0.0056205504,-0.0012105525,-0.0218652692,0.0057711969,0.0167002454,0.0003443349,0.0403732732,-0.0230991356,0.0039526783,0.003755403,-0.0039921333,-0.0452513508,-0.0408036895,-0.0069440878,-0.0027098441,-0.006154987,-0.009232481,0.004623414,-0.006097598,-0.0009025342,-0.0189097263,-0.0103228744,0.017948458,0.0277906992,-0.036757756,-0.0190675464,-0.0293832477,-0.0076757995,0.0205883607,-0.0276615731,0.0260977186,-0.0210187789,0.0220374353,0.0373890363,0.0215209331,0.0584795512,0.0221091732,-0.0246342961,0.0287663154,0.0525110774,0.0039455043,-0.0247203801,0.0429844782,-0.0484651439,0.0000264808,0.0101004913,-0.0081420867,-0.0104806945,0.0012401438,-0.0257103425,0.0504163727,0.0018149321,0.0314492583,-0.0108250296,-0.0273746271,-0.0264850967,0.0245769061,0.0039024625,-0.0405167453,0.0042754924,0.0042970129,-0.0055380538,0.0063988911,0.0085725049,0.0327979028,0.0136012305,0.0222669933,0.0362986401,0.0094835581,0.0164419934,0.0468869396,0.0338882953,0.018163668,0.0072884229,-0.0033321579,-0.0178336799,-0.0006936017,0.054261446,-0.0132712424,0.0211909469,-0.0196414385,-0.0053802333,-0.0078336196,0.03021539,0.0052295867,0.012023028,0.0333430991,0.0222096033,0.0017279517,-0.012216717,0.036929924,0.0022704585,0.0074534165,-0.0371594802,0.0171019696,0.0237447638,0.0152942101,-0.0299858339,-0.0012356603,0.0000215209,-0.0321092345,-0.0546631701,-0.0096915942,0.0041965819,0.0350934677,-0.0013082934,-0.0021736142,-0.0143257678,-0.021305725,0.003873768,-0.024246918,0.0308753662,-0.0064419326,-0.007489285,-0.0084577268,0.015035959,0.0002075873,-0.0061227055,-0.0515354611,0.0161406994,-0.0057604364,-0.0449644029,0.0346917436,-0.0327692069,0.0062769391,0.0457104631,0.0058788019,0.0123817101,0.0067109447,0.0025896856,0.0190532003,0.009189439,0.0259829406,-0.0010455587,-0.0191823263,0.0186801702,-0.0217935331,-0.0172741357,-0.0211479049,-0.0161120053,0.0009155364,-0.0385081246,0.0260259826,-0.0086298948,0.0195983965,0.0406315215,0.015251168,-0.0117647769,-0.0178480279,0.0137662236,-0.008873798,-0.0277620051,0.0173889138,-0.0289671775,-0.0191392843,0.0131923323,0.0016606987,0.0249499362,0.0138164395,0.0364708081,-0.0160976592,0.0107819876,-0.0025609911,0.045911327,-0.0203588028,-0.0207605269,-0.0087231519,-0.0304736421,0.0088451039,-0.0348639116,0.033285711,-0.0263846647,0.0739172325,0.0063020466,0.0112697957,0.0079555716,0.045394823,0.0148924859,0.0190532003,-0.0139957806,-0.0117504299,-0.0199714266,-0.0042862524,-0.0177762918,0.0428983942,-0.0051255692,-0.0125825722,-0.0346917436,-0.0175180398,-0.0185080022,-0.0163846035,0.0006478698,0.0305597261,-0.0118867289,0.0077618835,-0.1055386588,-0.0097131152,0.0408610776,-0.0284650214,-0.0008711495,0.0148781389,0.0256242584,0.0378768444,0.015107695,-0.0299571399,0.0275898371,-0.0502442047,-0.0482929759,-0.0160976592,-0.0144477198,-0.0037016007,0.0058285864,-0.0024497996,0.0011854448,0.0200288165,-0.0265281368,-0.0146701029,-0.021348767,0.0486373119,-0.0059684725,-0.0043615759,-0.0167145915,0.042324502,-0.012338669,-0.0113774007,-0.0125538781,-0.0196844805,-0.0118795549,0.0009854794,-0.0073242909,-0.003079287,-0.0313057862,0.0178480279,0.0010616994,-0.0020588359,-0.0172023997,-0.0684078783,0.0348352194,-0.0309327561,0.0651940852,-0.0095983362,0.0154233361,0.0142755527,-0.0103802634,0.0252655763,0.0323674828,0.0042181029,-0.0006797028,0.003712361,0.0204879288,0.0114204418,-0.0297562778,-0.0265568327,0.0100502763,0.0010643895,-0.0161406994,0.0009245034,0.0126830032,-0.0544623099,-0.024003014,-0.0164706875,-0.0157533232,0.0361838639,0.0085366368,0.0085868528,0.0084146848,0.0630706847,0.0133286314,0.0050861142,0.0105954735,-0.0033841669,0.0262842346,-0.0171880517,-0.0185223501,0.0032137928,0.0248638522,-0.0086370679,-0.0286945775,0.0164419934,0.0050251381,-0.0126399621,0.002369096,-0.0158107132,-0.0057460894,-0.0136299245,0.0066284477,-0.0012374537,-0.0082712118,0.0231565256,-0.0024892546,0.0066248607,0.0060473825,0.0295841098,-0.0011163985,0.0179628059,0.0270733349,0.0131779853,0.0083788168,0.018163668,-0.0238595419,-0.0558109544,0.024246918,0.0080344817,0.018235404,0.0141177326,-0.0261407606,0.0005129156,0.0205596648,0.0003858076,-0.0042073424,0.0032137928,0.0246199481,0.0171450097,-0.0070265848,-0.0340604633,0.0190532003,0.0034290021,-0.0192827564,0.04261145,-0.0054304488,0.0093544321,0.0048027551,-0.015208126,0.0073242909,0.0133214584,-0.0204592347,0.0407749973,0.0274176691,0.0425540581,0.0354664996,-0.0321666226,0.0291249976,0.009038792,-0.009060313,0.027259849,-0.0038486603,0.0244477801,-0.0017557495,0.015150737,0.0161120053,-0.0066212742,-0.0318796746,-0.0076757995,-0.0223674234,0.0461121872,0.0024318655,-0.0223387294,-0.0039347438,0.0496129245,-0.0048457971,0.0845916197,-0.0061442265,-0.0418366939,0.0033877536,-0.0026919101,-0.0035688882,0.0112554487,0.0523102172,-0.002412138,0.0362986401,-0.0138594816,-0.0229700096,-0.006079664,-0.0010374883,0.0254951324,-0.0011648205,0.0251794923,0.0048816651,0.0092396541,0.0257533845,0.0038630075,0.0226974115,0.0146414088,0.0038486603,-0.0081707807,-0.030100612,0.0170302317,0.015007264,0.057561323,0.0240173619,0.0019584049,-0.0333144069,0.0167002454,-0.0462556593,0.0143903308,0.0102511384,0.033543963,0.0268150829,0.0148781389,-0.0154376831,0.008974229,0.021162251,0.0153372521,-0.0278193932,0.0273315851,-0.0293689016,0.0196988285,-0.0071772314,-0.004544504,-0.0032173796,0.0738024563,-0.0044082045,-0.011944118,-0.033716131,0.0148350969,-0.001090394,0.0067037707,0.0083931638,-0.0082999067,-0.0257820785,-0.0051721977,0.0238451939,0.015107695,-0.0062769391,0.007510806,-0.0100717973,-0.0265137907,-0.0169728436,0.0135223204,-0.0078623146,0.0381637886,0.0153085571,-0.0042683184,0.0027582664,0.0098996293,0.0276615731,0.0143544627,0.012137807,0.0102654854,-0.0013217441,0.0215352811,-0.009067487,0.009232481,0.0326831229,-0.0084218588,0.0209900849,0.0184075721,0.0042683184,0.0094692111,-0.0029698887,0.0144118518,0.0391681008,0.007625584,0.0491825081,0.0018525937,0.0109326346,0.0255238265,0.0257103425,-0.0024749073,0.0220374353,0.0094333421,0.0030613528,0.0230704416,0.0020875307,0.0125108361,-0.0050287247,0.0135151464,0.0225826334,-0.0183214881,-0.0027259849,-0.0100646233,-0.033371795,-0.0038092053,-0.0058931489,0.0017557495,-0.0042790789,0.0376759805,0.009189439,-0.045739159,-0.0240173619,0.0106815565,-0.0599142797,0.0099354973,0.0067037707,-0.012209543,-0.0140173016,0.0013531287,-0.0497564003,-0.0339169912,0.0414349698,-0.0126614822,-0.0005245727,-0.0327405147,-0.0021861682,-0.0169011075,0.0079842666,0.0005483354,-0.001498395,0.0343187153,-0.0279341713,-0.009332912,-0.0050430722,0.0042898394,0.0032729753,-0.0197131746,0.024003014,-0.0192827564,0.0445626788,0.0225826334,0.0311623123,0.0315066464,-0.0166285075,-0.0233430397,-0.0156672392,0.030186696,-0.0126040932,0.0165998135,0.0049247071,0.0430705622,-0.0193544924,0.0163272154,0.0425540581,0.0528267175,0.0381064005,0.0388237648,0.0012177262,0.0107030775,0.0032173796,0.0574465469,0.0109971967,0.0105739525,0.0308466721,-0.0131851584,-0.0292254277,0.0194118824,-0.0191823263,0.018278446,0.0125825722,0.0051470902,-0.0499285646,0.0163272154,0.0131134223,-0.0085509848,0.0022740453,-0.0021646472,0.0115280468,-0.0029071195,0.0061872685,0.0240747519,0.0112267537,-0.0155955032,0.0438740104,0.0207461808,-0.0115065258,0.0211909469,0.0631854609,0.0186227821,-0.006172921,-0.0136944875,-0.0248782001,-0.0047202581,0.0130847273,-0.015122043,-0.0291823857,-0.0093472591,-0.0074534165,0.0025412636,-0.0217648372,0.0279772133,0.0187375601,-0.0068436568,-0.0042934264,0.000468977,0.0207318328,0.0078910086,0.0100933183,0.0173458718,0.0024856678,-0.0157820173,-0.0062554181,0.0097920252,-0.0024802876,-0.003855834,-0.0159398373,0.0410045534,0.0146198878,-0.0371307842,0.0174319558,0.0582786873,-0.018192362,0.0192253683,-0.0059039094,0.0226543695,-0.0069943033,0.0030147242,0.0020014469,-0.0126830032,-0.0009451277,0.0036047564,-0.0055021853,0.0430131741,0.0175610818,-0.0304162521,-0.0191249363,-0.0399715491,0.004580372,-0.0138881756,0.0196414385,-0.0069153933,-0.0075395005,0.0019440576,0.0225252435,0.0160546172,0.0441035666,0.0268868189,-0.0049175331,0.0055488138,-0.0289241355,-0.0051578502,-0.0531997494,-0.0386802927,0.012123459,-0.0191249363,0.0075753685,-0.0438453145,-0.0008635275,0.0073673329,-0.0141105587,0.0307031982,0.0396559089,0.0201292466,-0.0056528319,0.0299858339,0.0254233964,-0.0468008555,-0.0018221057,0.0352943316,-0.0587378033,0.0142898997,-0.0074032014,0.0162841734,0.0095266001,0.0033895471,-0.0013011198,-0.000837523,0.0249786302,0.0160976592,-0.0159254912,-0.0224104654,-0.0196701325,-0.0283358954,-0.0352656357,-0.0083142538,0.0135079725,0.0064957351,0.0156241981,0.0047310186,-0.0173458718,0.0402011052,0.0160259213,-0.0000959475,-0.018034542,-0.0381064005,-0.0010616994,-0.0321953185,-0.0202727187,0.0110402387,0.0212339871,0.0627263486,0.0143616367,0.012252585,0.0078551406,0.0068723513,-0.009081834,-0.0159972273,0.039455045,0.0095481211,-0.0133644994,-0.0224104654,0.0233286917,0.0309327561,0.0155381141,-0.0029627152,0.0098494142,-0.024318656,0.0111191487,0.012044549,0.0522528253,0.0077260151,0.0330561548,0.0210187789,-0.0053730598,-0.0119584659,0.0443618186,-0.0080560027,-0.0340030752,0.0018812882,-0.0058752149,-0.0148207499,0.0571595989,0.0123673631,-0.0164993834,0.0049785092,0.0149355279,-0.0183645301,-0.0037302952,0.0008142086,0.0018418332,0.0118795549,-0.0094907321,-0.0049677487,0.0375038125,-0.0070229978,0.0084649008,-0.0107461195,-0.0083214277,0.0051721977,-0.0111263227,-0.0290676076,0.0005985509,-0.0174032617,0.0076973205,-0.0311910063,-0.0008029998,0.0057676104,-0.0001203827,-0.012231064,0.0298710559,-0.0077905781,0.0374464244,-0.0031940653,-0.0337735191,0.009089008,-0.0276328791,0.02413214,0.0083070807,-0.0142038167,0.0256099105,0.0350360796,0.0179197639,0.0111048017,-0.0009236067,0.0057532629,-0.0154520301,0.0078407936,-0.0040710433,0.0087016309,0.0016705624,0.039196793,0.0236873738,0.0332283229,0.048436448,0.0039741993,-0.039455045,-0.0097059412,-0.0280202553,-0.0108824186,-0.0495842323,-0.0047633001,0.0066499687,0.0016113799,-0.0132066794,0.0086514149,-0.012295627,-0.0005066387,0.007690147,-0.0159111433,-0.0127116982,0.0301293079,0.0234147757,-0.0077690571,-0.0001000948,0.0599716678,-0.0103730904,-0.0582499951,0.0095050791,-0.0055452273,0.0190962423,-0.0298997499,-0.0068328963,0.0008684593,0.0309614502,0.0039132233,0.0191966724,0.0104233054,-0.0071915789,-0.018335836,0.0062267235,0.0129842963,-0.0048565576,-0.0137231825,0.0077044941,-0.004476354,0.0353517197,-0.0046521085,-0.0273315851,-0.0047166711,0.009160744,-0.0214778911,0.0408897735,0.0104161315,0.0231995657,0.0096557252,0.0140173016,0.0160689633,-0.0298710559,0.0070265848,0.0350073837,-0.024046056,-0.0285941474,0.045653075,0.0027026706,0.0276615731,0.0130345123,0.0068938723,-0.0099857133,0.0003804273,0.0340030752,-0.027145071,0.0063953041,-0.0228839256,0.0137590505,-0.0335152671,0.0028497302,0.0056600054,-0.0106456885,0.0265568327,0.0134003684,0.0104089584,-0.0109685026,0.007510806,0.0206027068,0.0195840504,-0.0029142932,-0.0233430397,-0.0072525549,-0.021334419,-0.0346056595,-0.0068866988,0.0145122828,0.0031833048,0.0067252917,0.0052798023,0.0014607334,0.0251221023,0.0175323877,0.0281780753,-0.0032873226,0.0012141394,0.0005752366,-0.0096628992,0.0257246885,0.0158394072,0.0007496459,0.0039598518,-0.0138236135,0.0031205353,-0.0114276158,-0.0105380835,0.0269155148,-0.007711668,-0.0330561548,0.0226113275,-0.0021969287,-0.0296414997,0.0130632063,-0.0053192573,-0.0009962398,-0.0198996905,0.0034720439,0.0027349519,0.0056313109,0.0403158814,-0.0016355909,0.0117647769,0.0217504911,-0.0053407783,0.0350647755,0.0060473825,0.0110043706,-0.0038199658,0.0163272154,0.0103013534,-0.008959882,-0.0323100947,0.0595125556,0.0176902078,0.0288523976,-0.0157820173,0.0000235245,0.004601893,0.0291393436,-0.0127332192,0.008981403,-0.0186658241,-0.0129986443,0.0088020619,-0.0433575064,-0.008873798,-0.0045911325,0.0414062776,0.0194692705,-0.012051723,0.0029124997,0.0065423637,-0.0221522152,0.021162251,-0.0429557823,0.0100789703,0.0035617144,0.0230560936,0.0134434095,0.0244477801,-0.0140101276,0.0076614525,0.0200288165,0.0048422101,0.0014248651,-0.0189814642,-0.03684384,-0.0068795253,0.0136944875,-0.0024551798,-0.004623414,-0.0038271393,0.0194979664,0.0005819619,0.0067719202,-0.0202583726,0.0044871145,-0.0247203801,0.000392757,0.003755403,-0.0290532596,0.0056133769,0.0020552492,0.0259685926,0.0216213651,-0.0086585889,0.0359543078,-0.0197275225,0.0034541099,0.0536588617,-0.0148494439],"66":[-0.010339844,-0.0183140673,0.0431010947,0.0284654405,-0.0065152063,-0.0197958294,0.0468444973,0.0460646227,-0.049106136,-0.0372000411,0.0473124199,-0.0149865998,0.0536034144,0.0219924767,-0.0244360864,0.0145706665,-0.0337166004,-0.0252809506,-0.0099564055,0.02921932,0.0035906748,0.0288033858,0.0140897427,0.0349124074,0.0555271059,0.0037239036,0.0046305084,0.0509518385,-0.0056021027,-0.0929611102,0.0199518036,-0.0155325122,-0.0281274952,0.0209006518,0.0220444687,0.0003304314,0.030389132,0.0084551461,0.0234872382,0.0215115547,-0.0435690209,-0.0012478001,0.0186780076,0.0379539207,-0.012146554,-0.0480143093,-0.029141333,-0.03033714,0.0080912039,0.0301031787,-0.0204327274,-0.0680051073,0.0294012912,0.0176381748,0.0126209781,0.0046305084,0.0158184655,0.0156624913,0.0098199267,0.0002414769,0.0381618887,-0.0316889249,-0.0013704679,-0.0242671128,-0.0635858178,-0.02921932,-0.0632218719,0.0370180719,-0.0133488616,0.0130889034,0.0080912039,0.0436470099,-0.0048547224,-0.0178851355,0.0130369114,0.02253839,0.0007498174,0.043699,-0.0156754889,0.0122635355,0.0485342257,0.0220054761,0.0132448785,-0.0115486505,-0.019171929,0.0211216174,0.0178331435,-0.0419832766,-0.0049132132,-0.0255929008,-0.0484822355,0.0138037885,0.0322608314,0.0341065377,0.0223564189,-0.0300511867,0.0333786532,0.0276595689,-0.00643072,0.024527071,-0.067121245,-0.033196684,0.0233312622,0.0159224495,0.0060277847,0.0071683517,0.0087930914,-0.0121530537,0.0056215995,0.0270876605,-0.075803861,-0.0209006518,-0.0223044269,0.0058165682,-0.023838181,0.0181580912,-0.047546383,-0.0602063574,-0.0091895284,-0.0031796156,-0.0531874821,0.0178591385,-0.0205367096,-0.0188599788,0.017794149,0.0140897427,0.0001640987,-0.002134908,0.0105283139,-0.0198218245,0.0422692299,-0.0038733797,0.0550591797,0.013998758,-0.0222134423,-0.0045297747,-0.0575027876,-0.0164553635,-0.0045687682,-0.0024436086,0.0132773733,0.0057743252,-0.0025898351,-0.0389937535,0.0116526335,0.0326507688,0.0037336519,0.0445568636,0.0288033858,-0.000786374,0.0284394454,-0.0289333649,-0.0361862034,-0.0120360721,0.0205367096,0.0011811858,0.0230453089,0.0101188794,0.0265547466,-0.0034606957,0.0295832623,0.0317929089,-0.0090530496,0.0371220522,0.0088710794,0.0590625405,0.0112496978,-0.0290893409,-0.0676411688,0.0082666762,-0.0373560153,-0.0634298399,-0.0163123868,0.00730483,0.0110742263,-0.0314809568,0.0104048336,-0.0213425811,0.0164033733,-0.0974323899,-0.0829267204,0.0197958294,0.0210176334,0.0103463428,-0.0288033858,-0.0025638393,-0.0111652119,-0.0013176639,0.0213815756,0.0412293971,0.0106972866,0.059686441,0.0096119605,0.0394616798,0.0056280983,-0.0334566422,-0.0179371275,-0.041099418,-0.0464805551,-0.0527455509,0.0126794688,-0.0104763219,0.0210696254,0.0100603886,-0.0213685781,-0.0539153628,0.021745516,0.0260218326,-0.0213295836,-0.0047507389,0.0342105217,-0.0106452946,0.0207576752,0.0175731853,-0.0458826497,-0.0433870517,-0.0209916383,-0.0085526304,-0.0150255933,-0.0057028364,-0.0274256077,0.0279195271,0.045154769,-0.0020536711,0.0250989795,0.0377459526,-0.0091570336,-0.0092220232,0.0330667049,-0.0189379659,0.0497040376,-0.0228243433,0.0031178757,-0.0001817678,-0.0439069681,0.0670692548,-0.0180931017,0.0064892108,-0.023279272,0.031818904,0.0056118509,0.0186650101,-0.0063689798,0.0233442616,-0.0146486536,0.0295052733,-0.0019854319,-0.0296352524,-0.0381098948,0.0524855927,-0.0056248489,-0.0664973482,0.0013209134,0.0222914293,-0.0036654128,-0.005264157,0.0057028364,0.0322608314,0.062182039,0.0117761139,-0.0233702566,-0.0163903739,-0.035588298,0.0029570262,-0.053057503,0.0016466738,-0.0283614565,-0.0035516811,0.0507958643,-0.0407874659,0.0223174244,0.0360822193,0.0233572591,0.0231102984,0.0081886882,-0.0231492911,0.0018343312,0.0537073985,-0.0121660512,0.0231882855,-0.0172872301,0.0111327171,0.0232402775,0.0306230951,0.0222914293,0.0566189326,0.0362641923,0.0400855802,-0.0188599788,-0.0659774318,0.0360562243,-0.0086631123,0.0132188825,-0.0573988073,0.0598944053,0.0027994267,0.0329887159,0.0136868078,-0.0041918284,0.0126014818,0.0445048697,0.0471044555,0.0267757103,-0.0013127897,-0.0474164039,0.0316109359,0.0289333649,0.0222264398,0.0008586749,0.01092475,-0.043673005,-0.0138037885,-0.0197308399,0.0158444624,-0.0470004715,-0.0181060992,0.0205367096,0.0162603948,0.0009366625,-0.0739841461,-0.0032641022,-0.054175321,0.0144146914,0.015909452,-0.0101318769,-0.019756835,0.0260998197,-0.0044745333,0.0264247674,0.0134528447,0.054175321,-0.0172482375,-0.0300251897,-0.0150125949,0.0056443461,-0.0185220335,0.0157664753,0.0216935258,-0.0117956102,-0.0043185581,-0.0131019009,0.0100733861,-0.0622860231,0.0364201665,0.0301551688,-0.0082536777,-0.0113341846,-0.0075387922,-0.000268082,0.0186130181,-0.0401115753,-0.0051211799,0.0355103128,-0.0188339837,0.0075712875,-0.0018392054,-0.0053518927,0.0124974977,0.026333781,0.0105348127,-0.0288293827,0.051705718,0.0255669039,0.0215765443,-0.0003868912,-0.0022031472,-0.0476763621,-0.0245790631,-0.0267757103,-0.0511078127,-0.0303111449,-0.0093844971,-0.0204587225,0.015194566,-0.0142847123,0.0311690066,-0.0170532688,0.0039838618,0.0015272554,0.064937599,0.0304151289,0.056826897,-0.0173652191,0.0171312559,-0.0081626922,0.0189249683,0.0097939316,-0.038551826,0.0050106975,0.0289593618,0.0512897857,0.0329627208,0.0111262174,-0.0118216062,-0.0268017072,0.0239941571,0.0288813729,-0.0162733942,0.0104568247,0.0221484527,-0.0170012768,0.0048287264,0.0231102984,-0.0007510359,-0.009650954,0.0029245315,0.0388377793,0.0637417883,-0.0195618663,-0.0002514285,-0.0247480366,-0.0633778498,0.0249300059,0.0249690004,0.0248910133,-0.0469224826,-0.0488721728,0.0028562925,0.0191459339,0.0354843177,-0.0312209986,-0.020497717,-0.0207446776,-0.0409694389,-0.0166373346,0.0405015126,0.0157144833,-0.0163643789,-0.0005873434,-0.0445308685,-0.0170662664,-0.0033632112,-0.0474164039,0.0346264541,-0.0216415338,0.0066126906,0.0690969303,-0.0181710888,-0.0309610404,0.0137258014,-0.0066874288,0.0094624842,-0.0496000536,0.0149736013,-0.0351983607,-0.041125413,0.0030041437,-0.0314809568,0.0276335739,0.0248130262,0.0239291675,-0.0428411365,0.0200427901,0.0378239416,0.0041170907,0.0113926753,0.0321828462,-0.0048059803,0.0009464109,-0.0113406833,-0.0378499366,0.0180801041,-0.0394616798,0.0001070297,-0.006112271,-0.0330926999,0.0330667049,0.0130109163,0.0163123868,-0.0247740317,0.0026710723,0.0273996107,-0.0365501456,0.0001025617,-0.0348864123,0.0019139434,-0.0334306434,-0.0318448991,0.0085071372,-0.0896856338,0.0234352462,0.0170402713,0.0017872137,0.0697208345,-0.0109117525,0.0344184861,-0.0129524255,-0.0003986705,-0.0046695019,0.0508738495,0.0263597779,-0.0124520054,0.0006994504,-0.0143367033,-0.0320788622,-0.0027929277,-0.00449403,-0.046246592,-0.0181840882,-0.0039058744,0.0328847319,-0.0184960365,-0.0153505411,0.0315589458,-0.0138687789,0.0344184861,-0.0094299894,0.0208486598,0.0282314774,-0.0396956429,-0.0349644013,-0.0127509572,0.0183530599,0.0171182584,0.0324687995,0.015805468,-0.0049262107,-0.0033534628,-0.027763553,-0.035796266,0.0113861766,0.0147266407,-0.0269576814,0.0038083899,0.019067945,-0.0072073457,-0.0224084109,0.0143756969,-0.016520353,-0.0341325328,0.0212515965,0.0003879066,0.0107037853,-0.020549709,-0.0462985821,0.015220562,-0.0206276961,-0.0327807479,-0.0022892584,0.0121595524,0.0321828462,0.0223174244,0.0282834694,0.0191329345,-0.0373300202,0.0283874534,0.0394356847,0.0253459401,0.0057158344,0.0548512153,0.0068823975,0.0061415164,-0.0149346078,-0.0008099328,0.0062552481,0.0272436365,0.0246960446,0.0001360719,0.0256318934,0.004588265,0.0010219613,-0.0006454278,-0.0040391032,-0.0004691436,0.020523712,0.0169362873,-0.0100083966,-0.038369853,0.0163513813,-0.0314549617,0.0221094582,0.0195228737,-0.0285954196,-0.0298952106,-0.0160004366,0.006310489,-0.0374340042,-0.0035549307,0.0376679674,-0.0130304126,-0.0162214022,0.0086566135,-0.0292453151,0.0129719218,0.0224084109,-0.0034801925,0.0011681878,0.0158314649,-0.0113536818,0.0122830328,0.0034476977,0.0237211995,-0.0243191049,-0.0035581801,0.0270876605,0.026385773,0.013998758,0.0068434039,-0.0181450937,0.048820179,0.0158314649,-0.0067589176,0.0366021357,-0.0274256077,0.0158314649,-0.001954562,0.0071488549,-0.0054461276,-0.025852859,-0.0403455384,-0.0031324981,0.0235522278,0.0270876605,-0.0432830676,-0.0408134609,-0.0013233505,0.013972762,-0.0177031644,0.0004155272,0.0347564332,-0.0172222406,-0.010339844,-0.0048969658,-0.0064892108,0.0653015375,-0.0246310551,0.0272176396,-0.0256188959,-0.0078962352,-0.0149995973,0.0354583189,-0.0000907316,0.0358482562,-0.0060927742,0.0063949758,0.0187429972,0.0348084234,0.0608302578,0.0288553778,-0.0263077859,0.0254889168,0.0203027483,-0.0182360783,0.0011259447,0.0131213982,-0.0402675495,-0.0000877359,0.0266457312,-0.0186260156,0.0081171999,-0.053057503,-0.0370440669,0.000911479,0.0261388123,0.0489501581,-0.0286214147,0.0019318155,-0.0271136574,0.0142067242,0.0107232826,0.0002337594,0.0125364922,0.0032543538,-0.0328587368,-0.0159354471,0.0102098649,0.011217203,0.0138687789,-0.0132253813,-0.0091310376,-0.0152335595,0.0167413186,0.0103853364,0.009624958,0.0075387922,-0.0103788376,-0.0053128991,-0.0302071609,0.0029196574,0.0647816211,0.0288813729,-0.002703567,-0.0161824077,-0.0201727692,0.0174562037,-0.0000690007,-0.027867537,-0.013283872,0.0200817827,-0.0134398472,-0.0130629074,0.008247179,-0.0085981227,-0.019808827,-0.0445568636,-0.0414373614,0.0029765232,0.0084616449,-0.0090465508,-0.0325987786,-0.0012502372,-0.0155585082,-0.0560470223,-0.0214335676,-0.0113861766,0.0057775746,-0.0091180392,0.0016198655,-0.010950746,-0.026541749,-0.0101838689,-0.0091960272,0.0403455384,0.0194968767,-0.0109962383,0.004812479,0.0213815756,0.0130239138,-0.0380838998,-0.0166763291,-0.0242801104,-0.0155845033,-0.0052576577,0.0128549412,0.0028887873,-0.0417233184,-0.0030983787,0.0396696441,-0.015909452,0.0030415128,0.0166243371,0.0149086118,0.010632297,0.0076817693,0.0412033983,-0.0047052465,-0.011509656,-0.0295572653,-0.0254889168,-0.0070318738,-0.0262817908,-0.0052349116,-0.0294012912,0.0016393624,-0.0235002358,-0.0375639834,0.0127119636,0.0333526582,0.0114381677,0.035796266,-0.0196528528,0.0099499058,0.0145966616,-0.0077272621,-0.0091115404,-0.0309090484,0.0121595524,0.0161824077,0.0114641637,0.0656134933,-0.0136868078,0.0585426241,0.0025167218,0.0129459267,0.0113536818,-0.0311430115,0.0162084028,-0.0353023447,0.0082146842,0.0147526367,0.0302331578,-0.0151295764,0.037148051,-0.0031909889,0.04645456,0.030545108,0.0045395228,-0.0148566207,-0.0193019081,0.0037141552,-0.0049099633,-0.0298952106,0.0261648092,-0.0391497277,-0.0402935445,-0.0533434562,0.0324428044,-0.0018554528,-0.0106452946,-0.0602063574,-0.014557668,-0.0005991228,-0.004214575,0.0010601426,0.006654934,-0.0065379529,0.0247740317,-0.079287298,-0.0161174182,0.0466625243,0.019834822,0.0142587163,0.0007075742,0.0727363527,0.0351203755,0.0270876605,-0.004588265,-0.0094689829,-0.0414893553,-0.022434406,-0.0570868552,-0.0278415401,-0.0106387958,-0.0101578729,0.001935065,-0.0077467593,0.0201727692,-0.0031422467,0.0010845137,0.00449403,0.0223304238,-0.0014029627,0.0039188722,0.0010032768,0.0575027876,-0.0327287577,-0.0195358712,-0.0222914293,-0.0408654548,0.0130629074,0.0334826373,-0.0039578662,0.0262557939,-0.02391617,0.0004874219,-0.0016994778,-0.0153635386,-0.0249819979,-0.0719564706,0.0248520188,-0.0360302292,0.0366801247,-0.0203547403,0.0125364922,-0.0016474861,-0.0075257947,-0.0396696441,0.0187949892,0.0032608528,-0.0314809568,0.0059205517,0.0176121797,-0.0090530496,-0.0284394454,0.0065964432,0.0484562367,0.00237212,-0.0090205548,-0.0306750871,-0.0069083935,-0.0261648092,0.012887436,0.0015053214,0.0360042341,0.0144926785,-0.018639015,0.0151815685,-0.0203807354,0.0316889249,-0.0190549474,-0.0135178352,-0.0009464109,0.0048677204,-0.0011080725,0.0158704575,0.0307790693,-0.0209006518,0.0301811658,-0.0080587091,-0.0053843874,-0.0018522033,-0.0183530599,0.0137387989,0.0005962795,0.0032592278,0.006641936,-0.0144796809,0.0213165861,-0.0083836569,0.0355103128,-0.0048092296,0.0196918454,0.0452847481,-0.0248130262,0.015246558,-0.025215961,0.0210956205,0.0119125918,0.0168583002,-0.0151555724,0.0723204166,-0.0186260156,-0.007610281,-0.0061285184,-0.0330926999,0.007278834,0.0275035948,-0.0240851417,0.013946766,-0.0151815685,-0.0017482199,0.0467405133,-0.0057093357,0.0431790836,-0.0156624913,0.0077727549,-0.0114121716,-0.0386038162,-0.0291933231,-0.0454667173,0.0562029965,-0.0051861694,-0.0297392365,0.0044095437,-0.0100668874,0.0220184736,-0.0147006456,0.0118151074,0.0391237326,0.0134918392,0.0364461616,-0.0142067242,0.0061057718,0.0066224393,0.0107232826,0.0224604029,0.0312209986,0.0153505411,0.023760194,-0.0304151289,0.0051861694,-0.0060960236,-0.001429771,-0.0168323033,0.0262038019,0.0111522134,-0.0204457249,0.0206146985,-0.0129719218,-0.0003635355,0.0065866951,-0.037070062,0.0343664959,0.0058718096,-0.0116266375,-0.0018570776,0.0324947946,0.0151555724,0.0179631226,0.0336126164,-0.020523712,-0.0018180838,-0.0143237058,-0.0645216629,-0.0167153217,-0.0091115404,0.0516537279,0.004838475,0.0057450798,0.0451027751,0.0306230951,-0.0030707582,-0.0261518117,-0.0066451854,-0.007317828,0.0033307164,-0.0206796881,0.0022226439,-0.009598962,0.013894774,0.037148051,0.0107817734,-0.0073958156,-0.0151295764,-0.0316629298,-0.0340025537,0.0162343998,0.0160914231,0.0214985572,0.0499120057,0.0204067305,-0.0291933231,-0.0231102984,0.0179761201,0.0140247531,-0.0221094582,-0.0264117699,-0.0072853332,0.019808827,-0.0008708605,-0.0265027545,0.0277375579,0.0057840734,0.0254369248,0.0019025702,-0.0261128172,0.0038863774,0.027867537,0.0327807479,0.0126079805,-0.0229543224,-0.0041105915,0.0052349116,-0.0159354471,0.0189769603,-0.0045297747,0.0007343824,0.0095144762,-0.0187819917,0.0160394311,0.0676411688,-0.0140897427,0.0380319096,-0.0376679674,0.0137907909,-0.0038896271,0.0021235349,-0.0010934499,-0.0003474912,0.0224474035,-0.0145966616,0.0088125886,-0.0119450865,0.0068953955,-0.0269056894,0.0021186606,-0.0284654405,-0.0110677276,0.0128679387,0.0094494866,0.0139077725,-0.0033989556,-0.0088190874,0.0241501313,0.0077272621,0.0141937267,-0.0068109091,0.0230323114,0.0134398472,0.0243840944,0.0130434111,-0.0102813533,-0.0143107073,-0.0248000268,-0.0123740183,0.0091830287,0.00118606,-0.0108792577,-0.0093455026,0.004588265,0.0052901525,0.0063689798,-0.0104828207,-0.0146226576,0.0030382634,0.0148046287,0.0105283139,0.0338465795,0.0081431959,0.0234482437,-0.0296612494,0.0128939347,-0.0317669101,-0.0204587225,0.0039318702,0.0134268496,-0.0194708817,-0.0226033796,-0.0049814521,-0.0169362873,0.0181580912,-0.0007733761,-0.0102748545,-0.0103008496,-0.0249819979,0.0182490777,-0.0405535027,-0.0186520126,0.0184050519,-0.015909452,0.0252029635,-0.0372520313,-0.0015678739,0.0328847319,-0.0361862034,0.011932089,-0.0002902191,0.0359782353,-0.0133358641,0.0151555724,-0.0110677276,0.0566189326,-0.0147266407,0.0138817765,-0.0048904666,0.0044907806,0.0426331721,0.0010365839,0.0334826373,-0.0022340172,0.0291933231,-0.0120815644,-0.0202897508,0.0041528349,0.0479103252,0.0127379596,0.034392491,0.0090075573,-0.0042373212,0.01723524,0.0485342257,0.0047604875,-0.0082796738,0.0261518117,-0.0070578693,-0.0117436191,0.0037011572,-0.0211996045,0.0142457178,-0.0126924673,-0.0165853426,-0.0109442472,0.030389132,-0.0060667782,0.0119255902,-0.0099044135,0.0055176164,0.0657694638,0.0182490777,0.0220834631,0.0185220335,-0.0171962455,0.0145966616,0.0199518036,0.0091115404,0.0000802215,-0.0222914293,0.0392537117,0.0075127967,-0.0079937195,-0.0213295836,-0.0172742326,0.0496520475,-0.0031130014,0.0183660574,-0.0164683629,0.0245140735,0.0161044206,-0.0159744415,0.000948848,-0.0142587163,0.0096574528,0.0082926713,0.0176641699,0.0086436151,-0.0116006415,0.0218754951,0.0394356847,0.0108012697,-0.0312989876,0.0022453903,-0.0173912141,0.0265677441,-0.0043510529,-0.0150905829,0.0180411097,0.0119255902,0.0003541933,-0.0328847319,0.0016929788,0.0829787105,-0.0062747449,0.013946766,-0.0276075769,0.0063169883,0.0208746567,-0.0375899784,-0.0048352256,-0.0208746567,-0.0098264264,-0.0179371275,0.0004711745,0.0075127967,-0.0114966584,-0.025059985,0.0239941571,-0.0451027751,-0.0547472313,-0.0273216236,0.038447842,-0.0054331296,-0.0040196059,0.0145056769,0.0272176396,0.0197698325,0.0150125949,0.0170532688,-0.0119255902,-0.0105738062,-0.0123935146,-0.0016328634,-0.0249040108,0.011561648,-0.0144146914,-0.0350163914,0.0393836908,-0.0458826497,0.0189119708,-0.0059205517,0.0069798818,0.0007689081,0.020497717,0.0247090422,0.0320528671,0.0362121984,0.0370180719,-0.0392797068,-0.0145186745,0.0430231094,-0.0283614565,0.0088905757,-0.0174951982,0.0111847082,-0.0052284123,-0.0234092511,0.0166893266,-0.0294272862,0.0089945588,0.0007888111,0.005793822,0.0087346006,-0.0298952106,0.0080067171,-0.0170532688,-0.0060570296,-0.0018798239,0.0154025331,-0.0205367096,-0.005449377,-0.0121920472,0.0090790456,-0.0138037885,-0.0362901874,-0.0309610404,-0.0057223332,-0.0036069222,0.0062065059,-0.0314549617,0.0405795015,0.0222914293,0.0329627208,0.0400075912,0.0152855515,0.0186780076,-0.0044127931,-0.0121920472,0.0023704953,0.0175861828,0.0066939276,-0.0045167767,0.016520353,0.0225773845,-0.0009464109,0.0236302149,-0.0053616413,0.008273175,-0.0237082019,-0.0172482375,0.010287852,0.0210176334,-0.0045102774,0.05011997,0.0184440464,0.0055988533,-0.0033697102,-0.011958085,-0.0073503228,-0.048820179,0.0098979147,0.0085786255,-0.0148956142,0.0367841087,0.001339598,-0.0042860634,0.0018392054,-0.0209786389,0.019223921,-0.030493116,0.0318968892,0.0195358712,0.0313509777,0.0048417244,-0.0019513124,0.0349644013,-0.0202767514,0.0166113395,0.0004857972,0.0126079805,-0.0294272862,-0.0412033983,-0.0188469812,-0.0096769501,-0.0014419565,0.0209916383,-0.0068823975,-0.0275815818,0.0015426904,-0.0245920606,-0.025956843,0.0218624976,0.0015670615,0.0334566422,-0.0769476742,-0.0047767349,0.0131473942,-0.0202117618,-0.0108857565,0.0191459339,-0.0031454961,-0.014557668,0.0336386114,0.0275815818,0.0254889168,-0.0187299997,-0.0030675086,-0.0168193057,-0.0379799157,-0.0172872301,0.039825622,-0.0266457312,0.0181580912,0.0015296924,0.0281274952,-0.0111717107,0.008247179,-0.0120685669,-0.0100343926,0.0010682663,-0.0171962455,-0.0020634194,0.0031747415,0.0407874659,-0.003652415,0.00668093,0.0099369083,-0.0284134485,0.0249690004,-0.0141417347,0.0109052528,-0.0114836609,-0.009306509,-0.0108792577,-0.0255929008,-0.0006986381,0.0071033621,0.004175581,-0.0179111306,0.0250729844,-0.0271916445,0.0123220263,-0.0141677307,-0.0092415195,0.0060830256,0.0255019143,-0.0350943804,0.037148051,0.0187559966,-0.0028562925,-0.0195098743,-0.0012762331,-0.0053486433,-0.0047474895,0.000362317,-0.014635656,-0.007610281,-0.0046402565,0.0013712804,0.0097289421,-0.0131993862,-0.0011884972,0.0097549371,0.0313509777,0.016572345,0.0453887284,-0.0147526367,0.0339505635,-0.0020552957,-0.0055078678,0.0033079702,-0.0222524349,-0.0173522197,-0.0377979465,-0.0075452914,0.0072138445,0.0030285148,0.0136348158,-0.0013599072,0.0109442472,-0.0043705502,0.0373040251,0.0042275731,0.0290893409,-0.004162583,-0.0095339725,-0.0155195137,-0.01654635,0.0090075573,-0.0210306309,0.0355623029,-0.0063462337,-0.0204847194,-0.0238251835,-0.0276335739,-0.0019903062,-0.0013192886,0.0443229005,-0.0049587055,0.0513677709,0.0099304095,0.0040975935,-0.0104178311,-0.0004269004,-0.0038148889,-0.0188859757,0.0383178629,0.010554309,0.0379019305,-0.0218365025,0.0101838689,-0.0439329632,0.0149216102,-0.0113666793,-0.0093130078,-0.0216155369,-0.0123285251,0.0081756907,0.0315329507,0.0192369185,0.0147786327,0.0147006456,-0.0241501313,0.0274516027,0.0201467723,-0.0401635654,-0.0230843015,-0.0075517902,-0.022486398,0.0244360864,0.0077987509,-0.0572428294,-0.007954726,-0.0207576752,-0.0168972928,0.0228373427,0.0814189613,-0.0160264336,0.0216805264,-0.000551193,-0.0203547403,0.0120165749,0.0167023242,0.0263987724,0.0089295693,-0.0080392119,-0.0080782063,0.0286474116,-0.0299212076,0.0284654405,-0.0157794729,0.0096639516,0.0044972794,0.0012721713,-0.0137387989,-0.0007404751,0.0161954053,0.0220964607,0.0009529099,-0.0374080092,0.0431010947,-0.0473124199,0.035692282,-0.0080847051,0.0387857892,0.0435690209,0.0028270471,-0.0028936614,0.0094429879,-0.0279975161,0.0097029461,-0.0486382097,-0.0299731996,-0.0050139469,0.0472344346,-0.0087281018,-0.0166113395,-0.0298952106,0.0153895346,0.0284914356,0.0111392159,-0.0173392221,-0.0116786296,-0.0150515893,-0.0104893195,0.0161304157,0.0045167767,-0.0169752818,-0.0203417409,-0.0255539063,0.0001704961,-0.0183400624,-0.0217585154,0.000371253,-0.0330667049,-0.0151165789,0.0500419848,0.0111782094,0.0454667173,0.0329887159,0.0068953955,-0.0036036728,0.0057743252,0.017950125,-0.00259146,-0.0114706624,0.0513677709,-0.0267237201],"67":[0.0294790678,0.0070484313,0.04604882,0.0013473401,0.0298143756,0.025860548,-0.027662823,0.0216971524,-0.0152983787,-0.03545871,0.043645788,-0.0535652824,-0.0268944111,-0.0263355654,0.0550741628,0.055325646,-0.0099055255,-0.0171285961,-0.0382529348,0.0178271513,-0.0253995005,0.0107158506,0.0539844185,0.0267966129,-0.0070449384,-0.0374984927,-0.041857481,0.0511622503,0.0292555299,-0.075779371,-0.0066781966,-0.0373867229,-0.057561025,0.0129442448,0.0272436887,-0.0237509087,0.0269502942,-0.046216473,0.0010880012,0.011568089,-0.0181484874,-0.0274113417,0.0047571673,0.0420810208,0.0019769138,-0.028487118,-0.0243376959,-0.0240582731,0.0077889008,0.047529757,0.0066467617,0.0249663964,0.0173800755,-0.059908174,0.0101220785,-0.0263215937,0.0232619196,0.0644348189,0.0107647497,-0.0074116802,0.0100731794,-0.0625906289,0.0479488932,0.0407397933,-0.0087040095,0.0315467939,0.0053055338,0.0229405835,-0.0160807613,0.0268385261,0.0330277346,0.0470826812,0.009004388,0.0017813181,0.0362410918,-0.0798589364,-0.0147954188,0.0539285317,-0.0300379135,-0.0257068649,-0.0038595225,-0.0232898612,0.0007216958,0.02302441,0.0255811252,-0.0340895392,-0.0262936521,-0.0135380179,-0.0405721404,0.0107018799,-0.0429192893,0.0470547415,-0.0184558518,-0.001508008,0.0241979845,0.0251480211,0.0093606524,-0.0049492703,0.0139781078,-0.0016721687,-0.0099125113,-0.013202711,0.0128464466,0.0080264099,0.0082569337,-0.00553955,0.041633945,0.0153263211,-0.0051204162,-0.0139571512,-0.0635406673,-0.0050261114,-0.0189448427,-0.020733146,-0.0410750993,0.0108625479,-0.0066258046,-0.0088786483,0.0217949506,-0.0253017023,-0.0259304028,0.0106459949,-0.036939647,0.0307364687,0.0517490357,-0.0276348796,-0.0094794063,-0.0369675905,-0.005155344,-0.0350116342,0.0331953876,-0.0278584175,0.0762823299,-0.0461047031,-0.0117566995,-0.0367440507,-0.0413545221,-0.0213478748,-0.0072510126,0.0077330163,0.0279143024,-0.0212081634,0.0186374765,0.0023104744,-0.0155638307,-0.0082499478,0.0330556743,0.0229964666,-0.0188470446,-0.0439252071,0.0275231116,-0.078405939,-0.0611935146,-0.0020066025,0.0762823299,0.0084734857,0.0222979113,0.0777912065,-0.0061193514,-0.0537608787,0.0076002907,0.0447075926,-0.0014346596,-0.0198948774,-0.053369686,0.0079355976,-0.028864339,-0.0424722135,-0.0666143149,-0.0196992829,-0.0716997981,-0.064099513,0.0355145931,0.0174778737,0.0307085272,-0.0227449872,-0.0156476572,-0.0359057859,-0.0142365741,-0.0275510531,-0.0617523603,-0.0078238286,-0.0288084541,0.0105132693,-0.0203279834,0.0009072497,-0.0576727912,0.023136178,-0.0188610144,0.0223677661,-0.055325646,0.0559683144,0.0159969348,0.0368278772,0.0199647341,-0.0309600066,0.0431707688,0.0194338318,-0.0030684078,0.0024501856,0.0170866828,0.0204537231,0.0569183528,-0.0205794629,0.0495974831,-0.0185676217,-0.0181205459,-0.0223398246,-0.0377220288,-0.0449870154,0.0059796404,0.0159550216,0.0186793897,-0.0065699201,-0.0635965466,0.0138314115,-0.0397059284,-0.0007622993,0.0140060503,-0.0051518516,-0.0260980558,0.0498489663,-0.0266708732,-0.0013333689,-0.0084804716,0.037973512,0.0234016292,-0.0119592808,0.0576169081,0.0012364443,-0.0052286927,-0.0658319294,-0.0384485275,-0.0425280966,-0.0136008877,0.0200345889,0.0301776249,-0.0103526013,-0.0127835767,0.0066502541,-0.0110302009,0.0409912728,0.0212361068,0.0000961606,-0.0161366463,0.0140689202,-0.0403486006,-0.0600758269,0.0314629674,0.0203978382,0.01506087,-0.0092907967,0.0005885335,-0.0341174826,-0.0137405992,-0.0595728643,-0.0240582731,0.0226192474,0.004774631,0.0199507624,0.0370514169,-0.0353469402,-0.0186095349,-0.0001099134,-0.0164998956,0.0099683953,0.0302055664,-0.0438134409,0.013531032,-0.0111978548,-0.0053264904,0.0208169725,0.0028536017,-0.0276767928,0.0076771318,-0.0169190299,-0.0128674032,-0.0066292975,-0.017184481,0.0018406954,-0.0017725861,-0.0278863609,-0.0110860858,-0.02030004,0.0027243688,0.0184139386,0.0092418976,0.0385044143,0.0208030008,-0.0322453491,0.0191404372,0.0222140849,0.0158851668,-0.0099614104,-0.0042262645,-0.0258326046,-0.0066816891,-0.000722569,-0.0224655643,-0.0282216668,0.0349836908,0.0066816891,0.027774591,-0.0523917079,0.0004758913,0.0027400863,-0.0309600066,0.0220743734,-0.0052566347,-0.0184698235,0.0246590301,-0.0222559981,0.03545871,0.0022685609,-0.0535652824,0.0136148585,0.0446796492,-0.0252318475,-0.0164719541,-0.0589581355,0.0113305803,-0.0719792247,0.0041144956,0.0156336855,0.0338939428,-0.0223677661,0.0306805838,0.0055151004,0.0138104549,-0.0225074776,-0.0150468992,-0.0080613373,0.047306221,0.0046104705,-0.0439531505,-0.0092907967,-0.0346204415,-0.0055011292,-0.0128115192,0.0168910865,-0.0502680987,-0.0439531505,-0.0432545952,-0.0211941935,0.0635965466,-0.0017201945,-0.0191124957,-0.0143064288,0.0020956683,0.0157035422,-0.0448473021,-0.0045161652,-0.0114144068,-0.0504357517,-0.0001259584,-0.0284032915,-0.003803638,-0.0263635088,-0.0347601511,-0.0013124123,-0.0086970236,0.0414104052,0.022311883,0.0107018799,0.0236531105,0.0229126401,-0.0114772767,0.0550182797,-0.0220045168,0.0083337743,0.0297584906,-0.0035312013,-0.0287525691,-0.0201323871,-0.0424442701,-0.0226891022,0.0560521446,0.004362483,0.0126857795,0.0477532968,0.0589581355,-0.0076701459,0.0098705981,-0.0096819876,0.0198669359,0.0179528929,0.0195036866,-0.0010146528,-0.0685143843,-0.0135030895,-0.0097448574,-0.0145020252,0.0013717896,0.009549262,-0.0091929985,0.0276907645,0.0055185934,0.0035696218,0.0663907751,-0.034368962,0.046216473,0.0184977651,-0.0525593609,-0.0072859405,0.031602677,-0.0068807779,0.0039677988,0.0077889008,-0.0218927488,-0.0344807282,-0.0378896855,-0.0500166193,0.0492901206,-0.0317703336,0.0353469402,-0.0260840859,-0.012713721,0.0509945974,-0.0051658223,0.0530902632,-0.0328600779,-0.0067759943,-0.0270201508,-0.0380852781,-0.034704268,0.025972316,0.0383367613,-0.0384485275,0.0030876179,-0.0408795029,-0.0302055664,-0.0000153082,0.0077609583,-0.0154800033,-0.0140689202,-0.0103595871,0.0011866722,-0.0120291365,0.0334189236,0.0046977899,0.0052845771,-0.0129791731,0.0135939019,0.0132865375,0.0052217068,-0.0312114879,-0.006304469,0.0040655965,-0.0025200413,-0.0168910865,0.0602434799,0.0144181978,-0.0113864643,0.0006719237,-0.0490945242,-0.0413545221,0.0267826412,-0.0255392119,0.0448193587,-0.0154520608,-0.0410750993,0.0343130752,-0.0141108334,-0.0048340084,0.0102198757,-0.0483121425,0.0190426391,-0.0317423902,0.0031190531,-0.0162903294,0.0136148585,0.017296249,-0.0415780619,-0.0158013385,-0.0301776249,0.0090602729,0.0338380598,0.0447634757,-0.0365484543,-0.0175617002,-0.0131607968,-0.0163881257,-0.0435340181,0.0515254997,0.0095632337,0.0169190299,-0.0009107426,0.0321894661,-0.0404044874,-0.0021131323,-0.0108555621,0.0137894973,0.0561359711,-0.0165418088,0.0087389369,0.0037372753,-0.0536211692,-0.046970915,-0.0268105846,-0.0200485606,0.0554094724,0.010254804,0.0030142698,0.0771764815,0.009982367,0.0162204728,-0.0205096081,0.012441284,0.0170447696,-0.0328600779,0.0121828187,-0.0115541182,0.0138942814,0.0045301365,-0.0057491167,0.0240582731,0.0378058553,0.0090532871,-0.0114283785,-0.0106250383,-0.0145439385,-0.0392588526,-0.0007142737,-0.0038734938,-0.0093746232,0.0091580711,-0.0466076657,-0.0293114148,-0.0380573384,0.0084874565,0.0217530373,-0.02302441,-0.0066781966,0.0150189567,-0.0625347421,-0.0086271679,-0.0501283854,-0.0215993542,-0.0343410186,0.0091021862,0.0381132215,0.034368962,-0.0056373477,0.0397338718,0.0121967895,0.008676067,-0.0164160691,-0.0516931526,-0.0343410186,0.0400691777,0.0101849483,-0.0354866497,0.0437296145,-0.0020520086,0.0000182416,0.0290878769,-0.0008889126,-0.0133354366,0.0180367194,0.0233876593,0.016150618,0.010205905,-0.0041144956,0.001114197,-0.0120710498,0.036716111,-0.0049527627,-0.0356543027,-0.0285150614,0.002125357,0.0235832538,-0.0153402919,-0.0020782044,0.0214317013,0.0148513028,-0.0050156331,-0.0432825387,-0.0190705825,-0.0064511658,0.0102198757,-0.015605744,-0.0233317744,-0.0195176583,0.011679858,-0.0305129308,0.0077679441,0.0241979845,0.0195875131,0.0220324602,-0.0399015248,-0.0082080346,-0.0056827539,-0.0028326451,0.0044532954,-0.0011220558,0.0188470446,0.0397059284,-0.0280959271,-0.0215015579,0.0174499322,-0.0181065742,-0.0049562557,0.0104154721,0.0190566108,-0.0093396949,0.0280400421,0.023736937,0.0054871584,0.0378337987,-0.0291158184,-0.0020555013,-0.0157314837,-0.0015918347,-0.0314629674,0.0035556506,0.005158837,-0.0170727111,-0.0052636205,0.0094305072,0.004502194,-0.0110581433,-0.054291781,-0.0331395008,-0.0433663651,-0.004746689,0.0106250383,-0.0001088765,-0.0261958539,-0.001816246,0.0293114148,-0.0117427288,-0.0107368072,0.0110581433,0.0098566264,-0.0195595715,0.038197048,0.0317703336,0.0337262899,0.0157035422,-0.0292275883,0.0448752455,-0.010750779,0.0169050582,0.0016756615,-0.0266429298,-0.0251619909,0.0000746582,0.0437296145,-0.0092488825,-0.0078657418,0.0026143463,-0.0251340494,0.0545432605,0.0398176983,0.0075933049,0.0159969348,0.0086062113,-0.0010897475,-0.0355704762,0.0239045899,-0.0305408742,-0.0262517389,0.023192063,-0.0108835045,-0.00286408,0.0161925312,0.0258884896,-0.0048409938,0.0299820285,0.0522240549,-0.0020555013,0.0410471559,0.0287246276,0.0345924981,0.0240023881,0.0178690646,0.0037722031,0.0064371945,0.0299820285,0.0605229028,-0.032692425,0.014515996,-0.0279282741,0.011295652,-0.0125320964,0.0104084862,-0.0031190531,-0.0109393885,0.0301776249,0.021990547,0.0100382511,-0.0117636854,-0.0113026379,-0.0191963222,0.0050016618,-0.0397897549,0.0098985406,0.0093676373,-0.0102687748,-0.0862297639,-0.0239185616,-0.005508115,-0.0567786396,-0.0253855288,-0.0468870848,0.010366573,-0.0099614104,-0.0050226185,0.0249663964,-0.0016049327,-0.0608023256,-0.0140549494,-0.0248685982,0.0239185616,0.0012477959,0.017519787,-0.0225493908,0.0272157472,-0.0226192474,-0.031155603,-0.0504916348,0.0298702586,-0.0487312749,-0.045126725,0.0230942648,0.0086201821,-0.0171705093,0.0473621041,-0.0082499478,-0.0273414869,0.0010530733,-0.0104503995,0.022311883,-0.0216831826,0.0296746641,-0.0130560137,-0.0205375496,-0.0290878769,-0.0191544089,0.0005522959,-0.0559403747,-0.0196853112,0.0054068244,-0.0376382023,0.0263215937,-0.0422486737,-0.0197691377,0.0269363243,-0.0123854,-0.00840363,-0.0097727999,0.0130769704,-0.0123015735,-0.0167374052,-0.0146696782,-0.0069087199,0.0115820607,0.0057211746,0.0158153102,0.0251200777,-0.0173940472,0.0123434868,-0.035626363,0.0040795677,-0.0030980965,0.0388956033,-0.0097169159,-0.0075933049,-0.0012277124,-0.0535652824,-0.0246171169,-0.0294790678,-0.0095003629,-0.0055779708,0.0090113739,-0.0069296765,0.022102315,0.0287525691,0.0184139386,-0.0015071349,0.0250222795,0.0182602573,-0.0340057127,-0.0147255631,-0.0085363556,-0.0143064288,0.0276209097,-0.019266177,-0.0273275152,-0.041689828,-0.0362969749,0.0008958982,-0.0267686695,0.0092698401,0.0194897149,-0.0250502229,0.0197691377,-0.0815913528,0.0021550455,0.0255811252,-0.0511343069,-0.0088018067,0.0127765918,0.0193080902,0.0187352747,0.0375823192,-0.0026929339,0.0380573384,-0.0567786396,-0.0011290413,0.0042542065,-0.0187632181,0.0275370814,0.0315467939,0.0255531836,0.009933468,0.0165557805,-0.0343130752,0.0055744778,-0.0196154565,0.0357660726,0.02565098,-0.006793458,-0.0099264821,0.027942244,0.0256090667,0.0109254178,0.0111908689,-0.00309635,-0.0176874418,0.042388387,-0.019643398,0.0332512707,0.0171565376,0.0124273133,-0.0149910143,-0.00065315,-0.004666355,-0.0333909839,0.0319100432,-0.0236950237,0.0216971524,-0.0223677661,-0.0184139386,0.0267407279,-0.0123993708,0.0097378725,0.0291996449,0.0122317178,-0.026139969,-0.0427516326,-0.0114982333,-0.0086271679,-0.0509387106,-0.0094654355,0.0154660325,0.0033233808,0.0084525291,0.0505195782,-0.0042542065,-0.0286408011,-0.010366573,0.0187771879,-0.0120920064,0.0585110597,-0.021934662,0.0051448657,-0.003042212,0.0217949506,0.0327762514,-0.027062064,-0.0059971041,-0.0055674925,0.0106040817,-0.0136358151,0.0095073488,-0.0264333636,0.0182881989,0.0021829878,-0.0158851668,0.0211802218,-0.0169469714,0.0000508363,-0.0059761475,0.0186095349,0.0208169725,-0.0026370494,0.0393426791,0.004121481,-0.0519446321,-0.026684843,0.0190845523,0.0280260723,0.0234435424,0.0086620962,0.0091021862,-0.0036813908,0.0480047762,0.0180367194,0.0087948218,0.0199228209,-0.0194058884,-0.0257348064,-0.0045999922,-0.0100033237,-0.0099404538,-0.01680726,-0.0073278537,0.0057735662,0.0163741559,0.0481724292,0.0084525291,0.0567227565,0.004582528,-0.0095632337,0.0332512707,-0.0390073732,0.0348998643,-0.0076212473,-0.0401530042,0.0092838109,0.0143343713,0.0350954607,0.019643398,-0.0073068971,0.0221721716,0.0019402396,0.0049108495,0.0485356785,0.0060075824,0.0361013785,0.0042262645,-0.0080403807,-0.0038874648,0.0017917964,-0.0118475119,0.0051797936,-0.0196992829,-0.0027243688,-0.0012521618,0.0216692109,0.0096400743,0.0088087926,0.0070414455,0.0265032183,-0.0238906201,0.0454061478,0.0016320017,-0.0019856459,-0.031155603,0.0784618258,-0.0104294429,0.0652730837,-0.0315188505,-0.0098705981,0.0136008877,0.0277187061,0.020020619,0.0219206903,0.0120221507,0.0017289264,0.0173241924,-0.0230663233,-0.0237648785,-0.0256789234,0.0039258855,0.0182462856,0.0155079458,-0.0033600549,0.0264752768,0.0032220902,0.0154800033,-0.0129652014,0.03098795,-0.0073138825,0.004666355,0.0177014116,-0.0378896855,-0.0007007391,0.0005448738,0.0495695435,0.0063149473,-0.0103316447,-0.0398456417,0.0128604183,-0.0043031056,0.020900799,0.0159969348,-0.0039852625,-0.0078098574,0.0145439385,-0.0025619545,0.0273135435,0.0258884896,0.0278723892,-0.0306247007,0.0061752358,0.0008208035,-0.0219206903,0.0215714127,-0.0154520608,-0.0043659755,0.0389794298,-0.0208868273,-0.0152844079,-0.0451546684,0.028864339,-0.0136288302,0.0011342805,-0.0134402197,-0.0076352186,-0.0326365419,0.0014835586,0.0332512707,0.031155603,-0.0000407127,-0.0240862146,-0.0329159647,-0.034368962,-0.0323850624,0.0207750592,-0.0203279834,0.021389788,0.0030282408,-0.0039223926,-0.0128394617,0.0165418088,-0.0162344445,0.0233038329,0.0262657106,0.0133424215,0.0252458174,0.0061647575,0.0064371945,-0.0377779156,-0.0084106158,-0.0005330857,-0.0048479796,0.005700218,0.0205794629,-0.0072230701,-0.013971122,0.0009116157,0.024826685,0.0242678393,0.038197048,-0.0003444755,-0.0193639752,-0.0055011292,0.0356543027,-0.0093047675,0.0348719209,0.0110651292,0.0332512707,0.0359337255,0.0116868438,0.0168352015,-0.0152285229,0.0216831826,0.0337262899,-0.0224655643,-0.0090183597,-0.0326365419,-0.0074116802,-0.0345086716,0.0071811569,0.0298423171,-0.021990547,0.0317144468,-0.0033094096,0.0076002907,-0.0012844701,0.0234016292,-0.044959072,-0.0074535939,-0.021934662,-0.0333071575,-0.0219626036,0.0176315568,0.0037128257,0.0241979845,0.020733146,-0.0273414869,-0.0277187061,-0.0163741559,0.0337821729,-0.0469988547,-0.0107228365,-0.0028378842,-0.0077679441,0.0126298945,-0.0204816647,0.0209846254,-0.0196573697,0.0250641927,-0.0052182144,-0.0127207069,0.0026125999,-0.010422457,0.0064616441,0.0612494014,-0.0059621762,0.0136218444,-0.0198389944,-0.0122806169,-0.0441487469,0.0286687426,-0.0178271513,0.0135240462,-0.0011892918,0.0502680987,-0.0012940752,-0.004502194,0.0428634025,0.0042437282,0.0270061791,0.0267966129,0.0390073732,0.0152704371,0.027774591,0.0323012359,-0.0211662501,-0.007257998,0.0116030173,-0.0158711951,-0.0356822461,0.0127276927,0.0009893301,-0.0169190299,0.0191124957,0.0297305491,-0.0087040095,0.0096889734,0.0181065742,-0.0168491732,-0.0005361418,0.0126787936,0.0028047028,-0.0010216383,-0.0067445594,0.0032727355,-0.0188749861,0.0211103652,0.0002715637,0.0127486493,0.0263914503,0.0255252402,0.0591257885,0.0043589901,0.0008037761,0.0062800194,0.0102687748,-0.0297026057,-0.0222979113,0.0034788095,-0.006576906,0.0368558206,0.0047327178,0.0081172222,-0.0040341616,-0.018064661,0.0179948062,-0.0226751324,-0.0203978382,0.0165278371,-0.0111908689,-0.0052321851,0.0023122206,0.0179389212,0.00507501,-0.0334189236,-0.0079286117,-0.0063359039,-0.0103735579,-0.0064232233,0.0129093174,0.0197132528,-0.0011063382,-0.0044393241,0.0221721716,0.0461605899,0.0259164311,0.031435024,-0.0114842625,-0.0148513028,0.0112816812,0.0215714127,-0.0260561425,-0.0018878479,-0.0098356698,-0.0054487376,-0.003194148,0.0239185616,-0.0233736876,-0.0073068971,-0.0218089223,-0.027774591,-0.013971122,0.0026230782,0.0151307257,-0.0190845523,-0.0032832138,0.012057079,0.0559962578,0.0317703336,0.0079495683,0.0280679855,-0.000208257,-0.0080054533,0.0006348129,0.0277606193,-0.0287805125,-0.0185117368,0.0224515945,-0.0311835445,0.0124692265,-0.025972316,-0.0073837382,0.0326644853,0.0279981289,0.0131118987,0.0131049128,0.0249105114,0.0214317013,0.0145718809,0.0257487781,-0.0396500453,-0.0444002263,-0.000244058,-0.0447634757,0.0199647341,-0.00351723,-0.0034351498,-0.0029601315,0.0020415303,-0.0152005814,0.0333630405,0.0077469875,-0.0182043724,-0.0032465395,-0.0002453678,-0.0134961046,-0.0141178193,-0.0482562557,-0.0188051313,0.0091301287,-0.0196573697,0.0239465032,0.0039363638,-0.0457693972,0.0415221751,0.0155079458,-0.025860548,-0.0145579092,-0.0263774786,0.0046873116,0.0164579824,-0.0342013091,0.0141806891,0.0181205459,0.0180506893,0.0352910534,0.0222699698,0.0040830607,0.0003069281,-0.0051343874,-0.021557441,0.0007801999,-0.0118195694,-0.0087808501,0.0088716624,0.0111768981,0.0193919186,0.0467194319,-0.0157873686,-0.0069401548,-0.0025392515,0.0293672998,0.0062136566,0.0317703336,0.0137964832,0.0108974753,0.0215853844,-0.0107996771,-0.0088157784,0.0137126567,0.0046069776,-0.0696320757,-0.0075374204,-0.0282635801,0.0115890456,0.0133424215,-0.0187492464,0.010261789,-0.0034281642,0.0253017023,-0.0028693192,-0.0330836177,0.0052426634,0.0355425365,0.0238626767,0.0048375013,-0.0277885627,0.0009020106,-0.0039538275,-0.0057770591,-0.0225214493,0.0093396949,-0.0113585228,-0.0132935233,-0.0070624026,0.0163462125,-0.0430031158,-0.0110371867,-0.0029671171,0.0030107768,-0.0104853269,-0.0035766072,-0.0279981289,0.0197551679,-0.0037023474,0.0282216668,-0.0164440107,-0.0058713644,0.0198948774,-0.0050400826,-0.0231222082,0.0261679124,0.0247847717,0.01063901,0.015004985,-0.0036499556,-0.002076458,-0.0215294994,0.0015577802,-0.0108415913,-0.0123714292,0.012224732,0.0055605066,-0.0133983064,0.028864339,0.052112285,0.0275370814,0.0048724287,0.0085014282,-0.0221581999,0.032357119,-0.0265311617,-0.0019751673,-0.034368962,-0.0152145522,0.0202860702,0.0199926756,-0.0151866097,-0.0028343915,0.0193080902,0.0118684685,0.0001134062,-0.0218648072,-0.012168848,0.0361852087,-0.0120780356,-0.022102315,-0.0153542636,0.0485636219,0.0265870467,-0.0569183528,-0.0015621461,-0.0224515945,0.0246310886,-0.0043729614,0.016751375,0.000391628,0.02030004,-0.0293393563,-0.0041110027,-0.0074815359,0.0066712108,0.0080683231,0.0029374284,0.022535421,0.0022755465,-0.0259583462,0.0291717034,-0.0324409455,0.0149910143,-0.0245752037,-0.0090253446,-0.0134611763,0.0116379447,-0.0164719541,0.0301776249,0.0111279991,0.0385323539,0.0013159051,0.0073557957,-0.0012556546,0.0050226185,0.0265311617,0.0089275474,-0.0045126723,-0.0330556743,0.0160248782,0.0100452369,0.0118894251,0.0079146409,-0.0037966524,-0.0073767528,-0.012497169,0.0131887393,-0.0209846254,-0.0172263943,0.015605744,-0.008676067,-0.0190007258,-0.0209427122,0.0524196513,-0.0096959593,-0.0095632337,0.0255392119,0.0073208683,-0.0028448699,0.0153961768,0.008131193,0.0022196621,0.0113305803,-0.0165418088,-0.0308761802,0.0036429702,-0.0418854244,-0.0185117368,0.0293952413,-0.0066537471,-0.0216692109,-0.0044463095,0.025427442,0.0110860858,0.0061333226,0.040208891,-0.0271738321,-0.0019332541,-0.0104084862,0.0041878438,-0.0073557957,0.0279701874,-0.0122666452,-0.0038141164,-0.0203838684,0.0039398563,-0.0196853112,-0.0205794629,0.0273554567,0.0138453823,-0.0133843347,0.023681052,0.0048898929,0.0082848752,0.0402368307,-0.0207471158,-0.0235972255,-0.0228986703,0.0169050582,-0.0062485845,0.0216412693,0.0084106158,0.0110302009,0.0218787771,0.0167793185,0.0174499322,0.0281657819,-0.0149211586,0.0439810939,-0.014460112,0.0022545899,-0.0140409777,0.0218368638,-0.0210963953,0.0256230384,-0.0056897397,0.011295652,-0.0219067205,0.020844914,-0.0011727011,0.002537505,0.0287246276,0.0000821349,-0.0077539729,-0.0039188997,0.0363528617,-0.0205794629,0.000993696,-0.0157314837,0.0225493908,0.0128534324,0.0094095506,-0.0067585306,-0.0104643703,0.0125949671,0.0264892485,-0.0083128177,0.0224376228,-0.0189727843,0.0133983064,0.0216272976,0.0086062113,-0.01015002,0.0259862877,0.0189727843,0.0037826814,0.015493975,-0.0128185051,-0.0082010487,-0.0086970236,-0.0043240623,-0.0039154072,-0.0224515945,-0.0485077351,0.0230104383,-0.01331448,0.0228707269,-0.0342571922,-0.0214177314,-0.0404324271,0.0083058318,0.01282549,-0.0189168993,-0.0078447852,0.0140549494,0.0469150282,0.0181205459,0.0119662667,0.0283054933,0.0124203274,0.0033792653,0.0149351293,0.0281797536],"68":[0.0044216327,-0.0211044792,0.0506453253,-0.0001442159,0.0439721867,0.0269909482,0.000106705,-0.0273707192,-0.0224065557,-0.000207476,0.028428657,-0.0350475423,-0.0202635564,-0.03222638,0.0565317944,0.0356985815,-0.0255532395,-0.0030195275,-0.039170783,-0.0083821137,0.0013444611,0.0147704231,0.0279132519,0.0251734667,-0.0195311382,-0.0435652882,-0.0236815047,0.0647240207,0.0001465471,-0.0611975677,0.0026448416,-0.0530867204,-0.0474986434,-0.0098198224,0.0298663657,-0.0186766516,0.0239798967,-0.0189207904,-0.0043639885,0.0130139776,-0.0357528329,-0.0127155846,0.0064798621,0.0375974402,0.0015097638,-0.0266111754,-0.0146619165,-0.0128919072,0.0128851263,0.0709631369,-0.0064798621,0.0372447968,-0.0079413066,-0.0205212589,0.0083414232,-0.0067172195,0.0068019903,0.0734587833,0.029920619,-0.0073038321,0.0092298193,-0.0326332785,0.0462779477,0.036648009,0.0017089746,0.0323077589,0.0004357207,0.0165879037,-0.0347491503,0.0230982844,0.0187715944,0.0276284218,-0.0043572071,-0.0054015806,0.01611319,-0.0587561727,0.0040384699,0.0365395062,0.0032636668,0.0037604223,0.0033908226,-0.0013656538,-0.0274385363,-0.0103081008,0.0221217275,-0.0198973473,-0.0429413766,0.0064493446,-0.0460609347,0.0127698379,-0.0621741228,0.0323620103,-0.0399845801,0.022610005,0.0116508668,0.0279946309,-0.0124985725,-0.0252005942,-0.0013512428,-0.0065408968,0.0044453684,-0.0250513982,-0.0239798967,0.0037773764,0.032524772,-0.0262449663,0.0477699079,0.0224201195,-0.0279946309,0.022908397,-0.0590816922,0.0033874318,-0.0362411104,-0.009175566,-0.0202906821,-0.0113050025,-0.0171982516,-0.0161810052,0.0181612466,-0.0402558446,-0.0138142109,-0.0010901495,-0.0131496098,0.0154350242,0.0632591844,-0.0267468095,0.0049472102,-0.03895377,-0.0192734357,-0.0130004138,0.0346948951,-0.0175102074,0.0643442497,-0.0554738566,0.0101182144,-0.0174966455,-0.0485565811,-0.0217962079,0.0079277437,0.0126477685,0.0367293917,-0.0513777435,0.0524356812,0.0119153503,-0.0311413147,-0.020073669,0.02716727,0.0425073504,-0.0471459962,-0.0349661633,0.0054151439,-0.0310870614,-0.0191242397,0.0062865852,0.0684132352,0.009704534,0.0134615656,0.0623368844,-0.033284314,-0.0504011884,-0.0172796324,0.0112168416,0.0227320753,-0.0145805376,-0.0302732643,0.0071139457,-0.0407441258,-0.0368921496,-0.0702578425,0.0020107578,-0.0484480746,-0.035590075,0.0057745711,0.004106286,0.0111354617,-0.0323077589,-0.0147568602,-0.0441078208,0.0068731974,-0.0259058848,-0.0204127524,0.0098062586,-0.0696068034,0.039631933,-0.0396048091,0.016262386,-0.0305987839,0.0456811637,-0.0030093552,0.0372719206,-0.0440806933,0.0584306568,0.0125460438,0.0554196052,0.0178899802,-0.0397675671,0.0280488841,0.0430498831,0.0029703607,0.0086330343,0.023803575,0.0080905026,0.0627709106,-0.0137735214,0.0294052139,0.0133666229,0.0109116668,-0.0304088965,-0.0339624807,-0.0524356812,-0.0001293811,-0.0338268466,0.0160182454,-0.007086819,-0.0620656163,-0.0226235688,-0.0297307335,-0.0011037127,0.0206433274,-0.0239934605,-0.0002947896,0.0550669581,-0.0133259324,-0.0130478851,0.012763056,0.0273978468,0.0250242706,0.0121052368,0.0555281118,-0.0129936319,-0.0119628226,-0.0796978921,-0.0302732643,-0.05387339,-0.0079955598,-0.0109184487,0.0276148599,-0.0146076642,0.0005548234,-0.0350204147,-0.0084499298,0.0371362902,0.0112100597,0.0228134543,-0.0077107307,0.002778779,-0.0349390358,-0.0573998466,0.0467390977,0.0444333404,0.0031585512,-0.0069206688,-0.0039808257,-0.0394963026,-0.0174017008,-0.066568628,-0.0127766198,0.0496687703,0.0053947987,0.0116915563,0.0049031293,-0.0228541438,-0.027004512,-0.0017089746,-0.0399032012,0.0062492862,0.0204941314,-0.0416664295,0.0067918175,0.0023600126,0.0145398472,0.0539276414,0.0291882008,-0.0217283908,0.0052049127,-0.0209010299,0.0006196728,0.0011808539,-0.0265704859,0.019775277,0.0112100597,-0.0373261757,-0.0203449354,-0.0137124863,0.0137531767,0.0081990091,0.0113524739,0.0526255667,0.0425073504,-0.0535749979,0.0116440849,0.0449758694,0.0099825822,-0.0311684422,-0.0077107307,-0.0025007317,-0.0043572071,-0.0184596386,-0.0144991577,-0.0154078975,0.0469832383,0.0007548819,0.0178492907,-0.0400388353,0.0128783444,0.0142278913,-0.0339082256,0.0108709773,-0.0173745751,0.0275741704,0.0139159365,-0.0267468095,0.0224336833,0.0158690494,-0.0167235378,0.0109727019,0.0356714539,-0.0532223508,-0.0175102074,-0.0836041197,0.0148246763,-0.0818680227,-0.027153708,0.0207789615,0.0353188068,-0.0168727338,0.0158283599,-0.0063340566,0.0091687841,-0.0114474175,-0.013576854,-0.0059441119,0.0404186063,0.0321721248,-0.0444875918,-0.0268281884,-0.0351017974,0.0184596386,-0.0459524281,0.0504825674,-0.0313854553,-0.0571828336,-0.0672196671,-0.0043402528,0.0440264419,0.0035366281,-0.0564232878,-0.0186088346,-0.0145669738,-0.0049133021,-0.0322535038,0.0037332957,0.0075479713,-0.054849945,0.0071207276,-0.0374618098,0.0070393477,-0.0342879966,-0.0449487455,-0.0070800376,-0.0149874361,0.0334741995,0.0313854553,0.0404457338,0.0263127834,0.0010909971,-0.013359841,0.0278318729,-0.0413137823,-0.0012791879,0.0349390358,-0.0138616832,-0.0095417751,-0.0373533033,-0.0586476661,-0.0079887779,0.0532766059,0.0115084518,-0.0003257309,0.0428599976,0.0523543023,-0.0044792765,0.002666882,-0.0013690447,0.0369735286,0.0336098336,0.0108641954,0.0184596386,-0.0527883247,0.0076564774,0.0100503983,-0.0085313097,-0.0038485837,-0.0053439364,-0.0263263471,0.0057067545,-0.0134005314,0.0118339714,0.0662431121,-0.0005560949,0.0378958322,0.0091891289,-0.0518388972,0.0192191824,0.0296493527,0.003879101,0.0145398472,0.0082939519,-0.0160589367,-0.0412595309,-0.0211316068,-0.0306801628,0.042615857,-0.0228405818,0.03610548,-0.0210231002,-0.0350475423,0.0521644168,-0.0157198533,0.073513031,-0.0215791948,-0.0032857072,-0.0450843759,-0.0297307335,-0.0214706883,0.0560977682,0.0540090241,-0.053710632,0.0078802714,-0.0660803542,0.0093586706,-0.0142143285,0.0329587944,-0.0171168726,-0.0321721248,-0.0095214304,-0.0163573287,-0.033121556,0.0330673009,0.0220810361,0.0281573907,0.0024312199,0.0160046834,0.0212536752,-0.0290796943,-0.0155028412,-0.0366751365,-0.0514591224,-0.0053880173,0.0191378035,0.0608720481,0.0111693693,-0.0037197324,0.0046013463,-0.0149603095,-0.0354273133,0.0086398162,-0.019693898,0.0329587944,-0.0379229598,-0.0041266312,0.011935696,-0.0425887331,0.0134005314,0.0015758848,-0.0455455296,0.072156705,0.015597784,-0.0003125915,-0.0336640887,0.0260008276,0.0147026069,-0.0270723272,-0.0325518958,-0.0268146247,0.0107760346,0.0302732643,0.0389266424,-0.020819651,0.0019887174,-0.0114474175,-0.0077446387,-0.01924631,0.0337997191,0.0066731391,0.0288355555,0.0056253746,0.0207111444,-0.0328774154,0.0206026379,-0.0182968788,0.0163844544,0.0244546123,-0.0155028412,0.0003221282,0.0101995943,-0.0818137676,-0.0354544409,-0.0104166074,-0.0024820822,0.0504283123,-0.0126613313,0.0095146485,0.0694440454,-0.0313040726,0.023057593,-0.0002954254,0.0050387625,0.0106878728,-0.0571285784,-0.0028092966,-0.0000506769,0.0112575311,0.0057847435,-0.0170354936,-0.0157062896,0.0263670366,0.0122205243,-0.0081786644,-0.0041876659,-0.0179171059,-0.0294594672,-0.0217419546,-0.008056595,0.0036620884,0.0148924934,-0.0464407057,-0.0320636183,-0.0355629474,-0.0045640473,0.0174017008,-0.0270994548,0.0037400774,-0.0125799514,-0.0214978158,-0.0094875218,-0.0370006561,-0.0279675052,-0.0527612008,0.0323077589,0.0491262376,0.0174017008,0.001941246,0.0268010627,0.028130265,-0.0047878413,-0.0148653667,-0.0435652882,-0.0314397067,0.0476071499,0.0236408152,-0.0356714539,0.041856315,-0.0075208447,0.0006090765,0.025295537,-0.000434873,-0.0224201195,0.0028872855,0.0180798657,0.0144313406,0.0078667086,-0.009779132,-0.0147026069,-0.0056219837,0.0431041382,0.0025905885,-0.0171439983,-0.0380043387,0.0222980492,0.0318194777,-0.0025990654,0.0189614799,0.0417478085,0.0227863286,0.0124239745,-0.0392250344,-0.0234102402,0.0023769666,-0.0003895207,-0.017984923,-0.0191784929,-0.0548770726,0.0292967074,-0.0264212899,0.0256888717,0.014621227,0.0233966764,0.0112846578,-0.0360241011,-0.0343693793,0.0147975497,-0.0178899802,0.0020989191,0.0102335028,0.0134886922,0.0198702198,-0.0031551605,-0.0297849867,0.0195989553,-0.0128105283,-0.0171439983,0.0015012868,0.0231118463,-0.0198159665,0.0228812713,0.0166150313,0.0094536133,0.0463321991,-0.0032653622,-0.0012198484,-0.0066460124,0.0094536133,-0.05148625,-0.0262720939,-0.0039977799,-0.0262314044,-0.0026753591,0.002721135,-0.0220267829,-0.0093857972,-0.0288355555,-0.016262386,-0.0471731238,-0.0192191824,0.0253904797,-0.0217690803,-0.0123290308,-0.0053507183,0.0213486198,0.0136378882,-0.003858756,0.0220267829,0.0062391134,-0.0244410485,0.0351017974,0.0383841135,0.051269237,0.0054931329,-0.0229762141,0.0287541766,0.0135361636,0.0008239699,0.0138888098,-0.0081854453,-0.0292967074,0.000564572,0.060058251,-0.0171304364,-0.0258787591,0.0190971121,0.0002485897,0.0539276414,0.0190021694,0.0213621818,-0.009697753,0.0033959087,-0.0134005314,-0.0378415808,0.015597784,-0.0289711878,-0.0327417813,0.0064662988,-0.0048488765,-0.0210773535,-0.0065442878,0.02864567,-0.0182968788,0.0434567817,0.0303275175,0.0031551605,0.0255668033,0.0117797181,0.0173474476,0.0300562512,0.0082736071,-0.00141143,-0.0175644606,0.010742126,0.0668941513,-0.01215949,-0.0038858827,-0.0254176054,0.0065408968,0.0100232717,-0.0038689286,0.012010294,-0.0078599267,0.0220132209,-0.028130265,0.0252277199,-0.0056525012,-0.0026211059,0.0126613313,-0.0083007338,-0.0228270181,0.0075818794,0.0342337452,-0.0160182454,-0.0627709106,-0.0227727648,-0.0132648982,-0.0535749979,-0.0263399109,-0.0472545028,0.0202499926,-0.0139023727,-0.0129325977,0.0154485879,-0.0198295303,-0.0461694412,-0.0099690184,-0.0252548475,0.0323348828,-0.0154757146,-0.0059848018,-0.0243054163,0.0136785787,-0.0265840497,-0.0202364288,-0.0629336685,0.0261500236,-0.0528697073,-0.0443519615,0.0242375992,-0.0203178097,-0.0055406042,0.0394149236,-0.0330130495,-0.0208467767,0.0092976354,0.0052761198,0.0206297655,-0.0080905026,0.0317923538,-0.0040384699,-0.0318466052,-0.0220403466,0.0010350486,0.0080294684,-0.0464678332,0.0099351099,0.0038519744,-0.0560435168,0.0147026069,-0.0392792895,-0.0105997119,0.035807088,0.0027024855,-0.0021277412,-0.0171304364,0.0121052368,-0.012905471,-0.000256219,-0.0280760117,-0.0128851263,0.0014962004,-0.001630138,0.0096028093,0.0281573907,-0.0437009223,0.0299748722,-0.0259465743,0.009175566,-0.0020938329,0.0466034673,-0.0105522396,0.0036281801,0.0007019003,-0.0412595309,-0.0095282113,-0.02118586,0.0040995046,-0.0033874318,0.0276012961,0.0194904488,0.0343151242,0.0030449587,0.0215249415,0.0135158189,0.0193548147,-0.0093044173,-0.0343965031,-0.0069274507,0.0095689017,-0.0026617958,0.0098944204,-0.0049777278,-0.005520259,-0.0445960984,-0.025444733,-0.0037604223,-0.0179984868,0.0155570945,0.0113796005,-0.0054151439,0.0154078975,-0.0998258144,-0.0195989553,0.0252819732,-0.0141736381,-0.0329587944,0.0284557827,0.0028465956,0.0285642892,0.026936695,-0.0106946547,0.002122655,-0.0508623384,-0.0182697531,0.0075140628,-0.0227320753,0.0404186063,0.0386282504,0.0351560488,0.0102402847,0.0189886075,-0.0285100359,0.0089924615,-0.0175102074,0.0587019213,0.0204534419,-0.0075411894,-0.014105822,0.0228677075,0.0113253472,0.009250164,0.0094264867,0.0073038321,-0.0136785787,0.0230847206,-0.0123425946,0.0350746699,0.0107895974,0.0216605756,0.0089246454,0.0001322421,-0.0259601381,-0.0393064171,0.0531680994,-0.0259872638,0.035590075,-0.0346135162,0.0074462467,0.0221081637,-0.0337725915,-0.0060119284,0.0222844854,-0.0051947404,-0.009100968,-0.0108845402,0.0062119872,-0.007798892,-0.0520287827,-0.0057643983,-0.0107828155,0.0161810052,-0.0052829017,0.0361326076,0.0038519744,-0.0386553779,-0.0098808575,0.0022345521,-0.0056525012,0.0380314663,-0.010070743,-0.000057538,0.0194226317,0.0158419237,0.0443248339,-0.0257702526,0.0035366281,0.0093925791,0.0049234745,-0.0161267519,0.0065273335,-0.0101792496,0.0193005614,0.0033535236,-0.0200329795,0.0182426255,0.0086805057,0.0112846578,-0.0048353132,0.008354987,0.025593929,-0.0055270409,0.0434296578,0.0101928124,-0.0078870533,-0.0173338857,0.0144449044,0.0174559541,0.0162488222,0.0439179353,0.0221217275,-0.0114406357,0.0409882627,0.0170897469,0.0166964103,0.0323348828,-0.0074191201,-0.0321178734,-0.0037366864,-0.0062628496,0.0016267472,-0.0158283599,-0.0063611832,-0.0052388208,0.0122069614,0.0243596695,0.007609006,0.0588104278,-0.0067613004,-0.0149060562,0.0186902136,-0.0216877013,0.0288084298,-0.0193548147,-0.015150195,0.0201143604,-0.0250378344,0.0216334481,0.0160724986,-0.0019378552,0.0172118153,-0.0085991258,0.0078192372,0.0404457338,-0.0037502497,0.0429413766,0.0021379136,-0.0273435935,0.0174966455,0.0012113714,-0.0002348145,0.0182697531,-0.0298121125,-0.0041232402,-0.0021870807,0.0339896046,0.0128986891,0.0023600126,0.0104776416,0.0293238331,-0.0341252387,0.0541175306,0.0125596067,-0.0352916829,-0.0189750437,0.0487193391,-0.0159911197,0.0831700936,-0.0266518649,-0.0017182993,0.0145398472,0.0195582639,-0.0059203762,0.0147839868,0.0106878728,-0.0128105283,0.0104098255,-0.0360241011,-0.0173881389,-0.0251327772,-0.0088229207,0.0050591072,0.0198295303,0.0197210237,0.0326332785,0.0116983382,0.0286727957,0.0068087718,0.0094129238,-0.024169784,0.0209281575,0.0089721167,-0.0329587944,0.0122205243,0.0089246454,0.0467119738,0.0267061181,-0.0203991886,-0.0273029041,0.0125121353,-0.0138684642,0.0044996217,-0.0020226256,0.0215249415,-0.0109998286,-0.0013080098,-0.0355358198,0.0086059077,0.0479597934,0.0108302878,-0.0213214923,0.0053778444,-0.0001859654,-0.0092298193,-0.0027126581,-0.0060254917,-0.0063374476,0.0473358855,-0.0307886694,0.0012537567,-0.0211587325,0.0163166393,0.0220810361,0.0072563603,-0.0133259324,-0.0111354617,-0.0405813642,0.0097113159,0.0347762778,0.0348305292,-0.0177000947,-0.0314125791,-0.0361326076,-0.0263127834,-0.002122655,0.0124646639,-0.0133666229,0.0306530371,0.0249428917,-0.0075886608,0.0014962004,0.0038350204,0.0021650402,-0.0095892465,0.0291610751,0.0070393477,0.0159639921,0.0200058538,-0.000846858,-0.018134119,0.003953699,-0.0250107069,0.0098605119,0.012010294,0.0212401133,-0.0056931912,-0.0086398162,-0.0036620884,0.0515947565,0.0378958322,0.0279946309,-0.0116915563,-0.0141329486,0.0140651325,0.0369464047,0.0008400763,0.0209417213,0.0030669991,0.0266247392,0.0362953655,-0.0033518281,0.0163302012,-0.0155706573,0.0199787263,0.0040011709,-0.02118586,-0.0073377402,-0.0195718277,-0.0169812404,-0.0216334481,0.0034993289,0.0187309049,-0.0278318729,0.0278589986,0.0133259324,0.0065069888,0.0042893905,0.010443734,-0.0501570478,-0.0258109421,-0.0125121353,-0.0378958322,-0.0187580306,0.0080226865,-0.0121866167,0.0072224522,0.024698751,-0.0251192134,-0.0381671004,-0.0404999852,0.0196667705,-0.021565631,-0.0175780244,0.0151095055,-0.0083278604,0.0121798348,-0.0357257053,0.0189886075,-0.0177950375,0.0148111135,-0.0049845092,-0.015000999,-0.0023447538,-0.0038553653,0.0094807399,0.0492076166,-0.0032992703,0.0195582639,-0.0105861481,-0.0131021384,-0.0373804271,0.0412595309,-0.024251163,0.0083075156,-0.0023057593,0.0587561727,0.0030042687,-0.0047708875,0.0300019979,0.0112575311,0.0438908078,0.0195582639,0.02716727,0.0013944758,0.0084228031,0.0356172025,0.0065985406,0.0007086819,0.0135226008,0.003784158,-0.0311684422,0.0004391115,0.0026278875,-0.0108777592,0.000538717,0.0176729672,-0.0113253472,0.011562705,-0.0005823738,0.0037366864,-0.0050251991,0.0175508987,0.0237493217,0.0094875218,0.0021718219,0.0075276261,-0.0096028093,-0.0124104107,0.0148382401,0.0014733124,0.027153708,0.0304360241,0.0589731857,0.003153465,0.0087211961,0.0065714144,0.0050319806,-0.0249293279,-0.0184596386,-0.0117390277,-0.017903544,0.0381128453,-0.0094603952,0.0024719096,-0.0125799514,-0.0073173954,-0.0011121898,-0.0276012961,-0.0229897778,0.0278318729,-0.001399562,0.0013173346,0.0146483537,0.0110473,-0.0113253472,-0.0205619484,0.0031772007,-0.0124036288,-0.0013775217,-0.0069138873,0.0133530591,0.0142414551,-0.0011918742,-0.0186088346,0.0254989862,0.0472816303,0.0167506635,0.0202093031,-0.0281573907,0.0122001795,0.0010952357,0.0130885756,-0.0226913858,-0.0073106135,-0.0023176272,-0.0082464805,-0.0118475342,0.0130953565,0.0000607699,-0.0119763855,-0.0298663657,-0.0163844544,0.0025397262,0.0040520332,0.0397133157,-0.0124104107,0.0040113432,0.0143770883,0.0468204804,0.0262042768,0.0218097717,0.0241155308,-0.0108845402,-0.0061645154,0.0017750956,0.0109523572,-0.0214842521,-0.0237764474,0.025593929,-0.0226506945,0.001275797,-0.0344778858,-0.0277098026,0.0170626193,0.0208739042,-0.0050930157,0.0122137433,0.007609006,0.0147568602,0.0018174809,0.0083414232,-0.0249157641,-0.0312498212,-0.0047844509,-0.0279132519,0.0306259096,-0.0314397067,0.0144991577,0.001486028,0.0090060253,-0.0212401133,0.0226913858,0.01059293,-0.0259058848,0.0028025149,0.0177407842,-0.0163980182,-0.0215249415,-0.0505639464,-0.0060865264,0.00630693,-0.0257295612,0.0109455753,0.0068189441,-0.0499400347,0.0459795557,0.0174695179,-0.0152722653,-0.0000223053,-0.0389266424,-0.0156927276,0.0130207585,-0.0236136895,0.0346948951,0.0399845801,0.0262449663,0.0470646173,0.0074394648,-0.0076632593,0.0214842521,-0.036648009,-0.0082736071,0.0050964062,-0.0098876385,-0.0040655965,0.0017361012,0.0029907057,0.0200465433,0.0341252387,-0.0055100867,-0.0245902464,-0.00626624,0.0317923538,0.0246580616,0.0160453729,0.002217598,0.0230440311,0.0101792496,0.0037231233,-0.0144042149,0.0103894807,-0.004777669,-0.0657005757,-0.0144991577,-0.0298663657,-0.0059237671,0.0289169345,-0.0140108792,0.0057881344,-0.003412863,0.006937623,0.03610548,-0.0237764474,-0.0153943347,0.0223658662,0.0126206418,-0.0021040055,-0.0255803652,-0.0047946232,-0.0125731705,-0.0182697531,-0.024183346,-0.0102606295,0.0123968478,-0.0150281256,-0.0146754803,0.0102131581,-0.0377330743,-0.0067782542,-0.0097452244,-0.0145534109,-0.0242240373,-0.0130343223,-0.0397404395,0.0272893403,0.0109455753,0.0181205552,-0.0047607152,-0.0095689017,0.0092772907,-0.0154621508,-0.0122679966,-0.0030178321,0.0191513654,0.0193683784,0.0028855901,-0.0291339476,0.0051811771,-0.0149331829,0.0112507492,-0.0109862657,-0.0042419191,-0.0067545185,0.0017700094,-0.0161538795,0.0183240045,0.0304088965,0.0322806314,0.0252005942,0.0116508668,-0.0376245677,-0.0056898003,-0.0313583277,-0.0046013463,-0.0186359603,0.0003274263,0.0114541985,0.0296493527,-0.0210095365,-0.0032941841,-0.0045979554,0.0323348828,0.0103555722,-0.0309514292,-0.0090670595,0.0396590605,0.0002248539,-0.0012028944,-0.0142278913,0.0336912125,0.0092569459,-0.0558265038,-0.0017013452,-0.03030039,0.0551483408,-0.0206975807,-0.013427658,0.0222437959,0.0161403157,-0.0122951232,0.0103487903,0.0037705947,0.0035569728,0.0167642273,0.0162352584,0.0204127524,0.0102402847,-0.0353188068,0.0196532086,-0.0486922115,0.0123765022,-0.0041639302,0.0005264252,-0.0228541438,0.0187309049,-0.0123019041,0.0308157951,0.017984923,0.0422089584,0.0051540504,0.002122655,0.0145534109,-0.0287541766,0.0203991886,0.0035468005,-0.0250920877,-0.0334470756,-0.0008400763,0.0019429413,0.0136175435,0.014621227,-0.0213214923,-0.0008477056,-0.0099283289,0.014851803,-0.0294865929,0.0044012875,0.0105590215,0.0074055567,-0.0247936957,-0.0253497902,0.0466305912,0.0063917008,0.0142414551,0.018581707,-0.0051303147,-0.0131563917,0.0173610114,0.0134073123,0.0126206418,0.0135429455,-0.0276012961,-0.0085516544,-0.0044046785,-0.0517303906,-0.0322535038,0.031114189,0.0051981308,-0.0300019979,0.0015402812,0.0048014047,0.0147839868,-0.0207925234,0.0324705169,-0.0190428607,0.0055134776,0.0030347863,-0.0034026904,0.0175237712,0.0327689089,0.0156113477,-0.0177136566,-0.0190564226,-0.000406051,-0.013427658,-0.0208603404,0.0255396757,0.0163708907,-0.0176051501,0.022460809,-0.0197345875,-0.0288084298,0.0469561107,0.0035603638,-0.0367836431,-0.0294865929,0.031114189,0.0009350193,0.003841802,0.0372719206,0.0048217499,0.008212572,0.0080701578,-0.0047166343,0.0183511321,-0.0110879904,0.0236408152,-0.0229897778,0.0056118113,-0.0172796324,0.0030924303,-0.011413509,0.022528626,0.0098401671,0.0314939618,-0.0094875218,0.0236408152,-0.0080837207,0.002819469,0.0264619794,0.0069918763,-0.0068460708,-0.0043945061,0.0371905416,-0.0323620103,0.0099825822,-0.0038078937,0.0299748722,-0.0061645154,-0.0173067581,-0.0193548147,-0.0117458096,-0.022311613,0.0101792496,-0.0063306657,-0.0030534358,-0.0165200885,0.0014682262,0.0234373659,0.0143770883,-0.0333385691,0.0150823789,0.0362411104,0.0099825822,0.006978313,-0.0161403157,-0.0196125172,-0.0019463322,0.0043877247,-0.0038350204,-0.0395776816,-0.0300562512,0.0136785787,-0.0021989485,0.0357528329,-0.0319551118,-0.026190713,-0.0363224931,0.0152315749,0.0078667086,0.0017098223,0.0130478851,0.01805274,0.013509037,0.0130343223,0.0073716482,0.0288898088,0.005374454,-0.001218153,0.0239934605,0.0232610423],"69":[0.0152440006,-0.0121278241,0.0591231398,-0.0108434539,0.0428965613,0.0325935259,-0.0005864764,-0.0013168304,-0.0112224482,0.0093344944,0.026922645,-0.0359623656,0.0124296155,-0.0310214013,0.0583932251,0.0357939228,0.0004333872,-0.0210412126,-0.0432334468,0.0098187644,-0.0108996006,0.017798705,0.046658434,0.0108996006,-0.0135385254,-0.0068710297,-0.0372818299,0.0367765017,0.0116716269,-0.0746759549,0.0069833244,-0.0506448932,-0.0629973039,0.0024266175,0.0323127881,-0.0020599053,0.0375906378,0.0031460053,0.0159458425,0.0112224482,-0.0403418578,0.0266699828,-0.0055375309,0.0306845177,-0.0176162254,-0.0142122936,-0.0181496255,-0.0189076141,0.0133139361,0.0782132372,-0.0297580864,0.0295334961,-0.019876156,-0.0323408619,0.0074746138,-0.0067762812,-0.0009325721,0.04831478,0.0176583361,-0.0356816314,0.0204376299,-0.0504203029,0.0193006452,0.0491008423,-0.0029407165,0.0358781442,0.0029143975,0.037394125,-0.038095966,0.0225852653,0.0176021885,0.0202411134,-0.0063271024,-0.0088923341,0.0350359343,-0.0607514121,-0.0022862491,0.0318074636,-0.006485017,-0.0098538566,0.0097485809,-0.0131805865,-0.0282842182,0.015328222,0.0233994015,-0.0272033829,-0.0103170723,-0.0038846936,-0.023736285,0.0198480822,-0.0163809843,0.0357377753,-0.0125910388,0.0205078125,0.0148509694,0.0176583361,0.0043198355,-0.0184584353,-0.0259821787,0.0184443984,0.0112715773,-0.0133490283,-0.0114330007,-0.0091941254,0.0387135856,-0.0099521149,0.0317232423,-0.0051480085,0.0025055746,0.0207885504,-0.0729915351,0.0116856638,-0.0593477301,-0.0041584116,-0.0267542042,-0.0023248505,0.0070815822,0.0023581879,0.0075167241,-0.0252803359,-0.0134262312,0.0114400191,-0.0238345433,0.0174618196,0.0351763032,-0.027736783,0.0091800885,-0.0611444451,-0.0378713757,-0.006453434,0.0266278721,-0.0309652537,0.0866914839,-0.0290281717,-0.0171108991,-0.0285088085,-0.0507571883,-0.0241433531,-0.006656968,-0.0012852475,0.0219676439,-0.0332111456,0.0335199572,0.002561722,-0.0175179671,0.0216588341,-0.0290000979,0.0396119431,-0.0383205526,-0.02140617,0.020577997,-0.0244100522,-0.0419701301,-0.0199744143,0.040313784,-0.0178688876,0.0091730701,0.042503532,-0.0047269035,-0.0502518639,-0.0037337977,0.0366642065,-0.0083448971,-0.0130191622,-0.0159879532,-0.0088993525,-0.0357377753,-0.0491289161,-0.1039848626,-0.0212938767,-0.0250417106,-0.0567088053,-0.0204095561,0.004281234,0.0434299633,0.0086115971,-0.0225852653,-0.0563999936,0.0135174701,-0.0259962156,-0.0558665954,-0.0132718254,-0.0511221476,0.0378152281,-0.0376187116,0.0219676439,-0.0430088565,0.0447494239,0.0060077645,0.0286070667,-0.0524416082,0.0588424057,0.0100503722,0.0392750576,0.0117277736,-0.0575510152,0.0272033829,0.0239327997,-0.0494658016,0.0163107999,0.0576071627,0.0188514665,0.0668153241,0.0041022645,0.0036179938,0.0023248505,0.0054673464,0.0016344137,-0.0419420563,-0.0494377278,-0.0017502176,0.0217430536,-0.0018914633,-0.0011685664,-0.0353166722,-0.0000812601,-0.0404822268,-0.0145702325,0.0270770509,-0.0183180664,-0.0054111993,0.061593622,-0.007243006,-0.0171951205,-0.0029898454,0.0415209532,0.0036004477,-0.0044637132,0.048876252,-0.0007057895,-0.0176021885,-0.0544909872,-0.0185566936,-0.0418016873,-0.0044917865,-0.0110680433,0.0324812308,-0.0054638372,-0.0009150261,-0.0516555458,-0.0130612729,0.0108996006,-0.0090537574,0.0224589333,0.0052076653,0.0134262312,-0.0380398184,-0.056315776,0.0354851149,0.053985659,0.0173776001,-0.0216869079,0.0260242894,-0.0531153753,-0.0159318056,-0.0579440482,-0.022234343,0.0302634127,0.0435141809,-0.0006356054,0.0069517414,-0.0260242894,0.0040882276,-0.0057621198,-0.0396680906,0.0205078125,0.0369730182,-0.0588424057,-0.0014580761,-0.0042040315,0.0415209532,0.0381801873,0.0256452933,-0.0405664481,-0.007874663,-0.0043689641,0.0048532351,-0.0087800389,0.0007505319,0.0053550517,-0.0060849669,-0.0449459404,0.0145983063,-0.0109557481,0.0251259319,0.0021599177,0.0177004468,0.0381521136,0.0170126408,-0.0476410128,0.0138824275,0.0014729901,-0.0125348922,-0.0268103518,0.016703831,0.0107311588,-0.0092151808,-0.0054884017,-0.0497184619,-0.0275262296,0.0025231207,0.004937456,0.002561722,-0.0520766489,-0.007600945,0.0189497247,-0.0319759063,-0.0018668988,-0.0046777749,0.0086186156,0.0116224978,-0.0142403673,0.0098889489,-0.010625883,-0.0329584852,-0.0020546415,0.0388258807,-0.0277929287,-0.0331269279,-0.0711948201,-0.0079308106,-0.0697349831,-0.0189216509,0.0250417106,0.0232309587,-0.0102679431,0.0096783964,0.0091730701,0.0080220504,-0.0097555993,-0.0070289443,-0.019749824,0.0352605246,0.0192725714,-0.0091660516,-0.0433457419,0.0123734679,0.0220378283,-0.033548031,0.0266278721,-0.0238485802,-0.0263330992,-0.0550243855,-0.004937456,0.0304599274,0.0135525623,-0.0108434539,0.0098889489,0.0177285206,0.0067517166,-0.024031058,-0.0003195573,0.020704329,-0.0224589333,0.0255470369,-0.0270209033,0.0171108991,-0.0356254838,-0.0369449444,0.0073482823,-0.0203112978,0.0172372311,0.0397242382,-0.0029003606,-0.0053690886,0.0120576397,-0.0436545499,0.0240872055,-0.016296763,-0.0057515926,0.046658434,-0.0036285215,-0.0143105509,-0.0188795403,-0.0419701301,-0.0232309587,0.0604706779,0.0438510664,-0.0096994517,0.0309371799,0.0327619687,-0.003930313,0.0220097546,0.015594922,0.0329023376,0.0358781442,-0.0097064702,0.0213219486,-0.055080533,-0.0134192128,0.0319759063,0.0150053743,-0.0076430556,-0.0400891937,-0.0178267788,-0.0042250869,0.0048567443,0.0248873048,0.0641202554,0.007874663,0.0382082611,0.0084291184,-0.0467145815,0.0030775757,0.0318636112,-0.0071131652,0.0306564439,0.0018230337,0.0008847591,-0.0449740142,-0.0290843174,-0.0015668615,0.0377590805,-0.0067868088,0.044159878,-0.0396119431,-0.0248451941,0.0748443976,0.0079588844,0.0508694835,-0.0245504212,0.0039794422,-0.0283403657,-0.017672373,-0.0470795371,0.0524135344,0.0325935259,-0.0477252342,-0.0311336964,-0.0368326493,0.0078395717,-0.0042285961,0.0398365334,-0.0298423078,-0.0214342438,0.0227958169,-0.0015142234,-0.0314705782,0.0365238413,0.0065130903,0.0022458932,0.0117698843,0.026094472,0.0237222482,-0.0268945731,-0.0285088085,-0.0113136871,-0.0179390721,-0.0020985065,0.0295054223,0.051374808,0.0063727223,-0.0156651065,0.0049164006,-0.023483621,-0.0212798398,0.014780785,-0.0355412625,0.0350920819,-0.0316670947,-0.029814234,0.0368326493,-0.0443563908,-0.0205218494,-0.0175881516,-0.0481463373,0.0732161179,0.0016098493,0.0026266424,-0.027764855,0.0070499992,0.0399488285,-0.0329023376,-0.0175039303,-0.0121839708,0.0232871063,0.0280455928,0.0181776993,0.0023195867,-0.0086186156,0.0132998992,-0.0207885504,-0.0174477827,0.0602460876,-0.0057796659,0.0313021392,0.014486012,0.0013177077,-0.0227396693,0.0157633629,-0.0322566442,0.0022634394,0.0553051233,-0.0164511688,0.0044531855,-0.0020862243,-0.1107786894,-0.0478375256,-0.0075798901,-0.0084571922,0.0301230438,-0.0107171219,0.0204516649,0.0399207547,-0.0218974594,0.0174618196,-0.0124787446,0.0024546911,-0.0046005719,-0.0647940189,-0.0038460924,-0.0079237921,0.0359904394,0.0275543034,-0.0320039801,0.0118400687,0.0244661998,0.0221080128,-0.0189777985,-0.0018265429,-0.0118400687,-0.0450301617,-0.0249013416,0.0002006828,-0.0212798398,-0.0050567691,-0.0517959148,-0.0364957675,-0.0328742638,-0.0204657018,0.0025634766,-0.0211394709,0.0031723243,0.0022441386,-0.0522170179,-0.0067517166,-0.0179390721,-0.0384609215,-0.0453389697,0.0249013416,0.0233853646,0.0418578349,-0.0021651816,0.0292808339,0.0083519155,-0.0057515926,-0.019202387,-0.0366922803,-0.0140719255,0.0330146328,0.0181496255,-0.0178127419,0.042503532,0.0002645066,0.0233011432,0.0158195104,0.0191462412,0.0068675205,0.0158616211,0.0129209049,0.0161142852,0.0024546911,-0.0049900943,-0.0149773005,-0.0113136871,0.0255891476,-0.0030775757,-0.0293931291,-0.0471637584,0.0235538054,0.0141772013,-0.0027529739,0.0130753098,0.0016633647,0.0055375309,0.0128156282,-0.0374502689,-0.0153984055,0.0109908404,0.0101626674,-0.0400049761,-0.0110189142,-0.0328181162,0.0359342918,-0.0298703816,0.0128156282,0.0078325532,0.0098678935,0.0322847143,-0.0222483799,-0.0170407146,0.0154545531,-0.0118611241,-0.0023880163,0.01387541,0.0205358863,0.0083729709,-0.0003621064,-0.0233432539,0.0305441488,0.010906619,0.0032881282,-0.0234555472,0.0008391395,-0.0299826749,0.0325093046,0.0255610738,-0.0007470227,0.0460969582,-0.0149632636,0.0306002963,-0.0135736177,-0.0010685539,-0.0511221476,-0.0276244879,-0.021125434,-0.0188655034,-0.0184303615,0.0132437516,-0.0232590325,-0.0209569912,-0.0298984554,-0.0345025361,-0.0515713245,0.0076711294,0.0102328509,-0.0162265785,-0.0310494751,-0.0158896949,0.0361308083,0.0041443747,0.0110890977,0.0275121927,0.0017247759,-0.0029073791,0.0286772493,0.0373099037,0.0542944707,0.0016028308,-0.0162686892,0.022234343,0.023609953,-0.0060744397,0.0024441637,-0.0002831492,-0.0319197588,-0.0064078141,0.0344183147,-0.014078944,-0.0216307603,0.0092572914,-0.0356816314,0.049409654,0.0217851643,0.018079441,-0.0129349418,-0.0080571426,-0.0066359127,-0.0109557481,0.0231327005,-0.0356816314,-0.0282982551,-0.0083308602,0.0036987055,-0.0161844678,0.0002223961,0.0324812308,-0.0035390365,0.0387697332,0.0319478326,-0.0034144598,0.0428404137,0.0254768524,0.0377590805,0.0294212028,0.0081062708,0.0079588844,-0.0120085105,0.0204516649,0.0674329475,-0.0475006439,0.0135736177,-0.042503532,0.0164652057,-0.0013984195,0.0037548528,-0.009594175,0.015875658,0.0303195603,0.0117979581,0.0028214036,0.0134192128,-0.0092432545,-0.0090397205,0.0005202401,-0.0302072652,0.0092151808,0.0316390209,-0.0220518652,-0.0046110996,-0.0141912382,-0.0008426486,-0.0478094518,-0.0233432539,-0.0285509191,0.0084642107,0.0018405798,-0.0256733671,0.0210692864,-0.0288597289,-0.0383486263,0.0019862119,-0.0368326493,0.0264313575,-0.0011817259,-0.0020634145,-0.0222203061,0.0322285704,-0.0460127406,-0.0181636624,-0.0731599703,0.0104574403,-0.0579440482,-0.0405664481,0.030375706,-0.0087519651,0.0207324028,0.0368045755,-0.0001039055,-0.0288597289,0.0032635636,-0.005695445,0.0097275255,0.0193427559,0.0221360866,-0.0081553999,-0.0118611241,-0.0122330999,-0.0177846681,0.0092011439,-0.0379275233,0.0107943248,-0.0066148578,-0.034109503,0.0072008953,-0.0438510664,0.0096854148,0.0406787433,0.0146544538,-0.0086747631,-0.0173214525,0.0130051263,-0.0106329015,-0.0159598794,-0.0140999984,-0.0274981558,0.011938327,0.0030951216,0.0050111492,0.0337726213,-0.0121699339,0.0361588821,-0.0276806355,0.0000529945,-0.0103872567,0.0386012904,-0.0468268767,0.0079588844,-0.0052532847,-0.0565403625,-0.0428404137,-0.0232309587,-0.0035390365,-0.0002309498,0.0507291146,0.0050532599,0.0011773393,0.0036074661,0.0256031845,-0.0166897941,0.0316670947,0.0002353363,-0.0242977589,-0.0264313575,-0.0141842198,0.0021213165,0.0224448964,0.0034074413,-0.0332953669,-0.0361308083,-0.0313582867,-0.0132788438,0.0066780234,0.0065622195,0.0262909885,-0.0249294154,0.0142614227,-0.0760796368,-0.0150053743,0.0382924825,-0.0207183659,-0.0109206559,-0.0076220003,-0.0036671227,0.0478936732,0.0365799852,-0.0124927815,0.0084150815,-0.0505045243,-0.0292808339,0.0043268539,-0.0305722225,0.0279192608,0.0122120446,0.0140649071,0.0249995999,0.0211815815,0.0007180718,0.0185566936,-0.0279332977,0.0539014377,0.0103942752,-0.0096573411,-0.0035530734,0.0404260792,0.0050532599,0.0001107046,0.021532502,-0.0057165003,0.0080220504,0.0116295163,-0.0097555993,0.0243117958,-0.000344999,0.0052567939,-0.0108083617,-0.0087870574,-0.0292246863,-0.0396961644,0.0486797355,-0.042110499,0.0503080115,-0.0389943235,-0.0090677943,0.0355693363,-0.0151738161,-0.0172653049,0.010969785,0.0195954181,-0.0133069176,-0.0116505716,-0.0118891979,0.0003077137,-0.0507571883,-0.0295615699,0.0033986683,0.016016027,-0.0256733671,0.0394435003,0.0081343446,-0.0577194579,-0.0140087595,-0.0102188149,-0.0020458684,0.0479778945,0.008625634,-0.0054673464,0.0279754084,0.0363834724,0.0197217502,-0.0233011432,0.0024073168,0.0023511695,0.0011404927,-0.0097836731,-0.0077904426,-0.0158616211,0.0146263801,0.0044672219,-0.0480901897,0.0071728216,-0.0060393475,-0.0081553999,0.0003009146,0.0119944736,0.0099029858,0.004312817,0.0293650553,0.0023388874,-0.0055270032,-0.005962145,0.0309652537,0.0267401673,0.0337726213,0.0016379229,-0.0109346928,-0.0058533596,0.0415771008,-0.0076992027,0.0003599132,0.0163950212,0.001001879,-0.041015625,0.0100854645,0.0093344944,0.0013308673,0.0102188149,-0.016563464,0.0039689145,0.0299546011,0.0196234919,-0.0001972833,0.0151457433,0.0070043798,-0.0030828395,0.0072359876,-0.0328742638,0.026782278,-0.0126191126,-0.0235678423,0.0407348908,-0.0155668482,0.0314705782,0.051374808,0.0022406294,0.0171530098,0.0007110533,0.0063692131,0.0631657466,-0.0007334245,0.0588985533,-0.0008483511,-0.0292808339,0.0323970094,-0.0007224582,0.0138122439,0.0077272765,-0.0093555497,0.004867272,0.0021423716,0.0187251344,0.0213640593,-0.0061446237,0.0071236929,-0.0078185163,-0.0259962156,0.0516555458,0.0041689393,-0.0336883999,-0.0179390721,0.059628468,-0.0132788438,0.0699034259,-0.0523012392,-0.0092151808,-0.0067306613,0.0039548776,0.0071658031,0.0221501235,0.0240450948,0.007600945,0.0174758565,-0.0376187116,-0.0191322044,-0.0034109505,-0.0381801873,0.0076781479,0.0220378283,0.0112013929,0.0147667481,0.01325077,0.0310775489,0.0118611241,0.0081834737,-0.0129630156,-0.0030266922,0.0113347424,-0.0399488285,0.0018756718,0.0099521149,0.0496342406,0.0382082611,-0.0170266777,-0.0444406122,0.0047865603,-0.0036881778,0.0171951205,0.0047725234,0.0065727471,0.0223326012,0.0348955654,0.0097485809,0.018079441,0.0219676439,0.0024862741,-0.0258558467,0.0024950472,-0.0112645589,0.0340252817,0.0017291624,-0.0239047259,-0.0073974109,0.0554174185,-0.0089835729,0.0121348426,-0.0327338949,0.0201428551,0.0128366835,0.0115523133,0.0113628162,-0.0193708297,-0.0207324028,0.0027599924,0.0382644087,0.0189076141,-0.0086326525,-0.0389101021,-0.0442721732,-0.0340533555,-0.0110961162,0.0088081127,-0.0273156781,0.0316390209,0.0018160152,0.0008527376,-0.0177706312,0.0181496255,0.0268524624,0.0222483799,0.030516075,0.0089344438,0.0358500704,0.0312459897,-0.0039232951,-0.0126471864,-0.0086958185,0.0113838715,0.0049585113,0.0157914367,0.0071587847,-0.0214202069,-0.0187110994,0.0030477473,0.0231327005,0.0209991019,0.0507291146,-0.0210692864,0.0195252355,0.0010439894,0.0103240907,-0.0061340961,0.0398646072,0.0054989294,0.0224589333,0.0200586338,-0.0060393475,-0.0027003358,-0.0161283221,0.0254908893,-0.0028354402,0.0062920107,0.0025266299,-0.0043514185,-0.00731319,-0.0190760568,0.0172372311,-0.016016027,-0.0305722225,0.0312740654,0.0143175693,-0.0208587348,-0.0009202899,0.0491289161,-0.0656923801,-0.0180513673,-0.0143175693,-0.0359342918,-0.0286912862,0.0079027368,-0.0163529105,-0.000524188,0.0564561412,-0.0255470369,-0.0090958681,-0.0356254838,0.0103311092,-0.0285368823,-0.0070886007,0.0331830718,-0.0056392979,0.0453389697,-0.0229502227,0.014078944,-0.0043759826,0.0232449956,0.0071658031,-0.013798207,0.0094888993,-0.0227677431,0.0139034828,0.0334918834,0.0064744893,0.0290000979,-0.0140999984,-0.0246206056,-0.0133841205,0.0349797867,-0.0308529586,0.0144298645,0.0001443162,0.0460688844,-0.0053725978,-0.0187110994,0.0366642065,0.0340252817,0.0270209033,0.0404822268,0.0199603774,0.0018756718,0.0189356878,0.0317793898,-0.0152720744,0.0290562436,0.0212798398,-0.0177565943,-0.0320882015,0.016156394,0.0166476835,-0.0037794174,-0.0022090466,0.0257716253,-0.0062007708,0.001759868,0.0125348922,-0.0093766041,-0.0021265801,0.0082957679,0.0147106014,0.0034337603,-0.0168582369,0.0043619457,-0.0101767043,-0.014907117,0.030796811,0.0082396213,0.0063060471,0.0311336964,0.056484215,0.0109978588,-0.0192304607,0.0001969543,-0.0156931803,-0.0157633629,0.0031056493,-0.0172793418,-0.013047236,0.0307406653,-0.0184022877,-0.0062709553,-0.0219816808,0.0052392478,0.0164511688,-0.0134543041,-0.00638325,0.0300107487,0.014015778,-0.0185988043,0.0318636112,0.0055971872,-0.0081273261,-0.0242696851,-0.0159879532,0.0039654053,0.016577499,-0.0259119943,0.0034776253,0.0088782972,-0.0096924333,-0.0142473858,0.0095661022,0.0500553474,0.0127524631,-0.0018756718,-0.0170828253,0.0143105509,0.003656595,0.0072570429,-0.0140578886,-0.0172231942,-0.0126963155,-0.0020721874,-0.0060814577,0.0364676937,-0.0160862114,-0.0296177175,-0.0007022803,-0.0118681425,-0.0123875048,-0.003621503,0.0227677431,-0.0205920339,0.0046567195,0.0064148325,0.0608637072,-0.0074746138,0.030375706,0.0237643588,-0.0109346928,-0.0077904426,-0.0129630156,0.0055094571,-0.0419139825,-0.0299265273,0.0388820283,-0.0318636112,0.0046812836,-0.0403980054,0.0088782972,0.0294773504,0.0224168226,0.0043303631,0.0295054223,0.0249574892,0.0024476727,0.0112294666,0.0280736666,-0.037001092,-0.0156510696,0.0127243893,-0.0241433531,0.0475006439,-0.0114259822,-0.0054884017,0.0058112489,0.0167599786,-0.0108013432,0.0166336466,0.0361588821,-0.0159598794,-0.0000080054,0.0068569928,-0.0168582369,-0.0153562957,-0.0542663969,-0.0078465901,0.0180092566,-0.0227677431,0.0348674916,-0.0015352786,-0.0371133871,0.0358500704,0.0345306098,-0.0021827274,-0.0057305372,-0.0471356846,-0.0070464904,-0.0010167931,-0.0411279202,0.0224870071,0.0210692864,0.0064885262,0.03921891,0.0239047259,0.00500764,0.0056533343,-0.031330213,-0.0187251344,0.0214903913,-0.0079869581,-0.0074956687,0.0085063204,0.0162265785,0.0113628162,0.030375706,-0.0174477827,-0.0150334481,-0.0061551514,0.0230484791,0.0159458425,0.0343621671,-0.0009018665,0.0209429543,0.0230344422,-0.0044110748,-0.0139245382,0.0429527089,-0.0016852972,-0.0570456907,0.0259681419,-0.0285228454,0.0105276247,0.0167319048,0.001533524,0.0068324283,0.0077202581,0.0251399688,-0.0024652188,-0.0340814292,-0.0088782972,0.0529750064,0.0110118957,0.0202551503,-0.0180513673,0.005828795,0.0061025131,-0.0040355893,-0.0106609743,-0.030375706,0.0299826749,-0.0075869081,-0.0305722225,0.0140649071,-0.0407068171,0.0063727223,-0.0234134383,-0.0226835217,0.0030723119,-0.0041513932,-0.0304318536,0.0039864606,-0.0109206559,0.0234415121,0.0055270032,-0.0222764537,0.0271612722,-0.0119663998,-0.0121699339,0.0122541552,0.0005926176,0.0144719752,0.0388539545,0.0049023638,-0.0150895957,-0.0107101034,0.0141772013,-0.0121629154,0.0014536895,-0.0032372447,-0.0004820775,-0.0182478838,0.0403418578,0.0211675446,0.0186970625,0.0122611737,0.0198059715,-0.0325093046,0.0138262808,-0.0291685387,-0.0097626178,-0.0341375768,-0.0038531106,0.003293392,0.0184865091,-0.0161423571,0.0056006964,-0.0045268787,0.0115663502,0.0162265785,-0.0161844678,-0.0378433019,0.0330146328,0.012970034,-0.0209008437,0.0074886503,0.0468549505,0.0007343018,-0.0508133359,0.0130542545,-0.025813736,0.0195673462,-0.0038215278,-0.0029231706,-0.0008492284,0.0337726213,-0.0071658031,0.0181355886,0.0087589836,0.0002491538,-0.0280034821,0.0190058723,0.0228940751,-0.0059235436,-0.0199884512,0.0200165231,-0.0341656506,0.0374221988,-0.0151597802,-0.0107943248,-0.0101345936,0.0208587348,-0.0202691872,0.0432334468,0.0074254847,0.0440475829,0.0130121447,-0.0121488795,-0.0055971872,-0.0314144343,0.004140866,0.0128296651,0.0010913637,-0.0338568427,0.031498652,0.0320601277,0.0005167309,0.0145702325,0.0042391238,-0.0150334481,-0.0125699844,0.0181776993,-0.0283544026,0.0169424582,-0.0050181677,0.002956508,-0.0529469326,-0.0336883999,0.0367203541,0.0047269035,0.0097555993,0.0182899926,0.0144298645,-0.005039223,0.0082115475,0.0169284213,0.0138403177,0.00421105,-0.009516973,-0.0143737169,-0.0161002483,-0.0457320027,-0.046658434,0.0158195104,0.0065692379,-0.0210271757,-0.0041970131,-0.0025406668,0.0230344422,0.0107592326,0.0253364835,0.0035618464,0.003093367,0.0106820296,-0.0045058234,0.0140859624,0.0340814292,0.0032582998,0.00089748,-0.0025810227,0.007600945,-0.0088642603,-0.0094818808,0.0345586836,-0.0099731702,-0.0233432539,0.0302072652,0.0096783964,-0.0123664504,0.0188795403,0.0086326525,-0.0136859119,-0.0148228956,0.0173495263,-0.0154264793,0.0183180664,0.0427000448,0.0104855141,0.0185707305,0.0161002483,0.0097064702,-0.0003961019,-0.0132928807,0.0363834724,-0.0014168428,0.0186128411,-0.0011676891,0.0168722738,-0.0226273742,0.0213359855,0.0097415624,0.0261786934,-0.02734375,0.0197919346,-0.0020406046,0.0226694848,0.0223887488,0.0006917527,-0.0112435035,-0.018079441,0.0389662497,-0.0325373784,-0.0091941254,0.0017151255,0.0414928794,0.0007022803,0.0106469383,-0.0188655034,-0.0082115475,-0.0072289691,0.0316670947,0.0001267701,-0.0039162766,0.0125348922,0.0026827897,0.0229502227,0.0224027857,-0.0279332977,0.0117839212,0.0576071627,0.016156394,0.0023809979,0.0000541734,-0.0266980566,0.0118400687,0.0261506196,0.0002974054,-0.0340814292,-0.0241854638,0.0101977596,-0.0095099546,0.0212658029,-0.0248171203,-0.0065797656,-0.016156394,0.013531507,0.0096292673,-0.0199884512,0.0260523614,0.0157352891,0.0236380268,0.0121980077,0.0064288694,0.0354570411,0.0020142857,0.0085414127,0.0239468366,0.0192304607],"70":[0.0181299485,-0.0036617999,0.0611727759,0.0133762779,0.0239860192,-0.0017993025,-0.0109818894,-0.0037530817,-0.0097039454,-0.0029245249,0.0041603385,-0.0430006981,-0.0159532297,-0.0172592606,0.0650487319,0.0544600599,-0.0184248574,0.0051363502,-0.0254324824,0.0169362631,-0.0095564909,0.0121193994,0.0501908846,0.0428602621,-0.0307829939,-0.0493201986,-0.0241264515,0.0336478353,0.0385349169,-0.0707784146,-0.0093177538,-0.0464553572,-0.0622962415,-0.006221198,0.025923999,0.0144786797,0.0474103056,-0.0019959093,0.0184389018,-0.0000514008,-0.0010716821,-0.010967846,0.0152791506,0.030586388,-0.0234102421,-0.0271879006,-0.0348555632,-0.0448263288,0.0227502044,0.0931354091,-0.0124634616,-0.0122668548,-0.0118595976,-0.0279181525,0.007730857,-0.0154476706,0.0077589434,0.0369339772,0.0008812194,-0.0474664792,0.0005845539,-0.0590381883,0.0269912928,0.0351083428,-0.0145769836,0.0395460352,0.0031737941,0.0317660272,-0.0258537829,0.0159391873,0.0282692369,0.0283113662,-0.0050485795,-0.0064809998,0.0048905918,-0.0601616539,-0.0067162258,0.0363722406,-0.0102516357,-0.0228063781,0.0091632772,-0.0123721799,-0.0086998474,0.015461714,0.0119719449,-0.0061053406,-0.0329737552,-0.0270755533,-0.0295190942,0.023241723,-0.0408099368,0.0276232436,0.0032440107,0.0082785469,0.0183967706,0.0140082287,0.0002400533,-0.0094862739,-0.0088332584,0.0341533944,0.0074850982,0.0146752866,-0.0047326046,-0.0086717606,0.0349398218,0.0293505732,0.0277636759,-0.0280726291,-0.0245337095,0.0167396571,-0.0779686049,0.0220480394,-0.0150685003,-0.0155038433,-0.0049362327,0.000659598,-0.0150123267,-0.0157144945,0.0195623673,-0.0484214239,-0.0272019431,0.0086296303,-0.0338163562,0.0082925903,0.0273845065,-0.0335354879,0.0132920183,-0.0360071138,-0.0263874289,-0.0252780057,0.0209245719,-0.0157144945,0.0684191361,-0.0295752678,-0.0252780057,-0.0407818481,-0.0533646792,-0.0040163943,-0.0134254303,0.0051855021,0.0221744291,-0.0371867567,0.0069900709,-0.0149561539,-0.0050064493,-0.0015781199,0.0001407625,0.0081030056,-0.0265559498,-0.0440118164,0.0019906429,-0.0108765643,-0.0607233867,-0.0159391873,0.0788673759,-0.0088613452,-0.0049608084,0.055836305,0.0026366364,-0.0518760867,0.0288731009,0.02790411,-0.0120351398,-0.0373833627,-0.0240843222,0.0080327885,-0.0497695841,-0.0397988148,-0.0999885574,-0.0170205235,-0.0567631684,-0.0574091598,-0.0180176012,-0.0188321136,0.0399954244,0.0001435053,-0.0244634915,-0.0515671335,-0.0250673555,-0.0180316437,-0.0140363146,-0.0089947572,-0.0167537015,0.0424670503,-0.0331422761,0.0050310255,-0.0487865508,0.0380574428,-0.0025137572,0.025994217,-0.0517637394,0.0484495126,0.0100339642,0.0566508211,0.0079415068,-0.0538421534,0.0528591201,0.0181018617,-0.0039918185,0.0211071353,0.0486461185,0.0223710351,0.0670709759,-0.0161919668,0.0110872146,-0.0138467299,0.0046202578,0.0008715646,-0.0495729782,-0.0594875738,0.0009128169,0.0060807648,0.008650695,0.0120351398,-0.059094362,-0.0052943379,-0.0404448099,-0.0278619807,0.0161217507,-0.0208683982,-0.0167256147,0.0583079346,0.0099918339,-0.0183265544,0.0009760119,0.0367654562,0.0270895958,-0.0043955646,0.0448263288,0.0011796403,0.0184950735,-0.0420738384,-0.0125336777,-0.0616783351,-0.0039251125,0.0081240702,0.0344623476,-0.0100550288,0.0053680656,-0.0293224864,-0.0024681163,0.0260363463,0.0243792329,0.0163464434,0.0116980998,0.0164026171,-0.0505279265,-0.0736432597,0.0418210551,0.0635882318,0.0037285059,-0.0355296433,-0.0053680656,-0.0249128789,-0.0125126131,-0.0736994296,-0.0023364602,0.0282832794,0.0113329729,-0.0008978958,0.0153072374,-0.0266823396,-0.0169924367,-0.0197449308,-0.0447701588,0.0099988561,0.033198446,-0.0455565825,0.0173575636,-0.0183265544,0.0317098536,0.0300527401,0.0285501033,-0.0424951352,-0.0066354764,-0.0372429304,-0.009760119,-0.0083206771,-0.0097530968,-0.0087560201,0.0077097919,-0.018579334,-0.0141065316,-0.0192112848,0.030080827,0.0094792526,0.0318222009,0.0341814831,0.0386191756,-0.0565384738,0.0258959122,0.0022574663,0.0174277816,-0.0556677878,-0.0086647384,-0.0147033734,0.0069514518,-0.0214863047,-0.0307268202,-0.0243230592,0.0366531089,-0.0006271228,-0.00635461,-0.036456503,-0.0014684064,0.0143242031,-0.0251937453,-0.0006780298,-0.0031158654,-0.0103148306,0.0256010033,-0.0292101409,0.0097460756,-0.0096267071,-0.0219076052,-0.0075693582,0.0537017211,-0.0375237949,-0.0216688681,-0.0351926014,0.0147595471,-0.091394037,-0.0262189098,0.0496853255,0.038197875,-0.017708648,0.0413435847,0.0077870302,0.0022381567,-0.0625209361,-0.0111995609,-0.0158549268,0.0274406802,0.0076887268,-0.0234242864,-0.0065512164,0.0202364475,-0.0201100577,-0.0203628372,0.0495448932,-0.0338444412,-0.0301089138,-0.0443769433,0.0030245837,0.0301370006,0.0202364475,-0.0115717091,0.0174277816,-0.015461714,0.0025190236,-0.021500349,-0.025586959,0.0212896988,-0.0174277816,0.020994788,-0.0129409349,-0.0054417928,-0.0223991219,-0.0426917449,0.0070216684,-0.0396864675,0.0105044162,0.0394336879,0.0016070843,0.0002068101,0.0153914969,-0.0127794361,0.0189865902,-0.0177226905,0.0110380622,0.0427198298,-0.036456503,-0.0020433054,-0.0209807456,-0.061004255,-0.0074570118,0.0611166023,0.0240421928,0.0232838523,0.016234098,0.0516513921,0.0038443634,0.0082083307,-0.0079204421,0.046118319,0.0228344649,-0.0064072725,0.0361194611,-0.0481405593,0.005968418,0.0015939187,0.0082996115,-0.0073727518,-0.0286905374,0.0208403114,0.0389562175,0.0062949257,0.0113610597,0.06465552,-0.009022844,0.0303616934,0.005884158,-0.0446578115,-0.0161357932,0.0280164573,-0.0028946828,0.0104693072,-0.0071972101,-0.0166132674,-0.0341533944,-0.0253201351,-0.0335916616,0.0441803373,-0.0223850794,0.0485337712,-0.0260082595,-0.0476911701,0.0751599371,-0.0109116724,0.0534489378,-0.0397707298,-0.034378089,-0.0351083428,-0.0393494293,-0.0387876965,0.0228765961,0.0315694213,-0.0244354066,-0.0406695046,-0.0347432159,-0.0229889415,0.0113751022,0.0223289058,-0.0279743262,-0.0038478742,-0.0081310915,0.0092475368,-0.0011225892,0.051145833,-0.00378819,0.0129760429,-0.0141486619,0.0054382822,0.0243230592,-0.016669441,-0.0200819708,-0.0122949416,-0.0147033734,-0.0235506762,0.0254746135,0.0128847612,-0.0241545383,-0.0007631676,0.0191691536,-0.0397145562,-0.0295190942,0.028437756,-0.0238034558,0.0431692153,-0.0022802867,-0.0518479981,0.0167115703,-0.016234098,-0.0202926211,0.0219497345,-0.0387876965,0.0376361422,-0.0227502044,0.0010409623,-0.0239438899,0.0188461579,0.0348836482,-0.0333107933,-0.0005217977,-0.0405852422,0.006305458,0.035445381,0.004258642,-0.0157566238,-0.0124564394,-0.0086226091,-0.0171890445,-0.027061509,0.0745982006,0.0230872463,0.0604986958,0.0063265231,-0.040248204,-0.0581394136,-0.0195623673,-0.001258634,0.0154055404,0.0358666815,-0.0170486104,-0.0112557346,0.0008860468,-0.0933039263,-0.0361756347,-0.0166834835,-0.0173294768,0.0340410471,-0.0182563383,0.0111784963,0.0694864318,0.0057928762,-0.0070813526,-0.0199134517,-0.0257273931,0.0003574468,-0.0269772504,-0.0090088006,-0.0222586878,0.0255307853,0.0180737749,-0.0249128789,0.0330299288,0.0315975063,0.0016623799,-0.0027279181,0.0051539047,-0.0063932291,-0.0278058071,-0.0118244896,-0.0193938483,-0.0161077064,-0.0127373068,-0.0330861025,-0.0384506546,-0.0384787433,-0.0066003683,0.0063756746,-0.0273142904,0.0005354022,0.0082925903,-0.025488656,0.0138537521,-0.0219076052,-0.0190989375,-0.0250813998,0.0194640644,0.0234945025,0.0414559282,0.0252077896,0.0228485093,-0.0056454213,-0.0005555895,-0.0254746135,-0.0267806426,-0.0170205235,0.0502470583,0.012308985,-0.0090088006,0.0516233072,0.0025049802,-0.0001810274,0.0182984676,0.0243932754,-0.013481603,0.0173856504,-0.0078642685,0.0250252262,-0.009458187,0.0023733238,-0.0102446144,0.0087700635,0.0330861025,0.0001509659,-0.0190427639,-0.0335354879,0.0156723633,0.0279181525,-0.010462286,0.0225255117,0.0064423806,0.0217812154,0.009458187,-0.0422985293,-0.0242668856,0.000535841,0.0159813166,-0.0290977936,-0.0152651072,-0.0315132476,0.0159813166,-0.0227642488,0.0222306028,0.0343219154,0.0350240804,0.0428321771,-0.0356981605,-0.0223148614,-0.0043885428,-0.0148438066,0.0059157554,0.0063124797,0.035417296,0.0100480076,-0.010160354,-0.0165290069,0.0178771671,0.0226097722,-0.0026787664,0.0148157198,0.0018273892,-0.0379731804,0.0170345679,-0.0009101838,-0.0053118919,0.034378089,-0.0095775556,0.0169924367,0.0060316129,-0.0082715256,-0.0541230179,-0.0120281177,-0.0023627914,-0.0245758388,-0.0028034011,0.0182282515,-0.0067267581,-0.0153914969,-0.0246741418,-0.0306987334,-0.0546285808,0.0231434181,0.02904162,-0.0093388185,-0.0556677878,0.0197028015,0.0313166417,0.028100716,-0.0085383486,0.0193798039,-0.017104784,0.0042235334,0.0205734875,0.0234242864,0.029884221,0.0033265154,-0.0233681127,0.0263172127,0.0044657812,0.0031966146,0.0169643499,0.0128145451,-0.0296033528,-0.0045008892,0.0244073197,-0.0093107326,-0.0146050705,0.004915168,-0.0188742448,0.0656104684,0.0152089335,0.0227923356,-0.0099637471,-0.0174699109,-0.0288169272,-0.0175822582,0.0072814701,-0.022033995,-0.0081942873,0.0071059284,-0.0219497345,-0.0196044985,0.0190708507,0.0141065316,0.0036863759,0.0321030691,0.0445454642,-0.0084119588,0.0304740407,0.0217952579,0.0170205235,0.0452195443,0.0164307039,0.0002668234,-0.0014473414,0.0284658428,0.0545162335,-0.0456127562,0.0022767759,-0.0315975063,0.019716844,-0.0157706663,0.0027296736,-0.0109467814,0.0112416912,0.0161779243,0.002062615,-0.0076325536,0.0135096898,-0.0065336623,-0.0135307545,-0.0113189295,-0.0389000438,0.0236489791,-0.0116138393,-0.034378089,-0.0478877798,-0.0161357932,-0.0200257972,-0.0424670503,-0.0208403114,-0.0203066655,0.0238034558,0.0045816386,0.0101673761,0.0326086283,-0.0239719748,-0.041287411,-0.0122036599,-0.0259520859,0.0207279641,-0.0139029035,-0.0043780101,-0.0299965665,0.0135658635,-0.0143803768,-0.0223991219,-0.0635320544,0.0107571958,-0.0294629205,-0.0196044985,0.0322715864,-0.0005656832,0.0198432337,0.0402201153,-0.0113048861,-0.0159251429,-0.0014350534,0.0096267071,0.014422507,-0.0106097404,0.013783535,-0.0063089691,-0.033507403,-0.0257976092,-0.0184529442,0.010160354,-0.0095986202,0.0043253475,-0.0203207079,-0.0203347523,0.0396583825,-0.0524378195,0.0078361817,0.0376642272,-0.0074008382,-0.0065477057,-0.0166413542,0.0130392378,-0.008854324,-0.0165430512,0.0102375923,-0.0264997762,-0.0052241213,0.0068391049,0.0241264515,0.02642956,-0.0201100577,0.0228765961,-0.0351083428,0.012575808,-0.0182142071,0.0458936244,-0.0368216299,0.0109116724,-0.012407288,-0.0339848734,-0.0197589751,-0.0102095054,-0.0165711381,-0.0149701964,0.0393494293,0.0107010221,-0.0127513492,0.015897058,0.0102516357,-0.0148297632,-0.0053961519,0.0044938675,-0.0307829939,-0.0161779243,-0.0076325536,0.0030667137,0.0191691536,-0.0149842398,-0.0264857337,-0.0427760035,-0.0359509401,-0.0122598326,-0.0082785469,0.0128075229,0.0226238146,-0.0168098733,0.0150123267,-0.1145936251,-0.0096758585,0.0301089138,-0.0390123874,-0.0125687867,-0.0052767838,0.0047010072,0.0256010033,0.0224131644,0.0016922221,0.0220901687,-0.0533927642,-0.0091071036,0.0012884762,-0.0296033528,0.0397707298,0.0118876845,0.0067408015,0.0129479561,0.0279462393,-0.0112136044,0.0141135529,-0.0262469966,0.0447139852,-0.0023171506,-0.034237653,-0.0216126945,0.0441241637,0.0176243875,-0.0021398533,0.0403886363,0.0051293289,-0.0079415068,0.0243932754,-0.0037425491,0.0344623476,-0.0122879194,0.0081942873,0.0125477212,-0.0064950432,-0.0228906386,-0.0481124707,0.0466238782,-0.0289292727,0.0534489378,-0.0068355943,-0.0174137373,0.0349679068,-0.0139380116,-0.0071375258,0.0312042944,0.0205313582,-0.0041989577,-0.0195623673,-0.0042165117,0.0074359467,-0.0620153733,-0.0290977936,0.0253622662,-0.0083206771,0.0048098429,0.0533927642,-0.0044763135,-0.0385910906,-0.0127021978,0.0169783942,-0.008285569,0.0425513089,0.0048730378,0.0061228946,-0.0048730378,0.0273423772,0.0190568082,-0.0521007776,0.0087770857,0.0057893656,0.0141346185,-0.018242294,0.013144563,-0.0337882675,0.0192393716,-0.0042375769,-0.0386472642,0.0196466278,-0.018242294,-0.0080749188,0.0097320322,0.010932738,0.0232698079,0.0006078132,0.0299965665,-0.0071831667,-0.0077097919,-0.0163885746,-0.0012542455,0.0054031736,0.0358105078,0.0012867207,0.0100128986,-0.0028191998,0.0395179503,0.001047984,0.0034458837,0.0395179503,-0.0268789455,-0.0320749804,0.0242949724,0.0039461777,0.001906383,-0.0034511499,-0.0077378787,-0.0010514949,0.0234664157,0.0420738384,-0.0080117239,0.0348555632,0.0189304184,0.0129479561,0.0026506798,-0.0234102421,0.030923428,-0.0187759418,-0.0416244492,-0.0012147486,-0.0151527599,0.0187759418,0.023677066,-0.012407288,-0.0005174092,-0.0153914969,0.0335635729,0.0633635372,-0.0063124797,0.0268368162,-0.0116208615,-0.0110169975,0.018677637,-0.0188742448,0.0026524351,0.0183405969,-0.0109608239,-0.0036407351,0.0080047017,0.0166413542,0.0205454007,-0.0097811837,-0.0068320832,0.0088753887,-0.0148999803,0.0485337712,0.0195623673,-0.0062808823,-0.0283254106,0.0661722049,-0.0164447464,0.080496408,-0.037327189,-0.02609252,-0.0030210728,0.0270474665,0.0114663839,0.0272019431,0.0223008189,-0.0109538026,0.0106729362,-0.0340129621,-0.0286764931,-0.019014677,-0.0046729203,0.0149421105,-0.0018326554,0.0357543342,0.0406695046,0.008987735,0.0278198496,0.0077940519,0.0082574822,-0.025053313,-0.0083768507,0.0097460756,-0.0391528234,0.0044798246,-0.0051152855,0.0447982438,0.0012094823,-0.0140152499,-0.0344623476,0.0340691358,-0.0042130011,0.0110450843,0.0101322671,0.0032878963,0.0134043647,0.0370182358,0.0172171313,0.0220620818,0.0225676429,0.0080327885,-0.0142048346,0.0143242031,-0.011670013,-0.0030298498,0.0139169469,-0.0225816853,-0.0189444609,0.046146404,-0.0090439087,0.0149842398,-0.018242294,0.0076957485,0.0125196343,-0.0010216527,-0.0114593627,0.0050275144,-0.037355274,-0.0141767487,0.0332265347,0.0182703808,0.0009523138,-0.0244634915,-0.0388157815,-0.0365969352,-0.0415963642,-0.0030210728,-0.021261612,0.0339848734,0.0042270445,-0.0071515692,-0.0040374594,0.0129619995,0.0077659651,0.0168800913,0.0119087491,0.0089385835,0.0403324626,0.0355858132,-0.0000808589,-0.0111925397,0.0104341991,0.0093949921,-0.000340112,0.009423079,0.0054312604,-0.0189725477,-0.0180035569,0.008685804,0.0261206068,0.0417367965,0.0322715864,-0.0188461579,-0.0029947415,0.0161779243,0.0360352024,-0.0012726773,0.0405009836,0.0276513305,0.0174277816,0.0225957278,0.0083487639,0.013615015,0.009893531,0.0383102223,0.0243090149,-0.0108203907,-0.0233400259,-0.0144786797,0.0001465773,-0.0029771873,0.0283534974,0.0152651072,-0.0190708507,0.0300246533,0.0074640336,-0.0219918657,-0.0063159908,0.0170626547,-0.0396302976,-0.0346027799,-0.0226659458,-0.0106588928,-0.0160374902,0.0159813166,-0.0269912928,0.0011796403,0.0347151272,-0.0212475676,-0.0039180908,-0.0403043777,0.0129549783,-0.0519322604,-0.0004980996,0.0347713009,-0.0042551309,0.0330018401,-0.0193938483,0.0212194808,-0.0146471998,0.0190989375,-0.0047431369,-0.0042375769,0.0026383919,-0.0064353589,0.0024294972,0.042326618,-0.0053259353,0.0321311541,-0.0098443786,0.001397312,-0.0262610391,0.0234383289,-0.039208997,0.0145769836,-0.0131305195,0.0524378195,0.0083066337,-0.0114523415,0.0191691536,0.0198011044,0.016234098,0.0247724466,0.0267385133,0.0031650169,0.0047571803,0.0301931743,-0.0140433367,0.0238877162,0.0193517171,-0.0074008382,-0.050275147,0.0356419869,0.0050380472,-0.0036969085,-0.0044868463,0.0254465267,-0.0296033528,0.0305302143,0.0165711381,-0.0003245327,0.0059508639,0.0150404135,0.0153493667,-0.0030403824,-0.0060596997,0.0095564909,0.001279699,-0.0026735002,0.0230872463,0.0116278827,0.0173435211,0.0405009836,0.0681382716,0.009458187,-0.0239017587,-0.003939156,-0.0211492646,-0.0262048654,0.0111574307,-0.0088121938,-0.0196044985,0.0356700756,-0.0206858348,-0.0080047017,-0.002189005,-0.0111433873,0.0177507773,-0.0159391873,-0.0105114374,0.0079415068,0.0059754397,0.0150404135,0.019787062,0.0417929702,-0.0012902316,-0.0081100268,-0.0009514361,-0.033507403,0.0240000617,-0.0246741418,0.009191364,0.01763843,-0.0057507465,-0.00791342,0.0355296433,0.0378608368,0.003135175,0.0097320322,-0.0351926014,0.0116840564,0.0089666704,0.009022844,-0.0126179382,-0.0164868776,0.0067162258,0.003363379,-0.0021696954,0.042326618,0.0017159202,-0.0027753145,-0.0173013899,-0.0254184399,-0.000263532,0.0093669053,0.0009918107,-0.0279883705,-0.0059122448,0.0218373891,0.0530276373,0.0325524546,0.0200819708,0.026022302,-0.0092545589,0.0031597507,0.0021187884,0.0019871322,-0.0149421105,-0.0269491635,0.0290135331,-0.031288553,-0.0027998902,-0.0021240546,0.0091422126,0.0315975063,0.018579334,0.0195061937,0.0266121235,0.0044201403,0.0217531286,0.0087138908,0.0296595264,-0.0367373675,-0.0264436025,-0.0139169469,-0.0408661105,0.0358385965,-0.0176665168,-0.0020924571,-0.0002916187,0.0133201052,-0.0077378787,0.014253987,0.0072393399,-0.0078080953,0.0067513343,0.0041533168,-0.0152651072,-0.0182142071,-0.0410908014,-0.0026945651,0.0087419767,-0.016669441,0.039237082,-0.0003675405,-0.0376080573,0.0422985293,0.0193517171,-0.0210650042,-0.001264778,-0.0437309518,-0.01582684,0.0037425491,-0.0267525557,0.0206296612,0.0247303154,0.0255588721,0.0444892906,0.0170626547,-0.0179754701,-0.0023645468,-0.0129830651,-0.0091351904,0.0314009003,-0.0051258178,-0.0118947057,0.0180176012,-0.0015552995,0.0196747147,0.031457074,-0.0232838523,0.0009646017,-0.0173154343,0.0185933784,0.0095986202,0.0404728949,0.0147595471,0.0099075744,0.007091885,-0.0074570118,-0.0231153313,0.0290977936,0.0306706466,-0.0545724072,0.0056208456,-0.0229046829,0.0011901727,0.0250673555,0.0066495198,0.0075553153,0.0055436073,0.0176805612,-0.0146471998,-0.0166553967,0.0122808982,0.0575215071,0.018747855,0.0166132674,-0.0020801693,0.0266963821,-0.0093528619,0.0044938675,-0.0165430512,-0.0198572781,-0.0009268602,-0.0189444609,-0.0213458724,0.0171188265,-0.0303897802,0.0022908193,-0.0034002429,-0.0245337095,0.0111433873,0.0039005368,-0.0102165276,0.0003438423,-0.0012691666,0.0334512293,-0.0013683477,-0.0083698286,0.0256290901,-0.019520238,0.0079415068,-0.0100480076,-0.007562337,-0.0032966733,0.0203347523,-0.0137343835,-0.0110029541,0.004929211,-0.0117402291,-0.0035108342,0.0091000823,-0.0118525764,-0.0023347046,-0.0107501745,0.0390123874,0.0317379422,0.0050661336,0.0083557852,0.007730857,-0.0414559282,0.0179333407,-0.0238174982,-0.0153914969,-0.0425232239,-0.0084821749,0.004760691,0.0285781901,-0.0223429482,0.0062001334,0.0044973786,0.0196466278,0.0229608547,-0.0120562045,-0.0359228551,0.0264014732,0.0037144625,-0.0046167471,-0.0030245837,0.0439275578,0.0248005334,-0.0479158647,0.011269778,-0.0214160886,0.039237082,-0.0082434388,-0.0108414562,0.030923428,0.0370182358,-0.0218935627,0.0123581365,-0.0043780101,0.0087560201,-0.0170626547,0.0073797735,0.0261627361,0.0143663334,-0.0187899843,0.0155740604,-0.0422423556,0.0104693072,-0.0297718737,-0.009689902,-0.017610345,-0.0139450328,-0.012105356,0.04111889,0.0055190311,0.0309795998,-0.0122879194,-0.0144786797,-0.0284237135,-0.0253201351,0.0346870422,0.0134535162,-0.0099707693,-0.0321030691,0.0304459538,0.0312323812,-0.0107501745,0.0186214652,-0.0059473529,-0.0388157815,0.0008799028,0.0248286184,-0.040276289,-0.0086085657,0.0038864934,0.0100971591,-0.0424951352,-0.021163309,0.0436747782,-0.0141416397,-0.0023382155,0.0136571452,0.0067443126,-0.0061544925,0.0218654759,0.00825046,0.0082645034,0.0068285726,-0.0193376746,-0.0351364277,-0.0036688216,-0.0349679068,-0.0234523714,0.0077168136,0.0053399787,-0.0239158031,-0.0069900709,0.0228906386,0.0027050977,0.0102024842,0.0357824229,-0.0128005017,-0.002466361,0.0052206102,0.0030754907,0.002231135,0.0337882675,-0.0003791701,0.0017975471,0.0039707534,0.0126179382,-0.0188882872,-0.0103429174,0.0476069115,0.0183546413,-0.0239438899,0.0414840169,-0.0047185612,-0.0146471998,0.0107501745,0.0039005368,-0.0011067905,-0.0284518003,-0.0003526194,-0.0186355077,0.0173856504,0.0158830136,-0.0106448494,0.0258116536,-0.0012717997,0.0200398415,0.0256010033,-0.0289292727,0.0308672544,-0.0142329214,-0.007983637,0.0042305551,0.0211492646,-0.0363441557,0.0237051528,0.004427162,0.0246320125,-0.0390404761,0.0319907218,-0.0041287411,0.0162060112,0.0103710042,-0.0153353233,-0.0134184081,0.0021960267,0.024449449,-0.0108765643,-0.0283534974,-0.0076044668,0.038197875,0.0310076866,0.0308110807,0.0044728029,0.0021117667,-0.0026278594,0.0423547029,0.0178631246,0.0081732217,0.0036372242,0.0230170283,0.0244775359,0.0137624703,-0.0139941853,0.0188602004,0.0287326667,-0.0098724654,-0.0068742135,-0.010932738,-0.0188180711,0.0376361422,0.0271457694,-0.0038373417,-0.0101392893,-0.0499100201,0.0108133694,-0.0100901378,0.0047993101,-0.0380293541,-0.0064318483,-0.0170907415,-0.0086577171,0.0014482191,-0.0170486104,0.0188321136,0.0135307545,0.0071445475,0.0247864891,-0.0016527252,0.0353892073,0.0216267388,-0.0066214334,0.0091492338,0.0208543558],"71":[0.034271881,0.0178603865,0.0418228395,0.0569804832,0.0631382763,0.0411541201,-0.0281976778,0.043216005,-0.0360551327,-0.026902033,0.0136460597,0.000196567,-0.0124479374,-0.0409869403,0.0224578343,0.0220816787,0.01184191,-0.0232240763,-0.0515192747,0.0271249395,-0.012566356,0.0069310004,0.0187380817,0.000683522,-0.0177767966,-0.0022569287,-0.0238509998,0.0617451109,0.0493459366,-0.0449435301,-0.0006639306,-0.0402067676,-0.0161607247,-0.0031293989,0.0272503253,-0.0101701114,-0.0166065376,0.0030597406,0.034355469,-0.0011093083,-0.0207860358,0.0227225348,0.0028646972,0.0348848738,-0.0314576849,-0.0189331248,-0.0464481525,0.0004246979,0.0325443558,0.0270552821,-0.027584685,0.0225692876,-0.0063284561,-0.1228215024,-0.0105184028,-0.0219841581,-0.0288663972,0.0471168719,-0.0274175052,0.0030893453,0.0083520291,-0.0410148054,0.0410983935,0.0591259599,-0.0064190119,0.0204516761,-0.0234609134,0.0703270137,0.0009856649,0.0345226489,0.078407377,0.034271881,-0.0101770768,0.0178464558,0.0385071039,-0.0605748519,-0.0322378576,0.0215801392,-0.0499032028,-0.0053009964,-0.0063806996,-0.026498016,-0.010267633,0.0229872372,-0.0096964343,-0.0363894925,0.0057677068,-0.0420736112,-0.0305939224,0.0378383845,-0.0063493536,0.0418507047,0.0119881928,-0.008414722,0.0305103324,-0.0056701852,0.0184315853,0.0312347785,0.0369467586,-0.0029064924,0.0039565912,-0.0300645195,0.0178464558,0.0187241491,0.002657464,-0.0085749356,-0.0005594432,0.0085749356,0.0554201379,-0.0249237381,-0.1024255529,0.0012799712,-0.0117304567,-0.0024571964,-0.0123086208,-0.007752968,-0.0305660591,-0.006495636,-0.0043606092,-0.0086724581,-0.0373089835,0.0020793001,0.012141441,0.0275568217,0.0178325232,-0.0259128865,-0.0065478799,-0.0754538625,-0.0691567585,-0.0204238128,0.0158820916,0.0019748127,0.0407083072,-0.0436339565,-0.0283230618,-0.0414606184,-0.0618565641,-0.0089510912,0.0012817127,-0.0245057885,0.0016857308,-0.0002113694,0.0486772172,0.0154920043,-0.0259128865,0.0179021824,-0.0111662243,0.014419267,0.010629856,0.0079689091,-0.0033627541,-0.0043954384,-0.049819611,-0.007230531,0.0400395878,-0.0198944081,0.0572312549,0.0888282582,0.0033018033,-0.0412377119,0.0231683496,0.0435782298,-0.0046462081,-0.0003334891,-0.0383399241,0.0181111563,0.0029569946,-0.0400674492,-0.0923390388,-0.0200197939,-0.066203244,-0.0156870484,-0.0028664388,0.0270134863,0.0188773982,0.0138550345,0.0271945987,-0.0074116425,0.0207024459,-0.05307962,-0.0614664778,-0.0078435242,-0.0211621895,0.0104348129,0.002098456,0.0068892054,-0.0835899562,0.0521879941,0.0276961382,0.0404018126,-0.059404593,0.0433274582,0.022875784,0.0258850213,-0.008797843,-0.0321542695,0.0425472856,0.0048691146,-0.0251745079,-0.0022186167,0.0188773982,0.0264004935,0.0389529169,-0.0438568629,0.0372253917,-0.0256481841,-0.0042212927,-0.0131932814,-0.0698254779,0.003221696,0.0281837452,-0.0037127871,0.0083659608,-0.0101004532,-0.0313183703,0.0240321122,-0.0164393578,-0.0136460597,-0.0011641643,0.0394544564,0.015101918,0.1053233445,0.0005777285,0.0094665624,-0.028392721,0.0182086788,0.0315134116,-0.0333523899,0.0540548377,-0.0051268507,-0.0147257634,-0.0212179162,-0.0056875995,-0.027347846,0.0135346064,0.0019870028,0.029841613,-0.015826365,-0.0301759727,-0.0034010662,-0.0064886701,0.017038418,0.0177350026,-0.0035473485,0.0357764997,0.0016021407,-0.0470332801,-0.0393987298,0.0043849899,0.0385628305,0.0244082659,0.0107064797,-0.0139664877,-0.0232798029,-0.0111801559,-0.0503490157,-0.026498016,0.0402067676,0.0266094692,-0.003834689,0.0113821654,-0.0353306867,-0.0191003047,-0.0082684392,0.0017144647,-0.0056980485,0.0188913289,-0.0492623448,-0.0070076245,-0.004782042,0.0197132975,0.0143914036,-0.001838979,-0.0677635893,-0.0163836312,0.0023178798,-0.0419064313,0.0243804026,-0.0174563695,0.0116120381,-0.0290335771,0.012503664,0.0318477713,-0.0195879117,0.0031363647,-0.0260382704,-0.0185848325,0.0429095104,-0.0415442064,-0.0068508931,0.0051581967,-0.0109781474,-0.0109363524,0.0069205514,0.0083032688,0.0091252364,0.0129007157,-0.0394823216,-0.012886784,-0.0026522395,0.034355469,-0.0193789378,-0.0016413236,-0.019615775,0.0025094401,0.0004059772,-0.0004144669,0.0256621148,0.0119394315,-0.0218727048,-0.0058095017,0.0373925716,0.0499589294,-0.0453614816,-0.0215104818,0.0222070646,0.0683765784,0.0174842328,-0.0186684225,-0.0506555103,-0.0337424763,-0.0599061325,0.0148511482,-0.033631023,0.0208696257,-0.0428259186,0.0131375547,0.007390745,-0.0063180071,-0.0206745826,0.0146282418,0.0184594486,0.0236838199,-0.0101422481,0.0017031453,0.0079271141,0.012183236,-0.0405689925,-0.0175120961,0.0310954619,0.0169966239,-0.0365009457,-0.0508505553,-0.0195182543,0.0456122495,0.0025529766,-0.010030794,-0.0336867496,-0.0120787481,0.0286156274,-0.0498753376,-0.0047472129,-0.0061159981,-0.0318756364,-0.0286713541,0.0027584685,0.0221652687,-0.0329901688,-0.0108806258,-0.0012085714,-0.0312905051,0.0190445781,0.0234609134,0.0346619673,-0.0032338863,0.0157567058,-0.0288942605,0.032182131,-0.0016700577,-0.0127335358,0.0071957018,0.0249376688,-0.0451664366,-0.0031955743,-0.061299298,0.0023945039,0.0711071864,0.0231962129,0.0059557841,0.0491230302,0.0442469493,0.0454172082,-0.0208696257,0.0137714446,0.018403722,0.0474233665,0.0095919473,0.0208556931,-0.0673734993,-0.0230429638,0.0698254779,-0.0351356454,0.0017771572,-0.0026383079,0.0169826914,-0.0167737175,0.0465874672,0.0182086788,0.0558380894,-0.0400395878,-0.0062796953,-0.0182086788,-0.0206885133,-0.0206327867,0.0065060849,0.0020932318,0.0273060519,-0.0053671715,-0.0468939655,0.0027306052,-0.0095710494,-0.0341325626,0.0347176939,-0.0314019583,0.0020914902,-0.0036605434,-0.0040262495,0.0651444346,0.0039113131,0.0420178846,-0.0187380817,0.0052208891,0.0171916671,-0.032906577,-0.0082684392,0.0657574311,0.0114796869,0.0082545076,-0.0304267425,-0.0687666684,-0.0314576849,-0.0010413915,0.0487608053,0.0112149855,-0.0526895337,0.0266512632,0.0094038695,-0.0228061248,0.0194207318,-0.0032112473,-0.0447484888,-0.0204516761,-0.006826513,-0.0393708684,-0.003552573,-0.0460023358,-0.0018076327,-0.0002381443,0.002140251,-0.0002075599,0.0112149855,-0.0229315106,-0.0468103737,0.0473397784,-0.0591816865,-0.0190585088,0.0046357596,-0.0081918156,0.0327393971,-0.0305103324,-0.0390365086,0.0308446921,-0.0310675986,-0.0263447668,-0.0199501347,-0.0223324485,0.0182504728,-0.0014262536,0.0090904078,-0.0192396212,0.0134231532,0.0009969843,-0.0054821079,-0.0271945987,-0.0300087929,-0.0041551171,0.0384792425,-0.0038172745,-0.0199222714,-0.0355535932,-0.0107552409,-0.0193928685,-0.0398166813,0.0660360605,0.0316805914,-0.0112916091,-0.008115191,0.030649649,-0.012162338,0.0006395502,-0.0272921193,0.0035577973,0.0723889023,-0.016676195,-0.0280583613,-0.0205074027,-0.0006917939,-0.0202009063,0.0104835732,-0.0147118317,0.0511570498,-0.0157009792,-0.0067986497,0.0359994061,-0.0125802876,0.0348848738,-0.0206467193,-0.012928579,-0.0077460022,-0.0350799188,-0.0108875912,0.0020549197,0.0295629799,0.0404296741,-0.0002832045,0.0405689925,0.0083032688,0.031931363,-0.0201173145,-0.0201869737,0.0001662003,-0.0223742444,0.004621828,0.0422965176,-0.0220956113,0.0006238771,-0.0707728267,-0.0273339152,-0.0265537426,-0.008456517,0.0005315798,-0.0222906545,0.006666299,0.0641413555,-0.0239903163,0.0233912561,-0.0062309345,-0.0148093533,-0.0131375547,0.006039374,0.0149347382,0.0315412767,0.0053323423,0.0305939224,-0.011416994,0.0055552488,-0.0158542283,-0.0186266284,-0.0018598764,0.03544214,0.0560052693,-0.0205074027,0.0267766491,-0.03165273,-0.0034446027,0.0333523899,0.0048517003,-0.0213572327,0.018807739,0.0157427751,-0.0192953479,0.0036640263,-0.0060045449,0.0247844215,-0.0259128865,0.05895878,0.0196297076,-0.0105114365,-0.0298694763,0.0147675583,-0.0102467351,-0.0082545076,0.008156986,0.0095362207,0.0289778505,-0.0030092383,-0.0171220079,0.0026957761,0.0013975195,-0.0023631577,-0.0200615879,-0.0063911485,0.0143914036,0.0329344422,-0.0447206236,-0.0157567058,0.0290057138,0.0068021324,0.0246033091,-0.0228200573,-0.0228479207,-0.0196993649,-0.002897785,0.0186266284,0.0115911402,0.0133256316,0.034996327,-0.0004216504,-0.0139873857,0.0528567135,-0.0011807081,0.0235445034,0.0040262495,-0.0358322263,0.0085052773,0.0160632022,0.0258989539,0.0176932067,0.0244082659,-0.0086376285,0.0120578511,-0.0131863151,-0.0157706384,-0.0434389114,-0.0098357508,0.0085261753,0.0073350184,-0.0128937503,0.0500982441,0.0117165251,-0.0275010951,-0.0463645607,-0.0040541128,-0.0310954619,0.0301202461,0.012907682,-0.0274592992,-0.0444141291,-0.0149626015,-0.0017397159,-0.0059697158,-0.0172055978,0.0056841169,0.0071121119,0.0025895471,0.0272921193,0.0253834818,0.0591259599,0.0212457795,-0.0093690408,0.0253834818,-0.0010292013,0.0225832183,-0.0353585519,0.0341604277,-0.0144610619,-0.0038834498,0.0263308361,0.003004014,0.0099541703,-0.0026487566,-0.0343833342,0.0278354548,0.0347734205,0.009584981,0.03165273,-0.0420736112,-0.0003132446,-0.0216776617,0.0116607985,-0.0447484888,0.0163557678,-0.0104835732,-0.0044302675,-0.0387578756,0.0292843468,0.0489558503,-0.016913034,0.0292564835,0.0288385339,-0.0173727795,0.0271945987,0.0337982029,0.0086515602,0.0105323344,0.0065095676,0.0038938986,-0.0094874594,0.0177907292,0.0157149117,0.0098775458,0.0166344009,-0.0153387561,-0.0086933551,-0.0080873277,-0.0030597406,0.0102258381,0.0202844962,0.0181808155,0.033826068,0.0068056155,-0.0051198849,0.0129912719,-0.0267766491,-0.0295351166,-0.0411819853,0.0139177274,-0.0048760804,-0.0161467921,-0.0862648338,-0.0198804773,0.0168015808,-0.0750080496,-0.0219562948,0.0019399835,-0.0180554297,-0.004036698,-0.013269905,0.0669276863,0.0141197359,-0.0120717827,0.0004177321,-0.0182922687,0.0143217454,0.0066941623,0.0080594644,-0.0322378576,0.0308725554,0.0153944828,0.0051338165,-0.0372811183,-0.032182131,-0.0182504728,-0.0346341059,0.0335752964,-0.0023736064,-0.019977998,0.0237534791,0.0218030456,-0.0249098055,0.0155755943,0.0356650464,0.0324886292,-0.0249237381,0.0278633181,-0.0249098055,-0.0376433432,-0.0035508315,-0.0390643701,0.0018250473,-0.0484543107,-0.0133325979,0.0134092215,0.0020584026,0.020618856,-0.0299809296,0.0165368784,0.0346619673,-0.006614055,0.0009351626,-0.0079131825,0.0128589207,-0.0305939224,-0.0109433178,-0.0021576656,0.0044058873,-0.0088048084,0.0074046766,0.021022873,0.035191372,0.0077808313,0.0214268919,-0.0145167885,0.0030858624,0.0085331406,0.0156591851,-0.012886784,-0.0132211447,0.0225692876,-0.0368631706,-0.0392594151,-0.0217891149,0.0094108358,-0.0011336887,0.036891032,-0.030287426,-0.005314928,0.0086515602,-0.0032251789,-0.0290893037,0.0271806661,-0.0038973815,0.009180963,-0.0050328118,-0.0134231532,-0.0202566329,0.0214268919,-0.0222349279,-0.0120439194,-0.0368631706,-0.0303152893,0.0315691382,-0.0264004935,-0.0013174125,0.012566356,0.0018720666,0.019852614,-0.0673734993,-0.0072026676,0.0236280933,-0.0272781886,-0.0281280186,0.009264553,0.0540269725,0.0283787884,0.0410983935,-0.0270552821,0.0055622146,-0.0322378576,-0.0074395058,0.0083380975,-0.0199501347,-0.0026626883,0.0151855079,0.025857158,0.0010770913,0.0283648577,-0.0089092962,-0.014377472,-0.0119533632,0.0344947875,-0.0075300615,0.0079689091,0.0040610787,0.0189052615,0.0534139797,-0.0409312136,0.0174981635,0.0352470987,-0.0046427255,-0.0056353561,-0.0261079296,0.0184733793,0.018320132,0.0024049527,-0.0277657956,0.0117513547,-0.030203836,-0.018403722,0.0256063882,-0.0516307279,0.0361387245,-0.0138828978,-0.0029639604,-0.0005437701,-0.0020357636,0.0533861183,0.0377269313,-0.0021419926,-0.0139107611,-0.0076345489,0.0038869327,0.0662589669,-0.0349406004,0.0029691849,-0.0057816384,0.0122389626,-0.0085679702,0.0129634086,-0.0004344936,-0.0268045124,-0.0390365086,0.0132838367,-0.0102049401,0.0341882892,0.0086236969,0.0303431526,0.0149486698,0.0387300104,0.0187102184,0.0013713976,0.025815364,-0.0021367681,0.0337146148,-0.0121135777,0.0117722517,-0.0044720625,0.0138828978,0.015143713,-0.0120439194,0.0479527712,-0.028072292,-0.0074743349,-0.0344390608,0.0085122436,-0.0065026018,0.0013487587,0.0388414636,0.0052557182,-0.0176374801,0.0001109635,-0.0003341421,-0.0038033428,0.0036291971,-0.0110129761,0.0306775123,-0.0128031941,0.0214408226,0.0140082827,-0.0092784846,0.0216219351,-0.0358600914,-0.0038451378,0.0067394399,-0.0127822971,-0.0385628305,0.0075300615,-0.0310397353,-0.0025390449,0.0141684972,0.0513520949,0.0088883983,0.0176792759,-0.0089162616,-0.0418785661,0.0206327867,-0.0222209953,0.0539712459,-0.0312905051,0.0015664409,0.0111383609,0.0171220079,0.0499310642,0.0470890068,0.0067046108,-0.022109542,-0.0101631451,-0.0017588719,0.074227877,0.0292286202,0.0674849525,0.0126987072,0.0060707205,0.0204656068,0.0167319216,0.0112149855,0.0052940305,0.0186266284,-0.0044825114,-0.0090764761,-0.0044894773,0.0184594486,-0.0026766199,-0.0097173322,-0.0111801559,-0.0325164907,0.0330458954,-0.0153944828,0.0061682421,-0.0212179162,0.0309840087,-0.0082266442,0.0425194241,-0.0327115357,-0.0013426637,-0.0079828408,-0.0133395633,0.0061856564,0.0528845787,0.0043222974,-0.004621828,0.0175538901,-0.0115702432,-0.0070563853,0.0310397353,-0.0013687855,-0.0083032688,-0.0032634912,-0.0218866356,-0.0151297813,0.0149904648,0.0320706777,0.0124200741,-0.0115493452,0.0062483489,0.008156986,0.0178464558,-0.0163000412,-0.0099611357,0.0190863721,0.0387021489,0.0251466446,-0.0118279783,-0.0219562948,0.0036570604,-0.0081639523,0.0080037378,0.0392315499,0.0062762122,0.0291450303,-0.0046044132,0.0123016546,0.0257596374,0.0278215222,0.0118349446,-0.0183897894,0.0248540789,-0.0014010024,-0.0018685837,0.0313462317,-0.0124131078,-0.0160074756,0.0400117226,-0.0005011043,-0.0059731989,-0.0224717651,0.0032600083,-0.0066697816,-0.010650753,-0.0302316993,-0.0137505475,0.0066628158,0.0046322765,-0.0134788798,0.0030527748,-0.0137435813,-0.0248262156,-0.0197690241,-0.0401789024,-0.0139386244,0.0546399653,0.0021994608,0.0106019927,-0.0076972414,0.0239067264,-0.0237952732,0.0257178415,-0.0062971096,0.0150322597,0.0135206748,0.0120090898,0.0372811183,0.0043954384,-0.0169269647,-0.0106995143,-0.0171777345,0.0230429638,-0.007711173,-0.0136878546,0.0154223461,-0.0151994396,-0.0382284708,-0.0065931575,0.029117167,-0.0056005269,0.0153666195,-0.0122877229,-0.0109502841,0.0174981635,-0.009222758,-0.0067185424,0.0161467921,0.0300087929,-0.0084077558,-0.0070389705,0.0126011856,-0.0421293378,-0.0183340628,0.0178464558,0.001797184,0.0068752738,-0.0011066962,-0.0201869737,0.0150740547,-0.00293958,0.0165090151,0.0101840431,-0.0258014314,0.0196018443,0.0228200573,-0.0054298639,0.0145864468,0.0385071039,-0.0518814996,-0.0062135197,-0.0103442566,-0.0215801392,-0.0204377435,-0.0096198106,0.0093342112,0.009201861,0.006816064,-0.01037212,-0.0057293945,0.0031886084,0.0031172086,-0.0260243397,-0.0007631937,-0.0205770601,-0.0144749936,0.0338817947,-0.016188588,-0.0182644054,-0.0080385674,0.0178046599,0.0116886618,0.0027288636,0.0086306622,-0.0264562201,0.0053497571,0.0314576849,0.0497638844,0.0130957598,-0.0203402229,-0.0095501523,-0.0439683162,0.0289778505,-0.0097660925,-0.0142660188,0.0089162616,0.0342161544,-0.0033401153,0.0075161299,0.0398724079,0.0303431526,0.0256063882,0.0259407498,0.0139316591,0.0221652687,0.0314019583,0.0110129761,-0.0216080025,0.0264004935,0.0235445034,-0.0070563853,0.0015507678,0.0331294835,0.006774269,0.0075439932,0.0211064629,0.0229872372,-0.0228061248,0.006412046,0.0137017863,-0.0069518979,0.0046775546,-0.0175260268,-0.0159378182,-0.011054771,-0.0225414243,-0.0261218604,-0.0029204241,-0.0000431827,0.0064329435,0.0178325232,0.0133186663,0.0033105104,0.0748408735,-0.0042665703,0.0071957018,-0.0030440674,0.013207213,-0.0099750673,-0.0089580566,0.0326279439,-0.0053845863,0.0246590357,-0.0201033838,-0.0293679368,-0.0289499871,-0.0028664388,0.0006495636,-0.0233355295,-0.0014750144,0.0153387561,0.0125733223,-0.005015397,0.0151158497,0.0037615479,-0.0019068958,-0.0438847244,-0.0396216363,-0.0076902756,-0.0055134539,-0.0143914036,-0.0200337246,0.0071330094,0.0117861833,-0.0118976366,0.0418228395,0.010713446,0.0080803623,0.0153526878,-0.0073001892,-0.0067359572,0.0206745826,0.0054124496,-0.0200197939,-0.0158820916,-0.0045661014,-0.0144610619,-0.0177489333,0.024770489,-0.0259686131,-0.0256342515,0.0126011856,-0.0417671129,-0.0297858864,0.0046566571,0.006443392,-0.0142938821,0.0005886126,-0.0004758532,0.0650329813,0.0394544564,-0.0087630134,0.0162164513,-0.0264283568,-0.015505936,-0.0225971509,0.0190445781,-0.0315134116,-0.0400674492,-0.0033557883,-0.0046845204,0.0032513009,-0.0448320769,-0.0033418566,0.0360551327,0.0251187813,0.0091948947,0.0044372333,0.0196436383,0.0115214819,0.0380055644,0.0055413172,-0.0636955425,-0.029925203,0.0263447668,-0.0197690241,0.0144471303,-0.0155895259,-0.0021698559,0.0000029115,-0.0020392465,-0.0101283165,0.0160771348,0.0008820482,-0.0244361293,0.0089998515,0.0018616179,-0.0022917578,-0.005548283,-0.0174842328,-0.0211761221,-0.0185291059,-0.0424079709,0.0134649482,0.0234051868,0.0065931575,0.0155755943,0.0012756175,-0.0168433748,-0.0127335358,-0.0384513773,-0.0200058613,-0.0063284561,-0.0362223126,0.0091530997,0.0230708271,-0.0022499629,0.0011267229,0.0475626849,-0.011458789,-0.012545459,0.0009055578,-0.0279329754,0.019253552,0.0143914036,-0.0297580231,-0.0048760804,0.0129425107,-0.0025233717,0.032182131,0.008839638,0.0129843066,0.012907682,0.0200615879,-0.0018093742,0.0654787943,0.0149068749,-0.0245336518,0.0159935448,-0.0169408973,-0.0157149117,0.0038451378,-0.0031154673,-0.0316248648,0.0072165993,-0.0178743191,-0.0034376369,0.029841613,-0.0303710159,0.0064573237,0.0153387561,0.0263586994,0.0328508504,-0.023837069,0.0100656236,0.012907682,0.0232798029,-0.0143635403,-0.0252580978,0.0067951665,-0.007711173,-0.0120230215,-0.0200615879,0.0022447386,-0.0046078963,-0.012865887,-0.0065757432,0.0200197939,-0.0293400735,0.0151855079,-0.035191372,-0.0262054503,0.0284205843,-0.0030127212,-0.0301202461,-0.0152690979,-0.00057947,0.0135624697,-0.0324050374,-0.0104417782,0.0077181389,-0.0211064629,-0.0073001892,0.0187938083,0.0388136022,0.0097034005,0.0366123989,0.0105253682,0.0368353054,-0.0224578343,-0.0246311724,0.0164672211,-0.006986727,0.0170523506,0.0000741208,-0.014419267,0.0112916091,0.0167737175,0.0056910827,0.0043188143,0.0045974473,-0.0339932479,0.0390922353,-0.0186684225,0.0007231402,-0.0424636975,-0.0412377119,0.0233773235,0.0167597849,0.0013914244,-0.0116050718,0.0326279439,0.0092715193,-0.0115423799,-0.0049492219,-0.0051268507,0.0432438701,-0.0060985838,-0.0269438289,-0.0149626015,0.054444924,0.0453893431,-0.0415999331,0.0074743349,-0.0166065376,0.0215940718,-0.0202427004,0.0289221238,0.0210507363,0.0547514185,-0.0301202461,0.0207860358,0.0091461344,0.0065792259,-0.0138341375,0.0279747713,0.0034411198,-0.0345505141,0.0016273919,-0.0090695098,-0.0125593906,0.022513561,-0.027626479,-0.0176374801,-0.0161467921,0.0316248648,0.0025251133,0.0125593906,-0.0192396212,0.0041794977,0.0367238522,0.0239763856,0.0000442983,-0.0079201479,0.0056806337,-0.009988999,-0.0009874064,-0.014335677,0.0393987298,0.0389250554,-0.001896447,0.0010544524,0.0324050374,-0.0117652863,0.0263308361,0.0224578343,-0.0180136357,-0.0350799188,-0.0068195472,0.0234330501,-0.0295072533,-0.0170802139,0.0401789024,-0.0071608727,-0.0253556184,0.0063458704,0.0117095597,-0.015868159,0.008561004,0.0103512229,0.0005929662,0.0083798924,-0.0004342759,-0.0194346644,-0.0028525072,-0.0124897324,-0.0110478057,0.0025251133,-0.0017257843,-0.0068334788,0.0137157179,0.0206049234,0.0018215644,-0.0157567058,0.049095165,0.0110826343,0.0022708604,-0.0094735278,-0.0079828408,-0.0324329026,0.0187520124,0.0065409141,-0.0116468668,-0.0127126388,0.0083659608,0.0032077644,-0.0262611769,0.003918279,0.0140918726,0.0059592673,0.0098218191,0.0144610619,0.0009935014,0.0161746554,-0.0080803623,-0.0282116085,-0.0010379086,0.0089441249,-0.0070772828,0.0262611769,0.0173031203,0.0301481094,0.0176514126,0.0244918559,0.0151715763,0.0181668829,-0.0231962129,0.034996327,0.0116607985,0.0194207318,-0.0068787565,0.0097034005,0.0061334129,0.0286992174,-0.0092366897,0.0100447256,-0.0187938083,0.0388414636,-0.009968102,-0.0101561798,0.0426030122,0.0132629396,-0.0177767966,-0.0060045449,0.0259686131,-0.0014732729,0.0051477482,-0.0048273196,0.0257178415,0.0104766078,0.0077042072,0.004419819,-0.0003702774,0.0120648164,0.0574541613,0.0087003214,-0.0200337246,-0.0461137928,-0.008839638,0.0466431938,0.0223463811,0.0040819761,0.009626776,0.0074952324,0.0019713298,0.0007649352,0.0100238286,-0.0246172417,0.0133256316,0.0071225604,0.0054925564,-0.0119881928,-0.0060707205,0.0189609881,0.0130052036,0.0238231365,-0.0203959495,-0.0061543104,-0.0499310642,-0.0085888673,0.0224021077,0.0128798187,0.0015176801,0.021343302,0.0124827661,0.0298137497,0.0187102184,0.0126220826,-0.0152969612,-0.0237395465,0.0193510745,-0.0009473528],"72":[0.035314329,0.033370126,0.0203662962,0.0230594911,0.0520790704,0.0117926905,-0.0011852451,0.004629428,-0.0199200865,-0.0302307215,0.0282865223,-0.0100556593,-0.0290355161,-0.0112827364,0.024095336,0.0182786714,0.0090357512,-0.0361430049,-0.0581029058,0.0012858416,0.0045776358,0.0026692916,0.0152826896,-0.0184380319,-0.0071632629,-0.021832414,0.0137528274,0.0551706702,0.0337525941,-0.0445572473,-0.0032649019,-0.0374497622,-0.0204619113,0.0067250207,0.029864192,-0.016892232,-0.0056294161,0.0183264781,0.0255933255,0.0090516871,-0.0173384417,0.0064302036,-0.0472345054,0.0275375266,-0.0392027274,-0.0485412627,-0.0327008143,-0.0099202022,-0.0314418636,0.0405413583,-0.0566686578,-0.0000097655,-0.0230913628,-0.0167328715,-0.0063186511,-0.0013635298,-0.01163333,0.0132030323,-0.0102229882,0.0317605846,0.013689083,-0.0250355639,0.0163185336,0.042931769,-0.0038644967,-0.0053943591,-0.0316171609,0.0508041866,-0.0184380319,0.046660807,0.076110661,0.001863524,-0.0007131391,0.0025716831,0.0214021392,-0.0211312268,-0.0404457413,0.026151089,-0.0386609025,0.0116811385,-0.0033266542,-0.0139918681,-0.0053983433,-0.0138803152,-0.0123902932,-0.0616725832,-0.0043346104,-0.0506129526,-0.0405732319,0.0499755107,-0.0199838299,0.062628746,0.0026254673,-0.0045736516,0.0219917744,-0.0039860089,0.0316490307,0.0282546487,0.0417843722,-0.0107488781,-0.0074740159,-0.0462145992,-0.0010597486,-0.0119679878,0.0114899054,-0.0056851925,-0.0250514988,0.0166691281,0.0056812083,0.001167317,-0.0946602449,-0.0241750162,0.0243662484,-0.0116492659,-0.0229957476,0.003746968,-0.0390752405,-0.017099401,-0.007003902,-0.0003194684,-0.0296092145,0.0265813619,0.0065298039,0.0077688335,0.0099759791,-0.0256251972,0.0037210721,-0.0686525851,-0.0749632642,-0.0337207206,0.0501986146,-0.0346450135,0.0396489389,-0.0230913628,0.0003660316,-0.0411788002,-0.0310593974,-0.0096970974,-0.0031911978,-0.0066373725,0.0127249509,-0.0057449527,0.0615132228,0.0118883075,-0.0105178049,0.034390036,-0.0461508557,0.0357924104,0.0248602666,0.0051712543,0.0055178637,0.026055472,-0.0543101206,-0.0362704918,0.027904056,0.0161751099,0.0747082904,0.0945965052,-0.0290833246,-0.0475850999,0.0086054774,0.0443978868,-0.017290635,-0.0241272077,-0.0202706791,0.0141193569,-0.0218483508,-0.0645092055,-0.0789791569,-0.0127329184,-0.0630430877,0.0010995887,-0.0413381606,0.0391071104,0.0356330499,-0.0163822789,0.019569492,-0.0406688452,0.0156571865,-0.0821663663,-0.0479356945,0.0154420501,-0.0046334118,0.014159197,-0.011896275,0.0120875081,-0.0161033981,0.034899991,0.0181989893,0.0206531454,-0.0597921275,0.0800628066,0.0389796235,0.0137368906,0.0149639687,-0.0596008971,0.0514416285,-0.0079720179,-0.0042071221,-0.0102947,0.0625968799,0.0086851576,0.0760469213,0.0089241983,0.0089560701,-0.008446116,0.0168603603,-0.0050676698,-0.0474576131,-0.0172109548,-0.000461399,-0.0065935482,0.0121273482,0.0249399468,-0.0096253855,0.0357286669,-0.0308203567,-0.0129161831,0.0226132814,0.0435692109,0.015800612,0.0899431705,0.005637384,0.019569492,-0.0450990722,0.0602064654,0.0524296649,-0.0207965691,0.0585172437,-0.0192985795,0.0100078508,0.0074062878,-0.009673194,-0.0122309327,0.0267247874,0.0309637804,0.0352187119,-0.0269478913,0.008334564,-0.0290355161,-0.0221033264,0.0135615943,-0.009577577,0.0104540605,0.0428998955,-0.0146771194,-0.0311072059,-0.0141193569,0.0269478913,0.0010044703,0.0283343289,-0.0108524626,-0.0176412277,-0.0283980742,-0.017099401,-0.0239837822,0.0052230465,0.0236013178,0.0338482112,0.0113783525,0.0011583529,-0.0008271816,-0.0105656134,-0.0233304035,-0.0110436957,-0.0188204963,0.01730657,-0.0369716771,0.0059003294,-0.0219120942,0.0069321897,0.0363979787,-0.0011962012,-0.0121592199,-0.0246371627,0.004836597,-0.0033067341,0.0280315448,-0.0204141028,0.0072867675,-0.0546288416,-0.0090198144,0.0443022698,-0.0116811385,-0.005796745,-0.0250833724,0.0068365736,0.0299438722,-0.0082708197,-0.0135137858,0.0263263844,0.00139341,-0.0215455648,0.002577659,0.0197607242,-0.0118006589,0.0101034679,-0.0299438722,-0.0221511349,-0.0275375266,0.0254977103,-0.0085098604,0.0250355639,-0.0279199928,0.0007430192,0.001163333,-0.0100636268,0.0129002472,-0.0210993551,-0.0436329544,-0.0082787871,0.0314737335,0.0095935129,-0.0201750621,-0.0128444713,-0.0049162772,0.0601745956,0.0162946302,-0.0234260205,-0.0661665574,-0.0258642398,-0.0602064654,-0.0077847694,-0.0443978868,0.0086293807,-0.0250514988,0.0262467042,0.0018774681,0.0141432611,-0.0334976166,0.0411788002,-0.0145496307,0.0071513108,-0.0321589857,-0.000936742,-0.0385334119,0.0336569771,-0.0210196748,-0.025433965,-0.0135456584,-0.0185973924,-0.0596008971,-0.0688438192,-0.0159838758,0.0347406305,0.0009676181,0.0092747919,-0.0246052891,0.0068923496,0.0422943272,-0.0359836444,0.0129241515,-0.0090198144,-0.0261351522,-0.0075297924,-0.0000923794,0.0472026356,-0.0602064654,-0.0159281008,0.0010726966,-0.0696724877,0.0090755913,0.0629793406,0.0249718186,0.0185017753,0.0138325077,-0.0309319086,0.0016712951,-0.0048405807,-0.021832414,0.0308681652,0.0059600896,-0.0152508179,0.0100636268,-0.0409556963,0.0060278177,0.0405094847,0.0282227769,0.0068086851,0.0456090271,0.0496886633,0.0452903062,-0.0015467947,-0.0015119344,0.0211630985,0.0637124032,-0.0211790353,0.0104381246,-0.0872659087,-0.0229320023,0.0410513133,-0.0377047397,0.016987849,0.0080875549,-0.0151312966,-0.0101911156,0.0334019996,0.0227088984,0.0413062908,-0.0220077112,-0.0017200994,-0.0126930783,-0.0146213425,-0.014724927,0.007410272,0.0364935957,0.0370672941,0.0087409336,0.0008371416,-0.0096492898,0.0089162299,-0.0288442839,0.0549794361,-0.0217846055,0.0031971738,-0.0256570708,0.0259598549,0.0621506684,-0.0037449761,0.0062628747,-0.0215455648,-0.0474894829,-0.0285733715,-0.0328283012,-0.016987849,0.0490830913,0.025848303,-0.0116652017,-0.013689083,-0.0690350458,-0.0164460223,0.0447803512,0.0546607152,0.0134261381,-0.0373222716,0.0026593315,-0.0098166186,-0.0045377957,-0.0159679409,-0.0010408245,0.0186930075,-0.0365254693,-0.0216571167,0.0024063464,0.0071393587,-0.0537364222,-0.0153862741,-0.0248124581,0.000472106,0.005609496,0.0087967096,-0.0100795636,-0.0346131399,0.0935765952,-0.0423899405,-0.0463102162,0.0150755206,0.0262945127,-0.0160635579,-0.0220236462,-0.0292108133,0.0241909511,-0.0366529562,-0.0044222591,-0.0126851108,-0.0062190508,-0.0019910126,-0.0032190857,0.0309319086,-0.0037629041,0.017816525,-0.031728711,0.0029561408,-0.0252427328,-0.0267885309,-0.0075377603,0.015083489,0.0012619374,0.0232985318,0.0040517454,-0.0280634165,-0.0201750621,-0.0611945018,0.0390433669,0.0494336858,0.0137926675,0.0000279815,0.0448759682,0.0129002472,0.0127807269,-0.0115855215,0.0129480558,0.093321614,-0.0213383958,0.0029402047,-0.007258879,-0.0308203567,-0.0222148802,-0.0018127278,-0.0133942654,0.056126833,-0.0213702675,0.0298960637,0.0506129526,-0.0392983444,0.0093226004,-0.0361111313,0.0048485487,-0.0298163835,-0.0423580706,0.0091313673,0.0123265488,0.0307088047,0.0039820252,-0.0251311809,0.0224857926,0.0182149261,0.046246469,-0.0182946064,-0.011840499,-0.0059839939,-0.0252586678,-0.0029023564,0.0316012241,-0.0162707251,-0.0354736894,-0.0502942316,0.0044620992,-0.0414656512,-0.001166321,0.0143344933,-0.0318562016,-0.0201431904,0.0528758764,-0.0296092145,0.0208921861,-0.0019780644,-0.0435054675,-0.0162627585,-0.0001756703,0.005561688,0.0174499955,0.0005428224,0.0230913628,-0.0077528972,0.0332107656,-0.006286779,-0.0196491722,0.0012499854,0.0264379382,0.0460871086,-0.0025039548,0.0303263385,-0.0290036444,-0.0150356805,0.0302147865,0.0090357512,-0.0107966866,-0.0134022338,0.012820567,-0.0154101783,-0.0023744742,0.0076891528,0.005589576,-0.0310434606,0.0382784382,0.0022828418,-0.0281909052,-0.0293861106,-0.0008934158,-0.0265972987,0.0019382243,0.0046254438,-0.0422624536,0.0195535552,0.013179129,-0.0390433669,-0.0054820077,-0.0002115264,-0.0026553473,-0.0437923148,-0.0063505233,-0.012876343,0.0416250117,-0.0560630895,0.0136253387,0.0118165947,0.0170037858,0.021513693,-0.00139341,-0.0196013637,0.0019890205,-0.0081194267,0.025338348,0.0005537784,0.0241431445,0.0119918911,0.0112588322,-0.0257208142,0.0473938659,0.0073664477,-0.0065576923,-0.009991915,-0.0212427787,-0.0024760666,-0.0040597133,0.0268841479,0.0044381949,0.0292745586,-0.0244618654,0.0142309088,-0.0038087203,0.0080556823,-0.0299279373,-0.0145097906,0.0196013637,-0.0075218244,-0.0049242452,0.0380872041,0.0161432382,-0.0362386182,-0.0588997081,0.0097369375,-0.0007295731,0.0098006818,-0.00277686,-0.0441429093,-0.0547244586,-0.0253542848,0.0077329772,-0.0107727824,-0.0029123165,-0.0003610516,0.0003782326,-0.0075258082,0.0223104954,0.0287486669,0.0805090144,0.0007245931,-0.0265176184,0.034294419,0.0044979556,0.0100636268,-0.0572104864,0.0361748748,-0.0170515925,-0.0059839939,0.021928031,0.0055338,-0.0003712606,-0.0113146082,-0.0225176644,0.030071361,0.0198563412,0.0025418028,0.0202706791,-0.0314578004,-0.0272028688,0.014932096,-0.0093943123,-0.0264060646,0.0071154544,-0.0028107241,-0.0041433778,-0.0169241056,0.0294817258,0.0676964223,-0.0134819141,0.0139281237,0.0321908593,-0.0048605008,0.0479356945,0.0058804094,0.056636788,-0.011123376,0.0155536029,0.0121432841,-0.0109002711,-0.0008012854,0.0335613601,0.0109241754,0.025226796,-0.0132906809,-0.0223583039,-0.030485699,-0.0081991069,0.0067170528,0.025848303,0.0445891209,0.0377047397,0.0002436475,0.0013117376,0.0157926437,-0.0346131399,-0.0152428495,-0.0499755107,-0.0055656717,0.012876343,0.0092827603,-0.0483181588,-0.0453540497,0.0182308629,-0.0380872041,-0.0069082859,-0.0361111313,-0.0293542389,0.0025099309,-0.0025378189,0.055808112,0.0186133273,-0.0148046073,-0.0002057994,-0.0229001306,0.0071513108,-0.0002778852,-0.0129958643,-0.0288761556,0.0380234607,0.0027469797,-0.0221830066,-0.0590909421,0.004836597,-0.0320793055,-0.0356967933,0.0328601748,-0.0137846991,-0.0086612534,0.0120556355,0.0134102013,-0.0020696968,0.0084700203,0.0242068879,0.0300872978,-0.0128604071,-0.0032788462,-0.0098962989,-0.0304060187,0.0120795397,-0.0374178886,-0.0221989434,-0.0284618177,-0.0050079096,0.0042708665,0.0162786935,0.029864192,-0.0209559295,0.01678068,0.0483819023,-0.0042549302,-0.0010189124,0.002318698,0.0172268897,-0.0366210863,-0.016007781,0.0236172527,-0.0052071102,0.017704973,0.0143026216,0.0156571865,0.0372904018,0.0120396996,0.02379255,-0.0198404044,0.014103421,0.0149400644,-0.0049959575,-0.0050636856,-0.0180715024,0.0326689407,-0.0092269834,-0.027904056,-0.0366529562,-0.0001050784,0.0127886953,0.0472345054,-0.0300076175,0.0021513694,0.006740957,0.0004021367,-0.0135854986,0.0298004486,-0.0227248333,0.0165735111,-0.014932096,-0.0052150786,-0.0014691063,0.042740535,-0.0029461808,-0.0165575743,-0.0343581624,-0.031919945,0.0181671176,-0.0402545072,-0.0426767915,0.0290992614,-0.0055138795,0.0216411818,-0.0913455412,0.0014362382,0.0139998365,-0.0228682589,-0.0042389943,-0.020079447,0.0401270203,0.0116811385,0.0444616303,-0.0323661566,0.0175615475,-0.0081672352,-0.0184220951,-0.0000366032,0.002342602,-0.0245256089,0.0151153607,0.0220555179,0.0024720826,0.0260076635,-0.0161591731,-0.0071393587,-0.0189957935,0.0307725482,-0.0097608417,-0.0128843114,-0.0144540137,0.0248921383,0.0417206287,-0.0240793992,0.0196491722,0.0016752792,-0.0266929138,0.0120636038,-0.0071353745,0.0092907278,0.0089640385,0.0112827364,0.0047489484,0.0303263385,-0.0276331436,-0.0404776148,0.0207328256,-0.0211471636,0.0234260205,-0.0151631692,0.0080596665,0.0126532381,-0.0089002941,0.046660807,0.0317127779,-0.0215455648,-0.0029641087,-0.0176890362,-0.0112189921,0.0361748748,-0.0372266546,0.0136173703,0.0170675293,-0.001142417,-0.0113544492,0.0204300396,0.0140954526,-0.0375135057,-0.0180874374,0.0066174525,-0.0218642857,0.0221352,-0.0030676932,0.0147567997,-0.0123584215,0.0223901756,0.0127488552,0.0219439659,0.0354418159,0.021513693,0.0271550603,-0.0174181219,-0.0191870257,-0.0119042434,0.0209718663,-0.0118006589,-0.0054820077,0.0416250117,-0.0246530976,0.0024043543,-0.0287964754,0.0001516417,0.001157357,-0.0131153846,0.0373860151,0.0064780116,-0.0170356575,0.0109082386,-0.0170834661,0.0032848222,-0.0026274594,-0.0175456107,0.0458958782,0.0084859561,0.0335613601,-0.0106612295,-0.0124540376,0.0323024094,-0.0230276193,-0.0060198498,0.0241590794,-0.0102707958,-0.0193782598,0.0109082386,-0.0182467978,0.0017928077,-0.0029123165,0.0226132814,0.0009984943,0.0315534174,-0.0247168429,-0.0111950878,0.0170834661,-0.0160794929,0.0314737335,-0.0272825491,-0.007238959,0.0213862043,0.0271391254,0.0312825032,0.0305016357,-0.0093465038,0.012254837,-0.025338348,0.0028545482,0.0226610899,0.0077728173,0.0454496667,0.0226292163,0.0184539668,0.0229479391,0.017609356,-0.0282387137,0.0118245631,0.0147488313,-0.0075497124,0.0079999063,-0.0130038317,-0.0134978499,-0.0040378012,-0.001626475,0.0014113381,-0.0375135057,0.0367485732,-0.0013844459,-0.0146293109,-0.0065696444,0.0288283471,-0.0273622293,0.0254499018,-0.0231551081,0.0104062529,-0.0095616411,-0.004609508,0.0092269834,0.0286371149,0.0016533671,0.011123376,0.0252905414,-0.0436967015,-0.0005487984,-0.0228204504,-0.0221670717,-0.0156332832,0.0002072934,-0.0325733237,-0.0029103246,-0.001862528,0.0516647324,0.0194420032,-0.013234905,0.0273144208,-0.0001530112,0.0188683048,0.0040358095,-0.008031779,0.0142388772,0.0640311241,0.0324936435,-0.0069600777,-0.0253064763,0.0034581269,-0.0151153607,0.0310753342,0.0365573429,0.0026294512,0.0062349867,0.0246690344,-0.0031752617,0.0174818672,0.0063505233,-0.006721037,-0.0132588092,0.0370672941,0.0176571645,0.0262785777,0.0123026446,-0.0204778481,-0.0183105431,0.0309797172,-0.002525867,0.0015477906,-0.0010004863,0.0187726878,0.0069919499,-0.000010886,-0.0134978499,-0.0212746523,-0.0106771663,-0.0053505348,0.0075656483,0.010709038,0.010709038,-0.0136173703,0.0039103129,-0.029959809,-0.0144221419,0.0062230346,-0.0173543785,0.0299279373,-0.0230913628,0.0126771424,-0.0542782508,0.0369716771,0.0086293807,0.0258642398,0.0183424149,0.013593466,0.0298004486,0.0044700671,-0.0028804443,0.0258164313,0.0079680346,-0.0142866857,-0.042931769,-0.0132906809,-0.0131074162,-0.0129799275,-0.0273622293,0.0111552477,0.0162229184,0.0079760021,0.0141352927,-0.0015019744,-0.0346768834,0.0351868384,0.0188364331,0.0189639218,0.004478035,0.0237128697,-0.0182627346,0.0101512754,0.0039202729,-0.0450990722,-0.0062429546,-0.0103823487,0.0104859332,0.0203025509,0.0205894001,-0.0153145622,0.0042111059,0.0252108611,0.0009974983,-0.0045298273,-0.0309319086,0.0293542389,-0.0051314142,0.0035497593,0.0005766865,0.0189957935,-0.0579754189,-0.0123424847,-0.0247327778,-0.0342625454,-0.0269319564,-0.0425174311,-0.0114660012,0.0038644967,-0.0046891882,-0.0080556823,-0.0362067483,0.0135775302,0.0169400405,-0.0165735111,0.0174340587,0.0021673052,0.0007584572,0.0272666123,-0.0117289461,-0.0070397584,-0.0239041019,0.0364617258,0.0198404044,-0.0008680177,-0.0121193798,-0.0082150437,0.0164460223,0.0347725004,0.0474894829,-0.0197607242,-0.0104062529,-0.0190914106,-0.0267885309,0.03140999,0.0052389824,-0.0131711606,0.0383421816,0.0439198054,-0.0080596665,0.0080596665,0.0308681652,0.0099839466,0.0160954297,0.0133703612,0.0222148802,0.0225654729,0.026565427,0.0223423671,-0.0326689407,0.0531627238,-0.0010189124,-0.0097210016,-0.0097050657,0.0350274779,0.0251949243,0.0026115233,0.0193145145,0.0184858385,-0.0217846055,0.0020995771,0.0167647433,-0.0079321777,-0.0130357044,-0.0166213196,0.0122389002,-0.0163344704,-0.0041393936,0.0010786726,-0.0062389709,0.010653262,0.0243184399,0.0080238106,0.0159759093,-0.0053624869,0.0833775103,-0.003025861,0.0075337766,-0.0182786714,0.0102070514,-0.0310912691,-0.0017340435,0.0130994478,-0.0001302276,0.0134341056,-0.0224857926,-0.0185017753,-0.0564774275,0.0183902234,0.0197766609,-0.025752686,0.0035637033,0.0070756143,-0.0177209079,0.0014900224,0.019569492,0.0015238866,0.0162547901,-0.0376409926,-0.0403819978,-0.0138803152,-0.003491991,-0.0004987491,-0.0031832296,0.029975744,-0.0095616411,-0.0463102162,0.0314578004,0.0055975439,0.0041911858,0.024302505,-0.0017440035,-0.0122389002,0.0000967992,0.0003969077,-0.0181352459,-0.0119679878,-0.0183264781,-0.0131153846,0.005816665,0.0268363394,0.0144540137,-0.0169081688,0.0315852873,-0.0249877553,-0.009673194,0.033880081,0.0029900048,0.0027290517,-0.0025218828,-0.0018436039,0.0588040911,0.0209240578,-0.0124460692,-0.0021772652,-0.0231391713,-0.0076333769,-0.0086453175,0.0204300396,-0.0096891299,-0.0400632769,0.0178005882,0.0091313673,0.0150994249,-0.042326197,0.0117448829,0.0276490785,0.024302505,0.0129958643,0.0299916808,0.0225814097,0.0060676578,0.0281590335,0.0206053369,-0.0529714935,-0.0415931381,0.0145257264,0.0065895645,-0.0032788462,-0.0191232823,-0.0249399468,0.015027713,-0.0042469623,-0.0442385264,-0.0108365268,-0.0050318134,-0.0150516164,0.0202866159,0.0219120942,0.0066572926,-0.0160874613,-0.0099759791,-0.009370408,-0.0122389002,-0.0348681174,-0.0040019453,0.0200953819,-0.0123584215,0.0089082625,0.0019780644,-0.0044939714,-0.0119759552,-0.0419437326,-0.0066453405,0.0101831481,-0.0280793533,0.0155615704,0.0138404751,0.0072867675,0.0212746523,0.0133145852,-0.0091473032,-0.0141512286,-0.0110197915,-0.0285414979,0.0171472095,-0.0012579534,-0.0241590794,-0.0287167951,-0.0057648728,-0.0105815493,0.0214021392,0.0055577038,0.0182946064,-0.009466025,0.0075736167,0.0148285115,0.0560630895,0.0000239975,-0.0053943591,-0.0050397818,-0.0077250092,-0.0249240119,0.0148444474,0.0024959866,-0.0302307215,-0.00743816,-0.0150994249,0.0005756905,0.0162229184,-0.0138723478,0.0240475275,0.0275056548,0.0314896703,0.0246371627,-0.0240634643,0.0112986723,0.0209718663,0.0264857467,-0.0383421816,-0.0305175707,0.0056493361,-0.0201591272,-0.0063784113,0.0153623698,-0.0276650153,-0.0049640853,-0.0212746523,-0.0373222716,0.0359198973,-0.0216730535,0.0220873915,-0.0373222716,-0.0161990132,0.0206531454,0.001167317,-0.0236650612,-0.0024840347,0.0181193091,0.0199360214,-0.0249399468,-0.0294339191,-0.007390352,-0.022039583,-0.0121353157,0.0005746945,0.0113464808,0.0376091227,0.0216411818,0.0219758376,0.0555531345,-0.0442066528,-0.005306711,0.0079799863,0.0138723478,0.0024581386,-0.0206531454,-0.0148444474,0.0236650612,0.0068525095,0.0167647433,0.0024402104,0.0153703382,-0.0182786714,0.0279199928,-0.0156412516,0.0133066168,-0.0400314033,-0.0260236003,0.0160635579,0.0014422142,0.0045178756,-0.0360792577,0.0381828211,0.0250036921,-0.0127966627,0.0121512525,-0.0149639687,0.032334283,-0.0095616411,-0.030071361,-0.0054899757,0.056413684,0.0416887552,-0.0547244586,0.0274100378,-0.0015866348,0.0089082625,-0.0098166186,0.0264379382,0.0230435543,0.0614494793,-0.0034581269,0.0182627346,0.0170675293,0.0034083265,-0.0060636741,-0.0081473151,0.014366366,-0.0384377986,-0.0302307215,-0.010350476,-0.0139759323,0.0030995654,-0.0348681174,-0.0037270479,-0.000705171,0.0221670717,0.0239200387,0.0029780527,-0.0241590794,0.0275375266,0.0262467042,0.0103664128,0.0036712717,-0.0372585282,0.0373541452,-0.019059537,-0.0151711376,-0.0110676,0.0297048315,0.0401270203,-0.0151472334,0.0178483967,0.0105417091,-0.0246530976,0.0128683755,0.0256251972,-0.0252108611,-0.0286530517,-0.0118245631,0.0115934899,-0.0177527796,-0.0090835588,0.0059481375,-0.00609953,-0.0074540959,-0.0014641263,-0.014517758,-0.0015079505,0.0109799514,-0.0017589435,0.0583578832,-0.0146133751,-0.0004813191,-0.021322459,0.0200953819,-0.0032768541,-0.0114341294,0.0267088506,0.0107568465,0.0000916946,-0.0042190743,0.0287167951,0.0092588561,-0.0261192154,0.03789597,0.0102947,-0.0027230757,0.0279518645,-0.0076134568,-0.0098245861,-0.0126930783,0.0124381017,-0.0100795636,0.0136572104,-0.0164619591,0.0173862502,0.0064780116,0.0239041019,0.0072150552,-0.0001526377,0.0139360921,0.0192029625,-0.0022410096,0.0240315907,-0.009466025,0.0018973881,-0.014103421,0.0112030562,-0.0217846055,0.0241909511,0.0005891366,0.0311550144,0.0014442062,0.0330195352,0.0126532381,0.01945794,0.0071712309,0.0403819978,-0.021003738,0.0308362916,-0.0140795168,0.0065696444,-0.0023844342,0.0195376202,-0.0103664128,0.0292267501,-0.0403182544,0.0334019996,-0.0035577272,-0.0006907289,0.0274737813,0.0235216375,-0.0166213196,-0.0117209787,0.0053505348,-0.0155057944,-0.006776813,-0.0037250561,0.0141910687,0.017704973,0.002553755,-0.0164460223,-0.0030876133,0.0159838758,0.0338163376,-0.0199360214,-0.0086771892,-0.0258004945,-0.0250833724,0.0292108133,0.027696887,-0.0256251972,0.0085178288,0.0036533438,-0.0059959455,-0.0098245861,0.0001619752,-0.0227248333,0.0003715096,0.0429955125,0.0062668589,-0.00325295,0.0109640155,0.0213383958,0.0143743334,0.0159759093,-0.0372585282,-0.0184061583,-0.0480631813,-0.0040517454,-0.0070397584,0.0354418159,-0.0004265388,0.0289717726,-0.0007604493,0.0403182544,0.0066254204,0.0177527796,-0.0203822311,-0.0286211781,0.006051722,-0.025338348],"73":[0.0085496511,0.0065489016,0.0417788588,0.0061298013,0.090030089,0.0265746191,-0.009956371,0.0165453609,-0.0221868195,0.0051822695,0.0188923236,-0.037376482,0.0193733778,-0.0450733528,0.0448109582,0.0277262349,0.0145263895,-0.0034329803,-0.0233967435,0.006654588,-0.0280760936,0.0368808471,0.0227116048,0.0003015702,-0.028586302,-0.0261956062,-0.0016782244,0.0676974952,0.0081560612,-0.0313705876,0.0022722539,-0.0425951928,-0.0350149386,0.012828121,0.0011753037,0.024023572,0.0309624206,0.0072959941,0.0560938753,-0.0160497297,-0.0288632736,0.0377846472,0.0102260532,0.0238340665,-0.0248107519,-0.0333822705,-0.0544320494,-0.0054373741,0.0064723701,0.0416039303,-0.0300294664,0.0089723961,-0.0342569165,-0.0549568385,0.0006568946,-0.0570559837,-0.0000282864,0.0153208589,-0.0056451024,-0.0282947533,-0.0022066555,-0.0415164642,0.0195628852,0.0374639444,-0.0033145386,0.0185716208,-0.0336738192,0.065015249,-0.0442570187,0.0078207804,0.0605837181,0.022390902,-0.0251023006,0.0141983982,0.0341694504,-0.0517206527,-0.0171284582,0.0545486696,-0.0450441986,0.0008678115,-0.013054071,-0.0185133107,-0.020335488,0.0063265963,0.0116546396,0.0005849186,0.0013884983,-0.0234842077,0.0127115017,0.0295629892,-0.0244171619,0.0755109861,0.036122825,-0.0122814681,0.0329157934,-0.0074563455,-0.0067238305,0.0220118891,0.0058018095,-0.0158602223,-0.0119826319,-0.0248399079,-0.0171721894,-0.019096408,0.0170993023,0.0048069013,0.0024799819,-0.0031159215,-0.0057945205,0.0084548984,-0.0872312263,-0.029883692,-0.0521288216,0.019096408,-0.0174200051,0.0110059446,-0.0542571209,0.012011786,-0.0125948824,0.006625433,-0.0253646951,-0.0251460336,-0.0189943668,0.0140672009,0.0181926079,-0.0070736883,0.0013821208,-0.0538197979,-0.0546652898,-0.0223617479,0.0285279918,-0.0223325938,0.0219535809,-0.0458896868,-0.0218806937,-0.0146794524,-0.0690969229,-0.0074199019,-0.0148179382,-0.0200147852,-0.0010595955,-0.0391840786,0.036501836,-0.0073178601,-0.0117931254,0.0370557792,-0.0350440964,0.0391257703,0.0106123546,-0.0268078577,-0.0154812103,-0.0077114501,-0.0290965121,-0.0286154561,0.0586595014,-0.0015306281,0.0005461973,0.046064619,0.0082726805,-0.0170555711,0.0158310682,0.0288049635,-0.0111298533,0.0013711876,-0.0321286134,0.0023378523,-0.0162392352,-0.0434989929,-0.0723039582,-0.0086516934,-0.0627411753,-0.026137298,-0.038979996,0.0258894805,0.0369974673,-0.003150543,0.0025911347,-0.0583971068,0.028192712,-0.0457439125,-0.0413415357,0.0163266994,-0.0376388729,0.0056451024,-0.0154520553,-0.0086954255,-0.0553941615,0.0183383822,0.0379304215,0.0140234688,-0.0654234216,0.0686887577,0.0258020163,0.0251897648,0.0082216598,-0.0530034639,0.038163662,0.0104155596,-0.0258457493,0.0195483081,0.0775518268,0.0330324136,0.0451316647,0.0162100811,0.021574568,0.0293297507,0.0075146551,0.0044606877,-0.0598256923,-0.0453649014,-0.0137173431,-0.0104592917,0.0068076509,0.012449109,-0.0241401922,-0.0040780306,-0.0257291291,-0.0485136211,-0.0154812103,-0.0025638021,0.0546361357,0.0690969229,-0.0051786252,-0.0136517454,0.0020499483,0.0108528817,0.0182217639,-0.0337029733,0.0351607129,0.019898165,0.0141546661,-0.0227116048,-0.0092785219,-0.0376097187,0.0201605596,0.0147086075,0.0243296977,-0.0259477906,-0.0257728621,-0.0495048873,-0.0243734308,-0.0053243991,0.0031250324,0.0132727325,0.0212975964,0.0026676662,-0.0210497808,-0.0457730703,-0.0054300856,0.0407001302,0.0272160247,-0.039359007,0.00114706,0.0031450763,-0.0358021185,-0.0568810552,-0.0049599637,0.0204521064,0.0250439905,0.0213121735,0.0043367795,-0.0332364962,0.0046793488,0.0173179638,-0.0470850356,0.0093441205,0.0042420262,-0.0432949103,0.0082362369,-0.0149855781,0.0107435519,0.0564437322,0.0032944947,-0.059242595,-0.0209040064,-0.0370266214,-0.012828121,0.0045080641,-0.0103718275,-0.0073506595,0.0072413287,-0.0313997418,0.017449161,-0.0107216854,0.0112318946,0.0064760149,0.0028298397,0.0501462929,-0.0014094533,-0.020743655,-0.0026385114,-0.0121575603,0.0326533988,-0.0183238052,0.0065634791,0.0114578446,0.0074599897,-0.0174783152,-0.0249127951,-0.0211518221,0.0207145009,-0.0354522616,0.0145336781,-0.0144462138,0.0293297507,0.0017547559,-0.0062573534,-0.0077114501,-0.019446265,-0.0004657938,0.0062245545,-0.0171430353,0.0197378136,-0.0391840786,-0.0251023006,0.0005758077,0.0829163119,0.0154812103,-0.0374056362,-0.0608752668,-0.0549276844,-0.0781349242,-0.022828225,0.0046392609,0.0217349194,-0.0082435254,0.0367642306,0.0073543037,0.0121284053,-0.0339653678,-0.0095846476,-0.0090744384,0.0362685956,0.0132945981,-0.0312248133,-0.0409916788,0.0335280448,-0.0124563975,-0.0057617216,0.0125365732,-0.0163266994,-0.0315455161,-0.0801174492,-0.0015597829,0.0249711052,0.008505919,-0.0093951412,-0.0167348664,-0.0275658835,0.0213850606,-0.0309041105,-0.0080758855,0.0150876204,0.0005188647,-0.0150001552,0.0077989148,0.006942492,-0.0321869217,-0.0368225388,0.003689907,-0.0423911102,0.0321577676,0.0223471709,0.0036552858,-0.0059293616,0.0202771779,-0.0258457493,-0.0065707676,-0.0320703015,-0.0042638928,0.0210206266,0.013899561,-0.039359007,-0.0068112952,-0.022390902,-0.003576932,0.0584845729,0.018644508,-0.0282655992,0.0682222843,0.0534407869,0.0058236755,-0.0010031081,-0.0093951412,0.0387176014,0.0095846476,-0.0210060477,0.0525078326,-0.0615166724,-0.0241110362,0.0500588268,0.0064104162,0.0113120703,0.0001054015,0.0051312484,-0.0019479065,0.002376118,0.0256562419,0.0686304495,-0.0194316879,0.0011889701,-0.0161809251,-0.0290965121,-0.0233238563,0.0292568635,0.0141546661,0.0004282114,-0.0004234282,-0.0437905416,0.0036716852,-0.0182800721,0.0205104165,0.0255250465,-0.0355397277,0.0417788588,-0.0102406312,-0.0463561639,0.0820416659,-0.0009375097,0.0777850598,-0.018644508,-0.0132144224,-0.0033309383,-0.0304084793,-0.0316038243,0.0723622665,0.0337029733,-0.0166765582,-0.0153062809,-0.0537031814,-0.0254375823,0.0099855261,0.03562719,-0.0062500648,-0.0232363921,0.0267203934,0.0201314036,-0.0069461362,0.0194608439,-0.0139141381,-0.0180759896,0.0223617479,-0.0033054277,-0.0069680023,-0.019533731,-0.0454815216,-0.0243005436,-0.0606420264,-0.0094315847,-0.0092858104,0.0312248133,-0.048484467,-0.0271722935,0.0130249159,-0.0301752407,-0.0259915236,0.0160788838,-0.0241547693,0.0258311722,-0.0260935649,-0.0619248413,0.0028134403,-0.0554524697,-0.0444319472,-0.0000278309,-0.0220993552,0.0562396497,-0.005499328,0.0226532966,-0.0108091496,0.0120555181,0.0311665032,0.0095919361,-0.056385424,-0.0349566303,0.0261956062,0.0114942882,0.0120992512,0.0267349705,-0.043586459,-0.005816387,-0.019096408,-0.0143879047,0.0752194375,0.0058637634,-0.0120482296,-0.0023906953,0.0274929963,-0.0342860706,0.007153864,0.0012691458,0.0108091496,0.0291110892,-0.0177844409,-0.0380761959,-0.0089505296,-0.037726339,-0.0431782901,0.009970949,-0.0155686745,0.0265600421,0.0147742052,0.0205249935,0.0511375554,-0.0290819332,0.0130467825,-0.0158456452,0.0151021974,-0.0121502718,-0.0388925299,-0.0136298789,0.0016408698,0.0425368845,0.0344609991,-0.0132290004,0.0351315588,0.009519049,0.0037281727,-0.018688241,-0.001384854,-0.0257874392,-0.0357729644,-0.0209914707,0.0043149134,-0.0058819852,0.0013830318,-0.0435573012,0.0159768425,-0.0218515377,0.0018649974,0.0141327996,-0.030233549,0.0156124067,0.0185424667,-0.0287174992,0.0283530634,-0.0199418981,-0.0273326449,-0.0183675364,0.0086371154,0.0102989404,0.0242568105,0.0301460847,0.0249565262,-0.0069461362,0.0066035669,-0.0168660637,-0.0159039553,0.006005893,0.0425660387,0.0135205481,-0.0142202638,0.0409916788,-0.0134841045,-0.026151875,0.028994469,0.0105248904,0.0072777723,0.0291548204,-0.0052260016,0.0021647455,-0.018688241,0.0028462394,-0.0071283537,-0.0117858369,0.0422453359,0.0023834067,-0.0000571138,-0.0057179891,-0.001829465,0.0045882398,-0.0072376844,0.0195045751,0.0295775663,-0.0021775006,-0.0003919957,-0.04058351,0.0191401392,-0.0202188678,-0.0010632399,-0.0188631695,-0.0130249159,-0.0376971848,0.029475525,-0.0184258465,-0.0089213755,0.0209477395,0.0228719562,0.0341402963,-0.0178281739,-0.0104374262,-0.0129811838,-0.0018522423,0.0140890675,0.0308458004,0.0024162058,0.0224929452,0.0082289483,-0.0249419492,0.0368808471,0.0249565262,0.0280469377,0.0010641509,-0.0412540734,-0.0348691642,0.0369100049,-0.0026749549,-0.0051822695,0.0339070559,-0.0203937981,0.0275075734,0.0059111398,0.0010076636,-0.0325950906,-0.0115525974,-0.0080029983,-0.0335863531,-0.0214871038,0.0263122264,-0.0131342467,-0.019927321,-0.0318662189,0.0006336618,-0.0486885495,0.011210029,0.016603671,-0.016166348,-0.0422161818,0.0081706382,0.0306125619,-0.0015843823,0.0106998198,0.0173471179,0.0283676405,-0.0172304995,0.0322452337,0.0347233936,0.0524203666,0.006406772,0.0204958394,0.0196940824,-0.0033200053,-0.0107362624,-0.0118222795,0.0272306036,-0.0234842077,-0.0011388602,0.0259477906,-0.0181051437,-0.004752236,-0.0062828641,-0.0257874392,0.0844906718,0.0290527791,0.0305542517,0.019489998,-0.0277408119,-0.0194025338,-0.0043987338,0.0000095166,-0.0297962278,0.0053827087,-0.0083382791,0.0004514442,-0.0371140875,0.0197232366,0.0370557792,0.0057179891,0.0344901532,0.0314580537,-0.0253501162,-0.0032234299,0.0349857844,0.0130978031,0.0492716469,0.0065088137,0.0250731464,0.0133383302,0.013688188,0.0479596816,-0.0327991731,0.0225949865,-0.0041363402,-0.001612626,-0.0239652637,-0.030670872,-0.0067967176,0.028994469,0.0421870276,0.0329741016,0.0101167234,-0.0081560612,0.0122668911,-0.0355688818,0.0013629879,-0.0311956592,0.0158456452,0.0196211953,-0.0338487476,-0.0172159225,-0.0085204961,-0.007131998,-0.0604670979,-0.0336738192,-0.0234987866,0.0116983717,0.0044752648,0.0180468336,0.0351024047,-0.0132435774,-0.0416913927,-0.0072595505,-0.0136808995,0.0171867665,-0.0006728386,0.0191838723,-0.0410791412,0.0251606107,-0.028600879,0.0014632075,-0.0525078326,-0.0231197737,-0.0125730168,-0.0424202643,0.0473765843,-0.0218661167,0.0233238563,0.0176095124,0.0395339392,-0.0263122264,0.0014950957,0.0222013965,0.0264288448,-0.0257291291,0.0138558289,0.0006359395,-0.0305250976,-0.0103135183,-0.0261956062,-0.0003489468,-0.0411374532,0.0132362889,0.0024016283,-0.010984079,0.0448692702,-0.0175220482,0.039359007,0.027755389,0.0138558289,-0.0000636053,-0.0146065652,0.0146575859,-0.0344318449,-0.0080613084,-0.0064833034,0.0009197435,-0.0010267964,0.0146648753,0.0092202118,0.0208165422,0.0119243218,0.001580738,-0.0367059186,0.0083164126,0.0277699679,0.0089578191,-0.0174345821,-0.0202042907,0.0046319724,-0.0681056604,-0.0355688818,0.0005152203,0.0019679505,-0.0092493668,0.0549859926,0.0032070302,0.000049939,-0.0018586199,0.0090015512,-0.0224929452,0.001975239,-0.0056232363,0.0030102353,-0.0028280176,-0.0114141125,-0.0140234688,0.0082435254,-0.0141473766,-0.026545465,-0.0371140875,-0.0120628076,0.0051822695,-0.0154083231,0.0041436288,0.0110059446,0.0151605066,0.0194608439,-0.0807588547,-0.0400004163,0.0295338333,-0.0151459295,-0.0103353839,-0.016603671,0.0060204705,0.0335280448,0.0236882921,-0.0116546396,-0.008476764,-0.0275513064,-0.0151021974,0.0183092281,-0.0427409671,0.0255979337,0.0222742837,0.0304084793,0.0218806937,0.0349274762,-0.0133456197,0.002780641,-0.0374639444,0.0463561639,0.0130467825,-0.0044133109,-0.0183675364,0.0606420264,0.0322743878,-0.0180031024,0.0187611282,0.0177698638,0.0052733785,-0.0250585694,-0.0148981139,0.0218952708,0.0057580774,0.0070882658,-0.0113995355,-0.0017602224,-0.0507002324,-0.0348400101,0.0467643328,-0.0458605327,0.0459479988,-0.0059840269,-0.0076166969,0.0406418219,0.0019715948,0.0141473766,0.0331781879,-0.0007726027,-0.0071975966,-0.0092639448,-0.0003072645,0.0388925299,-0.0454523675,-0.0065051694,0.0102187647,0.0065088137,0.002274076,0.0106050661,0.0067347637,-0.0426826589,-0.0202334467,0.004570018,0.0227699149,0.0262976494,0.0151313525,0.0189652108,0.0168369096,0.0113193588,0.0208311193,-0.0329741016,0.0214433707,0.0045991731,-0.0008377456,-0.0062245545,0.0001176443,-0.0284113735,0.0189506337,-0.0099782376,-0.0066290773,0.0206416138,-0.0429450497,-0.0229448434,-0.0292277075,0.0124782631,0.0080248648,-0.0015871156,0.039417319,0.0070882658,-0.0159039553,-0.0052733785,-0.0033236495,0.0024198501,0.0021228355,-0.0024490049,0.0123907989,-0.0010942168,0.0229739994,-0.0142858624,0.0032161411,0.0220701993,-0.021982735,-0.0293443277,0.0164433196,-0.0176823996,-0.0146794524,0.0205395706,-0.0366476104,-0.0029118378,0.0212830193,0.0245337822,0.0189360566,0.0146794524,0.0247961748,-0.0044971313,-0.0066873869,-0.0128062554,0.0277262349,-0.043586459,-0.0063921944,0.0132727325,0.0013074115,0.0196940824,0.05309093,-0.0183675364,0.0031541872,-0.0277408119,-0.0000378102,0.049738124,0.0084840525,0.0560647212,-0.0024453606,0.0030138795,0.0156269837,0.014941846,0.0047376584,0.0144097703,0.0141327996,0.0036407083,0.0045153531,-0.007161153,0.0304084793,-0.0261810292,-0.018688241,-0.0061225123,-0.0401461869,0.0205833036,0.0098980619,-0.0364143699,-0.0142712854,0.0608752668,-0.0235279407,0.0387759134,-0.0295338333,-0.0079155341,-0.0093295425,-0.0006537057,0.0012664126,0.0396505557,0.0354522616,-0.0158019122,0.0324493162,-0.0173908509,-0.0009557315,-0.0002423494,-0.024052728,0.008914087,-0.0130103389,-0.0030776558,-0.0163850095,0.0138120968,0.0447234958,0.0198107008,-0.0224346351,0.029038202,0.0116109075,0.0114578446,-0.0197815467,-0.0103718275,0.003647997,0.0358604304,0.0154229002,-0.0222888608,-0.0380178876,-0.0042821146,0.0026694883,0.0359770507,0.0455398299,0.0127406567,0.0242713895,0.0028025073,0.0121356947,0.0041035409,0.0395922475,-0.0077406052,0.0009047106,0.032332696,-0.0447234958,0.0009529982,0.0257874392,-0.0196503494,0.0026421556,0.0377554931,0.0143368831,0.0189652108,-0.0246504005,0.0068149394,0.0303210132,-0.0043149134,-0.0103135183,-0.0003548688,-0.0080467304,0.0011124386,0.0208456963,0.0152917039,-0.0140016032,-0.0258165933,-0.0255104676,-0.0319245309,-0.0167202894,0.0177115537,-0.0149855781,0.0133310417,-0.0111225639,0.0321577676,-0.027361799,0.0150001552,0.0045189974,0.0189797878,0.0158019122,0.0057179891,0.0490967184,0.0443736389,-0.0004737658,0.0121429833,-0.0164433196,0.0022011891,0.0008072241,-0.0093076769,0.0080467304,-0.0125730168,-0.0226824507,0.0057653659,0.044315327,0.0317787565,0.0233821664,-0.0308166463,-0.0088047562,0.0103864046,0.0094753169,-0.009096304,0.0413998477,0.0275367294,0.0035259111,0.0206561908,0.0042894031,-0.0192713365,0.0070773331,0.0280323606,0.0020043938,0.0016308478,0.0079301111,0.0022941199,0.0099126389,0.0040889638,0.0059803827,0.0119461883,-0.0368225388,0.0117566818,0.0221139323,0.0094242962,0.0028170845,0.0299711563,-0.0662397519,-0.0080394419,-0.0035331999,-0.0339070559,-0.0206416138,-0.0081633497,-0.0166328251,-0.0088776434,0.0187028181,0.0027004653,0.0007926467,-0.0081269061,0.0041910056,-0.0571142957,0.0028644612,0.0237174463,-0.0190380979,0.0320994593,-0.0371723957,0.0007648585,-0.0104957353,0.0509043187,-0.0046137506,-0.0159476865,-0.0027733524,-0.0230031535,0.0190089438,0.0170993023,0.0329741016,0.0035641768,-0.0140453354,-0.0084403204,-0.0162392352,0.0189943668,-0.0128718531,0.005302533,0.0169097967,0.0523912124,-0.0075292327,-0.0218952708,0.0377554931,0.0205978807,0.0331781879,0.0407292843,0.0254230034,0.0171284582,0.0278720092,0.0467060246,-0.0210352037,0.0183966924,0.0301752407,0.0060423366,-0.0188340154,0.0295775663,0.0055211941,0.0016098928,0.0189360566,0.0326825529,-0.0260498319,0.0023706513,0.0328866392,0.0020973249,-0.0062354873,0.0054337298,0.0118660126,-0.0042347377,-0.0017729775,-0.0043841563,0.0069060484,-0.0232363921,0.0267932806,0.0247232877,-0.009744999,0.0241693463,0.0731202886,0.0177407078,-0.0003496301,-0.0200876724,-0.0089505296,-0.0277699679,-0.0221139323,0.0145263895,-0.0133237531,0.0258020163,-0.0274784192,-0.0135788582,-0.0275367294,0.0086954255,-0.0154666323,-0.0194754209,-0.0096866889,0.0269973651,0.0162975453,0.0081341946,0.027755389,0.0233967435,0.0028425951,-0.0485719331,-0.0430325158,-0.0099053504,-0.0010887503,-0.0134695275,-0.0083820112,0.0173179638,0.0070663998,-0.053032618,0.0115671754,0.0224637892,0.0073688813,0.0051130266,-0.0063703284,0.0322160758,0.0088630654,-0.0094242962,-0.0109913675,-0.0332656503,-0.0046939263,0.0054738177,-0.0241985023,0.0386301391,-0.0131925568,-0.0176386666,0.0107799955,-0.0383094363,-0.0470850356,0.0177261308,0.0084038768,-0.0066691651,0.0128718531,0.0118733011,0.063790746,0.0044752648,0.019927321,0.0273326449,-0.0268661678,-0.0005366309,-0.0084694754,-0.0013529659,-0.0419537872,-0.0217203423,0.035248179,0.0018422203,0.0086881369,-0.042711813,0.0090234168,0.0415164642,0.0056086588,0.021574568,0.0461812355,0.0118368575,0.0209331624,0.0326533988,0.0299420021,-0.0551317669,-0.0329157934,0.0094971834,-0.0193442237,0.0179447923,-0.0098324632,0.009970949,-0.0102697853,0.0119534768,-0.004577307,0.0179302152,0.0362102874,-0.0086516934,0.0129155861,-0.0021246576,-0.0115671754,-0.0176386666,-0.032770019,-0.0301460847,-0.0224929452,-0.0388925299,0.0179593693,0.0337321274,-0.0035969762,0.0242859665,0.0242276564,-0.0266912393,-0.0043477127,-0.0323618501,-0.0172013436,0.0193004925,-0.0548402183,0.0209623165,0.0130322054,0.0167640224,0.0146940295,0.0384843647,-0.0181342978,-0.0324493162,-0.008505919,-0.0084111663,0.028192712,-0.0025929569,-0.0180322565,0.0091619026,0.0124199539,0.0024690488,0.0130759375,-0.0168660637,0.003422047,0.0023232747,0.0329157934,-0.017405428,0.046822641,-0.0058564749,-0.0145628331,0.0180031024,-0.023221815,-0.0073397262,0.0222742837,-0.0099782376,-0.0294172149,0.0145846996,-0.0134695275,-0.0048032566,0.0412249155,-0.0073907473,0.0384552106,0.0355397277,0.017813595,0.016574515,-0.0207873881,0.0047595245,0.0551317669,0.0203500651,-0.0041727838,-0.0276387706,0.0256562419,-0.0217494965,0.003678974,-0.0196503494,-0.001177126,-0.0090744384,-0.0177844409,-0.0183383822,0.0313997418,-0.0267932806,0.0034165806,-0.0225512534,-0.0239069536,0.0329449475,0.0020699922,-0.0193879567,0.0043258467,-0.0000827951,0.0248836391,-0.0134841045,-0.0293734819,0.005076583,-0.0205395706,-0.0171430353,0.0118951667,-0.0083018355,0.0170701481,0.0379012674,-0.0047303699,0.027799122,-0.0253938492,-0.0234550536,0.0092858104,0.0066764541,-0.0147523396,-0.0132945981,-0.0230760407,0.0176969767,0.0214142166,0.0210352037,0.0058309641,0.0142275523,-0.0404668935,0.0155249424,-0.019898165,-0.0090452833,-0.0267058164,-0.0271285605,0.0179593693,0.0355105735,-0.010984079,-0.0013775653,-0.0079009561,-0.0064942362,-0.0150147332,-0.0003022535,-0.0239652637,-0.004577307,0.0146575859,-0.0134403724,-0.0116109075,0.0501462929,0.0382219702,-0.0341402963,-0.0133310417,-0.0054555959,0.0108528817,-0.0301752407,0.0146357203,0.0154083231,0.0376388729,-0.032332696,0.0180176795,0.0021355907,-0.006337529,-0.0143587496,0.0174928922,0.0270702522,-0.0209331624,-0.0089723961,0.0021027916,-0.0086881369,0.0254667364,-0.0377554931,-0.0137173431,-0.008505919,0.0018030434,-0.0034621351,0.0354814157,-0.0073506595,0.0085277855,0.0190089438,0.0137756532,0.0068185837,-0.0311373491,0.0202188678,0.0050364952,-0.0125584388,-0.0198544338,0.0212538652,0.0330615677,-0.0106852418,-0.0056669684,0.0100365467,-0.0353939533,0.0191838723,0.0011388602,-0.026151875,-0.0152042396,-0.0068404498,0.0188340154,-0.0465894043,-0.0350440964,0.0550734587,0.0026385114,0.0067857844,0.0165453609,0.0099272169,-0.0032926726,0.011800414,0.0083382791,0.0168514866,0.0140744895,0.0014304084,-0.0248107519,-0.0175220482,-0.0064104162,-0.0225658324,0.0269244779,0.0159039553,-0.0217349194,0.0015725382,0.0288195405,0.0206416138,-0.0030430343,0.0304084793,0.0161371939,0.0109913675,0.0081560612,0.0068841823,0.0154374782,0.0102406312,-0.0120846732,0.0073506595,0.0159331094,-0.0064650816,-0.0027897519,-0.0216911864,0.0247087106,0.0085350741,-0.0264580008,0.0270848293,0.0044023781,-0.0005120315,0.0123762218,0.0030521452,-0.008505919,0.0083382791,0.0040670973,-0.0349274762,0.0124636861,0.0374639444,0.0297962278,0.0000790938,0.0318662189,0.0053535542,0.0145118125,-0.005787232,0.0523037501,0.0177552868,0.0022503878,0.0001914424,0.0107435519,-0.0162975453,0.0266037751,-0.0118587231,0.019489998,-0.0154666323,0.0286154561,-0.0040525203,0.0215016808,0.0333822705,0.0193296466,-0.0137319211,-0.0031742312,0.0358021185,-0.0152042396,0.019883588,-0.033207342,0.0341986045,0.0129738953,0.0308166463,-0.0224783663,0.0011999031,-0.0145409666,0.0561230294,-0.0104811583,-0.0139943138,-0.0234696306,0.0064249937,0.0335571989,0.0144170588,-0.0177698638,0.0243005436,0.0358895846,0.007139287,-0.0097741541,0.0042711813,-0.0330615677,0.0222305506,0.0223325938,0.0083965883,-0.0216766093,-0.0193733778,0.011618196,0.0131561132,0.0094607398,-0.0175220482,0.0055284831,-0.0644904673,0.013870406,0.0007871801,-0.001922396,0.0221722405,0.0159185324,0.0134841045,0.0013675434,0.0012071918,0.0279157404,0.0040816749,-0.0197232366,0.0214871038,-0.0007666807],"74":[-0.0067282957,0.0026700967,0.0458665192,0.0170747023,0.0972993672,0.0210407097,0.000594901,0.0092748897,-0.014820341,-0.0087947939,0.0275393948,-0.0221818052,0.0369604006,-0.0350400172,0.0173947662,0.0026022571,0.0003428943,-0.0017577411,-0.0182575472,0.0148481727,-0.0187306851,0.0091566052,0.0393260866,0.0225157849,-0.0232672393,-0.0139993075,-0.0163649954,0.0575558022,0.0068535381,-0.0287222378,0.0132965595,-0.0495681278,-0.0318950452,-0.0071805594,0.0208319724,-0.0036355061,0.0355966501,0.0210267939,0.0387416221,0.0102002909,-0.0340937413,0.0252572,0.0033276188,0.0004744423,-0.0027274995,0.0072223069,-0.0505700633,-0.0335371085,-0.0300024934,0.0590587109,-0.049011495,0.0116336197,-0.0126007684,-0.0041399542,-0.0050270874,-0.0278037935,-0.0025031068,-0.0073614651,-0.0001162188,-0.0260225702,-0.0013202628,-0.0406620055,0.005722878,0.0226131957,-0.0004390004,0.0180070624,-0.0252850316,0.0514050126,-0.0272610784,0.0238656197,0.0225297008,-0.0126494737,-0.0072779702,0.0113135558,0.027525479,-0.0583350882,0.0018264505,0.0876139551,-0.0259808227,-0.0186889376,-0.0180070624,-0.015919691,-0.009963722,0.0260086544,0.0162536688,-0.0055280565,-0.0148342568,-0.0146533512,0.0204840768,0.0295293555,-0.0241161045,0.0568043478,0.0346503742,-0.0059316154,0.0429163687,-0.0087739201,0.0094140479,0.0332866237,0.0257303379,-0.0121832946,-0.0044287075,-0.0106734289,-0.0246866532,-0.0144863613,0.0515998341,-0.0000949646,0.0034093743,0.0085790986,0.0123294108,0.0249927994,-0.1098235995,-0.0048357449,-0.0391869284,0.0141454237,-0.0286665745,-0.0129208323,-0.0242413469,0.0430276953,-0.0026596598,0.0180488098,-0.0114318402,0.0080294237,-0.0378788449,0.0227523539,0.0077580656,-0.0266070347,0.0275533106,-0.0539655238,-0.0637344271,-0.0412186384,0.0236429665,-0.0172277763,0.0186054427,-0.0140897604,-0.0068187485,0.0370717272,-0.078206867,-0.0104646916,0.0024248303,-0.0079598455,-0.0132269803,-0.0397157297,0.0394652449,-0.0370717272,-0.0029849419,0.0370995589,-0.0434173383,0.0347060375,0.0005314101,-0.0014663788,-0.010116796,0.0070970645,-0.0370160639,-0.0024613594,0.0498186089,0.0092053106,0.0007192736,0.0612295792,0.0060429419,-0.0379901677,0.0120371785,0.0344833843,-0.0090452787,0.01176582,-0.0210546255,-0.0123989899,-0.0176035035,-0.0355688184,-0.064959012,-0.0177704934,-0.0447254218,-0.0126773054,-0.0267740246,0.0124616101,0.0275672264,-0.005646341,-0.0144167822,-0.0731971785,0.0531862378,-0.0434451699,-0.0471746065,0.0018542821,-0.0370438956,0.0245614108,0.0072223069,-0.0115849143,-0.0376561917,0.013018243,0.0116962409,0.0194821376,-0.061340902,0.0476199128,0.0236707982,0.0314219072,0.0138949389,-0.0699687079,0.0106873447,0.0399662144,-0.0316167288,0.0218199957,0.0767039582,0.028861396,0.0772049278,0.0057820203,-0.014903836,0.0150012467,0.0167546384,0.0136374971,-0.0647363588,-0.0224879533,-0.0141106341,-0.0111604817,-0.0038477222,0.0128930006,-0.0336206034,-0.0090800682,-0.0512101911,-0.0138671072,-0.0252432842,-0.0326186642,0.0428607054,0.0481765456,-0.0066691535,-0.0129347481,-0.0084608141,0.0128860427,0.0206510667,-0.0371552221,0.0084816879,0.0104577336,-0.0164902378,-0.0397435613,0.0057298359,-0.0646806955,0.0110561131,0.021889573,0.0142637081,-0.0374057069,-0.0209850464,-0.0244083367,-0.0117727779,0.0096645318,-0.0022352275,-0.0085164774,-0.0115570826,-0.0081059607,-0.0215416793,-0.0286665745,0.0228497647,0.0511545278,0.0475364178,-0.0448924117,-0.005493267,-0.0011071769,-0.0413856283,-0.069801718,0.0090035312,0.0021412957,0.0014350682,0.0129138744,-0.0291118808,-0.0301416516,-0.0100472169,0.0035868008,-0.0287500694,0.0367655791,0.023211576,-0.0619531982,0.0328134857,-0.016086679,0.0358749665,0.0655156448,0.0309209358,-0.0428050421,-0.0103116175,-0.0572774857,-0.0283325948,0.0080920449,-0.0131852329,-0.0269270986,0.000065176,-0.0501804203,0.0055210986,0.0026126939,0.0142915398,0.003353711,0.0109726181,0.0564703681,0.002788381,-0.0442522839,-0.0287222378,0.0131017379,0.0202196762,-0.021096373,-0.002316983,0.0191481579,0.0158083644,0.0053123618,-0.0281377733,-0.0315332338,0.038129326,-0.0239491146,0.0069613853,-0.0298911668,0.0298355035,-0.0118841045,-0.0307539459,-0.0255216006,-0.0043243389,0.0169912074,-0.0118075674,-0.0138184028,-0.0142428344,-0.0315332338,0.0089269942,-0.0234203134,0.053325396,0.022905428,-0.0286387429,-0.0591143742,-0.0215973426,-0.049011495,-0.0182853788,0.0016872924,0.0247701481,-0.0067978748,-0.0011619704,-0.0069265962,0.0492619798,-0.0151543207,0.0053471513,-0.0323681794,0.0073266756,0.0303643048,-0.0349565223,-0.0528244264,0.0168381333,0.0053193197,-0.0366542526,0.0370160639,-0.0263008866,-0.0051697246,-0.0764256418,-0.0025987781,-0.0014359379,0.0230445862,0.0116684092,0.0009793254,-0.0209293831,0.016865965,-0.0374892019,-0.0000332947,0.0403280258,0.0354018286,-0.0114109665,-0.010666471,0.0113135558,-0.0198578648,-0.0446975902,0.0039834017,-0.003317182,0.0331752971,0.0008866982,-0.004546992,-0.0193847269,-0.0055350144,-0.0369047374,-0.0100124273,-0.0079598455,-0.0001205675,0.0294180289,0.0241021886,-0.0250484627,-0.0177844092,0.0020195323,-0.0210546255,0.0468406267,0.0327578224,-0.0154743837,0.0424710624,0.0059977155,-0.0014237616,0.0044426234,0.0046722344,0.0719725862,0.0606729463,0.0035972376,0.0575558022,-0.0470911115,-0.0382406525,0.0165180694,-0.007375381,0.0080433395,-0.0038825118,0.0026144334,0.0044391444,-0.0036424641,0.0456160344,0.0382406525,-0.0289448909,0.0358471349,-0.0178679042,-0.0309765991,-0.0371830538,0.0068083117,0.0321176946,0.0029223207,0.0236151349,-0.0528800897,0.0081059607,-0.0239073671,0.0126703475,0.0288892277,-0.0461726673,0.0269131828,-0.0121415472,-0.0308931042,0.0716942698,0.0038303274,0.0857770741,-0.0008597363,-0.0145002771,-0.0332031287,0.0009236621,-0.0374335386,0.0720282495,0.0303921364,-0.0200944338,-0.0212633628,-0.0397157297,-0.0141315078,-0.0170468707,0.0231976602,-0.0108612925,-0.0063282158,-0.005374983,0.0181740522,-0.0267183613,0.0569156744,0.0208458882,-0.0428328738,0.0359584615,-0.0127468845,-0.0099845957,-0.0285552479,-0.0281099416,-0.022905428,-0.057333149,-0.0198717806,-0.0103881545,0.0401332043,-0.0139784338,-0.0445306003,-0.0067491694,0.0031032262,-0.0351513438,0.0262173917,-0.0126425158,0.013797529,-0.0181462206,-0.0004094293,-0.0018264505,-0.0808230415,-0.0241439361,-0.0139088547,-0.0267601088,0.0449759066,0.0291953757,0.0110421972,-0.0289170593,-0.0002083023,0.0352626704,0.0080224667,-0.0238656197,-0.0154465521,0.0177426618,-0.0203588344,0.0281934366,-0.010819545,-0.0544943251,0.0405785106,-0.0326743275,0.0017516529,0.0398270562,0.0025622491,-0.0094418796,0.0295571871,0.0246727373,-0.0015864026,0.0146950986,-0.0056115515,-0.0061090421,0.0285830796,-0.0164484903,-0.0408289954,0.0059350943,-0.060617283,-0.0117866937,0.0110074077,-0.0130530326,0.0121763367,0.0125938104,0.0254520215,0.0583350882,-0.0142219607,0.0178122409,0.0004279113,0.0167685542,-0.0123502845,-0.0426658839,-0.031755887,-0.0076258658,0.0261617284,0.0015933606,0.0063038631,0.032479506,-0.0203588344,0.0215695109,-0.0168103017,-0.0194960535,-0.0197743699,-0.0390756018,-0.0225436166,-0.0039138226,-0.0044008759,0.0090522366,-0.0482878722,0.0083007822,-0.0043243389,-0.0087391306,0.005061877,-0.010582976,0.0225853641,-0.0060011945,-0.0171303656,0.0263287183,-0.0035763639,-0.0307539459,-0.0241995994,-0.0051453719,0.009650616,0.0221400578,0.0236429665,0.0328969806,0.013797529,-0.014430698,0.0062516788,0.0053019249,0.0130530326,0.0163232479,0.0209015515,-0.0041434332,0.0386024639,-0.0194821376,0.0173808504,0.0171303656,0.005879431,0.0268436037,0.0126981791,0.0222374685,0.0199413598,-0.015209984,-0.0056637358,-0.005054919,-0.0068117906,0.0438348092,0.0074240863,-0.0198022015,0.0015942303,0.0203449186,0.0021986985,0.0140271392,0.0123294108,-0.0050270874,-0.0108125871,0.0113970507,-0.042972032,-0.0003294134,0.0002274366,-0.0031728053,-0.0225436166,-0.0054793512,-0.0229332596,0.028235184,-0.046979785,0.0081198765,0.0250067152,0.0110004498,0.0350121856,-0.0268714353,-0.0345668793,-0.0059698839,-0.0179235674,-0.000059414,0.0329248123,0.0064221476,0.0073614651,0.0136374971,-0.0134148439,0.0304199681,0.0059490101,0.0148342568,-0.0153630571,-0.0156970378,-0.0353739969,0.0309487674,-0.0061577475,-0.015683122,0.0379345082,-0.0099915536,0.0450872332,-0.0145420246,0.0034476428,-0.0487331785,-0.0238517039,-0.0180627257,-0.0261478126,-0.0178957358,-0.0021065061,-0.0236151349,-0.0306147896,-0.0285552479,0.0142497923,-0.0325630009,0.0109517444,0.0103672808,-0.0286665745,-0.0286109112,-0.0019934403,0.0281934366,-0.0096227843,0.015836196,0.027845541,0.0227941014,0.0209989622,0.0508483797,0.040161036,0.0381571576,-0.0026596598,0.0093096793,0.0269966777,0.0139158126,0.0018681979,0.0101028802,0.008314698,-0.0364315994,-0.0051488508,0.0347060375,-0.0176174194,-0.0298911668,0.0086069303,-0.0253546108,0.0791531429,0.0180488098,0.0257581696,0.0001056188,-0.0254241899,-0.0291675441,0.0010123753,0.0190785788,-0.0350678489,0.0041817017,0.0016281501,0.0048322659,-0.0234203134,0.001512475,0.0355688184,0.0188002642,0.0464231521,0.0089896154,-0.0362646095,-0.0053854198,0.0310322624,-0.0055106618,0.0360419564,0.0127955899,0.032869149,-0.0094140479,0.0019203821,0.060617283,-0.0299746618,0.0245057475,-0.0182018839,0.0037433538,-0.0255076848,-0.0364315994,-0.0097549846,0.037322212,0.0283325948,0.0323125161,-0.0008488646,-0.0208180565,-0.004901845,-0.0150290783,0.0000256165,-0.0090591945,-0.0030301684,0.0423597358,-0.0192594845,-0.0327299908,-0.0037503117,-0.006394316,-0.0351791754,-0.0473137647,-0.0394095816,0.0031014867,-0.0051105823,0.0235594716,0.0311714206,-0.0089756995,-0.0432503484,0.0125798946,-0.0228636805,0.0047557289,-0.0045713447,0.0020090954,-0.0192455687,0.0227523539,-0.0107012605,0.0025674675,-0.061730545,-0.0138392765,0.0010497741,-0.0638457537,0.0499855988,-0.0167546384,0.0062586367,0.004160828,0.0117519042,-0.0012385073,0.0013654892,0.0132130645,0.0409681536,-0.0251597892,0.0151543207,-0.0131017379,-0.0260086544,0.0128582111,-0.0192316528,-0.0018768953,-0.0287779011,0.018897675,-0.0052775722,-0.0112787662,0.0279986151,-0.019301232,0.0426658839,0.046117004,0.0174504295,-0.0080920449,-0.0192594845,0.0127608003,-0.0376005284,0.0151682366,0.0103603229,-0.0114735877,0.0066448008,0.0172416922,-0.0260643177,0.0442522839,-0.0052671353,-0.0012741666,-0.0291953757,-0.0008562574,0.0194403902,0.0077858972,0.0002746199,-0.0038755538,-0.0016698976,-0.0584464148,-0.0262034759,-0.0002339596,0.0069544273,-0.0245474949,0.042192746,0.023921283,0.016392827,-0.0110561131,-0.0257581696,-0.0305591263,0.0065960954,0.0043417336,0.0157248694,-0.0161701739,-0.0053158407,-0.0030284289,-0.0024213514,-0.0093514267,-0.0188280959,-0.0452820547,-0.0068431012,0.0040668962,-0.0096923634,0.0354853235,-0.0024265698,0.0202475078,0.0140688866,-0.094738856,-0.0278177094,0.0255355164,-0.0109239137,-0.0243387576,-0.0073405914,0.017408682,0.0386024639,0.0248118937,-0.0287779011,-0.0174504295,-0.0230863336,-0.0279568676,-0.0117588621,-0.0140758445,-0.0074727917,0.0424710624,0.0179374833,0.0166433118,-0.0002563554,-0.0171442814,0.0053854198,-0.0279707834,0.041719608,0.0119049782,-0.0037920591,-0.0162954163,0.0570548326,0.0187863484,-0.0396600664,-0.0131086959,0.0219730679,0.0052427826,-0.0136166234,-0.0055419724,0.0037990171,0.0119467257,0.0046061343,0.0090035312,0.0179653149,-0.0294180289,-0.0326743275,0.0502917469,-0.0650146753,0.0510710329,-0.0281934366,0.0004627008,0.0086973831,-0.0011280506,-0.0114735877,0.0579454452,-0.0067596063,-0.0201083496,-0.0059455312,0.0120023889,-0.0001663375,-0.0552457795,-0.0195934642,0.0104229441,0.0122389579,-0.0281099416,-0.0095044998,0.015836196,-0.0499021038,-0.0022874118,-0.0106038498,0.0272471625,0.0293901972,0.0104229441,0.0100193853,0.0237682089,0.0256329272,0.0230724178,-0.0196212959,0.0365707576,0.0070901066,0.0126912212,-0.0195099693,-0.0156274587,-0.0068222275,0.0200944338,-0.0187863484,-0.0226131957,0.0080711711,-0.0238517039,-0.0238934513,-0.0137070762,-0.0059107416,0.0163371637,0.0017716569,0.0460335091,-0.0155717945,-0.0187585168,0.0087669622,-0.011689283,-0.024227431,0.0156552903,0.0015237816,-0.0116962409,-0.00068144,0.0339545831,-0.017019039,0.0024004776,-0.002276975,-0.0251597892,-0.0060220682,0.0110282814,-0.014903836,-0.0143611189,0.0314497389,-0.0332309604,-0.0162536688,0.0242552627,0.0014228919,0.0182992946,-0.0028944891,0.016476322,0.0293901972,-0.0198856965,0.0018629795,0.0234898925,-0.0326186642,0.007062275,0.0335649401,-0.0164067429,0.0074867075,0.0514328443,-0.0101724593,-0.0084260246,-0.034511216,0.0061786212,0.057722792,0.0076815286,0.0347895324,0.018118389,-0.0311435889,0.0091983527,0.002532678,0.0189533383,0.0248118937,0.0026527019,0.0059003048,0.0079459297,0.0106177656,0.0300581567,-0.0209015515,-0.0245892424,-0.0095601631,-0.033648435,0.0197047908,0.0330918022,-0.0360141248,-0.0177565776,0.0721952394,-0.0294736922,0.0428328738,-0.0385746323,-0.0025118042,-0.00847473,-0.0406063423,-0.0074658338,0.0241161045,0.0423597358,-0.0294180289,0.0113205137,-0.0195934642,-0.0187306851,0.0024404856,-0.0260921493,0.0070727118,-0.0254798532,0.0055002249,0.0127399266,0.0217643324,0.0564425364,0.0131713171,-0.0247979797,0.0225018691,-0.0043452126,-0.0037746644,-0.0150847416,0.0150847416,0.0187306851,0.0319507085,0.0422762409,-0.0131226117,-0.036153283,0.0080990028,-0.0033919795,0.0086695515,0.0362089463,-0.0081546661,-0.0043312968,0.0107221343,-0.0295850188,-0.0048914081,0.0439461358,-0.0000067575,0.0139366863,0.0283325948,-0.0333701186,0.0093514267,0.0033589294,-0.0198300332,0.0093375109,0.0460335091,-0.0198022015,0.0068152696,-0.0086486777,0.0176869985,0.0248258095,-0.0123363687,-0.0013907115,-0.0000521028,-0.0266766138,0.0069718221,-0.0049435925,0.0166433118,-0.0155578787,-0.0020282296,-0.0240326095,-0.0164484903,-0.016239753,0.0421649143,-0.0102559542,0.0183132105,-0.0210407097,0.042498894,-0.0110491551,-0.0072014332,-0.0064256266,0.0157944486,0.0186889376,0.0086695515,0.0439739674,0.0364315994,-0.0011054374,0.0194264743,-0.0164624061,-0.002273496,0.0098245637,-0.0039694859,0.0223627109,-0.0247979797,-0.0134148439,0.0057785413,0.041719608,0.0089200363,0.0258555803,-0.0142219607,-0.0074797496,-0.0008536482,0.0226827748,0.005061877,0.0582237616,0.0326743275,-0.0056950464,0.0133243911,0.0002883183,-0.0184106212,-0.0153073948,0.0330361389,0.0158083644,0.0038894697,-0.0003839895,0.0182157997,0.0128790848,0.0113553032,-0.0000903984,-0.0040947278,-0.023684714,0.0199274439,0.011682325,0.0024509225,-0.0079598455,0.0348730274,-0.0722509027,-0.0253267791,-0.0009984596,-0.0381014943,-0.0075841183,-0.0064882478,-0.0244083367,-0.0126912212,0.0367377475,-0.0184662845,-0.0182436313,-0.0273306575,0.0105621023,-0.0372665487,-0.0064012739,0.01309478,-0.0195378009,0.0594483539,-0.0155717945,0.0075841183,-0.0048844502,0.028861396,-0.010896082,-0.0269410145,0.0124824839,-0.0213886052,0.0281656049,0.0176869985,0.0212633628,0.0192316528,-0.0184523687,-0.0169355441,0.0026196518,0.0060881684,0.0095114578,0.0048287869,0.0076467395,0.042888537,0.0044008759,-0.011139608,0.0330083072,0.0230028387,0.0323960111,0.0424432307,0.0078693926,0.0044948077,0.0263704658,0.0507927164,-0.015919691,0.0072501386,0.0436399914,0.0205675717,-0.0418865979,0.0129277902,0.0234759767,0.0132269803,0.0097967321,0.0285274163,-0.0247284006,0.0062586367,0.0210407097,0.0096575739,0.0008005941,-0.0091078999,0.0146533512,-0.0119467257,-0.0010045477,-0.0095184157,0.0037503117,-0.030503463,0.0184384529,0.0297798403,-0.0109447865,0.009093984,0.0550787896,0.0233646501,0.000734494,0.0047383346,-0.0134565914,-0.0193847269,-0.0170329548,-0.0078137293,-0.0107986713,0.0443914421,-0.04689629,-0.0048287869,-0.0280681942,0.0025796439,-0.0074867075,-0.0255772639,-0.000751019,0.0424710624,0.0150429942,-0.0051905983,0.0115779564,0.0224183742,-0.0327299908,-0.0539655238,-0.0355966501,-0.0155857103,-0.0004613962,-0.0043695653,-0.0123572424,0.0121972105,-0.0029727656,-0.039687898,-0.0086834673,0.0459221825,-0.0320620351,0.0128303794,-0.0161562581,0.0187306851,0.0111048184,0.0076467395,-0.0181323048,-0.0236429665,0.0061333948,-0.0093723005,-0.0200944338,0.0387416221,-0.016629396,-0.0273167416,0.0008880028,-0.0372108854,-0.042888537,0.0180627257,-0.0117727779,0.0029588498,0.0058481204,-0.0017760056,0.0629551411,0.0082868664,0.016392827,0.0120371785,-0.0142428344,0.0180488098,-0.0284160897,-0.0085095195,-0.0406063423,-0.0237264615,0.0290005542,-0.0050375243,0.0041677859,-0.034900859,0.0047835605,0.0419979244,-0.0078137293,-0.0052810512,0.0333422869,0.0152517315,0.0123572424,0.0086486777,0.0109308716,-0.0588360578,-0.0238099564,0.0204562452,-0.0278177094,0.0330083072,-0.0119328098,-0.0002137382,-0.0007462355,-0.0053993356,-0.0223766267,0.0163371637,0.0165459011,-0.0147785936,0.0031449737,0.0056672147,-0.0170051232,-0.0150986575,-0.0346503742,-0.0030423447,-0.0209572148,-0.0132269803,0.027441984,0.0176730826,-0.0249649677,0.0286665745,0.0114318402,-0.0090522366,0.0058933469,-0.0289170593,0.0026874915,-0.0047696447,-0.0371273905,0.0475920811,0.0307539459,0.0030353868,0.0074032126,0.0158918593,-0.0085373512,-0.0055941567,-0.0179931466,-0.0167685542,0.0335927717,0.0175617561,0.0020264902,-0.0027153231,0.0188002642,-0.0016168435,0.0007184038,0.0208458882,0.0152795631,-0.0119606415,0.0235316399,-0.0323403478,0.0501525886,-0.0099011008,0.006390837,0.030670451,0.002376125,-0.003117142,0.0276089739,0.0075562866,-0.0419144295,0.0183410421,-0.0095253736,-0.0053158407,0.0273863208,0.0069961748,0.0332309604,0.0358749665,0.0125103155,0.0000227219,-0.02728891,-0.0061577475,0.0401053727,0.0100611327,0.0112718083,-0.0385468006,0.0387416221,-0.044948075,-0.0014655091,-0.0135192126,0.0032754345,0.0091218157,-0.004623529,-0.0413577966,0.014820341,-0.03779535,-0.009330553,-0.0470076166,-0.0280681942,0.0216112584,-0.0252432842,-0.031282749,-0.0027901204,0.0262591392,0.0219730679,-0.0070657539,-0.0179792307,-0.015836196,-0.0170329548,-0.0201361813,0.0127955899,0.0005827247,0.016865965,0.0218478274,-0.0021047667,0.0201640129,-0.017102534,-0.0056045935,-0.0012793851,-0.0002898403,-0.0035189611,0.0043034651,-0.0131504433,0.0204284135,0.024700569,0.0375170335,0.0250067152,0.0311992522,-0.0370995589,-0.0173251871,-0.0208876356,-0.0068048327,-0.0031797632,-0.0248953886,0.0198996123,0.0153073948,-0.0103881545,0.0034198111,-0.0243526734,0.0074380022,0.0002524415,0.0076954444,-0.0122667896,0.0185915269,0.031060094,-0.0012750364,-0.0077511077,0.0454490446,-0.0031432342,-0.0397713929,-0.0085790986,0.0032058554,0.0376840234,-0.0239351988,0.0245335791,0.0162258372,0.0193986427,-0.0010393373,0.034511216,0.0092818476,-0.0170607865,-0.0127399266,0.0255494323,0.0252432842,0.0073197177,-0.0148481727,0.0017203424,-0.0303086415,0.0041399542,-0.0467293002,-0.0180905573,-0.0027379361,0.0078137293,-0.0067422115,0.0200526863,-0.0049157608,-0.0068500591,-0.0125311892,0.0065439111,0.0244361684,-0.029640682,0.0093096793,0.0029988578,-0.0024230909,-0.0179931466,-0.0054236883,0.0085443091,0.0099498061,-0.006470853,0.0172834396,-0.0214442685,0.0006975301,0.0056011146,-0.0144446138,0.0045713447,-0.0068674539,0.0135192126,-0.0492063165,-0.0388529487,0.0385468006,-0.0060707736,0.0160171017,0.0065299952,-0.0060011945,-0.0072988439,0.0088852467,0.0269410145,0.0362924412,0.0148899201,0.003054521,-0.0173808504,-0.007723276,-0.024310926,-0.0366820842,0.0245474949,0.0040529803,-0.0304477997,0.0248397253,0.0129138744,0.0260504019,-0.0030510421,0.0220148154,-0.0115362089,0.0197882857,0.0065021636,-0.0166015644,0.0250762943,0.0053332355,-0.0118214833,0.0011576217,0.0205675717,-0.0105133969,-0.0111187343,-0.0350400172,0.0123502845,0.0116614513,-0.0136931604,0.0010619505,-0.0112787662,-0.0133730965,0.033258792,-0.0066865482,-0.0097341109,0.0047939974,-0.0131086959,-0.0237264615,0.0088434992,0.0401332043,0.0325630009,-0.0022300091,0.0201083496,-0.0038790328,0.0172834396,-0.0004857488,0.0330083072,0.031755887,0.0089130783,0.0127399266,0.000485314,-0.0325630009,0.0292788707,0.0098871849,0.0427772105,-0.0102629121,0.0339267515,-0.0038268487,0.0326743275,0.0431111902,0.0151682366,-0.0082590347,-0.0262591392,0.0093027214,-0.01881418,0.0247979797,-0.0199552756,0.0578897819,0.016629396,0.0217921641,-0.0049888189,-0.0030893106,-0.013254812,0.0259947386,-0.0272054151,-0.0224879533,-0.0174225979,0.0050688349,0.0314219072,0.0178957358,0.000990632,0.0070901066,0.0568878427,0.0153630571,-0.0040112333,-0.0128790848,-0.0175060928,-0.0060290261,0.0382963158,0.0137627395,-0.0274141524,-0.0118214833,0.003350232,0.008238161,0.018897675,-0.0066865482,0.0176869985,-0.0407455005,0.0203170869,0.0347060375,-0.0041956175,0.0472302698,0.0397992246,-0.0005240173,0.0067317747,-0.0020595402,0.0277481303,0.0158222802,-0.0058237677,0.0262452234,0.0169077124],"75":[-0.0063202437,-0.0118036605,0.0922564715,0.0103282034,0.0298174564,0.0200985223,0.0117082335,0.0055311308,-0.0112751387,0.0043015829,0.0230787992,-0.0267931353,0.0365267508,-0.0028903554,0.0297587328,0.0483891368,0.0078470856,0.0166190844,-0.0250313953,0.0228292197,-0.003787742,0.0021801537,0.0154592721,0.0022535597,-0.0195846818,-0.0298761819,0.0307130087,0.0458052531,0.0529990233,-0.0194965936,-0.0019452551,-0.0466273986,-0.0288191382,-0.0014662818,0.0394336246,0.0381710418,0.0333556198,0.0573740117,0.0181312449,-0.0069368528,-0.0027325328,0.0370846353,0.0184689127,-0.0190708395,-0.0138149811,-0.0150261782,-0.0376131572,-0.0371139981,-0.0000598143,0.0504445024,-0.0319755897,0.0190121159,0.0024223931,-0.0261031203,0.0042061554,-0.0138590252,-0.0046282387,0.0170301571,0.0211115237,-0.0521475151,0.0085224193,-0.0654780194,0.0305661969,0.0272042081,0.0285842381,0.0688253269,0.0303606596,0.053410098,-0.0064964178,0.0388463773,0.0359688662,0.0222860165,0.0005450384,-0.0081407093,0.0591357537,-0.0440435112,0.0086765718,0.0080599627,-0.0502389632,0.0103795873,0.0288044568,-0.0306249205,-0.004037322,0.0355577953,0.0023232952,-0.0428102911,-0.0038721587,-0.0207444932,0.0061734319,-0.0007046962,0.0036427653,0.05884213,0.025750773,-0.0169861149,0.0291568041,-0.0226383638,0.0118036605,-0.0033216148,-0.0217281319,0.0107980007,-0.0009304192,-0.021772176,-0.005002609,-0.0314470679,0.0129708136,0.0177054908,-0.0220951606,-0.0084636947,0.0026352701,0.0374369845,-0.0828018039,-0.008456354,-0.0324160233,0.0275418758,-0.0115026971,-0.0212583337,-0.0362918526,-0.0015947422,0.0073809582,-0.006323914,-0.0236954093,-0.0185276363,-0.0086251879,-0.0045181303,0.0010102481,-0.0306249205,0.0505619496,-0.0471852832,-0.0581961572,0.0048851594,0.0505619496,0.0088747675,0.0208325814,-0.0309772696,-0.033326257,0.0069368528,-0.068414256,0.0240918007,0.013198372,0.0071166973,0.0163548235,-0.0039822673,0.059723001,0.0059972582,0.0065698237,0.0262646135,-0.0242973361,0.0396978855,0.0017296254,0.0163548235,0.0093665868,0.009718935,-0.0579906218,-0.0094473334,0.027086759,-0.0133672059,0.0343833007,0.0422817692,-0.0033931856,-0.0310359932,0.0051273988,0.0120165376,0.0018351463,-0.0128386831,-0.0034977889,0.0177054908,-0.0290687177,-0.0228439011,-0.0836826712,-0.0115981242,-0.0266169626,-0.0211408846,-0.0361156799,-0.0246496852,0.0245469175,-0.0088454047,-0.0704108924,-0.0077883611,0.0286136009,-0.0476844423,-0.0375250727,-0.0035032942,-0.0034537453,0.0239009447,0.0093152029,0.0113118421,-0.0823907256,0.0401383191,0.0094032893,0.0382297672,-0.0285548754,0.0413421765,0.0052668699,0.0770467818,-0.0250901207,-0.0467154831,0.0352348089,0.0355284326,-0.003978597,0.0179844331,0.0271748453,0.0266022813,0.05960555,-0.0152537357,0.0090362607,0.0139984954,-0.0055494825,-0.0009033508,-0.042046871,-0.0513253696,-0.0094913766,0.0090949852,0.0375544354,-0.0171916503,-0.0284961518,-0.0196434055,-0.0170301571,-0.0108787473,-0.0035363268,0.0165750422,0.071467936,0.1006541029,0.0249433089,-0.0068744579,0.0064487038,0.0074323425,0.016222693,-0.024106482,0.0458639748,0.0375837944,-0.0012497347,0.0094399927,-0.0052264966,-0.0125670815,-0.0310359932,0.0301257614,0.0204655509,-0.0076415492,-0.0100345798,-0.0191736091,-0.0056485804,0.0328858197,-0.0001502526,0.031681966,0.0084783761,-0.0011653178,-0.0469503812,-0.0524117798,0.0204508696,0.0625417829,-0.0023673386,0.0047787209,-0.029421065,-0.0152537357,-0.07775148,-0.020583,-0.0498278923,0.0488002114,0.022799857,0.0161933303,-0.0104970364,-0.0114146098,-0.0083902888,0.0039859377,-0.0504445024,-0.0024792827,0.0521768779,-0.0718790069,0.0128900679,-0.0088013615,0.0087646591,0.0365561135,0.0191148836,-0.0731709525,-0.0295825582,0.0170448385,0.002233373,0.0060009286,0.0021416156,-0.0139104091,-0.0103061814,-0.0021599671,0.0146811707,0.0140865827,0.0195553191,0.004275891,-0.0165456794,0.0445133075,0.0334437042,-0.0350586362,0.040520031,-0.016868664,0.03902255,-0.0099464925,-0.0195553191,0.0069845668,-0.0018167949,-0.0233577415,-0.0111430082,-0.0259122662,0.0131910313,-0.0058210841,0.0071644112,-0.0101153264,0.0178082604,0.0407255664,0.0486827604,-0.0073222336,-0.0062578488,0.0329739079,-0.0314470679,-0.0087499777,-0.0081480499,-0.0222860165,-0.0232696552,-0.0094179707,0.0445133075,0.0115687624,-0.0079792161,-0.0486533977,-0.0007212125,-0.1155114472,-0.0077589983,0.0007836075,0.0659478158,-0.0123615451,-0.0002196441,0.0041841334,-0.0050833551,-0.0366735645,-0.0112824794,-0.0041731228,0.0197168123,0.0518245324,0.0017599053,-0.0558765344,-0.0089848759,0.0066469,-0.0302725732,0.0150114968,-0.0301551241,0.0184982754,-0.0683555305,-0.0056559211,0.0295825582,0.0260150339,0.0339428671,0.0050503225,0.021390466,-0.0036611168,-0.0356752425,-0.004180463,0.0109301312,-0.0057476782,-0.0196580868,-0.0135507202,0.0017287078,-0.0104236305,-0.0709394142,0.0061660917,-0.003400526,-0.0177788977,0.0336492434,-0.0116421683,0.0087866802,-0.0019085521,-0.0263380203,0.0214785524,-0.0276152808,-0.0088527454,0.0207591746,-0.0341484025,-0.0254718307,-0.0455409884,-0.0533807352,-0.0188359413,0.0266903676,0.0505913123,0.0157969389,0.0619545393,0.0332675315,-0.0015167485,-0.0004388294,-0.0203627832,0.0620132647,0.0163107794,0.0224328283,0.0238862634,-0.0568161272,-0.0127799585,0.0088747675,-0.0050796848,0.0280557163,0.0041951444,-0.0284961518,-0.0126331467,0.0293917023,0.0307717323,0.0333556198,-0.0108567253,0.0236073211,0.0037326876,-0.036614839,-0.0470091067,-0.0450711921,0.021537276,0.0344713889,0.0043492969,-0.0336198807,-0.0086178472,-0.0163254607,-0.0077443174,0.0263820626,-0.0409898274,0.0396978855,-0.0180578399,-0.047860615,0.0818622038,0.0045878659,0.0599285364,-0.0468035713,-0.0377893336,-0.0150261782,0.0083242236,-0.0471265577,0.0683555305,0.023989033,-0.0176320858,-0.0183955058,-0.0549663007,-0.0093739275,0.0182193331,0.0283052959,-0.0019360794,-0.0220217556,-0.0282025281,0.0279823113,-0.0256333239,0.0016176815,0.0051604314,-0.0060302909,-0.0199957546,-0.0342658497,0.003978597,-0.0470971949,0.0199957546,0.008052622,-0.0392280854,0.0470971949,-0.0009432652,0.0391987264,-0.0056889537,-0.0370259099,-0.0164429098,-0.0527347624,-0.0385527536,0.0044080215,0.0093078623,0.016795259,0.0010799835,-0.0078544263,0.0069882371,-0.0332088061,0.0034776023,-0.0005032889,-0.012244096,0.0180578399,0.0008427909,0.0156207653,0.0001640162,0.0036813035,-0.016222693,0.0211996101,0.02873105,0.0017892676,0.0198636241,0.0236513652,-0.0280263536,0.0130882636,-0.03749571,0.0690015033,-0.0539386198,-0.0020865614,0.0599578992,0.0126918713,0.0379361436,0.0034317235,-0.0124129299,0.002899531,0.0166631285,-0.0178523026,0.0096088257,-0.0016984278,-0.0191589277,-0.0058027324,0.0199957546,-0.0439554229,-0.0224475097,0.0129854949,-0.0219336692,0.0361450426,-0.0017516471,0.0252222512,0.0512372851,0.0040923762,0.0329445451,-0.0542028807,-0.0359688662,-0.0058137435,-0.010981515,-0.0083242236,0.0353228971,0.0143141411,0.022344742,-0.0118550453,0.0360275917,-0.0145123368,-0.0018672614,-0.0220951606,-0.0371139981,-0.0119724944,-0.0088674268,-0.0109301312,0.0075681433,-0.0050356416,-0.0035326567,-0.0379067808,-0.0556122735,-0.0394923463,-0.0251194816,0.0315351523,-0.0437792502,0.0036446005,0.0240918007,-0.0220070742,0.0470678322,-0.0069221719,-0.0075901649,-0.0178082604,0.014864685,0.0110182185,0.0392280854,0.0212436542,0.0091096666,0.0150041562,-0.0079938974,0.0322104879,0.0127652772,0.0004223131,0.0286723264,0.0124863349,-0.0109448126,0.0247377716,0.0006753338,-0.0162814185,0.0440435112,0.0383472182,0.0177201722,0.0232990179,0.0040116296,0.0164575912,-0.0181606077,0.0056595909,0.0026774784,-0.0220070742,0.0231228434,0.0131102847,-0.0071093566,-0.0301551241,-0.0004422702,-0.0055715041,0.0248111784,0.0271014404,0.0233136993,-0.0046319091,0.0029619262,-0.0114439726,-0.0022920978,0.001605753,-0.0094987173,-0.0424873084,-0.0210674796,0.0134552922,0.027776774,-0.0562582463,0.0112898201,0.0172503758,0.0102107543,0.0068230741,-0.0142921191,0.004954895,0.0006478066,-0.0046025468,0.0017901852,0.0119651537,0.0435443521,0.0086398683,0.0030555185,-0.0170154758,0.0436617993,0.0313883424,0.0278795417,0.0203187391,-0.0073552663,-0.0345301107,0.0090803038,0.0004941131,0.029920226,0.0265875999,-0.0055237901,-0.0104750153,0.0054613953,-0.0197314937,-0.0422524065,-0.0078837881,0.0008822466,-0.0480074286,-0.0203481019,0.0157969389,-0.0311240815,0.0046576015,0.0049035107,-0.0250167139,-0.0055458122,0.0178082604,0.0396097973,-0.0297440514,-0.0579318963,-0.0096602105,0.0149380909,-0.0248405393,-0.0110696023,0.0225943215,-0.0037620498,-0.0011855045,0.0428983793,0.005681613,0.0384940282,0.0010671376,0.0077222954,0.030301936,0.043045193,0.0177642163,-0.0213170592,-0.0018397341,-0.0228732638,0.0072304765,0.0114880158,-0.0401089564,-0.0106805516,-0.0190414786,-0.0399915092,0.0502096042,-0.0001598871,0.0304781087,-0.0032573848,-0.0282172095,-0.0195700005,-0.0214491896,0.0118770665,-0.0204508696,0.0257654544,-0.0025196557,0.0088674268,-0.0319168642,0.0097482968,0.022344742,-0.0146151055,0.0320930369,0.035117358,0.0025214909,-0.0088160429,0.0408136547,0.0134332711,0.0274831504,0.0210527983,0.0208619423,0.0168539826,-0.0134699736,0.0486827604,-0.0175146367,0.0081480499,-0.0315057896,0.0183514636,0.0105924644,0.0241211634,0.0192910582,0.0120018572,0.013792959,0.0084196515,0.0094399927,-0.0039565754,0.0271308031,0.0105117178,-0.0015818961,-0.0071864328,0.0147252139,0.0047640395,-0.0157969389,0.0032537144,-0.017485274,0.0053366055,-0.048624035,-0.0184101872,-0.0026646324,0.0034317235,0.0232109297,0.0149454316,0.004954895,-0.0302138478,-0.0321517624,-0.0011855045,-0.0250167139,0.0240330752,0.0040703546,-0.0057917219,-0.0168246217,0.0170007944,-0.0096088257,-0.0263380203,-0.0407549292,0.0063202437,-0.0218749437,-0.0173237808,0.05884213,-0.017866984,-0.0128607051,0.0351760834,0.0126478281,-0.0221685674,0.0093078623,0.0173971877,-0.0050466522,-0.0233430602,-0.0038941805,-0.0003516599,-0.0159290694,0.0131176254,-0.0323572978,0.0091977529,-0.0230494365,0.0053035729,-0.0162667371,-0.0297146887,0.031828776,-0.0142554166,0.0219189879,0.0182780568,-0.0272629336,0.0039675864,-0.0144756343,0.01367551,0.0123248426,-0.0104016094,-0.0112531167,-0.0253543817,0.0013167175,-0.0035565135,0.0320049524,0.0482129641,0.0116054649,-0.0006496418,-0.0552599244,0.0046722824,-0.0205389578,0.0249726698,-0.039756611,-0.0228732638,-0.0085591227,-0.0571097508,-0.0306249205,0.0009836385,-0.0043199342,-0.0337373279,0.0581961572,-0.0195846818,0.0021673078,-0.0210234355,-0.0172210131,-0.0210674796,0.0126992119,0.016222693,-0.0146591486,0.0021526266,-0.0107392762,0.0001059797,0.0311534442,-0.0072671794,-0.0211408846,-0.0300670359,-0.035117358,-0.0062688598,-0.0038097636,0.0203187391,0.0092858402,-0.0322104879,0.011840364,-0.1125752106,-0.0202453341,0.0470971949,-0.0298321377,-0.0376718827,0.0273069777,-0.0013139647,0.0403438546,0.0257948153,-0.0068267444,-0.0124716545,-0.0552011989,-0.0272188894,-0.002899531,-0.0172944181,0.0155473594,0.0154739534,0.0264701508,0.0373195335,0.0223887842,-0.0316232406,0.0029986291,-0.0356458798,0.044454582,-0.0026683027,-0.0059348629,-0.0172650553,0.0452473685,-0.0013809475,-0.0470384695,0.0091023259,-0.004918192,0.0235192347,0.0087793395,-0.0061477399,0.0340309516,0.0018122069,-0.0020939019,-0.0023691738,0.0026040727,0.0069038202,-0.0648907721,0.0240183938,-0.051648356,0.0310359932,-0.0002819244,-0.026705049,0.0064303526,0.0014194857,-0.0170448385,0.0288484991,0.026705049,-0.0125891035,0.0048264349,0.00200765,0.0309479069,-0.0638337284,-0.0259269476,0.0087352963,0.0208619423,-0.0125524011,0.0125964442,0.0269399472,-0.0452473685,-0.0239303075,-0.0252809748,0.0118036605,0.0147105325,0.0545258671,-0.0129781542,0.0022058459,0.0055348012,0.0058467761,-0.0392868109,0.0156501271,-0.0013313986,0.0169861149,-0.0136241261,-0.0287750941,-0.0019287388,0.0234751906,-0.011744936,-0.0111650303,0.0114292912,-0.0043896697,-0.0214932337,0.0024792827,-0.0186304059,-0.0062138052,0.0152977798,0.0600166246,-0.0138443438,-0.0073772878,0.0092124343,-0.0172210131,0.0017920204,0.0082508177,-0.0164722726,-0.0074800565,-0.0045401519,0.0235339161,-0.0207298119,0.0097409561,-0.0270573962,-0.0243560616,-0.0073626069,0.0174412299,-0.0001987693,0.0067937113,0.0249873511,0.0134919956,-0.0064927475,0.008074644,0.0355871581,0.0056045367,-0.004228177,0.0182633754,-0.0049879276,-0.0206564069,-0.0194819123,0.006837755,-0.0161933303,0.0133451838,0.0099391527,-0.0035675245,0.0291568041,0.0206270441,0.0172797367,-0.0055164499,-0.0264848303,-0.0162520558,0.061249841,-0.0093372241,0.0364093035,-0.0068781283,-0.0335905179,0.0226383638,0.0113485446,0.0218308996,0.0141159454,-0.003824445,0.0157528948,0.0005198052,-0.0018149597,0.0086031659,0.0233724229,0.0198783055,-0.0176908094,-0.0358807817,0.0521475151,0.0023508223,-0.0222419724,-0.0040593436,0.0403144918,-0.0249726698,0.0583429709,-0.0652431175,-0.0192763768,-0.0078544263,-0.0083535863,-0.0103502255,0.0345594734,0.0327977352,-0.0232109297,0.0470678322,0.0046319091,-0.01943787,0.0151950112,-0.013792959,0.0330032706,0.0005959637,0.0248405393,0.0241652057,0.0147472359,0.0517951697,0.021537276,-0.0044814274,0.007087335,0.0065294504,0.0074873967,-0.0211702473,-0.0294063836,0.0213317405,0.0124276103,0.0327977352,0.0008262746,-0.0301257614,0.0335317925,-0.0076782522,0.0160465185,0.0609562173,0.0313883424,0.0300229937,0.0203481019,0.0124789951,0.0343245752,0.0258682221,0.0177642163,0.0003094515,0.0137268938,-0.0283346586,0.0124202697,0.0265435558,-0.0296412837,-0.034353938,0.0278501809,-0.0022627353,0.0064450339,-0.0338254161,-0.0056045367,-0.0085591227,0.0053292648,0.015914388,-0.0145637207,0.0039602458,0.0013965464,0.0238862634,-0.010577783,-0.0010735606,-0.0292448904,0.0044850977,-0.0295385141,-0.0047640395,0.0537624471,0.0018278057,0.0516777188,-0.0273657013,0.0050099492,-0.0106144864,0.0197021309,-0.0024444149,0.0068450957,0.004716326,0.0199076664,0.0190561581,0.0354109816,0.0091316877,-0.0055568228,-0.0319755897,0.0020351773,0.0253837425,-0.0078911288,0.021845581,-0.0348530971,-0.0331500843,0.0008987629,0.008647209,0.0371139981,0.0678270087,-0.0085738031,0.0136681693,0.0166778099,0.0095721232,0.0070286104,0.0480955131,0.0304193851,0.0083095422,-0.0040299813,0.0155620407,-0.0163695049,-0.0125670815,0.0095721232,-0.0133451838,0.0146664893,-0.0317700543,-0.0038024231,0.0029270584,-0.0128093213,0.0111797107,-0.0150041562,-0.0134039083,0.01943787,0.0325041115,-0.0332968943,-0.0107612982,0.0203774646,-0.0640099049,-0.0068267444,0.019511275,-0.0010441983,-0.0007083665,0.0100712832,0.0034629211,-0.0085738031,0.0536743589,-0.0001205462,0.0006120213,-0.0255745985,0.0322398506,-0.0282025281,-0.0103355441,0.0005904583,0.0084269913,0.0272335708,-0.03825913,0.0067900415,0.0142480759,0.0215960015,0.000593211,-0.0344420262,-0.0094032893,-0.0166484471,0.02796763,0.0036941494,0.0313002542,0.0219483487,-0.009124347,-0.0026719731,-0.0681206286,0.0201866087,-0.0021819889,-0.0015323472,0.0300670359,0.0277327299,-0.0051384098,-0.004455735,0.0290687177,0.0058504464,0.0256480053,0.0451299176,-0.0007744317,0.0166778099,0.0260003526,-0.0043309452,-0.0194231886,0.0475669913,0.0386702009,-0.0142113725,-0.0124276103,0.0173090994,-0.0285401959,0.0026627972,0.022153886,0.0215079151,-0.0380242318,0.0183514636,0.026514193,-0.0004876901,0.0009918966,-0.0186597668,0.0124276103,-0.0341190398,-0.017485274,-0.0016626426,-0.0253103375,0.0086325277,-0.011649509,0.025750773,-0.0287750941,0.0206710882,0.061249841,0.0310359932,-0.0051384098,0.0006459715,0.0011258622,-0.0065294504,-0.0032133411,0.0012111965,-0.0044227024,0.0384059399,-0.0310359932,-0.0034152071,-0.0417238846,0.0041254088,0.0128313424,-0.0021361103,-0.0138149811,0.0230641179,0.023034757,0.0100639425,0.0171476062,0.0321811251,-0.0083389049,-0.0330326334,-0.0042098258,-0.0104456525,0.0240037143,-0.0071313786,-0.0015543689,0.0488295741,-0.0048044128,-0.0276593249,-0.0006198207,0.0009698748,0.0063899793,0.0173678249,-0.0105263991,0.0432213657,0.0080159185,-0.0021471211,-0.0026774784,-0.0151950112,0.0057880515,0.0008712357,0.0066652512,0.0358807817,-0.0128386831,-0.0299349055,-0.0006739575,-0.0313589796,-0.0061293887,0.0103135221,-0.0022297027,-0.0390519127,-0.004668612,0.0056669316,0.054026708,0.0423404947,0.0140645616,0.0348530971,-0.0209059864,-0.0113191819,-0.0120605817,-0.0091904122,-0.0078984695,-0.0518832542,-0.0036941494,-0.000765256,-0.0133818863,-0.0262352508,-0.014769257,0.0109448126,-0.0124496324,-0.0143802064,0.03887574,-0.010864066,0.0080452813,0.0363212153,0.0079865567,-0.0259416271,-0.0181018822,0.0049989386,-0.0263820626,0.01843955,0.0152977798,-0.0362331271,0.0198783055,0.0120091969,-0.0117302546,0.0132057127,-0.0020131555,-0.0109227905,-0.0197902173,-0.0085003972,-0.0174118672,-0.0279089045,-0.0145123368,-0.0049805869,0.0233136993,-0.0342658497,0.0262058899,0.0111063058,-0.0115320589,0.029421065,0.0283199772,-0.0230641179,-0.0051237284,-0.0259563085,-0.0287750941,-0.0249139462,-0.0177642163,0.0164869539,0.0214345083,0.0155473594,0.0248845834,0.0415770747,-0.0216547269,-0.0090436013,-0.0064156712,-0.0401383191,0.0255745985,0.0102034137,-0.017793579,-0.0037840717,0.009124347,0.0173237808,0.016149288,-0.0031601219,-0.0253250189,-0.0329739079,-0.0028628283,-0.031681966,0.0725249797,0.0202453341,-0.0184835941,0.0102694789,0.0004193309,-0.0276740063,0.0214491896,0.0084710354,-0.0327390097,0.0220804792,-0.028158484,0.0039162021,0.0355871581,0.0050723446,0.0185423177,0.0293917023,0.0244294666,-0.0170888826,-0.0281731654,0.0057807108,0.0304193851,0.0157528948,0.0041767932,-0.0219777115,0.0486827604,-0.0080452813,-0.0046796231,0.0014249911,0.0036042272,0.003097727,0.0046245689,-0.0030096399,0.0354697071,-0.0146811707,-0.0204361882,-0.0363212153,-0.0101226671,0.0335024297,-0.0187038109,0.0029178825,0.0110916244,-0.0188653041,0.0230787992,0.0262792949,-0.0127359154,0.0010056602,-0.0495049059,-0.0058027324,-0.0085884845,0.008838065,0.0077149551,0.0232696552,0.0241652057,-0.0032335278,0.003864818,-0.0046429201,0.0303606596,-0.0188653041,0.0150261782,-0.0275565572,0.0128240027,0.0281731654,0.0287457313,0.002495799,0.0293770209,0.0386408418,-0.0460401513,0.0076048463,-0.013506677,-0.0279823113,-0.038141679,-0.0102034137,0.0051751127,0.020127885,-0.0126551688,0.0140131768,-0.0036684575,-0.0230787992,0.0114880158,0.0012102789,-0.0261031203,0.0304781087,0.0183514636,-0.01417467,-0.0131690102,0.048624035,-0.0162814185,-0.02972937,0.0081847524,-0.0008960102,-0.0007606681,-0.0257654544,-0.0100419205,-0.0062468378,0.0308304578,-0.027776774,0.0515896305,0.0138370031,-0.0099905366,0.013506677,0.019892985,0.0156941712,-0.0014699522,0.006122048,0.023871582,0.0028683336,0.0135286981,-0.019511275,-0.014842663,-0.0148793664,0.0056485804,-0.0120238783,0.0026921595,-0.0136388075,0.0089628547,-0.0013341514,-0.0078544263,0.0116568496,-0.0468035713,0.0229466688,-0.0000063083,-0.0090068979,-0.0226383638,0.0275565572,0.0142480759,-0.0428983793,0.0242532939,0.0163107794,-0.0317700543,0.0194231886,0.0222126115,-0.0410779156,-0.0022021756,-0.0133084813,0.0090582818,-0.029802775,-0.0166484471,0.0284374263,-0.0036152382,0.0104016094,0.0117082335,0.0333849825,-0.0064523742,0.0077443174,0.0166337658,0.012912089,0.0015332648,-0.0041400902,0.0118183419,0.0012543225,-0.0068634469,-0.0141893514,0.0010258468,-0.0003399609,-0.0003936389,-0.000990979,0.0125817629,0.0030298266,0.0179403909,0.0105410805,-0.0203334205,0.0061183777,-0.0209353492,-0.0231668875,-0.015532678,0.0336492434,-0.0041217385,0.0063569467,0.001154307,0.0204655509,-0.0163988676,-0.0152243739,-0.011172371,0.0133011406,-0.0172650553,0.016868664,-0.0176027231,0.0024315689,0.0114439726,0.0149821341,0.0059752362,-0.0199076664,-0.0174705926,0.0105337398,0.0080159185,0.0160758812,0.0149087282,0.0299789496,0.0008840817,0.0010698903,0.0330619961,0.0021929997,0.0290246736,0.0203040577,0.0044630757,0.0025380072,-0.0035748649,-0.0247671343,0.0329151824,-0.0053402758,0.0009662045,-0.0251488443,0.0039492347,-0.0103575652,0.0202453341,0.0086545497,0.0099391527,-0.0309479069,-0.0000532192,-0.0045364816,-0.0273069777,0.0173531435,0.0050796848,0.0354109816,0.0234311484,-0.0078397449,0.0075094188,0.026778454,-0.0276152808,0.0413421765,-0.0019360794,-0.0206564069,0.0174999554,-0.0121633494,0.0100272391,0.0257067289,-0.033326257,-0.0009597815,0.0214051455,0.0225943215,-0.0145710614,0.0261765271,-0.0373488963,0.0239156261,0.0349118225,-0.0029087069,-0.0240624379,-0.0082067745,0.0086839125,-0.0086031659,0.0356458798,-0.0321811251,0.0182927381,-0.0164282303,0.0085884845,0.0028811796,-0.0099464925,0.0290833991,0.0457171649,0.0064670555,0.0142113725,-0.0015314296,0.0067056245,0.0160611998,0.002596732,0.0424579456,-0.0054503847],"76":[-0.0006839704,0.0024608674,0.0702080578,0.0230604466,0.0485328697,0.0290577933,0.0045061582,0.0198010188,-0.0251464806,-0.0165334437,0.0332135633,-0.029774867,0.0193772949,-0.0279658847,0.0484350882,0.0393086895,-0.0253094509,-0.0058547459,-0.0237938184,0.0200780705,-0.0192958079,0.0148140965,0.0192306191,0.0304267518,-0.0264176559,-0.0189046767,-0.0248531308,0.060429778,0.023907898,-0.0286177695,0.0238101147,-0.0520856455,-0.0267436001,-0.0101775611,0.0232723095,0.0123369312,0.0421117991,0.0232234187,0.0288785249,0.0173238553,-0.0274769701,0.0436763242,0.0032777614,0.0089634247,-0.012768806,0.0055939918,-0.0483698994,-0.032007575,-0.0216262992,0.0670138225,-0.0439044833,0.0025280931,-0.0308667738,-0.0194587801,0.012247297,-0.0412317514,-0.0228811782,0.0034061014,-0.0031331242,-0.0181387123,0.0092730699,-0.0583111495,0.0182690881,0.0407428369,0.002526056,0.0343543626,-0.0320401676,0.0547257811,-0.0244619995,0.0089308303,0.0191654321,0.0225552358,-0.0223433729,-0.0170956943,0.0402539261,-0.0443608016,0.0097130928,0.0403517075,-0.0420792028,-0.0134288399,-0.0039948355,-0.0239893831,-0.0351366252,0.020045476,0.026955463,-0.0339306369,-0.0087841563,-0.0437741056,-0.0135918111,0.0102671953,-0.0236471444,0.0594845451,0.0050317408,-0.0064007002,0.0338002592,-0.0011479295,0.0220663212,0.0030964557,-0.0211210884,0.0147407595,0.0265969243,-0.0113672521,-0.0173238553,-0.0303941574,0.075227581,-0.0099901436,-0.0139503479,0.0077533624,0.0089634247,0.0150422556,-0.1122546718,-0.0264991429,-0.0377441645,0.0114161437,-0.0246738624,-0.02434792,-0.03238241,0.0103079379,0.0005912805,-0.0261569023,-0.0326594599,0.011953949,-0.0366685539,-0.0026034673,0.0003127013,-0.0480765514,0.0217892695,-0.0885260403,-0.0675353259,-0.0005841504,0.0374834128,-0.0079611503,0.0368967131,-0.0430244394,-0.0199802872,0.0026340245,-0.0582459606,0.0106990691,-0.0047057979,-0.0036261126,-0.0135673657,-0.0262709819,0.0364729874,-0.0269228686,-0.0096234586,0.0349736512,-0.0140155368,0.0560947396,-0.0065433001,-0.0120680286,-0.012027286,0.0205506887,-0.0315023623,-0.0195565633,0.0369944982,-0.0173075572,0.020566985,0.0616031736,-0.0093464069,-0.0314045809,0.0291718729,0.0231093373,0.0106827719,0.0156859923,-0.0140155368,-0.0008306446,-0.056942191,-0.0443608016,-0.0915898979,-0.0307852887,-0.0375160053,-0.0341913886,-0.0486306511,0.0004229616,0.0526723415,-0.0035874071,-0.0527701229,-0.0353973769,0.0321705453,-0.0265154392,-0.0476202294,0.007908185,-0.0110331606,0.0171934776,-0.0199965853,0.0166393761,-0.0747712553,0.0290414952,0.0145451939,0.036375206,-0.0503581502,0.058963038,0.0102916406,0.0586044975,0.0088737905,-0.0758142769,0.0396998227,0.0239893831,-0.0251627769,0.0079530021,0.0262220912,0.0341262035,0.0607557222,-0.0271510277,0.0033612843,0.0476202294,0.013070303,0.0132006798,-0.0493803211,-0.0238101147,0.0017132363,0.0209907107,0.0103486814,0.0056347344,-0.018415764,-0.0114650344,-0.0398953892,-0.0122635942,-0.0001591517,0.0197195336,0.0187417064,0.0910683945,0.0046487581,-0.0041313237,0.002324379,0.034908466,0.0243642181,-0.033474315,0.0490217842,0.0397650115,0.0148385419,-0.0289763063,0.0053495346,-0.0531938486,0.0069140596,0.0063151401,0.0202410426,-0.0197684262,-0.0065229284,-0.0316327401,-0.0308830719,0.0204366073,0.0055247289,0.0057162205,0.0046732035,0.0001497299,-0.0408080257,-0.0425029285,0.017372746,0.0558013916,0.0290903877,-0.0161178671,-0.012768806,-0.0068733171,-0.0453060381,-0.0588652529,-0.0279658847,0.0352995954,0.0150259594,-0.0082830191,-0.0156533979,-0.0242175441,-0.0157919247,-0.0133799482,-0.0444911793,0.0251138862,0.032969106,-0.0542368665,0.0169816148,-0.0216100011,0.0374834128,0.0595823266,0.0166393761,-0.0762705952,-0.0200943686,-0.028813336,0.0023793818,0.0040478013,-0.0138607137,-0.0500973947,-0.0167208612,-0.0375160053,0.0201595575,-0.005899563,0.0167534556,-0.0028214415,-0.0046650548,0.0535849817,0.0129399253,-0.0232886057,-0.0055491747,0.0092486246,0.0356581323,0.0033266528,0.0185787342,-0.0063436599,0.0290089007,-0.0263198745,-0.0220337268,-0.0343543626,0.024576081,-0.0173238553,0.0039622411,-0.0117420861,0.0339632295,0.0322357342,0.0011204281,-0.0211699791,-0.026059119,0.0030699729,-0.0183505751,-0.0336046927,0.0053495346,-0.0316653326,-0.0236960351,-0.023761224,0.068252407,0.0052924948,-0.0119620971,-0.0397324152,-0.0176335014,-0.0929588601,-0.010910932,0.0322846249,0.0208766311,-0.0272977017,0.0363426134,0.021153681,0.0222292934,-0.0303289685,0.0130132623,-0.0340936072,0.013216977,0.0298400559,-0.0281777475,-0.0442956127,0.0265643317,-0.000720639,-0.0219359435,0.0179594439,-0.0272651073,-0.020420311,-0.0620594919,0.0077492879,0.0030149701,0.0018262977,0.0133962454,-0.0056795515,-0.0039989096,0.00322887,-0.0285362843,-0.0251790751,0.0107072182,0.0182853863,-0.0104057211,0.0000454856,0.0085804416,-0.0295955986,-0.0632654801,0.0016317507,-0.018040929,0.0023325274,0.0196706429,0.0064862599,-0.0148385419,0.0173075572,-0.0403843001,0.0203551222,-0.0236960351,-0.0038318639,0.0303778611,0.01751942,-0.0312416088,-0.0264665484,-0.0454038195,-0.0094686355,0.0524767749,0.0359840766,0.0049747005,0.0377767608,0.0156941414,0.0052069346,0.0005143784,-0.016932724,0.0572029464,0.036375206,0.0176172033,0.0359840766,-0.0577896424,-0.0260917135,0.0158489645,0.0021084419,0.0032329443,-0.008393025,0.0154578332,-0.0047872835,0.0018425949,0.0307200998,0.0580829903,0.0009569474,0.0233374983,-0.0185950324,-0.0318771973,-0.0409384035,0.0105931377,0.0313719846,0.0345825218,0.0223433729,-0.0396020375,-0.0111064976,-0.0106338812,0.0103975721,0.0122065544,-0.0317794159,0.0469031557,-0.0118561657,-0.0380049199,0.0750972033,0.0143496282,0.0791388899,-0.0482069254,-0.0473268814,-0.003732044,-0.008201533,-0.0492499433,0.0462512709,0.0485328697,-0.0171119925,0.0002084251,-0.042176988,-0.0259939302,0.0072929682,0.050260365,-0.0240708683,-0.0213166531,-0.0073255622,0.0144392624,-0.001478965,0.0381352976,0.0073663052,-0.0648300052,0.0007389733,0.0034672157,0.0260102283,-0.0497062616,-0.0126139829,0.0077859564,-0.059549734,0.0198825058,0.0016409178,0.0316979289,-0.015963044,-0.0113346577,-0.0031799786,-0.0249998067,-0.0273465943,0.0298563521,-0.0139259025,0.0190024599,0.0001061224,-0.0338328518,-0.0014229437,-0.0684479699,-0.0099249557,0.0136081083,-0.0090204645,0.0311927181,0.0073051909,0.0270858388,-0.0064088483,0.0059199343,0.0192143228,0.0083359852,-0.0036546327,-0.0111472411,0.009354556,0.0004423145,-0.0030292301,0.0043961522,-0.0210558996,0.0193772949,-0.0414599143,0.0064984825,0.0631351024,0.018855786,0.0320401676,0.0003351099,-0.0035914811,-0.0027745874,0.0104546128,-0.0202573389,0.0089552756,0.0124917543,-0.0219196472,-0.0246575661,0.0059484546,-0.0678612739,-0.0177964717,0.0169164259,-0.031844601,0.015889708,-0.0132088279,0.0308341812,0.0537153594,-0.0101042241,0.0195076708,-0.0132495714,-0.0078185508,0.0097782817,-0.0027725501,-0.0284547992,-0.0041068783,0.028813336,0.0342565775,-0.0163541753,0.0341913886,-0.0115383724,0.0249998067,-0.0167208612,-0.0174379349,-0.0036790783,-0.0255376119,-0.0223596692,-0.0153519018,-0.0010633881,0.0072562997,-0.0385916159,-0.03503884,-0.0209255219,-0.0089389784,0.0127362115,-0.0348758698,0.0020595505,0.010992418,-0.0422421768,0.0283407178,-0.0321705453,-0.0348432772,-0.0207462534,-0.0011020938,0.0161586106,0.0423725508,0.0273791868,0.0381352976,-0.004306518,-0.0218055677,0.0141133191,0.0070770313,0.0144148162,0.0238264129,0.02167519,-0.0148548391,0.0352995954,0.0138525655,0.0024710533,0.0189372711,0.0161178671,0.0156778451,0.0133880964,0.0054269461,0.0191002432,-0.014251845,-0.0183668714,-0.0137547823,-0.0311764199,0.050553713,0.0142273996,-0.0323987044,-0.0291555747,0.0091263959,-0.0116198575,0.0068651685,0.0303452667,0.0234026872,0.0024792016,0.0109598236,-0.0126058348,0.0091426931,0.0018965792,0.0001271941,-0.0436437279,-0.0149852159,-0.0177149866,0.0323172212,-0.0458601378,0.0068081282,0.0237123314,-0.0046609808,0.018480951,-0.0274769701,-0.0115954122,-0.0113998465,-0.0011805238,0.0095990133,0.0297096781,0.0078266989,0.0151400389,-0.002656433,-0.0275258627,0.0213655438,0.0293674376,0.0119865434,-0.0113916975,-0.0295630042,-0.0430570319,0.01558821,-0.0037361183,0.005756963,0.0213655438,-0.010910932,0.0184646547,0.010617584,-0.0130947484,-0.0611142591,-0.0312090144,-0.012622131,-0.0432200022,-0.0203062315,0.0175357182,-0.0315023623,-0.025912445,-0.0288948212,-0.0117828287,-0.0274769701,0.024429407,0.0393412858,-0.0235982519,-0.062450625,0.0047220951,0.0340284184,-0.0044124494,-0.0076189106,0.0312579051,0.0236634407,0.0072400025,0.0324475951,0.0225552358,0.0387871824,-0.0005418797,-0.0125080515,0.0430896245,0.0044450439,-0.0082830191,0.0013149751,0.013811822,-0.0265969243,0.0144229652,0.0243316237,-0.0292207636,-0.0025790217,-0.0035792585,-0.0397650115,0.0728156045,-0.0015757293,0.0240219776,-0.0035711098,-0.0224085618,-0.0265154392,-0.0000839684,0.0381027013,-0.0241034627,0.0255539082,0.0023834561,0.0074763107,-0.0407754332,0.0152459703,0.0348106809,0.0150504047,0.032969106,0.029546706,0.0080467109,-0.0021389991,0.0477180108,0.0137384851,0.0450126864,0.0157267358,0.0223759674,-0.0013730336,-0.0006060497,0.0582459606,-0.0211210884,0.0027949587,-0.0340610147,0.0040824325,-0.0088086016,-0.0060747573,-0.0040437267,0.0240382757,0.0523138046,0.0079937447,0.0193772949,0.000847451,0.0150341075,-0.0166719705,-0.0039214981,-0.0271184333,0.0123287831,0.0219033509,-0.0275584552,-0.0151970787,-0.0062336545,0.0032655385,-0.0619291142,-0.0351040289,-0.0177638773,-0.0032716501,0.0372226574,-0.0019363035,0.0204366073,-0.0128339939,-0.041427318,0.0090530589,-0.0287970379,0.0167697519,0.0064414428,0.0075007565,-0.0327083506,0.0255213138,-0.0157674793,-0.0114487372,-0.0536827631,-0.0023467876,-0.0124347145,-0.025912445,0.0528353117,-0.0083604306,0.0109516755,0.0110168634,0.0197847225,-0.0019312105,0.0075292764,-0.0081933849,0.0154741304,-0.0237286296,0.0057121459,-0.000482548,-0.0188720822,0.004192438,-0.0457949489,0.0067144199,-0.0217566751,0.0031555328,-0.0032329443,-0.0238101147,0.0489565954,-0.0248531308,0.0317957103,0.028731849,0.0091019506,0.0050195176,-0.0203714184,0.0182527918,0.0032940586,-0.0103731267,-0.00972939,-0.0194261856,0.0045794952,0.0094604874,0.0109761208,0.0497388579,-0.0062947688,0.022946367,-0.0195076708,0.0077248421,0.0048687691,0.0180572253,-0.0233537946,0.001213118,-0.0105360979,-0.0534220114,-0.018415764,-0.014406668,-0.0073988996,-0.022718206,0.068839103,-0.0007048511,0.0010521838,0.0077859564,-0.0113509549,-0.0278518051,-0.0013129379,0.0107072182,-0.0286014732,-0.0141622107,-0.0247879438,-0.0049991463,0.0240219776,-0.0107398126,-0.0214470308,-0.032806132,-0.0343217663,-0.0181224141,-0.0034957356,0.0259776339,0.0005617419,-0.0167208612,0.0124591598,-0.1028023288,-0.0378419496,0.0394390672,-0.0198662076,-0.0227833949,0.0043920781,0.0089308303,0.0324475951,0.0257005822,-0.0095338244,-0.0091508413,-0.0510426275,-0.0215122197,-0.0125569431,-0.0350062475,0.0000253688,0.0165008493,0.0243153255,0.0290414952,0.0195402652,-0.0223922636,0.000656469,-0.0327246487,0.0303289685,-0.0106420293,-0.0101205213,-0.0197358318,0.0380375125,0.0196706429,-0.0321379527,0.0242827311,0.0109679718,0.0043350379,-0.0020147334,-0.006196986,0.010919081,-0.0020137148,0.0100797787,0.0028947787,0.0046243123,-0.0370596871,-0.0394716635,0.0313882828,-0.0433503799,0.052411586,-0.0176335014,-0.0012538609,0.0227019098,-0.0120843258,0.0130866002,0.0365707725,0.0057406658,0.0010857966,0.0073622311,-0.0156289525,0.0169979129,-0.0546279997,-0.0247879438,0.0132495714,0.0080752308,0.0080263391,0.0265643317,0.0254561249,-0.058800064,-0.0198173169,-0.0110983495,0.0113916975,0.0134695824,0.013811822,0.0030231187,0.025765771,0.0102264527,0.018709112,-0.01751942,0.0295793004,0.0013007151,0.0126547255,-0.0106501784,-0.015661547,-0.0109435264,0.0193121061,-0.028731849,-0.0236308463,0.030068215,-0.0266295187,-0.0302474834,-0.0143496282,-0.023679737,0.0084256195,0.00972939,0.0559969582,0.0040885438,-0.0023610475,-0.0042413296,-0.0233700927,-0.0068651685,0.021528516,-0.0079285568,0.0121495146,-0.0120028406,0.0189535692,-0.0032268327,0.0108538922,-0.0059606773,-0.0269880556,-0.0130377086,0.0205832813,-0.0096723503,-0.0015675807,0.0119865434,-0.0047832094,-0.000265847,0.0072685224,0.0256842859,0.0063803284,0.0079692993,0.0164927002,0.0003139745,-0.0118561657,-0.0283570159,0.0418184511,-0.0204366073,-0.0119295027,0.0226041265,-0.0114242919,0.0177801754,0.0557362027,0.0113183605,0.0102427499,-0.0183179807,0.0026971758,0.0645692497,-0.00334295,0.0609512851,0.009802727,-0.0307852887,0.020045476,0.0135592166,0.0072644483,0.0387871824,0.0017101807,0.0058791917,-0.0049584033,-0.0086293332,0.0208929274,0.0084500648,-0.0098190242,-0.0149200279,-0.0357233211,0.0509122498,0.0263035763,-0.017372746,-0.0069996198,0.0570725687,-0.0243153255,0.0559969582,-0.0593541674,-0.0329528078,-0.0132251251,-0.0123450803,0.0033327641,0.030589724,0.0342891738,-0.0269228686,0.0329365097,-0.0181387123,-0.0366359614,0.0079163332,-0.0249509141,0.0120843258,-0.0096804984,0.0141459135,0.0106501784,0.0330994837,0.043741513,0.0354625657,-0.0102834925,-0.0042983694,0.0035711098,0.0267110057,-0.0248694289,-0.0283733122,0.0187417064,0.0163623244,0.0231093373,-0.0139421998,-0.0266132224,0.0344521441,-0.0015808222,0.0144148162,0.0260754172,0.0296770837,0.0105279498,0.0355277546,-0.0054880604,0.0003088817,0.0477506071,-0.0113102123,-0.0099331038,0.0319749787,-0.0218544584,0.0140073877,0.0045224549,-0.0161423124,-0.0095908642,0.0356255397,-0.0179594439,0.0180572253,-0.033343941,0.0193935912,-0.0080018938,-0.0010817223,-0.0033898042,0.0132332742,0.0023916047,0.0138199711,0.0292370617,-0.0010058389,0.0015635064,-0.0263198745,-0.0347780883,-0.0304104555,-0.0147652049,0.0104546128,0.0075985393,0.0256190971,-0.0120354341,0.0004331473,-0.0115383724,0.0183505751,0.0084500648,0.0121984063,0.007908185,0.0075781681,0.0287155528,0.035201814,-0.0025199447,0.0134206908,-0.0262220912,0.0137384851,0.0088656414,-0.0018140749,0.0080222646,-0.0343217663,-0.0199965853,-0.0082300538,0.0303778611,0.0420792028,0.0435133502,0.0010582953,0.0024221619,0.0181713067,0.0228648819,-0.0113754002,0.0326431617,0.0396020375,0.0001930192,0.0241034627,0.0056591802,-0.0205180943,0.0035324041,0.0147977993,-0.0049543292,0.0013832194,-0.008686373,0.0096234586,0.0038155669,0.0072888937,0.0141377654,-0.0179268494,-0.0169816148,0.0177312829,0.0266132224,-0.0119946916,-0.0121658118,0.0433829762,-0.0668182522,-0.0130866002,0.0012976594,-0.0087515619,-0.0076922481,-0.0034386956,-0.0051376722,-0.0025036475,0.0267110057,-0.0084174704,0.0060747573,-0.0282103419,0.0191654321,-0.0368641205,-0.0116443029,0.0193447005,-0.0043920781,0.0246901605,-0.0254561249,0.0016348064,-0.0077370652,0.0331972651,-0.0027399559,-0.0224574525,-0.0085071046,-0.0156452507,0.0255702063,0.0175031237,0.0239241943,0.0189698655,-0.0133473538,-0.0019729719,-0.0220826194,0.0206321739,-0.0036994498,-0.0124428626,0.0264828447,0.0476854183,-0.0011306137,-0.0206158757,0.0354299732,0.0159956384,0.0267598964,0.0318608992,0.0079570767,0.0189209748,0.0148548391,0.0250161029,-0.0123695256,0.0295630042,0.0258798506,0.0005714183,-0.0316816308,0.0150178103,-0.0081689395,0.0027786617,0.0254398286,0.0138933081,-0.0419814214,0.0172586665,0.0067225685,0.0000275014,-0.0103731267,-0.0030944187,0.0054432433,-0.0135918111,-0.0113998465,-0.0026462474,0.0139259025,-0.0216100011,0.0065188543,0.0176335014,-0.0281288549,0.0087108193,0.0780958757,0.0051091518,-0.0098434696,0.0018914862,-0.0246249717,-0.0357559137,-0.0004438423,0.002409939,-0.0014198879,0.0254398286,-0.0314208791,-0.0120191379,-0.0432525985,0.0164112151,-0.0009925974,-0.012622131,-0.0068936883,0.0205180943,0.0231419317,-0.0176172033,0.0319749787,0.0206973627,-0.0052313805,-0.0447193384,-0.0328550264,-0.0320401676,0.0182690881,-0.0264176559,0.0019556563,0.0326105691,-0.003746304,-0.043578539,0.0127606569,0.023386389,-0.0143740736,0.0168186445,-0.0068122027,0.0175846089,0.0117583834,-0.0033918414,-0.0066533056,-0.0342891738,-0.0043105925,-0.0105849896,-0.0126791717,0.0413621292,-0.0060258657,-0.0295955986,0.000369232,-0.0388523713,-0.0310949348,0.0076148366,0.0157511812,-0.0126710227,0.0073214881,-0.0031188643,0.0568118133,0.0383308642,0.0089960191,0.0258309599,-0.0251790751,0.0026014303,-0.0137873767,-0.0130866002,-0.034908466,-0.0522812121,0.017600907,0.0003195766,0.0074803852,-0.0257168803,0.0039337212,0.0384938344,0.0010318124,-0.0040844698,0.0459579229,0.0032186843,0.0090856533,0.0298889466,0.016337879,-0.0486958399,-0.034745492,-0.0038787182,-0.0287807416,0.0374182239,-0.0185950324,0.0085722934,0.0113672521,0.0125813885,-0.0164601076,0.0322357342,0.0085559962,-0.018334277,0.0239567887,0.0002874917,-0.0019790833,-0.0303126723,-0.0409384035,-0.0176823922,-0.0154089415,-0.029481519,0.021528516,0.0124673089,-0.0135918111,0.01581637,0.0090204645,-0.0174379349,-0.0024547561,-0.025765771,-0.0196543448,-0.0088900877,-0.0334417224,0.0237286296,0.0149037307,0.007871516,0.0287481472,0.0362448283,-0.0108050006,-0.0100553324,-0.0444259904,-0.0260265246,0.038819775,0.021381842,-0.0168186445,-0.0058180774,0.0139829423,0.0089063849,0.0189535692,0.0008530532,-0.0011102423,-0.008384876,0.0059077116,0.0064781113,0.0628417581,-0.0020035291,-0.0080630081,0.02896001,0.0065962654,0.0020778847,0.0094034476,0.017894255,-0.061994303,0.035495162,-0.0164682548,0.0061480943,0.0299052428,-0.0034549928,0.0125976857,0.0316001475,0.0221152119,-0.0034651784,-0.0213003568,0.0097130928,0.0583437458,0.0227019098,-0.0040253922,-0.0146837188,0.0332461558,-0.029253358,0.016932724,-0.0142192505,0.0018823191,-0.0050072949,-0.0076515051,-0.0264991429,0.0324313007,-0.0354299732,-0.0051498949,-0.0221641045,-0.0153844962,0.0234352816,0.0053617577,-0.0245271884,-0.0091263959,0.0040742839,0.0316653326,-0.0043187407,-0.0055736206,0.0129643716,-0.0278192107,0.0210396014,0.0015309121,-0.0010644067,0.0115139261,0.0287970379,0.0049991463,0.0011153353,-0.0098597668,-0.003302207,0.0137629313,0.0096804984,-0.0038950155,-0.0130377086,-0.0008393025,0.0348758698,0.0228485838,0.0281288549,0.0262546856,0.0197195336,-0.0435459465,0.0159956384,-0.0363100171,-0.0194750763,-0.0168838315,-0.0195402652,-0.005121375,0.0223596692,-0.0237775203,-0.0100797787,-0.021235168,-0.0122065544,-0.0101286694,0.0007496682,-0.0276725367,0.0143007366,0.0301659983,-0.0022612275,-0.0073785279,0.068252407,0.0124510117,-0.0382656753,-0.0012375637,0.0057284432,0.02969338,-0.0264991429,0.0076148366,0.0189535692,0.0251627769,-0.0325290821,0.0183668714,-0.0043024439,-0.0091100987,-0.0153193073,0.0190350544,0.0183994658,0.0010511653,-0.0234515779,0.0251627769,-0.0283896104,0.0215937048,-0.0199151002,-0.027102137,-0.0123613775,-0.0041537322,-0.0057406658,0.0233049039,0.006384403,0.0070729568,-0.0058954889,-0.0060951286,0.0056306603,-0.0474572591,0.0292370617,0.0081078252,-0.0178127699,-0.0174053404,0.0115954122,0.0158571135,-0.0209255219,0.0083522815,0.0264665484,-0.0309808552,0.0026095789,0.0090775043,-0.0175846089,0.007460014,0.000627949,0.0090938015,-0.0299541354,-0.0188394878,0.0138036739,-0.0087108193,0.008018191,0.0208114423,0.0157837756,0.0015604508,0.0187254082,0.0203388259,0.0140644275,-0.0040722466,-0.0014636865,-0.0070036938,-0.0066492311,-0.0109679718,-0.0280962624,0.0095990133,-0.0061358716,-0.0204366073,0.0102997897,0.0085804416,0.0094930818,0.011880612,0.0225226413,0.0081118988,0.0130621539,0.0042168838,-0.0135592166,-0.0061440202,0.0145696392,-0.0041496581,-0.0008362468,0.0027582902,0.0103242351,-0.0008627296,-0.0221966989,0.0217729732,0.0281777475,-0.0128095485,0.0207788479,0.0121087721,-0.0102346009,0.01484669,0.0177964717,-0.0057691862,-0.026205793,-0.009574567,-0.0216262992,0.0132495714,0.0284710955,0.0145696392,-0.0016765678,0.0213492475,0.0175683126,0.0147815021,-0.0113672521,0.0270369481,0.0134614343,0.0013465508,-0.0097375382,0.0049217348,-0.0223759674,0.0317631178,-0.0061929114,0.0111635374,-0.0197847225,0.0183505751,-0.0018283349,0.0236308463,0.0181061178,0.0128502911,-0.0240219776,-0.0163052846,0.0163541753,-0.0224085618,0.0076352078,-0.0016460107,0.0590608194,0.0199313965,0.0206321739,-0.0046691294,0.0084582129,-0.005756963,0.0478483886,-0.023386389,-0.0132251251,0.0015095222,0.0124347145,0.0169653185,0.0143170338,-0.0160852727,0.0215774067,0.0276073478,0.0000440214,-0.0107398126,0.010837595,-0.0317957103,0.0180898197,0.0344847403,0.0161015689,-0.0152541185,-0.0178290661,0.0026299502,0.0074803852,0.0102671953,-0.015221525,0.0093138125,-0.0398627929,0.0056673288,-0.0038563097,-0.0000989924,0.0324638933,0.0140970219,0.0226856135,0.006759237,0.0076189106,0.0179105513,0.0200780705,-0.0060380888,0.0247064568,0.004420598],"77":[0.0279459842,0.0145255961,0.0583607443,-0.0067137824,0.0642456189,0.018386649,0.0159035176,-0.0019107906,-0.020754952,0.0073309764,0.0351944305,-0.0009002245,0.0041373549,-0.0199224576,0.0380938053,0.0342184007,0.0104492428,-0.0022104168,0.0057915794,0.0388975963,-0.0023862454,0.0138653424,0.0480837412,0.0159178711,-0.014654777,-0.0241423454,-0.0044064801,0.0677478388,0.0088488441,-0.0698147267,-0.0027038134,-0.0330701321,-0.0537102595,0.0111812642,0.0229079556,0.0133557981,0.0223912355,0.008949318,0.0473947823,0.0082388259,0.0091502648,0.0260513406,-0.0062867701,0.0306300614,-0.0115903346,0.0037713442,-0.0387540609,-0.0390698351,0.0005840022,0.068149738,-0.0410218909,0.0144394767,-0.0192334969,-0.0452130735,0.013779222,-0.0248025991,-0.009272268,-0.0148557238,-0.0010971347,-0.005368155,0.0089564938,-0.0545714609,0.0239270441,0.0070654396,-0.0226783026,0.016506359,-0.0175828617,0.0353379622,-0.0544853397,0.0034950422,0.0319792777,0.0042342399,0.0194057375,0.0019018197,0.0200229324,-0.0522175096,-0.0205970667,0.0548011139,-0.0404477566,0.0004575132,-0.0233098511,-0.0253193192,-0.0113606816,0.0185875967,0.0168364868,-0.0223912355,-0.0198219847,-0.0279316306,-0.0112602077,0.0215587411,-0.0223338213,0.0555761941,0.0409070663,0.0082962401,0.0174536817,-0.0054901587,0.0340174548,0.0388401821,0.0243145861,0.0384669937,0.0042234752,-0.0133701516,-0.0131835574,-0.025649447,0.0403616391,-0.0207980126,0.0083034169,0.0071264412,-0.0019359089,-0.0016605039,-0.1020236537,-0.0031021191,-0.0247308332,0.0171809681,-0.0170804933,-0.0119922291,-0.033041425,0.0207406003,0.0110090245,0.0051385015,-0.0164920054,0.0108224303,-0.0518443212,0.0244437661,-0.0010253679,-0.0589635856,0.024415059,-0.037031658,-0.0385818221,-0.0130041409,0.0667718127,-0.0230084304,0.0422562808,-0.0424572267,-0.042313695,0.0087196641,-0.0409644768,-0.0148270167,-0.0095736887,-0.0136643946,-0.0095378049,-0.0093583884,-0.0077077523,-0.0186019503,0.0134778013,0.0387540609,-0.0341609865,0.0281899907,-0.0081455298,-0.0094947452,-0.0075570419,-0.0109516103,-0.0306013543,-0.0304004084,0.0323524661,-0.0226065367,-0.01287496,0.047538314,0.0198219847,-0.052590698,0.018156996,0.0418543853,-0.036543645,0.0290655456,-0.032553412,-0.0079086991,-0.0310032498,-0.0250466056,-0.074063316,-0.0197789241,-0.0542843938,-0.0237260982,-0.0149418432,0.0045679556,0.0365149379,-0.0245298855,-0.004295242,-0.0664847419,0.0151571436,-0.0131046139,-0.0301994607,0.0009661603,-0.0412228368,0.0283335242,-0.0193770304,-0.0187598355,-0.0674033612,0.0112099713,-0.0173388533,0.0121788224,-0.0395865552,0.042572055,-0.0007387493,0.0321802236,0.0202812925,-0.0444379896,0.0184153561,0.0437777378,-0.0218027476,0.0108798435,0.0719390213,0.0209846068,0.0869813412,0.0093009751,0.0006014953,0.0042593586,-0.0000014893,-0.006128883,-0.051786907,-0.0229079556,-0.0177120417,-0.0084828334,-0.0064159501,0.0098966388,-0.0269125421,-0.0082890633,-0.0520165637,-0.0170087274,-0.0190899633,-0.0090856748,0.0232380833,0.0353379622,0.0076001021,-0.0087627238,-0.0009930729,0.0320941024,0.0460168608,-0.0421988666,0.035022188,0.0179560483,-0.0024310998,-0.0622935668,-0.0187885426,-0.0328691863,0.0048047858,-0.0071910312,0.0119061088,-0.014654777,-0.0164776519,-0.051786907,-0.0018784954,0.0068178442,-0.0225060619,0.0132768545,-0.0209989604,0.027658917,-0.0368594192,-0.06154719,0.0150853768,0.0549733527,0.038811475,-0.0426007621,-0.0005095442,-0.0218171012,-0.0378641523,-0.0946173221,0.0016847252,0.0094660381,0.0145686567,0.0052712699,-0.0176115688,-0.0016147526,-0.0031774743,-0.0125089502,-0.0415386111,0.0410793051,-0.0029783214,-0.0418543853,0.0272283163,-0.0374048464,0.0384095795,0.0331849605,0.0027666094,-0.0417395607,0.0056121624,-0.0309745427,-0.0044028922,-0.0027432851,-0.0237835106,-0.0289363656,-0.0072699748,-0.0523036309,0.0194631517,0.0185014755,0.0366584696,0.0075283353,-0.0195779782,0.0513850152,0.0154729178,-0.0158748124,0.0115257446,0.0077149291,0.0194918569,-0.0162623525,0.0051636198,-0.0051385015,-0.0085976599,-0.0013761281,-0.0511266552,-0.038553115,0.0071802665,0.00728074,0.0094588613,-0.0225921832,0.0163054131,-0.0101693524,-0.0049411426,-0.009824872,0.0073094466,-0.0126309535,0.0100114662,-0.0068465509,-0.0356537364,-0.0192047898,-0.0296540335,-0.0148270167,0.0717667788,-0.0075570419,-0.0224917084,-0.0697573125,0.0092292083,-0.0600544401,-0.0279890448,0.0191473775,0.037031658,0.0069506126,0.0362852849,-0.0122434124,0.0260944013,-0.026783362,-0.0014227764,0.0063334182,0.0281182248,0.0233242027,-0.0494042523,-0.0380938053,0.0101119392,0.0045033656,-0.0086981338,0.0131117906,-0.0502367467,-0.0240849312,-0.0657383725,0.0145471264,-0.0086407205,0.0200085789,0.0058346391,-0.0014012464,0.0051600314,0.00637289,-0.0398449153,0.0010800901,0.0169226062,-0.0208841339,0.0184440631,0.0309745427,0.021300381,-0.0431174822,-0.0266828891,-0.0237978641,0.0053394483,0.0216161534,0.055317834,0.0026589592,-0.0123654166,0.024903072,-0.0190756097,0.0177407488,0.0072735632,0.010829607,0.0433758423,0.0195779782,-0.0429165363,-0.0012155499,-0.0551168881,0.0027038134,0.0459020324,0.0269699562,-0.0184297096,0.0684368014,0.0106645431,0.0248456597,0.0081239995,-0.017381914,0.0448972993,0.0484569296,-0.0345054679,0.0346777067,-0.0707907528,-0.0266828891,0.0182431154,0.0171235539,-0.0106430138,-0.0176976882,0.0137935756,0.0112889148,-0.0301994607,0.048571758,0.0717093647,-0.0098105185,0.0497487336,0.005364567,-0.0526194051,-0.0091215577,0.0292234328,0.0279316306,-0.0099612288,0.0118486956,-0.0248025991,-0.020625772,-0.0089995544,-0.0325247049,0.0415960252,-0.0267115962,0.0187454838,-0.0132983848,-0.0005732371,0.0627528727,-0.0159896389,0.0582172126,-0.0321802236,-0.0234677363,-0.033041425,-0.0132696778,-0.0459594466,0.0457297936,0.0081527065,-0.0098751094,-0.016635539,-0.0263097025,-0.0210563727,0.020654479,0.0263384078,-0.0181139354,-0.0119132856,-0.0021368559,0.0458446182,-0.0015115878,0.0490310639,-0.0259365141,-0.0392994881,0.0260369871,-0.0262235813,0.0141524095,-0.0341322795,-0.0220036954,0.0012801399,-0.0643030331,-0.0230658427,-0.0140160518,0.0145543031,-0.0298262741,-0.0026840775,0.023281144,-0.0172527339,-0.024903072,0.0370603651,-0.0213577934,0.033041425,-0.0181713495,-0.020037286,-0.0031362083,-0.0597673729,-0.0438064411,0.002877848,-0.0406487063,0.0457297936,0.0014227764,0.0157599859,-0.0074780984,0.0181426425,0.0246016532,-0.0242571719,-0.022635242,-0.0150710242,0.0018569655,0.0161188189,-0.0095162755,-0.0067855492,-0.0379502736,0.0116979852,-0.035022188,0.0157169253,0.0645901039,0.033012718,0.0272283163,0.0036278109,0.0025423381,0.0032797419,0.0002825817,-0.0269986633,-0.0064303037,0.0376919135,-0.0174393281,-0.0455575511,0.0229223091,-0.0976028219,-0.0488588251,0.0327543579,-0.0022050343,0.0097531052,0.0044531287,0.0077077523,0.060858231,-0.0271996092,0.001046898,0.0031290315,-0.010312886,-0.0057449308,-0.0276445635,0.0016658864,-0.0137002785,0.0256638005,0.0250896662,-0.0152002042,0.0308023021,-0.0052246214,0.0037354608,-0.0085115405,-0.0051385015,-0.0187454838,-0.0379215665,-0.0194631517,-0.0080235256,-0.0088273138,0.0136213349,-0.0411080122,0.0154442107,-0.0365723521,0.014461006,-0.0064231269,-0.0285201184,0.0061396481,-0.0098607559,-0.0353953764,0.0203099996,-0.0139084021,-0.042313695,-0.0437490307,0.0075283353,0.000497882,0.0171666145,0.0154155046,0.0219893418,-0.0104061831,-0.0349360704,0.0152863245,-0.0173675604,-0.0050846762,0.0085115405,0.005787991,-0.0350508951,0.0132194413,0.0025082489,0.0115688052,-0.0054291571,0.0315773822,0.0260226354,0.0176115688,0.0058705225,0.0224486496,-0.0221185219,0.0031092959,-0.0136859249,-0.0068824342,0.0292808469,-0.0164776519,-0.0373761393,-0.0237835106,0.0088631976,-0.012257766,-0.0208984856,0.0098966388,0.0060607046,-0.0013196117,0.0104277134,-0.0028276111,-0.0096095717,0.0139084021,0.0012469478,-0.0209271926,-0.0130974371,-0.0466197021,0.0276445635,-0.0244437661,-0.0121788224,0.0571263582,0.0184871219,0.0162336454,-0.0322663449,0.0043957154,0.0086981338,-0.0015645158,0.0075426884,0.0168651938,0.0154872714,0.0058884644,0.0030231755,-0.0272139627,0.0232237298,0.0378067382,0.0164776519,-0.0144179463,-0.0122721195,-0.0236830376,0.0198650453,-0.0056301039,-0.0015600304,0.0492320098,-0.0153293842,0.0439499766,-0.0105425399,-0.0174967404,-0.0373474322,-0.0247595385,-0.0254772063,-0.010248296,-0.0058454042,0.0032976836,0.0098966388,-0.0204104725,-0.0380938053,-0.0029567913,-0.0524184555,0.0194057375,0.0285775326,-0.015271971,-0.0452130735,0.0000948106,0.0303142872,-0.0221472289,0.0006494893,0.0407348238,0.0141811157,-0.0076431623,0.0514711365,0.0275010299,0.0183005296,0.003566809,0.0062939464,0.0559780896,0.0112386774,-0.0130256703,0.0112673845,0.0077866958,-0.0125663634,0.0048047858,0.0303142872,-0.0211999062,-0.0185732432,-0.012709897,-0.0228074826,0.0591932386,0.0208697803,0.0198937524,-0.0080522327,-0.0188603103,-0.0421988666,-0.0028760538,0.0167216603,-0.0421414524,0.0023647153,-0.0228361897,-0.0014308501,-0.0244437661,-0.0078943456,0.0348499492,0.0238696318,0.0204391796,0.018156996,-0.0366871767,-0.0100688795,0.0366584696,0.0268120691,0.0433758423,0.0157886911,0.0290798992,-0.0056444574,0.0092005013,0.0483708084,-0.037261311,0.0054435101,-0.0116333952,0.0237404518,-0.0363426991,-0.0282904655,-0.012157293,0.0023718921,0.0444954038,0.0273862034,0.0114037413,-0.0147265438,0.0013393476,-0.0309458356,0.003451982,-0.0276015028,0.0003124098,0.0214295611,-0.0427442938,-0.0520165637,-0.0015474712,-0.0007095941,-0.0559206754,-0.0258503947,-0.0139371091,0.0056767524,0.0220180489,0.0057700491,0.0279029235,-0.0139801688,-0.0402468108,0.0072663864,-0.0140949953,0.0042808885,-0.0140304053,-0.0193770304,-0.0251040198,0.0287354197,-0.0026158991,-0.0116118649,-0.0589635856,-0.0162049383,-0.0038215811,-0.0380076878,0.0501219183,-0.0189177226,0.0335007347,0.0172383804,0.0052676816,0.0064303037,-0.0068429625,0.0226639491,0.0272426698,-0.0040691765,0.0351083092,-0.0123654166,-0.0134849781,0.0168364868,-0.0431748964,-0.0004646899,-0.0218601618,-0.0201951712,-0.0294817928,-0.0208410732,0.0579875596,-0.0362565778,0.0176689811,0.0300559271,0.0320941024,-0.0119061088,-0.0266972426,0.014138056,-0.0154585643,-0.0014748074,0.0152432639,-0.0267977156,0.0020812366,0.015630804,-0.0013106408,0.0281469319,-0.0004992277,0.0328978933,-0.0329553038,0.0061540012,0.0173245016,0.02775939,-0.0290655456,-0.0020040874,0.0076646921,-0.0561216213,-0.015271971,0.0230371356,0.0219032206,-0.0103846528,0.0574708395,-0.0136213349,-0.004087118,0.0081957662,-0.0037641677,-0.024156699,-0.0041840035,0.0070439093,-0.0270560756,-0.0118415188,-0.0092937984,0.0051026181,0.0243432913,-0.0262522884,-0.0145399496,-0.0325247049,-0.0407635309,-0.002359333,-0.0117984591,0.0091215577,0.0060068797,-0.0081742359,0.0046289572,-0.121371977,-0.0114252716,0.0309458356,-0.0114539778,-0.0069900844,-0.0115400981,0.0352231376,0.0318357423,0.0382947549,-0.011446801,-0.0191473775,-0.0448972993,-0.020295646,-0.004977026,-0.0212573204,-0.0115185678,0.0012505362,0.0163484719,0.0289507192,-0.000720359,-0.0140160518,0.0053789201,-0.0365723521,0.0544279255,0.0260800477,-0.0280321036,-0.0192765575,0.0571263582,0.0310032498,-0.0271565504,0.0008899081,0.025778627,-0.0080809398,0.0042988299,-0.0141667621,0.0122864731,0.0003707203,0.0008504363,0.0051385015,-0.0030124106,-0.0367445908,-0.0571263582,0.0384095795,-0.0480837412,0.0556910224,-0.005368155,0.0043705967,0.0448398851,-0.0066743107,0.0116621014,0.0316347964,0.0079086991,-0.0201234054,-0.0175685082,-0.0029585855,0.0222189948,-0.0532222427,-0.0104564195,0.0111094974,-0.0031613267,-0.0114826849,-0.0029370554,0.0272713769,-0.0486578755,-0.0198937524,0.0017923753,0.002910143,0.0247164797,-0.0056157508,0.0223768819,0.0124300066,0.0185875967,0.0172240268,-0.0094158016,0.0210420191,0.0102267666,0.0155877443,-0.0050344397,-0.023898337,-0.0359408036,0.0201234054,-0.0081239995,-0.0099038156,0.0234390311,-0.016147526,-0.045528844,0.0024023929,0.0262666419,-0.0022480944,0.0046791942,0.0382373407,-0.0095952181,-0.0046002506,0.0043705967,-0.0208267197,0.0020363824,0.019391384,-0.0043634204,0.0067137824,0.0037031658,0.0208267197,-0.0167790726,0.0221472289,0.0139729921,-0.0153867975,-0.0130041409,0.024156699,-0.0315773822,0.0061719432,0.020525299,-0.0095090987,0.000439123,0.0304291155,0.0370603651,0.0254341476,-0.0024633948,0.0093512116,0.0229940768,-0.0222620554,-0.0238409247,0.0228648968,-0.0396152623,-0.0414812006,0.0284770578,0.0009109896,0.0194487981,0.0217740405,-0.0023754805,0.008884727,-0.0053179185,0.0311754886,0.0621213242,-0.0147983097,0.0434906706,-0.0075713955,-0.0085546002,0.0088990806,0.0040009981,0.0331562534,0.0350508951,0.0113104442,0.0236543305,0.0128534306,-0.0091861477,0.0193339698,-0.005124148,-0.0119061088,-0.0093153277,-0.0137002785,0.0406487063,0.0358833894,-0.0500645041,-0.0164776519,0.0732021183,-0.0164920054,0.0454714336,-0.0429452397,-0.034562882,-0.0098535791,0.0006064293,0.022534769,0.0545427538,0.0145327728,-0.0109516103,0.0070797927,-0.0370890722,-0.014138056,0.0009320711,-0.0164633002,-0.0104707731,-0.0065594837,-0.0068931994,0.0100617027,0.0227931291,0.0536528453,0.0240418706,-0.0089564938,0.0130974371,0.003396363,0.0262379348,-0.0178842824,-0.0011446802,-0.0057951673,0.0387253538,0.0207262468,-0.0175398011,-0.0255633276,0.0120496424,-0.0149992574,0.0133199142,0.0209989604,-0.0086048367,0.0040584113,0.0056588105,-0.0099038156,0.0053609787,0.0277306847,0.0021655627,-0.0029209079,0.0208267197,-0.0364575237,0.0268120691,0.0191043168,-0.0261948742,0.0074996287,0.0468493551,-0.0058669341,0.0192622039,-0.0218171012,0.0108583141,0.023539504,-0.0019556447,-0.0040332931,0.0011931227,-0.0152432639,0.0030195874,0.0168651938,-0.0049519078,-0.0007113882,-0.0076072789,-0.0063980087,-0.0366584696,-0.020525299,0.0306300614,-0.0292952005,0.0357398577,-0.01488443,0.0143246492,-0.0016039875,0.0061827083,-0.0016945931,0.0280177519,0.0171379074,0.0228505433,0.0374909677,0.0078441091,0.0036421642,0.0146260699,-0.0097531052,0.0055296305,0.0164489467,0.0097387517,0.0072161499,-0.0329840109,-0.0039435844,-0.0209558997,0.0301133413,0.0129108438,0.0408783592,-0.022893602,-0.0108224303,0.0055081006,0.0214295611,-0.0010809872,0.0485430509,0.0115042152,-0.014461006,0.0154585643,-0.0011509598,-0.0156451575,0.004847846,0.0108152535,0.0048944945,0.0021242967,-0.0003761028,0.0098176952,-0.0042844769,0.0079015223,0.0117553985,-0.0214439146,-0.0225060619,0.0241854042,-0.0136715714,-0.0193770304,-0.0252188463,0.0427442938,-0.0483133979,-0.0270847827,-0.0106430138,-0.0417395607,-0.0125233028,-0.0087699005,-0.0174823869,-0.0238122176,0.030773595,-0.0257355683,0.0021924751,0.0008414655,0.0217740405,-0.0440073907,-0.0152145578,0.0277306847,-0.021630507,0.0419117995,-0.0156451575,0.0052317982,-0.002877848,0.0326969437,0.0021027667,-0.0223051161,-0.0006225768,-0.0342471078,0.0150423171,0.0215730947,0.0121501163,0.0094158016,0.0071228528,-0.0163484719,0.0034107163,0.0161905847,0.0052353865,0.0337303877,0.008590484,0.0471364222,-0.0063693016,-0.022534769,0.0214582682,0.016506359,0.0172240268,0.0313477293,0.0042844769,0.0176259205,0.0031954159,0.026166169,0.0023521562,0.0062078265,0.0183148831,0.0012846254,-0.0450121239,0.0288071856,-0.005917171,-0.0026571651,0.0004456269,0.0271421969,-0.0417969711,0.0099684056,0.0236830376,-0.0048873178,0.0043060067,0.0077508125,0.0036654882,-0.0178842824,0.0057198126,-0.0077795191,-0.0006288564,-0.0206401255,0.0199224576,0.0290511921,-0.0247021262,0.0154155046,0.064130798,-0.0101262927,-0.0248456597,-0.0012011965,0.0025082489,-0.023898337,0.0085402466,0.0086694267,-0.0163915325,0.0226783026,-0.0288358927,-0.0009392477,-0.0348212421,0.0101262927,-0.0121501163,-0.0213290863,-0.0018874663,0.0391559564,0.020754952,-0.0029908805,0.017281441,0.0283191707,-0.0144179463,-0.0376632065,-0.0097531052,-0.0061432365,0.0209846068,-0.0179991089,-0.0154585643,0.0376344994,-0.0045894855,-0.058590401,0.0037749326,0.0477966741,-0.017023081,-0.0060535278,-0.0051707965,0.0051959148,0.0116979852,0.0017152261,-0.0144681828,-0.0328404792,-0.0104994802,0.0085043637,-0.0215730947,0.0411367193,0.0076575154,-0.0198650453,0.0157169253,-0.0194344446,-0.0251901392,-0.013197911,0.0060068797,-0.0216448605,0.0064087734,-0.0080307024,0.0436916165,0.0210994333,0.0064697755,0.0406487063,-0.0228361897,-0.0000121877,-0.0217740405,0.0126022464,-0.0428591222,-0.0484282225,0.0262809955,-0.0042091217,-0.0072233262,-0.0459594466,-0.0165637732,0.0458733253,0.0116477488,0.0117410449,0.0229079556,0.0377206206,0.016147526,0.0282186978,0.0134706246,-0.0702166185,-0.0224773549,0.0086694267,-0.0312903151,0.0205683596,-0.0030142048,0.0071192645,0.0164345931,0.0054722172,-0.006645604,0.0340461619,-0.0003377524,-0.0005481188,0.0214869734,0.0162049383,0.0024903072,-0.0245729461,-0.0137218088,-0.0034143045,-0.0111310277,-0.0122075295,0.0271565504,0.0036385758,-0.031261608,0.0211424939,0.0077723423,-0.0425146408,0.009760282,-0.0197932776,0.0157312788,0.0041086483,-0.0351944305,0.0088990806,0.011640572,0.0187885426,0.0187454838,0.0426868796,-0.0071766782,0.0104707731,-0.0182431154,-0.0360556319,0.0201951712,0.0210563727,-0.0055619255,-0.0042270632,0.0086407205,0.0167790726,0.0044315988,-0.0134275649,0.002011264,-0.0015187645,0.0282617584,-0.006857316,0.0513276011,-0.0012451536,0.0122864731,0.0380363949,-0.0109731406,0.0081957662,0.0184584167,-0.0144753596,-0.0467919409,0.0240418706,-0.0055906321,-0.0138366353,0.0285201184,0.0007997511,0.0206975397,0.0311467834,0.0523610413,0.0005306256,-0.017152261,0.0034771005,0.0598822013,0.0095090987,-0.0015088966,-0.0220036954,0.0179560483,0.0009473215,0.0243863519,-0.0017125348,-0.0088129602,0.0065774256,-0.0160326995,-0.0177838076,0.0358259752,-0.0289650727,-0.0035721916,-0.005949466,-0.0270273704,0.0328691863,-0.0112960916,-0.0018964371,0.0122218831,-0.0031702975,0.0458446182,0.0043562436,0.0046612523,0.0185014755,0.0025656624,0.0161762331,0.0039579379,0.011769752,-0.0103846528,0.0421127453,-0.0020381766,0.0088560209,-0.0235682111,-0.0151571436,0.0101980595,-0.0180995818,0.0034950422,-0.0122936498,-0.0005884876,0.036084339,0.0063764784,0.032295052,0.0204248261,0.0289794262,-0.0498635583,0.0047868444,-0.0138940485,-0.0209415462,-0.0242141113,-0.0142815895,-0.0145112434,0.012451536,-0.0094445087,0.0158173982,-0.0069075525,0.0096382787,-0.0023198612,0.0066491924,-0.0174823869,0.0144538293,0.0177551024,0.0036672824,-0.0117266923,0.025290614,0.0036690766,-0.0301420484,-0.0032833302,-0.008073763,0.0168077797,-0.032295052,0.0068609044,0.0139084021,0.0219462812,-0.0236830376,0.0282186978,-0.0129036671,-0.0200659912,-0.0228218362,0.0179273412,0.0056265155,-0.015142791,0.0026517825,-0.0098392256,-0.0405338779,0.026295349,-0.0220467541,-0.0242284648,-0.0067173708,0.0067999023,-0.005368155,0.0397300906,0.0022247701,0.0047258423,0.0050057331,0.0062006498,0.0026410175,-0.0223338213,0.024644712,0.0049016713,0.0091646174,-0.0460168608,0.0205970667,0.0270560756,-0.0240562242,0.004327537,0.0235538576,-0.0191330239,0.0024526296,-0.0087842541,-0.0174393281,-0.0131189674,0.0139227556,0.0089852009,-0.0366297662,-0.022276409,0.0225204155,-0.0018354354,0.026525002,0.0387540609,-0.0196066853,-0.0105210096,0.012193176,-0.0015322207,0.0171092004,0.0301707536,0.0014514831,-0.0194200911,-0.0159178711,-0.0301994607,-0.0243863519,0.0007620735,0.0030590589,-0.0263240542,-0.0012254178,-0.00024311,0.0129754338,0.0205396526,0.0292234328,-0.005787991,0.0057772258,-0.0008513334,-0.0110592609,-0.0004669326,0.024285879,0.0057628723,-0.0006104662,-0.0220898148,0.0135639217,0.0051492667,-0.0394143164,0.027658917,0.0050057331,-0.0099253459,0.0163484719,0.0030267639,-0.0104205366,0.0149561968,0.0033210078,-0.0021278851,-0.0043060067,-0.0088631976,-0.0156164514,0.0129180206,0.0264819413,0.0152863245,0.0072161499,0.0214152075,0.0149418432,-0.0028617003,0.0032653885,0.0545714609,0.0227070097,0.0120711727,0.0038574645,0.0143246492,-0.0463900454,0.0329553038,-0.0071874429,0.0337590948,-0.0282761119,0.0249748398,0.0131261442,0.0420840383,0.0337016806,0.0191473775,-0.0143677099,-0.0253049675,0.0200085789,-0.0254628528,0.0036367816,-0.0070618512,0.0594228953,0.0191760845,0.0393856093,-0.0291516669,-0.002771992,0.0026015458,0.0547436997,-0.0162910596,-0.0053502135,0.0019987049,0.0034681296,0.0595377199,0.0060535278,-0.0116692781,0.0133055607,0.0403616391,0.0081024691,0.0069003757,-0.0262666419,-0.0100688795,0.0094803916,0.0417395607,-0.0095593352,-0.0301420484,-0.0113535048,-0.004474659,0.0223194696,-0.0213865004,0.0081168227,0.0054148035,-0.0496339053,0.0119850524,0.019032551,-0.0118199885,0.0310893692,0.0235682111,0.0218601618,0.016018346,0.0126883667,0.0246303584,0.003048294,-0.0161188189,0.0185732432,0.008138353],"78":[0.0251301639,0.0214400217,0.0637336448,0.0213828087,0.0703701824,0.0113564888,-0.0059571504,0.0032431786,-0.0251444671,-0.0057283044,0.0189942289,-0.0125650819,0.0350134559,-0.0284627359,0.0335259549,-0.0001372183,0.0080453716,-0.0305509567,-0.030207688,0.0421362929,-0.0011487002,0.0371016786,0.0127939284,-0.0026817904,0.00555667,-0.0233423039,-0.0008657714,0.0655072033,0.0651067197,-0.0411350913,-0.0030876347,-0.0445105694,-0.0333257169,0.0105769821,0.0156759601,0.0247582905,0.0012291539,0.0273328088,0.0740317181,-0.0113421855,-0.0195520408,0.0330968685,-0.0053063696,0.0101836519,-0.0125364764,-0.0178929064,-0.0280908607,-0.0467132144,-0.0019755857,0.0713999867,-0.0285771601,-0.0163624976,-0.0285342503,-0.0467704274,0.0296355728,-0.0498026386,-0.0042229262,0.0332971103,0.0253733136,0.0188655015,-0.0254019201,-0.0557812415,0.0308084097,0.0468562432,-0.0585273951,0.00491304,-0.0279907417,0.0573545583,-0.010855888,0.0137236156,0.0298358127,-0.0141884591,-0.0061573908,0.0108987968,0.0447394177,-0.052577395,-0.0345271602,0.0459980704,-0.0157760791,-0.0027676078,0.003647235,-0.0113350349,-0.0187939871,0.0371588878,-0.0141670052,-0.0217546839,-0.0330682658,-0.0263745151,0.000742409,0.0284913424,-0.0452257134,0.0733451843,0.0295497552,0.0068188994,0.026674876,0.0150609352,0.0182361752,0.012722414,0.004644861,0.0177927855,0.0210824497,-0.0237570871,-0.028262496,0.0035918113,0.0153469928,-0.0187796839,0.0036829922,-0.0022437647,0.0127367172,0.0163195897,-0.0877624899,-0.0278334096,-0.0288918223,0.0115638804,0.0030161203,0.0025727309,-0.0325819664,-0.0075090132,-0.0149894208,-0.006529266,-0.010140744,0.0072980458,-0.0086317901,0.0316951871,0.0102909235,-0.0118785435,0.0219692271,-0.0369014367,-0.0373019166,-0.0135233756,0.0473139361,-0.0067509604,0.0502889343,-0.0221122559,-0.006629386,-0.0216974728,-0.0228703097,0.0017100883,-0.0184936263,-0.032925237,-0.0065578716,-0.0475427806,0.0107915252,-0.0143743968,-0.0002996901,0.0259168223,-0.0239859335,0.0578980669,0.0334687456,0.0084816096,0.0168344919,0.0015929835,-0.0421935022,-0.0030733319,0.0726586431,0.0062396326,0.0303507168,0.0385319665,-0.0292493943,-0.0438526385,0.0041835932,0.0306939855,-0.0125865368,0.0143600944,-0.0390468687,0.015718868,-0.0294067264,-0.03532812,-0.0673951805,-0.0099333515,-0.06430576,-0.0292923041,-0.0140668852,0.0056103058,0.0349276401,-0.0075161648,-0.003940444,-0.0407632142,0.0347560048,-0.0301504768,-0.0477716289,-0.0129584111,-0.0423651375,0.0284770392,-0.0044338936,-0.008653244,-0.0463699438,0.0205961503,-0.008495912,0.0079738572,-0.0751187354,0.0563533567,0.0369300433,0.0434521586,0.0218118951,-0.0487728305,0.011828484,0.0272755977,-0.0591567233,0.011470912,0.0625322014,0.0118141808,0.0502889343,-0.0064327214,0.0061252094,0.0107343132,0.0076949508,0.0114351548,-0.0570398942,-0.0217546839,-0.0171920657,0.0064219944,-0.0064827814,-0.0109917652,-0.0094255991,-0.0304079279,-0.0294067264,-0.0429086462,-0.0336117744,-0.0107343132,0.0345843695,0.0584129728,-0.0021668868,-0.015561536,-0.0244007185,0.0351850912,0.019094348,-0.0176497567,0.0334401391,-0.004644861,-0.0021221901,-0.0149465119,0.0137522211,-0.0624749921,0.0319812447,0.0045483168,-0.0153469928,-0.050174512,-0.0298358127,-0.0426225886,-0.0111562479,-0.0050560688,-0.0208249968,-0.0212540831,-0.0022097954,0.0166771617,-0.0463699438,-0.0811259523,0.0235425439,0.0574117713,-0.0044696508,-0.0348990336,-0.0148177864,-0.0138809476,-0.0028015771,-0.0811831579,-0.0040334128,0.0308084097,0.0363293216,-0.0003593599,0.0271182656,-0.0344699472,0.001791436,-0.0045232866,-0.0262600929,0.0092825703,0.0292207897,-0.0515475869,0.0200955495,-0.0180931464,0.0362148993,0.0600148961,0.0018093146,-0.0708850846,-0.0224555247,-0.0193088911,-0.0327822082,-0.0040834728,-0.0197093729,-0.0268751159,-0.0121717528,-0.0287917033,0.030922832,-0.0039726258,0.0329538397,-0.0099405032,-0.0010315954,0.0391326882,0.0137379188,-0.0354139358,0.0262028817,0.0012595475,0.0053313994,-0.0334115326,0.0049273432,0.031380523,0.0052527338,-0.041735813,-0.0376451872,-0.0079524023,0.035986051,-0.0065149628,0.02421478,-0.020124156,0.0023295819,0.0015456052,-0.004891586,0.0058212732,0.0062682382,0.0110275224,-0.005031039,0.0206962712,0.0271468703,-0.0548086464,0.0050489176,-0.0093540847,0.0715716258,0.0025906097,-0.0150323296,-0.0452257134,-0.0124149024,-0.0923394114,-0.012028724,0.0062682382,0.0216545649,-0.0166628584,0.0289347321,-0.0017208155,0.0188225936,-0.0211396609,0.0082527632,-0.0133231347,0.0014901815,-0.000339023,-0.0154185072,-0.0296641774,0.0149322096,-0.0166914631,-0.0290777609,0.0200240351,-0.0068761106,-0.0155472336,-0.056524992,0.0183219928,0.0088677872,0.0323245153,-0.0217403807,-0.0168630984,-0.0193088911,-0.0137522211,-0.0566108078,-0.0286629759,0.0093326308,-0.0162766799,0.002892758,0.0271182656,0.0327249952,-0.0227701887,-0.0582985505,-0.0102766212,-0.0332112946,-0.0134804668,0.0554951839,0.0215830505,0.0116783036,0.0206676647,-0.0309514385,-0.0197522808,-0.0279621352,-0.0100263208,0.047056485,0.0129655628,-0.0358430222,-0.0306367744,-0.0445677824,0.0042265016,0.0484295599,0.0451398976,0.0165341329,0.0280765593,0.013437558,0.0212969929,-0.0252731927,-0.0333257169,0.039218504,0.0517764352,-0.0120430272,0.0290491544,-0.0530923009,-0.0250729527,0.0492305234,0.0125078708,0.0071514412,-0.003582872,0.0271325689,-0.0079452517,0.0368728302,0.0406773984,0.0510612912,-0.0258882176,0.0269895401,-0.006193148,-0.0349848494,-0.0418502353,0.0118570896,0.02421478,-0.0071121082,-0.0254019201,-0.0264174249,-0.008474458,-0.0136592528,0.0037330524,0.0468562432,-0.0180073287,0.020124156,-0.036100477,-0.0071728956,0.064362973,0.0114852143,0.0579838865,-0.009168148,-0.0196235552,-0.0035703571,-0.0298358127,-0.0228846129,0.0481721088,0.056582205,-0.0002592398,-0.048801437,-0.0818696991,-0.019094348,0.0107057076,0.0169060063,-0.0245294441,-0.0292493943,0.0163624976,0.0476572029,-0.0272326879,0.0457692258,0.0067938692,-0.0320384577,-0.0045411652,-0.0203386992,0.00803822,-0.0047056484,-0.0324103311,-0.0315235518,-0.0094899628,-0.0075233164,-0.0320098512,0.0078165252,-0.0471423008,-0.0303793233,0.0424223505,-0.023142064,-0.049459368,0.0064148428,-0.0218977127,0.0159191079,-0.0140597336,-0.0490874946,0.0387894176,-0.048801437,0.0080739772,0.0257165823,-0.004097776,0.0373305231,0.0206533615,0.0188798048,-0.0221408624,0.023857208,0.0225699488,0.0254162215,-0.0233852137,-0.0276188664,0.0285628568,0.0412209071,-0.0050596446,-0.0002887395,-0.0536358096,0.0102766212,-0.0469706655,-0.0033450867,0.0731735453,0.0310658608,0.058212731,0.0165770408,0.0131515004,-0.0190657433,0.0221837703,-0.0257165823,0.0089464532,0.0578122512,-0.0173207913,-0.0108344331,0.0150180263,-0.0443389341,-0.0372447073,0.0339550413,-0.009468508,0.0117784236,0.0074804076,-0.0004505408,0.0413067229,-0.0530923009,0.0343269184,-0.0069833826,-0.005864182,0.0138022816,-0.0160335321,-0.0113707921,-0.005914242,0.0365581661,0.0282338895,-0.0169060063,0.030007448,-0.0185651407,0.0097617172,-0.0206962712,-0.0190371368,-0.0161908623,-0.0125936884,-0.0386749953,-0.0096043861,-0.0198380984,0.0033647532,-0.0371302813,-0.0200097319,-0.0139024016,-0.0216402616,0.004634134,-0.0326105729,-0.0046984968,0.0094971145,-0.015003724,0.0209680256,-0.0037616582,-0.0280622561,-0.0193804055,0.0379598513,-0.0120573295,0.0299216304,0.0087676672,0.023857208,-0.0028462736,-0.0098761404,-0.0326105729,-0.0186938681,-0.0005966984,0.0342983119,0.0205103327,-0.0222981945,0.0315521583,-0.0069297464,-0.0011370792,0.0311230719,0.0237999968,0.0085316692,-0.0003915414,-0.0000581055,-0.0217975937,-0.0020041915,0.012364842,-0.0026138518,-0.0173493959,0.0152754784,0.011571032,-0.0465701856,-0.0344699472,0.0054815798,-0.0085102152,-0.0166342519,0.0110704312,-0.0235139392,-0.0026960934,0.0112992777,-0.0547514334,-0.0073051974,0.0019755857,-0.0051490376,-0.0259168223,-0.0080525232,-0.0212111752,0.0176354535,-0.0399050415,-0.0143171856,0.0407060049,0.0369586498,0.0348132178,-0.0265461504,0.01280108,-0.0110775828,-0.0028802429,0.004773587,0.0277046841,-0.0086460924,0.0230276417,0.0194662232,-0.029692784,0.0304079279,0.0341266766,0.0287058856,0.0052777636,-0.0283340104,-0.0144959716,0.0260455497,-0.00962584,0.010262318,0.0524629727,-0.0052026734,0.0314663425,-0.0100120176,0.0029070608,-0.0523485504,-0.0275759567,0.007076351,-0.0030179082,0.0028391222,0.0367011949,-0.0092039052,-0.0240574479,-0.0347273983,0.0047843144,-0.0284055248,0.0260884576,0.0231277607,-0.0284627359,-0.0530064814,-0.0076877992,0.0192802865,0.0230562463,-0.0054136412,0.0413925424,0.0222266801,0.0009627628,0.0236712713,0.0371016786,0.0500886962,-0.0061216336,-0.0040226858,0.0238858145,0.0071728956,0.0023867935,-0.0268608127,0.0288489144,-0.0242719911,0.0121002384,0.0330682658,0.0002375619,-0.0154185072,-0.030722592,-0.0290205479,0.0586418174,0.0383603312,0.0241432656,0.010934554,-0.0292064864,-0.0302362945,0.0020757059,0.0092182076,-0.004097776,-0.0032127849,-0.0133731952,-0.0017440578,-0.033897832,0.008395792,0.0297499951,0.0098475348,0.0225556456,0.0292780008,-0.0394187458,0.0256307647,0.0350134559,0.0132873775,0.0424223505,0.0089035444,0.0245580487,-0.0121431472,-0.0038438996,0.0460266769,-0.0178356953,0.0034577218,-0.0194376167,-0.0180073287,-0.0214686263,-0.0146747576,-0.0121646021,0.0354997553,0.0337548032,0.0095543256,0.0022598554,0.0190800447,0.0253733136,-0.030722592,-0.0288060047,-0.0267177839,0.0167057663,0.0169346128,-0.0068403534,-0.0404485501,-0.0050203116,0.0287917033,-0.0605870113,-0.0164769199,0.00238143,-0.0069333222,0.0301790815,0.0032467544,0.0465701856,-0.0094255991,-0.0202671848,0.0036829922,0.0011567456,0.0174495168,-0.0170919448,-0.0192230735,-0.0413639359,0.0248298049,-0.0270610545,-0.0031341191,-0.0360718705,-0.0142242163,-0.0265461504,-0.0250586495,0.0380742736,-0.0167057663,0.0023921572,0.0089249983,0.0217403807,-0.0072158044,0.0106627988,0.0198094919,0.0167486761,-0.0065149628,0.0235139392,-0.0015464992,-0.0327249952,0.005467277,-0.02401454,-0.000188731,-0.0204674248,0.02718978,-0.0015089541,-0.0044875294,0.0283626169,-0.0138165848,0.0348418206,0.0228846129,0.0173780024,-0.0044624992,0.0057712132,0.0139024016,-0.0180502385,-0.0068510808,0.0105841327,-0.0289061256,-0.0272326879,0.039990861,-0.003647235,0.0198953096,0.0007602876,0.0352995135,-0.0372447073,0.0162051655,0.01210739,0.0163911041,-0.0218691081,0.0152182672,0.0025691553,-0.0534927808,-0.0273042023,-0.0393615328,0.0144244572,-0.0114852143,0.0908519104,-0.0191658624,-0.0110704312,0.0273471121,0.0101908036,-0.0195520408,0.0245580487,-0.0060286648,-0.0295211487,-0.0371302813,-0.0064541758,-0.0025494888,0.0015965593,-0.0120001184,-0.0135662844,-0.0221980736,-0.012643748,0.0106341932,-0.0252588913,-0.0124935675,0.0067616878,-0.0035596299,-0.0175496377,-0.091195181,-0.0000914602,0.0365581661,-0.006976231,0.004376682,-0.0177069679,0.0187224727,0.0232850928,0.0390182622,-0.0267320871,-0.02262716,-0.0475713871,-0.0296355728,-0.0193661023,-0.019609252,0.0139238564,0.0188082904,0.0051097046,0.03532812,0.0201813672,-0.0072479858,0.0020184943,-0.0167057663,0.0593283549,0.0144244572,-0.0247725919,-0.0135019207,0.0448252335,0.0463127345,-0.0477144159,0.0068439292,0.0206533615,0.0066007804,-0.0096115367,-0.0171634592,0.0134447096,-0.009447054,0.0183649007,-0.0018021632,-0.0105626788,-0.0403627343,-0.0526632145,0.0473425426,-0.0255020391,0.0472281165,-0.0264031217,0.0007003943,0.0183219928,-0.0103052268,0.0020453122,0.0493735522,-0.0020435243,-0.0118141808,-0.010240864,0.004187169,0.0616740286,-0.0176497567,-0.0033218444,0.0062753898,0.0126079908,-0.0001334191,-0.0153469928,0.0037652338,-0.0532353297,-0.0094112968,0.000242702,0.0106198899,0.0306081679,0.0054136412,0.0208965112,0.0011209884,0.0395045616,0.0311802831,0.0042729862,0.033897832,-0.0048057684,0.012028724,-0.0200097319,-0.0063039954,-0.0310086496,0.0094971145,-0.0034863276,-0.0273614135,0.0322959088,-0.0168487951,-0.0152182672,-0.0007964917,0.0014052582,0.0153183872,-0.0244007185,0.035385333,-0.0074661048,-0.0139953708,0.0232707895,-0.0061895726,0.0061466638,-0.002138281,-0.0140454303,-0.0014982269,0.0179644208,0.0266462695,-0.0126079908,0.0280336495,0.020681968,-0.0090036644,-0.0138666444,0.0347273983,-0.0200812463,-0.0181074496,0.01458894,-0.0274043232,-0.0030626047,0.0251301639,0.011728364,0.0199239161,0.0002532057,0.0071335626,-0.01210739,0.0151181472,-0.0279764384,0.0315521583,-0.0198094919,-0.0316093713,0.0064577516,-0.0111633996,0.036043264,0.0465701856,-0.0331826881,-0.0032968144,-0.0437954254,0.0246724728,0.0682533532,0.007155017,0.0467132144,0.0161336511,-0.0262028817,0.0161908623,0.0251730736,0.0069440496,0.0175639391,0.0127939284,0.015261176,-0.0019612827,-0.0150323296,0.0084458524,-0.0216688663,-0.0167629775,-0.0134804668,-0.0381314866,-0.002277734,0.0336975902,-0.0525201857,-0.0257594921,0.0453115329,-0.0110132191,0.0812975839,-0.0470850877,-0.0008023023,-0.0173780024,-0.0159048047,0.0099762604,0.0492305234,0.0165198296,0.00325033,0.0249156207,-0.0353567265,0.0079166451,0.0205532424,-0.0015009088,0.0022115833,0.0013587738,0.0205675457,-0.009089482,0.0166199487,0.0525487922,0.0227129776,0.0058784848,0.0180073287,-0.0018361325,-0.0041621388,-0.0176783632,-0.0017234973,-0.0056031542,0.0570685007,0.037015859,-0.0029142124,-0.0422221087,0.0249728337,-0.0085245175,0.0222981945,0.0374449454,0.0180359352,0.0249728337,-0.0024332779,-0.0074160444,-0.0005023887,0.037073072,-0.0012523961,-0.0097974744,0.0455403775,-0.0338120125,0.0187939871,0.0245294441,-0.0012979866,0.0012497144,0.0459122546,-0.0109202508,0.0036579622,-0.0296069663,0.0098546864,0.0103981961,0.0168774016,-0.0295211487,0.0054637012,-0.0182790831,0.0052920664,-0.0100978352,0.0043123192,0.0058534546,-0.0099118976,-0.0433091298,-0.0216116551,-0.0162051655,0.0244007185,-0.032210093,0.0378740318,-0.0049738274,0.0279478319,-0.0152754784,0.0151324496,0.0112635205,0.0182218719,0.0278048031,-0.0108844936,0.0210252367,0.0313233137,0.0001264911,0.0311802831,0.0050846748,0.0135734351,0.0186223537,0.0008157113,-0.0059678778,-0.0181503575,-0.0176068489,-0.0023867935,0.0594427809,0.0163195897,0.0184221119,-0.0212254785,0.007809374,0.0273042023,0.0169346128,0.0066865976,0.0365295634,0.0100477748,-0.0089607555,0.0174495168,0.007809374,-0.0118785435,0.0081240376,0.0284055248,0.0003546668,0.0129298056,-0.0102265608,-0.0083242776,-0.0013221228,0.0093326308,0.0073802872,0.0025566402,-0.0432519168,0.0258167032,-0.0008639835,0.0017324366,0.0010423226,0.0358430222,-0.0470278785,-0.011749818,-0.0027407899,-0.0255878568,-0.0261742752,-0.0144816684,-0.0311516784,0.0001390061,0.0110918852,-0.0092611164,-0.0047199512,-0.0231992751,0.0091395415,-0.0200812463,0.0363007151,0.0117641212,-0.0199954305,0.0278906208,-0.0322673023,0.0045411652,-0.012979866,0.0326677822,-0.0023009763,-0.0134447096,0.0126795052,-0.0018933441,0.0319526382,0.0243149009,0.015618748,-0.006668719,-0.0078951912,-0.0063004196,-0.0253017992,0.0147748776,0.0024100358,0.0050596446,0.0359002352,0.0417930223,-0.0142599735,0.0080882804,0.0179930255,0.0264460295,0.0175496377,0.027747592,-0.0004281926,0.0197522808,0.0265747551,0.0389610529,-0.008217006,0.0153755983,0.0332112946,-0.0100120176,-0.0268036015,0.0345843695,0.0074947104,-0.0123004792,-0.001356092,0.0210824497,-0.0185794439,0.0013212288,0.0268751159,-0.0096186884,-0.0090322699,-0.0110489763,0.0023867935,0.0018021632,-0.008295672,0.000024625,-0.0016993613,-0.0076591936,0.0325247534,0.0200383384,-0.0072658644,0.0048808586,0.060358163,0.0170919448,-0.00803822,0.0097760204,-0.0047592842,-0.0001300668,-0.0018772533,0.0309800431,-0.0057533346,0.0292636976,-0.0243149009,-0.012543628,-0.0346415825,0.0069547766,0.0053921868,-0.0032628451,0.0004197002,0.0098475348,0.0008291202,-0.0032932388,0.0095042652,0.0211110543,-0.0079667056,-0.0305223521,-0.0229275208,-0.0299216304,0.0130656837,-0.0172206704,-0.0057104258,0.016434012,0.0058320002,-0.0352136977,0.0135305272,0.0347560048,-0.0141383996,0.0104625588,-0.0224698279,0.0212111752,0.0049380702,-0.0016314226,-0.0088606356,-0.0224984344,-0.0022312496,-0.0086890012,-0.0237141792,0.0375021584,0.004158563,0.0012711687,0.0165198296,-0.0304651391,-0.0309800431,0.0192802865,0.0074947104,-0.0144602144,0.023656968,0.0121288439,0.0508038402,0.016591344,0.0203530025,0.0112778228,-0.0316951871,-0.0100191692,-0.0248011984,0.004326622,-0.0263888184,-0.0272612944,0.0060179378,-0.015718868,-0.0066115074,-0.0504319631,0.0172778815,0.0270753559,0.0233709104,0.0151181472,0.0434235521,0.0274758376,0.0083242776,0.0476286002,0.0287917033,-0.0308084097,-0.0185794439,0.03215288,-0.0236998759,0.0329538397,-0.0148034832,-0.0097760204,0.0045089838,-0.0012613354,0.0038510512,0.008553124,-0.0009547174,0.002739002,0.0163768008,-0.0111991568,-0.0124721136,-0.005249158,-0.0330968685,-0.0161765609,-0.0002118615,-0.036100477,0.0121574504,0.0124792652,-0.0065757502,0.0435665809,0.0092110559,-0.0176497567,-0.0001633657,-0.0361576863,-0.0049273432,0.0058498788,-0.0336403809,0.013773676,0.0153469928,-0.004247956,0.0057676374,0.0413639359,-0.0111705512,-0.0270467512,-0.0109631596,-0.0200955495,0.0233136993,0.0259025209,-0.02262716,0.0150466328,0.0034219646,0.0089750588,0.0140668852,-0.023656968,0.0206247568,-0.0154900216,0.0211253576,-0.0044732266,0.0625894144,0.005249158,-0.0012881533,0.0072479858,-0.0009332631,-0.0068224748,0.0436237901,-0.0247582905,-0.0134304063,0.0181503575,-0.0189227145,-0.0134661635,0.0363865346,-0.0038224454,0.0168630984,0.0208822079,0.0389896594,0.0026978813,-0.0260741543,0.0174924247,0.0289347321,0.0163481943,-0.0038546268,-0.0138237355,0.0179358143,-0.0338120125,0.00391899,0.0033772681,-0.013437558,0.001191609,-0.0210395399,-0.0155472336,0.0293781199,-0.020124156,0.00724441,-0.0306081679,-0.0231849719,0.0307511967,-0.0005421686,-0.0142528228,0.0070835026,0.0229847319,0.0126723535,-0.0058784848,-0.0252016783,0.0025369737,0.0050632204,0.0132730752,0.0127939284,0.005964302,0.0062861168,0.06430576,0.0137093132,0.0358430222,-0.0111204907,-0.0119715128,0.0026639118,-0.0110132191,-0.010777222,-0.0007522422,0.0022348254,0.0224841312,0.0094971145,0.0218118951,0.0124077508,0.0180645399,-0.0402197056,-0.001036959,-0.0184650216,0.0016206953,-0.0203386992,-0.0359574482,0.0056639416,0.0030500898,-0.0018075268,0.0016653918,0.003711598,-0.0100549264,0.0148893008,-0.0129083516,-0.019966824,0.0146604544,-0.0009261117,0.015461416,-0.0010467923,0.0490588881,0.0317810066,-0.0449968688,0.0178070888,-0.0018790412,0.0115853352,-0.0437096097,0.0176783632,0.0085960329,0.0304365344,0.0085960329,0.0290777609,-0.0041228058,-0.0100477748,-0.0209251177,0.03532812,0.0078165252,-0.0079953112,-0.0112706712,-0.0157474745,-0.0135305272,0.0348132178,-0.0342411026,-0.0192945879,-0.0186223537,0.0091466932,0.0082098544,0.0497740321,-0.0142671252,0.0125293247,0.0016752251,0.0135019207,-0.0168487951,-0.0079881595,0.0307511967,-0.008116886,-0.0198953096,-0.000027195,0.0212826896,0.0147176664,-0.0039154142,0.0068832622,0.0244007185,-0.0141813084,-0.0047950414,0.0020292215,-0.0308084097,-0.0197808873,-0.009168148,0.0154757192,-0.0382459089,-0.0333829261,0.0487156175,0.0038725054,0.0199954305,0.0012318358,-0.006282541,-0.0256879777,-0.0073945904,0.0055244882,0.0180073287,0.0220836513,0.0049952818,-0.003021484,-0.0070012612,-0.0330396593,-0.0279907417,0.0161622576,-0.0000662626,-0.0183649007,0.0046377098,0.0302362945,0.0031663007,0.0118999984,0.042393744,0.0172206704,0.0020435243,0.0023492484,-0.0093326308,-0.0085030636,0.0179930255,0.002277734,-0.017306488,0.0237570871,-0.0064756302,0.010677102,-0.0192230735,0.0218977127,0.0023975207,-0.0086961528,0.0203959104,0.0120644812,0.0162051655,0.0185651407,-0.0033379353,-0.025244588,-0.0079237968,0.0098689888,0.0005765849,0.0106699504,0.0289490335,0.0131371981,0.0079309484,0.0249871351,-0.0022491282,0.0009690203,-0.0120001184,0.0186223537,0.0091252392,0.0191229545,0.013952462,0.0000165656,-0.00734453,0.0452257134,0.0088963928,0.027904924,-0.0232135784,0.0413353294,-0.0129155032,0.0175782423,0.0210538432,0.0032270879,-0.0082241576,-0.0329538397,0.0176783632,-0.0277904999,0.0045375894,-0.0119929668,0.0473997518,0.009010816,0.0233852137,-0.0030572412,-0.0012112753,-0.0003814847,0.0580410957,-0.003890384,-0.0138237355,-0.0220264383,0.0084673064,0.0362435058,0.0243578088,-0.0206962712,0.0079452517,0.0263602119,0.0001585609,0.0216259584,-0.0047378298,-0.0210824497,0.0159334112,0.0300646592,0.0074875592,-0.0228273999,-0.0001185575,-0.006053695,0.0141956108,0.0087819695,-0.0322386958,-0.0007509014,-0.0481435023,-0.0135877384,0.005567397,-0.01369501,0.0055960026,0.0274901409,0.0119143007,0.013673556,-0.0046555884,0.0267463904,-0.0093326308,-0.0063862372,0.0308370143,-0.0032592693],"79":[0.0038191723,-0.0066579003,0.0096600354,0.0270268191,0.0269812159,0.0153374914,-0.02596277,0.0266620014,-0.0151702836,0.014934673,-0.0078131519,-0.0581274219,0.0119629391,-0.0222386029,0.009485228,-0.0038856752,0.010914092,-0.0223754086,-0.0641468912,0.0269660149,0.0173895843,0.0220865961,0.0303861704,-0.0076763462,-0.0234090555,-0.0451460369,-0.0546616651,0.0619883947,-0.002994535,-0.0507702902,-0.0084211798,-0.0369072631,0.0031655426,0.0113473115,0.0140454331,-0.0352351889,0.0416802801,-0.0382753238,0.0185144339,0.0180584136,-0.0324382633,-0.0089380033,0.0243514981,0.0412546583,-0.0201257076,-0.0230290387,-0.0541752428,0.0201257076,0.0402818173,0.0113929138,-0.0541144386,0.0084591815,0.0156263039,-0.0414978713,-0.010617679,-0.0177544001,0.0073001292,0.0658493713,-0.0022763025,-0.0289573055,0.0251267329,-0.0230290387,0.0244883038,-0.0021147954,-0.0264187902,0.0323166586,-0.0039483779,0.0106936824,0.0231658444,0.0290333088,0.0610459521,0.0286380909,0.0286380909,-0.0184688326,0.0425315164,-0.0853062421,-0.0152234863,0.0291701145,-0.0189856552,-0.0123809585,0.0182712246,-0.0266772024,0.0092040151,-0.0056394543,0.0276956484,-0.0406162292,-0.029899748,-0.0396129861,-0.0554521009,0.0275284406,-0.0193352718,0.0724768639,-0.0030477373,0.0232114457,0.0101540573,-0.0188488495,-0.0270724203,-0.0098120421,0.025339542,0.0099488487,0.0081095658,-0.0363600403,-0.0283188764,-0.0000787942,0.0073951334,0.0215697717,-0.003840073,0.0268596113,0.0414674692,-0.0021470969,-0.0833605602,0.008451581,-0.0014165138,0.0075129387,0.0092420168,-0.0091356123,-0.0170399677,0.0088848006,0.0340799354,-0.0184536316,-0.0452676415,0.0229834355,-0.0145470556,-0.0031218408,0.0325598679,-0.0059662689,-0.0326510705,-0.0333807059,-0.0184384305,0.0007880605,0.0553304926,-0.0066388994,0.0285012852,-0.0392785706,-0.028668493,-0.0540536381,-0.0255371518,-0.0423187092,-0.0000853851,-0.0326510705,0.0045488048,-0.0119097373,0.0317694321,-0.0064716917,-0.0426531211,-0.0392177664,-0.0394305773,0.0203689188,-0.0149954762,-0.0158239137,-0.0337455198,-0.0646333173,-0.0734497085,-0.0101388572,0.0525943711,-0.009059608,0.0420754962,0.0706527829,0.0137642203,-0.0460276753,-0.021843385,0.0322254524,-0.0138858259,-0.0218281839,-0.0137262186,-0.0139618292,-0.0430787429,-0.0228162277,-0.0661533847,0.0023808074,-0.0735713169,-0.0448724218,-0.0278020538,-0.0035208587,0.0420450941,-0.0273612328,0.0194872785,0.0136350151,0.0141974399,-0.0300669558,-0.0394001752,0.0380321145,-0.0056698555,-0.0298237447,-0.0205969289,-0.0139998309,-0.0438387766,0.010093255,-0.0012816078,0.0170855708,-0.0138706258,0.0859142765,0.0393089727,0.0333199017,0.0168271586,-0.0368464626,0.0267836079,0.0232418478,0.0003576911,-0.0071481224,0.0175719913,0.0312222075,0.0761250332,-0.0305837784,0.0279692616,-0.0608635433,0.0011923037,-0.029474128,-0.0417714827,-0.0137338191,0.0297629423,0.0161431283,0.0068631093,0.0251115318,-0.0363904387,-0.02307464,-0.0531111956,0.0157783106,0.0172527786,0.0077561499,-0.03259027,0.0473349355,0.0226338208,0.0166751519,-0.0034866573,0.0088239973,0.0040433821,-0.0354175977,0.0511655062,-0.0327118747,0.0316174254,0.0109520936,-0.0241082869,-0.0109976958,0.0195024796,-0.0165079441,0.0028159269,-0.0298541468,0.0148662701,0.041041851,0.019183265,0.0071481224,0.0038096718,0.0010184459,0.0141214365,-0.0011562022,-0.0335023105,-0.0681598708,0.0302797649,0.0242754947,0.0122745531,0.0025119132,-0.0291093122,-0.0373632833,-0.0151322819,-0.0452372395,-0.0267228056,0.0273308326,0.0179064069,-0.009796842,-0.0106480801,-0.0240474846,-0.0311006028,0.0170247667,-0.014129037,0.0326206721,0.0022059993,-0.0140758343,0.0004686086,0.005415244,0.040798638,0.015687108,0.0345359556,-0.0264947936,-0.0176479947,-0.0040509827,0.0286380909,0.0146762617,-0.0065058931,-0.0119477389,-0.0012322055,0.0117045278,0.0288204998,-0.0200345032,0.0254611485,0.0212201569,0.0516823307,-0.016918363,-0.0135742119,-0.0189096518,-0.0171463732,0.0022668021,0.0453892462,-0.0153070902,-0.002109095,-0.0245491061,0.0112485075,0.0215697717,-0.0333807059,-0.033411108,0.0359648205,0.0021489968,0.0217825826,-0.0538408272,-0.0038913754,-0.0331070907,-0.0509830974,0.0107088825,-0.0298389457,0.0073571317,0.0280756652,0.0197000876,0.0324686654,-0.0094168242,-0.0306141805,-0.0032852481,0.0714432225,-0.033198297,0.0258259643,-0.030507775,-0.0083679771,-0.0510743037,-0.0370896719,-0.0413458645,0.0052328361,-0.0539320298,0.0367552564,-0.0058446634,0.0361168273,-0.0321646482,0.0262667835,-0.0080867643,0.0129357828,0.0147446645,0.0029774343,-0.0110356975,0.0069277124,-0.0228922311,0.0270724203,0.0065286942,-0.0242602937,-0.074848175,-0.0373632833,0.0087707955,0.0279692616,-0.0473349355,-0.0206577312,-0.0152310869,0.0000505304,0.023713069,-0.0312526077,0.0085579855,-0.0017423786,-0.0050428272,-0.0129509838,0.0064868922,0.027011618,-0.0103744678,-0.0437779725,-0.0082615726,-0.0523815602,0.0466053002,-0.012882581,0.0229530353,0.0024112088,0.0395825841,-0.0207945369,0.035265591,0.0088011967,-0.0654845536,-0.0192440674,-0.0353263915,-0.016903162,-0.0224970151,-0.0417410806,-0.0101616578,0.0391569659,0.0168271586,0.0132473968,0.0650589317,0.0404642224,0.0141518377,-0.0175567921,-0.0230290387,-0.0009063408,0.0294285268,0.0048110168,0.0157479104,-0.0550872833,-0.0139998309,0.0150562786,-0.0323166586,-0.0152766891,0.0036766657,0.0334719084,0.0043587964,-0.0083071748,-0.0072507267,0.05192554,-0.003437255,0.0171463732,-0.0259019677,-0.0474869423,0.0221778005,0.0049402225,0.019578483,-0.0173439812,0.009287619,-0.0204753224,0.0008802147,-0.042865932,-0.0721120536,0.0688895062,-0.0201257076,0.0064222896,0.0033042489,-0.0336847194,0.0032453462,0.0294437278,0.0345967598,-0.003794471,0.0307509862,0.0409506448,-0.043473959,-0.0030667381,0.0559081212,0.0490982123,-0.0187424459,-0.0471829288,-0.0602251142,-0.0363600403,-0.018757645,0.0287444964,-0.0112865092,-0.0318302363,0.0562425368,0.0028216273,0.0370288678,0.0154970987,0.0010526475,-0.0157479104,0.0075851418,0.0129889855,-0.0043815975,-0.0468485132,0.0131409923,-0.0079955608,-0.0054912474,-0.0306293815,-0.0453588441,0.0082159704,-0.0115145193,-0.047638949,0.0569113642,-0.0243514981,0.0672478303,0.0609243475,-0.0186056383,0.0103288656,-0.0082615726,-0.0348703712,0.0145850573,-0.0451460369,-0.0072355261,-0.0192592684,-0.0612587631,-0.0103820683,-0.0004296569,-0.0281668697,0.0076459446,0.0449028239,0.0178000033,-0.0326510705,-0.0175719913,-0.027011618,-0.0112713082,0.0288965032,-0.0071785236,0.0063272854,-0.0564249419,0.0023257048,0.0228466298,-0.067612648,0.080198817,0.0266164001,0.0026354189,-0.0172071755,0.0368464626,-0.0411330536,0.0195176806,-0.004077584,0.006703502,0.0820228979,-0.0194112752,0.000910141,-0.0223906096,-0.0448420197,-0.0429875366,-0.031115802,-0.0080107609,0.033411108,0.002084394,-0.0473045334,0.0352959894,-0.0239258781,0.0001638824,-0.0405858308,0.007227926,0.0112105049,-0.035660807,-0.0245795082,0.0313742161,-0.0202777144,0.0050048255,-0.0295653325,0.0158391148,-0.0025993171,-0.0039787795,0.0004496078,-0.011028097,-0.0260235723,-0.0326206721,-0.0317694321,0.0167511553,0.0272700302,0.001663525,-0.0291397143,-0.0007486338,-0.0051872339,0.0006849809,-0.0069315126,-0.0155274998,0.0023485059,0.0281972717,-0.0375456922,0.0029641336,-0.015869515,-0.0242754947,-0.0219953917,0.0080031604,-0.0061258762,-0.0065628961,0.0244579017,0.0378497057,-0.000600427,0.0195480809,-0.0055558505,-0.0240778849,0.0156263039,0.0234394558,0.0335631147,-0.0216305759,0.0025499149,-0.0110889003,0.0023694069,0.0353871956,-0.0165079441,0.0016388239,0.0046514096,0.0167511553,0.0000420097,0.0040965849,0.0165839475,0.0134982085,0.0172527786,0.0549960807,0.0065742964,0.0207793359,-0.0016530745,-0.0010906492,0.0359648205,-0.0139694298,-0.0136958174,0.0160367228,0.0499190502,0.0044918023,-0.0157023072,-0.0128977811,-0.0041611874,0.0143114449,-0.0160823241,-0.0235610623,-0.0202625133,0.0284404829,-0.0249899272,-0.0109824948,0.0270420182,0.0252331384,0.0304317717,0.0213265605,-0.0269204136,-0.0039863796,0.0288661011,0.0353567936,-0.0126545709,-0.0121681485,0.0235458612,0.0057876608,-0.0083603766,0.0359344184,0.0405250266,-0.0075395401,0.0219345894,-0.007163323,-0.0106404796,0.0259323698,0.0124873631,0.0057116575,0.0416194759,-0.032955084,-0.0010231961,-0.0092496173,-0.0134146046,-0.0390049592,-0.0428963341,0.0194872785,-0.0053430409,-0.0184992347,0.009386423,0.0000112818,0.0067985067,-0.0227706265,-0.0093256207,-0.0298389457,-0.0167359542,0.0051112305,0.0083451765,-0.0203081146,-0.0277108494,0.0124037592,0.0120769441,-0.0333807059,0.0077637499,0.0002603117,-0.0062626824,0.0009505178,0.0068631093,0.028653292,-0.0120541435,0.0080335625,0.0704095736,0.0274676383,-0.0028862301,-0.0127533749,-0.0058104619,-0.0216761772,-0.0091204112,0.0293829255,0.0399474017,-0.0251875352,0.0177087989,-0.015671907,0.0098348437,0.0303709693,0.0067225029,0.0156567059,-0.0073039294,0.0017661296,0.005415244,0.0185904372,-0.0496150367,-0.016279934,-0.0191984661,-0.0174655877,-0.0273612328,0.0080335625,0.0267532058,0.0370288678,0.0360864252,0.0425619185,0.039187368,0.0114765177,-0.0026164181,0.0288357008,0.0086795911,0.0099488487,-0.0138630252,-0.0353263915,0.0044424003,0.0242906958,-0.0055976524,0.0281668697,-0.0280756652,0.020399319,-0.0120845446,-0.0009832943,0.0462404862,-0.0073039294,0.0261147767,0.0134146046,0.006228481,-0.0227858275,0.0102832634,-0.0223602075,0.0087707955,-0.0367552564,-0.0040509827,-0.0026563196,-0.0003842923,-0.0703487694,0.0137946215,-0.0047806157,-0.0342927463,0.0052442364,-0.0236826669,0.0399474017,-0.0000979732,0.0203689188,0.030507775,0.0111725032,-0.0364208408,-0.0154666975,-0.0263579879,0.0430787429,-0.0247619171,0.01710077,0.0004719338,0.0193200707,0.0105340751,0.0140074315,-0.0335935131,0.0092268158,-0.0358432159,-0.0291853156,0.006186679,-0.0166903529,-0.0083451765,0.0130269872,-0.0183016248,0.0113169104,0.0092040151,0.0065286942,-0.0003256272,0.0006203779,-0.0039141765,-0.0012360057,-0.0443859994,-0.0369984694,-0.0494326279,-0.0044195992,-0.0399778038,-0.0299757514,-0.0311614051,-0.0121073462,-0.0074141342,-0.0268748123,0.0226186197,0.040190611,0.0163711384,0.0228922311,0.00576866,0.0159607194,-0.0376976989,0.0188032482,0.0044424003,-0.0360560268,-0.0139694298,0.0073001292,0.019791292,0.0547832698,0.0044994028,0.0499798544,-0.012160548,0.0217065793,-0.0069391127,0.0514695197,0.0180432126,0.0007305829,0.0094928276,-0.0337151214,-0.0335327126,-0.0178456046,-0.0117045278,-0.0039673788,0.0130877905,-0.0120161418,0.0169335641,-0.0274980403,0.0237738714,0.0348703712,0.0514087193,-0.0072469269,-0.0288509,-0.0102376612,0.0043853978,-0.0198064931,0.016279934,-0.0353263915,-0.0213721637,-0.0484293848,-0.0186512414,0.0186360404,-0.0271180216,0.0096600354,0.018119216,0.023287449,0.0207945369,-0.0794691816,-0.0423187092,0.0380017124,-0.0192136653,-0.0267228056,-0.0059700692,0.0129357828,0.0281060673,0.0267988089,-0.0016986766,0.0134146046,-0.0291701145,0.0048338179,-0.03259027,-0.0139010269,-0.0225274153,-0.0211137515,-0.0061942791,-0.0025385143,0.020399319,-0.0257195588,0.0079195574,-0.0086339889,0.0425923206,-0.0115981232,-0.0176479947,-0.0021755982,0.0101236561,0.0360560268,-0.0030591378,0.0091052102,0.0178000033,-0.0035436598,0.0123809585,-0.0263427868,0.0006498293,0.0274068359,0.0335935131,0.0233482532,-0.0134374062,-0.0302797649,-0.019183265,0.0197152887,-0.0636604726,-0.0055102482,0.0102528622,0.0078967558,-0.0003006886,-0.0355696045,0.0248379204,0.0232266467,-0.0364208408,-0.0094472263,-0.0112865092,0.0012759075,0.0237434711,-0.0356000066,-0.0028748296,-0.0068821101,-0.0041193855,-0.0523207597,0.0275892429,0.0104656722,-0.0226034187,-0.0133158006,0.0177696012,0.0038989757,0.0376976989,0.0315870233,0.0329854861,-0.0277716517,0.0232266467,0.0162191316,-0.0068289079,0.0106024779,0.0046514096,0.0549960807,0.0059510684,0.0369072631,-0.0524119623,0.0068441085,-0.0046476093,-0.0129129821,-0.0022554016,-0.0275132395,-0.0025442147,-0.0279236585,0.0050466275,-0.0101996595,-0.0004705087,0.0555433035,0.0172983799,0.0167967565,-0.0280908663,-0.0011467017,0.0155807026,-0.0145318555,0.0099336477,0.0272244271,0.0192896705,0.0069505135,0.0155198993,0.0035835616,0.0130573884,0.0008127617,-0.0324382633,0.0220865961,-0.0215545725,0.0007495838,-0.0188792516,-0.0110052964,0.0093712229,-0.0065818969,0.0117805311,-0.0119705396,0.0161279272,0.0067225029,-0.0266468022,0.0273612328,0.0046134079,0.047395736,-0.0100628538,-0.0246403106,0.0232570488,0.0226794221,0.0222386029,0.0278932583,-0.0152006857,0.0190464593,-0.0124949636,-0.0193200707,0.0432307497,-0.0005063728,0.0498886481,-0.0000784379,-0.008976005,0.0250811316,-0.004529804,-0.0007880605,-0.0265555978,-0.0125557659,-0.0114993183,-0.0290637109,0.0222690031,-0.004742614,0.0101008555,-0.0193808731,0.0269508157,-0.0326206721,0.0454500504,-0.0266772024,0.007516739,0.0005690756,0.0753953978,-0.0109976958,0.0427139252,-0.0498886481,-0.0191984661,-0.0150106763,-0.013391804,0.0213113613,0.0495846346,-0.0209009424,-0.0257347599,-0.0008754645,-0.0100628538,-0.0212505572,0.0022212001,0.0376976989,-0.0238802768,-0.0040737838,-0.0109216925,-0.0107696857,-0.0424099118,0.011126902,-0.0005928267,0.007368532,-0.0093636224,0.0000037111,0.0428051315,-0.0176783968,0.010404869,0.0147750657,0.0577018,0.0232114457,-0.042257905,-0.0214177649,-0.0312222075,-0.0236674678,0.0222538039,0.008550385,0.0047274129,0.0233938545,0.0097512398,-0.0070379172,-0.0032871482,0.0139770303,0.0309637953,-0.0334415063,0.0176479947,-0.0254915487,0.029884547,0.0406162292,-0.0028976307,0.0088239973,0.0409810469,0.0001739766,-0.0112865092,-0.0577322021,0.0024511104,0.0263275877,0.0046096076,-0.0146002583,-0.0425315164,-0.0061106756,-0.0281972717,0.0023637065,0.0194720775,-0.0178456046,-0.0347487666,0.005833263,-0.0182560235,-0.0409506448,-0.0005505498,0.0084211798,0.0379713103,-0.0072203255,-0.006342486,-0.0203385167,0.0252179373,-0.0064754919,0.0027817255,0.0234850589,0.0038799748,0.0235458612,-0.0003724168,0.0051226309,0.0211897548,-0.0049516233,-0.0216305759,-0.0152538875,-0.0109596942,0.0114461156,-0.031115802,-0.0414370671,-0.018119216,0.0494022258,0.0359040201,0.0096752364,-0.0299301501,-0.0464532934,-0.0155655015,0.0271788258,-0.0009937448,0.016705554,0.0073001292,0.0159303173,0.0038115717,0.0301581603,0.0175415911,-0.0138402237,-0.0086187888,0.0325294659,-0.0189400539,0.0287292954,-0.0217521805,0.0144330505,-0.0009685687,-0.0098500438,0.0414370671,0.0054532457,-0.0057610599,0.0668222159,0.0146762617,0.0171159711,0.0248075183,-0.0388833545,-0.0100552533,-0.0155807026,-0.0224210098,-0.0154438959,0.0194416773,-0.0186208393,0.0295957346,0.0126317693,0.0051872339,-0.0071367216,-0.0047350135,-0.0125329653,-0.0193504728,0.0034581558,0.0189856552,0.0050352272,0.0070683188,-0.0124949636,-0.0021508969,-0.0066807014,-0.0002451111,0.0469397157,-0.0098272432,0.0339583308,-0.0102528622,-0.0071329214,0.0162495319,0.0187120438,0.0057724603,-0.0240930859,-0.0430787429,0.0091964146,0.0370288678,-0.0254763477,0.0132625978,-0.0022002992,-0.0036120629,0.0060156714,-0.0040547829,0.0030895392,0.0579754151,0.0067301034,0.0012882581,0.0187880471,0.0334415063,-0.0184992347,0.0320734456,-0.0171159711,0.0186208393,0.0050884294,0.0186664406,-0.0171615742,0.0046666102,0.030310167,-0.0295653325,-0.003794471,0.0184840336,0.0080259619,0.0194720775,0.0166447498,-0.0166295506,0.0311614051,-0.0198064931,-0.0099488487,-0.0117729306,-0.012570967,0.0141974399,0.009599233,0.0090140067,0.0138098225,-0.0067719053,0.0034885572,0.0081019653,0.0760034248,-0.0062322807,0.0118565345,0.0046324087,0.0163103361,-0.0047996165,-0.0210985504,0.002063493,0.0028235272,0.0195328798,0.0145622566,-0.0229378343,0.0090444079,0.000532499,0.0050276266,-0.0323774591,-0.015671907,0.0322254524,-0.0205817278,0.0222082008,0.024321096,0.0082843732,0.0041193855,-0.0273764338,-0.0268596113,-0.0119705396,-0.0039027759,-0.0058902656,0.0052556368,0.0065628961,0.0141746392,0.0274372362,0.0168575607,0.0407074355,0.0356000066,0.027604444,0.0105492752,-0.0177239999,0.0279844608,-0.0229378343,0.0033327502,0.0008056363,-0.0072241258,0.0012141548,-0.0139238276,-0.0057230578,0.0033042489,-0.0210833512,-0.0291397143,-0.0145850573,-0.0238802768,-0.0043131947,0.0065742964,-0.0120009407,0.0008260622,0.0293677244,0.0331374928,0.0289117042,0.0391265638,0.0090900101,-0.0145774567,-0.0165231451,0.0248987228,0.0158847161,-0.0425011143,-0.0158087127,0.0268444102,-0.0056850561,0.0045374045,-0.0353567936,0.0028121269,0.0547224656,0.0181040168,0.0028653292,-0.0109900953,0.0438083746,0.0214025658,0.01463826,0.0364512429,-0.0163407363,0.0057078572,0.0220865961,-0.015869515,0.0014355148,-0.0275436416,-0.0148206679,-0.0071709231,-0.0122365514,-0.032955084,0.0279084574,0.0305381771,-0.0352351889,-0.0253091417,0.0240322836,-0.0097284382,-0.0011048998,-0.0383969322,-0.0021280958,-0.0044157989,0.0014820668,0.0045564054,0.0111193014,-0.0042751925,0.0260843765,-0.0150030768,-0.0225274153,-0.0182712246,0.0090216063,0.0057420591,0.0117045278,-0.0115145193,0.0171463732,0.0268444102,0.0046552098,0.0180888157,0.0226338208,0.0143798487,-0.003351751,-0.0279996619,-0.0197152887,0.0178456046,0.0152918892,-0.0343231484,-0.0447508171,0.0021698978,0.0040889843,0.0231810454,-0.0417714827,0.0029546332,-0.0084439805,-0.0088315979,0.0236370657,0.0215393715,-0.0058370633,0.0033821524,0.0251115318,0.0034999577,-0.0249899272,0.0033023488,-0.0005182484,-0.0356304049,0.0207793359,-0.0158239137,-0.0105112735,0.0176175945,-0.0144482516,-0.0070911199,0.0192288663,0.0240322836,0.0031085401,-0.0148738706,0.00288053,0.0160975251,0.0240778849,-0.0081247659,-0.015261488,-0.0159911215,-0.0134754078,-0.0227098241,-0.0406770334,0.0318302363,0.0051568323,0.0150182769,0.002530914,0.0273916349,0.0060992748,-0.0052176351,-0.000931517,-0.0019969901,-0.0156111037,0.0110736992,-0.0169335641,0.0042105899,0.0052024345,0.018134417,-0.0214177649,-0.0098272432,0.0219801906,-0.0017870306,-0.0135742119,-0.0287748966,0.0151018808,0.0393393748,0.0033631516,-0.0213113613,0.0206729323,-0.0346271619,-0.0117273284,0.0059776693,0.0104124695,0.012783776,-0.0005144482,-0.008451581,0.0483077765,0.0474869423,0.0187728461,-0.0073875329,0.0041383863,-0.0260387734,0.0256283563,-0.0008336626,0.0099412482,-0.0432307497,-0.0062132799,0.0079347575,0.0173895843,0.0023694069,-0.0048300177,0.0342319421,0.0273156315,-0.0078131519,0.016295135,-0.0163711384,0.0415282734,-0.0380321145,-0.0356000066,-0.0207641367,0.0549048744,0.0328638814,-0.0164015386,-0.002261102,-0.0093636224,0.03259027,-0.0408594422,-0.0135210091,0.0243666992,0.011848934,-0.0276500471,-0.0278476551,-0.0067301034,0.0301733594,-0.0054342449,-0.0056812563,0.0189096518,-0.0450852327,-0.03259027,-0.0027551241,-0.0314350165,0.0155046992,-0.0278172549,0.0000506788,0.0333503038,0.0302037615,-0.0150030768,0.0181496181,0.0039635785,-0.0040281815,0.0160823241,-0.0053734421,0.0218737852,-0.003971179,0.0001925024,0.0107620852,-0.0394001752,-0.0183776282,0.0227706265,0.0343839489,0.0052974387,0.0170247667,-0.0069885151,-0.0084819822,0.0134450058,0.0374240875,-0.0506486818,0.0073875329,0.024746716,0.0247163139,-0.0402210131,-0.0220257938,0.0311310031,0.0286380909,0.0022991037,0.0193808731,-0.0083299754,0.0108304881,0.0125405658,-0.0026601199,0.012373358,-0.0195328798,-0.0278628562,-0.0144938538,-0.0069809146,0.0037469689,-0.0335023105,-0.0078891553,0.0134754078,-0.0258107632,-0.0067833057,-0.002063493,0.0208857413,-0.0003500908,0.0408594422,-0.0038989757,0.0096524348,0.0081475675,0.0355696045,-0.0100476528,-0.0047388137,-0.002173698,-0.0051986342,-0.0038951756,0.0227098241,-0.0153526925,-0.0352351889,0.0368160605,0.0317086279,0.0004118436,0.0170399677,-0.0223906096,-0.0260995757,0.0348703712,0.0113245109,-0.0174199846,-0.0260539744,0.0222842041,0.0018592338,0.010929293,0.0070797191,-0.0087327939,0.0127989771,0.0340191349,-0.0015694707,-0.001264507,0.0037032668,0.0431699455,-0.0103212651,0.035873618,0.020809738,0.0068973107,-0.0275892429,0.0272700302,-0.0142886443,0.0515303239,0.0054342449,0.021858586,-0.0068555092,-0.0086795911,0.0416194759,0.0224970151,-0.0070113163,-0.0032947485,0.0128141781,0.0046134079,0.012259353,-0.0061790785,0.0185904372,0.0011467017,0.003171243,-0.0046476093,0.0046210084,0.0180736147,0.0136958174,0.0046970118,0.0047692149,-0.0295349322,0.0127533749,-0.0014687662,0.0160063207,-0.0014450152,0.0328030773,0.021858586,-0.0166903529,-0.0160671249,-0.0205361266,-0.0411026515,0.0400994085,0.0294589289,0.0028444282,0.0132625978,0.0095004281,0.0178760067,0.0057306583,0.0045222039,0.0055520502,-0.0217369795,-0.0493414253,-0.02350026,0.0015400194,-0.026570797,-0.0033403507,0.0216153748,0.0095232297,0.0355696045,0.0367552564,0.0144178504,0.0093028191,-0.0182408225,0.0018915352,-0.0062094801],"80":[0.0186752826,0.0229243916,0.0007860296,0.0427288078,0.0224489681,0.0291494858,-0.0090479292,0.0025331231,-0.0109941997,0.0100730639,-0.0149684539,-0.0454030745,0.0083719343,-0.0596658178,-0.0123610459,-0.021616973,0.0484339073,-0.0101547781,-0.0307540447,0.0382419862,0.0248260908,0.0406488255,0.0241426677,-0.0324477479,0.0045796786,-0.0232512467,-0.0099616367,0.0448385067,0.0135867512,-0.0202501267,0.0013092755,-0.0397871174,-0.0077405111,0.0070125167,-0.0224192534,0.0009749923,0.0471859165,-0.0358648635,0.0275003556,0.000821315,-0.0166547261,-0.0116999084,0.0006193523,0.0276637841,-0.0309620444,-0.0106227743,-0.0866461769,0.0308729019,0.0154810222,-0.0058536683,-0.0593389645,0.0022656966,-0.006986517,-0.035954006,-0.0071833725,-0.0290157739,-0.0121901901,0.0725617185,-0.0143147456,0.0068862317,0.0028451206,-0.0095010689,0.054525286,-0.0235781018,-0.0224638246,0.0166547261,-0.0302637629,0.0358648635,-0.0205769818,0.030159764,0.0932426974,0.0192844197,0.0271883588,-0.0312888995,0.0347951576,-0.0835559145,-0.0162090156,0.0191358496,-0.0046873917,-0.0230729617,0.0029268342,-0.0135421799,0.0070162308,-0.01693701,0.006254808,-0.0391928367,-0.0297883376,-0.0510487445,-0.0727400035,0.0249003768,-0.0095902104,0.0446007922,-0.0055156713,0.0024421238,-0.0139061771,-0.0334877372,0.0077999388,-0.0471264869,0.0125244735,0.0096719246,-0.0105336318,-0.0776725337,-0.0402328297,0.0075102272,0.0322397463,0.0078147957,0.0222706832,0.0182889998,0.0097164959,-0.0003298724,-0.0452247895,-0.0283917785,0.0223895386,-0.0229392499,0.0172192939,-0.0225232523,-0.0317346081,0.0267129336,0.0302934777,-0.0284066349,-0.0121753337,0.0227609649,0.0207701232,0.0074359421,0.0243209526,-0.0049919612,-0.0312888995,-0.0435310863,-0.0392819792,0.0027132644,0.0812382251,-0.005861097,0.0335471667,-0.0093450695,-0.0267129336,-0.027693497,-0.0152878808,-0.0070236595,0.0037941132,-0.0476316288,-0.0107862018,-0.0167290121,0.0311997551,-0.0287483465,-0.0305460468,-0.0172638651,-0.0475127697,0.0228055362,-0.0151764527,0.0287780613,-0.0082456497,-0.034200877,-0.0574669801,-0.0116701946,0.0517915934,0.0317048952,0.0232363902,0.0458190702,-0.008468505,-0.0289860591,-0.0394305475,0.0030846901,-0.0069790883,-0.0228501074,-0.0097536379,0.0161050167,-0.0355082937,-0.0222855397,-0.0851010457,0.0243506674,-0.0556841344,-0.0181404296,-0.0496818982,0.0091816429,-0.0145970285,-0.0476019122,0.0278866384,0.0211415496,0.0145153152,-0.0114027681,-0.0036733998,0.0295803398,0.0115661956,-0.0232958179,-0.0202352703,0.0288077742,-0.0104593467,0.0021338405,-0.0347357281,0.0053819581,0.0032146892,0.0662029088,0.0486121923,0.0397276878,0.0409756787,-0.0586258285,0.0186158549,0.0478396267,-0.0299963374,0.0030364047,0.0217358302,0.0176204331,0.077256538,-0.0273220725,-0.0046688206,-0.020190699,0.0161941592,-0.0262820795,-0.0045091077,-0.0041748243,0.0272775013,-0.0149610257,0.0318534635,-0.0027931209,-0.0326854587,-0.0093153557,-0.0512270294,0.0353597216,0.0255689435,0.0172787216,-0.0350031555,0.0415402465,0.0685800314,0.0257026553,-0.0309620444,0.0009592068,0.0051665311,-0.0492658988,0.0398762599,-0.0688771755,0.0435608029,0.0362214297,0.017011296,-0.0094639258,0.0130370408,-0.0224341098,-0.0220181141,-0.0285106339,0.0261037964,-0.0050291037,0.004876819,0.003385545,-0.0051702452,0.0223746821,0.0265940782,-0.000857529,-0.0060988097,-0.0683423206,0.042342525,-0.0067562331,0.0217061155,-0.0307540447,-0.0000534795,-0.0362511463,-0.0042379671,-0.0456704982,-0.0327746011,0.0104222046,0.017011296,-0.0357162915,-0.0131038977,-0.0235038158,-0.0100507783,0.0041785389,0.01744215,0.0125467591,-0.0252123736,-0.0080970796,-0.0186307114,-0.0219141152,0.0066856621,0.0018107002,0.0240238123,-0.0511675999,-0.0114919106,0.0238306709,0.0353894383,0.0303380489,-0.0151021676,0.0086913602,0.0145376008,0.0083125066,0.0525047332,-0.0134976087,-0.0279312097,0.0063476646,-0.0044719651,-0.0114993388,0.0251529459,0.0218844004,0.0100656357,-0.0155553073,0.0491470434,0.0065853773,-0.0260443669,-0.0398465469,-0.002707693,0.0064925207,-0.0236969572,-0.0274706427,0.0473344885,0.0092707844,-0.0030846901,-0.0499790385,-0.0017949145,-0.017367864,-0.0348545834,0.0254352298,0.0396088324,0.0005125674,0.015614735,0.0670349076,0.018794138,0.0156295914,-0.0111353416,-0.0102959191,0.0701845959,-0.0140918894,0.0328340307,-0.0143890306,-0.0243803803,-0.0467699207,-0.0044422508,-0.053633865,-0.0266683623,-0.0534258671,0.0112393405,0.0121679045,-0.0228203926,-0.0306649022,0.0354191512,-0.0369642824,0.0265643634,0.0029769768,-0.0057979547,-0.0187347103,-0.0057459553,-0.0442442261,0.0145896003,-0.0221815407,-0.0210226923,-0.0522670187,-0.0393711217,0.0393116921,-0.0078147957,0.0017401292,-0.0343494453,-0.0250192322,-0.0031812608,0.0339631625,0.0089439303,0.0092707844,0.0118707642,-0.0207404085,0.0152284522,0.0168032963,0.051672738,-0.0308134742,-0.0259700827,0.0045982497,-0.0602006726,0.0253312308,0.0353300087,0.0515538827,0.0166992974,0.020190699,-0.0184524264,0.031051185,0.0357460044,-0.0549709983,-0.0173232928,-0.0499493219,-0.0219438281,-0.0168775823,-0.0330123119,0.018259285,0.0241723824,0.020725552,-0.0241723824,0.0685206056,0.0407676809,0.0100507783,-0.0154067371,-0.0257917978,0.0134604657,0.03951969,-0.0110239135,0.0124650458,-0.0536932945,-0.019759845,0.0242763814,-0.0062770937,-0.0057273838,-0.0175610054,0.0463836379,0.0465024933,-0.0190467089,0.0118559068,0.0188089963,0.0004264431,-0.02408324,-0.0430259481,-0.0352111533,0.0320614651,0.0154513074,0.0638257861,-0.0059093824,-0.0290454868,0.0347060151,0.0078890808,-0.0105187753,-0.0696497411,0.057496693,-0.0020725552,0.0009053501,-0.0097016385,-0.0334580243,-0.0307243317,0.0060059531,-0.0045425361,0.0040448257,-0.0057385266,0.0120119061,-0.0525344461,-0.0116553372,0.0487607606,0.0529801585,-0.0446007922,-0.0458190702,-0.0987695158,-0.0120564774,0.0422830991,0.0063105221,-0.018333571,-0.0295506269,0.0304866191,0.006451664,0.0438579433,0.0013705607,0.0130370408,-0.0002290071,0.0125764729,-0.0330420285,-0.0199084152,-0.0486716181,0.0266832206,-0.0355380066,0.0089959297,-0.0593983941,-0.0316751823,-0.0259700827,-0.0111353416,-0.0532475822,0.0532772988,-0.0033595453,0.0101250634,0.0083645061,0.0059353821,0.0236523859,0.0339631625,-0.0196558461,-0.0133490385,-0.0012702758,-0.0164912995,-0.0191061366,-0.0194329917,-0.0248855203,0.003502544,-0.0268169325,-0.0149833113,0.0200569853,-0.0232958179,-0.0377962776,-0.0315266103,0.0008793503,0.0039296835,0.025836369,-0.0239940975,-0.0224638246,-0.053633865,-0.0120044779,0.0145747429,-0.0684611797,0.0300260503,0.0356865786,-0.0144558866,0.0028692633,-0.0010947771,-0.0694714561,-0.0159861613,-0.0456407852,0.0077776536,0.0871810317,-0.0183484275,0.0272180736,-0.0222558267,-0.0425802395,0.0036975425,-0.015258166,0.0180215742,0.0706600174,0.0378854163,-0.0235929582,0.0507516041,0.0080525083,0.0173381492,-0.011900478,0.029194057,0.0011978478,0.0106004886,-0.0474236272,0.0230729617,-0.0377962776,-0.0162833016,-0.0254500862,0.0008928144,0.0060505243,0.0109273428,-0.0013306325,0.0005515671,-0.0364294276,-0.0429962352,-0.0122050475,0.011075913,0.0428476632,-0.0034765443,-0.0168775823,-0.019403277,-0.0459082127,0.0109199146,-0.008149079,-0.0351220109,-0.0240089558,0.0207849797,-0.0466213487,0.0171747226,-0.0066150911,-0.0359837189,-0.0509298891,0.0061693802,0.0101547781,-0.0328637436,0.0041488246,-0.0145673146,-0.0069902311,0.052891016,-0.0468293466,-0.0184227135,0.0288226325,0.0405002534,0.0300557651,-0.0444819368,-0.0114399102,-0.0283323489,-0.009077643,0.0328340307,-0.0132524678,-0.0066188052,0.0019369848,0.0104890605,-0.0162981581,0.0217506867,0.0333094522,-0.0190764219,-0.0056828125,0.0528018735,0.0119079072,0.0160753019,-0.0051071029,-0.0129776131,0.007755368,-0.0382419862,-0.0106376307,-0.0436796583,0.027946068,0.0155553073,-0.0123016182,-0.0127027575,0.0013557037,-0.0037198281,-0.0210375506,-0.0111501981,-0.0093524987,0.034914013,-0.0290157739,-0.0137650352,0.0163427293,0.0181404296,0.018259285,0.0299071949,0.0088027883,-0.0015135596,0.0591903925,0.0104519185,-0.0294763409,-0.0069679455,0.0232363902,0.0380637012,-0.0102216341,0.0583584011,0.0431150906,-0.0018942709,0.0102067776,0.0112021985,0.000933207,-0.0047468198,0.0112021985,-0.0029602626,0.0033725451,-0.0032908313,-0.0115216244,-0.0047951052,0.0023158391,-0.0202204138,-0.0642417818,0.0219883993,0.0005938168,-0.0053299582,0.0239643846,-0.0106747737,-0.031378042,-0.0145153152,0.001316704,-0.0111204842,-0.0512270294,0.0467104912,-0.0072650858,-0.0261037964,-0.0217061155,0.0051182457,0.0014513457,-0.0419562422,0.017471863,-0.002055841,-0.0372019932,0.0025776941,0.0120119061,0.0232215319,-0.0441253707,0.0009345998,0.041272819,0.0042788237,-0.0005130317,-0.0397871174,0.0054711001,-0.0041933958,-0.0157633051,0.023370102,0.013401038,-0.0133564668,0.0041228249,0.0202501267,0.0035935433,0.0243209526,-0.0092113568,0.0081936503,-0.0005803526,0.0372911356,0.0171598662,-0.0125764729,-0.0665594786,-0.0399059728,-0.0099542076,-0.0114399102,-0.0171895791,0.0024124098,0.0262820795,0.0292831995,0.0320614651,0.0651332065,0.0389254093,-0.0056419559,-0.004341966,0.046027068,0.0053151012,0.0120044779,0.0066410908,-0.0609138086,-0.0276043564,0.0167587269,0.0207849797,0.01843757,-0.0275894981,-0.0206661243,0.0076142261,-0.0130444691,0.0336363092,-0.0249300916,0.0095159253,0.0062213801,-0.0084016481,-0.0119227637,0.0111279134,0.0017011296,0.0099096363,-0.0220626853,-0.0102662053,-0.0002414267,0.0089365011,-0.0296694823,0.0271586441,0.0002936584,-0.0104890605,0.0153621659,-0.030159764,0.0183038563,0.0156295914,0.0227758214,0.0247369502,0.0056679556,-0.030159764,0.0231323913,-0.0111799128,0.0383608416,-0.0179621447,-0.0066856621,0.0157484487,0.0000333993,0.0293129142,-0.0005130317,-0.03387402,0.0413322486,-0.0293277707,0.0063996641,0.0228649639,-0.0366374291,-0.0235632434,-0.0017039152,-0.026802076,0.025910655,0.0136981783,-0.0092856418,-0.0190467089,-0.0005269602,0.0007855653,0.0345574431,-0.0623400845,-0.0218101144,-0.0353597216,-0.0210969783,0.0057050982,-0.0077330824,-0.0298923384,-0.0157484487,0.0118930498,-0.0203392692,0.0050031035,0.0153324511,0.0244546663,0.0172787216,-0.0126730436,0.0153175946,-0.0043828227,-0.0208146945,0.0132747535,-0.0049176756,-0.0351814404,-0.0048693903,0.007933652,0.0389551222,-0.0048396764,0.0256729424,0.005467386,0.0101547781,0.019224992,0.0578235462,-0.0008956001,0.0000267107,0.0005752455,-0.0019704131,-0.0352111533,-0.030694617,0.0177838616,-0.0117667653,-0.0051739593,-0.0183632858,0.0033056885,-0.0077182255,0.0134678949,0.0504544638,0.015436451,-0.0385094136,-0.0072836573,0.0022638394,0.0216615442,-0.0208444092,-0.0085947895,-0.0059910961,0.0168924388,-0.0532475822,-0.0233998168,-0.0018032716,-0.0175907202,-0.0218398292,0.0486716181,0.0409162529,-0.0091444999,-0.0596063919,-0.0053708153,0.0116776228,-0.0118039073,-0.0215426888,0.0075585125,0.0061396663,-0.0091593573,-0.0020131271,-0.0024105525,0.0050328178,-0.0168924388,-0.0104816323,-0.0436796583,0.0125764729,-0.0312591828,-0.0094564976,0.0076439404,0.0208741222,0.0071053728,-0.0463242084,0.0179621447,0.001715058,0.0324774608,-0.027336929,-0.0062919506,0.0063513787,0.0057385266,0.0266832206,0.008683932,-0.000636995,-0.0043976801,0.0093673551,0.0291197728,-0.0106227743,-0.0067748041,0.0135644656,0.0526533015,0.0339631625,0.0117073366,-0.0157187339,-0.0060690953,0.0308729019,-0.0263860784,-0.0115216244,-0.0123239039,0.0249003768,0.0133416103,-0.06210237,0.0273072142,0.0383905582,-0.0346465856,0.0202798415,-0.0055788136,-0.0074990843,0.0376477055,-0.005092246,-0.0063030934,-0.0208146945,-0.0383014157,-0.0154810222,0.018333571,0.0260889381,-0.0331608839,-0.0111427698,-0.006611377,0.0084313629,0.0151095958,0.0480179116,-0.0095084971,-0.0119673349,0.0131558971,-0.0004255145,0.0002314446,-0.0091742137,0.0135570364,0.0450167917,0.0161644444,0.001887771,-0.0471264869,0.0171747226,-0.0297883376,0.0110461991,-0.0084462194,-0.0292980559,0.0096719246,-0.0394008346,-0.0339928754,-0.0148941688,-0.0116330516,0.0519104525,0.0004642821,0.032091178,-0.023191819,-0.0407973938,0.0302637629,-0.0180958584,0.000878886,0.0600818172,0.0122421896,-0.011937621,0.0283174925,0.0273815002,-0.0052296733,0.0149981687,-0.0117816217,0.017546149,-0.0304123331,0.0037718276,-0.0259255115,0.0098130656,0.0176055767,-0.0114176245,0.0148793124,0.0033261168,-0.0013974891,0.0150278825,0.0147010274,0.0125764729,-0.0103107765,0.0243952386,-0.0119970487,-0.0216021165,-0.0091296425,0.0517915934,0.0003971933,-0.0279014967,-0.0110090571,0.030516332,0.0037903988,-0.0166844409,0.0229095351,-0.0020855551,0.0282580648,-0.0007312443,-0.000766994,0.0514350273,0.0227906797,-0.0170558672,0.0125987586,-0.0211118348,0.0004926033,-0.0086245043,0.0073207999,-0.0362808593,0.0033502595,-0.0157781616,0.0075696553,-0.0182741433,-0.0085353618,-0.0317643248,-0.0118856216,-0.0104073472,0.0509001724,-0.0358351469,0.0694120303,-0.0240980964,0.0102142058,-0.0203541256,-0.020190699,0.0134976087,0.0715514421,-0.013794749,0.0011792765,0.0321803205,-0.0082827928,-0.0104890605,-0.0146713136,0.0324774608,-0.0478693396,-0.0121976193,-0.0125467591,-0.0106673455,-0.0159267318,-0.0182889998,-0.0092039276,-0.00201127,0.0107639162,-0.015689021,0.0275894981,-0.0089365011,-0.0202055555,0.0268169325,0.0497116111,0.0412431061,-0.0345277302,-0.0338145941,-0.0170261525,-0.0215575453,0.0238306709,-0.0096570672,0.0179621447,-0.0158078764,0.0232215319,0.0074470844,-0.0037161137,0.0287186317,0.0238603856,-0.0085576475,0.0121233333,-0.0239495263,0.0210969783,0.0217952579,0.0096644955,0.0059390962,0.0146638853,-0.0199529864,-0.009397069,-0.0376179926,0.0000454126,0.0232958179,0.0048025339,0.0119079072,-0.038449984,0.0336363092,-0.0005696741,-0.0133341812,-0.0005863883,-0.0091964994,-0.0213495474,-0.0066002342,-0.0270100739,-0.0292386282,-0.0046911063,0.0209335499,0.0267129336,0.0275152139,-0.0178135745,-0.0100210644,0.0292237718,-0.0047691055,0.0069085173,0.0086616464,-0.0071685156,0.0054153861,-0.0004159967,-0.0015507021,0.0482556224,0.0039556832,-0.025405515,-0.0085947895,-0.0045536784,-0.0225381088,-0.0297883376,-0.0348843001,-0.0035638292,0.0458190702,0.0396979749,-0.0042156815,-0.0079187956,-0.0334580243,0.0015395593,0.0193884205,0.0322397463,0.0171598662,-0.0166695844,-0.0126061868,0.0168478675,-0.0003554079,0.021616973,-0.0343197323,0.0056048133,0.0158078764,-0.0308431871,0.0342305899,0.0067265187,0.0097536379,-0.0034988297,-0.0189427081,0.014329602,-0.0004143718,0.0001611059,0.0327448882,-0.0021672687,0.0132004684,-0.0025219803,-0.0051962449,-0.0275597852,-0.0175907202,-0.0039111124,-0.0092633562,-0.0038108274,-0.0376774184,0.017546149,-0.0058425255,0.0161495879,-0.0036251144,0.0073987991,-0.0155850211,0.0371722803,0.0343791582,0.025048947,0.0133490385,-0.0232066754,-0.0111427698,0.0110907704,0.0136238933,-0.0232958179,0.0409756787,-0.0032889743,0.0294169132,-0.0029082629,-0.0112393405,0.0264603645,0.014864455,-0.0168330111,-0.0137056075,-0.0352408662,0.014723313,0.0277232118,-0.0163724441,0.0076067979,0.0144261727,-0.0022136969,-0.000101968,-0.0208444092,0.0005297459,0.0195221324,-0.0155404499,-0.0285106339,0.0278272107,0.0452247895,-0.0122421896,0.044422511,0.0000997626,0.0093822125,0.0033019742,0.0221963972,-0.0218844004,0.008683932,0.0058350973,-0.0302637629,-0.0070310878,0.0096644955,0.0155553073,0.028659204,0.0105113462,-0.0062808082,0.0270397887,-0.0027708355,-0.0105707748,0.0198044162,-0.0062770937,0.0284809209,0.0271883588,0.0046093925,0.0217655431,-0.0034338303,-0.0066522337,0.0053931009,0.081119366,0.0026798362,0.0040968251,-0.0052779587,-0.0040596826,-0.008468505,-0.0215278324,-0.0070868018,-0.0205026977,0.0364888571,0.023979241,0.0008700646,0.0182889998,-0.0186752826,0.0068082325,-0.0120639056,-0.0311700422,0.011328483,-0.0187347103,-0.0150873102,0.0046093925,-0.0180810019,0.0046725348,-0.0015330594,-0.0078742243,0.0014123461,-0.0061396663,-0.0090925004,0.0188981388,0.0027596927,-0.0013937748,0.0044199652,0.0214981176,0.0359837189,0.0459379256,0.0424613804,-0.0097536379,-0.034914013,0.004107968,-0.015117025,0.0094639258,-0.0036678284,-0.0201758426,0.0074767987,-0.0380339883,0.0004972461,0.0199232735,-0.0203095563,-0.0159118753,0.005861097,0.0208295509,-0.0085725039,-0.0017410578,0.0143444594,0.0053893863,0.0021672687,-0.0179324318,0.0348545834,0.0144707439,-0.0081936503,-0.0007892795,-0.0144261727,0.0195518471,0.0266386494,-0.0343494453,-0.0275300704,0.0209335499,0.011863336,0.0261186529,-0.0383311287,-0.0373802781,0.0217952579,0.0072168005,0.0010613488,-0.0410351083,0.0398168303,0.0077925106,-0.005396815,0.0088325022,-0.0303529054,0.0218695439,0.0204135552,-0.0181107149,-0.0162535869,-0.0068676607,-0.0008510291,-0.0077256537,-0.0013399181,-0.0320317484,0.0215575453,0.0178432893,-0.038628269,-0.0032295461,0.0170261525,0.0097759236,0.0061990945,-0.0095530683,0.0075287982,-0.0086245043,-0.0090850722,-0.0113210548,-0.0133044673,-0.0181850009,0.0122793326,-0.0231769625,-0.0368157104,-0.0213049762,-0.0124650458,0.0092633562,0.0040782536,-0.0098724943,0.0026222651,0.0288672019,0.0132747535,0.0076365117,0.0265197922,0.0119450493,-0.005861097,-0.0116999084,-0.0181255732,0.0047319629,0.0034914012,-0.0095010689,-0.061210949,0.0092633562,-0.0158524476,-0.0041525387,-0.0343197323,0.0039519691,-0.0293723419,-0.0026204081,0.0411539637,0.0374397077,-0.0185267124,-0.0283769201,0.0119227637,-0.0058462401,-0.0270546451,-0.0006044953,-0.0187198538,-0.0104073472,0.016580442,-0.0221518259,-0.0122867608,0.0153175946,-0.0303231906,0.0160307325,-0.00477282,0.0315860398,0.0073282286,-0.0002959798,-0.0111576272,-0.0122496188,0.0406488255,-0.0181107149,0.0045536784,-0.0290900581,-0.0304271914,-0.0328340307,-0.0134976087,0.0267575048,-0.0033502595,0.0053299582,0.0130667547,0.0220626853,0.0002855335,-0.0066485195,-0.0095679248,-0.0093599269,-0.0005311387,0.0106673455,-0.0146341715,-0.0246626642,0.0043308232,0.006644805,-0.0230283905,0.0173084363,0.0060319528,-0.0109570576,-0.0009684924,-0.0325963162,0.0372614227,0.025940368,0.0003667829,-0.0185861401,0.0142850308,-0.034200877,0.0145970285,0.0374397077,-0.00752137,0.0155701637,-0.0229243916,-0.0116999084,0.0277232118,0.0286740623,0.0017401292,-0.0017336293,-0.013579322,-0.025048947,0.0172638651,-0.0093153557,0.0160307325,-0.0454030745,-0.0177095756,-0.0044831079,0.0144113163,0.0107713444,-0.0047282488,0.0135941794,0.0369939953,-0.0094044982,-0.0140324617,0.0157781616,-0.0006829589,-0.0288226325,-0.0025479801,-0.0378259905,0.0171004385,0.0292980559,0.0015507021,0.008149079,-0.0061322376,0.0224192534,-0.0395494066,-0.0311403275,0.0102364914,-0.0077256537,0.0099096363,-0.0135421799,-0.0218398292,0.0355974361,0.0033075456,-0.0189278517,0.0084536485,-0.0457299277,-0.0158078764,-0.0213198327,-0.0239198133,0.0049548182,0.0371722803,0.0395791195,0.0206809808,0.0194181334,-0.006949374,0.0142478887,-0.0027968353,-0.0043271091,0.0037309709,-0.0167735834,0.0208592657,-0.0214386899,0.0022378396,0.0074210847,-0.0834964886,0.002143126,0.0023659815,0.0226123948,0.0054228147,0.0110461991,-0.0119970487,-0.0113433395,0.0347951576,0.0431150906,-0.0270843599,0.0003449616,0.0237118136,0.005092246,-0.0211266913,-0.0242912378,-0.0027039789,0.0357162915,0.0107862018,0.0263860784,-0.0148347411,0.0167438686,0.0078222249,0.0135050369,0.0188238528,-0.0266832206,-0.0381825604,-0.015258166,-0.0322100334,0.0107787726,-0.0410945341,-0.0153027372,0.0050811032,-0.0162387304,0.0166398697,-0.0041636815,0.0287780613,-0.0033056885,0.0181404296,-0.0010334919,0.0195518471,0.0007493513,0.0257472266,0.0008668146,-0.0115290526,0.0150873102,-0.0099393511,0.0058388114,0.0114844814,-0.0243655238,-0.0147307422,0.0288969167,0.0317346081,-0.0164615847,0.0569024123,-0.0264306497,-0.0366077125,0.0168478675,-0.0022099826,-0.0224786811,-0.0308729019,0.0288820602,-0.0282580648,0.0182444286,0.0083199348,-0.030516332,0.0200272724,0.0052965302,-0.0101993484,-0.0098502086,0.0223449674,0.0143964589,-0.0105484892,0.0077776536,0.0076365117,-0.0076216548,-0.0062696654,0.0218398292,-0.0146935992,0.0458487831,0.0075287982,0.0143221738,-0.009077643,0.0059948103,0.0188981388,0.0142553169,-0.0157484487,0.0326854587,-0.0099764932,0.0099467793,-0.0132673252,-0.0153473085,0.021691259,0.0127399005,-0.0056679556,-0.0291643441,0.0082382215,0.0228055362,0.0193735622,0.007970795,0.0163724441,-0.0009870637,0.0151467388,-0.0195221324,0.0145004578,0.0089142164,0.0147307422,-0.0090553574,-0.0087582171,-0.0145004578,-0.0021876972,-0.0298774801,0.0088845016,0.0304866191,-0.0343791582,0.0049956753,0.005162817,0.0081193652,0.0082753636,0.0089067873,0.0127844717,-0.0164170153,-0.0475721993,-0.0146935992,-0.0029899767,-0.0167735834,-0.0225232523,0.0234295316,-0.014582172,0.0128513277,0.0428179502,0.0331608839,-0.0132078966,-0.0265792198,0.003010405,-0.0062102373],"81":[0.0075573325,0.022263702,0.0297054797,0.0175490361,0.0527241454,0.0324479975,0.0006755185,-0.039905183,-0.0193979237,0.0257457756,-0.0082660737,-0.0225102212,-0.0032336293,-0.0442192554,0.0234192573,-0.0224177763,0.0359917022,-0.0147911096,-0.0590103641,0.0150607396,0.0185659248,0.0286731832,0.0300290342,-0.0244053304,-0.0167632587,-0.0203069616,0.0012248888,0.0433256254,0.0070142215,-0.0467460714,-0.0068871104,-0.0402133316,-0.0116402954,-0.0390115529,-0.007965629,-0.0130192582,0.0424936265,-0.0323555544,0.0168248881,-0.0019336295,-0.0077268141,0.0225872565,-0.019829331,0.0228337757,-0.0014386666,-0.0324788131,-0.078639403,0.037285924,0.0100610359,0.0203069616,-0.0940468088,0.0046877032,-0.0051845922,-0.0550352558,0.0050074072,-0.0099531841,0.0040521477,0.0581783652,-0.0324479975,-0.0224639978,-0.0084740734,-0.0010303702,0.0220017768,-0.0174719989,-0.0185967386,0.0151300728,-0.0195674058,0.025160294,-0.0048417775,0.0253759976,0.0692716986,0.018103702,0.0265469607,-0.0139745176,0.0312154051,-0.0790091753,-0.0226180721,-0.0004759444,-0.019105183,-0.0409836993,0.00896711,-0.0200450346,-0.047423996,-0.0056044441,0.043726217,-0.0657588094,-0.0137665169,-0.0182885919,-0.0272248872,0.0214162953,-0.0093908142,0.0419697724,0.0044450369,0.0073377769,0.0150453318,0.0116325915,0.005477333,-0.0307531822,-0.0207537767,0.0049650366,-0.009329184,-0.0464379229,-0.041353479,-0.0067022215,0.0390423685,0.0165937766,0.0127265174,0.0059164441,-0.0061090365,-0.008597333,-0.0494577736,-0.0200604424,0.0086358516,-0.0022976294,0.0232189614,-0.0258074049,-0.0464995503,-0.0048340736,0.0224639978,-0.0275638495,-0.0195057765,0.0416616276,0.012487703,0.0100533329,0.0501048863,0.0004184074,-0.0364231095,-0.0421546623,-0.0453902185,-0.0013279258,0.063170366,0.0088977767,0.0356527381,-0.0261463691,-0.0347282924,-0.0153457765,-0.007877036,0.004980444,-0.0066367402,-0.0280414782,-0.001919185,0.00357837,0.059472587,-0.0223869607,-0.0341736265,0.0026885923,-0.0493036993,0.0478862189,-0.0456367359,0.0168865174,-0.036207404,-0.0300598498,-0.0358376279,-0.0302601457,0.0379022174,0.0345434062,0.0323555544,0.0211235546,0.0226642936,-0.03130785,-0.0594109595,0.0148296282,0.0057277032,-0.0098299254,-0.0346974768,0.0008599259,-0.0596574768,-0.0273481458,-0.0743869543,0.0057931845,-0.0679774731,-0.0217090361,-0.0388882942,-0.0120794065,0.0366388112,-0.0241279975,0.0156154064,0.013666369,0.0413842946,-0.0084894812,0.000473537,0.0175490361,0.0047762957,-0.0481327362,-0.0160082951,0.0196290351,-0.0166399982,0.004483555,-0.0400900692,-0.0065982216,0.0122411838,0.0569765866,0.0555282906,0.0173487384,0.0475164391,-0.060920883,0.0315543674,0.0510293283,-0.0092444438,-0.0088900737,0.0178725906,0.0291354042,0.0949712545,-0.0180728883,-0.0089748139,-0.0078847399,0.0105232587,0.0057970365,-0.0140361469,-0.0097991107,0.0148142213,0.0051075551,-0.0106157027,0.0269013308,-0.0364539213,-0.0299519971,-0.0600272529,0.0217552576,0.0073955548,-0.0007554444,-0.0033549627,0.0500740707,0.0240509603,0.0135970358,-0.0164397024,0.0300752576,0.0047724443,-0.0590411797,0.0407371819,-0.0544497743,0.0509677008,0.0263004415,0.008504888,-0.0009533333,0.0135508133,-0.0340195522,-0.0115401475,-0.0148065174,0.0302909613,-0.0075111105,-0.0011276295,-0.0254684426,-0.0458216257,0.0170251839,0.013034666,0.0175798498,-0.0266394056,-0.070689179,0.0361457765,0.0134044429,0.0034974811,-0.0262542199,-0.0095140729,-0.0582091808,-0.0373167358,-0.0616296232,-0.0159466658,0.0128959985,0.0249137748,-0.0106542213,-0.0093831103,-0.0350980721,-0.0050536292,0.0162239987,0.0116094807,0.0202607382,-0.0216319989,-0.0245594047,-0.0394737758,-0.0195982214,0.0361765884,0.0244977754,0.0751265138,-0.0612906627,-0.0323555544,0.0303371828,0.0126802949,0.0245594047,-0.0320782177,0.0030679998,-0.0059549627,-0.0059896293,0.0290429611,-0.0046915552,-0.0112397028,0.0283496268,0.0127881467,-0.0091057774,0.0386417732,-0.0046222219,-0.0145368874,-0.0230186656,0.0420622192,-0.0303679965,-0.0027559998,-0.0277333315,-0.0174719989,0.0213854797,-0.0435721427,-0.013758814,0.0195828136,0.0230957009,-0.0103152581,-0.0192130357,0.0245131832,-0.000473537,-0.0022128888,0.0306761451,0.0193825178,0.0137742208,0.0110548139,0.0248213317,0.0276562944,0.0115709621,-0.037285924,-0.0010919999,0.1162334755,-0.0239277016,0.0242358502,-0.0093060732,-0.0176106654,-0.0581167378,-0.0321398489,-0.0298903678,-0.026701035,-0.0450204425,-0.0028580739,0.0142903691,-0.0199063681,-0.0240201466,0.0254684426,-0.0125647401,0.0338654779,0.0118251843,-0.0366696268,-0.02714785,-0.007102814,-0.0471158475,-0.0019644443,0.0174874067,-0.0308148116,-0.0663134754,-0.0298595522,0.0364847369,0.012849777,0.0081967404,-0.033033479,-0.0110162953,-0.010769777,0.0012094814,-0.0249445904,-0.0131425178,-0.0079579251,0.0099994065,0.0070450366,0.0269013308,0.0344509594,-0.0182885919,-0.0247288868,-0.0019105184,-0.0214625169,0.0022398517,0.0377481468,0.033310812,0.0084432587,0.0305374786,-0.0377173312,0.0270862207,0.0547887348,-0.0525700711,0.0186737757,-0.0391964428,-0.0341736265,-0.0385185145,-0.0334648862,0.0005127777,0.0303679965,0.048502516,-0.0023284443,0.0939851776,0.0196290351,0.0231573321,-0.0127419252,-0.0515839942,0.044527404,0.0381487384,-0.0323555544,0.044527404,-0.0497351065,-0.0000764352,0.0220017768,0.0126109617,-0.0191668123,-0.0395970345,0.0106311105,0.0275638495,0.0067137773,0.0128112584,0.0546346605,-0.003164296,-0.0193362944,-0.032232292,-0.050228145,0.0033048887,0.0157155544,0.0440651812,-0.0193362944,-0.0236503687,0.0067561474,0.0060705179,-0.0103922952,-0.0237274058,0.049950812,-0.0161315538,0.032232292,-0.0246056281,-0.0303834043,0.0108699249,0.0000735463,0.0444657728,-0.0153919989,0.0167940725,-0.0150453318,-0.0289197005,-0.0172408875,0.079933621,0.0550352558,-0.0159774795,-0.0614755489,-0.0958956927,-0.00986074,0.044527404,0.0299519971,-0.0025711108,-0.0361457765,0.0489647351,0.0207075533,-0.0116634062,0.0181345176,0.017287109,-0.006921777,0.0070797033,-0.019274665,-0.0110625178,-0.050875254,0.051676441,-0.0313232578,0.0077306661,-0.0562370308,-0.0362998471,0.0049573327,0.0078500733,-0.0719834045,0.0311075523,-0.0085511105,0.0173025168,0.0454518497,-0.0167786647,0.0007607407,0.0084355548,-0.0205842946,0.0013009629,-0.0108005917,-0.0101842955,-0.0173179246,-0.0345125906,0.0040791109,0.0129191102,-0.0023014813,-0.0067176293,0.006151407,-0.0066328882,-0.0078269625,-0.0196444429,-0.0131194061,0.0274559986,0.0398435518,-0.0336189605,-0.0056429626,-0.0467460714,-0.0054811849,0.0009374444,-0.0621534772,0.0432948098,0.0771602914,0.042277921,-0.0197522938,-0.0193517022,-0.0410453305,0.0171484426,-0.0449588113,-0.0029331848,0.0633552521,-0.0202299245,0.0205688868,-0.0046453332,-0.0449279957,-0.028873479,0.0060820738,0.0085665174,0.0558980703,0.0129345171,-0.0141131841,0.0356835537,-0.0247288868,0.0340195522,-0.0405831076,0.0064903698,0.0178879984,-0.0089362953,-0.0246826652,0.0244515538,-0.0236657765,-0.0078154067,-0.0460065156,0.0236811824,0.0033202961,-0.0000059809,-0.0153457765,-0.010138073,-0.0379638486,-0.0608592555,-0.0131733324,-0.0060782218,-0.0060011847,-0.0035745183,-0.021986369,-0.0283958502,-0.0366696268,-0.0016524444,0.0093831103,-0.0380254798,-0.0113937771,0.0255608875,-0.050228145,-0.0010091851,-0.0073377769,-0.0191668123,-0.0206305161,0.0321706645,0.0074302214,-0.0003719444,0.0052808886,0.0017468147,0.0013799258,0.0225256272,-0.023989331,-0.0118945176,0.0228954051,0.0190127399,0.0169789623,-0.0310767386,0.0000216516,-0.0363614783,-0.0165783688,0.0462222174,-0.0319241472,0.0182731841,-0.0157617759,-0.0073685921,-0.0025884442,0.0275176279,0.0346050337,-0.0299982205,-0.0013799258,0.0440959968,0.0344201438,-0.016655406,-0.0168557018,-0.0047069625,-0.0020742221,-0.0139437029,-0.0016572591,-0.0116171846,0.014298073,0.0224177763,-0.0210465174,0.0099300733,-0.0176722948,0.009498666,-0.0292740725,-0.0207537767,-0.0242820717,0.0197368879,-0.0476088859,-0.0079117026,0.0209848862,0.0167786647,-0.0126032578,0.0055312589,-0.0121410359,-0.0115170358,0.0287964419,0.0259306654,-0.0068370365,0.0023842962,0.0110394061,0.0283650346,-0.025699554,0.0252219234,0.0512450337,0.0000313866,0.0070334808,0.0117404433,0.0061167404,0.0264545158,-0.0053155553,0.0162394065,0.0286115538,-0.004753185,0.0101611847,-0.0218477026,-0.0064248885,-0.0253451839,-0.0374091826,0.0233268123,-0.0483176261,-0.014660147,0.0055274069,-0.0369161442,-0.0177185163,0.0113552585,0.0005368518,-0.0169789623,-0.0124568874,0.0482559949,-0.0163934808,-0.0156231094,-0.0457291827,-0.0019875553,-0.0232959986,-0.0182269607,0.0177185163,0.0160699245,-0.0224948134,0.0047570365,0.0119330361,0.0184888877,-0.0177955534,-0.0050690365,0.0325712562,0.0214317013,-0.0201374795,-0.0322939232,0.0067137773,-0.0476088859,-0.0019384443,0.015754072,0.000648074,-0.0102844434,-0.0030757035,0.002646222,0.0399359949,0.0106465174,0.0010005184,-0.0073878514,-0.0025306665,0.0279182196,0.0014425184,0.0205072574,-0.0461605899,-0.0258536283,-0.0174565911,-0.0194749609,-0.033403255,0.0047108144,0.0484717004,0.0182115547,0.0145291844,0.0565451793,0.0254992563,0.0236965902,-0.0158079993,0.0575620681,0.0018113332,-0.0111395549,-0.0014559999,-0.0379022174,-0.006879407,0.0546038486,0.0172254797,0.0148527399,-0.0212314054,0.0051691849,0.0013202222,-0.0189973321,0.0377173312,0.0079194065,0.0285807382,0.0163626652,-0.0043757032,0.0036592591,0.0201837029,0.0136201466,0.0012354814,0.0040136292,-0.0032201479,0.0293511078,-0.0046799998,-0.0368545167,0.0233422201,0.0084047401,-0.0082275551,-0.0008796666,-0.0119099254,0.0097220736,0.0029466664,-0.0093831103,0.0349748135,-0.0247597024,-0.0215087384,0.0342660695,-0.0402749591,0.0395662189,0.0047146664,0.0080195544,0.0005045925,0.0277025159,0.022263702,-0.0012951851,-0.0410761461,0.0111164432,-0.0480711088,-0.0265315529,0.0239585172,-0.0151300728,-0.0184118506,0.0126186656,-0.0147911096,0.0015291851,0.0358376279,0.0016890368,-0.0057854811,-0.0095294807,0.0034974811,0.0159774795,-0.0504438467,-0.0077460734,-0.0470234044,0.0086127399,0.0080118515,-0.003216296,-0.0316159986,-0.0167478509,0.0049611847,-0.0273635536,0.0187199991,0.0274405908,0.0172100719,0.0107851839,-0.0009364814,0.016116146,-0.0288888868,-0.0157771837,0.0045875553,-0.0106002958,-0.0172717031,0.0038383701,0.0096296286,0.0260231085,-0.0132426657,0.0235425159,-0.0148604428,0.0315543674,-0.0022167405,0.0436954051,0.0041407403,-0.0113706654,0.008420147,-0.0354678482,-0.0547579229,-0.0241434053,0.0254530348,-0.0124491844,0.0168094803,-0.0057354071,0.0136740729,-0.0046068146,0.009960888,0.0507211797,0.0244669616,-0.0269629601,-0.0207691826,0.0106079988,0.0201066658,-0.0097451843,0.0154228136,-0.0130654806,0.008142814,-0.0604894757,-0.0293819234,-0.0097143697,-0.0162239987,-0.0044296291,0.0473623648,0.0015648147,-0.0062708142,-0.0923828036,-0.013489184,0.0297517013,-0.0073493328,-0.0182731841,-0.0010409629,0.0237736274,-0.00300637,0.0218014792,-0.0189819243,-0.0211389605,-0.0281185154,-0.0341428109,-0.0465611815,0.0014579258,-0.0321706645,0.0117558511,0.01936711,0.0454518497,0.0122026652,-0.0383644402,0.0120177772,-0.026701035,0.0336497761,-0.01339674,-0.0174257755,0.0034917034,-0.0000074141,0.0362998471,0.0109700728,0.03130785,0.0048186663,0.0324479975,0.0208770353,0.0053232587,0.0024324441,0.0087128878,0.0320782177,0.023804443,-0.0200142208,-0.0105617773,-0.0281801466,0.0446506627,-0.0478245877,0.0306145158,-0.0146216284,0.0196136273,0.0090441471,-0.0626773313,-0.0068601477,0.0204610359,-0.0248213317,0.0240509603,-0.0085665174,-0.0111549618,0.0560521446,-0.0272711087,-0.0205226652,-0.0348207392,-0.0281801466,-0.0292740725,0.0342044421,0.0215241462,-0.0391348116,0.0195211843,-0.0102921473,-0.0160699245,0.0320782177,0.0265623685,0.0042717033,-0.021539554,0.0225872565,-0.0364847369,0.0036322961,0.0097451843,0.0362382196,0.0277333315,0.0058933329,0.017194666,-0.032756146,0.0225256272,-0.0044488884,-0.025699554,-0.0101226661,-0.0137511101,-0.0008685925,-0.0158542208,-0.0206151102,-0.0146139245,-0.0122719994,0.043726217,0.0155152576,0.0127804438,-0.0163010359,0.0008835184,0.0215087384,0.0189048871,-0.0087051848,0.0603354014,0.019829331,0.0024208887,0.0024497777,0.0408604406,0.017826369,0.0024786664,-0.0230957009,0.0199063681,-0.044527404,0.0094909621,-0.0144136287,-0.0071798512,0.0194903687,-0.0020434072,-0.0013914814,0.011771258,0.0047416291,0.0124106659,0.0173333324,0.0227259248,-0.0187970363,0.0147988135,-0.0224948134,-0.0271170344,-0.0107851839,0.0243437011,0.0090056285,0.0134737771,-0.0142749613,0.0284882933,0.022802962,-0.015931258,0.0375016257,-0.0090672588,0.0507519953,-0.0104154069,-0.010685036,0.0366696268,0.0189048871,-0.0101688877,0.0058740736,-0.0237736274,-0.0050228145,-0.0216319989,-0.0063863699,-0.0154998507,0.0088515552,0.0035591109,0.0093445918,-0.0330642946,0.031585183,-0.0139051843,-0.0184580721,-0.0345434062,0.0522311069,-0.0087051848,0.0885617733,-0.0482559949,0.0002045092,0.0129268141,-0.0179958511,0.0178571828,0.0586714037,-0.0130654806,-0.0146524431,0.0446506627,-0.0222791098,-0.0162856281,0.0090210363,0.0099762958,-0.038179554,0.0000460116,0.0009682592,0.0008493332,-0.0129037024,0.0146524431,0.0346050337,0.0012508888,-0.0137896286,0.0012142962,0.0297671091,-0.0285345167,-0.0025730368,0.0325712562,0.0534636974,0.0496426634,-0.024436146,-0.0311075523,-0.0122951102,-0.0228799973,0.0047300737,-0.0249445904,0.0264391098,-0.0074533327,0.0138743697,-0.0095371846,-0.0018912591,0.0103614805,0.0288888868,-0.0006302592,0.0213084426,0.0010139999,0.0242204424,0.0333416276,0.0354678482,0.0186737757,0.0476088859,-0.0159466658,-0.0003676111,-0.0324171819,0.0025653332,0.0247751083,0.0043757032,-0.0087591102,-0.0007063333,0.0050767404,0.0142518505,-0.0072645922,0.0081813326,-0.0067137773,-0.0575312562,-0.0191359986,-0.0262542199,-0.0203377753,0.0005912592,0.0030448886,0.0122642955,0.0146832578,-0.0177185163,-0.0063632587,0.0271786638,-0.0034358515,0.000291537,0.0358992554,-0.0051845922,-0.0153380726,0.0162548143,0.007965629,0.0475780703,0.0054002958,-0.0134506654,-0.0112397028,-0.0151300728,-0.031045923,-0.010685036,-0.0443116985,-0.0087128878,0.0306607373,0.0088977767,0.0058586663,-0.005296296,-0.0356527381,0.0074610366,0.0271632578,0.0193517022,0.006336296,0.0064711105,0.0044065183,0.01339674,-0.0041561476,0.0159928873,-0.0194903687,0.0206767395,-0.0009687407,-0.0122488877,0.0188586656,0.0137279993,0.0018864443,-0.0117019247,-0.0263928864,-0.0056622219,-0.0216319989,0.0115401475,0.0453285873,0.0119869616,0.00805037,0.0004258703,-0.028426664,-0.0160082951,-0.0027637035,-0.0033838516,-0.0278103687,0.0147294803,-0.018381035,0.0006394074,0.0138050355,0.0040444443,-0.015299554,-0.0078423694,-0.0160699245,-0.013034666,0.0326328874,0.0407679975,0.0103691844,-0.001479111,-0.0376865156,0.0101842955,0.0265623685,-0.018642962,0.0466844402,-0.0097066658,0.0107235545,-0.0145599991,0.0089285914,0.0143828141,0.0212159976,-0.0173641462,-0.0236965902,-0.0323863663,0.0144521473,0.031138368,-0.0062438515,-0.0123182209,0.0270862207,0.0046799998,-0.0113783693,-0.0271170344,0.0151069621,0.036731258,-0.0092675546,-0.0020607405,0.0258998498,0.0429250337,0.0110162953,0.0124645913,0.0054426664,-0.0231419243,-0.0099454811,0.0307069607,-0.0234962944,-0.0019095554,0.0023573332,-0.0154536283,-0.0241588131,0.0235733315,0.0139128873,0.0286115538,0.019998813,-0.015653925,0.0027694812,0.0215549618,0.021000294,-0.0109700728,-0.0059742215,0.018550517,0.0096219247,0.0024594073,0.0293973312,0.004302518,-0.0144906659,0.0302601457,0.0790091753,0.0055697775,-0.0023399999,-0.003035259,-0.0194287393,-0.0063478514,-0.0260077007,0.0008917036,-0.0095834062,0.0358992554,0.0059742215,0.0016110369,-0.018365629,-0.0192592572,0.0116942208,-0.0227721464,-0.0213084426,0.0295051821,-0.0145908138,-0.0066559995,0.0043564439,0.0004509074,0.0043602958,-0.0134660732,0.0079579251,0.0046992591,0.0095371846,-0.0187508129,0.0155152576,0.0253297761,-0.0109007396,0.0123028141,0.0100148143,0.0289351083,0.0269475542,0.0060319994,0.0142826652,-0.0151762953,0.0274868123,-0.0178571828,0.0068986663,-0.0091674067,-0.0132965911,0.0111472579,-0.0308764428,0.0156308133,0.0309688859,-0.0119869616,-0.0320474058,-0.0181499235,0.0002248518,0.0016062221,0.000674074,-0.0041831108,-0.0108082956,-0.0101303691,0.0075380732,0.0349131823,0.0357143655,0.0215241462,-0.0049688886,0.0006418148,0.0067985179,0.0258536283,-0.0480711088,-0.0293973312,-0.004976592,0.0117943697,-0.0201374795,-0.0301522929,-0.0067908145,0.0263928864,0.002282222,-0.0085434066,-0.0251294803,0.0306915529,0.0057739252,0.0162239987,0.0186121464,-0.016470518,-0.0063131847,0.0162085909,-0.0182577763,-0.0047300737,-0.0130654806,0.0082814805,-0.0011517036,0.0189048871,-0.0189665165,0.0123028141,0.0242666639,-0.0380871072,-0.0006398888,0.0026982219,-0.0109084435,-0.0131117022,-0.0185659248,0.0010111111,0.002309185,-0.0062399996,-0.0088977767,0.0173487384,-0.0002568703,-0.0013057777,-0.0037035553,-0.0262234043,-0.0167324431,-0.020538073,0.0058509624,0.0173333324,-0.0234962944,0.0079117026,0.0167632587,0.0244823676,0.0049226661,0.0391656272,-0.0020722961,-0.0334957018,-0.0281801466,-0.0171792582,-0.0076882956,0.009960888,-0.0199063681,-0.0466536246,0.0101457769,-0.0028792589,-0.0136509622,-0.0456675515,-0.0160391089,-0.0142903691,0.0335881449,0.0267472565,0.0342352577,0.002311111,-0.023172738,0.016655406,0.0043217773,-0.0260693319,-0.0017949628,-0.0206767395,-0.027871998,0.0242204424,-0.0125724431,-0.0215703677,0.0424936265,-0.0206921473,0.0112705175,-0.0066097775,0.0243282951,0.0086281477,-0.0138974804,-0.0211389605,0.0226488877,0.0319241472,0.0043834071,-0.0014454073,-0.0028445923,-0.0029293331,-0.0134121468,-0.0206921473,0.0275792573,-0.0098222215,0.0101765916,0.004302518,0.0198909622,0.0017805183,0.0023881479,0.0046838513,-0.006921777,0.000985111,0.0182885919,-0.0090133324,0.0073185181,-0.0027752591,0.0114862211,-0.0014945184,0.003940444,-0.0032085923,-0.0117096286,0.009498666,-0.0302139241,0.0098068137,0.0305066649,0.037008591,0.0100533329,0.0282725897,-0.0285191089,0.0008546296,0.0003615926,-0.0194595531,0.0196444429,-0.0296746641,0.0021551109,0.0417540707,0.039905183,0.0178109612,0.0095063699,0.0157309622,-0.0169943683,0.0246518496,-0.0188586656,-0.0011025924,-0.0225872565,-0.0183039978,0.0042639999,0.0093060732,-0.0030930368,-0.0014194073,0.0200142208,0.0228799973,-0.0033260738,-0.0265161451,0.0077884439,0.038456887,-0.0275792573,0.0072915549,-0.0221096277,0.028334219,0.0263004415,0.0020722961,0.0129499249,-0.0233114064,0.0402749591,-0.0596266612,-0.0188124422,0.0149914064,-0.0091674067,0.0026288887,-0.0012316295,-0.0048879995,0.0048687402,-0.0057546664,-0.0257303677,0.008597333,-0.0227875542,-0.0341428109,-0.0436645895,-0.013034666,-0.0058740736,0.0082198512,0.0195057765,0.0174103696,0.0206305161,-0.0258536283,0.0412302203,0.0060512586,-0.007649777,-0.0078654811,0.0005089259,0.0150761465,-0.0387958474,-0.0069525922,0.0074571846,-0.0574079938,-0.0462222174,0.0040444443,0.0054349625,-0.008242962,0.0168711096,0.0101534808,0.0004480185,0.0303679965,0.0141362948,-0.0240817759,-0.0118405912,0.021277627,0.0008907407,-0.0244823676,-0.0416616276,0.0018161481,0.0478554033,0.0129499249,0.0348515511,0.0028426663,0.011763555,0.0294743683,0.0037016293,0.032756146,-0.0076805921,-0.0486257747,-0.0269167386,-0.0047647404,0.0216474049,-0.0289042946,-0.012133332,0.0196136273,-0.0304758493,0.0148835545,0.0232805908,0.0170405917,0.0082814805,0.0244207382,0.0046337773,0.0356219225,0.0076536289,0.0069949622,0.0111241471,0.0159620736,0.0051807403,0.0005729629,-0.0000037766,0.0182731841,-0.0209540725,-0.0054888884,0.0143442955,0.0032740738,-0.0129268141,0.0662518442,-0.0184580721,-0.0316159986,0.0239122938,-0.0127881467,-0.0106311105,-0.0325712562,0.0263774786,-0.0090287402,0.0057238513,0.0165013317,0.0095679993,0.0130577767,0.0059357034,-0.0191205908,-0.0134660732,0.0172254797,0.0263004415,0.0069872588,-0.0059241476,0.0222020727,-0.0182423685,-0.0121949622,0.012402962,0.0145522952,0.042000588,-0.0123490356,0.0120485919,0.0175028127,-0.0029890367,0.0139899245,0.0129807396,-0.0125339245,0.0029158515,-0.0087282956,-0.009960888,-0.0051191105,-0.0102382209,0.0227567386,0.0142595544,-0.0046761478,-0.0224331841,0.0082968883,0.0104154069,0.017194666,-0.0104308138,0.0131964432,0.0029697774,0.0115940729,-0.0100533329,0.0152841471,0.0117558511,0.0248367395,0.0024247405,0.0060820738,-0.0108776288,-0.0086820731,-0.0353754051,-0.004206222,0.0353445895,-0.0415075533,-0.0055813328,-0.0047647404,0.0201528873,0.0256071091,0.0191822201,-0.0068447404,-0.0039038516,-0.062091846,-0.0124799991,0.0104462216,-0.0134198507,-0.0161931831,0.0016688147,0.0083354069,-0.0014415554,0.0304912571,0.0208924431,-0.0171176288,-0.0050497772,0.0019394072,-0.0081042955],"82":[-0.0092347972,0.0056732413,0.0380409397,-0.017765699,0.0657988861,0.0263348576,-0.0227388721,-0.0065645869,-0.0121574923,0.0127619235,0.0402444378,-0.0464264713,-0.0070312996,-0.0448656604,0.0496092997,0.0269316379,0.0156999212,-0.0325321928,-0.0667782202,0.0280180853,-0.0071154609,0.0229990073,0.0132898455,0.0190969799,0.0014909952,-0.0206424892,-0.0198467802,0.06077981,0.0132592414,-0.095056437,0.0096403025,-0.0411013514,-0.0584844984,0.010650239,0.0403668545,0.0358374417,0.0444678068,-0.0097474167,0.0128537361,-0.0147664947,-0.0282935221,0.026396066,0.0048545809,0.0299461447,-0.0231520273,0.0014058774,-0.0153250201,-0.0042884042,0.0038905505,0.0431824327,-0.0565564409,0.0149883749,0.0022704443,-0.0278344601,0.0443147868,-0.0463040546,-0.014644078,0.0359904617,0.023886526,-0.0157305244,0.0167863667,-0.0430294126,0.0209026244,0.0077390205,-0.0151796509,0.0371840224,-0.0216677263,0.0171383154,-0.0226776637,0.0441617668,0.0448044538,0.0069739171,-0.0122569557,-0.0105584264,0.0245445147,-0.0485687591,-0.0148353539,0.0351029411,-0.0069241854,0.0024712838,0.0117443362,0.0077428459,-0.0273294915,0.0006345576,0.0171995237,-0.0426315591,-0.0451410972,-0.015631061,0.0162507948,0.0088522453,-0.0100917136,0.0625242442,0.0139172301,0.0123946741,0.0266868044,-0.0116907796,0.0003789653,0.018408386,-0.0154244835,0.0189133547,-0.0165262315,-0.0151873017,-0.0165262315,-0.0302215815,0.0466713049,-0.0085844593,0.0155775044,0.0456613675,0.0065531102,-0.0062508942,-0.0552404635,0.0025324922,-0.0269775447,0.0019538826,-0.0315528624,0.0167710651,-0.0690429285,0.0096479533,0.0114229927,-0.0213004779,-0.0060022357,0.0178269073,-0.0062700221,0.0097780209,0.0489360094,-0.0498541333,0.028599564,-0.042478539,-0.0381327495,0.0116984304,0.0706343427,-0.0155392494,0.0374288559,-0.0366943553,-0.0264572743,0.0034104481,-0.0372452326,-0.0179493241,-0.0234427657,-0.0292269476,-0.018178856,-0.0392957069,0.0568012744,-0.0216524247,-0.0132898455,0.0354395881,-0.0070045213,0.0502519868,-0.0211321544,-0.0102064786,0.0010520171,-0.0096249999,-0.0224328302,-0.0390508734,0.0672678873,0.0009869833,0.0243914947,0.0334809236,-0.0162354931,-0.0314610489,-0.00688593,0.008898152,-0.0102523845,-0.0099386927,-0.0290433224,0.0055661267,-0.0465182848,-0.0629833043,-0.0845286176,-0.017306637,-0.0109333266,-0.051874008,0.019739667,0.0095178857,0.0359598584,-0.0028041038,0.0181329492,-0.0646359324,0.0261665341,-0.0152638117,-0.0486605726,0.0127083668,-0.0277120434,0.0261971392,-0.0190663747,-0.0217136331,-0.072837837,0.0321343392,0.0226929653,0.0035825965,-0.0446514301,0.0795095414,0.0069815679,0.0030757154,0.0157458261,-0.0354701914,0.0253096186,0.0525472984,-0.0344296508,0.0185461044,0.0277579501,0.0009745504,0.0889356136,-0.0145981722,0.022019675,0.0048469296,-0.0070810313,0.0011696517,-0.057658188,-0.0559137538,0.0062317667,0.0040665241,0.0147894481,0.003205783,-0.0291198343,-0.0143074328,-0.0340624005,-0.023274444,0.0127466219,0.0049157892,0.0360822752,0.0540775061,-0.010497218,-0.0121957473,-0.0078805648,0.0389590636,0.0023985989,-0.0259217024,0.0301450714,-0.0061476054,-0.0026625597,-0.0370616056,0.0034066227,-0.0249576718,-0.0110939983,0.0116907796,0.0203976557,-0.0244527031,-0.0149577707,-0.0174749605,-0.0226164553,0.0089670112,-0.0058377385,0.0000493731,-0.0156463627,0.0011792155,-0.0332360901,-0.0754697919,0.0152561609,0.0332360901,0.0235498808,-0.0076433825,0.017306637,-0.0045485394,-0.0467019081,-0.0319507159,-0.0095484899,0.0444065966,0.0060557928,-0.0222951118,-0.0047818958,-0.0034678308,0.005722973,0.0280333869,-0.0377042927,0.0157611296,0.0133051472,-0.0576887913,0.0169393886,-0.0240854528,0.0273141898,0.0261512324,0.0303286966,-0.038377583,-0.0198773853,-0.026396066,0.0086227143,0.0178728141,-0.0063618342,-0.0114306444,-0.0094490265,-0.0452941172,0.0185001995,0.0035749455,0.0222186018,0.00633123,0.0153250201,0.023733506,0.013083267,-0.0132439388,-0.0126165543,0.0158835463,0.0392651036,-0.0256309621,0.0042960555,0.0005116629,-0.0025898749,0.016618045,-0.024911765,-0.0127236685,0.045600161,0.0199385937,0.0370616056,-0.0086227143,0.011981518,-0.0007292391,-0.0027084658,0.0057153222,-0.0114688994,0.0062088137,-0.0080794916,-0.0348887146,-0.0061361287,-0.0094260732,-0.0280792937,-0.0070351255,0.0599841028,-0.0288137924,-0.0056005567,-0.0740007982,-0.0460898243,-0.0847122446,-0.0219584666,0.0086303661,0.0334197134,-0.0264419708,0.0296860095,-0.0128307836,0.0374288559,-0.0011897357,-0.0108491657,-0.0397547707,0.0333279036,0.0185001995,-0.0355313979,-0.0538326725,-0.0057306243,0.0231367256,-0.0224940386,0.0242843796,-0.0111093009,-0.0027161168,-0.0613612868,0.030466415,0.041652225,-0.0024865859,0.0036074624,-0.0243149847,0.0088751987,-0.0060940483,-0.05545469,0.0120274248,0.0109333266,0.0001644972,-0.0032555147,-0.024988275,0.0110557433,-0.0049922992,-0.0285383556,-0.0143992454,-0.007700765,0.0555771068,0.0136341415,-0.0165568367,-0.017000597,0.0205353741,-0.0230143089,-0.0179034192,-0.0603513531,-0.0360516682,0.0262124408,0.0037738723,-0.0328688398,-0.0288903024,-0.0665333867,-0.0044452506,0.0488748029,0.0332054868,-0.0202905405,0.0650643855,0.0403056443,0.0249576718,0.0056349863,-0.0016172372,0.0376736894,0.0463040546,-0.0046747816,0.0296860095,-0.0553934835,-0.0195407402,0.032746423,-0.0235345792,-0.0206271857,-0.0212086644,-0.0057267984,-0.0008856072,-0.0122187007,0.0516597778,0.0697162151,0.0152485101,0.032287363,-0.0051644477,-0.0561585873,-0.0110404417,0.0091582872,-0.0023469545,0.0060710949,0.0315834656,-0.020045707,-0.024299683,-0.0296554063,-0.0174902622,0.0509864874,-0.0185767096,0.0206577908,-0.0264266692,-0.0293187611,0.0814069957,0.0272529814,0.0596474558,-0.028262917,-0.0068629771,-0.0114153419,0.0061323033,-0.0461510345,0.0392651036,0.0295788962,-0.0384081863,-0.0016334957,-0.0615143105,-0.0237641092,-0.0429069959,0.0198773853,0.0186532196,-0.0160977747,0.0241466612,0.0026874256,-0.028676074,0.0235498808,0.0317976959,-0.0007493231,0.003412361,0.0068285475,0.0201987289,-0.028905604,-0.0136723965,-0.0537102558,-0.0213310812,0.0035328646,-0.0240854528,0.0489972197,-0.0318282992,-0.0352559611,0.0235345792,-0.0191734899,-0.0257686805,0.0463958681,-0.0088445945,0.0307418518,-0.0493950732,-0.034613274,0.0248505566,-0.0609634332,0.0072417031,-0.0144451512,-0.0364189185,0.0443453901,0.0207955092,0.0171077102,-0.0311244037,0.0154856918,0.0294717811,-0.0143533386,-0.0178575125,-0.0393263139,0.0162813999,0.0325015895,0.020841416,0.0305735301,-0.0276049282,0.0095714433,-0.0233203508,-0.0076280804,0.0409483314,-0.0034793075,0.0127466219,-0.0080718407,0.0310631953,-0.0302827898,0.0103748012,-0.0315834656,-0.0100152027,0.0514149442,-0.019969197,-0.0064880764,-0.0190204699,-0.0514149442,-0.003261253,0.0024234648,-0.000484406,0.0246516299,-0.0249423683,-0.0074903616,0.0660437196,-0.0367861688,0.0138254175,-0.0400302075,-0.0047933725,-0.0228918921,-0.0702058822,-0.0115683628,0.0365719385,0.0232132357,0.0421724953,-0.0228459854,0.0156999212,-0.0092577506,0.0307265501,-0.0029303457,0.0055967309,-0.0328688398,-0.0373370424,-0.0229377989,0.0029915541,0.0122033982,0.0098009743,-0.0504968204,0.0104360096,-0.0126624601,-0.0032995082,0.0268704295,-0.0189439598,0.0080488874,0.0009511191,-0.0297931246,0.0177963041,-0.0336033404,-0.0466713049,-0.0504662171,0.0260594208,-0.0001055603,0.0243761931,0.0106731914,0.0163885131,0.0035768582,-0.0178728141,0.0199998021,-0.0072761327,-0.0077084163,0.0384999998,0.0229990073,-0.0230143089,0.0168475751,-0.0044796802,0.0040244437,0.0255697537,0.0312162172,0.015631061,0.0138866259,-0.0006106481,-0.0081560016,-0.0132592414,0.0062279413,0.0014852568,-0.0173678454,0.0060060611,0.0017539994,-0.0356538147,-0.0378879197,0.0011486114,0.0074368045,-0.0101070153,-0.0064880764,0.0370003991,0.0194642283,0.0043304851,-0.0334197134,-0.0172607321,0.0114229927,0.0026147407,-0.0125017883,-0.0047512916,-0.0357456282,0.0448656604,-0.032287363,0.0148124006,0.0112929251,-0.0021422894,0.0449268669,-0.0278344601,-0.0120503781,0.0211933628,-0.0035175628,0.0093801674,0.027727345,0.019892687,0.0060634441,0.0106961448,-0.0196784586,0.0337869637,0.0518127978,-0.0073373411,0.0002441158,-0.019892687,-0.0235957876,0.0411319546,-0.0095714433,0.0103748012,0.0456307642,-0.0213157795,0.0303439982,-0.0032229978,-0.0081713041,-0.0489360094,-0.0430600159,0.0128996428,-0.0265643876,-0.021606518,0.0177810024,0.0056311605,-0.0301450714,-0.0048660571,-0.0156081086,-0.0120733306,0.0163579099,0.0278497618,-0.0217901431,-0.0233050473,-0.0339399837,0.0208108108,-0.0082095591,0.0232285373,0.0365719385,0.0123258149,0.0061782096,0.0414379984,0.0366025455,0.0329912566,-0.0030776283,-0.0067711645,0.0204129573,0.019433625,-0.0058989469,-0.0261512324,0.0064421701,-0.0428457893,-0.0180411376,0.0469773449,-0.0142309219,-0.0332972966,0.017306637,-0.0128919911,0.0816518292,0.0269622412,0.0290433224,-0.0047321641,-0.0014756931,-0.0239324328,-0.0089134537,0.004012967,-0.0332360901,0.0025344049,-0.0271917731,0.0310938004,-0.0180564392,0.0176891889,0.0347662978,-0.0038733357,0.0311856121,0.0265337843,-0.0094949324,0.0304052066,0.0344296508,0.0007144153,0.0256462637,-0.0190051664,0.0172760338,-0.0102064786,0.0094566774,0.0566788577,-0.0330218598,0.0206883941,-0.0267633144,0.003402797,-0.0143456878,-0.0033741058,0.0004781896,0.023580486,0.0467019081,0.0318895094,0.024835255,0.0001134505,0.0098315785,-0.0352559611,0.0117978938,-0.021606518,-0.0002271401,0.04967051,-0.0063771363,-0.0128919911,0.0075400937,-0.0109180249,-0.0383163765,-0.0091582872,-0.0242843796,-0.0083472775,0.0224022269,-0.0197090618,0.0277885534,-0.015478041,-0.0381633565,0.0124099767,-0.0069777425,0.029441176,0.0047130366,-0.0072952602,-0.0018945872,0.0388060436,-0.0249423683,-0.0022895718,-0.0629220977,0.0013924881,-0.0198008753,-0.0320119224,0.0370616056,-0.0330830701,0.0173372421,0.0483239293,0.0110404417,-0.0392038971,0.0296248011,0.0265031792,0.0118591022,-0.001480475,0.0270540547,0.0028002784,-0.0145140104,-0.0050343801,-0.0380409397,0.0198620837,-0.0347356908,0.0128154811,-0.0208567176,-0.0020007452,0.0006273848,-0.0405810811,0.0122033982,0.0551180467,0.0221879967,-0.0128001794,-0.0242078695,0.0158835463,-0.0029953795,-0.0140013909,0.0001404682,-0.0163732115,-0.0155315977,0.0097168125,-0.0059257252,0.0151949525,0.0108721182,0.0265031792,-0.0330218598,0.0183930844,-0.0183165744,0.0162507948,-0.023580486,-0.0097474167,0.0034946096,-0.0396629572,-0.0113541335,-0.0063809617,0.0097168125,-0.0137948133,0.0570461042,-0.0017712143,-0.0100687603,-0.0236110892,0.0123870233,0.0144068962,0.0310325921,0.0065569356,-0.0348887146,-0.0284159388,0.0098851351,0.0145216612,0.0119126588,0.0025975259,-0.0316752791,-0.0217748415,-0.0135193765,0.0029093055,-0.0276661366,0.0191887915,0.0121192373,-0.0057306243,-0.0064612976,-0.1252933294,-0.0331748798,0.0368779823,0.0006732909,-0.0219278615,0.0108874207,0.0191887915,0.026013514,0.0084314393,-0.0231673289,-0.0017884291,-0.0354395881,-0.0267327111,-0.0000542446,0.0020122218,0.0122646065,0.007911169,0.0279415734,0.0134734698,0.0306653418,-0.0180258341,0.0045600161,-0.0478648655,0.0637790188,0.0101376195,-0.0072723073,-0.0137412557,0.0282017086,0.0118055446,-0.0261206292,0.0024292031,0.0005020991,0.0028653122,0.0029341714,-0.0014460454,0.0267174095,-0.0054054554,0.0166486483,0.0194795318,0.0053748512,-0.0359904617,-0.0461816378,0.0384387933,-0.0622794144,0.0542611293,-0.0179952309,0.0194030218,0.0315834656,-0.0151949525,-0.0181176476,0.0177044906,-0.0024445052,-0.0169087835,0.0099004377,0.0035290392,0.0316446759,-0.0484769493,-0.0262583476,-0.0215300079,0.0019376242,-0.0299920514,-0.0071996227,0.0237641092,-0.0662273467,-0.0245445147,-0.0038446444,0.0266868044,0.0163579099,0.0089287562,-0.0115836645,0.0180411376,0.0382857732,0.0360822752,-0.0120503781,0.003031722,0.0092118448,0.0187144279,-0.0121651432,-0.0197090618,-0.0176585857,0.0012184271,0.0006995914,-0.004204243,0.0016143681,-0.0047130366,-0.0186379179,-0.0025057134,0.0068782791,0.0160059612,0.0132286372,0.0320731327,-0.0154168326,-0.0128460852,-0.0089440579,0.0249270666,0.0174290538,0.0071384143,-0.0084390901,-0.0078958664,0.0084620435,0.0317058824,0.0088063395,0.0090435212,0.0113847377,-0.0196478534,-0.0158835463,0.006009887,-0.0050076013,0.0163885131,0.0031904809,-0.0263501592,-0.0042692767,0.0249576718,0.0258910973,0.0179340225,0.0259063989,0.0165262315,-0.0181176476,0.0297013111,-0.027497815,0.0088905012,-0.0110098375,-0.0244220998,0.0288903024,-0.0160059612,0.0176738873,0.059218999,-0.0093266098,0.0298084263,-0.0102141295,0.0023603439,0.0528533384,-0.0002374211,0.0477118455,0.0135270273,-0.0305735301,0.0018257279,0.0023048739,0.0107879573,0.0250341818,0.0127160177,0.0188827515,-0.0005762185,0.0048201513,0.0307418518,-0.0200304054,0.0101223169,0.0190663747,-0.034154214,0.0418664552,0.0057306243,-0.028905604,-0.0179187208,0.0629220977,0.0030986685,0.0550874397,-0.0534960255,-0.0211933628,-0.0323179662,-0.0053978041,-0.0079035172,0.0497011133,0.0144681046,0.0099692969,0.0524248816,-0.0392345004,-0.0241925679,-0.0028920907,-0.004885185,0.0146517288,-0.0046020965,-0.0168628786,0.0105201714,-0.013083267,0.0656764731,0.0376430862,0.0038733357,0.0135652823,0.0036438047,0.0092118448,-0.0224175286,0.0079264706,0.0017903418,0.0405198745,0.0367555656,-0.0179952309,-0.0141008543,0.0027008147,-0.0182400644,0.0206730925,0.0242843796,0.0099080885,-0.0027161168,0.0164344199,-0.0132592414,-0.0023259141,0.0376430862,0.020841416,-0.0162813999,0.0136570949,-0.0195866451,0.0214228947,0.0289362092,-0.012738971,0.018790938,0.0259217024,-0.004716862,0.0142768286,-0.0448656604,0.0181329492,0.0223563202,0.0312315188,-0.018867448,-0.0183624811,-0.0154856918,0.032746423,0.0280180853,0.0204894673,-0.0178728141,-0.029930843,-0.0155469002,-0.0353171714,-0.022249205,0.0233968608,-0.0152791142,0.0433048494,-0.0097703701,0.0011868665,-0.0202446338,0.00207343,-0.0053557237,0.0208261125,0.0090129171,-0.0103977546,0.0339093804,0.0396017507,0.0125782993,0.0175820757,0.0046939091,0.0116295712,0.0268092211,0.006656399,0.0011036616,-0.0225093402,-0.0180105325,0.0002971948,0.0461510345,0.0412237681,0.0203364473,0.000240888,-0.0001207429,0.0110633941,0.0359292515,0.0210097376,0.0277426466,0.0274519082,-0.0134275639,0.027115263,0.0030699773,-0.0038446444,-0.0066602249,0.0037585702,-0.0093495632,-0.0032459509,0.0001823098,-0.0034563544,-0.0158835463,0.0019605774,0.0128537361,-0.0076969396,-0.0321649462,0.0091506364,0.0304358117,0.0082325116,-0.0023182631,0.0225705486,-0.0565258339,-0.0089670112,-0.0054245829,-0.0332054868,-0.0143533386,-0.0085079493,-0.0088905012,-0.0237029009,0.040428061,-0.0135117248,-0.0093648648,-0.0175820757,0.0384693965,-0.0461204313,0.0120121222,0.013351053,-0.0031503129,0.012096284,-0.0299920514,-0.0016851401,-0.0123717207,0.015439786,0.0097244633,-0.0138866259,0.0168016702,-0.006484251,0.0187144279,0.027038753,0.0187603347,0.0168016702,-0.0204435624,-0.0158376396,-0.0377961062,0.0453247242,-0.000799533,0.0094949324,0.0382857732,0.0127313193,-0.0162048899,-0.001001329,0.0115760136,0.0284924489,0.0317976959,0.0420500785,0.0059372019,0.0135193765,0.0102906404,0.0293952711,0.0024330285,0.0140625993,0.0068208962,0.0097703701,-0.0166792534,0.0124176275,-0.0074788854,-0.0082860691,0.021606518,0.0320731327,-0.0190051664,-0.0004884707,0.0231520273,-0.0044949823,0.0025592707,0.0090741254,0.0124635333,0.0078078797,-0.0134811206,0.0162813999,-0.0085462043,-0.0113235293,0.0465488881,0.0337563604,-0.0243608914,0.0274825115,0.0770612061,0.018255366,0.0163885131,0.0166333467,0.0134122614,0.00373753,0.0179952309,-0.0109103741,0.0101988278,0.0210862476,-0.0151719991,-0.003680147,-0.0282323137,0.0207343008,0.0201987289,-0.0168169718,-0.0196325518,0.0280486885,0.0062776729,0.0022761824,0.036204692,0.023886526,-0.0030833664,-0.0140013909,-0.0255697537,-0.0121651432,0.0037126639,-0.011943263,-0.0135499807,0.030236885,-0.0024636327,-0.0222186018,-0.0104513122,0.0448350571,0.00633123,0.0079723774,-0.016924087,0.0321955495,-0.0026510831,-0.0067482116,0.0018046875,-0.0221879967,-0.0057650539,-0.0099616461,-0.0179340225,0.0341848172,-0.0118361488,-0.0022857462,-0.0159600563,-0.0330830701,-0.0469467416,-0.0220655799,0.0113923885,-0.0117672896,0.0089746621,-0.0088675478,0.0527921319,0.0122033982,0.039938394,0.030879572,-0.0090129171,-0.0071651931,-0.019280605,-0.0111858109,-0.0356232114,-0.0158070344,0.0314610489,-0.0094719799,0.0059372019,-0.0454777442,-0.021147456,0.0309101753,0.010267687,0.0157611296,0.0355926082,0.0155315977,-0.0029418224,0.0266102944,0.030879572,-0.0408259146,-0.0086533185,0.0023603439,-0.024758745,0.0205047689,-0.017765699,0.0015235121,0.0204282589,-0.0030183326,-0.0031885682,0.0098162759,0.0100687603,-0.0026013514,-0.0057918322,0.0153556243,-0.0076127783,-0.0134352148,-0.0471609719,-0.0026090024,-0.0018945872,-0.0466100946,0.0099922493,0.0006575107,-0.0108338632,0.0289362092,0.0068017687,-0.0128843402,-0.0009142985,-0.0209485292,-0.0095025832,-0.0025592707,-0.0255085453,0.0381633565,0.0050726351,-0.0000354159,0.0258910973,0.0344908573,0.0123105133,-0.0003691624,-0.0088063395,-0.0159906596,0.0245292131,0.0150419315,-0.0070236488,-0.0162201915,0.004946393,0.0095867449,0.0394181237,-0.0059831082,-0.0118744038,-0.0073947241,0.0027218552,0.0042998809,0.027115263,-0.0152867651,0.0223257151,0.0185461044,0.0093878182,-0.0313692391,-0.0034965223,-0.0224175286,-0.0488441996,0.0250953902,-0.0033243741,0.0112852743,0.0215147063,-0.0016908784,0.0210862476,0.009242448,0.0263501592,0.027497815,-0.0125629967,0.0000412737,0.0142309219,0.0130297104,-0.0205506757,-0.018867448,0.0063427067,-0.0000764506,0.0017415665,-0.0168781802,0.0011438295,0.0186226163,0.0097474167,-0.0250494834,0.0148736089,-0.0049349167,0.0109256757,-0.0147358906,-0.0087068761,0.0230143089,0.0009515973,-0.0140166935,0.0223563202,0.0099845985,0.0151184425,0.0093419123,-0.0069088833,-0.0068897558,0.0061590821,0.0020715173,-0.0044911564,-0.0020772556,0.0174290538,0.037918523,0.0064765997,0.0115530603,-0.0001933081,-0.0040435712,0.0067941179,-0.0257533789,-0.0071651931,-0.017153617,-0.0122646065,0.0512925275,0.0347662978,0.0117060812,0.0185001995,0.0210862476,-0.0540162958,0.0171077102,-0.0256462637,-0.0089211054,0.0078117051,-0.0143992454,-0.0006914621,0.0265796911,-0.0292728543,0.0026950766,-0.0001380772,0.0023641693,-0.0137718599,-0.0010787958,-0.025447337,0.0050114268,0.0183777828,-0.0291963443,-0.0024693711,0.057352148,-0.0244067963,-0.0429375991,0.005286864,-0.0218054447,-0.0029437351,-0.0318589024,-0.0028079292,-0.000247224,0.0411625616,-0.0125400443,0.0165262315,0.0012012123,-0.0026663851,-0.0102753378,0.0035118244,0.0281558037,-0.0105201714,-0.0189439598,0.0015780256,-0.0161589831,0.0482933223,-0.0311397072,0.0006804638,-0.0007923602,0.0227388721,-0.0017970365,0.0496399067,0.0217595398,0.011331181,0.0229531005,0.0125247417,0.0058912956,-0.0198008753,-0.010458963,0.0173678454,-0.0226011537,-0.0407034978,0.0249423683,-0.0171383154,-0.0110174883,-0.0017597377,-0.0078805648,-0.0182247609,0.0022207124,0.006048142,-0.0187603347,0.0080565382,-0.0007254136,0.0216371231,-0.0468243249,-0.0370310023,0.0289974175,0.0100152027,0.0191122815,0.0146287763,-0.0022015849,-0.0102447337,-0.0167710651,0.0109180249,-0.003165615,0.0027715869,0.0018964999,-0.0055929055,-0.013542329,-0.0229990073,-0.0259982124,0.0223716218,0.0089823129,-0.0322261527,0.0003493175,0.0028863524,0.0285383556,0.0037069258,0.0224787369,0.0040244437,0.0102906404,0.0040359204,0.0027907144,0.0083778817,0.0317976959,0.0089746621,-0.0155086452,-0.0196019486,0.0121039348,-0.0244220998,-0.0293340627,0.0202446338,0.0089440579,-0.0002610915,0.0033741058,-0.0033454143,-0.0183930844,0.019969197,-0.0025688345,0.0079723774,-0.0295023844,0.0056617646,-0.0017893855,0.0135958865,0.0528533384,0.0244067963,0.0080718407,0.0279415734,-0.0057688793,0.0011887794,0.0012557259,0.0665333867,0.0261206292,0.022631757,-0.0038044765,-0.0008669577,-0.0115148053,0.0367555656,0.010229432,0.022019675,-0.0252178069,0.0182859693,0.0149348173,0.0020944704,0.0280027818,0.0127466219,-0.0112929251,-0.0066334461,0.0268857311,-0.0407034978,0.0193877183,-0.008936407,0.0332360901,0.0000525411,0.0086150635,-0.0203976557,0.0013982264,-0.0003787262,0.0217442364,-0.0168781802,-0.0246057231,-0.025447337,0.0134505173,0.034643881,0.0139784385,-0.041988872,0.0056961942,0.0453859307,-0.0006460341,-0.0018429427,-0.0157458261,-0.0332054868,0.0179034192,0.0087833861,-0.0121039348,-0.0203211457,-0.0153938793,0.0070504271,0.024988275,-0.0041200817,-0.0263654608,0.0025764855,-0.0512619242,0.0294105727,0.0032268234,-0.0114229927,0.0026415193,0.0100381561,0.0343378372,0.0263654608,0.0253555253,0.0475282185,-0.002413901,-0.0064077405,0.0153785776,-0.0015761129],"83":[0.0058816927,-0.0121082645,0.0402759127,0.0040823221,0.0648972988,0.0409056917,0.0054543423,-0.0085695023,-0.0244414508,0.0209626686,0.0214874838,-0.0499625243,0.0095141726,-0.036017403,0.0309791639,0.0174838845,0.0440545902,-0.0343080014,-0.0423751771,0.0312490705,-0.0010158947,0.0116659198,0.0183385853,-0.0059454204,-0.0198080726,-0.0209326781,-0.0057992218,0.0656770319,0.0138326623,-0.0920678005,-0.0208726991,-0.0351776965,-0.0554506071,0.0008279916,0.0187284499,0.0174089111,0.0216074418,-0.0228670016,0.0171839893,-0.0038986364,0.0050682272,0.009424204,0.0323286913,0.0195531603,-0.0015154075,0.0000363154,-0.0429149903,0.0090793241,-0.0077372938,0.0619583279,-0.0518518649,0.0236767195,-0.0325985998,-0.025611043,0.0454640985,-0.040755745,-0.0240815766,0.0401859432,0.0145599078,-0.0209626686,-0.0017328315,-0.0727545545,0.0279502235,-0.0121532492,-0.0074523934,0.0264357533,-0.0257909801,0.0495126806,-0.0411156192,0.0392862596,0.0535612665,0.0099565173,0.016074378,-0.0333783254,0.0437846854,-0.0628580153,0.0052931486,0.0521217696,-0.0213675257,0.0009980884,-0.0029127311,0.0004643688,-0.0214874838,0.0095066745,0.0427650437,-0.0592892617,-0.0149497706,-0.0082171261,-0.0046858611,0.0275303703,-0.0415654629,0.0423751771,-0.016479237,0.0155645562,0.0203028992,0.0222222283,-0.000756298,0.030289406,0.0039923536,0.0164042618,0.0050457353,-0.0553006567,-0.0007117823,0.0022454646,0.0268106218,0.0109161818,0.0221022703,0.0331084207,-0.0038574007,0.0085470108,-0.0560204051,-0.0111411028,-0.0430049598,-0.012887992,-0.0125731025,0.0094691878,-0.0569800697,0.0260758791,-0.0083145918,-0.0010646277,-0.0063540274,0.0152721582,-0.0147473421,-0.0049295258,0.0265557114,-0.0422852114,0.0173639264,-0.0600989796,-0.0331983902,-0.0078497548,0.076293312,0.0024797576,0.0306942649,-0.0334982835,-0.0503823794,0.0127905263,-0.0505923033,0.0063952631,-0.0282351244,-0.0249962565,-0.0257010106,-0.0404558517,0.0196881145,-0.0328984931,-0.0206777677,0.039256271,-0.0193582289,0.0318188705,-0.0011602192,-0.0352376737,-0.0252511688,-0.0089443717,-0.0241115671,-0.035087727,0.0388364159,-0.0236767195,0.0570100583,0.0254910849,0.0070325402,-0.0382966064,-0.0014676116,0.0131878871,-0.0301994365,-0.0144474469,-0.0167191513,0.0009718476,-0.0498725548,-0.0316989124,-0.0805518255,-0.0303193945,-0.0531714037,-0.0225221217,-0.0069800587,0.0136902118,0.0707752481,-0.0294496994,0.0118458569,-0.0419253372,0.0524516553,-0.0024535169,-0.0418053791,0.0178287644,-0.049482692,0.0136152375,-0.0246963613,0.0101289572,-0.0145823993,0.0480731875,0.0048320601,0.0409956612,-0.0266306847,0.0641175732,-0.0028415062,0.0331983902,0.0023710458,-0.0565602183,0.0193132441,0.0162093304,-0.027575355,0.0064852317,0.0440545902,0.0317888819,0.0469935648,0.0128205158,0.017168995,0.0083895652,0.0054955781,-0.0488529131,-0.0639376342,-0.0481331646,0.0026990559,0.002933349,0.0189683661,0.0142750069,-0.0315489657,-0.0462438241,-0.0732343867,0.0035799979,-0.0011789626,-0.0082321204,0.0236017443,0.0594092198,0.0053718709,-0.0026821869,-0.0021611191,0.056710165,0.0186384805,-0.0330184512,0.0207827315,0.0055255676,0.0187584385,-0.0259409267,-0.0137276985,-0.0106612714,0.034158051,0.010061481,0.0022941977,-0.0300344955,0.0087269479,-0.0222372226,-0.0226870645,-0.0150772268,-0.0198830459,-0.0042997459,0.0042247721,0.01040636,-0.0360773802,-0.0333783254,0.0162843037,0.0320887752,0.0082846023,-0.0397660919,0.0026934328,-0.0528715067,-0.0538911521,-0.0495426729,-0.018323591,0.0409056917,0.0007159996,0.0197780821,-0.0292697623,-0.0103613762,0.0106837628,0.0011602192,-0.0227320492,0.0294047147,-0.011216077,-0.0083520785,0.0174388997,0.003336333,0.0232568663,0.030289406,0.0301094688,-0.039256271,-0.0046971072,-0.0148523049,0.0500524938,-0.0067176502,-0.0156545248,-0.0130004529,0.0122956997,-0.0198830459,0.0088319108,0.0077672834,0.0257010106,0.0290598366,0.0205578096,0.022777034,0.0378167741,-0.0303343907,-0.0242315251,-0.0091692926,0.0408157259,-0.0244414508,-0.0238266662,0.0032407416,-0.0156245353,0.014102567,-0.0212625638,-0.0264657438,0.0176188368,-0.0059679127,0.0086069899,-0.0084345499,0.0348478109,0.0148298135,-0.0088394079,-0.0090568326,-0.0088918898,0.0108562028,0.0170640312,-0.033708211,-0.0044646882,-0.0107062552,-0.0499325357,-0.0171240102,0.1018443778,-0.0391363129,0.0094466954,-0.0409056917,-0.0208876934,-0.0753936321,-0.0328085236,0.01318039,-0.0011845856,-0.0356575288,0.0602189377,-0.0270805284,0.0170190465,-0.055030752,0.0173489321,-0.0096866116,0.0549407825,0.0201829411,-0.0403958708,-0.0652571768,-0.0118533541,-0.0172439683,-0.002181737,0.0246663727,-0.0259259325,-0.0317588933,-0.0726945773,-0.008614487,0.0424051695,0.0089668641,-0.0068301111,0.0016269309,0.0004702262,-0.0071862363,-0.0131129138,-0.0059641642,0.0352976546,-0.0181136653,0.0278002769,-0.0270355437,0.0040560812,-0.0171839893,-0.0736542419,0.0059716613,-0.0148073211,0.0370070562,0.0097390935,-0.0113660246,-0.0343679786,0.0237516928,-0.026990559,0.0200929716,0.0154445982,-0.016704157,0.0089743612,-0.0081196604,-0.043064937,-0.0097840782,-0.0542510264,0.0029277259,0.0455540679,0.0416554287,0.0218173694,0.0517019182,0.0315489657,0.0117258988,0.0041872854,-0.0322687142,0.0458539613,0.0371570028,-0.0102564124,0.0463637821,-0.0419853143,-0.0071862363,0.0052444157,-0.0110511351,-0.0341880433,-0.0072574615,0.0037974217,0.0023897891,-0.0062902998,0.0264507476,0.0587794408,0.0463337936,0.0115534589,0.0202429201,-0.0481931455,-0.0261358581,0.0062040798,0.0218623541,-0.0469035953,0.0082771052,-0.0237217024,-0.0121007673,-0.0131054157,-0.0278902445,0.0310091544,-0.0239466242,0.0394961871,-0.0098515544,-0.0526915714,0.0623182021,-0.0280851759,0.0660968795,-0.0059229285,-0.0249512736,-0.0253561307,-0.0009015597,-0.0180536862,0.0505323261,0.0672364831,-0.0364672467,-0.0089068851,-0.0315789543,-0.0271405075,-0.0064852317,0.0419253372,-0.0006049447,-0.0112610608,0.0759934187,0.0127530396,0.0084795337,0.0276203398,-0.0126180863,-0.0061178603,-0.0034656629,0.0017778156,0.0016803498,-0.0654371157,-0.0173039474,-0.008209629,-0.0213825218,-0.0260908734,0.0035368879,0.0202429201,-0.0089518689,-0.0562303327,0.0247263517,-0.0457639918,-0.0200329926,0.0319988094,0.0076098382,0.0042247721,0.0026540717,-0.0153546296,0.0082995975,-0.0630379543,0.0221772436,0.0028208883,-0.059139315,0.0602189377,-0.002112386,0.0033025949,-0.0150172478,-0.0241115671,0.0460339002,-0.0263907686,-0.0060466351,-0.0316989124,0.0394661948,0.0266456809,0.0147923259,0.0197630879,-0.0371869914,-0.0132178767,-0.0202429201,-0.0232268758,0.0331683978,0.0104513448,0.0231069177,-0.0013720201,-0.0026465743,-0.0400959775,0.0197780821,-0.0215174742,0.0191782918,0.0498725548,-0.019073328,-0.0146048917,0.0087419422,-0.0731144249,-0.0272154808,0.0104963286,-0.0233168453,0.0413255468,0.0162393209,0.0229869597,0.0566501841,-0.0218773484,0.0137801804,-0.0419853143,-0.0025716005,0.011448496,-0.0262258276,0.0100764753,0.0419253372,0.0205877982,0.028729951,-0.0455240756,0.0162243247,-0.0285200253,0.0065527079,-0.0158194676,-0.0067064045,-0.032028798,-0.052421663,-0.0389863625,0.0019661873,0.019013349,0.0193132441,-0.0294646937,0.0028939878,-0.0294946842,0.0153471325,-0.0071974825,-0.0158494562,-0.0153996134,0.037576858,-0.0323886722,0.0026596948,-0.0305743068,-0.0285500139,-0.051042147,0.0166141894,0.0176188368,0.0088394079,0.0146723678,0.0057617347,-0.0082321204,-0.0065752002,0.0081196604,-0.017228974,-0.0072462154,0.0130604319,0.0022023546,-0.0408457145,0.0152646611,-0.037576858,0.0227020588,0.0089443717,0.0153246401,0.0222372226,0.0138026727,-0.0131129138,0.0048395572,0.0079922043,0.0122882016,-0.0168541055,-0.0228520073,0.0198380612,0.0113360351,-0.0237966776,-0.0303044003,0.0113360351,0.0294047147,-0.0228520073,0.0057767294,0.017693812,0.0028808673,0.0267506428,-0.0074149068,-0.0168990884,0.0008603241,0.0129254796,-0.0403358936,-0.008037189,-0.0377867818,0.0302744117,-0.029659627,-0.0045434111,0.0125506101,0.0008851591,0.031099122,0.0128729977,-0.0033382075,0.0013092295,-0.0092442669,0.0305893011,0.0020992658,0.0178887434,0.0202729087,0.0085395128,0.0019699361,0.0350577384,0.0514919907,0.0048770444,-0.006732645,-0.0248912945,-0.0417453982,0.0304993317,0.003613736,0.0287149567,0.0294796899,-0.0414155126,0.0030701761,-0.0083670737,-0.005491829,-0.0395861529,-0.0287149567,-0.0008968738,-0.0364972353,0.0038499034,0.0369170867,-0.0140350908,-0.008209629,-0.0227470435,0.0010702506,-0.0301544536,-0.0085919946,0.0305893011,-0.0277552921,-0.036947079,-0.0127155529,0.0105563076,-0.0096416278,-0.0014629258,0.0184135605,0.0219973065,0.0061740903,0.0241865404,0.0059341746,0.0286399834,0.0060578813,-0.0009484183,0.0358074754,0.0046633687,-0.0107662342,-0.0280551873,-0.0007797273,-0.031728901,-0.0002673284,0.0319388285,0.0004685861,-0.0289698672,0.0151671953,-0.0000893828,0.0689758733,0.0204528458,0.0204828363,0.0026053388,-0.005229421,-0.0279052388,0.0026484486,0.0115834484,-0.0389563739,0.0137127042,-0.0163742732,0.022372175,-0.0366171934,0.0182786062,0.0116734169,0.0095891459,0.0303793736,0.0487629436,-0.0091393031,0.0056717661,0.0020224177,0.0346978642,0.0189533699,0.0009296748,0.0243514832,-0.0158194676,0.0066164359,0.0445944034,-0.0169890579,0.0160293933,-0.0427350514,0.0005135704,-0.0173489321,-0.0336782187,0.0152871534,0.0271405075,0.0197930764,0.0205128249,0.0015144703,0.0239766147,-0.0142075308,-0.0037355684,0.0274254084,-0.0194032136,0.0135177718,0.0402159356,-0.0330784321,-0.0267206542,-0.0170190465,0.0127830291,-0.0194631927,-0.0213225428,-0.023001954,0.007744791,0.01300795,-0.0269455761,0.0314589962,-0.0235117767,-0.0397361033,0.0031770137,-0.0277253035,0.026825618,-0.0019530669,0.0094991773,-0.0120557835,0.0243364871,-0.0125056263,-0.0225221217,-0.0558704585,0.0226870645,-0.049662631,-0.0307692382,0.0512820631,-0.0291797947,0.0056755147,0.0449542776,0.0061253575,-0.0191782918,0.0156695191,0.0089218793,0.0282351244,0.0088918898,0.0062865512,-0.0132703586,-0.0012098893,-0.0086519737,-0.0371570028,0.0152196763,-0.0148747973,0.0085770003,-0.0212025847,-0.0046821125,0.0191033185,-0.0224021636,0.018788429,0.032028798,0.01318039,0.0112385694,-0.0256260373,0.0153846191,0.0042847511,0.0105638048,-0.0119583178,-0.0142225251,0.0013120411,0.0098140677,-0.0007361488,0.0189383756,-0.0126855634,0.0025790979,-0.0293447357,0.00537562,-0.0060241432,0.0372469723,-0.0183985643,-0.0125131235,-0.0047420915,-0.0252961516,-0.0307092592,0.0067513888,-0.0018902763,-0.0091692926,0.0459739193,0.0101814391,0.0142150279,0.0172589626,0.0099040363,0.0380266979,0.0008383006,-0.0048695467,-0.0090043508,-0.0174688902,-0.0024122812,0.00797721,0.0217573904,-0.0115684541,-0.0284750406,-0.0224171598,-0.0175438635,-0.0209026895,0.0026971817,-0.0000999846,0.0294197109,0.0103913657,0.0079472205,-0.1092218012,-0.042135261,0.0351776965,-0.0334383026,-0.0193732232,-0.0163442828,0.0029108569,-0.0088094184,0.0184585433,-0.0195081774,-0.0013260987,-0.0591093265,-0.0355975479,-0.0110061504,-0.0169740636,0.0192982499,-0.0184585433,0.0326885656,0.0290598366,0.0163442828,-0.0562903099,0.0167791303,-0.0224171598,0.0430949256,0.0173189417,-0.0174089111,-0.0079547176,0.0264807381,0.0108786952,-0.0228070226,0.0239616185,0.0026521974,-0.0017825016,0.0181736443,-0.0096566221,-0.00797721,-0.0168990884,-0.0044534425,0.0052744052,0.0007108451,-0.0347278528,-0.0454041176,0.0499025472,-0.053351339,0.0409656726,-0.0233168453,-0.0158644505,0.0248313155,-0.0380866788,-0.0142900022,0.001806868,0.0076060896,-0.0187284499,0.0147398449,0.0145374155,0.020632783,-0.0471435115,-0.0068076188,-0.0154296029,-0.0247263517,-0.0403059013,0.0416554287,0.0349077918,-0.0768331289,0.0051282062,-0.0108187161,-0.0165092256,0.0370670371,0.033708211,-0.0018846533,0.019478187,0.0162243247,0.0152796553,-0.0162543152,0.0138776461,0.0080821728,0.0110586323,0.0131653948,-0.0159394257,-0.0562303327,0.0306942649,-0.0157894772,0.0123031968,-0.0207677353,-0.0151896868,-0.0328685045,-0.0183685757,0.0007263084,-0.004134804,0.0042285211,0.0267506428,-0.0128804948,0.0073174406,-0.0015922555,-0.0073811682,0.0205728039,0.0070925192,-0.0076998067,0.0215774532,0.0170490369,0.0364072658,0.0150472373,0.0331084207,0.0223271903,-0.0339181349,-0.0277402978,0.0189833604,0.0068038702,-0.0079922043,0.0175288692,-0.0050307405,-0.0144024622,0.0230169501,0.0060541322,0.0210976209,0.031279061,0.0086819632,0.0346378833,-0.0011142978,-0.0110736266,0.0099940049,-0.0290598366,-0.0194931813,0.0031095373,0.0009390466,0.033588253,0.0286099929,-0.0096266326,0.0377268046,-0.010871198,0.0009802821,0.0399760194,-0.0192982499,0.0660968795,-0.0001820457,-0.0111785904,0.0098665487,-0.0201829411,-0.0101664439,0.0226420797,-0.0062003313,0.0132778557,0.0115909455,-0.020062983,-0.0076773148,-0.020062983,0.0051619443,-0.0083970632,-0.0337381996,0.0493027568,-0.001153659,-0.0211276095,0.0084120575,0.0756935254,-0.0192532651,0.0815714672,-0.0552106909,0.0013064181,-0.0133153424,0.0079172309,0.0220872741,0.0743140057,0.0137801804,0.0096491249,0.0380566902,-0.0338881463,-0.0271704961,-0.0296446308,-0.0188184176,0.020003004,-0.0049182796,0.0069275768,-0.0237366986,-0.0009952768,0.0416554287,0.0290298462,0.0118983388,0.0101289572,0.0066051898,0.0193282403,-0.0335582606,0.0038124165,0.0044909292,0.0372469723,0.0243364871,-0.0253561307,-0.0315789543,0.0204678401,-0.0094092088,0.0164342523,0.0185035281,-0.012138254,-0.0057167504,0.0292697623,-0.0188034233,-0.0147323469,0.019538166,-0.0109161818,-0.0217273999,0.0493927225,-0.0285650082,0.0397361033,0.0341280624,-0.0091243088,-0.0037261967,0.0451642014,0.002209852,0.0094167059,-0.0027103021,0.0117483912,0.0218923427,0.0000750909,0.0075123725,-0.0080971681,-0.0029802076,0.0200329926,-0.0071000168,0.022896992,0.0151671953,-0.0217273999,-0.0329884626,-0.0503523871,-0.0381166674,0.0203778725,-0.0304693431,0.0027384171,0.0027740297,0.0115309665,-0.0143574784,0.0157894772,0.007253713,0.0246513784,0.0001301498,0.0006935074,0.0069613149,0.0195531603,-0.0192232765,0.0362273306,0.000095533,-0.0231968872,0.0029127311,-0.0063315355,-0.0077372938,-0.0152496658,-0.0308891963,-0.0049557667,0.0240365937,0.045674026,0.0172889531,-0.0159094352,-0.007167493,0.0092967479,0.0189683661,0.0146573735,0.0163442828,0.0231069177,-0.0022848258,0.0248613041,-0.0146498764,0.0017084649,-0.0162992999,-0.0081121624,0.0208876934,-0.0136602223,-0.0146798659,-0.0033063435,0.0029614642,-0.0281601511,0.0038873903,0.0155345667,0.0066839121,0.013120411,0.0426450856,0.0047533372,-0.0265857019,0.0320887752,-0.048732955,-0.0194032136,-0.0297795832,-0.0181136653,-0.0375168771,0.0187584385,-0.0188184176,-0.001475109,0.0354176126,-0.0130679291,-0.006012897,-0.0008532953,0.017109016,-0.0313690268,-0.0070025506,0.0173039474,-0.0175138749,0.0109611666,-0.0305593107,0.0216374323,0.0023991608,0.0127680339,0.0054168552,0.0007905047,0.001566952,-0.0221772436,0.019133307,-0.0017553235,0.0277253035,0.0257609896,-0.0080671785,-0.0106612714,0.0205428153,0.0110061504,0.003379443,-0.0095591564,0.0185485128,0.0041722907,0.0064290012,-0.0222522169,0.0288649034,0.022312196,0.0041048145,0.0116734169,0.0110361399,0.0262408219,0.0068825926,0.0437247083,-0.0006321227,0.0108786952,0.0123481806,0.0130754262,-0.0372769609,0.0053681224,-0.0170340426,-0.031848859,0.0113060456,0.0254011154,-0.0244564451,0.0111935847,0.0244414508,0.01075124,0.0145749021,-0.0138626518,0.0142450174,-0.0203178935,0.0098440573,-0.0098065697,-0.0018912135,0.0015931928,0.0165841989,0.0039061338,-0.0110961189,0.0270955227,0.0782126412,-0.0040223431,-0.0003399592,0.0175138749,-0.0039586155,-0.0093867164,0.0063990117,0.0086669689,-0.0143199917,0.0186084919,-0.0018649726,-0.0117558884,-0.0245464146,0.0089443717,-0.0011545962,0.0006321227,-0.0158794466,0.0486729741,-0.0102114286,-0.0047383425,0.0111860875,0.0176638216,0.0082846023,0.009131806,-0.0018040565,-0.0168241151,0.0169440731,-0.0270205494,0.0076060896,0.038146656,0.0085395128,-0.0339481272,0.0028283857,0.041385524,0.00268781,0.0312490705,-0.009941523,0.0268706009,0.0039436207,-0.004768332,0.010001502,-0.0164942313,-0.0106087895,0.0150547344,-0.0301994365,0.0516419373,0.0104288524,-0.0011827113,-0.0124006625,-0.0294197109,-0.0253411364,-0.0012829887,-0.0027309197,-0.0055143214,-0.0024216529,0.0165841989,0.0352376737,0.0121907359,0.0390463434,0.0396761224,0.0075573567,-0.0069463206,-0.029824568,0.0162992999,-0.0496326387,-0.0570700392,0.0137951747,-0.0090943193,-0.0064027607,-0.032778535,0.0062115774,0.0182336234,0.0094916802,0.0049182796,0.0155645562,0.0201979354,0.0278752502,0.0289548729,0.0222672112,-0.0332583673,-0.0122807045,0.0242015347,-0.0122807045,0.0097016068,-0.0164642408,0.0021648677,-0.006155347,0.0225671064,-0.0313390382,0.0323286913,0.0144774364,-0.0145299183,0.0215624589,0.0183685757,-0.0148598021,-0.0067963731,-0.0236767195,-0.0076735662,-0.0003448794,-0.0169740636,-0.000370183,0.0119883073,-0.0202129297,0.0205877982,0.0030776735,-0.012663071,-0.0222072322,-0.0108337104,-0.0201679468,-0.0023373074,-0.0197031088,0.0205728039,0.0014394965,0.027575355,0.0114859827,0.0426750742,-0.0174988788,-0.0185185224,-0.020003004,-0.0389263853,0.0253411364,0.0215774532,-0.0152421687,-0.0090043508,0.0056155357,0.0004409395,0.0265707057,-0.0139001384,-0.0267056599,-0.0204528458,0.021622438,-0.0064664884,0.0380266979,0.0016962817,0.0233468339,0.0148523049,-0.008959366,-0.0062378184,0.0243814718,-0.0242015347,-0.0314290076,0.0240215976,-0.0202429201,-0.0145599078,0.0313090496,-0.0144249545,0.0344879366,0.0074523934,0.0349377804,-0.0027740297,-0.0189383756,-0.0279202349,0.0276503284,0.0145973945,-0.0037974217,-0.0156695191,0.0076435767,0.0000838183,0.0096416278,-0.0019137056,-0.0141775412,0.0037786784,0.0151821896,-0.0150247449,0.0283700768,-0.0170490369,-0.0171540007,-0.0137876775,-0.0015088472,0.0070325402,-0.0142525146,0.0109386742,0.0210226476,-0.0115384646,0.0390463434,0.0090118479,-0.0065976921,-0.0153996134,-0.0035874953,0.0279952083,-0.022372175,-0.0177238006,0.0198230669,0.0343979672,0.0007548922,-0.0079322252,-0.00780477,-0.0051244576,0.0059079337,-0.0257160049,0.0189233813,-0.0270955227,-0.0028396319,0.0316689238,0.0371570028,0.0460938774,0.0294347052,0.046423763,-0.0511021279,0.0267356485,-0.0235567614,-0.0073549277,-0.0237516928,-0.0023466791,-0.0095816487,0.0087419422,-0.0148073211,0.0150847239,-0.0054993266,0.001572575,0.0098065697,0.020752741,-0.0072424668,0.0288798995,0.0009624758,-0.0064252526,-0.0019736846,0.0439346321,0.0110286428,-0.0280551873,0.0079697128,-0.0143724727,-0.0091393031,-0.0264807381,-0.0163892675,-0.0001063105,0.0246213879,-0.019013349,-0.0077897753,-0.0147548392,0.0037580605,-0.0056567714,0.0047795782,0.0199580193,0.0022304698,-0.0320887752,-0.0002605339,-0.0234817863,0.0502624214,-0.0022229725,-0.0016522346,0.0049220286,0.0215474628,-0.0055855461,0.0596491359,-0.0066239331,0.0024572655,0.0051094629,-0.0047645834,0.0193282403,-0.022312196,0.0187284499,0.0137202013,-0.0362873077,-0.0461538583,0.0151147135,0.0083520785,-0.0097315963,0.0169890579,0.0126555739,-0.0246963613,0.0032351185,0.008209629,-0.0193582289,0.0013813919,-0.0123781702,0.0037786784,-0.0233768243,-0.0265857019,0.0346678756,0.009769083,0.0189233813,0.0260458905,0.0017909361,0.0145524098,-0.0095516592,-0.0035218932,-0.0004514827,-0.0005131018,-0.0230319444,-0.0215624589,-0.0099490201,-0.0294347052,-0.0239166357,0.0116959093,0.0019108942,-0.0281001721,-0.0153321372,-0.0004132929,0.0070512835,0.0155795505,0.0343080014,-0.0037543119,0.0200779773,0.0167791303,-0.0208277144,-0.000538874,0.0004486712,0.0102264229,-0.0189233813,-0.0162693094,0.02636078,-0.0078197652,-0.0351776965,0.0139376251,0.0022923232,-0.0193882193,0.0353876241,-0.0206177887,-0.00543185,0.0186384805,-0.0118008722,-0.0031563961,-0.0194032136,0.0193882193,0.002759035,0.0173639264,0.007107514,-0.0016616064,0.0074186553,0.039076332,-0.019073328,-0.0047420915,-0.0125955949,0.0355675593,0.024276508,0.0258659534,-0.0052256724,-0.0082995975,-0.0430349484,0.0264507476,-0.0048170653,0.0426750742,-0.0181886386,0.0016306796,-0.0028789931,0.0399460271,0.0307692382,-0.0008054995,-0.0107287476,0.0069950535,0.004768332,-0.0208277144,0.0002390961,0.0137951747,0.038146656,0.0018153025,0.008959366,-0.0290748309,-0.0022642082,0.0084720366,0.0483130999,-0.000200672,-0.0120482864,-0.0017497005,0.003656846,0.0153996134,0.0221922379,-0.0261058696,0.0212025847,0.0141400546,0.0007361488,-0.0082396185,-0.0093717221,-0.0437546968,0.0064514936,0.0245464146,0.0077148015,-0.0418653563,-0.0124531444,0.0162543152,0.0142974993,-0.0104363495,-0.0067813783,-0.0071599958,-0.0558104776,0.0039923536,0.0150622316,-0.0048095677,-0.0037018303,-0.0112685589,0.0390463434,0.0146573735,0.0167791303,0.0486129969,0.007107514,0.0089443717,0.0286849663,0.0028789931],"84":[0.0184108131,0.0039201151,0.0571696199,-0.0008470385,0.0459736474,0.0314524435,0.0063225203,-0.0103112757,-0.0256714169,0.0209276192,0.0233681574,-0.0207140725,-0.0118137328,-0.0446618572,0.0439296961,0.0242070928,-0.0013832897,-0.0099528218,-0.0425568931,0.01639737,0.002947713,0.026967952,0.0308880676,-0.007390256,-0.0168092102,-0.0292712115,-0.0139339501,0.0305829998,0.0459126346,-0.1054312736,-0.0042366227,-0.0362114944,-0.0383164585,-0.0061127869,0.0361504778,0.031421937,0.0409095287,-0.0085418858,0.0341980495,-0.0040650223,-0.0097469017,0.0307812933,0.0066924146,0.0359064266,-0.0119738933,-0.0066657211,-0.0330387913,-0.0016902637,0.0110815708,0.0661996081,-0.0316354819,0.0107612498,-0.040207874,-0.0361199714,0.0145212049,-0.0157109685,-0.0141780041,0.033191327,-0.0156499539,-0.0243443735,0.0305067338,-0.0554917492,0.0198141243,0.0172363035,0.000219148,0.012599281,0.0029343665,0.0516784079,-0.02147674,0.0306745209,0.026967952,0.0248477347,-0.005594172,-0.0294237453,0.0452109799,-0.0438076705,0.0074436432,0.0391096324,-0.0022002982,-0.0064331074,0.0097621549,-0.0057047592,-0.0370046683,0.0145364581,0.0496344566,-0.0374927744,-0.0616541095,0.0002514422,0.004476863,0.0203784984,0.0120272795,0.0310253482,-0.0019657777,0.0128204543,0.0179532133,0.0094494605,0.0098765548,0.0349302106,0.0011468625,0.0314524435,0.0075580431,-0.0274560601,-0.0096325008,-0.0143457912,0.0324286595,-0.0039887554,0.0224224497,0.0087706856,-0.0028924197,0.0159550216,-0.0388655774,-0.0057276394,-0.0446923636,0.0153906466,0.0043052626,0.0223156754,-0.0241155736,0.0327642336,-0.0053729983,-0.0156652071,-0.0072644157,0.0115239182,-0.0058191596,-0.0073101758,0.0163211022,-0.0471634082,0.0206530578,-0.0507021919,-0.0614710674,0.0057085725,0.0480786115,-0.0050259843,0.0538138784,-0.057078097,-0.0139873372,-0.0251528025,-0.0390181132,-0.0027284459,-0.019219242,-0.0140559776,-0.0058039059,-0.0316964947,0.0171142779,-0.006806815,-0.0440212153,0.0312694013,-0.0261747781,0.0626608282,-0.0271509923,-0.0291796904,-0.017922705,0.0013651763,-0.0348386914,-0.0571391135,0.0599457324,-0.0448143929,0.0167787038,0.0424043611,0.012393361,-0.0674808919,-0.0126221608,0.0158177409,-0.0208666064,-0.0075351633,-0.0008541885,0.0059755063,-0.0355403461,-0.0584509,-0.1151934266,-0.0247714669,-0.0394452065,-0.0433195606,-0.006440734,0.0241918396,0.0392926745,0.0005572246,-0.033191327,-0.0588474907,0.0307355337,-0.0016978903,-0.0530817173,0.032215111,-0.014612725,0.0342285559,-0.0550646558,0.0052700383,-0.0563154295,0.0346861556,0.020988632,0.0549426265,-0.0462177023,0.0544240139,0.0154516604,0.0252443217,-0.0135373631,-0.0405434482,0.0454550311,0.0185023341,-0.0339234881,0.025839204,0.0566815101,0.0209276192,0.0735822394,0.0079851374,0.0102273822,-0.0071995892,0.0080766575,-0.0046980372,-0.0346556492,-0.0305067338,0.0054530785,0.0128585882,-0.0003734691,0.0003024457,-0.0353573039,0.0006435014,-0.0446923636,-0.0212479401,-0.0059373728,-0.0042328094,0.0240240525,0.0592440777,0.0051556379,-0.0378283486,-0.0039277421,0.0485667214,0.0028142461,-0.0084503656,0.0319100432,0.0230325833,0.0256866701,-0.0242681056,-0.0369741619,-0.000033039,0.0094875945,0.0017264904,0.0104104225,-0.0158482473,-0.0010238823,-0.0409400351,-0.0252748281,-0.0016063702,-0.0232156236,-0.0212021805,-0.0100901024,0.0334048718,-0.0288136099,-0.0680910274,0.0239325333,0.0689452142,-0.0248477347,-0.0190819614,-0.0020858978,-0.0271662455,-0.0386520326,-0.0582068488,-0.0168549698,0.0145669654,0.008480872,0.0187463872,0.0122560803,-0.0326727107,-0.0247867219,-0.0004785744,-0.0341370367,0.027379794,0.0435331091,-0.0265713651,-0.0035635678,-0.0006782982,0.054179959,0.020347992,0.0330998041,-0.0341675431,-0.0066809747,0.0074703363,0.0231393576,0.0055064652,-0.0169922505,0.0091443937,0.0080156438,-0.0426484123,0.0227885302,0.0018942775,0.0424348675,0.0090223663,0.0017541372,0.0356318653,0.0186853744,-0.0146508589,0.0123476004,0.0158482473,0.0567730293,-0.0058763595,-0.0151084596,0.0134992292,-0.0548511073,-0.0106773563,-0.0489022955,-0.053783372,0.0083969785,0.0339539945,0.0210801531,-0.0139797106,0.0186853744,0.0112035982,-0.0268764328,0.0151313394,-0.0233986638,-0.0108756507,-0.000286239,0.008839326,0.0071004424,0.0128509616,-0.0292559583,-0.0093579404,0.0740703493,-0.0234596785,0.008351218,-0.039231658,-0.03456413,-0.0671758279,-0.0129424818,0.0252900813,0.039079126,0.0024138454,0.0527766496,-0.0077639637,0.0084198583,-0.0333133526,-0.0131178955,-0.0162753426,0.0491158403,0.028661076,-0.0145669654,-0.0628438741,0.0146584855,-0.0101053556,0.0083969785,0.0174345989,-0.0260985103,-0.0263120569,-0.0297898259,0.0066542812,0.0367606133,0.0041946759,0.0111807175,0.0070928154,0.0199208967,-0.0001872112,-0.0284627825,-0.0336794332,0.0079164971,-0.005857293,0.0360284522,0.0243443735,0.0008074751,-0.0292864647,-0.0179989729,0.0062882006,-0.0061738002,0.0425873995,0.0355708525,-0.0224071965,-0.0211411659,0.0506411791,-0.0452719927,0.0535393171,0.0228800494,-0.0055712922,0.0430755094,0.016549902,-0.0244816542,-0.0067877481,-0.0937777013,-0.0260374974,0.0749855489,0.0428619608,-0.0075275367,0.0334048718,0.0430449992,0.0157262217,0.0068373214,0.0169312377,0.0320930853,0.0403909162,-0.0109214103,0.0466142893,-0.0581763424,-0.0241003204,0.0147194993,0.0270137116,-0.0346861556,-0.0223004222,-0.0081681777,0.0172973182,-0.0024348188,0.0116078118,0.0631489381,0.0364250392,0.0062538804,0.0248019751,-0.0629658997,-0.0246799476,0.0158635005,0.02147674,0.0128585882,-0.0200734306,-0.0271814987,-0.0335269012,-0.0169922505,-0.0127365617,0.0438076705,-0.0294542518,0.0307355337,-0.0307507869,-0.0379808843,0.0560713746,-0.0234901849,0.0644302219,-0.0303847063,0.0087478058,-0.0089537259,-0.016793957,-0.0516173914,0.0485362113,0.0531122237,-0.0105705829,0.0139797106,-0.0468583442,-0.022773277,-0.0053196116,0.0016187635,-0.0136822704,0.0010439022,0.0463702343,-0.0169312377,-0.0069822287,0.0349912234,-0.0167024359,-0.021400474,0.0130721349,0.0129882414,0.0260680038,-0.0402993932,-0.0240393057,-0.0259612296,-0.0407875031,-0.0310558546,0.0177396648,0.0105171967,-0.0265561119,-0.0303999595,0.0226970091,-0.0681520402,-0.0288136099,0.0135373631,-0.0094723403,0.0505191498,-0.002120218,-0.0413366221,0.0041908626,-0.0579322875,-0.0197836161,0.005670439,-0.0325506851,0.0860289857,0.0101816226,-0.0000236099,-0.0129653616,0.0054835854,0.0299118515,-0.0273035262,-0.0150321927,-0.0183040407,0.0200886838,0.0232766382,0.0137737906,-0.0010782224,-0.0167481974,0.0169464909,-0.0442652702,-0.0229868237,0.0320015624,-0.0060975333,0.0050908113,0.0062843873,-0.0055636656,-0.0255646426,0.0091901533,-0.0468888506,0.0032070205,0.0571086034,-0.0196615905,-0.0096401274,0.0003341441,-0.081208922,-0.0199208967,0.0043281429,-0.0066809747,0.0235817041,-0.0114095183,0.0086867921,0.028340755,0.0007088049,0.0125535205,-0.003817155,-0.0089079663,-0.034716662,-0.059823703,-0.000017875,0.0080614043,0.0323981494,0.0370351747,-0.0454245247,0.0207140725,-0.0148796588,0.0240240525,0.002617859,0.0079775108,-0.0293169711,-0.0511597916,-0.0251528025,-0.0130263753,-0.0095257275,0.0138729373,-0.0547290817,0.0016130435,-0.0239172783,0.0086486591,0.0080995373,-0.035936933,0.0184108131,0.0261442699,-0.0394147001,-0.0071690823,-0.0367301069,-0.0362114944,-0.017678652,0.0290271565,0.0291186776,0.0340760201,0.0233681574,0.0058305995,0.0046789702,-0.0247409604,0.0043700896,-0.0176481456,-0.0004580777,0.0068030017,0.0186853744,-0.0333743654,0.0085723922,0.0039658751,0.0021678847,0.0202564709,0.0354488231,0.011020557,0.0140636042,0.0092893001,0.0096706348,-0.0051480113,0.0067572417,-0.0098765548,-0.0027150994,0.0350827426,-0.0136212567,-0.0141474977,-0.0352962911,0.0217360482,0.0099223154,-0.0034434476,0.0039773155,0.0161380619,0.010456183,0.0255493894,-0.0036226746,-0.0214614868,-0.0136136301,0.0000482626,-0.0439907089,-0.0218275674,-0.0221478883,0.0332218334,-0.0226665027,0.017770173,0.033587914,0.0002016304,0.0344421007,0.0026159524,-0.0065436945,0.0199514031,0.006986042,0.0218580738,0.0099070622,0.0116306925,0.0032718473,0.004015449,-0.0170990247,0.0151771,0.043350067,-0.0009271187,-0.00454169,-0.0393536873,-0.0256256554,0.0199514031,0.0083893519,0.0138500566,0.041824732,-0.026891686,0.0255493894,-0.0138195502,-0.003620768,-0.040207874,-0.0312388949,-0.0107078636,-0.0177396648,-0.0188684147,0.014856779,-0.0308270548,-0.0137585364,-0.0350522362,-0.0296067856,-0.0537528656,0.0029095798,0.020668311,-0.026967952,-0.037858855,-0.009853675,0.0091672735,-0.0044692364,0.0028352195,0.0346861556,0.009724021,-0.0153525136,0.0138348034,0.0242681056,0.0429839864,-0.0007607617,-0.0156957153,0.0322761238,0.0095943678,0.0064292941,-0.0017922706,0.012843335,-0.0107765039,0.0037504216,0.0386215262,-0.0160923023,-0.0207750853,0.0077754036,-0.0236427188,0.0594271161,0.0243291203,0.0210648999,-0.002797086,-0.0143000316,-0.0292407032,-0.0284322761,0.0161990747,-0.0434415899,0.0002638356,-0.0351437554,0.0029667797,-0.0451804735,0.0233529042,0.0414891578,0.0032985406,0.0401163548,0.0348386914,-0.0103265289,0.0153372604,0.0234139189,0.0430755094,0.0344726071,0.008351218,0.0090299929,-0.0237189848,0.0173430778,0.0632709637,-0.0306745209,0.0169922505,-0.0312694013,0.0158940088,-0.0005510279,-0.0058420394,-0.0052013979,0.0295152646,0.0194938034,0.0210801531,-0.0043090759,0.0230478365,-0.0066008945,-0.0281272084,0.0123018399,-0.0224834625,0.0099223154,0.0290576629,-0.0145593388,-0.0310253482,-0.0008227284,0.0001145194,-0.0655894801,-0.0147042451,-0.0276238471,0.0186243616,-0.0082596978,-0.0232461318,0.0407569967,-0.0226665027,-0.0336184204,0.0063492139,-0.0198751371,0.0145288315,-0.0160770491,0.0088164462,-0.0143915517,0.0305524934,-0.0258544572,-0.0219343416,-0.0442652702,0.0039163018,-0.0476515181,-0.0273340326,0.0505191498,-0.0110358112,0.0118213594,0.0426179059,0.0269374456,-0.0123628536,0.0168244634,-0.0032241803,0.0176328924,0.0091367671,0.0219495948,-0.0052013979,-0.0210191403,-0.0143915517,-0.0356623717,0.0330998041,-0.0299271047,0.0098307952,-0.007043242,-0.0123781068,0.003544501,-0.0296067856,0.0211564191,-0.0037218216,0.0110815708,0.0131636551,-0.0187768936,0.0159245152,-0.0051403847,-0.0188531615,-0.0071805222,-0.0211869273,-0.0081452979,0.0264950972,0.0129729882,0.011226478,0.0087020453,0.0116917053,-0.02591547,0.0231088512,-0.0037103815,0.012393361,-0.0487802662,-0.0005133711,0.0051022512,-0.0237799995,-0.0309490804,0.0122637069,0.0213852208,-0.0068449485,0.0310558546,-0.0124925077,-0.0138805639,-0.0127975745,0.035113249,0.0041260356,0.0029610598,0.0143457912,-0.0499700308,-0.010212129,-0.0075046564,0.0111425845,0.0242833607,-0.0093121808,-0.0319405496,-0.0192344952,-0.0207598321,-0.0421603061,-0.0077029504,0.0017922706,0.0231851172,0.01207304,0.0048734508,-0.0957911462,-0.0397807807,0.0453635119,-0.0136593897,-0.0127365617,-0.0028886064,-0.0056971326,0.0190209486,0.0158329941,-0.0190209486,-0.0091443937,-0.0290119033,-0.0398112871,0.0014328632,-0.023169864,0.0220258608,-0.016870223,-0.0033233273,0.0091901533,0.0320625752,-0.0214919932,-0.0042633158,-0.0233681574,0.0511597916,0.0099909548,-0.0187158808,0.0005929747,0.0160007812,0.0170990247,-0.0401468612,0.0434720963,0.0121493069,0.0014595565,0.0104638096,-0.0335574076,0.0070508686,-0.0101206088,0.0065017478,0.0091520203,0.0031993936,-0.0336184204,-0.0440212153,0.050214082,-0.0515563786,0.0269526988,0.0026864992,0.00302398,0.0317270011,-0.0358149037,-0.0007860251,0.0371572003,0.019219242,0.0138348034,0.0057238257,-0.0136060035,0.0290576629,-0.0395977385,-0.0145288315,-0.0035044609,-0.0092435405,-0.0183040407,0.0302931871,0.0160465427,-0.0451804735,-0.0199971646,-0.0019886578,0.0046370234,0.0375232808,0.0246494412,-0.0162905958,0.0069822287,0.0269069392,0.0204852708,-0.0197073501,0.0081758043,0.008313085,-0.0108603975,0.0083359648,-0.0085266316,-0.0332523398,0.0430449992,-0.0067229215,-0.009365567,0.0035311545,-0.0055293455,-0.0313609205,-0.0214309804,0.0095791146,-0.0139263235,-0.005689506,0.0286305696,0.0076876967,0.0076343101,-0.0088469526,0.0174498521,0.0424348675,0.0170837715,-0.0119738933,0.0022632184,0.0072949226,0.0293322243,-0.0145364581,0.0181210004,0.0097316476,-0.0271662455,-0.0261137635,0.0127594415,-0.00908338,0.0023375785,-0.0069822287,-0.0135373631,0.0010172089,0.0245884266,0.0215682611,0.0121187996,0.009647754,0.0006172847,0.0133848293,0.0089766067,-0.0389265902,0.0299118515,-0.0075618564,-0.0266781393,0.0199056435,-0.0180447325,0.0344726071,0.0387130454,-0.0024576988,0.0196920969,-0.0033862474,0.0181972664,0.0536613427,-0.0112493578,0.0616846159,-0.0034548875,-0.0108909039,0.0198903903,0.0122713335,0.0123628536,0.0362725072,-0.0017875039,-0.0107078636,0.0114857852,-0.0396587551,0.0275628343,-0.0098841814,0.0078554843,-0.0105171967,-0.0220868755,0.0420382805,0.0227427706,-0.0332218334,0.0121340528,0.0538443848,-0.0205462854,0.0688231885,-0.0525020882,-0.0048467573,-0.013972084,-0.0073216162,0.003893422,0.0548511073,-0.0116078118,-0.0084884986,0.0382859521,-0.0229105577,-0.0165193956,-0.009853675,-0.0327032171,-0.0139339501,-0.0003274707,-0.0071500158,-0.0109595442,0.0086944187,0.0305067338,0.0289813969,-0.0144373113,-0.0002755139,0.0085266316,0.0086410325,-0.0317880176,-0.0076648169,-0.0044730497,0.0523190498,0.0221021287,-0.0158177409,-0.031086361,0.011226478,-0.0032299005,0.0307507869,0.0049497173,0.0006287247,0.0058153463,0.0133848293,-0.0074016964,0.0169464909,0.02922545,0.0101816226,-0.0136136301,-0.0035139944,-0.0503056049,0.0178311858,0.0190819614,-0.0356013589,0.0104866894,0.0497259758,0.0089155929,0.0400248356,-0.0359064266,0.0046293968,0.0304762274,0.0093045533,0.0133619495,0.0089689801,0.0057962793,0.0210191403,0.0006587548,-0.002947713,-0.0014719499,-0.0481701307,-0.0267391521,-0.0345031172,-0.0392926745,0.0111578377,-0.0325811915,0.032367643,0.0114095183,0.0042938227,0.0000049566,0.0294542518,0.000599648,0.0187463872,0.0111578377,0.006562761,0.0092969267,0.0451804735,-0.0081147915,0.0095104743,-0.0108985305,-0.0039696889,0.011226478,-0.0082902052,0.0146050984,-0.0307660401,-0.0422518253,-0.011508665,0.0312694013,0.0304609742,0.0287220888,-0.0125840278,0.0187463872,0.0096325008,0.0064216675,-0.0012946295,0.0319405496,0.0249240007,0.0035502212,0.0248477347,-0.0231241044,0.0035235276,-0.0046217702,0.0217360482,-0.0070279888,0.0010953824,-0.0063454006,-0.008519005,-0.0023070718,-0.0039773155,0.0183192939,-0.0008503752,-0.0109900506,0.0093808202,-0.0008742086,-0.0102426354,0.0059831333,0.0312694013,-0.033343859,-0.0194022823,-0.0155126741,-0.0240698121,-0.0402993932,-0.0071118823,-0.0058611063,-0.0026636191,0.0590000227,-0.0197988693,-0.0031097801,-0.014292405,0.0113942651,-0.0114629054,-0.0125840278,0.0411840901,-0.0038762619,0.0339234881,-0.0192039888,0.0088164462,-0.0065589477,0.013972084,-0.0061699869,-0.0005662813,0.0088164462,-0.0175566245,0.0094113275,0.0271052327,0.0132856825,0.0053958786,-0.026006991,0.0074131363,-0.0067038545,0.0335269012,-0.0135907494,0.0264188312,0.0158482473,0.0267544053,-0.0001662379,-0.0273035262,0.0225139689,0.0258239508,0.0026884058,0.0321540982,0.0067305481,0.0257019233,0.0181362536,0.0285237953,-0.0043662763,0.0226512495,0.0161685683,0.0024119385,-0.0158940088,0.0175413713,0.00154631,-0.0208666064,0.00609372,0.0374317616,-0.0271357391,0.0160770491,0.0152228596,-0.0089232195,-0.0028638197,-0.002242245,0.0192650016,0.0016082769,-0.0014309564,0.0007812584,-0.0197226033,-0.0019066709,0.0215530079,0.0016549903,-0.0200429242,0.0267086457,0.0805377737,-0.0207903385,-0.021888582,-0.0016607103,-0.0014995966,-0.0196768437,0.0028218729,-0.0232461318,-0.0015529834,0.0339234881,-0.0298050791,-0.0006787748,-0.0163211022,0.0100519685,-0.0017207705,0.0082596978,-0.0165193956,0.0341065265,0.0156957153,-0.0106315967,0.028340755,-0.015421154,-0.0098155411,-0.0222089011,-0.0195548162,-0.0071500158,0.0357843973,-0.0270594731,-0.0036417414,0.0371572003,0.0198293775,-0.0097469017,0.0039773155,0.0435331091,0.0237952527,0.004720917,-0.0179074518,0.0230173301,0.0025797256,-0.0071423892,-0.0166719295,-0.0119586391,-0.010456183,0.0098765548,-0.0384384841,0.0476820245,-0.0051098778,-0.0136593897,0.0002461989,-0.0366385877,-0.0156957153,-0.0065093744,0.0040383288,-0.0152838733,-0.0191124678,0.0050069178,0.0445398316,0.0040993425,0.0257781893,0.0266018715,-0.0043243296,-0.0163363554,0.005266225,0.0132551761,-0.0571086034,-0.0386520326,0.0184565745,-0.0106468499,-0.0050564911,-0.0434110835,-0.0115620522,0.031086361,0.0221783947,0.0053806249,0.0043510227,0.024710454,0.0084579922,0.027212007,0.0289966501,-0.0166871827,-0.0047094771,0.0171752907,-0.0118137328,0.0357233845,-0.0147271259,0.0167024359,0.0073063625,0.0267086457,-0.0250612814,0.0274408069,0.020912366,-0.0263120569,0.031818524,0.0104714362,-0.0058229729,-0.0196768437,-0.0350522362,-0.0206378046,0.0125916544,-0.019051455,0.0318795368,0.0130187487,-0.0063072671,0.0189599358,0.0309490804,-0.0065513211,-0.0171447843,-0.0326727107,-0.0095333541,0.0061318534,-0.0198446307,0.0068030017,0.007992764,0.0075847367,0.0238410123,0.0410925709,-0.0036646214,-0.0233071446,-0.0179379601,-0.0353878103,0.0282797422,-0.0051785181,0.0042823828,-0.0067458013,0.0117908521,0.0079012439,0.0334963948,-0.0144983251,-0.014574592,0.0036226746,0.0302016661,-0.0066886013,0.0353573039,-0.009891808,0.0001151153,0.0401773676,0.0105705829,-0.0236732252,0.0297440644,-0.0121035464,-0.048444692,0.050214082,-0.025839204,0.0091596469,0.0274103004,-0.013239922,0.0249697622,0.0069936686,0.0358454101,-0.0095409807,-0.024710454,-0.0098002879,0.0458516218,0.0033957807,0.0167329442,-0.0356928781,-0.005857293,-0.0186243616,0.0223461818,-0.0044463566,-0.0055026519,0.015138967,0.0097392751,-0.0070775622,0.0409095287,-0.0210648999,0.0001836362,-0.0156804603,0.0018923709,0.0035673811,0.0115925586,-0.0019371776,0.0083435914,-0.0081376713,0.028172968,0.0199514031,-0.0132094156,0.0091825267,0.0058191596,0.0365470685,-0.0068678283,-0.0178159326,0.0142542711,0.0340455137,0.0058877994,0.0040040086,0.0064178542,-0.0053005451,0.0054492652,-0.0141780041,0.0177244116,-0.0159397684,-0.0167176891,0.0322761238,0.0138271768,0.0124009876,-0.0029000463,0.0249545071,-0.0530817173,0.0238562655,-0.0112035982,-0.0099604484,-0.0198751371,-0.0309643354,0.0168549698,0.0145288315,-0.0244206395,-0.0042938227,0.0026331125,0.0028047129,0.0112112248,0.0121416803,-0.0206835661,0.0294237453,0.019142976,-0.0250155218,0.0060555865,0.0448143929,0.0086486591,-0.030521987,0.0035349678,-0.010212129,0.0012526828,-0.0296220388,-0.0023204184,0.00753135,0.0348997042,-0.0175718777,0.0127670681,-0.0023185117,0.0106697297,-0.0129348552,0.0208360981,-0.0011535359,-0.015138967,-0.0122026931,0.0161075555,-0.0210038852,0.0496954694,-0.0156499539,-0.0260374974,-0.0098765548,0.0154135274,-0.0104333032,0.0465837829,0.0154059008,0.0137585364,-0.0024672321,-0.0185786001,-0.002293725,-0.0339539945,0.0106773563,0.0163516086,-0.0107765039,-0.0417027064,0.0270442199,0.0152457403,-0.0265866183,0.0203174837,0.0176328924,-0.0129806148,0.0128967213,0.0047476105,-0.0300643854,-0.0098841814,-0.0007497983,0.0216750335,-0.0394757129,-0.0259917378,0.0329472721,-0.0168244634,0.027776381,0.0348386914,-0.0037294482,0.0234596785,0.0006654281,-0.0035387811,-0.0073940693,-0.0149025396,-0.0254731234,-0.002947713,-0.0174651053,-0.0158177409,-0.0516784079,-0.005613239,0.0142695243,-0.0086562857,-0.0115544256,-0.0017569972,0.0296220388,0.0173278246,0.0210191403,-0.0053196116,0.0190667082,-0.0152991265,0.0054988386,-0.0066580945,0.0470108762,0.0103570363,-0.0005791513,-0.0116230659,0.0408485159,-0.0078554843,-0.0234749317,0.0298660919,-0.0164278764,-0.0088469526,0.0450279377,0.0052052112,-0.003515901,0.0026369258,0.0102960225,0.0000035899,0.0001943613,-0.0048925173,-0.0120577868,0.002171698,0.0188989211,0.0106010903,0.0147957662,0.0273187794,-0.0081529245,0.0105095701,-0.0232156236,0.0358149037,0.0178159326,0.012355227,-0.017846439,0.0039201151,-0.0239020251,0.0254121087,-0.0154364072,0.0400248356,-0.0459126346,0.0032089271,0.017770173,0.009571488,0.0253510959,0.0179989729,-0.0108070103,0.0005395879,0.0342285559,-0.0266781393,0.0007293016,0.0093121808,0.0263425652,-0.0071271355,0.0199361499,-0.030842308,-0.0158940088,0.0031727003,0.0462177023,0.0001410936,-0.0056780656,-0.0080385245,0.0007798283,0.0248629879,0.0135754962,-0.0073330561,0.0094265807,0.0302169193,0.0062805736,0.0010477157,-0.0145593388,-0.0304609742,0.0228037834,0.0316354819,-0.0040345155,-0.0133466963,-0.0363030136,-0.0100290887,0.0058725462,-0.0192802548,-0.0094875945,-0.0077563371,-0.0486582406,-0.0022384315,0.0127213076,-0.0148033928,0.018654868,-0.0059335595,0.0367301069,0.0141017372,0.004766677,0.0520444885,0.0144068049,0.0015930235,0.0035120877,0.0147805121],"85":[0.0026104157,-0.0059734494,0.0447771251,0.0200211033,0.0495997258,0.0372947864,-0.0083737904,0.0043257275,-0.0221693534,0.0141097633,0.0349273272,-0.0227685254,0.0077819251,-0.0215701815,0.0468523055,0.0213655867,0.0041174786,0.0001204509,-0.0242591482,0.0180043783,-0.0079499856,0.0076650139,0.0569067001,0.0022615078,-0.0233384687,-0.0322675891,-0.0342843123,0.0439879708,-0.0039676856,-0.1002516598,-0.0031821863,-0.0432280451,-0.0494535863,-0.0061780447,0.0318876244,0.0081326598,0.0457708724,0.0036808872,0.027035797,0.0018778918,0.0038325069,0.0265389234,-0.0047203042,0.019407317,-0.0233969241,0.0160899516,-0.049658183,0.0070987232,-0.0043951436,0.0532532111,-0.0438418314,0.0129698757,-0.0362133533,-0.0482552424,0.0232069436,-0.0238353424,0.0134813637,0.0289794505,-0.0067333747,-0.0503888801,0.0048116413,-0.0631906912,0.0405975357,-0.0027876098,-0.0141974464,0.041006729,-0.0146577861,0.0583388656,-0.0286141019,0.0137736425,0.06161239,0.0210440792,0.0102443751,-0.0156076923,0.0439587422,-0.0682178885,-0.0151108187,0.0449232645,-0.0269188844,-0.0285556465,0.0025757076,-0.0278541781,-0.0198749639,0.0153300278,0.0486936606,-0.0377916582,0.0034196628,-0.0099009471,-0.0055569522,0.0286141019,-0.0017317524,0.0490736254,0.0044170646,-0.0226370003,0.0333197936,0.0124437734,-0.0128164291,0.0129844891,-0.0061561242,0.0360964425,0.0283218231,-0.0324429572,-0.0138320979,-0.0056921314,0.0256474726,0.0093310038,0.0269334987,0.0059844102,-0.0012421852,-0.0089948829,-0.0640675277,-0.0123268617,-0.0367686823,0.0043038065,-0.0092360126,-0.0015509048,-0.0172736812,0.0403637141,0.0073215859,-0.018939672,-0.020050332,-0.0052756337,-0.0197580531,0.0082057295,0.018077448,-0.0252236668,0.0153592555,-0.045244772,-0.0511488058,0.0001051519,0.0537793152,0.0029264423,0.0341674015,-0.0270796381,-0.0230023488,-0.0130721731,-0.0530193895,0.0085418504,-0.0135909682,-0.033670526,0.0034342769,-0.0304846875,0.0230754185,-0.0423804373,-0.019538844,0.0333782472,-0.0338166654,0.0359503031,-0.0372363292,-0.0373240151,-0.0240691658,-0.0168937203,-0.0643013567,-0.0401006639,0.0386977233,-0.0234846082,0.0293155722,0.0310692452,0.0410651825,-0.0447186679,-0.0036699267,0.0397791564,-0.040568307,0.0005398025,-0.0108654676,-0.0135763539,-0.0528147928,-0.0322675891,-0.098322615,-0.0250483006,-0.0423512086,-0.0236015189,-0.0197726656,0.0011471946,0.0525517426,-0.0113696484,-0.0069745048,-0.043315731,0.0330567434,-0.0036735802,-0.049833551,0.018208975,-0.017010631,0.0287602413,-0.0538377687,0.0095648263,-0.047729142,0.0465600267,0.0271088667,0.0376747474,-0.0349857807,0.0770447105,0.0089145061,0.028877154,-0.0061561242,-0.0515579954,0.0228123665,0.0265389234,-0.018939672,0.0034708118,0.0767524317,0.0217455495,0.0741803795,0.0013956317,0.0065945424,-0.0122903269,-0.013495977,-0.0042745788,-0.0500966012,-0.0404513963,-0.004157667,0.0004767799,0.0258374531,0.0173613653,-0.0428188555,-0.0296224654,-0.076050967,0.0033849548,0.0078330738,-0.0397499278,0.0186035503,0.0498920046,0.0087756738,-0.0118738292,-0.0305431429,0.0409190431,0.0164114591,-0.0391361415,0.0461508371,-0.0021665173,0.0137444148,-0.0365348607,-0.0268458147,-0.0035822431,-0.0026725251,0.0087026041,0.016279934,-0.0318583995,0.0052646734,-0.0372071005,-0.0236307476,0.0026944459,0.0010814319,-0.0158999711,-0.0191296525,0.016367618,-0.0180482212,-0.0626645908,0.0288333111,0.0732450858,-0.00430746,-0.0217893906,-0.0192465652,-0.0381716229,-0.0525517426,-0.0531947576,-0.0460046977,0.0406559929,-0.0104489699,0.0292278882,-0.0022414136,-0.0180336069,-0.0133206099,0.0026432972,-0.018121291,0.0272988472,0.0410359539,-0.0014111589,0.006682226,-0.0063862936,0.035219606,0.0185889378,0.0143801207,-0.0661719367,-0.0063716797,-0.0005585267,0.0078696087,0.0027492482,-0.0313322954,-0.0185012538,0.0154615529,-0.0261881873,0.0232946277,0.0113331135,0.0332321078,0.0100470865,0.0093017751,0.010880081,0.0127068246,-0.0027492482,-0.0057103988,0.0291840471,0.0381423943,-0.0238061156,-0.0145262601,0.0078330738,-0.0107485559,-0.0015536449,-0.0188812166,-0.0499504618,0.0170544721,0.0222424231,0.02519444,-0.0187935326,0.0453616828,0.0392530523,-0.0273134615,-0.0076723206,-0.0358333923,-0.0022889089,0.0037210756,-0.0248729326,0.0023528449,0.0130940937,-0.0496874116,-0.0205910467,0.0619631223,-0.0398668386,-0.0188373737,-0.0208833255,-0.0387561806,-0.0740634724,-0.0225785431,-0.0041613206,0.0365348607,0.0153007992,0.0451278612,-0.0013508764,0.020050332,-0.0329982862,-0.0038142395,-0.0103101376,0.039077688,0.0301631801,-0.0520840958,-0.0474660918,0.0135763539,-0.0323844999,-0.0104489699,0.0114427181,-0.0197288245,-0.0450109467,-0.0681009814,0.0086733755,0.0221985802,0.0125752985,0.0180043783,0.0113696484,0.0032716969,0.0035566688,-0.0372071005,-0.0069927722,0.0231192596,0.0107485559,0.0320045389,0.0121222669,0.001581046,-0.0092798546,-0.045624733,0.0043768762,-0.0231631007,0.0422050692,0.0252236668,-0.0050893063,-0.0146139441,0.0352488346,-0.0529317074,0.0373240151,0.0341089442,-0.0208833255,0.0426434875,-0.0131160151,-0.0374409258,0.000751248,-0.0590111054,-0.02193553,0.0668149516,0.0221985802,-0.0094333012,0.0459754691,0.0098571051,0.0118738292,0.0106097236,-0.010668179,0.033290565,0.0486059785,-0.0285994895,0.0462092906,-0.0354826562,-0.0152277295,0.0100105517,0.0146431718,-0.0351319201,-0.0243176036,0.006448403,0.0155346226,0.0000256458,0.0322968177,0.0559129491,0.026772745,0.0298270602,0.0154177109,-0.0374993794,-0.0384346731,0.0104928119,0.0131160151,-0.0014550008,0.0122245643,-0.0212048329,-0.0196265262,-0.01945116,-0.0401591174,0.0483721532,-0.0602679066,0.0530486181,-0.0163091607,-0.0647689998,0.0614954755,-0.0361256711,0.0459462404,-0.0573451184,-0.0198165085,-0.0195826851,0.003653486,-0.0285410322,0.0467061661,0.0608524643,-0.0337874405,-0.0175805744,-0.0393699668,-0.0284387358,-0.0075554093,0.0287310146,-0.0271527078,-0.0169960167,0.0396622457,-0.0020952742,-0.010668179,0.0413574614,0.0075115673,-0.0301339533,-0.0003457111,0.0176390298,0.0005617235,-0.0568482429,-0.0146577861,-0.0206348896,-0.0254867189,-0.0326767787,-0.0120565034,0.0236307476,-0.0191004258,-0.0339920335,0.0367102288,-0.0473784059,-0.0353365168,0.0343135409,0.0005009843,0.0171275418,-0.0022852556,-0.028964838,0.0077234693,-0.0514703095,-0.0270504113,-0.0082934136,-0.0447771251,0.0563513674,0.0030835422,0.017010631,-0.0260420479,-0.0137224933,0.0286871716,-0.0202695411,0.0003950332,-0.0222716518,0.0008599393,0.0107997051,0.0041467068,0.0155784646,-0.0268458147,0.0099520963,-0.033845894,-0.0376455188,0.0509149805,-0.0054400405,-0.0033995688,0.020094173,-0.0133206099,-0.020517977,0.0265389234,-0.0165575985,0.0103905145,0.0521717817,-0.0178143978,-0.0003310972,-0.0017217053,-0.0685686246,-0.0347227305,0.03735324,-0.0085564647,0.0471445844,-0.0077819251,0.0246537235,0.0262320302,-0.021847846,-0.0009553866,-0.0387854092,0.0058455775,-0.0151400464,-0.0364471748,-0.0091775572,0.0112600438,0.0405975357,0.0110919839,-0.0406852216,0.0307477377,-0.0059223007,0.0084980084,-0.0165868271,0.0057505872,-0.0323844999,-0.0610278323,-0.0336413011,-0.0045924317,0.0027163669,0.0218624603,-0.0608524643,-0.0091848634,-0.0161337946,0.0149792926,0.0062949564,-0.0115888575,0.0084687807,0.0107997051,-0.0477875955,0.0197580531,-0.016279934,-0.0362133533,-0.0321506783,0.024376059,0.0252382811,0.0320045389,0.0183258858,0.0129260337,-0.0013052078,-0.0104781976,0.0204156805,0.002195745,0.0090314178,0.0118738292,0.0046983832,-0.0289794505,0.0154323252,0.0090021892,0.0145116467,0.018764304,0.0256766994,0.0208248701,-0.0020477788,0.0007517047,0.0129041122,0.006360719,-0.0121880295,-0.0139563167,-0.0028351052,0.0256036296,0.0011207068,-0.0112892715,-0.0397206992,0.0182674304,0.010025166,-0.0141901402,0.0109604578,-0.0141243767,0.0115450155,0.0170252454,-0.0351319201,-0.0281610712,0.014307051,0.0026688715,-0.0341089442,-0.0285556465,-0.0189542864,0.0406852216,-0.0113988761,-0.0088487435,0.0368855968,0.0272696204,0.0247852486,0.0086149201,0.0091629429,0.0035621489,0.0136494236,0.022534702,-0.0012823736,0.0222278088,0.0341674015,-0.0065616611,-0.009981324,0.0215409528,0.0443971604,0.0037229022,-0.005721359,-0.0223739482,-0.0370901898,0.023177715,-0.0104781976,0.0019637488,0.0343719982,-0.0249021612,0.0217455495,-0.0195242297,-0.0084249387,-0.0338166654,-0.0258374531,-0.0088049015,-0.0294909384,-0.0005950615,0.0102370679,-0.0104197422,-0.0237184316,-0.0293155722,-0.0322383605,-0.0579004474,-0.0107485559,0.0214971118,-0.0169375613,-0.0493074469,0.0010713848,0.012641062,-0.003653486,-0.0087099103,0.0418835655,0.0274888296,0.014738163,0.0086076129,0.0244052876,0.0275765117,-0.004691076,-0.0148696881,0.0246244967,0.010712021,-0.0121661089,-0.0078038462,0.0007845861,-0.0319753103,-0.0064776307,0.0314492062,-0.0166160539,-0.0237330459,0.0145481816,-0.011866523,0.0527855679,0.0360379852,0.0164845288,-0.0047020367,-0.0091775572,-0.0038398139,-0.007796539,0.0098424917,-0.0514995381,0.0070329607,-0.031916853,0.0016047937,-0.0453032255,0.0166306682,0.002345538,0.0238353424,0.0261735748,0.0401006639,-0.0068247118,-0.0003740256,0.0116400067,0.0219209157,0.0479921922,0.0112965787,0.0083664833,-0.0210879222,0.0222131945,0.0587480552,-0.0193488616,0.0171567705,-0.0245660394,0.00151437,-0.0198311228,-0.0465892553,0.0005169683,0.0223301072,0.0234115385,0.0285264198,-0.0028953876,0.0052025639,-0.0014047654,-0.020868713,0.011223509,-0.0264658537,0.0122391786,0.0418835655,-0.0385515839,-0.0315076634,0.0038142395,0.0053048618,-0.025106756,-0.0288917683,-0.0238207281,0.002239587,0.0079426784,-0.0127506666,0.0303677768,-0.0170252454,-0.0344596803,0.0153300278,-0.0267435182,0.0161191802,0.0154761672,0.0050345035,-0.0159145854,0.0119761275,-0.0284095071,-0.0198018942,-0.0448648073,-0.0014577409,-0.0267142896,-0.0118007595,0.0542177334,-0.0113477279,0.0222570375,0.0175659601,0.0140293865,-0.0092506269,0.0229292791,-0.0046618483,-0.0024277414,-0.0120272757,0.0242591482,-0.0090971803,-0.0065433937,-0.0130356383,-0.0505642481,0.0047495319,-0.0363594927,0.0056957849,0.0045960853,-0.0043111136,0.0105878022,-0.0443679355,0.0161045659,0.0260858908,0.0282487534,0.0091629429,-0.0127725871,0.0149573721,-0.0013810177,-0.016835263,-0.0009147415,-0.0034324501,-0.0118080666,0.0080157481,0.0161337946,0.0103393653,-0.0083299484,0.0075992509,-0.0259251371,0.0087975943,-0.0005877546,0.0356287956,-0.0349857807,0.0071937139,-0.0068502864,-0.0440756567,-0.0362718105,0.0015536449,0.0009453395,-0.0139124747,0.0385223553,-0.00151711,0.0074969535,0.0017509331,-0.0071389116,-0.0143143581,-0.0007380042,0.0000499785,-0.0351611488,-0.0184427984,-0.0166745111,0.0014084189,0.0183697268,-0.0041722809,-0.0347227305,-0.0306600556,-0.0259105228,-0.023689203,0.0000017197,0.0182820447,0.0366517715,0.0026889658,0.0075554093,-0.0973873213,-0.0317122601,0.0354534276,-0.0339628048,-0.0255305599,-0.0220670551,0.0087245246,0.0172882956,0.0033813014,-0.0118738292,-0.0184427984,-0.0577835366,-0.0319753103,-0.014650479,-0.0375870652,0.0112162018,-0.0191734955,0.0229438916,0.0225931574,0.0341381729,-0.0446017571,-0.0016952176,-0.0156515334,0.0404513963,0.0139928516,-0.0058382708,-0.0084249387,0.0344304517,0.023952255,-0.0343135409,0.0253990348,0.0244345143,0.003299098,0.0167329665,0.000447552,-0.0085564647,-0.0042964998,0.0141536053,0.0130794803,-0.0019509615,-0.0328521468,-0.050593473,0.031186156,-0.0648859143,0.0486644357,-0.0342843123,0.0069927722,0.0305431429,-0.0288186986,-0.0036096442,0.0301047247,0.0164553002,-0.0119030578,0.0053633177,-0.0053596641,0.0215117261,-0.0446017571,-0.0213071313,-0.0049979687,-0.0025519601,-0.0362425819,0.0492782183,0.0144604975,-0.0538085438,-0.0067589493,0.0033685141,-0.0065178191,0.0430234522,0.0322968177,-0.0294909384,0.0265681501,0.028277982,0.0081253527,-0.0356580243,0.0122245643,0.0009197651,0.0162945483,0.0061305496,-0.0150085203,-0.0282341409,0.0423512086,-0.0306015983,-0.0094186869,-0.0079207579,-0.028877154,-0.0291694328,-0.0149792926,-0.0067406818,-0.0170398597,-0.0139928516,0.0372363292,-0.0012668463,-0.0060720937,-0.0018057355,-0.0055532986,0.0244345143,0.0233823098,-0.0056848242,0.0212340616,-0.0048079877,0.0328229181,-0.0021007545,0.0278541781,0.0061378567,-0.0038178929,-0.0391653702,0.0280733872,-0.0085929995,0.0089218132,0.0055898335,-0.003461678,-0.0103832074,0.0272111632,-0.0009928348,0.0109458445,0.0056738639,0.0090094963,0.0322091319,-0.0055861804,-0.0264512394,0.0004900238,-0.0266119931,-0.0246975664,0.0157976728,-0.0005429994,0.0432572737,0.0339920335,-0.0041540135,0.0284825768,-0.0014312532,-0.0026962727,0.0466477089,-0.0261297319,0.0614954755,-0.0116400067,-0.0240983944,0.0054363874,-0.0115742441,0.0124291591,0.0212048329,-0.0082276501,0.0041649742,0.011910364,-0.0026907925,0.0118592158,-0.0105658816,0.0064812843,0.0086003058,-0.0271088667,0.0542469621,0.0211756043,-0.0244783573,0.008052283,0.0672826022,-0.0201526284,0.0634245202,-0.0536039472,-0.0237330459,-0.0225200877,0.0052829408,0.021847846,0.0675164238,0.0000253461,-0.0046581947,0.0251652114,-0.0172444545,-0.0254282635,-0.0112965787,-0.0016605094,0.004628967,-0.0080157481,0.0084468601,-0.0061670844,0.013196392,0.0304846875,0.0103905145,0.0074092695,-0.0009051512,0.0212048329,0.015768446,-0.0361841246,-0.0052939011,-0.0044755205,0.0474076346,0.0068137515,-0.0247414075,-0.0381716229,0.0233238544,-0.0166452825,0.0346935019,-0.0012732398,0.0085564647,0.0005023543,0.0404513963,-0.0162945483,0.0056373291,0.0218332317,0.010025166,-0.0182382017,0.0295932367,-0.0348396413,0.020181857,0.0246244967,-0.0280587729,0.0170837007,0.0263635553,-0.0041028648,0.0365348607,-0.043491099,0.0059880638,0.0242737606,-0.0017892948,0.0128894988,-0.0081545804,-0.0012065638,0.0118299881,0.0059697963,-0.0064849379,0.0115523227,-0.0385808125,-0.0175805744,-0.033290565,-0.03890232,0.0155784646,-0.0195680708,0.0201380141,0.0096013611,-0.0056884778,-0.0065507004,0.0211171489,0.0079645999,0.036154896,0.0053925454,0.0045741643,0.012253792,0.0209563952,0.0029154818,0.0102370679,-0.0114207976,-0.0107850907,0.0039092302,-0.017697487,-0.009038724,-0.0305431429,-0.0358333923,-0.0002621376,0.0315953456,0.0494535863,0.0323260427,-0.0225200877,-0.0029227887,0.0227392968,0.0003733406,-0.0021519032,0.0307477377,0.0281318426,0.0138467122,0.0272403918,-0.0118446015,0.0033137118,-0.00638264,0.0215847958,0.0193196349,-0.0040553696,-0.0044864807,0.0148258461,-0.008739139,-0.0247560218,0.0052719805,0.0063862936,0.0004605676,0.0124291591,0.0321799032,-0.0077380836,-0.0098278774,0.0249021612,-0.0249606166,0.0013664038,-0.0200649444,-0.0134302145,-0.0222131945,0.0196849834,-0.0157392174,-0.006832019,0.0336997546,-0.0034287965,-0.0055788732,-0.0114354109,0.0076211719,-0.0270942524,-0.0216432512,0.0231192596,0.0013691438,0.0293009579,-0.0276057404,0.0112600438,-0.0000977307,0.0214532707,-0.0005895813,-0.0037703975,-0.0120418901,-0.0187496897,0.0113915699,0.0025464797,0.0177997835,0.0166598968,-0.0135544334,-0.018764304,0.0043695695,0.0283948928,-0.011866523,-0.0006197226,0.0085199298,0.0256036296,-0.0100032445,-0.0339043513,0.01945116,0.0291694328,0.0105147325,0.0216140226,0.0073617743,0.0287164003,0.0226370003,0.0443387069,-0.0064410958,0.009214092,0.0171421561,0.0148916086,-0.028964838,0.0102297608,0.0086368406,-0.0206495039,0.0151400464,0.0233676974,-0.0298855156,0.0238061156,0.0154761672,-0.0100032445,-0.0013463096,-0.0190565828,0.0248437058,-0.009469836,-0.0266850628,-0.002345538,0.0063972538,-0.0105951093,0.0298416745,-0.0047860667,-0.0141316839,0.0377332047,0.065236643,-0.0104197422,-0.0184281841,0.0233238544,-0.0214678831,-0.0034580245,0.00917025,0.0042745788,-0.0011353208,0.0353949741,-0.0186181646,-0.0028186645,-0.0014111589,0.0014714415,0.0139417024,0.0125752985,-0.0291548185,0.0471445844,0.0088633569,0.010368593,0.0186912343,0.0130575588,0.000510118,-0.0176244173,-0.0184135698,-0.0119761275,0.0170252454,-0.010668179,0.0086514549,0.0316245742,0.0196119137,-0.0163822304,0.0105951093,0.0481383316,0.0025391728,0.0162507053,-0.0142120607,0.0146797067,0.0133133028,0.0004206076,-0.0110042999,-0.0059259543,-0.0059917169,0.0025629206,-0.0194950011,0.0440464281,-0.0003386325,-0.0070585352,0.0031931468,-0.0204595216,-0.0168791059,-0.0136567308,0.0015518182,-0.0216578655,-0.0076723206,0.0204887502,0.0567313321,0.0144239627,0.0186035503,0.0391653702,-0.004435332,-0.0043768762,0.0024843705,0.0005763375,-0.0357164778,-0.050038144,0.0267289039,0.0053815851,0.0041649742,-0.035599567,-0.0028771202,0.040012978,0.0056263683,0.0052135247,0.0237330459,0.0126849031,0.0102224536,0.0238353424,0.0252821241,-0.0241568498,-0.0216870923,0.0027492482,-0.0131379357,0.0310400166,-0.0165868271,-0.0081545804,0.0098424917,0.0066128098,-0.0421758443,0.0245221984,0.0216870923,-0.0234992225,0.0164114591,0.0097986497,-0.0004813468,-0.0126849031,-0.0348980986,-0.0174490493,-0.0003845294,-0.0059478753,0.0124876155,0.00933831,-0.0140659213,0.0327060074,0.0117130764,-0.0232069436,-0.0051769898,-0.0129479542,-0.0152423438,0.00342697,-0.0161776356,0.0168060362,0.0257789977,0.0237622727,0.0148331532,0.0610862859,-0.0057505872,-0.0023729391,-0.0288917683,-0.0224177912,0.0166745111,0.0195826851,0.0065835817,-0.0104197422,0.0136201959,0.0207956433,0.0401006639,-0.0198749639,-0.0057980823,-0.0209856238,0.0341381729,-0.0017253588,0.0381716229,-0.0265096948,-0.0001366632,0.0435787812,-0.0127068246,-0.0135105914,0.0150085203,-0.0008585692,-0.0561760031,0.0246244967,-0.0136640379,0.0026140693,0.0239668675,-0.0099740168,0.0162214786,0.0148623809,0.0288625397,-0.0115011744,-0.0179166961,-0.0107193282,0.0425558053,0.0172444545,0.0357164778,-0.0188666023,0.018208975,-0.0255305599,-0.0061232424,-0.0101566911,0.0095429057,0.0144604975,0.0031054632,-0.0250483006,0.0305139162,-0.0251359846,-0.0038069324,-0.0138247907,0.0008718131,0.0088195149,0.0070768027,0.0072339023,0.0101786125,0.0048920177,0.0370317362,0.006276689,-0.0042015091,0.0024441821,0.0011371475,0.0233384687,-0.0218916889,-0.0222570375,0.0037703975,0.0261443462,0.0009014977,-0.0089583481,-0.0048299087,-0.0041174786,-0.0048116413,-0.0101786125,0.0057140524,-0.0198311228,-0.0061999657,0.0473491773,0.0309815612,0.0358041637,0.0077819251,0.0348104164,-0.0492782183,0.0176682584,-0.0344889089,-0.0092506269,-0.0411236398,-0.0139124747,-0.0008686163,0.0178582389,-0.0113988761,0.0009161116,-0.0158853568,0.0166014414,0.0076650139,0.0151108187,-0.0140366936,0.0167475808,-0.0031438246,-0.0094771432,-0.0175805744,0.0372947864,0.0166452825,-0.0288040843,0.0157830603,-0.0079645999,0.018208975,-0.0296663065,-0.0089729615,0.0080303624,0.0188812166,-0.0289502237,0.0182528161,0.0094625289,0.0172152258,-0.0318583995,0.0204741359,0.0221547391,-0.0106974067,-0.0235869065,0.0137151862,-0.0393407382,0.0263635553,-0.0187350772,-0.0113842627,-0.0105585745,0.0108946953,-0.0107193282,0.0505350195,-0.0097475005,0.0054510012,-0.0032698701,-0.0259543639,0.0130429454,-0.024376059,0.0175951887,0.0170837007,-0.0191734955,-0.026436625,0.0195096154,0.0167914219,-0.0199041925,0.009637896,0.0131817777,-0.0210294649,0.0072192885,-0.0121734152,-0.0364179499,-0.0022943893,0.0124876155,0.0272257775,-0.0249021612,-0.0448648073,0.0326767787,-0.0040005674,0.0156223066,0.0139124747,-0.0059223007,0.018939672,0.0149281435,-0.0093090823,-0.0038251998,-0.0092871618,-0.0281610712,-0.0089437338,-0.0077526974,-0.0175951887,-0.0290671345,0.0072777444,0.0161776356,-0.0080815107,-0.0167621933,0.0011910364,0.0100690071,0.0111358259,0.0151400464,-0.0182528161,0.0009425994,0.0039822999,-0.0025921483,0.0043439949,0.0173029099,-0.0079572927,-0.0034963861,-0.013452136,0.031186156,-0.0154615529,-0.0351611488,0.0335828438,0.0200357176,-0.0231631007,0.0495704971,0.0054838825,-0.0160753392,0.01220995,-0.0119834337,0.0037777047,-0.025106756,0.0051842965,-0.010923923,0.0215263404,0.0102736028,0.0303385481,0.0127360523,0.042497348,0.0221547391,-0.0013179951,-0.0020422987,0.0548607446,0.0168937203,0.0054071592,0.0037356894,-0.0091848634,-0.0328813754,0.0239084121,-0.0008316248,0.041766651,-0.0186035503,0.0158999711,0.006554354,0.0197580531,0.0174782779,-0.0000687312,-0.0199918747,-0.002849719,0.0177851692,-0.0316830315,0.0017436262,0.0098205702,0.0455955043,-0.0046435809,0.0338751227,-0.0269627273,-0.0240253247,0.0285118055,0.0464431159,0.0001003567,-0.016279934,-0.005224485,0.0077088554,0.0299878139,0.0160314962,-0.0184574109,0.0177997835,0.0322091319,0.0092433197,-0.0139051676,-0.0114134904,-0.0420881584,0.00439149,0.0470276736,0.0128310425,-0.0356872529,-0.028190298,0.0013307823,-0.0012065638,-0.0173175242,-0.0239668675,0.0045376294,-0.0536039472,0.0003326956,0.0283364374,-0.0137005728,0.0033539003,-0.0035183071,0.0401591174,0.0259397514,0.0215555672,0.0362718105,0.0062913029,-0.0207518004,0.0325014107,0.0019655754],"86":[0.0106167067,-0.0091440417,0.0308357831,0.0059094406,0.0452919342,0.0234273821,-0.0205121078,0.0077840821,-0.0273344498,0.0239833873,0.0236978717,-0.0491689481,0.0219697449,-0.0438493267,0.0335707329,0.0024832424,0.007449727,-0.0190694984,-0.027319422,0.0491990037,0.0109548178,0.0273795314,0.0378985591,0.0025264455,-0.0362155177,-0.0413848683,-0.0166501217,0.0439695455,-0.0148168048,-0.058485806,-0.0112779029,-0.0342018716,-0.0298740435,0.0064616897,0.0391908996,0.0053158668,0.0636551529,-0.0509722121,0.0322783925,0.0105190296,-0.0045832912,0.0113981199,0.0190845244,0.0228413213,-0.008077112,-0.0211282223,-0.0433083475,-0.0032195745,0.0291226842,0.0360652432,-0.0502509065,0.0274396408,-0.0137423612,-0.0270038508,0.0060709827,-0.025380915,0.018889172,0.0401526392,-0.0053797322,-0.0372073092,-0.0022371721,-0.0345024168,0.0418957919,0.0017027679,-0.017521698,0.0125026181,-0.0395214967,0.0415351391,-0.0056990599,0.009452099,0.0681032017,0.0446006842,0.0286418144,-0.0330898613,0.0325488821,-0.0931685492,-0.003585862,0.0202115644,-0.0135920886,-0.0305051859,-0.0035126046,-0.0386499204,-0.0391007364,0.0161842778,0.0460432954,-0.0390406251,-0.0427373126,-0.0150346989,0.0107369237,0.0086781997,-0.0057028169,0.0616114587,-0.0003954028,0.0327893198,0.0217443369,0.0130210556,-0.0019591693,0.0032721695,0.0115859602,0.0017168559,0.0400023684,-0.0325188302,-0.0158386528,0.0101959454,0.0312565453,0.0042263959,0.0223754793,0.0240585227,0.0147266416,0.0130210556,-0.0777807087,-0.0120518021,-0.0313166529,0.0018558573,-0.0127355391,0.0342619829,-0.0363657884,0.0210831407,0.0300543699,-0.0093018273,-0.0419859551,0.0093018273,-0.0127505669,0.0070965881,0.0390406251,-0.0352237225,-0.0152826477,-0.0333002433,-0.0613409691,-0.0171309914,0.0567727052,-0.0135019254,0.0257415678,-0.0242087953,-0.0257866494,-0.0335707329,-0.0651578754,-0.0273795314,-0.0174916442,-0.0169656929,-0.0114507154,-0.0211432502,0.0036647548,-0.020707462,-0.0282511078,0.0152225383,-0.0446607955,0.0236978717,-0.0136071164,-0.0307606477,-0.0104213525,-0.0306704845,-0.082950063,-0.0217293091,0.0461334586,0.0042865044,0.0350433961,0.0342319272,0.0339614376,-0.0352237225,0.0089637162,0.0121119116,-0.027770238,-0.0112929298,-0.0155381095,-0.0095798308,-0.0493793301,-0.0358248092,-0.0776003823,0.0277852658,-0.0563819967,-0.0571634136,-0.0602289587,0.010128323,0.0409941599,-0.0265830904,0.015598218,-0.0249902084,0.0297387987,-0.0404231288,-0.0596579239,0.0281459186,-0.0195503682,-0.0065255552,-0.0250202641,0.0175667796,-0.0462236218,-0.0018699453,0.0215189289,0.0409340523,-0.0271240696,0.0616715662,0.0123298056,0.0173263438,0.0245393924,-0.0441498682,0.0312264916,0.0095723169,-0.0327592641,0.0360351913,0.0495897122,0.0132389497,0.0656387433,-0.011270389,0.0080019757,-0.0400925316,-0.0010744437,-0.0311062727,-0.0422564447,-0.0323084481,0.0131112188,-0.0241036043,0.0278002918,0.0092492327,-0.0469449274,0.0115483915,-0.0544585176,0.0106918421,0.0050528911,-0.0043729111,-0.0021996042,0.07056766,0.0152450791,-0.0141856624,-0.0044705877,0.0354942121,0.0086256042,-0.0311062727,0.0368466564,-0.0033191296,0.0262374654,0.0015928816,-0.0175517518,0.0044255061,0.0222552605,-0.0189342536,0.0048763216,-0.0183932744,0.0354341008,-0.0121119116,0.0354040489,0.0090689063,0.0010246662,-0.0135620348,0.0177771598,0.0097451294,-0.0154930279,-0.0650376603,0.0234123543,0.0551497675,-0.0083476016,-0.010819573,-0.0192498248,-0.0054360842,-0.0338712744,-0.0501907989,-0.0431280211,-0.0004710083,0.0117662856,0.0024137415,-0.0031651009,-0.0419558994,-0.0271090418,0.0228262935,-0.0322483405,0.0426471531,-0.0067960443,-0.0163195226,0.0029509636,0.0124124549,0.0277852658,0.024809882,0.0340516008,-0.0286568422,-0.0148769133,-0.0252456702,0.0284013804,0.0361253545,-0.0137348473,-0.0172361806,0.0236227345,-0.0201364271,0.0298289619,-0.0159738977,0.0020267917,0.0125702405,0.030159561,0.0112177934,0.0076450803,-0.0232470557,-0.0174766164,0.0351936668,0.0669010282,-0.0291827936,0.0043992084,-0.025831731,0.0028570436,-0.0115709323,-0.0238631703,-0.0567125976,0.0140804723,0.0041174488,0.042917639,-0.0214738473,0.0244191755,0.0146214515,-0.0314969793,-0.0004487024,-0.0233973265,0.0248850193,0.0246596113,0.0072205625,0.0033210078,0.0038582298,-0.0119315851,-0.0018248638,0.0850538686,-0.0378384516,0.0124800773,-0.049499549,-0.0533465073,-0.0821686462,-0.0223905053,0.0054961932,0.0101734046,-0.0247648004,0.0351035036,0.0077314866,0.045622535,-0.0237429533,0.0007522985,-0.0271390956,0.0241787415,0.0467946529,-0.0272142328,-0.0134793846,-0.0105565973,-0.0331199169,0.0282060262,0.0187539272,-0.0271240696,-0.0695458129,-0.0618518926,0.0091215018,0.0148393456,-0.0034205629,-0.0164247137,-0.0563819967,-0.0222702883,0.0098954011,-0.0442400314,0.0161542241,-0.0113229835,-0.0068674237,-0.0209629238,0.0030974785,0.0226309411,-0.0048462674,-0.0526252016,0.0162143335,-0.0308658388,0.0530159101,0.007506079,0.0029547203,-0.0093243681,0.0157785453,-0.0305953491,0.0482072085,0.0142983664,-0.0268235262,0.027078988,-0.0354641564,-0.0369067676,-0.0224806685,-0.0659392849,-0.0190544706,0.0450815558,-0.0044255061,0.0017685118,0.0590868928,0.02572654,0.0134568447,0.0183031112,0.0038657433,0.0357947536,0.0234424081,-0.0153127015,0.0125627266,-0.0309860557,-0.0059019271,0.0271841772,-0.0142758256,-0.0415651947,0.0064955009,0.009444586,0.0162894689,-0.0101959454,0.0140729593,0.067682445,-0.0050754319,0.0343521461,-0.0105490843,-0.0337510593,-0.0039371224,0.0104288664,0.0321882293,-0.0193700418,0.0146965869,-0.0331499688,0.0015609489,-0.0314068161,-0.0356745385,0.0522645488,-0.0266131442,0.0570431948,-0.0305803213,-0.0344423093,0.0294382554,0.0045081554,0.0525350384,-0.0341117084,0.0103462171,0.0078817587,-0.0184083022,-0.0479968302,0.078441903,0.0525350384,-0.0382592119,-0.0279806182,-0.0782615766,-0.0295735002,0.0034919421,0.0111050894,-0.0089036068,-0.0237730071,0.0493793301,0.0189342536,-0.005695303,0.0364559516,-0.0087307943,-0.0064128512,-0.0035464156,-0.0200462658,0.0094896676,-0.0269136894,-0.0054999497,-0.0133065721,-0.0501306914,-0.0489585698,-0.016725257,0.029257929,-0.0225257501,-0.0646770075,0.0414449759,-0.028686896,0.0244642571,0.0121645061,0.0198208578,0.0129008386,-0.0074609974,-0.0459831879,0.0009363815,-0.0673818961,-0.0123373186,-0.0014980225,-0.0567727052,0.0214588195,-0.004556994,0.0053684618,-0.02572654,0.0209478959,0.0167402849,-0.0458329134,-0.0405433439,-0.0480869934,0.0034975773,0.003043005,-0.0081071667,0.0072618872,-0.0411444344,-0.0022540777,-0.0178222414,-0.0464640558,0.0679228753,0.0162594151,-0.0345625244,0.0189943612,0.0166801754,-0.0282511078,0.02867187,-0.0020512107,0.0072881849,0.0490787849,-0.0192197692,-0.0301445331,-0.0080395443,-0.0695458129,-0.0392510071,-0.0106392475,0.0047035092,0.025155507,0.0090538794,-0.0172812622,0.0645567849,-0.0337210037,0.0290024672,-0.0160790887,0.0122997509,0.0122020748,-0.0218946096,-0.0363958441,0.0274696946,0.0042489367,-0.0004552767,-0.0330297537,0.0299491808,-0.0169656929,-0.0155831911,-0.0069162617,-0.0071905083,-0.0277401842,-0.0452318266,-0.0044593173,-0.013314086,0.0119315851,0.0287470054,-0.019926047,0.0100832414,-0.028686896,0.0082574384,0.0171309914,-0.0236077085,0.0108571416,0.0138024697,-0.0565022156,0.0074271862,-0.019911021,-0.0433384031,-0.0345324725,0.0158536807,0.019911021,0.0230066199,0.0325789377,0.0133065721,-0.0031688577,-0.0109397909,-0.0215489827,-0.0206172988,0.0207675695,0.0342319272,0.0301445331,-0.026733363,-0.0197006389,0.0081146797,-0.0087533351,0.0357045904,-0.0069237757,0.0128782978,0.0064053377,0.0150722666,-0.0076488373,0.0124875912,0.0080395443,-0.0095197214,0.0153427562,0.056201674,-0.0053008394,0.0139602553,-0.0315570906,-0.0163495783,0.0366062224,-0.0215189289,-0.0084527917,0.0007607513,0.025155507,0.020602271,-0.0408739448,-0.0217443369,0.0030956001,0.0273795314,-0.0242087953,-0.0313166529,-0.0425870419,0.0338412225,-0.0219697449,-0.0140729593,0.0098954011,0.0283112172,0.0318876877,-0.0131713273,0.0079193264,0.018092731,0.0084828464,0.018768955,0.0113304975,-0.0106693013,0.0071604536,0.017521698,-0.0067359358,0.027094014,0.0507017225,0.0047335634,0.0079944627,-0.0228864029,-0.0171309914,0.0235025175,-0.0076525942,0.0103988117,0.0479968302,-0.0319177397,0.0108871954,-0.0240434967,0.0071003451,-0.0377482884,-0.0356144272,-0.0075849718,-0.0033322782,-0.0017694511,0.0115934731,-0.0232771095,-0.0155230826,-0.0140053369,-0.005973306,-0.0560213476,-0.0107519506,0.0143209072,-0.0131337596,-0.0175517518,-0.0336308405,-0.0027894212,-0.0017243695,0.003533267,0.0412345976,0.0091590695,0.0085805226,0.0171009358,0.0204519983,0.0256213509,-0.0044630738,-0.0215640105,0.0507317781,0.0226910487,0.0042940183,-0.018197922,0.0136822518,-0.0388903543,0.0006518041,0.0532262884,0.0014360354,-0.0327592641,-0.0094370721,-0.0181378126,0.0467044897,0.0253508613,0.0077765682,0.0204069167,-0.0187088456,0.0060972804,0.0048838351,0.0176719688,-0.0532563441,0.0064504193,-0.0381991044,0.0136296572,-0.0506716669,0.0113455243,0.0263877362,0.0345324725,0.0403630175,0.0313767642,0.0013909538,-0.0050641615,0.0031801281,0.0401225835,0.0222402345,-0.0044518034,0.0022202665,-0.0487782434,0.0200913474,0.0510924309,-0.0078967856,0.0295434464,-0.0174615886,0.0255011339,0.0100081051,-0.0418657362,0.0337210037,0.0131638143,0.03822916,0.0256363787,-0.0087984167,-0.0126153221,0.0160039514,-0.0133215999,0.0082348976,-0.0240284689,0.0012998515,0.0163345505,-0.0111050894,-0.0467044897,0.0004357884,-0.0013120611,-0.0461935662,-0.0040836376,-0.0297688544,0.0138776051,-0.0012528916,0.0000742554,0.0308357831,-0.0249902084,-0.0514831357,0.0001360665,-0.0328193717,0.038469594,-0.0146665331,0.0183632206,0.0181077588,0.0283112172,-0.013885119,0.0068786941,-0.0437892191,0.0224806685,-0.0170859098,-0.0146439923,0.0302497242,-0.0131563004,0.0231869463,0.0138475513,0.0020136428,0.0072694006,0.0255161598,0.0057291142,0.0026485415,-0.0005672763,0.0152150253,-0.0174465626,-0.0209929775,-0.0156583264,-0.0493793301,-0.0048500239,-0.0261923838,-0.0007584033,-0.0307606477,-0.0128181893,0.0008790903,-0.0426772051,-0.0001326619,0.027890455,0.0129534332,0.0311663821,0.0005240731,0.0154329194,-0.025380915,-0.0193700418,-0.0282060262,-0.0150196711,-0.0146439923,0.0113004437,0.0120367752,0.0331499688,-0.0100682136,0.0318576321,-0.0290325209,0.0295434464,0.0190694984,0.0434886739,0.0047448338,0.0091966372,-0.0031970337,-0.0599284135,-0.0097000478,-0.0127129983,0.0059620356,-0.0077540274,0.0477563925,-0.0142607987,-0.0034506174,-0.0039183386,0.0297838803,0.0097676702,0.0124650504,-0.0037323772,-0.0248850193,-0.0048575378,0.0161091425,-0.0094220452,-0.0007917448,-0.0219697449,-0.0254710782,-0.0250052363,-0.0246145297,-0.0123147778,-0.0080695981,0.0094671268,0.0117512587,0.002930301,0.009331882,-0.0828899518,-0.0485077538,0.0338712744,-0.0223905053,-0.0314969793,0.003217696,0.0168304481,0.0172211546,0.005514977,-0.0114807691,0.003495699,-0.0220599081,-0.025951948,-0.016499849,-0.0253208075,-0.0138700921,-0.0105641112,-0.001802323,0.0363657884,0.0430679135,-0.0076901619,0.008077112,-0.0114356875,0.0259218942,0.0047899154,-0.0272743404,-0.0009546959,0.0202866998,0.0097376164,-0.0020643596,0.008760849,0.0031707361,0.0130511103,-0.0100907544,-0.0224506147,0.0090463655,-0.0025658919,0.029483337,0.0084903594,-0.0010941669,-0.0383794308,-0.0249751825,0.0446908474,-0.0453820974,0.0453219898,-0.0138099827,-0.0044255061,0.0160790887,-0.0127129983,0.0113304975,0.0212484393,0.0007203657,-0.0079719219,-0.0144110704,-0.0162443873,0.026282547,-0.0416553579,-0.0131037058,-0.0206623804,-0.0132239228,-0.0144110704,0.0230667293,0.0056840326,-0.0321882293,-0.0092792865,0.0016126048,-0.0078216502,0.0351936668,0.0128106754,-0.0080846259,0.00540603,0.0375980176,-0.0020136428,-0.0220298525,0.0124650504,0.0093919905,0.01911458,-0.0066908542,0.0181077588,-0.0426170975,0.004662184,-0.0133666815,-0.017867323,0.0150572397,-0.0247497745,-0.0055112201,-0.0409340523,-0.0001459281,-0.0281609446,-0.0112854159,0.0738135353,0.0047260495,0.0060559558,-0.0217743907,-0.0044029653,0.0196705852,0.0066082045,-0.002618487,0.0209779497,-0.0003416337,0.01798754,-0.0018126542,0.0035126046,0.0282961894,0.0051317839,-0.008873553,0.0019986157,-0.0259068664,-0.0013871971,-0.0062663364,-0.0271541234,-0.0056088967,0.0212334134,-0.0014961441,0.0058380612,0.0028269892,0.0096850209,0.0309860557,0.0138099827,-0.0104814619,0.0230817571,-0.0155831911,-0.0279054828,0.0327292085,0.0242087953,0.0116686095,0.0232470557,-0.0154479463,0.0244191755,-0.0229915939,-0.0128782978,0.0583054796,-0.0302497242,0.0480569378,-0.0056577353,-0.0196705852,0.028686896,-0.0062926337,-0.0082874922,0.0035144829,-0.0104964888,-0.0021826986,-0.0099254558,0.0134418169,-0.0114281746,-0.0139677683,-0.0042151255,0.026628172,-0.0058455751,0.0360652432,-0.0080921389,-0.0290776026,-0.0031463169,0.0799446255,-0.0130511103,0.0470651425,-0.0426471531,-0.0193249602,-0.0125702405,-0.0124274818,0.0012209588,0.0517235696,-0.0148243178,-0.0168755297,0.018092731,-0.026733363,-0.0087458221,-0.0009889766,0.0232470557,-0.0248699915,-0.0160039514,-0.0018229854,0.0069275321,-0.0136071164,0.0239232779,0.0141556086,0.006600691,0.0043841815,-0.010473948,0.0401526392,-0.0177921876,0.0073107257,0.0080094896,0.0442099795,0.0216842275,-0.0554202572,-0.041775573,-0.0209929775,-0.0236377623,0.0388903543,0.0246145297,-0.0059695491,0.0160941146,0.0423165523,-0.0030185857,0.0023498761,0.0516033545,0.0161692519,-0.0060221446,0.0198358838,-0.0286267884,0.0205571894,0.039822042,-0.0013608994,0.0285065696,0.0288521945,0.0090087978,-0.0011232821,-0.0507618301,0.0159288161,0.0242388491,0.0031012353,0.0027293125,0.0014970833,-0.0045832912,0.0233823005,-0.0059582791,-0.0082198698,-0.0056389514,-0.0402127467,-0.0347127989,-0.0252156164,-0.0310762189,0.0034750365,-0.0070815608,0.0358849168,0.0005865298,-0.0047598607,-0.0203618351,0.0072994553,-0.0034149277,0.0014219474,0.0114732562,0.0119315851,0.0277552102,0.0286418144,-0.0052294605,0.0053834892,0.0005170291,-0.020256646,0.0029772611,-0.0184984654,0.0138550643,-0.0023254568,-0.0256514046,-0.0051317839,0.0498301461,0.0609202087,0.0027086502,-0.0235475991,-0.0371472016,0.0189643074,0.0149295088,0.0032928318,0.0186487362,0.0150647527,0.0339614376,-0.0003324765,-0.026282547,0.0092116641,-0.0258617848,0.0194301512,0.018543547,-0.0261022206,0.0080470573,-0.007337023,-0.0020455755,-0.0188741442,0.0156132458,0.0219396912,-0.0037586747,0.0024569447,0.0381690487,0.0120668299,-0.0001324271,0.0212334134,-0.0441498682,-0.0100456737,-0.0102710808,-0.0280407276,-0.0411143787,0.0164096858,-0.0160640609,-0.0095422622,0.0168605018,0.0132088959,-0.0060747396,-0.0076713781,-0.0332100801,-0.0164397396,0.0002077978,0.0251254532,0.0085654957,-0.0000803602,-0.0167102292,0.0015966385,0.0132239228,0.0086631719,0.0245544203,-0.0036234299,0.0228413213,-0.0325789377,0.0108646546,0.0327893198,0.0200162102,-0.0021996042,-0.01024854,-0.0339614376,0.0260421112,0.03892041,-0.020707462,-0.0025658919,0.0016680176,0.0209328681,0.009219178,-0.0291677658,0.0059432518,0.0529257469,0.0169356372,0.0150121581,0.0229014307,0.0100607006,0.0145913968,0.0420160107,-0.0178222414,0.0026053381,0.0127580799,0.0136371702,-0.0123824002,-0.0003543129,-0.0003390509,-0.0316773057,0.0062062275,0.0475760698,-0.016845474,0.0192648508,0.0064128512,-0.0071604536,0.0270639602,-0.0088510122,0.0036591196,-0.0060597123,0.0076676211,-0.0055224905,0.01217202,0.0010105782,0.0196555573,-0.0124875912,-0.0032646561,0.0359149724,0.0750157088,0.0115784463,0.0034806717,0.0186787918,0.0005254819,-0.0085579818,-0.0160941146,-0.0013590211,0.0061273347,0.0465842746,-0.0046959952,-0.0176118612,0.0008546712,-0.0071642105,0.0045156693,-0.0130210556,-0.025155507,0.0245995019,-0.0067547197,0.0189342536,0.0212484393,0.0200913474,0.0090839332,-0.029137712,-0.0134418169,-0.0047260495,0.0135244662,-0.017416507,-0.0010209094,0.0278453734,0.0101132952,-0.00512427,0.0243139863,0.0185134914,0.0200011842,0.0350133404,0.0241036043,-0.0141030131,0.0087758759,-0.0228262935,0.0115333647,-0.0145162605,-0.0153577831,0.0025865543,-0.028912304,0.0467044897,0.0168755297,-0.0176569428,-0.0308357831,-0.0226159133,-0.0099855643,-0.0064541758,0.0114131467,-0.0194902588,-0.0124650504,0.0141706355,0.027650021,0.0124425096,0.0329696424,0.0234273821,-0.0176869966,-0.0081146797,0.0089787431,0.0026673253,-0.0418056287,-0.0289573856,0.0411744863,0.0013505683,-0.0078742448,-0.045412153,-0.0173714254,0.0240134411,0.0081297075,0.0199561026,0.0298740435,0.0342920348,0.0213987119,0.0361253545,0.0318576321,-0.0418957919,-0.0017591199,0.0162443873,-0.0302046426,0.0212935209,-0.0297688544,0.0010782005,-0.0168905556,0.0046847248,-0.0264929272,0.0357647017,0.0363056809,-0.016499849,0.005462382,0.0281459186,-0.0084527917,-0.0087157674,-0.0340816565,0.003929609,0.0066720704,-0.0121043976,0.0180476494,0.0111952526,-0.0006865545,0.0424968787,0.0120518021,-0.0345324725,0.0067998013,-0.0163646042,-0.0114356875,0.0184233282,-0.0069838841,0.0058493316,0.0199861564,0.0081146797,0.0144035565,0.0385898128,-0.0057741958,0.0069388025,-0.0077615413,-0.0124575365,0.0166501217,0.0098052379,-0.0157184359,-0.0427072607,0.0239232779,0.0058343047,0.0398821495,-0.0221049897,0.0017422143,-0.0206924342,0.0226760227,0.0071041016,0.0196104757,-0.0324887745,-0.0019075134,0.030956002,-0.0078892726,0.0087984167,0.0045607509,-0.0252005886,-0.0434285663,0.0419859551,-0.0204519983,-0.0080094896,0.0392209515,-0.0190845244,0.0228413213,0.0211582761,0.0144937197,-0.0139527414,-0.0122321285,-0.0142382579,0.0371772572,0.0267183352,-0.0020042509,-0.0324587189,0.0062738499,-0.0324887745,-0.0183632206,-0.0221200157,0.0116009871,-0.0012566483,0.0098352926,-0.0027969349,0.0223003421,-0.0251104254,0.0040085018,0.0015825505,-0.0169356372,0.0071529401,0.0165449306,-0.0105641112,-0.0080245165,0.0029678692,0.0285366252,-0.0122246156,-0.0093844775,-0.0013421155,0.014914481,0.0138024697,-0.016725257,-0.0021394955,0.0200462658,0.0123072648,-0.0137874419,0.018889172,-0.0207825974,-0.0101208091,0.0161091425,-0.0024174985,-0.0048537808,-0.0347127989,-0.0147191277,0.0401225835,0.0226760227,0.0239232779,-0.0066683134,0.0220899619,-0.0469148718,0.0176569428,0.0007137913,-0.0084753325,-0.0344122536,-0.0061348481,0.0038338106,0.0082348976,-0.0171610452,0.0012096884,-0.0004656079,0.0024982695,-0.0196104757,0.0123373186,-0.0043503703,0.0254710782,-0.012743053,-0.007115372,-0.0059019271,0.0457427502,0.0425569899,-0.01980583,-0.0111351442,-0.0233672727,0.0142983664,-0.0629338548,0.0013045475,0.0095347492,0.0030486402,-0.0403630175,-0.0050265933,-0.0048462674,0.0140954992,0.0022409291,0.0025414727,0.0217293091,-0.0294983648,-0.0288672224,-0.0014820561,-0.0112177934,0.0249902084,-0.0101658907,-0.0142908534,-0.0169055834,0.012510132,-0.0138625782,0.0282811616,0.0139752822,0.0050378637,-0.0132690044,-0.0116310408,0.015252593,-0.0175667796,-0.0176268891,0.0057253577,-0.0369969308,-0.0327893198,0.0046584276,0.029137712,-0.0048725647,0.0081823021,0.0113004437,-0.0224806685,-0.0091590695,0.0267784446,-0.0347428508,0.0300393421,0.008986257,0.0316472501,-0.0454422086,-0.0535869412,0.0317374133,0.0043653972,0.0075849718,0.0311363284,-0.0046546706,0.0188440904,0.0043578837,-0.0080320304,0.0054435977,-0.0062588225,-0.0267634168,-0.0066420157,-0.0126904575,0.0001230351,-0.0356745385,-0.0109473048,0.0077164597,-0.033240132,-0.0041475031,-0.0098277787,0.0249301009,0.0110825486,0.0205271356,0.0019328716,0.0010659909,0.0017375182,0.0227060765,0.0068636667,0.0149295088,0.0160941146,0.005289569,0.0047110226,0.0221200157,0.0051317839,-0.0159288161,0.0428875871,0.0244492311,-0.0101734046,0.0271390956,-0.010473948,-0.0198208578,0.029257929,0.0011054373,-0.0006611961,-0.0201063734,0.0072694006,-0.0125552127,-0.002958477,0.0202265903,0.0120743429,0.0139076598,0.0316472501,0.0095798308,-0.0079042995,-0.0031012353,0.0302046426,0.0084828464,0.0032947103,-0.0078366771,0.0170558542,-0.0444804691,0.0135094393,-0.0056051402,0.047005035,-0.0012726147,-0.0094671268,0.0063715265,0.0025640135,0.0326089934,0.0282961894,-0.0016435984,0.0044179922,0.0425569899,-0.0133065721,0.0151774567,0.0046321298,0.0433083475,-0.0061123078,0.0164697953,-0.020256646,-0.0156883821,0.0198509116,0.0117287179,-0.0132464636,-0.0043165591,-0.0254109707,0.0246295556,0.0251705348,0.0175818074,-0.0114432015,0.0303699411,0.0134944124,0.0092041511,-0.0094821537,-0.0165148769,-0.0340516008,0.020707462,0.0597480871,-0.0115709323,-0.0075924853,-0.0224656425,-0.003467523,0.0092868004,-0.0035126046,-0.0054248138,-0.0165449306,-0.0757971182,-0.0027368262,0.0144110704,-0.0182730574,-0.0021169547,0.002811962,0.0337811112,0.0135996025,0.0102710808,0.0294983648,0.0055788425,0.0125251589,0.0015844288,0.0044179922],"87":[-0.010468361,0.0048850132,0.0507855155,0.0062750308,0.0330411792,-0.0114194257,0.0051709977,0.0256720912,-0.0184493214,-0.0034417897,0.0034850198,-0.024395138,0.0046023545,-0.0270554591,0.0449328125,0.0166403037,0.0148711912,-0.0116721559,-0.0237300582,0.0890675262,-0.0054802601,0.040383663,0.0423523001,0.0058926097,0.0021764745,-0.0442677327,-0.0343713388,0.0732652247,0.031524796,-0.0583142228,-0.0037410755,-0.03453096,-0.0209500231,0.0588462874,0.047194086,-0.0345841646,0.0397185832,-0.024275424,0.042565126,0.0139799835,-0.0328815617,0.0064812056,0.0177310351,0.0282792058,-0.0216683093,-0.0406230912,-0.0466620214,-0.0218146276,0.012377141,0.0481517985,-0.0084864218,-0.0429641753,-0.0082735969,-0.0509983413,0.0207904037,-0.0281461906,-0.0089453273,0.0129624112,-0.0066142217,0.0024341932,0.0106612341,0.0158555098,0.0430971906,0.0032123369,-0.0422192849,0.0028847849,0.0060356017,0.0015313469,-0.0317110196,0.0019004664,0.044187922,-0.0089453273,-0.0142460158,-0.0289708897,0.000937763,-0.072520338,-0.0527807586,0.0354088657,0.0151106203,-0.052700948,0.0389736928,0.0026503443,-0.0189148784,0.0400112197,-0.0094241854,-0.0335466415,-0.0097101694,-0.0367390253,-0.0435760468,0.037058264,-0.0188217666,0.0308597162,0.0273746978,0.0390535034,0.0039139963,0.02358374,0.0008122291,-0.0179970674,-0.0054237284,0.0532330126,0.0061054355,-0.0288644768,-0.0180502739,-0.0279333647,0.0164008755,0.0051842993,0.0162146538,-0.0191277042,0.0558667295,0.0025206537,-0.0932176262,0.0090783434,-0.0117187118,-0.0256853942,0.0071762144,-0.018063575,-0.0045591239,-0.050519485,0.0136208404,-0.0556006953,-0.05179644,0.0034318133,-0.0316046067,0.0096769156,0.0124103948,0.0112731075,-0.0092512639,-0.0306734946,0.0052075773,-0.0275875218,0.0187286548,-0.0243286304,0.0378297567,0.0207504984,-0.0484976396,-0.0521422811,-0.0532596149,-0.0188616719,-0.0094175339,-0.0525413267,0.017837448,0.0000324486,0.0013883547,-0.0084398668,0.0089586293,-0.0385746472,-0.0096636135,0.0197129734,-0.0292635243,-0.0115723936,-0.0103685986,-0.0272416808,-0.0729991943,-0.0016843154,0.0194203388,0.013807063,0.0057662446,0.0162678584,-0.0136873489,-0.0409423299,0.0308331139,0.0151239214,0.0048451084,-0.0064878566,-0.0371646769,0.0297955889,-0.0489232913,-0.0510515496,-0.0684234425,0.0050014025,-0.0473004952,-0.0689022988,-0.0127296336,0.0294231437,-0.0004113105,0.0179039557,-0.0215618964,-0.0150840171,-0.0391067117,-0.0494287536,-0.0517166294,-0.0095771533,-0.0270953625,-0.0430705883,0.0040303855,0.0181034803,-0.0478325598,-0.0078146914,0.007016595,0.0069633885,-0.0660823584,0.038787473,0.0543503463,0.0157357957,0.0569840632,-0.0374307074,0.0102089792,0.0207238961,-0.0158555098,0.0370316617,0.0098232329,0.059378352,0.0125367604,-0.0354088657,-0.0036712422,-0.0216949135,0.0056531811,0.0150973182,-0.0436558574,-0.0116522033,-0.0057230145,0.0140198888,0.0077016274,0.0016768333,-0.0146716675,-0.0215751994,-0.0005175155,-0.0108142029,0.001897141,0.0103552975,-0.0418734439,0.0464491956,0.011160044,-0.0285452381,0.0093909306,0.0382288061,0.0043662507,-0.0248207897,0.0116322506,-0.0139666824,0.0234773271,-0.0345841646,-0.0032173251,-0.0259248223,0.0297955889,0.0155628743,-0.0156692881,-0.0464491956,0.024169011,0.0148179848,0.0247808844,-0.012603268,-0.0070964047,0.0181699879,0.0076018656,0.0237832647,-0.0419266485,-0.0836936831,-0.0072693257,0.0549622215,0.0303276535,-0.0058028237,0.0003508298,-0.0529935844,0.0191543065,-0.0470610671,0.0122840293,-0.0151239214,0.0128693003,-0.031631209,0.0270288549,-0.0335200354,-0.0540843159,-0.0094973436,-0.0080940248,0.0083600571,-0.0061453404,-0.0498544052,-0.0043695765,-0.008513025,0.0556539036,0.0012586641,0.0504130721,-0.0604956858,-0.0409423299,-0.0349300057,0.0192341171,0.0009718483,0.0083933109,-0.0225196127,-0.0268825386,-0.0199391022,-0.0040470124,-0.0126165692,0.0068370234,-0.0125633627,0.0275077131,0.0163077638,0.047619734,-0.0324293077,0.0004709598,0.0187020525,0.0436558574,-0.0231979936,0.0063481894,0.0046655368,-0.0018738632,-0.0112398537,-0.0511047542,-0.029689176,0.0363665819,-0.0346373729,0.0053771725,-0.0367390253,-0.0173718929,-0.0089054229,-0.0317110196,-0.0311257485,0.0132217929,-0.0269756485,0.0092778672,0.0326421298,0.0090716928,-0.0150042074,0.0097700264,0.0020550976,0.0469280519,-0.005496887,-0.0080275172,-0.0556006953,-0.0457043052,-0.0437090658,0.0062151738,-0.0206307843,-0.0070897541,-0.0456777029,-0.0057629193,0.0016884721,0.0123904422,0.0042066318,-0.0147913815,-0.0499342158,0.0012994002,0.0297689848,0.0032173251,-0.0176645275,0.0173053835,-0.0237300582,0.0021798001,0.0154830646,-0.0489498973,-0.0499874204,-0.0282526035,0.04716748,0.0417936333,0.0064712293,-0.01519043,-0.0046588862,-0.0627303571,0.0150042074,-0.0487104654,-0.0156692881,-0.0201120228,0.0053405934,-0.0283324122,-0.0014257655,0.0017707758,0.0009011835,-0.0106878374,0.0114526795,-0.0517432317,0.0082669454,0.0228787549,-0.0218412299,0.0267096162,0.0252464414,-0.0218279287,-0.0089985337,-0.0038641153,-0.0387076624,-0.0035282499,-0.0305404775,-0.0195001494,-0.069008708,-0.038787473,-0.0062251496,0.0637412742,0.0295029543,-0.0045192195,0.036712423,0.0144189363,0.0025040265,-0.0102023287,-0.0106545836,0.0333604179,0.0312853679,-0.0105215674,0.0267628226,-0.039239727,0.0136341425,0.045438271,-0.0047386959,0.0228122473,-0.0084132636,0.0139932856,-0.0039306236,-0.0044394098,0.0330145769,0.0608681329,-0.0176246222,0.0090450896,-0.0222003739,-0.052700948,0.0093643274,0.0328549556,0.0196065623,-0.016227955,0.0076683736,-0.0120512517,-0.0166669078,-0.0505726896,-0.0495085642,0.0491095148,-0.0118650291,-0.0120845055,-0.0687426776,-0.040862523,0.0094840424,0.0077548339,0.033706259,-0.0015679264,-0.0019337204,0.0508121215,-0.034504354,-0.0255124737,0.0443209372,0.0364197865,0.0007270157,-0.0335998461,-0.0609745458,-0.0527541526,0.0042465366,0.0424587131,-0.0469280519,-0.0236768518,-0.016799923,0.0651778504,-0.0219476428,0.0744889751,0.0321366712,0.0092113595,0.0218811352,0.002640368,-0.0020600855,0.0235571377,-0.0183695126,-0.0288644768,-0.0184094179,-0.050173644,-0.0287048575,0.0381489955,-0.0258317105,-0.0050778864,0.0336264484,-0.0264036804,-0.0187419578,0.033254005,-0.0119780926,0.0074089924,0.0121044582,-0.0256454889,0.0293699373,-0.0120579023,-0.0270687602,0.0119182356,-0.0308597162,-0.0087724067,0.0171058606,-0.0287846662,-0.0036014088,0.0332274027,0.0563455857,-0.0270421579,0.0030444041,-0.0492691323,0.0114260763,0.0156160807,-0.0263105687,-0.0095771533,-0.0150973182,-0.0052607837,-0.0022695858,-0.0490031019,0.0865668282,0.0282526035,0.0469014496,0.0018688751,-0.0301680341,-0.029689176,-0.0237167571,-0.0049082912,0.0160816368,0.059378352,-0.014618461,0.0179970674,0.0063781184,-0.0921002924,-0.0142992223,-0.0231048837,-0.0021265936,0.0184360202,0.0096503124,-0.0266298074,0.0339722931,-0.0036014088,0.0002512756,-0.0355152786,-0.0020567602,0.002008542,-0.0124103948,-0.014379032,-0.0011331303,0.0206174832,0.0001876773,-0.0067572137,0.0178773534,-0.0318174325,-0.003993806,-0.0045092432,-0.0186488461,-0.0204578638,0.0122906808,-0.0231846925,-0.0006280851,-0.0061054355,-0.035435468,-0.0367922299,-0.0432036035,-0.0133149037,-0.008918724,-0.0057562683,-0.0309395269,0.0093576768,-0.0106678847,-0.0405166782,0.0228920579,-0.0202317368,-0.0195932593,-0.0227058344,0.0027933365,-0.0076351194,0.0329347663,-0.0018256449,0.0430971906,-0.0166004002,0.0009893066,-0.0368188359,-0.0270421579,-0.0128027918,0.0299552083,0.0453850664,-0.0439484939,0.0242488198,-0.002485737,0.0050246804,0.0290773027,-0.0046090051,0.0032954719,0.0107343933,0.0291305091,-0.0024474948,0.0017308709,0.016001828,-0.0026320545,0.0005586673,0.0340254977,0.0042565125,-0.0112531558,-0.0591123179,0.0066707535,0.0055002123,0.0063947453,-0.0124702519,-0.0029429796,0.0114526795,0.0267894268,-0.0363133736,-0.0195134506,0.0064645787,0.0092778672,-0.0036413136,-0.0325623229,-0.0350098163,0.0177576393,-0.0170925595,-0.0178241469,0.0252065361,0.0226127245,0.0430705883,-0.0420596674,-0.0054802601,0.0000794979,0.0008820625,0.0048251562,0.0312853679,-0.0087724067,-0.0007336665,0.0231713913,-0.0400112197,0.0270288549,0.02150869,0.0173851941,0.0209234208,-0.0049382197,0.0154298581,-0.0023327684,-0.0071429601,-0.022093961,0.0079277549,-0.0253927577,0.0169329401,0.0126830777,0.0238763765,-0.0626771525,-0.0056797839,0.0055068634,0.018289702,0.0237566605,0.0394259468,-0.0323494971,-0.0278003477,0.0017258829,-0.0167201143,-0.0232112948,0.0176246222,0.0023360939,-0.0026154276,-0.0550686345,-0.0135277295,0.0250070114,0.0102887889,-0.0339190848,0.0134944757,0.0091049466,-0.0095372489,0.0237433594,0.0316046067,0.0390535034,-0.0177842416,-0.0019769506,0.0460767485,-0.0024923878,-0.03038086,-0.0250336155,0.024847392,-0.0357281044,0.015536271,0.0346639752,0.0271219667,0.0074422462,-0.0314183831,0.0007407329,0.0331475921,0.0238763765,0.0040170839,-0.0005520165,-0.0116588539,0.0139799835,0.045464877,0.0063880943,-0.0210165307,-0.0315780044,-0.0195400529,-0.0166004002,-0.005114466,0.0012412057,0.0196996722,0.0510781519,0.0114992354,0.0495351665,0.0167866219,0.0317908302,0.0032322893,0.0158422086,-0.0071762144,0.019207513,-0.0053871488,-0.0262307599,0.0440016985,0.0487902761,-0.0307799075,0.0070099444,-0.0271086656,0.0280663799,-0.0113728698,0.0108341547,-0.0062218243,0.0201918315,0.0473803058,0.0066441502,-0.012377141,0.0140730953,-0.0075021037,-0.0234241206,-0.0028714833,0.0000576749,-0.0128227444,0.0010516579,-0.0427247472,-0.0260711405,0.0085595809,-0.0121776164,-0.0555474907,-0.0071097063,-0.008060771,0.0178906545,0.0230250731,0.0071828649,0.0600168295,0.0058527049,-0.0392131247,-0.0030294398,-0.0562923811,0.0208037049,-0.0347969905,-0.0082004378,-0.005746292,0.000052427,-0.0215485953,0.0208968166,-0.0600168295,0.0064146975,-0.0409423299,-0.0357014984,0.0117519656,-0.0032406028,0.0165072884,0.0090783434,0.0027933365,-0.0154963667,0.0270820614,0.0074555478,0.011339616,0.0222003739,0.0580481924,-0.0133282049,-0.0360739455,-0.0077747866,-0.0211495478,-0.0171457659,-0.0217614211,0.0094241854,-0.0141928094,0.026802728,0.004226584,-0.0469812602,-0.0057396414,0.0463959873,0.0241956133,-0.0130887767,0.029103905,0.0115524419,-0.0170526542,-0.0171590671,0.0066341739,-0.0314715914,-0.0396387726,0.0131486338,0.0192873236,0.0206307843,0.0017524861,0.060655307,-0.0051410692,0.0244350433,-0.0087058982,0.044640176,0.0003797192,0.0130355703,-0.0186621472,-0.0559199341,-0.0067971186,-0.0290506985,0.013807063,-0.0005553419,0.0320834629,-0.0183828138,-0.0091248993,-0.0027035507,0.0116189495,-0.0049149422,0.0594847649,0.0074422462,-0.0434430316,-0.0216816105,0.0118051721,-0.0018572361,-0.0007465524,-0.0065709916,-0.0177044328,-0.0224664062,-0.026802728,0.0114061236,-0.0386012495,0.0105681233,0.0128559982,-0.0140730953,0.0017042678,-0.0426183343,-0.0027933365,0.0158422086,-0.0117652668,0.014844588,0.0115856957,0.0098631382,0.0303276535,0.0405964889,-0.0134745231,0.0168132242,-0.0272948872,-0.0054802601,-0.012603268,0.006211848,0.0151239214,-0.0171723682,0.0320568606,-0.0046023545,0.0316578113,-0.0012046263,0.0004555799,-0.0069367853,0.0604424812,-0.0070032934,-0.0364995971,-0.0112731075,0.012995665,0.0202184357,0.016680209,0.0213756748,0.0039073457,-0.0203913562,0.0089386767,-0.0119913947,0.0415808074,0.0049648229,0.0389470905,-0.0199524034,0.0038142344,-0.0167201143,-0.0095771533,0.0370050557,-0.0146317622,0.0403038561,0.0215352941,0.0231846925,-0.0037543771,-0.0121576646,-0.0029546183,0.0348235928,-0.0058826334,-0.0056099505,-0.0123305852,-0.0281461906,0.0130222682,-0.0222535804,-0.0290240962,0.0176778287,-0.0053605456,-0.0208436102,0.0089985337,0.0145120481,-0.0346905775,-0.0448530018,0.0200854186,-0.0037543771,0.0341319107,-0.0068436745,0.000423365,0.0016876408,0.0528339632,0.0403038561,0.0154697634,0.0295295566,-0.0030061621,0.0278535541,0.0002876472,0.0143125234,-0.0427247472,-0.0197262764,0.011100187,-0.0606020987,0.0112531558,-0.0145918578,0.0051277676,-0.0068769283,0.0308065098,0.0196464658,0.0132749993,0.0355418809,0.0171324629,-0.0156293828,-0.0088189626,-0.0124436487,0.0175448135,0.0148312859,-0.0181433856,-0.0021398952,-0.0042066318,-0.0043695765,0.0030144756,0.0541641228,0.0320568606,0.0210032295,0.0054569822,0.0567180328,-0.0015870474,-0.029236922,0.0113595678,-0.0194203388,0.0049781245,-0.0090916455,0.0018705378,-0.0075353575,-0.0300616212,-0.0007137141,-0.0191410054,0.0297157783,-0.0245813616,0.0739569068,-0.0175581146,-0.0339988954,0.0397983938,0.0317642242,0.0101291696,0.0101890275,-0.0326953381,0.0076151672,-0.0011497572,0.0259381235,0.0352226421,0.0149643021,0.0566116199,0.0157357957,-0.0409157276,0.0268692356,-0.0077415323,-0.0072427224,0.0033071109,0.0097367726,0.0176645275,-0.0386278518,-0.0237433594,0.015762398,0.024049297,-0.0341585129,0.0111932978,-0.0222269762,0.013807063,0.0161215421,-0.0136873489,-0.027959967,0.0265899021,-0.0042864415,0.0792775452,-0.0629431829,0.0092246607,-0.0071629127,-0.0096835662,0.0125101572,0.023131486,0.0044294335,0.0091714542,-0.0029496304,-0.0158156045,-0.0224664062,-0.0058161253,0.0293167308,-0.0117253624,-0.0030044995,0.014272619,0.0168797337,-0.0200322121,0.0329879746,0.0198858958,0.0226127245,-0.0030211264,-0.0121044582,0.0025688719,-0.036579404,0.0140996985,-0.0022014151,0.0797564089,0.0327485427,-0.0133016016,-0.0277471412,-0.0028299158,-0.0123704895,-0.0007706616,-0.0033254004,0.0223732945,0.0086194379,0.0255257748,0.0083401045,-0.0011713724,-0.0152436364,0.0549090132,-0.0231713913,-0.001702605,-0.0338924825,0.0203248486,0.0071762144,-0.0207504984,0.0155894775,0.0301148277,-0.0080541205,0.0062750308,-0.0295029543,-0.0020999904,0.0073557859,0.0345575623,-0.0139533803,0.0063581658,0.0186488461,-0.0008155545,0.019566657,0.0369784534,-0.0259780288,-0.0181433856,-0.0176512264,-0.0115125366,-0.0292103179,0.0050812121,-0.0208436102,0.0468748473,-0.0050812121,-0.028651651,-0.0268160291,0.0288112704,0.009956249,0.0047519975,0.0184493214,-0.0171989724,0.0266564097,0.0064712293,0.04557129,0.0170925595,-0.0176778287,0.0155229699,-0.0066740788,0.0325623229,-0.0024425066,-0.0061021098,-0.0110070761,0.0082669454,0.0515038036,0.0024641217,0.0302478429,-0.0193538312,-0.0169063359,-0.0059823957,0.0153101441,0.0198991969,0.0219742469,-0.001958661,0.0155096678,-0.0046588862,0.0026835983,0.0168797337,0.0082669454,0.0317642242,0.014498746,-0.0304074623,0.0070831031,-0.0025289671,-0.0200721174,-0.0072693257,0.0212692618,0.0432568118,-0.0167334154,0.0483114198,-0.022665929,-0.0126431724,-0.0108807106,0.0274545066,-0.0291837156,-0.0185025278,-0.011971442,-0.0235305335,-0.0263371728,-0.0015579502,-0.0001515136,0.0064080469,0.0223732945,-0.0122707281,0.0191277042,-0.0197262764,-0.0010782611,0.010122519,0.007821342,0.032003656,-0.0131020779,0.0163077638,-0.0013218467,-0.0010017769,0.0065177851,0.022093961,0.0007544502,0.0065676658,0.0469812602,-0.0032056861,0.0003842916,0.0200455151,-0.0023194668,-0.0158555098,-0.0120246485,-0.0275077131,-0.0219476428,0.0118849818,-0.0231580883,0.0248074885,0.00639142,0.0283590164,0.0046489099,-0.004226584,0.0197395775,0.0398515984,0.0061021098,0.022772342,0.0144721428,0.0199391022,0.0034002219,0.059378352,-0.0380425826,0.0033968966,0.001958661,0.0030809836,-0.0413679816,0.0027916736,0.0249272026,-0.023809867,-0.019327227,-0.0107609965,-0.0143923331,0.0147780795,0.0132217929,-0.0216018017,0.0066873804,-0.0054736091,0.015536271,0.0014540313,-0.0338392742,0.0215352941,0.0223865956,-0.0069101821,0.0102289319,0.0101557728,-0.0099296458,0.0184626244,0.0595911779,0.0121177593,-0.0314715914,0.0089519778,0.022665929,0.0163609702,-0.005204252,-0.0019869269,0.0089918831,0.0712965876,0.0074355956,-0.0087391529,0.0075087543,-0.0058693318,0.0110336794,-0.0206174832,0.0176778287,-0.00543703,-0.0069367853,-0.0183163062,0.0080873743,0.0419266485,-0.0291837156,-0.0124037443,-0.0035515279,-0.0302744471,0.0325357169,-0.0189148784,0.0164407808,-0.0032356146,0.0127429347,0.0107609965,0.0329347663,0.0319504477,-0.0106678847,0.0086859465,-0.0073690875,-0.0047187433,0.0124436487,0.0055633951,-0.0026104394,0.0002645772,-0.0157490969,-0.0351162292,-0.0139799835,0.0106080277,-0.0047786008,-0.0212160554,0.0027767094,-0.0339456871,-0.0288112704,-0.0009693542,0.0060987845,-0.0182630997,0.0075619607,-0.0063714674,0.0349566117,-0.0034650674,0.0258051082,0.0083999615,-0.0341053084,-0.0113662193,-0.0206174832,0.0079809614,-0.0203381497,-0.0055700457,0.007821342,-0.0067272852,-0.0092778672,-0.0319504477,0.0254060607,0.0126232207,0.0163077638,0.0226127245,0.0160151292,0.0360207371,0.0418468416,0.0265366957,0.014379032,-0.012829395,-0.0239960905,0.0129757132,-0.0275875218,0.0173319876,-0.0285186358,-0.0525147244,0.0040503377,0.0320302583,0.0045724255,0.0034151864,0.0073424843,0.0110137267,-0.010075964,0.0085861841,-0.015762398,0.0042199334,-0.0368720405,-0.0108408052,0.0039505758,-0.0132417446,0.0139932856,0.0070099444,0.0006700682,0.0357014984,-0.0305936839,-0.0241424069,-0.0129025541,-0.0080674216,-0.0114526795,-0.0160284303,-0.0242488198,0.0169595424,0.0209101178,-0.0111267902,0.0002589656,0.0212692618,0.01070779,-0.0166004002,-0.0192208141,-0.0198725928,0.0146051589,0.0060854829,-0.0271751732,0.0039904807,0.0107942503,-0.0016577122,0.0129424585,-0.0621450841,0.0683702379,-0.0196331646,0.0003549865,0.0244217422,0.0443741456,0.0165072884,0.0153101441,0.0083999615,0.0100227576,-0.0184626244,0.0257652029,-0.0044028303,-0.0598040037,0.0088854702,0.004309719,-0.0195001494,0.0145253493,-0.015762398,0.0285186358,0.0104284557,0.0100427093,-0.0239694864,-0.0288644768,0.0134678725,0.0437888727,0.0186887514,0.0023360939,-0.0099961543,0.0188084655,-0.0106545836,-0.0087125497,-0.0026802728,0.0052840617,0.0176911317,-0.0091714542,-0.0229452644,0.0157224946,0.0152303344,0.0137405554,-0.0124569507,0.0012628208,0.0275875218,0.0171856694,-0.0026885862,0.0225196127,-0.0023793241,0.0239162799,-0.0129690617,-0.035435468,0.0441613197,0.0137139522,-0.0118916323,0.0045258701,-0.0018771886,0.0047619734,0.0192474183,-0.0190478936,-0.0079876119,-0.0095438994,-0.0101158684,-0.0298753977,0.0046156561,-0.0027916736,0.0154431602,0.0129158553,0.0469546542,0.0190345924,-0.0060555544,0.0035016467,-0.0141129997,-0.0175315123,0.0138735706,-0.0257918071,0.0016992796,-0.0070431982,0.004203306,-0.0148578892,0.0099362964,-0.0030826463,0.0144189363,-0.0111799967,0.0041367984,0.0108940117,-0.0232245978,-0.0327485427,0.0154431602,-0.0046356083,-0.0043529491,0.0000941504,0.0516900271,0.0207638014,-0.0401974432,0.020364752,-0.0153766517,0.0151638268,-0.0447199866,-0.0001263652,0.0092911692,0.0157224946,-0.0161082409,-0.0101025663,-0.0243286304,0.0115258386,-0.0159087162,-0.0062517528,-0.0055434424,-0.0086992476,0.0148711912,-0.022785645,-0.028997492,0.0169994477,-0.0240226928,0.0021049785,0.0030128129,0.0152170332,-0.0111267902,0.0331209898,0.0192607194,0.0124103948,-0.0007132984,0.0169728436,0.0033370394,-0.0222535804,-0.0031375154,0.003383595,-0.0159353185,-0.0404900759,-0.0073491354,0.002951293,0.0351162292,-0.0170659553,-0.0021482087,0.0016028431,-0.0218545329,0.0297423825,-0.0359143242,0.0004821831,0.0130355703,0.0183429085,-0.0441081114,-0.025539076,0.0550686345,0.03453096,0.0064878566,0.0134346178,-0.0102222813,-0.0355152786,0.0267229192,0.0076683736,0.035781309,0.0396121703,-0.021282563,-0.0198592916,-0.0147381751,-0.0127030304,-0.0149510009,0.0133415069,-0.0058992608,-0.0270953625,0.00431637,0.0233709142,0.0112731075,0.0180901792,0.0210298337,0.0299552083,-0.0160683356,0.0181034803,0.0067605395,-0.0131552843,0.0372710899,0.0145386513,-0.0159619227,0.0128959036,-0.0038408376,-0.0318440348,0.0005324798,0.0380159803,0.0484710373,0.0270820614,0.0037211231,-0.0054104268,-0.0054337042,0.0214421824,0.0260844417,-0.0180502739,-0.0346905775,0.0164806843,-0.00639142,0.03245591,0.0336796567,-0.0078013898,-0.0102355825,0.0062284754,0.0045591239,0.0161348432,0.0055035381,-0.0108607579,-0.0146849686,0.0141928094,-0.0180369727,0.0086859465,-0.0168398283,0.0253262501,0.0021748119,0.0162412561,-0.0164806843,0.0267495215,-0.0250469167,0.0013043884,-0.0027218403,0.0010499952,-0.0224131998,-0.0462629721,0.0041467743,0.0058892844,-0.0227058344,-0.0203381497,0.055121839,-0.0150973182,0.0146317622,0.0068769283,0.0321632735,-0.0038474884,0.0334402286,0.0030327654,-0.0000604807,-0.0157756992,0.0213224683,-0.0009153165,0.0078080404,-0.0176778287,0.0299552083,0.038308613,-0.0352226421,0.0199391022,0.0104417577,-0.0248340908,0.0381489955,0.021056436,-0.0290240962,0.018289702,-0.0205908809,0.0205376744,0.0001245986,0.0125766648,-0.0028382293,0.0131951896,-0.0408093147,-0.0087391529,-0.0015787339,-0.0344511494,-0.0349300057,0.0353556573,0.0208702143,0.0048683863,0.013580936,0.0004115183,0.0177709404,-0.0114925839,0.0128360456,-0.0036413136],"88":[0.0032796164,-0.0008828437,0.0504733138,0.0013770672,0.0732092857,-0.0077183349,-0.0266694836,0.0490404889,-0.0549339987,0.0032897543,0.0139632924,-0.0310355462,-0.0279806536,-0.0153826009,0.051554691,0.045147527,-0.0269938968,-0.0356043689,-0.0541770346,0.033090163,-0.0159908757,-0.0137267411,0.0272101723,0.0458774567,0.0064950259,-0.036550574,-0.046147801,0.0434443578,-0.000944516,-0.0900247097,0.0121046742,-0.0244391412,-0.0465533175,0.047229182,0.0286565144,-0.0167883914,0.0171803907,-0.011523433,-0.0053460621,-0.0226278324,-0.0409842245,0.0139092235,0.0213842485,0.0769400373,-0.0160990134,0.0117329508,-0.0412275344,-0.0136118447,0.013314466,0.0435524955,-0.0566642024,0.019153906,-0.0267641041,-0.0566101335,0.0256286561,-0.0111922612,0.0251285192,0.0157475658,-0.0086037135,-0.0123344669,0.0220330749,-0.0623414367,0.0392269827,0.0307652019,-0.0121790189,0.026628932,-0.0533930361,0.0455530435,0.0023891693,0.0282780323,0.0594217181,0.0169911496,-0.0039740638,0.0021171351,0.0173155647,-0.0419574641,-0.0165045299,0.0298189968,0.0009816884,-0.0333875418,0.0299541689,-0.0259801038,0.0109759858,0.0309274085,0.0132333618,-0.0410923623,-0.0488782823,-0.0433362201,0.0038422709,-0.0212625936,-0.0220195577,0.0416330509,-0.0169776324,0.0268587247,0.0455800779,0.0408490524,-0.0033759268,-0.007475025,0.0340363681,0.0069208187,0.0097391596,-0.0067281984,0.0115504675,-0.0226143152,0.0405246355,0.01007709,-0.0204380434,0.0096242633,-0.021289628,-0.0285213422,-0.083590515,-0.0006737491,-0.0304948576,-0.0046195113,-0.0168424603,-0.0037746849,-0.0112260543,-0.0169100463,0.0024212727,-0.0259801038,-0.0503922105,0.0050824764,0.0042511667,0.0180319771,0.0181941837,-0.029386444,-0.0014531015,-0.0278454814,-0.0203028694,0.0063902675,0.0313058905,-0.0213707313,0.020478595,-0.0343878157,-0.0206137672,-0.0010864469,-0.0204245262,-0.00900923,-0.0204515606,-0.0123547427,-0.0279536191,0.0017707563,0.0130981896,0.0090295058,-0.0286024455,-0.0105637107,0.0047783386,0.0803463757,-0.0244661756,-0.0321709923,0.023168521,-0.0427144282,-0.0406598113,-0.0025108242,0.0774807259,0.0154366698,0.0336308517,0.060665302,0.00379834,-0.0411193967,0.0084009543,0.0344418883,0.0047344076,0.004538408,-0.0676942542,-0.009887849,-0.0366857462,-0.0452286303,-0.0809411332,-0.0049844761,-0.0592595078,-0.049986694,-0.0046566837,0.0511221401,0.0396865681,-0.0044640633,0.0059915096,-0.0466344208,0.008164403,-0.0257638283,-0.0874294043,0.0094350222,-0.0466884896,0.0000631508,-0.04898642,-0.0072655077,-0.0252907258,0.0115166744,0.0229657628,0.0181671493,-0.025371829,0.0511221401,0.013314466,0.0015798255,-0.0087118512,-0.0584484749,0.0540688969,0.0056535788,-0.0589350946,0.0232225899,0.0279265847,0.0164099094,0.0286024455,-0.0552043431,0.0122533636,0.0067484742,-0.00189917,-0.0131454999,-0.081589967,-0.0372264348,0.018775424,-0.0054710964,-0.0003339177,-0.0069546117,-0.0347933359,-0.0161936339,-0.0467695929,-0.006640336,0.0023824107,0.0188024584,-0.008853782,0.046526283,0.0151122566,-0.0130779138,-0.0059441994,0.0190052167,0.031900648,-0.0108746067,0.0393351205,0.0114017781,0.0197621807,-0.0402813256,0.0028115825,-0.0449312516,0.0316573381,-0.0205461811,0.0204515606,-0.0457422845,0.0046769595,0.0038557881,-0.0074209557,0.0188430101,0.0320358202,0.0273858961,0.0098946076,0.0172344614,-0.0601246133,-0.0449312516,0.0227089357,0.0490134545,0.0243580379,-0.0037949607,0.0005098528,-0.0028656514,-0.0076237144,-0.0640716404,0.0136388792,0.0240471419,0.0206948705,-0.0227089357,0.052744206,-0.0533930361,-0.0310625806,0.0023976176,-0.0492837988,0.0228305906,0.0336308517,-0.0119289504,0.018964665,0.0009554988,0.0412005,0.0460666977,0.0065997844,-0.0374156758,-0.0109692272,-0.0137740513,0.0208570771,0.0028318583,-0.0005077407,-0.0239525214,0.0210463181,-0.0051365453,0.0285754111,-0.0299541689,0.0077588866,0.0192350093,0.0098608145,0.016828943,-0.0134090865,-0.0372534692,-0.0405246355,0.0116923982,0.0358747132,-0.0257367939,0.010834055,0.0149230156,-0.0196134914,0.0211950075,-0.041011259,-0.0098675732,0.0158827379,-0.0657477751,0.0148959812,-0.0174101852,0.006606543,0.0113815023,-0.0016710669,0.0091106091,0.0141254989,-0.00126555,0.0166667365,0.0268587247,0.0441742875,-0.0104352972,-0.0252231397,-0.0025632037,0.0634768829,0.0005812406,0.0108610895,-0.0605030954,-0.0660721883,-0.0952693969,0.0119965365,0.0248852093,0.0284943078,-0.0013736879,0.0444175974,0.0244391412,0.0321980268,0.0100162625,0.0084482646,-0.0350096114,0.0026730311,0.0028757893,-0.0391458794,-0.030332651,-0.001192895,-0.030332651,-0.0350907147,0.0350096114,-0.0254123807,-0.0292783063,-0.0633687451,0.0094147464,0.0262909997,0.0230468661,-0.0184239764,-0.0205461811,0.012212812,-0.0054879929,-0.0482294559,-0.006106406,0.021600524,0.0063530952,0.0176264606,-0.0098202629,-0.0089619197,-0.0017842735,0.0057819923,-0.0123885358,-0.0356043689,0.0172885302,-0.0087659201,0.0065490948,-0.0020089974,0.0183699075,-0.0459855944,-0.0014885843,-0.02838617,-0.0157205313,0.0090159886,-0.0333605073,-0.0008659472,0.0031022029,-0.0678023919,-0.0385781564,0.04357953,0.0230468661,0.0006226371,0.0908357427,0.0351447836,0.035171818,0.0215329379,-0.0147743253,-0.0212761108,0.0371723659,0.0128143281,0.0163828749,-0.0349014737,0.018086046,0.0397676714,-0.0306840986,0.0109489514,-0.0049844761,0.0137334997,0.0298189968,0.0193972159,0.0343067124,0.0768859684,-0.015639428,0.0144499121,-0.0157746002,-0.0238173492,0.0059475787,0.0211409386,-0.0229387283,0.0036395125,0.0133820521,-0.0253312774,-0.0064443364,-0.0177075639,-0.0201136284,0.0412545688,-0.0156799797,0.0418493263,-0.0083536441,-0.0487431102,0.0512843467,0.0288457554,0.0639635026,-0.0270479657,-0.0330090597,-0.0198162496,-0.0236551426,-0.0183834247,0.0423089117,0.0528523438,-0.0290890653,-0.0012097915,-0.0412275344,-0.0350096114,-0.0171263218,0.041389741,-0.0357125066,-0.036172092,0.0035279954,0.0240741763,0.0087186098,0.0295216162,-0.0193431471,0.0045451666,-0.0184510108,-0.0305489264,0.0377130546,0.0145986015,-0.0258178972,-0.0530686192,-0.0191133544,-0.0175048057,0.0024837898,0.0433632545,-0.0005588527,-0.0230198316,0.0262774825,-0.0218032822,-0.0525819995,0.0195188709,-0.0439850464,0.0337660238,-0.0281698946,-0.0761830732,0.0071303356,-0.0391729139,-0.0208300427,-0.0006023613,-0.0455800779,0.0264396891,-0.0183293559,0.0314951316,-0.0351988524,0.0094890911,0.0383618809,-0.0105434349,-0.0044099945,-0.0579077862,-0.0095701944,0.0467695929,-0.005778613,0.0237362459,0.0309003741,0.0310896151,0.0096850907,-0.0381726399,0.0643419847,-0.0043457877,-0.0060692336,0.0001361227,0.0129697761,0.0006036285,0.0293053407,-0.0184104592,0.0165450815,0.0609356463,-0.0154637042,-0.0239525214,-0.0060962681,-0.0129224658,-0.0285754111,-0.0123817772,0.0035651678,0.0520683452,-0.0263450686,-0.0182347354,0.108462207,-0.0432551168,0.01908632,-0.0185050797,0.002230342,-0.0068295775,-0.0101987459,0.0040585464,0.0085496437,0.0252231397,0.0073263352,-0.0012537225,0.0163152888,0.0080968169,0.0093471603,-0.0276832748,0.0017775149,-0.0174507368,-0.0274940338,-0.0274264477,0.0247905888,0.0147608081,-0.0029028237,-0.0450393893,-0.0430929102,-0.0141795678,-0.0000586098,0.0360369198,-0.0099689523,-0.0030379961,0.0142471539,-0.0534200706,-0.0239390042,-0.0237767976,-0.0362802297,-0.0373886414,0.01908632,0.0260206554,0.034090437,0.0257097594,0.0567182712,0.0133955693,0.00438296,-0.0102528147,-0.0296838228,-0.0210868698,0.0311707184,0.0374156758,-0.0313869938,0.0151933599,-0.0031376856,0.0094282636,0.0349285081,0.0074817836,-0.0055657169,0.0254799668,0.0079346104,0.0014193085,-0.0077994382,-0.0143012227,-0.0072384733,-0.0232766587,0.0201271456,0.0102866078,-0.0431740135,-0.0321709923,0.0209922493,0.0082455063,0.0053426828,0.0115707433,0.00438296,0.0236821771,0.0051399246,-0.0203569401,0.0158421863,0.0356584378,0.0225332119,-0.0257097594,-0.0102798492,-0.0332253352,0.0209922493,-0.0323872678,0.0070492323,0.0007337318,0.026561344,0.0158827379,-0.0296297539,-0.0112057785,-0.0107664689,-0.0038017193,0.0285213422,0.0108070206,0.0111855026,0.0130643966,-0.0203028694,-0.015950324,0.0286024455,-0.0043457877,-0.0096107461,-0.0070897839,-0.0405516699,-0.0038929605,0.0363883674,0.0054305447,0.0171128046,0.040119119,-0.0132266032,0.0356854722,-0.0127602592,-0.0317654759,-0.0493649021,-0.016950598,0.0114626056,-0.0139092235,-0.0184104592,0.0063361987,-0.0060084062,-0.0154907387,-0.0206272844,-0.0207083877,-0.0393891893,0.0153690837,0.0277643781,-0.0199379046,-0.0060050269,-0.0359828509,0.0029230996,0.005278476,0.0004595856,0.0360098854,0.0021661352,0.0329279564,0.0332523696,0.0205326639,0.0282780323,-0.0062381988,0.0043694428,0.0191268716,0.0010458952,0.0086645409,-0.0045722011,0.025493484,-0.0213707313,-0.0265207924,0.0331712663,-0.0016609288,-0.0119830193,-0.0049439245,-0.047796905,0.0450664237,0.0149230156,0.008921368,-0.0038084779,-0.0356314033,-0.0059306822,0.0155312903,0.0075088181,-0.0409571901,0.0096648149,-0.0138686718,0.0031292373,-0.02838617,0.0425522216,0.0263045169,0.0086915754,0.0466073863,0.0444446318,-0.0262504481,0.0126791559,0.0250609331,-0.0004616977,0.0087726787,0.007346611,0.0037307539,-0.0094350222,0.0354151279,0.0488782823,-0.0236821771,0.0132941902,-0.0208841115,-0.017139839,0.0068566119,0.0036935813,-0.0008684816,-0.002152618,0.0290890653,0.0013812913,0.0063767503,-0.0004849304,0.0034452025,-0.012091157,-0.0091038505,-0.0309003741,0.0043457877,0.0296838228,-0.0244391412,-0.0712628067,-0.0155042559,-0.0083671613,-0.0608275086,-0.0209652148,-0.0469318032,0.0049304073,-0.0113071576,-0.0200054906,0.0509599335,-0.0325765088,-0.0655855685,-0.0013170845,-0.0150987394,0.0142741883,-0.0128210867,0.0021644456,-0.0218979027,0.0063835089,-0.0112328129,-0.0057515786,-0.0535282083,-0.0022641351,0.0120303296,-0.0293594096,0.0368749872,-0.0497704186,-0.003208651,0.0176129434,0.0049405452,-0.0305489264,0.0094688153,0.0113747437,0.016950598,-0.0488512479,0.0023790314,-0.0120641226,-0.015761083,-0.0058968891,-0.0400380157,-0.0077724038,-0.0181265976,-0.0127602592,0.003690202,0.021289628,0.0118275713,-0.0311166495,0.0170857701,0.0399569124,0.0121249501,-0.012935983,0.0011692399,0.0119627435,-0.021979006,0.0035854436,0.0062010265,0.00028006,-0.0029146513,0.0221817642,0.0072181975,0.0209516976,-0.0013821361,0.0315492004,-0.0272101723,0.0274399649,0.0065355776,-0.0001140516,0.0164099094,-0.0025986864,-0.0074141971,-0.0416600853,-0.0387133285,-0.0322520956,-0.0005588527,0.0053257863,0.0490134545,-0.0166126676,0.025304243,0.0282239635,0.0158692207,0.0129900519,0.0292512719,-0.0051264074,-0.0471210442,-0.0054677171,0.0032492026,-0.0028082032,0.0337930582,-0.0242093485,-0.0211814903,-0.024114728,0.0049675796,0.0065862671,-0.0331442319,-0.0097932285,-0.0020782731,-0.0076575074,0.01495005,-0.0752639025,-0.01148964,0.0260071382,-0.0161125306,-0.0083806785,0.0047749593,0.0107664689,0.0093201259,0.01626122,-0.0304948576,0.031900648,-0.0364965051,-0.0012849811,-0.0075561283,-0.0322791301,0.0098202629,0.0056907511,0.0235740393,0.0011447399,0.0369560905,-0.0006281285,-0.0203163866,-0.0417141542,0.0483375937,-0.0054237861,0.0153150149,0.0147067392,0.0380645022,0.030332651,-0.0075561283,0.0113612264,0.0013888947,0.0080495067,0.0031343063,-0.012212812,0.0387944318,0.0021222041,-0.0024432382,-0.0131387413,-0.014003844,-0.04898642,-0.0188294929,0.0491756611,-0.056015376,0.0634768829,-0.0176670123,-0.0115504675,-0.0016938772,-0.0032627198,0.0002424652,0.0389566384,0.0139768096,-0.0054643378,-0.0146526704,-0.0123952944,0.0360369198,-0.0600705445,0.0052717174,0.0144769466,0.0271155518,0.0021695145,0.0108746067,0.0223574881,-0.0252231397,-0.0220601093,0.0114355711,0.0028403066,0.0363342986,-0.0147067392,-0.0024381692,0.0359287821,0.0005123873,0.011523433,0.0022928591,0.0061706128,0.0137875685,0.0238849353,0.0081914375,-0.0255340356,-0.0094012292,0.002390859,0.0041227532,-0.0118478471,0.0382267088,-0.0200460423,-0.0025632037,-0.0052750967,0.005822544,0.0203163866,0.0050486829,0.0526901372,-0.0184780452,-0.0325494744,-0.0113815023,0.011868123,0.0219384544,0.0055454411,0.0189781822,0.0332523696,-0.0214248002,0.0268722419,-0.0002623186,0.0147878425,0.0083941957,0.0009571884,-0.0220736265,0.0151798427,-0.0116112949,-0.0100973658,-0.0136388792,-0.0308463052,-0.0185321141,0.0318195447,0.0254258979,-0.0130103277,0.0081981961,-0.0076439902,-0.0266018976,0.0070965425,-0.0273723789,0.037550848,-0.0220871437,-0.0181265976,0.047229182,-0.0008452489,0.0386322252,0.014382326,-0.0197216291,0.0096648149,-0.0162477028,0.0057752337,0.0289268587,0.0151257738,0.0212490764,0.0112801231,0.0056130271,0.0052345451,0.0021205144,0.0210192837,0.0271831378,-0.0091106091,0.0177481156,0.014503981,-0.002308066,0.0154637042,-0.0200865939,-0.0032677888,0.0067755086,-0.0260476898,0.0532308295,0.0234253481,-0.000783999,-0.0153014977,0.0512843467,-0.011746468,0.0458504222,-0.0454178713,-0.0286024455,-0.0063463366,-0.0074615078,0.0452015959,0.0107461931,0.0320087858,-0.0309544429,0.013314466,-0.0082792994,-0.025871966,0.0217762478,-0.0066099223,0.0179779083,-0.0084077129,-0.0180319771,0.0139092235,0.0132063273,0.0519602075,-0.0004084736,0.0042444081,0.0092525398,0.0009386023,0.0106583312,-0.0118748816,-0.0084077129,0.0169641152,0.0096039874,0.0183023214,-0.0208300427,-0.0223034192,-0.0057076477,-0.0262504481,0.0011498089,-0.0026983758,-0.0109624686,0.0245202444,0.0004029822,0.0029332377,0.013469914,0.0227630045,0.0077183349,-0.0225061774,-0.0087388856,-0.003876064,0.0049101315,0.0199784562,-0.0045924769,0.0062280609,0.0364965051,-0.0135712931,0.0004184003,-0.0551502742,0.0301974788,0.009387712,0.0078737829,-0.0058766133,-0.0176670123,-0.0389566384,0.0063361987,0.0346311294,0.0033691681,-0.0049371659,-0.0151798427,-0.0390377417,-0.0241552796,-0.0578537174,0.0297108591,-0.0046195113,0.025493484,-0.0008532748,0.0006538957,-0.0090565402,0.0042308909,-0.0195323881,-0.0108678481,0.0141660506,0.0040788222,0.0308192708,0.0058968891,0.0131860515,-0.0031190994,0.0116653638,0.0153555665,-0.0001565041,0.0103136422,-0.0083266096,-0.033090163,-0.0196134914,0.0053257863,0.0359017476,0.0160584617,0.0220736265,0.0014776016,-0.0288727898,-0.0059678545,0.0320087858,-0.0100230211,-0.0134023279,0.0263180342,0.0120843984,0.0020208249,-0.0047445456,0.0036597883,-0.0113274334,0.023925487,0.0044843392,-0.0272777583,0.0040247533,-0.0082928166,-0.004616132,0.0015249118,0.0262639653,0.0440661497,-0.0209246632,0.0377671234,0.0149906017,0.0143012227,0.0049777175,0.0298460312,-0.0639635026,0.0010061883,-0.0101649528,-0.0208300427,0.0055082687,0.0131590171,0.0124899149,0.0003235686,0.0216951445,-0.0106921243,0.0154772215,-0.0033691681,-0.0072587491,-0.0331171975,-0.0139497751,0.0190457683,-0.0366587117,0.0253583118,-0.0172479786,0.0132130859,-0.0058664754,0.0040146154,0.0137808099,-0.0088672992,0.0059273029,-0.0092390226,0.0267641041,0.0497704186,-0.0022117558,0.0222493503,-0.0197216291,-0.0133077074,-0.0143417744,0.0215194207,-0.0164234266,-0.0048662005,0.0179373566,0.0298730657,-0.0058867512,0.0073263352,0.0354421623,-0.008887575,0.0201406628,0.0316843726,0.0223439708,0.0200190078,0.0064984052,0.0648826733,-0.0274264477,0.0099081248,0.0315492004,-0.0037172367,-0.0094755739,0.0256286561,-0.0126521215,-0.0150176361,0.0144904638,0.0044201324,-0.0400920846,0.0158962552,0.0267641041,-0.0100973658,0.012402053,-0.0075628869,0.0069106808,0.0205596983,-0.0278454814,-0.0042917184,0.0123952944,0.0238308664,0.031522166,0.0098810904,0.0022168248,0.0347122326,0.0634768829,0.0209652148,0.0170452185,-0.0026713414,-0.0132671548,-0.0009014299,-0.0311436839,0.0024347899,0.006106406,0.0048898556,-0.0058968891,0.0105096418,-0.0113747437,0.0112936404,0.0153285321,-0.0246418994,-0.0187348723,0.027818447,0.0056265444,-0.0005761717,0.0222628675,0.0186402518,-0.00715737,-0.019964939,-0.030521892,-0.0300082378,-0.0105096418,-0.0099959867,-0.0090565402,-0.0002160644,0.0077115763,-0.0193025954,0.0371453315,0.0186943207,0.0066876467,0.0143417744,-0.0334145762,-0.0006978267,-0.0057684751,0.007001922,-0.0084617818,-0.0231279694,-0.0128683969,0.0027152724,-0.0005419562,0.0099824695,-0.0230468661,-0.0221006609,-0.0194107331,-0.0259260349,-0.060665302,-0.015071705,0.0074209557,-0.0234118309,0.0092119882,0.0174101852,0.0367127806,0.0144904638,0.0203704573,0.0314680971,-0.0158421863,0.0106650898,-0.0263585858,0.0001953661,-0.0367127806,-0.0413627066,0.0214248002,-0.0264126547,0.0074547492,-0.0387673974,0.0052007521,0.0498244874,0.0051264074,0.0071370942,0.0362261608,0.0073195766,0.0174912885,0.022168247,0.0187889412,-0.0385781564,-0.026818173,0.0257908627,-0.0454449058,0.0102798492,0.0001391852,-0.0168694947,-0.0154231526,0.0080900583,-0.0065828878,0.0231009349,0.0116923982,-0.0073668868,0.0205191467,0.0033134094,-0.0117667438,-0.0245067272,-0.0333064385,0.0105231591,0.0147472909,-0.027507551,0.0018755149,0.0344959572,-0.0176670123,0.0053933724,0.0094958497,-0.0259125177,-0.0378211923,-0.0073736454,-0.0060016476,-0.0091579193,-0.0111584682,0.0269938968,0.0183563903,0.0266965181,0.0376049168,0.0267370697,-0.0052649588,-0.0046026148,-0.0140173612,-0.033279404,0.021789765,-0.0144634293,-0.0017352736,0.0073060594,0.0154366698,0.0111584682,0.0582862683,-0.0357936099,-0.0145986015,-0.018964665,-0.0073939213,-0.0029163409,0.0248176232,0.0011050331,0.0097391596,0.0293323752,-0.0120979156,-0.0083874371,0.024614865,0.0355232656,-0.0406327732,0.0162477028,-0.0236281082,-0.0103609525,0.0150176361,-0.0116653638,0.0161801167,0.0018755149,0.0083739199,0.013246879,-0.0046093734,0.013469914,0.0316032693,0.0181536321,-0.0034063405,-0.0260747243,-0.0092525398,0.0206543189,-0.0132874306,0.0102190217,0.0139903268,0.0070221978,-0.0066673709,-0.0258178972,-0.0074209557,-0.0352799557,-0.0102933664,-0.0182888042,0.0089146094,0.0073601282,-0.0088943336,-0.004616132,0.0053730966,-0.0048425454,0.0230874177,-0.0276562404,-0.014382326,0.0283321012,-0.0175048057,0.0053730966,0.0094282636,0.0083468854,0.0131657757,0.0151122566,0.0149230156,0.0039673052,-0.0277103093,0.0036530297,0.0091714365,0.0051128902,-0.0092863329,0.0162341855,-0.0059374408,0.0566642024,0.0172209442,0.0188835617,0.0081711616,0.0378211923,-0.0344689228,0.0249122437,-0.023168521,0.0001164805,-0.0594217181,0.0025648933,0.0162882544,0.0224521086,-0.0121114329,0.0005833527,-0.0111719854,0.0114220539,-0.0116586052,0.0071100597,-0.023993073,0.0149770845,-0.0022049972,-0.0417141542,0.0111043993,0.0533389673,0.0169235636,-0.0426873937,0.0132941902,-0.0129968105,0.0161665995,-0.0324413367,0.0260612071,0.0275481027,0.0174507368,-0.0402272567,0.0085969539,-0.0093066087,0.0010475848,-0.0033100301,0.0299001001,0.0075155767,-0.0023756521,0.0079819206,0.0038524088,-0.0218708683,0.0398217402,-0.028007688,-0.0107259173,-0.0065457155,0.0149365328,0.0310355462,0.0384700187,0.0205867328,0.010611021,0.0216275584,0.0134023279,0.0124966735,0.0027524447,0.0141254989,0.0079886792,-0.0149635673,-0.0294405129,0.0099959867,0.0216951445,0.0042410288,-0.0004230469,-0.0098202629,-0.0108272964,-0.0078332312,0.0023013074,-0.0214383174,0.0217762478,0.0147202564,0.0054170275,-0.0383889154,-0.0536633804,0.041011259,0.0355773345,0.0047884765,-0.0017420322,0.0199784562,-0.0021391006,0.0040112361,0.0298460312,0.0157205313,-0.0240606591,-0.0284132045,-0.0151122566,-0.0200730767,-0.0381456055,-0.0088943336,0.0139768096,0.0040112361,-0.0272912756,-0.0065964051,-0.0113882609,0.0155177731,0.0029788583,0.0541770346,-0.0056265444,0.0103677111,-0.0016338944,0.0033809957,0.0074479906,0.013091431,-0.0179508738,-0.0155312903,-0.0111179166,-0.0139903268,0.0045586838,-0.0409301557,0.0283591356,0.0171668734,0.0036800641,0.006339578,-0.0142741883,0.0010256193,0.0338741615,-0.0139632924,-0.009732401,-0.0190052167,0.0037375125,0.0066234395,0.0042477874,0.0175453573,0.0103136422,0.0091579193,0.0074682664,0.0040889601,-0.0070695081,-0.0060050269,0.0308192708,0.0097594354,-0.0050486829,-0.0154096354,0.0105839865,-0.0117397094,0.0341715403,0.0167748742,0.0125439838,-0.0058157854,0.0442283563,-0.0073736454,-0.0142471539,0.0129832933,-0.0040112361,-0.0180454943,-0.0179779083,0.0226278324,-0.0296027195,-0.0034435128,-0.010300125,0.0443635285,0.0021407902,-0.0072857835,-0.0093809534,-0.0076980591,-0.006640336,0.0518520698,-0.0152879804,0.0190187339,-0.0337389894,0.0107529517,0.0285483766,-0.0017927218,-0.0135983275,-0.0110841235,0.0258990005,0.0319817513,0.0019819629,0.001543498,-0.0255070012,0.0045417873,-0.0001657972,-0.0112463301,-0.0141119817,-0.0361180231,0.0017023254,-0.0245067272,0.0070627495,-0.0184104592,-0.0234253481,-0.0473102853,0.0014108602,0.0101717114,-0.0023046867,0.0213166624,0.0060050269,0.0178292189,0.0135442587,0.0153285321,0.0243580379,-0.0043390291,0.0022776523,0.0220736265,0.0093944706],"89":[-0.0276305433,-0.0188886765,0.0427159406,-0.0116156135,0.05574359,0.0160504077,-0.0056729889,-0.0245084483,-0.013950089,0.0208328906,0.0452703796,-0.0540122464,0.0064606084,0.0164761487,0.0330658257,0.0388275124,0.0063790083,-0.0025739546,-0.053160768,0.0586386248,0.0013916384,0.0079684388,0.000733515,0.0260411128,0.0054175449,-0.0176824126,-0.0208186992,0.0568505153,0.0246219784,-0.0349674672,0.0182074923,-0.043652568,-0.049953524,-0.0087134838,-0.0183210224,0.0079400558,0.0466611311,0.0194989033,-0.0037074881,-0.0270061232,-0.0349390842,0.0034484961,0.021741135,0.0263958964,0.0193286072,0.0190022066,-0.0630663261,-0.0274176728,-0.0210031867,0.0802094638,-0.0596036352,0.0365001298,0.0077697597,-0.0260836855,0.0363866016,-0.0284820236,0.0146028912,0.0480518825,0.0004727491,-0.0206909757,-0.0297734346,-0.05001029,0.0271906108,0.0527917929,0.0059674592,0.0198394954,-0.0227345303,0.0264810435,0.0055452669,0.0275453944,0.0592630431,0.0283401106,-0.0018501962,0.0030546864,0.0473706983,-0.0068863486,-0.0109486198,0.0443337522,-0.003643627,-0.0095152948,0.0345417261,-0.0072517758,-0.0514578074,-0.0079400558,0.0079187686,-0.0283259191,-0.0388842784,-0.0239975583,0.0057687806,-0.000431062,-0.0357621796,0.013836558,-0.0166038703,0.0240117498,0.0211025253,-0.0241536647,0.0143332556,-0.0317318402,-0.0127012506,0.0107357502,0.0061519467,-0.0312777162,-0.0466611311,-0.0060951812,0.0214147344,0.006059703,0.0147448042,0.0299721137,-0.0350809954,0.0105370712,-0.0796418115,0.0103383921,-0.0380895622,0.0088483021,0.0063754604,-0.0113814566,0.0052437009,-0.0300288796,0.0015007344,-0.0193002243,-0.0419212244,-0.0132405218,-0.001207151,0.0078123338,0.0140423328,-0.031022273,0.0095294863,-0.0509469174,-0.0569924302,-0.0096217301,0.0241820458,-0.0051940312,0.0245368294,-0.0219398141,-0.0296031386,0.0102958186,-0.0636339784,0.0209180377,-0.0438796282,0.0002161962,-0.0223087892,-0.0262539815,0.0276873074,0.0106506022,-0.0259275809,-0.0014838822,-0.015582093,0.0814015344,-0.0147731872,0.0028542336,0.0357054174,-0.0004935926,-0.0069431141,0.0161213651,0.0417509265,-0.030823594,0.0094940076,0.0523944348,-0.0124458065,-0.0230325479,0.0148015693,0.013893324,-0.0178385172,0.0092101805,-0.0343714282,-0.0117078573,-0.037266463,-0.0057936152,-0.0807203501,-0.01306313,-0.0083232224,-0.031050656,-0.0399060547,0.0132121397,0.0127722081,-0.0035975052,-0.0021198317,-0.0313628651,0.0022599711,-0.037266463,-0.0479383543,0.0098275039,-0.0295179915,-0.0290922504,0.0051159789,0.002070162,-0.0513726585,0.0033136783,-0.0029713123,0.0005166535,-0.0300572626,0.0229473989,0.021599222,0.0497264601,-0.00267152,-0.0527066439,0.0313344821,0.039962817,-0.0508050025,0.0430281498,0.02812724,0.0103100101,0.062158078,-0.0073440196,-0.0180088133,0.0071630799,-0.0126161026,0.009451434,-0.0137514099,-0.0326968506,0.0237846896,-0.0160645992,-0.0021730491,-0.0198394954,-0.0293476954,-0.0128360689,-0.056226097,-0.0024533281,0.014524838,-0.0111756818,0.003193052,0.0523944348,0.0291773994,-0.0433687419,-0.0128573561,0.0459799469,-0.0106364107,-0.0129992692,0.0138152717,-0.0169160794,-0.011771718,-0.0186048485,0.0056729889,-0.0333496518,0.0021109621,0.0011370813,0.0065776869,-0.0338605419,-0.0232170355,-0.0481937975,-0.0350526161,-0.0194137562,-0.0129637904,0.0703322887,0.0258140508,0.0147589957,-0.0150712049,-0.0505211763,0.0252463967,0.0371813141,0.0149860568,-0.0128147816,-0.001769483,-0.0329522975,-0.0357621796,-0.0718649551,0.0076136547,0.0470301062,0.0271622278,0.0031433823,0.0232738014,-0.0362163037,-0.0328103825,0.012601912,-0.0510604493,0.0138010802,0.0492439568,-0.0399060547,0.0181791093,-0.0208328906,0.0173843931,0.0433687419,-0.0006337321,-0.0555732958,-0.0277014989,-0.026523618,-0.0084935185,0.0027761813,0.0107854195,-0.0216417965,0.0135882096,-0.036812339,0.0158233456,0.0158517286,0.0107002715,-0.0011140204,-0.0015858825,0.0163342338,0.0216417965,-0.031220952,0.0046760472,-0.0180088133,0.0247071255,-0.0464908369,0.0031912781,0.0221668761,0.0355067365,0.0150712049,-0.0403885581,-0.0480802655,0.0121194059,-0.0038316622,0.027900178,-0.043595802,0.0041190372,0.0176824126,0.0041190372,-0.0112537341,0.017299246,-0.0002636485,-0.0115020825,0.0026218505,0.0164903384,-0.021599222,-0.0182642564,-0.0345133431,0.0751573443,-0.0048073172,0.0014563864,-0.0314480141,-0.0267506801,-0.062044546,-0.0155962845,0.0504076481,0.0151847359,-0.0107783237,0.0163200423,0.0159084946,0.0224648938,0.0182784479,-0.0162916612,-0.0466611311,0.0102816271,0.0412968062,-0.0143687334,-0.0419496074,-0.0033402871,0.0031522517,-0.0344849601,0.0343714282,-0.034087602,-0.0116652828,-0.0586386248,-0.0063293385,-0.0101042353,0.0257289037,-0.0302843228,0.0019584051,-0.0164051913,-0.0198962614,-0.0279427525,-0.0291773994,0.0169728454,-0.0097423559,0.0269351676,-0.0479951166,-0.0055523627,-0.0030919386,-0.0369542539,0.01099829,-0.0029198686,0.0059568156,0.0521957539,0.0105725499,-0.0179236643,0.0226777643,-0.0664154813,-0.0160645992,-0.0243949164,-0.0438228622,-0.0005029057,-0.0331225917,-0.0218972396,-0.0093875723,-0.0322711132,-0.0253457371,-0.0019105094,0.0754411742,-0.0149860568,0.0615336597,0.0288368072,0.0139429932,0.0230893139,-0.0302843228,0.0403885581,0.0264384691,-0.0143048726,0.043170061,-0.0378341191,-0.0207193587,0.0582980327,-0.0250761006,0.0122187454,-0.0454690605,-0.0279711355,0.0188177191,0.0158233456,0.0460083298,0.0408426821,-0.0059993896,-0.0021003187,-0.0386572145,-0.0345701091,0.0010545941,-0.0105228797,0.0047115255,-0.0014599343,0.0261688344,-0.0049989,-0.0182784479,-0.0156388581,0.0193711817,0.0579574406,-0.0345133431,0.0585250929,-0.0116652828,-0.0482221805,0.034286283,0.0357621796,0.077314429,-0.0062051644,-0.0491588078,-0.0174411591,0.0164903384,-0.0576168485,0.034286283,0.0348823182,-0.013346957,-0.0074717416,-0.0321575813,-0.0146170817,0.0042786896,0.0700484663,-0.0077058985,0.0142339161,-0.0034183394,0.0430849157,-0.0143403513,0.0229048263,0.0257289037,-0.0081671169,0.0179804303,0.0158375371,0.0309371259,-0.0113743609,-0.0056126756,-0.0120555451,-0.0133966263,0.0052543445,-0.0090540759,0.0356202684,-0.0173418205,-0.0513442755,0.0001597635,-0.0193286072,-0.0355635025,-0.0069821402,-0.0460934788,0.0261404514,-0.0435390361,-0.0567937493,0.0225074682,-0.0370677859,0.0065280171,-0.0053040138,-0.0030050166,0.0184345525,-0.003902619,0.021854667,-0.0232170355,-0.004984709,0.0086921966,0.0160929821,0.010082948,-0.0036826532,0.0428578518,0.0267506801,-0.005197579,0.0282123871,-0.0324130245,0.0268216357,-0.0227345303,0.0194989033,0.0392532498,0.0035123571,0.081117712,0.0070140706,0.018448744,-0.0224365108,0.0269351676,-0.0492155738,0.006772818,0.0366136618,-0.0176256467,-0.0120697366,0.0105725499,-0.0561693311,-0.0417225435,0.0010324201,-0.025203824,0.0090327887,-0.0150853964,0.0074788374,0.0825368464,0.0118994405,0.0207477417,-0.0290212948,-0.037408378,0.0290496759,-0.02188305,-0.0092385635,0.0312777162,0.0033083565,0.024778083,-0.0128076859,0.0106080277,-0.0143048726,0.0054672146,-0.0498399921,0.0094940076,-0.0347971693,-0.0225926153,-0.0149718653,-0.0102319578,-0.0015610476,0.0059922943,-0.0264668521,-0.0710702389,-0.031533163,-0.0428010859,0.0049102041,-0.0136662619,-0.0113175949,-0.0164619572,-0.0408426821,0.0015149257,-0.0206484031,-0.0216701794,-0.0029180946,0.0234157145,0.00431062,0.0181223433,-0.0101751918,0.0225784257,0.0252463967,-0.0022369102,-0.0066521913,-0.0236143935,0.0067054089,0.0322711132,0.031079039,-0.0208896548,0.0513158925,-0.0257998593,0.0141345765,0.0174411591,0.0425172597,0.006187425,-0.0137088364,-0.0116794743,-0.0135598276,-0.0098913657,0.024692934,0.0029908253,-0.0295747556,0.0167315919,0.0110337678,-0.0301991757,-0.0406440049,0.0364717469,-0.0271622278,0.01237485,0.0186616145,0.0506347083,0.0240968987,0.0109840985,-0.0326968506,-0.0131553737,0.0256153718,-0.0151279708,-0.0254734587,-0.0225784257,-0.0254025012,0.0361311547,-0.043624185,-0.0062406426,0.0430849157,0.0166322533,0.0060916333,-0.0053891619,-0.005328849,-0.0072127497,-0.0077910465,0.0107641332,0.0229048263,0.0095081991,0.0008603501,0.0225500427,-0.0299437307,0.027871795,0.0388558954,0.0183777884,-0.0099197477,0.0135030616,-0.0226919558,0.0251328666,0.0093733817,0.0271622278,0.0103383921,0.0006301843,0.0311925691,0.0008270891,-0.0140707158,-0.0323278755,-0.0174127761,-0.0229048263,-0.0143900206,-0.0099339392,0.0039416454,-0.0408426821,-0.0439363942,0.0072730626,-0.0210741423,-0.0022954496,0.0036116964,0.0458380356,-0.0055913888,-0.0212302469,0.0024604239,0.0139855677,-0.0106009319,-0.0006532452,0.0455542058,-0.0216843709,0.0094656246,0.0450717025,0.023202844,0.0250193365,-0.0090682674,-0.0052543445,0.0143829249,0.0356770344,0.0045767077,-0.0072730626,0.0414103344,-0.0253741201,-0.0001188525,0.0091817984,-0.0311925691,-0.0047576474,0.0005871668,-0.0409562141,0.0545515195,-0.0098771742,0.0223939382,-0.0014466299,-0.0502373502,-0.0199530274,0.0115588475,0.0301140267,-0.0214289259,0.006300956,-0.0013721253,-0.0002290571,0.0063506253,0.0291206334,0.0132830963,0.0048605348,0.0102958186,0.0197827313,0.007819429,0.018675806,0.0353648253,0.0193569902,0.0453839116,-0.0074433587,0.0128999297,-0.0222094506,0.0044738203,0.0572478734,-0.0380327962,0.0099055562,-0.0472855493,-0.0265945755,0.0152698839,-0.0225074682,-0.0028542336,0.0250335261,0.0330090597,0.0270203147,-0.0102532441,-0.0023894671,0.0210457593,-0.0025970156,0.0147589957,-0.0037323229,0.0050024479,0.0383166224,-0.0352229103,-0.0176256467,-0.006730244,-0.0043602898,-0.0162207037,-0.0408142991,-0.036812339,0.0263391305,0.0012967339,-0.0084296567,0.0386004485,-0.0325549394,-0.0303694718,0.0103738708,-0.0294612255,0.0152698839,-0.0128644519,0.0197117738,-0.0276447348,0.0028719727,-0.0041474197,-0.0067941048,-0.0408142991,0.0010838638,-0.0303978547,-0.0309371259,0.0411548913,-0.0328387655,0.0282265786,0.0416090153,-0.0083728917,-0.0185055099,0.0020630662,0.0050982395,0.0114169344,0.0099339392,-0.0053820666,0.0040800106,-0.017327629,-0.001185864,-0.0324697904,0.012431615,-0.0105086891,0.0156672411,-0.015724007,-0.0058716675,-0.00772009,-0.0006936018,-0.0030972604,0.0124458065,-0.0261262599,-0.0086070485,-0.0058397371,0.0129141212,-0.0081742126,-0.0374935269,-0.0048782737,-0.016901888,-0.0000680187,-0.0054210927,-0.0118781533,0.0515997186,0.0051904833,0.0396789908,-0.0174411591,0.0039558364,-0.0164051913,-0.0056871804,0.0102745313,0.0043567419,0.003430757,-0.0359892435,-0.0265378095,-0.0264100879,-0.0171715245,-0.00634353,0.087305136,0.0001506721,0.0014226821,-0.0074504544,0.0338889249,-0.0129425041,0.0148725258,0.0084722312,0.0036932968,-0.02337314,-0.0165471043,-0.0016595001,-0.0120484494,0.015326649,-0.0306816809,-0.0358757116,-0.0153692234,0.0082593607,-0.0270912722,0.018647423,0.0070389058,-0.0364433676,-0.0037678012,-0.1172772497,-0.0362163037,0.0533878282,-0.0347687863,0.0058752154,-0.0223797467,0.0093520945,0.0401047319,-0.0055488148,-0.0073298281,0.0206767842,-0.0529053211,-0.0242813863,-0.0124954768,-0.0083941789,0.0134392008,0.0366136618,0.015610476,0.0123819457,0.0075781764,-0.0001867048,0.0033314175,-0.0430849157,0.0539270975,-0.0023185106,0.0043248115,-0.0106931757,0.0507482402,0.0472571701,-0.008507709,0.031135805,-0.0000850926,0.0016488566,0.0207477417,-0.0096288258,0.0141984373,-0.0194989033,0.0041899937,0.0147022298,-0.0226777643,-0.0318737552,-0.0459515639,0.0410129763,-0.0414387174,0.0619310141,-0.0398492888,-0.0454690605,0.0073298281,0.0089121629,-0.018590657,0.0191015471,0.0231886525,0.0011521595,-0.0006541322,-0.0044489857,0.0180371962,-0.0460650958,-0.0228338689,0.0069785924,0.0014865431,-0.0172282886,0.0055771973,-0.0139642805,-0.0597171672,-0.0112750214,-0.0151137793,-0.0182500649,0.0418076925,0.0094727203,0.0009038111,0.0389126576,0.02812724,0.0004124359,-0.0212586299,0.0059071463,0.0351945274,0.0070672883,0.0128928339,-0.0010599159,-0.0077910465,0.0263391305,0.0008607936,-0.0109911943,0.0315047801,-0.0131837567,0.0002556659,0.0152556924,-0.0119065354,0.031135805,0.0015078301,0.0461786278,-0.0189312492,-0.0125593375,0.0236143935,-0.0163342338,0.0273892898,0.00362234,0.015496945,0.0061767814,-0.0193002243,0.0113743609,-0.0074646459,0.0032533652,0.0168593135,-0.0348255523,-0.037408378,-0.005371423,-0.0007379498,0.0244800653,0.0227912944,0.0055913888,-0.0048498912,0.0053962576,-0.015553711,-0.023231227,0.0129566947,0.0395654626,-0.0023202845,0.006616713,-0.0255727973,0.0186048485,-0.0061696861,-0.0041687065,0.0420063734,-0.0189596321,0.031249335,0.0370110199,-0.0042644981,-0.0196975823,0.0330374427,0.0117930053,0.0778253153,0.0132476175,0.0122400327,0.007819429,-0.0176966041,0.0094088595,0.0102532441,-0.0167174004,0.0224081296,0.0047434559,-0.0050450219,-0.0015539519,0.0066309045,0.0249625705,0.0105583584,-0.0138720367,0.0063931993,-0.0603983514,0.0318737552,0.0204355326,-0.046263773,-0.040530473,0.0326400846,0.0076207505,0.0644286945,-0.0380044132,-0.0352229103,0.021627605,-0.0072943498,-0.0104944976,0.0076633245,0.0422334336,-0.0092953285,0.0199246444,-0.0259559639,-0.0192718431,0.0009472721,-0.0132121397,0.0189596321,-0.0225642342,0.0252180137,0.0190305896,-0.0068863486,0.0386004485,0.0519686937,0.0227345303,0.0220249631,-0.0087844403,0.0162065122,-0.0130205564,-0.0137088364,0.0091463197,0.0296599045,0.0457528867,-0.0052188658,-0.0332361236,0.0159936417,-0.0161497463,0.0168593135,0.0015805607,0.0183777884,0.0478248224,0.0125096682,-0.01306313,0.0031965997,0.020279428,0.0026661984,0.0069253747,0.0048179608,-0.0239407942,0.023202844,-0.0061945207,-0.0002847138,-0.0126657728,0.0343714282,0.0017402133,0.0278150309,-0.0200807489,0.0326968506,0.0002000092,0.0115659432,0.0181365348,-0.0072375843,-0.0328387655,0.010913142,0.0195130948,0.0064357733,-0.0058752154,-0.0360743925,-0.0518551618,-0.0329239145,-0.0287090838,0.0414103344,-0.0045802556,0.0423753485,0.0210315678,0.0049882568,-0.0200097915,-0.0049066562,0.0137230279,-0.0103171058,0.0037607057,-0.0039913147,0.0366136618,0.0136024011,0.0133824358,-0.0028595554,-0.0019584051,0.0315899253,0.0239691772,-0.0083657959,-0.0049989,-0.0110479593,-0.0027336073,-0.014524838,0.0385436863,0.0313060991,0.0632933825,0.0103596793,0.0060171289,0.0036613662,0.0464908369,-0.0206909757,0.0295747556,0.006059703,-0.0089547364,-0.006701861,-0.0094656246,0.0050201872,-0.0150428228,0.0304830018,-0.0039948625,-0.0129566947,-0.0085786665,-0.0054069012,-0.0305397678,-0.0095649641,0.0417225435,0.0034644613,-0.0183635969,0.0257714763,0.0236002021,-0.0034680092,0.000925985,0.0519403107,-0.0677210838,-0.0050805006,-0.0080181081,0.0142339161,-0.0102603398,0.0177959427,-0.0122045539,-0.018902868,0.0340592191,-0.0180939604,0.0160929821,-0.0662451833,0.01337534,-0.0443337522,-0.0062477384,0.0076846117,-0.026296556,0.0183210224,-0.0270203147,0.0077271857,-0.0081032561,0.0151705444,0.0362446867,-0.0225074682,0.0194847118,-0.0170579925,0.0220107716,0.0140920021,0.0228054859,0.0276447348,0.0149009088,-0.0107286545,0.0058326414,0.0323562585,-0.0137159321,-0.0008461588,0.0409845971,0.0135456361,-0.0098629827,0.0159794502,0.0300288796,0.0222236421,0.0172424801,0.0273041409,0.0064357733,-0.0111898733,0.0054849535,0.0213012043,-0.0103242015,-0.0036276618,0.0464340709,-0.017100567,-0.0128786424,0.0143545419,-0.0185764674,-0.0044738203,0.0119136311,0.0137514099,-0.0331225917,0.0060135811,-0.0087773446,-0.0249341875,-0.0009126807,-0.0080961604,0.0177533682,0.0075214114,-0.0288084242,-0.0112892129,0.0060277726,0.0034112439,0.0448446386,0.0242246203,-0.0127793029,0.0445608124,0.0569924302,0.0182074923,-0.0113814566,-0.0010927333,0.0041083936,-0.0035744442,-0.0178527087,-0.0243523419,-0.0294612255,0.0142552033,-0.0113743609,0.0083799874,-0.017015418,0.0307384469,0.0082806479,-0.0004401534,-0.0069218269,0.0278292205,0.0377489701,-0.0130276522,0.034115985,0.0322427303,0.0080890646,-0.0176824126,-0.0227629133,-0.0303978547,0.0082877437,-0.0257289037,0.0007308541,0.0155395195,0.0151705444,-0.0278859865,0.0193995647,0.0295179915,-0.0149151003,0.0105228797,-0.0250761006,0.0241962373,0.0089547364,-0.0163200423,-0.0093024243,-0.030823594,0.0085289963,0.0008825241,-0.0042361156,0.0376354381,-0.0103454879,-0.0255302247,-0.0020187183,-0.0313344821,-0.0225642342,0.0199530274,-0.013205044,-0.0134250093,0.0014980736,-0.0077271857,0.0496129319,-0.0004026793,0.0214005429,0.0110976296,-0.0161923207,0.0193427987,-0.0242104288,0.0248348489,-0.0353932083,-0.0366136618,0.0119987791,-0.0319021381,0.0063328864,-0.0266087651,0.0063506253,0.0228338689,0.0226209983,0.0006652192,0.0214431174,0.0301140267,0.0265945755,0.0128147816,0.015326649,-0.0021606318,-0.0131837567,0.0201091319,-0.0378341191,0.0415806323,-0.0128857382,-0.010111331,-0.0079968208,0.0056623453,-0.0254876502,0.0113743609,0.0486479215,-0.0032657825,0.013148278,0.0170296095,0.0043283594,-0.0150002483,-0.0253599286,-0.0193002243,0.0208754633,-0.0527066439,0.0300004967,0.0249341875,-0.0050556655,0.036869105,0.0110834381,-0.0085715707,-0.0323846415,-0.0376354381,-0.0047860299,0.0090185981,-0.0194705203,0.0270628892,0.018874485,0.0144325951,0.0021038665,0.0452136137,-0.0256721377,-0.0071524363,-0.0313344821,-0.0481370315,0.0335199498,0.0013889776,-0.0207619332,0.0198820699,0.0018608397,0.0246787444,0.0299721137,-0.0135101574,0.0047434559,-0.0125664333,0.0292625464,-0.0111331074,0.0225784257,-0.0000531621,0.0289503373,0.0062690252,-0.0139855677,-0.0239975583,0.0392532498,0.0027495725,-0.0369542539,0.0192576516,-0.0115872305,-0.0089263543,0.034115985,0.0117575265,0.0166180618,-0.0036932968,0.0160078332,-0.0210315678,0.0038671407,-0.0124174245,0.0238698367,-0.004725717,0.0297450516,0.0147589957,0.0359608606,-0.0014484038,-0.015780773,0.0111047253,0.0096855909,0.015496945,-0.0156672411,-0.0026821636,0.0173418205,-0.015582093,0.0189454406,-0.0248632301,0.023202844,0.0091250325,0.0199672189,-0.0205916371,0.0268925931,0.0086567188,0.0291206334,0.0066415481,-0.0036826532,0.0270203147,-0.0158659201,-0.003838758,-0.0013428557,-0.0246077869,0.004424151,0.0031238692,0.0350526161,0.0176824126,-0.003838758,-0.0081529263,0.0027992423,-0.0082451692,-0.0000759459,0.0075285067,-0.00465476,0.0338605419,0.0085502835,0.0387991294,0.0356770344,0.0397925228,-0.0347687863,-0.0179520473,-0.0365285128,-0.0024284935,-0.0359040946,-0.0052933707,0.0089902151,0.0223655552,-0.0296599045,0.0165754873,-0.0015592737,-0.0164335743,0.0068544182,-0.0091250325,-0.0236143935,0.0319305174,0.0283826832,-0.0128076859,0.0133611485,0.0582980327,-0.0193569902,-0.0199246444,0.0129566947,-0.0181081519,0.0337186269,-0.037294846,-0.0090115024,0.0192860328,0.0349958502,0.0076136547,0.0438796282,-0.0001952418,0.0070495489,-0.0209606122,0.0188319106,0.0107570374,0.0019229269,-0.0046228296,0.0108138025,0.0031256431,0.034201134,-0.0283117276,-0.0142835854,0.0145106474,0.0032427215,0.0030901646,0.0287658498,0.034115985,-0.006960853,0.0213437788,-0.0041012978,-0.0160078332,0.0087489625,0.018704189,0.014524838,-0.0183352139,-0.0158375371,0.0268925931,0.0226209983,0.0099765137,-0.0058326414,-0.0156672411,-0.0167883579,-0.0109060463,0.0107570374,-0.0326684676,0.0174979251,-0.01099829,0.0051621008,-0.0423185825,-0.0331793576,0.0390545726,-0.0119207269,0.0191725027,0.0027885986,0.0181933008,-0.0114807952,0.0039735758,0.0353080593,0.0157665815,0.0179662388,-0.0158801116,-0.013091513,-0.0294896085,-0.0403885581,-0.0114240302,0.0217127539,0.0130844172,-0.0169728454,-0.0029464774,0.0053111096,0.005843285,0.0148157608,0.0183068309,-0.0155962845,-0.0088766841,0.0207193587,-0.0051088831,0.0212302469,0.0231886525,-0.0064038429,0.0022227189,0.0009463851,0.0014058298,-0.0014679169,0.0026928072,0.0124670938,0.0114666047,-0.0120342579,0.0317886062,-0.0351377614,-0.0107712289,0.0318453722,-0.0041474197,-0.0080748731,0.0030990343,0.004640569,0.0144538814,-0.0090398844,0.0495845489,0.0126161026,0.0051833875,-0.0190873556,-0.0146028912,-0.0129992692,-0.0080464911,0.0401047319,0.0181933008,0.011771718,0.0243523419,0.0014945257,-0.011714953,0.021854667,0.0077413768,0.0241252817,-0.0016257956,0.0271480363,0.0040622717,-0.015496945,-0.0120413536,-0.0166748259,-0.0145603167,0.0125664333,0.0097849304,-0.0489033647,0.010941525,-0.0206767842,0.0387991294,-0.0001572135,-0.0038245667,0.005084048,0.0030138863,-0.0282407701,0.0434822701,-0.0225784257,0.0009552547,-0.0077342815,0.0067444351,0.0214289259,0.0159652587,-0.0365285128,-0.0192718431,0.0415238664,-0.0015787868,0.018732572,0.0190022066,-0.0321575813,0.0335767157,0.0167032089,0.0189170595,-0.0093733817,-0.0104093496,-0.0023149627,-0.0010457245,0.0289219543,-0.0300572626,-0.0115801347,-0.0470868722,-0.0081245434,-0.0116369007,-0.0160929821,0.0232454184,0.0106364107,0.0103596793,0.0350242332,-0.0147448042,0.0222378336,-0.0244800653,0.0162065122,0.0293760784,0.0038210189],"90":[0.0027356807,0.0147568751,0.0598505922,0.0087306611,0.0433299467,0.0152419116,0.0013072107,0.0275295079,-0.0120377298,0.0161972865,0.0276323948,-0.0366276205,-0.0046115234,-0.0250014383,0.0614379831,0.0735492036,-0.0211211443,-0.0083117653,-0.0250455327,0.024001969,-0.0118907485,0.0096713379,0.0137794521,0.0315420851,0.0003913364,-0.0331882685,-0.0281468276,0.0465047322,0.0158739295,-0.0611440241,0.0289111286,-0.0403315388,-0.047445409,0.0139043862,0.0369215831,0.028190922,0.0303956345,0.0116261831,0.0010839836,-0.0090099247,-0.0351284184,0.0234287437,0.0019860785,0.0436827019,-0.0053390786,0.001711408,-0.0507083833,-0.0276911873,0.0008093131,0.0667292923,-0.0459168106,0.0138896881,-0.0320712142,-0.0533834361,0.0152566098,-0.0256187581,0.0101857707,0.0202980526,0.0005856267,-0.0383619964,0.0161237959,-0.0488858223,0.0274266209,0.0181521326,-0.0067905141,0.0224733688,-0.0315714814,0.0583513863,-0.0363630578,0.0163442679,0.0409782529,0.0081353886,0.0012768959,-0.0249426458,0.0212534275,-0.0439472683,-0.0097448286,0.0213563144,-0.0190781113,-0.0271326602,0.0010003883,-0.0111558447,-0.0285877697,0.0238990821,0.0218560491,-0.0198718067,-0.0539125651,-0.0357163399,-0.0262360778,0.0122214556,-0.0098109702,0.0482097119,-0.0132576702,0.0122067574,0.0268827919,0.0208565798,0.0101931198,-0.0106781572,-0.0207095984,0.0192985814,-0.0018289926,-0.0229878016,-0.0185342822,-0.0210182574,0.0336880051,-0.0057285777,-0.0061437986,-0.0224439725,-0.0052876351,0.0007055079,-0.0831911489,0.002103663,-0.0502968393,-0.0035091671,-0.0025721644,0.0046997117,-0.0218119547,0.0183285084,-0.0088555943,-0.0227379333,-0.0530306809,0.0165794361,-0.023031896,0.0069926125,0.0098403664,-0.0326591395,0.0075768614,-0.0610852316,-0.054676868,-0.0069485186,0.0272355471,-0.0187841486,0.0669644624,-0.037538901,-0.0278969612,-0.0351578146,-0.0384501852,-0.007374763,-0.0122361537,-0.0216943696,0.0032335781,-0.0265006423,0.0106267137,0.0007440904,-0.0581456125,0.0158004388,-0.0215032939,0.046475336,-0.0221500099,-0.0144041209,0.0099138562,-0.0254276823,-0.0503850281,-0.0353047922,0.0466811098,0.0006049179,0.017549511,0.0575870872,-0.0086130761,-0.0562642589,0.0077091441,0.056499429,-0.0250896271,0.0121920593,-0.0312187262,-0.0206949003,-0.0435651168,-0.0365100354,-0.091363281,-0.0174466241,-0.0396848209,-0.0641424283,-0.0206949003,0.0396260321,0.0367158093,-0.0120230317,0.0123463897,-0.0539419614,-0.0005259158,-0.0035900066,-0.0518254377,-0.0025886998,-0.0204744283,0.0137574049,-0.0616731532,0.0046482687,-0.0627902076,0.0336292125,0.0062136143,0.0475923903,-0.0413016118,0.0634369254,0.015815137,0.0267211143,0.0098918099,-0.0341877416,0.0335410237,-0.0007316889,-0.0587335378,0.0023866012,0.0474748053,-0.0020062882,0.0431241728,-0.0185783766,-0.0091348579,0.0244576093,0.0036138911,0.0098624136,-0.0620259084,-0.0197836198,0.0226938389,0.0059490488,-0.0048099477,0.013132737,-0.0294696558,-0.0169174932,-0.06714084,-0.016358966,0.0196366385,-0.0105973175,-0.0059049544,0.0437708907,0.0117878625,-0.0200040899,-0.007044056,0.0462989584,0.0346580781,-0.0305426158,0.0281027332,-0.0000868105,0.0040493216,-0.0495619327,-0.0193132795,-0.0346286818,0.0121847102,-0.004468217,-0.006775816,-0.007205735,0.0136324717,-0.0195631478,-0.0252219103,0.0206067115,-0.0155064771,0.0224292744,0.0099285543,0.0308365766,-0.0411840267,-0.066258952,0.0378622599,0.050561402,0.0139925741,-0.0220765192,0.0160650034,-0.0436533056,-0.0197542235,-0.0973600969,-0.0097742248,0.0363042653,0.0054493141,0.008069247,0.0369803756,-0.0440942459,-0.034128949,-0.0185342822,-0.0348050594,0.0084293503,0.0510611385,-0.0244723074,0.0251778159,-0.015815137,0.0450643189,0.0394202583,-0.0052288426,-0.0393026732,-0.0122067574,-0.0100681866,0.0026695393,-0.0188870355,-0.0043285852,-0.0157857407,-0.0104503362,-0.0488270298,0.0031527388,-0.0044829152,0.0233258568,0.0032409271,0.008715963,0.0056146677,-0.0054456396,-0.0292050894,-0.0025721644,0.0017600954,0.0168587007,-0.025721645,0.0099432524,0.0286612604,0.0056220167,0.0047805514,-0.0484448783,-0.0337761939,0.0042624441,-0.0108251376,-0.0057285777,-0.0527955107,0.0177111886,0.0403903313,-0.0188870355,-0.0072167586,-0.0027687512,0.0029726871,0.0112881269,0.0061511477,0.025074929,-0.0063899914,-0.0378328636,-0.0126256524,0.0747250542,-0.016020909,0.0015074721,-0.0546180755,-0.0100975828,-0.0943029001,-0.0125521626,0.0195190534,0.0082309265,-0.0226791408,0.0442412272,-0.0133826043,0.0239578746,-0.0075768614,0.0067500942,-0.0248250607,0.0156387594,0.0405961052,-0.0272649433,-0.0503262356,0.0248397589,-0.0000572421,-0.0323063843,0.0412428193,-0.0472984277,-0.0119642392,-0.0720793977,0.0100387903,0.016138494,0.0166823231,-0.0064965524,0.0189752243,-0.0085101901,0.0179169625,-0.0302486531,-0.0211211443,0.0118980976,0.006026214,0.027338434,0.0022157358,0.009678687,-0.0261919834,-0.0174172278,0.0035863321,-0.0247221738,0.0030149443,0.0243253261,-0.0003380559,-0.01785817,0.0146025447,-0.0560290888,0.0061989161,0.0123390406,-0.0139117353,0.0365394317,-0.0254717767,0.010332752,0.0037535229,-0.0589099154,-0.0133164627,0.0439766608,0.0497677065,0.0181227364,0.0617319457,0.0322181955,0.0284848846,0.0058204406,-0.0085836798,0.0423598737,0.0358633213,-0.0192544889,0.0446233787,-0.0464165434,-0.0051406543,0.0315714814,0.0152272135,-0.0170203801,-0.0261919834,-0.0176230017,-0.0086130761,0.003825176,0.0119348429,0.0626726225,-0.0020136372,0.0241342522,-0.0045086369,-0.0439472683,-0.0178434718,0.0396554247,0.0029598263,0.0172996428,0.0267799068,-0.017211454,-0.0216649733,-0.0116629284,-0.0336292125,0.0307189915,-0.0309835579,0.0370391682,-0.0313951038,-0.0442412272,0.0628490001,0.0082015302,0.0616143607,-0.0348932482,-0.0169321913,-0.0191075075,-0.015065534,-0.0349226445,0.0218119547,0.0502380468,-0.0264271516,-0.0098403664,-0.0228408203,-0.0268093031,0.0128240772,0.0485624634,-0.0314538963,-0.0058865822,0.0148377139,0.0215473883,0.007264527,0.0401257649,-0.0084881429,-0.0362160765,0.0035146789,-0.0180198494,0.0380680338,-0.0222822931,-0.0469456762,-0.02689749,-0.0246633831,-0.0164324567,0.0115379943,0.0296019372,0.0104062427,-0.01785817,0.0444470011,-0.03357042,-0.034540493,0.0117511172,-0.0595272332,0.0640248507,-0.0106781572,-0.0293079764,0.0022469694,-0.0554411672,-0.0281468276,0.0097227814,-0.0295431465,0.0411546305,0.000037061,0.0144776115,-0.0088115009,0.0078708231,0.0425950438,-0.0196513366,0.0158739295,-0.0359809063,-0.0035404006,0.0305132195,-0.0005406138,-0.0119054466,-0.0114351083,0.0019015644,0.0020650807,-0.0061548222,0.077899836,0.0219295397,0.0164471548,-0.0002176005,-0.0070073106,-0.0191956963,0.0148377139,-0.0280145444,0.0070808013,0.0533540398,-0.0186077729,-0.0163148716,0.0056440635,-0.0897170976,-0.0215473883,0.0062466851,-0.0044571934,0.0131474352,-0.0205920134,0.0162854753,0.0857192203,-0.0014247954,0.0132723683,-0.0163001735,-0.0105091287,-0.0067500942,-0.0281027332,0.0009599685,-0.0061548222,0.0155652696,0.0286024678,-0.0173437372,0.0250602309,0.0075070458,0.0128828697,-0.0082162283,-0.0101857707,-0.0174760204,-0.0323945731,-0.0246780813,-0.0053831725,-0.023031896,-0.0047989241,-0.0557645261,-0.0534128323,-0.0188870355,-0.0071101976,0.0147348279,-0.0260303039,0.0075621633,0.0057175541,-0.045622848,-0.018622471,-0.019474959,-0.0473866165,-0.0380680338,0.0204744283,0.019901203,0.0357163399,0.0043579815,0.04929737,0.0108471848,-0.0077605876,0.0065884152,-0.0129490104,-0.0089511322,0.0247221738,0.0258539263,-0.0311893318,0.0270591695,0.0115967868,0.0294696558,0.0077311913,0.0100167431,0.0162119847,0.0055081062,-0.0129416613,0.0074592768,-0.0226056501,-0.0161825884,-0.0020099627,-0.021194635,0.015388892,0.0101931198,-0.0415367819,-0.0635545105,0.0311599355,-0.0030369912,-0.0024619289,0.0136177735,0.0028624516,0.0160797015,0.0145878466,-0.0190928094,-0.0067537688,0.020974163,0.0149846952,-0.0259715114,-0.0215620864,-0.0335998163,0.0354223773,-0.02904341,0.0203862395,0.0344523042,0.0332470611,0.0193426758,-0.0214004088,-0.0017417228,0.0045196605,-0.0113028251,0.002985548,0.0068713534,0.0154623827,0.0107810432,-0.0037516856,-0.0080398507,0.0349226445,0.0200775806,0.0026456548,-0.0016801745,-0.0428008176,-0.0159621183,0.0379504487,0.0029800362,0.0051737251,0.0476511829,-0.0032243917,0.0202245619,-0.0132870665,-0.0048724143,-0.0397730097,-0.0258980207,-0.0143967718,-0.0299252961,-0.0068860515,0.0119862864,-0.0267211143,-0.0297930129,-0.0175348129,-0.0294990521,-0.0391262956,0.0157710426,0.0313363113,-0.0072718761,-0.0285142791,-0.0307777841,0.0226203483,-0.0038692702,0.0045417077,0.036274869,0.0021330593,0.0242812317,0.0207977872,0.0356575474,0.0167999081,0.0065847407,0.0024049738,0.0307483878,0.0177258868,0.0134928394,0.0013356883,0.0220177267,-0.0155652696,-0.008392605,0.0271326602,-0.0289405249,-0.0086130761,-0.0058388133,-0.0589981042,0.0519136265,0.026471246,0.0142791867,-0.0165500417,-0.0199159011,-0.032159403,0.0062871049,0.0140219703,-0.0438884757,0.0041595572,-0.0169321913,0.0083705578,-0.0292050894,0.0331000835,0.0127946809,0.0250455327,0.0486506522,0.0268533975,-0.0009645617,0.0314538963,0.0368039981,0.0248985514,0.0275001116,-0.0071469424,0.0286906566,-0.0322181955,0.0171967559,0.0534128323,-0.0324533656,0.01065611,-0.0211799368,0.0131988777,-0.004413099,-0.0109868171,-0.0129343122,0.01463929,0.047445409,0.0150949303,0.0119936354,-0.0028073338,0.0095464047,-0.0119568901,-0.0129416613,-0.0112881269,0.0078340778,0.0360103026,-0.0290875044,-0.0200187881,0.012596257,-0.012059777,-0.0696101189,-0.0293226745,-0.0230759885,0.009788923,0.0015763694,-0.0320418179,0.0313657075,-0.0391556919,-0.0559702963,0.007099174,-0.034540493,0.0131841796,-0.0075180694,0.000310497,-0.029263882,0.0073343432,-0.0176817924,-0.0183138102,-0.0439472683,-0.012691794,-0.0355105661,-0.0289405249,0.0444176048,-0.0332176648,0.0274266209,0.0424480624,-0.0023627167,-0.0183285084,-0.0093773762,0.0070697777,0.0015460545,-0.0142718377,0.0120083336,-0.000268929,-0.0089731794,0.0025868625,-0.0437414944,0.0037314757,-0.0105311759,0.0048503671,-0.0138749899,-0.0199893918,0.0283672996,-0.0350696258,0.0167558137,0.0343053229,0.0175936054,-0.0173584353,-0.0214738976,0.0144041209,-0.0066986512,-0.0152566098,0.0145951957,-0.023355253,-0.0159621183,0.0054750359,0.0168293044,0.0262360778,0.0042955144,0.032159403,-0.0370097719,0.0287494492,-0.0038802938,0.0170497764,-0.0255452674,0.0082015302,-0.0226350464,-0.0237961952,-0.0161237959,-0.0197542235,0.0025593035,-0.0037167775,0.047445409,-0.0095684519,-0.0087306611,-0.0002459632,0.0022506439,-0.0042293733,0.0224880669,0.0042514205,-0.018622471,-0.0335410237,-0.0194896571,0.0011620672,0.0333058536,-0.0186518673,-0.0359809063,-0.0164177585,-0.032600347,-0.0015552408,-0.0051957723,-0.0002749001,0.0086498214,-0.0152713079,0.0144702625,-0.1071196273,-0.0125668608,0.0267505106,-0.0248397589,-0.0043285852,-0.0281762239,0.0038913174,0.0236051213,0.0381856188,-0.0145364031,0.0268240012,-0.0634957179,-0.0329237059,-0.0032611371,-0.0208418816,0.0218119547,0.0101710735,0.0155946659,0.0216502752,0.0149846952,-0.0071836878,0.0016140331,-0.0207242966,0.0534716249,0.0050928853,-0.0035863321,-0.001852877,0.054118339,0.0241783448,-0.0099946959,0.0206508059,0.0089658303,-0.0087306611,0.0101857707,0.0039464352,-0.004729108,-0.0075621633,0.0294108633,-0.0038766193,-0.0221794061,-0.0192838833,-0.0428890027,0.0408900641,-0.043917872,0.0648479387,-0.0011133797,-0.0082015302,-0.0001120155,-0.0117070228,0.0139631787,0.0124492757,0.0231200829,0.0094876122,-0.0069779148,0.0085322373,0.0195190534,-0.0363336615,-0.0108986283,0.0148009686,0.0090687172,-0.0265447367,0.0264859442,0.0186959617,-0.0391556919,-0.0245751943,0.0147568751,-0.0117584663,0.0368039981,0.009465565,0.0029432911,0.0262948703,0.0142571395,0.0079369647,-0.0056183422,0.0209300686,0.0097080832,0.014521705,0.0042183497,-0.0105899684,-0.0266770199,0.0353341885,0.0148965064,-0.0241342522,0.024001969,-0.0154623827,-0.0126330014,-0.001224534,0.0082382755,0.0292491838,0.003740662,0.0566464104,-0.0091128107,-0.0119642392,0.0076283049,0.0139190843,0.011405712,0.0284848846,-0.011405712,0.0183432065,-0.0071285698,0.0432711542,-0.0062834304,0.0120156826,0.0256628525,-0.0115012499,-0.017211454,0.006996287,-0.0018308299,-0.0081574358,0.0100167431,-0.0107883923,0.0099873468,0.0259862095,0.0369215831,-0.0087821046,-0.0041889534,0.0039942041,-0.0031986702,-0.0025354193,-0.0329237059,0.0349520408,-0.0031012953,-0.0462107696,0.0418895334,-0.0072975978,0.0200922787,0.019048715,-0.0193867702,0.0038839683,0.0058976058,0.0167117193,0.0582338013,-0.0061621713,0.0533834361,-0.0114277592,-0.0108251376,0.0190781113,-0.009039321,0.013345859,0.047033865,-0.0024858131,0.0184754897,0.0161237959,-0.0179316606,0.0310129542,-0.0038619211,-0.0118466541,0.0032354153,-0.0153301004,0.0472396351,0.032600347,-0.0298958998,-0.0280880351,0.0629665852,-0.0079002194,0.0693749487,-0.0482979007,-0.0364512429,-0.0009080659,-0.0023094362,0.0328943096,0.0309835579,0.0218560491,-0.0075180694,0.0116629284,-0.0213710126,-0.0492091812,0.009142207,-0.0213416163,0.0028808243,-0.0002866126,0.0145657994,0.0104209408,0.039390862,0.0457698293,0.0211064462,0.0025446054,0.0105973175,-0.0115820887,0.0081280395,-0.025074929,-0.0129857557,0.0139117353,0.0389793143,0.0395672396,-0.0050157206,-0.0274266209,0.0186665654,-0.0080912942,0.0290140156,0.0052031213,0.004409425,0.0183726028,0.0387441441,-0.0126036061,0.0163736641,0.0155211752,0.0061989161,-0.0203127507,0.0148230158,0.0013742707,0.0152125154,0.0140881119,-0.0226938389,0.0171379633,0.0693749487,-0.0167411156,0.0126256524,-0.0391262956,0.0198718067,0.0127726337,0.0077458895,0.0069705658,-0.0375095047,-0.039802406,0.0096933851,0.0190046206,0.0166088324,-0.0073931357,-0.0189311299,-0.0355399624,-0.0398611985,-0.046475336,0.0317184627,-0.023575725,0.0391850881,-0.0000077007,-0.0182991121,-0.0045821271,0.0181080382,-0.0152566098,0.0181668308,0.0104062427,0.0209888611,0.0318360478,0.0181962252,0.0177993774,-0.0097080832,-0.0077899839,0.0032703234,-0.0023186225,0.0178287737,-0.0030167815,-0.0226497445,-0.0281321295,-0.000779917,0.0237227045,0.0245164018,0.036274869,-0.0230612922,-0.0125815589,0.010758996,0.0182550177,0.0078708231,0.0030847602,0.0266476236,0.0029028712,0.0290140156,0.0014275513,-0.0028183572,-0.0010086559,0.0199305993,0.0144555643,-0.0176230017,-0.0001072501,-0.0026530039,-0.0115085989,-0.0132723683,0.0233699512,0.0258980207,-0.0243694205,0.0319830291,-0.0074666259,-0.0187841486,-0.0089878775,0.0229878016,-0.0473866165,-0.000095882,-0.0112440335,-0.0275736023,-0.0076062577,-0.0049054851,-0.0112807779,-0.0169615876,0.0389205217,-0.0369803756,0.00904667,-0.016564738,0.0301016737,-0.0427420251,-0.0200922787,0.0332176648,-0.0165353436,0.0393320695,-0.0241783448,0.0111778919,-0.0039648078,0.0230024997,-0.0095537538,-0.0067611178,0.0100755356,-0.0189752243,0.0228555184,0.0419189297,0.0230759885,0.0077311913,-0.0150802322,-0.0133017646,0.0056881579,0.0273237359,-0.0229143109,0.0201069769,0.015065534,0.0399493873,-0.0025427684,0.0025519545,0.0314245,0.0022341085,0.0121920593,0.0343347192,0.0149259027,0.0165794361,0.018622471,0.0431535691,-0.0007422531,0.0066435332,0.0302192569,-0.001281489,-0.0251925141,0.0127358884,-0.0026272822,-0.0041522081,-0.0035808203,0.0163883623,-0.0301016737,0.0113763157,0.0072314567,-0.006614137,-0.0018271554,-0.002421509,0.0152419116,0.0051002344,-0.0199305993,-0.0088702925,0.0070550796,-0.0222381987,0.0375976935,0.0260303039,0.0020999885,0.0328649133,0.0670820475,0.0049936734,-0.0169027951,-0.0144335171,-0.0095464047,-0.0128902188,-0.0025593035,-0.0186665654,-0.0012640351,0.0030774111,-0.0251043253,0.0031747858,-0.0277352817,0.0150067424,0.0066178115,-0.0227820277,-0.0187253579,0.034981437,0.031306915,-0.0048393435,0.0185930748,0.0209300686,-0.0056146677,-0.0140366685,-0.0195043553,-0.0269709807,0.0198424105,-0.0217237659,-0.0073710885,0.0171967559,0.0059637469,-0.0234287437,0.0294990521,0.0485330671,0.0010196795,0.0136471698,-0.0341877416,0.0021146866,0.0136912642,-0.0035073298,-0.0034044434,-0.0253835879,-0.0238108933,0.0152713079,0.0077164932,0.0309835579,-0.0055705733,-0.0255305693,0.0010518315,-0.0244429111,-0.0251190234,-0.0270591695,0.0282056201,-0.0251484197,0.0099506015,0.0066913022,0.0463283546,0.0117731644,0.001947496,0.0139778769,-0.0111999391,0.0143379793,-0.0105532231,0.0070330324,-0.0396848209,-0.0377446748,0.0369803756,-0.0187106598,0.0013476304,-0.0462695621,0.0123610869,0.0478275605,0.0135075375,0.0003169274,0.028411394,0.0287200529,0.018828243,0.023031896,0.0356575474,-0.0388323329,-0.0358927175,0.0260597002,-0.0434181355,0.020342147,-0.0135736791,-0.002526233,-0.00958315,0.0049091596,-0.0161972865,0.0309541617,0.0115967868,-0.0095243575,0.026691718,0.0125080682,0.0053023333,-0.0138602918,-0.0381562226,0.0009847715,0.0105605721,-0.0099726487,0.0178728681,0.0024674407,-0.017755283,0.029910598,0.022590952,-0.023781497,-0.0342171341,-0.0081647849,0.0053647999,-0.0002014097,-0.0170791727,0.018622471,0.0201510713,0.0254717767,0.0454464704,0.0453582816,-0.0052949842,0.021415107,-0.0312775187,-0.0445057936,0.0303956345,-0.0022598302,-0.01119259,-0.0011528808,-0.0015883115,0.0012833263,0.0348932482,-0.0222528968,-0.0112219863,-0.0058535114,0.0039096898,0.0064340858,0.0305132195,-0.0063679442,0.0144408662,0.016138494,-0.0050855367,-0.004515986,0.0187106598,0.0248397589,-0.0543829054,0.0379210524,-0.0248838533,-0.0016599647,0.0196513366,0.0000675767,0.0067721414,-0.0034669102,0.0443000197,-0.004574778,-0.0262360778,0.021517992,0.0379504487,0.0204597302,0.0314245,-0.006132775,0.0157710426,0.0003589547,0.0033952571,0.0122214556,-0.0067317216,0.0117805135,-0.0248985514,-0.0328649133,0.0139778769,-0.0311305393,0.0069117732,-0.0178875662,-0.0013301765,0.0041558826,-0.0086645195,-0.0172261521,0.0068015377,-0.0088408962,0.0441530384,0.0000626391,-0.0084146522,0.0364806391,-0.0176817924,0.0234875362,-0.0016121959,-0.0222528968,-0.0135810282,0.0281762239,0.0038949919,-0.0157269482,-0.0026842372,0.0052619134,0.0025997234,-0.0014523542,-0.0115673905,0.0082235774,-0.0099506015,0.0478569567,0.0267064162,0.0267064162,0.0144482153,0.0328943096,-0.0272649433,0.0143747246,-0.0337467976,0.0011556367,-0.0543535091,0.0098771118,0.0139558297,0.0247368719,-0.0091569051,0.0069779148,-0.0244870055,0.0222528968,-0.0019566822,0.0166676249,-0.0313657075,0.0148597611,0.0251190234,-0.0179316606,0.0052949842,0.0437414944,0.0005690914,-0.0379504487,-0.0009324096,-0.0249279477,0.0058682095,-0.0294255614,0.0037921052,0.0232964605,0.023575725,-0.0132429721,0.0194014683,-0.007319645,-0.0021055003,-0.0184607916,0.011405712,0.0016039283,-0.003683707,0.0087380102,0.0115306461,-0.0115012499,0.0223704819,-0.0220324248,-0.016138494,-0.0140072722,0.0294108633,0.0164324567,0.0488858223,0.0180051513,0.0286465622,0.0049054851,-0.0238402896,0.0048062732,-0.0094949612,0.0180639438,0.0273678303,-0.0047180844,-0.0406255014,0.0387147479,0.0247221738,-0.0041375104,0.0011831956,0.0044314717,-0.0215620864,-0.0050965599,0.0114498064,-0.0266770199,0.0158886276,0.0164030604,0.0103107048,-0.034422908,-0.0368039981,0.0260743983,0.0015423801,0.0025096976,0.0113028251,0.006239336,0.0025960489,0.0155799678,0.0208124854,0.0123169934,-0.0078855213,-0.0213857107,-0.0114498064,-0.0112440335,-0.0378622599,-0.0448585488,-0.0022543184,-0.0060445862,-0.0171820577,-0.0014100972,-0.0106487609,0.0108398357,0.0271620564,0.0339525715,-0.0039905296,-0.011405712,0.0213269182,-0.0091275088,0.0101563754,0.0142277442,-0.0128387753,0.0012364762,-0.0121332668,0.0051773996,-0.0055117807,-0.0242959298,0.0201804675,0.0263242666,0.0006990776,0.0216355771,-0.0033493256,-0.0055044317,0.0183579046,0.001090414,0.009252443,-0.0143306302,-0.0038839683,-0.006401015,0.0080471998,0.0395378433,0.0121332668,0.0041485336,0.012272899,0.0087894537,0.0081941811,-0.0179169625,0.0400963686,-0.002265342,0.0066729295,0.0080398507,-0.0009884461,-0.0154182883,0.0291903913,-0.0056624361,0.0093185846,-0.0363336615,0.0178140756,0.0111264484,0.0188135449,0.0122288046,-0.0090760663,-0.0220030285,-0.0070477305,0.0367158093,-0.0381856188,-0.0138602918,-0.0023829266,0.0365688279,0.0095390556,0.0194602609,0.0039023408,0.006937495,-0.0125154173,0.0393614657,-0.0123537378,0.0018005151,-0.0152272135,0.0209447667,0.016138494,0.0054566632,-0.0086792177,0.0041852789,0.0305132195,0.0083705578,0.0105164777,-0.0067023258,-0.0207242966,0.0075254184,0.0201804675,-0.0034871201,-0.021738464,-0.0251778159,-0.0010389707,-0.0095390556,-0.0038986665,-0.0184313953,-0.0025537917,-0.0524721555,-0.0033695353,0.0192250926,-0.014095461,0.024428213,0.007044056,0.0279410556,0.0225027651,0.0152125154,0.0318948403,0.008179483,-0.0059233271,0.0029616635,0.0166529268],"91":[0.0149441315,-0.009204451,0.0644619763,0.0102895033,0.0489999838,0.0253754314,0.0128849978,0.0165840406,-0.0354368277,-0.021257164,-0.0076076975,-0.0462626889,0.0095620248,-0.0169539452,0.0627850816,0.0134398546,0.0038439217,-0.0042169085,-0.0102340179,0.0653990731,-0.0019866941,0.0110354768,0.0089208577,0.0296416599,0.0084646419,-0.025597373,-0.024302708,0.036472559,0.0381494574,-0.0571132153,-0.0180020072,-0.0388646051,-0.0379768349,0.051638633,0.0415032543,0.0180020072,0.0179650169,-0.004226156,0.0545485467,-0.0017863292,-0.0322309881,-0.0063130325,0.0365712009,0.0112389242,-0.0324529335,-0.0277181584,-0.034623038,-0.0375576094,0.0514906719,0.067519851,-0.0007255517,-0.0358313918,-0.0317871049,-0.0394811146,0.0339078903,-0.0298636034,0.0284086466,0.0140070403,0.0080207568,-0.0282113645,-0.0165593792,-0.0489753224,0.027693497,0.0317131244,-0.0326995365,-0.0059955311,-0.0154989874,0.0270769913,-0.0306034107,0.0119109163,0.0296416599,0.0119725671,0.0141796628,-0.00283285,0.0290251523,-0.0809843689,-0.0618479885,0.0356094502,-0.0064178389,-0.0250425171,-0.0027095487,0.0116458191,-0.0655963495,0.0625877976,0.0031719289,-0.0508001819,-0.0246232934,-0.0112142637,0.0121020339,0.0058876425,-0.00081456,0.0312445778,-0.0013039125,0.0134891747,0.0241670776,0.0390618891,-0.0052834656,0.0084461467,-0.0147098592,0.055732239,0.0142289829,-0.0275455359,-0.0253014509,0.000007911,-0.00040728,-0.0262878612,0.0137850977,-0.0218243506,0.0067569176,0.0065041496,-0.0745233744,-0.0211708527,-0.0372370258,-0.0376069322,0.0271263104,0.0022672047,0.0517865941,-0.034623038,0.0165347196,-0.0489259996,-0.0450789966,0.0244753305,-0.0356341079,0.0317871049,0.0023149841,-0.0236615408,-0.0059893662,-0.0290004928,-0.0524770804,0.0255727135,0.0328474976,-0.030085545,0.0292964168,-0.0071021616,-0.018408902,-0.0247712545,-0.0411826707,-0.0094572185,-0.0287045687,-0.0153017053,0.0434760787,-0.0340805128,0.0156346187,-0.0100059099,-0.0048950664,-0.0174594801,0.0015443502,0.0144879166,-0.0143276248,-0.0292224344,0.0144262658,-0.0121266944,-0.0379275158,0.0393824726,0.0508988239,-0.0112389242,0.0279647615,0.0190254077,-0.0111341178,-0.0270276703,0.0534141734,0.0432048142,-0.0124719385,0.0012253078,-0.0368424617,0.0122684911,-0.0441912264,-0.0318610854,-0.0668293685,-0.0090379938,-0.0187664758,-0.0571132153,-0.0141426725,0.0389632471,0.0290498137,0.0046700411,0.0136741269,-0.0515893102,-0.0111587783,-0.0273235943,-0.0499617346,-0.0165100601,-0.0294443779,-0.0305047706,-0.0200858004,0.0172868576,-0.067865096,0.0111341178,0.0316884629,0.0541539825,-0.059332639,0.0362999365,0.0188404564,0.0221942551,0.021207843,-0.0562254451,0.0296416599,0.0340805128,-0.0300362241,0.0342038125,0.0026478979,0.0186555032,-0.0031272322,-0.0375822708,0.0262632016,0.0109923212,0.0005741222,0.002780447,-0.0522304811,-0.0360533334,0.0021207843,0.0223545469,0.0158072412,-0.0392345116,-0.0410347097,-0.043599382,-0.0266331062,-0.0466079339,-0.0039579752,-0.0160908345,0.0070528411,0.0499617346,-0.0058814776,-0.0267564077,0.0131439306,0.0273482539,-0.0016137073,-0.0135261649,0.0348203182,0.0081317285,0.0275948569,-0.0510961078,-0.0131562613,-0.0450543351,0.0395550951,0.0272249524,-0.0067939078,-0.0487040579,0.0154003464,-0.0261892211,0.012823347,-0.0111402832,-0.0032582399,0.0471751206,-0.0083968267,0.0176074412,-0.0467805564,-0.0688021928,0.0133782038,0.0970135555,0.0222928952,-0.0026463566,0.0111156227,-0.0093770726,0.0197035652,-0.0470518209,-0.0249315463,0.0148824807,0.0276688375,-0.0236368813,0.0404921845,-0.0509974658,-0.0091181397,-0.0033846239,-0.0269290283,-0.0126877157,0.0288525317,-0.056176126,0.0253754314,-0.0009663748,0.0402702428,0.0066829366,0.0168553032,-0.0714161769,-0.0020360146,-0.0334886648,-0.0049104788,-0.0364972204,0.0163251068,-0.0335626453,0.0099442592,-0.0156346187,-0.0168059822,-0.0210352205,0.0348203182,0.0007613862,0.0296663195,0.002096124,0.0355354659,-0.038223438,-0.0140686911,0.0231066849,0.0209242497,-0.0417745188,0.0064055086,0.021405125,0.0108505245,-0.0091243051,-0.022551829,-0.0248698946,0.0210968722,-0.0270276703,0.0176690929,-0.0502083376,0.0030362974,0.0208872594,-0.0088098859,-0.0215407573,0.0301102046,-0.0043371273,-0.0048087551,-0.0116951391,0.0159058832,-0.0153510263,0.0144385956,-0.0079652714,0.03472168,0.0166580211,0.004864241,-0.0474710464,-0.0284333061,-0.0840422437,-0.0059801186,-0.0017339261,0.0110663017,-0.0241547469,0.0546965078,-0.0175211318,0.0138220889,-0.0227614418,-0.0011189603,-0.0494438671,0.0043155495,0.0617000274,0.0132179121,-0.0523291193,0.0415279157,-0.0185445324,-0.0149934525,0.0201967712,-0.0226751305,-0.0406401455,-0.068210341,0.0191856995,0.0231190156,0.0415525772,0.0066151209,-0.0198268667,-0.0191980302,-0.0203817245,-0.0672732517,0.0014919471,-0.012724706,-0.0242780484,-0.0354368277,-0.0076755132,0.0182116181,-0.0158442315,-0.0535128154,-0.0126507254,-0.0168306436,-0.0017878705,0.0529702865,-0.0231560059,0.032280311,0.0006585066,-0.0199255086,-0.0326748751,-0.0064178389,-0.040664807,0.0234149378,-0.008957848,-0.0175211318,-0.016066175,-0.0612068214,0.0020128957,0.0540553406,0.0280140806,0.0299129225,0.0400729589,0.0077063385,0.0008369084,0.0065041496,-0.0142783038,0.0279154405,0.0313432179,-0.0200734697,0.0261892211,-0.0205420163,-0.0108012035,0.0386426635,-0.0069295396,0.0171882175,0.0040288735,-0.0095065394,-0.0098826084,0.0119540719,0.0306527317,0.0500357151,-0.0155606382,0.011004651,-0.0168183129,-0.0260165986,-0.0241054259,0.0079960963,0.0386673249,-0.0008661925,-0.0064548291,-0.0165347196,-0.0022487096,-0.073093079,-0.0257206745,0.0222435761,-0.0127986865,0.0016460739,-0.0373603292,-0.042317044,0.0560281612,0.0175704509,0.0492219254,-0.0100429002,-0.0197035652,0.0109430002,-0.0077371639,-0.0124164522,0.04779163,0.045005016,0.0257206745,-0.0289018508,-0.033685945,-0.0306773912,-0.0091859549,0.0363985784,-0.0339572094,0.0046022255,-0.0185815226,0.0523784421,-0.0210105609,0.0534141734,0.032625556,-0.0206159968,0.0319597274,-0.0029669404,0.0012021888,0.0172498673,-0.0215777475,-0.0148331597,-0.0219353214,-0.0350669213,0.0053019607,0.0449556969,-0.0579023436,-0.0202707518,0.0125212586,-0.0440925844,-0.0311212763,-0.0090318285,0.0007417351,0.0031333971,-0.0030856179,-0.0362259559,0.0114238765,-0.0429828726,-0.0111587783,0.0423910245,-0.0673718899,0.0267810673,0.0192473512,-0.0142659741,-0.0252767894,0.0356341079,0.0515893102,-0.0212325044,0.0091181397,-0.0505535789,0.0120588783,0.0430568531,-0.0181376375,0.0178293847,0.0023011127,0.0189390965,-0.0161278248,0.0073795896,0.0830065086,0.0062760422,0.047446385,0.0271509718,-0.0159921926,-0.008057747,0.0038315915,-0.0151044233,0.0129096583,0.0273729134,-0.0125150932,-0.0096175103,-0.0080947382,-0.0831544772,-0.0101846969,0.003356881,-0.0320830271,-0.0244999919,-0.0098024625,-0.0062267212,0.0465832762,-0.0337352678,0.0140440315,-0.0224655177,-0.0313925408,0.0118615963,-0.0184828825,0.0075213863,-0.0076508527,0.0441172458,0.0065041496,-0.0282606836,0.0129959695,-0.0193829816,-0.0020699224,-0.0326995365,-0.0115348473,-0.0089948382,-0.0041768355,-0.038716644,-0.0157086011,-0.0040781945,-0.0095928498,-0.030085545,-0.0333900228,0.0063315276,0.0031595987,-0.0091982856,-0.0227861013,0.0112882443,0.0061743185,-0.0580009855,-0.001189088,-0.0253754314,-0.0269290283,-0.0258193165,0.0380754769,0.0144385956,0.0460407473,0.0134028634,0.0409360714,-0.0121143637,-0.0352888666,-0.0342531316,-0.0126877157,-0.0141303418,0.0597272068,0.0221942551,-0.0192103609,0.0162264667,0.0014626631,0.0149934525,-0.0029129959,0.0149811218,-0.0064794892,0.0123856273,0.0054622525,-0.0205296855,0.0083043501,0.0106902327,-0.0057304334,-0.0218613409,0.0040812767,0.0017308436,-0.0425883085,-0.0534141734,-0.0030023893,-0.0041059372,0.0046114731,-0.0025569631,-0.0073795896,-0.0136371367,0.0246602837,-0.040566165,-0.0287538897,0.0106532425,-0.0044450159,-0.0084214862,-0.0079960963,-0.0337599255,0.0275948569,-0.051293388,0.0136987874,0.0405168459,0.0165593792,0.0405908264,-0.0408867486,0.0104867853,-0.0032274146,-0.0192720108,-0.0237601828,0.0363492556,-0.0138837397,0.0192966722,0.0161771458,-0.0191240497,0.0208256096,0.0164114181,0.0164607391,-0.0096853264,-0.019407643,0.0168676339,0.0237971731,-0.007059006,0.005764341,0.0067384224,-0.0145125762,0.0134028634,-0.0042107431,0.0097962972,-0.0665334463,0.0015582216,0.0136741269,0.0013062244,0.0416265577,0.025745336,-0.0292717554,-0.0360040143,-0.0115780029,-0.0239944551,-0.0462380312,0.0270523299,0.0120342178,-0.027496215,-0.0453749187,-0.0088961972,0.0139947105,0.0179650169,-0.0164977293,0.0431308337,-0.0004165276,0.0066891019,0.024549311,0.0168059822,0.047446385,0.0191363804,-0.0208995901,0.0390125662,0.0021623985,-0.0158442315,-0.0111217881,0.0224285275,-0.0204310436,0.0216763895,0.0059215506,-0.0033291383,0.005560894,-0.0133165531,-0.009531199,0.0486794002,0.0255727135,0.0141919926,-0.0158072412,-0.0248329043,0.0008823758,0.025646694,0.0184458923,-0.0083413403,0.0023827998,-0.0114855263,0.0095435297,-0.0249931961,0.012971309,0.0075152214,0.0204803646,0.0011651984,0.0446351133,-0.0063561881,0.0160538442,0.0217257086,0.0138344187,0.0256713554,-0.0075583765,0.0102216871,-0.0080762431,0.0345490575,0.0441419072,-0.03403119,-0.007657018,-0.0298636034,0.0185815226,0.0088345464,-0.0273235943,-0.0202584229,0.0109306704,0.0179896764,0.0272989329,-0.0105730966,0.016719671,-0.000587223,-0.043254137,-0.0219599828,-0.0053266212,0.0281373821,0.0072316281,-0.0236245506,-0.0215654168,0.0082118744,-0.0080639124,-0.0621932335,-0.0085694483,0.0011775285,0.0312445778,0.0521811582,-0.0207392983,0.0125582488,-0.0189390965,-0.0350669213,-0.0030902417,-0.0367438197,0.0226258095,-0.0172498673,-0.0181376375,-0.0268057268,0.0049752123,-0.0406154878,0.0220339634,-0.0374836288,0.0136987874,-0.0312445778,-0.03472168,-0.0063130325,-0.0079837665,0.0128849978,0.0160291847,-0.0019866941,-0.0189637579,0.0185445324,0.0132672321,0.0393824726,0.0096051805,0.0085694483,-0.0366451815,-0.0156099591,0.0032983129,-0.0275208764,-0.0175704509,0.0021623985,0.0371630453,-0.0084523121,0.0039487276,0.0149811218,-0.049887754,0.0228847433,0.0425389893,0.0141550023,0.0005375171,0.002481441,0.0087975562,-0.0056502875,-0.0180883184,-0.0202954132,-0.0406154878,-0.028038742,0.0288032107,-0.0000769189,0.0229710527,-0.0088777021,0.042415686,-0.0077063385,0.0151414135,-0.0225764886,0.0270523299,-0.0267070867,0.0256220344,-0.0225641597,-0.0567679703,0.003880912,-0.022305226,0.0075152214,0.0105422707,0.0582969077,0.0011544095,-0.0256220344,0.0399003364,0.0138344187,-0.0294443779,0.0264604837,0.0165347196,-0.027446894,-0.0553376749,0.0078974552,-0.0190007482,0.0085447878,-0.0054560876,-0.0194939543,0.0013278021,-0.0284579657,-0.0104682902,0.0055393162,0.0087667303,0.0231560059,-0.0262878612,-0.0049505518,-0.055485636,-0.0112759145,0.0355847888,-0.0114238765,0.0179896764,-0.0040596989,0.0173854996,0.0140933516,0.0055177384,-0.0300608855,0.0035479981,-0.0662375167,-0.0263618417,0.0040042135,-0.0027912357,0.0221819244,-0.0184212308,0.0113129048,0.0402455814,0.0314911827,-0.0060479343,0.0015759462,-0.0021038305,0.0396783948,0.0304061286,-0.0455228835,-0.0167813227,0.0365958586,0.0089825084,-0.0106717376,0.0428349115,-0.0115780029,-0.0143769449,-0.009777802,-0.0265837852,0.0530196093,-0.0143769449,0.0195309445,-0.0217380393,-0.0027557865,-0.041158013,-0.0264358241,0.0474217236,-0.0260905791,0.040467523,-0.0002466028,-0.0084214862,0.0158565622,-0.0102956677,0.0123794619,0.0269536898,0.03403119,0.0219106618,0.0175827816,-0.0146112172,0.0097223166,-0.0305047706,-0.0334640034,0.0260905791,0.0019373734,-0.0006770018,0.0078234747,0.0164853986,-0.0348696411,-0.0378288738,0.0133535434,0.0047625173,0.0225888193,-0.0151290838,0.0005718103,0.0177923944,0.060023129,0.0532662123,0.0041090194,0.0171758868,-0.0113437297,0.0044141905,-0.0086742546,0.0028143548,-0.0352888666,-0.0088592069,0.0066027907,-0.0712189004,0.011627323,-0.0066274512,-0.0182732698,-0.0029684815,0.0214914363,0.0027958595,0.0117814504,0.0430321954,-0.0028636754,-0.0198391974,0.0119047519,0.0125274239,0.0237231925,0.0047625173,-0.0043217144,-0.0148085002,-0.0003417761,0.0074474053,-0.0261645596,0.0254494119,0.0305787511,0.0317624435,-0.031836424,0.0355601273,-0.0127370358,-0.0026679344,0.013624806,-0.0067199273,0.0067260922,-0.0059246328,-0.0163867585,-0.0141919926,0.0122376652,0.0100120753,-0.0016198723,0.0057735885,-0.0166333616,0.0147961695,-0.0046392158,-0.0377302319,0.0462626889,0.0012368673,0.0249562059,0.0254740715,-0.0026756406,-0.0151290838,-0.0310966168,0.0147961695,0.0657443106,0.0038531693,0.0477176458,0.0112265935,-0.0325762331,0.0265344642,0.0111711081,0.0017031007,0.0306034107,-0.0032397446,0.0040165437,-0.0102093574,-0.0184828825,0.0342531316,0.0013478386,-0.0153510263,-0.0053112083,-0.0186801646,0.015067433,0.0377302319,-0.0253014509,-0.0362259559,0.0332174003,0.0305294301,0.0545978658,-0.0428595729,-0.0061743185,-0.0189760886,-0.0113745555,0.0050892658,0.0334886648,0.0417251997,0.0113622257,0.015671609,-0.0305787511,-0.0093400823,0.0206036661,-0.006223639,-0.0023689284,-0.0072377929,0.0582475886,0.0147715099,0.0056379572,0.0233902782,0.0097099869,0.0215654168,0.0099319294,-0.0140933516,0.0123794619,-0.0239204746,0.008631099,0.0013871409,0.0452516191,0.0208749287,-0.0125027634,-0.0285319481,0.0191733707,-0.0330447778,-0.0176567622,0.0149564613,0.0060201916,0.0229217336,0.0084893024,-0.0107950391,-0.0170525853,0.0289265122,0.0132918926,-0.0121760145,0.0224408582,-0.0288771912,0.0120835388,0.0292470958,-0.0154619971,0.0076755132,0.0445118099,0.005560894,0.0333160423,-0.0138344187,0.0194323026,-0.0095127039,0.0135261649,-0.011201934,0.010104551,0.0118431011,0.0154373376,0.0146235479,0.0042508161,-0.0035233379,-0.0072254627,-0.0220956132,-0.0224655177,-0.0559788421,0.007132987,-0.0269290283,0.0549924299,-0.020357063,-0.0059030554,-0.0165470503,0.0072624534,-0.0020899589,0.0103141638,0.0260412581,0.0126507254,0.0268550478,0.0212448332,0.0305540897,-0.0018356498,0.0073734247,0.0211955123,-0.0145988874,0.0174841415,-0.0030039307,-0.037878193,-0.0364478976,0.00868042,0.0326008946,0.0133042224,0.040566165,-0.0054252623,0.0161401555,0.0149071412,0.0070220158,0.0227367803,0.015314036,0.0111957686,0.0176197719,-0.0041213497,-0.0066891019,0.0033137256,0.0225888193,0.0406154878,-0.0021177018,0.0027295852,-0.0143029643,0.0006222868,-0.0152030643,-0.021158522,0.0189390965,0.0246109627,-0.0068555586,0.0468052179,0.0117814504,-0.0173361786,-0.006812403,0.0228107609,-0.0380508155,-0.0209982302,0.0012915824,0.0047594346,-0.0278907791,-0.0095435297,-0.0032335797,-0.0192473512,0.0278661195,-0.0175211318,0.0107148932,-0.0197528861,-0.0029129959,-0.0065904604,-0.0242410582,0.0384947024,-0.0232423171,0.0274715554,-0.0236615408,0.0116951391,-0.0086742546,0.0335379839,-0.0190254077,-0.0095743546,0.0282853451,-0.0018418148,0.0202337615,-0.0116334883,-0.0022995714,-0.0012884998,0.0007617716,-0.0059277155,-0.0074659009,0.0006558094,-0.0167320017,0.0022548747,0.0071946373,0.0608615801,-0.0026910533,0.0017940355,0.0119355768,0.0349929407,0.0044511813,0.0353135243,0.0097531416,-0.0067322571,0.0193336625,0.0578530245,-0.0281620435,0.0483588167,0.0231929962,0.0072624534,-0.0114423716,0.027989421,-0.0182486102,-0.0391112082,-0.0174348205,0.0072316281,-0.0192103609,0.0050214501,0.0150427725,0.007484396,0.0153017053,-0.0128110172,0.0048087551,-0.0239204746,-0.0206406564,0.0240684357,0.007385755,-0.0034740174,0.024302708,0.0185691938,0.020406384,0.0379028544,0.0556335971,0.0198885184,-0.0309486557,0.0253261104,-0.0088592069,0.0076261926,-0.0186061841,0.0011821523,-0.012052713,0.0438953042,-0.0109183406,-0.0041614226,-0.0345490575,0.0143276248,0.0168676339,0.0016738167,0.020455705,0.0049906247,0.0250671767,-0.0038654993,0.024352029,0.023501249,-0.0193213318,-0.0241547469,0.0030239671,-0.032625556,0.0292717554,-0.023501249,0.0018526037,0.0027372914,0.0125212586,-0.0236862022,0.0245863013,0.0470518209,-0.0065781306,-0.0143029643,-0.0190870594,0.0075398814,0.0136864567,-0.002919161,-0.0076693478,-0.0236862022,0.0113375653,-0.0230327044,-0.0130206291,0.0170279257,-0.0169292837,-0.0235135797,0.0143646151,-0.0212448332,-0.0163374376,0.0169292837,-0.0103758136,-0.0213681348,0.0121575193,0.0149318017,0.0534634925,0.0121266944,0.0303321481,0.017311519,-0.0193213318,0.0176690929,-0.0231313445,-0.0131439306,-0.0190377384,-0.0083968267,0.0198268667,-0.0315158404,-0.0016907706,-0.0104251346,0.0164730698,0.0227737706,0.0145618971,0.0025245964,0.0427116118,0.0145865576,0.0200981312,0.0235135797,0.025646694,-0.0310966168,-0.0176814236,0.0331927426,-0.027446894,0.0297649615,-0.0254987329,-0.0455228835,-0.0180389974,0.0169416144,0.0144139351,0.0056903604,-0.00962984,0.0209982302,0.0102401823,0.0221572649,0.0007459735,-0.0027280438,-0.024845235,-0.0041367626,-0.0004261605,-0.033932548,0.0341051705,-0.0011729047,-0.0235629007,0.0435747206,0.0049813772,-0.0035048428,0.0031303146,-0.0236615408,-0.047545027,-0.0176567622,-0.0075583765,0.0144016054,0.0306773912,0.0063500227,0.0121081993,0.0262138806,0.0190130789,-0.0239204746,-0.0058259917,-0.0123301418,0.0105915917,0.0021454445,-0.0151784038,0.0007868172,-0.007509056,0.0116026634,0.0433034562,-0.0296663195,0.0392345116,-0.0072069676,0.0027665754,0.0027095487,0.0445611328,-0.0005644893,0.0342038125,0.0026232377,-0.0063037849,-0.0167813227,0.0456215218,0.0094572185,-0.0244506709,0.0328474976,-0.0079467762,-0.0036959599,0.0184458923,-0.0089948382,0.0242903791,0.0253754314,0.0179650169,-0.0208502691,-0.0135878157,0.00012465,0.0259672776,0.0346476957,0.0143276248,-0.027446894,0.019358322,0.0045683174,-0.0024197903,0.0094942087,0.0039333152,0.0099689197,-0.0076385224,-0.0252274703,0.0149811218,0.0042446512,-0.0006812403,-0.0218983311,-0.0221572649,0.0364972204,0.0188897774,-0.0220956132,0.0122191701,-0.0049258913,0.0148701509,-0.0182979293,-0.0301102046,0.0129096583,0.0081933793,0.0053235386,0.0083598355,0.0095065394,-0.0065966258,0.0386919826,0.0115348473,-0.0012653808,0.0038254263,-0.0153633561,-0.0175457913,-0.0058444869,-0.0172991883,0.0374096483,-0.0043494576,0.0321076885,0.0040350389,0.000019892,0.0237725135,0.0064794892,-0.0439939462,0.0170772467,-0.0286305882,-0.0074412404,-0.0285812672,-0.0013216371,0.0105361063,-0.0055917189,0.0046268855,0.0164730698,-0.0127000455,-0.0135015054,0.0296170004,-0.0089825084,-0.0228230916,0.015918212,0.0169046242,-0.0151784038,0.015215395,0.0506522208,0.0250178576,-0.0502083376,0.0240561068,-0.0042384863,-0.001681523,-0.0390372276,-0.0134891747,-0.007484396,0.0119972276,-0.0221819244,0.0056040492,0.0156469494,-0.012299316,-0.0198022071,0.0373603292,0.0019080894,-0.0095127039,0.0036836297,-0.0154126771,0.003230497,0.0368671231,-0.0219476521,-0.0225148387,-0.016263457,0.0043772003,-0.0147715099,0.031589821,0.0320337079,0.0173978303,0.0080269221,-0.0041891658,-0.0093524121,-0.0264851432,0.0163620971,0.0040905243,-0.016966274,-0.0376809128,0.0077864844,0.006436334,0.0236615408,0.0007906703,0.0257206745,-0.0133535434,-0.0328968167,0.0143029643,-0.0408867486,0.0197035652,0.0028405564,0.0233779475,-0.0457448252,-0.0208995901,0.0469285175,0.0004716279,0.0222682357,0.0095866853,-0.0058660647,-0.0537100956,-0.0200981312,0.0145495674,-0.0032644051,0.0109923212,-0.0168183129,-0.0086249337,-0.009056489,-0.0598258451,-0.0037514456,0.0008191838,-0.006608956,-0.0126630552,-0.0353628471,-0.0102401823,0.0014326083,0.0191487093,0.0271016508,0.0041336799,-0.0048549934,0.0306773912,0.0090010036,-0.0144879166,0.0454982221,-0.0085139628,-0.0145865576,0.0149564613,0.0082365349,-0.0105052805,-0.0062298039,0.0211092029,0.0440679267,0.0099319294,0.0262138806,-0.0035911538,0.0030547925,0.0217380393,0.0077433288,0.008384496,-0.0482355133,0.0161894765,-0.0066027907,0.0301595256,0.0184705518,-0.0009247606,0.0055393162,0.0244136807,0.005175577,0.0023704697,-0.0070220158,0.0097469771,0.0154373376,0.0056934427,0.0057273507,0.0109738261,-0.0228354223,0.020505026,0.0058938074,0.0205420163,-0.0286552496,0.0178663749,-0.0341791511,0.0117382947,0.0144632561,-0.0100798905,-0.010252513,-0.0232669767,0.0246849433,-0.017262198,0.0041953307,-0.0031688462,0.036127314,0.0024136251,0.0219353214,0.0079221157,0.0075768721,-0.0151167531,0.0169292837,0.0085447878,-0.0046577109,-0.0232669767,0.0329214782,0.0223792065,0.0046392158,-0.0359546915,0.0019142545,0.0481122136,-0.0089516826,0.0151784038,0.0003065196,-0.0348696411,0.0275208764,0.0366451815,-0.020209102,-0.009679161,-0.0302088466,0.0127863567,-0.025991939,0.0047440222,-0.0220216326,0.0014857821,-0.0338585675,-0.0038747468,0.0134028634,-0.0176074412,-0.0206776466,-0.0009440265,0.0155359786,0.0133782038,-0.004716279,0.0224161968,0.001062704,0.0077125034,0.0277181584,-0.0010180073],"92":[-0.0083832294,0.0046215239,0.0509872288,0.0129975881,0.0358257666,-0.0028015748,-0.0286606122,0.0641424507,-0.0232580863,-0.0093791857,0.0203203745,-0.0428476147,-0.0385485254,-0.0220686719,0.0372874551,0.027313564,-0.0344787166,-0.0472040288,-0.0625947788,0.0339341648,0.0171820372,0.017110385,0.0295777526,0.0373734385,-0.0204350166,-0.0115215657,-0.0410133377,0.0389497727,-0.0193459131,-0.0628813803,-0.0012153891,-0.0418158323,-0.0300076604,0.0292481557,0.0174829736,0.023358399,0.0178412311,-0.00796765,0.0129331015,0.0449398383,-0.0238742903,-0.0148175368,0.0744029507,0.0480638482,-0.0224985816,-0.0256082565,-0.0120732831,-0.0052162316,0.0418158323,-0.0010801469,0.022856839,0.034622021,0.0105614355,-0.0307528377,-0.0238456298,-0.0627094209,-0.0012718147,0.0629387051,-0.0065167067,0.0143804625,0.0156486947,-0.0664926171,0.0283310153,-0.0011285116,-0.0117436862,-0.0312400684,0.0146885635,0.0014491522,-0.0106617482,-0.0010111822,0.0570632778,0.0194032341,0.0136926072,-0.0445385911,0.0010308864,-0.0597287156,-0.036284335,0.0733711645,-0.0179988649,0.008526532,-0.0230574626,-0.018844353,-0.0102676647,-0.0145595912,-0.0257802214,-0.0498121455,-0.0122667421,-0.0190306474,-0.0279870871,-0.0042059449,-0.0396662876,0.0695879683,0.0101530217,0.007774191,0.043592792,0.0033228397,-0.0191166289,0.0223839376,0.009278873,0.001047008,-0.0323864929,-0.0345073789,0.0111633083,0.0021728326,-0.0038082788,-0.0323578306,0.0450831428,0.0247770995,0.0318419412,0.0060402239,-0.0951532349,-0.0225845631,-0.0578371175,0.0331030078,-0.0125246877,0.0024128654,-0.0358830877,-0.0247341078,0.0331316665,-0.0135134785,-0.0152331153,-0.042704314,0.0109125283,-0.0143303061,-0.0093505252,-0.031555336,-0.0437934138,-0.0085480278,-0.062422812,-0.0001633431,0.0354818366,-0.0268549938,0.0206499714,-0.0302656069,0.0106760785,-0.0157203451,-0.0253933016,-0.0025310903,0.0256225877,-0.0101960124,-0.0139505528,-0.0436214507,-0.0067853997,-0.0067352438,-0.0163652096,-0.0122237513,-0.0125461826,0.0236163437,-0.0063841515,0.0087558171,-0.0288469065,-0.0310107823,-0.04961152,-0.0082685864,0.0249920543,0.0229284894,0.0307241771,0.0498408042,-0.0117006954,-0.0582097024,0.0343927331,0.0558595322,-0.0014536304,-0.0050478503,-0.0061226231,-0.0054741767,-0.0097302776,-0.0358830877,-0.0671231523,-0.0210368894,-0.0650595874,-0.0475192964,-0.0161932465,0.0480065271,0.0353385359,0.0163365491,-0.0133773405,-0.0395803042,0.0026761848,-0.0253503118,-0.0560888201,0.011901319,-0.0448538586,-0.0135707995,-0.045369748,0.0104396278,-0.0391790569,-0.0113925934,-0.0198618043,0.0531367771,-0.0540539138,0.0654035211,-0.0037724532,-0.0135922953,0.0753774121,-0.0155627122,0.0461149253,-0.0000308437,0.0171390455,0.020793274,0.0161502548,0.0470607243,0.0733711645,-0.0339341648,0.018672388,-0.0097302776,-0.0064844633,-0.0044961334,-0.0492675938,-0.0117293559,-0.0091212401,0.0235017017,0.0260381661,0.0441373438,0.0073084561,-0.0025292991,-0.0683268979,0.0244618319,-0.0026994713,0.0020205732,-0.0293771271,0.077326335,0.0064271423,-0.0237596482,-0.0131838815,0.0259665139,0.0267833415,-0.0257085692,0.0502707139,0.0238599591,-0.0139218923,-0.0471467078,-0.0001979373,-0.0472040288,-0.0194032341,-0.0116433734,0.0231434442,-0.0347080007,0.0152044548,0.0055422457,-0.0031795367,-0.011843998,0.0373161174,0.0084978715,0.0200337674,-0.0062551787,-0.0454270691,-0.0063877339,0.0086268447,0.0270556174,0.015605703,-0.0028535223,-0.0149608394,-0.0011303029,0.0011016423,-0.0040877201,-0.0454843901,0.0316986367,0.0032261102,0.0011132857,0.0167521276,-0.0571492612,-0.0365709402,0.0218680464,-0.0367429033,0.0541972183,-0.0164225306,-0.0176262762,0.0098664155,-0.0317846201,0.0334755965,0.0231147837,0.0224842504,-0.0147458855,-0.0437647551,-0.0327304192,-0.0202630535,0.0095081581,0.0045642024,-0.009895076,0.0183284618,-0.01265366,0.0086268447,0.0056031495,0.04448127,0.0288612358,0.0282163732,0.0304948911,-0.0220543407,-0.0271272697,0.0153477583,0.0136137912,0.0387778096,0.0007886147,0.0155627122,0.0171390455,-0.001537821,0.0106904088,-0.0255222749,-0.0167521276,0.0132483682,-0.033389613,-0.0094580017,-0.0184574351,0.0011938936,-0.0249347333,-0.0092287175,-0.0080751274,0.0095153237,0.0117436862,-0.0357397832,-0.0265683886,-0.0080607971,0.0339341648,-0.0254936144,0.0178985521,0.0566906929,0.0015727511,-0.0120732831,-0.0639131665,-0.0302369464,-0.0454557315,0.0055279154,-0.0407267287,0.0421597622,0.0095153237,0.0538246296,-0.0184287746,-0.0088704592,-0.0040447288,-0.0034589777,-0.0206356402,0.0153764188,-0.0359404087,0.0006936764,-0.0070612584,0.0170244034,0.0022140322,0.0103536462,-0.0355678201,0.0005750036,-0.0378033482,-0.076925084,-0.0077168699,0.0628813803,-0.0170673952,-0.0155197214,-0.0399528928,0.0092287175,0.0040447288,-0.0410419963,-0.0019310088,-0.0102748293,-0.030380249,-0.0109268585,-0.0116003826,0.0153047666,0.0255079456,0.0026618543,-0.0057536177,-0.032099884,0.0959557295,0.0014410914,-0.0185290854,0.0275858399,0.0302942675,0.0022534407,0.0252929907,-0.0384912007,-0.040239498,0.0096299658,-0.0322431885,-0.0071794833,-0.0164082013,-0.0855232701,0.021180192,0.0590408631,-0.0097661037,0.0061727795,0.0725686699,0.0823706016,0.007888834,0.0081324484,-0.0104038026,0.0087629827,0.0120661175,0.0189589951,0.031268727,-0.040583428,-0.0147028938,0.0008629531,-0.0611617453,-0.0155627122,-0.0033604568,-0.0111919688,-0.0161359254,0.010704739,0.0291908327,0.041529227,0.0022444841,0.0216244329,0.0069681113,-0.0571779199,0.0424177051,-0.0011007467,-0.0080607971,-0.0216244329,0.0336188972,-0.0484937578,-0.0030183208,-0.0379179902,-0.0449971631,0.0361410305,-0.0065704454,-0.0071293274,-0.007358612,-0.0257372297,0.0267116912,0.0219110381,0.0176406074,-0.0486083999,0.0086555053,0.0066779228,-0.0042704311,-0.0225702319,-0.0032332754,0.0401248559,-0.0202487223,0.0107907206,-0.0729699209,-0.0309821218,0.0080178063,0.0104252975,0.0088059735,-0.0453984104,0.0007720452,0.0167521276,-0.0130692394,0.0341921113,0.0211945232,0.0137785897,0.0100813704,0.0127969636,-0.0038190265,-0.0505286604,0.0001388248,-0.0050406852,-0.0227708556,-0.0430195779,0.0109770149,0.0525922254,-0.0409560166,0.0080536325,0.0266257096,-0.0110486662,-0.022799518,0.0353098735,0.0284599885,-0.0028857654,0.0047075055,-0.0788740069,0.0526495464,-0.0615629964,0.0317272991,-0.0338481814,-0.0319852419,-0.0144807743,-0.0481211692,0.0175976157,-0.0362556763,0.0044065691,-0.0004339396,-0.0405547656,-0.028374007,-0.0230001416,0.0087916432,0.018672388,-0.0107907206,-0.0045462898,-0.0014339263,0.0039623296,-0.0123312287,-0.0409273542,0.054684449,0.0188730136,0.0163652096,-0.0097875996,0.045312427,0.0228281785,0.0219110381,0.0032189451,-0.0003195211,0.0671804771,-0.0174113214,-0.0116433734,-0.0179702044,-0.0388637893,-0.051331155,-0.0380899534,-0.0000749542,0.0444526114,-0.0168237798,0.0063447431,0.0549137332,-0.0175976157,0.0365996026,-0.0264394153,-0.0328737237,0.0019166785,-0.0258232113,-0.0079748156,0.0441660024,0.0268979855,0.0317846201,-0.0168094486,0.0125676785,0.0139792133,0.0181278381,-0.0006193379,-0.0054204385,-0.0398669131,-0.0085623581,-0.0349372849,0.0219110381,0.0046430193,0.0390930735,-0.0375167429,0.0016336549,-0.0055279154,0.0270126276,0.0214238074,0.0122380815,0.0302082859,0.0089349458,-0.0429909192,0.0034356909,-0.0100813704,-0.0428189561,-0.0456276946,0.0070469282,0.0046609319,0.0322718509,0.0032637273,0.0556589104,0.0109913452,0.0089206155,0.0088274684,-0.034278091,0.0096729565,0.0774982944,0.022684874,-0.0407267287,0.0343640745,0.0044137342,0.0185004249,0.0064880461,-0.0136926072,-0.0042919265,0.0132197076,0.0129259359,0.0230431315,0.022240635,0.0069072074,0.025192678,-0.0092143873,0.0421884209,0.0150611522,-0.026253121,-0.0177552495,0.0278724451,0.028818246,-0.0304948911,0.0055780718,0.0390930735,0.0283023547,-0.0091713956,-0.031211406,-0.0115645574,0.0164941829,0.0467741191,-0.0416725315,-0.020349035,-0.0251066964,-0.0007913016,-0.0009050484,-0.0040518939,0.0245048236,0.0161932465,0.0185147561,0.0217247438,0.0200910885,-0.0031455022,0.0101601873,0.011399759,0.0030290685,0.0047325836,0.0067173312,-0.0000016059,-0.0117795113,0.0197614916,0.0117006954,0.0253503118,0.0316986367,-0.0273852143,-0.0404687859,0.0265110657,0.0494108945,0.0056318105,0.0197614916,-0.0009592349,0.0042704311,0.0351379104,-0.0078530079,-0.0451691262,-0.0322431885,0.0110271703,0.00702185,-0.0154050793,0.0459716208,0.0159209706,-0.0242325477,-0.0345647,-0.014215664,-0.0240892451,-0.0125748441,0.0040303986,0.0169384219,-0.0126178348,-0.0074445941,0.0036667672,0.0037975311,-0.0102676647,-0.0053344565,-0.0242898688,-0.0210942104,0.0155770425,0.0089994324,0.0352238938,0.0168237798,-0.0054025254,0.0349659473,0.0054347687,-0.0124100456,-0.002969956,0.0299503393,-0.0101171965,-0.0113639329,0.0610471033,0.0199191254,-0.0132770287,-0.0194318946,0.0098234247,0.0276718214,0.0140723605,0.0161789153,0.010145857,-0.0212231837,0.0053272913,-0.0119873015,0.0296923947,-0.0281160604,0.0201914012,0.0079103289,0.0045462898,-0.00204386,0.0132770287,0.0112492908,0.0250637047,0.0219826903,0.0412999429,0.0026009507,0.0075449063,0.0081682745,-0.000223911,0.0302942675,-0.0000770814,-0.0112779513,-0.0176979285,0.0294057876,0.0054347687,0.0137499291,0.0217820648,-0.0314693525,0.0206069797,-0.0098090945,0.0124172103,0.0052735526,0.0096228002,0.0148748579,-0.0012691277,-0.0089206155,-0.0221976452,-0.0025615422,-0.0172250271,0.0004225201,-0.0401248559,0.0254076328,0.0191452894,-0.0126608256,-0.0489523262,-0.0020080341,0.0040877201,-0.0646583438,-0.0160356127,-0.0103751421,-0.0223409478,0.017726589,0.0100383796,0.0283310153,0.0183714516,-0.0489523262,0.000510965,-0.01917395,-0.0006977068,0.0044137342,-0.013212542,-0.0106402524,0.0016193246,-0.0187153798,0.0210082289,-0.0395229831,-0.001535134,-0.0299216788,-0.0280873999,0.0198044833,-0.004331335,-0.005101589,0.0681549385,0.0166948065,-0.0543691814,0.0108337114,0.018228149,0.0426183306,-0.0127468072,0.0321858674,0.0053666998,-0.0203920249,-0.0181421675,-0.0219683591,-0.0101960124,-0.0582097024,0.0106330868,-0.0382045954,0.0092860386,-0.0015261776,-0.0188156925,0.0073371166,0.0534807034,0.0201054197,0.015663024,-0.0108050508,0.0138717368,-0.0061512841,0.0154624004,-0.0248774122,-0.0267403517,0.003380161,0.0092358822,-0.0026815585,0.0348799638,-0.0024630213,0.0537386499,-0.0424463674,0.0156486947,-0.0045283767,0.0131193949,-0.0195465367,-0.0109125283,0.0375454016,-0.0228138473,0.0098162601,-0.0124100456,-0.0005741079,0.0034607688,0.0203633644,-0.0278294552,-0.011148978,-0.0090424232,-0.0021638763,-0.0095368186,0.0474046543,0.0043134224,-0.0164511912,-0.0240462534,0.001286145,-0.017497303,0.016666146,0.0183571223,-0.0166518167,-0.0272275824,-0.0038691827,0.019732831,-0.0220113508,0.0181278381,-0.0178555623,0.0136854425,0.0109196929,-0.0668938681,-0.0316413157,0.01778391,-0.0091499006,-0.0005776905,-0.006394899,0.0080751274,0.0382332578,0.0221976452,-0.0411566384,0.0044889683,-0.029319806,-0.01917395,0.0289185587,-0.0127324769,-0.0087844776,0.0316699781,0.0518470481,-0.008275752,0.0412426218,-0.0122237513,-0.0145739214,0.0045713675,0.0471467078,-0.0129474318,-0.0403254814,-0.0088489642,0.0413859226,0.0236163437,-0.0291621722,-0.0162505675,0.0236306749,-0.0108337114,0.0210368894,-0.0358830877,0.016221907,0.0195751991,0.0287322644,-0.0189446639,0.0027227581,-0.0394083411,-0.0266830307,0.0045749503,-0.0592701472,-0.0003658706,-0.0046036108,0.0249347333,-0.0007214413,-0.0087701473,0.0115144011,-0.0176119469,-0.0228425078,-0.0150038302,0.0065561151,-0.0297210552,0.0096084699,-0.0509872288,0.007638053,-0.0076953745,0.018113507,-0.0081754401,-0.0191882793,0.0150181605,-0.0496975034,-0.0481498279,0.016666146,-0.0135493046,0.0463155508,0.012768303,-0.0085408622,0.0453984104,0.044423949,0.0161215942,0.0107907206,0.0163795408,-0.034622021,0.0087701473,0.0098664155,0.0429335982,-0.0379753113,-0.0018092012,0.0057679485,-0.0088776248,0.0227851868,0.0001743147,-0.0398669131,-0.0043349178,0.0143804625,0.0065740282,0.0084548807,0.01170786,-0.0049511208,-0.0233440679,-0.0083975596,0.0540539138,0.0290905219,0.0036130284,-0.0087056607,0.0165085122,-0.0014912474,0.004137876,0.0309821218,0.016049942,0.0121807605,-0.0133343497,0.0148175368,0.0081969351,-0.0221259929,-0.0157633368,-0.007888834,-0.0046179411,0.002025947,0.031612657,0.0136281215,0.0124673666,0.0171390455,-0.0089851022,-0.0575218499,0.0003166102,-0.0181851592,0.064199768,-0.0403828025,-0.0050371028,0.0226418842,0.0139720486,0.0045785327,0.0442519858,0.0163652096,0.009780434,-0.0029484604,0.0163222179,0.0399528928,0.0176549368,0.0413286015,-0.0161072649,-0.0188586824,0.0101386914,-0.0220256802,0.0106259221,-0.0046071936,0.0079891458,-0.0161359254,-0.0111633083,0.0353385359,0.0111203175,0.0367429033,-0.0111274831,0.0438793972,-0.0300363209,0.0460289419,0.0305808727,0.0065238718,0.0040053204,0.072282061,0.0080751274,0.0115717221,-0.0304089095,-0.0366569236,-0.028431328,0.0241179056,0.0021119288,0.0511305332,0.0161072649,-0.0175259653,0.011843998,-0.0190736372,-0.0553723015,-0.0084835412,0.018844353,0.0008486228,-0.0006372508,-0.0234587118,-0.0033461265,-0.0105471052,0.0285459701,-0.0084620453,0.0198474731,-0.0035055513,0.0086483397,0.043191541,-0.0298930183,-0.0129116056,0.0055637415,0.0175976157,0.0170387346,-0.0170960557,-0.0040483116,-0.0165658332,-0.0116003826,-0.0115788877,0.0285889599,0.0046143588,0.0276001692,0.001286145,-0.0084118899,-0.0016730633,-0.0040913024,0.0317846201,-0.0355678201,0.0266400389,-0.0237883087,0.0151041429,-0.0062229354,-0.0103106555,0.0084978715,-0.0009466959,-0.0256655775,-0.0095941396,-0.0458283201,0.0216960832,0.0139218923,0.0210512206,0.006258761,-0.0139290579,-0.0011643374,0.0276288297,0.0040268162,0.0119801359,-0.0149894999,0.0048866342,-0.0230144709,0.0019739997,-0.0085122017,0.0338481814,-0.0194892157,0.0214954596,-0.0419591367,-0.0148175368,-0.025866203,0.0279154368,0.0166804772,0.0197185017,0.0120302923,-0.0026690196,0.0071436577,0.0095009934,0.009952398,-0.0204923376,-0.0411853008,0.0095368186,-0.0142658195,0.0063769864,0.0396089666,-0.0302942675,-0.0074660894,-0.0105184447,0.0556589104,0.0187010504,0.00585393,-0.0239172801,-0.020678632,0.0293771271,0.0077097048,-0.0081539443,0.0155770425,0.0187583715,0.031555336,0.0405547656,-0.0034786819,-0.0060187285,0.0314980112,-0.0120732831,0.0229714811,-0.0139720486,-0.0246911179,-0.010590096,0.0081611089,-0.0074804197,-0.0128399543,0.0243042,-0.0210368894,0.0162362363,0.0039085909,0.0058073564,-0.0077025397,-0.0078458423,-0.0426756516,0.0212661736,0.0009171396,0.0161359254,-0.0471467078,0.0144807743,-0.0019919125,0.0373161174,0.0485224165,-0.0090209274,-0.0115000708,-0.003032651,0.0080894576,-0.0338481814,-0.0001153142,-0.0261957999,-0.0215097889,-0.0125748441,0.0050980062,-0.0122882379,-0.0268120021,-0.0048866342,0.0108695375,-0.0128471199,0.031555336,-0.0050406852,0.0040662242,0.0009502784,0.0324724726,-0.0018038272,0.0066349315,-0.0198904648,-0.0135779651,0.014022205,0.0073156212,-0.0034822645,0.0212231837,0.0286892727,0.0230574626,0.0113281067,0.0308388192,0.0298356973,0.0114929052,0.0264824051,-0.0060509718,0.0114642447,0.0063805687,0.0539392717,-0.019231271,-0.0084907068,0.0026296112,0.0037151319,-0.0122739077,-0.00178681,-0.0197041705,0.0009198265,0.0247197784,0.0130477436,-0.0255366061,0.0137642594,0.0089134509,-0.0182854701,0.0196611807,-0.0245191529,0.0033819522,0.0198761355,-0.0181278381,-0.0073048738,-0.0069036251,-0.0331316665,-0.0012413628,0.0185720772,0.0351952314,0.0177982394,0.0725686699,-0.0191452894,0.0114929052,-0.0068463036,0.0195322074,-0.019231271,-0.0022409016,0.0427902937,-0.0031992409,0.0221976452,-0.0080464669,-0.0228425078,-0.0098879114,0.0370295122,-0.019288592,-0.0431628823,-0.0208219346,0.0163365491,0.0000001819,-0.0117508508,0.0540252551,0.0005933642,-0.0011159726,-0.0109196929,0.0004657349,-0.0078458423,0.0053487867,0.0080178063,-0.0076738792,0.0239172801,0.0218250565,0.007387273,0.0354818366,0.0126249995,0.0037724532,0.0289185587,-0.0085981833,-0.0204636771,-0.0069788592,-0.0263247732,0.0015987247,0.0006381464,-0.0109913452,-0.0078028515,-0.0046716798,-0.0055816541,0.0086268447,-0.0270986091,-0.0102604991,-0.0613910332,-0.0237883087,-0.01967551,0.0317846201,-0.0185864065,0.0142371589,0.0288325753,0.043592792,0.0259378534,0.0126751559,0.035510499,-0.0116433734,-0.0151901245,-0.0137714241,0.0150038302,-0.038405221,-0.0131623866,-0.0044065691,-0.0131623866,-0.0000961698,-0.0108337114,0.0358257666,0.0152474456,0.0020492338,0.0293341372,0.0112062991,0.0310394429,0.0035395855,0.0408700332,0.0270699486,-0.0298643578,-0.0655181631,-0.0021029725,-0.0229284894,0.0188013613,-0.0381759368,-0.0150324907,0.0129545964,-0.0025436294,-0.0208505951,0.0248487517,0.0330456868,0.0089851022,-0.0046501844,0.0074804197,-0.0092072217,-0.0082399258,-0.0231864359,-0.0061620316,0.0276431609,0.0105757657,-0.0065704454,0.0203633644,0.0215241201,0.0153190969,-0.0248487517,-0.0271845907,-0.0222119745,0.0045677852,-0.0192026105,-0.015663024,-0.0160212815,0.0208935868,0.0295777526,0.0138932317,0.0293484665,0.0032583533,0.0105471052,-0.0071579879,-0.0276431609,-0.0119873015,0.0318992622,0.0109985098,0.0007129327,-0.0015539426,-0.0149465092,0.0301223043,0.0203633644,-0.0164941829,0.0057392875,0.0019435477,-0.0056927139,0.0288898963,0.0249060728,-0.0306668561,0.0139577184,0.0219683591,0.0020420686,-0.0199334566,0.0009153483,0.0130764041,-0.0323291719,-0.0041127978,-0.0258805323,0.0167377982,0.0134991482,-0.0090209274,0.003231484,0.0327590816,0.0092860386,0.0050621806,-0.0316413157,0.0031168417,0.0175832864,0.0295777526,-0.0291621722,-0.0321572088,0.0196468495,0.0081682745,0.0049654511,0.0034374823,0.0120804477,0.0041772844,-0.0267976727,-0.0004016964,0.0389497727,-0.0235876832,0.0206499714,-0.0110056754,-0.0040805545,-0.0200194381,0.0122954026,-0.0080393022,-0.0014106395,0.0089492761,0.0141798379,-0.0395803042,-0.0221403223,0.0193315838,0.0021943282,-0.002821279,-0.0000431029,-0.0008517576,0.0252356697,0.0221689828,0.0099165719,0.0176835973,0.0013210751,0.0013461531,0.0114929052,0.0034983859,-0.0182138197,-0.0180561859,-0.0491529517,0.0144306179,0.016608825,0.0148461973,0.012904441,0.0252213385,-0.0434494875,0.0195322074,0.0162935574,-0.0101673519,-0.0251353569,-0.0091642309,0.0086770002,0.0060939626,-0.0104396278,0.0217247438,0.0148032065,0.0151184732,0.0058861733,-0.001270919,-0.0188300218,0.01145708,0.0033837436,-0.0155197214,-0.0000951062,0.0411853008,0.0010255126,-0.0365136191,-0.010590096,0.0124960272,-0.0066958354,-0.0149608394,-0.0021262593,0.0595567524,0.0337048806,-0.0285459701,-0.0092502125,0.0197185017,0.0015682728,-0.0146670686,-0.0033586656,0.0316699781,-0.0453984104,-0.0103679765,-0.009780434,-0.0454270691,0.0275141876,-0.0056103147,-0.0095583145,-0.0059757377,0.0054276036,0.0137069374,0.0207216218,-0.0024522736,0.0132340379,0.01728235,0.0011616504,0.0072224741,-0.0022391104,0.0494395569,0.001618429,0.0001570736,-0.0292768162,0.0078028515,0.0250063837,-0.0114499144,-0.0049511208,0.0261814687,0.0010738773,-0.00796765,0.0209652372,-0.0013658573,-0.0080894576,0.0147315543,0.0305235516,-0.0125461826,-0.0366282612,0.037631385,-0.0226132236,-0.0065346197,0.01429448,-0.0089206155,-0.0124100456,-0.0114499144,0.0089707719,0.0136352861,0.0064522205,-0.0071687358,-0.0194032341,-0.026869325,0.0071687358,0.0125103574,0.0039551645,-0.016049942,-0.0051374147,-0.0175402947,0.0064020641,0.0336762182,-0.011148978,0.0334469341,-0.0016829154,0.0335042551,0.0012807711,0.0036148198,-0.0142873153,0.0289328881,0.0116218785,-0.0069752764,-0.0168381091,-0.0248487517,-0.0112206293,-0.0379753113,0.0276145004,0.0233154073,0.0129331015,-0.0224412587,-0.0216674227,-0.0209652372,0.0374021009,0.0244045109,-0.0042990916,-0.0347939841,0.0025991593,0.0334469341,0.0056210626,0.0112707857,0.0022713535,0.0181564987,0.0374021009,-0.0114499144,0.0190019868,-0.0122667421,0.0293771271,0.0012888319,0.0120446226,-0.0045319595,0.021122871,-0.0233297385,0.0543978438,-0.0217247438,0.0289185587,0.0009189309,0.0394370034,0.0236306749,-0.0095153237,0.0024074914,0.01265366,-0.0084262202,-0.0032905967,0.0136496164,-0.0131193949,0.0185290854,-0.0156343635,0.0255222749,0.0108050508,-0.0178125706,-0.0029627909,-0.013520644,0.0288325753,0.0562894419,-0.0262244605,-0.0097446078,-0.0198761355,0.0170244034,-0.0003508686,0.0146384081,-0.0313833691,0.0234730411,0.0048293131,-0.002479143,-0.0251066964,-0.0067459918,-0.0167377982,0.0286606122,0.0310967639,0.0070576756,-0.0026260286,-0.0225559026,0.018844353,0.0080607971,0.0148748579,-0.0287752543,-0.0356538035,-0.043592792,0.0084190546,-0.0118869888,-0.0098162601,0.0022606058,0.0294631086,0.0051553277,0.0154050793,0.0328450613,0.0055207503,-0.0008513097,0.0091857258,-0.0066528446,-0.0329883657],"93":[-0.0382438414,0.0222561918,0.041148074,-0.0166346338,0.0441385694,0.0047445367,-0.0166490115,0.0058012744,-0.0206027925,0.0017567367,0.0484805405,-0.0199845638,-0.0047337539,-0.0234926455,0.0626854002,0.0289848074,-0.0136441384,-0.022716267,-0.0487105772,0.0515860543,0.0005643123,0.0216667186,0.0148374606,0.0070844563,-0.0240964964,-0.0163614638,-0.0135938171,0.0483655222,-0.0143701956,-0.0481929928,-0.0016138614,-0.0502058268,-0.020372754,0.007706278,0.0491706543,0.0360584818,0.0476178974,0.006034907,0.0165339913,0.0285247304,-0.0374099538,0.006232596,0.0252323095,0.0262531042,-0.0133278351,-0.0421544909,-0.01835992,-0.0003043962,0.0141904783,0.0327516831,-0.0042521115,0.004622329,-0.0235932879,-0.0269288421,-0.005161481,-0.046093896,-0.0141617237,0.0568481795,0.0417806804,-0.0156282168,0.0032744494,-0.0564456135,0.0075481269,0.006699861,-0.0449724607,0.0168790501,-0.0179861076,0.018158637,-0.0342756845,-0.0045216875,0.0642381534,0.0145714795,-0.0063476153,-0.0266556703,0.024053365,-0.0721744671,-0.0389339589,0.0573370084,-0.0176554285,0.0013110378,0.0137591567,-0.0171665978,-0.0294448826,0.0152400276,0.0064015305,-0.0428733602,-0.0326366611,-0.0305088107,-0.0230181925,-0.0080944672,-0.0544902869,0.0498895235,-0.0136297606,0.0162608214,0.0179285984,0.0206027925,-0.0121560786,0.0180579945,-0.03913524,0.0132847037,-0.0303937905,-0.0309401322,0.0091368277,-0.004924254,0.0333267786,-0.0251748003,0.0224430971,-0.0073899757,0.0222705696,-0.0040292619,-0.0886221975,-0.0362885185,-0.0396815799,0.0400841497,0.0096328473,-0.000079918,0.00382079,-0.0177129377,0.0210484918,-0.0272595212,-0.018561203,-0.0383301079,0.0148805929,0.0283234473,-0.0157288592,0.0292435996,-0.0248009879,-0.0166346338,-0.0339306258,0.0064554457,0.0143989511,-0.0442823432,0.0008837599,-0.0418956988,-0.0259511787,0.0019499328,-0.0437360033,-0.0025987122,0.016893426,-0.0047121877,-0.0195532423,-0.0442248359,0.0047085932,-0.0143989511,-0.0301349983,0.0048128297,-0.0036913934,0.0167640299,-0.0058911331,0.0060420958,-0.0011501907,-0.0249735173,-0.0330967382,-0.0181155037,0.0626854002,-0.0163758416,-0.007339655,0.010926812,0.0211347546,-0.0568481795,0.0276908427,0.0308826212,0.0273601636,0.0089571103,0.0059989635,0.0085617322,-0.029617412,-0.0407167524,-0.0789605975,-0.0108477371,-0.0328091905,-0.0040112901,-0.0263825003,0.0240677409,0.0159588978,0.0231619664,-0.0367485955,-0.0458638556,0.0037848465,-0.0252323095,-0.038128823,0.022989437,-0.0515573025,-0.0125370789,-0.0311989244,0.0056934441,-0.0705066919,0.0012454409,0.0105314339,0.0453462712,-0.061247658,0.0756825507,0.0103157731,0.0126880417,0.0557267442,-0.036317274,0.0445411392,0.0174541455,0.0215517003,0.0005144408,0.0462664217,0.0195244886,0.0669411048,-0.0327516831,-0.0097909989,0.0380425602,0.0250166487,0.0144277057,-0.0381863341,-0.021781737,-0.0071491543,0.0296749212,0.0095681492,0.0291285813,-0.0015141183,-0.0256204996,-0.0717143938,-0.0112359263,-0.0016264416,0.0030228451,-0.0196826402,0.0679762736,-0.0162895769,-0.0060492847,-0.0139101194,0.0154413106,-0.0016686752,-0.00390346,0.0507521667,-0.0152544053,-0.0046978104,-0.057423275,-0.0020919095,-0.0198120363,0.0025394056,-0.019898301,0.0041334978,-0.0176554285,-0.0153119145,-0.0653308332,-0.0180148631,0.0149812344,0.0092087146,0.0215229448,0.0006460837,-0.0018151448,-0.0353683643,-0.0339881368,-0.0057581426,0.0216667186,0.0193519592,-0.0300487336,0.0015671349,-0.0193232056,-0.0073971641,-0.0364322923,-0.0321765877,0.0203152448,0.0149381021,0.0381575786,0.0244127996,-0.0375537276,-0.0001224324,-0.0130546652,-0.038128823,0.033901874,0.0243265349,-0.0585159548,-0.0015464674,-0.0258792918,0.0492856726,0.0209766049,0.0375249721,-0.0434484556,-0.0633755103,-0.0318027735,-0.0299912244,-0.0025717546,-0.0038890825,0.0036356812,-0.0076487684,-0.0257786512,0.0385313891,-0.0134787979,0.0379275419,0.0208184533,0.0376975015,0.0288985427,0.0362022556,-0.0287116375,0.0071096169,0.0105745662,0.0221986827,-0.0536851548,0.0168502945,0.0158438776,-0.0197976585,0.0194669794,-0.045029968,-0.0357996859,0.0034559639,0.0026041039,-0.0024531411,-0.0205165278,-0.0049853581,0.0109052463,-0.0068759844,-0.019898301,0.00917996,0.0044102627,-0.0114659639,-0.0454612896,0.0314577185,0.0172959939,-0.0354546309,0.010517057,0.0483367667,0.0356271602,-0.0132271936,-0.0967310444,-0.0137304021,-0.0848265663,0.0024711129,0.0006910131,0.0457488373,-0.0039933184,0.0015132197,0.0167927854,-0.000713927,-0.0204015095,-0.01561384,-0.023722684,0.0207609441,0.0254048388,-0.0100066597,-0.0108046047,0.0171809737,0.0155994622,-0.0147943282,-0.0013676487,-0.0222993232,-0.0225581173,-0.0906925425,0.0050069243,0.0384451263,-0.0172816161,-0.0464964621,-0.024254648,0.0140467044,0.0028305475,-0.0291142035,-0.0201570932,-0.0010459548,-0.0158438776,0.0198120363,0.0173678808,0.0003715655,0.0199270546,-0.0013820261,-0.007842863,-0.0282371826,0.0351670831,0.000986648,0.00063575,0.0145858563,0.0036195065,-0.0259511787,-0.0113653224,-0.0663084984,-0.0224430971,0.0416944139,-0.0351958387,-0.0129899671,-0.0253041964,-0.0956383646,-0.0053304154,0.0463526882,0.0071455603,-0.0048092352,0.0894848406,0.0474166125,-0.0093956208,0.0262099728,-0.0033193787,0.028610995,0.0264400095,-0.0071779094,0.0368636139,-0.0387614295,0.0041083377,0.0360872336,-0.012666476,-0.015009989,-0.0040364508,-0.0511547327,-0.0102798296,-0.0222993232,0.0182736553,0.0496882424,0.0240246095,0.0508384332,0.0087414496,-0.0471578203,0.0079506934,0.0026310615,-0.0146289887,0.006498578,0.0193088278,-0.034649495,-0.0062254076,-0.0268569551,-0.0167640299,0.0209478494,0.0107183401,0.0509534515,-0.0225868709,-0.0246284604,0.0471290648,0.0344194584,0.0352245905,-0.0319753028,-0.0021116782,-0.0245421957,-0.0011043629,-0.0530813038,0.0395090543,0.0720019415,-0.020904718,-0.0198839232,-0.0861492902,0.0149093475,0.0055712364,0.0227306448,0.0117678894,-0.044627402,0.0187624861,0.0223712102,-0.0456625745,0.0210916232,0.0285103545,0.0198264141,0.0255198572,0.0293154866,-0.0032025625,-0.0295599028,0.0122423433,-0.034246929,-0.047100313,-0.0258936696,0.0026400473,0.0422695093,-0.0104164155,-0.0061355489,0.0400266387,-0.0100066597,-0.0211491324,0.028941676,-0.0076847118,0.0000694158,0.0095681492,-0.0762576461,0.0369498767,-0.0537139103,-0.0086623738,-0.0269144643,-0.0101001123,0.0485955589,-0.0425283052,0.0175691638,-0.0199701879,0.0115378508,0.011660059,-0.0207609441,-0.03188904,-0.0048703388,0.0229031742,0.0622828305,-0.0106033208,0.01715222,-0.0017863901,0.0199414324,-0.0424707942,-0.0437072478,0.0642381534,0.0157001037,0.0509822071,0.0021458247,0.0155563299,-0.0216523409,0.0226875134,-0.0334130414,-0.0202721115,0.0351958387,-0.0172384847,-0.0236795526,0.0215660762,-0.0812034681,-0.0439947955,-0.0259799343,0.0011465964,0.0424420387,-0.023320118,0.0151968952,0.0509534515,-0.0104667358,0.025663631,0.0074618626,0.00373812,-0.0017585339,-0.0320903212,-0.0123789283,0.028409712,0.0159301423,0.035655912,-0.0447711758,-0.0024369666,0.0147799514,0.0198264141,-0.0089355446,-0.0047984519,-0.0486530699,-0.0232050978,-0.0506371483,-0.0013263137,0.0022878014,0.0090361862,-0.0317452662,-0.0210916232,-0.0273889173,0.0086767515,0.0354258753,-0.0043994798,0.0093237339,-0.0064302851,-0.0502058268,0.0142264217,-0.0024531411,-0.0212210193,-0.0311414152,0.0165196154,0.0140179498,0.0345919877,0.0224143434,0.0406017341,0.0097981878,-0.0030048734,0.0031971708,-0.0211778879,0.0124364374,0.087299481,0.0246715918,-0.0208040755,0.012997156,-0.0104883024,0.0095609603,0.0300774891,-0.0029976848,0.0049745752,0.0353971198,-0.0030138593,0.0122567201,-0.0019139893,0.0070485128,-0.0051866416,0.0085976757,0.0187049769,-0.0003082152,-0.0376399942,-0.0375537276,0.0058551896,0.0111856051,-0.0305088107,0.0311989244,0.0352821015,-0.0160451606,0.004255706,-0.0019553243,-0.009920395,-0.0043455646,0.0125586456,-0.040199168,-0.0213791709,-0.0303362813,-0.0170228239,-0.015211273,0.0104451701,0.021580454,0.019366337,0.0002334078,0.0002545246,0.0069802203,-0.0103804721,-0.0058875391,0.0128102498,0.0144564603,0.002179971,0.0163039546,-0.0018762486,-0.0171090867,0.0169365592,0.0029240006,0.0226443801,0.0251460448,-0.0302500166,-0.0314289629,0.027676465,0.0219542664,0.0224287193,0.0225006063,0.0165339913,0.0043275929,-0.0006254162,0.0063512097,-0.0521899052,-0.0147655737,0.0032546804,-0.0090002427,-0.0157001037,0.0342181735,0.0034883129,-0.0399978831,-0.0128461933,-0.0129037024,-0.0400553942,-0.0261093304,0.0320903212,0.0095969038,-0.0016893427,-0.0174972769,0.0017207932,0.0096328473,-0.0114443982,0.0122351544,-0.0102942074,-0.0209334716,0.0368348584,0.0057976805,0.0465252176,0.0118757198,-0.0057365764,0.0269863512,0.0219973978,-0.0113868881,0.0109483786,0.0409755446,-0.0197113939,-0.0069298996,0.0435347222,-0.0171953514,-0.0111137182,-0.0200276971,0.0043168096,0.0381575786,0.0195532423,0.0162033122,0.0033768881,-0.0068687955,-0.0110490201,0.0006267641,0.0318602845,-0.0141329691,0.0094746966,0.0086264303,0.0007080862,-0.0044785552,0.0004349159,0.041205585,0.0120266825,0.0408605263,0.0278202388,0.0076847118,0.0206603017,-0.0047049993,0.0192800723,0.022112418,0.0084179584,-0.0032241284,-0.0255486127,0.0103157731,0.0392502584,-0.0277771074,0.0237658173,-0.0358571969,0.0349657983,0.0149381021,0.0122854747,0.0319753028,0.0260230657,0.0150387445,0.0000021868,0.0001334401,-0.0144852148,0.0039717527,-0.0314002074,-0.0176841822,-0.0427008308,0.024455931,0.0272451434,-0.0414068662,-0.0318027735,0.0006245176,0.0006824765,-0.0881046131,-0.013198439,-0.0031252839,-0.0288697891,0.01715222,0.0180436168,0.0307388473,-0.0046079517,-0.0277195983,-0.0041766302,-0.0185755808,0.0066531347,-0.0049494146,-0.00703773,-0.0129180802,0.0200276971,-0.0175547861,0.0270726159,-0.0493431836,0.0103301508,-0.0382725969,-0.0292292237,0.0348507799,-0.0014323469,0.0032169397,0.0419532098,0.0227306448,-0.0437360033,-0.006832852,0.0000478217,0.0120410593,-0.0130906086,0.0302787721,0.0233344957,-0.0378700309,-0.0172672383,0.0068939561,-0.0010145042,-0.0544615313,0.0404292047,-0.0458926111,-0.0243696664,0.0037596861,-0.0424707942,-0.0020038481,0.0386176556,0.0097263008,-0.0061139828,-0.0149093475,0.0141257802,-0.0233057402,0.0100282254,-0.0054670004,-0.0393652804,-0.0043886965,0.000859498,0.0091655822,0.0395378061,-0.0180292409,0.036662329,-0.0430458896,0.0089211669,-0.0077565988,-0.0187768638,-0.0251460448,-0.0025070563,0.0135075524,-0.0152544053,-0.005732982,0.0058372179,-0.0033157843,-0.0232626088,0.0447136648,-0.0024962735,-0.0096328473,-0.0090289973,0.0159588978,0.0089571103,0.0326941721,-0.0059270766,0.0185324494,-0.0252323095,0.0005283689,0.0082382411,0.0088564688,0.0389627106,-0.0348795354,-0.0165052377,-0.019768903,0.0181011278,-0.0163758416,0.0368061028,0.0095609603,-0.035713423,0.0112071717,-0.0745323598,-0.0162751991,-0.002077532,-0.0074331076,0.0073684095,0.0089571103,0.0048739333,0.0366910845,0.0115594175,-0.0447424203,0.0031109066,-0.0486530699,-0.0300487336,0.0248728748,-0.0184749383,-0.0038064125,0.0320040584,0.0410905667,0.0049781692,0.0411193185,-0.0141976671,-0.0213647932,-0.0113293789,0.0856892094,-0.0206027925,-0.044023551,0.0025609715,0.0477041602,0.0195532423,-0.0194094684,-0.0049422258,-0.0174110122,-0.015743237,0.0230613239,-0.0208472069,0.0200852063,0.0111784162,0.0222274363,-0.0251460448,0.007842863,-0.0322053432,-0.0333267786,0.0250166487,-0.0634330213,0.0268425774,0.0049350373,0.0297036767,0.0147799514,-0.0321190767,-0.0175404083,-0.000815018,-0.0269144643,0.0090793185,-0.0076559572,0.0018510883,0.0167496521,-0.037323691,-0.0118900966,0.004525282,0.0053304154,-0.0154844429,0.0192656945,0.0126449093,-0.0614776947,-0.0150387445,-0.0229606833,-0.013133741,0.0441098176,-0.0202146024,-0.008511412,0.0245134402,0.0425858125,0.0160451606,0.0084323362,0.0008186123,-0.0005225281,0.0046259235,0.0103660943,0.0316589996,-0.0241683833,0.0066854837,-0.0092302812,-0.0284815989,0.0261812173,0.0187624861,-0.0202864893,-0.0204302631,0.0235789102,0.0127814952,0.0018942204,0.0217242278,-0.004525282,-0.0070772674,-0.0104954904,0.0372374244,0.0372374244,0.0060133412,-0.0237801932,-0.0103013963,-0.0045037158,0.0247578565,0.0014350427,0.0155563299,0.0121632675,-0.0124723809,0.0182305239,0.0117319459,-0.010322962,0.0021458247,-0.0177416932,-0.0000306643,0.0112287374,0.0526212268,0.0219830219,0.0080225803,0.0165196154,0.0172097292,-0.0277052205,0.0119404178,-0.0314577185,0.0470715575,-0.0269719735,-0.0291860905,0.0258936696,-0.0165052377,0.0068795783,0.0268425774,0.0107830381,-0.003570983,-0.0246572141,-0.0067573707,0.0365473107,-0.0093524884,0.0441673249,-0.0095537724,-0.0144492714,0.0074978061,0.0123214182,-0.0030336282,0.0211203787,0.0060061524,-0.0088780345,-0.0164477285,0.0175260324,0.0265981611,0.0104954904,-0.0000264241,0.0186618455,-0.0450012125,0.0277914852,0.0334417969,-0.0302212629,0.0025717546,0.0694140121,-0.0036428699,0.0321765877,-0.0307676028,-0.0330679826,-0.0238952134,0.0112215485,0.0002749675,0.0389339589,0.0365473107,-0.0167784076,0.0283522028,-0.0146936867,-0.0361447446,0.0090936953,0.0179429762,0.006502172,-0.0024783018,-0.004525282,0.010452359,-0.0135866283,0.0437360033,0.0108189816,0.0028934486,0.0190644115,0.0114443982,0.0252466872,-0.0339881368,-0.0133134583,0.0100138485,0.0421832465,0.0380713157,-0.0212497748,-0.0338443629,0.008108845,-0.0112934355,0.0265118964,-0.0053987079,0.0103804721,0.0362022556,0.0059809918,-0.0256923866,-0.0161745586,-0.0088205254,0.0295599028,-0.008108845,0.0253329519,-0.0062397849,0.026670048,0.0031791991,-0.0201283377,0.0175691638,0.0319177955,-0.0124076828,-0.0136872698,-0.0303362813,0.0472153313,0.0316589996,0.0493144281,-0.0037740634,0.0130330995,0.0120841917,0.0027065426,0.0059881806,0.0137663456,-0.0049637919,-0.0162608214,-0.03913524,-0.0199989416,-0.0078212973,0.0230325703,-0.0385889001,0.0334705524,-0.0124723809,0.0046115462,-0.0115162851,0.019093167,0.024455931,-0.016893426,0.031831529,-0.0018241307,0.0009740678,0.0374962203,0.0044282344,-0.0044821496,-0.0096184704,-0.0186618455,-0.0120266825,0.0095322058,0.0329242088,-0.0239814781,-0.0254767258,-0.0164477285,0.0321478322,0.0490556359,0.0291860905,-0.0044138571,0.0000259888,0.018834373,0.023722684,-0.0037489031,0.0230900794,0.0098988293,0.0193088278,0.0364035368,-0.0031684162,-0.0096040927,-0.0017423593,0.0182305239,-0.0055460762,-0.0097406777,-0.0229606833,-0.0112215485,0.004996141,-0.0025268253,0.0052980664,0.0091080731,-0.0310839061,0.0324353799,0.0166058782,-0.009316545,0.0023435138,-0.0046151406,-0.0503496006,0.0226443801,0.0114515871,0.0053160382,-0.0276333336,0.0168502945,-0.0275326911,0.0212641526,0.0683788434,-0.0030605858,0.0008446713,-0.0227018911,-0.0132631371,-0.033298023,0.0156425945,0.008439525,-0.0177416932,0.001297559,-0.0050320844,-0.0059989635,-0.0189206377,0.01742539,0.0171090867,-0.0136297606,0.0395378061,-0.0039106486,-0.0130906086,0.0085042231,0.0237658173,0.0012616155,-0.0056503122,-0.0388476923,-0.0136153828,0.0250310265,-0.0031091094,0.0026238726,0.0296749212,0.0347645171,-0.0092015257,0.0114659639,0.0347645171,0.0390777327,0.0285966173,0.0402279235,0.0014602031,-0.0126233436,0.0175835416,0.0356846675,-0.0235932879,0.0090074316,0.0108477371,0.0133637786,-0.002045183,-0.0008419756,-0.0112790586,0.0100210374,0.021307284,0.0122423433,0.0011762498,-0.011192794,0.0315727368,-0.0132631371,0.0070449184,0.000456482,0.0153981792,0.0139101194,-0.0146505544,-0.0156425945,0.0091943378,-0.0341319107,-0.0018124491,0.0096903574,0.0216235872,0.0191219207,0.0677462369,-0.0027676465,-0.0274895597,-0.0037237427,-0.0192513186,-0.0064770118,-0.0019032062,0.0242402703,-0.0177560691,0.0309976414,-0.010251075,0.0009255441,-0.0156713501,0.0243840441,-0.004155064,-0.0299624689,-0.0171665978,0.0158151239,0.0026184812,-0.0029976848,0.0588897653,0.0196107533,-0.0181155037,-0.0039933184,0.0112934355,-0.0012741957,-0.0030120621,0.0029869017,-0.0040508281,0.0270151049,0.0166777652,-0.0170947108,0.0265262742,0.0292004682,0.0126592871,0.0179717299,-0.0011762498,-0.0126305325,-0.0278202388,-0.0057725199,0.0020793292,-0.0289560519,-0.0096112816,-0.0115090962,-0.0052693114,0.0250022709,0.0301349983,-0.0162320677,0.0081304107,-0.0362597629,0.0018762486,-0.0074762399,0.0410043001,-0.0096544139,0.015009989,0.0237083063,0.0351383276,0.034908291,0.0230900794,0.0441673249,-0.0284672212,-0.0026741936,-0.0137016475,0.0222130585,-0.0466977432,-0.0022105228,0.0072174473,-0.0020469802,0.0007633492,-0.0187337324,0.0369498767,0.0182161462,-0.0043060267,0.0140323276,0.0083316946,0.0366048217,0.0087917708,0.0218104925,0.043563474,-0.013335024,-0.0398253538,-0.0054166797,-0.0298762042,0.0364610478,-0.0276477113,-0.0123214182,-0.0004027914,-0.0052441512,-0.0087702041,-0.0103301508,0.0406304896,-0.0014485215,0.0038639221,0.0065201437,-0.0112215485,-0.0082885623,-0.0444548726,-0.0106176985,0.0411768295,-0.0102942074,0.0016902413,0.0069155218,-0.0050824056,0.0405154712,-0.0149381021,-0.017957354,-0.0387039185,-0.0002814822,-0.0082741845,-0.0326654166,-0.0266412944,0.0190644115,-0.004288055,0.0059845862,0.0171234645,0.0059055109,-0.0013308066,0.0041263094,-0.0267994441,0.0021979427,0.0253041964,0.0098413201,-0.0004816424,-0.0177848246,-0.005596397,0.0094675077,-0.000403016,-0.0262099728,-0.0154700661,-0.0274320506,0.025261065,0.0117031913,0.0130977975,-0.033298023,0.025936801,0.0282659382,0.0082885623,-0.0184605625,0.005190236,-0.0057545481,-0.0248441212,0.0084251473,-0.0110633979,0.0275614467,0.0326366611,-0.0116313044,0.0074259192,0.0341031551,0.0077206553,0.0107758502,0.0007763788,0.0021889568,0.0323491171,-0.0082957512,-0.0314577185,-0.034246929,0.0174828991,-0.0211491324,0.0212929063,-0.0007894083,0.0142407995,0.0167352762,-0.0242977794,-0.0125011355,0.037726257,-0.0392790139,0.0122926636,-0.0107399067,-0.0130690429,-0.0167065207,-0.0098556969,-0.0093021682,0.0219830219,0.0091943378,0.014470838,0.0044462061,-0.0378987864,0.0227737762,-0.0020110367,-0.0142264217,0.0066890782,0.0014871607,0.0059414543,0.0384163707,-0.0002655323,0.0136872698,-0.0085401665,0.0037021765,-0.0125370789,-0.0005611673,-0.0015114226,-0.023046948,-0.0532538332,-0.0006851722,0.0100354142,0.0113868881,0.0291285813,0.0211922657,-0.0271588787,0.0108836805,-0.0097766211,-0.0189350154,-0.0352821015,-0.0006222712,0.0022662352,0.0218248703,-0.0183742978,0.0187768638,0.0081232227,0.0132056279,-0.0057114158,-0.0211635102,-0.0380138047,0.0063152662,0.0077350331,-0.0106105097,0.006229002,0.0433909483,-0.0111137182,-0.0290998258,-0.0144205168,0.0021440275,0.0107542835,-0.0058731614,0.0120913805,0.026670048,0.038790185,-0.0245709494,0.0259799343,0.0174397677,-0.0046654614,-0.0102007547,-0.0098053766,0.0316877551,-0.0291717127,-0.0151537629,-0.0211347546,-0.0030138593,0.0518160947,-0.00596302,-0.0125658344,-0.0051506981,-0.0131624956,-0.0080944672,0.0299624689,0.0161889344,0.018561203,0.0245421957,0.0074474853,0.0086767515,-0.0421544909,0.0187768638,0.0067825313,0.004891905,-0.0367485955,0.0350808166,0.0303075258,0.0069334935,-0.0014682903,0.0192081854,-0.0117750783,-0.0133853452,-0.0063871532,-0.011530662,-0.002647236,0.0051542926,0.0318027735,-0.0072785509,-0.0327516831,0.0341319107,-0.025059782,0.0116097378,0.0001026074,0.0200852063,-0.0061858697,-0.0115090962,0.028884165,0.0177560691,0.0163902175,-0.0221699271,0.0005634138,-0.0369786322,0.0199414324,-0.011257492,0.0141185913,-0.0170659553,-0.0041910075,-0.0147799514,0.0153550468,0.0111712283,-0.0178567115,0.0227018911,0.0135219302,0.0106248874,-0.0212785285,-0.0097909989,0.0078644296,0.028208429,-0.0047696973,0.0051830471,-0.0150531214,-0.0301062427,-0.0031306755,-0.0236939304,0.0207321886,-0.0061643035,-0.0044318289,-0.0136081949,-0.0110993413,-0.0225437395,0.0339593813,0.0214510579,0.0130474763,-0.0462089144,0.028884165,0.0017783027,0.0026364529,-0.0013982006,0.0098988293,0.0118038328,0.0186618455,-0.0061714924,0.0165627468,-0.0265981611,0.0486243144,-0.0021386358,0.0166346338,-0.0021242585,0.0305663198,-0.0263106134,0.0454900451,0.0025807405,0.0119044743,0.007706278,0.0176985599,0.0020847206,0.0025609715,0.0015770193,0.012062626,-0.0123573616,-0.0133565906,0.0157001037,-0.0163183305,0.0160020292,-0.0378700309,0.0429883786,0.0168790501,-0.012867759,-0.0242402703,-0.0068508238,0.0018259279,0.0598099194,-0.0514997914,-0.0286397506,0.0121057574,0.007239013,0.0096759796,0.0194238462,-0.0303362813,0.0099922819,0.0270582382,0.0202289801,-0.0111568505,0.0069191162,-0.0104379812,0.0224287193,0.0146002341,-0.0014044908,-0.0151825184,-0.0130546652,-0.0092159035,0.0003619057,0.0197113939,-0.0434484556,-0.0059055109,-0.0570782162,0.0175404083,-0.0134931756,-0.0255917441,0.0169221815,0.0177129377,0.0191362984,-0.0099275839,0.0089571103,0.0357421786,0.0045432537,0.0373524465,0.009920395,-0.0147224413],"94":[-0.0360391736,-0.0118845142,0.0394607931,-0.0108888792,0.0955248475,0.0148083149,-0.0246805251,0.0028431683,-0.0214692522,0.0124734808,0.0024172189,-0.0323090516,0.0114497999,-0.0285368562,0.0358708985,0.0561762378,0.019828558,-0.0170940682,-0.0564567,0.0297007672,-0.0218618959,0.0191834979,0.0227733925,-0.0029500939,-0.0326736495,-0.007060593,-0.0222825874,0.0512962267,0.0263071954,-0.0817822814,0.0244000629,-0.0394327454,-0.0421812609,0.0167434923,0.0279198438,0.0108468104,0.0434713773,0.0120107215,0.011428766,-0.0048905299,-0.0266297255,0.0242177639,0.0205297079,0.0007756486,-0.023362359,0.0021560402,-0.0363757275,-0.0040912176,-0.0039054125,0.0523339286,-0.0198145341,-0.0028431683,-0.0187347624,-0.0216375273,0.0584479682,-0.0433311462,-0.011260489,0.0462759845,0.0009430484,-0.0263632871,0.0282143261,-0.055447042,0.0377219394,0.0333187096,-0.0333467536,0.0405545905,-0.016477054,0.0318042226,-0.0298129506,0.0608038381,0.0583357848,0.0007037806,0.0056092101,-0.0058370843,0.0503146127,-0.0636645332,-0.0015872312,0.0621500462,0.0228294842,-0.0074181804,0.0000420417,0.0075584105,-0.0215253439,0.0076215141,0.0099633597,-0.0250030532,-0.0195761435,-0.0205577556,-0.0071587544,-0.0217076428,-0.0258023664,0.0647863746,0.0118845142,0.0154954428,0.0350575633,0.0050132317,0.0121930204,0.0044488045,-0.0311872084,0.0185244158,-0.0022682243,-0.0137916449,0.0078599053,-0.0161405019,0.0260828268,-0.0123893423,0.0359830819,0.0025364147,0.0006788021,0.0082174931,-0.0838576928,-0.0146821076,-0.0422653966,0.0071272026,-0.0134200351,-0.0160423405,-0.0456870161,0.0077827792,0.0134971617,0.0040736888,-0.0156076271,0.0096899103,-0.026377311,0.0284807645,0.0232922453,-0.0056162216,0.038142629,-0.0307665169,-0.0250310991,-0.0103630153,0.0389279164,-0.049220819,0.0251573063,-0.0204315484,-0.0369086005,-0.0099072671,-0.0317200832,-0.0003797172,0.0090588741,-0.0121579627,-0.0312993936,-0.046556443,0.0315798521,-0.0161405019,-0.0111833625,0.022198448,-0.0081333546,0.054970257,0.0025101216,0.0014627768,-0.0037231131,0.0056512794,-0.0218899418,-0.0105242804,0.0523058847,-0.003279635,0.0377780311,0.0520254225,0.0110852011,-0.0296446756,0.0134901498,0.0339918137,-0.0217356887,-0.0151448669,-0.0243439712,-0.0011095719,-0.0316920355,-0.0577187724,-0.0694981143,-0.0126978494,-0.0343283638,-0.0422093049,-0.0082174931,0.0327016935,0.0163368247,0.0001858051,-0.0121579627,-0.0528387576,0.0392364226,-0.030906748,-0.0603551008,-0.0128450906,-0.0128731374,0.0066889832,-0.0082104811,-0.0348331928,-0.0904204696,0.032954108,0.0002111123,0.0443127602,-0.0601868257,0.0578309558,0.0075864568,0.0260547809,0.0061210506,-0.0468929969,0.0096127838,0.0286770873,-0.0455748327,0.0332065225,0.0527826659,0.035618484,0.0368244648,-0.0214832742,0.0042314478,0.007390134,0.0071096737,0.0067801327,-0.064337641,-0.0363757275,-0.0197444186,0.0060579469,0.0008852035,0.0042314478,-0.0120387673,-0.0046451269,-0.0420410298,-0.0127399182,0.0023523625,-0.0177110806,0.0338796303,0.0693859309,-0.0160283186,-0.0330662951,-0.0277655907,0.0444529913,0.0309628397,-0.024035465,0.0257743206,-0.0071517429,-0.005037772,-0.0486318506,0.0148784295,-0.0598502718,0.0157478563,-0.0046977135,-0.0011788106,-0.0291398466,-0.0438079312,-0.0048204148,-0.0560079627,-0.0047362768,-0.0006450592,0.0068817995,-0.0181598179,0.0097249681,-0.0462759845,-0.0505670272,0.0002151658,0.0380584896,0.0218338501,-0.0270784609,0.0286911093,-0.0428263173,-0.0290837549,-0.0631036162,-0.0172062516,0.0019772465,0.0093673812,0.0115760071,-0.0083577232,-0.0200248808,-0.000225464,0.0262230579,-0.0602990091,0.0006980837,0.0064961663,-0.0260828268,-0.0095286453,-0.0428824127,0.0484635755,0.0125365844,0.0206559151,-0.0410033241,-0.0147381993,-0.0355904363,0.0050412775,0.0141492328,-0.0010219279,0.0153411897,0.0118073868,-0.0527265742,0.004112252,0.0000404531,0.0177671723,0.0158179719,0.0111062359,0.0289996155,0.0015232511,-0.031103069,-0.0106434757,0.0286770873,0.0130624482,-0.0234885663,-0.0034496642,0.010405085,-0.007134214,0.0450980477,-0.0296727214,-0.0023488568,0.0250310991,0.0130414134,0.0020385974,-0.0232221298,0.0169257913,0.0056723137,0.0014601474,0.0000111814,0.0187487844,0.0293642152,0.0049396106,-0.0360391736,0.0046486328,0.0031849795,-0.065403387,-0.0160703864,0.0455748327,-0.0142684281,-0.0101386476,-0.0735928342,-0.0233343132,-0.0881767794,-0.0014829349,-0.007397146,-0.0009789824,-0.0327858329,0.0016564699,0.0082735848,0.0016994154,-0.0094795646,-0.0060088662,-0.0134901498,0.037161015,0.0239933953,-0.0273028295,-0.0662447736,-0.0179354493,0.0412557386,-0.0155655583,0.0083927801,-0.0099283019,-0.0264193788,-0.0835772306,0.0192255676,0.0346929654,0.0217216667,-0.013777622,0.0005350661,0.0200669486,-0.0077196755,-0.0511559956,0.0034198652,0.0010981782,-0.0097880717,0.0192536134,-0.0223807488,-0.0016336824,0.0159301572,-0.0358428508,-0.0196322352,-0.0252835136,0.0399095304,0.00512191,0.0133218737,-0.0244421326,-0.0107206032,-0.0004386578,-0.0265455861,-0.0407509096,-0.0332345702,0.0212028138,-0.0112254312,-0.037665844,-0.0187207386,-0.0371049233,-0.0210345369,0.0175428037,0.0244421326,-0.0087573789,0.0573822185,0.0525863431,0.0415922925,-0.0172202755,-0.0281301886,0.0346649177,0.0442005768,0.0000322639,0.0400497615,-0.0668617859,0.0087573789,0.0476221927,-0.008582091,0.0020824193,-0.0234464984,-0.0211607441,-0.0070921448,0.0163087789,0.0299531817,0.0461077057,0.0358428508,0.031439621,-0.0084909415,-0.0509035811,0.0078528943,0.0045750118,-0.0010403332,0.0079159979,0.0162246395,-0.0197444186,-0.0110220974,-0.0394047014,-0.016477054,0.0339076743,0.0086522065,0.0171221141,-0.0550543964,-0.0221283343,0.0657399446,0.0033742904,0.055475086,0.0061631193,-0.0029974217,-0.042854365,-0.0093253115,-0.025367653,0.0538764633,0.0470893197,-0.0457711555,-0.0325895101,-0.0533435866,0.0017651482,-0.0394327454,0.0305141024,0.0155515345,-0.0012208796,0.0187347624,0.0224228166,-0.0555311814,0.0112745119,0.0020403501,0.0038423089,0.0299812276,0.0454065539,0.010930948,-0.019155452,-0.0077897906,-0.0356745757,0.0144296931,0.0252133999,0.000884327,0.0536240488,-0.0132026784,-0.019646259,0.025886504,-0.0076846178,-0.0337113515,0.0320285894,-0.0120177325,0.052922897,-0.0142333703,-0.0281442106,0.0321968645,-0.0601868257,-0.0388437808,-0.0053007035,-0.0253115613,0.0609721132,0.007565422,0.0171361361,-0.0237830505,-0.0280740969,0.0311311167,0.0060789813,-0.0031902383,-0.0249890313,0.0309628397,0.0296446756,0.0075513991,0.0325334184,-0.0005284927,0.0197023507,0.0071201911,-0.0460796617,0.0426299982,0.0128521025,0.0484916195,-0.0013716271,0.0350014716,-0.0141702667,0.0405545905,-0.0165892392,-0.0094374958,0.0624305084,-0.016967861,-0.0124804927,0.0008593485,-0.0751073211,-0.0336272158,-0.0143736005,-0.0206138473,0.0608599298,0.0023330809,0.0097319791,0.0345807783,-0.0230398308,0.0051359329,0.0027713003,-0.002273483,-0.0074462262,-0.0599063635,0.0452663265,0.0196743049,0.0563164689,0.036151357,-0.0179214254,0.0164910778,-0.0095987609,0.0167014226,-0.0206418931,-0.0102858888,-0.0299812276,-0.0353941172,-0.0369366482,-0.0011849456,-0.0222405177,0.0115619842,-0.0647863746,-0.0060369126,-0.0130133675,-0.0087854257,0.0276674293,-0.0186085552,0.0182018857,-0.0097249681,-0.0315518081,0.0182439554,-0.0271205306,-0.0300373193,-0.0519693308,0.0264614485,0.0036600095,0.0232641995,0.0250170771,0.0541008301,0.0184262544,0.0045189196,0.0015995014,-0.0118564675,-0.0394607931,0.0446493104,0.0189731531,-0.020151088,-0.0137425642,-0.0118284216,0.0294203069,0.0282844417,0.0261108726,0.0097740488,0.0140440594,0.0049921968,0.0062577748,0.0007423439,0.0059773144,0.0127889989,-0.0080842739,-0.0032025084,-0.0088485293,-0.0226331633,-0.0386755019,0.0029132834,-0.0093253115,-0.0150046367,0.0106014069,0.0256621353,0.0024540294,0.0130834822,-0.0547458902,-0.0180336107,0.0364879109,-0.0098441634,-0.0385072269,-0.0443408042,-0.0152149824,0.0447895415,-0.0280180033,0.0094024381,0.0184683241,-0.0060228892,0.0138407256,-0.0300653651,-0.0113306046,0.0049781739,-0.0063454187,-0.0135322195,0.0236147735,0.0013251759,0.0076425485,0.0358148068,-0.0239232816,0.0300373193,0.0084839305,-0.0214131586,0.0028168752,-0.0389559641,-0.0212729294,0.0255499519,0.0157759041,0.010257843,0.0424617194,-0.003451417,0.0164069403,-0.0056653023,-0.0030745482,-0.0677031651,-0.0221423563,-0.0032340602,-0.0267419089,-0.001968482,0.0323651433,-0.0167014226,-0.0232221298,-0.0134621039,-0.0294483528,-0.0477904715,-0.0083366884,0.0345246866,-0.0210205149,-0.0306543335,-0.0453504622,0.0166733768,0.0132587701,0.0053567956,0.0212869514,0.0018510394,0.0128731374,0.0624305084,0.0227313247,0.0530911721,-0.0024540294,-0.008743356,0.036151357,0.0188890155,0.0060965102,-0.0097880717,0.0107626719,-0.0425458588,-0.0136654377,0.0347771011,-0.012438423,-0.0131535977,0.0265876558,-0.0185384396,0.0589527972,0.019337751,0.027218692,0.0091640465,-0.0143385436,-0.0219460335,0.0157899261,0.0174025744,-0.0415922925,0.0020683962,-0.0042419652,0.011758307,-0.016981883,0.0141772786,0.0264754724,0.0143034859,0.0507072583,0.0216235053,0.0041648387,0.0132587701,0.013286816,0.0086732414,-0.011926583,0.0113235926,0.0297288131,-0.0221283343,0.0256761592,0.0541569218,-0.0336833075,0.0266998392,-0.0375256166,0.0169117674,-0.0016555934,-0.0178653337,-0.0333187096,0.017304413,0.0286350176,0.0256621353,0.0133078508,-0.0005083347,0.0169117674,-0.0208382159,-0.0099843936,-0.0367964171,-0.0003893581,0.0573822185,-0.031411577,-0.0237129349,0.0035793772,-0.0111412937,-0.0510999039,-0.0191975217,-0.0408911407,-0.0199267194,0.0226612091,-0.0250310991,0.0289435238,-0.035113655,-0.023362359,0.0290276613,-0.0011025603,0.0137916449,-0.0125716422,-0.0012620722,-0.0155655583,0.0454346016,-0.0148644065,0.0114778457,-0.0565688834,0.0009781061,-0.0275973137,-0.0535399094,0.0349173322,-0.0364879109,0.0124454349,0.0465003513,0.0116461227,-0.0430506878,0.0127188843,0.0054759914,-0.0013041414,-0.0081754234,0.0321688205,-0.0193938445,-0.0187768303,-0.0028536855,-0.0217917804,-0.000812459,-0.0458272472,0.0211046524,-0.0308506545,-0.0190152228,-0.0054128878,-0.0361794047,0.019323729,0.0456589684,0.0230678767,-0.0168696996,-0.009079909,0.012936241,0.0270083472,0.0023523625,-0.0190152228,-0.0244140867,0.0056057042,0.0235586818,-0.0169117674,0.0327016935,-0.000532875,0.0350575633,-0.0223106332,-0.0012550608,0.0054759914,0.0116881914,-0.020992469,-0.0132587701,-0.0081193317,-0.0386755019,-0.0098792212,-0.0018317576,0.0000264986,0.0127889989,0.0555311814,0.004620587,-0.0008295496,-0.0008400669,0.0262651257,0.0118915252,0.0211046524,-0.0062858211,0.0061000157,-0.0144998077,0.0126908375,-0.0080211703,-0.000878192,0.0015337684,-0.0202913173,-0.022002127,-0.0043576551,0.0084068039,-0.0041402983,0.0206418931,0.0061385795,0.0020596317,-0.0030587723,-0.1023680866,-0.0273448993,0.0373853855,-0.0042559882,0.0049325991,-0.0170800444,0.0380023979,0.0320846811,0.0378621668,-0.026896162,0.0204595942,-0.0488001257,-0.0360672213,0.018328093,-0.0052200709,0.0270223692,0.0254237447,0.0344125032,0.012781987,0.0178933796,-0.0138547486,0.0010613677,-0.0192395914,0.0644498244,0.0134691158,-0.0168837216,-0.0155234886,0.0126067,0.0013689979,-0.006976455,-0.0024067017,-0.0231800601,0.0237409808,0.0077687558,-0.0084348498,0.0164910778,0.0118073868,0.0015276333,-0.0134831388,0.0109029021,-0.0218058042,-0.0374414772,0.0536240488,-0.0539045073,0.053932555,-0.0273028295,0.0103139346,0.0027870762,-0.005048289,-0.0304580107,0.003062278,0.0048905299,-0.0180055648,-0.0241336264,0.0162667092,0.0273028295,-0.0560921021,-0.0022489426,-0.0133008398,-0.0170519985,-0.032926064,0.0236708671,-0.0055355891,-0.0587845221,0.0128871603,-0.0133569315,0.0121789975,0.0343283638,-0.0014899464,-0.0245543178,0.0313554853,0.0241897181,0.023362359,0.0081053087,0.0044908738,0.0246384554,0.0342161804,-0.0147241764,-0.0139318751,-0.0316359438,0.0143525666,0.0084418608,-0.0135532534,-0.0137495762,0.0040000677,-0.0122771589,-0.0096548526,0.019323729,0.0149765909,0.0231940839,0.0467247181,-0.0149625679,-0.0144296931,0.0018177347,0.0179354493,0.0302616879,0.0147101535,-0.0105803721,0.0102297971,-0.0157338344,0.0194359124,-0.0140230255,0.0204315484,0.0083156535,-0.0049431166,0.0057178885,0.0172062516,-0.0008286731,-0.0086311717,-0.0110641671,-0.0285088103,-0.0125716422,0.0421251692,0.0410313718,0.0119616408,0.0025504378,0.008231516,-0.0380304456,0.0046591503,-0.0160984322,0.0218058042,-0.0344125032,-0.0319724977,0.0385072269,-0.0024610409,0.0262230579,0.0434713773,-0.0122070434,0.0259285737,-0.0077056522,0.0040736888,0.0459674746,-0.0122280782,0.0615891255,0.0090238163,-0.0350014716,0.0204595942,-0.0154814199,0.0249469616,0.0358428508,0.0140160136,0.0113165816,0.010419108,-0.0113025587,0.0100895669,0.0028151223,0.0140230255,0.0001631272,-0.028564902,0.0071201911,0.0263212174,-0.0288032945,-0.0102999117,0.0720222592,-0.0041017351,0.0623744167,-0.0468649492,-0.0368805565,-0.0298409984,0.014443716,-0.0047678286,0.0494171418,0.0210485607,-0.0139949787,0.0326736495,-0.0202212017,-0.0080001354,-0.0085259993,-0.0129222181,0.0368244648,-0.008231516,-0.0114427889,0.0092201391,0.0055075432,0.0495012775,0.0172202755,-0.0056407619,0.0282844417,0.0240635108,-0.0019106371,-0.0251573063,-0.0024662996,0.0214552283,0.0450700037,0.0338515826,-0.0117793409,-0.0250871927,0.0158039499,-0.0247085709,0.0378621668,0.0272888076,0.0086311717,0.0256340895,0.0169117674,0.0084909415,0.0044347816,0.025704205,0.0104401419,-0.0391522869,0.0039404701,-0.0452943705,0.0187628083,0.003565354,-0.0247786846,-0.0002631508,0.0263352413,-0.0234745443,0.0172062516,-0.0165611934,0.0335991681,0.0240635108,0.0351697467,0.0180756785,-0.0278216824,-0.010419108,0.0128240567,0.0314957127,0.0094865765,-0.008736345,-0.0319724977,-0.020992469,-0.0333187096,-0.0264894944,0.012094859,-0.0256621353,0.0420971215,-0.0110010635,-0.0041332869,-0.0335711204,-0.0028659557,0.0123542855,-0.0090097934,0.0077897906,-0.0049781739,0.0254938602,0.0312993936,-0.0145559004,-0.0034023365,0.0091920933,0.0105593381,0.0078528943,-0.0023961845,0.0248488002,-0.0238391422,-0.0097109452,-0.0112043973,0.0340759493,0.0297849048,0.0195901655,0.0003775261,0.0196883269,-0.0069624321,0.0131465858,0.0237830505,0.0338515826,0.0237409808,0.0116461227,0.020347409,0.0096478416,-0.0053357612,-0.0135953231,0.0183982085,0.0138968183,0.0202212017,-0.0156496968,0.004203402,-0.0171221141,-0.0012270147,-0.0070535815,0.0098091057,-0.0370488316,0.0197864883,0.017977519,-0.0153271668,-0.0089326669,0.0217216667,-0.0716857016,0.0087714018,-0.004964151,-0.0473136865,-0.0179494731,0.0004807268,-0.0078178365,0.0034829688,0.0454346016,-0.0019053785,-0.0063313958,-0.0129993446,0.0234745443,-0.0476221927,0.0045504714,0.000642868,-0.0096338186,0.0098722093,-0.0244982243,0.0199547652,-0.0088835862,0.0111483047,0.0107346261,-0.0369646959,0.0140791172,-0.0142053245,0.0231379922,0.015116821,-0.0021192296,-0.0037932284,-0.0263632871,-0.0208101701,-0.0068467422,0.0143034859,-0.0160002708,0.0143315317,0.0066153621,0.020669939,-0.0133288857,0.0188890155,0.030401919,0.024357995,0.0328419246,0.0228995997,0.01562165,0.0150467064,0.0278216824,0.0362635441,-0.0100194514,0.0018317576,0.0150747523,0.0150326826,-0.0208943076,0.0191133842,0.0143736005,-0.001409314,0.0086802524,0.0199687872,-0.0213430449,-0.0068572592,0.03194445,0.004126275,0.0062051886,-0.0057354174,0.0260968506,0.0062367404,-0.0105172684,-0.0024277363,0.0008475166,-0.0237690285,0.0270083472,0.0367122814,-0.0087223221,0.0167855602,0.0563445166,0.0147522222,-0.0096828984,0.0134060122,-0.0136724496,-0.0014338543,-0.0110291094,-0.0121789975,0.0046836906,0.0153411897,-0.0161405019,0.0065031778,-0.0337393992,0.0139038293,0.0030798069,-0.0022629658,-0.0187628083,0.0426019505,-0.0191133842,-0.0014478774,0.033935722,0.0180476326,-0.0294203069,-0.0048098979,-0.0177110806,0.0092131272,-0.0107206032,-0.020151088,0.0042910455,0.0141071631,0.0032498362,-0.0250871927,0.013945899,0.0398814827,-0.0112114083,0.0137846339,-0.0231660381,0.008561057,-0.0093743922,0.0057003596,-0.0024820755,-0.0228575319,-0.0135672772,-0.0082665738,-0.0202352256,0.0373853855,-0.0248207543,-0.0271485765,0.0024855812,-0.0342161804,-0.0234184526,-0.0349453799,0.0100124404,-0.0230678767,0.0251152385,-0.0033532558,0.0500902459,-0.0046731732,0.0175988972,0.0325334184,-0.0293361694,-0.0272747837,-0.0194779821,-0.006717029,-0.0256621353,0.0027818177,0.0405545905,-0.0167294685,0.0191975217,-0.0297849048,0.0145418774,0.021679597,-0.0079720896,0.0135252075,0.0277655907,0.0356745757,0.0165471695,0.0225910936,0.0212869514,-0.0229276456,-0.0198706258,0.0372732021,-0.0173605047,0.0234044287,-0.0042244364,-0.0323370956,-0.0100895669,-0.0066679483,-0.025381675,0.0152149824,0.0349453799,-0.0051499559,-0.0059738089,0.0050833467,-0.0081123197,0.0091991043,-0.0441444814,-0.0177811962,0.019828558,-0.0291678924,0.0035758715,0.0113937082,-0.0210906304,0.0405265428,0.0183701627,-0.0048379437,-0.0183841866,-0.017991541,-0.0045820232,0.0003012759,-0.0424897671,0.0111763515,-0.0018072174,0.0166172851,0.0208101701,0.038170673,-0.0095426682,0.0067906501,-0.0092061162,-0.0211326983,0.0203614328,0.0113796853,-0.0096969223,0.0010394567,-0.004126275,0.0073340423,0.0163087789,-0.0244701784,-0.0029080249,-0.0152149824,0.0118214106,0.0040351255,0.0137145184,-0.0152850971,0.0226612091,0.0136864726,0.0018860969,-0.0256340895,0.0203614328,-0.0007769633,-0.0227733925,0.0073690997,0.00148907,0.0091009429,0.0298690442,-0.0252694916,0.0263212174,0.0169117674,0.0116461227,0.0321968645,-0.0043366207,0.0029395767,0.0191694759,-0.0037266188,-0.0102718659,0.0017984529,0.0185244158,-0.0096408296,0.0067520868,-0.0137425642,-0.0047117365,0.0256901812,-0.0022769887,-0.041339878,-0.0015942426,-0.0252554677,-0.0030675367,-0.0123542855,-0.0118354335,0.0023663854,-0.0111553166,-0.01395291,0.0192395914,0.0001319041,0.013279805,-0.0120247444,-0.0273589212,0.003020209,-0.0156076271,-0.0187628083,-0.0015916134,-0.0023278221,0.0105523262,0.0424897671,-0.0078178365,0.0131255519,-0.0289154779,0.0041227695,-0.0166593548,-0.0278637502,-0.0269101858,-0.00286245,-0.0100615202,0.0307665169,0.0216655731,0.019646259,0.011604053,0.0290837549,-0.0410313718,0.0058546131,-0.0287191551,0.0075093298,-0.0248067323,-0.0170379747,-0.0063524302,0.0140861291,-0.0104331309,0.0222545415,-0.009234162,0.0107766949,0.0216936208,-0.0052831746,-0.0388998725,0.0122771589,0.0159441791,-0.0166313071,0.0108538214,0.0422093049,-0.0134831388,-0.0314676687,-0.0030254677,-0.0101877274,-0.0224228166,-0.0130484253,0.0264894944,0.0106364647,0.0480709299,-0.0054128878,0.0141702667,-0.0150467064,-0.0061736368,-0.0201791339,0.009079909,0.0060088662,0.0003060963,-0.0098511754,-0.0125225615,-0.0156496968,0.0531472638,-0.0374414772,0.0089186439,-0.003020209,-0.0064190398,0.0041402983,0.0479587466,0.0084558837,0.0370207876,0.0213991366,0.0055285776,0.0281301886,-0.0142123364,-0.022689255,0.0042454707,-0.0034777103,-0.0364879109,0.0091500236,-0.0212448835,-0.0165752154,0.0042279419,-0.0241196025,-0.0087223221,-0.0038037456,-0.0060965102,-0.00992129,0.0108608333,0.0051078871,0.0170099288,-0.0187207386,-0.0234044287,0.0183841866,-0.0059773144,0.016280733,0.004701219,0.0091289897,-0.0060053607,-0.0091219777,0.0213851128,0.0176549889,0.022002127,-0.0119406059,-0.0271345545,-0.0266998392,-0.0145839462,-0.0419568904,0.0301775504,-0.0001838331,-0.0006897575,0.0107276142,-0.0150607293,0.0320846811,-0.0018072174,0.0359269902,0.0089537017,0.0170519985,0.0123262387,-0.005381336,0.0079650786,0.0357026234,0.0019229073,-0.009570715,0.0029325651,-0.0025732252,0.0115760071,-0.0149906138,0.0150326826,-0.0043015629,-0.002517133,-0.0123542855,-0.0137495762,-0.0043997243,0.0047362768,0.0046556443,0.004532943,-0.0021209826,0.0040701833,-0.0199267194,0.0163929164,0.0463601202,0.0212729294,0.0084699076,0.0302616879,-0.0031727094,-0.001345334,-0.0093042776,0.0505109355,0.0201090183,0.020347409,0.0000024136,-0.0001314659,-0.0183982085,0.0218338501,-0.0000446436,0.0105733611,-0.017977519,0.0045048967,0.0065908218,0.0259145498,0.045013912,0.0105803721,-0.0171221141,-0.0142473932,0.0117863528,-0.0411435552,0.0065101893,-0.0183000471,0.0214271825,0.004203402,0.017486712,-0.0181738399,-0.0017660247,0.0069589261,0.0172483213,-0.0213851128,-0.0138477376,-0.0128591144,0.0148784295,0.0282563958,0.0007787161,-0.0256901812,0.0045504714,0.0396290682,0.0000650208,0.0008413815,-0.0154393511,-0.0279478896,0.0163929164,0.0126207229,-0.009234162,-0.0244000629,-0.0053287498,-0.0085891029,0.0049816798,0.0178653337,-0.0135252075,0.0036600095,-0.0511840433,0.0303177796,-0.0067030061,-0.01984258,-0.0093042776,0.0350295156,0.0288874321,0.0014855643,0.007565422,0.0317200832,0.0072008236,0.005637256,0.0231379922,0.0186085552],"95":[-0.0387021303,0.0112191867,0.057285063,-0.0198089909,0.0408883579,0.0179920588,-0.0188488234,0.0212714002,-0.01881928,0.0002679698,0.0311685093,-0.0309617054,0.0050187209,-0.0231326483,0.0529126078,0.0230883323,-0.0300163087,-0.0153626781,-0.0499582477,0.0510513596,-0.0136639206,0.0257915724,0.0374022126,0.029115228,-0.00928408,-0.0098823383,-0.0299276784,0.0591463111,-0.0042025787,-0.045408532,0.0067063998,-0.0459107719,-0.0417451225,0.025466593,0.0428086929,0.0418632962,0.0392930023,0.0233394522,0.0121054947,0.0226747207,-0.0306071807,-0.0009370864,0.0130139608,0.03713632,-0.009239764,-0.019114716,-0.029602699,-0.0155842546,0.0020698993,0.0447585694,-0.0220838487,0.0173125565,-0.0251563843,-0.029602699,0.0086488919,-0.0205771253,-0.0064146565,0.0174455028,0.0302822012,-0.000376681,0.0227190368,-0.0775815248,0.0357182249,0.017489817,-0.0363977291,-0.000737667,-0.0233837683,0.0376976468,-0.0401793122,0.010318106,0.0450540073,0.0073120436,0.0023819536,-0.0408883579,0.0079472316,-0.0556897074,-0.0266631097,0.0774633512,0.0034455236,0.0019997333,-0.0171352942,-0.0077773556,-0.0420110151,0.0096533746,0.0172830131,-0.0422769077,-0.0320548192,-0.0255699959,-0.0110714687,-0.0132576954,-0.031523034,0.0584372617,-0.0022693186,0.0059271869,0.0422178209,0.0185829308,-0.0122753708,0.0209464207,-0.0298833624,0.024728002,-0.0058237845,-0.0300015379,-0.0005821015,-0.0196465012,0.0379930846,-0.0261165518,0.0213009436,-0.0077921273,0.0201339703,0.0080137048,-0.1108476296,-0.0173273273,-0.0395884402,0.0351864398,-0.0130582759,-0.016943261,-0.0222758837,-0.0253631901,0.0222463384,-0.0069501344,-0.0151854157,-0.0080506336,-0.0066436194,0.0278005376,-0.0038258976,-0.0089000128,-0.0022102315,-0.0367227085,-0.0522626489,-0.0000963053,0.0346841998,-0.0437540896,0.015318362,-0.0424541682,-0.0105544552,-0.004948555,-0.0457925983,0.003955151,0.0105027538,-0.034388762,0.0009610906,-0.0530307814,-0.0106874015,-0.0219804458,-0.0333251953,0.0243291631,-0.0070203007,0.0392634608,0.0022213103,0.0050815013,-0.0122753708,0.0071938694,-0.0217588693,-0.0317002945,0.0417451225,0.0119577767,0.0200748835,0.0160717238,0.0192919783,-0.0555124469,0.0218475014,0.0495150909,-0.0005894874,0.0002922048,0.0150007689,-0.0110566961,-0.0260131489,-0.0502241403,-0.0898716673,-0.0061783078,-0.0401793122,-0.0202816892,-0.0002453505,0.0322616249,0.0304003768,0.0039588441,-0.0330888443,-0.0530307814,0.0286129881,-0.0066546984,-0.0561919473,0.0186272468,-0.0386430435,0.0121276528,-0.0524694547,0.0026423067,-0.0729727224,0.0052919993,-0.0038739061,0.056546472,-0.0501059629,0.0520558432,-0.0059456518,0.0148825943,0.0246245991,-0.0264858473,0.0170171205,-0.0102885626,0.0082574394,-0.0005617902,0.0577873029,0.0358954892,0.0628097206,-0.0377567336,0.0006614999,0.0080210902,0.0156581141,0.0036375572,-0.0399725065,-0.0257324856,-0.0053141569,0.0259392913,-0.0054914188,0.0261017811,-0.0105766132,-0.0026570784,-0.0935350731,-0.0036227852,-0.0085602617,-0.028864108,-0.0016719837,0.0764588639,-0.0017246084,-0.0141661614,0.0079915468,0.0435177386,0.0361909233,-0.0219509024,0.0404452048,0.0150155406,-0.0133537119,-0.0641687214,-0.0056502158,-0.034034241,-0.0037077232,-0.0336797163,0.0118617602,-0.0439313501,-0.0013119209,-0.0538284592,-0.0067654871,0.0011466615,-0.0002721244,0.0090403454,-0.007131089,0.0036781796,-0.0284061823,-0.0446403958,0.0016498261,0.0393816344,0.0485696979,-0.0195578709,0.0114038335,-0.0179329719,-0.0231769625,-0.0489833057,-0.034979634,-0.0015334981,-0.0095942877,0.0172977839,-0.0032313324,-0.0188488234,-0.0099414252,-0.0010340264,-0.0522035621,0.037284039,0.026352901,-0.04481766,-0.0107981898,-0.0545670502,0.0353932455,0.0204294063,0.018863596,-0.0431632176,-0.051524058,-0.0165591948,-0.0169580337,0.000155681,-0.0065069804,-0.0190704018,-0.0089369426,-0.0544488765,0.0344773941,0.0067654871,0.0380521715,0.0023616424,0.0201044269,0.0333251953,-0.0035009179,-0.0189669989,0.0100078983,0.0179329719,0.0085898051,-0.0325570591,0.0238860101,0.0152888186,-0.0099931266,0.0210055076,-0.0502536818,-0.0337683484,0.0168546308,-0.0181102343,0.0110936258,-0.0125929639,0.0093431668,0.023103103,0.0032793409,-0.0019258742,-0.0011854374,0.007131089,-0.0207691584,-0.040740639,0.0058200913,0.0110862404,-0.0316412076,-0.00867105,0.0602394231,0.0013368484,-0.0165887382,-0.0626915395,-0.0102737909,-0.084967427,0.0030079088,0.0025573689,0.041331511,-0.0254518203,0.0313162282,0.0113447467,0.001253757,0.0022767046,-0.0132946251,-0.0111231692,0.0354227908,0.0046457327,-0.0191738028,-0.0229406133,0.0042579728,0.0217736419,-0.0276232772,-0.0078512151,-0.0114038335,-0.0012020557,-0.0746862516,-0.007079388,0.0308435299,0.0044426206,-0.0314048603,-0.0265744776,0.0057831621,-0.007363745,-0.0413905978,-0.0280516595,0.0037169557,-0.0163228456,0.0126372799,0.0129179442,0.0215225201,0.0224974602,-0.0145945437,-0.0112856599,-0.03329565,0.0405042917,0.0100965295,-0.0297799595,0.0121645816,-0.0046605049,-0.0254222769,-0.0051516672,-0.0374612994,-0.0247723181,0.0464425571,-0.0174307302,-0.0436063707,-0.0130065745,-0.0690729618,0.0080801779,0.0595894642,0.0087301368,-0.0088778548,0.0670639947,0.0271653514,0.0084273154,0.0181840919,-0.0013516202,0.0431336723,0.0289231949,0.0025629082,0.0450540073,-0.0353341587,-0.0123935454,0.0240189563,-0.0152001884,0.0021991525,0.0003462142,-0.017977288,0.0100300563,-0.0179477446,0.0424246266,0.0505195744,0.0305776373,0.0465311892,-0.0008221433,-0.0573441498,0.0204589516,0.0110419244,0.0088483114,0.0042025787,0.0322616249,-0.0362500101,-0.0205180384,-0.0262199547,-0.0486878715,0.029115228,-0.0213157162,0.060387142,-0.03713632,-0.0172830131,0.0586736128,0.0218475014,0.0227781236,-0.0378453657,0.0116771124,-0.019114716,-0.0117805153,-0.0477720201,0.0213895738,0.0600621626,-0.023590574,-0.0142547926,-0.0619234107,-0.011920847,-0.0015916621,0.0155842546,0.0205771253,-0.0361318365,0.0068947403,0.0423359945,-0.0386725888,0.0495446362,0.01546608,0.0079029156,0.0171352942,0.0227928963,0.0379044525,-0.0314639471,-0.0087227514,-0.0289379675,-0.0121350382,-0.0239450969,0.0164262485,0.0516422316,-0.0155103961,-0.0127554545,0.0441086106,-0.0216406956,-0.0477424748,0.0261608679,-0.0021585301,0.0202521458,-0.0058311704,-0.0413610563,0.0486583263,-0.0698410943,-0.0095130429,-0.0242405329,-0.0311094224,0.0426905192,-0.0144985272,-0.000443385,-0.0410951637,0.0303412881,0.0318480134,-0.0185829308,-0.0154069932,-0.012364001,0.0043835333,0.0408588126,-0.021079367,0.0255995393,-0.0033827436,0.005159053,-0.0265006199,-0.0311094224,0.0626324564,0.0366931669,0.0352750719,-0.0091289757,0.0065771462,-0.0052883066,0.0303117447,-0.0225713197,0.0015805832,0.0509922728,-0.0184499845,-0.0349205472,-0.0050334926,-0.0954258665,-0.0220690779,-0.0162194427,0.000673502,0.0369590558,-0.0229701586,0.0224679168,0.0642868951,-0.0019849613,0.0129991891,-0.0302083418,0.0000494509,-0.0197794475,-0.0249052644,-0.0179920588,0.0153922215,0.0361613818,0.0400611386,-0.0240928158,0.0117288139,0.0046051103,0.0178295691,-0.0045718737,0.0001289071,-0.0222020242,-0.0192033481,-0.0424541682,0.0079989331,-0.0074929986,0.0294106659,-0.0474470407,-0.0214782059,-0.0116697261,0.0068171881,0.0228815265,-0.0159092341,0.0292334035,-0.0084347008,-0.0357477702,0.001859401,-0.0070646158,-0.0248018615,-0.0387907624,0.0224236008,0.016352389,0.0308139864,0.0121128811,0.0478901938,0.0082057379,-0.0187306497,0.0072566494,-0.0221429374,0.0020828247,0.0632233247,0.0201635156,-0.0260131489,0.0028084896,0.0019092559,0.0037335739,0.0020551274,0.0083829993,0.0168694016,0.0140701449,0.0066620843,0.0309617054,-0.0022803976,-0.0031740917,-0.0105322972,0.0069132051,0.007585322,0.0069796783,-0.0399134196,-0.0510513596,0.0193067491,0.0184499845,-0.031227598,0.0127332965,0.032468427,0.0122679844,0.0137008494,-0.0171057507,-0.0369295143,0.0290561412,0.0196021851,-0.0336206295,-0.0103550358,-0.0165296514,0.0037224949,-0.0097641638,0.0009804786,0.0400315933,0.0222315677,0.0076961108,-0.0226747207,0.0106652435,0.00773304,0.0031814775,0.0243439358,0.0112191867,0.0086341202,0.0072418777,0.0149416812,-0.0080654062,0.0178295691,0.0135531314,0.0155103961,0.0151854157,-0.0512286201,-0.0201635156,0.0330297574,0.0082205096,0.0083017545,0.0415974036,0.0117288139,0.027239209,-0.0026866221,-0.0042210435,-0.0575509556,-0.0355114192,-0.0043872264,-0.0148530509,0.0081392648,0.0255404525,-0.0012472944,-0.0273426119,-0.0238712374,-0.0326456912,-0.0460289456,-0.0108572775,0.0288936514,0.0074523757,-0.0096829189,-0.0303117447,0.0097789355,0.0135309743,-0.0040216241,0.0170318913,0.0164557919,-0.0176079925,0.0383476056,0.0354523323,0.0456153341,-0.0072234129,-0.0066066901,0.0365159027,0.000786137,-0.0071901763,0.004789758,0.0262199547,-0.0149786109,-0.0037889681,0.0542420708,-0.0040253168,-0.016308073,-0.007659181,-0.014749648,0.0444040485,0.0458812267,0.0144689837,-0.0041102548,-0.0201191995,-0.0053621656,-0.0124600176,0.0098601803,-0.0418337546,0.0121498099,-0.0146610169,0.00106357,-0.0039810017,0.0106947869,0.0108646629,0.0301640276,0.0308730733,0.022807667,-0.0105396835,0.0047085132,0.0075779362,0.0106135421,0.0161455832,0.0102664046,0.0142474063,-0.0310207922,0.0120020919,0.0453494415,-0.0228519831,0.0078142853,-0.0231621917,0.0196021851,-0.0053732442,0.0013885497,0.0003494455,0.0204146355,0.0243734792,-0.0117435856,0.0051405882,-0.0130730476,0.0043687616,-0.0297799595,-0.0106652435,-0.0199714806,0.0191885754,0.031523034,-0.0297061019,-0.0405338332,0.0122753708,0.0022711651,-0.0786450952,-0.0148530509,-0.0114259915,-0.0268255994,0.0283914097,-0.0014282489,0.0387316756,-0.0201339703,-0.0083312988,0.0060121249,-0.0189374555,0.0120390216,0.0102368612,-0.0218622722,-0.0224383734,0.0349500924,-0.0116844978,0.025806345,-0.0658231676,-0.0034473701,-0.0267074239,-0.0219804458,0.0539761782,-0.0006416503,0.0191294886,0.0353341587,0.0223792847,-0.0396179818,-0.0124378605,-0.0010783419,0.0259097479,-0.0058717928,0.0314934887,0.0097198477,-0.0125412634,-0.0128662428,-0.0157467443,-0.00854549,-0.0368113406,0.0341524146,-0.0419814698,-0.0221872516,0.0147644198,-0.0424837135,0.0174750462,0.0475652143,0.000487008,-0.001102346,-0.0337388031,0.0148973661,0.0004874696,-0.0047380566,-0.0046457327,-0.0311980527,-0.000031794,0.0115146227,-0.0050519574,0.0441676974,-0.0005243991,0.0618643202,-0.0504014008,0.0145723866,-0.0093727103,-0.0029303569,-0.0399429612,0.0131764505,0.0102959489,-0.0242700763,0.0025979914,0.006824574,0.0109680658,-0.0084125437,0.0486583263,-0.0300310813,-0.0058311704,0.0061635361,0.0128957862,-0.0100300563,0.0330888443,-0.0023320988,0.0044684713,-0.019897623,0.0076665673,0.001824318,0.0077551981,0.0178000256,-0.0278300811,-0.0224531442,-0.0046900483,0.002821415,-0.0144025106,0.0293220337,-0.0147127183,-0.0091880634,0.0048303804,-0.0691911355,-0.0467970818,0.0192476623,0.0093136234,0.0098675657,-0.0013876265,-0.0041693421,0.0505195744,0.0323502533,-0.0387907624,-0.0143803526,-0.0615097992,-0.0375499316,0.0041176407,-0.0206066687,0.0138116386,0.0192033481,0.0475061275,0.0143360374,0.0349500924,0.0115367798,-0.0132946251,-0.0131838368,0.0777587816,0.0059678094,-0.0335024558,-0.0136048328,0.0255847666,0.0188931394,-0.0190704018,-0.004324446,0.0152001884,-0.008818768,0.0027604811,-0.0232803654,0.0136639206,0.0075373137,0.0224236008,-0.0041730353,0.0035563123,-0.0391157418,-0.0479788259,0.0124600176,-0.0723818466,0.0496923551,-0.0001346773,0.0223497413,0.014284336,-0.0184499845,-0.004261666,0.0122753708,-0.012090723,-0.011477693,-0.0155694829,0.012954874,0.0156876575,-0.0374022126,-0.0161160398,0.0094687277,-0.0089369426,-0.0084790168,0.01856816,0.0046568117,-0.0714364499,-0.0227338094,-0.0066657774,-0.0023690283,0.0356591381,0.0046346541,-0.0108498912,0.0290265977,0.0387316756,0.0199419372,0.0004856231,0.0114186062,-0.0072307987,0.0106209284,-0.0099192671,0.0231474191,-0.0133167831,0.0128810145,-0.0099044954,-0.0227338094,0.0215816088,0.0176375359,-0.0069427486,0.0007690571,0.0243587065,0.0084864022,0.0033938223,0.0471516028,-0.0106283138,0.0029045062,-0.0049928701,0.0376976468,0.0226894934,0.0279482566,-0.0068282671,0.0168398581,-0.0015150333,0.0142769497,-0.0065069804,0.0139150405,0.0198237635,-0.0133389402,0.0135679031,0.0124674039,-0.019705588,-0.0012002093,0.0097937072,-0.0153626781,0.0214338899,0.0542125255,0.0245064255,0.0189374555,0.0045829527,0.0046235751,-0.0259097479,-0.0093357814,-0.0188783668,0.0386134982,-0.0382589772,-0.0449062884,0.0293220337,-0.0005931803,0.0112635018,0.0356295966,0.0048857746,0.002775253,-0.0055209622,0.0156433415,0.0450835489,-0.0145059135,0.0545965917,-0.0068578105,-0.0212418567,0.0123713873,-0.0052070613,0.0128957862,0.0459698588,-0.0025259787,0.0013414646,-0.0149786109,0.031523034,0.012364001,0.0190556291,-0.0165001061,0.0135088162,-0.0424837135,0.0286277588,0.022955386,-0.025171157,-0.0010164849,0.0624551959,0.0198680777,0.0442858748,-0.0483924337,-0.0488060452,-0.032704778,0.0200896561,0.0045792595,0.0400906801,0.022512231,-0.0196317304,0.0193806086,-0.0061413781,-0.0379635394,-0.0013165371,0.0125412634,0.0068134954,-0.013523588,-0.0012768379,0.0096829189,0.0217588693,0.0604166836,0.0398543328,-0.0063961917,0.0074708406,0.019705588,0.0366636217,-0.0279778,-0.0135900611,0.0212566275,0.0288788807,0.0324388854,-0.0190999452,-0.0128884008,0.014284336,-0.0079989331,0.0363386422,0.0194987841,0.016603509,0.0108498912,0.0184056703,-0.0290709138,-0.0085528754,0.0255699959,0.0160274096,-0.0219804458,0.0312866829,-0.0118026724,0.0389975682,-0.0017015274,-0.0168694016,0.0096681472,0.0202816892,-0.0233985409,0.0107021732,-0.0290561412,0.0361318365,0.0337978899,0.0418337546,-0.0023357917,-0.0123418439,0.014011058,0.0171796102,0.0226894934,-0.0004553871,-0.0013183836,-0.0308435299,-0.0417746678,-0.0181693211,-0.007374824,0.0226156339,-0.0415974036,0.0296322424,-0.0224974602,-0.0137377791,-0.004926397,0.0165591948,0.0218475014,0.0069242837,0.0339456089,0.0017356871,0.011795287,0.034979634,-0.0080580199,-0.004715899,-0.0233099088,0.0012943795,0.0028306472,0.012954874,0.0231326483,-0.026057465,-0.0100595998,-0.0131395208,0.0322025344,0.0436654575,0.0338274352,-0.0200305693,-0.0087522948,0.0292924903,0.0210202802,-0.0068319603,0.0234133117,0.0186567903,0.0402088538,0.0181988645,-0.0070092217,-0.0177704822,0.0115810959,0.0099709686,0.0099488115,-0.0168103147,-0.0210645944,0.008523332,-0.0140701449,0.0007482843,0.0057942406,-0.000795831,-0.0267517399,0.0329706706,0.0250677541,-0.0038406695,-0.006846732,0.0196465012,-0.0480674542,0.0130139608,0.0100300563,-0.0097124623,-0.0208134744,0.0206214413,-0.0238121506,0.0096976906,0.0596780963,-0.0087079797,-0.0008359919,-0.0127111385,0.0034787601,-0.0361909233,0.0040474748,0.0063851131,-0.0228667557,0.0129031725,-0.0165887382,0.007300965,-0.0285982154,0.0032590297,0.0128293131,-0.0164410193,0.0295879263,-0.0163967051,-0.0029063527,0.0231917351,0.022999702,0.0135383597,-0.0028343401,-0.0299572218,0.0027475557,0.027682364,0.0014614855,-0.009453956,0.0202373732,0.0410065316,-0.004874696,0.0022065386,0.0315525755,0.0371658616,0.0175193623,0.0253336467,-0.0041324128,0.0068504247,0.022807667,0.0254813638,0.0039699227,-0.0040142382,0.0277562235,0.0169137176,-0.0269880891,0.0003635249,-0.0141292317,-0.0026349209,0.0066325408,0.0094022546,-0.0290265977,-0.0094022546,0.0354818776,-0.005000256,0.0144911408,-0.0073083509,0.0086045768,0.0220838487,-0.0157910604,0.0027512489,0.0161455832,-0.0491901115,0.0156728849,0.0253484193,0.0025813731,0.0227190368,0.0648186803,-0.0030079088,-0.0229849294,0.0006707323,-0.0124378605,-0.0039182212,0.0025278253,0.0268255994,-0.0137230074,0.0206509847,-0.0184204411,-0.0055505061,-0.0042025787,0.0256733987,-0.0148456646,-0.0250382107,-0.0034104406,0.0256586261,0.0062964819,-0.0125191053,0.0530012399,0.0058127055,-0.0198680777,-0.0115441661,0.006920591,-0.0065549887,0.0184795279,0.0028435725,-0.001734764,0.0222758837,0.0309617054,-0.0135605177,0.0438722633,0.0477129333,0.0050371857,0.0176375359,-0.0179329719,0.0026127631,-0.0169137176,-0.0115072364,-0.0021843808,-0.0317889266,-0.0294845235,-0.0168841742,-0.0199862532,0.0366045348,0.0152445035,-0.032468427,0.0042210435,-0.039411176,-0.0189226829,-0.0152001884,0.0202373732,-0.012090723,0.0115220081,0.0253041033,0.0480969995,0.0167659987,0.0102664046,0.0470629744,-0.0198680777,-0.0111896424,-0.011647569,0.0052070613,-0.0404747464,-0.0122458264,0.0147422617,0.0060121249,0.0022213103,-0.0276232772,0.0237087477,0.0268403701,-0.010886821,0.0190260857,0.0244916528,0.0301344842,0.0055948212,0.027386928,0.0296617858,-0.0243439358,-0.0360727496,0.0161751267,-0.0208430178,0.0362795554,-0.0233099088,-0.0169137176,0.0215225201,-0.0101999315,-0.012681595,0.0111970287,0.0357477702,-0.0020865176,-0.00705723,0.0235610306,0.0053621656,0.0001156932,-0.0256733987,-0.0137082357,0.0288050212,0.0074228323,0.0073083509,0.0070941597,-0.0140627585,0.0397657007,-0.0037575781,-0.0051036589,0.0002310403,-0.0014457905,-0.0208577886,-0.0218770448,-0.0159978662,0.0205180384,-0.0038702132,0.0143877389,0.0261904113,0.0304003768,0.0129031725,-0.0016821394,-0.0182431806,-0.0110271527,0.0318184681,0.0296913292,-0.012386159,0.0006878122,0.0010506447,0.0039994665,0.0060121249,-0.0265597068,-0.0024521197,-0.0108572775,0.0098897237,0.0369590558,0.0164262485,-0.0221872516,0.0291890875,0.0379930846,0.0003769119,-0.0132429237,0.0062410878,0.000873383,-0.0302083418,0.0230440162,-0.016308073,0.0130435042,0.0346546546,0.0026607716,-0.0074117533,0.0214338899,0.0146240871,0.0101999315,-0.0122679844,0.0054581822,0.031523034,0.007289886,-0.0043392177,-0.027386928,0.0298390482,-0.007300965,0.0110271527,-0.0000551923,-0.0033107309,0.0198385343,-0.0232065059,-0.0272687525,0.0266778804,-0.042306453,0.0129327159,-0.0173420999,-0.0158353765,-0.0161160398,-0.0039108354,-0.0052698418,0.0003607552,0.0098158652,0.0169728044,-0.0017246084,-0.0259392913,0.0250972975,-0.0023856466,0.0042949026,0.0067248647,-0.0110049956,0.0175193623,0.0543897897,0.0035618516,0.0103254924,-0.019114716,0.0041213338,0.012386159,-0.0065697604,-0.0125560351,-0.0035489262,-0.0278448537,0.0125855785,0.0155990263,0.0360432044,0.0339456089,0.0464130118,-0.030489007,0.007131089,-0.0192919783,-0.0070313793,-0.0229258426,0.0045090937,-0.0008904629,0.0226451773,-0.0206362121,0.0186272468,0.0004362299,0.0188488234,0.0096164457,-0.0098158652,-0.035363704,0.0005668681,0.0057646972,-0.0141661614,0.0180068314,0.0502241403,-0.0123344576,-0.0374317542,-0.0017458427,-0.0012786845,0.0140406014,-0.0086562783,0.0008710749,0.0281846058,0.0462652966,-0.0257768016,0.0279630274,0.0069279769,0.0021769949,-0.0180068314,-0.000502703,0.0243587065,-0.0443745032,-0.0171500668,-0.0062743244,-0.026352901,0.038820304,-0.0006005662,-0.0043724542,-0.0250677541,0.006687935,-0.007300965,0.0436359122,0.0135014299,0.022807667,0.0123418439,-0.0186272468,0.0118100587,-0.0248018615,-0.000327057,0.0172682405,0.0079915468,-0.0359250307,0.0293515772,0.0167216845,0.010000512,0.0014319419,0.0240928158,-0.0022748581,-0.0266926531,-0.0061302995,0.0012546802,-0.0117657436,0.0134718865,0.0399134196,-0.0133906417,-0.039411176,0.0314934887,-0.0082278959,0.0212270841,0.0194249246,-0.0038369766,-0.0005128586,-0.0090920459,0.0389975682,0.0233394522,0.0197203606,-0.0087079797,-0.00299683,-0.0252745599,0.0036855654,-0.020488495,0.0017541519,-0.0071052383,-0.0064220424,-0.0023025551,-0.008250053,0.027091492,0.0023801071,0.0195726417,0.0007252033,0.0081688082,0.0109459078,-0.0017172224,-0.0009629371,0.0288493372,0.0018178553,0.0091585191,-0.0204589516,-0.0156876575,-0.0073231226,-0.0338569768,0.0260279216,0.0215963796,-0.0018464756,-0.0277709942,-0.0226747207,-0.0195726417,0.0314344019,0.0131838368,0.0182874948,-0.0149490675,0.0089000128,0.0050704223,0.0121571962,0.0187897366,0.010000512,0.0163376164,0.0309026167,0.008818768,0.0063481834,-0.0262790415,0.0627506301,0.0066473125,0.0157024302,0.012386159,0.0202521458,-0.0239155535,0.0485106111,-0.0049744057,0.0242405329,-0.0153331347,0.0311094224,0.015022926,0.0204146355,0.0242257621,0.0103845792,-0.0111231692,-0.0118248304,0.0273573846,-0.0311980527,0.0065476028,-0.0186124742,0.0384362377,0.0027401699,-0.0016682908,-0.017386416,-0.0169728044,0.0161898993,0.0423359945,-0.0346841998,-0.0226451773,0.011647569,0.0040659397,0.0121276528,0.0158944633,-0.025318874,0.0037206486,0.036309097,0.004261666,-0.009601674,0.0030891539,-0.0088630831,0.0268994588,0.025171157,0.0043835333,-0.0177113954,-0.0282880086,-0.0046826624,0.01337587,0.0143803526,-0.0315525755,0.011625411,-0.0570191704,0.0109237507,-0.0013654688,-0.0202373732,0.023590574,0.0137082357,0.0165148787,0.0115367798,0.0142991077,0.0192919783,0.0055541988,0.0368113406,0.0161603559,-0.0160126369],"96":[0.0179907642,-0.0010476289,0.0753258094,0.0045073912,0.0376111716,0.0020079555,-0.018184768,0.0091053182,-0.0593397729,0.0063375081,0.0236427858,-0.0169560686,-0.011510984,-0.0205775015,0.0465354174,0.0005197727,0.0142787946,0.0240954645,-0.0041581816,0.0152876219,0.0169819351,0.0239790622,0.0287645273,0.0415171459,-0.0031283363,-0.0281695779,-0.0147314733,0.0610987544,0.0291266702,-0.0772917345,-0.0190642588,-0.033213716,-0.0301872343,0.0301096309,0.0482167974,0.0315582044,0.0209913794,-0.0092023211,0.0593397729,0.0156626999,-0.0413360745,0.0065509141,0.0003380947,0.0246645473,0.0007016527,-0.009881339,-0.0145633351,-0.0285058543,0.0122870058,0.0490186848,0.0080641564,-0.0052672452,0.0000779053,-0.0287903957,-0.0156368315,-0.0442073531,0.018184768,0.0263588615,0.0213923231,0.000856857,-0.0100236097,-0.0441814847,0.0254535023,0.0250784252,-0.0361625999,0.0007521749,-0.0277298316,0.0099524744,-0.0056196884,0.0198920164,0.0409221947,0.0117502576,0.0170854051,0.0037540037,0.0388269387,-0.0579946674,-0.043095056,0.0518899672,-0.0139683858,-0.007883084,0.0105280243,-0.0061596702,-0.0324635617,0.0356193818,-0.0021259754,-0.0428105146,-0.0005561487,-0.0000376138,0.0023102805,0.0021017247,0.0060562007,0.0387493372,0.024017863,0.026229525,0.0204093643,0.0057942932,0.0317651443,0.0233582444,-0.0087173069,0.0064765452,-0.0277298316,-0.0522779748,-0.02943708,-0.0025624875,-0.0032010884,-0.0448799059,0.0362402014,-0.0286610574,-0.0079283519,0.0104762893,-0.1289230287,-0.0137873143,-0.0244576093,-0.0004611669,0.023177173,0.0004918844,-0.02617779,-0.0174346138,0.0211077835,-0.0225692894,-0.03269637,-0.0054224497,-0.0435865372,0.0226339586,0.0277557001,-0.0209137779,-0.0053254468,-0.0144986669,-0.0250008237,0.0310925916,0.0447505675,-0.0097067347,0.020655103,-0.0162447151,-0.0226856936,-0.0098360712,-0.0636854917,-0.0116597218,0.0105409576,-0.0286351908,0.0218708701,-0.0757396892,0.0184434429,-0.0356452502,-0.0080576893,0.0090212487,0.0040547121,0.0545801744,-0.0229831673,-0.0056358557,0.0062502059,-0.0342225432,-0.0260743201,0.0097067347,0.0501827188,-0.0136967786,0.0371714272,0.0263717938,0.0143563962,-0.0368868858,0.0460698046,0.0415171459,0.0008786826,0.0393960215,-0.0021647764,0.0045817597,-0.0404824503,-0.0229055658,-0.0733081549,-0.0164645873,-0.0645132512,-0.0532350689,0.0082969628,0.0237203874,0.0570634417,0.0159084387,-0.0104374886,-0.0503896587,0.0138519825,-0.0460698046,-0.0467164889,-0.0057619591,-0.0222200807,-0.0280919764,-0.0174087472,0.0066802511,-0.0612022243,-0.0037249029,0.0002685762,0.0573738515,-0.051036343,0.0479063876,0.0152876219,0.0199437514,0.0345070846,-0.0418534204,0.022646891,0.0342742801,-0.03595566,0.0234358478,0.0243670736,0.011245844,0.0325670317,-0.0383354574,-0.0025269198,0.0276522301,0.018870255,0.0204610974,-0.0649788603,-0.0568047687,-0.0179131608,-0.0199049488,0.0177967586,-0.0002324022,-0.0340414718,-0.0105344905,-0.0462250076,-0.021599263,-0.0018462843,0.0014712072,0.0037410699,0.0382319875,-0.021288855,-0.0055550202,-0.0105280243,0.0308339186,0.0039092079,-0.0233453102,0.0391114801,0.0052219774,0.0289714672,-0.0613056943,0.0217803344,-0.0619782433,-0.0029973828,0.01629645,-0.0059688981,-0.0408704616,0.0083228294,-0.0463026129,0.0084327664,-0.0122611383,0.0073140021,0.0104892226,-0.0036764015,0.0322824903,-0.0409739316,-0.0509070046,0.0107866982,0.0590293631,-0.0023135138,-0.0375077017,-0.0138907833,0.0000130979,0.0032140221,-0.0448023044,-0.0225822236,0.0173182115,0.0617713034,0.0036279003,0.0034209611,-0.0552009903,-0.0050700065,0.007883084,-0.0580464043,0.009719668,0.0210301802,-0.0503120571,0.0221554115,-0.0319720842,0.0502603203,0.0141753247,0.0102176154,-0.0353348404,-0.0385941304,-0.0293077417,-0.0287127923,0.0198532157,0.0098037375,0.0079154186,0.0076438109,-0.0052834125,0.0075080073,-0.0010573292,0.0407928601,0.0303424373,0.0046399613,0.0308597852,0.0138131818,-0.0249361545,0.0044039218,0.0218579359,-0.0111747086,-0.0327222385,-0.0117049897,0.0105732922,0.0050312057,-0.0037766376,-0.0114721833,-0.0001922876,0.0158437714,0.0018139501,0.0105603579,-0.0390338786,-0.0059947656,0.0031913882,-0.0213017873,-0.0131858969,0.0368092842,0.0054741846,-0.0135027729,-0.0250396244,0.0113622472,0.0173182115,-0.0204610974,-0.0072363997,0.0497171059,-0.0023620152,-0.0422155671,-0.0566495657,-0.0360849947,-0.0651340634,0.0011559486,-0.011879595,0.0385423973,0.0066414499,0.0109419022,-0.001556893,0.020706838,0.0046722959,-0.0063116411,-0.0278333016,0.0259708501,-0.003941542,0.0024283004,-0.0475442447,0.0578911975,0.0197626781,-0.0252336301,0.0037766376,-0.0048469007,-0.033213716,-0.0525366515,0.0230866373,0.0523814447,0.0092863897,-0.0069130575,-0.0224140845,-0.0144210644,-0.0101076793,-0.0728942826,-0.0253112316,-0.0317134075,-0.0278333016,0.0094545279,0.0138907833,0.005018272,-0.0554079302,-0.0105538918,-0.0196721423,-0.0315064713,0.0370679572,0.0448023044,-0.0291784052,0.0170854051,0.0203188285,-0.0471821018,0.0061370363,-0.0127267512,-0.0314288661,0.0159084387,-0.0145116011,-0.0488376133,-0.0180942323,-0.0512691475,0.0216639321,0.0516571589,0.0322048888,-0.0003235443,0.0539076217,0.0252077617,0.0007921885,0.0217932686,-0.0082193604,0.0360073932,0.0472338386,-0.009881339,0.0252206959,-0.0057587256,-0.0035147304,0.0282989144,0.0330326445,0.0396029614,0.0094157262,-0.0119636636,-0.0130824279,0.0246257465,0.0170854051,0.0556666031,0.0178743601,0.005095874,-0.0001827894,-0.0322566256,-0.0193099994,-0.0019917884,0.0078960182,0.0096161989,0.0164904557,-0.0292560086,-0.0185210444,-0.0645132512,-0.0292560086,0.041155003,-0.0232806429,0.003718436,-0.0419051573,-0.0271090157,0.0440780185,0.0193876028,0.0620817132,-0.0033562926,0.0009611349,-0.0157273673,-0.0155592291,0.0052122772,0.0549423173,0.0193358678,0.0242118686,-0.052872926,-0.0877421573,-0.026436463,0.0218320694,0.0310149901,-0.0051799431,-0.0264235288,-0.0012004081,0.0650305972,-0.0200860221,0.044828169,0.0234746486,-0.0136838444,0.0487082787,0.0181071665,0.0009344592,0.0160248429,0.0024153667,-0.0127461515,0.0162188485,-0.0198273472,-0.005095874,0.0528470576,-0.0508294031,-0.0128366873,0.0135674411,-0.0255828388,-0.001859218,0.006069134,0.0097132018,0.0123452079,-0.0055517866,-0.0456300601,0.0254276358,-0.0709800944,0.0094868615,0.0093187243,-0.0486306772,0.0277557001,-0.0030588177,0.0067061186,-0.0546836443,0.01145925,0.0331878513,-0.0055938209,-0.0192711987,-0.0210043136,0.0205128323,0.0241601337,-0.0167361945,0.0266175345,-0.0463284776,0.0206809714,-0.0402755104,0.022646891,0.0593397729,0.0105603579,0.0620299801,-0.0031913882,-0.0028696626,0.0144339986,0.0114527829,-0.0300578959,-0.0037443035,0.0550457872,-0.0135803754,-0.0114333825,0.0122223375,-0.0693763122,-0.0756879598,-0.004811333,-0.0057942932,0.0082193604,0.0043974547,0.0048145661,0.0610987544,-0.0409221947,0.0194522701,-0.0211724509,0.0080382889,0.0210301802,-0.0187409166,0.0081676254,-0.0192065295,0.0423190333,0.0208749771,-0.004491224,0.007566209,-0.0189478565,-0.0177062228,-0.0098684058,-0.0231383722,-0.0178226251,-0.0019998718,-0.036473006,-0.0127655528,-0.010353419,0.0077731479,-0.0402496457,0.00423255,-0.0058427947,0.0160895102,-0.0039318418,-0.0290490687,0.0085621029,-0.018870255,-0.0389562771,0.0151970861,-0.0022827964,-0.0181718357,-0.01881852,0.0313512646,0.0049309693,0.0311960615,0.0046690623,0.0195816066,-0.0055194525,-0.0262812581,-0.0376887731,-0.0348174945,0.0134769054,0.0949850231,0.0277039651,-0.0312219281,0.0310408566,0.0004199408,0.0096226661,0.0068613226,-0.0014469567,-0.0006632558,0.0341966785,-0.0039512422,-0.01471854,0.0282989144,0.0093769254,-0.0064862459,0.0022941134,0.0177838244,-0.0080835568,-0.0420086272,-0.0252982993,0.0061823041,-0.0029585818,0.000784105,-0.0039674095,-0.0018430509,-0.0032382726,0.0044718236,-0.0324376971,-0.0189607907,0.0032415062,-0.0063148742,-0.0100171436,-0.0173182115,-0.0537006818,0.0224528871,-0.0224011522,-0.0060400334,0.0442073531,0.0300837643,0.043250259,-0.0145504018,0.0128625548,0.0138519825,-0.0148090757,-0.016451655,0.0448799059,-0.0032916241,0.0213664565,0.034636423,-0.0214052573,0.0315840729,0.0194522701,0.0071199965,-0.0039609428,-0.0172923449,-0.0202412251,0.0007222657,-0.008355164,0.0115303854,0.0216897987,-0.00031829,0.0200860221,0.0036990354,0.0054418501,-0.0541662946,-0.0143563962,0.0016652127,-0.0142787946,0.0059203967,0.0118149258,0.0071523306,-0.0281695779,-0.0173182115,-0.015610964,-0.0403789803,0.0192970652,0.0228926316,-0.0140071865,-0.0420603603,-0.0118537275,0.0408187285,0.0112781776,-0.0067384527,0.0374042317,0.005571187,0.0070359274,0.0473114401,0.0209655128,0.0292301401,-0.0090083154,-0.0279885065,0.0341449417,0.0187021159,-0.0155980308,0.006596182,0.0280402415,-0.0274711587,-0.0016369201,0.0355935171,-0.002509136,-0.0010678378,-0.0202024244,0.0034694625,0.0562874191,0.0456041917,0.0091829197,-0.0094997957,-0.0125068789,-0.0209655128,0.0201506894,0.0210689809,-0.0173311457,0.0009304173,-0.0118860612,0.0099589415,-0.0146280043,-0.0039771097,0.0015108167,0.0235263836,0.0077214129,0.0198402815,-0.0183141064,0.0190125257,0.0113299126,0.0141623914,0.0262941923,-0.0109742358,-0.0086009037,-0.0217674002,0.0133475689,0.0335241258,-0.001425131,0.0020758573,-0.0219614059,0.0020952579,-0.0015690183,-0.0114269154,-0.0151841529,0.0343001485,0.0475959815,0.0266951378,-0.0114333825,0.0012198087,0.0052769459,-0.0364212729,-0.0148090757,-0.029488815,0.028066108,0.028066108,-0.0143046612,-0.0459922031,0.0011785825,0.0077666813,-0.0842241943,-0.0174863487,0.0024622513,-0.0012295089,0.0134251704,-0.0186374485,0.0154428259,-0.0279626381,-0.0361625999,0.0033061747,-0.0224270187,0.0185986459,-0.0163740516,-0.0194522701,-0.0032027052,0.0049924045,-0.036731679,0.0268244743,-0.07863684,-0.0078378161,-0.0119765969,-0.0219226051,0.0296181515,-0.0087690419,0.000659214,0.0337569304,-0.0044491896,-0.01182786,0.0058686621,0.0199049488,0.0194522701,0.0120606665,0.0236815866,-0.0486824103,-0.0277039651,0.0026352394,-0.0383613259,-0.0233065095,-0.0205128323,0.0296698865,-0.0115691861,0.005493585,-0.0112135094,-0.0341449417,-0.001184241,0.0400427058,0.0371714272,0.0081611583,0.0159601737,0.0105603579,-0.0203576293,-0.0210560486,-0.0108513664,-0.0474407747,-0.0190383922,0.0172018073,-0.0006854856,0.0388786718,0.0015229421,0.0404824503,-0.0398098975,0.0095385965,-0.0171759408,0.0170724709,-0.0141623914,-0.0008576653,0.0101594143,-0.0598571189,-0.0151841529,-0.0099589415,0.0095967986,0.0020968746,0.0665309057,-0.0256216414,0.0051379083,-0.0084974347,0.0083228294,-0.0295146815,0.0168784652,-0.0014776741,-0.0203705616,-0.0449575074,0.0060173995,-0.0065444475,-0.0212629866,-0.0113105122,-0.02943708,-0.0122805387,-0.0266175345,-0.0034629956,0.003589099,0.03269637,0.0021453758,-0.0156497657,0.0004530833,-0.0474407747,-0.0555114001,0.0479063876,0.0004777382,-0.000297879,-0.0221424773,0.0389304087,0.0188961215,0.0367834158,-0.0376111716,-0.0010217616,-0.0606848747,-0.0355417803,0.0074304054,-0.0072169993,0.0126297483,0.0230866373,0.0219484717,0.0204869658,0.0257380437,0.001797783,0.0099589415,-0.0253759008,0.0364988744,-0.0006115211,-0.053131599,-0.0007832967,0.0295405481,0.0077408138,-0.0302907024,0.0072040656,0.0112329097,-0.0278333016,0.0103986869,-0.0129983593,0.0234746486,0.0078442832,0.0040611788,-0.02134059,0.0019513705,-0.0440521501,-0.0632198751,0.0481133275,-0.0430174544,0.04257771,-0.0018640681,0.0086979065,0.0341449417,-0.0262812581,-0.0127590857,0.0198920164,0.0134769054,-0.0323859602,-0.0115691861,-0.0159084387,0.0243541393,-0.0234358478,-0.0266951378,0.0376887731,-0.0051152743,-0.0135545079,-0.0043748207,0.0127073508,-0.0388269387,-0.0173570123,-0.0031202529,0.0004251951,0.034791626,-0.0056293886,0.0213535223,0.0218191352,0.0669965148,0.0143951979,-0.0028195444,0.0259449836,-0.0060303332,-0.0015471927,-0.0081288246,0.0144469319,-0.0328515731,0.0140589215,0.0112652443,-0.0622886531,0.0173699465,-0.0185986459,-0.0324376971,0.0009756853,0.0293594766,-0.0055873543,-0.00628254,0.0293336101,0.0159213729,-0.0274711587,0.0027451757,0.0398875028,0.017395813,0.0218708701,-0.0236298516,-0.0146021368,-0.0116726551,0.0112070423,-0.0132828997,0.006725519,0.0167103279,0.0022989635,-0.0328515731,0.0256216414,-0.0135545079,-0.0041969824,0.0183917079,-0.0077537475,-0.0056940573,0.0048501338,-0.0058039934,-0.003915675,-0.0011583737,-0.0065250467,0.0085815033,0.0223106164,-0.0322566256,0.0146926725,-0.0176027529,-0.0448023044,0.0468458273,0.0020726239,0.0194781385,0.0233194437,-0.021288855,0.0277557001,-0.0011656488,0.0017379647,0.0686520264,0.0144727994,0.0345846899,0.0194264036,-0.0068095881,-0.0034403617,0.0317134075,0.0207456388,0.0181201007,0.0020273561,0.0019158029,-0.0284023844,-0.0076696784,0.0390856117,-0.0022827964,-0.014925479,-0.0051573091,-0.0139425183,-0.0013992636,0.0414395444,-0.0101658804,-0.0183141064,0.0619782433,0.0008176517,0.0479063876,-0.0381026529,0.0018899355,-0.0056423224,0.008516835,0.0170466043,0.0364471413,0.016348185,0.0199308172,0.0009425427,-0.027807435,-0.0119895311,0.0123193404,-0.0088983793,0.0010815798,-0.0028146943,-0.0032770738,-0.0120994672,-0.0015609347,0.0188961215,0.0238755923,-0.0007101404,0.0151194837,-0.0177062228,0.0316875428,-0.0286610574,-0.0034371282,0.0088531114,0.0510622114,0.0217544679,0.0064215772,-0.0211465843,0.0058201607,-0.0225951578,0.0078572165,0.0325152986,-0.0091829197,0.0267468709,-0.0104827564,-0.0106056258,0.0042390171,0.0322307572,0.0269538108,-0.0191806629,0.0135545079,-0.0262812581,0.0071781981,-0.001702397,-0.0176803544,0.0029391812,0.0138131818,0.0122611383,0.0178743601,-0.028117843,0.0317910127,0.0343518816,0.0346622914,0.0148608107,0.0208491087,0.024755083,0.0161024444,0.0304976422,-0.0073269354,-0.012978958,0.006803121,-0.0284282509,-0.0274970252,-0.0274452902,0.0233453102,-0.0194910709,0.0622369163,-0.0285317209,0.0187926516,-0.0079283519,0.0057619591,0.0135803754,0.012823754,0.0195945408,0.0002621093,0.0221036766,0.0225822236,0.0049148025,0.0084651001,-0.0069777258,0.0037087358,0.0137614468,-0.0077731479,0.0112717114,-0.0104568889,-0.0289714672,-0.0203446951,0.0335241258,0.0225951578,0.0226339586,0.0030960022,0.0256604422,0.0162447151,0.0138519825,-0.0101335468,0.0260096509,0.0141623914,0.009719668,0.0127138179,-0.0019610708,0.0073980708,0.0223494172,0.0397581644,0.0220907424,-0.0142658604,0.0065509141,0.0040094438,-0.016555123,0.0030879185,-0.0021469926,-0.0060788346,-0.0272642188,0.0480615944,0.0057684258,-0.0167749971,-0.0026594901,0.0052122772,-0.0397581644,-0.0141494572,-0.0138390483,-0.0002693845,-0.0468716957,0.0044782902,-0.0268762093,0.007514474,0.0322048888,-0.0189090557,0.021547528,-0.012034799,0.008672039,-0.0171759408,-0.0116920564,0.0091182515,-0.0396546945,0.0095321294,-0.029644018,0.0068160547,-0.0033061747,0.0189607907,-0.0205128323,-0.0136709111,0.0296698865,-0.0156238982,0.0154428259,-0.0140459882,0.0141365239,-0.0089759808,0.0122676054,-0.0291784052,-0.0007893593,0.0150806829,-0.0014712072,0.0156368315,0.0180166308,0.0612539575,-0.0114721833,-0.008251694,0.0116791222,0.0412584729,0.0110324379,0.0393701531,0.0132376319,0.0026465564,0.0229831673,0.0455783233,-0.0205904357,0.0219096709,0.0245352108,0.0034856296,-0.0180683658,0.0276263636,-0.0150160147,-0.0059365639,-0.0088143097,0.018766785,-0.0223235488,0.0073916041,0.0169948693,-0.0020225057,0.0344553515,0.0009255672,0.018236503,-0.013981319,-0.0135674411,0.0104892226,0.0025220697,-0.0056067547,0.0305752438,0.0301096309,0.0051670093,0.023914393,0.0426553115,0.0100947451,-0.0221424773,0.0233711787,0.0003845752,0.0123064062,-0.0152100204,-0.001797783,-0.0160636436,0.0455524586,-0.0304976422,-0.0061661368,-0.0455265902,-0.0055226856,-0.011769658,-0.0191418622,-0.0134510379,0.0280402415,0.0013394454,-0.0084456997,0.0316099375,0.0483202673,-0.0226856936,-0.0296698865,-0.0044265557,-0.0285317209,0.0276522301,0.0026772739,-0.0265657995,0.0251430944,0.0154557601,-0.0184175745,0.0084715672,0.0533385389,0.0029440313,-0.0049600704,-0.0152100204,0.0106379604,0.00856857,-0.0142011922,-0.0211853851,-0.027807435,0.008355164,-0.0012173837,-0.0000146388,0.0206809714,-0.0254017673,-0.0295146815,0.002984449,-0.0251560286,-0.0352831073,-0.0290490687,0.0053836484,-0.0164387207,0.0051346752,0.0071911318,0.0614091605,0.0170207359,0.0099912761,0.0176803544,-0.0008358397,0.0039189081,-0.0261001866,-0.0008786826,-0.0225822236,-0.0246386807,0.0194005352,-0.020448165,0.0152358869,-0.0222330131,0.0174863487,0.0173182115,0.0052898792,0.0081805596,0.0367575474,0.0217415337,-0.0032172555,0.032955043,0.0041581816,-0.0291525386,-0.0337569304,0.02449641,-0.0355935171,0.0175898187,-0.0298768245,-0.0214699265,0.0095903315,0.0050829402,0.0170207359,-0.0003944776,0.0340932086,0.0113751804,0.0121253347,0.0182753038,-0.0336534642,-0.0221554115,-0.0215863287,-0.0293594766,0.0097261351,-0.010405154,0.0015237504,0.003825139,-0.0071781981,0.0441297516,-0.0117373243,-0.0270831473,-0.00084554,-0.010301684,-0.0111359078,-0.0333689228,-0.0274194237,0.0172276758,0.0336534642,0.0211207159,0.0216768645,0.0456300601,0.0036861019,-0.0307821836,-0.0136191761,-0.0188573208,0.0198532157,-0.0012173837,-0.0040353113,-0.0115562519,-0.005018272,0.024858553,0.0308080502,-0.0274452902,0.0334465243,-0.0306011122,0.0176415537,0.0071523306,0.0256733745,0.0025624875,0.0247809514,0.0088660447,-0.0029213973,0.0010516708,0.0387234688,0.0006741686,-0.008413366,0.0309373867,-0.0141365239,0.0064506782,0.0385682657,-0.0121059343,0.0236427858,0.0155592291,0.0187021159,-0.0313253999,-0.0168784652,0.0268503409,0.038154386,0.0016336867,0.0088466443,-0.0218191352,0.0150677497,0.0010629877,-0.0083292965,0.0028211612,0.0078378161,0.0195428059,-0.0183141064,-0.026436463,0.0092346547,-0.0077214129,0.0069453917,-0.0199308172,-0.0233065095,0.0152229536,0.0185339786,-0.0186374485,0.016658593,0.0144857336,0.0336275958,-0.0318427458,-0.0261001866,0.0144339986,0.0056972904,0.0019287366,0.0017589818,-0.005571187,0.0118343271,0.0127138179,-0.0067449193,0.0220260751,-0.0024622513,-0.0114915837,0.0148996115,-0.0137097118,-0.0176932886,0.0212112516,-0.0119701307,0.0283506494,0.0184305087,-0.003679635,-0.0088401772,0.0370679572,-0.0344294831,-0.0172535423,-0.0164387207,-0.0372231603,-0.0217156652,-0.0108642997,0.0139166508,-0.0310408566,-0.004284285,0.0318427458,-0.0030378005,0.0065670814,0.0285317209,-0.0206292365,-0.0153652243,0.000681848,-0.0025026691,0.0032819239,0.0153781576,0.0427070446,-0.0077537475,-0.0534420088,0.0220519416,0.0092540551,-0.0008980831,-0.0222071465,-0.0073657366,0.0032819239,0.01024995,-0.0201894902,0.0141494572,0.0148866773,-0.0246128123,-0.0156497657,0.0230866373,0.0321790203,-0.0205516331,-0.0117502576,-0.0043489533,0.0032188722,0.0293853451,-0.0102176154,-0.0372748971,-0.013981319,0.0072881347,-0.0048921686,0.056132216,-0.0012254672,-0.0008875745,-0.0112070423,0.0046334947,0.0001653087,-0.0284023844,0.0146021368,-0.0157532357,-0.0206680372,-0.0332395844,0.0079218857,0.020758573,0.0123258065,0.0060594338,0.0124810115,0.0099654086,-0.0250396244,-0.0000124411,-0.0207197722,0.0101206126,-0.0024088998,0.0200989544,-0.0513467491,-0.0362660661,0.0564426258,-0.0070617949,0.011879595,0.0154298926,0.0011898995,-0.0540628247,-0.0155980308,0.0177062228,0.0143046612,0.0061176354,-0.0067319861,-0.0138519825,-0.0152617544,-0.0347140245,-0.0190642588,0.0161541793,0.0081288246,-0.0232030414,-0.0330067761,-0.0123193404,0.0111553082,0.0327481031,0.0359039232,-0.0086073708,-0.001629645,0.0217285994,0.0029246307,-0.0123258065,0.0732564256,0.0172018073,0.0077084797,-0.0127849532,0.011562719,0.0080512222,-0.0202670936,0.0251818951,0.0319462158,0.0123904757,0.0165939257,-0.0072752009,-0.0115821194,0.0283506494,0.0020467564,0.00446859,-0.0251301602,0.0134381047,-0.0025301531,0.0108772339,0.0481133275,0.0059397975,0.0266175345,0.0404048488,-0.004229317,-0.0014582736,-0.0094286604,0.0625990629,0.0056972904,0.0075985431,0.0164775215,0.0054806513,-0.0374301001,0.0235781167,-0.0190513264,0.0415947475,-0.0182106365,0.0187538508,-0.0163352508,-0.0058524949,0.0144727994,0.0017783825,0.0038671733,-0.0367834158,0.0150030805,-0.0136191761,0.0161800459,0.0105021568,0.05245905,0.0016256032,0.0156238982,0.0024477008,0.0037960382,-0.0039124414,0.0186115801,-0.0269796774,-0.0186891835,-0.015766168,0.0177579578,0.0215216614,0.0049148025,-0.046250876,0.0092540551,0.0462767445,-0.0049309693,0.0178226251,-0.0030555844,-0.0009942774,0.0220390093,0.0479063876,0.0037960382,-0.0302131008,0.0006604266,0.0342225432,-0.016606858,0.0002089599,-0.0010961302,-0.0249878895,-0.0482167974,0.0136450436,0.0059074629,-0.0190125257,0.0273935571,0.0161541793,0.0232935771,0.0247421488,-0.014188258,0.000109128,-0.0029181638,0.0170078035,0.0186762493,-0.0105538918],"97":[0.0146890879,-0.0301450752,0.0165915899,0.0211782418,0.0269447416,0.0018766931,-0.0713807046,0.0284637939,-0.0066440101,0.0023486316,0.0533585511,-0.0330062024,-0.0567211136,-0.0274904203,0.055983711,0.087072663,0.013184783,-0.0568096042,-0.0584318936,0.0393773727,0.0160754062,0.002238021,0.0525621548,0.0060135294,-0.001467434,-0.0561901852,-0.0369881839,0.0487866476,0.0186858177,-0.0758051276,0.0299680978,-0.0293044336,-0.0204408392,-0.0033625623,0.0089668324,0.0112896552,0.0110168159,0.0033533447,0.0076395054,0.0348349661,-0.02111925,-0.036958687,0.0062494986,0.0290537179,-0.0506154113,-0.0146964611,-0.0352774076,0.0176239554,0.0171667654,0.0290389694,-0.0247030333,-0.021546945,0.0279328637,-0.0361917876,-0.014593225,-0.0163703691,0.0433003604,0.0421500131,-0.0542139411,-0.0240688659,0.0103605259,-0.0193052366,0.0208832808,0.0077279937,0.0251012314,-0.0047230725,-0.0156919565,0.0125137456,-0.0041257753,0.0247472785,0.0616469719,0.0255584214,0.0031063142,-0.0146743394,-0.0012028903,-0.0411471426,-0.0069242236,0.0235674307,-0.0281245876,-0.0060540866,-0.0000575521,-0.0060798959,-0.0386399701,-0.0039229891,-0.0053019347,-0.0519427359,-0.0379320607,-0.030499028,0.0042990651,0.0223138444,-0.0154264914,0.0732684582,-0.02695949,0.0324457772,0.0194969606,0.0441262536,-0.006492842,-0.0215321966,0.0584908836,0.0213994645,0.0149103086,-0.0194379687,0.0208980292,-0.0305580217,0.0207800437,-0.018597329,0.0030620701,0.0219303947,0.0306465104,-0.0346874818,-0.0683131069,-0.049258586,-0.027121719,-0.0055489652,0.0484621897,0.0067509334,-0.046603933,-0.0068578571,0.0140327979,-0.0613520108,-0.0204998311,0.0225940589,-0.0134871192,-0.0274314284,0.0262073372,-0.0102056712,-0.0111126779,-0.0512348302,-0.0444212146,-0.0343925208,0.064183645,0.0197181832,0.0880755335,-0.0170192849,-0.0032703867,-0.0128971953,-0.0185235888,-0.0181548856,-0.0314134099,0.0046345838,-0.024334332,0.0121966619,0.005360927,0.0038566228,-0.030499028,-0.032298293,0.0119828144,0.014231897,0.0037902566,-0.0001451764,-0.0174027346,0.0201606248,-0.0483147092,-0.0044649811,0.0848309547,0.0317968614,0.0495830439,0.0447751693,-0.0035708789,-0.0024905819,-0.016694827,-0.0024721469,-0.0076026353,-0.0306760054,-0.0507628918,0.0380795412,-0.0652455017,-0.0387579538,-0.0660124049,0.01370834,-0.0376665965,-0.0307055023,0.0229480118,0.0384334959,0.0051839501,-0.0171962604,-0.0060614608,0.0002010578,0.0140549196,-0.0363392681,-0.0508513786,-0.0022988569,0.0162081402,-0.0063490481,0.0049553546,-0.0093429089,-0.0257353988,0.0510578528,-0.0254404377,0.020367099,-0.0490816087,0.0520312265,0.0232872181,0.0171225201,0.0191725045,0.0074846507,0.0138779432,-0.009807473,0.0015927926,-0.0163113754,0.0204408392,0.0104490146,0.0665433332,-0.0330356993,-0.0027984481,-0.0468104035,-0.0114518842,0.04309389,-0.0017808307,-0.0291864499,0.031678874,-0.0141950268,0.0124326311,-0.0159574226,-0.0335961245,0.0008623018,-0.0069021014,0.0361917876,0.0415010974,0.00032561,-0.0390529148,0.0258681327,0.0154412398,0.0125801116,-0.0358378328,0.057753481,0.0247325301,-0.0315313935,0.0186563209,-0.0181253906,0.020396594,-0.0296436399,-0.0169012994,-0.028567031,0.0051433928,0.049819015,0.0123072723,-0.0229332633,-0.0065297121,0.0282130763,-0.0042658821,-0.0037036114,0.0132437758,0.0062421248,-0.0365162455,0.028139336,-0.0312954262,-0.0183466114,0.0349234529,0.0278591234,0.0113781439,-0.015972171,0.0106849838,-0.0280508474,0.0018186226,0.0217091739,-0.0260746051,-0.0120270588,-0.0204555858,-0.0220926236,0.0295109078,0.0125432415,-0.0006807161,-0.0023652234,-0.0094535192,-0.0038013177,0.0469283909,0.0154854842,0.0427989289,0.0424449742,0.0281540845,0.0091364356,0.0171815138,-0.0133838821,0.0179484133,-0.0051138964,0.008856222,-0.0074551543,-0.01436463,-0.0340385698,-0.0056042704,-0.0120418072,0.0076616276,-0.0177566875,-0.0116214864,-0.0078754742,-0.0051212707,0.0285375342,-0.0088267261,-0.0267382693,-0.0175354667,-0.0176829472,0.0191725045,-0.012462127,0.0596412346,-0.007624757,0.0048004999,0.0069426587,0.0111274263,-0.0493765697,0.021384716,0.0164146125,-0.0121597918,-0.0237739049,-0.0170045365,0.0349529497,-0.0187005643,0.0151167819,0.0020260175,-0.0403802432,-0.0074145971,0.0214732047,-0.0006042104,-0.0139664318,-0.032239303,-0.0543024279,0.0644196123,0.0067693684,-0.0061831325,-0.0571045652,0.0141655309,-0.0399672948,-0.0236854162,-0.01934948,0.0158541854,-0.0514707975,0.0272544511,0.0244080722,0.0085981302,-0.0035782529,0.0194379687,0.0685490742,-0.0102056712,-0.0030491655,-0.0036261841,-0.003051009,-0.0156477131,-0.0370471776,-0.0123588908,0.0092691677,0.0230954923,-0.0444802083,-0.0289947242,-0.0062716207,0.0834741294,0.0188480467,-0.0282278247,-0.0371061675,0.0435953252,0.0488751382,-0.0433298573,0.0010959667,-0.0217976626,-0.0215616934,-0.0208242889,0.0092617944,-0.0088414736,-0.0102277929,-0.0513823107,-0.0103089074,-0.0341565534,-0.0105448766,0.0352479108,-0.0025053301,-0.001753178,0.0609980561,-0.0578124709,0.0613520108,-0.0126538528,-0.0344515145,0.0323277898,0.0092544202,-0.0126317302,0.0204113424,-0.0296731368,-0.0224318299,0.0458665267,0.0292306934,0.0396133438,0.0763360634,0.0587563515,0.0560132079,-0.0437723026,-0.0629448071,0.0466334298,0.0441557504,0.0273429397,-0.0188775416,-0.0354248881,-0.0256911553,0.0600541793,-0.0518542491,-0.0240983628,-0.0037552298,-0.0242458433,0.0444802083,0.0381975248,-0.0236854162,0.0550988242,-0.0077279937,0.0054457285,-0.0175502151,-0.0359263234,0.0172994975,0.0026435934,0.0166653302,-0.0300713349,0.015809942,0.002238021,-0.0370766707,-0.017579712,-0.0531520806,0.0542139411,-0.0360738039,-0.0104932589,-0.0325932577,-0.01325115,0.0606441051,0.0216206852,0.0386989601,-0.0341860503,0.0109135788,-0.0030049211,0.0041368362,-0.0175649635,0.0075510168,0.0120196845,0.0007871788,0.0058918577,-0.0119828144,0.0073334826,0.0253372006,0.0154264914,0.0121081732,-0.0579304583,0.0180074051,0.0071380707,-0.0042511341,0.0491700992,0.0220631268,-0.0261188485,-0.0321508124,0.0031966462,0.0576354973,-0.050408937,-0.0376076028,-0.0301893186,0.0082294289,0.0129488138,0.0080377031,0.007838604,0.019216748,-0.0506154113,0.0693159774,-0.0317673646,-0.0288324952,0.0473708324,0.0044723554,0.0261483453,-0.0155739719,-0.0165915899,0.0139738051,-0.0000489394,0.0160311628,-0.0021771854,0.017417483,-0.0012886134,0.029319182,0.0383155122,0.0040704701,-0.0296288915,0.0286702663,0.0080672,0.0258976277,-0.0343630277,-0.0052023851,-0.0026140972,-0.0422385,-0.0131700356,-0.0199541524,-0.0318263546,0.017609207,-0.0446571857,0.0045350343,0.0526506454,-0.0051692021,-0.0158246905,0.0151315294,-0.0039746077,0.0033883713,-0.0152200181,0.0033183179,0.1048293486,-0.0184203517,-0.0072855512,-0.0487866476,0.010198297,-0.0181991309,0.036899697,0.0112232883,0.0107071055,-0.0030141389,-0.0152200181,0.0296141449,0.0293044336,0.0160606597,-0.0011568025,0.0023265097,0.0245997962,-0.0528276227,-0.0017061685,-0.0470463745,0.0036962375,0.0249095075,-0.0106186178,0.0259271245,0.0000250602,0.0126612261,0.0137452101,0.0025108606,-0.0296288915,-0.0193199851,0.0020297044,0.0407636911,0.0298648607,-0.0139148133,-0.0372241549,-0.0021200364,-0.0341565534,0.0057664993,0.0190250222,-0.0388464406,0.0324752703,0.034304034,-0.0525326617,-0.0066993153,-0.0079713371,-0.0207063034,0.0024739904,0.0161343999,0.0067804297,0.0285522826,0.044244241,0.0454830788,-0.0260008648,0.0207800437,-0.002780013,-0.032534264,-0.0092396718,0.0171372686,0.0431528799,0.007786986,0.0480197482,-0.0020647312,0.0110758077,0.0572225489,-0.0204850826,-0.0019135633,0.0001812401,0.0078607267,0.0056042704,-0.0258828793,0.0219008978,-0.0024481812,-0.0065923915,0.0635937229,0.0011650983,0.0098148473,-0.0219746381,0.0455715656,0.0065960786,-0.0216649286,-0.0186563209,-0.0365752392,0.0257059038,0.001798344,-0.030174572,-0.0443032309,-0.0393773727,-0.0356313623,-0.0312659293,-0.0142097753,0.0041995156,0.0184645951,-0.0505859144,0.0100286938,0.0339500792,0.0110168159,0.025779644,-0.0067324983,0.0209422726,0.0036851764,0.0076468792,0.0148734385,0.0247620251,0.0123293949,0.0216796771,-0.0053498661,-0.0198804121,0.001308892,0.0150946593,-0.0347169787,-0.0020131129,-0.0209717695,-0.009807473,-0.0087603591,-0.0110831819,-0.005508408,0.0138042029,-0.0257648956,0.0298501141,0.0266202837,-0.0148365684,-0.0069463458,-0.0018066397,0.0131774088,0.0114887543,0.0000324919,0.0110389376,0.0146743394,-0.029746877,-0.0367522165,-0.0130373025,0.0010084,0.0012664914,-0.0037478558,-0.005198698,-0.0308529828,0.0013890847,0.0077132457,0.0216354337,0.0161491465,0.0028943107,-0.0018647104,0.0111642964,-0.0157656968,-0.0096526183,0.0219598915,-0.0522376969,-0.0430053994,0.0281983279,0.0116878534,0.012823455,-0.0041626454,-0.002042609,-0.0138705689,-0.0508808754,0.0419435389,0.009247046,0.0210455097,-0.0307644941,-0.0021126624,0.0365752392,0.0443032309,0.0178451762,0.0165768415,-0.0263548177,-0.0163556207,0.0138042029,0.0054752245,-0.0226530507,-0.0001662616,-0.0062089418,-0.000523096,-0.0263990629,0.0228005312,0.0322687998,0.0199099071,0.0037441687,0.051028356,-0.0243490804,0.0188332982,0.0162081402,0.0321213193,0.0417075679,0.0068799793,-0.0033238484,-0.0297763739,0.0210750066,0.0144752404,0.0068578571,0.017609207,-0.0400852822,-0.0027081161,-0.0274904203,0.0317378677,0.0060098423,0.0060872701,0.0081778103,-0.002212212,0.0201016329,-0.0422679968,0.0346874818,0.0180811454,-0.0243195836,-0.0353953913,-0.0026399062,0.005689072,0.0061352011,-0.0564556494,-0.0181991309,0.0009927301,-0.0280508474,-0.0040778439,-0.0301598236,-0.0094682667,0.028758755,-0.0152642624,0.0279033668,0.0096452441,-0.0236559194,-0.0173584893,-0.0398493111,0.0155149801,-0.0015153652,0.032239303,-0.0200573877,0.0345105082,0.0214289594,-0.0326522477,-0.0269447416,0.0482262224,-0.0317083709,-0.0482262224,0.032298293,-0.0107366024,-0.0134355007,0.0653044954,-0.0065223384,-0.0039635464,-0.0002829788,0.0389349312,0.0312659293,-0.0051728887,-0.003310944,-0.0059434762,-0.0324162804,-0.0026270016,-0.0363982618,-0.008266299,-0.042533461,-0.0036354016,-0.0059139798,-0.0109062046,0.0456305593,-0.0454830788,-0.0390824117,0.0507333949,-0.0185678322,0.0166358333,-0.0027412993,0.0147849498,-0.006131514,0.0383450091,0.0020149564,0.0111790448,0.0151610263,0.0158541854,0.0281098392,0.0085981302,0.0212667305,0.0223138444,-0.0267530158,0.0118943267,0.0073556048,-0.0000188096,0.0038639968,-0.0038308138,0.0073076733,0.0035321652,-0.018597329,-0.0335961245,-0.0040225387,0.0100434422,0.0435953252,-0.007049582,0.0007959355,0.0212519821,-0.0221663639,0.0232429728,0.0289209839,-0.0012572738,-0.0301155783,-0.031088952,0.0011807681,0.0103089074,0.0398198143,-0.01033103,-0.0234346986,-0.068903029,0.0066993153,-0.0080377031,-0.0526211485,-0.0453355983,0.0107660983,-0.0272986963,0.024629293,-0.0576944873,0.0090553211,0.0187743064,-0.0025698529,-0.0013632756,0.0008830413,0.0527981259,0.0000086271,0.049258586,-0.0400262885,0.0293044336,-0.0400852822,-0.0042695692,0.0026122537,0.0160164144,-0.024791522,-0.0247030333,0.0013135008,0.0065112771,0.0199246556,-0.0085243899,-0.0260303617,-0.0130667984,0.0160459112,0.0078459783,0.0014757297,-0.0216649286,0.0094387708,0.053683009,0.0123810126,-0.0113044027,-0.0076690014,-0.0140401721,-0.0219598915,0.0043322486,0.0121376701,0.0172552541,-0.0162081402,-0.0065260255,-0.0072671161,-0.0141802784,-0.0089594582,0.0108840829,0.0049111107,0.0037165161,-0.0425924547,0.001098732,0.0400852822,-0.0110168159,0.0356313623,0.0149619272,-0.025514178,-0.0356018655,-0.0084580239,-0.0379910544,0.00285191,-0.0272986963,0.0280950926,0.0150946593,-0.0121597918,-0.0075657647,0.0067693684,-0.0022933264,-0.025351949,-0.0125579899,0.02020487,0.0035893139,0.0524146743,-0.0073076733,0.003491608,0.0106112435,0.0305285249,0.016429361,0.0059619113,0.0129488138,0.0091143129,0.0046124621,0.0025901315,0.0262073372,-0.0395248532,0.0302925557,-0.0087456116,-0.0130667984,0.0172110088,0.0132216532,-0.0188185498,-0.0130004324,-0.0123588908,0.027844375,0.0247472785,0.0235084388,-0.0155297276,-0.0241426062,0.0152790109,0.007838604,0.0396428369,0.0126686003,-0.0032611692,0.0392298922,-0.0060762088,0.0374306254,0.0378435738,0.016562093,0.022992257,-0.0474888161,-0.00459034,0.0030362608,-0.0212667305,-0.0316493809,-0.0148660643,0.0037202032,0.030499028,0.013575607,0.0483147092,-0.0258828793,0.033684615,-0.0130446767,-0.0293486789,0.0131479129,-0.0152052706,0.0305580217,-0.0066919411,-0.0609390661,0.0332716666,0.0032169248,0.0203818455,0.0088193519,-0.0323277898,-0.0119533185,-0.0213404708,0.0394363664,0.0416485779,0.0303515475,0.0211929902,-0.0083547868,0.01144451,-0.0163261238,-0.027844375,-0.0073666656,0.0109725716,0.0155887203,0.0173142459,0.011938571,-0.0173732378,0.0132364016,0.0285080373,-0.0219008978,-0.0019651817,-0.0173732378,0.0278296266,-0.0121081732,0.0180221535,-0.04046873,0.0391119085,0.005198698,0.031088952,-0.0290537179,-0.049819015,-0.0099033359,0.0130299283,0.0068652313,0.0494945571,0.0078017344,-0.0085096424,0.0133101419,-0.050408937,-0.0345694982,-0.035454385,0.0111274263,0.0184056032,0.0130815469,-0.0258238874,0.0212962274,-0.0066661322,0.0451881178,-0.0016029319,0.0136788441,-0.0058144303,0.0258976277,0.0390529148,-0.0512938201,0.0172257572,0.0018969717,0.023154486,0.0105522508,0.0020573572,0.0118132122,0.0061794454,-0.0150282932,-0.0137894545,0.0157214534,0.0098885875,0.0477837771,0.0338615924,-0.0278148782,0.0103457775,-0.020234365,0.0075657647,-0.0385809764,-0.0100508165,-0.0454240851,0.0040225387,-0.0069758417,-0.0144162476,-0.035513375,0.0130594242,-0.0105448766,-0.0168128107,-0.0385809764,0.0136345997,-0.0216206852,-0.0078681009,-0.008885718,-0.0128308292,-0.0315903872,0.0221516155,0.0037533862,-0.01144451,-0.0082810465,-0.0263990629,-0.0083031692,-0.0188185498,-0.0288619921,0.0204703342,-0.0173732378,0.017417483,-0.0439787731,-0.0243048351,-0.032298293,0.0290684644,-0.0023504752,0.0484326929,0.0124989972,0.0059803464,0.0037441687,-0.0341860503,-0.0088340994,0.0171815138,-0.0076468792,0.0161491465,-0.04309389,-0.0053498661,-0.0356313623,-0.0229332633,-0.0212814789,-0.0003716977,0.0466629229,-0.0083252909,-0.0082515506,-0.0169160478,-0.0242163464,-0.0047083246,0.0269742385,0.0106849838,0.0145416064,-0.0002322823,-0.0187448096,0.0170635283,0.0092249243,-0.0019025023,0.0154264914,-0.0324457772,0.0158246905,0.0380795412,-0.0203818455,-0.0170487799,-0.0066071399,0.0236264244,-0.0052613774,0.0296878852,0.0006212629,0.0288767405,-0.0024500247,-0.0308824796,0.0063195522,0.0306465104,-0.0464859456,-0.0159426741,-0.0405277237,-0.0438017957,-0.008428528,0.0003597149,-0.0175649635,0.0225940589,-0.005755438,-0.0119533185,-0.0096894884,0.0147480797,0.0141212866,-0.0076837498,-0.0020444526,-0.002877719,-0.0217976626,0.0091806799,0.0088488478,-0.0005327744,-0.0217681658,-0.0255584214,0.043388851,-0.0026270016,0.0082884207,0.0045534698,-0.0128750736,0.0411471426,0.0459550172,-0.0119754411,-0.0124695012,-0.0077796122,-0.0230365004,0.0096526183,-0.0099991979,0.0238033999,0.0350119397,0.0277411379,-0.006868918,0.0033422837,-0.0108914571,0.0342155434,0.0132290274,0.0150799118,0.0245408043,0.046603933,0.0176387038,0.0306465104,-0.0051065227,-0.0113633955,-0.0115182502,-0.0244965609,-0.0334191471,0.0031155318,-0.0064191017,-0.0111421747,0.0259861164,0.0322098061,-0.0059619113,-0.0012701784,0.0200573877,-0.0132364016,0.0047156983,0.0019393725,0.0130151808,-0.0054309806,0.018789053,-0.0029367113,-0.0000517623,-0.0184498485,0.038964428,-0.0198361669,-0.0191725045,-0.0132290274,0.078636758,-0.0024666165,-0.0077943602,0.0099623278,0.0052540032,-0.0117099751,0.0213404708,0.0124695012,-0.0071159485,0.0114297615,-0.0143351331,0.000797779,-0.029481411,-0.0202786103,-0.0005355396,-0.014298263,-0.0132290274,0.0097042369,-0.0042880042,-0.0245113093,-0.034304034,-0.0122556547,0.0068246741,-0.0033975889,-0.0217239223,0.0188480467,0.0069057886,-0.0061020181,0.0144088743,-0.0003617888,-0.0315018967,0.0216796771,0.0201163813,0.0259861164,-0.0028002916,0.0138558205,-0.0162818804,-0.0371946581,0.0275051687,-0.0032814478,-0.0327997282,-0.0009162244,-0.0097927246,-0.0300860833,0.0104416404,0.0067103761,0.0232872181,-0.0095788781,-0.0270922221,-0.0487571508,-0.0270332303,-0.001937529,0.0056558885,0.002042609,-0.0222253557,-0.0116878534,0.0172257572,0.0356608555,-0.0065149642,0.0234936904,-0.0523556843,0.0122187845,-0.0078533525,-0.0034215546,0.0007060643,-0.0398493111,0.0178009328,-0.0576060005,0.0269004982,-0.02020487,-0.0014121287,0.0366047323,0.0589333251,-0.0108767087,-0.0082073063,0.0342745371,-0.0025753835,0.0249832477,0.0320033319,-0.0020592005,-0.0338910855,0.0183761083,-0.021414211,-0.0005949928,-0.0213404708,0.0022859524,0.0132732717,-0.0149029344,-0.0245113093,-0.024334332,-0.0088709695,-0.001632428,0.0085760085,0.0014351725,0.0267382693,-0.0011853769,0.0101909228,-0.0188922901,-0.0268710013,-0.0361327939,0.0111569222,0.0003408189,-0.0142171485,-0.0053756749,-0.0204260908,0.0116952276,-0.0320033319,-0.0396133438,0.0126464786,0.0047562555,-0.0350119397,0.011510876,0.0158984307,0.0099549536,0.0082515506,-0.041088149,0.0009779821,-0.0157509483,-0.0076911235,-0.0070274598,0.0050622784,0.0242753401,-0.0099402061,0.0171372686,0.0182286259,0.0394953564,0.016429361,0.0100950608,-0.0025366696,0.0269742385,-0.0094092749,0.020234365,0.0394068696,0.0026435934,-0.0234936904,0.0106849838,-0.0093945265,-0.0277558863,-0.0076395054,0.0110463118,-0.0270627271,-0.0283753052,-0.0085686343,0.0071270093,-0.0045387214,-0.0055526518,0.0016407239,0.0083031692,0.0213109758,0.0203228537,0.0197181832,0.0038676839,0.0115256244,-0.0014148939,0.0007281865,0.0014858691,0.0077206199,0.012889822,0.0123736393,-0.0167538188,-0.0146890879,-0.0067398725,-0.0213404708,0.0228152797,0.0137747061,-0.0399672948,0.0233314615,0.0135018667,-0.0157656968,0.014954553,0.0057664993,-0.009379779,0.0020260175,-0.0141507825,0.009608374,-0.0363687649,0.0180811454,0.0006678115,-0.0082073063,0.0031210624,-0.02111925,0.0212962274,0.0052613774,0.0064006667,0.0076616276,0.0313544162,-0.0385514796,-0.0085612601,-0.0180811454,-0.0039414242,0.016267132,-0.0363097712,0.0216354337,0.0701418668,-0.0024426507,0.0131110428,-0.005360927,-0.012889822,-0.0031763676,0.0326817445,0.0188185498,-0.0235379357,-0.0258533843,-0.0097706029,-0.0006069756,0.0326227508,-0.017152017,0.0140917907,0.0301893186,0.0208832808,-0.0226530507,-0.0024500247,-0.0020831663,0.0233904552,0.0045202863,-0.0067472467,-0.0109651973,0.0156919565,0.0140770422,-0.0227710344,0.0178599246,-0.0048816144,0.0170930251,-0.0210307613,0.0172110088,0.0239803772,0.0655404627,-0.001798344,-0.0018084833,-0.0288472436,0.0081778103,0.000103755,-0.0229037683,0.0141434083,-0.0219893865,-0.0019946778,-0.009247046,-0.0213257242,-0.0045497827,-0.0176239554,0.0144015001,0.0067509334,-0.0052060722,0.0190397706,0.0144162476,0.0391414054,0.0105448766,0.0398198143,0.0255879182,-0.012757089,-0.0260156132,0.0240541175,0.0002454173,0.0114297615,-0.0115182502,0.0237739049,0.0359558202,-0.0091954274,0.0210160129,-0.0051028356,-0.0209127776,0.0051433928,0.031088952,-0.0223138444,-0.023154486,0.0103900218,0.0337731019,0.0117247235,-0.0352184139,0.0494650602,0.0008567713,0.0178156812,0.0155002316,-0.0042769429,-0.0367227197,-0.0126538528,-0.0029643641,0.0013448405,-0.0309709683,-0.032239303,-0.0173289943,-0.0042363857,-0.0117173493,0.0198361669,-0.0001358436,0.0158984307,-0.0221958607,0.0075252075,0.0037036114,0.0107366024,0.0075325817,0.0330946892,-0.0233904552,0.0179336648,-0.0093724048,0.011149548,-0.0086718705,0.0215911884,0.0063637965,-0.0109725716,-0.0179779101,-0.0178894214,0.0072523681,-0.036958687,0.0268857498,0.0206030682,0.0121450434,-0.0220188834,-0.0289947242,-0.0062458119,0.0143572558,-0.016001666,0.0074440935,0.0021808723,-0.0009623122,0.01325115,0.0335076377,-0.0200426411,0.0103900218,0.0376076028,0.0342745371,0.0319148451,0.0000051057,0.005707507,-0.0100286938,-0.0214289594,-0.0052429424,-0.0456010625,0.0025643224,0.0033164744,0.0230365004,0.004052035,0.0323572867,-0.022136867,0.0073519177,0.0119533185,-0.0088635962,0.0241426062,0.0182876196,-0.0094092749,0.0131036686,0.0050807134,-0.0342155434,0.0019817732,-0.0082884207,0.027121719,0.0004311509,0.0029256502,0.0269152448,-0.0046456452,0.0059434762,0.0160311628,-0.0042179506,0.0056706369,-0.0296731368,0.0064633461,0.0401147753,-0.0177271925,0.0116804792,-0.0047968128,-0.014003302,0.0130741727,0.0260008648,-0.0067030024,-0.0166210867,0.0230954923,-0.0009659992,0.0100139463,-0.0036962375,-0.0327407382,-0.0127349673,0.0145784765,0.0056927586,-0.0184645951,-0.02111925,-0.0365752392,-0.0046382709,0.0432413705,-0.0126391044,-0.0086128786,0.0451586209,-0.0062347506,0.0361917876,0.0081999321,0.0124326311,0.0094313966,-0.0104416404,0.0062421248,0.0111716706],"98":[0.0308623593,-0.008237808,0.0076788138,-0.008429043,0.015519442,-0.0072779562,-0.0624308139,-0.0446901061,0.0211240929,0.0280232579,0.0354519933,-0.0113416966,-0.0354225747,-0.0419833995,0.0127612473,0.0318920836,0.0121360561,0.0206386503,-0.0368641913,0.0365699828,0.0368053503,0.0379527584,0.0363051966,-0.0234924629,0.002690159,-0.0534574874,0.0076567484,0.0266699027,0.0137836179,-0.0575175509,0.0432484895,-0.0368053503,-0.0102089979,-0.025154734,-0.000826539,0.0125405919,0.0148501201,0.0088409334,0.0021752962,0.018387964,-0.0185644887,-0.0304504689,-0.0082819387,0.0156812556,-0.0569879785,-0.0326570235,-0.0468672439,0.0056598154,-0.0107238609,0.0405712053,-0.033068914,-0.0196824763,0.014430874,-0.0137468418,0.0033962571,0.0348929986,-0.0037879206,0.0258902535,-0.0064284322,-0.0265227985,-0.0068109017,-0.0026349952,0.0386000127,0.0177112874,0.0049721054,-0.0058731157,-0.0253312588,0.0225657094,-0.0352460481,0.0206092298,0.0538693778,0.0207269136,0.0115549965,-0.0472202897,0.0095176101,-0.0216683764,-0.0110695539,0.0155047309,-0.0186821707,-0.0058841486,0.0064394651,-0.0135850282,-0.0683738068,-0.0293913223,-0.0258902535,-0.0391590074,-0.0212859064,-0.0549873672,-0.0327158645,0.0310388841,-0.0025706373,0.0286263824,-0.0259638056,0.0709628314,0.0396591611,0.0049279742,0.0179172326,-0.0628427044,0.0200208146,-0.0016457228,-0.012290515,-0.0162843801,-0.0047036414,-0.0341869034,0.0702567324,-0.022477448,-0.0208004657,0.0157548077,0.0250811838,0.0059650554,-0.0196383446,-0.0607832521,-0.0052332147,0.0030744676,0.0343045853,0.0243750848,-0.0132099129,-0.0210211203,-0.0118271383,-0.054075323,-0.0501623675,0.0528396517,0.0060165417,-0.0525454469,0.0441016927,-0.0059025362,-0.0282439124,-0.0645491108,-0.0272141863,-0.0104664294,-0.0121360561,0.0019105094,0.0865558237,-0.0166080091,0.0008196435,-0.0175053421,-0.0063475249,0.0040858057,-0.0334219635,-0.0176230241,-0.0003555772,0.0029310414,0.0022396541,0.0340103768,-0.0660789907,-0.0162696708,-0.0182261504,0.0058363397,0.0063990112,-0.0023168835,-0.0128936404,0.0831430182,-0.0414832458,-0.0194323994,0.0574881323,0.0466612987,0.0360109881,0.0482205972,-0.0279055741,-0.019917842,-0.0161666982,-0.0018158115,0.0153282071,-0.0414832458,-0.0339515358,0.0373055004,-0.0394237936,-0.0350106843,-0.063607648,0.0209916998,-0.0128715746,-0.0109445164,0.0190352201,0.0145191364,-0.022727523,-0.0149236713,0.0134011479,-0.0047146739,0.0152252344,-0.0627250224,-0.0398062654,-0.0148427645,0.0204179958,-0.0125920782,-0.0234630425,0.0390119031,-0.0024511155,0.0745521635,-0.0288911685,0.0504859947,-0.0341280624,0.0541047454,0.0369818732,0.0574292876,0.0260079354,-0.0062004216,-0.0082304524,-0.0075464202,0.0004937169,-0.0331571773,0.0556052029,-0.0181378871,0.0740225911,-0.0388942212,-0.0239043534,-0.0268905591,0.0109445164,0.0366582461,0.0090101026,-0.0029770113,0.0052001164,-0.0289058797,0.0137468418,0.0151811028,-0.0437192246,0.0288764592,-0.0317744017,0.0317744017,0.0463670902,0.0031388255,-0.0116432589,-0.0008495239,0.0240808781,0.005303089,-0.0634311214,0.0738460645,0.0199766848,-0.0289647207,0.0149898678,-0.0758466721,0.0339515358,0.007568486,-0.0117315212,0.0004863616,0.0131657822,0.0118197836,0.0346576348,-0.0382175446,0.023948485,0.0098485937,-0.0154311797,-0.0024400828,-0.0037382732,0.0201532077,-0.0174464993,0.0248752385,-0.0230364408,-0.0071639507,0.0377468131,-0.0006196744,0.0288323276,-0.0421893448,0.005906214,-0.03486358,-0.0037989533,0.0305093098,-0.0398062654,0.0060753832,-0.0211093836,-0.003368675,0.0261256192,0.0373349227,-0.0187410135,0.0184320956,-0.0117020998,-0.0360109881,0.0457198322,-0.0334513858,0.0124302637,0.0153134968,-0.0138130384,-0.0108930301,0.0182408597,-0.0373055004,-0.0160637256,0.0456904136,0.0400122106,-0.0311859865,0.018387964,-0.0247134231,-0.0052920561,-0.0209328588,0.0274936836,0.0093116648,-0.0355108343,0.0109077403,0.0051523075,0.029052984,0.0329218097,-0.0080539286,0.0244927686,0.0028887491,-0.00163469,-0.0176083148,0.0824957639,-0.0119374665,-0.0103266807,0.0312448293,0.0078994697,-0.0322451331,0.0239926148,0.0143499672,-0.0107238609,-0.0164314844,-0.0282733329,0.0596064255,-0.0264786687,0.0042034886,0.0032399592,-0.0463965125,-0.0364523008,0.0279349945,-0.0214918517,-0.015195813,-0.0460434631,-0.0273465794,0.061607033,0.0113931829,0.0213153269,-0.0175641831,0.0083113601,-0.0211240929,-0.0181231778,-0.0256843083,0.0131363617,-0.0441605337,-0.0178436805,0.0313919336,0.0056487825,-0.0047992584,0.0155929932,0.0643725842,0.0005415255,0.0202856027,0.0400122106,-0.0058105965,-0.0077303001,-0.0312742479,-0.0112019479,0.0299503151,0.0148059884,-0.0327747054,-0.029303059,0.0226981025,0.0313919336,0.0056303944,-0.0254489426,-0.0075243548,0.0229775999,0.0250958931,-0.0011988953,-0.0357167795,-0.010378167,-0.0016576749,0.0115476418,-0.0006541518,0.006068028,0.0127171157,-0.0462788269,-0.0030027544,-0.036717087,0.003186634,0.0456609912,0.0015142488,0.0194029789,0.0489266962,-0.0762585625,0.0259490944,-0.025537204,-0.0569291376,0.0372172408,-0.0144161638,-0.0077523654,0.0066306996,-0.0111504616,-0.0236689877,0.0402475744,0.0478969701,0.0064210771,0.0407771505,0.0472791344,0.0411007777,-0.0159901734,-0.058488436,0.0357462019,0.0497504771,0.0055458099,0.0004141889,-0.0408948325,-0.0136144487,0.0272141863,-0.044189956,-0.0303622056,-0.0429837033,-0.0437192246,0.0394237936,0.0516334027,-0.0129377712,0.0206533615,0.00131382,-0.022727523,-0.0369818732,-0.0377762318,0.02183019,0.0248605274,0.0451608412,0.0101354457,-0.0325393416,0.0182114393,-0.0175347626,0.0469849259,-0.0335396454,0.0432190709,-0.0161814075,0.0058253068,-0.036775928,-0.0176818669,0.057399869,-0.0102531286,0.0406888872,-0.0151222618,-0.0020796787,-0.0289353002,0.0241102986,-0.0378056541,0.0147471474,0.0284204371,0.0035985245,0.0167845339,-0.0349812619,-0.0046815756,0.0424835533,0.022345053,0.0139380768,-0.0409242511,-0.0025448941,0.0110769095,-0.0167256929,0.0230364408,0.0384529121,-0.0274789724,-0.0017744385,-0.0028317464,0.0871442407,-0.0384529121,-0.0587532222,-0.0108047677,0.0264639575,0.007568486,0.0002854731,-0.0166815612,0.0530161783,-0.0596652664,0.0373937637,-0.0162255391,-0.0744933188,0.011908045,0.0020557744,0.0262138806,-0.0288470387,-0.0150560653,0.0374526046,0.022094978,0.0314213522,-0.0151369721,0.0424835533,0.0097456211,-0.008046573,0.0430425443,-0.0033098336,-0.033657331,0.0297296606,0.0308329388,0.0157842282,-0.0014370194,-0.0233747791,0.0008315957,-0.0319803469,-0.0343340077,0.0037401118,-0.0404241011,0.0001450351,-0.0525160246,-0.0268905591,0.0420422405,0.0303622056,-0.0046705427,-0.0031645687,-0.0122758048,-0.0233600698,-0.057341028,-0.0099883424,0.0927930251,-0.0185497776,0.0112754991,-0.0484853834,-0.0368641913,-0.0227716547,0.0251988657,0.0066785086,0.0211240929,-0.0059282794,0.0022653972,-0.0167256929,0.0493385866,0.0218743216,-0.029052984,-0.0149310268,-0.0069911038,-0.0330394953,0.0199472625,-0.0371583961,-0.0107900575,0.0171964243,-0.0079436004,0.0038136637,0.0035433606,0.0338338539,-0.0216242447,0.026758166,-0.0490737967,-0.0266551934,-0.0018801693,0.0207122024,-0.0136144487,-0.0349518433,-0.0138203939,-0.0484265424,-0.0457492545,-0.0242426917,0.0143646775,-0.0382469669,-0.023051152,0.0190352201,-0.0373643413,-0.0145117808,-0.0078700483,-0.0188586954,-0.0036886255,0.0088924197,-0.0047514499,-0.0006844919,0.0292589292,0.0308917798,0.0066564428,0.0444841608,-0.0322745554,-0.0248458162,0.001715597,-0.000510266,0.0272583179,-0.0266257711,0.0296708178,-0.0059209242,-0.0017477759,0.0640783757,-0.0175788943,-0.020241471,-0.0046852534,-0.0142911253,0.0083040046,-0.0147618577,0.0306858346,-0.0086349882,0.00326938,0.0477498658,0.0101428013,-0.0056377496,-0.0289500114,0.036717087,-0.0110180676,-0.0323333964,-0.0056156842,-0.0546343178,-0.0204768367,0.005714979,-0.0244927686,-0.0557228848,-0.0446901061,-0.0387765393,-0.0167109817,-0.0258755423,0.0155635728,0.0151811028,-0.0696094781,0.0240220353,0.0346282125,0.0189028271,-0.0016107856,0.0154311797,0.0236689877,-0.0320391878,0.0079362448,0.0036261065,0.0146368193,0.0279202852,0.026817007,0.009863304,-0.0448077917,0.0185350683,-0.0069874264,-0.0095102554,-0.0259932261,0.0002769687,-0.0061636455,-0.0047293846,0.0095985169,-0.006844,0.0092234025,-0.0064578531,0.0369818732,0.028346885,-0.0166080091,-0.0098265279,-0.0032362817,0.0123052252,-0.0088482881,-0.0152693652,0.0343928486,-0.0268317163,-0.0284204371,0.0131952027,-0.0001065927,0.0004642961,-0.0140557596,0.0260520671,-0.0353931524,-0.0281262305,-0.0327747054,0.0050346246,-0.0206386503,-0.00111523,0.0158136487,-0.0042108437,-0.0031884729,-0.0022764299,0.0121360561,-0.0062776511,-0.0491326414,-0.0451902598,-0.0119742425,0.0078700483,0.0122022526,-0.0458375178,0.0266699027,-0.0167698227,-0.0299797356,0.0334219635,0.0242721122,0.0014811505,-0.0332454406,0.0001673305,0.0342751667,0.0308329388,-0.0014976996,-0.0141293118,-0.0313036703,-0.0078112073,-0.0017863907,0.0161372777,-0.0203150231,-0.0089880368,-0.0143205468,-0.0188734066,-0.0067410278,0.047249712,0.0563995615,0.0335102268,-0.0055789081,0.0448960513,-0.012231674,0.0380115993,0.0106429532,0.0562524609,0.0190793518,-0.0000677482,0.0191676132,-0.0314507745,-0.0249782111,0.0346576348,0.0047293846,0.0066601206,-0.0662555099,-0.0147765679,-0.0061636455,0.023683697,0.013437924,0.0028391017,0.0043726577,0.0109371608,0.018387964,-0.0363051966,0.0079803765,0.0414538272,-0.0190646406,-0.0028427793,-0.0039497348,0.0103487466,0.0154017583,-0.0306269936,-0.010569402,0.000627949,-0.0098559484,-0.0241102986,-0.0250958931,-0.0044204667,0.0187851433,-0.0338926949,0.0328629687,0.0195942149,-0.0010839704,-0.0149825132,-0.0194618218,0.0081642559,-0.0218154807,0.0189910885,-0.0182408597,0.0370407142,0.0089439061,-0.0317744017,-0.0373055004,0.0781414881,-0.0484853834,-0.0391001664,0.0339221172,-0.0152693652,-0.0276996288,0.0551344715,-0.0272583179,-0.0167698227,0.0199031327,0.0147839226,0.0171964243,-0.0059577003,-0.0327747054,0.0046999636,-0.0527219698,0.004291751,-0.0186821707,-0.0268611386,-0.0107385712,0.0146073988,-0.0116726793,-0.0121801877,0.0281556509,-0.0501329452,-0.0102604842,0.0141587323,-0.0250664726,-0.0018020205,-0.0105399806,0.0142911253,-0.0076420377,0.0149383815,0.0243162438,0.0124376193,0.0125332363,0.0178583898,-0.0023573369,0.0163579322,0.0347164758,-0.0052479249,0.0112607889,-0.0068991641,-0.0190793518,-0.0100398287,-0.0036978195,-0.0149016064,0.0163285118,0.0014085181,-0.0422776081,-0.0303622056,0.0016567556,-0.0065571479,0.0543695316,-0.0032086996,0.0003604041,0.0024731811,-0.0200943667,0.021138804,0.0016567556,-0.0292589292,-0.0087600257,-0.0177995488,0.0063144267,0.033068914,0.0136512248,0.0019307362,-0.0007300022,-0.0577823371,-0.0037088522,-0.0180790462,-0.0222715028,-0.0370995551,0.0174170788,-0.0152840754,0.0186086204,-0.0606067292,0.0054538702,0.0201532077,-0.003622429,0.0030707901,-0.0142690605,0.0478675477,0.01110633,0.0303033646,-0.031215407,0.0256695971,-0.0264639575,-0.0070940764,0.0141734425,0.0258902535,-0.039894525,0.0038173413,0.0045749256,0.002925525,0.0023223998,0.000184799,-0.0036831091,-0.000731841,0.0214330107,-0.0168875065,0.0023738861,-0.0266110618,-0.0025485719,0.0600771569,0.0014949414,0.0045491825,-0.0210652519,-0.016475616,-0.007759721,0.0119595313,0.00155838,-0.0022139109,0.0089659709,0.0194323994,0.0008205629,-0.0013496765,0.0137836179,0.0075464202,0.0274642631,0.0032840904,-0.0234630425,0.0048397123,0.0080245072,-0.0193294268,0.0187998544,0.0006035849,-0.0175200514,-0.0196383446,-0.0062813284,-0.0130922301,0.0185350683,-0.0100986697,0.0129892575,0.0105032055,-0.0209622793,-0.015519442,0.020623941,0.0156812556,-0.0364228785,-0.0292736385,-0.0048507447,0.0054501924,0.0605478883,0.0046889307,0.000935028,0.01743179,0.0044903406,0.0287146438,0.0236395672,-0.007406672,0.0160343051,0.009480834,0.0090321675,0.0075905514,-0.0136585794,0.0141955083,-0.0212417766,-0.045396205,0.0151516823,-0.000394192,0.0324805006,0.0115549965,-0.0331865959,0.0085982122,0.0030946943,0.0147765679,-0.0072227921,-0.0235071722,0.0158283599,-0.0260667782,0.0504565723,0.0206974931,-0.0172846857,0.0600771569,-0.0030468856,0.0483677015,0.0109592266,-0.0040453519,0.0078994697,-0.022727523,-0.0238308012,0.0013662258,-0.0202561803,-0.0178878121,-0.0568114519,0.0203150231,0.0305975713,-0.0034881968,0.0262727235,-0.0003597146,0.0140631152,0.0008191838,0.0137689076,0.0322451331,-0.0411301963,0.0345105305,0.0178731009,-0.0495739505,0.0363640375,0.0144676501,0.0081569012,-0.0350989439,-0.0327158645,-0.0122096082,-0.0134747,0.0126067884,0.0147250816,0.0354225747,0.0046926085,-0.016151987,0.0172993969,-0.0027471618,-0.0150119336,-0.0068954863,0.0169904791,0.0061489353,0.0203738641,0.0249782111,-0.0153723378,0.0144823603,0.0343928486,-0.0018167308,-0.0088850642,-0.0032473144,0.0218596123,-0.020623941,-0.0095396759,-0.0302445237,0.0074397703,-0.0355990976,0.0187263023,-0.0130407438,-0.0230217315,0.0050861109,0.0190057997,-0.0011363762,0.057841178,-0.0223009232,-0.031156566,0.0273171589,-0.0394532159,-0.002121971,-0.0165491682,0.007722945,0.0106797293,0.0069432952,-0.0110401334,0.0377468131,-0.0060753832,0.0304504689,0.0204621255,-0.0025301839,-0.0085908566,0.0219478738,0.0256254673,-0.0415420868,-0.0056892359,0.0028427793,0.0231541246,0.0309212003,0.0290088523,-0.0046190564,-0.0000247376,0.0038798605,0.0268905591,-0.0288617481,0.0257137287,0.0557228848,0.0385117531,-0.0289941411,0.0145044262,0.0039019259,0.0189175382,-0.0359227248,-0.0102310628,0.005428127,0.0118712699,-0.0274936836,-0.007759721,-0.0156224146,0.0055127116,-0.0028795551,-0.0236395672,-0.0055641979,-0.0147250816,-0.0206827819,-0.0010076604,-0.0162549596,-0.0135041205,-0.018961668,0.0250517614,0.0028262301,-0.0161225665,-0.0116947452,-0.0300385784,-0.0261256192,0.0060422849,-0.0114446692,0.0039718002,-0.0073846062,0.0025577657,-0.0155929932,-0.0128715746,-0.0122758048,0.0293913223,-0.00386515,0.0293324795,0.0189763792,0.0238602217,-0.0152399447,-0.0335396454,0.0004840631,0.0340692215,0.0122390287,-0.0067299949,-0.0502506271,-0.0203297324,-0.0571056604,-0.0366582461,-0.0266699027,0.0122758048,0.051662825,-0.0057664653,0.0078406278,0.0154900206,-0.0027968094,0.0009056072,0.0284939893,0.0189175382,0.0576646551,-0.0333337002,-0.0340397991,0.0054832906,-0.0047661602,0.0078259176,0.0295090042,-0.0210064109,-0.0029972382,0.0430719666,0.0049169417,-0.0278761536,-0.024904659,0.025860833,0.0219772942,0.0133570172,0.0081348354,0.0350989439,-0.0166521408,-0.0179907847,-0.0091572059,0.0149604473,-0.0373643413,-0.0140925357,-0.0368641913,-0.024904659,-0.0076346826,-0.0054023839,-0.014239639,-0.0248163957,-0.0157253873,-0.0135041205,-0.0070756883,0.0143867433,0.0074471254,0.0068329675,-0.0158283599,-0.0013450795,0.0081789661,-0.0014388582,0.018446805,-0.000387986,-0.0306269936,-0.0236542765,0.0429542847,-0.0117830075,-0.0097382655,0.0087526711,-0.0000693571,0.0316861384,0.0337750129,0.0137689076,-0.0214182995,-0.0031167599,-0.0097088451,0.0045418269,-0.0155635728,0.0461905673,0.0238013808,0.0202708915,-0.0123567116,0.0130039677,-0.0021808124,0.0315096155,-0.0143131912,0.0195942149,0.0310388841,0.0162549596,0.0114814444,0.0150192892,0.016475616,-0.0190646406,-0.0130186789,-0.007358863,-0.0231688339,0.0086423429,0.0125479465,0.0107017951,0.0091792718,0.0403358378,-0.0060128644,-0.0078921141,-0.000708856,-0.02771434,-0.0024511155,0.0243750848,-0.0004734901,0.0036334617,0.0138277486,-0.0118271383,0.0176965762,-0.0277878903,0.0224038959,-0.0171964243,-0.0237278286,-0.0096500032,0.0792006403,0.0085687917,-0.0012016535,0.0094146375,-0.0158724897,-0.0201237872,0.0396003202,0.0103046149,-0.0123420013,0.0302739441,-0.0077891415,0.0110621992,-0.0252282862,-0.0320097692,0.0056965915,-0.0187263023,-0.01704932,-0.0206533615,-0.0136144487,-0.0445724241,-0.0291559566,0.0000953876,0.003114921,-0.0117315212,-0.0068770987,-0.0063438476,0.0123567116,0.0135335419,0.0044903406,0.0083554909,0.0035599098,0.0206680708,0.0176524445,0.0291412454,-0.0081274798,0.0109812925,-0.030774096,-0.0572233424,0.0192558765,-0.0057002688,-0.0144014535,0.0098044621,-0.0173582379,-0.0233894903,0.0052810232,0.0064578531,0.0481911749,-0.0058620828,-0.0001085464,-0.0444841608,0.009480834,0.0297296606,0.0048544225,-0.0120845698,-0.0317744017,-0.0039828331,-0.0184026752,0.0271847658,-0.0296855289,-0.0109886471,-0.0439545885,-0.0083040046,-0.0033227052,-0.0029089758,0.0193735585,-0.0277878903,-0.0059577003,-0.0283321757,0.0275525246,-0.0183732528,0.0045307945,0.0144161638,0.0552815758,-0.0168286655,-0.0115917725,0.029817922,-0.0064652083,-0.0072080819,-0.0045307945,-0.001029726,-0.0455727316,0.00495004,-0.0213594586,0.0222420804,-0.0263462756,0.0055789081,0.0244486369,-0.0031038884,-0.0133055309,-0.0235218834,0.0117241656,-0.031215407,-0.0016494003,0.0090321675,0.0325687602,0.0209181476,-0.0087894471,-0.0004585499,-0.0132099129,-0.0335396454,-0.0064946287,0.0002463987,-0.0198295806,0.0104517192,-0.0219920054,0.0273171589,-0.0207269136,-0.068432644,-0.0135556068,-0.0002670852,-0.0220361352,-0.0095470306,0.0447783694,-0.0093116648,0.0075537758,-0.0636664852,0.0088409334,-0.0010784541,-0.0119668869,-0.0099736312,0.0104517192,0.0251253136,-0.0045933132,0.0218007695,0.037423186,0.0028409404,-0.0188881159,0.0029696561,-0.0002087034,0.005553165,-0.011908045,0.0497210547,0.0372760817,0.0245074779,-0.0378056541,0.0068844538,-0.0106208883,-0.0372466594,-0.0063438476,0.0058510499,-0.0107165053,-0.0127759576,0.0123272911,-0.0153282071,-0.0161961187,-0.0166227203,-0.0057554329,-0.0046190564,0.0224038959,0.0236395672,0.0022764299,-0.0059613781,0.006079061,0.0031112435,0.0177259967,-0.0053104442,0.010532626,-0.0052883783,0.0048360345,-0.0073147323,0.0015445889,-0.0018820082,-0.022094978,0.0397180021,0.0129230609,-0.0266404822,0.0275083948,0.002943913,-0.0150634199,-0.0204327051,0.0200943667,-0.0076052621,0.0050677229,-0.0027986481,-0.0236689877,-0.0166815612,-0.0033705139,0.0129892575,-0.0128053781,-0.0216830876,-0.0259490944,0.0200061053,0.011334341,-0.0066564428,0.0242721122,0.0235513039,-0.0255077835,0.0121654766,-0.0089659709,0.0006353041,0.0104149431,-0.0292883497,0.0314801931,0.0515157208,0.0080686389,0.0088188676,0.0094587691,-0.0045712478,0.0139601426,0.0164167751,0.0028924267,0.0012660113,-0.0355990976,-0.0001327381,-0.0172258448,0.0166815612,-0.0070205247,-0.0009042281,0.0250811838,0.0016512391,-0.034216322,-0.0128274439,-0.0112460786,0.0171817131,0.0092307581,0.0181820188,-0.003541522,0.0232570972,0.0004700423,0.0053398646,0.0254636519,-0.0061121592,0.0180496257,-0.0273171589,-0.0045455047,0.0310388841,0.0530161783,0.0108415438,0.0216536671,-0.0348047391,0.0175788943,-0.0190793518,-0.0175641831,-0.007388284,-0.015637124,-0.0076567484,-0.0087894471,-0.0093337307,-0.0067557381,-0.0286999345,0.0224921573,0.0219920054,0.0019178647,0.0043064612,0.0093263751,0.0306269936,-0.0119595313,0.0309506208,0.0118786246,-0.0335102268,-0.0386588536,0.0246692933,-0.0189910885,-0.0287881959,0.0119448211,0.0378939174,0.0332748592,-0.0066196672,0.0126582747,-0.0134894103,-0.0106944395,0.012003663,0.0349518433,-0.0371878184,-0.037923336,0.0182261504,0.0052516027,0.0239337739,-0.0427189171,0.037923336,0.0037952757,0.0094661238,0.0077008791,-0.0040232865,-0.0187263023,0.0205650982,0.0179172326,0.0208445955,-0.0261550397,0.0053067664,-0.0132834651,0.0022580419,-0.0130628096,0.0447195284,0.004788226,0.0124302637,-0.0144529399,0.0208298862,-0.0015694128,0.0233747791,-0.0007640199,0.0136070931,-0.0189910885,-0.0024143397,-0.0137689076,0.0090836538,-0.0134967659,0.0175936036,0.0071786609,-0.0333631225,0.0065203719,-0.0192117449,0.0250664726,-0.0056965915,0.0239337739,-0.0152399447,0.0032988007,-0.0216389559,-0.0353637338,-0.0105252704,0.0140484041,-0.002375725,-0.0089218402,-0.010665019,-0.0030726288,0.0049978485,0.0092013376,-0.0391001664,0.0177112874,0.0281262305,0.0073184096,0.0193294268,-0.0026441892,0.0004518842,0.0173435267,-0.0266699027,0.0047955811,-0.0628427044,-0.0037309178,0.0242721122,0.0208445955,0.0142911253,0.0219772942,-0.0260814875,0.0083481353,-0.0046558324,-0.0130848754,0.0099736312,0.0181673076,-0.0158872008,-0.0123052252,0.0031572133,-0.0515451394,-0.0248311069,-0.0193147175,0.012577367,0.0138939451,0.0075022895,0.0288911685,0.0114226034,0.0107827019,-0.0017992622,-0.0126067884,0.0161225665,-0.0204179958,0.0146588851,0.0144235194,0.0112460786,0.0046631875,-0.016858086,-0.0247428436,0.0279791262,-0.0197707396,-0.0041593574,-0.0193588492,-0.008333425,-0.0321274512,-0.0160490144,-0.0227863658,-0.0084511079,-0.0165491682,0.0088262223,0.0313330889,-0.0005819791,-0.0003109864,-0.0166521408,-0.0162402503,-0.002953107,0.0037162076,-0.0117535861,0.0617835596,0.0043064612,0.0280526783,0.0043542697,0.002384919,-0.0105620464,0.0127906678,0.0141807981,0.003422],"99":[0.0038375321,-0.0178419426,0.0451004691,-0.0185853578,0.0658610016,0.0143313752,-0.0259919669,-0.0171811301,-0.0163826477,0.0330681689,0.026473809,-0.01642395,0.002693156,-0.0411355905,0.0435585715,0.0620613284,0.0177318081,0.0144552784,-0.0445497893,0.0250971168,-0.0037859061,0.0249181464,0.0133539233,0.0121906176,0.0060677752,-0.0109584779,-0.0254688226,0.0901458636,0.0541591085,-0.0611802451,0.0511579178,-0.0401168391,-0.0043950928,0.0046153637,0.0467249639,0.0389053486,0.060849838,-0.0208982024,0.0163275804,-0.0002770595,-0.0429803617,0.0083771776,-0.0022199177,0.047137972,-0.0231422111,-0.0382445343,-0.049973961,-0.0137187475,-0.0005205621,0.046917703,-0.028965624,-0.0167543553,0.0003028725,-0.0006380112,0.0087282341,-0.0367852412,0.0055962577,0.0636032224,-0.0027533863,-0.0297641065,-0.0004390361,-0.0287178196,0.0403371081,0.0288004205,0.0007197524,0.0165203176,-0.0189295299,0.0068662572,-0.0313886032,0.0416311994,0.0232936479,0.0288004205,0.0081706736,-0.0150885573,0.0093683973,-0.0470278375,-0.0157218352,0.0098158224,-0.0168920252,-0.011784493,0.0119428132,-0.0075373948,-0.0680086389,0.0382445343,0.0089485059,-0.0459540188,-0.0276164636,-0.0236515887,0.0176629722,0.0415210649,-0.0387952141,0.0378590599,-0.0010901688,0.0220270902,0.0325174928,0.060849838,0.0149646541,-0.0112682329,-0.0239406936,0.017401401,-0.0204576608,-0.0253173877,-0.0400617719,-0.0307828579,0.0239682272,-0.0036998629,0.0166029185,-0.0269969534,0.0099947918,0.0075442786,-0.074506633,-0.0121562006,-0.0420717411,-0.0062846043,-0.0022956359,-0.0165065508,-0.0109309433,-0.0109791281,0.0211322401,-0.0362345651,-0.0363722332,0.0415761322,-0.0004822728,0.0095611336,0.0413833968,0.0082876924,-0.0096781524,-0.0414935313,-0.0288004205,0.020650398,0.0517361276,0.0010471472,0.0499464273,-0.0078471508,-0.0242986344,0.0102288304,-0.0260057338,-0.0046325726,-0.0256890934,0.0037033046,0.0167543553,-0.0319117457,0.0342521258,-0.0041369628,-0.0050731143,0.0047392664,-0.0391256176,0.024739176,-0.0080330046,-0.0314987376,-0.0045224368,0.0120116472,-0.0322972201,-0.0128101297,0.0803438127,0.027024487,0.0253036208,0.0164514836,-0.0067630052,-0.0333435088,-0.0317190103,0.0174289346,0.0075649288,-0.0311683323,-0.0445222557,0.0148132183,-0.0379141308,-0.0366475731,-0.0899806619,0.0140491538,-0.0293510985,-0.0360142924,0.033673916,0.0064360406,0.0424296819,-0.0057511358,0.0153088281,-0.0013921809,0.0311132651,-0.0320218839,-0.040832717,0.0022990776,-0.0095404834,-0.0009679873,-0.0053312443,0.014689316,-0.0434759706,0.0404197089,-0.024670342,0.0257579293,-0.0504145026,0.0606295653,0.0305625871,0.0466974303,0.030837927,-0.0136017287,-0.0048356345,0.0332333744,-0.0299293082,-0.0024814894,0.0760485306,-0.018158583,0.0844188258,-0.0172499642,0.0119152796,0.0168231893,0.013794465,0.0420442075,-0.0382445343,-0.0232248139,0.0113508347,-0.0008432245,0.0130717019,-0.036730174,-0.0272585247,-0.0058578295,-0.0457612798,-0.0206366293,0.021627849,-0.0202236231,-0.0153225949,0.0649248511,-0.0163275804,-0.0248493105,-0.0335913114,0.0272309911,-0.0046704314,-0.0251521841,0.0130717019,-0.020719232,0.0134640587,-0.0180484466,0.0002230673,-0.0223712642,-0.0153776621,0.0035725187,0.015391429,-0.0409979224,-0.0152675267,0.0131611861,-0.0276577659,-0.0046910821,-0.0250007473,0.0404747799,-0.0119015118,0.0218894202,-0.0171673633,-0.03755619,0.0027430612,0.0532780252,0.0204851944,-0.0262260046,0.0579312481,-0.0586471297,-0.0023541453,-0.0271483883,-0.0251659509,0.0313060023,0.0290757585,-0.007902219,0.0116605908,0.00649455,-0.0132919727,0.0415761322,-0.0457612798,-0.0012080482,0.0313610695,-0.0664667487,-0.009258261,0.0083702942,0.0384923406,0.0044088596,0.0135535439,-0.035628818,-0.0171948969,-0.0242848676,0.0114127863,0.0091687767,-0.0018275601,0.0221372265,-0.0046153637,-0.0440541804,0.0075029777,0.0051144152,0.0157218352,0.0113990195,0.0031491856,0.0181998834,0.0155153321,-0.0173188001,0.0167818889,0.0168231893,0.0168231893,-0.0146755492,0.0429252908,0.0106280707,0.0140147358,0.0531128198,-0.0345549993,-0.0114059029,0.0213938113,0.0213112105,-0.0135741942,-0.0035415431,-0.0187367946,0.0323798209,0.0034124781,0.018020913,-0.018227417,0.0186954923,0.0098020555,-0.0091068251,0.0250420477,-0.0250420477,-0.0253586881,-0.0091825435,0.0743964985,0.0110754967,0.0231422111,-0.0724691302,-0.0154877976,-0.0639336333,-0.01195658,0.0056134663,0.008418479,-0.0406399816,0.0047530332,0.0319392793,-0.0155428657,0.0000913673,-0.0044949031,0.0117776096,0.0313335359,0.0449077301,0.0215039477,-0.0509376451,0.0125485584,0.0119496966,-0.0277816672,0.0319668166,0.0205264948,-0.0541040413,-0.0738458186,0.0174840037,0.0388502814,-0.0283323452,-0.0303973854,-0.0311132651,-0.0004822728,0.0060608918,-0.0626670718,-0.0000102109,-0.0167818889,-0.0083909445,0.0042987242,-0.0310581978,0.0115366885,0.0081913238,-0.0122594526,-0.0017742133,-0.014276308,0.0042057973,0.0641539022,-0.0029237522,0.0062846043,0.0268455166,-0.060574498,-0.0114540868,-0.0164377168,-0.0577109754,0.0217655189,-0.039098084,-0.0153501285,0.0005786413,-0.0508550443,-0.0103664994,0.033894185,0.0523694083,0.0051212986,0.0678985044,0.036454834,0.0245739724,-0.0057855528,-0.0126518104,0.0808394179,0.0779208317,-0.0295713693,0.0234450847,-0.0556184016,-0.0048321928,0.0589775331,-0.0223987978,-0.0231422111,-0.0369504429,-0.055590868,0.0242297985,0.0111030303,0.0296264365,0.056279216,-0.0014007853,0.0371707156,-0.017814409,-0.0417688712,-0.0067182626,0.0170847625,0.0101806456,0.0049560955,-0.013484709,0.0056513255,-0.0514607914,-0.0118670948,0.0064842249,0.0228944067,0.0108483424,0.0169746261,-0.0474408455,-0.0437513068,0.0900907964,0.0243399348,0.0539663695,-0.0188882295,-0.0220133234,-0.0261847042,-0.0001483172,-0.0415210649,0.0327652954,0.0251934845,-0.0002478048,-0.0319943503,-0.0633278862,0.0209808033,-0.0149371205,0.0113508347,-0.0030304459,-0.0087833023,0.0030906762,-0.0099259578,-0.0443570539,0.0346651338,0.0302321818,0.0093752807,0.0160660092,0.0148682855,0.0203199908,-0.023568986,-0.0176629722,-0.0465597622,-0.0009524996,0.0296264365,-0.0010901688,0.0380242653,-0.0003553589,-0.0588123314,0.0405849144,-0.0195352752,-0.0538287014,0.0087144673,0.0012639764,0.0308103934,-0.0165478513,-0.0355462171,0.0323798209,-0.0505246371,0.0189157631,-0.0067939805,-0.0095749004,0.0501391627,0.0184476878,0.025923131,-0.0212561414,-0.0020030886,0.0152537599,-0.0148958201,0.0130510507,0.0041163126,0.0300945118,0.0321320184,-0.0202649236,0.020306224,0.0039029252,0.0208431333,0.0245602056,-0.0319943503,0.0340318531,0.0230458435,0.0495058857,-0.0080467714,0.0124177719,0.023004543,0.0282222088,-0.049340684,-0.0294336993,0.0389604159,-0.015873272,0.0156805348,0.0016511714,-0.0674028993,-0.0229081735,0.0203612912,-0.0119772302,0.0271759219,0.0104146833,-0.0140216192,0.0578761809,0.001880907,0.0483219288,-0.0197280124,-0.0019927633,0.0113164177,-0.0368953757,0.0104009164,-0.0052555259,0.0309480615,0.0271208547,-0.0529751517,-0.0042126812,-0.0118670948,0.0198243819,-0.0196041111,0.0083702942,-0.0196454115,-0.03755619,0.0068146312,0.0163413472,-0.017952079,-0.0104215667,-0.0265288763,-0.0062467451,-0.0209257361,-0.0286076833,0.0063499971,-0.035408549,0.0181998834,0.0020770859,-0.0186128914,0.016492784,-0.0214488786,-0.0278918035,-0.0009516391,0.016630454,0.0265839454,0.0511303842,0.014069804,0.0269969534,-0.0014128314,0.0097882878,-0.0237892568,-0.0241334308,-0.0019273704,0.0240921304,0.0321044847,-0.0127619458,0.0126655772,-0.0083978279,-0.0014154126,0.0703765526,0.0006367206,0.0100567434,0.012163084,0.0024900937,0.0055549568,0.0090104565,0.0285801496,-0.0106280707,-0.0175253041,0.0049457699,-0.001030799,0.0009568018,-0.0705968216,0.0330406353,0.0129133817,0.0003721374,-0.0032300663,0.0208982024,-0.008005471,0.0086594,-0.0263499059,-0.0268868171,-0.0173463337,-0.0199895836,-0.0277816672,-0.0276302323,-0.0391806886,0.0365374349,-0.0448251292,0.0235414524,0.0195352752,0.020650398,0.0259506665,-0.0232523475,0.0172086637,-0.0023765166,-0.0105798868,-0.0151849249,0.0385474078,0.0100636268,0.0170021597,0.0167681221,-0.013794465,0.0053140353,0.0150747895,0.0054172873,-0.0064016231,-0.0331507698,-0.0117638428,0.0264187418,0.02508335,0.0049113529,0.0263223723,-0.0352433436,0.00623642,-0.0158870388,-0.0113026509,-0.0577660426,-0.0021734543,-0.0038616243,0.0054757968,-0.0238305591,0.0051316237,-0.033894185,-0.0443570539,0.0227016695,-0.0141799394,-0.0057167183,-0.0050180466,0.0126173925,-0.018227417,-0.0272447579,-0.0306176562,0.0054551465,-0.0225226991,0.0001724093,0.0243812352,-0.006880024,0.0041163126,0.024670342,0.028001938,0.0392357558,-0.007654414,-0.0151986927,-0.0074960943,0.0355737507,-0.0031990907,-0.021903187,-0.005823412,-0.0576559082,-0.0126105091,0.0256615598,-0.012025415,0.0029616111,0.006442924,-0.0205264948,0.0943310112,0.0490928777,0.0265288763,0.0037067463,-0.0247942433,-0.0144277439,0.0058440622,0.0048562852,-0.0176354386,-0.0162725132,-0.0202786904,0.0180071462,-0.014413977,0.0336463787,0.0242986344,0.0051075318,0.0422644801,0.0361244269,-0.0175803714,0.0282497425,0.0040853368,0.0274512619,0.0282772779,-0.0130785853,0.0208982024,-0.041025456,0.007551162,0.0304799862,-0.0160247087,0.0330406353,-0.0465322286,0.0091137085,0.0130235171,0.0190534331,0.0056306748,0.0022233594,0.033618845,0.024532672,0.0115711056,-0.0159008056,0.030149579,-0.0042505399,-0.0297916401,-0.0159283392,-0.0037721393,0.0553155318,0.0025933457,-0.0190258995,0.0008260159,0.0050937645,-0.0359316915,0.0121906176,-0.0110341953,0.0063190213,0.0163551141,-0.0121148992,0.019136034,-0.0481842607,-0.0315262713,-0.0077920831,-0.0294061657,0.0334536433,-0.0183375534,-0.0057236017,-0.0287453532,0.0312784687,-0.0143726766,-0.0075373948,-0.0637133569,0.0480465889,-0.0637133569,-0.0389328822,0.0500014946,-0.0174702369,0.0094303479,0.0446599238,-0.0104077999,-0.0333985761,0.0075098611,0.0118670948,0.0237479564,-0.0111993989,0.0075718123,-0.025716627,-0.0568298921,-0.0012631159,-0.030424919,-0.0011882583,-0.0147306165,0.0101393452,-0.0340318531,-0.0244087689,0.0067423545,-0.0526447445,0.0019308121,0.0181723498,0.0147994515,0.0089553893,-0.0094991829,0.012197501,-0.0172774997,0.0039476678,-0.0173601005,-0.0159283392,0.0104697514,0.0232110471,-0.0077851997,0.0348303355,0.0257303957,0.0068215146,-0.034720201,0.0070968531,-0.0029857033,0.0065358509,-0.0154740307,0.001958346,0.0061297263,-0.0452932045,-0.0565545559,-0.0323247537,-0.0126449261,-0.0236102883,0.0644292384,0.0127619458,0.0073859589,-0.0090242233,-0.0017742133,0.0098158224,0.0134571753,-0.0220959242,-0.0182411838,-0.0212286077,0.0252623186,-0.0124659566,0.0246565733,0.0112682329,-0.0149784219,-0.0418790057,-0.0068972325,-0.0170985293,-0.0251521841,0.0074341428,0.0273686592,-0.0422369465,0.01642395,-0.0844188258,-0.027024487,0.0240645967,-0.005386312,0.0061228429,-0.0093959309,0.0150610227,0.0165340845,0.0626120046,-0.0351056755,0.0019824381,-0.0522042029,-0.0046704314,0.009671269,0.0006203724,0.0043159332,0.0101393452,0.0327652954,0.0019549043,0.0272309911,0.0035346597,0.0000535889,-0.0367026404,0.033205837,0.0075373948,0.007344658,-0.0311132651,0.0193287712,0.0193838403,0.0213938113,-0.0209119692,-0.0180484466,0.0208706688,-0.015942106,-0.0032386705,0.0319392793,-0.0064016231,0.0094096977,0.0075718123,-0.0127206445,-0.0196041111,-0.034307193,0.0443845876,-0.0112544661,0.0179796126,-0.0240645967,-0.0030424919,0.0291308276,-0.0264462754,-0.0030751883,0.0285250824,0.0068524899,-0.0139872022,-0.0176216718,0.0036241447,0.0352433436,-0.0685593188,-0.013932135,-0.009808939,-0.008177557,-0.0103802662,0.0025176276,-0.0100016762,-0.0552604645,-0.0187367946,-0.0092444941,0.0296264365,0.0501667,-0.012335171,-0.0196454115,0.0102494806,0.0369779766,0.0288554877,-0.0092995623,-0.0011211445,0.0165065508,0.0150472559,0.0240921304,0.0016331022,-0.0099947918,0.0179245453,0.0008458059,-0.0450178646,0.0017311916,0.0126173925,-0.0230320767,-0.0050868811,-0.0315262713,0.0181035157,0.0112682329,0.0109034097,-0.0290482249,-0.0135741942,0.0203199908,0.0459264815,0.0281946752,0.0259919669,-0.0010669372,0.0108345747,0.0113646016,0.0192874707,-0.0153776621,0.02377549,0.0136705628,-0.0224125646,-0.0025606493,-0.0122732194,-0.0059128972,0.0026088336,-0.0003968748,0.0031130475,0.0267491471,0.0412732586,0.0412732586,-0.0030115163,0.030424919,0.0216140822,-0.0101944124,0.0258405302,-0.0518187284,0.003414199,-0.0029099851,-0.0484595969,0.027933104,-0.0036275864,0.0095336,0.0375837237,0.0061194012,-0.003362573,-0.0137187475,0.0097951721,0.0565545559,0.0017165643,0.0372533165,-0.0050627892,-0.0233900174,-0.005616908,0.0019755547,0.0102632474,0.006621894,-0.0012966729,0.0081982072,0.0004564598,-0.0170572288,0.036041826,0.0177593417,0.0073308912,0.0087282341,-0.0400342382,0.0179796126,0.0274374951,-0.0383546725,-0.0393183567,0.0337289833,-0.0169470925,0.0623917319,-0.0330406353,-0.0253724549,-0.0048803771,-0.009740104,0.0062846043,0.0348854028,-0.0075786957,0.0122181512,0.0237479564,-0.0432832316,-0.0256340262,-0.0027723159,-0.0015350129,0.0208155997,0.0134778256,-0.0000500665,0.0135466605,0.0064016231,0.0536634997,0.022798039,0.0135948444,0.010394033,-0.0018378854,0.0179658458,-0.0439715795,0.0137806982,0.0142487744,0.0419891402,0.0326276273,-0.0075786957,-0.0268730503,-0.0080123544,-0.0189157631,0.0155290989,0.0000955619,0.004818426,0.028965624,0.0071175038,-0.0270657875,0.001829281,0.013932135,0.0073584248,-0.0261434037,0.0073721916,-0.0159971751,0.0198243819,0.0121562006,-0.001088448,-0.0102012958,0.0159834083,-0.0158870388,-0.0054654717,-0.0183926206,0.0313060023,-0.0156943016,0.0294336993,0.0049870708,-0.024532672,-0.0374460518,0.0371707156,0.0044570439,0.0164790172,0.0011968625,-0.049285613,-0.0434209034,-0.0230733771,-0.0002764142,-0.0080330046,-0.0125279073,0.0522592701,0.0036895375,-0.0139459018,-0.0185991246,0.0083634108,0.0027740367,0.002242289,0.0293510985,-0.0003848287,0.0034933588,0.0131198857,0.0130510507,0.036454834,-0.0029392398,0.0070142518,0.0047908924,-0.0120529486,-0.0010497285,-0.0265701786,-0.0258818306,-0.0025451614,0.0509927124,0.0314436704,0.0280983075,0.0070486688,0.0169883929,-0.0014033666,0.02377549,0.0249043796,0.0228255726,0.0197830796,-0.0137393977,0.030287249,-0.0109171765,-0.001745819,0.0095336,0.0189432967,-0.0095198331,0.0327377617,-0.0082257418,-0.0011331906,-0.0105248187,0.0066563115,0.0230458435,0.0205677953,-0.0235001519,0.034086924,-0.0009679873,-0.0073171239,-0.004973304,0.0218481198,-0.0563618168,-0.0156943016,-0.0143589098,-0.0178006422,-0.0039063669,-0.0314161368,-0.0200171191,-0.033673916,0.0240232944,0.0016967743,0.006391298,-0.0175115373,0.0190671999,-0.0340318531,-0.0070693195,-0.0184889883,-0.0224813987,0.0218205862,-0.015942106,-0.0061641433,-0.0079159858,0.0064085065,0.0256890934,-0.030149579,0.0194802079,-0.0186679587,0.0250558145,0.036041826,0.0159834083,0.0064188316,-0.0108345747,-0.0165753849,-0.0164101832,0.0199207496,-0.0150747895,0.0257303957,0.0399791673,0.0337840505,-0.0359592251,0.0012321403,0.0369229093,0.0319668166,0.0348028019,0.0508825779,0.008039888,0.010394033,0.037143182,0.0380517989,0.0054861223,0.0137738148,0.0209945701,-0.0105730034,-0.0266803131,0.0317190103,-0.007138154,-0.0147994515,-0.0043675592,0.03755619,0.0106624886,-0.0149371205,0.0309480615,-0.0179658458,0.0082050916,0.0279055703,0.0111236805,-0.0072138719,0.0132231377,0.010221947,0.0058715963,-0.0041507296,0.041300796,0.0110548455,-0.0033057844,0.0215177145,0.0470278375,0.0090104565,-0.0119428132,0.0172912665,0.0145929474,0.011922163,0.003723955,-0.0246290397,-0.0148269851,0.0267078467,-0.0100085596,0.0215314813,-0.0390705504,-0.0067526801,0.0053484528,-0.0146204811,-0.0066941706,0.023362482,0.006081542,-0.0109722447,-0.0046910821,0.0127068777,-0.0172086637,-0.006725146,-0.0129822167,0.0007115783,0.0081293732,-0.0316914767,0.0081293732,0.0214488786,-0.0150885573,0.0141248712,0.0331507698,0.0556459352,-0.0086456332,-0.0114953881,-0.0112751173,0.0035828438,0.0258405302,0.0025262318,-0.0200721864,-0.0230596103,-0.0211047065,-0.0107863909,-0.0217379853,0.0180759802,-0.0012200943,-0.0255101249,-0.0108758761,-0.0299568437,-0.0202236231,-0.0088727875,0.0044398354,-0.0112820007,-0.0020289016,-0.0168231893,0.0085767983,0.0210771728,-0.0114816204,0.0100016762,-0.0460090861,-0.0061090756,-0.0034468954,0.026611479,-0.0112544661,-0.0213938113,0.035628818,-0.0236791223,0.0195215084,-0.0473582447,0.0222060606,0.0229632407,0.0398414992,-0.0228531063,0.0124521898,0.028690286,-0.002448793,0.0218068194,0.0214764122,-0.0110410787,-0.0374185182,0.0245051384,-0.033260908,0.0233762488,-0.0002783501,0.0016374044,0.011922163,0.0071863383,-0.0139046004,-0.0280570071,0.0150472559,-0.009671269,0.0178281758,0.0107382061,0.003298901,0.0010574724,-0.0502493009,0.0021373162,-0.0023902834,-0.0322696865,0.0151023241,0.0164377168,-0.0123902382,0.0272860583,0.0067457962,0.003491638,0.0046188054,-0.0333435088,0.0028772887,0.0036998629,-0.0194526743,0.0114472033,0.0249181464,-0.0082257418,0.0039579929,0.0129133817,-0.0005158297,-0.0168920252,-0.0033677355,-0.0237066559,0.0077645495,-0.0028790096,-0.0049354448,0.0096093183,0.0065840348,0.0251659509,-0.0026983186,0.0002460839,0.0056513255,-0.0016675196,0.0202786904,0.0095542502,0.0374185182,-0.0087764189,0.014207473,0.0113026509,-0.0003553589,-0.0294061657,0.0300669782,0.0056065829,-0.0255651921,0.0080605382,-0.0185302906,0.0007614834,0.0257716961,0.0134089915,0.0199895836,0.0213938113,0.0093683973,0.0068903491,-0.0237479564,0.0121562006,0.0225777682,-0.0004624829,0.0140766874,-0.0385198742,0.0411906578,-0.0152124595,0.0174427014,-0.0127757126,-0.0196729451,0.0230320767,-0.0086043319,-0.000278135,0.0236653555,-0.0109515935,0.0252210181,-0.0125003736,-0.003710188,0.0181448162,0.0108070411,-0.0111512141,0.0330957025,-0.0019101617,0.0034107573,-0.0063568805,-0.0017019369,0.0118739782,-0.028001938,-0.0204163585,0.012025415,-0.0015427568,0.0110892635,0.0321320184,0.0154051967,0.0146480147,-0.0410805233,0.0002295206,-0.0246428065,-0.0206366293,0.0188193955,-0.0255514253,-0.0187092591,0.0352708772,-0.0015221064,0.0099741416,0.0102494806,-0.0038960415,-0.007971053,0.0089416215,-0.0269418843,-0.0040922202,-0.0288830213,-0.016630454,0.0131680695,0.0330957025,-0.0202098545,0.0155290989,0.0108689927,0.0174977705,-0.0123971216,-0.0137738148,-0.0303973854,0.0116950087,0.0177180413,-0.0111580975,0.0148545187,0.0427876227,-0.0062777209,-0.0337289833,0.0196454115,-0.0160109419,0.0181310493,-0.0284700152,0.0311407987,0.0193700735,0.0611802451,-0.0073584248,0.0248630773,-0.022040857,0.0252210181,-0.017883243,-0.0033539687,0.0158319715,-0.0149371205,0.0164514836,-0.0021562455,-0.000591978,0.0465597622,-0.0236928891,0.0104146833,-0.0042023556,0.0055618403,-0.0092100771,0.0144415107,0.0395386256,0.0084804296,0.0253862217,0.0095267165,-0.0083978279,-0.0387952141,-0.0170985293,-0.0015771741,-0.0205540285,-0.0311683323,0.0271621551,-0.0032696463,0.0112406993,0.0047736834,0.0071312706,-0.0052211089,-0.0181861166,0.0235827528,-0.0220546238,-0.0059163389,0.0117638428,0.0114472033,-0.0124315387,-0.0427050218,0.0252760854,-0.0028807304,0.0125347907,0.0031887656,-0.0014661782,-0.0363446996,-0.0251934845,-0.0007490071,0.0246428065,-0.0048287511,-0.0076681809,-0.0211597737,-0.0048321928,-0.0302321818,-0.0145103456,0.0278092008,0.0079985876,-0.0280294716,0.0049044695,0.0278780367,0.0002207011,0.0093683973,0.0405573808,-0.007730132,0.0096575022,0.0113852527,0.0034727084,0.0049526538,0.0566096231,0.004174822,-0.0241609644,-0.0048356345,-0.0007636345,0.0175528377,-0.002061598,0.0056341165,-0.006597802,-0.0038409738,-0.0185165219,-0.0289105568,-0.002474606,0.0449077301,-0.0129822167,-0.0047943341,-0.0030183997,0.0122456858,0.0109928949,0.0030115163,0.0276715327,0.0161210764,0.0134434085,0.0146342479,0.0048287511,-0.0117776096,-0.0022990776,0.013656796,-0.0204576608,-0.0094372313,-0.0282772779,-0.0064257151,0.0106143039,0.0411080569,0.0258955974,0.0453758053,-0.0253449213,-0.0089278547,0.006570268,0.003156069,0.0235414524,0.0043606753,0.0032524376,-0.0070555522,0.0254688226,-0.0533055589,-0.0014050874,-0.0222611278,0.021903187,0.0202236231,0.0067526801,0.0093683973,0.0010634954,-0.0068387231,0.0115229217,-0.0278642699,-0.0098915398,-0.0161210764,-0.0148682855,0.0245189052,0.0367026404,-0.0162449796,0.0035759604,0.0291308276,0.0344173275,0.0132506713,0.0094854161,-0.0498087592,0.0359592251,-0.0128927315,-0.0026208796,-0.0213112105,-0.0104904016,0.0004063396,0.0139114838,0.010118695,-0.0119015118,-0.0167543553,-0.0394835584,-0.0048459601,0.0205402616,-0.0359867588,0.0057476941,0.0276026968,0.0063499971,0.0184476878,0.0122938696,0.0338115841,-0.0088452538,0.0135122435,0.0241609644,0.0032300663],"100":[-0.0192303453,-0.0136861419,0.0526379123,0.0365533158,0.0789711028,0.030204881,-0.0165400896,0.0154013578,-0.0166966654,0.0204971861,0.0287529975,-0.032169193,-0.0008905244,-0.0351298973,0.0606375076,0.0512429662,-0.0026635665,-0.0407666266,-0.0383183509,0.0158141479,-0.0016787408,0.0076935617,0.0347598121,0.0087397723,-0.0056687528,-0.0173941404,-0.0260485075,0.0651924387,0.0062914975,-0.0490793735,-0.0000060989,-0.0391723998,-0.0167108998,-0.0176930577,0.0396563597,0.0114584966,0.0336210765,0.0246535596,0.0068608634,0.0048823156,-0.0157429781,0.0215220451,-0.0192018766,0.0327385589,-0.0155864013,-0.0047364156,-0.0464318208,-0.0236714035,0.0227604173,0.0714554638,-0.0370942131,0.0014438772,-0.0139138885,-0.0508444086,0.025037881,-0.0185755752,0.0097219292,0.032823965,-0.0191876441,-0.0560541078,-0.0087824743,-0.0670144111,0.0374073647,0.0407950915,-0.0047577671,0.0248955395,-0.0252513941,0.0245823879,-0.0481399186,0.0295785777,0.0421046354,0.0160418954,-0.0161557682,-0.0013638102,0.0170382857,-0.0572213121,-0.0086258994,0.0318560414,0.0007081493,-0.0158710852,0.0248101354,0.0030994876,-0.0314574875,0.0402257256,0.0268029179,-0.0277566053,-0.0138356006,-0.0169528816,-0.0013086528,0.0252229255,-0.0093660755,0.0653063133,0.0019322868,-0.0019625344,0.0131452437,0.0342473798,-0.0068573048,-0.0034606794,-0.0051919087,0.0166112613,0.0241695978,0.0017267811,-0.0146184787,-0.0244827494,0.0325962193,-0.0082700448,-0.0184332337,-0.0007953335,0.0129388487,0.0194865614,-0.0483107269,-0.0392578058,-0.0511860289,0.0098429192,0.0029891729,0.0108393105,-0.0272014737,0.0206537619,0.0022810237,-0.0221910495,-0.0370372757,0.0108535448,-0.0392578058,0.007992479,0.0102058901,-0.0153017184,-0.0018273098,-0.0606375076,-0.0687225088,-0.0132448832,0.0347313434,-0.0154725285,0.0417345464,-0.016355047,-0.0183762964,-0.0008429289,-0.0538335815,-0.0003949979,-0.0185755752,-0.0086543672,-0.0220629424,-0.0183762964,0.0197997112,-0.0122271404,-0.02270348,0.016597027,-0.0191734098,0.0360693522,-0.0100493142,-0.028610656,0.0010239696,0.0045300205,-0.0362971015,-0.0389731228,0.0512714311,0.0172945,0.0259488672,0.0361547582,-0.0192445796,-0.0276854355,-0.0117929988,0.0485669412,-0.0055015017,-0.0137430783,-0.0355853923,-0.0022756858,-0.0621178597,-0.045036871,-0.0924650803,-0.0464602895,-0.057705272,-0.0489654988,-0.0020942003,0.0176076517,0.0481399186,-0.0091240946,-0.008156172,-0.0486523472,0.0176361203,-0.0420192294,-0.0367241241,0.015202079,-0.0307173096,0.0241980664,-0.006928476,-0.0040353835,-0.0817609951,0.0398271717,-0.0028361557,0.0388023108,-0.0575913973,0.0437557995,0.0056189336,0.0207249317,0.0211804248,-0.0475136153,0.0468019061,0.0140206441,-0.0311443359,-0.0065263608,0.0690641254,0.0300056022,0.055086188,-0.0044268225,-0.0063911364,-0.0043520932,0.0202979073,-0.011842818,-0.038033668,-0.0172802657,-0.0112521006,-0.0054089795,-0.0026884764,-0.0098500364,-0.0376351103,0.0027382958,-0.0619470514,-0.0064978926,0.0326816253,-0.0186182763,0.0024393785,0.0236714035,-0.0056936629,-0.0245823879,-0.0367241241,0.03729349,0.0308311842,0.0023148297,0.009138329,0.0166539643,0.0028450522,-0.0465456918,-0.0011494082,-0.0503035113,0.003352144,0.0203406103,0.0239276178,-0.0272868779,-0.0220060069,-0.0242692381,-0.0199278202,-0.0113659743,-0.0106471488,0.0103411153,-0.0120705646,0.0288241673,-0.0346174687,-0.0331371166,0.0195292626,0.0511860289,0.0023539737,-0.0346174687,0.0013264455,-0.0512144975,-0.0481114499,-0.0401403233,-0.0278562456,0.0135580348,0.012703985,0.0092094997,0.0242834706,-0.0174937788,0.0021653711,-0.0005377842,-0.0181770176,0.0310873985,0.0411651805,-0.0359839499,0.0202409718,0.0125901112,0.0499334224,0.0555986166,0.035158366,-0.0476559587,-0.0046652448,-0.0118641695,-0.0113232713,-0.0066758194,-0.0196858384,-0.0060032555,0.0045015519,-0.0406242833,0.0075441031,-0.0048787571,0.0249382425,0.0035354088,-0.0128392093,0.0445529111,0.0361832269,-0.0349875577,-0.0065477123,0.019671604,0.0286391228,-0.023771042,0.0214793421,0.0215362795,0.0175080132,0.0039179516,-0.0398841091,-0.0480829813,0.0208245721,0.0106613832,-0.0000520992,-0.0444675051,0.0224330314,0.0419053584,-0.0235575289,-0.0002330843,-0.0322261304,0.0002562148,-0.0015479645,-0.0147181181,0.0193726867,-0.0169955827,-0.0518692657,-0.0206537619,0.0789711028,-0.0310304612,0.0002631095,-0.0478837043,-0.0233297832,-0.0871130377,-0.0378343873,0.014013527,0.0058893822,-0.0206822306,0.0261196773,0.0024269237,0.020369079,-0.0115723694,0.0292654261,0.0043414179,0.0204687174,0.0425601304,-0.0195292626,-0.047171995,-0.0014741248,-0.0236429349,-0.0269025564,0.029137319,-0.0155152306,-0.0109887691,-0.0791988447,0.0123338969,0.0516130514,-0.0038788076,-0.0126328142,-0.0017694837,0.0055833482,0.0038645735,-0.0348452143,-0.020084396,-0.0040816446,0.0211519562,0.0019038185,-0.0117360624,0.0068857735,-0.0372365527,-0.0315713584,0.000179039,-0.0442112908,-0.0101774223,0.0321407244,-0.0171948615,-0.0227888841,0.0296924505,-0.0422754474,0.0436134562,-0.0369518697,-0.0062345606,0.0194580927,-0.0215789825,-0.0225753728,-0.0085333772,-0.0298632607,-0.0107467882,0.0475705527,0.034959089,0.0028788582,0.0504458509,0.0202552043,0.0207676347,0.0157856792,-0.0215932149,0.0563957281,0.0347882807,0.0062345606,0.0196146686,-0.0539759211,-0.0216074493,0.0342189111,0.019956287,-0.0193015169,-0.0288241673,-0.0183762964,-0.0026297604,0.0087041864,0.002026588,0.0531218722,0.0021048759,0.0178638659,-0.011515433,-0.0416776128,-0.0259915702,0.0191164725,0.0278135426,0.005839563,0.0126185799,-0.0134726297,0.0013451278,-0.0229881629,-0.0069533857,0.0367810614,-0.0276142638,0.0364679098,-0.0420476981,-0.0486523472,0.1015180051,0.0168105382,0.0688933209,-0.0508728772,-0.0226465426,-0.0337918885,0.0048467303,-0.0326531567,0.0409374349,0.026148146,-0.0079995962,-0.0387453735,-0.0132875852,-0.0066900537,0.0056082578,0.0476844236,-0.0044517326,0.0018015105,0.0218636654,0.0335926116,-0.0172090959,0.0723095164,-0.0062772632,-0.0268313847,0.0019376245,0.0085974308,0.0205256548,-0.0339626968,-0.0398556404,-0.0381475389,-0.0375497043,0.0094301291,0.014960099,0.0337349512,0.0216359179,-0.0331940539,0.0064587486,-0.0132591175,-0.0377774537,0.035243772,-0.0372650214,0.0320268534,-0.0062808217,-0.0259346329,-0.0086828358,-0.0716832131,-0.0241553634,-0.0022703479,-0.0097361635,0.0647369474,0.0093945432,0.0077647325,-0.0114584966,-0.0291230846,0.0638259575,-0.0147323525,0.0173229687,-0.0227888841,0.0218067281,0.0211661905,-0.0085689621,0.0061882995,-0.0453215539,0.01291038,-0.0143622644,-0.0293223634,0.0680962056,0.0312582068,0.0182054862,0.0138996542,-0.0045584887,-0.007437347,-0.0222479869,-0.0039784466,-0.0005537976,0.0678115264,-0.017579183,-0.0148035232,0.0048182621,-0.0830136016,-0.0109531833,0.007828786,-0.0168674756,0.0315998271,0.0016244731,0.0137074934,0.0680962056,0.0048467303,0.0300910082,-0.0025372384,-0.0096863434,-0.0029998485,-0.0143622644,-0.0252513941,-0.0257068872,0.0310304612,0.0222906899,-0.02852525,0.0344181918,-0.0124762384,0.0247104969,-0.0075085177,0.0055975821,-0.0159137864,-0.0164404511,-0.0260342732,-0.0055335285,-0.0114940815,0.0134512782,-0.0447806567,0.0057114554,-0.0253795013,-0.014632713,0.006803927,-0.0503604449,0.0328524336,0.0062238849,-0.0417630151,-0.0004372555,-0.0189456623,-0.0283686742,-0.03122974,0.0257353559,0.0119709261,0.0351868346,0.0283259712,0.0245539211,-0.0033112208,-0.0070459074,-0.0045833983,-0.0234151874,-0.0107183205,0.0254364386,0.0160418954,-0.0243831109,0.0242407694,0.0158710852,0.0084266206,0.013771547,0.0132306488,0.037464302,0.0255076084,0.0005978346,0.015942255,-0.0044268225,-0.0087682409,-0.0148604596,-0.023685636,0.0563672595,0.0121417353,-0.0277993083,-0.0557409562,0.0343043171,0.0046688034,0.0070032054,0.0121275019,0.0248243697,-0.0020283672,0.0027578678,-0.0450084023,-0.0143480301,-0.0007481829,-0.0031439695,-0.0366102494,-0.0069320342,-0.0132448832,0.0330801792,-0.0390300564,-0.0088465288,0.0260627419,0.0108108418,0.0225184355,-0.0184332337,0.0076864446,0.00355676,-0.0071491054,0.0048147035,0.0256499499,0.0174795445,0.0075369859,-0.005391187,-0.0122413747,0.0292084906,0.0183335934,-0.0150028011,-0.0147750545,-0.0141345179,-0.0392008685,0.0154725285,-0.0206395276,0.007622391,0.0381190702,-0.0098500364,0.0307742469,0.0095440019,-0.0064907754,-0.0294931736,-0.0122769605,-0.0173941404,-0.0133089367,-0.0050638011,0.0181627832,-0.0162838753,-0.0356992669,-0.0130811902,-0.0313151442,-0.0282120984,0.0065441537,0.0163835138,-0.0088821137,-0.037378896,0.0005707007,0.0074515808,0.0136149712,0.0003509609,0.0253225658,0.0126897506,0.0245823879,0.0375497043,0.0101133687,0.0167963058,-0.0035104989,-0.0211946592,0.0045727231,0.0278562456,-0.0029927315,0.0028290388,-0.013728844,-0.0323969424,-0.0020568357,0.0046972716,-0.0116577744,-0.0178353991,-0.0080636498,-0.0401403233,0.0583600439,0.0188460238,0.0277281366,-0.0086045479,-0.024795901,-0.0207818691,0.0052168183,0.0089675188,-0.0259915702,0.0018539989,-0.0026404362,-0.0089390501,-0.0239560865,0.0294362362,0.0378343873,0.0183478277,0.0329378396,0.0134370439,0.0062167682,0.0377774537,0.021308532,0.0361547582,0.0434711166,0.0076508592,0.0219490696,-0.0125545263,0.0033130001,0.0596126467,-0.0241126623,0.0211661905,-0.0276996698,0.0248813052,-0.0048858742,0.0055157356,-0.0096009383,0.0217640251,0.0195007939,0.0117289452,0.0061740656,-0.0023290638,0.009629407,-0.005921409,-0.0104478709,-0.0290661473,0.0172802657,0.0304041579,-0.0221910495,-0.0111382278,-0.0068928902,0.008931933,-0.039798703,-0.0463748835,-0.0100493142,0.0132804681,0.0184901692,-0.0224472657,0.0225184355,-0.0294931736,-0.0408235602,0.0060708676,-0.0229027588,0.0057150139,0.0059676701,0.0092166169,-0.032539282,0.0182197206,0.0041065542,-0.0045335791,-0.062914975,-0.0062345606,-0.047542084,-0.0337064825,0.0339911655,-0.0171521585,0.0068181609,0.0464602895,0.0047435327,-0.026390126,0.0255645458,0.0113873258,0.0271445364,-0.0193584524,0.0080707669,-0.0027382958,-0.0201698001,-0.01123075,-0.039713297,0.0123125454,-0.0301479436,-0.001712547,-0.0111382278,-0.0275715608,0.0251802225,-0.0180916134,0.0119139897,0.0324823447,0.0190453026,-0.0071099615,-0.0085191429,0.0132875852,0.0052630794,-0.0030905914,0.0109247155,-0.019671604,-0.0130100194,0.0048716404,-0.0004421485,0.0298917294,0.0215078108,0.0084479721,-0.0309735257,0.0145117231,0.0170098171,0.0298917294,0.0023308431,0.0024162482,-0.0245396867,-0.04762749,-0.0160988308,-0.003003407,0.0109175984,-0.0127324536,0.0601820163,0.0118072331,0.011558135,-0.003563877,-0.0013211077,0.0139921764,-0.0002539907,0.0060744262,-0.026190849,-0.0315713584,-0.0092877876,0.0034855891,0.0296070464,-0.0216643866,-0.0226180758,-0.0419338271,-0.0177784618,-0.0142341563,-0.0070387907,0.0047613257,0.0273295809,-0.0260058045,0.0266748089,-0.102656737,-0.024838604,0.0363825038,-0.0113303885,-0.0083625671,-0.0187748522,0.0039855638,0.0236429349,0.0479975753,-0.0163265783,0.0145544251,-0.054545287,-0.0307457782,-0.0030603437,-0.0268171523,0.0216928553,-0.0154013578,0.016269641,0.0280839913,0.0153871235,-0.0283544399,-0.0121061504,-0.032823965,0.0110385884,0.0086614843,-0.0035798904,-0.0230593346,0.0478837043,0.0210523177,-0.0054018623,0.0170240514,0.0087967087,0.0040745274,-0.0078928396,-0.0089390501,0.0232016761,0.0009990599,-0.0170952231,0.0097005777,-0.0126328142,-0.0301764123,-0.0533211529,0.0386884399,-0.0201413315,0.0581038296,-0.0096507585,0.0032293743,0.0425316617,-0.013607854,0.0028735204,0.0203548446,0.0042239861,-0.0181343164,-0.0050922697,0.0035887868,0.0070423489,-0.0517553948,-0.0109674176,0.0119922766,0.0036795295,-0.0210950207,0.0304895639,0.0104763396,-0.0830705389,-0.0054481234,-0.0096151726,0.0030443303,0.0457485802,0.0171663929,0.0134583954,0.0236998703,0.0306603741,0.0067291977,-0.0317991078,0.0316282958,0.0012365924,0.0182339549,-0.0056901043,-0.0113873258,-0.0264185946,0.0310873985,-0.0108820125,-0.0264043603,0.0079070739,-0.017621886,-0.0278704781,-0.0113161551,0.0022098529,0.037748985,0.0167963058,0.0306034368,-0.0039499784,-0.0100635486,0.0130029023,0.0094514797,0.024753198,0.0252086911,0.0023842212,0.0049783965,-0.0057150139,0.027785074,-0.0051492061,0.0150597375,0.0232016761,-0.0422185101,-0.0336780138,0.0126470486,-0.0073804101,0.0016787408,0.016312344,-0.010817959,0.0040923199,0.0188175552,0.023443656,0.0005818211,0.0161272995,0.0102272416,-0.0115652522,0.0012819638,-0.0144974887,0.0242407694,-0.0307173096,-0.0450084023,0.0481683873,-0.0126897506,0.0240414906,0.0345605314,-0.0073590591,0.0127111021,-0.0061954167,0.0222195182,0.0587585978,0.0180489104,0.0467734374,-0.0141914543,-0.0205398891,0.0085974308,-0.0234721247,-0.0009910532,0.0284540802,0.0093091382,0.0110884085,0.0320553221,-0.0130527215,0.0121061504,0.0099639101,-0.0079070739,-0.0075725713,-0.017379906,0.0431010276,0.017579183,-0.0254933741,-0.0147465868,0.0736190602,-0.0163265783,0.0619470514,-0.0284540802,-0.0458909199,-0.0151593769,-0.0042666886,0.0091240946,0.0462894775,0.0373504274,-0.0267602149,0.0082202256,-0.0192018766,-0.0308881197,-0.00177838,-0.0361262895,0.0052203769,-0.0051242965,0.0249382425,0.0021351236,0.0262335502,0.0573067144,0.024838604,0.0021475784,0.0181058478,-0.0255645458,0.0262050834,-0.0388023108,-0.012419302,0.0309165884,0.0403965376,0.0193157513,-0.0279843528,-0.0206964631,0.010903364,-0.0076579764,0.0100137293,0.0233724862,0.0055015017,0.0136932591,0.032254599,-0.0114869643,0.0093091382,0.0330232419,-0.0037827271,-0.0229454599,0.0105759781,-0.0483391955,0.0032418291,0.0214793421,-0.0107467882,0.0117004765,0.0579614863,-0.0103767002,-0.0041599325,-0.0223618597,0.0203548446,-0.0052630794,0.0095795877,0.011842818,-0.0025657068,-0.0434711166,0.0139067713,0.0092949048,-0.0042880396,-0.0032809731,-0.0429017469,-0.0319414474,-0.0352153033,-0.0322261304,0.0235148277,-0.0209099762,0.0319129787,-0.0038147541,-0.0140775815,-0.0160134267,0.0138071319,0.0022756858,0.0343897231,0.017337203,0.0164973885,0.0151451426,0.0186325107,-0.0011111539,0.0072807712,-0.0270876009,0.0024322616,0.0096222898,-0.0186182763,0.0021635918,-0.0248243697,-0.039798703,-0.0001715883,0.0272726435,0.02540797,0.0231874418,-0.0233724862,0.0108393105,0.0043165078,0.0323115364,0.0005782626,0.0298063233,0.0157572124,-0.0008887452,0.0284398459,-0.0040425006,0.0055584381,0.0085974308,0.0087397723,0.0061206874,0.0244542807,-0.0079070739,-0.0156291034,-0.0142768594,0.0157002751,0.0063697849,0.0039713299,-0.0259631015,0.0337064825,0.0243831109,-0.0429017469,-0.0244685151,0.0257495902,-0.0685516968,-0.0042880396,-0.0109104812,-0.0266036391,-0.0039748885,0.0105688618,-0.0287956987,0.0029553669,0.0438981391,-0.018604042,0.008931933,-0.0132235317,0.0176930577,-0.0312866755,-0.0121203847,0.0271587707,-0.0230023973,0.037578173,-0.0329378396,0.0078145517,-0.0093376068,0.0194865614,-0.0065868562,-0.0194723271,0.00012188,-0.0228885245,0.0253937356,0.039798703,0.0274292193,-0.0013477968,0.0013718168,-0.0024464957,-0.0030816949,0.0180062074,-0.0204117801,0.0145330736,0.0044624084,0.0360408835,0.0023255053,-0.0018290891,0.0481968559,0.0249667112,0.0198139455,0.0403111316,0.0063911364,0.0489654988,0.0111453449,0.0467734374,-0.008156172,-0.0123623656,0.0170240514,0.0040175905,-0.0296924505,0.0034553416,-0.0061562727,0.0060032555,0.0021938395,0.0305749681,-0.0010497691,-0.0099567929,0.0065868562,-0.0143693816,0.0055442043,0.0052168183,0.0144974887,-0.0089888703,-0.0014954761,-0.0137359612,0.0024251444,-0.0113232713,0.0249667112,0.01999899,-0.0155436993,0.0276996698,0.0649646893,0.004672362,-0.0345035978,0.0034589001,-0.010042198,-0.0042204275,-0.0058964994,-0.0183335934,-0.0142270401,0.0033503647,-0.0293792989,0.0020853039,-0.0243261736,-0.0051136208,-0.0085191429,0.002428703,-0.0067683416,0.0411651805,0.0134370439,-0.0023432982,0.0056438432,0.010326881,-0.0190595351,-0.0187890865,-0.0218067281,-0.0022543345,0.0256499499,-0.0112165157,-0.0148462253,0.0114798471,-0.0122271404,-0.0143622644,0.029180022,0.0483961329,-0.0110457055,0.0280982256,-0.0245539211,0.0216074493,0.0279843528,0.0066971709,-0.0235859975,-0.0221341141,-0.0156433377,-0.0053769527,-0.011842818,0.0239276178,-0.0118214674,-0.0300910082,-0.0039713299,-0.0414783321,-0.0326816253,0.0060317242,0.01561487,-0.0106115639,0.0058822655,0.0027596471,0.0377205163,0.0165827926,0.0145330736,0.0387169048,-0.021308532,0.0268456191,-0.0261196773,-0.0042061931,-0.0297209192,-0.0436419249,0.0317137018,-0.0358985439,0.0204971861,-0.0347028747,0.0141985714,0.0395709574,0.016554324,-0.0081419377,0.027173005,0.0294362362,0.0065441537,0.0150028011,0.0273438152,-0.0422754474,-0.039627891,0.0047933524,-0.0376920477,0.0252798628,-0.0158426166,0.0035087196,0.0020354844,0.0179208033,-0.0230593346,0.017337203,0.0256214831,-0.0155009963,0.0119211059,-0.0071099615,0.0020123539,-0.0255218428,-0.0357277319,-0.0043947957,-0.0012703985,-0.0048751985,0.0123694818,0.0099425586,-0.0157002751,0.0176076517,0.0233867187,0.0093376068,-0.0069925296,-0.0363540351,0.0055442043,-0.0137786642,-0.0397417657,0.0242977049,0.0243831109,0.0156291034,0.0147323525,0.0201982688,0.0119282231,-0.0086116651,-0.0369803384,-0.0157287437,0.0262335502,-0.0051812329,-0.0154155921,0.006085102,0.0224472657,0.0297493879,0.0088892309,-0.0262050834,-0.005839563,-0.0007254972,0.0067007295,0.0006303063,0.0392293371,0.0109460661,-0.0107040862,0.0250236485,0.0002348636,-0.0100920172,0.0335356742,0.0260769743,-0.0536627695,0.0028272595,-0.0123694818,-0.0047292984,0.023529062,0.0006609986,0.035044495,0.0200559273,0.0087113036,-0.0266036391,-0.0084693236,0.0086187823,0.0695765615,-0.0128107416,0.0202979073,0.0067149634,0.052495569,0.0023183883,0.0080778841,-0.0127751557,-0.0062452364,0.0079853619,-0.0131381266,-0.0275857951,0.0215362795,-0.0360693522,0.0177357588,-0.0104194032,-0.0193584524,-0.0042773639,-0.0111239934,-0.0020799662,0.020041693,-0.013771547,0.0333363935,-0.0016796305,-0.0054730331,0.0174368415,-0.0105973296,0.0065441537,0.0010186319,-0.0058502383,0.009181031,0.0104692224,0.0121773211,0.0106613832,-0.0317137018,-0.0007779856,-0.009138329,-0.0040852032,0.0060495166,-0.0192588139,0.0132733509,0.0478552356,0.0144120837,0.0347028747,0.0111951642,0.0135793854,-0.0254791398,0.0226038415,-0.0197000727,-0.0151451426,-0.0475705527,0.0012543851,0.0115937209,0.0414498635,-0.0158710852,0.0189456623,0.0095582362,0.0176076517,0.0006814603,0.0002817918,-0.0284540802,0.0236571692,0.0237425733,-0.0022810237,-0.0026262018,0.0518692657,0.0100279637,-0.0387169048,-0.0039215102,-0.008319865,0.0111453449,-0.0129815508,0.0128178578,0.0225184355,0.0463179462,-0.0033254549,0.0105119245,-0.0155721679,-0.0183051247,-0.0261623804,0.0113659743,0.0119709261,-0.0012054552,-0.0048396131,0.0076295082,-0.0092949048,0.0424462557,-0.0267175119,-0.0356707983,-0.0130242538,0.0202694386,0.0070174392,0.0404819436,0.0232159104,0.0306319054,0.0069355927,-0.0044908766,0.0105403932,-0.0226180758,0.0265324675,0.0135580348,-0.0122413747,-0.0229596943,0.0217070896,0.0180631448,0.006843071,-0.0047862353,0.0022988163,-0.0354999863,-0.0033218963,0.0074231126,-0.0224757344,0.007458698,-0.000067501,0.0220060069,-0.0210380834,-0.0491647758,0.0414498635,0.0257211216,0.0396563597,0.0415637381,-0.0031688791,0.005430331,0.0169813484,0.0161557682,0.0244969837,-0.0160134267,-0.0097717484,-0.0321976617,-0.0160561297,-0.0248813052,-0.0365533158,0.0202409718,0.0066580269,-0.0209669136,0.0111168763,-0.0040175905,-0.0013406796,0.0023094919,0.0252798628,-0.0180062074,-0.0018984807,-0.0043698861,-0.013565151,0.0197000727,0.0067754588,0.0033165584,0.0005720351,-0.0121488525,0.0150312698,-0.0115510179,-0.0072167176,0.0260485075,0.0150455041,-0.0223049242,0.0039001589,-0.0055157356,-0.012746687,0.029920198,0.0025550311,-0.0021208893,0.0000199751,-0.0195150282,-0.0044979937,0.0200274587,0.0415352695,0.0341335088,-0.004693713,0.0292369574,0.0118570523,0.0125901112,-0.0232016761,0.0365248471,0.0280270539,0.0008865211,-0.0029197815,0.0066615855,-0.009138329,0.0356423296,0.0001582438,0.0403396003,-0.0209811479,0.0111951642,0.0090031037,0.0306603741,0.0208103377,0.0082700448,-0.0124335364,-0.021023849,0.0295785777,-0.0455777682,0.0077291471,-0.0005444565,0.0258776974,0.0205968246,0.0245112181,0.0114442622,0.00645519,-0.0231020357,0.0391723998,-0.0099496758,-0.0138569521,-0.0032293743,-0.003576332,0.037464302,0.0091739139,-0.0158853196,0.020283673,0.0219348352,0.0160418954,0.0050353329,0.006803927,-0.0235859975,0.0157714449,0.0258634631,0.0032738561,-0.0358416066,-0.030204881,-0.0158995539,-0.0012259168,-0.0113019207,-0.017621886,-0.0005391187,-0.0410228409,0.0007677549,0.0257638246,-0.0178638659,0.019956287,0.0107183205,0.0276000295,0.0076152738,0.010817959,0.0287814643,0.0043165078,-0.0021778259,0.0317421705,0.0079782447],"101":[0.0066772271,-0.0135644758,0.0437423587,-0.0034653507,0.0342696756,0.0209297035,-0.0039216038,-0.0031322134,-0.0105010625,-0.003233603,0.0533019453,-0.0259846989,-0.0263902564,-0.0458280854,0.0753758997,0.0904394984,0.0081908284,0.006525143,-0.0331688747,0.0280124899,0.0022649704,0.0181052797,0.0182356387,0.0303879026,-0.0227257479,-0.0323867239,-0.017888017,0.05880595,0.0111528523,-0.0764767006,0.0274910573,-0.0408744812,-0.0288236067,-0.0154256988,0.0019517492,0.0322418846,0.0196261238,0.0112614846,-0.0005060426,-0.0082560079,-0.0093568088,0.0369637385,0.0027664867,0.0469578542,-0.0215670094,-0.0112759685,-0.0403240807,-0.0122102005,0.032212913,0.0521142371,-0.0480007194,-0.0226822942,-0.0217553042,-0.0207414087,-0.02269678,-0.0161209423,0.0234209895,0.0372534245,-0.0080459863,-0.029258132,-0.0062137321,-0.0362105593,0.0050586155,0.0327922851,0.0003498845,0.0282297526,-0.0332268104,0.0531860702,-0.0464364216,0.0131082227,0.0393101834,0.0115801375,-0.0018557912,-0.0051346575,0.020379303,-0.0241452008,-0.007307291,0.0490435846,-0.0201765243,-0.035776034,0.0292436481,-0.000939664,-0.065816313,0.0192205645,0.0203648191,-0.0374851711,-0.0283745956,-0.0148173617,-0.023493411,0.0247100871,-0.0106024519,0.0558222011,-0.0131516755,0.0199302919,0.0454225279,0.046986822,0.0229285266,-0.0145131927,-0.0047942782,0.0109573156,-0.0182211548,0.015251888,-0.0138324341,-0.0283890795,0.0716679394,0.0054026158,-0.0409324169,0.0141148763,-0.0127171492,0.0204951763,-0.0647734478,-0.020060651,-0.0542579032,-0.0004195899,0.0017381069,0.007158828,-0.0187281016,-0.0244638547,0.0084732715,-0.034385547,-0.0457991175,0.0142959291,-0.0369347706,-0.0060471636,0.0058371425,-0.0196840614,-0.0050694784,-0.0499126352,-0.0389915332,-0.0084805135,0.0306486189,-0.0100375675,0.0804164112,-0.0226098746,-0.0209876411,-0.0121015692,-0.0654107556,-0.0019028649,-0.0253184233,-0.0062427004,-0.0075897332,0.0035576876,0.0122608962,-0.0060906163,-0.0145131927,0.0220594741,0.0041098986,0.0194957666,0.0081835864,-0.0438582301,-0.003191961,0.0054315841,-0.0393970907,-0.0351966657,0.0637885258,0.0115439268,0.0096971877,-0.0174390059,-0.0243624654,-0.0441479161,-0.0215670094,0.0250287391,0.0120291477,-0.0258543398,-0.0032281715,0.0215959791,-0.0827338919,-0.0304168705,-0.0717258751,-0.0240727812,-0.0420332178,-0.0596750043,0.0002611687,-0.0065215221,0.0415697247,0.0023048022,-0.0226388425,-0.0461467393,0.0201765243,-0.0417725034,-0.042786397,-0.0063332268,0.0023247181,0.0220160205,-0.029721627,0.022407094,-0.044321727,0.042786397,0.0124129802,0.0237106755,-0.0506368466,0.0461177714,0.0073435018,0.0398895517,0.016338205,-0.0411062278,0.0377169214,0.0040519615,-0.0059892265,0.0220739581,0.052577734,0.0087846816,0.0549531467,-0.018829491,0.0019716651,0.0045263199,0.0193943754,0.023493411,-0.0364423096,-0.0285484064,0.0103489785,-0.0192640182,0.0373403281,-0.0070465752,-0.0263323188,-0.0102113783,-0.0608916767,-0.0038274562,0.0191046912,-0.0177142061,-0.033748243,0.0022486758,-0.0001605712,-0.0135282651,-0.0227547158,0.0444086306,0.0312279873,-0.018351512,0.0129416538,0.0132603068,0.0149187511,-0.049014613,-0.0187860392,-0.022566421,-0.0027990763,0.0410193242,0.0203648191,-0.0212193877,0.0077490597,-0.0185253229,-0.0048594573,0.0030996241,-0.006217353,0.0318073556,0.0000361823,0.0242755599,-0.0326184742,-0.0424098074,0.0123478007,0.0493332669,-0.0063404692,-0.0488118343,0.0090888506,-0.0457122102,-0.0117032528,-0.0373982675,-0.0373692997,0.0327343456,0.0217553042,-0.0037333088,0.0226098746,-0.0191191752,-0.0003023582,0.0119350003,-0.0376300141,0.0069995015,0.0616448596,-0.0363554023,0.0251446124,0.0124347061,0.033458557,0.0169175733,0.0238120649,-0.0268102996,-0.020379303,0.000383153,0.0066736061,-0.0173665844,-0.0000160684,-0.0530991666,-0.0022541073,-0.0530412272,0.0049391203,0.0026415603,0.0047254781,0.0180907957,-0.001052822,0.0546924286,0.0219146311,-0.0249273498,-0.0004372425,0.0068944907,0.0038926352,-0.0446983166,0.0404689237,0.004204046,0.0057429951,-0.0044140671,-0.0124781588,-0.0262743831,-0.0002150002,0.0125650642,0.0005780111,-0.0362105593,0.00466392,0.0682496652,-0.0140714236,-0.0036047613,-0.0226822942,-0.002105644,-0.0068112062,-0.0147594241,0.0402371734,-0.0123695275,-0.0325895026,-0.0273317304,0.0855148584,-0.0183080584,-0.0102113783,-0.0446403772,-0.0218566936,-0.0688290298,-0.0460887998,0.0448431596,0.0255791396,-0.0437133871,0.0302720293,0.0180328581,0.0220015366,-0.0260716043,0.0053265733,0.0154836355,0.01539673,0.0412510708,0.0149042662,-0.0453645885,0.0241307169,-0.0331109352,-0.0094075035,0.0526356697,-0.0216539148,-0.0268827192,-0.050549943,0.0109283468,0.0411641635,0.0174679738,-0.0204662085,-0.0001133843,0.0302430596,-0.0031829083,-0.041859407,-0.0280269738,0.0055619422,0.0071552065,0.0525197983,-0.0044321725,-0.0045733936,-0.0252749715,-0.0384990685,-0.0029710764,-0.0210455768,-0.0186411962,0.0316045769,-0.0084805135,-0.0212193877,0.031720452,-0.0387018472,0.0237106755,-0.0254053287,-0.0134775704,0.0445824414,-0.0314017981,-0.0257239826,0.0217118524,-0.0478848442,-0.0170479324,0.056778159,0.0600226261,0.0158891939,0.0796052963,0.0414828174,0.0001223238,0.0144407712,-0.0402082056,0.0677282289,0.0483483411,-0.0072131436,0.0508685969,-0.0404399522,-0.0268537514,0.0477979407,-0.0109717995,-0.0157878045,-0.0324156918,-0.0193509236,0.020060651,0.0196550917,0.0130575281,0.0507816896,-0.0066663641,0.0181342494,-0.0030199608,-0.0388466902,-0.0256950129,0.0059240479,0.0336034,-0.0026397498,0.0061630374,-0.0204227567,-0.0256950129,-0.0412800387,-0.0422649644,0.0238700006,-0.0176128168,0.0308224298,-0.0182790905,-0.0555904508,0.0983189121,0.0180038903,0.0661639348,-0.041714564,-0.0266364887,-0.0334006213,0.0028896027,-0.0373982675,0.020379303,0.0399474911,0.0037224456,-0.0213642307,0.0076476703,0.0013108223,0.0286642797,0.0306486189,0.0132747917,-0.0246956013,0.027230341,0.0194812808,-0.0456832424,0.0639043972,-0.0212049037,-0.0360077806,-0.0086036287,0.001436654,0.0371085815,-0.0408165418,-0.0465522967,-0.0292001963,-0.0639043972,-0.0061992481,0.0105372733,0.0183080584,0.025521202,-0.0415407531,0.0324446633,0.0015000225,-0.0436844192,0.0367030241,-0.0227547158,0.0466392003,-0.0003770425,-0.0291132908,-0.0062571848,-0.0345303901,0.035486348,0.0039940248,-0.0245217923,0.0666853711,-0.0000987304,0.0108776521,-0.0057683424,-0.0084443027,0.0324736312,-0.0000064465,0.0259991828,0.0059240479,0.0136296554,-0.000766306,-0.0016774542,-0.0108559262,-0.0246231817,-0.0182646066,-0.0054569314,-0.0132820336,0.0669750497,0.0390784368,0.0476241298,0.0029040868,-0.0110007683,-0.0301561542,0.006144932,-0.0215670094,-0.0054677948,0.0330529995,-0.0180763118,-0.0422649644,0.0003793056,-0.0679020435,-0.0190612394,0.01306477,0.0064273747,-0.0015914541,0.0212193877,0.016946543,0.044032041,0.0051962156,0.0148028769,-0.0159760993,-0.019292986,0.0244348869,-0.0193798915,-0.0002233739,-0.0370796137,0.021943599,0.0406717025,-0.0164540783,0.0242465921,-0.0097261565,0.0095668305,-0.009494409,0.0061340691,-0.0444375984,-0.0241307169,-0.0323287882,0.0063042585,0.0005924953,0.0043561305,-0.0325025991,-0.0183080584,-0.0248983819,-0.0247100871,0.0168451518,-0.0456542745,0.0127026644,0.0039505721,-0.0500285104,-0.0001542344,-0.0249273498,-0.0204372406,-0.0200171974,0.0042511197,0.0158022884,0.037514139,0.0223781262,0.0359788127,0.0083718812,-0.0128112966,-0.0023138549,-0.0116742849,0.0029855608,0.0184384175,0.0254487824,-0.0034363822,0.0349069797,0.0165264998,0.0279545523,0.0466392003,-0.0034906981,0.0153098246,0.0108124735,-0.017888017,0.0016892226,-0.01446974,0.0042293933,-0.0087339869,-0.0114280526,0.0281863008,0.01385416,-0.0384121612,-0.0709726959,0.0205096621,-0.0029167607,-0.0178445634,0.0225809049,-0.0041352459,-0.0048775626,0.020524146,-0.0134051498,-0.0235658325,-0.0091612721,-0.019437829,-0.036413338,-0.0140714236,-0.0270420462,0.0092771454,-0.0488118343,0.0132023701,0.024579728,0.018351512,0.0274041519,-0.016338205,-0.011044221,-0.0135282651,-0.0085384501,-0.0031883398,0.0270130783,0.0138903707,0.0193074699,-0.0188584607,-0.0248114765,0.0059783636,0.027693836,-0.0052758786,-0.0274910573,-0.0209441874,-0.0345883258,0.0312569551,-0.0123840114,0.0237686113,0.0326764099,-0.0040410985,0.0141945397,0.0085239662,-0.0091105774,-0.0411931351,0.0116018634,0.0063730585,-0.0229719803,-0.0070574381,0.0235803165,-0.0287077315,-0.0227691997,-0.0140424557,-0.023638254,-0.0034400031,0.0129706226,0.0307355244,-0.0143393818,-0.0484062769,-0.005366405,0.0106893573,-0.0071805543,0.0048051411,0.0310541764,0.0081618605,0.0240727812,0.0109066209,0.0161643941,0.004280088,-0.0129851066,0.003812972,0.0232182108,0.0281283632,-0.0168161839,-0.0077273333,0.0309093334,-0.0299823433,-0.0286642797,0.0190467555,-0.0100737782,-0.0031720451,-0.0235513486,-0.0123912534,0.0677282289,0.0303299651,0.0191626288,-0.0195537023,-0.0354284123,-0.034385547,0.0264047403,0.0137600126,-0.0273462143,0.0066156695,-0.0073833331,-0.0000296757,-0.0268102996,0.0481745303,0.0333426856,0.0025492234,0.0159616154,0.0215670094,-0.0166423731,0.0230443999,0.0120798433,0.0471316651,0.0451907776,-0.0128547493,0.0162512995,-0.0232471805,0.0073362594,0.0347621366,-0.0219870526,0.0027592448,-0.0530122593,0.0058443844,-0.006152174,0.0074304068,0.0031086765,-0.0011696011,0.0286932476,0.0204806924,0.0158312563,-0.009798578,0.0250866767,-0.0161209423,-0.0136368973,-0.0159326456,0.0046168463,0.027375184,-0.0057647214,-0.019597156,-0.0066337748,0.0016385278,-0.0447272845,-0.0397447124,-0.006539627,0.0096175252,0.0244493708,-0.0236817058,0.0148752984,-0.0243190117,-0.0287511852,-0.0120798433,-0.0365871489,0.0065215221,-0.0163092371,0.0100882621,-0.0433367975,0.0210600626,-0.0073471228,-0.0241017491,-0.0431340188,0.0379197001,-0.020857282,-0.0418014713,0.0394839942,0.002417055,0.0276214145,0.0369058028,0.0131082227,-0.0351387262,0.0158167724,0.0196695756,0.0469578542,0.0132458229,-0.004511836,0.0037007192,-0.0222622529,-0.0031430766,-0.038585972,0.0108486842,-0.0140714236,0.0109645575,-0.0347621366,-0.0193364397,0.0366740562,-0.0534757562,0.0043271622,0.0286787637,0.0052106995,-0.0110080102,-0.0135934446,0.0140207289,0.0007586112,-0.0090019451,0.0056452262,-0.0114642633,-0.0016385278,0.0039578141,-0.0006526954,0.0189453643,0.0128692333,0.0017987596,-0.0276793521,0.0177576579,-0.0021925494,0.0070791645,-0.0112325158,0.0179314688,0.0045009726,-0.0205820818,-0.0419173464,-0.0167147946,-0.0099144513,-0.0181342494,0.0573864952,-0.015237404,-0.0056597106,0.0260426346,-0.0052722576,0.007698365,0.0084877554,-0.0043235407,-0.0175548792,-0.040613763,-0.0089657344,0.0165844373,0.0311410818,-0.0036970982,-0.0411931351,-0.0271724053,-0.0204951763,-0.0402951129,-0.0183225442,-0.0092481775,0.0395419337,-0.0386439115,0.0354573801,-0.1026062444,-0.0318073556,0.0184818693,-0.0128112966,0.0108269574,-0.0248404443,0.0074304068,0.0027664867,0.049159456,-0.0289684478,0.003648214,-0.0644258261,-0.0207269248,-0.0193364397,-0.0347042009,-0.0043162988,-0.0153677622,0.0288960263,0.0206255354,0.0190467555,-0.0120943272,-0.0073253964,-0.0239134543,0.0462626107,0.01368035,-0.0051093102,-0.0274620894,0.0410193242,0.0278821308,0.0020006334,0.0164975319,-0.0135499919,0.0044068252,0.0115004741,-0.0039107404,0.0165409837,-0.0190467555,-0.0066808485,0.0032770557,-0.0121160531,-0.024883898,-0.0378327928,0.0249997713,-0.0137020759,0.0386149399,-0.0140279708,-0.0271579195,0.042786397,-0.0374272354,0.0031249714,0.007227628,-0.0009152219,-0.006919838,-0.008096681,0.0068039643,0.0341538005,-0.0311990194,-0.0069053536,0.0364712775,-0.0194233451,-0.0179169849,0.0235658325,0.0251590982,-0.0517955869,-0.0131734023,0.000063029,-0.002451455,0.0433947369,-0.0103127677,0.0061051003,0.0131082227,0.019292986,0.0100520514,-0.0097116726,0.0159616154,0.0073978174,0.0015787805,-0.0050260257,-0.0135210231,-0.0299823433,0.0084443027,-0.019437829,-0.0646575764,0.0082704918,-0.0042873304,-0.0310831442,0.0187570695,-0.0131951282,0.0368188992,0.0205096621,0.0203503352,-0.0101027461,-0.0163671728,0.0227836855,0.0108269574,0.0075607649,0.0467261076,-0.027071014,0.0217408203,-0.017279679,0.0455963388,0.004272846,0.0290698372,0.0113773579,-0.0374851711,-0.0249708015,0.0148897823,-0.0057104053,-0.0027049289,-0.0019191597,-0.0082342811,0.013376181,0.0127678439,0.040613763,-0.0001920291,0.0229140427,-0.012297106,0.0239134543,-0.0206255354,-0.0292001963,0.0335164964,-0.0039904038,-0.0573575273,0.0253039394,-0.0155995097,0.0117394635,0.0176852383,-0.0159181617,-0.0000896777,-0.0055184895,0.0199302919,0.0704512671,0.0056090159,0.0526067019,-0.0219580829,-0.0102186203,-0.0030996241,-0.006449101,0.0111528523,0.0202779137,0.0034707822,0.0215670094,0.0254198126,-0.0265930351,0.013368939,0.0215814933,-0.0149477189,-0.0180763118,-0.0086543243,0.0297795646,0.0103707043,-0.0235658325,-0.0342117362,0.0386439115,0.0013044855,0.0578789599,-0.0369637385,-0.0268682353,0.0180473439,-0.0061557954,0.0221463796,0.0454225279,0.0369347706,-0.0181632172,0.023029916,-0.0508975647,-0.044959031,-0.0057611,-0.0210745465,0.0315466411,-0.0107110841,0.033313714,0.0353415087,0.0337772109,0.049014613,0.0471316651,0.0119132744,-0.0049282573,-0.0027357079,0.0242755599,-0.0576761812,-0.028316658,0.0099361781,0.007227628,0.0161499102,-0.0012972433,-0.0167727321,0.0090960925,0.0014701488,0.0316914842,0.0033784453,0.011044221,0.0429022722,0.0535336919,-0.0231168214,0.0219146311,-0.0022197072,0.0078649335,-0.0246521495,0.0085384501,-0.0235078949,0.0270275623,-0.0074376492,0.0068112062,-0.0162368156,0.0285918582,-0.0093061142,-0.0033820663,-0.0083791241,0.0201910082,-0.0148608135,-0.0025021497,0.0165844373,0.0044357935,-0.0492463633,0.0233051162,0.013079254,-0.0029077081,-0.0084515447,-0.0324446633,-0.0322708525,-0.0359498449,-0.0210166089,0.0377748571,-0.0151649825,0.0147304563,-0.0300402809,-0.0178011116,-0.0159471314,0.0190612394,0.0083863661,0.0467550755,-0.013079254,0.0111238845,0.0119494852,-0.0052324259,0.0120219057,0.0088208923,0.0092771454,0.0121088112,-0.0082994606,-0.0165409837,-0.0159471314,-0.0289684478,-0.0358339697,-0.0150491092,0.0524618588,0.0176852383,0.0231023375,0.0026053498,0.0187715553,0.0056886789,0.0120726004,0.0074593755,0.024883898,0.0159326456,0.0032517083,0.0098275458,-0.0170769002,0.0027918343,0.007922871,-0.0042547407,0.0113121793,0.0248983819,-0.0229574945,-0.004120762,-0.0110587049,0.0225953888,0.0110152522,0.0256950129,-0.0003206898,0.0385280363,-0.0014113066,-0.0360946879,-0.0305906814,0.0424387753,-0.0469288863,-0.0158457421,-0.0112180319,-0.0161354262,-0.0006241795,0.0061702793,-0.0307644922,-0.0201765243,0.0279255845,-0.0021346125,0.0191046912,-0.0077418177,0.0117249796,-0.0281718168,-0.0052577732,0.0314597338,-0.0140062449,0.0331688747,-0.0125360964,0.014781151,-0.0080459863,0.0050803418,0.0090019451,-0.029721627,0.0103200097,-0.0132458229,0.004978952,0.0353125371,0.0356601588,-0.0080749551,0.0152229192,-0.0000426889,-0.0063078795,0.0144407712,-0.0123550436,0.0499416031,0.0211904198,0.0349359475,-0.004124383,0.000400353,0.0170189627,0.0526936091,0.0022957495,0.0331688747,0.0022016021,0.0268392675,-0.0006608428,0.0323867239,0.0063042585,0.004280088,0.0169755109,-0.0075390385,-0.016946543,0.0138107073,-0.0156429615,0.0245362762,-0.0218422096,0.0300692488,-0.0168886054,-0.0119205164,-0.0032281715,-0.0213497467,0.0004508215,0.003613814,0.0193364397,0.0058914581,0.0053157103,-0.021320777,0.0008654324,-0.0228126533,0.0447562523,-0.0061087217,-0.0158312563,0.0033693926,0.0614131093,0.0071298592,-0.0398605838,0.0000401145,-0.0262743831,-0.0205965675,0.0142959291,0.0212049037,-0.0318942629,0.0106024519,-0.0217263363,-0.0137962233,-0.0313438624,0.0023518759,-0.0028443395,-0.0217842739,-0.0163671728,0.0099144513,0.0249128658,-0.0118118851,-0.0047363411,0.0158312563,0.0000129283,-0.0102982838,-0.0088064084,-0.0046096044,0.0197564811,-0.0373982675,-0.021480104,0.0047978992,-0.019437829,-0.0162368156,0.0251301285,0.0457991175,-0.0139410654,0.0039614355,-0.0234789271,0.0168306679,0.0278241951,0.0079952916,-0.0007694744,-0.0208283141,0.0002912687,-0.0058624898,0.0108559262,0.0373692997,0.0027031184,-0.0037369297,-0.0225084834,-0.0255646557,-0.0183949638,0.0121088112,0.0131444335,-0.0089512505,-0.0247100871,-0.0026705288,0.0212628413,0.037166521,0.0112542417,0.0201765243,-0.0418014713,0.016178878,-0.0307644922,0.0100520514,-0.0171493217,-0.0513900258,0.028924996,-0.0292436481,0.0099216932,-0.0213787146,0.0140134869,0.024594212,0.0321549773,-0.0216394309,0.0243624654,0.0116308322,0.008089439,0.0103996731,0.0279111005,-0.0379776359,-0.0234209895,0.0071226172,-0.032212913,0.0362684987,-0.016323721,0.0127750859,0.0203648191,0.0090743667,0.0009695378,0.0003286108,0.0103489785,-0.0144262873,0.0128475064,0.0068256906,0.0118843056,-0.0108414413,-0.0166278891,0.0067424062,-0.0085167242,-0.0279400684,0.011044221,0.0254777502,-0.0059711216,0.0201041028,0.0093640508,-0.0027393289,-0.0095523456,-0.0492463633,-0.001772507,-0.0145783713,-0.0146652767,0.0198289026,0.0228126533,0.0094147455,0.019597156,0.0116742849,-0.0139120976,-0.0173665844,-0.030011313,-0.0135862026,0.0181632172,0.0009351377,-0.0139410654,0.0133327283,0.0266654566,0.0361815915,0.0167147946,-0.0064853113,-0.0105227884,-0.0070574381,-0.0074231648,0.0127316331,0.0406717025,0.0144769819,-0.0004965373,0.0153098246,-0.0246521495,-0.0047797938,0.0234789271,0.0128619913,-0.0434816405,0.0086760502,-0.0166134052,-0.0212193877,0.0096971877,0.0004300004,0.0077345758,0.0192640182,0.0226388425,-0.009487167,0.0071479646,0.003816593,0.0474792868,-0.0194088612,0.0274476055,0.0117901582,0.0367609598,-0.0113845998,0.0206689872,0.0030851397,-0.0044538989,0.0008894219,-0.0193364397,0.0011849906,0.029258132,-0.0279690363,0.0059819845,-0.0075824913,-0.0111021576,0.0222767368,-0.0044430359,0.0020332229,0.0233340859,-0.0158312563,0.0175259113,-0.0023048022,-0.0073000491,0.0188005231,-0.0106965993,0.0339510217,-0.0102910409,0.0017064227,0.0051274155,0.0145711293,0.0160340369,0.0140931504,-0.0206110515,-0.0012257275,-0.0125578223,-0.0105952099,0.0063621956,-0.0099941147,0.0213352628,0.0474792868,0.0141221182,0.0185832605,0.012282622,0.0050767204,-0.0051962156,0.0255791396,-0.0178590491,-0.0308513977,-0.0487249307,0.0000281763,0.0100665353,0.0248549283,-0.0394839942,0.0127243912,0.0012854749,-0.0218277257,-0.0190612394,0.0020386546,-0.0238989703,0.0325315669,0.0188150071,0.0097189145,0.0044032042,0.0407296382,0.0045335623,-0.0318363234,0.0221463796,-0.0003729688,0.0233920217,-0.0204951763,0.0046566781,0.0105589991,0.0548662394,0.0087701976,0.016946543,-0.0161064565,-0.0217697881,-0.0184384175,0.0061920057,0.0100085987,-0.0091685141,-0.0020802966,-0.0062608058,-0.0214076824,0.0249418337,-0.0153098246,-0.0064382376,-0.0006938849,0.0208138302,0.0004257004,0.0261295401,0.0251590982,-0.0001964423,0.0259991828,-0.0032951611,-0.0106965993,-0.0520852692,0.0409613848,0.0080242604,-0.0012148643,-0.0239279382,0.0363264345,0.0130068334,0.0077418177,0.0093495669,0.026144024,-0.039686773,-0.0087846816,0.0336613357,-0.0411931351,-0.0025962971,-0.018351512,0.0124854008,0.0006952428,-0.0378617607,0.0519114584,-0.006923459,0.0196406078,0.0242176224,0.0124854008,-0.0208717678,-0.0004361109,0.0270420462,0.002255918,0.0206979569,0.0000344,-0.0149187511,-0.0256370772,-0.0289829317,-0.0113266632,0.0013615171,-0.0183080584,-0.0249997713,0.0027664867,-0.0061594164,0.0070972699,0.0302430596,0.0307355244,-0.0130285593,-0.0076766387,-0.0073760911,0.0007323586,0.0201620404,0.0299823433,0.011203547,-0.0022504863,-0.00349794,0.0067532696,-0.0085312082,-0.0199592616,0.0218277257,0.0116453161,0.0047218571,-0.0013026749,-0.0016213278,-0.0126954224,0.0110949157,-0.0049246363,0.0092119668,-0.0174969435,0.0125505803,-0.0069632907,0.0277662575,0.0192640182,0.0129271699,0.0227547158,0.0150346244,0.0194233451,0.0146507928,-0.0146870036,0.0458280854,0.0014547593,0.0037695193,-0.0235658325,0.0144262873,-0.0231602751,0.0349069797,0.008712261,0.0143248979,-0.0332268104,0.0109717995,0.0097044306,0.0345593579,0.003689856,0.0013008644,-0.0101317149,-0.0107110841,0.0147087295,-0.0411062278,-0.0100158406,-0.012289864,0.0234499592,0.0237686113,0.033893086,0.0240582954,0.0209441874,-0.0179169849,0.0314017981,-0.0157298669,0.0025130128,0.0103779463,0.0028696868,0.026288867,0.0199592616,-0.0178155955,0.0261005722,0.0133037595,0.017424522,0.0074521331,0.0003197845,-0.0208138302,0.0269261729,0.0083791241,-0.0112542417,-0.0218566936,-0.0422070287,-0.0058480054,0.0144407712,-0.0185977444,-0.0310831442,-0.0221898314,-0.0353994444,0.0006459058,0.0389335938,-0.0134920552,0.0252460018,0.0128185386,-0.0025003392,0.0262019616,0.0036101928,0.0025926761,-0.0009233693,0.0167727321,0.0231892429,0.0035703613],"102":[0.0186266862,-0.019767927,0.0389652327,0.0183006171,0.0295364074,-0.0152708925,-0.0215341337,0.0023996632,-0.0276071653,-0.0246453732,-0.0126963072,-0.02240365,-0.0117860315,-0.0447801277,0.0543719865,0.0136677213,-0.023245994,-0.0023826805,0.0265474413,0.057170745,0.0182598587,0.0164664797,0.0098839635,0.0109233074,-0.0093744807,-0.013416376,-0.0393999889,0.082332395,0.0370359905,-0.0358132347,-0.0181239955,-0.0469810925,-0.0235720631,0.0395901985,0.023680754,0.0241562705,0.0162083413,-0.0421444029,0.0757023245,0.0107398937,-0.0120985145,0.0038211199,0.0266833045,0.0294820629,-0.0210042708,-0.0327699222,-0.0250937175,-0.003192758,0.0477962643,0.0834192932,0.001177754,-0.0225666836,-0.0387750268,-0.0687461942,0.0085185496,-0.0157056507,0.0074112741,0.0135046868,0.0022485168,-0.0452692322,-0.0109368945,-0.0249850284,0.0471441261,0.0450790226,-0.0568990223,0.0117996177,-0.0244687535,0.0094831698,-0.0410303362,0.0172001347,0.0615183301,0.0274713039,0.0270365458,-0.0198630299,-0.0065757227,-0.0805933625,-0.0520079881,0.0454594381,-0.0118675493,-0.0474701971,0.0046702577,0.0228655804,-0.0366555788,0.0547795743,-0.0081517221,-0.0468724035,-0.026737649,-0.0212352369,-0.0073705157,0.0402151644,0.0158958584,0.0421987474,0.0057197916,0.0358675793,0.0454050936,0.0518721268,-0.0145644108,-0.0066232742,0.0209363401,0.0305961315,0.0330688208,-0.0316830277,-0.0058284812,-0.0207325462,-0.0029023527,-0.0202026851,0.0301341992,-0.0136745144,0.0452148877,-0.0110116182,-0.0753219128,-0.010250791,-0.0326884054,-0.0064024986,0.0320906118,0.0146323415,-0.0169963408,-0.0502961278,0.0350795798,-0.051464539,-0.0286125448,-0.0078120669,-0.0207597185,0.0340470262,0.0101285148,-0.038666334,-0.0240611676,-0.0136813074,-0.0279060621,0.0013356936,0.0103255147,-0.0207325462,0.0341557153,-0.0052544642,-0.0256371666,-0.017227307,-0.066681087,-0.0323351659,-0.023884546,-0.0405140594,0.0365468897,-0.0403238535,-0.0171593744,-0.0074792053,-0.0225802697,-0.0423074402,0.0166702718,0.0413564034,-0.0076897913,-0.002189077,0.024414409,0.009612239,-0.0451061949,0.0334492326,0.032117784,-0.0155969616,0.0429867469,0.0380141996,-0.0364925414,-0.019129375,0.0491548851,0.0222677886,-0.0135794105,-0.0133892037,-0.0474973693,0.0071395501,-0.0653768107,-0.0382044055,-0.0645072982,-0.0041132234,-0.0411661975,-0.0463017821,0.0114871357,0.0759740546,0.0429052301,-0.0023673959,0.0045615677,-0.041655302,-0.0044460851,-0.0205287542,-0.0482581966,-0.0261941999,-0.0484484024,-0.0345089585,-0.0258273724,0.0348078534,-0.0612466075,0.0428780578,0.0180424787,0.0457583331,-0.0716264695,0.0363838524,0.0269686151,0.0438019224,0.0243872348,-0.0042219129,0.0108961351,0.0513830222,-0.0366284065,0.0346719921,-0.0031638872,0.0354328193,0.0145372376,-0.029373372,0.0179337896,-0.0164528936,0.0093337223,0.0003252198,-0.036247991,-0.0335850939,-0.0094559975,-0.0000338328,0.0188848227,-0.0004154406,-0.0354871638,-0.0217379257,-0.0016736505,0.0084098605,0.0124042043,0.0150535135,0.0146459276,0.0254741311,0.00781886,-0.0254741311,0.0208819956,0.0326340608,0.0151350312,-0.0327970944,0.0274441317,-0.0124245835,0.0444812328,-0.040785782,-0.006127378,-0.0231237188,0.0238573737,0.0033812665,-0.0111203082,-0.0352154411,-0.0028887666,-0.0061715329,0.0128185833,-0.0131378593,0.0278109591,0.0257458556,0.0030874647,0.0277837869,-0.0407586098,-0.0305417851,0.0105972392,0.0808650851,0.0301070269,-0.0086000673,0.0208140649,-0.0073365499,0.0187217891,-0.0344546139,-0.0128797209,0.0154203409,0.0264523383,-0.0152573064,0.0543719865,-0.0426878519,-0.0214118566,-0.0030297234,-0.0211401321,-0.0195369609,0.0062122918,-0.0242921319,0.0338024758,-0.0058182916,0.0276479237,0.0224308223,0.0026323269,-0.074071981,-0.0289114416,0.0098839635,0.0057605505,0.0029244304,0.0105157215,-0.0201483406,0.0341557153,-0.0141160656,0.0023351288,-0.0085253427,0.0067659295,-0.0024998614,-0.0121664451,0.0332046822,0.0039230161,-0.0440193005,-0.0120577561,0.0010979351,-0.0141704101,-0.0246725455,0.0112629626,0.0393728167,-0.0063583432,-0.0523883998,-0.0342100598,-0.0151214451,0.0335035771,-0.0510841273,0.0088446187,-0.0316286832,0.0051389816,0.0366012342,-0.0166295134,-0.0135862036,0.014156824,0.0037226197,-0.0025762839,-0.0122072045,0.0096937567,-0.0357860588,0.005499016,-0.0025491114,0.0535839871,0.0040283096,-0.0030212321,-0.0511656441,-0.0538557097,-0.0801585987,0.0091842739,-0.0072210673,-0.005709602,-0.0318732336,0.0455137827,-0.0098907566,0.0002481605,-0.0026747838,0.0142111694,-0.0200668238,0.0114803426,0.0637464672,-0.0020090598,-0.0415466093,0.0076558259,-0.0189527534,0.0015827927,0.0401608199,-0.0199309606,-0.0558664687,-0.083147563,0.0324710272,0.0657028779,0.0094424114,-0.0003073878,-0.0317373723,-0.0402151644,-0.0200939961,-0.0553230233,0.0012677626,-0.0550512969,0.001701672,-0.0498885401,0.0129544456,0.0153524103,-0.0249714423,-0.0406227484,-0.0099858595,-0.0301613715,-0.0161811691,0.0523340553,-0.0187217891,0.0260719247,0.0184772369,-0.026099097,0.008138136,-0.0081109637,-0.020827651,0.0112833418,-0.0337753035,-0.0124585489,-0.0167246163,-0.055159986,0.0119558591,0.0559208132,0.0226617884,0.0420628861,0.0355958529,0.0037633784,0.0323623382,-0.0101285148,-0.042388957,0.0388837159,0.0284495112,0.0004077984,-0.0070648259,-0.0119762383,0.0056654471,0.0368729569,-0.0205966849,0.001726297,0.0227297191,-0.0107602738,-0.0032369131,0.0351339243,0.0086612049,0.057605505,-0.0074656191,0.0207189601,-0.0230286159,-0.0303244069,-0.0271995794,-0.0025932665,0.0363295078,-0.0077713085,-0.0309493728,-0.0222406164,0.0205695126,-0.0514101945,-0.0280419253,0.0246046148,-0.008776688,0.0001862796,-0.0488831624,-0.0088582048,0.0222677886,0.0054786368,0.0434486791,-0.0101285148,0.0014265514,0.0242242012,0.0085049635,-0.0247948226,0.0610292256,0.0496439897,0.0268191658,-0.0327699222,-0.0553501956,-0.03825875,0.0269822013,0.049345091,-0.0093201362,-0.0265746154,-0.0092454115,0.0427693687,-0.0121392729,0.0829301849,0.023245994,-0.0220232364,0.0091163423,-0.040378198,0.0065553435,0.0393456444,-0.0442366786,0.004333999,-0.0231373049,-0.0234905463,-0.0033337148,0.0372533724,-0.0123702381,-0.0144013762,-0.0051118094,-0.0447801277,-0.0058114985,-0.0195777193,-0.0348621979,0.0472256429,-0.0304874405,-0.0427150242,0.0158958584,-0.0539915748,-0.0157328248,0.0415466093,-0.0607575029,0.0095511014,0.0082128597,0.0192108918,-0.0367099233,0.0396445431,0.0430410951,-0.0062564467,0.0256371666,-0.056735985,-0.0067455503,0.0358947515,-0.0153524103,0.0273626149,-0.0288842693,0.0326612331,-0.0256915111,-0.014265514,0.0842344612,0.0119626522,-0.0126963072,0.0160860643,-0.0238981321,0.0125264795,0.009408446,-0.0153659964,0.0273218565,0.0131310662,-0.0158143416,0.0102643771,-0.0278109591,-0.0554317124,-0.0155018587,0.0088242395,-0.0097956527,0.0030670855,-0.0076286532,-0.000347085,0.0486386083,-0.0121188937,0.0265610274,-0.0108689629,-0.0335035771,0.0073093777,-0.0117384801,-0.0228927527,-0.007343343,0.0402151644,-0.0128525486,-0.0180288926,0.0083691012,-0.0400792994,0.0082196528,-0.0059066019,-0.0268870965,-0.0138035826,0.0117113078,-0.0279060621,0.0086883772,-0.0173495822,0.011622997,-0.0116026178,-0.0434215069,-0.0154203409,-0.0000958464,-0.0045004301,-0.0315471664,0.0118607562,0.0354871638,-0.0409216471,-0.0101013426,-0.0317645445,-0.0511656441,0.0025355252,0.0275935791,0.0208955817,0.0254062004,0.0243736487,0.0182326846,-0.0305689592,-0.018911995,-0.0479049534,-0.0339383371,-0.0141975833,0.0445627496,0.039943438,-0.0351610966,0.0266289599,0.0145100653,0.0156648923,0.0288299248,0.0147546176,-0.0084166536,0.0151350312,0.011093135,-0.0123362727,0.0009221636,0.004014723,0.0073093777,0.0076829982,0.0424161293,0.0105836531,-0.0166159272,-0.0345089585,-0.0101353079,0.0152708925,0.017431099,-0.021452615,0.0024200426,-0.0194282718,0.0240204073,-0.0447801277,-0.0330959931,-0.0145508237,-0.0138103757,-0.0164664797,0.0067931018,-0.0248627532,0.0171593744,-0.0539372303,-0.00645005,0.0317373723,0.0172680654,0.0471984707,-0.0176892374,-0.0051186024,0.0019003702,-0.0196999945,-0.00527824,0.026099097,0.0041573783,0.0125061003,-0.0053665503,-0.0294820629,0.0233954433,0.0008788576,-0.0040554819,0.0023215425,-0.0180424787,0.0079207569,0.0134843076,-0.018708203,-0.0014622152,0.0074112741,-0.0151893757,0.0294005442,0.0029583958,0.0194010995,-0.0652137771,-0.0184364785,-0.0067251706,0.007078412,0.0163442027,0.0365197174,-0.0365197174,-0.022824822,-0.0075131706,-0.0010104739,-0.0212080646,0.0437747501,-0.0090959631,-0.0374979228,-0.034970887,0.0098975496,0.0041403957,0.0396717153,-0.0130359624,0.014374204,0.000597793,0.0062666363,0.0253926143,0.0100809634,0.0459485427,0.0139937894,-0.0264659245,0.0363295078,0.0015029738,-0.0044324989,-0.0063243778,0.0133688245,-0.0165751688,0.0374435782,0.0499428846,0.0020209479,-0.0088310326,-0.025895305,-0.0178658571,0.0009722627,0.0161132384,0.005648464,-0.0030908613,-0.0070648259,0.0030789734,0.0195369609,0.0041437922,-0.0085728941,0.0177028235,-0.0246861316,-0.0080905845,-0.0387750268,0.0113716526,0.0247540623,0.025895305,0.0234905463,0.046084404,-0.007608274,0.0111271013,0.030650476,0.0315743387,0.0500787459,0.0076490329,-0.0016795944,-0.0292918552,0.0167382024,0.0370631628,-0.000311209,0.0028378183,-0.0319547504,0.0169012379,0.0069051879,-0.0063719298,-0.0129680317,0.0243600626,0.0111950319,0.0223900639,-0.033829648,0.0171593744,-0.0134299621,-0.0193059947,-0.013103893,-0.0013238058,0.0159637891,0.0003267057,-0.0062598432,-0.032987304,0.0099586872,0.0035426025,-0.0393999889,-0.0286668893,0.0003356217,0.0032572923,0.0281777866,-0.0229470972,0.0140209626,-0.0077101705,-0.0231916495,-0.0104070324,-0.0157328248,0.0168876518,-0.0021873787,-0.0011446377,-0.0065757227,0.0181239955,-0.0383674391,0.0105089284,-0.0459213704,0.0052306885,-0.0379870273,-0.040677093,-0.0034848612,-0.0144285485,-0.0097548943,0.0261806138,-0.019971719,-0.0164528936,0.027797373,0.025039373,0.0250665452,-0.0037769647,0.0286940616,-0.0169419963,-0.0189527534,0.0043373955,-0.0270908903,-0.0020090598,-0.027579993,0.0225666836,-0.0035731716,0.0180288926,0.0416281298,-0.0605401248,-0.0054514641,0.0130291693,-0.0038414991,0.0001398954,0.0158958584,0.0117724454,0.0012227583,-0.0185723398,-0.0225395113,-0.0222949609,-0.036574062,0.0116094109,0.0262349602,0.025039373,0.0078596184,0.0557577796,-0.0033439044,0.0065927054,0.0124449627,0.0325253718,-0.0082875844,0.0186266862,-0.0245774426,-0.0618987456,0.0070852051,-0.0242921319,0.013742445,0.0066164811,0.0623335019,-0.0110387905,-0.0042592748,0.0203249604,0.006134171,-0.0096529974,0.0492092296,0.0162898581,-0.023463374,-0.0377696455,0.0039875507,-0.0079207569,0.0094695836,-0.0514373668,0.0034542922,-0.0074248603,-0.0046736542,-0.0163170304,-0.0087563079,0.0031791716,-0.0106583769,0.0135658244,-0.0107263075,-0.0385848172,-0.0277294423,0.0391826108,0.0218466148,-0.0006266636,0.0009518834,0.0013976807,0.0052238954,0.0183549616,-0.0231237188,0.0010750084,-0.0548067465,-0.0228384081,-0.0148225483,-0.0049114125,0.0067795157,-0.0307319928,0.0261126831,0.0280419253,0.0409759916,0.0192516502,0.0134095829,-0.0063855159,0.0089601018,0.0331503376,-0.0388565436,-0.0168740656,0.0230150297,-0.0010325515,-0.009401653,0.0100130318,-0.0043441886,-0.0293461997,-0.0217515118,-0.0169284102,0.054317642,0.0067795157,0.0158143416,-0.007397688,-0.0107059283,-0.0375522673,-0.0116433762,0.0388021991,-0.0248491671,0.0669528097,-0.0109368945,0.003675068,0.0111067211,-0.026520269,0.007078412,0.028857097,0.0279604066,0.0077169635,-0.0036716715,-0.0267512351,0.0086272396,-0.0225123391,-0.0182598587,0.0085457219,-0.0087563079,-0.0118947215,0.0129204793,0.0021364305,-0.0656485334,-0.0402151644,0.0151757896,-0.0035595854,0.0259632356,-0.0026747838,0.0073297569,-0.013103893,0.0289386138,0.0614639856,0.0058488608,0.0175669622,0.0001100695,0.0333677158,-0.0047449819,-0.0046702577,-0.03869351,0.0049725506,0.00665724,-0.0391554385,0.026737649,0.0166159272,-0.0001776821,-0.0132261692,0.0005714697,-0.0094152391,0.0030585942,0.0395901985,0.032117784,-0.0220504086,-0.0103051355,-0.008138136,0.0213167537,0.0208548233,-0.0092861699,0.0026510081,-0.0030653873,0.013953031,-0.006443257,0.0283679925,0.0186674446,0.0034627838,-0.0102168256,0.0316015109,-0.0068949983,-0.0116705494,0.0205966849,-0.0109165143,-0.0051118094,-0.0190750305,-0.0236128215,-0.0212759953,-0.0092250323,0.0255420636,0.0075335498,0.0253110975,-0.0069459467,0.0429324023,-0.018069651,-0.0329601318,0.0213710982,0.0201619267,0.0217379257,0.0256643388,-0.0205423404,0.0060594468,-0.0295635797,0.0345904753,0.0362208188,0.0266153738,0.0457311608,0.0047076195,-0.0248899255,0.0249578562,0.0042151199,0.0013713575,0.0179066174,-0.0031570941,-0.0097345151,-0.0133076869,-0.0166430995,0.0387206823,-0.0057605505,-0.0048502749,-0.0069901017,-0.026316477,0.0393999889,0.0215477198,-0.0123091005,-0.0050472748,0.0320362672,0.0065179812,0.0437747501,-0.0302157179,-0.0058420678,-0.0314656496,-0.021248823,-0.0067998949,0.0370088182,0.0076422398,-0.0179881342,0.033720959,-0.0418726802,-0.0125672389,0.0125468588,-0.0031248268,-0.0131922038,-0.0091503086,0.0403238535,0.0055601541,-0.0027325251,0.0294277165,-0.0185315814,0.0120577561,0.0063243778,0.0055839298,0.0171865486,-0.0396717153,0.0380141996,0.0100334119,0.0352426134,0.0221726838,-0.0259768218,-0.0238573737,0.0049012229,-0.0240747537,-0.0322808214,0.0127302725,0.0133620314,0.0094627906,0.0319275782,-0.0286940616,-0.0247540623,0.0265610274,0.0207597185,-0.0127302725,0.0080973776,-0.0320634395,0.0148361344,0.0148633067,-0.0232867524,0.0101964455,0.045350749,-0.009191067,0.0160996523,-0.0190750305,-0.0049827402,0.0068848087,0.0110387905,-0.0230286159,0.0173767544,0.0192652363,0.0055907229,-0.0072686188,0.0022977667,-0.0184636507,-0.0141975833,-0.017009927,-0.0222542025,-0.0470354371,0.0082400329,-0.0189663395,0.0513015054,-0.0197135825,-0.0109776529,-0.0339926817,0.0113376873,-0.0133076869,0.0073297569,0.0156920645,0.0046023265,0.0359762684,-0.0064364639,0.0239117183,0.0053631538,-0.0027817753,0.0002759698,-0.0191022027,0.003562982,-0.0089736879,-0.0273626149,-0.018911995,-0.0105361007,0.0549426079,-0.0046125161,0.0301885456,-0.0075946879,0.0095918598,0.0302972347,0.0155562032,0.0206646156,0.0136065828,-0.0029329218,0.0167246163,-0.0093608946,-0.0013093704,0.0116297901,0.0241834428,0.0192244779,-0.0040384992,-0.0188712366,-0.0108553767,-0.0180017203,-0.028639717,-0.0164800659,0.0279060621,0.018287031,-0.010142101,0.0356501974,0.0212352369,-0.0105089284,-0.0119626522,0.0290201306,-0.0380141996,-0.0171865486,-0.0103662731,-0.0036037406,-0.0254333727,0.0221183393,0.014061721,-0.0136405481,0.0092454115,-0.021669995,0.0150127551,-0.0056111021,-0.0074792053,0.0110999281,-0.0305146128,0.0222813748,-0.0326340608,0.0119966175,-0.027579993,0.0066674296,-0.0021058617,0.0282593034,-0.0259904079,-0.0075946879,0.0197815131,-0.0013798488,0.0127438596,0.0020073615,0.0051491712,0.0180832371,-0.0202570297,-0.0056756367,-0.0189663395,-0.0054412745,-0.0305146128,0.0074112741,-0.0016456289,0.0320362672,0.0184636507,0.0026578011,0.0026272321,0.0247676503,-0.004914809,0.0302700624,0.0125604449,0.0044902405,0.0181375816,0.0724959821,-0.0383130945,0.0299711656,0.0103255147,0.0095375152,-0.0144964792,0.0085796872,-0.0224987529,-0.0300798547,-0.002219646,0.0074180672,-0.033829648,0.0173088238,0.0111271013,-0.014374204,0.0130427554,-0.0095578944,-0.0037701714,-0.0057129986,-0.02240365,-0.0001001983,-0.0013212583,0.0044596712,0.009510343,0.0136541352,-0.002428534,0.027376201,0.0808107406,0.0149448244,-0.0211944785,0.0237758569,-0.0026306286,0.0133484453,-0.0145779969,0.0186810307,0.0084302397,0.0200668238,-0.0106244115,-0.0154882725,-0.0274848901,-0.0067727226,0.005013309,0.01035948,0.0067387572,-0.0016176074,0.0116909286,-0.0178115126,0.0034984474,0.0243464764,-0.0191022027,-0.0006377024,-0.0041336026,-0.0281777866,0.0285582002,-0.0200804099,0.0021771891,0.0087019634,0.0048231022,-0.0145779969,0.0270365458,0.0317645445,-0.032552544,0.0196048915,-0.0070852051,-0.005651861,0.0186402723,0.0017373358,-0.0120713422,-0.0234905463,-0.0051253955,-0.0346719921,0.0172137208,0.0116026178,-0.0068542399,-0.033720959,0.015216548,-0.0407042652,-0.0305146128,0.0088446187,0.0028921631,-0.0089329286,0.0142247556,-0.0088446187,0.0329601318,0.005923585,0.0284766834,0.016792547,-0.0146187553,0.0037056371,-0.0338568203,-0.0132261692,0.0014639135,-0.016276272,0.013633755,-0.0350252315,0.0001683416,-0.01817834,0.0081721013,0.0276886839,-0.0037531888,0.0185995121,0.0396988876,0.0266153738,0.0371175073,0.0119558591,0.0054514641,-0.0320634395,-0.0200668238,0.023680754,-0.0302157179,0.0081585152,-0.036574062,-0.0305961315,-0.0104342047,0.0174990296,0.0219553057,0.0147682037,-0.0149855828,-0.00908917,0.0054888264,0.0091163423,0.0142926862,0.001005379,-0.0231644772,-0.0196728222,-0.0128661348,-0.0383402668,0.0307048205,-0.0006202951,-0.0255013052,0.0494809523,-0.0080769984,-0.0034254217,-0.0161539968,-0.0430410951,-0.0332590267,-0.0099111358,-0.0321449563,0.0180424787,0.0314384736,0.0028259305,0.0150263412,0.0163306165,0.0094288252,-0.0262077861,-0.0167110302,-0.0183549616,0.0003290409,-0.012791411,-0.0242513735,-0.0097141359,0.0068882052,0.022308547,0.0318732336,-0.0417911634,0.0308678541,-0.004857068,0.0103051355,0.0082264468,0.0301613715,-0.0004126809,0.0106312046,-0.0198358577,-0.0140481349,-0.0158007555,0.0190886166,0.0233139247,-0.0221183393,0.0222949609,-0.0279060621,0.0118947215,0.0055227918,-0.0194010995,0.0160860643,0.0199037883,-0.0024557062,-0.0261806138,-0.0326612331,0.0213303398,0.0236943401,0.0290744752,0.0028666889,-0.0383402668,0.0215341337,-0.0061409641,-0.0138035826,0.0043475851,-0.0132193761,0.0114463763,-0.0133756176,-0.0288027525,0.0088038603,-0.0041607749,0.0070036878,-0.0010546291,-0.0311667509,0.0261126831,0.0166159272,-0.0192924086,0.0079071708,-0.0070512397,0.033720959,-0.0133416522,-0.0156241339,0.0295364074,0.033394888,-0.0033625853,0.0173767544,0.0152844796,0.0017729995,0.0261806138,0.0227568913,0.0194010995,-0.0323079936,-0.0155018587,-0.0202434435,-0.0069629294,-0.0158822723,0.0119354799,0.000159744,0.0523612276,-0.0115414802,0.0027902666,0.0114599625,-0.0039332062,-0.0559208132,0.0266153738,-0.0028157406,-0.019971719,-0.0376881287,-0.016058892,0.014374204,-0.0080905845,0.0117928246,0.0211129598,0.0156648923,0.0028921631,0.0005200969,-0.0022739908,-0.0034305165,0.0019733962,0.0077781016,-0.0004319988,-0.000025713,0.0752675682,0.0349165425,-0.0563555732,0.0102100316,-0.0188304782,0.0056688436,-0.0328242667,0.001276254,0.0187625475,0.0235992353,-0.0267240629,-0.0007255882,0.0034950508,0.0018782926,-0.0178658571,0.0211537201,-0.0155833755,0.0009034825,0.0191429611,0.0059439642,0.0016719522,0.0231644772,-0.005597516,-0.0221319254,-0.0173224099,0.0078799985,-0.0172137208,0.0367370956,0.0297809578,0.0122751351,0.0133959968,0.001603172,0.0007778102,-0.0370088182,0.032009095,-0.0033252235,-0.0343459249,-0.0489646792,0.0282593034,0.0176348928,0.0172816515,0.0021924737,0.0298624765,-0.0208955817,-0.0291831661,0.0121800313,-0.0205966849,-0.0047857403,0.0034916543,0.0389108881,-0.0349980593,-0.0610292256,0.0577685386,0.0239253044,0.0160181336,-0.0098567912,-0.0093201362,-0.0486929528,0.005862447,0.0088242395,0.0033693786,0.0053699468,-0.0226074439,-0.0097820666,-0.0228655804,-0.0479049534,-0.0100605842,-0.0029617925,-0.0130291693,-0.0044155163,-0.0211673062,-0.0151214451,0.0135182729,0.0138986865,0.0222270284,-0.0043373955,-0.0083215497,0.0252975114,-0.0065757227,-0.0194826163,0.0376337841,0.0165344104,-0.0126487557,0.0079886876,-0.0006576572,-0.016276272,-0.0128797209,0.0471984707,0.0464376435,-0.0063277744,0.0152573064,-0.0036920509,0.0163713749,0.0152573064,0.0231780633,-0.0005150021,-0.0233410988,-0.0080090668,0.0001106002,0.023680754,0.0356230251,-0.0114803426,-0.0130291693,0.0360577852,0.006287016,0.0046668611,-0.0157192368,-0.0045276023,0.0164664797,0.0063311709,-0.0243328903,0.0112901349,-0.0079071708,0.0103866523,0.0130563416,0.0067659295,0.0019326375,0.0027410167,-0.0423346125,0.002533827,0.0111814458,-0.0075267567,-0.0045072231,-0.0096801706,0.0340741985,-0.0115958247,0.0177299958,0.0130767208,0.0662463307,-0.016588755,0.020501582,0.0116297901,0.0235992353,-0.0154203409,0.0274033733,0.0060628434,-0.0288299248,-0.0230150297,0.0251888223,0.0170778576,0.0078732055,-0.0393728167,0.0133416522,0.0295364074,-0.0077237566,0.017974548,0.0169963408,-0.0339383371,0.0137288589,0.0186674446,-0.0050438782,-0.021765098,-0.0360577852,0.0117452731,-0.0329601318,0.0020192496,-0.0189935137,-0.0052103093,-0.0513830222,0.0073161707,0.006185119,-0.0164393056,-0.0156513061,0.0177707542,0.0145100653,0.0121460659,0.0056144986,0.0217107534,0.0141296517,0.0103187216,0.0338839926,-0.0166023411],"103":[0.0053194575,0.003946228,0.0309627131,-0.0010570254,0.049262803,0.0408499651,-0.0464296155,-0.014368318,-0.0134793324,0.0147441486,0.0515756123,-0.0431338623,-0.0013804571,-0.0270164851,0.0436542444,0.0681121871,0.000736304,-0.020540623,-0.0604799204,0.0040943925,0.0034348809,-0.0104799103,0.0391731821,0.0074082119,-0.0152211655,-0.0293003824,-0.0501879267,0.0557675771,0.0134648774,-0.0615206845,0.0366580002,-0.0438566171,-0.0333044305,0.0424111113,0.0363399908,0.0129011301,0.0081960121,-0.0175050627,0.0201503374,0.0174906086,-0.0052905474,-0.0140430788,0.0030427875,0.0162474737,-0.0269586649,-0.000102484,-0.0583694838,0.0061144852,0.0391153619,0.02425557,-0.0269152988,0.003718561,0.0035812382,-0.0558832176,0.020800814,-0.0321191177,0.0252385139,0.0674183443,-0.0163920242,-0.0133492369,0.0060964166,-0.0422087386,0.0363689028,0.0163920242,-0.0045352713,0.0027500729,-0.0252096038,0.0314252749,-0.041832909,0.0146429641,0.0605377406,0.0145056406,0.0038992492,0.009655972,0.0224197805,-0.0481931306,-0.0489447936,0.0077984985,-0.0153946262,-0.0239086486,-0.0213790163,0.0072853444,-0.0313963629,0.0070106983,-0.0044304724,-0.0272043999,-0.0096848821,-0.0492338948,-0.0181410853,0.0459381416,-0.0156837273,0.0392888188,0.0032090207,0.0046003191,0.0262070019,0.0520670824,0.0227088798,-0.0042389426,0.0178664401,0.0419774614,-0.0092078652,-0.0483665913,-0.0095692417,-0.025758896,-0.0181410853,-0.0179098044,0.0387684405,0.0253396984,0.0316565558,-0.0532813072,-0.0682856441,-0.0337669924,-0.0263226423,-0.0160161927,-0.0281439777,0.0230124369,-0.0422954708,-0.0077045406,0.0117953196,-0.0407921448,-0.0053339126,0.0469789058,0.0066312533,0.0185891911,0.0273344964,-0.0104365451,-0.0103136767,-0.0197022296,-0.0335068032,-0.0483665913,0.0467765369,-0.0305579714,0.0657415614,-0.0438566171,-0.0033318885,-0.041832909,-0.0264816489,-0.0164064802,-0.0327551402,-0.0135949729,-0.009901708,-0.0146357361,-0.0087525314,-0.0138117988,-0.0081381919,-0.0161029231,-0.0305001512,-0.0203816183,-0.0063276971,-0.0149320643,0.0256287996,0.0059843897,-0.0670136064,0.0072997995,0.063891314,0.0222174097,0.0544666201,0.058456216,-0.0313096344,-0.0444348194,-0.0095041944,0.0091066808,-0.0278837886,-0.0156548172,-0.0770743191,-0.0159150083,-0.0085067954,-0.0502168387,-0.0903151408,-0.0185458269,-0.0411968865,-0.0429604016,0.015105525,0.0312229041,0.0244723968,-0.010646143,-0.0007990931,-0.0106750531,-0.0223330501,-0.0294882972,-0.052471824,-0.0141587192,-0.0345764756,0.0152645307,-0.0065878881,0.0153223509,-0.0471812785,0.0262792781,-0.0044413134,0.0087019391,-0.0439433455,0.037901137,0.023258172,0.039375551,0.0398092009,-0.0394044593,0.0033192404,0.0244723968,-0.0022658289,0.0080008693,0.0372940227,0.0177797098,0.0928592309,-0.0148742441,0.0153657161,0.0112387994,0.0058795908,0.016825676,-0.0505348481,0.0069058994,0.0374096632,0.0081526469,0.0460248739,0.0227522459,-0.0332755223,0.0025802262,-0.0513443314,-0.01783753,0.0501011983,0.0190806631,-0.0348077565,0.0844753012,-0.0031114491,0.0016858199,-0.0053519816,0.0671870634,0.0273055863,-0.0293726586,0.0622723475,-0.0021610297,0.0081165098,-0.0354437791,-0.0320323855,-0.0285631754,0.0126843043,0.0197311398,0.0046509118,-0.0230558012,0.0167534016,-0.0041305302,-0.0044232449,0.0276525076,-0.0119687794,0.0133853741,0.0001396945,0.0177218895,-0.0236773696,-0.0697311535,0.046313975,0.0165510308,0.0553628355,-0.0157126375,-0.0176640693,-0.0184012763,0.013609428,-0.0424978398,-0.0093524158,0.0010868389,0.0096993372,-0.0266551077,0.0056808339,0.0277826022,0.000615243,-0.0198467802,0.0089910403,-0.0093090506,0.0235761832,-0.0360219814,0.0020833339,-0.016825676,0.0297773983,0.0199479666,0.0161029231,-0.0465741642,-0.0021772915,-0.0210754592,0.025021689,-0.0185024608,-0.0124168862,0.0150477048,-0.0033987432,-0.0325527675,0.0170280468,-0.0098366598,-0.0045750225,-0.025484249,0.02081527,-0.0053953468,-0.0132408245,-0.0006414428,-0.005691675,0.007057677,0.0281150676,0.0010091431,0.01978896,0.0074660322,-0.0056121722,0.0085573886,-0.0350390375,-0.0431338623,0.0118025467,0.0017065991,-0.0242266599,-0.0090705426,-0.0032523859,0.023995379,-0.0218849424,0.0358196087,0.0150621599,-0.0373229347,-0.0233882684,0.001070577,0.0710610151,0.0146574192,-0.0524429157,-0.0113761229,0.0505348481,-0.0005041198,-0.0090560876,-0.0627349094,0.0067541213,-0.0498699173,0.0347210243,-0.0167389456,0.0138479359,-0.0187481977,0.0256866198,-0.0031457799,0.0160595588,-0.0278548785,-0.0063240835,0.0099233901,0.0287800003,-0.0163197499,0.0104799103,-0.008918765,-0.0014924837,-0.0243423004,-0.0066023432,-0.0029072715,-0.0138551639,-0.0497542769,-0.0385371596,0.0042425566,0.0662619397,-0.0096053798,-0.0107184183,-0.0209453646,-0.0221884996,0.0213501062,0.0024519376,0.0010055293,0.0002394117,-0.0301532298,-0.0009133784,-0.031193994,0.0120121446,-0.015596997,0.0091355899,0.0023128076,0.0150332497,0.0243423004,0.0415727198,-0.0182711799,0.0171436872,0.0483954996,-0.0620988868,0.0221017692,-0.0189505685,-0.0199913308,0.0366580002,0.0145923709,-0.0140069416,0.0147152394,-0.0555652045,-0.0128505379,0.057155259,0.013363692,0.0047268006,0.0576178208,0.0532813072,0.059381336,-0.0085718436,-0.0089838123,-0.0058579082,0.0561144948,-0.0309048928,0.0039534555,-0.0795605853,-0.026727384,0.0226655155,-0.0258889906,-0.0274935011,-0.0434518754,-0.0043798797,-0.009655972,0.0254119746,0.0253686085,0.0603642799,-0.0239086486,0.0305579714,-0.002217043,-0.0416594483,0.0024121862,0.0241977498,-0.0208730903,0.0086224359,0.0018113982,-0.0155680869,-0.0258022603,0.0118314568,-0.026712928,0.0384793393,-0.0133926021,0.016594395,-0.0165654849,-0.007805726,0.0271465797,-0.0100534856,0.0666088611,-0.0226944257,-0.0261636376,-0.0017436402,-0.0295172073,-0.0404452235,0.0046075466,0.0291702878,-0.0297773983,-0.0323214866,-0.0514021516,-0.034374103,0.0075961277,0.0357039683,-0.0146429641,-0.0306447018,0.0216247514,-0.002049003,-0.0043654246,0.015336806,0.0134576494,0.0026037155,0.000828455,-0.0178953502,0.0310205333,-0.030702522,-0.0459670536,-0.0381613262,-0.0206707194,-0.0141370371,0.005832612,0.0273634065,-0.0059590936,-0.038855169,0.0543220714,-0.0594969764,-0.0173605122,0.0567216091,-0.0112677095,0.0332466103,0.0105883228,-0.0294304788,0.0080731446,-0.0124963894,-0.0390575416,-0.0119398693,-0.039375551,0.0273055863,-0.0169557706,0.0435675159,-0.0370338336,0.0186614674,0.0231858976,-0.0446950085,-0.0280427933,-0.0340271816,-0.0078274086,0.0216102973,0.0176929794,-0.0194564946,0.0050556529,-0.0092078652,-0.0111159319,-0.0678809062,0.0498120971,0.0495808162,0.0204972588,-0.0294449329,0.0265972894,-0.0363110825,-0.0125686647,-0.0009102163,0.0142020844,0.0813530087,-0.017577339,0.0088898549,-0.0063602212,-0.0709453747,-0.0420930982,0.003841429,0.0142888147,0.0466608964,0.0152211655,-0.0130456807,0.0434229635,0.0204683486,0.0033156266,-0.020049151,-0.0041738953,0.022781156,-0.0530500263,0.0100245755,0.0280572474,0.0050086742,0.0350101255,-0.0250795092,0.0100318035,0.0120699648,0.0198612362,-0.0086441189,-0.0228100661,-0.0153078958,-0.0392599106,0.0172304176,0.0164353903,0.0010028189,-0.0370338336,-0.0392020904,-0.0059663211,-0.0345475636,-0.0040474134,-0.0119543243,-0.0127276694,0.0038233602,0.0168401301,-0.0684591085,0.028953461,-0.0225354191,-0.0566926971,-0.033420071,0.0520959944,-0.0079864142,0.0641225949,0.0152067104,0.0337959006,0.001366002,-0.0010985837,-0.0168979503,-0.0074732597,0.0012657201,0.0483954996,0.0226944257,-0.0602486394,0.0203960724,-0.0105377296,-0.0020742994,0.0288522765,-0.0088681718,0.0036697753,0.012395204,0.0170569569,0.0226655155,-0.0165799409,0.022506509,0.0086224359,-0.0105015924,0.0391442701,0.009916163,-0.0268719345,-0.0657993779,0.0363399908,0.0026055225,-0.0037474711,-0.0158138219,-0.0029994224,0.0218993984,0.0088464897,-0.0188493822,-0.017562883,-0.008665801,0.0080514615,-0.0196877755,-0.0290546473,-0.023272628,0.0168979503,-0.016334204,0.00817433,0.0351546779,0.0110002914,0.0497253649,-0.0173894223,0.0083333356,0.0012702374,-0.0151922554,0.0258745365,-0.0101257609,0.002610943,0.0139346663,-0.0120049175,-0.0125469817,0.0369760133,0.0299797691,0.0157560017,0.0032035999,-0.0018881906,0.012619257,0.0102052642,0.0101980362,0.0145056406,0.0155247217,-0.0290257372,0.0027265835,-0.0077551333,-0.0168545861,-0.0087453043,-0.0168690402,0.0025332472,0.0305579714,0.0086947111,0.0197745059,0.007921366,-0.0384793393,-0.0439722575,-0.0323214866,-0.0395200998,0.0158138219,-0.0039281594,-0.0124457963,-0.0330731496,-0.000713718,0.0218126681,-0.0047701658,-0.0028873959,0.0055688075,0.0151922554,-0.0079936413,0.0090994528,0.013363692,0.0300954096,0.0164932106,-0.044810649,0.0321769379,0.00519659,0.007914139,-0.0286065396,0.0078418637,-0.0076539479,-0.0288956407,0.0062373532,0.0070938147,0.0131830042,-0.0230268911,-0.0369760133,0.0436542444,0.0301243197,0.0256866198,-0.0154524464,-0.0268141143,0.0013840708,0.0121711502,0.0019947966,-0.0520381741,-0.0055109872,-0.023272628,-0.0005267058,-0.0201358814,0.0167389456,0.061636325,-0.0048894202,0.0474414676,0.0490026139,-0.0266406536,0.0330442414,0.0274212267,0.0273778606,0.0147802867,-0.0139274392,0.0244579408,-0.0260479972,0.0290980116,0.0385949798,-0.0003272713,0.0196299553,-0.0518647134,0.0171870515,-0.0176640693,0.0156981815,0.0042028055,-0.0010443772,0.0103425868,0.0091645001,-0.0076394929,0.0053736642,-0.0007765071,-0.0146646462,-0.0217114817,-0.0555652045,0.0077117682,0.0203237981,-0.0262070019,-0.0644116923,0.0056121722,0.0074949423,-0.0445793681,-0.0018954182,-0.0345475636,-0.0065192268,0.015596997,-0.0455912203,0.0224631447,0.0102269463,-0.0258456264,0.0004544306,-0.0444059074,0.0295894835,-0.0201937016,-0.0116218589,-0.00989448,0.0241399296,-0.029213652,0.0024591649,-0.0156403612,0.0309338029,-0.0434518754,-0.0313385427,0.0302399602,-0.0115206735,-0.0023399109,0.0714079365,-0.0234894529,-0.029228108,0.0053772777,0.004705118,0.0185024608,-0.0186759215,0.0204538926,-0.0161318332,-0.0481353104,-0.0142960427,-0.0312807225,-0.0090199504,-0.0389708094,-0.0376120359,0.0028729409,-0.0126770772,0.0238941945,-0.0299797691,-0.0235761832,0.0495808162,-0.0024392894,-0.0027464591,-0.0166666713,0.0142960427,0.0312229041,0.0124168862,0.00303556,0.0068336241,0.0056627649,0.0332466103,0.0090199504,0.0119470973,0.0189650226,0.0355883278,-0.0078924559,0.0171725973,0.0103353597,0.0352124982,-0.0166522153,0.0109207891,0.0148164239,-0.0241254754,-0.0221740436,-0.0452153906,0.0154813565,-0.0133492369,0.0203960724,-0.0092440033,-0.000896213,-0.0163775701,0.0102052642,0.0180399008,0.0235906392,-0.0080153244,0.0001697339,-0.0086224359,0.0155536318,-0.0070974287,0.0430182219,0.0026832183,-0.0153078958,-0.0441168062,-0.011874822,-0.0046256152,-0.0392599106,-0.0046834354,0.0317721963,-0.0183868203,0.011137615,-0.089794755,0.0122361984,0.0230268911,-0.0312807225,-0.0264527388,0.0290835574,0.0241543856,0.0317721963,0.0449262895,-0.0358485207,0.0323793069,-0.0313963629,-0.0041269162,-0.0205839891,0.020555079,-0.0035288385,0.0001850924,0.0197455958,0.0096921101,0.0285053551,-0.0224053245,-0.0204972588,-0.0051821349,0.0597282574,0.0070865871,-0.0019044526,0.0007376592,0.0280138832,0.0416016281,0.0037221748,0.015842732,-0.0107545555,-0.0409366973,-0.004567795,-0.0075238524,0.0094969664,0.0027464591,0.0305579714,0.0129661784,-0.0003071698,-0.0145779159,-0.019803416,0.0524140038,-0.0417172685,0.0370049216,-0.0095836967,-0.014115354,0.018097721,0.0074515771,0.0227377899,0.0402717628,-0.006558978,-0.0205261689,-0.0037944501,-0.0143394079,0.0288378205,-0.0577334613,0.0046147741,-0.0086874841,-0.0005271575,-0.0196299553,0.0207429938,0.0241543856,-0.0334778912,-0.0280717034,0.014368318,-0.0003037819,0.0708297342,-0.012135013,0.0022260775,0.0343162827,0.0451286584,0.0193697643,-0.0137395235,0.0221162234,0.0067288247,0.0340560935,-0.0221595895,0.003826974,-0.0397802927,0.0106822802,0.00817433,0.0042606252,0.010154671,0.000423036,-0.0165654849,-0.028967917,0.0110725667,0.0179098044,-0.0060132998,0.0266695637,-0.0168979503,-0.0080803717,-0.0168545861,0.0095620146,0.0287944563,0.0033174336,0.001017274,0.0268285684,0.0275368672,0.0189939328,0.0308759827,0.0215669312,0.0273344964,-0.023272628,-0.0046472978,-0.0004370394,-0.0078129536,-0.0365134515,-0.00014376,-0.0019008388,0.0100534856,0.0342006423,0.0480774902,0.0005985294,0.0179387145,0.0015665658,-0.0323793069,0.0249783229,-0.0236918237,0.0469789058,-0.0193553101,-0.061405044,0.0316276439,-0.0129661784,0.0114339432,0.0164932106,-0.0122434255,-0.0015313317,-0.035646148,0.0143104978,0.0725065246,0.0072961855,0.0402139425,0.0078635458,-0.0115712658,0.0253541544,-0.0028277687,-0.0021754848,0.0127348974,-0.0031764968,-0.0230847113,0.0056193997,0.0038594978,0.0350679457,0.007914139,-0.0303845108,0.0140503068,-0.0214946568,0.0283318944,-0.0088320347,0.0094391461,-0.0357328802,0.06383349,-0.0119687794,0.044058986,-0.0308181625,-0.0597860776,-0.0213934705,0.0159150083,0.0089693572,0.0575310923,0.0015367523,-0.0006292463,0.0042461702,-0.0574443601,-0.0289968271,-0.0362532623,0.0089549022,0.0100101205,0.0148164239,-0.0147296935,0.0047195731,-0.0167534016,0.0281006135,0.0157704577,0.0334778912,0.0063421521,0.0028910097,0.0215958413,-0.0115784938,0.0035071559,0.0046256152,0.0428736731,0.0453888513,0.0170569569,-0.0291558318,0.0112243444,-0.0346342959,0.0100679407,0.022029493,0.0373807549,0.0006608667,0.0122578805,-0.0038920217,0.0108051486,0.0154958116,-0.0010470876,-0.0358485207,0.0094608292,-0.0007805726,0.0099523002,0.0113761229,-0.0172593277,-0.0211766455,0.0289823711,-0.0129878605,-0.0149609745,-0.0461116023,0.0241543856,0.0116146309,0.0041196886,0.0152789857,-0.0140358517,-0.0345186554,-0.0155680869,-0.0015846347,0.0223330501,0.0061072577,-0.0041883504,-0.0305290613,-0.0102992216,-0.0222318638,-0.0069095129,-0.0024609719,0.050014466,-0.0080948267,-0.0180399008,-0.0324660391,0.029690668,-0.0040185032,0.022029493,0.0105015924,0.0184590966,0.0175484288,0.0071444074,0.0130818188,-0.0033102061,-0.003946228,0.0221451335,-0.0158282779,0.0378433168,0.0036535135,-0.0062048296,-0.0091934102,-0.0027681417,0.0434807837,0.0087163942,0.0407054164,-0.0273923166,-0.0350968577,0.002536861,0.0299219489,0.00817433,0.0197022296,0.0204249825,-0.0085212504,0.0186903775,0.0003663451,-0.0131830042,-0.0072094551,0.0136744753,0.0137828887,0.0018213361,-0.0045641814,-0.0211477354,-0.0159583725,-0.0102775395,0.0196733195,0.0101113059,-0.0269297548,0.0161318332,0.0065915021,-0.0218993984,0.0222463198,0.0134793324,-0.0469789058,-0.0081165098,-0.0259612668,-0.0291269217,-0.0114339432,0.0148742441,-0.0095041944,0.0248626824,0.0291558318,0.0017156336,-0.0187337417,-0.010884651,0.0328707807,-0.0352992266,0.0072600478,0.0085501606,-0.0419485494,0.0078852288,-0.0237207338,0.0111882072,-0.0055832625,0.0073829158,0.0195287708,-0.0174761526,0.0132263694,-0.0196444094,0.0109135611,0.0470078178,0.0115712658,0.0060241413,-0.0053050024,-0.0308759827,-0.0174183324,0.0359063409,-0.0215669312,0.0287221801,0.0300086793,0.05695289,0.001753578,-0.0052941614,0.0314541832,0.0271321256,0.0203382522,0.0237351898,0.0132841896,0.0123229288,0.0086079808,0.0381902382,-0.0056555374,-0.0023923104,0.0205984432,-0.0349812172,-0.016594395,0.0089838123,0.0047015045,-0.0145706888,0.0038052914,0.0140069416,-0.0147152394,0.0101257609,0.0127638076,-0.0000260727,0.0074732597,0.0034692115,-0.0052724788,-0.0055507384,-0.0221884996,0.0107979206,0.0061108717,-0.0270164851,-0.0034312671,-0.0048568961,0.0023489452,-0.0043834932,0.0648742542,0.0142093124,0.0023742416,-0.0012738511,-0.0101113059,-0.0048677376,0.0095909247,-0.0147513766,-0.0068372376,0.0154958116,0.0068480792,-0.0028928164,-0.0149754295,-0.0152645307,0.006938423,-0.0216825716,-0.0239664689,0.0059085009,0.0193842202,-0.0008334239,0.0132480515,-0.0087308493,0.016074013,-0.0185024608,-0.0092873685,-0.0001636357,0.0058109295,-0.0179531705,-0.017823074,0.0264816489,-0.0144405933,-0.0112966197,0.0323214866,0.0461983345,0.0149465194,0.0202226117,-0.0204394385,-0.0392020904,0.0054134154,0.0081020547,-0.0152067104,-0.0096487449,-0.0065083853,-0.0251951497,-0.0297195781,0.0153801711,-0.0038089051,0.0004397497,-0.0287077259,-0.0567505173,-0.0399537534,-0.0358485207,0.0140719889,-0.0154090812,0.0089404471,0.0158860981,0.009655972,0.0382480584,-0.0224053245,0.0223908704,-0.0154813565,0.0100173485,-0.0006247291,0.034923397,-0.0290691014,-0.0220005829,0.0180254448,-0.029950859,0.0168690402,-0.0221162234,0.0096921101,0.0309338029,0.026235912,0.0070721321,0.006302401,0.021538021,-0.00084291,0.0370627418,0.0303266905,-0.0519225337,-0.034923397,0.0037294023,-0.0136455651,0.0130095435,-0.0212055556,0.0091861831,0.0191240292,-0.0133275539,-0.036397811,-0.0116652241,0.010140216,0.0001751545,0.0120555097,0.0056230137,-0.0157126375,-0.0024103792,-0.0553339235,-0.012633712,-0.0066276398,-0.0258022603,0.0552761033,-0.0050628805,-0.0271899458,0.0124963894,0.0047195731,-0.024270026,-0.0198901463,-0.0198323261,0.0060891891,0.005951866,-0.0125686647,0.0196877755,0.018560281,0.0381902382,0.0169702265,-0.0009404816,-0.0074009844,0.0056663789,-0.0104220901,-0.0367736407,0.001693951,0.0045172027,-0.0093524158,-0.0090560876,0.0232437178,0.0147586036,-0.0035740107,-0.0118459119,-0.004462996,-0.0039787521,0.0110219745,0.0056446963,0.0324949473,-0.0088898549,0.0321480259,0.0081526469,-0.0118242297,-0.0502168387,0.019311944,-0.0087669864,-0.0446082801,0.0019695002,-0.0193697643,0.0164064802,0.0413125269,-0.0181410853,0.0054242569,0.0105883228,0.0149898846,0.0065409094,-0.0204683486,0.0146357361,0.0284908991,0.0317432843,0.0006468634,-0.0179820806,-0.0119254142,-0.0058470671,-0.0049074888,-0.0050628805,-0.0166233052,-0.0117953196,-0.017577339,-0.005326685,-0.0023037733,-0.022781156,0.0108774239,-0.009395781,-0.0110364296,0.0070721321,0.0110725667,-0.0105738677,-0.0054784631,0.0075383075,0.0434807837,-0.0143104978,0.0020869477,0.0106678251,-0.0152645307,-0.0197745059,-0.0112387994,0.0276814178,0.0311650839,0.034142822,0.0081815571,0.017346058,-0.0392599106,0.0048099174,-0.0034890873,-0.0222607739,0.0048930338,-0.0299797691,-0.0259612668,0.0285342652,0.0412257984,0.0052869339,0.0155102666,-0.0031692693,-0.0385660678,0.0124241142,-0.0263515525,-0.012864993,-0.0262792781,0.0084056109,-0.006815555,0.0086947111,-0.0188204721,0.0021321196,0.0139491213,0.0184880067,0.0116652241,-0.0144911855,-0.019803416,0.0058868183,0.0138407089,-0.0042895353,-0.0026958664,0.0548135415,0.0186614674,-0.0408210568,-0.0065119993,-0.014353863,0.0346632041,-0.0059265699,0.0331598818,0.0302688703,0.0503613874,-0.0026344324,-0.0023471385,-0.0193986744,0.0031060285,-0.0091789551,-0.012395204,0.0211621895,-0.0231280774,-0.0186325572,-0.0017337024,-0.0349812172,0.0286643598,-0.0139057562,-0.0179965347,-0.0202659778,0.014122582,0.0038811804,0.0027536866,-0.0136961583,0.0186325572,0.0216392074,0.0005461298,-0.0164353903,-0.0117953196,0.0174616985,-0.0028223481,-0.0218415782,-0.0311072636,0.0304712411,0.0314252749,0.0014048499,0.012373521,-0.0031891449,0.0214223806,0.0166377611,0.0252529681,-0.0336513519,-0.0092440033,0.0113978051,0.0034041638,-0.0323793069,-0.0129806334,0.0149031542,-0.0129300402,0.0108412858,0.0021266988,0.0112966197,-0.0069203544,-0.0051459973,0.0009224127,-0.0005660055,0.0046039326,-0.0214802008,-0.0256721657,-0.0075093973,-0.01509107,-0.0014211119,0.028476445,0.0004639167,-0.0043834932,-0.0014283394,0.027479047,0.0168979503,-0.0066312533,0.0379878655,0.0045533404,0.0027717554,0.006074734,0.0081454199,-0.0103714969,0.0167967658,0.0140358517,-0.0129372682,0.0154813565,-0.0181844514,0.003599307,-0.0110147465,0.0265683793,0.0268574785,0.0088898549,-0.00817433,-0.0105160475,0.0025729986,0.023258172,-0.0087163942,-0.0179965347,-0.0353859589,-0.0049400125,0.0056699924,0.0185891911,0.0053664367,0.0119543243,0.0113038477,0.0240965653,0.0085862987,0.0068914443,-0.0125252996,0.0301532298,-0.0041449852,-0.00051993,-0.0021790985,0.0279126987,-0.0095692417,0.0088826269,-0.0046436843,0.0392310023,-0.0225932393,0.0192107596,-0.0083333356,-0.0036697753,0.0305579714,-0.0015765037,-0.0106244599,-0.0133998292,0.0273923166,-0.0102486294,-0.0132769616,-0.0257733501,0.0162474737,0.0238219202,0.0259468108,-0.0108701959,0.0170425009,0.0103353597,0.0248626824,-0.0028241549,0.0218849424,-0.030702522,0.0058940458,0.0217548478,0.0070215394,-0.0042317151,0.0160451028,0.0240531992,-0.0026434669,0.0211043693,-0.0151344351,-0.0542064309,0.0039534555,0.0204828028,0.0137539785,-0.0186036471,-0.0161896534,0.0154235363,0.0085140234,0.0197311398,-0.0155536318,-0.0398092009,-0.04255566,-0.0121639231,0.0170135908,-0.0330731496,0.0097427024,0.0350101255,0.0136672482,0.0287944563,0.0278115124,0.0224920548,0.0181989055,-0.00494724,0.0118603669,-0.002291125],"104":[0.0081115216,0.0362649895,0.041104205,-0.0071021365,0.0490626805,0.0341660492,0.0009046205,-0.0073353518,-0.035886012,0.0244147331,0.0376934335,-0.0532897078,-0.0102250362,-0.0223449469,0.060402777,0.0485087931,0.0001210488,-0.0088767596,-0.0634928793,-0.0255662333,0.049120985,0.0077398345,0.061627157,-0.0107497703,-0.0093067503,-0.0254496261,-0.0362649895,0.0592367016,0.0273299236,-0.07241337,0.0186426528,-0.052590061,-0.0505202748,0.0363524444,0.0336996205,0.0444566756,0.0153193334,-0.0146779912,-0.0052764975,0.0164271072,-0.0014175121,0.0090006553,-0.0011997836,0.0132203959,-0.0710723773,-0.0087455763,-0.0669328049,0.0049303183,0.0079657622,0.0112380646,-0.0330291241,0.0053493772,-0.0031046795,-0.029020736,0.0423285887,-0.0306095146,0.0019969065,0.0547764562,0.0000610938,-0.0115077198,-0.0235693268,-0.0240649097,0.036206685,0.0095691178,-0.0083155846,0.0205666795,-0.0274902601,0.0495291129,-0.0378391929,0.0051926859,0.0734045357,0.0089496393,0.015989827,0.0173453912,0.0346907824,-0.0423577391,-0.0174765754,0.0165291391,-0.0241086371,-0.0243855808,-0.0173016638,-0.0058558919,-0.008308297,-0.0026491806,-0.032416936,-0.0405794717,-0.0180013105,-0.0534937717,-0.0176660623,0.0388886593,-0.0279129632,0.0514531396,0.006209359,0.0079220338,0.0195463616,0.0533480123,0.0102031715,-0.0292247999,0.0022446979,0.0212517492,-0.0320379585,-0.0386845954,0.0016151986,-0.0309010353,-0.0031921351,0.0006395202,0.0206541345,0.0173453912,0.0108007863,-0.0204354953,-0.0594990663,-0.0067814654,-0.0318921991,-0.0278546587,-0.0139054656,-0.0050141299,-0.0406086221,-0.0001352831,0.0033069209,-0.0474010222,-0.0206978619,0.0442817658,0.0278983861,0.0005989809,0.0055352207,-0.0035875081,0.0003154329,-0.0272133164,-0.0299973246,-0.0366148092,0.0479549058,-0.0341077447,0.0527358204,-0.0321545675,-0.0006208448,-0.0191382356,-0.0283210892,-0.0124041419,-0.0313966163,0.0091391271,0.0055024247,-0.034545023,0.0237588137,0.0075503471,-0.0106696021,-0.00499591,-0.0350989103,-0.0068251933,-0.0080605056,-0.0158877969,0.0042707562,0.014867479,-0.0804592967,-0.0193714499,0.0750370398,0.0361775309,0.0324752368,0.0772525892,-0.035886012,-0.045127172,-0.0192548428,0.0202314314,0.023583902,-0.0127029493,-0.0560882911,-0.0086726956,0.0000725951,-0.05393105,-0.0808091238,-0.0041249967,-0.0289770085,-0.0251872577,0.0091099748,0.053027343,0.0426784083,0.0041213525,0.0273445006,-0.0268197656,-0.002140844,-0.0264699422,-0.0706642494,-0.0123458374,-0.0159023721,0.0178263988,-0.0077471226,0.0178992786,-0.0148893427,0.0214558132,-0.0028277361,0.0090443827,-0.0519778728,0.0684487075,0.0306969713,0.0387137495,0.0074993311,-0.0407835357,-0.0053639533,0.0357694067,0.0080313534,0.0190799311,0.0752119496,0.015581701,0.0985917896,0.0108445138,0.0016935443,0.0219805464,0.0099480925,0.0174474232,-0.0626766235,-0.0323294774,0.0125134615,-0.0240357574,0.0316881351,0.0140658012,-0.0253475942,-0.0092557343,-0.0241815168,-0.0051562455,0.0682737976,-0.0004099489,-0.0182782542,0.0837243125,0.0088840472,-0.0036294139,-0.0341660492,0.057021156,0.0502287559,-0.0495582633,0.0556801669,-0.0188321397,-0.0182345249,-0.0468471348,-0.0233361106,0.0069709527,0.0062567308,-0.0064607942,0.0217619073,-0.0160189793,0.0484796427,-0.0289624315,0.0076596667,0.0321545675,-0.0048428625,0.0217036046,-0.0009556364,0.0239483025,-0.0419787653,-0.0509284027,0.0460891835,0.0329999737,0.0470803492,-0.0303763002,-0.0067559574,-0.0401421934,-0.0073025557,-0.0326209962,-0.033524707,0.0366731137,0.0192985702,0.000557075,-0.0114056887,0.014000209,0.0029844278,-0.0237733908,-0.0174911525,-0.0225344338,0.0480423644,-0.0413957238,0.0007766254,-0.0252018347,0.0022282999,0.0011278149,0.0096711488,-0.04101675,-0.0095545417,0.0043472801,0.014102241,-0.011842967,-0.0027311705,0.0154942451,0.014000209,-0.0070474767,0.0294871666,-0.0050323503,-0.029428862,-0.0279275384,-0.0081479615,-0.0199253373,-0.0017600472,0.0151152704,-0.0012808625,0.0219222438,0.0146415513,-0.0114202648,-0.0031957792,-0.0069636647,-0.0035947962,0.0173745435,-0.0277526267,-0.0431739911,0.0065956218,-0.0021390221,-0.0240794849,-0.0102323238,0.0144156246,0.018657228,-0.0301722363,-0.0104072355,0.0079876259,-0.0351572149,0.0152610298,-0.0107570579,0.0333789475,0.0307552759,-0.0408709906,-0.0287875198,0.0433489047,-0.0204354953,-0.0073535717,-0.0668161958,-0.025114378,-0.0689734444,0.0153193334,-0.0403754078,-0.0012917945,0.0041395724,0.0241377894,0.0073535717,0.0048610824,-0.0046533751,-0.0067377375,0.0059542796,0.0362649895,-0.0027967622,-0.0044274479,-0.0227968004,0.0124551579,-0.0249248911,-0.026353335,-0.0002687442,-0.0238462705,-0.0526483655,-0.0626766235,0.0163542274,0.0597614348,0.0081333853,-0.0046060034,-0.0046606632,0.0046497313,0.0218202118,-0.0222429149,-0.014816463,-0.014765447,-0.0341952033,0.0041104206,-0.0146998558,-0.0031921351,-0.0122292303,-0.0104582515,-0.0281316023,-0.0195463616,0.0105092665,0.0393842421,-0.019283995,0.0179284308,0.0336704664,-0.0175057277,-0.0071968799,0.0294434391,-0.0108518023,0.0341952033,0.0089933667,-0.0192548428,-0.0054732729,-0.0647755638,-0.0177097917,0.0429699309,0.0082937209,-0.0232486557,0.0492667444,0.0511907712,0.0418913066,0.0015896906,-0.0279712658,0.0245750677,0.0641342252,-0.0394716971,0.0047043911,-0.0692649633,-0.0208290461,0.0290936157,-0.0427075624,-0.0094379336,-0.035886012,-0.0188904442,0.0004714412,0.0283648167,0.0006372427,0.0613356382,-0.0115441605,0.0442817658,-0.0183219817,-0.0589160286,0.0022355879,0.0056736921,0.0107497703,0.0076232268,-0.0004475275,0.0209893826,-0.0099116527,0.0201877039,-0.0076086512,0.0538727455,-0.0101448679,0.0407543816,-0.0352738239,0.0003978781,0.0383347757,-0.0091609908,0.0357402526,-0.0369063318,-0.0261492711,-0.0023886354,-0.0152318776,-0.0184240136,0.0243418533,0.0273153484,-0.0400547385,-0.0332040377,-0.066641286,-0.0181033425,-0.003917289,0.0269072223,-0.0106696021,-0.021732755,0.0016917223,0.0020461003,-0.0092557343,0.0181324948,0.002871464,0.0353612788,-0.0105384188,-0.0012435116,0.0329708196,-0.0248811636,-0.0159023721,-0.0540768094,-0.0299098697,0.0008340182,0.0164708346,0.0184968933,-0.0022829596,-0.0305803642,0.0459142737,-0.0486254022,-0.0149257826,0.0491792895,0.0206395593,0.0443692207,0.0075066192,-0.0117700873,0.0366439633,-0.0239191502,-0.028918704,-0.0325043909,-0.0426784083,0.0050068423,0.0063259667,0.0198524576,-0.0508117974,0.0268343426,0.0279275384,-0.0432906002,-0.0298807174,-0.0174765754,-0.0062166466,0.0107716341,-0.0237733908,0.0078200027,0.0056627602,-0.0408418402,-0.008002202,-0.0452729315,0.0329708196,0.0263241827,0.0373436101,-0.0196483936,0.0137305539,-0.0132349711,-0.0228405297,0.0035255603,-0.0088913357,0.0809257254,-0.0176223349,0.0198087301,0.0001558944,-0.0626766235,-0.0188904442,0.0020734302,0.0115587357,0.0446024351,0.0097950445,-0.0032559049,0.0712472945,-0.0156691559,0.0100063961,-0.0192402676,-0.009277598,0.0122365179,-0.032300327,-0.0068324809,0.0143791847,0.011332809,0.0141969845,-0.0271258615,-0.0117700873,0.0054987809,0.029632926,-0.0003874017,-0.0289332792,-0.0142115606,-0.0500538461,0.0185114685,0.0165145621,-0.0006249443,-0.0495291129,-0.0492958948,0.0042525362,-0.0137378424,-0.0149403587,0.0107716341,-0.0298369899,0.0152318776,0.0170392971,-0.0587994233,0.0234527197,-0.0081844013,-0.0514239855,-0.0541642681,0.048800312,0.0214703884,0.0707225576,0.0276068673,0.0401130393,0.0216015726,0.0197066981,-0.0292102229,0.0021208022,-0.0031137895,0.0567879379,0.0171996318,-0.0280004181,0.0220825784,-0.0447481945,0.0050870101,0.0209310781,-0.0045331237,-0.0112234894,0.00054341,0.0043217721,0.0252455622,0.0110194255,0.0064024902,-0.0161355883,-0.0291081909,0.0359734669,0.0136941141,-0.019386027,-0.0489460714,0.0362649895,-0.0134098828,-0.0284814257,0.00105949,-0.0143718962,0.0295017418,0.0093213264,-0.0350989103,-0.028816672,-0.012506173,0.0153630618,-0.025114378,-0.0272716209,-0.0118575431,0.0481589697,-0.0285397284,0.0144885043,0.0282190572,0.0146779912,0.0453603864,-0.0153339095,0.0069928165,0.0099991085,-0.0155379735,0.035886012,-0.0169809926,0.0260763913,0.0163250752,-0.0029643858,-0.0278400835,0.0278109312,0.0123677021,-0.0067122295,0.0053639533,-0.0035219162,-0.0077762743,0.0059251278,0.0084686326,0.0247645564,0.036090076,-0.0169809926,0.0006449862,-0.0000321981,-0.0101448679,-0.0164562594,-0.019386027,-0.0050687902,0.0163688026,0.0162376184,0.0025507929,0.0237296615,-0.0440777019,-0.037227001,-0.0026054529,-0.0355653428,-0.0041067768,-0.0011250819,-0.01753488,-0.0388012044,-0.024298124,0.0164562594,-0.0240357574,0.0285980329,0.0237442385,-0.0112162009,0.0068361252,0.0173162408,0.0266011264,0.0261784233,0.0216890275,-0.0302305408,0.0165437143,0.0056372522,0.0092411581,-0.0231028963,0.0358277075,-0.0226947684,-0.0203480404,0.0278692357,0.0110777291,0.003576576,-0.0288749766,-0.038772054,0.052910734,0.0214995407,0.0200127922,-0.001476727,-0.0278692357,-0.0066065537,0.0130892117,-0.0142407129,-0.0646006539,-0.0129143,-0.0135337785,-0.0067996853,-0.023277808,0.0153630618,0.0469928943,0.0031356534,0.0506660342,0.0363232903,-0.0445732847,0.0297786854,0.0180596132,0.0327376053,0.0055497969,-0.0066284179,0.004722611,-0.0130381957,0.0093140379,0.0282482095,-0.0218930915,0.0182199497,-0.0312800109,0.0116680553,-0.027577715,0.0098169092,-0.0099408049,0.009124551,0.0207415912,0.0263824873,0.0009474374,-0.025945209,0.0048465068,-0.0058158077,-0.0015988005,-0.0327376053,0.0139856329,0.0374019109,-0.025114378,-0.0215724204,-0.0286126081,-0.0126009174,-0.0325626954,-0.0002578123,-0.030259693,-0.0009205629,0.0144374883,-0.0161501635,0.0238608457,0.0024560492,-0.0407252312,0.0177972466,-0.0389178135,0.0276360195,0.0016452614,-0.0123822782,-0.0191819631,0.027796356,-0.0190799311,0.0004709857,-0.0499372371,0.0230008643,-0.051686354,-0.050461974,0.0429407768,0.0048610824,-0.0045732073,0.0520070232,-0.0017545811,-0.02337984,0.0159752518,-0.0000175936,0.0137597062,-0.0144447759,0.0240940619,-0.016208468,-0.0543391779,-0.0201439764,-0.0297932625,-0.0042780442,-0.0326501504,-0.011179761,0.0048610824,0.0022392317,0.0132714109,-0.0239483025,-0.002527107,0.04101675,0.0179721583,-0.0299973246,-0.0229862891,0.0145686716,0.0066466378,-0.0080386419,0.0125863412,-0.0104436753,0.0127904043,0.0127102369,0.0150861181,0.0036950058,-0.0056554722,0.0496457182,-0.0195317864,0.038772054,0.0169081129,0.0163250752,-0.0236422066,0.0076232268,0.0255225059,-0.0080313534,-0.0323586315,-0.0474010222,0.0141241048,-0.0171850566,0.0283939689,-0.0209893826,0.0220242757,-0.0238316935,0.0119522866,0.0221846104,0.0387137495,0.0038516973,0.0104436753,-0.0033615807,0.0056846244,-0.0029151919,0.0216890275,-0.0093504777,-0.0071094246,-0.0386262946,-0.0057830121,-0.0015186328,-0.0313966163,-0.0007998558,0.0239774529,-0.0233506877,0.0152173024,-0.0823250189,-0.0095181018,0.0274756849,-0.0312508568,-0.0140366489,0.0065956218,0.050345365,0.0275194123,0.0469345897,-0.0362649895,0.0189050194,-0.0274465326,0.0039537293,-0.0105748586,0.0181907974,-0.0245896447,-0.0088621834,0.0431739911,0.0196046662,0.0431156904,-0.0189633239,-0.0055388645,-0.0265282467,0.0555344075,-0.0159460995,-0.0102979159,-0.0049303183,0.0455644503,0.0308427308,0.0228988323,0.014459352,-0.010873666,-0.0401421934,-0.0067596012,0.0074410276,0.0218785163,0.005130738,0.0243710037,0.0149840862,0.0153484857,-0.0313383117,-0.0316006802,0.0602278672,-0.0302888434,0.0399381295,-0.0167477783,0.0064863022,0.021222597,0.0015988005,0.025945209,0.0466139205,0.0160044041,-0.0016953663,-0.0035492461,-0.0205375273,0.0397049151,-0.0270967092,-0.0242106691,-0.0079657622,-0.0058777556,-0.0136285219,0.0020205923,0.0080750817,-0.0490626805,-0.0319213532,0.0177680943,-0.0144520644,0.0539602041,-0.0076742428,0.006176563,0.0053056492,0.0367022678,0.000548876,0.0104728267,0.0132349711,0.0019222047,0.0311342496,-0.0357694067,-0.0022082578,-0.0375185199,0.0218785163,0.0081989774,-0.0111141689,0.0291519202,-0.0034071305,0.001117794,-0.0431448407,0.0159460995,0.0177097917,-0.0097075887,0.0432906002,-0.0049521825,-0.0160627067,-0.0095472541,0.0206541345,0.0292102229,0.0208144709,-0.0086726956,0.033641316,0.0149986623,0.0393259376,0.0043472801,0.0170976017,0.0249248911,-0.0168352332,-0.0044857515,-0.0232923832,-0.0074628913,-0.0297641102,-0.0071276445,-0.0094160698,0.0221408829,0.0255662333,0.0316298343,-0.0100647006,0.018045038,-0.0162959229,-0.0237296615,0.0166748986,-0.0235984791,0.0312508568,-0.0206249822,-0.0521527827,0.034982305,0.0133734429,0.0148529029,0.0267323107,-0.0123968534,0.0039209332,-0.0019877965,-0.0007174105,0.0743957013,0.0002032663,0.0364398994,0.004026609,-0.0061619869,0.0323586315,-0.0098241968,-0.0195317864,0.0019586445,-0.023787966,-0.0072879801,-0.01692269,0.0193277225,0.0107570579,-0.0023412635,-0.0244876128,0.0099189403,-0.0350697599,0.0213100538,0.0142771527,-0.007535771,-0.0605776869,0.0631430596,-0.0114494162,0.05515543,-0.037431065,-0.0393550918,-0.0057975878,0.0255225059,0.0139929214,0.0523276962,-0.0173599683,0.0121636381,0.0234089922,-0.0325918458,-0.0370520912,-0.0307552759,-0.003266837,0.0136285219,0.0144739281,-0.0083738891,0.0131693799,-0.0198378805,0.0322711766,0.0138617381,0.0221408829,0.0133661553,-0.0026054529,0.028204482,-0.0076815309,0.0046460871,-0.0035328483,0.0571669154,0.0294142868,0.0126446448,-0.0322128721,0.0015022348,-0.0301139336,0.0343409628,0.0325335413,0.023277808,0.0044529559,0.0050432822,-0.0266157016,0.0129944682,-0.0065956218,0.0131839551,-0.0007816358,-0.0027657885,-0.0169955697,-0.0005520644,0.0174620003,-0.0284668487,-0.0264407918,0.0033907327,0.0043800757,-0.0120105911,-0.025843177,0.007951186,0.012047031,0.0127539644,0.0132203959,-0.027694324,-0.0162230432,-0.0023795255,0.0167623535,0.0127904043,0.0081916889,-0.0104509629,-0.0110340016,-0.0099699562,-0.0158294924,0.0018966967,0.0064024902,0.0619186759,0.001450308,-0.0229862891,-0.0142990164,0.0208727736,0.0222429149,0.0185843483,0.005003198,0.0051999735,0.0285543054,-0.0017737121,0.0191673879,0.0048720147,-0.001094108,0.0206687115,-0.0200273693,0.0151006943,-0.0189924762,-0.0177243669,0.0004504883,0.0056736921,0.0625600219,0.0160044041,0.0431739911,-0.0178118236,-0.0273153484,0.0080750817,0.0301139336,0.0190799311,0.0156400055,0.0132641234,0.0055279327,0.0199836399,-0.0093723424,-0.0299098697,-0.0050068423,0.0141313933,0.0074155196,0.02337984,-0.0272570439,-0.0055133565,-0.0099845324,-0.0040630489,0.0063988464,0.0121709267,-0.0326793008,0.0209456533,0.0080677941,-0.021951396,0.0127248131,-0.005360309,-0.0740458742,-0.0119231353,-0.0311342496,-0.047459323,-0.0222866423,-0.0023157557,-0.0131985312,0.0142698642,0.0162959229,-0.0085560884,-0.0164562594,-0.0228551049,0.0405794717,-0.0319213532,0.0031757373,0.0014229781,-0.022665618,0.0057866559,-0.0030755275,0.0092411581,-0.002497955,0.0198670328,0.0183802843,-0.0440193973,-0.0007456514,0.0034836545,0.0031739152,0.0395591557,0.0263679102,-0.0133005632,-0.021951396,-0.0206687115,-0.0146561274,0.0278838109,-0.000003676,0.0313383117,0.0488586165,0.0570503063,-0.021951396,-0.0110923052,0.0214558132,0.0190362036,0.0270967092,0.0397049151,0.0236422066,0.0140876649,0.0327959098,0.0365565084,0.014408336,0.0070438324,0.0291519202,-0.0091901422,-0.0288458243,0.001829283,0.0037751736,-0.0208290461,0.0269509498,0.0269217975,0.0031392972,0.0287292171,0.0233361106,-0.0132495472,-0.0015696486,-0.0024760913,0.0220534261,-0.0200273693,-0.018657228,0.0205375273,0.0042999079,-0.0219222438,0.0210768376,0.0039100014,0.0139783453,-0.0044493116,0.067399241,0.0095035257,-0.0082281297,-0.0081115216,-0.0134973386,-0.0106987543,0.0040666927,-0.0073025557,-0.0078272903,0.0300264768,-0.0087893037,0.0104582515,-0.0180304628,0.0189778991,0.0077325464,-0.026965525,-0.0246916749,0.0094525097,0.0003657655,-0.004332704,0.0063259667,0.0061692749,0.0012817734,-0.0254787784,-0.0239483025,-0.0041359286,0.0180887654,-0.0175494552,-0.0081333853,0.0388886593,-0.0128122689,-0.0034636124,0.0206395593,0.0446024351,0.0003942342,0.0162667707,-0.0093869185,-0.021951396,0.0038772053,0.0187155325,-0.0165728666,-0.0125353253,-0.0079730498,-0.0082427049,-0.0051853978,0.0182636771,-0.0011405689,-0.0004204253,-0.0181033425,-0.0166457463,-0.0388012044,-0.0136649618,0.0044821077,-0.0247208271,-0.0053894613,0.0064134221,0.0104072355,0.0189924762,-0.0237442385,0.0158732198,-0.0201877039,-0.0044019399,-0.0019914405,0.0240940619,-0.0232632309,-0.0204209201,0.0210039578,-0.0323586315,0.0161210112,-0.0199690647,0.014408336,0.0211788695,0.0441360064,-0.003649456,0.0220242757,0.0131037878,0.017432848,0.0286126081,0.0175203029,-0.0581289269,-0.054047659,0.0105602825,-0.0128195565,0.0124843093,-0.01753488,0.0100136846,0.018773837,-0.0074628913,-0.0418330058,-0.0107643465,0.0041067768,-0.0056736921,0.0001215043,0.0267031584,-0.0024924891,-0.0130746355,-0.0422119796,0.0183802843,-0.0016771464,-0.0545723923,0.0332331881,-0.0013264123,-0.0449814126,0.0269801021,-0.0036731418,-0.0027858303,-0.0190070514,-0.0383930765,0.0077981385,-0.0013145694,-0.0159606766,0.0282336343,0.007255184,0.0402879529,0.0134025952,0.0009729453,-0.0100792758,-0.0177389421,0.0004882946,-0.0209310781,0.0028423122,-0.0095035257,-0.0163688026,0.001785555,0.0065555377,-0.011791951,0.0012462445,-0.0050615021,-0.0048465068,0.0048428625,0.0135920821,0.0009383274,0.0328250602,-0.0008276412,0.0042707562,0.0137305539,-0.0221554581,-0.0457102098,0.014969511,-0.0080459295,-0.0236276314,-0.028816672,-0.0104145231,0.0168789607,0.0250560753,-0.0008321962,0.0098096207,0.0214995407,0.0229134094,0.0072843358,-0.015275606,0.0160189793,0.0197650008,0.0198816098,-0.0051270938,-0.0242252443,0.0022884256,-0.0063696946,-0.0165437143,-0.0048027788,-0.0179138537,0.0041177087,-0.0405211672,-0.0158440676,0.0102979159,-0.0053675971,0.020712439,0.0003459513,-0.0140585136,0.0051088738,0.0076961066,-0.0206249822,0.0044638878,0.0064972341,0.0247645564,-0.0211497173,-0.0049193865,0.002140844,-0.0233652629,-0.037547674,0.0153630618,0.022665618,0.0253038667,0.0044055837,-0.0128778601,0.0246042199,-0.0376934335,0.0055315769,0.0040047448,-0.0162230432,-0.0036786078,-0.0305512119,-0.0348073915,0.0300847813,0.0286709126,0.0307261236,0.0151444217,0.0169809926,-0.0345158726,0.0136358105,-0.0229717121,-0.00147035,-0.0088038798,-0.001102307,0.0018602569,0.0071677282,-0.0132568358,-0.0070511205,0.0042926203,0.0130892117,0.0163104981,-0.0230154395,-0.0130600603,0.0294871666,0.0027512123,-0.0305803642,-0.0194589067,0.0269217975,0.0162959229,-0.0457976647,0.0046023591,-0.0202460084,0.0293997116,-0.0110267131,0.025230987,0.0083374493,0.0456810594,-0.0000266467,0.006872565,-0.0070256125,-0.0048647267,-0.0171121769,-0.0142188491,0.021120565,-0.0236567818,-0.0150861181,-0.0029516318,-0.0165728666,0.0197066981,-0.0154942451,-0.0294434391,-0.0071057803,-0.0040193209,0.0159315243,0.0115660243,-0.021222597,0.0119522866,0.0042707562,-0.0139127532,-0.001815618,-0.0179575831,0.008308297,-0.0043217721,-0.0218202118,-0.0217181798,0.0299681723,0.0304054525,0.0194443297,0.0085050724,-0.0138252974,0.0012243806,-0.0026837985,0.0167477783,-0.043786183,-0.0195317864,0.0012681085,-0.0014238891,-0.0220825784,-0.0203188881,0.0079293223,-0.0045914273,0.0124260057,0.0057465723,0.0058230958,0.0023376194,0.0155525487,0.0015814917,-0.007171372,-0.0168789607,-0.0348365419,-0.0266302787,-0.0072989119,-0.0013847161,-0.0147727355,0.0297932625,-0.0090881111,-0.0216598753,-0.0034289944,0.0178555511,0.0188758671,-0.0115295844,0.0244584605,-0.0100792758,-0.0014712609,0.0028860401,0.0253767464,0.0063150343,0.0148529029,0.0124624455,-0.0114931446,0.0068033291,-0.0255225059,0.00876744,-0.0145978238,0.0158003401,0.0199544895,0.0075576352,0.0096492851,-0.0164854098,0.0103197796,0.0072952677,-0.0100063961,-0.0125353253,-0.0313674659,0.0287292171,0.0022793156,0.0130527718,-0.0044857515,0.0145905353,0.0078710178,0.0123968534,0.0029406999,0.0003949174,-0.0044784634,0.0369063318,-0.0088621834,-0.0102468999,-0.019488059,0.0065227421,-0.0027493904,0.0193277225,0.0011569668,0.034865696,-0.0419496112,0.0331457332,-0.0057720803,-0.0170976017,0.0166457463,0.0281170271,-0.0118721193,-0.007153152,0.0324460864,-0.0119304229,-0.011944999,-0.0206978619,0.0061437669,0.0208290461,0.0193568747,-0.0007588609,-0.002574479,-0.0060708872,0.0171267521,-0.0003789749,0.0041723684,-0.0303179957,0.001444842,0.024516765,0.0135192024,-0.0215724204,0.0209748056,0.0154505176,0.0107862102,0.0132058198,-0.0045367675,-0.050141301,0.008461345,0.008206265,0.0024068553,-0.0168789607,-0.0313966163,0.0104801152,-0.0137742823,0.002836846,-0.0278400835,-0.021951396,-0.0425326489,-0.0113765365,-0.0031192554,-0.0045039714,0.0044930396,0.0433780551,0.0081552491,0.0438736379,0.0087382877,0.0158149172,0.0024505833,-0.0045221914,0.0254350491,0.0021007601],"105":[-0.0058025825,-0.0172973238,0.0560809448,-0.0008437611,0.0673655272,0.0097101536,-0.0213010702,0.0046449159,-0.0377577506,-0.0032485914,0.0236947704,-0.0443404242,0.0082924571,-0.0188788753,0.0486148857,0.0203464404,0.0033412047,-0.0065862341,-0.0451383218,0.0025860497,-0.0153595684,0.0241222158,0.0351360813,0.0059806854,-0.0139703676,-0.0021425742,-0.0289951023,0.0349081084,0.0187933855,-0.0742046684,0.0335402824,-0.0461926907,-0.047902476,0.0261882059,0.0380712114,0.0319729783,0.0545991324,0.0196197815,0.0152883269,-0.0068890085,-0.0149036255,0.0226261541,0.0406073928,0.019961739,-0.0147041501,0.0133505706,-0.0198050085,-0.0255897809,0.0008050238,0.0314315446,-0.0306906402,0.0275702812,-0.0154165607,-0.0315170363,0.0324289203,-0.0532313026,-0.020417681,0.0287528839,0.0328563675,-0.030491164,0.013094103,-0.0464206599,0.0300637186,0.0441694446,-0.016257206,0.0263734329,-0.0373588018,0.0518064834,-0.0365324058,0.0347656272,0.0204889234,0.0078507625,0.0004924537,-0.0204604268,0.0474180356,-0.0657697245,-0.021429304,0.0811577886,0.0184799246,-0.0287956279,0.0153738158,0.0143906903,-0.0288526211,0.0145759163,0.0203036964,-0.0332268216,-0.0303771794,-0.0226404015,0.0043065208,0.010921251,-0.0120611079,0.0407213792,0.0052682748,0.0004902274,0.0362474397,0.0085204281,0.0056422902,-0.001746296,-0.01176902,0.0136497831,-0.0141769666,-0.0131012267,-0.0361334532,-0.0046983464,0.0230251029,-0.0083708223,0.0261169653,0.0187363941,0.0226261541,0.0111064781,-0.0885098651,-0.0054535014,-0.057648249,-0.0046520396,-0.0210303552,-0.0057170936,-0.0292658191,0.0170978494,0.0051899096,-0.0234810468,-0.0343096852,-0.0078222658,-0.0128376354,0.0182804503,0.0421177037,-0.0171405934,-0.0078008939,-0.030405676,-0.0340817124,0.0100663584,0.0521199442,-0.0155020505,0.0382421911,-0.0190071091,-0.0220277291,-0.0059165685,-0.0707281008,-0.0421177037,-0.0164994244,-0.0234525502,-0.0125384228,-0.0455087759,0.0309471078,0.008584545,-0.0508945994,0.023623528,0.0032592774,0.0596145019,-0.0191638395,0.0010436812,0.0155732911,-0.0033216134,-0.0187221449,-0.0231105927,0.0505241454,-0.0279977284,0.0427161269,0.0490423329,-0.0243786834,-0.0340247191,-0.0171120968,0.0296077766,-0.0124386856,0.0194773003,-0.0123175755,0.0106861554,-0.034708634,-0.0316595174,-0.0876549706,-0.0265729073,-0.0062727733,-0.0430865809,-0.0156730283,0.0275275372,0.0286816414,-0.0145901646,-0.0167986378,-0.056736365,0.0435710177,-0.0596714951,-0.0726088658,-0.0032432482,-0.0150461076,0.0344521664,-0.0255755335,-0.0018665153,-0.0634900108,0.0430865809,0.016527921,0.0423741713,-0.0590445735,0.0585886315,0.0187506415,0.0274990406,0.0010561484,-0.0441124514,0.0053715743,0.0297787543,-0.0370738357,0.0320299715,0.044368919,0.0036083586,0.0555110164,-0.0180809759,0.0039075711,0.0110494848,0.001923508,0.0112774568,-0.0420892052,-0.031915985,0.0108713824,0.0086272899,-0.0094679343,0.0016278578,0.0030847369,-0.0158155113,-0.0339677259,-0.0306051504,0.0092185903,-0.0163141973,0.0196767747,0.027242573,0.0083209537,-0.0176250339,-0.0215005446,0.0523194186,0.0075230538,-0.0220989697,0.0345376544,-0.0283254366,-0.0216287803,-0.0595005155,-0.0112703322,-0.043457035,-0.0014942808,0.0034997161,-0.0032450294,-0.0221417155,-0.020332193,-0.0491278209,0.0019056977,0.0269433614,-0.0034925919,0.0099096289,-0.0071312282,0.0044846232,-0.032514412,-0.0527183674,-0.0057170936,0.0411488228,0.0275987778,-0.0075729224,0.0309756044,-0.0227686353,-0.0348796137,-0.0741476715,-0.0248346254,0.0147183985,-0.0150746042,0.0033109272,0.016670404,-0.0466486327,-0.000581505,-0.0064045694,-0.0485008992,0.0069958698,0.0526328795,-0.0601274371,0.0257037673,-0.0103085786,0.046705626,0.0287243873,0.0227543879,-0.0443974137,-0.004787398,-0.047987964,-0.0136782797,-0.0171405934,0.0136640314,-0.011996991,0.0154023124,-0.0471330732,0.0120611079,0.0074945572,0.027470544,-0.0125811677,-0.0001748745,0.0168841258,0.009161598,-0.0071383519,-0.0115909167,0.0101019796,0.0136284111,0.0024827502,0.0097172773,0.0029315688,-0.0078436388,0.0166561548,-0.0387266278,-0.0289381109,0.0316880159,0.0084135663,0.0174540542,-0.0490423329,0.0221132189,0.0065541756,0.0026840062,0.0158725027,-0.0150033627,0.001715128,-0.0262024533,-0.0192208327,-0.0118901292,0.0050189313,-0.0081357267,-0.0179527421,0.031460043,0.0120682316,-0.0173828136,-0.0585886315,-0.0396100171,-0.0882249027,-0.0130299861,0.0309471078,0.0198620018,0.0101874685,0.0267581344,-0.0099025043,0.0278694946,0.0171833392,0.0092898319,-0.0367033817,0.0294083003,0.0214862972,-0.0232673232,-0.0558814704,-0.0129658692,0.0142268352,-0.0210588519,0.0305196606,-0.0029778755,0.0129373726,-0.0661686733,0.0256182775,0.0089122541,0.0272995662,-0.0217570141,0.0020517418,0.0126880286,0.0020000921,-0.0355350301,-0.0181522164,0.0002687123,0.0324859135,0.0152313337,-0.0259744823,0.0006189065,-0.0322579406,-0.0252905693,-0.0027748384,-0.0045701126,0.0215575378,0.0061837221,-0.0131012267,-0.0101518482,0.0190783497,-0.0170408562,0.0289381109,-0.0289666057,-0.0331413299,0.0093539488,0.0261027161,-0.0341102108,-0.0057812105,-0.0358484909,0.010094855,0.0424311645,0.0424596593,-0.0123460721,0.0568503477,0.0230393521,0.0239369888,-0.0240082294,0.0070849215,0.0326568931,0.0393250547,0.0058702617,0.0242504496,-0.0518349782,-0.0250625983,0.0199902356,0.0066930954,-0.0270003546,-0.0327138864,-0.0165849142,-0.0001310167,-0.0143621936,0.0275275372,0.0454517826,-0.009453686,0.0412343144,-0.0114840558,-0.0557389893,-0.0129516209,0.0012707621,0.0221274663,0.0277270116,0.0155732911,-0.0083209537,-0.0161289703,-0.0069495635,-0.0355635248,0.0315740295,-0.0294652935,0.0486433804,-0.016755892,-0.0336257704,0.0530033335,0.0336827636,0.0780801773,-0.0250341017,-0.0119043775,-0.017539544,-0.0071383519,-0.0489568412,0.0613242872,0.0390115939,-0.0276842676,-0.0281972028,-0.0519774631,0.0088267643,-0.0079148794,0.0402369387,-0.0143693173,-0.0129587445,0.0135001773,0.0236805212,-0.0384416655,0.0342811868,0.0049904347,-0.0230535995,0.014604413,0.007808018,0.0246921442,-0.020560164,-0.0542856716,-0.0333693027,-0.0307761282,-0.0044205063,0.0261027161,0.0484154113,0.0114199389,-0.0284251738,0.0133576952,0.0006723373,-0.0385556519,0.0257750079,-0.0331413299,0.0437989905,-0.0309471078,-0.0041747247,0.0200044829,-0.0472470559,-0.0281687062,0.0098098908,-0.0425166525,0.0563944057,0.0137281483,0.0257750079,-0.0243929327,0.0019751578,0.0181237198,-0.0130656064,-0.0308901146,-0.0112845805,0.0171833392,0.0540007092,0.0135144247,0.0064223795,-0.0188218821,0.0233243164,-0.0042566522,-0.0225976575,0.0720959306,-0.0027089405,-0.0016812885,0.0093610724,0.0151458448,-0.000272497,0.0357060097,-0.0313745551,0.0021354503,0.0521199442,-0.017126346,-0.0377007574,-0.0036867238,-0.0825826153,-0.0134645561,-0.0139846159,-0.0069531254,0.0490708277,-0.0213723108,0.0010703966,0.0763703957,-0.0171548426,0.0011095792,-0.0075800465,-0.0089621227,0.023623528,-0.0588166006,-0.0378432386,0.0152170863,0.0312605686,0.0053751362,-0.0136640314,0.0003041102,-0.0159152485,0.0198192578,-0.0144833028,-0.0225264169,-0.0354780369,-0.0394390374,-0.0487573668,0.0174255576,0.0022173773,0.0014515362,-0.0673655272,-0.0045487401,-0.0156445317,-0.017354317,0.0083850706,-0.0287671313,0.0141769666,-0.0183516908,-0.0507521145,0.0003103438,-0.0372733101,-0.0365039073,-0.0458507314,0.0237232652,0.0061979704,0.0413198024,0.0200187322,0.04761751,0.0165136736,-0.015844008,0.0123318238,-0.0093325758,-0.0053145816,0.0420892052,0.017354317,-0.0054107569,0.0044988715,0.0008188267,0.0406928807,0.0025130277,-0.0053680125,0.0111420983,0.006297708,0.0216857716,0.009638913,-0.0189928617,-0.0140701048,-0.0167986378,-0.0015975803,0.0129160006,0.0005583516,-0.0266156513,-0.0313745551,0.0213580634,-0.0084990561,-0.0087840203,-0.0061765979,0.0359339789,-0.0089122541,0.0079148794,-0.0115909167,-0.0206599012,0.0154450573,0.01263816,-0.0280974656,-0.0338537432,-0.0300352219,0.0479594693,-0.0402369387,-0.0013090541,0.0203464404,0.0172118358,0.0270715952,-0.0045344923,-0.0039146952,0.0334832892,-0.0095035546,-0.0002404385,0.0200329795,-0.0146186613,0.0120611079,-0.003289555,-0.0166419074,0.0259032417,0.0131938402,-0.0002640371,-0.0025201517,-0.0304626673,-0.0228113811,0.0357060097,0.0077510253,-0.0069709355,0.0575912558,0.0158297587,0.0408068672,0.0127735185,0.0075444262,-0.044283431,-0.0147183985,0.0015245583,-0.0386411399,0.0113273254,0.0012048641,-0.0341387056,-0.0482444316,-0.0238657482,-0.0153738158,-0.0195770375,0.0027303128,0.0220419783,-0.0253618099,-0.0208736248,-0.0278979912,0.0277697574,-0.0122962035,0.012018363,0.0398949832,-0.0029600651,0.0188788753,0.034252692,0.0373588018,0.021016106,0.0153738158,-0.0022690271,0.0186224077,0.0325429067,0.0174683034,0.0100093661,0.0196482781,-0.021201333,-0.0254045539,0.0369313546,-0.0138563821,-0.0082497122,0.0126880286,-0.018223457,0.0622931644,0.0191495921,0.0316310227,-0.0142624564,-0.0231960826,-0.0054285671,-0.0004657383,0.0378432386,-0.0743186548,-0.0207026452,-0.0021942239,0.0293228123,-0.0127877668,-0.0064010075,0.037415795,0.0086985305,0.0386411399,-0.0028906052,-0.0186509043,0.0194630511,0.0486433804,0.0195912849,0.0478169844,-0.0137281483,0.0249201152,-0.0176820252,-0.01025871,0.0700441897,-0.0230678488,0.0101304753,-0.0252620727,-0.0026661959,-0.0075088055,0.003082956,-0.0137637686,0.0005979795,0.0298072509,0.0289381109,0.0166134108,0.0014399595,0.0169981122,-0.031460043,0.007280834,-0.0282684434,0.008976371,0.0415477753,-0.0153310718,-0.0099310009,0.0120611079,-0.0040179947,-0.0500682034,-0.0229538623,-0.0311465822,-0.0002785079,0.031232072,-0.0184941739,0.0192920733,-0.0307476316,-0.0362759382,0.0079932446,-0.0210446026,0.0195627902,-0.0032468103,0.0057064071,-0.030405676,0.0120112393,-0.041205816,-0.0082853325,-0.0534307808,0.0000242526,-0.033340808,-0.0366748869,0.0520914495,-0.0105721699,0.0313460566,0.0366178937,-0.0067821471,-0.0208166316,0.0178245082,-0.0094964309,0.0093895691,-0.0025753635,0.0380142182,-0.010942624,-0.0263021924,0.0042851483,-0.0390685871,0.000315019,-0.0150603559,0.0142695801,-0.0069602495,0.002600298,0.0114840558,-0.0243786834,0.0175110474,0.0701581761,0.0230678488,-0.0151600931,0.0010285425,0.0136996517,0.0111420983,-0.0189643651,-0.0185796637,0.0015575072,0.0014301639,0.0040999218,-0.0192493293,0.0365609005,-0.0087768957,0.0256325267,-0.0371593274,0.0242362022,-0.002192443,0.0193490665,-0.0216145311,-0.0121394731,-0.017397061,-0.0305766538,-0.0124458093,-0.0060020573,0.0045665507,-0.0207026452,0.0316880159,0.0088125169,-0.0211585891,-0.0081570987,0.0247918814,-0.0133291986,0.0273280628,0.0066681611,-0.0058773858,-0.0335117839,-0.0005303005,0.0114911795,0.0190783497,0.0134788044,-0.0153738158,-0.0154165607,-0.0218709987,-0.0050509898,-0.0104938047,0.0335687771,0.0248061307,-0.0071383519,-0.0118046403,-0.1155814603,-0.0325714014,0.0384416655,-0.0041177319,-0.0139347473,0.0230108555,0.0187933855,0.0160149857,0.0488143601,-0.0208166316,0.0179099981,-0.0699302033,-0.0281544589,0.0003804717,-0.0101589719,-0.0037971474,0.0069210669,0.0391825698,0.0362759382,0.005977123,-0.0029565031,-0.0036902858,-0.0204461776,0.0560524501,0.0080787335,0.0063262042,-0.0121394731,0.0382991843,-0.0019306322,-0.0234525502,0.003982374,-0.0054321294,0.0013553607,0.0017026608,-0.0041854111,0.0048906975,0.0022405307,0.0100307381,-0.0004670741,0.0049761864,-0.0418612361,-0.0567648597,0.06035541,-0.0552545488,0.0674795136,-0.0327138864,0.0016893031,0.0131653436,-0.0153453201,0.0114484346,0.0220134817,0.0120539842,-0.0014675654,0.0097956425,-0.0143052004,0.0022440928,-0.0203036964,-0.0123816924,-0.0040714252,0.0080644852,-0.0290378481,0.0128732556,0.0099808695,-0.0596714951,-0.0228826217,-0.0024987794,0.0256182775,0.0366463922,-0.0020250266,0.0037544027,0.0335402824,0.0312605686,0.0304341726,-0.0126595329,0.0115766693,-0.0034836868,0.0174683034,-0.0364754125,-0.0031666642,-0.0232245792,0.0211728364,0.0043813237,-0.0240794718,0.0135714179,0.0070706732,-0.0248773713,-0.0333693027,0.0045166817,0.0451668203,0.0250768457,0.023808755,-0.0071062935,0.0013598134,0.0198904984,0.0131510962,0.0071490384,0.0187363941,-0.0162857007,-0.0086557865,-0.0077652731,0.0382706858,-0.0103584472,0.0258604977,0.020104222,-0.0028888241,0.0032770878,-0.0011799297,0.015844008,-0.0021799759,0.0097101536,-0.0315170363,-0.0065719858,0.0189786125,0.012182218,0.0187933855,-0.0033340806,0.0248916186,0.0102658337,-0.0001487157,-0.0179099981,0.0250341017,-0.001680398,-0.0252905693,0.0538867228,-0.0265871566,0.0357630029,0.0258177519,-0.0289523583,0.027840998,-0.0064651244,0.0058524515,0.0471900627,-0.0143479453,0.0407213792,0.0033305185,-0.0248061307,0.0106220385,0.0156587809,0.0138563821,0.04103484,0.0065577375,0.0095890434,-0.0065791099,0.0155447945,0.0363614261,-0.0076441634,-0.0020179024,-0.0041818488,-0.0255897809,0.0081214784,0.035620518,-0.0037722131,-0.0175537914,0.0747745931,0.0197195187,0.0655987486,-0.0526613742,-0.0293228123,-0.0323149338,-0.0309756044,0.0043100826,0.0293798037,0.0286246501,-0.0104368124,0.0232103299,-0.0306621436,-0.0369313546,0.0066361027,-0.0023028667,0.01629995,0.0108500104,0.017083602,0.0111919669,0.0186936483,0.0261454619,0.0262594465,-0.0097671468,0.0178245082,0.0093824444,0.0072380896,-0.0051542893,0.0024417867,0.0150461076,0.0332838148,0.0527183674,-0.0230535995,-0.0231390893,0.0022298445,-0.0349081084,0.0161574669,0.0204034336,0.0057812105,0.001850486,0.0226688981,-0.0220277291,0.0088766338,0.0298642442,-0.0124814296,-0.0117832683,0.0307476316,-0.0007288849,0.023851499,0.0076441634,-0.0160434823,-0.0025094657,0.0191923361,0.0031185765,0.0039396295,-0.031915985,0.0259317383,0.0178815015,0.0311750788,0.0026840062,-0.0368458666,-0.0238942448,0.020104222,0.0174398068,-0.0011247179,-0.0220847223,-0.0036208257,-0.0271143392,-0.0374442898,-0.0185796637,0.0193775631,-0.0128590073,0.0327708796,-0.0006313737,0.0217570141,-0.0045701126,0.0092399623,0.0142980767,0.0059165685,0.0063689491,0.0031666642,0.0234098062,0.0128803803,0.0070884833,-0.0039788121,-0.0084919315,0.019691024,-0.0011674626,0.0023865749,0.0267011411,-0.0272995662,-0.002260122,-0.0061445395,0.0511225685,0.0106790317,0.0398949832,-0.002537962,0.0043065208,-0.0168128852,0.0223554373,0.0136426594,0.0308331214,0.0163284466,-0.0069958698,0.0068890085,0.0054463772,-0.0115695447,-0.0196197815,0.0201327167,0.0029297876,0.0087768957,-0.0248346254,0.0023135527,-0.0091972183,-0.0103798192,0.0118260123,0.0082140919,-0.0292373225,0.0122534586,0.0113344491,-0.0129801175,0.0079932446,0.0467626192,-0.048443906,-0.0058453274,0.0016198431,-0.0256895181,-0.0086629102,0.0064508761,-0.0161717162,-0.0124956779,0.0314030498,-0.0234383009,0.0244641732,-0.0265301634,0.0233385637,-0.0418327376,0.0020499609,0.0091544734,-0.0253048167,0.0176820252,-0.030177705,0.0178245082,0.0196482781,0.0296362713,0.0045059957,-0.0324574187,0.012866132,-0.0054000709,0.008128603,0.019277826,0.030491164,-0.0053430777,-0.0123603204,-0.0145117994,-0.0026341374,0.0227971319,0.0079148794,0.0019840628,0.0313460566,0.0318874903,-0.0047945217,0.0149748661,0.0293513089,0.0323149338,0.0271855798,0.0366178937,-0.0132223368,0.0082069673,0.0261169653,0.0466771275,0.0114769312,0.0240937192,0.034252692,0.0114626829,-0.0265871566,-0.0102658337,0.0101518482,-0.0009359291,0.0168556292,0.0239654854,-0.031232072,-0.0037508407,0.0432575606,-0.0101162279,0.0018130845,-0.0187221449,0.0114555592,-0.009681657,-0.0007645054,-0.0080217412,0.0005668115,-0.0189643651,0.0264874175,0.0142268352,0.0045273681,0.0309186112,0.0665676296,0.0193348173,-0.0056850351,0.0141342217,-0.013735272,-0.007694032,-0.0215432905,-0.000565921,-0.0185369179,0.0293513089,-0.0277697574,0.0081855953,-0.0213865601,0.023352813,0.0075159296,-0.0161289703,-0.0030598026,0.0320299715,0.0248203781,0.0021461362,0.0241934564,0.0139347473,-0.0201327167,-0.0208878722,-0.019733768,-0.0036279499,0.0123816924,-0.0095320512,0.0048052082,0.0103869438,0.0108571341,-0.0387266278,-0.0029351308,0.0440269634,0.0000261032,0.0058524515,-0.009410941,0.0188076347,0.006639665,-0.0042210314,-0.0213580634,-0.0399519764,-0.0226831473,0.0025237137,-0.0227116439,0.0218852479,-0.020788135,-0.0339962244,-0.0185084213,-0.0265444107,-0.0306906402,-0.0135144247,-0.0080929818,-0.0231960826,0.0154165607,0.0110352365,0.0514360294,-0.0264589228,0.0085702967,0.0139774922,-0.0236520246,0.0008664691,-0.0249913558,0.0091259768,-0.0318019986,-0.0085204281,0.0463636667,-0.0243929327,0.0044953097,-0.0374727882,0.0023883558,0.0269006155,0.0040322426,-0.0067394022,0.0235665366,0.0333977975,0.0123389475,0.0153738158,0.0095249265,-0.0286958907,-0.0253333133,0.027470544,-0.0411773212,0.0351075828,-0.0301492084,-0.0153025752,-0.0032592774,0.0021621655,-0.0207026452,0.013899127,0.0171548426,-0.0234810468,0.0050759241,0.0149036255,0.0020748952,-0.0032592774,-0.0527753606,-0.0014399595,0.0068854466,-0.0378147438,0.0279407352,0.0219279919,-0.0189643651,0.0354495421,0.0070813592,0.0014212588,-0.0066432268,-0.0255327877,-0.0105294259,0.0014969524,-0.0357345045,0.0118758809,0.0200757254,0.0247206409,0.027840998,0.0413767956,-0.0031346057,0.0194345545,-0.0223554373,-0.0315740295,0.0175680406,0.0080146166,-0.0187506415,-0.0069709355,0.0166988987,0.012224962,0.0178815015,-0.009660285,-0.02440718,-0.0102017168,0.0097172773,-0.008541801,0.0326568931,-0.019918995,-0.0061659119,0.038869109,0.0136355348,-0.005688597,0.0161574669,0.005699283,-0.0369598493,0.0256040301,-0.0381282046,0.0109141273,0.0072487756,-0.0182804503,0.0211443398,0.004580799,0.0189216193,-0.0006126729,-0.0213295668,-0.0061623501,0.0322009511,0.0025344,0.0024916553,-0.0284536704,0.0304626673,-0.0052825231,0.0000802018,-0.0165991616,-0.0040001841,0.0225264169,-0.0201327167,-0.0229681116,0.0062442771,-0.0224694237,-0.0022066911,-0.0285961535,-0.0091259768,-0.000002762,-0.003287774,-0.0466201343,0.0023972609,-0.0084135663,0.0258747451,0.0047660256,-0.0201327167,0.0012128787,-0.0114983041,-0.0057847723,0.0189501159,-0.0032254381,0.0132579571,0.0217712615,0.0228256285,0.0145474197,-0.0045701126,0.0131368479,-0.0136996517,-0.0048622009,-0.0106434114,0.0157300215,-0.0348511152,0.0291090887,0.0113273254,0.0312890634,0.0286104009,0.0149891144,-0.0516355038,0.0054428154,-0.0296077766,-0.0127663938,-0.0087270271,-0.0156872775,-0.0066218544,0.0098241391,-0.0236947704,0.0198192578,-0.0084064426,0.0059699989,0.0280547217,-0.0002798437,-0.0349081084,0.0125526711,0.0230535995,-0.0075515499,0.0046484778,0.064059943,-0.0025254949,-0.0454802811,-0.005140041,-0.019733768,0.0140701048,-0.0106220385,0.0228683744,0.00534664,0.0331698284,-0.0088552609,0.0103798192,-0.003629731,-0.0261027161,-0.022939615,0.0237090178,0.0062050945,-0.0109924925,-0.0153310718,0.0192350801,-0.0119328741,0.0394105427,-0.020104222,-0.0187078975,-0.0259032417,0.0176535286,-0.0077154045,0.0416332632,0.0177960116,0.0147753917,0.0151600931,-0.004313645,0.0021675087,-0.0147041501,-0.0043065208,-0.0029618463,-0.0050937342,-0.0417757444,0.0365609005,-0.0146614062,0.0226831473,0.0107431486,-0.0089336261,-0.0072238413,-0.0111207264,0.0125384228,-0.0242931936,0.0137922652,0.0137780169,0.0194345545,-0.0482159369,-0.0428871065,0.0283681825,-0.0118188886,0.0210730992,0.0187648889,0.027883742,-0.0027712765,-0.0115695447,0.0228683744,0.0209163688,0.0132294614,-0.0059878095,0.0100449864,-0.0204319302,-0.0238230042,-0.0366178937,0.0209163688,-0.0015307919,-0.0104225641,0.0049583763,-0.0077723972,0.0248346254,-0.0000040595,0.0076512876,-0.0119115021,0.0018068509,-0.0068035191,0.002814021,0.015844008,0.0084420629,-0.0112275882,0.0023847937,0.000959973,0.0066218544,-0.0022387498,-0.0169126224,0.0130656064,0.0070599872,-0.0151743414,0.0094679343,-0.0222272035,-0.0262024533,0.0294367969,0.0067536505,-0.0054071951,-0.0063119559,0.0053038956,-0.0055781733,0.0115125515,0.0512935482,0.0182946995,0.0194060598,0.0100164898,0.0128803803,0.0085346764,-0.002746342,0.0424311645,0.0187648889,0.0123816924,-0.0023687645,0.006992308,-0.0231960826,0.0162287094,0.0053893845,0.0403224267,-0.0243359394,0.0254757963,0.01112785,0.0183374435,0.0283539332,-0.0055140564,-0.0163854398,-0.0188503787,0.037501283,-0.0353355557,0.0127022769,-0.009161598,0.0354495421,0.0048479526,0.021657275,-0.0170693528,0.0010855353,-0.015245582,0.0275987778,-0.0266441479,-0.0103584472,-0.0209163688,0.0013090541,0.0376722626,0.0144761791,-0.0418897308,0.0007502572,0.0655417591,0.0038256438,0.007736777,-0.0228541251,-0.0452523082,0.000167973,0.0200187322,0.0000691817,-0.0312605686,-0.0265444107,0.0067251539,0.0058702617,0.0065577375,-0.0317735039,0.0050830483,-0.051607009,0.0215432905,0.0129801175,-0.0147183985,0.0155590428,0.0301207118,0.031004101,0.0070777973,0.0036689136,0.0284109265,0.0122178383,0.0177247711,0.0246209037,0.0037579648],"106":[0.0131060081,-0.0164481457,0.0626136512,-0.0038743261,0.0833902583,0.030228259,-0.0113888159,0.014255533,-0.0215145722,-0.0046371282,0.0250341073,-0.0241542235,-0.0035106645,-0.0342019275,0.0508629493,0.013843975,-0.0007011573,-0.0073299981,-0.04467538,0.0178247392,-0.014773529,0.0149154458,0.0481665321,-0.000583189,-0.0205211565,-0.0003268519,-0.0212875064,0.0256727319,0.0230614655,-0.072036922,0.0177821629,-0.044646997,-0.0470028147,0.0127654076,0.0281420834,0.0529065467,0.0242819488,-0.0010359919,-0.0055737789,0.0071348622,-0.018406596,0.0313352086,-0.0086853029,0.0094445571,-0.019797381,-0.0180092305,-0.0320164077,-0.0379769094,0.0121906456,0.0652816817,-0.0275460333,0.0365861282,-0.0215003807,-0.0534742139,0.0365009755,-0.0358481593,0.0058753518,0.0416667461,0.0333504267,-0.0262545906,0.0298025087,-0.0622730516,0.0223802645,0.0183214471,0.0052509182,0.0202515144,-0.0087633571,0.0530484654,-0.0573059656,0.0325556919,0.0235865563,0.0186904296,0.0051799598,-0.0097071026,0.0440509468,-0.0779974237,-0.0398785956,0.0772026852,-0.0023966185,-0.0020861756,0.0118003739,-0.0062194997,-0.0168313216,0.0116726495,0.0184491724,-0.0325556919,-0.0097283907,-0.0171719212,-0.0034982469,0.0131698707,0.0105160279,0.0366996601,-0.0021748736,0.0195561219,0.0244380571,-0.0049103182,-0.008493715,0.009423269,-0.0225363728,0.0270067491,0.0186194722,-0.0192439053,-0.0279717837,0.0035727532,0.0115591157,-0.0178815052,0.0448456779,0.0033882614,0.0152134709,0.0146883791,-0.0766917914,0.0155824544,-0.0173989888,-0.0109488741,-0.0218125973,0.0129357083,-0.0151992794,0.005900187,0.005297041,0.0057015037,-0.0118003739,-0.0078550894,-0.0085930564,0.0072448477,0.0338897109,-0.0325273089,0.0215429571,-0.0433981307,-0.0218835566,0.0150431711,0.0529633164,-0.0224370323,0.0342303105,-0.0259565655,-0.0014865776,-0.0068865083,-0.0469744317,-0.0467473641,-0.0227492489,-0.0004073453,-0.0048925783,-0.0511751659,0.0350250416,-0.0038352991,-0.0172428805,0.0301998761,-0.0196554642,0.048223298,-0.0282130409,-0.034542527,-0.0189033058,-0.0042291177,-0.0361603759,-0.0289935824,0.041070696,-0.0038211073,0.0355927087,0.0512319319,-0.0132053494,-0.0196980387,-0.0276737586,0.0370970257,-0.0051267412,-0.0068865083,-0.0015477791,-0.0024409674,-0.0236575156,-0.0422627963,-0.1096164659,-0.0156817958,-0.0053573558,-0.0399353616,-0.0017038875,0.0284117255,0.039736677,-0.0165049136,-0.0160933547,-0.0634083822,0.0426601619,-0.0288516674,-0.04833683,-0.0049493453,-0.0193716306,0.0520550497,-0.0269074067,-0.0022298663,-0.0560003333,0.0639760494,0.0221815817,0.0315055102,-0.0324705429,0.0712989569,-0.0073158061,0.0229337402,0.0064004436,-0.0541837998,0.0056589288,0.0319312587,-0.0530484654,0.0237994324,0.0666440874,0.0048783869,0.0691418201,0.0112114195,-0.0142484372,0.0141774788,-0.0024941862,-0.0104876449,-0.0509480983,-0.0453281961,0.0016621994,0.0154973045,-0.0100406073,-0.005857612,-0.0448456779,-0.0083872778,-0.0597753152,-0.0118642366,-0.0003614441,-0.0099199777,0.01988253,0.0518279821,-0.0048570991,-0.0189033058,-0.0227492489,0.0492450967,0.0169732384,-0.0203792397,0.0427736938,-0.0127299288,-0.0133614577,-0.0270918999,-0.0071419585,-0.0415532105,0.0033456865,-0.0068652206,0.0047151828,-0.0221106224,-0.016547488,-0.0460093953,-0.0231324229,0.0038459427,0.0012470931,0.0186194722,-0.0087207817,0.013162775,-0.0256869234,-0.057022132,0.0020932714,0.0338045582,0.022366073,0.0137588251,0.0143406829,-0.0361603759,-0.0353372619,-0.0408436283,-0.0168597046,0.0249205735,0.010622466,0.0293483753,-0.0055702305,-0.0208191816,0.0005548056,-0.0086923987,-0.0393676944,0.0079047605,0.0431710631,-0.0452146642,0.0179808475,-0.0124673825,0.0636922196,0.0296605919,0.0013677223,-0.0535309836,-0.0166326389,-0.0175125208,0.0040446264,-0.0164765306,-0.0004368374,-0.0011823436,0.013872358,-0.0400488935,0.0270635169,-0.0004171021,0.0233311076,-0.0321867093,-0.0011504123,0.0315338932,0.0118216621,-0.0288232826,-0.0213442724,0.0213016979,0.0150573626,-0.0212591235,0.0019832859,0.010267674,-0.0123254657,0.0140355621,-0.0669846833,-0.0391690098,0.0177963544,0.0171009637,0.0189174972,-0.0383742787,0.0220680479,0.0069823018,-0.0403894931,-0.0132266367,-0.0214010403,0.0054283142,-0.0289226249,-0.0101612359,-0.0111404611,-0.0045803618,-0.0003984755,-0.0075286813,0.0517995991,-0.0146458037,-0.0164765306,-0.0686876848,-0.0118997162,-0.0734560862,-0.0168880876,0.0206772648,0.0193574391,-0.018406596,0.0085079065,-0.0074364357,0.0253179409,-0.0162352715,0.0005885108,-0.0274608824,0.0474853292,0.0159656294,-0.0273189656,-0.0435968116,-0.0061911163,0.0430575274,-0.031051375,0.0388851762,-0.0168029387,0.0171719212,-0.0721504539,0.0106721362,0.0258146487,0.0117790867,-0.0153979631,-0.0117790867,0.0101896198,0.0195419304,-0.0221390072,-0.0044952119,0.0306823924,0.0076067355,0.0144400252,-0.0165049136,0.0163771883,-0.0149154458,-0.0286813658,0.0094374614,-0.0022972766,0.0413545296,0.0277872905,0.0023114684,-0.0119564822,0.0342586935,-0.0437954962,0.0247928482,-0.0186762381,-0.0125738205,0.0376363099,0.0148870628,-0.0217700228,0.0033563301,-0.0431142971,-0.0071561499,0.0580155514,0.0394244604,-0.0056340932,0.041099079,0.0264248904,0.0213300809,-0.0162920374,0.0112965703,0.0260700993,0.0411274619,0.0076564061,0.0230188891,-0.0465486795,-0.0263681244,0.0189884547,0.006375608,-0.0260275248,-0.026708724,-0.013191158,0.0068794126,0.0184207894,0.0143761626,0.0412693769,0.0312784426,0.0588670485,0.0003984755,-0.0660196543,-0.0164765306,0.0101754284,0.0171009637,0.0065423604,0.0259281825,-0.0247076992,-0.0377498455,-0.0192864798,-0.0269499831,0.0367848091,-0.0286529828,0.0253463238,-0.0299444254,-0.0598320849,0.0643734187,0.0160649717,0.0591508821,-0.038289126,0.0072590397,-0.0313068256,0.0113533363,-0.041865427,0.0542973317,0.0281704664,-0.0213868469,-0.0179524627,-0.0305688586,-0.0087420689,-0.0121409744,0.0318177268,-0.0078834733,-0.0079757189,0.0351953432,-0.017257072,-0.0208475646,0.0320731774,0.0059817894,0.0187046211,0.0185627062,0.0243529063,0.0042965282,-0.0199818723,-0.039708294,-0.0220822394,-0.0164197627,0.0032569885,0.0064749499,0.0449024476,0.0052509182,-0.039736677,0.0306256246,-0.0495856963,-0.0490464121,0.0224654153,-0.0167603623,0.0229479317,-0.0388851762,-0.0226924811,0.0211881641,-0.044760529,-0.0305972416,-0.0182362963,-0.0411274619,0.0626704171,0.0108992029,0.0283549577,-0.0344573781,-0.0084440438,0.0241826065,-0.0333504267,-0.0172144957,-0.0274892654,0.0169590469,0.0309094582,0.0239697322,0.0329246745,-0.0087207817,0.0233027227,-0.0156108374,-0.0291496925,0.061932452,-0.0013597395,-0.0086853029,0.0195703134,0.0304269418,-0.0098135406,0.0153837707,-0.0323002413,0.0201095976,0.0502101295,-0.017313838,-0.0132195409,-0.0182079133,-0.0716963187,-0.0103599196,-0.0089691356,-0.0114739658,0.048421979,-0.0084227566,0.0087065902,0.0504371971,-0.0285962168,0.0355075598,-0.0515725315,-0.0020365047,-0.0065494562,-0.0580155514,-0.0152702378,-0.0011246899,0.0433981307,0.0187046211,-0.0288232826,0.0109914485,0.0082808398,0.0188039634,-0.0065352642,-0.0199960638,-0.0160223953,-0.0449024476,-0.0375227779,-0.0009251196,-0.0079686232,0.0114952531,-0.0491315648,-0.0158804804,-0.0213016979,-0.024877999,-0.006553004,-0.0351101942,0.0217700228,0.0018520131,-0.0358765423,0.0140994247,-0.0181795303,-0.0365293622,-0.0499546826,0.0347412117,0.013737537,0.0385445766,0.0334071927,0.034656059,0.013900741,-0.0188749228,0.0090968609,-0.0143832583,-0.0163629968,0.0263965074,0.0088981772,-0.0178247392,0.0155824544,0.0068510291,0.019768998,-0.0021447162,0.0154263461,0.0135104703,0.0115165412,0.0294902921,0.0081744026,0.0061414456,0.0011504123,-0.0196270812,-0.0025438571,0.0276595671,-0.0121835489,-0.0156959873,-0.0409571603,0.0082879355,0.0052686576,-0.0048570991,0.0033439123,0.0219261311,-0.0067836186,-0.0003740836,-0.0246651229,-0.0225789472,0.0263539329,-0.0017712979,-0.0305404756,-0.0192013308,-0.0177821629,0.0443063974,-0.0274041165,0.0058966391,0.0091536278,-0.0030476614,0.0229195487,-0.0049635367,0.001593902,0.0084156608,0.0053538079,0.0091252439,0.030994609,0.0078054187,0.0236149393,0.0090471897,-0.0182504877,0.0169590469,0.0130066657,-0.0112043237,-0.0171435382,-0.0428588465,-0.0243670978,0.0291780755,0.0124035198,-0.0116442656,0.0600023828,-0.0147877205,0.0420073457,0.0056447368,-0.001724288,-0.0252044071,-0.0128505575,-0.0069113434,-0.0202373229,-0.00284543,0.0190168396,-0.0239839237,-0.0392257795,-0.0221106224,-0.0249915328,-0.0420357287,-0.0120771118,0.0349115096,-0.024168415,-0.0315055102,-0.0329246745,0.0142200543,0.0029625113,-0.0049422495,0.0334639587,-0.0004055713,0.0127228331,0.0478543155,0.0380620621,0.0326976106,0.0266945325,-0.0113178575,0.0361319929,0.0116158826,-0.0029234842,-0.0066239624,0.0036756427,-0.036075227,-0.0039559281,0.0453565791,-0.0261836331,-0.0252044071,0.0132834036,-0.0253321324,0.0634651482,0.0391406268,0.0313068256,-0.0116939368,-0.0253179409,-0.0134182246,-0.0144258337,0.0019478068,-0.0388567932,-0.0074719144,-0.0323002413,0.016547488,-0.0181369558,-0.0015291525,0.0268790238,-0.0064394707,0.0288090911,0.0194283966,-0.0059888852,0.0171719212,0.0407868624,0.0240123067,0.0314487405,0.0073158061,0.0210746303,-0.0239555407,0.0007987249,0.0748752579,-0.0534458309,0.0200812146,-0.0226782896,0.0046335803,0.0047435658,-0.0012701545,-0.0191019885,0.0117507037,0.0216990653,0.0202373229,0.0171293467,0.0083305109,0.003530178,-0.0084227566,-0.0058327769,-0.0518279821,-0.0120203448,0.0339180939,-0.0131982537,-0.0067481394,0.0149012543,0.0052012475,-0.0492450967,-0.0177112054,-0.0333220437,-0.0038707783,0.0167177878,-0.0068439334,0.0349398926,-0.019825764,-0.0348831266,0.0052863974,-0.0181795303,0.0019052317,-0.0016080937,0.0006869655,-0.0368415788,0.0269216001,-0.0405597948,0.0012036311,-0.0588670485,0.0117861824,-0.0330665931,-0.0325273089,0.0472866483,-0.0114030074,0.0162920374,0.0266377665,-0.0007033747,-0.0121835489,0.0162068885,0.0024462892,0.0140710417,0.0041439678,0.0381755941,-0.0080111977,-0.0033864875,-0.0037785324,-0.0312784426,0.005517012,-0.0412977636,-0.0003115515,-0.0012603977,-0.007947336,-0.0051160972,-0.0238703899,0.0147877205,0.0581858493,0.0142413415,-0.0046726074,-0.0144400252,0.0132550206,0.0020382786,-0.0044348971,-0.0160365887,-0.0005791975,0.0060846787,-0.0086923987,0.0137020582,0.0336910263,-0.0101967156,0.019797381,-0.0478543155,0.006801358,0.0091820108,0.0297741257,-0.0526794828,0.0011113852,-0.0170441959,-0.0261836331,-0.0228769723,-0.0177112054,0.0023025987,-0.0086711105,0.0477407798,0.0083163194,-0.005297041,0.0035727532,0.0341735445,-0.0179098882,0.003319077,-0.0076422147,-0.0142342458,-0.0308243092,0.0074790106,0.0153695792,0.0175409056,-0.0094658444,-0.0131840622,-0.0264248904,-0.0440509468,0.0029163884,-0.0232033823,0.0403327271,0.0103953984,0.006499785,0.0048570991,-0.0976954624,-0.0313068256,0.0338045582,-0.0276595671,0.0052225348,-0.0006053635,0.0193290561,0.0303417929,0.0384878106,-0.0350818112,0.0213584639,-0.0335207246,-0.0474569462,0.0021056891,-0.0172996465,0.0014094103,0.0042823367,0.0263539329,0.018406596,0.0081176357,-0.0237284731,0.0067516873,-0.0188323464,0.0560570993,0.010267674,-0.0063933479,-0.018733006,0.0417802781,0.0083659897,-0.0246509314,0.0113959117,0.0169022791,0.0065636477,-0.0055879704,-0.0203934312,0.008983328,-0.0039878595,0.0085150022,0.0080395816,0.0139220292,-0.0471447296,-0.0563976988,0.0356210917,-0.0375511609,0.0590373501,-0.0296038259,-0.0074364357,0.0138013996,-0.0151141295,-0.0004184326,0.0259849485,0.0072306562,-0.0100902775,-0.0029376759,-0.0065778391,0.0061769248,-0.0521685816,-0.0210178643,0.0094019817,-0.0074506272,-0.0372105613,0.0201095976,0.0007051486,-0.0510616302,-0.0125028621,0.0034858291,0.0008248909,0.0436535776,0.023402065,-0.0065813875,0.0239271577,0.0502952822,0.0281704664,-0.0449024476,0.0088839857,-0.0020489225,0.0186052807,-0.0081034442,-0.0093381191,-0.0150857456,0.0124319037,0.0010129305,-0.022422839,0.0130208582,0.0027141571,-0.0416099802,-0.0181937218,0.0103173442,0.021656489,0.0132195409,0.0209752899,-0.0085930564,-0.0110198325,0.0184207894,0.0094090775,0.0219119396,0.0179808475,-0.0137730166,-0.0120274406,0.0069326311,0.0488193482,-0.0114384862,0.0240690727,0.0188181549,0.0005485968,-0.0246651229,0.0159230549,0.0227350574,0.0164765306,0.0120913032,-0.0178956967,0.0005503707,0.0399353616,0.0036614509,0.0148870628,-0.0050451388,0.0197548065,0.0023451736,-0.0006723304,-0.0537864305,0.018023422,-0.0094729401,-0.0031026539,0.0512319319,-0.0013579655,0.0301431082,0.0442212448,-0.0059924331,0.0123467539,-0.0000837641,0.0070461645,0.050522346,-0.0036579031,0.0439657941,-0.0051906034,-0.0208049901,0.0328679085,-0.0098064449,0.0212591235,0.0331801251,0.0071419585,0.0058008456,0.0058859955,0.0153553877,0.0202940889,-0.0061875684,0.0117507037,0.0075854482,-0.0280143581,0.0167177878,0.0237568561,-0.0338045582,-0.0210462473,0.0678361878,-0.0020826277,0.0655087531,-0.0413829125,-0.0137233455,-0.0132904993,-0.0134466076,0.0087988358,0.044590231,0.027418308,-0.0023948445,0.0256301574,-0.0179382712,-0.041042313,-0.0031505509,-0.0186762381,0.0221390072,0.0081247315,-0.0040517221,-0.0088343155,0.0144684082,0.0348547436,0.0149864042,-0.0043532951,0.0088272188,0.0102463858,-0.0011548472,-0.031022992,-0.0044207056,0.0055844225,0.0453849621,0.0365293622,-0.0233169142,-0.0373524763,0.0062656226,-0.0288942419,0.0239413492,0.0171435382,-0.008245361,0.0089194654,0.034542527,0.0115165412,0.0148728713,0.038203977,0.0056021619,-0.0177537799,0.0321299434,-0.0167603623,0.021244932,0.0131485825,-0.0163771883,-0.001467951,0.0347412117,-0.0027035133,0.0107218074,-0.0435968116,0.009529707,0.0393109284,0.0117436079,0.029547058,-0.0405881777,-0.012942804,-0.0007867508,0.0235581733,0.0050664265,-0.0032445707,-0.0288800504,-0.0219119396,-0.0393109284,-0.0066736331,0.0293483753,-0.0257153064,0.0330098271,-0.0008257778,0.0071526021,-0.0288800504,0.0041617076,0.0247644652,0.0103386324,0.0133401705,0.0131840622,0.0239271577,0.0203934312,-0.00069007,0.0154263461,-0.0268648323,0.0102463858,0.0129924743,-0.0037501489,0.0060633915,-0.0276311822,-0.0173280295,0.0019158756,0.0445050783,0.0227918234,0.0353656448,-0.0236433242,0.0070887394,0.0010404269,0.0203650482,0.0036206499,0.0219687056,0.0067091123,0.0058221328,0.018051805,0.0232743397,0.0035337261,-0.0144755039,0.0283975322,0.0124035198,0.0097354865,-0.0059924331,-0.0137233455,-0.002157134,-0.0155682629,-0.0024924122,0.0035035687,-0.0326976106,0.0361887589,0.0235014074,-0.0149722127,-0.0074577229,0.0282414239,-0.0462080799,0.0030299218,-0.0188749228,-0.0230188891,-0.0041475156,-0.0064962371,-0.0161785055,-0.014745146,0.0313919745,-0.0280569326,0.0064501143,-0.0228769723,0.0246083569,-0.0375795439,-0.0113746244,0.0032126394,-0.0129144201,0.0214152317,-0.0330098271,0.0158662871,0.0117790867,0.0155682629,-0.002928806,-0.0163346138,-0.0003700922,-0.0201663636,0.0223802645,0.0112043237,0.0214010403,0.0227918234,-0.0044313492,-0.0117365113,-0.0034592198,0.0240690727,-0.0085788649,0.0026059456,0.0148444874,0.0378633775,-0.0120842075,0.0061662807,0.0481381454,0.0378917605,0.032357011,0.0330665931,-0.0077060773,0.0250908732,0.0178531222,0.0376079269,-0.0119422907,0.0290503502,0.0272338167,-0.00079429,-0.0261126738,0.0196696557,0.0056837643,-0.006758783,0.013134391,0.0280001666,-0.0316190422,0.0237568561,0.034656059,-0.0079615274,0.0072235605,-0.0111830365,0.0144329295,0.0041297763,-0.020918522,-0.0068226457,0.0034290624,-0.015156704,0.0313068256,0.0296322089,0.0086001521,0.0306540094,0.0663602501,-0.0010040607,0.0037004782,0.012971187,0.003789176,-0.0024853162,-0.0124957664,-0.007578352,-0.0149580212,0.0279575922,-0.0157527551,-0.0017588802,-0.0144329295,0.0105586033,0.0004461507,0.0085788649,0.0037146697,0.0361887589,0.0014723858,-0.0080963485,0.0297173578,0.0044526365,-0.0250624903,-0.0268080663,-0.0195986964,0.0019673205,0.0080182943,-0.0129924743,0.0094516529,0.01422715,0.0052793017,-0.0333788097,0.0230898485,0.0479678474,0.009366503,0.0139575079,-0.0236858986,0.0167461708,0.0092742564,-0.0017863766,-0.0096787196,-0.0282556172,-0.0233452991,-0.0011069503,-0.0231466144,0.0256585404,-0.0130989123,-0.0474001803,-0.0099767447,-0.0213158894,-0.0197122302,-0.0056624766,-0.0032073176,-0.0292632245,0.0063649644,0.0291496925,0.0727181211,-0.0130208582,0.0292632245,0.0255308151,-0.0238420069,-0.0159514379,-0.0115165412,-0.0041475156,-0.0453849621,-0.0296605919,0.0278724413,-0.0138155911,-0.0075570648,-0.0385445766,-0.000647495,0.0278440583,0.0186194722,0.0045413347,0.0362455286,0.0208333731,0.0038069156,0.0361603759,-0.0011060634,-0.0373240933,-0.0195277389,0.0324705429,-0.0276311822,0.0443915464,-0.0299444254,-0.0063330331,0.0057689142,-0.0043071723,-0.006691373,0.0035479176,0.0313919745,-0.0319880247,-0.0089336568,0.0185343213,-0.0071384106,-0.0079615274,-0.0644301847,-0.0062585268,0.0167603623,-0.0107076159,0.0357630104,0.0037785324,-0.0160223953,0.0428872295,0.0256017745,-0.0068084542,-0.012453191,-0.0336626433,0.0054957243,0.0028525258,-0.0280711241,0.0280995071,0.01988253,0.0203366634,0.0261978246,0.0255166236,-0.0134324161,0.021656489,-0.0219261311,-0.0222809222,0.0250624903,0.0137801124,-0.0098277321,0.0040730094,0.0159088634,0.0132408291,0.0285820253,-0.0094161732,-0.0223234985,-0.006854577,0.0132904993,0.0019584505,0.0409003943,-0.0258714166,0.0154121546,0.0351385772,0.0041510635,-0.0039914073,0.0284684915,-0.002758506,-0.0343154594,-0.0018697527,-0.0318744928,-0.0145322708,0.0249773413,-0.0121977413,0.0256585404,0.014255533,0.0167461708,-0.0179808475,-0.0242961403,-0.0028809092,0.0461513139,0.0118855238,0.0036969301,-0.0321015604,0.0161643121,-0.0093168318,0.0073016146,-0.017285455,-0.0243387148,0.017342221,-0.0147309545,-0.0221248139,0.0068936041,-0.0272763912,0.0074435314,-0.0231182314,-0.0002425889,-0.012070016,0.016192697,-0.0178531222,0.0056234496,-0.0089620398,0.026737107,0.0081247315,-0.0108708199,0.0151992794,-0.0195419304,-0.0024516112,0.0246083569,-0.0099838404,0.0030210519,0.0328679085,0.014773529,-0.0024817684,-0.0168455131,0.0037146697,0.0001958007,-0.0162352715,-0.0063046496,0.0074222437,-0.0232175738,0.0485355146,0.0194993559,0.022366073,0.0192013308,0.0400488935,-0.054751467,0.0051090014,-0.0219545141,-0.0109417783,-0.0399353616,-0.0061308015,-0.0072732312,0.0212875064,-0.0225221813,0.0031789343,0.0118216621,0.0072732312,0.0218409821,-0.0045448826,-0.0351101942,0.0209752899,0.0200244468,-0.0263823159,0.0162636545,0.044703763,0.0098277321,-0.0561706312,0.0026378769,-0.0188181549,0.0127370246,-0.0186620466,0.0156676043,-0.0003113298,0.0389703289,-0.0003113298,0.0093594072,-0.0214010403,-0.0037217657,-0.0091039566,0.0194567814,0.0293767583,0.0057440787,-0.0226215236,0.0313635916,-0.0284968745,0.0351669602,-0.0017899245,-0.0193290561,-0.030313408,0.0313068256,-0.0107927658,0.0329530612,0.0164339542,0.0355643257,0.0193290561,-0.0031576466,0.0114810616,-0.0295186751,-0.0014732728,-0.0007180098,-0.0132621164,-0.0473150313,0.0308526922,0.0256869234,-0.0027460882,0.0354507938,-0.0010883238,-0.0137304412,-0.0096929111,0.0079828147,-0.0418938138,0.0093523106,0.0032906937,0.0224654153,-0.0340032429,-0.0347979777,0.0342303105,-0.0186052807,0.0257578827,0.0099483607,0.0150573626,0.0123112742,-0.0090329982,0.0095793782,0.0183498301,-0.0032108654,-0.0017455755,-0.0157385636,-0.0186194722,-0.0307959262,-0.0471163467,0.0206488818,0.0194993559,-0.0010040607,0.0004450419,-0.0198967215,0.0264106989,0.0077912272,0.0066381539,-0.0020027994,-0.0040978449,-0.0089478483,-0.0007375234,0.0056624766,0.0162068885,0.0025172476,-0.0086143445,-0.0002441411,0.0178105459,-0.0037927241,-0.0132692121,0.0211313982,-0.0226073321,-0.0272905827,0.0282840002,-0.0036898344,-0.0256585404,0.0278298669,-0.0084440438,-0.0141845746,-0.0122474115,0.010076086,0.0095793782,0.028539449,0.0487625822,0.0163062289,0.012424808,0.0341167748,-0.0014058624,0.0137020582,-0.0100477031,0.0424047112,0.0033722958,0.0177821629,-0.0110624069,0.007113575,-0.026623575,0.0144825997,-0.003487603,0.0412977636,-0.027418308,0.0370118767,-0.001898136,0.0203792397,0.0188749228,0.0145606538,-0.0258146487,-0.0049457974,0.0323286243,-0.0268364493,0.0086923987,-0.0025101518,0.043284595,0.018023422,0.0157811381,-0.0114739658,-0.0228202064,-0.0107927658,0.0250057243,-0.0117010325,-0.0036685469,-0.01911618,0.0082382653,0.0331233591,0.0210746303,-0.0182221048,0.0128505575,0.0547798499,0.0002118772,0.0065175248,-0.015128321,-0.0186904296,-0.0040481742,0.0412693769,0.0029110664,-0.0159656294,-0.0092813531,0.0121480701,-0.0109062986,0.0067694271,-0.0150289796,0.0129853785,-0.0348831266,0.026623575,0.0127015449,-0.0099483607,0.022366073,0.0035798489,0.0330098271,0.0074790106,0.0072661354,0.0442212448,0.0151425125,0.0103812069,0.0169732384,0.0075712563],"107":[0.0280503556,-0.0037357453,0.0614928044,-0.0004420961,0.0702119321,0.0335571766,-0.0094648441,-0.0039902921,-0.0169793572,0.0245368909,0.0546666458,-0.0271755755,0.0168789718,-0.0281077195,0.0584812649,0.0573913716,0.0133296559,-0.0182843581,-0.0470660888,-0.0134372106,-0.0002545469,0.0162479822,0.036884211,0.0273189824,0.0073997872,-0.0129639683,-0.0461196043,0.0620664321,0.0035295982,-0.062525332,0.005517574,-0.0519132353,-0.0412437767,0.0348191522,0.029140247,0.0295131058,0.0353354178,-0.0239919461,0.0215970539,0.0057577803,-0.0035457313,0.038834542,0.0020507162,0.0417887196,-0.0220846366,0.0027211427,-0.033155635,-0.0045388229,0.0057721208,0.036740806,-0.0343602523,0.0135160843,-0.0158034209,-0.0109132519,0.0201056227,-0.0323525593,-0.011701989,0.0494466387,-0.0041372841,0.000263958,0.0091923717,-0.0398383886,0.0328688212,0.0441979542,-0.0219555702,0.0300867315,-0.0356222317,0.0417887196,-0.0340734385,0.006417451,0.0195893589,0.0090131126,0.0137742162,-0.0122254239,0.0290685445,-0.0583091751,-0.0505078509,0.0475823544,0.0122899571,-0.0102822622,0.015602652,0.0036084719,-0.0197184253,0.0024002702,0.0162623227,-0.0383182764,-0.0080164364,-0.0300580505,-0.0007430261,0.0376586057,0.0113434726,0.0447142199,0.0102679217,0.0128349019,0.0362245403,0.0401252024,0.0062704594,-0.0155596305,-0.0138315791,0.0434235595,0.0142904809,-0.0354501419,-0.0253973324,-0.0103037739,0.0169363357,-0.0172805116,0.0278065652,-0.0142187774,0.0129998205,0.0020327903,-0.1078992262,-0.0058043874,-0.0446568541,-0.0021403455,-0.0282367859,-0.0147565529,-0.0307750851,0.0227299668,0.0018006507,-0.0239776056,-0.0201056227,0.007349595,-0.0215683728,0.0240636487,0.0386050902,-0.012605452,-0.0061342227,-0.0281077195,-0.0400104783,-0.0201916676,0.0310905799,0.009228223,0.0565882958,-0.025210904,-0.0285809617,-0.0180405658,-0.0642462149,-0.0164630935,-0.0144840796,-0.0160041917,0.0083677825,-0.0501349941,-0.0076866006,-0.0122684455,-0.0440258645,0.0101460265,-0.013508914,0.0250101332,-0.0185568314,-0.0251535401,-0.0030330524,-0.0172374882,-0.0333850868,-0.0173808951,0.0554410405,0.0245225504,0.0282654669,0.0281650815,-0.0187002383,-0.0579649992,-0.0282941479,0.0333850868,-0.0038612261,0.0062740445,-0.0277348608,-0.0071058036,-0.0378306955,-0.0325533263,-0.1179376915,-0.0333564058,-0.0161619391,-0.0564162061,-0.0042484244,0.0206362288,0.0472955406,-0.0093788002,-0.0081024803,-0.0498768613,0.0150433658,-0.0482993871,-0.0517411493,-0.0026297208,-0.0200912822,0.0337579437,-0.031291347,0.0021062864,-0.0476683974,0.0163627081,0.0185855124,0.012082017,-0.036769487,0.0615501702,0.0291976109,0.0214249659,0.0456033386,-0.0558425821,0.0120748468,0.0210377667,-0.0337292627,0.0177680943,0.0686631426,-0.006944471,0.0767512843,0.0020919456,-0.0079590734,0.0067006797,-0.0030097486,0.0133368261,-0.0519992821,-0.0302875005,0.002568773,-0.0113578131,0.0058868462,-0.0037429156,-0.0359664075,0.0204211175,-0.0464637801,-0.0139104528,0.0208800193,-0.0071990178,0.0006708746,0.0186858978,-0.005517574,-0.0301154125,-0.0269317832,0.0534046665,0.0296278298,-0.0353067368,0.0398097076,-0.007758304,0.0032499551,-0.031004535,-0.0185568314,-0.0238341987,0.0206792504,-0.006302726,0.0231028236,-0.0121752312,0.0138387494,-0.0434522405,0.0077511338,0.0046248669,-0.0202633701,0.0285522807,-0.0229163952,0.0431654267,-0.0171944667,-0.0604029149,0.0221276581,0.0555844493,0.0452018008,-0.0036210199,0.0214249659,0.0031029631,-0.0158751253,-0.052486863,-0.0148282563,0.0208226573,0.0193168856,-0.0199048538,0.0030975854,0.0018105099,0.0010011583,-0.0115514118,-0.0320944265,0.0159468278,0.0325246453,-0.0376586057,0.0268027186,-0.0086187441,0.0546666458,0.0254833754,0.0336432196,-0.0690073147,0.0087980032,-0.0256554633,0.0103037739,-0.0041803061,-0.0021582714,0.0172374882,0.0110638291,-0.0274480488,0.0163340271,-0.0053777522,0.0256984867,-0.0201916676,-0.010189048,0.009665614,-0.0071201441,-0.0303448644,-0.0072778915,0.0230454616,0.0057828762,-0.0126843257,0.0109491041,0.0133655071,0.0121465502,-0.0172374882,-0.0461769663,-0.0108845709,0.0128062209,0.0120605063,0.0034023246,-0.0281364005,0.0254977159,0.035077285,-0.0256554633,-0.0014224155,0.0058079725,0.0029900302,0.00054629,-0.0062919701,0.0140538597,0.0021995008,-0.0456893854,-0.011644626,0.0517124683,-0.0342455283,-0.0279929936,-0.0267740358,-0.0210090857,-0.0714165494,-0.0050335764,-0.0027623721,0.0187432598,-0.0080020959,0.0137311947,-0.0100814933,0.0382322334,-0.0027318981,-0.0042161578,-0.0246802978,0.0226582624,0.0237911772,-0.0072850618,-0.0531178527,0.0018481542,-0.0077941557,-0.009228223,-0.0003502261,-0.0216687564,0.0026153803,-0.0587967597,0.0097588282,0.0426778421,0.0150720477,-0.0171084236,-0.0045926007,0.0021654416,0.0275627729,-0.0153301796,-0.0212958995,0.0231888685,-0.0226295814,0.0273189824,-0.0014932225,0.0068476712,-0.046865318,-0.0125265783,-0.0052701975,0.0015998813,0.019474633,0.056158077,-0.0042018173,-0.0019252354,0.0521426871,-0.0621237941,0.038805861,0.0001769056,-0.0171657857,0.0154592451,-0.003986707,-0.0327254161,0.0023124334,-0.0430793799,-0.0018589097,0.0444560871,0.0321231075,-0.0247806832,0.0433088318,0.050565213,0.0188723262,0.0124692153,-0.0197901279,0.0385764092,0.066368632,-0.0214393064,-0.0158894658,-0.0589688458,-0.0261287056,0.033212997,0.0132579524,-0.0153301796,-0.0386337712,0.005879676,-0.0227012858,0.0061055417,0.0087549808,0.0777264461,-0.0089700911,0.0382322334,-0.0177824348,-0.0347904712,-0.0009285586,0.0218265038,-0.0041982322,0.0181122702,0.0019610871,-0.0153875425,-0.0051984941,0.015487927,-0.0068154046,0.0503070801,-0.0104400096,0.0283371694,-0.0360524505,-0.016563477,0.0559859872,0.0108702304,0.0642462149,-0.020378096,-0.0226726048,-0.0132938037,-0.031004535,-0.0239202417,0.0359664075,0.0134013593,-0.0076794303,-0.0569898337,-0.0591409355,-0.0337579437,0.0006426414,0.056158077,-0.0507373028,-0.0217261203,0.0304309074,-0.0002809876,-0.0098878937,0.054494556,0.0224001314,0.0015299706,0.013594958,-0.015631333,0.0340447575,-0.0254260134,-0.0457754284,-0.0687778667,-0.0324672833,-0.0206935909,0.0216544159,0.0100886635,-0.0197184253,-0.025296947,0.040641468,-0.035105966,-0.0414445437,0.0206935909,-0.010189048,0.0363966264,0.0112861097,-0.0266593117,0.0137742162,-0.0375725627,-0.0311479419,-0.0070125889,-0.0484714732,0.0393508077,0.016506115,0.0247950237,-0.031205304,0.0151580917,0.0401252024,-0.0413298197,-0.0307464022,-0.0187145788,0.0215253495,0.0254116729,-0.0064748139,0.0172518287,-0.0077511338,0.0177967753,-0.0250388142,-0.0063995253,0.0565882958,0.0133081442,0.0065321764,-0.0042555947,0.0158607848,-0.0145988055,0.0047646887,-0.0156169925,-0.0087549808,0.075718753,-0.0173091926,0.0074858312,0.0050801835,-0.0778411701,-0.0284232143,0.0034184579,0.0124046821,0.0317215696,-0.000325354,-0.0112645989,0.0676879734,-0.031320028,0.0259135962,-0.0234613419,-0.0037572563,0.021482328,-0.0293266755,-0.0117593519,-0.0102249002,0.0253399685,0.0416166335,-0.0147278709,0.0229880996,0.0006888005,0.0083032493,-0.0105619058,-0.0270321686,-0.028208103,-0.0328688212,-0.0202777125,0.0048112958,0.0093357777,-0.0198761728,-0.0534620285,0.0046678889,-0.034905199,-0.0116302855,0.008676107,-0.0214536469,0.0129783088,-0.0053669969,-0.0480986163,0.025067497,-0.0190300737,-0.0229880996,-0.0548674166,0.050565213,0.0141112218,0.0791031495,0.0178541373,0.0234613419,0.0143119916,-0.0096512726,-0.0096871248,-0.0105762463,-0.0011131947,0.0363966264,0.0209087003,-0.0437390544,0.0196610633,0.0084825084,0.0236334298,0.0174239185,0.0077224523,0.0131647382,0.0016617255,0.0067616273,0.0041372841,-0.0139176231,0.0066648279,-0.0181409512,-0.0125624295,0.0195319969,0.0111713847,-0.0404120162,-0.0707855597,0.0324959643,0.0085040191,-0.012196742,0.0110423183,0.0110064661,0.0145988055,0.0063493331,-0.0232462306,-0.0211381521,0.0070950477,-0.0007403372,-0.0289394781,-0.0188723262,-0.0445994921,0.0374291576,-0.0296565127,0.0078658592,0.0240206271,0.0255694203,0.0455746576,-0.0207079314,0.0143836951,0.0132292705,-0.0108056972,0.0053992635,0.0085111894,-0.0088625355,0.015631333,0.0037142343,-0.0182986986,0.0214106254,0.0436816886,0.0049439468,-0.0045961859,-0.0219985917,-0.0164917745,0.0055856924,-0.0059621348,0.0012727347,0.0450870767,-0.0129567981,0.0247233193,0.0086330855,0.0115442416,-0.0230741426,-0.0195463374,-0.0185711719,0.0068620122,-0.0006278526,0.0027390686,-0.0150433658,-0.0516837873,-0.0303735454,-0.0010181877,-0.036941573,0.0200769417,0.0076292381,-0.0138172386,-0.0278926082,0.0170654003,0.0211955141,-0.0273189824,0.0126914959,0.0444560871,0.001503978,0.0096010808,0.0355075076,0.033212997,0.024336122,-0.0002771783,-0.0275914557,0.0201199651,0.0347044282,-0.014641827,-0.0009733732,-0.0072778915,-0.0272042565,0.0040763365,0.0197901279,-0.0043990016,-0.0082315467,-0.022443153,-0.0347617902,0.0548100509,0.0337579437,0.0439685024,-0.0298286006,-0.0139964968,-0.0053669969,0.0203350745,0.005151887,-0.0574774183,-0.0311479419,-0.0346757472,0.0071595809,-0.0210377667,-0.0029488008,0.0320370644,0.0124046821,0.0316355228,0.0053956783,-0.0412150957,0.0151724322,0.0209517237,0.0356795937,0.0443126783,0.0032266513,0.0302875005,-0.0085040191,-0.0034292135,0.0364539921,-0.0189583693,0.016592158,-0.0276488177,0.0179401822,-0.0038648113,0.0111355325,0.004366735,0.0099739376,0.0453165248,0.0183130391,0.0018427764,-0.0055139889,0.0118669067,-0.0086904475,-0.0173235331,-0.0181839727,0.0167785883,0.0412724577,-0.0455172956,-0.0363966264,-0.0025669804,0.029111566,-0.0336719006,-0.0172948521,-0.0272759609,0.0058509945,0.01938859,-0.0381748714,0.0177250709,-0.0320083834,-0.0569611527,0.002801809,-0.0309184901,0.0102105588,-0.0055211592,-0.0213676021,-0.0176677089,0.0206649099,-0.0415592715,-0.0133153144,-0.0597719252,-0.0054530408,-0.0379454195,-0.0317502506,0.0239059012,0.0052809529,0.0032607105,0.0390353128,-0.0159181468,-0.0119888028,-0.0010728616,-0.0030868298,0.0095508881,-0.0006941782,0.0347617902,-0.0096154213,-0.0322378315,-0.0096871248,-0.0494466387,-0.0134874033,-0.0117163295,-0.0058294837,-0.010189048,-0.0234756824,-0.005180568,-0.0395802557,-0.0029667267,0.0398383886,0.0243791435,-0.0071488256,-0.0206505693,0.0137311947,-0.0042627649,0.0005781084,0.0058258986,0.0093501192,-0.0124835558,0.0039400999,-0.0038002783,0.0270034876,-0.0021815749,0.0354501419,-0.021338921,0.0223857909,0.0218408443,0.0430506989,-0.0159181468,-0.0048256363,-0.0079303924,-0.0226869453,-0.0210664477,-0.021338921,0.009199542,-0.0132005895,0.0440545492,0.0155309485,0.0069014491,-0.0250244737,0.0205215029,-0.0203063935,0.004280691,-0.0017513547,-0.0272759609,-0.0064604734,0.0013426455,-0.0001532659,0.0391787179,0.0123544894,0.005922698,-0.036740806,-0.0248093642,-0.0142546287,-0.0175816659,0.0248380452,0.0435956456,-0.0230024401,0.0033610952,-0.0827743635,-0.0140968813,0.0364539921,-0.0125839403,-0.0087191295,0.0065393471,0.0204354599,0.044972349,0.054408513,-0.020578865,0.0231601875,-0.0432801507,-0.0180979297,-0.0300006885,-0.0049080951,0.0008030777,-0.0044420236,0.0300293695,0.0211955141,0.0124046821,-0.0095580583,-0.0054602111,-0.02812206,0.0496187285,-0.0089844316,-0.0166351814,-0.0056000329,0.0333277248,0.023403978,-0.0066576572,0.0050264057,0.0080522876,-0.0094863549,0.0082530575,-0.0149143003,0.0087047881,-0.000217911,0.020578865,-0.0010988541,0.0037321602,-0.0385477282,-0.054437194,0.0358516835,-0.0352206938,0.0547240078,-0.0209230427,-0.0171944667,0.0241210125,-0.0035511092,0.0219699107,0.0264011789,0.0150863882,-0.0074930014,-0.011701989,-0.0152154537,0.0237481538,-0.0534620285,-0.0068942783,0.0122325942,0.0035009168,-0.0260856841,-0.0027928462,0.0295704678,-0.05432247,-0.0255981013,0.0103969881,0.0039293445,0.062640056,-0.0148712778,0.009228223,0.0210090857,0.0469800457,-0.0004642793,-0.0277635437,0.0100958338,-0.005413604,0.0230884831,-0.0235617254,-0.0016222886,-0.0126269627,0.0276488177,-0.0076005566,-0.0105690761,0.0292836539,-0.0015407261,-0.0328975022,-0.0200052392,-0.0018051323,0.0100384708,0.0075647049,0.0493605956,-0.0217978228,0.0038612261,0.0134443808,0.0245368909,0.0201199651,0.0199908987,-0.0102679217,-0.0118310554,-0.0038038634,0.0394942127,0.0104543502,0.0225722194,0.0167355649,-0.0041552102,0.0002601488,-0.0014170378,-0.0072778915,-0.0133081442,0.0072563807,-0.0146561675,0.001218061,0.0382322334,0.0170367192,0.000662808,-0.0001336596,0.0162910037,-0.0095078666,0.0095222071,-0.035105966,0.0296851937,-0.009142179,-0.0502210371,0.0358230025,-0.0025114103,0.0127273472,0.006607465,-0.0127918804,0.0085183596,-0.0172231477,0.0132077597,0.0838642567,0.004133699,0.048700925,-0.009780339,-0.0196467228,0.0307464022,-0.0078443484,-0.0103396252,0.0291545875,-0.0022407302,-0.0091350088,-0.0054709669,0.0149286408,0.0285092574,0.0022353523,-0.0248380452,0.0099882791,-0.0142044369,0.0235043634,0.0187002383,-0.0187719408,-0.0180262253,0.0875354707,0.0015308668,0.0721622631,-0.0299433246,-0.0232462306,-0.0096871248,0.0113506429,0.007073537,0.0535193905,0.0249384306,0.0107483342,-0.0013614676,-0.0357656367,-0.0284949169,-0.0107053127,-0.0079232221,0.0094648441,0.0159611683,-0.0024701809,0.0161762796,0.0209230427,0.0360237695,0.0204354599,0.012605452,0.0133439964,-0.008238717,0.0124835558,-0.0300580505,0.0052701975,0.0064246217,0.0342168473,0.0432514697,-0.0095222071,-0.0418460853,-0.0042089876,-0.0036425309,0.0255263988,0.0064963247,0.0119099291,0.0004660719,0.0112287467,-0.021281559,0.0124046821,0.0455746576,0.0003477613,-0.0174239185,0.0171657857,-0.0437103696,0.0091350088,0.023432659,-0.0123473192,0.0143406726,0.0317502506,0.013157567,-0.0025132028,-0.0627547875,0.0161189158,0.020578865,0.0067186053,0.0268027186,-0.0269031022,-0.0136379804,0.0167068839,0.0057255137,0.0057183434,-0.0052056643,-0.0295704678,-0.0380601473,-0.0036102645,-0.0140108373,-0.0009402104,0.0035421462,0.0438250974,-0.0094648441,-0.0076220678,-0.0184134245,0.0246229358,0.0259566177,0.0184134245,0.0161475986,0.0133439964,0.0103181144,0.0274767298,0.0054207742,-0.0023464926,-0.0095437178,0.0471808128,0.0112287467,0.023403978,-0.0104973726,-0.0276918393,-0.0212672185,-0.0066863387,0.036884211,0.0101531968,0.0572192855,-0.034962561,-0.0034202505,-0.0017441844,0.0289968401,-0.0012422608,0.0341021195,0.0206649099,0.0042663501,0.0187576003,-0.0085685523,-0.0199335348,-0.0119959731,0.0255120564,0.0037249897,0.0051913238,-0.006521421,-0.0182986986,-0.0254403539,-0.015516608,0.0320370644,0.009228223,-0.0185281504,0.0415019095,0.0154018831,-0.0231028236,0.0045675044,0.0279643126,-0.0496760905,-0.0215827134,-0.0024970698,-0.0323812403,-0.0012108906,0.0114151761,-0.0245368909,0.0067078499,0.0420755334,-0.0166925434,0.0005794528,-0.031320028,0.0318362936,-0.0260426626,0.0046714745,0.023375297,-0.0226869453,0.0419608094,-0.0187432598,0.0049582878,-0.000942003,0.022443153,0.0084753381,-0.0210377667,0.0069516413,-0.0095723988,0.0178684779,0.0306029953,0.0357369557,0.0095078666,0.008762151,-0.0362532213,-0.0052558566,0.0185424909,-0.0211094711,0.0188006219,0.0219985917,0.0523721389,-0.0043595647,-0.0250961781,0.0273189824,0.0364253111,0.0284232143,0.026229091,0.0076364083,0.020578865,0.0087406402,0.0497621335,-0.0084538264,-0.0055713514,0.0265589263,-0.0136881722,-0.033184316,0.0144195464,0.003486576,-0.02131024,0.0055749365,0.0276057962,-0.0033252435,0.0069839079,0.0200339202,-0.0187862813,0.0015165262,0.0044635343,0.0145055903,-0.0053096344,-0.0018893837,0.0059549646,0.0105117131,-0.0211955141,0.0215540323,0.0124405334,-0.0151294097,0.0238772202,0.0653361082,0.0071129738,-0.0028681345,-0.0029667267,0.0017997544,0.0006829745,0.0102607515,-0.0132364407,-0.0022317672,0.0245368909,-0.0102033885,0.007030515,-0.0233179349,0.0044778753,-0.0131647382,-0.0124835558,-0.0170797408,0.0235760659,0.0390639938,-0.0107770162,0.016477434,0.0265876073,-0.0142044369,-0.0297999177,-0.0298572816,0.0060410085,0.0167642459,-0.0110494886,-0.0063672587,0.0163913891,-0.0061342227,-0.0100958338,0.0237051323,0.0469800457,0.0001608844,0.020349415,-0.0223427694,-0.0012467422,0.0182413366,-0.008181354,-0.0321517885,-0.0288390927,-0.0084394859,-0.0067401165,-0.0244651884,0.0256267823,-0.0082172053,-0.0176533684,-0.0161332563,-0.0423049852,-0.0326106921,-0.0097086355,-0.0023769666,-0.0271755755,0.0036927233,0.0134372106,0.0402399302,0.0121608907,-0.0021511009,-0.0019825981,-0.0304309074,0.0099811088,-0.0207939763,0.0107196532,-0.0480986163,-0.0359377265,0.0164344106,-0.0351633318,0.000985025,-0.0341021195,0.0050837686,0.028093379,0.0168359503,-0.0072456249,0.0304595903,0.0144625688,-0.0064533027,0.023174528,0.0324959643,-0.0459761992,-0.0161332563,0.0242931005,-0.0290398635,0.0245942548,-0.0249814522,-0.0002310193,0.0187719408,0.0028161497,-0.0272329375,-0.0030205043,0.0173378736,-0.0123975119,0.0127847102,0.0190300737,0.0038504708,-0.0126269627,-0.0575347804,-0.0080020959,0.0044922158,-0.0228877142,0.0333850868,0.0135160843,-0.0456893854,0.0319510177,0.0179115012,-0.0323525593,0.0050837686,-0.0315207988,0.0148856184,0.003099378,-0.0298286006,0.0264872238,0.0069982484,0.0325246453,0.0086259143,0.0401825644,-0.0075145126,0.003465065,-0.0219125487,-0.0426778421,0.025296947,0.0029972007,-0.0225578789,0.0008313109,0.0105977571,0.0068082344,0.0104686916,-0.0182700176,-0.0021349676,-0.0100097898,0.0124477046,0.0087047881,0.0328688212,0.0001743288,-0.0000036727,0.036884211,-0.008382123,-0.0341021195,0.0301154125,-0.002715765,-0.0336719006,0.0209947452,-0.0266593117,0.0116948187,0.0269891471,-0.0033915692,0.0176820494,0.0027354835,0.0147708934,-0.0083677825,-0.0179115012,-0.0006341267,0.0579076372,0.0099380864,0.0095150368,-0.0170080382,0.0220989771,0.0041444544,-0.0089700911,-0.0006713227,-0.0144052058,0.0097086355,-0.0274193659,-0.0301154125,-0.0014752967,-0.02427876,0.0109562743,-0.0042627649,-0.0065716133,0.0086617665,0.0169936977,-0.0344176143,0.0069946633,0.0035529018,0.0345323421,-0.008210035,-0.0047180816,0.0271755755,-0.0028269051,-0.0005229864,0.0294844229,0.0088051734,0.0152154537,0.0288821161,0.0195893589,0.0160615537,-0.0220416151,0.0159038063,-0.0243791435,-0.006374429,0.0046822298,0.0005149198,-0.0096154213,0.0373144299,0.0217261203,0.0327540971,0.0047969553,0.0012315053,-0.0476110354,-0.0181122702,-0.0272042565,-0.0068297456,-0.0329261869,-0.0025329213,0.0139893265,0.0023626259,-0.0167212244,0.0142116072,0.0012243349,0.0284949169,0.0248523857,-0.0204498004,-0.0062955553,0.0091780303,0.0208943598,0.0023411149,0.0013256159,0.0413871817,0.0101245148,-0.0428499319,-0.0096225915,-0.0208800193,0.0274337083,-0.0129639683,0.0266162883,0.0162336417,0.0271755755,-0.0087406402,-0.0037285751,-0.0064855693,-0.0168646313,-0.0153445201,0.0188006219,0.0377446525,-0.0197471064,-0.0188723262,-0.0103898179,-0.0375438817,0.0454312526,-0.0112502584,-0.0467505939,-0.0297712367,0.0246659573,-0.0022568635,0.0442266352,0.0118167149,0.0288390927,0.0192165021,-0.0056322995,-0.008382123,-0.021281559,0.0008447553,-0.0008555108,-0.0135447653,-0.0157747399,0.0370563008,0.0311479419,0.0030832447,0.0049331915,0.0019575018,-0.001884006,-0.003814619,0.0023984776,-0.0435956456,-0.0022174267,0.0157747399,0.0092784157,-0.0402399302,-0.01213938,0.0148139149,-0.0029165344,0.0374004766,0.0096727842,0.0018714578,0.0042699352,-0.0012790088,0.0002742654,0.0074643204,0.0026243431,-0.0318936557,-0.0124763856,-0.0062274374,-0.0208513383,-0.0437103696,0.0257271677,-0.0066146352,-0.0236621108,-0.0135017438,0.0117808627,0.0150146848,0.0131360563,0.025268266,-0.0100169601,-0.0056932471,-0.0089557506,-0.0057613654,-0.0090776458,0.0187002383,0.0041874764,0.0064246217,0.0124118524,-0.0106766308,-0.0084609967,-0.0072599659,0.0300006885,0.0122254239,-0.0113864942,0.0127918804,-0.0047861994,0.0134085296,0.0446568541,-0.0045639193,-0.012053336,-0.0221563391,0.0054207742,-0.0049367766,0.0083892941,0.0260426626,0.0083462717,0.0107841864,0.0105905868,0.0125911105,-0.0206505693,-0.0117521817,0.0411290489,-0.016305346,-0.0025741509,-0.0105547355,0.0198618323,-0.0130786942,0.0087047881,0.0184134245,0.0240493082,-0.022185022,0.0226726048,-0.0048829992,0.0040763365,0.0099380864,0.0076220678,-0.0170367192,-0.0295131058,0.054465875,-0.0209517237,-0.0131360563,-0.0086617665,0.0163913891,0.0196323805,0.0385190472,-0.0013713269,0.0143550141,-0.013480233,0.0279929936,-0.0203924365,-0.0120891873,-0.0276918393,-0.0158464443,0.0374578387,0.0229737572,-0.0109347636,-0.007292232,0.0291545875,0.0085183596,0.0105834166,-0.0177680943,-0.0392360799,0.0186285339,0.0276631583,0.0023052632,-0.0042376691,-0.0366834402,0.0111713847,0.0156456735,0.0143621843,-0.0093644597,-0.0221276581,-0.0404120162,-0.0123975119,0.0250531565,-0.0307464022,0.0132436119,0.023174528,0.0269891471,0.0131073752,0.0055892775,0.0167785883,0.009228223,0.01021773,0.016563477,0.0150003443],"108":[0.0306778215,0.0106641958,0.0300350487,0.0048792348,0.0404947251,0.0141044939,-0.0253603328,0.0041268975,-0.0535254963,-0.0399980359,0.019253986,-0.0423646122,0.0086701373,-0.0179100055,0.0550447777,0.0707050785,0.0280482955,-0.0072421571,-0.0302103516,0.0454031788,0.0166244581,-0.0039954213,0.0213429984,0.0264121443,0.0070157256,-0.0356154926,-0.0677833781,0.0708219409,0.0149590904,-0.0641604736,0.0125340819,-0.0286034178,-0.0269380491,0.0340085588,0.0584631637,0.0333949998,0.0095977755,-0.0468932427,0.0404362902,-0.0161277689,-0.0085021397,-0.021474475,0.0283258557,0.0426275656,-0.0087212669,-0.0164491553,-0.0449941382,-0.0202619713,0.015265869,0.0550447777,-0.0252580736,-0.0147983972,-0.0024670083,-0.0302103516,0.0331028327,-0.0238118339,0.0066687744,0.0377775468,0.0046454989,-0.0301226992,-0.0000106568,-0.0536423624,0.0170481037,0.0368133858,-0.0142140575,-0.0260907579,-0.039413698,0.0294945352,-0.0162300281,0.0254187677,0.061180342,0.0321094543,0.0258716308,0.0071289414,0.038449537,-0.0688936263,-0.0754382238,0.0598947965,-0.0021730124,-0.0523275994,-0.0159086417,0.0256378949,-0.017150363,0.0152512603,-0.0184066929,-0.0485001765,-0.040728461,-0.0276976917,-0.0058068736,0.0315835476,-0.0206271838,0.0493182503,-0.0036448175,0.0234320126,0.0333365686,0.0485586114,-0.0036539477,0.0218250789,0.0334826522,0.0021401434,0.0128408596,-0.0460459515,-0.0024688342,-0.0065665147,-0.0139072798,0.0101236813,0.0111243632,-0.009999509,0.0390923098,-0.0039260308,-0.0865406767,-0.0082245776,-0.0120373927,-0.0134105906,-0.0213429984,0.0245276503,-0.051889345,-0.0470977612,0.019137118,-0.0416634046,-0.0279168189,0.0082537951,0.0096562095,0.0116210515,0.0132718105,-0.0539345331,-0.0391507447,-0.0398227349,-0.0306778215,-0.0257109366,0.0400564708,-0.0253457241,0.0232567117,-0.0362874828,-0.0349435024,-0.0105546322,-0.0674327761,-0.0451986566,-0.0446143188,-0.0294653177,0.0039589,-0.0070997244,-0.0232567117,-0.0254187677,0.0067345123,-0.0207586605,0.0096927313,0.0238848757,-0.0146669205,-0.0378359817,-0.0020068409,0.0075087622,-0.062933363,0.0307654738,0.0538468808,-0.0004293526,0.0431242548,0.0366088673,-0.048354093,-0.0242208708,0.0411959328,0.0223655943,-0.0036466436,-0.0112996642,-0.0464549884,-0.001679063,-0.0208024848,-0.0432119034,-0.0819828287,-0.007859366,-0.0491429493,-0.0615309477,-0.0193416364,0.0288663693,0.0465134233,-0.0246591251,0.0340377726,-0.0269088335,-0.0252288561,-0.0239725262,-0.0601285324,-0.0256232861,-0.0617646836,-0.018567387,-0.0326061435,0.031612765,-0.0586676821,0.0278291684,0.0302980021,0.018172957,-0.037310075,0.0295821857,0.0334242173,0.0166390669,0.0273324791,-0.0552492961,0.0161715951,0.0033069963,-0.0437670276,0.0275808237,0.0054745306,0.0220588148,0.0563887581,-0.0184651278,0.0102624623,-0.0117379194,-0.0016991496,0.0035297757,-0.0669653043,-0.0320218019,0.0370471217,0.0076913685,0.0174863581,-0.0055621816,-0.0369010381,-0.0005615137,-0.0036849908,-0.0207002256,0.0058506988,0.0007979886,0.0018991033,0.0702376068,0.0069682482,-0.0266166627,-0.0104596764,0.0330151804,0.0339501239,-0.0270403083,0.0413128026,-0.0015503257,0.0240893941,-0.0321971066,0.0098242071,-0.0218542963,0.0251119882,0.0075525879,-0.0137977162,-0.0015676733,0.0278145596,0.0114603583,0.0039917692,0.0049011474,0.0388001427,0.0323431902,0.0167705435,0.0318757184,-0.0286034178,-0.0739189461,0.0305025205,0.0523275994,0.0289978459,-0.0023574445,-0.0013375896,-0.0094882119,0.0163615048,-0.0256086774,-0.0049340166,-0.0166244581,0.0280482955,-0.0189325996,0.030590171,-0.0463965535,-0.0007870322,0.0097219478,-0.0227454137,0.0296698362,0.0386832729,-0.0447019711,0.054168269,0.0240163524,0.0170481037,0.0166098494,0.0349435024,-0.0201158859,-0.0223509856,-0.0076621515,0.0123368669,0.00216023,-0.0018936251,-0.0058214818,0.0085313562,0.0100433351,-0.0234612301,-0.0105619356,-0.000959595,-0.0006057957,-0.0068586846,0.009429778,-0.0133302445,-0.0290562809,-0.0197360665,0.0125779072,0.0043935026,-0.017603226,0.0072494615,0.0167997591,0.0061063473,0.0022442287,-0.0280775111,0.0030203047,0.0301519167,-0.0139876259,0.0285011586,-0.0163030718,0.0022624894,0.0333949998,-0.0047185412,-0.0042693303,0.027741516,-0.0017475402,-0.0212845653,0.0042948951,0.049844157,0.020451881,-0.0172818396,-0.0301811341,0.0376022458,-0.0130526833,0.0049632336,-0.0471269786,-0.0423061773,-0.0601285324,-0.0022314463,-0.0128773814,-0.0169458445,-0.0464842059,0.0300642662,0.0006875119,0.0214890838,-0.0222779419,-0.002583876,-0.0414588861,-0.008370663,0.0216059517,0.0131914634,-0.0234466214,0.0058908723,-0.0363751315,0.0076694554,0.0337456055,-0.0323431902,-0.0439131111,-0.0794117376,0.0120812189,0.0370471217,0.0111754928,0.0098169036,-0.0285303742,-0.0359368771,0.0061392165,-0.0570899658,0.0161862038,-0.0391799621,-0.0151636098,-0.0317004174,0.0101455944,0.0071654627,-0.0093202144,0.0036868169,0.0096416017,-0.0161862038,0.0200282354,0.0599532314,-0.0032376058,0.0074612848,0.0159816854,-0.0423353948,-0.0046199341,0.0184943452,-0.0378067642,0.0120666102,-0.0461628176,-0.0171795804,-0.002578398,-0.0753797889,0.0104085468,0.0376898944,0.0351772346,0.037310075,0.0489384308,0.0459582992,0.0439423285,0.0151051758,-0.0216497779,0.0207586605,0.0556583367,-0.0106349783,0.0151343923,-0.0323431902,0.0000325552,0.0173694901,-0.0153243029,-0.0045615002,0.0087797008,0.0317588486,0.0289248042,0.0065519065,0.0322263204,0.0573529191,-0.0067454688,0.0375730284,-0.0024560518,-0.0219419468,-0.0308531243,0.0062341718,-0.0067089475,-0.0225847214,-0.0004729498,-0.0238994844,-0.0309699923,-0.0214014333,-0.0436209403,0.0385371894,-0.019706849,-0.0234758388,-0.0472730622,-0.0466887243,0.0433872044,-0.0224094186,0.0443805829,-0.0188741647,-0.0281213373,0.0119570466,-0.0238848757,-0.024892861,0.0243377388,0.0462796874,0.0312037282,-0.0117817447,-0.0580541268,-0.0673743412,0.010196724,0.0299766157,-0.0285888091,0.003031261,-0.0015548908,0.0375730284,-0.0135931969,0.0486754775,0.0218104701,0.0111827971,0.0003389625,-0.0082757082,0.0330151804,0.0213576071,-0.0669653043,-0.0397935174,-0.0248782523,-0.0423061773,-0.0171357542,0.0444390178,-0.0539929681,-0.0350895859,0.0266458802,-0.0550447777,-0.010079856,0.0099702924,0.0040976806,0.0330736153,-0.0012380693,-0.0426275656,0.0184797365,-0.0306486059,0.0091960421,0.0159086417,-0.0831515044,-0.0001244004,0.0023793573,0.03041487,-0.0160401184,0.008173448,0.0436501577,-0.0357907936,0.0016315854,-0.0547818244,-0.0072275489,0.0220003817,0.0003435277,0.0034275162,-0.0312913805,-0.0128554683,0.0161715951,-0.0302687846,0.0525613353,0.0259300638,0.0217666458,0.0108175846,-0.0311745107,-0.0005583181,0.0150321331,-0.0040100296,0.0083122291,0.0389754437,-0.0183774773,-0.0187280793,-0.0301811341,-0.0284135062,-0.0221172497,0.0073078955,-0.020846311,-0.0113800112,-0.0398519523,-0.0066870349,0.0546941757,-0.015265869,0.0140606686,-0.0467471592,-0.0314082466,0.0150905671,-0.0161569864,-0.0036703823,0.005156796,0.0262368415,0.0049449727,-0.016405331,0.0223655943,-0.009115696,-0.0024268348,-0.0163030718,-0.0429781675,-0.0217812546,-0.023870267,-0.0108979316,0.0117744403,-0.0058324384,-0.0163176805,-0.0182606094,-0.0325477086,-0.0097073391,-0.0049559292,-0.0044482844,-0.0196776316,0.0194585044,0.0307362564,-0.0518016927,0.0291731488,-0.0160255097,-0.036959473,-0.0351772346,0.0241040029,-0.0169312358,0.0631086603,0.0371932089,0.0366088673,-0.0144624021,-0.0151343923,-0.0427736491,-0.0259884987,-0.0207586605,0.0452278741,0.0431242548,-0.0411667153,0.0362290479,-0.0069865086,0.0038274236,0.0196630228,0.0044008065,0.0040063774,-0.0028376987,0.0066066883,-0.0073517212,-0.0034092555,0.0021419693,0.0187134724,-0.0534378439,0.0231398437,0.0171357542,-0.0266897064,-0.0315543301,0.0145208361,0.0048974953,0.009685427,-0.0105619356,-0.0310576428,0.0094516911,-0.00666147,-0.0308531243,-0.0305609554,0.0051604481,0.0072129406,-0.0085824858,-0.0005528399,-0.0322847553,0.033891689,-0.0422185287,0.0060186964,0.0267043132,0.0200866703,0.0257109366,-0.0274201296,-0.0009025306,0.0070632035,-0.0322263204,0.0078958869,0.0170627125,-0.004174375,0.0233881883,-0.0041962881,-0.0204080567,0.0325477086,0.0419263579,-0.0086847451,-0.0006888814,-0.0349142849,0.0144843142,0.0025181379,-0.0281797703,0.0078301486,0.0120593058,-0.013045379,0.0174717512,0.0037616855,0.0143893594,-0.0560965911,0.0039990731,-0.0097438609,0.0072531137,-0.001077376,0.0332781337,-0.0159232505,-0.0166390669,-0.0341546424,-0.0046126298,-0.0352941044,0.0230668001,0.0194731131,-0.0299035721,-0.0229499321,-0.0023866615,0.0213576071,-0.0061136517,-0.0043861982,0.0262076259,0.0073663294,-0.0020506664,0.013870758,-0.0073261564,0.0553953834,0.0215183012,-0.0071727671,0.0442052819,-0.006964596,-0.0011084189,-0.0212553479,0.0299766157,-0.0275077801,0.008370663,0.0139511051,-0.0035316017,0.0208755285,-0.0399980359,-0.0428028665,0.0230814088,0.0223655943,0.0028650896,-0.0207440518,-0.0397350825,-0.0150175244,0.0263244938,0.0079689296,-0.0368426032,0.0100360308,-0.0388001427,-0.0111243632,-0.0216497779,0.0174571425,0.0486170426,0.0178223532,0.0232128855,0.0273178704,-0.0105400234,0.030531738,0.0334826522,0.0269818753,0.0269672666,0.012475648,-0.0128262518,-0.0281651635,0.023183668,0.0329567455,-0.0123222582,0.0035498622,-0.0185235608,0.0309115574,-0.0021145784,-0.0118255699,-0.0137758031,0.0232859273,0.0318465009,0.017427925,-0.0249512959,-0.0102989832,-0.0111535797,-0.028311247,-0.0198529344,-0.0219419468,0.0210800469,0.0217520371,-0.0120081762,-0.0466887243,-0.0081880568,-0.0118840039,-0.0396474339,-0.0107810637,-0.0276976917,-0.0053394018,0.0280336868,-0.0201304946,0.0239579193,-0.0067308601,-0.0456661284,0.0146742249,-0.0389462262,0.0034001253,-0.0179830473,-0.0203204043,-0.0170773212,0.0324016251,-0.0323139727,-0.0022752718,-0.0328398794,0.0231690593,-0.025287291,-0.0060880869,0.0134105906,-0.0170773212,-0.0015211087,0.0313205943,-0.0372224227,-0.0137684988,0.0117160063,0.0156164728,0.023008367,0.0092544761,0.0176324435,-0.0102259405,-0.0258716308,0.0233735796,-0.0485586114,-0.0139803216,-0.0093494318,-0.0077717151,0.0074357199,0.0144697065,0.0197798908,-0.0435332917,-0.0270403083,0.0548986942,0.0029746532,-0.0118401786,0.0217520371,0.0141775366,0.0035206454,-0.0146084866,-0.009685427,-0.0164783727,-0.0207294431,0.016288463,0.0170773212,0.0172526222,0.0179100055,0.0502239764,-0.0030422173,0.0444098003,-0.0045834128,0.0423061773,0.005098362,0.0122857373,-0.0135128507,-0.0330443978,-0.0136005012,-0.0474483669,-0.0017913657,-0.0044957618,0.0619984195,-0.0040757679,-0.0052444469,0.0199698023,0.0187280793,-0.004017334,0.0076840641,0.0018826687,-0.0060113925,-0.0401149057,0.0074247634,-0.003118912,0.0125632985,-0.0004683846,-0.0207732674,-0.0075525879,-0.0163176805,-0.007318852,-0.0150759583,0.0044738492,0.0416049697,-0.0026258754,0.0020251016,-0.0576743074,-0.0263975356,0.0125267776,-0.0171649717,-0.014637704,0.0023519665,0.0276538655,0.0159378592,0.0432995558,-0.0293338411,0.0379236303,-0.0379820652,-0.0154703874,-0.0097438609,0.0115407044,0.0072019841,-0.0199551936,0.0211530887,-0.0180122647,0.0322263204,0.0056133112,0.0065153851,-0.0185089521,0.0343883783,0.0052882722,-0.0504869297,-0.012848164,0.0236657485,0.0223217681,0.0022917064,0.0136735439,-0.0157625582,-0.0227600224,0.012848164,-0.0162738543,0.0319049358,-0.0056498321,0.007377286,0.0150029156,-0.0190202501,-0.0209923964,-0.0269380491,0.0444098003,-0.0230668001,0.0440591946,-0.0200720616,0.0053941836,0.004981494,-0.0378944166,0.0212115236,0.0529411547,0.0101090726,-0.0174425337,-0.0167997591,-0.0141483191,0.0031116076,-0.0261784084,-0.0133156357,0.0263098851,-0.0012353301,-0.0275077801,0.0036338612,0.007231201,-0.0338332541,-0.0223948099,0.0173110571,-0.0042948951,0.0284573324,-0.0141191026,-0.0029162192,-0.0068112072,0.0542559214,0.0198383257,-0.0056279195,0.0107883671,0.0130526833,0.0223802011,-0.0234174039,0.0023903137,-0.0589306355,0.0022131857,0.0100725517,-0.0290124547,0.0239725262,-0.0136078056,-0.0113069685,-0.0048354091,0.0237826165,0.0003595057,0.0218981225,0.0423353948,0.0159816854,-0.0270695258,-0.0176470522,0.0272594374,0.0045468914,-0.0018899729,-0.0175886173,0.0205249246,0.002284402,0.0127386004,0.0204664897,0.0372516401,0.0522107333,-0.0108321933,-0.0123149548,0.026426753,-0.0104596764,-0.0315835476,0.0189033821,-0.0055293124,-0.0050801011,0.0118036577,-0.0021766645,-0.0170627125,0.0108394977,-0.0051750564,0.0060113925,0.0413712338,-0.0153973447,0.0451402254,0.0021657082,-0.0469808951,0.0238556582,0.0095904712,0.0260761492,0.0281651635,-0.0102624623,0.0039735083,-0.0216351692,0.0235050544,0.0566517115,-0.0038018588,0.0261637997,0.0290708896,-0.0181583483,0.0323724076,0.0055220081,-0.0078666704,0.0030403913,0.0066541657,-0.0031499551,0.0024085743,-0.0143017089,0.0304440875,-0.0210070033,-0.0025382247,0.022613937,-0.0129723363,0.0230521914,-0.0033964731,-0.0059858277,-0.0449649207,0.0630502328,0.0250681639,0.071698457,-0.0557167679,-0.031612765,-0.0389462262,-0.007406503,-0.0012353301,0.0315251164,0.0085386606,0.0169020202,0.0204810984,-0.0588429868,-0.0343883783,-0.0115480088,0.0098972498,0.0191809423,-0.0108979316,0.0011212013,0.0044446322,-0.0220295973,0.0379236303,-0.0019392766,0.0129723363,-0.0017886267,-0.012848164,0.0357907936,-0.0232567117,0.0123953009,0.0065920795,0.0631086603,0.0145500526,0.0089696106,-0.0281943791,-0.0082172742,-0.0357907936,-0.0143382298,0.0493766852,0.0059091328,0.0097949905,0.0054891389,0.0031755199,0.0202327538,0.0157479495,0.0257985871,-0.0152950855,0.0224678535,-0.0115480088,0.0094224736,0.0321094543,-0.0014562835,0.0026094411,0.0311745107,-0.009999509,-0.0028103075,-0.0260031074,0.0172526222,0.0001794105,0.0012188957,0.0014645008,-0.0071508544,-0.0113215772,0.0191225093,-0.0052882722,0.0275516063,-0.0272302199,-0.0062999101,-0.0223655943,-0.0096635139,-0.0407576784,-0.0022661416,-0.0156310815,0.0539929681,-0.0285011586,-0.016975062,-0.0191225093,0.0205687489,0.0022570111,0.0172526222,0.0024177046,-0.003270475,0.0327230096,0.0062853014,0.0392676145,0.0030166525,0.0091887387,0.0108541055,-0.0268503986,0.0245568659,-0.0010655065,-0.0257693715,-0.0114530539,-0.0015147175,0.0464549884,0.0038529884,0.0186550375,-0.0074430238,-0.0125559941,0.0306486059,0.021416042,0.0240309611,0.0124026053,0.0110074952,0.0150175244,0.0174571425,-0.002249707,0.0138269328,-0.004203592,0.003842032,0.0121907825,-0.0321094543,-0.0135420673,-0.0349435024,-0.0120446971,-0.0214306507,0.0111827971,0.0171357542,-0.0153973447,0.0503700636,0.0176762696,-0.0201889295,-0.0091303047,0.0182167832,-0.0401733406,-0.0172672309,-0.0231398437,-0.0180999152,-0.0226431545,0.0009778556,0.0129942494,-0.00528462,0.0180999152,-0.0039406396,-0.0034439508,0.0052298382,0.0199844092,-0.0244107824,-0.0055402685,0.0045395871,-0.0069171186,0.021416042,-0.0240309611,0.0077790194,-0.0257401541,0.0155580388,-0.0118328743,-0.022438636,0.0324016251,-0.0104304599,0.0146596162,0.0178953968,0.019253986,0.0028906544,-0.0072567658,-0.0045359354,0.0107299332,0.0129212067,-0.043796245,0.0289686285,0.02027658,0.0547818244,-0.0035188193,-0.0090061324,0.0136808483,0.0397935174,-0.0165075902,0.0439131111,-0.0038602927,0.0112850564,0.016288463,0.0604791343,-0.0192832034,0.022044206,0.023578098,-0.0206710082,-0.0000724718,0.0102478536,-0.0180122647,-0.0281651635,-0.0048171487,0.0077132811,-0.0260907579,0.031612765,0.024892861,-0.0044446322,0.0181583483,-0.005737483,0.0012718514,-0.0081296228,-0.0244253892,0.0173256658,0.0127532091,-0.0121323485,0.0135274585,0.0053065331,0.0021857948,0.0187572967,0.0695948303,0.0194877218,-0.005167752,0.0016096727,0.0004085811,-0.0086190077,-0.0077644107,0.0256378949,0.0079835383,0.0435040742,-0.005912785,-0.0061428687,-0.0179830473,0.0040903762,0.0010244201,-0.0084437057,-0.0224678535,0.0108979316,0.0245422572,-0.0090499576,0.0079324087,0.027858384,0.022044206,-0.0196338072,-0.0097876862,-0.0332781337,0.0016407156,-0.0256232861,-0.0167267174,0.0340085588,0.0072238967,-0.023125235,0.0385664068,0.049844157,0.0054526175,-0.0120520014,-0.007318852,-0.0001343296,-0.0078885825,-0.0128262518,-0.001290112,-0.0029600447,0.0061026956,-0.0369010381,0.000916226,0.0100433351,-0.0051860129,-0.0141629279,-0.0087504834,-0.0279168189,-0.0324016251,-0.0282820314,-0.0067746858,-0.0204810984,-0.0053905318,0.0089184809,0.0185527783,0.0227015894,0.024147829,0.0045176744,-0.0187719055,-0.003688643,-0.0222487263,-0.0130672911,-0.0173840988,-0.0287495013,0.0071618105,-0.0324308425,0.0299473982,-0.0154703874,0.0204080567,0.0400564708,0.0176178347,0.0263683181,0.0341838598,0.0186988637,0.0231544524,0.0350019336,0.0161569864,-0.0351480208,-0.0228476729,0.017720094,-0.0172380153,0.0060698264,-0.0256963279,-0.0204372723,-0.0068879016,-0.0053284457,0.0213722158,-0.0095393416,-0.0204372723,-0.0099264672,0.0085386606,0.0179100055,-0.0102624623,-0.0039954213,-0.0224824604,0.0092325639,-0.0009458995,-0.0212991741,0.0340377726,0.0068258154,-0.0362290479,0.0485878289,-0.0080054505,-0.0162008125,-0.0200428441,-0.0296552274,-0.0187134724,-0.0105400234,-0.0172964483,0.0158209912,0.0201012772,0.0192978103,-0.001048159,0.0034731678,0.000121433,-0.0458122157,-0.0122565208,-0.0283842906,0.0034877763,0.0032522143,-0.022730805,-0.0031718677,0.0153827369,-0.0084948353,0.0285449829,-0.0330736153,0.0448188372,-0.0302687846,0.0123149548,0.0118401786,0.0241186116,-0.0082391864,0.0052590552,-0.0113288816,0.0006190346,-0.0218835138,0.012731296,0.0333657824,-0.0418387055,0.0160255097,-0.0279606432,-0.0027098744,0.0323724076,-0.0071435501,0.0153827369,0.0142797958,0.0098899454,-0.0161569864,-0.0220880322,0.0128408596,0.0237680078,0.0233881883,-0.0277853422,-0.0270549171,0.0078082364,-0.0009751165,-0.0142140575,0.0001361557,-0.0185819957,-0.0029016107,-0.0233589709,-0.0249366872,0.0054270527,0.012731296,0.0144770108,0.0014343708,-0.0352356695,0.0500486754,0.010649587,-0.0127751222,0.0282674227,0.0136589352,0.0378944166,-0.0091449125,-0.0057593961,0.0166244581,0.0093567362,0.0109417569,0.0142871002,-0.0039515956,-0.0007719672,0.0264559705,0.0186696462,0.0370763391,-0.0244692154,-0.0151782176,-0.0140825817,0.0023300536,0.0025345725,-0.00149737,-0.0172380153,0.0251558144,0.0139145842,0.008860047,0.010452372,-0.0035900357,-0.0397350825,0.0065884273,-0.0101748109,0.0054160967,-0.0321386717,0.0092471726,0.003929683,-0.0069682482,-0.0006026001,0.0147180501,0.0093640396,0.0070449426,0.0233443622,0.0192832034,0.0028303943,0.0159378592,-0.0021419693,-0.0216789953,0.0130380746,0.0309407748,0.0484709591,-0.045111008,0.0200866703,-0.013556676,0.0059237415,-0.0354109704,0.0172526222,0.0163030718,0.0177347027,-0.0385664068,0.0225847214,-0.0159086417,0.0169896707,-0.0209777877,0.0049887984,0.0187134724,-0.0337456055,-0.001710106,-0.015265869,-0.0351188034,0.0034877763,-0.0180706978,-0.0341838598,-0.0237680078,-0.00264231,0.0115480088,0.0283842906,0.0137027605,0.0186988637,0.0157917738,0.0165075902,0.0111608841,-0.0017210623,0.0362290479,-0.0126801664,-0.0349435024,-0.0404070765,0.0099556837,0.03041487,0.0169166271,0.0032229973,0.003089695,-0.0044300235,-0.0233589709,0.049668856,-0.0323139727,-0.0186404288,-0.0092252595,0.0276976917,-0.0479742698,-0.0308531243,0.0484417416,0.0037543811,0.0194146782,0.0080784932,-0.0095466459,-0.0297867041,-0.0205103159,0.0070997244,-0.005883568,-0.0190640762,-0.0101894196,-0.0084217926,0.000032755,-0.0314374641,-0.0219565555,0.0065519065,0.00216023,-0.0018068872,-0.004598021,0.0064496468,0.0156749059,0.0151928263,0.0497272909,0.0018991033,0.0016361505,0.0204810984,0.0094589954,-0.004086724,0.0363751315,0.0077717151,-0.0246591251,0.0100725517,-0.0110294074,-0.0075964131,-0.0221318584,0.0431534685,0.0074320678,0.0114457496,0.0038639447,-0.0012554169,0.0051020142,0.0106276739,-0.0062195631,-0.0007559892,-0.0400272533,-0.0058178301,-0.0070887683,0.0234027952,0.0137977162,0.0001199494,0.0235050544,0.0324600562,-0.0141556235,0.0082976203,-0.0087870052,-0.0079908427,-0.0062049548,-0.0079178,-0.003301518,-0.0053613149,-0.0343299434,0.0006541863,0.0028230902,0.0300058313,-0.0438838936,0.0127532091,-0.003482298,0.0020890136,0.0136005012,0.0007409242,-0.005226186,-0.0336287357,0.047565233,-0.0146888336,-0.0196191985,-0.01056924,0.0404947251,0.0172380153,0.0285888091,0.0295383595,0.0037872503,-0.017150363,0.0180999152,-0.0125267776,-0.0095977755,-0.0455492623,0.0226577632,0.0158502087,0.006453299,-0.0162592456,0.0104742851,0.0250827726,-0.0244838241,0.0207732674,0.0015512387,-0.0411082804,0.0004062986,0.0153096942,-0.0052919243,0.0058799158,-0.0357907936,0.0036429914,-0.0170481037,-0.0173256658,-0.0135493716,-0.020393448,-0.061005041,0.0069098142,0.0135347629,-0.0159086417,-0.0293776672,0.0300350487,0.0016261071,0.0296114031,0.0006783816,0.0162592456,0.0213429984,-0.0107956715,0.0251704231,-0.0074357199],"109":[-0.0013261799,0.0303419735,0.0103897825,0.0300198086,0.0599810444,-0.0032198075,-0.0305176992,0.0177629404,-0.0316306278,-0.0073438706,0.0091157714,-0.0217753444,-0.028584715,-0.0315720513,0.0246308874,0.0415298417,-0.0196519922,-0.0695288032,-0.0629683807,0.0208820719,0.0393918455,-0.0025681581,0.0088302167,-0.012659573,0.0236936826,-0.0147316726,-0.0510190316,0.0297562201,-0.0159910396,-0.0533620417,0.0123227658,-0.0320699438,-0.0205306206,0.0227271914,0.0161960535,-0.0117150471,0.0333878845,-0.0237961896,-0.001860679,0.0495546497,-0.0307812877,0.0325092562,0.0157274511,0.0452493727,0.0139628723,0.0138457222,-0.0385717936,-0.0010854724,-0.0014918381,0.0359066203,-0.0541235209,0.026065981,-0.0284675658,-0.0478559695,0.0155224381,0.0141532421,-0.0119932797,0.0557343401,-0.0777293369,-0.0015815314,-0.0024949389,-0.0512826219,0.0642570332,0.0133844418,-0.0182901174,-0.0212920997,-0.0288629476,-0.0041515199,-0.0202963203,0.0427306369,0.0745662749,0.0292143989,0.0106021175,-0.0136699956,0.026900677,-0.0333878845,-0.0206624158,-0.0018277304,-0.0403583385,-0.0567886941,0.0058977944,-0.0124911694,-0.038103193,-0.0044334135,0.0106973024,-0.0501404032,-0.0026670038,-0.0186855011,-0.0217753444,0.0209406465,-0.0228150543,0.0680058524,0.0096209832,0.0401533246,0.0007573595,0.028804373,0.0103971045,0.0490860492,0.0218192767,0.0231518634,0.0439314283,-0.0207209904,-0.0016437676,-0.0306934249,0.0330950096,0.0183486938,0.0110267885,0.009921181,-0.0027731713,-0.0145339807,-0.0896786898,-0.018788008,-0.0289215241,-0.0100822626,-0.0014552285,-0.0025992761,-0.0061211125,0.0409733802,0.0094891889,-0.0499061011,-0.0217021257,0.0102579882,-0.0054255314,-0.0071388572,0.0311913136,-0.0295658503,-0.0419691578,0.0188758709,-0.0192126781,-0.0455129594,0.0738047957,-0.0481195562,0.059629593,-0.0538892187,-0.0254802275,0.0029214399,0.0231665056,0.0078930128,-0.0173529144,0.0247480385,-0.0066336459,0.0083469711,0.037663877,-0.0096429484,-0.0404462032,0.0179533102,-0.0014524829,0.0333000235,-0.0095331203,-0.0084641222,-0.0000940407,-0.0267835278,-0.0470359139,-0.0198716484,0.0517219342,0.0159031767,0.0920216963,0.0470944904,-0.0150099043,-0.0315134786,-0.0025004304,0.0153320683,-0.0416469947,-0.0097674206,-0.0803066492,-0.014350933,-0.0673615262,-0.0425549112,-0.0773778856,0.0041075884,-0.024162285,-0.0071059084,0.0085885944,0.038191054,0.0335636102,-0.0465087369,0.0282479078,-0.0487345979,0.0099943997,-0.0130110243,-0.0649013594,-0.0160349719,-0.0010195753,0.0023796191,-0.0328607075,-0.0111000072,-0.0261831302,-0.0001491838,-0.0218632072,0.0281893332,-0.0191394594,0.0298294388,-0.0070473333,0.0129890591,0.0246601757,-0.0444878936,0.0635541305,-0.0046201218,-0.0106826592,-0.0163278468,-0.0156542324,0.0183340497,0.0359651968,-0.0344422385,0.0245283805,0.0193591155,-0.0102945976,-0.0205599088,-0.032392107,-0.0042686705,0.0271935537,0.0382496305,0.0218632072,-0.0078710476,-0.0439607166,0.0071974322,-0.0701731369,0.0313084647,0.035994485,-0.0083909025,-0.0197398551,0.0520733856,0.022156084,-0.0254216529,-0.0178068727,0.0393332727,0.0505797192,-0.0246308874,0.0052315011,-0.0117150471,0.0392746963,-0.0341493636,0.0031612325,-0.0106460499,0.0026908,0.0232543685,-0.0038183732,-0.0312791765,0.0151709868,0.0417641439,-0.0001611963,-0.0042284001,-0.0008507138,-0.0059673525,-0.019842362,-0.0067141866,-0.0617968738,-0.0347351171,0.0204866901,0.0166353676,0.0452493727,0.0187587198,-0.0037048839,-0.017938666,0.0133624757,-0.0345886759,-0.0107998094,0.0364923738,0.0116637945,-0.0111366166,0.0276035815,-0.0628512278,-0.0449564941,0.011810232,-0.0162985604,-0.0107705221,0.0033808895,0.0027017829,-0.0069667925,0.0101774475,0.019622704,0.0265785139,-0.0009555086,0.0039940989,-0.0096575925,-0.0213506743,0.0173968449,0.00253704,0.0135455234,-0.0266810209,-0.0039391848,-0.0413834043,0.0030751999,-0.0081053488,0.0105069336,0.0004104843,0.0029617103,0.0313377529,0.0010699133,-0.007435394,-0.0453665219,-0.0148415007,0.0065640877,0.0221707281,-0.0052461447,-0.0023832801,-0.0069814362,0.0201205947,0.0015650571,0.0056305449,-0.02299078,-0.0427013487,0.0086618131,-0.0147097064,0.0159763955,0.0030093028,0.0138603654,0.0098918928,0.0076367464,-0.0109608909,-0.0134064071,-0.0049459464,0.007223059,0.0305469856,-0.0110487537,-0.011605219,0.0857541487,0.0077612191,0.0205159765,-0.0457472615,-0.0090132644,-0.0605082214,0.0030477429,-0.022361096,-0.0133039011,-0.0333293118,0.042613484,0.0078637255,0.023210438,-0.032274954,0.0364337973,0.0012557067,0.0143143237,-0.000235445,-0.0314841904,-0.0723404214,0.0070034019,-0.0714032128,0.027222842,-0.0067654401,-0.0416469947,-0.0464794524,-0.0599517561,-0.0291411802,0.0574037321,0.0240012035,-0.0119493483,0.0006978691,0.0054035657,0.0038366781,-0.0481488444,0.013933585,0.0112098362,0.0204281136,-0.0101920916,0.0042833141,0.0022276896,-0.0100895846,0.0077465749,-0.0055683083,-0.0262856372,0.0328314193,0.0117809447,0.0032948572,-0.0086105596,0.0503454171,-0.0494667888,0.0152734928,0.0054072267,-0.0116418283,0.0055463426,0.0342665128,0.0476509556,-0.004543242,-0.0760306567,-0.0130549558,0.0499939658,0.010023688,0.0000812274,0.0381617658,0.0417348556,0.0234008078,0.023635108,-0.0401826128,-0.0123007996,-0.0011348953,0.0325092562,-0.0252312832,-0.0983478203,-0.017733654,0.0386303701,-0.0325385444,0.0122861564,-0.0297708642,-0.0181583241,0.0141239539,0.0415884182,0.0380446166,0.0690016299,-0.0195348412,0.0279550329,-0.0025571752,-0.0426720604,-0.0193298291,0.0126522509,-0.0017078343,-0.0207209904,-0.0007472919,0.0157713834,-0.0143216457,-0.0263295695,-0.0410319529,0.0365509465,-0.0263881441,0.0306348484,-0.0013078753,-0.0207356345,0.0214531813,0.0254655853,0.0438728519,-0.0090059424,0.0054658018,-0.0012950619,0.0003059183,-0.032919284,0.027003184,0.0225075353,-0.0073951236,-0.0246162433,-0.0598638915,-0.0244551618,0.0047848648,0.0417641439,0.0063920226,-0.027427854,0.0188758709,0.0402119011,0.0265199393,0.0466551781,-0.0187001452,-0.0363459364,-0.0217899885,-0.0100456532,0.0112757329,-0.0077026435,-0.0186855011,-0.0264906511,-0.0202963203,0.0054145483,-0.0392746963,0.0101920916,-0.0101481602,-0.0248798318,0.0279843193,-0.0479731187,-0.0544163957,0.0463330112,0.0001742384,0.0443121679,-0.0159178209,-0.0499353893,0.0369023979,-0.0333585963,0.0053486512,-0.0200180877,-0.0390111096,-0.0282625519,-0.0111585828,0.0641398877,-0.022580754,0.024162285,-0.023327589,-0.0138017908,0.0207649209,-0.066775769,0.0068313372,-0.0002722833,-0.0142777143,-0.005590274,-0.0126302857,-0.000945441,0.006908217,-0.0546799824,0.0308398623,0.0108510628,-0.0052315011,0.0065604267,0.006908217,-0.0051472988,-0.010653371,-0.0169575308,0.0274132118,0.0922560021,-0.0178947356,-0.0352622941,-0.0385425054,-0.0286140032,-0.0323042423,-0.0180265289,-0.0113343084,0.0174407773,-0.0110707199,-0.019095527,0.0938375294,0.0234008078,-0.014980617,-0.020779565,-0.019622704,-0.0137358932,-0.0167525187,0.0137358932,0.0255241599,0.000235445,0.0512533337,-0.0132526476,-0.0104703233,0.0005917014,0.0043638553,-0.0218485631,-0.0212481674,0.0000616642,-0.0162692722,-0.0409733802,0.0004562462,0.0146438098,-0.0158885326,-0.0701145604,-0.026476007,-0.0392746963,-0.0027457143,0.0324506797,-0.020369539,0.010023688,0.029024031,-0.0838211626,-0.0139848376,-0.0335050374,-0.0331535861,-0.0324799679,0.0074829864,0.0104630021,0.0329485722,-0.0034467867,0.0139628723,0.0007907657,-0.001502821,0.0164889302,-0.0100529753,-0.0127108265,0.0074244114,0.0133039011,-0.0338564888,0.0269446094,-0.007753897,0.0037781028,0.0245430246,0.0162692722,0.0012721809,-0.027003184,0.0129524497,-0.0109462477,-0.0122788344,0.0387768075,0.0152002741,-0.0293022618,0.038835384,0.0006301414,-0.0175872147,-0.0210870858,0.0385425054,0.0084568001,-0.0161228348,-0.0113489525,-0.0249823388,0.0378981791,-0.0001347688,-0.0150099043,-0.0104337139,-0.0258170366,0.009921181,-0.0234447382,-0.0357601829,-0.0065567656,0.023957273,-0.0514290594,0.0196373481,0.0379860401,0.0355844572,0.030605562,-0.0096942019,-0.0010497781,-0.0061101294,-0.0046860189,0.0349694155,0.0074207503,0.0161960535,0.0116930818,0.0031996723,0.0063371086,0.0334171727,0.0154345753,0.000851629,-0.0214531813,-0.0496425144,0.0196373481,0.0106240837,0.0271496233,0.0482074209,0.0020849123,-0.022053577,-0.0015064819,-0.0020922343,-0.0291997567,-0.0428770743,-0.011180548,0.0192858968,-0.016884312,-0.0154199312,0.0217899885,-0.0097527774,-0.0082005337,-0.0241183545,0.0202231016,-0.0324799679,0.0001841917,-0.0060881637,-0.0174554214,-0.0197544992,-0.0189930201,-0.0137725025,-0.0006914624,-0.0156981628,0.0298440829,-0.0407390781,0.0013975685,0.0013756028,0.0136407083,0.034500815,-0.0033589238,-0.0259341858,0.0547678471,-0.0000804265,0.0185097754,-0.0188612267,0.005912438,-0.0175725706,-0.0199009366,0.0218485631,-0.0200766623,-0.0116491504,0.0064139883,-0.0361994952,0.0395089984,0.0181436799,0.0089180795,0.0054767849,-0.0318942182,0.0118468413,-0.0155663695,0.0127913672,-0.0532448925,0.0310741626,-0.0072047543,0.0061577219,-0.0470066294,0.0221121516,0.0073804799,0.0124984914,0.0330657214,0.0438142791,-0.0371952765,0.0486467332,0.0365509465,0.0552364476,-0.0080980267,0.0273839235,0.0150245484,-0.0242208615,0.0003885186,0.0403876267,-0.0196812805,0.0279403888,-0.0210431535,-0.0040856227,-0.0174407773,-0.0204574019,0.0073219049,0.0103092417,0.0376053043,0.006758118,0.0125643881,0.0154199312,-0.0020226762,-0.0220975075,-0.0017471896,-0.0264467206,-0.016239984,0.0149513297,0.0061028074,-0.0632612556,-0.0041405372,-0.0019439657,-0.0834111348,-0.0276182238,-0.0128352987,-0.0187587198,0.0001830476,-0.0280282516,0.0283797029,0.0098333182,-0.0363166481,0.0354965925,-0.0330364332,0.0037140362,-0.0283064842,0.0035511237,-0.0259781182,0.0269738976,0.0200766623,-0.0004338229,-0.0180118848,0.0053047198,-0.0101408381,-0.0244551618,0.0488224588,0.0014662114,0.0072413636,0.0222293027,0.0192566086,-0.0173382703,-0.0173822008,0.0159763955,0.0133624757,-0.0233129449,-0.0144314738,-0.0370195508,-0.0121982936,-0.0148415007,-0.0457765497,-0.0145120155,-0.0184072684,-0.005066758,0.0080760606,0.0041588419,0.0180558171,-0.030078385,-0.0093647158,0.025743816,0.0205745529,0.0028116114,-0.0307519995,0.0148634668,-0.0041295541,0.0248212572,-0.0402704775,-0.0166646559,-0.0055316989,0.0045981561,0.0248505436,0.0173529144,0.0311034508,0.0546799824,0.0248212572,0.0464208759,0.0051802476,0.011392884,0.0147975693,-0.0033918724,-0.0056232228,-0.0192712527,0.0018286457,-0.0164303537,-0.0124325939,-0.0025114133,0.0338272005,-0.0463915877,-0.0162985604,0.0252605714,-0.0167964492,0.0164157096,0.0211310163,-0.0065531046,-0.0056781373,-0.0016245476,0.0088814702,-0.0223903842,0.022053577,-0.0283211265,-0.0252459273,-0.0332414471,-0.0006827676,-0.0070107239,-0.0064176493,-0.051604785,-0.0026926305,0.0069375047,0.0137578594,-0.0871013775,-0.017411489,0.0117223691,-0.0289215241,-0.0524541251,0.0013408238,0.0266663767,-0.0153467124,0.0176604334,-0.0099504683,0.032392107,-0.0259048995,0.0171918329,0.011810232,-0.0128499428,0.0019329828,0.0049532684,0.0287457984,0.020677058,0.0196080599,-0.0070436723,0.0035730894,-0.0225221794,0.0373124257,-0.0077905064,0.0114807468,-0.0260366928,0.0098845717,0.0555586144,-0.024791969,0.015405287,0.0022386725,-0.0195641294,-0.0038403389,0.0200766623,0.0164157096,0.0148634668,-0.0130695999,-0.0035657675,-0.0019348133,-0.0253923647,-0.0133478325,0.0013097057,-0.037663877,-0.0032289599,-0.023957273,-0.004590834,-0.0344715267,-0.0340907872,0.0177043658,0.0250994898,-0.0240597781,-0.0071315351,-0.0062895161,-0.0023320266,0.0272374861,-0.0419105813,0.0286872219,-0.0105069336,0.0122934775,-0.0220682211,0.0015046514,0.0040526744,-0.0245723128,-0.0082591083,0.0033332971,0.0040380303,0.0199595112,-0.0015000752,0.0116637945,0.0438142791,0.0185976382,0.0029781847,-0.0030514037,0.0027255791,-0.0025498534,0.0153320683,-0.0352330059,-0.0117809447,-0.0279989634,-0.0080321291,-0.016239984,-0.0239426289,0.037576016,-0.0062785335,-0.0131354975,-0.0122568682,0.0092622098,0.0144754052,-0.0264174324,0.0271056909,-0.0292583313,-0.0240890663,0.016459642,0.0081785675,0.0046164608,-0.028174689,0.0124033066,0.0449564941,0.0077685406,0.0373710021,-0.0043492112,0.0213360302,-0.0002116488,-0.0094452575,0.0129524497,-0.0061357561,-0.0317184925,-0.0343836658,-0.0279111005,-0.0229761377,0.0152002741,-0.0065347999,0.0113635957,-0.0135601675,0.0256559532,-0.0212188791,-0.0181436799,0.0023192132,-0.0035675981,0.058048062,-0.0139848376,-0.0372538492,0.0206917021,0.0079881977,0.0477681048,0.0057769828,-0.0143216457,0.0351451412,0.0000083015,-0.0086984225,0.0562615171,0.0149586508,0.0471823551,0.0064432761,-0.0116198631,0.0186562128,0.0049569295,-0.0187147874,0.0340907872,-0.0009211871,0.0158446021,0.0493496358,-0.0066299848,0.0439607166,0.016459642,-0.031015588,0.0299905222,-0.0130110243,0.052131962,-0.011078042,0.0048031695,-0.0324213952,0.0472116396,-0.0160642583,0.0217460562,-0.0448100567,-0.0552071631,-0.0301955342,0.0059746741,0.0111585828,0.0229175612,0.0285261404,-0.024791969,0.0445171818,-0.0078490814,-0.0361409225,-0.0135674896,0.0170746818,0.0231372193,-0.0059344037,-0.0475630946,0.0050887237,-0.0177629404,0.0351158567,0.0160789024,0.0086178817,0.0416762829,0.0032326209,0.0297708642,-0.0183047615,0.0070949257,0.0075562056,0.0599224679,0.0250702016,0.0119786365,-0.0314841904,-0.000928509,-0.0253484342,-0.0039867773,0.0119493483,0.0120445332,0.0194030479,-0.0026541904,-0.0009463562,0.0096136611,-0.0015138038,0.0046567312,-0.0475923792,0.0205452647,-0.0282039773,-0.0157713834,0.0195787735,0.0022148762,-0.0047738818,0.0273839235,-0.0306348484,-0.0103092417,-0.0356723182,0.0350572802,-0.017513996,0.0189637337,-0.0353501551,-0.0146291656,0.0073511922,0.0448979177,0.0007422581,0.0118468413,0.0007472919,-0.0295365639,-0.0104117487,-0.0383960679,-0.0412076786,0.0347644016,-0.0186855011,0.0111585828,-0.0174261332,0.0013234343,-0.0117882667,0.0351744294,0.0060478933,0.0074134283,0.0220242888,0.0068386588,0.0411198176,-0.016884312,0.0240890663,-0.0020775904,0.0203256067,0.0240012035,-0.0234740265,-0.0040416913,-0.0009481867,-0.0136773176,-0.0026724953,0.0102872765,0.0039757942,0.0014140429,0.0025278877,-0.0010506933,-0.006230941,0.0295804944,0.0376345888,0.0113050211,-0.0025992761,0.0135967769,0.0142337829,-0.0002206868,-0.0077612191,-0.0023027391,-0.0089327237,-0.0154785067,0.0027969675,-0.0402119011,0.0083689373,0.0009838809,-0.0055683083,-0.0228150543,0.0120152459,0.0487053096,0.0047409334,0.0135382013,-0.0034303123,-0.0016089885,-0.0179679543,0.0299173016,-0.0294779874,-0.0032747218,-0.0332121588,-0.004005082,-0.0096502705,0.0239279848,0.0017124105,0.000938119,0.0129011963,0.0029964894,-0.0008854928,0.0141019886,0.0246162433,-0.0226393286,0.0317184925,0.0111951921,-0.0016675638,0.0112684118,-0.0231372193,-0.0010680829,-0.014138598,-0.0051509598,0.0390696824,0.0149732949,0.013508914,0.0067105256,0.0286432914,-0.0028811696,0.0368731134,-0.0095477635,0.0077172876,-0.0229614936,-0.0062785335,0.0330950096,-0.0040014209,-0.0197984297,0.0074683428,0.0243672989,-0.0086984225,0.0252898596,0.0394504219,-0.0002850967,-0.0112171583,-0.0029141181,0.0238694102,0.034500815,0.0054658018,0.0294194128,-0.0238108337,-0.0162106976,0.0024198894,-0.0294926316,-0.006911878,0.019095527,0.0107632,-0.0312791765,0.0181436799,0.0280721821,-0.0170161072,0.0206331275,0.0209113602,0.0031850284,0.0193591155,-0.0001120595,0.0050814017,0.0217021257,0.0177482963,0.0054438361,-0.002764019,0.0218192767,-0.0024766342,0.0044993106,-0.0153906438,0.0089839771,0.0723989904,0.0125717102,0.0062858551,-0.0005157366,0.0225661099,-0.0095038321,-0.0080907047,0.0252312832,0.0200766623,0.0119566703,-0.0094232913,-0.0083542932,-0.0265638698,-0.0055975961,0.0449857824,-0.0113050211,-0.0159763955,-0.0107851652,-0.0061796876,-0.0084568001,-0.0001844205,-0.0070802816,0.010865707,-0.0220828652,-0.0159031767,-0.0139042968,-0.0057733217,-0.0013829247,-0.025114134,0.0344129503,0.0183926243,-0.0166353676,0.0249676947,0.0070290286,0.0091157714,0.0099358242,-0.0360237695,-0.0034266515,0.0074170893,0.0019201695,-0.0027621884,-0.0016355305,0.0166060794,-0.0122056147,0.0038842703,0.0145193366,-0.023737615,-0.0009930333,-0.0208527837,-0.0363166481,-0.0480902717,-0.0284822099,0.0208088532,-0.0148415007,0.0160349719,0.0289947428,0.0296830013,0.0108583849,0.0221707281,0.0265492257,-0.0017773923,0.0157860257,-0.0295219198,-0.0142191388,-0.0226246864,-0.0040416913,0.0217899885,0.0157567393,-0.0154931499,-0.0425841995,0.0084641222,0.0248651877,0.0256705973,0.0178215168,0.0093134623,0.0340907872,0.016137477,0.0170746818,0.0137285711,-0.0547092706,-0.0427892096,0.0114075271,-0.0396261476,-0.0178361591,-0.0061577219,-0.021833919,0.011927383,0.010550865,-0.0307812877,0.0152734928,0.0001226419,0.0100456532,0.0544749722,-0.0011925552,0.0211603045,-0.0008365276,-0.0271789096,-0.025216639,-0.0030861828,-0.0297562201,0.0245576687,-0.0083689373,-0.0249969829,0.0181729682,0.0069777751,0.0063993447,-0.0400068872,-0.0016153952,-0.0292143989,-0.0001559337,-0.0341786519,-0.006915539,0.0206477717,0.0097161671,0.0315720513,0.0269738976,-0.012981737,-0.011817554,-0.0231518634,-0.0282039773,0.0174261332,-0.0130622778,-0.0190223083,-0.0222000144,0.0113416305,0.0138091119,0.0477388203,-0.0113343084,-0.02448445,-0.0017407829,0.0160349719,-0.0043418896,0.0203256067,0.0040746401,-0.0475045182,0.0088448608,0.0074720038,-0.0168550238,0.0164742861,0.0096795578,-0.0212335233,0.0222732332,-0.022580754,-0.0332414471,0.0293608382,-0.0102579882,0.0149293635,-0.005700103,0.042086307,0.0114514586,0.0170893259,-0.0091816681,0.0460987128,0.016239984,0.0023320266,-0.048441723,-0.0039355238,-0.0153174242,0.0082151769,0.0105215767,-0.0044700229,-0.0170307495,-0.0021013867,-0.0095624076,0.0141166318,-0.009394004,0.0041771466,-0.0179533102,-0.0087862853,0.0047958475,-0.0143070016,-0.0265199393,-0.0195934176,-0.0134137291,0.0335928984,-0.0318942182,-0.014036091,0.0146071995,-0.0083689373,-0.0048654056,-0.0052937372,0.0108510628,0.0009600847,0.0131135313,0.0051729255,0.0154785067,-0.0209406465,-0.0037561371,-0.0080980267,0.0311034508,0.0082224989,-0.0046091392,-0.0012273343,0.0279696751,0.0437264144,0.0260806251,0.0190076642,0.0085080536,-0.0136040989,0.0387475193,0.0015559047,-0.0113855619,-0.030488411,-0.0060369102,0.0101994136,0.0294194128,0.0046347654,0.0155517254,0.0107485559,0.0337979123,-0.0059453868,0.0152002741,0.0083542932,0.0225368235,0.004905676,-0.0165475048,-0.0132380035,0.0563200898,0.007281634,-0.0143728992,0.0085959164,-0.0209845789,-0.0145120155,-0.0242940802,0.0154931499,0.0396261476,0.0272814166,-0.0250994898,-0.0154199312,-0.0352622941,0.0319235027,0.0173382703,-0.0063517522,0.0106753372,-0.0105728302,-0.0161521211,-0.0158738885,-0.0135748116,0.0036499696,-0.0367266722,0.0145046934,-0.0034010247,-0.0013106209,0.0429356508,0.0402411893,0.0211163722,0.0187587198,0.0250994898,-0.0129451277,0.0098333182,-0.0285700727,0.0086032376,0.028584715,-0.0166792981,-0.0264027882,0.0075854934,0.0457472615,-0.0119786365,0.0009600847,-0.0335343219,-0.0254655853,0.0358773321,0.0176604334,0.0061796876,-0.0113416305,0.0272081979,0.0162839163,-0.0160496142,-0.0504332781,0.0217753444,0.0091670249,0.0119639924,0.0276621561,-0.0010543542,0.005377939,-0.0007431734,-0.0018368828,0.0068533029,-0.036609523,-0.0173382703,-0.0060588759,0.0039721332,-0.0405340642,-0.0205452647,-0.0051729255,-0.0096722357,-0.0226539727,0.0102506662,-0.015302781,0.0099651124,0.0104117487,0.0277060866,-0.0192273222,0.0215117559,0.0044370741,-0.002452838,-0.0152002741,0.0145120155,-0.003005642,-0.0148415007,-0.0073475312,-0.0016153952,0.0085593062,-0.0374588631,0.0239426289,0.0123740193,0.021628907,0.0061064684,-0.0032307904,-0.0308105741,0.025216639,-0.0200766623,0.0092402436,0.0015009905,0.0094306134,-0.0033168229,-0.0023924324,0.0187587198,0.0037597981,0.0376931652,0.0184951313,0.0138530433,0.0121104307,0.012132396,0.0090938052,0.0216581933,0.0089327237,-0.0039538285,0.0222000144,-0.020369539,0.0212920997,0.0097820647,0.0237815473,-0.0076660342,0.0412076786,0.0059819962,0.0353208669,0.0546214096,0.0264174324,-0.0222878773,0.0142923575,0.0366388112,-0.0397140123,0.0246455316,-0.0096356263,0.0205745529,0.0089986213,-0.0069667925,-0.0092109563,0.0345301032,0.0059856572,0.0250409134,-0.0007033605,0.0309570134,-0.030605562,0.0248651877,0.0404754877,-0.0224636029,-0.0013280105,0.016357135,0.0056891199,0.0173089821,-0.0103604952,0.0194469783,-0.031747777,0.0315427668,0.0209552906,-0.0035968856,-0.0026432076,0.0035584457,0.013933585,-0.0148341786,0.0019256609,-0.0300490968,-0.0385717936,-0.0298147965,0.0032198075,0.0399483107,-0.0124618821,-0.0059819962,0.0017124105,0.0031118095,0.0471823551,0.0348522663,0.0338564888,0.0183486938,-0.0128060114,-0.000149527,0.0052424837],"110":[0.0034908608,-0.009565508,0.0386725068,0.0033222733,0.0910665691,0.0140440715,-0.0400505252,0.0008117855,-0.0085686427,0.0137435459,0.0336002223,-0.0466181077,-0.0088984882,-0.0196441077,0.0429824814,0.0064576343,0.0023364029,-0.0361510254,-0.0485531986,0.0019900654,-0.007208948,0.0321635641,0.0236755479,0.0009056997,0.0040607597,0.0118964138,-0.014234649,0.0285572559,0.0121382996,-0.081391111,0.0137948552,-0.0336881801,-0.0528045371,0.0054314495,0.0147110922,-0.0007421515,0.0530977324,0.0000996407,0.0334829427,0.0275750514,-0.0372358486,0.0521301851,0.0301698316,0.0146744419,-0.0140074221,0.0187645219,-0.0345970877,-0.0360337459,-0.0154367508,0.0544757508,-0.0584925339,0.038613867,-0.017225245,-0.0250682272,0.0111927437,-0.0383793116,-0.011625208,0.0287185144,0.016888069,0.0059152222,-0.0013734384,-0.0591962002,0.0181781296,0.0349196009,-0.004867048,0.0357405506,0.0084953438,0.009382261,-0.0397280119,0.0304337088,0.0317824073,0.0132304542,-0.0018159805,0.0015786754,0.0227666423,-0.0515437946,-0.0123215476,0.0562935658,0.0067911441,-0.0035036879,0.0113759916,-0.0041707084,-0.0275310725,0.0078503136,0.0224148072,-0.041252628,-0.0139487833,0.0006271638,-0.0251561869,-0.003840863,-0.0344211683,0.0362389833,0.0169467088,0.0304337088,0.0374704041,0.0358285084,0.0178409554,0.0108189192,-0.0126074133,0.0176063981,0.0076010972,-0.027384473,-0.0260650925,-0.0267687626,0.0215205606,-0.0075717778,0.0188964605,0.022121612,0.0110021671,0.0321928822,-0.0746476129,0.0087079108,-0.0544464327,-0.0058455882,-0.0315478519,-0.0047241151,-0.0274431128,-0.0043796101,-0.0022557741,-0.0315478519,-0.0216378383,-0.020215841,-0.0078942925,0.0365028568,0.0537134446,-0.030375069,-0.006666536,-0.0428065658,-0.0207582526,0.0015007952,0.0680213943,-0.0168001112,0.0604569428,-0.028132122,-0.0102032088,0.0075497879,-0.013868154,-0.0155686894,-0.0109215379,0.0022411142,-0.0200399235,-0.0495793857,0.0386725068,-0.0083047664,-0.0428065658,0.0298473164,-0.0223854873,0.0260064546,-0.0509574041,-0.0050906097,0.0298326574,-0.021359304,-0.0207729116,-0.042777244,0.0104817441,0.0012808985,0.0456212424,0.0471751802,-0.0222095698,-0.0453573689,-0.0084147155,0.030375069,0.0143445972,-0.0113320118,-0.0207435917,0.0112367235,-0.0490223132,-0.0565574393,-0.0811565593,-0.0185886044,-0.0026057763,-0.0683145896,0.0159791633,0.0193362534,0.0545637123,-0.0036869354,-0.0008026231,-0.0930016637,0.0261970311,-0.004317306,-0.0612778924,0.0150555968,-0.0082901074,0.0241446625,-0.0238661263,0.0081581688,-0.038262032,0.0083267568,-0.009917343,0.0157006271,-0.0726538822,0.0440966263,0.0022172921,0.0142786279,-0.0015099576,-0.0578768216,0.0395814143,0.0312253367,-0.050605569,0.0202598199,0.042747926,0.0201718602,0.0647376031,0.0042513371,0.0162283797,0.0211247467,-0.0007728454,-0.0233383738,-0.049901899,-0.0380274765,0.0060251704,-0.0061424491,-0.0100199617,0.0348609611,-0.0324860774,-0.0143299373,-0.0727711618,-0.0286598746,-0.0019131016,0.0178409554,0.0122848982,0.0707187876,0.0078796335,-0.0345091298,-0.0165655538,0.0347143635,0.0424547307,-0.0261677112,0.0156419873,0.0280734841,0.0036667781,-0.0364735387,-0.014630463,-0.0089131482,0.014249309,-0.0039691362,0.0302284714,-0.010511064,-0.0245258156,-0.0406369157,-0.0234849714,-0.0103204865,-0.0516317524,-0.0110388165,0.0152021945,0.0009363936,-0.0557951331,-0.0346264057,-0.0056366865,0.0367960557,0.0203184579,-0.0081948182,0.0111854142,-0.0400505252,-0.017972894,-0.0724779665,-0.0012039347,0.024027383,0.0304337088,-0.0014934654,0.0158032458,-0.0378515571,-0.0128566297,0.0184859857,-0.0229425598,0.0053178361,-0.0103498064,-0.0440379865,-0.0089791166,-0.0226347037,0.0315478519,0.0184713267,0.0318703689,0.0022319518,-0.0052591972,-0.0244378578,-0.0109215379,0.0082901074,0.0109875072,-0.0148430299,-0.0145791536,-0.0501657762,0.0008520999,0.0083707357,0.0335122645,0.0022172921,0.0103278169,0.0046031717,0.0161844008,-0.0201278813,0.0037180874,-0.011991702,0.0056989905,0.0200985614,-0.0007100832,0.008253458,0.0005703571,0.0032434769,-0.0231624562,-0.0022447791,0.0052701919,-0.0096901162,-0.0060471604,-0.0336881801,0.0212127045,0.0029905955,-0.012541444,0.0141320303,-0.0034377191,0.0085539827,-0.0047424398,-0.0190283973,-0.0021733127,-0.0005121761,-0.0271499176,-0.0203184579,0.0713051856,-0.0555019379,-0.0125341136,-0.056264244,-0.0275017526,-0.0952299461,-0.0394641347,0.0199079849,-0.0158472247,-0.0041010743,0.022136271,-0.016477596,0.0284546372,-0.0200399235,0.0065382631,-0.0275750514,0.0519835874,0.0441552661,-0.0407541953,-0.0779314041,0.0003946688,0.0055597224,-0.0269300211,0.0101005901,-0.0218723956,-0.0052225473,-0.0563815236,-0.014630463,0.0317530893,0.0184566658,-0.0053361608,-0.0027688665,0.0060251704,-0.0182807483,-0.0555898957,-0.0054827589,0.0154514108,0.0172838829,0.0385552272,0.0078503136,-0.0135822883,-0.0384965874,-0.0238221474,0.0025672945,-0.0225027669,0.0208901893,0.0237488486,-0.0154660707,-0.0045445324,0.0193362534,-0.0335122645,-0.0078429841,-0.0331897475,0.0009547183,0.019864006,-0.002655253,-0.0049293521,-0.0123948464,-0.0628611445,-0.0095874975,0.0269007012,0.0289384108,-0.0027652015,0.0427186079,0.0476442948,0.0154074319,0.0119403927,-0.0338054597,0.0241739806,0.0302871112,0.0020560345,-0.0033094459,-0.0686077848,-0.0201865211,0.0342159308,-0.0031225337,-0.0004432294,-0.0298473164,-0.0113246823,0.0111341048,0.0171372853,0.0167707913,0.0516317524,0.0056256917,0.0094189104,-0.0035953117,-0.0619229227,-0.0250535682,0.0016565555,0.0001614867,-0.0056476812,0.0055084131,-0.0056989905,-0.0371478908,-0.0005419538,0.0024390214,0.0372358486,-0.03975733,0.0377342813,-0.017635718,-0.0238221474,0.0660276636,0.0230011996,0.072360687,-0.0346557274,-0.0115079293,-0.0132744331,0.0008956211,-0.0373238064,0.0366494581,0.0542118773,-0.0285865758,-0.0286012348,-0.0692528114,-0.0087079108,-0.0141686797,0.0488463938,-0.0107236309,-0.0269593392,0.0013111343,-0.0125047946,-0.0199079849,0.0530684143,0.0100346208,-0.0193215925,0.0132671036,-0.0001722524,0.029216947,-0.0088105295,-0.020640973,-0.0430411212,-0.0320169665,0.004790084,-0.0024720058,0.0182074495,-0.0221509319,-0.0041633784,0.0252588056,-0.0111341048,-0.0538307205,0.0462076329,-0.0224001482,0.0210074689,-0.0193362534,-0.0437154733,0.0159791633,-0.0268420614,0.0218870547,-0.0171519462,-0.0274137929,0.0246870741,-0.0093089622,0.060398303,-0.0334243029,0.0132011343,0.0160231423,-0.0089717871,-0.0160524622,-0.053566847,0.0467353873,0.0293049049,0.0101592289,-0.0030070879,-0.0265781861,0.0264609084,-0.0110534765,0.0029136317,0.0480840877,-0.0038665177,0.0039728009,0.0240567029,0.0290850084,-0.0103498064,-0.0012900608,-0.0103717959,0.0249802694,0.0642098486,-0.0181781296,-0.0438620709,0.0064429743,-0.0758203939,-0.0482600033,0.0055707172,-0.0040974091,0.0177529957,-0.021740457,-0.0204503965,0.0940571651,-0.0070916698,0.0146231335,-0.0210661069,-0.0208462104,-0.0167414714,-0.0528338552,-0.0107163014,0.0075497879,0.0315771699,0.0154660707,-0.0171812642,-0.0058859028,0.0030858843,0.0259184949,-0.0241006818,-0.000406809,-0.0301111937,-0.0179582331,-0.0418097004,-0.0060068457,-0.0139267938,-0.0003014418,-0.0564401634,-0.0186619032,-0.0138901435,-0.0059665316,-0.0151435556,-0.0410473906,0.0091110552,-0.0063733403,-0.0403144024,-0.00470579,-0.0289384108,-0.0491689108,-0.041281946,0.0054571042,0.0412233099,0.0321635641,0.0211540665,0.0374117643,-0.0050319703,-0.0109361978,0.0246284343,-0.0023382353,-0.0004778173,0.0239394251,0.013105846,-0.0300818738,0.012754011,0.0024005393,0.011639867,-0.0066115619,0.0319876447,0.037441086,-0.0144252256,0.0104157757,0.0059372121,0.0175917391,0.0143006174,0.0044419141,-0.0101518994,0.0008076624,0.0027652015,-0.0205823351,-0.0437741093,0.0142126596,0.0231038164,0.002658918,0.0045262077,0.0407248773,0.0021733127,0.0213153232,-0.0504589714,-0.0136995669,-0.0072309379,-0.0130765261,-0.0384965874,-0.0210807677,-0.0333656669,0.0237341877,-0.0271352567,0.0238368064,0.0258305371,0.0186912231,0.0218870547,-0.01350166,-0.0161990598,-0.0063550156,-0.0163603164,0.0163309984,0.0105257239,0.0162576996,0.0077183754,0.0015218686,-0.0180168729,0.0222095698,0.025112208,0.0025691269,-0.0131571544,-0.0096168173,-0.0144105665,0.0190723762,0.0103351464,0.0130178872,0.0621574782,-0.0215059016,0.0273991339,-0.0138021857,0.0184420068,-0.0527752154,-0.0113759916,-0.00439427,-0.0257865582,-0.0179289132,0.0039434815,-0.0100932606,-0.0293195657,-0.0162430387,-0.005607367,-0.0308735017,-0.007139314,0.0097707454,-0.0331017897,-0.0298326574,-0.0211687256,0.0060508251,0.0059628664,0.0154514108,0.0293488838,-0.0000783955,0.0075791078,0.0476736128,0.0176063981,0.0306682643,0.0086785909,-0.0060544903,0.0172545649,0.0280001853,-0.0148503594,-0.0383206718,0.0011297195,-0.0391122997,0.0044492441,0.0440966263,-0.0343038924,-0.0176063981,-0.0115299188,-0.0282933805,0.079573296,0.0095141986,0.0164482761,0.0027285521,-0.0142126596,-0.0117058363,-0.0156713072,0.0223121885,-0.0459144376,0.0140880514,-0.0164482761,0.0150409369,-0.0261677112,-0.0011022324,0.022869261,-0.0002581496,0.0586098097,0.0232943948,-0.0340400152,0.0380861163,0.0127320215,0.0124461558,0.0145278443,-0.0073518809,0.0240420438,-0.0511333197,-0.0038958371,0.0328085944,-0.0264609084,0.0150849158,-0.0170786474,0.0048413933,0.0069890511,-0.03228084,-0.0263729487,0.0360630639,0.0339227356,0.0228106212,0.0282347407,0.0013083856,0.0094995387,-0.0108555686,0.0248923115,-0.033776138,-0.0063880002,0.058082059,-0.0050026509,-0.0291876271,-0.0188671406,-0.0003653493,-0.0584338941,-0.0195268299,-0.0153927719,-0.0022814285,0.0041047391,-0.0176063981,0.0306682643,-0.0152021945,-0.0643271282,-0.004867048,-0.0047607645,0.0029099667,-0.0094848797,-0.0006647295,-0.0331017897,0.0172545649,-0.0028146782,-0.0098953536,-0.0335415825,0.0011535416,-0.0305216666,-0.0381447524,0.0520129092,-0.0245111566,0.0160964411,0.042425409,-0.0016556391,-0.0143152773,0.0276630092,0.0145718241,0.0156859681,0.0029356214,0.0306096263,-0.0188817997,-0.0075937673,0.0280148443,-0.0345677659,0.0043502906,-0.0312546566,0.0227226634,-0.0052445373,0.010679652,0.0076010972,-0.0331311077,0.0180755127,0.0015933351,0.0345677659,-0.0149383182,-0.0198200252,0.014615803,0.006193758,-0.0003474827,-0.0150702568,-0.0135676283,-0.0106356721,-0.0289530698,0.0013358727,0.0057246452,0.0123215476,0.0362976231,-0.0269300211,0.0321928822,0.0141320303,0.0182514284,-0.028865112,-0.0243059192,-0.0020230501,-0.0369426534,0.0015841727,-0.0165362339,0.0007394028,-0.0287771523,0.0667899698,-0.0192043148,-0.0106210122,-0.0227519833,0.0076230867,-0.0035036879,0.001569513,0.0083340863,-0.017621059,-0.038936384,0.0026974001,-0.0094408998,0.0320462845,-0.0097414255,-0.0130765261,-0.0375876836,-0.0235729311,-0.0138388351,-0.0079969112,0.0144765349,-0.0022191245,0.0102398582,-0.000174543,-0.1199170202,-0.0359751061,0.0302284714,-0.0219750144,-0.0217697769,-0.0063733403,0.007011041,-0.0006212083,0.0218577366,-0.0076597366,-0.0015145388,-0.0450055338,-0.0100639407,0.0136555871,-0.0042953161,0.013105846,0.0162870176,0.0190137383,0.0087079108,0.0169760287,0.0051675732,0.0109508578,-0.0483479612,0.0527165793,0.0181781296,-0.0199519638,-0.0190577172,0.0455332845,0.0218577366,-0.030375069,0.0037070925,-0.0125780934,-0.0015493558,-0.0048780427,0.0067398348,0.0015172875,-0.0044455789,-0.013670247,-0.0027871912,-0.0046984605,-0.0306096263,-0.0536841229,0.0310200993,-0.0574370287,0.0435688719,-0.0423667729,0.0083707357,0.0157592669,-0.0216231793,0.0081508392,0.0348902829,0.0083780661,-0.0160231423,0.0046618111,0.0044309194,0.0156566482,-0.0460023992,-0.0056366865,0.0107749403,0.0127100311,-0.0170053486,-0.0052701919,0.0027743638,-0.0534788854,-0.0115738986,-0.0197760463,-0.0025251475,0.0472044982,-0.0124241654,0.0154953897,0.041281946,0.0383206718,0.0090817353,-0.0250095893,-0.0019699084,-0.0052518672,0.014080721,-0.0123801865,-0.0211100876,-0.0150262769,0.0206702929,-0.0139487833,-0.0183540471,0.0270472988,-0.0195708089,-0.0203184579,-0.0008589716,-0.0091623645,0.0182807483,-0.0207435917,0.0312253367,-0.0192043148,-0.0031976651,0.0173571818,0.0165948737,0.0252294857,-0.0022356168,0.0181927904,0.0080775404,0.0073738708,0.0445364192,0.0180461928,0.0069304123,0.0263289697,-0.0119330632,0.0017500116,0.0121309701,0.0177969765,-0.0044968883,0.0114786094,-0.0297153797,-0.0056256917,0.0178556144,0.0243938789,-0.0036264637,0.0273404941,0.0368840136,0.0166681726,0.0195854697,-0.0332777053,0.032632675,-0.0211540665,-0.0066848607,0.0459730774,0.0005905144,0.0323101617,0.0368546918,0.0061790985,0.0411353484,0.0057063205,-0.0050356351,0.0622747578,0.0097267656,0.0432170406,0.0073958603,-0.0144765349,-0.0067471648,-0.0186472442,-0.0155980084,0.0369719714,-0.0011911073,0.0215498805,0.0060398304,0.007689056,0.0356819108,-0.0099759819,-0.0059372121,0.0116985068,-0.0384672694,0.0328965522,0.0286012348,-0.0262556709,-0.0014210826,0.0805115253,-0.0171079654,0.0486118384,-0.0335122645,-0.05324433,-0.0161844008,-0.0197174083,0.0012469977,0.0254054032,0.0287918132,-0.0279268865,0.0333949849,-0.0335415825,-0.0174011625,0.0043283007,-0.0238368064,0.0211540665,-0.0116985068,0.0028531603,0.0011187247,0.007681726,0.057759542,0.0311373789,0.0109728472,0.0211833864,-0.009932003,0.0158765446,-0.0292316061,0.0316358097,0.0034212267,0.0442139059,0.0276776701,-0.0257572383,-0.0403437205,-0.0168440901,-0.0129885674,0.0006569415,0.0267541036,-0.0019900654,-0.00176742,0.0323981196,-0.0163456574,0.0074398397,0.0265195463,-0.0246870741,-0.0090670753,0.0196001288,-0.0100272913,0.0021128412,0.0198493451,-0.0124021759,-0.0128639592,0.02962742,-0.0124974642,0.0224441271,-0.0410767123,0.0270326398,-0.0036612807,0.0131864743,-0.0074508344,-0.0152754933,-0.0027523742,0.0418683402,0.0433049984,0.0339520574,0.0006789312,-0.0343332104,-0.03445049,-0.0265048873,-0.0140074221,0.0280588232,-0.0371478908,0.0256546196,0.0169173889,-0.0112367235,-0.0019735731,-0.0066262218,0.0157592669,0.0359164663,0.027384473,-0.0174451414,0.0222388897,0.015729947,0.0079675922,0.0119477231,0.0071283192,0.0286012348,0.0242033005,-0.0186179243,-0.0031152037,-0.0144472159,-0.019482851,-0.0072822468,0.0354766734,0.0044419141,0.0448589362,-0.0058675781,0.0056146965,0.0066775312,0.0437741093,0.0237928275,0.0088325189,0.0044492441,0.0086712614,0.0099613219,0.001046342,-0.0226053838,0.0044822283,0.0271352567,0.0017765824,-0.0085319933,-0.0192043148,0.0005689828,-0.0211687256,-0.0020542021,0.0220043343,0.0008594298,-0.0317824073,0.0305803064,0.0275750514,-0.0079309428,-0.0101225795,0.0103058275,-0.0612192526,-0.0129006086,-0.0207142718,-0.0102691781,-0.0202744789,0.0087518906,-0.0082168086,-0.0126367323,0.0411646701,-0.0163749773,0.0065236031,-0.0200692415,0.0299792551,-0.0343038924,-0.00675816,0.0183393881,-0.0175917391,0.0334243029,-0.0203917567,-0.0041560484,0.0075571178,0.0106723215,0.0151728746,0.0003751988,0.0050539603,-0.0211394057,0.0187645219,0.0292022862,0.025889175,0.0180168729,-0.0066005671,-0.0071832933,-0.014417896,0.0440673046,-0.0056440164,0.0023785497,0.0042916513,0.0305216666,-0.0116618574,0.0025874516,0.025464043,0.025112208,0.0132671036,0.022136271,0.0028696524,0.0140587315,0.0100566112,0.0348609611,0.0073775356,0.0079236124,0.0113173518,0.0068314588,0.0037400769,0.0226786844,0.0080262311,-0.0078209937,0.0260944124,0.0187645219,-0.0326913148,0.0023327379,0.0046178317,-0.0037748939,0.0118157845,0.0107896002,0.020978149,0.0066408813,-0.0016437281,-0.0053618154,-0.0097121056,-0.0038701827,0.037441086,0.026211692,0.0008979117,0.0278389268,0.0614538081,0.0058639129,0.0026790753,0.0165069159,0.0053581507,0.0105183944,-0.0150262769,-0.0045262077,0.0077696848,0.0097047761,-0.0181927904,-0.0015163713,-0.0385552272,0.018720543,0.0150409369,-0.0233530328,-0.0134356907,0.0374117643,-0.0071942881,-0.0187645219,0.029275585,0.0134576801,0.0020193851,-0.0161550809,-0.0139561128,-0.0011306357,0.0059701963,0.0067618247,-0.021725798,0.0379101969,0.0141613502,-0.0413405858,0.0191749949,0.052423384,-0.0111854142,0.022121612,-0.0203770977,0.0167414714,0.0145498337,0.0238514654,-0.0097267656,-0.0380567946,0.0061387839,-0.0071246545,-0.0183393881,0.0112293931,0.0063073714,-0.0073628756,-0.0247017331,-0.0211394057,-0.0502830558,-0.0218284167,0.0076377466,-0.0247603729,0.000306252,0.0228106212,0.0574370287,0.0012176782,0.0230891574,0.0408714749,-0.0129665779,0.0158912037,-0.0338347778,0.0007939189,-0.0267834235,-0.0300525539,0.0188524798,-0.0026002789,0.0010921538,-0.0409007929,-0.0035641596,0.0355353132,0.0092796423,-0.0061827633,0.037089251,0.0306389462,0.0100419512,0.0228985809,0.0043722801,-0.0261970311,-0.0270033199,0.0137215564,-0.0443898216,0.0306975842,-0.0115225893,0.0008621785,0.01011525,0.020611655,-0.0130618662,0.0128346393,0.0090304259,0.0049366816,0.0163456574,0.0020248825,-0.0107456204,-0.030726904,-0.0613365285,-0.0105697028,0.0032782939,-0.0293635447,0.0269300211,-0.0005291265,-0.01614042,0.0295834411,0.0197907072,-0.0053838049,-0.0077476948,-0.0116618574,-0.0106063522,-0.0262410101,-0.0148576899,0.0198493451,0.0222535506,0.0095141986,0.0418976583,0.0265048873,-0.0165802147,-0.0022942559,-0.0304630287,-0.0319290049,0.0334243029,-0.0155686894,-0.0243059192,-0.0062890467,0.0145644937,0.0264902264,0.0288504511,-0.0043283007,-0.0166241936,0.0184859857,0.0091623645,-0.0061754333,0.0341866128,-0.0045262077,-0.0123215476,0.0188231599,0.0248336717,-0.0297886785,0.0312253367,-0.0187791809,-0.0350075625,0.0356525928,-0.01012991,0.0044125947,0.0212566853,0.0139121339,0.0160524622,0.0185446255,0.0297446996,-0.0063586808,-0.0096241469,-0.0144252256,0.0518956296,0.0149456486,0.0166535135,-0.0315771699,0.011258713,-0.0167121515,-0.0049879909,-0.0104377652,-0.0136042777,0.0137728658,0.0085686427,-0.0243938789,0.0087079108,-0.007406855,-0.0005314171,-0.015363452,-0.0260650925,0.0019295939,-0.0108555686,0.0009538021,0.0044639036,0.0066298866,0.0580234192,0.007886963,-0.0157152861,0.0068131341,-0.0143299373,-0.004302646,-0.012174949,0.0100712702,-0.0033039486,0.0390536599,0.0063770055,0.0087812096,-0.0276043713,-0.0048450581,-0.0105916932,-0.0071173245,-0.0130105568,-0.0229865387,-0.012556104,0.0443311818,0.0057576294,0.0166974925,0.0325447172,0.0081654992,-0.0318410471,0.0131424954,-0.0156859681,-0.0085100038,-0.0268420614,-0.0068461183,-0.0128492992,0.0503123738,-0.0059848563,0.0199959427,0.0024720058,0.0222095698,0.0076157572,-0.0054167896,-0.0263143089,0.027780287,0.0085759731,-0.0136995669,-0.0103058275,0.05471031,0.008634612,-0.043099761,0.0000338721,-0.0342452526,-0.0108995484,-0.0175477602,0.0052445373,-0.0000119683,0.0351541601,-0.0075644478,0.0236755479,0.010496404,-0.0257425774,-0.0136116082,0.0112953624,0.0200399235,-0.0077110454,-0.0195268299,-0.0031371934,-0.010298497,0.0434222743,-0.0309907794,-0.0075277984,0.0028549926,0.0213446431,0.0134137012,0.0465887897,0.0096021574,0.0248923115,0.0119843725,0.0082754474,0.0120943207,-0.0089717871,-0.003844528,-0.0024042043,-0.0084000556,-0.0332777053,0.0300818738,0.0215352196,-0.0083634062,0.0146671124,0.0001897755,-0.0177529957,0.0166828334,0.0020413748,-0.014432556,0.0151875345,0.0069670617,0.0248190127,-0.0370599292,-0.0353007577,0.0199959427,-0.0044639036,0.0397280119,0.0355646312,0.0056256917,0.0058529181,-0.020978149,0.0098440442,0.0227959622,-0.0008855425,-0.0087225707,0.000263647,0.0063660108,-0.0414578654,-0.0307562239,0.0039031671,0.01614042,-0.0046105017,0.0113320118,-0.01482837,0.0063550156,0.0226200446,0.0283080395,-0.0163016785,0.0234703124,0.0041780379,-0.0301111937,0.0190137383,0.0193069335,0.0089131482,-0.0027432118,-0.0109288683,0.0189550985,-0.0039141621,-0.0346850455,0.0287771523,0.0010390121,-0.0087372307,0.0094628893,-0.0033625877,-0.0052298773,0.0330138318,-0.0196294487,0.0148650194,-0.003410232,-0.0112880329,0.0023052508,-0.0083780661,0.0479668081,0.0136482576,0.0097267656,0.0184126869,-0.0057502999,0.0147550711,0.0154074319,0.0357112288,0.0291289873,0.0050906097,-0.0019754057,0.0134503506,-0.0268274024,0.0363269411,0.0229279008,0.0380274765,-0.0192629546,0.0282200817,0.0052738567,0.0215645395,0.011639867,0.0175330993,-0.0196294487,0.0119403927,0.0413699076,-0.0436275117,0.026607506,0.0019424212,0.0325740352,0.0074471696,-0.0089131482,-0.0170933064,-0.0026809077,0.0038628527,0.0283666793,-0.0238661263,-0.0021568206,-0.0219603535,0.0009002023,0.0301405136,0.0015988325,-0.0245844554,0.0033974047,0.0221509319,0.0021329983,-0.0144472159,-0.0050906097,-0.0333949849,0.0028531603,0.0184713267,-0.0008145341,-0.0200839024,-0.003576987,0.0264462475,0.0016373144,0.0001603414,-0.0373238064,-0.0029521137,-0.0308148637,0.0158179048,0.0053471555,0.001821478,0.0156126684,0.025874516,0.0323981196,0.0293782037,0.0099833123,0.0433929563,-0.0041487184,0.0006853449,0.0267687626,-0.0036576157],"111":[-0.0308743566,-0.0043957215,0.053702306,0.0239306055,0.0573976934,0.0027845779,-0.027476985,-0.0026672345,-0.0392187759,0.0267021451,0.0220084097,0.0042169127,0.0204587318,-0.0200862121,0.0523612387,0.0315001868,-0.0203842279,-0.0477420054,-0.0427055545,0.0255547874,-0.0102889687,0.0116300359,0.0046453089,0.0285796411,0.0168974511,-0.0270597637,-0.0263147261,0.0552221835,0.0325730406,-0.0408876613,-0.0101697622,-0.033705499,-0.0308445543,-0.0105795329,0.0229471568,0.0238561034,0.0390101671,0.0221872181,0.0038928213,0.0279687103,-0.0087020388,0.044136025,0.0062322393,0.0194454808,0.0244372319,0.0016986856,-0.0287733506,-0.0185812358,-0.0053940718,0.0699739307,-0.0290117618,0.0313511789,-0.0051258584,-0.0028125169,0.0172401685,-0.0300995167,0.0049507744,0.0162418187,0.0014034645,0.0048203929,0.0395763963,-0.0616891086,0.0613910928,0.0296375938,-0.0073013678,0.0395763963,-0.0292352736,0.0459837168,-0.0265978407,0.0346591473,0.0133659737,0.0039747753,-0.0075882077,-0.0225150343,0.0385035425,-0.059155982,0.0102144647,0.048338037,0.0040530041,-0.0169570539,0.0193411745,0.0056026825,-0.035404183,0.0185067337,0.0144686289,-0.0084338253,0.0066420096,-0.0276408941,-0.0039002716,0.0164504293,-0.0066420096,0.0397254042,-0.0112649677,0.0155861853,0.0055766059,0.012918951,0.0090522058,0.0003711218,-0.0279538091,0.0276259929,0.0274918862,0.0105199302,-0.0067388648,-0.0314107835,0.0250779632,-0.0294736866,-0.0156010864,-0.0043323934,0.0120547079,0.025375979,-0.0686030611,-0.0241839197,-0.0525102466,0.0246756431,-0.0261210166,-0.0173742753,-0.0268660542,0.0363578312,0.019147465,-0.0170166586,-0.0189984571,-0.0150125064,-0.0188345499,0.0043510194,0.0385631435,-0.0380863212,0.0072305896,-0.0486956537,-0.036655847,-0.0101623125,0.0725964606,0.0081507107,0.0474439897,-0.043361187,-0.0293991826,0.0024586238,-0.0335862935,-0.0089180991,-0.0145654846,0.001458411,-0.0283710305,-0.0177616961,0.0545069464,-0.0176126882,-0.0473247841,0.0444042385,-0.0034867758,0.0683646426,-0.0455068946,-0.0169868562,0.0074503757,-0.0038127296,-0.0113543719,-0.0223213248,0.0441062227,0.0081805121,0.0409770645,0.0270001609,-0.0155414836,-0.0330796689,-0.0345995426,0.0281624198,-0.0227087438,0.0168825518,-0.0263594296,-0.0085679321,-0.0677090138,-0.0483082347,-0.0818945244,-0.0232302714,-0.0133361723,-0.0557884127,-0.005096057,0.0201458149,0.0540301241,0.0134181259,-0.0249289572,-0.0634175986,0.0335564911,-0.0430035666,-0.0570102744,0.0058261938,-0.0095886337,0.0285051372,-0.0310233645,-0.0023245171,-0.053702306,0.0028292802,0.020548135,0.0311723705,-0.0426459499,0.0476824045,0.0164355282,0.017508382,0.0254951846,-0.0441956259,0.0338545069,0.0237517972,-0.0509307683,0.0240647122,0.0315001868,-0.0059640259,0.0500665233,-0.0157202929,-0.0063141934,0.0059379493,0.0076515358,0.0105571821,-0.0617487133,-0.0423777364,0.0101921139,0.0002987135,0.0034402108,-0.0108253956,0.0047458895,-0.0418115072,-0.0303528309,0.0060944073,0.0127922948,-0.0143270725,0.0275961906,0.0268958565,-0.0031086693,-0.0129487524,-0.0248842537,0.0179703049,0.0436890014,-0.0348975584,0.0106838383,-0.0082252147,0.0119876545,-0.03829493,0.0084710773,-0.0690202788,0.022649141,0.0019184717,0.0159289036,-0.0294289831,-0.0423479341,-0.0315597914,-0.0041945614,-0.0237666983,-0.0158991013,0.0094023738,-0.0289074574,0.0124346772,-0.033705499,-0.0614506975,0.0141110113,0.0411260724,0.0339141078,0.0015319835,0.0187749472,-0.0250928644,-0.0295332894,-0.055341389,-0.0096482364,0.046698954,0.0231855679,0.0234835837,-0.0138129964,-0.0392187759,0.0119802039,0.005077431,-0.0327816531,0.0422883332,0.0301591195,-0.0347485505,-0.0110414568,-0.0237815995,0.0642520413,0.043659199,0.0250928644,-0.0488148592,0.0051184078,-0.0227981489,-0.019609388,0.0019836626,0.0123303719,-0.0027678146,0.0031440584,-0.0469969697,0.0000813139,0.021874303,0.0348081551,0.0257186964,-0.0191921666,0.0555500016,0.0232451726,-0.0404704399,-0.0103038698,0.008478527,0.0279836114,-0.0035799055,-0.0124048749,0.0142898206,0.0052934918,0.0041573094,-0.0258230008,-0.0106316861,0.0088510457,-0.0050327289,0.0197434947,-0.0172401685,0.0111606624,0.0059453999,-0.0320068151,-0.0065749562,-0.000931297,0.0271193665,-0.0348677561,-0.0016819222,0.0033452187,-0.0145282326,-0.0373412818,-0.0177616961,0.049887713,-0.0246756431,-0.0112798689,-0.0718812197,-0.0292352736,-0.0768282712,0.0090447562,0.0034718751,0.0344207361,-0.0064669261,0.01487095,0.0083071692,0.0172997713,0.0000148716,0.0119876545,-0.0299505088,0.0215613861,0.0334372856,-0.0316491947,-0.0793315992,-0.0022779524,0.027015062,-0.0071337344,0.0122409668,-0.0311127678,0.0342717282,-0.0421691239,0.018760046,0.0081879627,0.011443777,-0.0028721199,0.0095737325,-0.0007073201,-0.0172252674,-0.0589771718,-0.0051221331,0.0027566389,0.0207120441,0.0254057813,0.0052003623,0.0406194478,-0.0184173286,-0.0408280566,-0.0052674157,-0.0172252674,0.02856474,0.0177318938,0.0203097239,-0.0258081015,0.0096035339,-0.0323644318,0.0242733229,-0.0401724242,0.0180299096,0.0259720087,0.0062881168,-0.0041237827,-0.0192219689,-0.0322750285,-0.0127103403,0.0327518508,0.0546857566,-0.0172103681,0.0575765036,0.0227832478,0.0188941527,0.0108849984,-0.0200266093,0.0284753349,0.0359704122,0.0200862121,0.0293246787,-0.0523910411,-0.0149156516,0.0258826055,0.0193709768,0.0070108036,-0.0230365619,-0.0105795329,0.0126209361,0.0172550697,0.00973019,0.0420201197,-0.0148038967,0.0384737402,-0.0049582249,-0.0596328042,-0.0379969142,0.0032893408,0.0232302714,0.0315895937,0.0136416377,-0.006947475,-0.0274620838,-0.0080687571,-0.0179703049,0.0454472899,-0.004783141,0.0378181078,-0.0190580599,-0.0502453335,0.0521526299,0.0196838919,0.063357994,0.0016297697,0.0155265825,-0.0458943136,0.0080389548,-0.0269852597,0.0337949023,0.0558480136,-0.0259273071,-0.0272981767,-0.0502751358,-0.0007552818,-0.0119280517,0.0568910688,-0.0085902829,-0.0294289831,0.0261359178,0.0104603274,-0.0236772932,0.0800468326,0.0037158749,-0.0360598192,0.0447320566,-0.0013187164,0.0244372319,-0.0163908266,-0.0181938168,-0.0265382379,-0.0232004691,0.0092384657,-0.0015124262,0.0472055785,-0.0049992022,-0.0247948505,0.0098866485,0.0066420096,-0.036745254,0.0170911606,-0.019385878,0.0344505347,-0.0443744361,-0.0278197024,0.0190282594,-0.0601096302,-0.0058299187,-0.0081954133,-0.0070108036,0.069139488,0.0462817326,0.0273875799,-0.0359704122,0.008605184,0.0018188229,0.0116598373,0.0299505088,-0.0064259488,0.0514075905,0.0201160144,0.0354637876,0.0085604815,-0.0481592268,0.0569208674,-0.0231557675,0.004146134,0.0458943136,0.0020563037,0.0169123523,0.0152881704,-0.0102293659,-0.0022723645,0.0179107022,-0.0575765036,0.008292268,0.0579639226,-0.0189835578,-0.0042280881,-0.0188196488,-0.0703315437,-0.0464009382,0.005934224,0.0008558619,0.0499473177,-0.001944548,0.0036041192,0.0403810367,-0.0088584963,0.012918951,-0.0031366081,-0.0115033798,-0.0182534195,-0.0493512861,-0.0215911884,0.0224405304,0.0361194201,0.0329902619,0.000683572,0.0088882977,0.0120994095,0.0189686567,-0.0093502216,-0.0314703882,-0.0106838383,-0.0357021987,-0.0513181873,-0.0116002345,-0.0160481092,0.0195199847,-0.0665169507,-0.0300250128,-0.0180746112,-0.0405598432,-0.0048390189,-0.0361790247,0.0313809812,-0.0275812894,-0.0542089343,-0.0109147998,-0.0284306332,-0.0378181078,-0.0326326452,0.0197136942,0.011406525,0.0456559025,0.0313213803,0.0403810367,0.0244670324,0.0044888514,0.0273428783,0.0023766698,-0.0094619766,0.0328114554,0.0380863212,-0.0204736311,0.0085977335,0.0004467897,0.0193113741,0.0293842815,0.0339439102,0.0182534195,0.0102368155,0.0284455344,-0.0041424087,-0.008478527,0.012606035,-0.0011780906,-0.0031217074,0.0440466218,-0.0051929117,-0.0332882777,-0.0236623921,0.0058522699,-0.0113320211,-0.0175679848,0.0095811831,0.042109523,0.0082401149,0.0201160144,-0.0351061709,-0.01805971,0.0139471032,0.0012954341,-0.0346889496,-0.0160779096,-0.0180299096,0.0352253765,-0.0169719551,0.0061391094,0.0285498388,-0.0061502852,0.0424373373,-0.0357320011,-0.0139471032,0.0139173018,-0.0043286681,-0.0124793788,0.0321856216,0.0170613602,0.0010439839,0.0181044117,-0.0157202929,0.0163014214,0.00832952,0.0046825609,-0.0137533937,-0.0470267721,-0.0355531909,0.0113841742,-0.0049284236,-0.0141706141,0.0573678911,-0.0147442929,0.0266425423,-0.009841946,-0.0198925026,-0.0535234995,-0.0326028429,-0.0087243896,-0.0161226131,-0.0182683207,0.0157500934,-0.0338843092,-0.0353445821,-0.0169570539,-0.0107955942,-0.0148783997,0.0386525467,0.0327816531,-0.0364770405,-0.0284753349,-0.0308743566,0.0063253688,0.0128742494,0.0094843283,0.0454770923,0.0035258902,0.0175232831,0.0294587854,0.0456559025,0.0284753349,0.0109967543,-0.0068096435,0.0358512066,0.0167931467,0.0056734611,-0.0204587318,0.0133659737,-0.0445830487,0.0056548351,0.0165994372,-0.0094843283,-0.0301442202,0.0142749194,-0.0270448625,0.0887488723,0.0302485246,0.0223809276,0.0110191051,-0.0276110917,-0.0209057536,-0.0046676602,-0.0000351274,-0.0315597914,-0.0111532118,-0.0224703327,0.0031254326,-0.0292501748,0.0024213721,0.0162567198,0.0050886064,0.0419605151,0.0069810017,-0.0185961369,0.0261061154,0.037520092,0.0056026825,0.0195646863,0.0057516899,0.0268958565,-0.0150572089,0.02498856,0.0630003735,-0.0254355818,-0.0004724004,-0.0155116823,0.0154520785,0.0107285408,0.0165249333,-0.014982705,0.0359704122,0.0361492224,0.0245862398,0.013231867,0.0030527913,0.0218147002,-0.0240796134,0.0054834764,-0.0171358641,0.0224256311,0.0502453335,-0.0145282326,-0.0308147538,0.018134214,0.0180150084,-0.082132943,-0.0128369974,-0.0152211171,-0.0107285408,0.0171656646,-0.0113022197,0.0321558192,-0.0234686825,-0.054179132,0.0208312497,-0.0239604078,0.0095886337,-0.0005396866,-0.0140588591,-0.0109222503,0.0280879159,-0.0291309692,0.0032893408,-0.0362982303,-0.0275365878,-0.0234388821,-0.0316491947,0.0487850606,-0.0191176645,0.0203842279,0.0289819613,-0.000472866,0.0058261938,0.0194156785,-0.0028330053,0.0196540914,-0.0014276782,0.0301591195,-0.0052562398,-0.0009834496,0.0129934549,-0.0590963773,0.0102293659,-0.018372627,-0.0037475389,0.0056138579,-0.0141259125,-0.0012069609,-0.0322452262,0.0140663087,0.0353743844,0.0153775755,-0.0051109577,-0.0242882241,0.0149156516,0.0151764154,0.0023468684,-0.0062545901,-0.0303528309,-0.0235580876,0.0012451441,0.0118609974,0.0343909338,0.0184918325,0.0472651832,-0.0192070678,0.0269256569,-0.0125687839,0.0197285954,-0.0428545587,-0.0022388378,-0.0164653305,-0.0551625788,0.0106540369,0.0025219521,0.0044031721,0.010780693,0.0458943136,-0.0081581613,0.009342771,-0.0118609974,0.0097897938,-0.0025089139,0.0115108304,-0.0035333405,-0.02638923,-0.0404704399,0.0099611524,-0.0120845092,0.0353147797,-0.0189686567,-0.0168825518,-0.0464009382,-0.0306359436,-0.0139843551,-0.0049656755,0.0175828859,-0.0104752276,0.0163163226,-0.0151317129,-0.1091927066,-0.0288627557,0.0364174359,-0.013932202,-0.0319174081,0.0104230754,0.030665746,0.0389207602,0.0271640699,-0.0315001868,0.005252515,-0.0421989262,-0.039159175,0.0090745576,-0.0065488801,0.0337949023,0.0341823213,0.0121068601,0.0250779632,0.0046937368,0.0035836305,0.0045186528,-0.031291578,0.0310829673,0.0030155396,-0.0060981326,-0.0078377947,0.0355233923,0.0077632912,-0.0283114277,0.0122409668,0.0094023738,0.0075323298,0.0046266834,-0.0037922412,-0.0127624935,-0.0101474114,0.0178809017,0.0016772657,-0.0111234104,-0.0398446098,-0.0398744084,0.0223064236,-0.031053165,0.0458943136,-0.0245564375,0.0145505834,0.0144760795,-0.0264190324,-0.0131126614,0.0216656923,0.0033508064,-0.0147591941,-0.0075286045,0.0094023738,-0.004783141,-0.0563248396,0.000041792,0.0137235913,0.0353743844,-0.0317684002,-0.0036283329,0.0157500934,-0.0500069223,-0.0041796607,-0.0156308878,0.037520092,0.0074913525,-0.0048464695,-0.0065004528,0.0303528309,0.0443148352,0.0253461767,-0.0169272535,0.0292650759,0.0162269175,0.0016334949,-0.0179852061,-0.0287882518,-0.003829493,0.0121143106,-0.0049097976,-0.036745254,-0.0148038967,-0.0022891278,-0.0048464695,0.0049246983,-0.0093129696,0.0162567198,0.0016819222,0.025614392,-0.002957799,-0.0004670454,0.0092980685,0.0117790438,0.0025145018,0.0131052108,0.0054685757,-0.0101697622,-0.0111755636,0.0278942063,0.0005913735,0.017046459,-0.0270001609,0.0025741048,-0.0067202388,0.0338247046,-0.0144164767,0.0021550211,0.0076962379,-0.0317684002,-0.0020581663,0.0045223781,0.0321856216,-0.0199968088,0.0041424087,0.0201160144,-0.0113320211,0.0094843283,-0.0154520785,0.0125017306,-0.018760046,-0.0050103776,0.0491724797,-0.0177318938,0.0067463149,0.0451790765,-0.0016744719,0.0368048549,-0.0116672879,-0.0012488692,0.0602586381,0.014945453,0.0700931326,0.0079271998,-0.0288627557,0.0284008309,0.0115033798,0.0044180728,0.0558480136,0.0034253101,0.0079570012,-0.0055207284,-0.007297643,0.0245415363,-0.0110116554,-0.0023599064,-0.0100580072,0.0018719068,0.0309935622,0.0123676239,-0.0395763963,-0.0337949023,0.0476824045,0.0033526691,0.0506029502,-0.0465499461,-0.0228726529,-0.0118013946,-0.0086871376,0.0004819462,0.0196242891,0.0491426773,-0.007197063,0.0225597378,0.0078899479,-0.0275663901,-0.0090820082,-0.0390101671,0.0247799493,-0.0088212444,0.0128891496,0.0130158057,0.0185961369,0.0487850606,0.0389207602,0.0010430525,0.0092533669,-0.0048613702,0.0172550697,-0.0309339594,-0.0019780747,0.0085530309,0.0391889736,0.0114512276,-0.0180448089,-0.0381161198,-0.0051035071,-0.0004591294,0.0150646595,0.0167186428,0.0119504025,-0.0014137088,0.0221872181,0.0076366351,0.0017545634,0.0139620034,-0.0075584059,-0.013932202,0.0237517972,-0.0211441666,0.0296673961,0.0202203188,-0.0216209907,0.0102442661,0.0601394325,0.0015925178,0.0146995913,-0.0424373373,0.0375796929,0.0029726999,0.0250332616,0.0059118732,-0.0074764518,-0.0088286949,0.0507221557,0.0325134397,0.018134214,-0.0040753554,-0.0213974789,-0.0249438565,-0.0464009382,-0.0265233368,0.0129785538,-0.0159438029,0.0336160958,0.0196838919,0.0113916239,-0.0120025547,-0.004321218,-0.0043323934,0.0247948505,0.0076664365,-0.0113245705,0.0171656646,0.0113990745,0.0013121974,0.0158991013,-0.0045000268,0.0085977335,0.0230663624,-0.0037587145,0.0327518508,-0.0004195493,-0.0368942581,-0.0147740943,0.0133287217,0.0000012041,0.0371624716,-0.0139024006,0.005472301,0.0194305796,0.0165547337,0.0150423078,0.0187302437,0.0236027893,0.0115108304,0.0151168117,0.0023692194,-0.0075323298,-0.0102666179,0.0280134119,0.0120621584,-0.0050141029,-0.0097525418,0.0093576713,-0.0222468209,-0.0100729074,0.0257037953,-0.0146995913,-0.0266425423,0.0366260447,0.0239604078,-0.0226789434,0.0005271141,0.0255398881,-0.0601692311,-0.00426534,0.0103038698,-0.0211292654,-0.0150944609,0.000478221,-0.020399129,-0.0122409668,0.043659199,-0.0118833492,0.023349477,-0.0384439379,0.0355829932,-0.0298164021,-0.0137608433,-0.0024623491,-0.011481029,0.0357916057,-0.0198925026,-0.0042765155,-0.0213974789,-0.0039598746,0.0153477732,-0.0104454262,0.0156606901,-0.0148113463,0.0392783806,0.0041759354,0.0269554593,0.0275812894,-0.011756693,-0.0327518508,-0.0069176736,0.0133361723,0.0209206548,-0.0000640849,0.0101921139,0.0466095507,-0.0213676766,0.014669789,0.030665746,0.0324240327,0.0154669797,0.0306955464,0.0036674473,0.0129934549,0.0091937631,0.0266425423,-0.0021643341,-0.008992603,0.0376392975,0.0118758986,-0.0023952958,0.0244372319,0.004127508,0.0116598373,0.01487095,0.0153924758,-0.0339737125,0.002995051,0.0240200106,0.0086498857,0.0055877818,-0.0112128155,0.0098717473,0.0209802575,0.0025703795,0.0103411209,-0.0035575542,-0.0253312774,0.0201160144,0.0450300686,-0.0180001073,0.051616203,0.0767686665,0.0010421213,-0.0030751426,0.0125464322,-0.0084934281,0.011205365,-0.024526637,-0.0149380034,-0.005159385,0.031053165,-0.0138129964,-0.0091192601,-0.0260316115,0.0276557934,0.0005261828,-0.0006737933,-0.0297567993,0.0223809276,0.0266425423,-0.0127103403,0.0256739948,0.0048986217,-0.0238412023,-0.0157947969,-0.0114586772,-0.0125985853,0.0026765475,-0.020861052,-0.0176573899,0.0155563839,0.0032129744,-0.03331808,0.0163610242,0.0426459499,-0.0020767923,0.0222170204,-0.022649141,0.0138651486,-0.0091937631,0.0111383116,-0.0111830141,-0.0402022265,-0.013932202,0.0119429519,-0.006191262,0.0038518442,-0.0063141934,-0.021710394,0.002054441,-0.0279091075,-0.0226938445,-0.0228577517,0.0065637808,-0.0090373056,0.020861052,-0.0046676602,0.0519440174,0.0125240814,0.0467287563,0.0196242891,-0.0192368701,0.017746795,-0.0219339058,-0.0231557675,-0.0221127141,-0.0188643504,0.0312617756,0.0013056783,-0.0095662819,-0.0376988985,-0.0060571553,0.0305763409,-0.0015236018,0.0092459163,0.0374008864,0.0211590659,-0.001084961,0.0162567198,0.0071188337,-0.0271342676,-0.0103485715,0.0005750759,-0.0360896178,0.053314887,-0.0253014751,-0.0001627441,0.0027193872,0.0006551674,-0.0129860044,0.0222021192,0.0176573899,-0.002114044,0.0069623762,0.0161077119,-0.008679688,-0.0198179986,-0.0451194756,-0.0085083293,-0.0057479646,-0.0170166586,0.0244968347,0.0272832755,-0.017746795,0.0236027893,0.0429439656,-0.001972487,-0.0110116554,-0.0200862121,-0.0214570817,-0.0174189787,-0.0405598432,0.0089106495,0.0186110381,0.0336756967,0.032453835,0.0503347367,-0.0159140024,-0.0001758987,-0.0233196747,-0.0188494492,0.0322154239,0.0046900115,-0.0359108113,-0.0019706243,0.0113171209,0.0088361455,0.0306955464,-0.0178063978,-0.0029503487,0.0009657549,-0.0022369754,-0.0213676766,0.0400830209,0.019147465,0.0016549147,-0.0023226545,0.0063737961,-0.0194901824,0.0344803371,-0.0171805657,-0.0347485505,0.0317684002,-0.0038071419,-0.0035668672,0.0317684002,-0.0156904906,0.0276408941,-0.0005201293,0.0286839455,-0.0203395244,-0.0260316115,-0.0099686021,0.0213825777,-0.0009159305,0.0028218296,-0.0165398344,0.0183279235,0.0056809112,-0.0054313238,-0.0082699172,0.0041424087,0.0191921666,0.0021941357,-0.0288031511,0.0179852061,-0.0265531391,0.0098866485,-0.0367750525,-0.0149976062,0.0019147465,-0.0064222235,-0.0018570061,-0.0042467141,-0.0051184078,0.0099909538,0.0079868026,-0.0131350122,0.0088733975,-0.0085604815,0.0117268907,0.0026281199,-0.0029596617,0.007159811,0.0347485505,0.0031161197,-0.0019650366,-0.0079570012,0.0017219681,-0.0140290568,-0.0215315856,-0.020548135,0.007003353,0.0033321804,0.030203823,0.0110861585,0.040857859,0.0143643245,0.0483678393,-0.0176424887,-0.0021494334,-0.0293693803,-0.0166143384,-0.0245862398,-0.0124719283,0.001348518,0.0239455067,-0.0181193128,0.0359704122,0.0097450912,-0.0055691558,0.0076068332,-0.0065675061,-0.0250481628,0.0236474928,0.0259124059,-0.0143047208,-0.006284392,0.0410366692,-0.0273577794,-0.0456857011,0.0096333353,0.001935235,0.0110340063,-0.0356425978,0.004339844,0.0076813372,0.0092682671,0.0098568471,0.0141929658,0.0022816774,-0.0382651277,-0.0067165135,0.0125762336,0.0121068601,-0.0278346036,-0.0089851525,0.0229173545,0.0144611793,0.0196391903,-0.0194752812,-0.0219190046,-0.0018979831,0.0024046088,-0.0008386329,0.0547751598,0.0180895124,0.0232302714,0.008292268,0.0156904906,0.0252269711,-0.0259720087,0.0245713387,0.0267468486,0.0171805657,-0.0285796411,-0.0006155873,-0.0092682671,0.0033452187,0.0051854616,-0.0035426535,-0.0244670324,-0.009029855,0.0113171209,-0.0070331544,0.0204438306,-0.0063365442,0.0218295995,-0.0383843333,-0.0335862935,0.0232302714,-0.0023207921,0.0201309156,0.0258230008,0.0003173394,-0.00163722,0.0025238148,0.0190729611,0.0304124337,0.0106316861,-0.0360300168,-0.0110861585,-0.0056324839,-0.0188941527,-0.037132673,0.0068170936,0.0154222772,-0.0151764154,0.0084263748,-0.0155861853,0.0202799216,0.0245117359,0.0177616961,-0.0037978289,0.0273726806,-0.0025573415,-0.0296375938,0.0109967543,0.0195050836,0.0000981936,0.0031440584,0.000250286,0.017508382,-0.0165100321,-0.0093725724,0.0280730147,0.0011250067,-0.0273577794,0.0102442661,0.0073758718,0.0052562398,0.0448214598,-0.0250183605,0.0089404508,-0.0002758967,0.0001961544,-0.0020842426,0.0015031133,0.0616295077,0.0159289036,0.0011808845,0.0264339317,0.0114661278,0.0161673147,0.0020861051,0.0316491947,0.0082848174,0.0397254042,0.0096705873,-0.0022071737,-0.0118162958,0.0200117081,0.0091863135,0.0081507107,-0.0163908266,0.0220084097,-0.0110191051,0.041245278,0.0089702522,0.0000803244,-0.0275067873,-0.0092682671,0.0322750285,-0.0400532186,0.0288627557,-0.0035985315,0.041245278,0.0096258856,0.001477037,-0.0149082011,-0.0067314142,-0.0123080201,0.025837902,-0.0138875004,-0.0165845361,-0.0074503757,-0.0017676016,0.0326326452,-0.0009657549,-0.0241690185,-0.0011985792,0.0194454808,0.0272534732,0.0067239641,-0.0048390189,-0.0098195951,0.0021382577,0.0259869099,-0.0134553779,-0.0056138579,-0.017046459,0.0197136942,0.0059081479,0.0098717473,-0.0087765427,-0.0026094941,-0.0291309692,0.0092012137,0.0210100599,-0.0018234794,0.0374902897,0.0074988031,0.0193113741,0.005796392,0.0187302437,0.0462221317,0.0215315856,0.0125017306,0.0151466131,0.0061130333],"112":[-0.0085026864,0.0046448428,0.0470039584,0.0096523231,0.0245667454,0.0030071887,-0.0200453531,-0.0095905978,-0.0079780193,0.0067705144,0.0324984714,-0.0092511075,-0.0062149852,-0.009629176,0.0505531766,0.0118049998,-0.0226069596,0.0008212383,0.010616784,0.0221594498,0.016526999,-0.005798338,0.0228075683,0.0027139925,-0.0164189804,-0.0057751909,-0.0028914534,0.0632686242,0.0576516055,-0.0495655686,0.022236608,-0.0374982357,0.0025673946,-0.035368707,0.0096137449,0.0241038036,0.0418807454,0.0083638038,-0.0052119461,-0.0108945491,0.0263567846,0.0065467595,0.0249833912,0.0117201274,0.020739764,0.0494112521,-0.0017254204,-0.0213878825,0.0112649016,0.039504312,-0.0233013723,0.0378994495,-0.0233630985,-0.018795412,0.0256006457,-0.0115118036,-0.0503679998,0.0253228825,-0.0196595676,0.0002686023,0.0104161762,-0.039535176,0.0608304702,0.0148449801,-0.002411152,0.0486705489,0.0136259021,0.0418190174,0.0003860254,0.0085026864,0.0106785093,0.0357699208,0.015570255,-0.011596676,0.0256006457,-0.0207860582,0.0038424118,0.040522784,0.0006958584,0.0145209217,0.0069209705,-0.0144051863,-0.0048261615,-0.0045946911,0.0295510776,-0.0161412153,-0.0171133913,-0.0006341329,-0.0208940785,0.0160794891,-0.0287486464,0.0332083143,0.0082326373,0.0151304603,0.0183787644,0.0087187253,-0.000235449,0.0185948033,-0.0256932341,0.0287486464,0.040738821,-0.034350235,0.0123682451,-0.0429300778,0.023964921,0.0212798622,-0.0131398132,0.0034064755,0.0013946103,0.041726429,-0.1127724648,-0.0157245677,-0.0700584278,0.0098066367,-0.0170208029,0.0104316073,-0.0221748818,-0.0168510582,0.0152924899,-0.034319371,-0.0245976076,-0.0279307831,-0.026433941,-0.0262024701,0.0035376421,-0.0360785499,-0.0295973718,-0.0535160005,0.0056247353,-0.0324058831,0.0675276816,0.0487322733,0.0632069036,-0.0360785499,0.0046602744,-0.0035511446,-0.0646265894,0.0253691766,-0.0137184896,0.0324058831,-0.01978302,-0.0042552007,0.0425905883,0.0268814508,-0.0463249795,0.0541641153,-0.0320972539,0.0570034906,-0.0434238799,-0.0154545195,0.0164961368,-0.0282239802,-0.0432387069,-0.0293504708,0.0103930291,-0.0501828231,0.0302917846,0.0179466866,-0.0193509404,-0.0434547439,-0.0256932341,0.0019077034,-0.0247364901,0.0219279807,-0.0416029803,0.029643666,-0.0848725438,0.006789804,-0.0901192129,-0.0193818044,-0.0225606654,-0.0374365076,0.0153850783,-0.0069904118,0.0174374506,0.0129083432,-0.0108019607,-0.0480532944,-0.000571443,-0.0536703132,-0.0310016274,0.0201533716,-0.0306004118,0.0423436873,-0.0091662351,-0.0105241956,-0.0244278628,0.0201688036,0.0001075374,0.0172677059,-0.0209249407,0.0525901169,0.0208169203,0.045923762,-0.0059603676,-0.058330588,0.0293196067,0.0222520381,0.00164537,0.0350292139,0.0347823128,0.0073376177,0.0967855677,-0.0050730635,0.0179312546,0.0032868823,-0.0084795393,0.0071408674,-0.0272363722,-0.0340416059,-0.0023860759,0.0114192152,0.0170670971,0.0020080074,0.0066509214,-0.0202305298,-0.0192120578,-0.0272209402,0.0087804506,-0.0284863133,0.0361402743,0.0491952151,0.0221903138,-0.0404610597,-0.0081400489,0.0566022731,0.0147986859,0.00767325,0.0079548722,0.0182090197,0.0181164313,-0.0174065884,-0.0176226273,-0.0256315097,-0.0261561759,-0.003882919,-0.0416955687,-0.0320972539,-0.0300911758,-0.0168819204,-0.008896186,0.0161566474,-0.005431843,0.0290881358,-0.0169590786,0.0168201961,-0.0458311774,-0.0441954508,0.0215267651,0.0275141373,-0.0021121691,-0.0130549408,-0.0000456612,-0.0298134107,-0.0376216844,-0.0349057652,-0.0662931725,0.0347823128,0.0109562743,0.0131398132,0.0011911091,-0.0431152545,-0.0126537252,-0.0156011172,-0.0310633518,0.0302609205,0.0556146652,0.0120133236,0.0066393479,-0.0436707847,0.0646265894,0.0445040762,0.0318194889,-0.0306004118,-0.0045445389,-0.0250142552,-0.0057173236,0.0087881666,-0.0141042741,-0.0115889609,0.0061339703,-0.0576824695,0.0153310681,0.0055205734,0.0161103532,-0.0003517871,0.0326219201,0.0315571576,0.0174374506,-0.0374365076,0.0451521948,0.0259709992,0.0173294302,-0.024474157,-0.0011997892,0.0305386856,-0.0004523321,-0.0069016814,0.0068438137,-0.0020330832,0.000810147,-0.0579602346,0.056108471,0.0021835391,0.0194435287,0.0512938797,-0.052127175,-0.0324676074,-0.0321898423,0.014088843,-0.043485608,0.0229155887,0.0074803578,0.0057057501,-0.0463867038,-0.0462015271,0.0285789017,-0.0172677059,0.032344155,-0.0334860794,-0.0161412153,-0.0672807842,-0.0189342946,0.0123219509,0.0078931469,0.0070251324,0.0085104015,0.0048840293,0.0018247598,-0.0184250586,-0.0182090197,-0.0090890778,-0.0248445086,-0.003884848,-0.0380229019,-0.0888847038,0.0044288039,-0.0072334558,-0.0307855885,0.0324676074,-0.0320046656,-0.0079394411,-0.049905058,0.0177615099,0.0447818413,0.0229001567,0.0409239978,0.0057018921,-0.0284400191,-0.0140734119,-0.0481150188,0.0041124607,0.0232550781,0.0078314217,0.0452139191,0.0020735906,0.01012298,-0.0473743118,-0.0398746654,0.0140965581,-0.0169899408,0.0216656458,0.0332391746,-0.0263876468,-0.0035357131,0.051139567,-0.0604601167,0.0394117236,0.0071948771,0.0367883928,0.0318812169,0.0063345782,-0.025446333,-0.0291961562,-0.0546270572,0.0025288162,0.0029956151,0.0423128232,0.0021507475,0.0484236479,0.0044288039,0.0387944691,0.0122833727,-0.0466027446,0.0270049013,0.0283319987,0.030122038,0.0484236479,-0.0658610985,-0.0475903526,-0.0073800539,0.0111414511,0.0312330984,-0.0077311173,-0.0155085288,0.0172059797,0.0440102741,0.0428066254,0.0221440196,-0.0030669852,0.0083869509,-0.0179929808,-0.0561393313,-0.0556763895,-0.0176534895,0.0110951569,-0.00727975,0.0297362544,-0.0272826664,-0.018286176,-0.0056710294,-0.0337021165,0.0324676074,-0.0469730981,0.0485470966,-0.0246901959,-0.0442571752,0.0728977993,0.0113189118,0.040553648,-0.0073646223,0.0101075489,0.0130163627,0.0065621911,-0.0609847829,0.0159560386,0.002604044,-0.0478372537,-0.0154468035,-0.0499976464,-0.0281931162,-0.0069518331,0.0643796846,0.0090582157,0.0099686664,0.0009345625,0.0094285682,-0.0023012033,0.0746878386,0.0011467439,-0.0242735483,-0.0144977747,0.0232550781,0.0497507453,-0.0453682356,-0.00742249,-0.0146057941,0.0192429218,0.0411400385,-0.0132709797,0.0458620377,0.0069634067,-0.0463249795,0.0239031948,-0.0296128038,-0.0315417238,-0.0052582403,-0.0058562057,0.0190886073,0.0040970296,-0.0060683871,0.063453801,-0.0461089388,0.0326836482,0.0123913921,0.0566948615,0.0255852155,0.002459375,0.0085181175,-0.0193046462,-0.0156705584,-0.0167121757,-0.0096909022,0.0235174112,0.0114269312,0.0413252153,0.0006346152,-0.0314954296,-0.0090736467,-0.0367883928,0.0093436958,-0.0289183911,0.0277919006,0.0415412523,-0.0040545929,0.004085456,0.0040623089,-0.0339181572,0.0106630782,-0.0235328432,-0.0162183717,0.0153850783,0.0637007058,-0.0200916473,0.0099609504,0.0084563922,-0.0540406667,-0.009382274,0.0248753726,-0.0129083432,0.0391339585,-0.0266654119,-0.015068735,0.0630525872,0.0078082746,-0.0104238922,-0.0035299263,-0.0359550975,-0.0040738825,0.0011110588,-0.0179312546,0.0129932156,0.0212798622,0.0176226273,-0.0031036348,0.0462941155,0.0107170884,0.0049534705,-0.0126305781,-0.0195824113,-0.0253383126,0.0051695099,-0.0015817157,-0.0006649957,-0.004818446,0.0048107305,-0.0394734517,-0.0194435287,-0.0149067054,-0.0412634909,0.004201191,-0.0312022343,0.0299214311,0.0280388035,-0.0462015271,-0.0085026864,0.0076848236,-0.0360476859,0.0057790489,0.05826886,0.0179003924,0.0387944691,0.0040237303,0.0229310188,0.0004342484,-0.0225143712,0.0408622734,0.0148989903,0.0181935877,-0.0095597347,0.0278381947,-0.0409239978,0.0558924302,-0.0127385976,-0.0245667454,0.023455685,0.0218045283,0.0118049998,-0.0276530199,-0.006905539,-0.0074533527,-0.0273598228,-0.0045946911,-0.0075883772,-0.0146289412,0.0095365876,0.0218045283,-0.0327453725,-0.0424054116,0.0099995295,0.0015325282,-0.0059179314,0.0115812449,0.0116198231,0.001609685,-0.0136181861,-0.0080011664,-0.0236408617,-0.0329305492,0.0087187253,-0.0544418804,0.0191657636,-0.0023957205,0.0473434515,-0.0587935299,-0.0033621101,0.0263722148,0.0199373327,0.0045522549,-0.0358316451,-0.0007836244,0.0108791171,0.0146212252,0.0166967455,0.0085335486,0.0018180085,-0.022221176,0.0116892643,-0.0339798816,0.0143125979,0.0181164313,-0.0018131862,-0.0182553139,-0.0118898721,-0.0484236479,0.0110179996,0.0119130192,0.0098529309,0.0407696851,-0.0011467439,-0.0249833912,0.0053778333,-0.0384241156,-0.0250759795,-0.0179929808,-0.0020986667,-0.0127231665,-0.0119438823,0.0352761187,-0.044689253,-0.0128311859,-0.0373747833,-0.0094362842,-0.0031190661,0.0227767061,0.072650902,-0.0233939607,-0.0301066078,0.0070829997,0.0105241956,-0.0026329779,0.0053392546,0.0195515491,-0.0154390875,-0.01777694,0.0522814877,0.0199373327,0.0318194889,-0.0090659317,-0.0014187217,0.0396586284,0.0017572475,0.0246593338,-0.0179466866,0.0131475292,-0.007665534,-0.0141119901,0.0184867848,-0.0170825291,-0.0011390281,0.0059565096,-0.0403376073,0.0563553721,0.0313874111,0.0360785499,-0.0029358186,-0.0147138136,-0.0253383126,-0.0214033127,-0.0252920184,-0.0305695478,0.0342267826,-0.034103334,-0.016064059,-0.0150301568,0.0278536268,0.0241192356,0.0342885107,0.040553648,0.0256469399,-0.0204619989,0.0260790195,0.0227149799,0.0285789017,0.0309244692,0.0074456371,0.0017128823,0.0096677551,-0.0146135092,0.0586392134,-0.0138959503,-0.0039427155,-0.0260790195,0.0079548722,-0.0140734119,0.0177615099,0.0130395098,0.0137339216,0.0387327448,0.0095905978,0.024952529,0.0182398818,0.0065467595,-0.0193355102,-0.0005256311,-0.0134638725,0.0143434601,0.0091739511,-0.0304152351,-0.0314491354,0.0073607648,0.0401524305,-0.035337843,-0.0392882749,-0.0149992937,0.0037575392,-0.014574931,0.0024921666,0.0394425876,-0.0157554317,-0.0151073132,0.0044789556,-0.0328996852,-0.0041471813,-0.0077465489,-0.00742249,-0.0227612741,-0.0050344854,-0.0094517153,-0.0106553622,-0.0288103726,0.006785946,-0.0344428234,-0.0084718233,0.041757293,0.0083560878,0.0109871374,0.033331763,0.00792401,-0.0067512253,0.0223600585,0.0379920378,0.0135255978,-0.0114269312,-0.0061956961,-0.0017775012,-0.0419733338,0.0136490492,-0.0355230197,0.0111337351,0.0118975881,-0.0139576765,-0.0238414705,-0.0172059797,0.0195515491,-0.0097217644,-0.0065891962,0.0060838186,0.020755196,-0.0080165975,-0.0297979806,0.0163109601,0.0124685485,-0.0143897543,0.0278844889,-0.021742804,-0.0019443529,0.0018353688,0.0082094902,0.0267117061,0.0113189118,0.0462015271,-0.0231161956,0.0322515666,0.0121367741,0.0291035678,-0.0118204309,-0.0278690588,-0.0203848425,-0.024443293,-0.007908578,0.0077156862,-0.0119515974,-0.0161412153,0.0426523127,-0.0097912056,-0.0060799606,-0.0013801433,0.0061609754,0.0122216465,-0.0058214851,0.0083946669,-0.0429609418,-0.0217119399,-0.0001933744,0.0302454904,0.0255389214,-0.0336095281,-0.0254000388,-0.0555838011,-0.0387327448,-0.0233939607,0.0000343589,0.0192274898,-0.0030862745,-0.0307547245,0.0017273492,-0.1236978769,-0.0258475486,0.0501210988,-0.0213261563,-0.0438559614,0.0080243135,-0.0207243338,0.0118744411,0.0274524111,-0.0194126666,0.0032502329,-0.052867882,-0.0109022642,0.0231779218,-0.0242735483,0.018764548,0.0017524252,-0.001092734,0.0281931162,-0.0086184219,0.0041934755,0.0147060975,-0.0513556078,-0.0125379898,0.0220514312,-0.0044403775,-0.0298905689,0.0549048223,0.0332391746,-0.026187038,0.0151458923,0.0487322733,-0.0140965581,0.0170825291,0.0083715199,-0.0160949212,-0.0216347836,0.0304306652,0.0173448622,-0.0147060975,-0.0419424698,-0.0436399207,-0.012592,-0.0124145392,0.0300603136,0.0061532599,-0.0168356262,0.0086878622,-0.0043516471,0.0199064706,0.0132246856,0.0115040876,0.0006789804,0.0170670971,-0.0176071953,-0.0012933419,-0.0218508225,0.0119053042,-0.0080474606,0.0049611861,-0.0087650195,0.0197367258,0.0212644301,-0.0242426861,-0.0373747833,0.0022626249,-0.0068245246,0.0392265469,0.0423436873,0.0037671837,0.0288720969,0.014829549,-0.0037806863,-0.0131243821,0.017283136,0.0195669793,-0.01012298,-0.0434547439,-0.0109099802,0.0002596811,0.0092896856,-0.0315725878,-0.0228847247,0.0113729211,-0.0022606961,-0.0029686103,-0.0064811762,-0.000216642,0.0194898229,-0.0032772378,0.0178232342,-0.0001118774,0.0045599705,-0.0071948771,-0.0146520883,0.0051039262,0.0019790735,0.0081169019,0.0078738574,0.0089810584,0.027421549,0.0223446265,0.0471891351,-0.0268814508,-0.0057790489,0.0028818087,0.012105912,-0.027683882,-0.0033987598,0.0227921363,-0.0282085482,0.011349774,-0.0085104015,0.0220977254,-0.0181781556,0.0176997837,0.02867149,0.0008660858,-0.022977313,-0.0257086661,0.0440411381,0.0061455439,0.0124376863,-0.0070752841,-0.0114886565,0.0060799606,0.0260481555,0.0320355296,0.0078121321,0.0278999209,0.0187028237,0.0484853722,-0.0024690195,0.0566331372,0.0050113383,-0.0503371358,0.0127231665,0.0037401789,0.0041163187,0.0458311774,0.0047104266,0.0207706261,-0.0023243504,-0.0221903138,0.0339181572,0.014567215,-0.0490717627,0.0000749265,0.0042320536,0.0345354117,0.0020504436,-0.0197212938,0.0026175466,0.0493186675,-0.0228847247,0.0482076071,-0.0376216844,-0.0448127054,-0.0141659994,-0.0017254204,-0.0048763137,0.0464175679,0.0285943337,-0.0035222108,0.0303843711,0.0020562303,-0.0334860794,-0.0357081965,-0.0026001863,0.024458725,0.003962005,0.0158943143,-0.0100612547,0.0086029898,0.0295973718,0.032344155,0.0266499799,0.0033833284,-0.0030650564,0.0362637267,-0.0423436873,-0.021233568,0.0388253331,0.0196441375,0.0209712349,0.0050576325,-0.0127308825,0.0039967252,0.010609068,0.0250451174,0.0187028237,0.0328688212,-0.0062497058,0.0287640784,-0.0086878622,0.00888847,0.0215576272,-0.0084486762,0.0004887405,0.0402450189,-0.0019867893,-0.0025731814,-0.009150804,-0.0150070097,-0.0264956653,0.0412943512,-0.003466272,0.0315725878,-0.0301991962,-0.0093128327,-0.0064464556,-0.0184867848,0.0307238623,-0.008896186,-0.0165115688,0.0188262742,-0.0198447444,0.0328070968,-0.007669392,-0.0379303135,-0.0009162377,-0.0465101562,-0.0278536268,0.0317886285,-0.0189651567,0.0225606654,-0.0016646592,-0.0173294302,-0.0104547543,0.001461158,-0.002359071,0.029659098,-0.0030399803,-0.0050499164,0.0297362544,-0.0033235317,0.0052196616,0.0169590786,-0.0180238429,-0.0087264413,0.0153002059,-0.0325601958,-0.0017553186,0.0135255978,-0.0355230197,-0.0105164805,0.0289492551,0.0366649404,0.0630217269,-0.0023224214,-0.0036996715,0.0324676074,0.0230853334,0.0184867848,0.0120287547,0.0133635681,0.0062574213,0.0200607833,0.0253228825,0.0065737646,0.008410098,0.0203539804,0.0203848425,0.0070521371,-0.0315725878,0.0024497304,-0.0016492279,-0.0215421952,0.0112186074,0.0069672647,-0.0070598526,0.0568183139,0.0107479505,-0.0268042944,-0.0369427055,0.0180084109,-0.0364180394,0.0046139802,0.0051039262,-0.0117432745,-0.0073337597,0.0025211005,0.0433004312,-0.010863686,0.008649284,-0.027190078,-0.0005111642,-0.0377142727,0.0293659009,-0.0184096266,-0.0017591765,-0.0126305781,0.012113627,-0.0050962106,-0.0183633324,-0.0096754702,-0.00026378,-0.0020870932,0.0047297156,-0.0214341767,0.0281931162,-0.0041356077,-0.0011342058,0.0120673329,0.0344428234,0.0141659994,-0.0073028971,-0.0009721764,-0.0191194694,0.0119901765,0.0263722148,-0.0148372641,0.0390105098,0.0087032942,-0.0402450189,0.001831511,0.0224372149,0.0047142841,-0.0071871616,0.0005550472,-0.004324642,0.0364180394,0.0210329611,0.0147909699,0.0017437451,0.0252148621,0.0168819204,-0.0167430397,-0.0069981273,0.0038250515,0.0052428087,0.0071910196,0.0102232844,0.0158017259,-0.0374982357,0.0092356764,0.0216965098,0.0047875834,0.004324642,-0.0207706261,-0.0008275073,0.0100535387,0.0042744903,-0.0228075683,-0.0258629806,-0.0255234893,-0.0171751175,0.0326527841,-0.0459546261,0.0380537622,0.0793172568,-0.0247827843,-0.0176534895,0.0092279604,0.0248599406,-0.0275449995,-0.0041819019,-0.0191349015,0.0093051177,0.0210483912,-0.0140425488,-0.0058947843,0.0245821755,0.010616784,0.0057481863,0.015061019,-0.0223909207,0.0116815493,0.0320663899,-0.0071871616,0.0227612741,-0.0140425488,0.0083175097,-0.0198601764,0.0099840974,-0.0053431126,0.0081169019,-0.0029146005,-0.001352174,0.0468496457,0.0220051371,-0.0110334316,-0.0011891801,0.0309399012,-0.0314337052,0.0118049998,-0.0377451368,0.0239340588,0.0064310245,-0.0134252943,-0.0376525484,-0.0198447444,-0.0152230486,0.0167121757,0.0133095589,0.0211872738,0.0047412892,0.0086801471,-0.0177306458,-0.0508309416,-0.0312176663,-0.0048377351,0.0084178131,-0.0216810778,-0.0052273772,-0.000214472,0.0499667823,0.0033003849,0.0106476471,0.0068823919,-0.0314337052,-0.00604524,-0.0204311367,-0.0120287547,-0.0077619804,-0.0528987423,-0.0093514118,-0.0112957647,-0.0077426909,-0.0243969988,-0.0107788136,0.023486549,-0.0011525307,0.045923762,0.0390413702,0.0234093908,0.0060722451,0.018286176,0.0230853334,0.0066239163,-0.0346897244,-0.0066123428,-0.0359242335,0.0265728235,0.011110588,-0.0039195684,0.029628234,0.0166350193,-0.0221903138,0.0277301762,0.018286176,-0.0156937055,0.0256778039,-0.0059487941,0.0186565295,-0.0279462151,-0.0381463505,-0.0160794891,-0.0078584263,-0.043763373,0.0356773324,0.0293813329,-0.0180238429,0.0366958044,-0.0011081654,0.0005593873,-0.0223137643,-0.0318503529,-0.0034238356,0.0054472745,-0.0306775682,0.0057481863,0.0190731753,0.001768821,0.010871402,0.0444114879,-0.0205854513,-0.030122038,-0.0154930977,-0.0436399207,0.0126845883,0.009143088,-0.0097680585,-0.0068592448,-0.0139885386,0.0124299703,0.0097757746,-0.0263413526,-0.0021700368,-0.0201225094,0.012105912,-0.0083175097,0.022236608,0.0275449995,0.0289955493,0.0096677551,-0.011843578,-0.0041394657,0.034350235,0.0232705101,-0.0066316323,0.0353995673,-0.0100689707,-0.0015894313,0.024474157,0.0174991768,0.0092974016,0.0043825097,0.0137570687,-0.0662931725,-0.022236608,-0.0238877647,0.0418190174,0.002899169,-0.0065930537,-0.006539044,0.0157091375,0.0071948771,-0.0045329658,0.0125611369,-0.0102464315,0.0125611369,0.0137184896,-0.0264648031,0.0332083143,-0.0215730593,-0.0049226079,-0.0191194694,0.007156299,0.0098297838,0.0103158727,0.0023783601,0.0064811762,-0.0062535638,0.0413869396,-0.0105241956,0.0006982696,0.0053546862,-0.0010165416,0.0006394375,-0.0213261563,-0.0235019792,0.0033177449,0.0409548618,-0.0071910196,-0.0019568908,0.0086801471,-0.0150070097,-0.0030920613,-0.0215113331,0.0265573915,-0.0330539979,-0.0031422132,-0.0107633825,0.0033582523,0.0458929017,0.0152076175,0.0295356456,-0.0246284697,0.0114423623,-0.0445349403,-0.0373439193,-0.0391339585,-0.0039658626,0.0015604976,0.009143088,-0.0254000388,0.0171596855,-0.0127926078,-0.0147215296,-0.0065737646,0.0266191177,-0.0152461957,0.0397512168,0.001942424,0.0145594999,-0.0299677253,0.0576207452,0.0090350686,-0.007669392,-0.0033312475,-0.017807804,0.0170208029,-0.0403993316,-0.0064040194,0.0386401564,0.0126845883,-0.0132246856,0.0226841178,-0.0128311859,0.0112726176,0.0167121757,0.013093519,0.0189497247,0.0166041572,0.0094208531,0.0217119399,-0.0224217847,-0.0093514118,-0.0126768723,-0.0370970182,0.0197367258,0.0100381076,0.024967961,0.0363871753,0.0213261563,-0.0040391618,-0.0152076175,0.0070019853,-0.0097834896,-0.0122293625,0.0329305492,-0.0033081004,-0.0076616765,0.0037575392,0.023964921,0.0024130808,0.00151131,-0.011365206,-0.0100844018,-0.0088498918,-0.0000923471,0.0155779701,-0.0139499605,-0.0085489806,-0.0190886073,0.0071910196,-0.0117741367,-0.0374673717,0.0091816662,-0.0237643141,-0.0011805,0.0101924213,-0.0085566957,0.0371896066,-0.0038134779,0.0141659994,0.0067627989,0.0022722695,0.001521919,0.01209048,-0.0116352551,-0.0071331519,-0.0161257833,-0.010609068,0.0070984312,-0.0119670294,0.0103004407,0.0066856421,0.0263259206,0.0501828231,0.0063770148,-0.0261561759,-0.0058523477,0.0053701177,0.0113729211,-0.0125842839,0.0400598422,-0.0255234893,-0.0049611861,0.006913255,-0.0053392546,-0.0059989458,-0.0245204512,0.0204157047,-0.0124994116,-0.0067087892,0.0290109795,-0.0124994116,0.0029146005,0.0278381947,-0.0115889609,-0.0039292132,-0.0043439311,-0.029659098,0.0327453725,0.0001291172,0.0275141373,-0.0000321889,0.0426523127,0.0084332451,0.0165115688,0.009883794,0.0038424118,0.0522197634,0.0001213412,0.0164498426,-0.0003732463,-0.0064888922,-0.0009437249,0.017530039,-0.0016665882,0.0386092924,-0.0063230046,0.0222983323,-0.0118975881,0.0116738332,0.025430901,0.0303689409,-0.0222829022,-0.0046024066,0.008147765,-0.025940137,0.0282239802,-0.0209249407,0.0376525484,-0.0005883211,-0.0034604853,0.0008115937,0.0056903185,0.0028895244,0.0282548424,0.0233939607,-0.0118049998,0.0284863133,-0.0134330094,-0.0019771445,0.014574931,-0.0106013529,0.0104161762,0.0015817157,0.0313256867,0.0029223161,0.0341959223,-0.0195052549,0.0042744903,0.0348440371,0.0042629167,-0.0279925093,-0.0215421952,0.0515716448,-0.0008713903,-0.014081127,-0.0168819204,-0.0260635875,-0.0250759795,-0.0198293142,0.007299039,-0.0020678039,0.0221440196,0.0111800293,-0.0221748818,0.0464792922,0.0012653725,0.0380537622,0.0148912743,-0.0050190538,0.0093051177,-0.0071215783],"113":[0.0192704499,0.0148255872,0.0740435421,0.0037204628,0.0300450232,0.0211130995,0.0071525723,-0.0153178982,-0.0512847155,0.0033406802,0.0303544756,-0.0146849267,-0.0131095331,-0.0193970446,0.0189469326,0.0281179789,0.0080879629,-0.0010549517,-0.0396099202,0.0073494967,-0.0142488806,0.0393567309,0.0131939286,0.0142629463,-0.0152757,-0.0250515863,-0.0083833495,0.0627344623,0.0417479537,-0.0563203543,0.0029327655,-0.0288072135,-0.0378657319,0.0208880436,0.0238700397,0.0138198668,0.0413259715,0.0057354206,0.0127438158,0.024685869,-0.0235887188,0.0249390565,0.0110488608,0.0445611589,0.0079121375,0.0193126481,-0.0069872965,0.0069943294,0.0116326008,0.0599212535,-0.0085943397,-0.0067587239,0.001370558,-0.0318173431,0.0203957316,-0.0125961229,-0.019650232,0.0344336219,-0.0008228623,-0.0464460067,-0.0158664733,-0.067516908,0.0687547177,0.0243623499,-0.0221539848,0.0314516239,-0.0022241897,0.0401725583,-0.0205645245,0.0281039122,0.0213803537,0.0152616343,-0.024573341,-0.0131939286,0.0421980657,-0.0538728647,-0.0295667779,0.0240950957,-0.030607665,-0.0134611828,0.0237012468,-0.0093257725,-0.0452644601,0.0359246209,0.033758454,-0.0380907878,-0.0249812547,0.0024035315,-0.0149662476,0.0227306914,-0.0060765217,0.0539572611,-0.0160071328,0.0207333174,0.023307398,0.0010725342,0.0273302812,0.0060800379,-0.0198612232,0.0261628013,0.0092202779,-0.0067165256,0.013088434,-0.0162040573,-0.0061468515,0.0054470669,0.009107749,-0.0060483897,0.0026303462,0.0109222662,-0.0733121112,-0.0054505835,-0.0255438965,0.0013433051,0.0047754147,-0.0032334269,-0.0272036865,0.0198893547,0.0109714977,-0.0267395079,-0.0401162952,0.0138409659,-0.034264829,0.0006971472,0.0176809896,-0.0299606267,0.002414081,-0.0405945405,-0.0470649116,0.0159368031,0.0589084998,-0.0030611181,0.0631845742,-0.0243623499,-0.0460240245,-0.0300450232,-0.0577269532,0.0025477083,-0.0134682162,-0.0096422583,0.0024685869,-0.0305795316,0.0104229227,-0.0039736512,-0.0149943801,0.0322955884,-0.0133345891,0.0486684367,-0.0228994843,-0.019481441,-0.0029380403,-0.0299324952,-0.0375844128,-0.0243060868,0.0652100816,-0.021858599,0.0245030113,0.0604276322,0.0043639834,-0.0368248448,0.0037696939,0.0336459242,-0.0079121375,-0.0082989531,0.0017520989,0.0197205637,-0.0478526056,-0.018876601,-0.0921043158,-0.0076026851,-0.047655683,-0.0335052647,-0.0193407796,0.0251781791,0.0451519303,-0.0095367627,-0.0023261684,-0.0548856184,-0.0138479993,-0.0214084852,-0.0575018972,0.0097055556,-0.0234480593,0.0297355708,-0.0608777441,0.0197768267,-0.0553076006,0.0375844128,0.0089881886,0.0440266505,-0.052860111,0.0599212535,0.0453207232,0.0524943955,0.0150506441,-0.0632408336,0.0532539599,0.0207192507,-0.0107745733,0.0133627206,0.0399756357,0.0284836944,0.0499062464,0.0009283575,0.0157398786,0.0048668436,-0.0021327606,0.0136862397,-0.0563766174,-0.0127367834,0.000796049,0.0047543156,-0.0048176125,-0.0073776287,-0.0497374535,-0.0075464207,-0.0467273258,-0.0121389767,0.0237715766,-0.0309171174,0.0087771975,0.0417198204,0.0174700003,-0.0173012074,-0.0094383005,0.0367404483,0.0190875921,-0.0232933331,0.0227869563,0.0223509092,0.0113864448,-0.0531133004,0.0040088161,-0.034208566,-0.0032721085,0.002094079,-0.0086506037,-0.0239966344,-0.0021890246,-0.0309171174,-0.0139253624,-0.0043956321,-0.0079684015,0.0217179377,0.000216375,0.0337303206,-0.0394973904,-0.0726931989,-0.0032808997,0.0599212535,0.0089319237,-0.0374156199,-0.0027868305,-0.0295949113,-0.0061714672,-0.0373874865,-0.0184264891,0.0406226702,0.021858599,0.000389453,0.0580082759,-0.054857485,-0.0376125425,-0.001856715,-0.0370780341,0.0132431602,0.0447580814,-0.005591244,0.0243904833,0.0068044383,0.04416731,0.0089530228,0.0077855433,-0.0344054885,-0.0172027443,-0.0350243933,0.002531884,-0.0058163004,0.0056123426,-0.0111824879,-0.0013512173,-0.018876601,-0.0136018433,-0.0226462949,0.0475431532,0.0252625756,-0.037190564,0.0385127701,0.0129759051,-0.0504688881,0.016386915,0.0078277411,0.0085451081,-0.0200159494,-0.0189609975,0.0284133647,0.0284133647,0.0043217852,-0.0294261184,-0.0209583733,-0.0088615939,-0.02319487,0.0124062318,-0.0477963425,0.0106339129,0.0201566089,-0.022196183,-0.0291447975,-0.0098884134,-0.0016281421,-0.0204238649,-0.0033582628,0.0105354507,-0.0024474878,-0.0294542499,-0.010598748,0.0757877305,0.0215772782,-0.0110769924,-0.0422261991,-0.0013380303,-0.0731995776,-0.0207755156,0.0147552574,0.0322393216,0.0195377041,0.0330270194,-0.0153178982,0.0535352789,-0.0000425827,-0.009958744,-0.0210146364,0.0079191709,0.0101627009,-0.0120897461,-0.0533946194,0.0366560556,-0.0252485089,0.0099798432,0.0202128738,-0.0386815593,-0.0059182788,-0.0476838164,0.0361215435,0.0360934138,0.0201144125,-0.0081160944,-0.0092835743,-0.0130814007,-0.016654171,-0.0479651354,-0.0553076006,-0.003762661,0.0058444324,0.0096844565,0.0220977217,0.0022804539,-0.0402006917,-0.0252485089,0.0080879629,-0.0192282517,0.0246155392,0.0467554592,-0.0290885344,-0.0097266547,0.0083200522,-0.0527194515,0.0247421339,0.0170902163,-0.014558333,0.030663928,-0.0098462151,-0.0053802533,-0.0074831238,-0.0701613203,0.0059639933,0.0470086448,0.0445330255,-0.0036220008,0.0401725583,0.0201847423,-0.0049371738,0.0218164008,-0.0024703452,0.0104580875,0.0400881618,-0.0231245402,0.0484715141,-0.0630720407,-0.0398068428,0.0279351193,0.0295667779,0.0167807639,-0.0117029306,0.0139112957,-0.0011349522,0.0066602617,0.0289760064,0.0539291278,0.0015551746,0.0225759652,0.0009837424,-0.04638974,-0.0295386463,0.0054189349,0.0041248612,0.0101627009,-0.0019200121,-0.0119209541,-0.0209443066,-0.0526069216,0.0024070481,0.0324643776,-0.0038646397,0.04638974,-0.0334208682,-0.0513128489,0.0603713654,0.0027586985,0.0771943331,-0.019593969,-0.015163172,0.005854982,-0.0124906274,-0.0439985171,0.0036923308,0.0452081971,0.0160774626,-0.0344054885,-0.0443079695,-0.0448143482,0.0105846813,0.0353619792,-0.0414666347,-0.0020219907,0.0259658769,0.0500469059,-0.0160915293,0.0716241822,-0.032548774,-0.0327457003,-0.0074268598,0.0121460101,0.0236449838,0.0119209541,-0.0248265285,-0.0443642326,-0.0129688727,-0.0139112957,0.0105002858,0.0319298692,-0.0364872627,-0.0082637882,0.0035147474,-0.0384002402,-0.0209021084,0.0060202577,-0.0383439772,0.0534790158,-0.0227306914,-0.0462772138,-0.0004393434,-0.0528882444,-0.0355589055,-0.0067763063,-0.0221821163,0.0442517065,0.0004498929,0.0259236787,-0.0330551527,0.0170198865,0.0277663283,-0.0085029108,0.0093468716,-0.0136299757,0.0302982125,0.0302419476,-0.012786014,-0.0045784903,-0.0467273258,0.0139112957,0.0098673142,-0.0027428744,0.0484433807,0.0265003853,0.0345461518,-0.0175684616,-0.0228291545,-0.0412978418,0.0092765419,-0.025403237,0.0073776287,0.0545199029,-0.0169354901,-0.003512989,-0.0151913036,-0.0838334933,-0.0392160714,0.0031314483,-0.0151913036,0.0172871407,0.0069802636,0.0321549252,0.0520724133,-0.0053661875,-0.0037099132,-0.0117732603,-0.0068466361,-0.0108097382,-0.0182014331,0.0113864448,-0.0089319237,0.0372749604,0.0301294196,-0.0241372939,0.0518754907,-0.0025072685,-0.0123007363,-0.0075042229,0.0055420129,-0.0232511349,-0.020255072,-0.0382314473,-0.0087842308,-0.0188484695,-0.0053415718,-0.0485840403,-0.0143051445,-0.0251641143,-0.0124202976,0.0001098908,-0.0305232685,0.0250656512,-0.0032896909,-0.0676294342,0.0161337275,-0.0148255872,-0.0281039122,-0.0233636629,0.0331676789,0.0049231076,0.0401162952,0.0225337669,0.0176669247,0.0006268171,-0.0070505934,-0.0105284173,-0.004592556,-0.0098602818,0.0479651354,0.0164853781,-0.03277383,0.0401444286,-0.0120264487,0.0050919,-0.0035868357,0.0229557473,-0.000640004,0.0199315529,0.0086787352,0.0010558307,-0.0232230034,0.0333083421,-0.006044873,-0.0214647502,0.0088967588,0.0050004707,-0.0283852331,-0.0364591293,0.0153741622,-0.006449271,0.0059850924,0.0100220405,0.005440034,-0.001530559,0.0225197021,-0.0181873664,-0.0284555629,0.0149099836,0.0097969845,-0.0207473822,-0.0212959573,-0.0143121779,0.0284274314,-0.0305232685,-0.0002070343,0.0331114158,0.0298762303,0.0115271052,-0.0355870351,0.0045784903,-0.0079895006,0.0020553975,0.0059604771,0.0211271662,-0.0008707747,0.0003802222,0.0034619998,-0.011653699,0.0168370288,0.0146989934,0.0167385656,-0.0183702242,-0.0531976968,-0.0124976607,0.0345742814,-0.0040334319,0.0089741219,0.0315641537,0.0096774232,0.0160211995,0.0009696764,0.0035340881,-0.0320986621,0.0027165005,-0.0315360203,-0.0256423578,-0.0057389368,0.0377813354,-0.0234058611,-0.0277522616,-0.027288083,-0.023082342,-0.0626781955,0.0238137748,0.0414666347,-0.0184405558,-0.0603713654,-0.00538377,0.0285258926,0.0180748384,-0.0149381151,0.0451800637,0.0045046434,0.0031332064,0.0355870351,0.0368529782,0.0272740163,0.0087209335,-0.0227025598,0.0335896611,0.0108519364,0.0050215698,0.0034672744,0.0277944598,-0.0250656512,0.0072299354,0.007553454,-0.0184124224,0.0073635625,-0.0108941337,-0.0488934927,0.0395817868,0.0360090174,0.0198752899,-0.0047367332,-0.032267455,-0.0355026387,0.0218445323,0.0240810309,-0.0173996687,0.0149240494,-0.0110066626,0.0076519162,-0.0438297242,0.0128563447,-0.002296278,0.0203957316,0.0304107405,0.0302419476,-0.0095719285,0.0404820107,0.0360652804,0.0331676789,0.0429295003,0.034039773,0.0104721533,-0.0123921651,0.0133627206,0.0512284525,-0.0400600322,0.0217038728,-0.0306920595,-0.0160633978,-0.013805801,-0.0106409462,-0.0200300161,0.0149521818,0.0597524606,0.039469257,-0.0089108255,0.0257126894,-0.0134893153,-0.0191719886,0.0222805794,-0.0255438965,0.0232511349,0.0200581476,-0.0261487346,-0.022969814,0.0215069484,0.0000555498,-0.0775881782,-0.0170620847,0.0014672619,0.0143192103,0.0245874058,-0.0282164402,0.0204379298,-0.0238700397,-0.0455176495,-0.0005740695,-0.0321830586,0.0101205027,-0.0174559336,-0.005496298,-0.0164853781,0.0255860947,-0.0193548463,0.0006043994,-0.045883365,-0.0066497121,-0.0076519162,-0.0240388326,0.0540979207,-0.0039947503,0.0522693396,0.011069959,0.0054048691,-0.0305795316,0.0205363929,0.0114145773,0.0055982769,0.0043253019,0.0023841907,-0.0190875921,-0.0188062713,-0.0093328059,-0.0429295003,-0.0023367179,0.0007349497,0.0048949756,-0.0222383812,-0.0101697342,0.037471883,-0.0382877141,0.0130251367,0.030607665,0.0293979868,-0.0197486952,-0.0334771313,0.0130040376,-0.0064316886,-0.0176247265,0.0063156439,-0.0252063125,-0.0087982966,0.0169636235,0.0065758652,0.0296511743,0.019819025,0.0326050408,-0.0076448829,0.027175555,0.0003402219,0.0280757807,-0.021478815,0.0091499472,-0.0160915293,-0.0269926973,-0.0132642593,-0.002414081,-0.0056686071,0.0028976006,0.05657354,-0.017990442,-0.0103103947,0.0229838807,0.0217882674,-0.0120756803,0.0005151681,0.0079543358,-0.0034655163,-0.0278225914,-0.0104721533,-0.0160211995,0.0231245402,-0.0220414568,-0.0364591293,-0.019481441,-0.0120334821,-0.0064457548,0.0078980718,0.0110418275,0.0047261836,0.0028817763,0.0123007363,-0.0803451166,-0.0438297242,0.0243623499,-0.0226603616,-0.0196783654,-0.0337303206,0.0073002656,0.0203816667,0.0400037654,0.0001189018,0.0253891703,-0.0453207232,-0.0154163605,-0.0005085746,-0.0256704912,0.0287368838,-0.0068290536,0.0253751036,0.0310859084,0.0097055556,-0.0073494967,0.0169354901,-0.0172449425,0.0430420265,0.0088897264,-0.0327175669,-0.0346024148,0.0292573255,0.0150225116,-0.0281601772,0.0346868113,0.0093890699,-0.0074620247,0.005299374,0.0127649149,-0.0042866203,-0.0111402897,0.0077996091,-0.0104018236,-0.0031877123,-0.0305514,-0.0445048958,0.0471211746,-0.0335896611,0.043885991,-0.0119983172,-0.0010145118,0.0120053496,-0.0302419476,0.0072440016,0.0056861895,0.025909612,0.0001993419,-0.0188344028,0.0061890497,0.0317610763,-0.054069791,-0.0067059761,0.0027938636,0.0177372545,-0.0158383418,0.0208880436,-0.0031578219,-0.0390754081,-0.0254876316,-0.0022786956,-0.0090936832,0.0751688257,0.0052677253,-0.0040439814,0.0312828347,0.0355026387,0.015444492,-0.0239544362,0.0445892885,0.0190453939,-0.0064246557,0.012012383,0.0055771777,-0.0412134454,0.0093750041,0.008882693,-0.0358120911,0.0101697342,-0.0267535746,-0.0303826071,-0.0074338927,0.0081512602,0.0163165852,0.0189891309,0.0276538003,-0.011787327,-0.0165697746,0.018876601,0.0106339129,0.0016360543,0.0128211789,0.0002492323,0.0063719079,0.0033125482,0.0221258532,-0.0198330916,0.0266973097,0.0127367834,-0.0144176725,-0.0324643776,0.0503563583,-0.0222946443,-0.0024879277,-0.0054505835,-0.0100783044,-0.0029521063,0.0105776489,0.038906619,0.0073635625,0.0138831642,-0.0019692432,0.0028817763,0.0016720984,-0.0075745531,0.0386534296,0.0023367179,-0.0445048958,0.0276256669,0.0061152033,0.0485277772,0.0085732406,-0.0172730759,0.0254454333,-0.0021679257,0.0046839854,0.0765754282,0.0060343235,0.0611028001,-0.0096281925,-0.0152053703,0.0109644644,0.0065969643,0.0189469326,0.0367123187,0.010071272,-0.0105706155,-0.0098673142,-0.0223509092,0.0477119461,0.0132290935,-0.0276678652,0.0028677103,-0.0070435605,0.0450394042,0.0391035415,-0.0317610763,-0.0330270194,0.044448629,-0.0196924303,0.042732574,-0.0489216261,-0.0076519162,-0.0138128335,0.0243060868,0.0209443066,0.0176387914,0.0177231878,0.0109152328,0.0199878179,-0.0183983576,-0.0203394685,0.0073354305,-0.040960256,0.0216898061,-0.0088545606,-0.0080949962,0.0105776489,-0.0006756086,0.0396099202,0.0199878179,-0.0001289019,0.0098743476,0.0079613682,0.0120897461,-0.0343492255,-0.0128633771,0.0160774626,0.040678937,0.0125961229,-0.011372379,-0.0453769863,0.013805801,-0.0012131945,0.0027622152,0.0223227777,0.0291447975,0.0110769924,0.016274387,0.0082286233,-0.0070330109,0.0309171174,-0.0152335018,-0.0313953608,0.0237153135,-0.0324081145,0.0120756803,0.0061960826,-0.0110207284,-0.0114778737,0.0252766423,0.0012949532,0.0348556042,-0.0430701599,0.0233214647,0.022913551,0.0125046941,-0.0009019836,-0.0105073182,0.0022101237,0.0195095725,0.018820338,0.0243904833,-0.0033582628,-0.0207614489,-0.0232230034,-0.0270489603,-0.0314234942,0.0157680102,-0.023082342,0.0404820107,-0.004195191,0.000817148,-0.0216757394,0.017216811,0.0077644442,0.0290885344,0.0230120122,-0.0121811749,0.0325206444,0.0297637023,0.0104510542,0.0097899511,-0.0031613384,0.0257267542,0.0173574705,-0.0112246852,-0.0001911001,-0.015163172,-0.0339553766,0.0001727483,0.0199596863,0.0298199672,0.0306357965,-0.0126101887,0.010071272,0.0177935176,0.0011191278,0.017765386,0.034208566,0.0334771313,0.006976747,0.0090444526,-0.0001628582,-0.0048703603,0.0120616136,0.0141504183,0.0182436313,-0.0242357571,-0.0089178579,-0.0044483794,-0.0085521415,-0.0176669247,0.0266551115,0.0001930781,-0.0236449838,0.0494561344,-0.0014022066,-0.0252766423,-0.0036430997,0.0381189212,-0.0386534296,-0.0066989432,-0.0046734358,0.000365277,-0.0131165655,0.0240247659,0.0009090167,0.0024808946,0.031986136,-0.0048703603,0.0292573255,-0.0264159888,0.03277383,-0.0361496769,-0.005271242,0.0190735254,-0.0060554226,0.0415228978,-0.0222243145,0.0062347641,0.0100220405,0.0204660632,-0.0188625362,-0.0174559336,0.0306357965,-0.0235887188,0.027400611,-0.0057213544,0.0076026851,0.012258538,-0.0013450633,-0.0096492916,0.0040369486,0.009712588,-0.0143684419,0.0302138161,0.0219851919,0.036965508,-0.0129970042,-0.0031929871,0.0297355708,0.0172730759,0.0124202976,0.0271333568,0.0043077194,0.0266691782,0.0103455596,0.040903993,-0.0221399181,0.0054751993,0.0417479537,-0.0249671899,-0.0110347942,0.0186937433,0.0196783654,-0.0089037921,0.0038013426,0.0246999357,-0.022857286,0.0077292793,0.0263315942,-0.0026004559,0.0025055101,-0.0002971447,-0.0011604468,-0.005327506,-0.0129477736,-0.0132220611,0.0057811351,-0.0016131969,0.0247280672,0.0196221005,-0.004402665,0.0298480988,0.0677982271,-0.0077714771,-0.050637681,0.0001443965,-0.0064703701,-0.0232089367,-0.0075745531,0.0011806667,-0.0185530838,0.0308045894,-0.0277241301,-0.00084528,-0.0290885344,0.0089108255,0.0010540725,-0.0037063968,-0.0053169564,0.0256282929,0.0218867306,-0.0140589895,0.0110347942,0.0197768267,-0.0107745733,-0.0172449425,-0.009241377,-0.0367404483,0.0242498219,-0.0328582264,-0.0112387519,0.0150928413,0.010296328,-0.0249812547,0.0177794527,0.0378094688,-0.0164431799,0.0078840051,-0.0361778103,0.0106831435,0.0227025598,0.0035657366,-0.0116185341,-0.0113372141,-0.001752978,-0.0036325501,-0.0020096828,0.0289760064,-0.0273724794,-0.0136440415,0.0225478336,-0.0374437496,-0.0332520753,-0.0139323948,0.0094804987,-0.0239544362,0.0124765616,0.0256142262,0.0472337008,0.0000313738,0.0297074392,0.0072369683,-0.0103947902,0.0068220207,-0.0333083421,-0.0050778338,-0.0258955471,-0.031986136,0.0191016588,-0.0016633071,-0.0036501328,-0.0481901914,0.0065301508,0.0236449838,0.0179341789,0.0076026851,0.0323518515,0.0279210545,0.0074127936,0.044448629,0.0404820107,-0.0200018827,-0.0264441222,0.0268801693,-0.0362340733,0.0214366186,-0.023574654,-0.0287509486,0.010352592,0.0400600322,-0.0277241301,0.034208566,0.0041565094,-0.0009784676,0.0450394042,-0.0044589289,0.0097618196,-0.0120967794,-0.0397224464,-0.0301575512,-0.002865952,-0.039694313,0.0232230034,0.0197768267,-0.013088434,0.0342366993,0.007862906,0.0026074888,-0.0260784049,-0.0320986621,-0.0194111113,-0.0220555235,-0.0359527543,-0.0004545084,0.0205082595,0.0290885344,0.0226884931,0.0479651354,-0.0104229227,-0.0386815593,-0.0186374802,-0.0301012881,0.019819025,-0.0078488402,-0.0232089367,0.003998267,-0.0138269002,0.0049301409,0.009958744,-0.0281883087,0.0277241301,-0.0054365178,-0.0012422056,-0.0006364875,0.0317892097,0.0020888043,0.0009107749,0.0211412311,-0.0105776489,-0.0246999357,0.0330270194,-0.0002815402,-0.0296511743,0.0378375985,-0.0134049188,0.0132501926,0.015219436,0.0093679707,0.0174981318,0.0029081502,0.0324081145,-0.0427044444,-0.0133486548,0.0095437961,0.0472618341,0.0204519965,0.0258252174,-0.0284836944,0.0480213985,-0.0055455291,0.00538377,0.0111473221,-0.0182295647,0.0261206031,-0.0043956321,-0.0400881618,0.0329988897,-0.0072158691,-0.0001022534,-0.0272458848,-0.0253891703,0.0041565094,0.0090092868,-0.0165979061,0.0048949756,-0.0180185735,0.0237856433,-0.0114638079,-0.0221258532,0.0297637023,-0.0011789085,0.0241794921,0.0048176125,-0.012842278,0.0154304262,0.0302982125,0.0072229025,-0.0059464108,-0.0094031356,-0.011316115,-0.0095789609,-0.0034901318,0.0045081601,0.0085591748,-0.0127578825,0.0010848419,0.0220977217,0.0012580298,0.0035569454,0.038962882,-0.0307201929,0.0103033613,-0.0249812547,-0.0044659618,-0.0280898456,-0.0052571758,0.0058514653,0.0083974153,-0.0076800482,0.0171464812,-0.0258252174,0.0060835546,0.0172590092,0.0198471565,-0.0262190662,0.0312265698,0.0004918712,-0.0119772181,0.0033336473,0.0413259715,0.001404844,-0.0571643151,0.0174840651,-0.0019235285,-0.0034479336,-0.0316766836,0.0017591319,0.0265988484,0.0038365074,-0.0233355314,0.0126523869,-0.0183983576,-0.0023419927,-0.0191297904,0.0194673743,-0.0070154285,-0.0198752899,0.0010786881,0.0059534437,-0.008524009,0.0108378697,-0.0280476473,-0.0143614085,-0.0130392024,0.00749719,0.0051973951,0.0402288251,0.0329707563,0.0011033036,0.0231526718,-0.0115271052,-0.0040334319,-0.0304670036,0.0231667385,0.0088897264,-0.0224071741,-0.0405382775,0.0324643776,0.0176669247,-0.0079895006,0.007750378,-0.0098110503,-0.027063027,-0.0112950159,0.0252485089,-0.0200581476,-0.0025793568,0.0228010211,0.0281601772,-0.0386252962,-0.045433253,0.0527194515,-0.0003215405,0.0307201929,0.0225056354,0.0109222662,-0.0126875518,0.0162884537,0.0248124637,0.0019604519,0.0089741219,-0.0293979868,-0.0017767145,-0.0108800679,-0.0273162145,-0.0226462949,-0.0020413315,-0.0081582926,-0.0219851919,-0.0215632115,0.0101345694,0.0041740919,0.0306357965,0.0199596863,-0.0076448829,-0.0161759257,0.0103666587,0.0091218157,-0.0117802937,0.0326894373,0.0074409256,0.0126312878,-0.009825116,0.0284977611,-0.0006945098,-0.0209865049,0.0289760064,0.0014171518,-0.0112809502,0.0304107405,0.0076730149,-0.0103877578,0.0162321888,0.0005978059,-0.009825116,-0.0217601359,-0.0124554625,-0.0004725304,0.0035938686,0.0390754081,-0.0012844036,0.026950499,0.0209302418,-0.0001413196,-0.0054083853,-0.0093961032,0.024573341,0.0195377041,0.0272177532,-0.0022734208,0.0019534188,-0.0296511743,0.035755828,-0.0135737117,0.0289760064,-0.0347430743,0.0236449838,-0.0025916647,0.0340679064,0.0083833495,0.0140097579,-0.0260362066,-0.0161477942,0.0408195965,-0.0433233492,0.0152897658,-0.0033477133,0.0373312235,0.0042444221,0.0218164008,-0.0058831139,0.0140449228,-0.0164853781,0.0411009155,-0.0064422381,0.0143825077,-0.0090022543,0.0241372939,0.0324362479,-0.0041213445,-0.0223509092,0.0218023341,0.0379782617,0.0069732303,0.0220695883,-0.0103807244,-0.0369092412,0.0326331705,0.0314797573,0.0110066626,-0.0235324558,-0.0049723387,0.0252344441,-0.0058620148,-0.019368913,-0.0164009817,-0.0192141868,-0.0402288251,0.0046101389,0.0100642387,-0.0308045894,0.0212818924,-0.0062699295,0.0212396942,0.0183280278,0.0059639933,0.0258111507,0.0187781397,0.0059850924,0.0243904833,0.0050110202],"114":[0.0659209862,0.0151413986,0.0501308665,0.0253276806,0.0362454988,0.0011464744,-0.0178466979,0.0603999645,-0.0366043672,-0.0267217383,0.030338008,-0.0303932168,-0.037128862,-0.0421529897,0.0735952035,0.0634917319,0.0008971658,-0.0170599539,-0.053001795,0.0244029108,0.0052656732,0.0295926686,0.041794125,-0.0060765729,-0.0008199578,-0.0298687201,-0.0307520833,0.0613937452,0.0216147956,-0.0755275562,0.029785905,-0.0142718377,-0.0089785596,0.0263352674,0.0015243193,-0.0284884647,0.0208832603,-0.0204967875,0.021407757,0.0008928525,-0.0218632407,-0.0269011725,0.0112628816,0.0373220965,-0.0185092203,-0.0050275791,-0.0507381782,-0.0092822155,0.0312765799,0.0106555698,-0.0377085693,0.0268735662,-0.0176396593,-0.0192683619,-0.0137128346,-0.0246237516,0.0063008647,0.0406623147,-0.0226775911,-0.0151828062,-0.0063043153,-0.0436160602,0.0392268486,0.0707242712,-0.0136093153,-0.0156658962,-0.0203725658,0.0134850927,-0.0148653472,0.0184264053,0.0692888051,0.0314146057,0.0196272284,0.0298135094,0.0166044682,-0.0788953826,0.0211041011,0.0334021747,-0.0084609641,-0.0374877304,-0.0057798182,0.0127604585,-0.0004354274,0.0037266887,0.0334573835,-0.017225584,-0.0146445064,-0.029150987,-0.0048861029,0.0220978837,-0.0254519042,0.0594613887,-0.0111179547,-0.0168667175,0.0273566563,0.0008462689,0.0097860089,0.0250930376,0.0211317055,0.0235333499,-0.0216700044,-0.00979291,0.0276051015,-0.0390612185,0.0215181764,0.0046549104,0.0157901179,-0.0311937649,0.018964706,-0.0027156519,-0.0949063376,-0.0092615122,-0.0351689011,-0.0300619565,-0.0088819414,-0.0007949407,-0.0115044266,-0.0232020877,-0.0039992891,-0.0066459281,0.0074809827,0.0124153951,-0.0536919236,0.0443061888,-0.0091924993,-0.0525601134,-0.0111938687,-0.0396685302,-0.043201983,-0.0081918137,0.0404966846,-0.0106762731,0.0509866253,-0.0277017206,-0.0443061888,-0.0252310634,-0.0451067351,-0.0151828062,-0.0354173444,-0.0132780541,-0.002943394,-0.0147825321,0.0307520833,-0.0115113277,-0.0232572984,0.0032763805,-0.019986093,0.0255485214,-0.0260868222,-0.0424014367,-0.0056141876,-0.0011412984,-0.034920454,0.0036680279,0.0444442146,0.0338990651,0.0207176283,0.0608968548,-0.0070220479,-0.0156796984,0.0094892541,0.0564800389,-0.0319114998,0.0018581684,-0.0264594909,-0.0076949224,-0.0182607751,-0.0494959466,-0.0660866126,-0.0074395752,-0.0511522554,-0.0234367326,-0.0154312523,0.0218218341,0.0519528016,-0.0093512284,-0.0182745773,0.0044133659,0.0146445064,-0.0403862633,-0.0487782173,-0.0132504487,-0.0205519982,-0.0088198297,-0.0519528016,-0.0223739352,-0.0685710758,0.0281434022,-0.0190751255,0.0186610483,-0.0297306944,0.0960105434,-0.0051656049,0.0230916683,-0.0070876102,-0.0322979689,0.0086265942,0.0163284186,-0.004782584,0.0128708789,0.0204967875,0.0259211902,0.0495511591,0.0090613747,0.0267079361,0.0247617774,0.0083229383,-0.0364387333,-0.0728222579,-0.0684054419,0.0072394381,-0.0046480088,0.0277569294,-0.0202069338,-0.0281434022,-0.0010809123,-0.0490818731,0.0035955645,0.0034126807,-0.0060765729,-0.0126638403,0.0925875157,0.0073705623,-0.0083298394,-0.0052415188,0.0095306616,0.0206072088,-0.0041476665,0.0585780255,0.0379846208,0.0282952301,-0.0163284186,0.0045306874,-0.0311937649,-0.0088819414,0.0012551695,-0.013036509,-0.0434228256,0.0050275791,0.0003608073,-0.0080468869,0.0060489681,0.0075016865,0.0141890226,0.0272462349,0.0076397122,-0.0284884647,-0.0489990562,0.0105244452,0.0343407467,0.0320771299,0.0174050163,-0.010669372,-0.0424014367,-0.0235195477,-0.0366043672,-0.0188956931,-0.0009333975,-0.0227189995,-0.0108488053,0.0003536904,-0.0636573657,-0.0458796807,0.0177362785,-0.0402206331,0.0280329809,0.0127949649,-0.0076535144,-0.010503741,0.0005275162,0.0146445064,0.023064062,0.0243753046,-0.0559003316,-0.0130296079,-0.0230364576,0.0160937738,-0.0163974315,-0.003197016,0.0081711104,0.0128225703,0.0013328089,0.0029382179,-0.023064062,0.0101655787,0.0167839024,0.0111662634,0.0228156168,0.0140164904,-0.0124084931,0.0179709215,-0.0004112729,0.0081711104,0.0062801605,-0.0064457916,-0.0303656124,0.0051621543,-0.0089647565,-0.0450515263,-0.0306692682,0.0279363636,0.0117666749,0.0190061126,-0.0352517143,-0.0239198208,-0.0373497047,0.0204277746,-0.0102483938,-0.0164250359,-0.0154450545,0.0343683511,-0.0253414828,0.0233539157,-0.0101724798,-0.0298963264,-0.0343131423,0.0524496958,-0.011297388,-0.0104623334,-0.0770734474,-0.0137887485,-0.0518423803,-0.0038198561,-0.0135955131,0.0435056426,-0.0201793294,0.0098412186,0.0091786962,0.0131883379,-0.0291785933,0.046928674,-0.0108350022,0.0058281273,-0.0275912993,-0.0090682758,-0.0434780344,0.0119737126,0.0173912141,0.0035576075,0.0178052913,-0.0153622394,-0.0230364576,-0.0387575626,-0.029316619,0.0573081933,0.0052484199,0.0015890187,-0.015251819,0.0214767698,0.0053933468,-0.0635469481,-0.0072532408,-0.0092063015,-0.0520080142,-0.0052311667,0.0059488993,-0.025051631,-0.0267907511,-0.0696200654,-0.0212007184,-0.0186196417,0.0191027299,0.0204001702,-0.0076466133,-0.0006616598,0.0319391042,-0.0403586589,-0.0271220133,-0.0166044682,-0.0385643281,0.0326568373,-0.0096134767,-0.0363283157,0.0089095468,-0.0309729241,-0.0467078313,0.0592405498,0.0460453108,0.0189509019,0.0600134917,0.0526981391,0.0241544638,-0.0021652752,-0.0060558692,0.02006891,0.0615041666,-0.0135748088,0.0131124239,-0.0531950332,-0.0267907511,0.0263628718,-0.0206624195,0.0120151211,-0.0164664425,0.0108004957,0.0062870621,-0.0034057794,0.0326568373,0.0641542599,-0.0038923195,0.0265423059,-0.0302275866,-0.0333745703,-0.030255191,0.0143270483,-0.0060524186,-0.0300895609,0.0074602789,-0.0266113188,-0.0128708789,-0.0249964204,-0.0363559201,0.0355553702,-0.0000792568,0.0105796549,0.0021583738,-0.0323255733,0.0605655946,-0.0168667175,0.0346996151,0.0072118328,0.0065769157,-0.004420267,-0.033981882,-0.0033177882,0.0399445817,0.0368528105,-0.0151828062,-0.0186886545,-0.049054265,0.0176396593,-0.002072108,0.0398893729,-0.0173222013,-0.0497996025,0.0070185973,0.0460177064,0.0020928117,0.0305036381,-0.00102829,-0.0265285037,0.0033505692,-0.0159005392,0.0115803406,0.0090544736,0.0031280031,-0.0130503122,-0.0230226554,-0.0212007184,-0.0352517143,0.0804964751,-0.0037888002,-0.0324912034,0.0330433063,-0.0580811352,-0.0432571955,0.0391992442,0.0034264834,0.0247479733,0.0050827893,-0.047177121,0.0225809738,-0.0490818731,0.008295333,-0.0257417578,-0.0769078135,0.0066045206,-0.0048377942,0.0386471413,-0.0059937579,-0.0037163368,0.0255623236,-0.0075983042,0.0026431885,-0.0374049135,-0.0396961384,0.0492198989,0.0188404825,0.0085161738,0.0240440443,0.0023222791,0.0004089006,-0.0187300611,0.0539403707,0.0392544568,0.0076811197,0.0101862829,0.0501308665,-0.0015743534,0.0081020975,0.0042511858,0.0141200097,0.0765765533,-0.0158039201,0.0040165423,0.0068943743,-0.0265423059,-0.0540231839,-0.008219419,-0.0270530004,0.0331813321,-0.0070876102,0.0133470669,0.0711659566,-0.0308348984,-0.0173912141,-0.0317734741,-0.0092063015,-0.0037853497,0.0335402004,0.0178605001,-0.0046307561,0.0544096567,0.0072463392,-0.0208970625,0.032932885,0.0191441383,-0.0148791503,-0.0308625046,-0.0222221073,-0.0078053428,-0.0237127822,0.001030878,-0.0022187601,-0.0006444066,-0.0182469729,-0.0551825985,-0.0189785082,-0.0333469622,0.02212549,0.0143822581,-0.0190199148,0.0023878412,0.0101172701,-0.0243062917,-0.0045858975,-0.0105175441,-0.0257003494,-0.0416284949,0.0083574448,0.0034903202,0.0618354306,0.013429882,0.0258521773,0.0070496527,0.0181089472,-0.0103588142,-0.0040717525,-0.0077156262,0.0325464159,0.0253966935,-0.0535262935,0.0109316204,-0.01612138,0.0044478723,0.0239060186,-0.0156244878,-0.003257402,0.0200275015,0.0023740388,0.0028830077,-0.0181227494,0.0040890058,0.019199349,-0.0099447379,0.0372116789,0.0052415188,-0.0218770429,-0.0347824283,0.0215181764,-0.0026914976,-0.0382330678,-0.0070738075,-0.003176312,0.0215871893,0.0337058306,-0.0489990562,-0.0142304301,0.0117183663,0.0004843833,-0.0391992442,-0.0198342651,-0.0289577525,0.0217942279,-0.019917082,0.0045997002,0.0298687201,0.0284332559,0.0170461498,-0.0068012071,-0.0021618246,0.0047135712,-0.0134160798,0.0188956931,0.0164388381,-0.0099792443,0.0193097685,0.0000775854,0.0029192395,0.0226223804,0.0154450545,-0.0016321517,-0.02369898,-0.0526705347,-0.0258797836,0.0340094864,0.0392820612,0.0171013605,0.0369632319,-0.0281295981,0.0047584292,0.0008894019,-0.0181365516,-0.025990203,0.0256589428,0.0287921224,-0.0114285126,-0.0036473242,0.0075983042,0.0302827973,-0.0008786186,-0.0576946624,-0.0124429995,-0.0486125834,0.0195444115,0.0181089472,-0.0185230244,-0.03933727,-0.0016148984,0.0446650535,-0.016507851,0.0004783446,0.0167010874,0.0068529667,0.0184540115,0.0479500629,0.0010110369,0.0500204451,-0.0098136142,-0.02212549,0.0266665295,0.0048826523,-0.0106900753,-0.0017537867,-0.0121945543,-0.0171703734,-0.000987745,0.0506829657,0.0120772319,0.0023309058,-0.0144512709,-0.0271772239,0.0618906394,0.0276741143,0.0052725747,0.0055624279,0.0081642093,0.0092753144,0.004620404,0.0350860842,-0.0274808798,-0.0026932228,-0.0032815565,0.0064837486,-0.0239750315,0.0275084842,0.0104002226,0.011062745,0.0294270385,0.0435056426,-0.0245961454,0.0419045463,0.0216562022,0.0147135193,0.0356657915,0.0405795015,0.0153622394,0.0002795017,0.031525027,0.0334297791,-0.033733435,0.0058936891,-0.0289301462,-0.0092270058,-0.0121324426,-0.0047756825,0.0153346341,0.0280053765,0.0289301462,0.0193097685,0.0021980563,-0.0191027299,0.0113940062,-0.0357486084,0.0072325366,-0.0178052913,0.018964706,0.0157625135,-0.0247755796,-0.0616697967,-0.0130503122,-0.019199349,-0.0591301285,-0.0306416638,-0.033650618,0.0057004537,0.0030986727,-0.0048653991,0.0299239308,-0.0028795572,-0.0282262173,0.0057487623,-0.0453551821,0.0240716487,-0.0083988523,0.001590744,-0.0024948111,0.0244857259,-0.0219460558,-0.0246237516,-0.0468182527,-0.0084333587,-0.0306416638,-0.0337610394,0.0402758457,-0.0012327404,0.0216009915,0.0155416727,0.0206762217,-0.0360798687,-0.0128708789,0.0057556638,0.0367423892,-0.0205243938,0.0054278532,-0.0312765799,-0.0114423148,-0.0227880124,-0.0422082022,-0.0066976878,-0.0172531884,-0.0351412967,-0.0231054705,-0.0282262173,0.0173222013,-0.0609520636,0.0138577614,0.0440853499,-0.0045789964,0.0013535126,-0.0118770953,0.0129467929,-0.0037439419,-0.014057898,-0.0016442289,-0.0195720177,-0.011538933,-0.0047618803,-0.01287778,0.0185506288,0.0017615505,0.0452723689,-0.0250930376,0.031994313,-0.0107728913,0.035859026,0.0015312205,-0.0061731911,0.0088957446,-0.0450515263,0.010510643,0.0098688239,0.0024188971,0.0195582155,0.0448306873,-0.0160937738,0.0116493534,0.0078605525,0.0242510829,0.0014975768,0.0351689011,0.0111317579,-0.0253552869,-0.0198342651,0.0227466039,0.0037680964,0.0252310634,-0.0256865472,-0.0126569392,-0.027963968,-0.0472323298,0.0248998012,-0.0533054508,0.0113180922,0.0180537365,-0.0050344807,0.0056970031,-0.0595166013,-0.068791911,0.0130710155,-0.0095444638,-0.0166182723,-0.0210488904,0.024885999,0.0235333499,0.018329788,-0.027260039,0.0356933959,-0.0502964966,0.0079433685,-0.0233953241,-0.0147273224,-0.0101655787,-0.0069875414,0.0081642093,0.0123325791,0.025672745,-0.0430363528,0.0040475982,-0.0104554323,0.0367423892,0.0288749374,-0.0036335215,-0.0015760788,0.030890109,0.0525049046,0.0153070288,0.0182607751,-0.0308625046,-0.0099723432,0.0195582155,-0.0180123299,0.0243753046,0.0146859139,-0.0310005303,-0.0340094864,-0.0118080825,-0.0255485214,-0.007895059,0.0181779601,-0.0410211831,0.0125465188,-0.0248998012,-0.0090130661,0.0480880886,-0.0191441383,0.0212283228,0.0083919512,0.0096134767,-0.0020462282,-0.0005775505,-0.0046618115,0.0192131512,-0.0625531599,-0.0047894851,0.0005223403,-0.0051276479,-0.0231744833,0.0223049223,-0.0018150355,-0.0463213623,-0.0037163368,0.0188818891,-0.0202483423,0.0206072088,-0.038315881,-0.0037439419,0.0250930376,0.0426222794,0.0292614084,-0.0213249419,-0.000565042,0.004582447,0.0269011725,-0.0228708275,0.0034489124,-0.0582467653,0.0014880876,-0.0013845684,-0.0148377428,0.0029951537,-0.0147687299,-0.0214215592,-0.017460227,0.0154450545,-0.0000596853,0.006200796,0.0330157019,0.0165768638,-0.0427050926,-0.0065355077,0.004506533,0.0042132288,0.0098481206,-0.0150585836,0.0156244878,0.008219419,0.0048792018,0.0094202412,-0.0012767359,0.0094961552,-0.011221474,-0.0283780452,-0.0103036044,-0.0134712895,-0.0217528213,-0.0077570337,-0.0092270058,-0.0038888687,-0.0127328532,0.0241406616,0.0006905589,0.0292061977,-0.0132504487,-0.0188680869,0.0352517143,-0.0451067351,0.0095168585,-0.0338990651,-0.0041856235,0.0565076433,0.0202345401,0.0529465862,0.0655345097,0.0180813428,-0.0041131601,-0.016507851,0.0000893392,0.0506829657,0.0029088876,0.0307244789,0.0189785082,0.0030934967,-0.0018754216,0.0033850756,0.0055831317,0.0047963867,-0.0153622394,-0.0003219876,0.020621011,0.0059178439,0.0179709215,-0.0048446953,-0.0049965233,-0.0024810086,-0.0294270385,0.0270253941,0.0067874044,-0.0151966084,-0.0187300611,0.0470943041,0.0174050163,0.015569278,-0.0445822403,-0.015486462,-0.007584502,0.0361074731,0.042981144,0.0271772239,-0.0007000481,-0.0093857348,0.0045203357,-0.0208142474,-0.0216009915,0.004506533,-0.0130296079,-0.0025741758,0.0234367326,-0.037128862,0.0101379734,0.002391292,0.0244443174,0.0142718377,0.0102759991,-0.0020410523,0.0004960292,0.0368252061,0.0089026457,-0.0069047264,0.0226499867,0.034451168,-0.0044616745,-0.0087853242,-0.0001179687,0.0052001113,-0.007342957,0.0081435051,0.0436988771,-0.007584502,-0.007819145,0.0177914891,-0.0073015494,0.0338990651,0.0565352477,0.0355277658,-0.0155278696,-0.0144236656,-0.0212145206,-0.0054416559,0.0230364576,-0.0137335379,-0.005610737,0.0584676079,-0.0086680017,0.0064664953,-0.0146859139,0.0423186198,-0.0082608266,-0.0045513911,0.0030986727,-0.0016908125,-0.0220426749,-0.0149205578,0.0268045533,0.0124568027,-0.0200551059,-0.031525027,-0.0513730943,-0.0377637781,0.0054278532,0.0115182288,-0.0264042802,0.0339542739,0.0049102576,-0.0032280716,-0.0284884647,-0.0087094093,0.0092960177,0.0346444026,0.0022170348,0.0050413818,0.0141200097,-0.0029451193,0.0054106,-0.0023343565,-0.0269011725,0.0214215592,-0.0036507747,0.0026000557,0.012325678,-0.0087232124,-0.0318286829,-0.014299443,0.0258521773,0.0316078402,0.0075637978,-0.008612792,-0.00979291,-0.0185230244,0.0103933206,0.0024465022,0.009558267,-0.0107590882,0.0299515352,0.0195582155,0.0063319202,-0.0141890226,0.0086956071,0.0322703645,0.0250102226,-0.0024016439,0.0072739446,0.0193787813,-0.0030555397,0.0114354137,0.0055244709,0.0358866341,0.000240035,-0.001195646,0.0046169534,0.0276327077,0.0216700044,0.0437816903,-0.0589644983,-0.0130986208,-0.0138784647,-0.0403862633,-0.0163422208,0.0116976621,0.0267493445,0.0217942279,0.0287645161,-0.0389508009,-0.0159557499,-0.0088336328,-0.0024309743,-0.0354173444,-0.0015165553,0.0051759565,-0.0107935946,0.019903278,-0.000876462,0.0299515352,-0.0009506507,0.0145616913,0.0134367831,-0.0325464159,0.0086680017,-0.0062491051,0.0044409707,0.0163008124,-0.0102483938,-0.0077501326,0.0029416687,-0.0101655787,-0.0236437693,0.0182883795,-0.0124222962,-0.0034213073,0.016590666,0.057197772,0.0045479406,-0.014057898,0.0269011725,0.0131055219,0.015169004,0.0177638829,0.0207452346,0.0277017206,0.0321875475,0.0372392833,-0.0568112992,0.0224291459,0.0187714696,0.0040510488,-0.0307520833,0.011062745,0.0259625986,-0.0208142474,0.0144650731,0.0287093055,-0.0111317579,0.0048308927,0.0135126971,-0.0174878314,0.0010714231,-0.0055486257,0.038067434,-0.0135541055,0.0023412576,0.0183573924,0.0204277746,-0.0034799683,0.0196548328,0.0288473312,-0.0034816936,0.0062905126,0.0621666908,0.0083850501,-0.0023136525,0.0184126031,-0.003473067,-0.0180261321,-0.0430087484,0.0103795184,0.0010067236,0.0403034501,-0.0241268594,0.0069323312,-0.0492198989,0.0188128762,0.0008285844,-0.033981882,-0.0071842279,0.0544924699,-0.0260592159,0.0058143246,0.0110420408,0.0005706492,0.0027932914,-0.0246651582,-0.0390060097,-0.0265146997,0.0188680869,-0.020772839,-0.0109316204,0.0153484363,0.0029899776,-0.0130227068,0.0152242137,0.0280329809,-0.0076052058,0.0091303876,-0.0020048206,-0.0144788763,0.029150987,-0.0188818891,-0.020151725,0.0065217055,-0.0144926785,0.0082263201,-0.0406623147,0.0292614084,-0.0162870102,-0.016590666,-0.0136300195,0.000515439,-0.0289853569,0.004106259,0.0064354395,0.003176312,-0.0121531459,0.0127328532,0.0690679625,0.0358866341,0.0071221162,0.0207590368,-0.0177776851,-0.0131607326,-0.0208970625,0.0279363636,-0.0021997816,-0.0424290411,0.0224015396,-0.0316078402,-0.0015743534,-0.0290129632,0.0091786962,0.0474255644,0.0027760381,0.0058729853,0.0134229809,0.0083298394,0.0322427601,0.0215457827,0.0049585663,-0.0388403796,-0.0153622394,0.0247065667,-0.0222635157,0.0336782262,-0.0063871304,-0.0107521871,0.0102069862,0.0182607751,0.0034213073,0.0399169773,0.0034109554,0.0065079029,0.0298411157,0.0326016247,-0.0022929488,-0.0171427689,-0.0298687201,-0.0062422035,0.0031487069,-0.0151828062,0.0288197268,0.0265008975,-0.0318838917,0.0195306093,0.0106141614,-0.0375153348,-0.0158591308,-0.0033678224,-0.0083298394,-0.0055382736,-0.0140855033,0.0203587636,0.0130917197,-0.0086680017,0.0147549268,0.0286264904,-0.0221116859,-0.0295926686,-0.0100482572,0.0038198561,0.0176396593,-0.0134160798,-0.0093581295,0.0015812548,0.0002518966,0.0096065756,0.0410211831,-0.017460227,-0.019433992,0.0080399858,0.0207314324,0.0081918137,0.0424014367,-0.0090820789,0.0071497215,0.0310281347,-0.0176672656,0.0057970714,0.0064457916,0.024416713,-0.0624979511,0.0079571707,-0.029316619,-0.00197549,0.0177638829,-0.0244857259,0.0028485016,0.0039475295,0.0215733871,0.0199998971,-0.0143546527,0.0149895707,0.0345891938,-0.003954431,0.0099447379,-0.0432847999,0.0196548328,-0.021173114,-0.0267355405,-0.0068564173,0.0218632407,0.0050310297,-0.0340646952,-0.0018374646,0.0121186394,-0.0105658527,0.0008454063,-0.002115241,-0.0080744922,0.0268321596,0.0071359188,0.0052760253,0.0175016355,-0.0027881153,0.0162041951,-0.0453551821,-0.0150033729,0.0051310984,0.0167701002,-0.011138659,0.0250792354,-0.0006978915,0.0387023538,0.0345615894,0.0031366297,0.0092753144,-0.0377913862,-0.0097307982,-0.0141062075,0.0017615505,0.0208832603,-0.0030451878,-0.0051621543,0.0325740203,0.0318010785,0.0176396593,0.0056245397,0.0078122439,-0.0084816674,0.0390612185,-0.0076259095,-0.0106210634,-0.0172945969,0.0080882953,0.0021514727,0.0117390696,0.0085092727,-0.0093374262,0.0305312425,-0.0065424093,0.0072049317,0.0168943219,0.0036645774,0.030172376,-0.0164940488,-0.0275084842,-0.0044168164,0.0440301374,0.0240716487,-0.0583571866,0.0262248479,-0.0071221162,-0.0014544438,-0.0059523503,0.0170875583,0.0128984842,0.0193373747,-0.0229398403,0.0071635242,-0.0065182545,0.0278535485,-0.0144374687,-0.0102000851,-0.0114768213,-0.0150723858,-0.016742494,0.0099033304,-0.0377085693,-0.0058729853,-0.0322151557,-0.0229122341,-0.0134850927,0.02006891,0.0048550474,0.0570873506,0.0009325349,0.038867984,0.0031883894,0.0123187769,0.0188266803,-0.0157073028,0.0186472461,-0.0142718377,-0.0070738075,-0.0435884558,0.000134467,0.0050655361,-0.0094064381,-0.0208832603,0.0237403885,0.0050172275,0.0030210332,0.0082401233,-0.0031021233,-0.0020358763,0.0237817951,0.0205105916,0.0033436681,-0.0248445924,0.0368252061,-0.0058729853,0.0069564856,0.0178743042,-0.0080882953,0.0110282386,0.0222773179,0.0073705623,0.0075568967,-0.0065769157,0.0009299469,-0.039116431,-0.0026552659,-0.0131262261,-0.0115941428,0.0063560749,-0.001639053,-0.0164250359,-0.0106417667,-0.0004270164,0.0150309782,0.0100758625,0.035003271,-0.0005956664,0.0198204629,0.0214629676,-0.006124882,0.012084133,0.0060041095,-0.0136300195,-0.0076673171,-0.0024620302,-0.0075292918,-0.0123877898,-0.0375429392,0.023933623,0.0263628718,0.0178328957,-0.0108971139,0.0020634814,-0.0027708621,0.0240026359,-0.0054623596,-0.0022756956,-0.0249550119,0.0093719326,0.0003014995,0.0265423059,0.0115803406,0.0009359855,0.0254242998,0.0244995281,0.0297583006,-0.0041373149,0.0097998111,0.0756931901,-0.0016062718,0.0190613233,0.0044271681,-0.006086925,-0.0070013441,0.0226223804,-0.0295098536,0.0145754935,-0.0012750106,0.0539403707,0.0113318944,0.0034972213,0.038315881,0.011062745,-0.0092477091,-0.0234505348,0.0130917197,-0.0058074235,0.0345063768,-0.0014113109,0.0219736621,0.0060282643,0.0212145206,-0.0143822581,0.0023688627,0.0067494474,0.052063223,0.0100206519,0.0217666235,-0.0270668026,-0.0036369723,0.0409107618,0.0140924044,-0.0433400087,0.0254933126,0.0088612381,-0.0174188185,-0.0066528297,0.0047101206,-0.0468734652,0.0016261131,0.0208142474,-0.0097998111,-0.0142442323,-0.0111731654,0.0012379163,0.009482353,0.0113111902,-0.0047411765,-0.0153484363,-0.0683502331,0.0179571193,0.0242786873,-0.0111455601,-0.0148653472,0.0292890128,0.0357486084,0.0458796807,0.0144098634,0.0290957782,0.0059005907,0.0163422208,0.0207176283,0.0004546215],"115":[0.0380660892,0.0233481172,0.0587619469,0.0281716548,0.0370766446,-0.001310669,-0.0054247612,0.0279655196,-0.0218364671,0.0059675807,0.0439752638,-0.0308926236,-0.0484552458,-0.0197888687,0.0710750222,0.0621700324,-0.017755013,-0.0290511604,-0.0377637595,0.0201736521,0.0193628594,0.0418864414,0.038285967,-0.015762385,0.0123611726,-0.0229221061,-0.0294084586,0.0538971834,0.0273333751,-0.0670622811,0.0281991381,-0.0253407471,-0.0058507714,0.0375988521,-0.016957961,-0.0106571307,0.019775128,-0.0007416531,0.0319370367,0.0124504967,-0.038395904,-0.0117427697,0.0300955717,0.0307826865,-0.0163945276,0.0078056096,-0.0364719853,0.0035867325,-0.008245362,0.0339708924,-0.0465862975,0.0072009498,-0.0378462113,-0.0257255305,-0.0029271035,-0.0274982825,-0.0018363108,0.0125673059,-0.0155974766,0.004411269,-0.0222212505,-0.0463664196,0.0465313271,0.0716796815,-0.016848024,-0.0107189706,-0.0311674699,0.0117221568,-0.0120725846,0.020283591,0.0528802574,0.0371591002,0.0101349242,0.0339708924,0.0019256356,-0.0710200518,0.015583735,0.0210531577,0.0101074399,-0.0431232452,-0.0010770505,-0.0028635457,-0.0136460746,-0.000139892,0.0327340886,-0.0206683744,-0.0058370293,-0.0001306589,-0.0169304777,0.036224626,-0.0139552755,0.0518358424,-0.0082316203,0.0017349616,0.0264401287,0.0051396093,0.0220013745,0.0009318977,-0.0066615655,0.0279517788,0.0032689425,-0.0091317389,-0.0195415076,-0.0225922931,0.0371591002,0.0114404401,0.0185245797,-0.0454869159,0.0271822102,0.0377362743,-0.1055406332,-0.0124504967,-0.0440577194,-0.0361146852,-0.0161196832,-0.03152477,-0.0176038481,-0.0154325692,-0.0081629083,-0.0145805487,-0.0155012812,0.0093653575,-0.0492248125,0.0580473505,-0.0138453376,-0.0595315136,-0.0149103636,-0.0249971896,-0.0392754078,0.0022777813,0.029106129,0.0026333625,0.0332013257,-0.0366094075,-0.0281716548,-0.0303979013,-0.0685464442,0.002432382,-0.0407595746,-0.0177275296,0.0041364236,-0.0403473042,0.0601911433,-0.0104235122,-0.0443325639,-0.0002469314,-0.0198438391,0.0189643335,-0.0391105004,-0.0134949097,-0.0172602907,0.0139827598,-0.0058816918,-0.0167243425,0.0204897244,0.0652483031,0.0195827354,0.0418039858,-0.0306452624,-0.0215753652,0.0207370855,0.0566731244,-0.0102173779,-0.0041123745,-0.0126703735,-0.0305078402,-0.0425460674,-0.0330089331,-0.0857517645,-0.0169991888,-0.0182772204,-0.0555737428,-0.0262339935,0.0117290281,0.0376263373,0.0006665001,-0.0415016562,-0.0175076518,0.0128833782,-0.0248872507,-0.0448272862,0.0012462521,-0.0203248188,0.0064348183,-0.0568929985,-0.0222075097,-0.0727240965,0.0373789743,-0.0095646204,0.0304253865,-0.0470810197,0.0631594732,-0.0047754389,0.0341083147,0.0037894309,-0.0310300458,0.0100524705,0.043645449,0.0015554532,0.0081697796,0.029573366,0.0125054661,0.0344656147,-0.0053904057,-0.0002690479,0.0475482568,0.0041982634,-0.029573366,-0.0580473505,-0.0639840141,-0.0152676627,-0.0070497845,0.0250796434,-0.0182634778,0.0038890624,-0.0191429835,-0.0622799695,0.0077300272,-0.0072696609,-0.0125604356,-0.0074620526,0.0621700324,0.0013630615,-0.0081491666,-0.0091179963,0.0274570566,-0.0093378723,-0.0107121002,0.0742082596,0.0381760262,0.0427659452,-0.0182772204,0.0027415829,-0.0215616226,0.001033247,-0.0046070963,0.0217814986,-0.0496920496,0.0142369922,-0.0232244376,0.0021867389,0.0010538604,-0.0134055847,0.0260278601,0.0290511604,0.015185209,-0.0210531577,-0.0554638021,-0.0219051782,0.0212180652,0.0180298593,0.0002866552,-0.0216578189,-0.0267699435,-0.0220288597,-0.0403198227,-0.0178237241,0.0202561058,0.0044799801,0.0038375291,-0.0082797175,-0.0481529161,-0.0293260049,-0.003686364,-0.0579923801,0.020860767,0.0101211825,0.0114747956,-0.019376602,0.0031693112,0.0325691812,0.0071322382,0.0253407471,-0.0520007499,-0.0209981892,-0.0480704606,0.0005037401,0.0087881815,-0.0063420576,0.0140033737,0.0341083147,-0.0273746029,-0.0097844964,-0.0001256129,-0.0046998565,0.0109319761,-0.0028515211,0.0198026113,0.0366918631,-0.0097226566,0.0123062031,0.0025869824,0.0141133117,-0.0147729404,0.0051911427,-0.0128146671,-0.0025801111,-0.0343281925,-0.0420513488,-0.0361146852,0.0523580499,0.0063248798,0.0331738405,-0.006283653,-0.0046689361,-0.0063283155,-0.0058095446,0.0009224499,-0.0009525111,0.0082591046,0.0282815918,-0.0178786945,-0.0024598665,-0.0112136928,-0.0010272347,-0.0289961901,0.0638740733,-0.0243650451,-0.0268111695,-0.0720094964,-0.0375988521,-0.0491698422,0.0128558939,0.0110350428,0.0368292853,-0.000307698,0.01822225,0.0005810404,-0.0136460746,-0.021946406,0.0295183975,-0.0207096022,0.0116671873,-0.016957961,-0.0353451185,-0.0381210595,0.0290511604,0.0087194704,-0.0152401775,0.0167243425,-0.0229495913,0.0041604722,-0.0307277162,-0.0119282911,0.0350153036,0.0000874459,-0.0086988574,-0.0126085328,0.0204897244,0.0156112192,-0.0435080267,-0.0475757383,0.0180436019,-0.0278693251,0.0293534901,0.0260828286,0.0071116248,-0.03941283,-0.0765169635,-0.0183047038,-0.0073246299,0.0145393219,0.027731901,0.0092966463,0.0166968592,0.0322118811,-0.0376263373,-0.0326241516,-0.0377362743,-0.0231694672,0.0361421704,-0.0054178899,-0.0327615738,0.0157761257,-0.0142919607,-0.0214791689,0.0736036003,0.048235368,0.0337235332,0.0599162988,0.0193353742,0.0018552064,0.0150340442,-0.0380935743,0.0153363738,0.056508217,-0.0084927231,0.0051567871,-0.0625548139,-0.0112136928,0.0197613854,-0.0250659008,-0.0010813449,-0.0397151597,-0.0202286225,0.0181672815,-0.026357675,0.023032045,0.0710200518,0.0299031809,0.0036520083,-0.0443875343,-0.0614554323,-0.0258492101,0.0127322134,-0.0047513898,-0.0183459315,-0.0135086514,0.0004150595,-0.0250246748,-0.0074070836,-0.0276769325,0.0172328074,0.0030834218,0.0212867763,-0.0101280529,-0.0198300965,0.0368292853,0.0033153228,0.0614004657,-0.0053423075,0.0023791306,-0.0092416769,-0.056508217,-0.0206408892,0.0590917617,0.0328715108,-0.0235817358,-0.0095371353,-0.0717346519,0.0153363738,0.0023430572,0.039660193,-0.0225785505,-0.0321019441,0.0272921491,0.0176175907,-0.0011431851,0.0474932864,0.0283915307,-0.0203110762,0.041474171,-0.0068642641,0.0098119806,-0.0074964087,-0.0156661887,-0.0222075097,-0.0283365622,-0.0103410585,-0.0362521075,0.0557386503,-0.0264401287,0.0107808113,0.0242551081,-0.0549690798,-0.0361421704,0.0335586257,-0.0095646204,-0.0079842592,-0.0062389909,-0.0445249565,0.0150203016,-0.0536773093,-0.0081079397,-0.0040505342,-0.0546942353,0.033805985,-0.001756434,0.0389455929,0.0074895374,0.0063111377,0.0297107883,0.002805141,0.0167105999,-0.0380935743,-0.0045486917,0.0461190604,-0.0009636767,0.0125741772,0.0177824982,0.0001661956,-0.0142507348,0.0076338314,0.051808361,0.0344381295,0.017136611,0.0020046537,0.0374614298,-0.0095783621,0.0035695548,0.0135498783,0.0117427697,0.0698107332,-0.0161883943,0.0107052289,-0.0016868637,-0.049499657,-0.0297107883,-0.0048063588,-0.0226197764,0.0127940541,0.002233119,0.010993816,0.0717896223,-0.0075926045,0.004943782,-0.0018019552,-0.0234443136,-0.0171228684,0.0326241516,-0.0035214568,-0.0206271484,0.059586484,0.0102242492,-0.020462241,0.0227022301,0.0194727965,-0.0018397465,-0.0308376551,-0.0099425325,-0.0113579864,-0.0269760769,0.0015640422,-0.0084308833,0.0016224468,-0.0022949593,-0.0589818247,-0.0369941927,-0.0361146852,0.0013965582,0.0027158163,-0.0222075097,0.016270848,-0.0184833538,-0.0206546318,-0.0032723781,-0.0239802618,-0.017535137,-0.0484277606,0.0081216814,0.0193216316,0.0556561947,0.0227159727,-0.0091042537,0.0022228123,-0.0086576305,-0.0206683744,-0.0040539699,-0.0025302956,0.0262339935,0.0486201532,-0.0256155916,-0.0044490602,-0.013701044,0.0077300272,0.024983447,-0.0033634207,0.0097363982,0.0205584373,0.0055999751,0.0198988076,-0.0169167351,0.0075582489,0.0017298083,0.0051911427,0.0251346119,-0.0037310263,0.0050571556,-0.0624998473,0.0444150195,0.004665501,-0.050763946,0.0162433628,-0.0127665689,0.0092416769,0.0575526282,-0.028528953,-0.0267562009,0.0276631899,-0.005575926,-0.0480979457,-0.0222075097,-0.0180161167,0.0217952412,-0.0290786438,0.0156387035,0.0023722595,0.031057531,0.0140239866,-0.002327597,-0.0147729404,-0.0043562995,-0.0061668437,0.0154875387,0.0211905818,-0.0093035167,0.0263301898,0.0230045598,-0.0029906617,0.0233481172,0.0089324759,0.0176863018,-0.0353451185,-0.0605759285,-0.0364994705,0.0333387479,0.0263851583,0.0023808484,0.0405396968,-0.011749641,0.031744644,0.002001218,0.0049128616,-0.0311949532,0.0051499158,0.0179199204,-0.0138178533,-0.0150615284,0.0295458809,0.0222487357,-0.0222899634,-0.0729439706,0.0020871074,-0.0455968529,0.0174664259,0.029573366,-0.0293260049,-0.0417490192,0.0060809548,0.0346030369,-0.0314972848,0.0144431265,0.0432881527,0.0012290743,0.0031074709,0.0324042737,-0.00348023,0.0404022746,0.0155150229,-0.0229633339,0.0163670443,0.0265500657,-0.0169304777,-0.0153088896,0.0040917611,-0.0256155916,-0.0043975264,0.0433431193,0.0021334875,-0.0248185396,-0.0049059903,-0.020860767,0.0867961794,0.0334211998,0.0210256744,-0.0099906307,0.0001299074,0.0035317636,0.0115366364,0.0504341312,-0.0127253421,-0.0317721292,-0.0034922545,0.0198300965,-0.0402373672,0.0214654263,0.0074002128,0.0361971408,0.0373240076,0.0443050787,-0.0023207259,0.0420238636,0.026536325,0.0179061778,0.0310850162,0.0292710364,0.0240352303,-0.0234443136,0.0240627155,0.0493622348,-0.0302329957,0.0010590138,-0.0345480666,-0.0030920107,0.016050972,-0.02136923,0.0062699108,0.0248185396,0.0305078402,0.0029374103,0.0070635271,-0.0244200137,0.0195002817,-0.024296334,0.012457368,-0.013323131,0.0383684188,0.0361146852,-0.0282266233,-0.0159547757,0.001223062,-0.0239252932,-0.0523030795,-0.008245362,-0.0226610042,-0.0032105378,0.0126085328,-0.0113923419,0.039302893,-0.0120038735,-0.0138796931,-0.0007695672,-0.0416390784,0.0288312826,-0.0057958025,-0.0033582672,-0.0158448368,0.0075376355,-0.0098600788,-0.0126772448,-0.0275807362,-0.0235130247,-0.0255331378,-0.0269485917,0.0306452624,0.0046414519,0.0364719853,0.005332001,0.027044788,-0.0187444575,-0.0159685183,-0.0113579864,0.039550256,-0.0128146671,0.0069879447,-0.0115503781,-0.0162021369,-0.0139827598,-0.0269760769,-0.0245436952,0.01392092,-0.0208057966,-0.0213829726,-0.021259293,0.0093310019,-0.0574976578,0.0366643779,0.0291336123,-0.023609221,-0.0065275785,-0.0247635711,0.0122100068,-0.0144843534,-0.012745956,-0.0090149296,-0.016050972,-0.0137353996,0.0013407302,0.0031486978,0.025203323,-0.0130895125,0.0363620482,-0.0339434072,0.0357299037,-0.020682117,0.0179886315,-0.0208470244,-0.0025577801,-0.0048578926,-0.0232381783,0.022454869,0.0200911984,0.0021386407,0.0046380162,0.0513136387,-0.0097157853,0.0011818353,0.0041123745,0.022853395,-0.0006420217,0.0230595302,0.0019118934,-0.0230183024,-0.0190467872,0.0126909865,-0.0185795501,0.0391654707,-0.0349053666,-0.0198026113,-0.0164220128,-0.0310025625,0.025959149,-0.0305078402,0.0211905818,0.0196239613,-0.0191842094,0.0008829409,-0.0730539113,-0.0756374598,0.0164220128,-0.0055175214,-0.0125879198,-0.0178374667,0.0139827598,0.0179474056,0.0307552014,-0.0121893939,0.0305353254,-0.0403198227,0.0133093884,-0.0367743149,-0.016628148,0.0056171529,-0.0024839153,-0.0083690425,0.017356487,0.0229770765,-0.0377087891,0.0090286713,-0.0207370855,0.0466962345,0.012148167,-0.022523582,-0.0042841528,0.0321569145,0.0411168747,-0.0058542071,0.0349328518,-0.0377087891,-0.0337784998,-0.000359661,-0.0175763629,0.0076888003,-0.0092485482,-0.0138453376,-0.0066615655,0.014010245,-0.0118733216,-0.0175488796,0.0163120758,-0.0184970964,0.0217127874,-0.0476581939,-0.0059710164,0.049499657,-0.0323493034,0.0046895496,0.0048716348,0.0111793373,-0.0036726217,0.0015657599,-0.0042051347,0.0324042737,-0.0689861998,-0.0259179212,-0.001580361,-0.0075170221,-0.0189093649,0.0427109748,-0.0027106628,-0.0444699861,-0.0306727476,0.0163807869,-0.0005187707,0.024117684,-0.0391654707,-0.0202286225,0.0312499236,0.0485376976,0.032898996,-0.0163533017,0.0037104129,-0.0055243927,0.0146355182,-0.0046826787,-0.0064760451,-0.039302893,0.0116534457,-0.0273196343,-0.044799801,0.0012728778,0.0035180212,-0.0229770765,-0.0141270543,0.0109457187,0.0074757952,-0.0042085703,0.0195002817,0.0070635271,-0.00920045,-0.0108151669,-0.0224686116,-0.004988444,-0.006318009,-0.0207783133,-0.0009653945,0.0080392286,0.0032929915,0.0020785185,0.0157211572,0.030150542,0.000882082,-0.0183184464,-0.0290511604,-0.030150542,-0.0082591046,-0.0179061778,-0.0042978949,-0.0141682811,0.0038581423,0.0041948282,-0.0220700856,0.0153776007,0.0080598416,-0.010375414,0.02487351,-0.0374614298,0.0251346119,-0.0342457369,-0.0199812613,0.0609057434,0.0111655947,0.026357675,0.0453220084,0.0202148799,-0.0009284621,-0.0180985704,-0.0034613344,0.0459266677,-0.0106159039,0.0408145413,-0.007681929,0.000306195,-0.0100455992,0.0095783621,0.0053594853,0.0173702296,-0.0178512093,-0.0163395591,0.0176175907,0.0004852739,0.0248597674,-0.0175076518,-0.0098257232,-0.0139827598,-0.0296008512,0.0261103138,0.031992007,-0.020970704,-0.0161196832,0.0332288109,-0.0000692482,0.0080735842,-0.0439202972,-0.0104028983,-0.0092554195,0.0137697551,0.0238153543,0.0054934728,0.0134536829,-0.0221937671,0.0102586048,-0.0058542071,-0.0169167351,-0.0016379069,-0.0268936232,-0.0051774005,0.0417765006,-0.0096608158,0.0058885626,0.0129108634,0.0339708924,0.0281441696,-0.0045589982,-0.0006428806,0.0139965024,0.0324317589,0.0307002328,-0.0175213944,0.0121069402,0.0254644267,0.0041398588,0.003392623,-0.0113236308,0.0095233936,-0.0002890171,0.0081972638,0.0161609091,0.0148004256,-0.0064245113,0.0086988574,-0.0133918421,0.0463939048,0.0662927106,0.0302329957,-0.0189780761,-0.0271684676,-0.0099700168,0.0010452714,0.0102173779,-0.000286011,-0.0072284341,0.0554912873,-0.0136254607,0.0374614298,0.0057236557,0.0527703166,0.0012385221,0.0029099258,0.0021729965,0.0022279655,-0.0236504469,-0.0085820481,0.0155699924,0.0011921419,-0.0268936232,-0.0325142108,-0.0426834933,-0.0426560082,0.0350153036,-0.0044318824,-0.0322943367,0.0213417467,0.0137079144,0.005108689,-0.0239665192,-0.007159723,0.0068814419,0.0136529459,0.0088500222,0.0018586421,-0.0115160225,0.0083827851,0.0040264851,0.0082865888,-0.0340533443,0.0184283853,-0.0073795994,0.0011380317,0.0083552999,0.0068299086,-0.0402648523,-0.0092691611,0.0259866342,0.0305628087,0.0336685628,-0.0192116946,0.0045246426,-0.0007407943,0.0093310019,-0.0018277219,0.0159685183,0.0047513898,0.0366643779,0.0153363738,0.0017693173,-0.0171778388,0.0200499725,0.0311399847,0.0154875387,-0.020860767,-0.0098463371,0.0384783559,-0.0168205388,0.0062046349,0.0238840654,0.0342182517,-0.029573366,0.0153776007,-0.0026900494,0.0059950654,0.0172602907,0.0430407897,-0.0559585243,-0.0147179719,-0.0024495597,-0.0230870135,-0.0193216316,0.007015429,0.0097570121,0.0198163539,0.0260553453,-0.0463664196,0.0021145919,-0.013831595,-0.0213967152,-0.0230457876,0.0096058473,0.0458991826,-0.0122718476,0.0301230568,-0.0199537762,0.0262339935,-0.0090767695,0.0187169723,0.0092829037,-0.0022365544,0.0037756888,-0.0022554502,0.0068676998,0.0068196016,-0.0097501408,-0.0002128978,0.0097638834,-0.0332562961,-0.0103822853,0.0150477858,-0.0229770765,-0.0056137173,0.0022846526,0.0587619469,0.0022365544,-0.0011844119,0.0177275296,-0.0144018997,0.0267974269,0.0266187768,0.0110900123,0.0059572742,0.0167930536,0.0398800671,-0.0615104027,-0.0016241646,0.022454869,0.0072559188,-0.0302055106,0.0085957898,0.0171503536,0.0094615528,0.0096951714,0.0187169723,-0.0239802618,0.0086370166,-0.0075513776,-0.0171503536,-0.0155562498,-0.0224136431,0.0489224829,-0.0229770765,-0.0203660447,0.0147042293,0.0132819042,0.0059710164,0.0325142108,0.0242825914,-0.0088156667,0.0091454806,0.063269414,0.0184833538,-0.0029958149,0.0152264358,-0.0117152855,-0.0133712292,-0.0460366048,-0.0098051103,-0.0183321889,0.0364719853,-0.0219876319,0.0110693984,-0.0543369353,0.0155287655,-0.0085270787,-0.0103479298,-0.0056205885,0.0517808758,-0.0146904867,0.0006523284,0.0320744589,0.024296334,0.0090905121,-0.0183047038,-0.0266600046,-0.0164632406,0.0171091259,-0.0043734778,-0.0031779001,0.0119901309,0.0054694237,-0.0085202074,0.0174114574,0.0006806718,-0.0023258792,0.0093241306,0.0031401089,-0.0010624493,0.0125947911,-0.0185245797,-0.010684615,-0.0128696365,-0.0059229187,0.0011474796,-0.0355924815,0.0212730337,0.001040118,-0.0232931487,0.0114198271,-0.001343307,-0.0017323849,0.0030868575,0.016449498,0.0070910114,-0.0090286713,0.0129589606,0.0762421191,0.0211493541,-0.0032448936,-0.0075307642,-0.0218502097,-0.0197888687,-0.0323493034,0.0123543013,0.0026247737,-0.0387806855,0.0134674245,-0.0116465744,0.0034630522,-0.019019302,-0.0092622899,0.030370418,-0.0046723718,0.0089874445,0.016628148,-0.0048613283,0.0102654761,0.0286663752,0.0030387596,-0.0293260049,-0.0116671873,0.0353726037,-0.0416390784,0.0510937609,-0.0199262928,0.0052907742,-0.0143194459,0.0137147857,-0.0033771629,0.0437004194,0.0115091512,0.0144293839,0.0469985642,0.0307552014,-0.0026402336,-0.0156112192,-0.0376538225,-0.0082041351,0.0137147857,-0.0212180652,0.0218914375,0.0146217756,-0.038038604,0.0098944344,0.0196102206,-0.0189093649,-0.0062046349,-0.0112205641,-0.0174389407,0.0161471684,-0.0307826865,0.0187032297,0.0120244864,-0.0084171407,0.0170678999,0.0276906751,-0.0431232452,-0.0237741284,-0.0148828784,0.0035180212,0.0199400336,-0.0190880131,-0.0098463371,0.0057477048,-0.005496908,0.0071116248,0.0212455504,-0.0010375414,-0.0337510146,0.0158860646,0.0121412957,0.0174526833,0.0423536785,0.0020441627,-0.0155974766,0.0353726037,0.0096470742,0.0044456245,0.0131376106,0.0143744145,-0.0574426912,0.0217402726,-0.0186757445,0.0011981542,0.0140995691,-0.029573366,0.0053766631,0.0153638581,0.0266874898,0.0259866342,-0.0219326634,0.0141270543,0.0500768349,0.0043872199,0.0132681625,-0.032898996,0.0232931487,-0.0323218182,-0.0291885827,0.0090492852,0.0069845091,0.0046517584,-0.0203935299,-0.0112136928,0.0038237867,-0.0019376602,-0.0122306207,-0.015075271,-0.0362521075,0.0233068913,0.0195140243,0.0030542195,0.0121825226,-0.0055965395,-0.0055999751,-0.0251071285,-0.0355924815,0.001446374,0.0080804545,0.0003918694,0.0175626222,-0.0193491168,0.0443600491,0.0208057966,-0.0008425729,0.0003371151,-0.0278830659,-0.0048647639,0.0028171653,0.0147042293,-0.0081079397,-0.0075994753,0.00157349,0.0455418825,0.0231007561,0.0094065843,0.0177275296,0.0018483354,-0.0089668315,0.0230870135,-0.0276631899,-0.0103891566,-0.0054728594,0.0200087465,-0.009708914,0.0098806927,0.0049747019,-0.0149103636,0.0272096954,-0.0061599729,0.0205584373,-0.0183047038,0.0007304876,0.0305902939,-0.0027742209,-0.0214379411,-0.0075238929,0.053732276,0.026137799,-0.039302893,0.0239665192,-0.0158998072,-0.0093447436,-0.0137834968,0.0081010684,0.0058610784,0.0153638581,-0.0132887755,0.0120931976,0.0076475735,-0.0010177869,-0.0170266721,0.0004736789,-0.0239252932,-0.0128696365,-0.001406006,-0.0032380226,-0.0329539627,0.0187032297,-0.0212730337,-0.0056893001,-0.0337784998,0.0119214198,0.0070910114,0.0509288535,-0.0077781249,0.0330913886,0.0068127303,-0.0056068464,0.0090286713,-0.0166418888,0.0223174468,-0.005108689,-0.0075101508,-0.0491423607,-0.0027226873,0.0064623025,-0.023719158,-0.0090080583,0.0226060357,-0.0262614787,-0.0152126933,-0.0091179963,-0.006173715,0.0093241306,0.015185209,0.0121206827,0.005277032,-0.0316621922,0.0378187299,-0.0093447436,0.0016422013,0.0096333316,-0.0134605542,0.0157486424,0.0111243678,0.026357675,0.0166144054,-0.0108907493,0.0006265616,-0.0144843534,-0.0163945276,-0.0162433628,-0.0134261977,-0.0254781693,-0.0128009245,-0.0025921357,-0.0141957654,-0.0005891998,-0.0006780952,-0.0181260537,0.0137491412,0.002415204,0.0162845906,0.0250384174,-0.0072078207,0.0300406031,0.0018483354,-0.0071322382,-0.0086919861,-0.0008198123,-0.0054385033,-0.002605878,-0.0169029925,0.0240214895,0.0223999005,0.0161196832,0.0087125991,-0.016092198,-0.0122443633,-0.0014403617,0.0140858274,0.001199872,-0.0154600544,0.0233481172,-0.0044490602,0.0191567242,0.0404297598,-0.0100936973,0.0263714176,0.0249422211,0.0061565372,-0.0073108878,0.009509651,0.0679417849,0.0114129558,0.0091248676,-0.0076544448,-0.0240764581,-0.0010847804,0.0297382735,-0.0093310019,0.0073383725,0.0101143112,0.0510387905,0.0039096759,0.0144431265,0.0232656635,0.0041604722,-0.029106129,0.0039028048,-0.0056824288,-0.0038615779,0.0140239866,0.0091935787,0.0246261489,-0.0051430445,0.0296008512,-0.0198988076,0.0082110064,-0.0056824288,0.0520007499,-0.0052907742,0.029573366,-0.0414192043,-0.0030301707,0.0399350375,-0.0016542258,-0.0466962345,0.030480355,0.0180023741,-0.0382035114,-0.0271959528,0.0283915307,-0.0446074083,0.0161609091,0.0124848522,-0.0051499158,0.0023447748,-0.0154188275,-0.0028996191,0.0210531577,0.0254781693,0.0013338592,0.0007025736,-0.0673371255,0.0194865391,0.0375713669,0.0061359238,-0.0098532075,0.0077918675,0.0107052289,0.0279655196,0.0109044919,0.0249147359,-0.0015889501,0.0225648079,0.009310388,-0.0130139301],"116":[-0.012011569,0.0156885795,0.0860630646,0.0232387092,0.0737923533,0.012158649,-0.0166130848,0.0269227233,-0.0190364104,0.0167251471,0.0346829668,-0.0108069098,-0.0040937387,-0.0230706166,0.0529209413,0.0205212235,0.0061773784,-0.0287717357,-0.0126629248,0.0460291728,-0.0211235527,0.0281694047,0.0323576964,0.0308728833,0.0052038459,0.0057011177,-0.0215717983,0.0410144292,0.0357475504,-0.0498952866,0.002232471,-0.0348790735,-0.0473739095,0.0155905262,0.0289958566,0.0071509108,0.0334502943,0.018910341,0.0037085281,0.0244293604,-0.0198488552,-0.0016047526,-0.0109679978,0.0318814367,-0.0186021738,-0.0037260377,-0.0108979596,-0.0459451266,0.0148481205,0.0634827167,-0.0468416177,0.0238270313,-0.0422190875,-0.0162628945,0.0351872444,-0.000702134,-0.0070038303,0.0242052376,0.0070353476,-0.035915643,-0.0105897915,-0.070318453,0.0330020487,0.0472618453,-0.0288837962,0.0255639814,-0.0173694994,0.0297802873,-0.0518843755,0.038997326,0.0429194719,0.0236729458,0.0039396547,-0.0105407648,0.0158006418,-0.069197841,0.0004631283,0.0718873143,0.0291639492,-0.0053369189,0.0230145864,-0.015562511,-0.0256900489,0.0388012193,0.0389132798,-0.0228745099,-0.0157165956,-0.0164449941,-0.0145259444,-0.001813992,0.0140566872,0.047766123,-0.0111010708,0.005571547,0.003750551,0.0188963339,-0.0175095759,0.0176356453,-0.0063734856,0.0284775738,0.0361117497,0.0074450718,-0.019792825,-0.018083889,0.0478501692,-0.014294818,0.0029906356,-0.005732635,0.0133493003,0.0128940521,-0.096428737,-0.0286036432,-0.054882016,-0.0189523641,-0.0127889942,-0.006352474,-0.002642195,0.0089298841,-0.0026999766,0.0022132103,-0.000906996,0.0090979757,-0.01230573,0.0302845631,-0.0092590638,-0.0143858679,0.0344308317,-0.0270067696,-0.0558065213,0.010022481,0.037316408,-0.0079773627,0.0161928553,-0.0675729513,-0.0226223711,-0.003596467,-0.0658360049,-0.0040937387,-0.0076761981,-0.0181679353,-0.0225663409,-0.0493069664,0.0340946466,-0.0150862504,-0.0461132191,0.0358035788,-0.0132652549,0.0498952866,-0.0542656779,-0.0007564137,0.0016677871,0.0147640742,-0.0032847964,-0.0213756897,0.0323296823,0.0068777613,0.0116123511,0.0415187068,-0.0188823268,-0.0396416783,-0.0147780823,0.0579917133,-0.0092590638,0.0204932075,0.0127959978,-0.0344308317,-0.0448525287,-0.0268807001,-0.0899291784,-0.0297522712,-0.0164590012,-0.0539014786,-0.0074240603,0.0345709063,0.03563549,0.0136504658,-0.0249616504,-0.0589442365,0.0321615897,-0.0319374651,-0.0421630591,0.0337584615,-0.0386051126,0.0295841787,-0.0397537425,-0.0035054171,-0.0742966309,0.0226223711,0.0129220672,0.0441801623,-0.0451606996,0.0513800979,-0.0023672946,0.0247515365,0.0162488855,-0.034206707,0.0412105359,0.0107718911,-0.0243593212,0.0180558749,0.0551341511,0.0084116003,0.0259702019,0.0097003048,0.0128800441,-0.0004270148,-0.0145259444,-0.0303686075,-0.0485785678,-0.0390533581,-0.0041462677,0.0080754161,-0.0270768087,0.0109820059,-0.0021291645,-0.0053089033,-0.0686935708,-0.0034826547,0.0059357462,-0.0287437197,-0.015828656,0.0447404683,0.0015303369,-0.0226643942,-0.0280573443,0.0200449619,0.0065485812,-0.0142247798,0.0277631842,0.0227344334,0.0119415307,-0.0479902439,0.0226223711,-0.030228531,0.0104287034,-0.0070248418,0.0146239977,-0.0461412333,-0.0149601819,-0.0557785034,0.0157726258,0.0040727272,-0.0347389989,0.0148341125,0.005084781,0.0250176825,-0.0381008387,-0.0754172429,0.003754053,0.0428914577,0.0092380522,0.0041112485,-0.0031919957,-0.0238830615,-0.0338144936,-0.0944116339,-0.0007918706,0.0131742051,0.0434237495,0.0234908462,0.0055540376,-0.0348230451,0.0033268195,-0.0111150788,-0.0451606996,0.0400619097,0.0098543894,-0.0324697569,-0.008208489,-0.0292199794,0.0636508092,0.0445723757,0.0221601184,-0.0634827167,-0.020325115,-0.0327779241,-0.0010549519,0.000824701,-0.0126979444,0.0030379114,0.0202270616,-0.0195967164,0.0157025885,-0.000576065,0.0413226001,0.0101625575,0.011171109,0.0358876251,0.0214037057,-0.0433677174,0.0166270938,0.014708044,0.0354113653,-0.0093361055,0.0190364104,0.0382409133,-0.0151983118,0.0087197684,-0.053677354,-0.040986415,-0.0023742984,0.0101905735,0.0149321659,-0.0253538657,0.0082995389,0.0168091934,-0.0136434613,-0.0205772538,0.0016800438,0.033646401,0.0032988042,-0.0277071521,0.0104287034,0.000650043,-0.0292479955,-0.0359716713,0.0684134141,-0.0231546629,-0.0126629248,-0.0457210056,-0.039865803,-0.0990621746,-0.0155765191,0.0211095437,0.0385770984,-0.0093781287,0.0379887745,0.010316642,0.0326098353,0.0126068946,0.002232471,-0.0290799029,0.0245274138,0.012438803,-0.0239110775,-0.0460291728,0.0104637221,0.0245134067,-0.0276791379,0.0071859299,-0.0001329633,0.0197227858,-0.0760896131,-0.0072979913,-0.009034941,0.0062684282,0.0098613929,0.0015530994,-0.009182022,-0.000054991,-0.0503995642,-0.0157586187,0.0080894241,-0.0065135621,0.0228605028,0.0099384356,0.0095252097,-0.0246955063,-0.0321615897,0.0010996014,-0.0238410383,0.0121866651,0.0051933401,-0.0028803253,-0.0083975922,0.024597453,-0.055162169,0.0098123662,-0.0165150315,-0.0149181588,0.0110450406,-0.006566091,-0.0185041204,0.0013351052,-0.038156867,-0.0101485504,0.0699822754,0.0329740345,-0.0032532793,0.0462532938,0.0151983118,-0.0040026889,0.013279262,-0.016388962,0.0236309227,0.0453848206,-0.0089929178,0.0244013444,-0.038717173,-0.0064435238,0.0535092652,0.0387732051,-0.0099524427,-0.0232667252,0.0101205353,0.0044369265,-0.010890956,0.0209694672,0.0508478098,0.0073680296,0.0184761044,-0.0169912931,-0.0519684218,-0.0198908783,0.0125648715,-0.0300884545,0.0074660829,0.0134683661,-0.0282254368,-0.012424795,-0.0243873373,-0.0046925661,0.0251997821,-0.0213616826,0.0610734001,-0.0530049875,-0.044656422,0.071831286,-0.0121656535,0.0321055576,-0.0502875,-0.002104651,-0.0346549526,-0.0132512469,-0.0534252189,0.0705425814,0.0476540625,-0.0208994299,-0.0221321043,-0.0430315323,-0.0014935668,-0.0036595014,0.0396977104,-0.0220060349,-0.0055470336,0.0348230451,0.0284495596,-0.0037890722,0.0418829061,0.007354022,-0.0435077958,0.0097633395,0.0050182445,0.0278192144,-0.0044929571,-0.0226503871,-0.0115072932,-0.0133563047,-0.0196247324,-0.0056766043,0.0641550869,-0.0031517236,-0.0239390917,0.0017168139,-0.0109820059,-0.0192885492,0.0300604403,-0.0451326817,0.019778816,-0.0102185886,-0.0467295572,0.0167391542,-0.0717752501,-0.0495310873,-0.0135664195,-0.0187842734,0.060457062,0.0115072932,0.0105547719,-0.0255499724,0.0051828343,0.0293320417,-0.0024058158,0.0027997813,-0.0109539907,0.0148901436,0.0259702019,0.0032287657,0.0133633083,-0.0061178459,0.0458330661,-0.0315452516,0.0090139294,0.0571232401,0.0304526538,0.0258441344,0.0420229807,0.0139376223,0.0038380991,-0.0120535921,-0.0304806698,0.0177056827,0.0527248345,-0.0170053001,-0.019792825,-0.0002672399,-0.067516923,-0.0353273191,-0.0015609787,-0.0088388342,0.0137485191,-0.0198768713,0.0278892517,0.0602329411,0.002272743,0.0407342762,-0.0043388731,-0.0148481205,0.0097493315,-0.0104357069,-0.01868622,0.008768796,0.0603450015,0.0394735895,-0.0282954741,0.020913437,-0.0008010631,0.0199188925,-0.0288837962,-0.0011547565,-0.009623263,-0.0272589084,-0.0310689919,-0.0221180953,0.0017413273,0.0400899239,-0.0557224751,-0.0054734936,-0.012999109,-0.001138998,0.0005318534,-0.0345428921,0.0343747996,-0.0011810209,-0.0352432728,0.0030256547,-0.0084466189,-0.0137485191,-0.0330020487,0.0281834137,-0.0011223638,0.0408743545,0.0336744152,0.0166130848,0.0158566721,-0.0314331912,0.0246394742,0.0082154926,0.004752099,0.0280853603,0.0221040882,-0.0509318523,0.0066046119,0.0131812086,0.023182679,0.0145819746,0.0201150011,0.0297802873,0.0252418052,0.030816853,0.0094831865,0.0192885492,-0.0095182052,-0.0135033848,-0.0130691472,0.0261943247,-0.0017220668,-0.0139096072,-0.035075184,0.016402971,0.0013596186,-0.0111851171,0.0235608853,0.0127959978,0.01868622,0.0147920894,-0.0275110453,0.0008579692,0.0173134692,0.0119205192,-0.0322176181,-0.0280713513,-0.0266145561,0.0345709063,-0.0286736805,-0.0036595014,0.0210395064,0.0098824045,0.0170893464,-0.0190784335,-0.0005230986,-0.000473634,-0.0005261627,0.0086777462,0.0330020487,0.0078863129,0.0162769016,0.012718956,-0.0113111855,0.0089578992,0.0011442507,0.0027875244,-0.0005314156,-0.0694779977,-0.0489987954,0.0255779885,0.0132302353,-0.0090839677,0.0727838054,-0.0170893464,0.0382409133,0.0023270226,-0.0146239977,-0.0473178774,-0.0195827093,-0.0232807323,0.0033968578,-0.0090279374,0.0019365591,-0.0238410383,-0.0075431252,-0.0272869226,-0.0211375598,-0.0543777384,0.0093991403,0.0229445472,-0.0082995389,-0.0289118122,-0.0247655436,0.0266845934,0.022048058,-0.0071999375,0.0335903689,0.0159687325,-0.0064960527,0.0481303222,0.0377086215,0.0315732658,-0.0032620339,-0.0201710314,0.0137765342,0.0054244664,-0.0108279213,-0.0005589932,0.0048151333,-0.0149041507,0.0029853827,0.0351031981,-0.0195266791,-0.0264184475,0.0015163292,-0.0255639814,0.0525007136,0.0352432728,0.0266425703,-0.0081804739,-0.0170753375,-0.0145679675,0.0063804896,0.0133703118,-0.0245554298,-0.0032322677,-0.0197087787,0.0041532712,-0.0255079493,0.0002902212,0.0191344637,0.0165850706,0.0437599309,0.0050182445,-0.0068077231,0.0148901436,0.0309849456,0.0067762057,0.0282394439,0.0327218957,0.0148901436,-0.0202830918,0.013426343,0.059672635,-0.0395296179,0.0145959826,-0.01921851,-0.0043878998,0.014399875,0.0095602283,-0.0075851483,0.0385210663,0.0379327461,0.0118925041,0.0074310638,-0.0230986327,-0.0170053001,-0.0363919027,-0.01526835,-0.0132512469,0.0326098353,0.0522485748,-0.0191764869,-0.0054594856,0.011157102,-0.0002044243,-0.0745207518,-0.0232247021,-0.0054384745,-0.0046435394,0.0225523338,-0.0061388575,0.0270067696,-0.0231406558,-0.043815963,0.0113532087,-0.0181679353,0.0167531613,-0.0046505434,-0.0020748847,-0.0290799029,0.027412992,-0.0212356132,0.0035824592,-0.0352712907,-0.0321615897,-0.0168091934,-0.0204651915,0.0358035788,0.0041672792,0.0354113653,0.0218939744,0.0255919956,-0.0187982805,0.0042093019,-0.0042793402,0.0149041507,-0.0007822403,0.0335623547,0.0050182445,-0.0304526538,-0.0091680139,-0.0417428277,-0.0056696008,-0.0345989205,0.0130831553,-0.0071859299,-0.0122987265,0.0101765655,-0.0380448066,0.0314892195,0.0236169156,0.0394175574,-0.0247515365,-0.0220620651,0.0127819907,-0.0191624798,-0.0319094509,0.0039886814,-0.0212776363,-0.0120886108,0.0028593137,0.004951708,0.0419389345,0.0069232862,0.0417988598,-0.0406222157,0.0260402411,0.0055645434,0.0328619704,-0.0172994602,-0.0030274056,-0.012866036,-0.0490548275,0.0028960838,-0.0101275388,0.0201850384,0.0058727115,0.068077229,-0.0050392561,0.001406019,0.0152263269,0.0388012193,-0.004958712,-0.0218379423,-0.0011407488,-0.0270768087,-0.0355234258,-0.0101205353,-0.0306487624,0.0092520602,-0.011010021,-0.0104847336,-0.0051688268,-0.0297522712,-0.0181539282,0.0042338152,0.0365599953,0.0102956304,-0.0113602132,0.00338285,-0.091554068,-0.0336744152,0.024051154,-0.0064855469,-0.0077882595,-0.0060793245,-0.0233927928,0.0407622941,0.0326658636,-0.0190784335,0.034206707,-0.0557224751,-0.0120675992,0.0131041668,-0.0146099897,0.0051793326,0.0108769489,0.0027402486,0.0154644577,-0.0020818885,-0.0182799976,-0.0143438447,-0.0155064799,0.0549940765,0.0109609943,-0.0257740952,-0.0101205353,0.0385210663,0.0008404597,-0.0201009922,0.0091680139,0.0101415459,-0.0254939422,-0.0023182679,-0.0204091612,0.0090839677,-0.0016791683,0.0111080753,-0.0023165168,-0.0122426953,-0.0338985398,-0.0484104753,0.0241492074,-0.0398097709,0.0356635042,-0.0087757995,0.0096442746,0.0304526538,0.0101065272,0.0042093019,0.0132302353,0.0255639814,-0.007066865,-0.0014918159,0.0123267416,0.0106248111,-0.0545738451,-0.0144418981,0.0130341286,0.0180138517,-0.0215157662,0.0092870789,0.0181539282,-0.051155977,-0.016108809,-0.0083485655,-0.0142037682,0.0283655133,0.0066116159,-0.0009822872,0.0305927303,0.047205817,0.0195406862,-0.002398812,0.0246394742,0.0008479012,0.0042863442,0.0035351834,-0.0025353865,-0.0017859767,0.0324417427,-0.0029468616,-0.0388572514,0.0128800441,-0.0027490035,-0.0212216061,-0.0210815296,0.0148341125,0.0121796606,0.0058271866,0.0492229201,0.0066011101,-0.0100434925,0.0035684516,0.0288557801,0.0123267416,0.0224262644,0.0155204879,0.0016135074,-0.0155905262,0.0160948019,-0.0098333778,0.0165290404,0.0155344959,-0.0004802001,-0.0191904958,0.0125438599,0.0075991559,0.0023445322,0.0108559374,0.0043248651,-0.013706496,0.0349070914,0.0119905574,0.0000156492,-0.003670007,0.0098754009,-0.0123827718,0.0108069098,-0.0395296179,0.0127469711,-0.0255079493,-0.0224963035,0.0397537425,-0.0115353083,0.0267406236,0.0361677781,0.0029608693,0.0062999455,0.0043563824,-0.0020941452,0.0813564956,0.0011748925,0.0414906926,0.0076691941,-0.0265165009,0.0071929339,-0.0012746971,0.0257040579,0.0466735251,0.0045980145,-0.0031517236,-0.0019943407,0.00032918,0.0332822017,0.001898038,0.0017194403,-0.0221040882,-0.0125088412,0.0400899239,0.0144418981,-0.0362238102,-0.0054664896,0.0662842467,0.0187142342,0.0264184475,-0.0225663409,-0.0201570243,-0.0092240442,0.0002650512,0.0069933245,0.0145959826,0.0262923799,-0.0048676622,0.0005099664,0.0075081061,-0.0403420627,0.0123267416,-0.0168792307,0.0026264363,-0.0049026813,0.0202830918,0.0058622058,0.0366720557,0.0559185818,0.0291639492,0.0086567346,0.0202130545,-0.0116683813,0.0236729458,-0.0270768087,-0.0028365513,0.0219780188,0.030228531,0.0185041204,-0.0281273834,-0.0157165956,-0.0065275701,-0.026852686,0.0156185413,0.0273709688,0.0165570546,0.0091119837,0.0196107253,-0.004377394,-0.0011871492,0.0418548882,-0.0059497538,-0.0157866329,0.0134613616,-0.0438439772,0.02263638,0.0215717983,-0.0206753071,0.0180698819,0.0470937565,0.0092310486,0.0220060349,-0.0245414209,0.0399778634,0.0062579224,0.0243453141,0.0021641837,0.0199469086,-0.0150162121,0.013307278,0.0119135156,-0.0158846863,0.0059847729,-0.0513520837,-0.032525789,-0.0275250524,-0.0167391542,0.0187282432,-0.0398938172,0.0211375598,0.0276651289,0.0095041981,-0.0162348785,-0.0067972173,0.0091399988,0.0086497301,0.0333382338,0.0020993981,0.0067762057,0.0370082408,0.0044229189,-0.004878168,-0.0330580808,0.0015776128,0.0251717661,-0.001486563,0.0314331912,-0.0135874311,-0.0340666324,0.0111921206,0.0419109203,0.0211795829,0.0348510593,-0.0286736805,-0.0084606269,0.0197367948,0.0088668494,-0.0149321659,0.0292199794,0.0330020487,0.0286036432,0.0188122876,0.000796248,-0.0015566013,0.0157866329,0.0383249596,0.0020538731,-0.0111430939,0.0008619089,0.0116053466,-0.009196029,-0.0104637221,0.018658204,-0.0065871025,-0.0237569921,0.0366160236,0.0230426025,-0.0306487624,-0.0149461739,0.035355337,-0.059392482,-0.0011363715,0.0139376223,-0.0107508795,-0.0005856953,0.0057571484,-0.0188683197,0.0104146954,0.0560306422,-0.0273009315,0.0113251936,-0.0298363175,-0.001073337,-0.0360557176,-0.0169212539,0.015282358,-0.0145119363,0.0416027531,-0.0300604403,0.0059217387,-0.0085306652,0.0181959514,-0.0085516768,-0.0069653094,0.0042163059,-0.0199188925,0.0145959826,0.0075641368,0.0108839525,0.0155064799,-0.0209694672,-0.040986415,0.0012624405,0.0234348159,-0.0275810845,-0.004090237,-0.011038037,0.0456369594,-0.016108809,0.0036279841,0.0496431477,0.0352432728,0.0270487927,0.024597453,-0.0070703668,0.0179858357,0.0077322288,0.0412385538,-0.0305367,0.0081244428,0.0374845006,0.0039781756,-0.029107919,0.0151002584,0.0005931369,0.009315094,0.0084186038,0.0169772841,-0.0059007271,-0.0103796767,0.0119835539,-0.007627171,0.0152963651,-0.0049306965,0.0053614322,0.0088808564,-0.0176496524,-0.0162208714,-0.0028383022,-0.0142527949,0.0086637381,0.0270207766,-0.01526835,0.0258161183,0.0638749301,0.002685969,-0.0281553976,-0.0123197371,-0.0115633234,0.0144278901,-0.0126349097,-0.0200449619,-0.0132862665,0.0187142342,-0.01868622,-0.0039781756,-0.0193445794,0.0166130848,0.0013009615,0.0022342219,-0.0018017354,0.0531730801,0.0082925353,-0.0136784809,0.0460011587,0.0110730557,-0.0015513484,-0.0153944194,-0.0212776363,-0.0132232318,0.0068217306,-0.0050322521,-0.0123967798,0.0236449316,0.0156605653,-0.035047166,0.0107718911,0.0487186424,-0.0141547415,0.0116543733,-0.0017308216,0.0211655758,0.0118434774,-0.0160247646,-0.0213896986,-0.0164449941,-0.001812241,-0.0010470726,-0.0256620347,0.021473743,0.0057991715,-0.0217398889,-0.0007809271,-0.0289958566,-0.0167951845,-0.0093501136,0.012158649,-0.0127329631,0.0232947394,0.0206613,0.0530049875,0.0062474166,0.0288557801,0.0251717661,-0.0241351984,0.0006132729,-0.020633284,-0.0136994924,-0.046617493,-0.0333102159,0.0209834762,-0.0120605957,-0.0122496989,-0.0310129598,0.0081664659,0.0460011587,-0.0125578679,0.0221040882,0.0219920278,0.0198348481,-0.0041287579,0.0276231077,0.0002014696,-0.0209554601,-0.0258441344,0.0069022747,-0.0295841787,0.03168533,-0.0242052376,0.0109750023,0.0129921054,0.0066431332,-0.0096022515,0.0318814367,0.0320495293,-0.0066501368,0.0235889014,0.009623263,-0.0138115538,-0.0138815921,-0.0422471054,0.0015916204,0.007641179,-0.0052563748,0.0125928866,0.0133493003,-0.022902526,0.0102185886,0.0279172678,0.0028680684,-0.0041567734,-0.0035281796,-0.0084186038,0.0010637067,-0.0266845934,0.0069968263,0.0007940592,0.0191204567,0.0370082408,0.0236589387,0.00535793,0.0020433676,-0.0244293604,0.0089088725,0.0272028763,0.0114022354,-0.0029836318,0.0002994137,0.0180138517,0.0105897915,0.0398377851,-0.0133493003,0.0082995389,-0.0202830918,0.016108809,-0.0023707966,0.0334222801,0.0008050028,-0.002144923,0.0273009315,0.0030974441,-0.0112621589,0.0316573121,-0.0034686469,-0.0602889732,0.0364199169,-0.0183920581,0.007634175,0.0303125773,-0.0079983743,0.0170473233,0.0136784809,0.0309289154,-0.0113882283,-0.0266145561,0.0015968733,0.0550501049,-0.0022744939,0.0043283673,-0.0250176825,0.0304526538,-0.0042233095,-0.0082295006,-0.023742985,-0.0041007427,0.0051338077,-0.0018647698,-0.0391654186,0.0082014855,-0.024877606,0.0017877277,-0.0167951845,-0.0035561949,-0.0041882903,0.0107158599,-0.0088808564,-0.0045805052,0.0094201518,0.0303966235,-0.0087757995,-0.012585883,0.0037820684,-0.0135384044,0.0156185413,0.0348230451,-0.0099244276,0.0172154158,0.0238550454,0.0003615727,0.0082995389,-0.0195546951,-0.0060968343,0.0052738842,-0.0117734391,-0.0205492377,0.0078232782,-0.0132372389,0.0269927625,0.0137695307,0.0355514437,0.0119765494,0.0322736502,-0.0257600881,-0.011010021,-0.0032480264,-0.0153523963,-0.0290518887,-0.0121936686,-0.0005887595,0.0187142342,-0.008768796,0.0086147115,0.0060583134,0.0053789415,0.0090139294,-0.0073680296,-0.029696241,0.0190924406,0.0252277963,-0.0212776363,-0.0002959118,0.0380728208,-0.0096652862,-0.0345989205,-0.0103236455,0.0029608693,0.0016012507,-0.0155765191,-0.0023462831,0.0150162121,0.0214177128,-0.0194846559,0.0179298054,0.0176356453,-0.0155905262,-0.0372603759,0.028001314,0.0129640903,-0.0352432728,-0.0074870945,0.0083345585,-0.0198208392,0.038156867,-0.0209834762,-0.03563549,-0.0197087787,0.0311810523,0.007347018,0.0463933721,0.011038037,0.03563549,0.0088948645,-0.0089508947,0.0142527949,-0.0096162595,0.0053544282,0.0135384044,0.0137765342,-0.0330580808,0.0143718598,0.0125928866,-0.010022481,-0.0063104513,0.0188823268,-0.0084466189,-0.0135313999,-0.0104567185,-0.0140286721,0.0051408117,0.0077812555,0.0017457047,-0.0393615253,-0.0409303829,0.0289958566,0.0159827415,0.044936575,0.0346549526,0.0028348004,0.0041952943,0.0028715704,0.0140917068,0.0216138195,-0.0048921756,-0.0066991639,-0.0165290404,-0.0328899883,-0.0091119837,-0.0305367,-0.0036595014,0.0024846089,-0.0146380058,-0.0120675992,-0.0109960139,0.0068987729,0.0025301338,0.0235048551,-0.0142037682,0.0210675225,-0.0059182364,-0.0189523641,0.0144979283,0.0279312748,0.0123827718,0.0002344094,-0.014694036,0.0032550301,-0.0055925585,0.0005554913,0.0275530685,0.0126979444,-0.0057081217,0.0134333465,-0.0018069883,-0.0049201907,0.0198348481,0.0168792307,0.0114022354,0.0035999687,-0.0043458766,-0.0021379192,0.0202971008,0.0458610803,0.0309849456,-0.0000411475,0.0281413905,0.0038661144,-0.0058446964,0.0010890956,0.0583278984,0.0130971624,0.0014217775,0.0061773784,0.0085866963,-0.0136574693,0.0369802229,0.0090769641,0.0237149689,-0.0217398889,0.0357475504,0.0088948645,0.0292479955,0.0054419762,0.0284915809,-0.0212636292,-0.0187422503,0.0268246699,-0.0269087162,0.0295001324,0.0116753848,0.042107027,0.0101765655,0.0235468782,-0.0208153836,-0.0074660829,-0.0135173928,0.0444603153,-0.0154924728,-0.0117594311,-0.0208714139,-0.0170053001,0.0431716107,0.0080403974,-0.0257040579,0.0004130071,0.0380167924,0.0004587509,-0.0377646536,0.0029661222,-0.0175095759,0.0106037995,0.0309849456,-0.007627171,-0.0199889317,-0.0321896039,-0.0008540296,0.0118434774,0.0050007347,-0.0125648715,-0.0033618386,-0.034206707,0.0205772538,0.0345989205,-0.029107919,0.0087057613,-0.0075991559,0.0323576964,0.01921851,0.0027279919,0.0327779241,0.026572533,0.0086497301,0.0215437822,-0.0083205504],"117":[0.0821741223,0.0020726363,0.064888306,0.0299709514,0.0255697146,-0.0093077486,-0.0006390767,0.0393052921,-0.0451558791,-0.0327366814,0.0429752059,-0.0419114642,-0.0244926754,-0.0290933624,0.0478418283,0.0509798676,0.0240937714,-0.0144137135,-0.0222455189,0.0360342823,0.0029402513,0.0221524425,0.0356087871,-0.0017485271,0.002664343,-0.0247320179,-0.0308485385,0.0546763763,0.0238145404,-0.0729727522,0.0218599122,-0.0222854093,-0.0222987067,0.0552082472,0.0186154973,0.0119737536,0.0190542918,-0.026965877,0.0573889203,0.0103249522,-0.0076788925,-0.0095803328,0.0434538908,0.0139749199,0.0138153583,-0.0050926683,-0.0131837614,-0.0351035111,0.0203972664,0.0341461413,-0.0193601176,-0.0001795066,-0.0174985677,-0.0239608046,-0.0033773831,-0.0433475152,0.010305007,0.014626462,-0.0251841079,0.0049630245,-0.0254234504,-0.0513255857,0.0453952216,0.0298645757,-0.0132103544,-0.0083503798,-0.033880204,-0.0166209806,-0.0321516246,0.0174320843,0.0198255051,0.0322579965,0.0131970579,0.0273115933,0.0210886989,-0.0968005881,-0.014147778,0.0428156443,0.0034804333,-0.0580803528,-0.0213147439,0.0215407889,-0.0234023388,0.0074262535,0.0365661569,-0.0167672448,-0.0175650511,-0.0193734132,0.00465055,0.0209557321,-0.0201180335,0.0574952923,0.0098529169,-0.0038859851,0.0265004896,0.018070329,0.031513378,0.011913918,0.0215274934,0.0333749279,-0.003104799,-0.0231364034,-0.0065320451,-0.0108767692,-0.0022006177,-0.024000695,0.017844284,-0.0404488146,0.0437198244,0.0233491529,-0.0981302634,-0.032949429,-0.0297050141,-0.022870468,0.0023385719,-0.0128114512,-0.0062428401,-0.0243331138,0.011182595,0.0076323538,-0.0057841009,0.0109233083,-0.0412732176,0.0273647811,-0.0000351118,-0.0459270924,-0.0214743055,-0.0009382543,-0.0505543724,0.0036665881,0.0415391512,-0.013143871,0.0317527205,-0.0297582019,-0.0370448381,-0.036087472,-0.0783978403,-0.0163550433,-0.0216737576,-0.0136425002,-0.0011410302,-0.0287210532,0.0170331802,-0.0305028223,-0.0144801978,-0.0148259141,0.015078553,0.0356885679,-0.0129976058,-0.0307687577,0.0020925812,-0.0062827305,-0.0367257185,0.0105111077,0.0486130416,0.0122596342,0.004786842,0.0209025443,0.0001388891,0.003613401,0.025330374,0.0269924719,-0.0204903446,0.0039424966,-0.0198255051,0.0042516468,-0.0629735664,-0.0431081727,-0.0615375154,0.0000254509,-0.039783977,-0.0521233939,-0.0309283193,-0.0041751899,0.038401112,-0.0102252271,-0.0011094504,-0.020104738,-0.0112690246,-0.0470440201,-0.0377096795,-0.0188947301,-0.0112956176,-0.0086030187,-0.0318856873,0.0137621714,-0.0781318992,0.0040089805,0.0156636108,0.027870059,-0.0665371045,0.0480811708,0.0195994601,0.0230034366,0.0242666304,-0.0428954251,0.0268329103,0.0409806892,-0.0266467556,0.0372309946,-0.0015150023,0.0153976753,0.0426560827,-0.0167007595,0.0183495618,0.0286146794,0.0046439017,-0.0099194003,-0.069409214,-0.0717494488,-0.0053818733,-0.0137887644,0.0210886989,-0.0210488085,-0.0149056949,-0.0068079531,-0.006445616,0.0095072007,-0.0148923974,-0.0055647041,-0.0110163856,0.0496501923,0.0103581948,-0.0395180397,0.0066550402,0.0104313269,-0.0017983901,-0.0313272215,0.0357151628,0.029252924,0.0426294878,-0.0427092686,0.0191473681,-0.0236017909,0.0082971929,0.0222056285,-0.0304230414,-0.0232826676,0.0148259141,0.0048433533,0.017166147,-0.017166147,0.0024017317,0.0003758419,-0.0070672408,0.0339865796,-0.0254633408,-0.0644628108,0.0181368124,0.0471769907,0.0295986403,-0.0064190226,0.0065320451,-0.0142275589,0.0016596048,-0.0489321649,-0.0158630628,-0.0185889043,0.0271653291,-0.035209883,0.0120867761,-0.0450495034,-0.0382415503,0.0407147519,-0.0350769162,0.0064555886,-0.0012831397,-0.0277902782,0.0185756069,0.0237879455,0.0328164622,0.0092213191,0.0184027497,-0.0396244153,-0.0198122077,-0.0256361999,0.0098130265,0.0062361914,-0.0063425656,0.0102119297,0.0071669663,-0.0282689631,-0.0277104974,-0.017817691,0.0369384661,0.0122928768,0.0009648479,0.0272850003,0.0438262001,-0.0415657461,-0.0136092585,0.0009756515,0.0045275548,-0.0076722442,-0.0116080921,-0.0249846559,-0.0052555539,-0.0375501178,-0.0329228379,-0.0169666968,0.0509000868,0.0179240648,0.0432943292,-0.0435070768,-0.0217934288,-0.0109631978,-0.0080977418,-0.0088623064,0.0127582643,0.0414593704,0.0119338632,-0.0110496273,0.0010055692,-0.0046704952,-0.0052356087,-0.0227242038,0.0446505994,-0.0136956871,-0.0049198102,-0.0732918754,-0.0376830846,-0.0308751315,-0.0151716303,0.0142275589,0.0190011039,-0.020357376,0.0075259795,-0.0074661439,0.0340929553,-0.0126452418,0.0196659435,-0.0318059064,0.0053486312,-0.0090817036,-0.0067115515,-0.0677072257,0.029226331,0.0088556577,0.0181900002,0.0138153583,-0.0146663524,-0.0311942548,-0.0458739027,-0.0048433533,0.0453686267,0.0239209142,0.0213945247,-0.0184692331,-0.0169268064,0.0143871205,-0.0745151788,-0.0186287947,-0.0249979533,-0.0230566226,0.0115017183,0.0334547088,-0.0289603956,-0.0378160514,-0.0631863177,0.0008892224,-0.0062361914,0.0117344121,0.0462462157,0.0045441757,0.0031795935,0.0097066518,-0.0186952781,-0.0291465502,-0.0081841704,-0.0357683487,0.0232161842,-0.0314867832,-0.0453686267,-0.0165544953,-0.0356885679,-0.006296027,0.0462728068,0.0382947363,0.0295188595,0.0486662276,0.028774241,0.0291731432,-0.0115947956,-0.0214211196,0.0030865159,0.0536924116,-0.0232693721,-0.0134496968,-0.0524691083,-0.0129045285,0.0116413338,0.0046605226,0.0334015191,-0.0319122821,0.039730791,0.0072467471,-0.0094008259,0.0190276969,0.0518308617,0.0189612135,0.0105377007,-0.0352896638,-0.0281625874,-0.018296374,0.014626462,0.0223784875,-0.0342259221,-0.0052455813,-0.0168470256,-0.0355290063,-0.0462196209,-0.0163683407,0.0204637498,-0.0087825255,-0.0042117564,-0.0366193429,-0.0382947363,0.0625480711,-0.034279108,0.0733450577,0.0052522295,0.0031928902,-0.0056378362,-0.0250378437,-0.0009465648,0.058559034,0.0373107754,0.0173124131,-0.0287210532,-0.0458207168,-0.001899778,0.0174320843,0.0165943857,-0.0170996636,-0.0249314699,0.0270722527,0.0373373702,-0.007412957,0.0639309362,-0.0086628543,-0.0355290063,0.021886507,-0.0051824213,0.0277104974,0.0221790355,-0.0000210359,-0.0407945327,-0.0099393455,-0.0268595032,-0.0368054993,0.0564315505,-0.0503682159,-0.014174372,0.0141876685,-0.0200515501,-0.038401112,0.0209956225,0.0061264932,0.0280562136,0.0093210451,-0.0379224271,0.0055946219,-0.048400294,-0.0048765955,0.0215540864,-0.076429911,0.0274977498,0.0295986403,0.0243198182,-0.0217003506,0.0075060343,0.0243995991,-0.0068744374,0.0014850845,-0.0598355271,0.0049331067,0.0355821922,0.0051558279,-0.0171794444,0.0079049384,-0.0124125481,-0.0029053472,-0.0018283078,0.0788765252,0.0280562136,0.0430815779,0.0094274199,0.0132635422,-0.0084301606,0.0129510676,0.0090684062,0.0151184434,0.0519904234,-0.0146796489,-0.0072334502,0.0015150023,-0.0513255857,-0.0565379262,0.0011360439,-0.0208892468,-0.006043388,-0.0200382527,-0.0161024053,0.0583994761,-0.0367789045,-0.0080977418,-0.0178575814,-0.0211950727,0.0360076912,0.0227109063,0.0065353694,-0.0368586853,0.0664839223,0.0029452376,-0.0184426382,0.0298379827,-0.0064422917,-0.0109299561,-0.0190542918,-0.0088955481,-0.0218599122,-0.0162486695,-0.0259420257,-0.0033308445,-0.016687464,-0.0155173466,-0.0431879535,-0.0200249571,-0.0356087871,0.0253436696,0.0038095287,-0.0341993272,0.0158763602,0.0041053821,-0.028774241,-0.0134031577,-0.0322579965,-0.0131039806,-0.0262212586,0.0187617615,-0.0030931644,0.05353285,0.0174320843,0.0215141959,-0.0163550433,-0.0154641597,-0.0241336618,-0.0035868075,-0.0059303655,0.0490385368,0.0211152919,-0.0251708124,0.0082971929,-0.0272318125,0.0166076832,0.0090817036,-0.005378549,-0.0010969847,0.0284285229,0.0196393505,-0.0211418867,-0.0050328327,0.008669503,0.0153577849,-0.024253333,0.0199850667,-0.0152913015,-0.0290933624,-0.0485864468,0.0038394462,0.0210222155,-0.018243188,0.0110961664,-0.0368054993,-0.0035568897,0.0371778086,-0.0296518281,-0.0335344896,0.0058040461,-0.0118141929,-0.0236948691,-0.0235087145,-0.0429752059,0.0440655425,-0.0359810963,0.0051292344,0.0400765054,0.0254500434,0.0250378437,-0.0153444884,-0.006296027,0.0164215285,-0.0174586773,0.0056112427,0.0356087871,-0.0259686187,0.0320452489,0.0160226244,-0.0065619629,0.0076788925,0.035156697,-0.0081043895,-0.0261946637,-0.0425763018,-0.0269791745,0.006246164,-0.0018615497,0.0158896558,0.0452090651,-0.02583565,0.0191473681,0.0013554409,-0.0023984073,-0.0659520477,-0.0022671015,0.0058971238,-0.0025380235,0.0162752625,0.0348641686,0.0054450328,-0.0273647811,-0.0619630143,-0.0197590198,-0.0403158478,0.0119272154,0.0088157672,-0.0478418283,-0.0418582745,0.0008460079,0.0313272215,0.0200249571,-0.015783282,0.0246389396,0.0091947261,0.0226311255,0.0499959067,-0.0008335421,0.0317793116,0.0035568897,-0.013243597,0.0407679379,0.0025829002,-0.0184559356,0.0021125264,0.0068744374,-0.0324175581,0.0206764992,0.0428688303,-0.0090085706,0.0156370178,-0.0208626539,-0.0036732366,0.0488257892,0.031087881,0.0209956225,-0.0126319444,0.0033906798,-0.0199717693,0.0165544953,0.0597823411,-0.0253702626,-0.0189080257,-0.0033807072,0.0215806793,-0.0289603956,0.0194398984,0.0020244354,0.0273381881,0.0161422957,0.027417969,-0.0098529169,0.0434538908,0.0223252997,0.0331621803,0.0368054993,0.0221391451,-0.0014950571,-0.0079182349,0.0359545052,0.0344120748,-0.0386670455,0.0024997953,-0.0172858182,-0.0059070964,0.0008742635,-0.0250644367,-0.0175517555,0.0300241373,0.0286146794,0.0141211841,-0.0237214621,-0.0024183525,0.0047934907,-0.0266733486,0.01442701,-0.0273115933,0.0308485385,0.0265004896,-0.0178575814,-0.0031180957,0.0110163856,-0.0082838964,-0.0586654097,-0.0268462058,-0.0252771862,-0.005378549,0.0173257086,-0.0227906872,0.0280030258,0.0001413822,-0.026713239,-0.0066583646,-0.0330823995,0.0271520317,-0.0168204308,-0.0021308097,-0.0102052819,0.0226710159,-0.0356087871,-0.0049763215,-0.038906388,-0.0098662134,-0.0254633408,-0.0194664914,0.0040920852,-0.0146131655,0.0448899418,0.0242134426,-0.0093409903,-0.0131571675,0.0134098064,0.0092279678,0.0242400374,0.0212216675,0.0185490139,-0.0405285954,-0.0085365353,-0.0112690246,-0.0371512137,-0.0230167322,-0.0119604571,-0.0216604602,-0.0139749199,-0.0103581948,0.0035169993,-0.0660584196,0.000173066,0.0433209203,0.0168470256,-0.0131239258,-0.0003531958,0.0113288602,-0.0070406469,-0.0156370178,-0.0090617584,-0.0319388732,-0.0346248262,0.0154907536,0.0085032936,0.0027108819,0.0231762938,0.0490385368,-0.0332419612,0.0558996797,-0.0109366048,0.0264473036,0.0121333152,-0.0142674493,-0.0029768175,-0.0403690338,0.0131970579,-0.0050428053,0.0137621714,0.0225513447,0.0555805564,-0.0174054895,0.0020128007,0.0183761548,0.0226577204,-0.0156503152,0.0014892397,0.0085099414,-0.0245990492,-0.0495172217,0.0062594609,-0.0070339986,-0.0012731671,-0.0168736186,-0.0167406499,-0.0368852764,-0.0370448381,0.015756689,-0.0243065208,0.0175118651,0.0174187869,0.0016853673,-0.0167938378,-0.0495438166,-0.0579207912,0.0269924719,-0.0035070267,0.0039956835,-0.0136956871,0.0082639512,0.0160891078,0.0165279023,-0.0179373622,0.0354492255,-0.0576016679,-0.000084767,-0.0244394895,-0.0106773172,0.0114950696,-0.0188016519,0.0083969189,0.0232560746,0.0188016519,-0.0001052835,0.0068677887,0.0012789844,0.0272052195,0.021035511,-0.0386670455,0.0078583993,0.0140679972,0.0392255113,-0.012665187,0.040236067,-0.04292202,-0.0121665569,0.0063059996,-0.0063325935,0.0049829697,0.0052522295,-0.024200147,-0.0182564836,-0.0216072742,-0.0352364779,-0.0135893133,0.037417151,-0.0272185169,0.0133233778,-0.0317527205,-0.0044876644,0.0485598557,-0.0088024708,0.0082838964,0.0113554532,0.0287476461,-0.008470051,-0.0086096674,-0.0183761548,0.0355821922,-0.0373373702,-0.0067780353,0.0169002116,0.0030333288,-0.0091149453,0.0003047872,-0.0015565548,-0.0472833626,0.0036798848,0.0130707389,0.0048799198,0.0167805403,-0.0368054993,-0.0082772477,0.002596197,0.0705793276,0.0197058339,0.0003384447,0.0003885154,-0.0051159374,0.0076323538,0.0019197231,0.000378335,-0.0531871356,0.0016953399,0.0080844443,-0.0300773252,0.0029452376,-0.0163949337,-0.0346248262,-0.0030050732,0.0320984349,0.0088689551,-0.0019114127,0.0384808928,0.019227149,-0.0349971354,0.0106773172,0.0081376312,0.0183495618,0.0093210451,-0.0172193348,-0.0137488749,-0.0013936692,-0.0023335856,-0.0071204277,0.0190675873,0.0278168712,0.0223518927,-0.0316197537,0.0259021353,-0.0177512057,-0.0083636772,0.0066384193,-0.0147594297,-0.023295965,-0.0171262585,-0.0037895835,0.0017967279,0.0249846559,-0.0019645998,-0.0032643604,0.0509000868,-0.0371778086,0.0168071352,-0.02422674,-0.0188947301,0.0626544431,0.033773832,0.0222721137,0.0435602628,0.0036566155,-0.0023917591,-0.0125388671,0.0210754015,0.0679199696,-0.002902023,0.0418316834,0.0084168641,0.0031330546,-0.0032626984,0.0156104239,0.02075628,0.0089886263,-0.013143871,-0.0088490099,0.0266999416,-0.0334015191,0.0468046777,-0.0042682677,-0.000662346,0.0130840354,-0.0154907536,0.0060832785,0.0423103645,-0.0255963095,-0.0216072742,0.0587185957,0.0163949337,0.0355556011,-0.0418316834,-0.0041618934,-0.0128180999,0.0161688887,0.0304496344,0.0277636852,0.007652299,-0.0025164164,-0.0078451028,-0.0341993272,-0.0242666304,0.0099659394,-0.0107903397,0.0203972664,0.0110895177,-0.0137488749,-0.0117410598,-0.0035402686,0.0185756069,0.011787599,-0.0081708739,0.0118540823,0.0064788577,0.0418848693,-0.0114684757,0.0117144668,0.0189479161,0.0579739772,-0.0005584649,-0.0100922585,-0.0261547733,0.016660871,-0.0120867761,-0.0127516156,0.0300773252,0.0084966449,-0.0140547007,-0.0052223117,0.0062262192,0.0231629983,0.0408211276,0.0316463448,-0.0194797888,-0.0147594297,-0.0502884351,-0.0077320798,0.0077054864,0.0204371568,-0.0133765647,0.0454218127,0.0131904092,0.0146796489,-0.0128779355,0.0274977498,0.0038593914,-0.0111892438,0.0243863016,0.0318590924,-0.0005418439,0.0010271765,0.0186686851,-0.0023917591,-0.0242932234,-0.0042682677,-0.0385074876,-0.029279517,-0.0237214621,0.001290619,-0.0242400374,0.0587717853,0.0017867553,0.0151184434,-0.0249447655,-0.0048632985,0.020809466,0.0280828066,0.0069608665,-0.0051292344,0.0176581293,0.018522419,0.0020875949,0.0013695688,-0.0008858982,0.0280828066,0.012492328,0.0019130748,0.0072467471,0.0055713523,-0.0305560101,-0.0306091961,0.0443580709,0.0159295462,0.0136425002,-0.0160226244,0.0080711478,0.0030981507,0.0063558626,0.0104645686,0.0201978143,-0.0142807458,0.0274711549,-0.0069209761,-0.0089487359,0.0002671822,0.0035236478,0.0339067988,0.0269924719,-0.0263542254,0.0069276243,0.0125787575,-0.0086229639,-0.0102651175,0.0173124131,0.0281625874,-0.0079980157,0.0158497654,-0.0174852703,0.0077786185,0.0159428436,0.0387734212,-0.0194930844,-0.0188282467,-0.0144801978,-0.0153311919,-0.0162486695,0.0039990079,0.0215540864,-0.0036665881,0.0228571706,-0.0189612135,0.0112690246,-0.0087891743,-0.0008339576,0.0012681808,0.0121665569,0.018043736,-0.0141610745,0.0369384661,-0.0149189914,0.0458739027,0.0055647041,0.0154109728,-0.0041785142,-0.0169666968,-0.0004016044,-0.0107903397,0.0097066518,-0.0151184434,-0.0149189914,0.0026676673,0.007073889,-0.0114285853,-0.0000230227,0.0125388671,-0.0270988457,0.0193867106,0.0241602566,0.0709516406,0.0013030848,-0.0044245049,0.001561541,0.0406881571,0.0096335197,0.0322845913,-0.005478275,0.0133233778,0.0138951391,0.0462462157,-0.0681327209,0.019227149,0.0295454543,-0.0003675314,-0.0318590924,0.0176581293,0.0134031577,-0.0192936342,-0.0218732096,0.0245059729,-0.0281359944,-0.0034837574,0.0110097369,0.0032377669,-0.0017900795,0.0130042545,0.0188149493,-0.0146530559,0.0054982202,0.0127649121,0.0015632032,-0.0051092892,0.0234555267,0.0266201608,-0.0033773831,0.0086894482,0.0513521805,0.0258622449,-0.0161289982,0.0092545617,-0.0062794061,-0.0108834179,-0.0355024114,0.0029901143,0.007752025,0.0493044741,-0.0057375622,-0.0081243347,-0.0535594448,0.009148187,0.0052189878,-0.0135427741,-0.0037563415,0.0363268144,-0.0233092625,-0.0074329022,0.0227242038,0.0206632018,-0.008470051,-0.0252771862,-0.0262611471,-0.0200648475,0.0255298242,-0.0190011039,-0.0193601176,0.0353960395,-0.0039291997,-0.0221923329,0.0121266665,0.0539317541,-0.0152647076,-0.012465735,-0.002732489,0.0226843134,0.0117676537,-0.0224715639,-0.018269781,0.0107371528,0.0064223465,0.0007998847,-0.0368320905,0.0187218711,-0.0036300221,-0.0063558626,0.0002256298,0.0032095113,-0.0346248262,-0.0195728652,-0.0027491101,0.0060134707,-0.0088623064,0.0048765955,0.0652606115,0.0208626539,0.0147062428,0.0005248074,-0.0152913015,-0.0068943822,-0.0341461413,0.009347639,0.0010271765,-0.0305028223,0.0160492174,-0.0259287283,0.0006665013,-0.0364065953,-0.0018964538,0.030130513,0.0025297131,0.00698746,0.0217535384,-0.0015058607,0.0134629933,0.0436134525,-0.0023086541,-0.02422674,-0.0203972664,0.0302900728,-0.0208227634,0.0185091235,-0.0106706694,-0.0200648475,0.001662098,0.0227773897,0.0151450364,0.0322314054,-0.0061131963,0.0054350602,0.0238278359,0.0322579965,-0.0056311879,-0.0064888303,-0.0124125481,-0.0021773484,0.002562955,-0.0132302996,0.0232294817,0.0327632762,-0.0351035111,0.0373373702,0.0176714249,-0.0229502488,-0.0106839659,-0.0119405119,-0.0089952741,-0.0009631858,-0.0220726617,0.0185357165,0.0200116597,0.0018798328,0.006296027,0.017166147,-0.0187351685,-0.0378160514,-0.0155439405,0.0056577814,0.0109033631,-0.0167007595,-0.0236017909,0.0005867206,-0.0053552799,0.0037895835,0.0412466228,-0.0398371629,0.0135427741,-0.007865048,0.026713239,0.0313538164,0.0461664349,-0.0167805403,0.027843466,0.0227507968,0.004447774,0.0100058299,0.0291731432,0.0035402686,-0.0495172217,0.0360076912,-0.0160359219,0.0120468857,0.0187218711,-0.034332294,0.0272318125,-0.0058605573,0.0098795099,0.0033890177,-0.0129643641,0.0209424347,0.0269392841,-0.0068478435,0.0173788965,-0.0153577849,0.0088756029,-0.0126452418,-0.0162087791,-0.0005630357,0.0101387976,-0.0048632985,-0.030130513,-0.0172326323,0.0134962359,0.0173390061,-0.007512683,0.0017368924,-0.044863347,0.0543838441,0.0145333847,0.008217412,0.0200515501,-0.0035236478,0.0118740276,-0.0497033782,-0.019453194,0.0068146018,0.0290135816,0.016714057,0.0285083037,-0.0116014434,0.0401828811,0.0344120748,0.0004948897,0.0151317399,-0.0160625149,-0.0122529864,-0.030210292,0.004108706,-0.0088290647,0.0161688887,0.0047901664,0.0291731432,0.0053652525,0.0136092585,0.0120867761,-0.0045873905,-0.0175916441,0.0080777965,-0.0151716303,-0.0188415423,-0.0040355739,-0.0030682329,-0.0156503152,-0.0048965407,-0.0202908926,0.0008069486,0.0135028837,-0.0045475001,0.0359810963,0.0047968146,-0.0065819081,0.0330026187,-0.021966286,-0.0017867553,-0.0047901664,0.0468312725,0.0247320179,-0.0305294152,0.0372841805,0.0018249836,0.0050228601,-0.0220194738,0.0073531214,0.0071137794,-0.0059868768,-0.0312474426,0.0145200882,-0.0061098724,0.0113621019,-0.0143073397,0.0155705335,-0.013243597,-0.0205701254,-0.0245059729,-0.0194133036,-0.0144801978,0.0287476461,-0.0285614915,-0.0294390786,-0.0220593642,0.0132302996,-0.0026892745,0.0745151788,0.0060001737,0.02538356,0.0048699472,-0.0006552821,0.0225380491,-0.0160891078,0.0326037146,-0.0390127636,-0.0138286548,-0.0594632179,-0.0173257086,-0.0123460637,-0.0122596342,-0.0150253661,0.0282955561,-0.0202377047,-0.0411934368,0.0213280413,-0.0017435407,-0.0004712048,0.0126186479,0.0247320179,-0.0210488085,-0.0356885679,0.0455281883,-0.004850002,0.0165411998,0.0283221491,-0.0236017909,-0.037523523,0.0052090152,0.0033158856,0.012917825,-0.0104645686,-0.0124058994,-0.0161954835,-0.0159162506,-0.0338536128,-0.0258223545,-0.0092080226,-0.0054018185,-0.022897061,-0.0185623094,-0.0068278983,0.0257292762,0.0236948691,0.0317793116,-0.0008256471,0.0231098104,0.008922142,0.0008601357,0.0027607447,0.0238145404,0.0226311255,-0.0223651901,0.0205036402,0.0107105598,-0.0169533994,-0.0158098768,0.0379490219,0.0325771198,0.0204770472,-0.0064589125,0.0088889003,-0.0130374962,0.0221524425,0.0070074052,0.0108967144,-0.010856824,0.0156902056,-0.0107438015,0.0183761548,0.0295188595,-0.0107969884,0.0198520981,0.0431879535,0.0036665881,-0.0061231689,0.0179240648,0.0300241373,0.0055148411,0.0067680632,-0.0028820778,-0.0112956176,-0.0188282467,0.0200116597,-0.017139554,0.0374437422,-0.0125056254,0.0110629238,-0.0019230474,0.0270190649,0.0204371568,-0.0079381801,-0.0150519591,-0.0199850667,0.0308751315,0.0011418613,0.0151583338,0.0118939728,0.0401562862,0.002375138,0.0458473116,-0.0091082966,0.0061264932,-0.0244128946,0.0276573095,-0.0074528474,0.0222987067,-0.0319654681,0.0212615579,0.0431081727,-0.0069342726,-0.0561124273,0.0124191958,0.0094939033,-0.0262079611,0.0254899338,-0.0029103335,-0.031566564,-0.0035103508,0.0315931588,-0.0016828742,-0.020357376,-0.016940102,0.0049763215,0.0167539474,-0.0008248161,0.0061032237,-0.0059536351,-0.0796211436,0.0108302301,0.0361938439,-0.0245857537,-0.0104180304,0.0071270759,0.0260351021,0.0432677343,-0.0104579208,0.0076390025,0.0087160422,0.0097598396,0.0004097072,-0.009826323],"118":[0.0327698253,-0.0079060346,0.034590371,-0.0104759857,0.0337742642,0.0302901175,-0.0066112494,0.0231020991,-0.0174364354,0.0309649743,-0.0085769687,-0.0323303826,-0.0205282252,-0.0173579641,0.0063954522,0.0204340573,0.0208107233,-0.0121866716,-0.0676113069,0.0330837145,-0.035249535,-0.0273866598,0.0216582175,-0.0111273024,-0.0123906983,-0.0365364738,-0.0520111136,0.0787229165,0.0194767024,-0.0818617865,0.0424689427,-0.0345589817,-0.0546791553,-0.0069329841,0.0318124704,-0.0211716928,0.0149096427,0.0016282899,-0.0199161451,0.0131283328,-0.0084749553,0.0191942044,0.0173108801,0.0155217228,-0.0630913302,0.0103582786,-0.0481189117,0.0011133187,0.025519032,0.0574413612,-0.0508183427,0.0329267681,-0.0482444651,-0.0426258855,0.0287206806,0.0171539374,0.0015812069,0.060297735,-0.0189117044,-0.0307923369,0.0037568377,-0.0378547981,0.0265077762,0.0355948098,-0.0121317413,-0.0067171864,-0.0094872415,0.0321420506,-0.0176561568,0.0213757195,0.0623066127,0.0076784664,0.0290816519,-0.0246087573,0.0015831686,-0.0234316811,0.0171853248,0.0547419302,-0.0113470228,-0.0430653282,0.0175306015,-0.0090321051,-0.0124613224,0.0032134205,0.0270570777,-0.0647235438,-0.0307138655,-0.04516837,-0.0075450642,0.0032055732,-0.0151058231,0.0874489769,0.0042884843,0.0132931238,0.0213600248,0.0398322903,-0.0003070209,-0.0082395393,0.0129792364,0.007623536,-0.0056538936,-0.0172167141,-0.0154746398,-0.0417783894,0.0417470001,-0.0417783894,-0.0041825473,0.0392986797,0.0097305039,0.0130184721,-0.0937267244,-0.0168086607,-0.0334289894,-0.0035841998,-0.0086711347,0.0001976509,-0.0109860525,0.0189901777,0.0352809243,-0.0201044772,-0.0306824762,-0.0171539374,0.0055283387,0.0023306126,0.0257387515,-0.0352809243,-0.0239182059,-0.0556835942,-0.0258800015,-0.0079452703,0.0651002079,-0.042939771,0.0403658971,-0.0436617136,-0.0238397345,-0.0271041617,-0.0162593573,-0.0161651913,-0.0196493398,-0.0071252398,0.0068505886,0.0243890379,0.0077961739,0.0136383995,-0.0134579148,-0.0071016983,0.0028681445,0.0377920233,-0.0155688059,-0.0067211101,-0.0337428749,-0.0019274637,-0.0794762447,-0.0016969529,0.0425317176,0.0437244885,0.0225214083,0.0277162418,-0.0236514024,-0.0306667816,-0.022725435,0.0486525185,-0.0449172631,0.0187704563,-0.0370700806,-0.0052458402,-0.0202143379,-0.035437867,-0.071126841,-0.0297094248,-0.0451369844,0.0041040755,-0.006320904,0.0436931029,0.0197592005,-0.0125162527,0.0346217602,-0.0422492214,-0.0101934876,-0.0596071854,-0.0738262758,0.0190215651,-0.0486211292,-0.0192412864,-0.0421236642,0.0119277146,-0.0362225845,0.0314358063,-0.0137404129,0.0249383394,-0.0135128452,0.0472400263,0.0331464894,0.032550104,-0.0071840938,-0.0246087573,0.0384197943,-0.0059010796,0.024530286,0.018597817,0.0113627175,0.0142269386,0.0640643835,-0.0286265146,0.0335231572,0.0119120199,0.0076980842,0.0036195121,-0.0629343912,0.0026601942,0.0293327607,-0.0169499107,0.0300547015,0.0012300456,-0.0373525806,0.0066975686,-0.0630913302,-0.0176090728,-0.018409485,0.0043159495,-0.0518227816,0.0301488675,0.0322676077,0.0172010195,-0.0233532097,0.012500559,0.0604546778,-0.0206066966,0.0205282252,0.0113627175,0.0010701593,-0.034590371,0.0073292665,-0.0310277529,-0.0101934876,0.0099894609,0.0082238456,-0.0457333699,0.024530286,0.0203085039,0.0046494543,0.0398950651,0.0285009593,0.0468947515,-0.0050378898,-0.0078628752,-0.0467064194,-0.0339939855,0.0532038845,0.0430653282,0.0669835359,-0.0220976602,0.0104524447,-0.0148861017,0.0075529115,-0.00804336,0.012759516,0.0115745915,0.0305726156,-0.0175933782,0.008608357,-0.000703794,-0.0662302077,0.0072861072,-0.0464239195,-0.0097069619,0.0352809243,-0.01461145,-0.0149488794,-0.0046690726,0.0127909044,0.0564683117,0.010507375,-0.0154118631,-0.0195708685,-0.0213600248,-0.012500559,0.014258327,-0.0055401097,-0.0331151038,-0.0000905491,-0.0266961083,0.0373211913,-0.0342764854,0.0082159983,-0.006579861,-0.0172167141,0.0040648393,-0.0174678247,-0.0131440274,0.0046965377,-0.0234002918,0.0081924563,0.0045984476,0.0220348835,0.0138581209,-0.0018323166,0.0233689044,-0.0222702976,0.0078667989,0.0048927171,-0.0468005836,0.0100522386,-0.0166674107,0.0057519833,0.0199632272,-0.005277229,0.0309021976,-0.0156865139,-0.0360028632,0.0078511043,0.0442894883,-0.0130027784,-0.0151136694,-0.0271512456,-0.0127045857,0.0872606486,-0.0312474724,0.0216111355,-0.0662929788,-0.0625577271,-0.0773418099,-0.0035096514,-0.0258956961,0.0275122151,-0.0127124321,0.0681763068,0.0175776836,0.0175149068,0.0036489391,0.0127438214,0.0013055747,-0.0143917296,-0.0021775926,-0.0381372981,-0.0329581574,-0.0302116461,-0.0425944962,0.0154667925,0.0219877996,-0.0342450961,-0.0285951253,-0.0704362914,-0.0173736587,0.0282498505,-0.0033507461,-0.0180485155,-0.0342137069,0.020826418,0.0526074991,-0.0472714156,0.0357517563,-0.0100286966,-0.0192883704,-0.0526388884,-0.014658533,0.0100600859,0.0353750885,-0.014258327,-0.0114961192,-0.0551813729,0.0239495952,0.0181897637,0.0216111355,-0.0157885272,0.0474597476,-0.0365364738,0.041087836,-0.0088516194,-0.0139365923,0.0182682369,0.0277947132,-0.0254248641,-0.0054694847,-0.0607371777,-0.0293170661,0.0742029399,-0.0133794425,-0.0156237362,0.0895834118,0.0428142175,0.0035547728,0.0027288571,-0.0158120692,0.016275052,0.0285794325,-0.0242320932,-0.0133009711,-0.0469889157,-0.0275906865,0.0251737554,-0.0381372981,-0.0028701064,-0.0027837872,-0.0478991903,0.0358773097,0.0089457855,0.069557406,0.0534236059,-0.014682075,0.0036783658,-0.0185664296,-0.0369445272,0.0159062352,0.007564682,0.0190058704,-0.008608357,0.028799152,-0.0004696047,-0.0103033483,0.0016891056,-0.0582260787,0.0564683117,0.0013928745,0.0129478481,0.0053870897,0.0193511471,0.018315319,-0.0150665864,0.0329581574,-0.0512263961,-0.0277319364,-0.0045395941,-0.0021775926,-0.0438186564,0.0160160959,0.0121474359,-0.0190215651,0.0314985812,-0.0603291243,-0.0022384082,0.0048142453,0.0516972244,0.0191000383,-0.0381686874,0.0103111956,0.0288776252,-0.003811768,0.0131911105,0.0263979156,0.018739067,-0.0272611044,-0.0175776836,0.0141092306,-0.0138424262,-0.0270570777,-0.0339312106,-0.0385139622,-0.0109860525,-0.0032958158,0.0360028632,0.0075019049,-0.0233061258,0.0642841011,-0.0643468797,-0.0550558195,0.0221290495,-0.0039785206,0.0704362914,-0.0255504195,-0.0424689427,0.042688664,-0.0686157495,-0.0261154175,-0.0267431922,-0.0379175767,0.0162907466,-0.0349984244,0.0074391272,-0.001101548,0.0054655611,-0.0003232057,-0.0180799048,-0.0233532097,-0.0287677646,0.0204183646,0.0098168226,-0.0239025112,-0.0106329294,0.0133559015,-0.0057598306,0.0072351005,-0.0077726324,0.0489036292,0.0287206806,0.0059285448,0.0133323595,0.0218779389,0.0116766049,0.0060344818,-0.0260526389,0.0120061859,0.0630285516,-0.0204340573,-0.0071134693,-0.0515088923,-0.0424061641,-0.027135551,0.0010289615,-0.0151450587,0.0390789583,0.0000019503,-0.0106329294,0.051948335,0.0290502626,0.039330069,-0.0285009593,-0.0014988115,-0.0122572957,-0.0584144108,-0.0259113908,0.0386709049,-0.0074312799,0.012594725,-0.0157257505,0.0256916694,0.0001281297,0.006309133,0.00641507,-0.0452939272,-0.0112999398,-0.0299919248,-0.0160160959,0.0439755991,-0.001216313,-0.0085455794,-0.0379803553,-0.020543918,-0.0299762301,0.0100051556,0.0311219189,0.0050614313,0.0093695335,0.0328326039,-0.0521680564,-0.000771476,-0.0303371996,-0.0502219573,-0.0439442098,0.0017773864,0.0278417971,0.020638084,0.0033468225,0.0209833607,0.0016430034,0.0150038097,-0.0220662709,-0.0042884843,-0.0229765456,0.0186292063,0.032550104,-0.0317653865,0.0179386549,0.0073763495,-0.0019019603,0.0297878981,-0.0156786665,-0.0398322903,0.0087103704,0.0015174486,0.0154275568,-0.0054380964,-0.0130263194,0.0073920442,-0.0240437612,0.0579121932,-0.0043002549,-0.0194139238,-0.0108055677,0.0043081022,-0.0302430335,-0.0170126874,-0.006999685,-0.0056381994,0.0379803553,0.0023482689,-0.0109232757,-0.0325814933,0.0254562534,0.0261938889,-0.0148311714,0.0001122515,0.002585646,0.0050692786,-0.0060266345,-0.0018784188,0.002785749,0.0029642724,0.0157885272,-0.0031918406,0.0363167524,-0.0104995277,-0.0100051556,0.0372270234,-0.0171853248,0.014799783,0.0183624029,0.0042610192,0.0071134693,0.0553069301,0.0033409372,0.0018715526,-0.0055597275,-0.0478364117,-0.0042178594,-0.0098011289,0.0095500192,0.0228823777,0.0032036114,-0.0115275085,-0.0017067618,-0.0060384055,-0.0132774292,-0.0412447825,-0.0271512456,0.0133794425,0.0015763023,-0.0328012146,0.0132146524,0.0131597221,-0.0111351488,-0.049248904,-0.0046416074,-0.0315299705,-0.0116844522,-0.0062777447,0.0075372169,-0.0107114017,0.0127281267,-0.0002188628,-0.0126731964,0.0116922995,0.0171068534,0.0077255494,-0.0081689153,-0.0030859038,0.0292542893,0.0329581574,-0.00216386,-0.0232747383,0.0105779991,0.0191471204,-0.0003707793,-0.0223173816,0.0365364738,-0.0266490243,0.0089536328,0.0656024292,0.0118963262,-0.0134893032,-0.0205125306,-0.0517913923,0.0515716709,0.0349670351,0.0272611044,-0.0249383394,-0.0265391655,0.0188960116,-0.0004448371,-0.001646927,-0.0599524602,0.0200887825,-0.0129243061,-0.0231962651,-0.0177032389,0.027135551,0.0279673524,0.0114725782,0.0356261991,0.0244361199,-0.0359400883,0.0015292193,0.0039255521,0.0394870117,-0.0046651489,-0.0076745427,0.0074783629,-0.0214071088,-0.0043669562,0.0444150418,-0.0307295583,0.0084514134,-0.0452311486,0.0032134205,-0.0082159983,0.0094480058,-0.0275279097,-0.0175619908,0.0245459806,0.0058069136,0.008090443,-0.0034723773,0.0004477797,0.0035802762,0.0014615374,-0.0202143379,-0.0128144454,0.0061639603,0.000099745,-0.0545535982,-0.0349984244,0.0157492906,-0.0364736952,-0.0251109786,-0.0259270854,-0.0189430937,0.0154197095,-0.0158748459,0.0466436408,-0.0196650345,-0.0481189117,0.0140386056,-0.0160710253,0.0285323486,-0.0259584729,0.0059324685,-0.0045435177,0.0285323486,-0.0061992728,-0.0051438268,-0.0779068097,0.0391731262,-0.0272611044,-0.0266490243,0.0404600613,-0.0244988985,0.0139993699,0.0491861291,-0.0121081993,-0.0125633357,0.0271041617,0.0058108373,0.0363167524,-0.0134657621,0.0221604388,-0.033868432,-0.05351777,-0.0096677262,-0.0353123136,-0.0042100125,-0.0152392248,-0.0315613598,0.0003067757,-0.0123200733,0.0256131981,-0.0244204253,0.0373211913,0.069871299,-0.0207479447,-0.0119983396,-0.0053674714,0.0169656053,0.0029152276,-0.0183780976,-0.0030721712,0.0137247192,0.000627284,0.0073135723,0.0176404621,0.0295210928,0.0156708192,0.0408681147,0.0079295756,-0.0078118681,-0.0014262251,0.0241065379,0.0026739268,-0.0098011289,0.005312541,-0.0165575519,-0.0227882117,-0.0457647555,-0.0025209067,-0.0012074849,0.0344962068,0.0017724819,-0.0012722241,0.0352809243,-0.01430541,0.0199946165,0.0385139622,-0.0019666997,-0.0179543495,0.012406392,0.0055793454,-0.0193354525,0.007423433,-0.0071566286,-0.0251737554,-0.0195080917,-0.0135991639,0.0239809845,-0.0222546048,-0.0216896068,0.0083650947,0.0051987572,0.0038333477,-0.0891439691,-0.0442894883,0.0170440767,-0.0029387691,0.0033644787,0.0243105646,0.0429711603,0.0170911588,0.0359714739,-0.012053269,0.016934216,-0.0241222326,-0.0188646223,-0.0077333963,0.0031820317,-0.0006263031,-0.0021501274,0.0172794908,-0.0014419195,0.0181897637,-0.0237455685,-0.0134343728,-0.0450428165,0.0395811796,0.0127516687,0.0157649852,-0.0289090127,0.0199789219,0.0218151622,-0.0093538389,-0.0099894609,-0.0095892549,-0.0174364354,0.0315770544,0.0042884843,0.0666696429,-0.0147448527,0.0152156828,-0.0120218806,-0.0103818197,-0.0134579148,-0.0050849728,0.0539258234,-0.0441953205,0.0354692563,-0.0314358063,-0.0014330914,0.0099502252,-0.0001360995,0.026570553,0.0263194442,-0.0224586315,-0.0177032389,-0.0037156399,-0.0132146524,0.0296309534,-0.045827534,0.0118649369,0.0000841733,-0.022584185,-0.0295838714,0.0131911105,0.0073881205,-0.0289874859,-0.025519032,0.0214855801,0.0088673141,0.0402089544,-0.0260997228,0.0128929177,0.0118884789,0.0192412864,0.022395853,-0.0000817823,0.0135285389,0.0044297334,0.0137953432,-0.0207479447,-0.0267745797,-0.0177660175,0.0328326039,-0.0066151731,0.003313472,0.0021677837,0.0082630813,0.0237926524,-0.0122102126,-0.0067681931,0.0362225845,-0.0127438214,0.0439442098,0.0094558522,-0.0319851078,-0.0163221359,-0.0174050462,0.0228980724,0.0118492423,0.0039294758,0.026853051,0.0028328323,0.0285009593,0.008161068,0.0044768164,-0.0001048947,-0.0086632874,-0.0196022578,0.007505828,-0.0091027291,-0.0235258471,0.0069682961,-0.0029701579,0.0181269869,0.0024777472,0.0008268966,0.0016145573,0.0100208493,-0.0196493398,-0.0160082486,-0.0017067618,-0.0158199165,0.0600780137,-0.012547642,-0.0095971022,0.0329267681,-0.0149017964,0.0303999782,0.0230393223,-0.0074783629,0.0196964238,0.0012761478,0.0097461985,0.0269472189,-0.0039177048,0.0279359631,0.0081924563,-0.0018784188,0.0207322519,-0.0160004012,-0.0353123136,0.0179229602,0.0088516194,0.0374153554,0.0107977204,0.00019667,0.0067328811,0.0041315407,-0.0222075209,0.0026837357,-0.0042060888,0.0728218332,0.0422806107,-0.0112607041,-0.0213129427,0.0283597112,-0.0240594558,0.0451055951,-0.0299919248,-0.0215640515,-0.0213600248,-0.0017155899,0.0109860525,0.0261938889,0.0016704686,-0.0093773808,0.0223016869,-0.027041385,-0.0432850495,-0.0240123719,0.0175462961,0.0185821243,-0.0026013404,-0.0121395886,0.0382314622,0.0006880997,0.0150273507,0.0389220156,0.008396483,0.008726065,-0.0122729903,0.0394242369,0.0086946758,0.0118335485,0.020638084,0.0501277894,0.0310905296,0.0040726867,-0.0059324685,0.000526742,-0.0128222927,0.0149331847,0.0448544845,0.0041903947,0.0031094453,0.0355320349,-0.0311846957,0.0228039064,0.0222546048,0.0412133932,-0.0278261025,0.0068623596,-0.0300703961,0.0078157922,0.0023109948,-0.0041629295,-0.0054341727,0.023243349,-0.0144388126,-0.0195080917,-0.0355634205,0.0101150153,-0.0163221359,0.0101699457,-0.0068074293,-0.0207636394,-0.0177346282,-0.008090443,0.0088908551,-0.0245459806,-0.007517599,-0.0377292447,-0.0265548583,-0.0164319966,-0.0192726757,0.0191000383,-0.00641507,0.0258329175,-0.0155060291,-0.0108291088,-0.0115902862,0.0214541908,-0.0298820641,0.0241693165,0.0135677755,0.0110723721,0.0161965806,-0.0259113908,0.0113234818,-0.0038019591,-0.0102562653,-0.003476301,-0.0016292708,0.0229765456,-0.0238711238,-0.0286422092,0.0241693165,0.0017195134,0.0434419923,0.0279673524,0.0266490243,0.0065092361,-0.010224876,0.0252365321,0.0053674714,0.0110331355,-0.0104524447,0.0047396971,-0.0105701527,0.016745884,0.0051987572,0.0013565813,-0.0267902743,-0.032738436,0.0143446457,-0.0000599267,0.0040844576,-0.0229765456,-0.0093381451,-0.0232747383,0.0020245726,0.0060070166,-0.0218622442,0.0306824762,-0.0102641126,0.0016518316,0.0058853854,0.0083415527,-0.0500650108,-0.0022580263,-0.0245930646,-0.0276691578,-0.0404600613,-0.0005458695,0.0101071689,0.0312003903,0.0041590058,0.0191942044,0.0059520863,0.0029269983,-0.0015488373,-0.0341195427,-0.0049633416,0.0041550822,-0.0210932214,0.0033389754,-0.0006885901,-0.0154903345,0.004068763,0.0048574046,0.0181269869,-0.0214855801,-0.0038941633,0.0172794908,-0.0005306656,0.0198690612,0.0052929232,0.0134500675,0.0100993216,-0.0143132573,-0.0051987572,0.016416302,-0.0177660175,-0.0027308189,0.0579435825,0.0416528359,0.0073920442,-0.0173265748,0.039330069,0.0064503825,0.0095814075,0.0139052039,0.023055017,0.0032585417,0.0259898622,0.0620241165,0.0078942636,-0.0095578656,0.0001148876,0.0122808376,-0.0326442719,0.0030388206,-0.0044258097,-0.0123514626,0.0169969928,-0.0056538936,-0.0468633622,-0.0003075114,0.0203869753,0.0033585932,0.0116373692,-0.0131204855,-0.0057009766,0.0115510495,-0.0063287513,0.0135834692,0.0049986541,-0.0087809954,0.0153961685,-0.0049986541,-0.0012584915,0.0126731964,0.0898345262,0.0038372714,0.0016125956,0.0088045364,0.0100443913,-0.0348414816,-0.0020657703,0.0002394616,-0.0030721712,0.0197592005,-0.0053321593,0.002134433,-0.014352493,0.0148704071,0.0090477988,-0.0053870897,0.0093146032,-0.007152705,-0.0020039738,0.0080002006,0.0192569811,-0.0000029925,0.0089928685,-0.0359400883,-0.0172010195,-0.010013002,-0.0077137784,-0.0418097787,-0.0069879144,0.0223330762,-0.007352808,-0.0011192041,-0.005006501,0.0293955393,0.0085926624,0.0091105765,-0.0266333316,-0.0098952949,0.0085534267,0.0139601342,-0.0305412263,-0.0076980842,-0.0157179032,-0.020591002,-0.0203398913,0.0280458238,-0.032738436,-0.0290188733,-0.0103582786,-0.0570960864,-0.0210461374,-0.0130969444,0.0073449612,-0.0246558413,-0.0148704071,-0.0099816136,0.0126025723,0.0148625597,-0.0017440359,0.0331778787,0.0062659737,0.0129792364,-0.0256602801,0.012618266,-0.0173579641,-0.0269158296,0.0423433855,-0.0112214684,0.0249226447,-0.0199004505,-0.0276377704,0.0084278723,0.0279359631,0.0030564768,0.0435361564,0.0105152223,-0.017985737,0.0238083452,0.0047593149,-0.0452625379,-0.0451997593,0.0212658588,-0.0054577142,0.0090477988,-0.0159847066,-0.0139208985,0.0089614801,-0.0013928745,-0.0297878981,0.049437236,-0.0007469535,-0.0056499699,0.0023659249,-0.0094558522,0.0202614199,-0.006120801,-0.0343078747,-0.0302273389,-0.0224429369,-0.0113234818,0.0220348835,0.0081218323,-0.0255504195,0.0187704563,-0.0325814933,-0.0120140333,-0.032063581,-0.0381059088,-0.0200730879,0.001445843,-0.0497825146,-0.0047161556,0.0382942408,0.0021187388,0.0128301401,0.0131440274,0.0253934767,-0.0099266833,0.0169028267,-0.0272767991,0.0134814559,0.0093381451,-0.0009804071,-0.0195237845,-0.0136854826,-0.0028034053,0.0365364738,-0.0080982903,-0.0177817103,-0.0060815648,-0.0041786237,-0.0116216745,0.039518401,0.0066622561,-0.0046651489,0.0207479447,-0.0118100066,-0.0169185214,0.0061992728,0.0070860041,-0.0297408141,0.0085691214,-0.0238868184,-0.0355948098,0.0102641126,-0.032550104,0.0188489277,0.0281870719,0.0234159864,0.0165732447,-0.0096363379,0.0015164677,0.0027484749,-0.0022678352,-0.0176404621,-0.0644096583,0.0244518146,-0.0046612252,-0.025283616,-0.0069879144,0.003992253,-0.004433657,0.006426841,-0.0073763495,0.0198847558,0.0015194103,0.0134657621,-0.0099423779,0.0048181689,-0.005183063,0.0136462469,-0.0360342525,-0.0033546698,-0.0038941633,0.0200260039,-0.0419353321,-0.007164476,0.022819601,-0.0009661841,-0.0045709829,0.0165261626,0.0160710253,0.0281399898,0.0177189335,-0.0112371622,0.0325187147,-0.0299762301,-0.012170977,0.0014046453,-0.0179229602,-0.0013879701,-0.0099816136,-0.0239809845,0.0402403437,0.0255661141,0.0241222326,0.024530286,-0.0116530629,-0.027135551,0.0048103216,-0.0139758289,0.0034507976,-0.0082630813,-0.0080982903,0.0055204914,-0.002002012,0.0038255006,-0.0133088185,0.0368503593,0.0302430335,-0.0152313774,0.0316084437,-0.0231805723,0.0206694733,0.0065249307,-0.021438498,0.0134108318,0.0457647555,0.024530286,-0.0472714156,-0.008372942,0.0060933358,0.0228980724,-0.0170754641,0.0013595241,0.0507241748,0.0285794325,-0.0393928476,0.0013153836,-0.0028956097,0.0355006456,-0.0219093282,-0.0081767626,0.0073331902,-0.0197905898,-0.0075215227,0.0382628515,-0.0194139238,0.0214855801,-0.0159219299,-0.0037548759,0.0158905406,0.0044218861,0.0196807291,0.0290816519,0.0154981818,0.0059403158,0.0451055951,0.0106564714,0.004971189,-0.026900135,-0.012477017,-0.0039118193,-0.0273552723,-0.0148861017,0.0031447576,0.0308865029,0.010719249,-0.0121081993,0.0011407839,0.0247343127,0.0154118631,0.0381372981,-0.022913767,-0.0160082486,0.0168871321,0.020355586,-0.0406483971,-0.0376664661,0.0215954408,0.0236200131,0.0149253374,0.0167615786,-0.0019225592,0.0017214753,0.0074940575,0.0092047425,0.0309963636,-0.0182996243,-0.008161068,-0.0110802194,0.0060423291,-0.0106172357,-0.0301174782,0.0192726757,0.0115981326,-0.0086868294,0.0154040158,-0.0188018437,0.0258329175,-0.0006145323,0.0268373583,0.008090443,0.0061443425,0.0154981818,0.0056225047,-0.0009328336,0.0428769961,0.008031589,-0.0001372031,-0.0149096427,0.0025483719,0.0108212624,-0.0104681393,0.0067093396,-0.002040267,0.0116216745,0.0188018437,-0.0156315845,-0.0019098076,0.0693690777,-0.0076353066,-0.0046376837,0.0048063979,0.0028053671,0.0153255435,-0.0061404188,0.003986368,0.0084828027,0.0285480432,0.0181112923,0.0089379391,0.0106250821,-0.0038549274,0.050190568,0.0102327233,0.0402403437,-0.0001227348,0.0197278112,-0.0330837145,0.0162593573,-0.0076823896,0.0365364738,-0.0108683454,0.0406483971,-0.0045592119,-0.0200887825,0.0150901284,0.0238554291,-0.0132146524,-0.0116687575,0.0182211529,-0.0258329175,0.0038510039,-0.0129243061,0.024765702,-0.0142112439,0.0034841481,-0.0096363379,0.0174050462,0.0026660797,0.0209833607,0.0050967438,-0.0015664934,-0.0259427782,-0.0005419459,0.0025032505,0.0109782061,-0.0182211529,-0.0127202794,0.0159140825,0.0060344818,0.0130184721,0.0246401466,-0.0188018437,0.0131989578,-0.0112528568,-0.0098717529,0.0022285993,-0.022819601,0.0087417588,0.0048299395,-0.0095343245,-0.0217994675,-0.0312003903,-0.0704362914,0.000569411,0.0247343127,-0.0004472893,-0.0107977204,0.0294426214,0.0067524989,0.0226626582,0.0123985456,0.0210304447,-0.0245145913,-0.0003396358,0.0258329175,0.0059246211],"119":[-0.0018830857,0.0046179597,0.0871780664,-0.0372252613,0.0411955789,0.0095245419,0.0038823243,-0.0106860716,-0.0259478651,0.0440677255,-0.0232446697,-0.0284257941,-0.0078491233,-0.0290875137,0.0076097781,0.0275388081,-0.0114674643,-0.0129668927,-0.0632998347,0.0105734384,-0.0352823362,0.0216255672,0.0295662042,-0.0187675003,-0.0119179962,-0.0099750748,0.0060153147,0.0426879674,0.0277218372,-0.0358173437,0.0332830995,-0.0265391879,-0.0310867522,0.0142269759,0.0365776196,0.0155152185,0.0421811193,0.0283553991,-0.0063567339,0.0004668117,0.0051600067,0.0493614823,0.0048854635,0.0114393057,-0.0233432222,0.0224843957,-0.0355357639,-0.0181198604,-0.0051670461,0.0556126237,-0.0783926845,0.0218789913,-0.0626803562,0.0041146302,0.0495022759,-0.020372523,-0.028045658,0.0214284584,-0.0185422339,-0.0152758723,-0.0200205445,-0.0356483944,0.0217381995,0.0393652916,-0.0024867291,-0.0141002638,0.0047446718,0.0122277373,-0.0237796772,0.0170780029,0.039534241,0.0074760262,0.0370281525,-0.0146704698,-0.0051177694,-0.0222591292,0.0478127785,0.0444337837,-0.0035919419,-0.0224139988,-0.0004203945,0.0255254898,-0.0560068414,0.0364931449,0.0413363688,-0.0561476313,-0.0405479372,-0.0235966481,0.0294254143,-0.018654868,-0.0293690972,0.0503751822,0.0150646856,0.0139594721,0.033311259,0.0348599628,0.0199783072,-0.0021294707,-0.0149942897,-0.0084193293,-0.0054521491,-0.0084897242,-0.01548706,-0.0192039534,0.0369155183,-0.0473059267,-0.0086234761,0.0303546377,-0.004762271,0.0418150611,-0.0362115614,-0.0246525835,-0.0885859802,-0.0143536888,-0.0170498453,-0.0214847755,-0.0424908586,0.0153885055,0.0411392637,-0.0039492003,-0.008250379,-0.0064517683,0.0179931484,0.0153321894,0.033564683,-0.0203162059,0.0128753781,-0.0466019697,-0.0317625515,-0.0055999802,0.054317344,-0.0411955789,0.0466019697,-0.0443493091,-0.0119883921,0.0011958474,-0.0263843182,0.0167119447,-0.0040477542,0.0098413229,-0.0191617161,0.0178664345,0.0253846981,-0.0092077609,-0.075914748,0.0098694805,-0.0076520154,0.0358173437,-0.0326073021,0.0087853866,-0.0214425381,0.0462922305,-0.0564292148,-0.0187534206,0.0362678766,0.049051743,0.0326636173,-0.0052515212,-0.0262435265,-0.0745068341,0.0014747905,0.0156982467,0.0003269002,0.002536006,-0.0154025853,0.0031607682,-0.056738954,-0.0390273891,-0.0622861385,-0.0141002638,-0.0340433717,-0.0076168175,-0.0154589014,0.0206681844,0.0279330239,-0.0125374785,0.0069023008,-0.0674109459,0.0478409342,-0.0228926893,-0.0932602584,0.0491080582,-0.0262576062,0.0266940594,-0.032748092,0.0202739686,-0.0400129296,0.0281019732,0.002537766,0.0080814296,-0.0250608791,0.0397595055,0.0190068465,0.0228926893,0.0044490099,-0.0480662026,0.0413645282,0.0304954294,-0.0097498083,0.0377321094,0.0122347772,0.0294817295,0.0495585911,-0.0386894904,-0.0046566771,0.0550213009,0.0137201268,-0.0486575253,-0.0462077558,-0.0134385442,0.0083700521,-0.0104115279,0.0301012117,-0.033001516,-0.0054908665,-0.0143818464,-0.0732678697,-0.0352823362,0.0005816447,0.0088135451,0.0005165286,0.0191757958,0.0194996167,-0.0368028842,-0.0089191385,0.0150787644,0.0542328693,-0.0089613758,0.0425190181,0.0198938325,0.0109324567,-0.0163599662,0.001300561,-0.0072226017,0.0240612589,-0.0329170413,-0.0041498281,-0.0343249552,0.044490099,0.0068319053,0.0038189681,0.017894594,-0.0272572245,0.0304391123,0.0139735518,0.0252298284,-0.0546552427,-0.032438349,0.0404916219,0.0670167282,0.0310022775,-0.0431103446,0.0062265019,-0.0196685661,0.0042730207,-0.0311712269,-0.0182324927,0.0165993124,0.0204147603,-0.0272009093,-0.0019482017,-0.0025025681,-0.0518394113,0.0371971019,-0.0528812706,-0.0182184149,-0.0001561905,-0.0368310437,-0.0123614892,-0.0274543334,0.0128331408,0.0483477861,0.0105663985,-0.0432511345,-0.0191757958,-0.0123896478,-0.0115308203,-0.0044877278,-0.0087642679,-0.0280738156,0.0076168175,-0.0584566109,0.0146704698,-0.0091303261,0.0171483997,-0.0019781198,0.0118898386,0.0297914706,0.0226674248,-0.0190631635,0.0049030622,-0.0069550979,0.0225688703,-0.0332549401,0.0471369773,0.013389267,-0.0299604218,0.0069691767,-0.0451940559,-0.0157686435,-0.0073422743,-0.0356483944,-0.0071099685,-0.006342655,0.0294817295,-0.0042941393,0.0209216103,0.0431103446,-0.0232587475,0.023413619,-0.0083982097,0.0040935115,0.0151773188,0.0204147603,-0.0153885055,-0.0059519587,0.0812648237,-0.0310585946,0.0284821112,-0.071578376,-0.0476438291,-0.0854322538,-0.0110310102,0.0173595864,0.0036781768,-0.0329170413,0.0221887324,0.0149942897,0.0216959622,-0.0130795259,0.005043854,-0.0037380131,0.0064236098,0.0345783792,-0.0502907075,-0.0687625483,-0.0126149142,0.0054591885,-0.0354231298,0.0192321129,-0.0231461152,-0.0428569168,-0.0642572194,-0.003442351,0.0078420835,0.0131640006,-0.0321004502,-0.001121052,0.010158103,-0.0005851645,-0.0392526574,0.0217945166,-0.0070712506,0.0008007514,-0.0159094334,0.0269474834,0.0214566179,0.0233432222,-0.006409531,-0.0086093973,-0.0375913195,0.0421529599,0.0072050025,0.0010937736,0.0106227146,0.0263139233,-0.0136145335,-0.0121643813,-0.00691638,-0.0147831021,0.0209497679,-0.0006172825,-0.0300730541,0.019612249,-0.0548805073,-0.0258211531,0.058006078,0.0066136783,-0.0031695676,0.0460951217,0.0230194032,0.0106227146,0.0088487426,-0.0137905227,0.0311993863,0.0419276953,-0.0119461548,-0.0001002589,-0.066622518,-0.0073845116,0.0059871566,0.0111084459,-0.0236811228,-0.0442366749,-0.0306643788,0.0125093209,-0.017894594,0.0596392602,0.0386613347,0.0325791426,0.0131780803,-0.0357328691,-0.0671856776,0.0218367539,-0.0048502656,0.0299885795,-0.0041639074,0.0205133148,0.002602882,-0.0389992334,-0.0140439477,-0.0242865253,0.0361270867,-0.009707571,0.0358455032,-0.0051494474,-0.0035321056,0.0561757907,0.003540905,0.0504033417,-0.0313120186,0.0059484388,-0.0308614857,0.0213158261,-0.0645951182,0.032044135,0.0527686365,-0.0440395661,0.0223154444,-0.0807579756,-0.0001586104,0.0121432627,0.0210483223,0.0057830089,-0.0422374345,0.0313683338,0.0239486266,-0.0473904014,0.0290311966,0.0295662042,0.0054169511,-0.0395060815,-0.001564545,0.0279752612,-0.018654868,-0.0271868296,-0.0310022775,-0.0502343886,-0.0103129735,-0.0115026617,0.0386613347,-0.0300730541,-0.033001516,0.016374046,-0.0372815765,-0.0671856776,0.007264839,-0.0184718389,0.0561757907,-0.0240612589,-0.0229630861,0.0467990786,-0.0803074464,0.0057442915,-0.0073070764,-0.0264406353,0.0745068341,-0.0104467254,0.0273698587,-0.0254973322,-0.0041991048,-0.0124741225,-0.0128542595,-0.0003176607,-0.0288904067,0.0382389575,0.0136004547,-0.0135159791,-0.0160643049,-0.010531201,0.0062863384,-0.0172469523,-0.0043046987,0.0411392637,0.0184296016,0.0036605778,0.0150787644,0.0035549842,0.0078984005,-0.010974694,-0.0169512909,-0.0155292973,0.0354231298,-0.016374046,-0.0269615632,-0.0158531182,-0.063525103,-0.002667998,0.0222591292,-0.0174581409,0.0390273891,-0.0246244259,-0.0244695544,0.0943302736,0.0218508337,0.0087431492,0.0110521289,-0.0099539561,-0.00939079,-0.027285384,0.0046813157,0.0243287627,0.0034617099,0.0112844352,-0.0355076045,0.0339870565,0.0158531182,0.00856716,-0.0237937551,-0.0151913976,-0.0274261758,-0.0288200099,-0.0267362967,0.015289952,-0.0102355387,-0.0132555151,-0.0400410891,0.0011492103,-0.0146986274,0.0117842443,0.0164162833,-0.0026767976,-0.0059026815,0.0096301353,-0.0439269319,-0.0134807816,-0.01662747,-0.0485730506,-0.0469398685,0.0123685291,0.0463203862,0.0205414724,0.0050192154,0.014529678,0.0040970314,-0.0155715346,0.0172047149,-0.0082926163,-0.0274543334,0.0292283054,0.0195981711,-0.0329170413,-0.000264424,-0.029763313,-0.0053676739,0.0244695544,-0.0028475071,-0.0003849766,0.0046144398,-0.0061173886,0.0002263663,0.003440591,-0.0120517481,-0.0054239905,-0.0154729802,0.0440114066,0.000197548,-0.0199783072,-0.0352823362,0.0102636972,-0.0149661312,-0.0348881222,0.0114745032,0.0018267691,0.0075534615,0.043476399,-0.0300448965,-0.0391963422,0.0066946335,0.0213580634,-0.0435045585,0.0066946335,-0.0114674643,0.031790711,-0.0332267843,0.0150506059,0.0297351554,0.0242161304,-0.0029706997,-0.0109254168,0.0341560058,-0.010911338,-0.0238219146,0.0009028252,0.0007329955,0.0344375893,-0.0017572533,0.0231742729,-0.0054063918,0.0425471775,0.0265532676,0.0069093406,-0.0022702622,-0.0466019697,-0.0167401042,0.0232165102,0.0185422339,0.028242765,0.0138397999,-0.0194432996,-0.0051318486,0.0056914943,-0.018021306,-0.0569360629,-0.0162895713,0.0098061245,-0.0307488535,-0.0179227516,0.0114815431,-0.0351415463,-0.0201613363,-0.0412237383,-0.0024515311,-0.0309459604,-0.0156419296,0.0129035367,-0.0033807547,-0.0292001478,-0.0029619001,-0.0029055837,-0.0008865462,0.0284398738,0.0387739651,0.0220479406,-0.0049593789,0.0107353479,0.0116504924,0.0295662042,-0.0050297747,-0.031227544,0.0167823415,0.0275810454,-0.0265814271,-0.0117560867,0.0231038779,-0.0478127785,0.0092218397,0.0389147587,-0.0079476777,-0.0209638476,-0.0351133868,-0.0188378971,0.0528531112,0.0368310437,0.0242020506,-0.0195559319,-0.0295380466,-0.0079617565,-0.0101369843,0.0072085224,-0.0564573742,0.0381263271,-0.0233432222,-0.0000832649,-0.0445182584,0.014473361,0.0475030355,-0.0060082753,0.043476399,0.0326917768,-0.0197248831,0.0021294707,-0.00856716,0.0408858396,0.016500758,0.0033825147,0.0024216131,-0.0431666598,0.006603119,0.0708462596,-0.0433637686,0.0166133922,-0.044490099,0.0160079878,-0.0069726966,0.0169090535,-0.0335928388,0.0032505228,0.0350289121,0.0220057033,0.0026152013,0.0236388855,0.0180072263,0.0084052496,-0.0399847738,-0.0102284988,-0.0058674836,0.0675235838,-0.0351978615,-0.0359299779,0.0146845486,0.0123826079,-0.0452785306,-0.0352541804,-0.0294535719,-0.009454146,0.0143255303,-0.0154589014,0.0226251855,-0.0376757942,-0.0228082146,0.0232305899,-0.0019833995,0.0008909459,-0.0295662042,0.0034793087,-0.0369436778,0.0406605713,-0.0237937551,-0.0154448226,-0.0557815731,0.0251735114,-0.0293972548,-0.0307206959,0.0434200838,-0.0307206959,-0.0044806879,0.0214143805,0.0116434535,-0.0653272346,0.0229067691,0.0147549445,0.0372815765,-0.0185563136,0.0384642258,-0.0194714572,-0.0111295646,-0.0229630861,-0.003394834,0.0161206219,0.010151064,0.0084122894,-0.0079406379,-0.0391118638,0.0196967237,-0.0382389575,0.0177819598,0.0352541804,0.0256099645,-0.0255818069,-0.0112633165,0.0135441376,-0.0001523408,-0.0087994654,-0.0190068465,-0.0102636972,0.002175228,0.0119039174,0.0145578366,0.0326354578,0.0093626315,0.0314246528,-0.0135019002,0.0257507563,-0.0240894184,0.0117349671,-0.0036605778,0.0056316582,-0.0108057437,-0.003014697,-0.0141354622,-0.0364649855,0.005205764,0.0111014061,0.0438987762,-0.0112140393,-0.0153462682,0.0139383534,-0.0042589414,0.0544581339,0.0097568473,-0.0033737151,0.0022350643,0.0034071531,0.0107423877,0.0077224113,0.0067544701,0.0004619719,-0.0383234322,0.0037802504,-0.0250608791,-0.0120799066,-0.0087431492,-0.0120095108,0.0047869096,-0.0080743898,0.0103552118,-0.1042419896,-0.0754642189,0.042575337,-0.0150224483,-0.0136638107,0.0271164346,0.0064588077,-0.008250379,0.0132132778,-0.0208089761,-0.0182747301,-0.030523587,-0.0358455032,0.0153744267,-0.0027612722,0.0040864721,-0.0138046015,0.0334238894,0.0214425381,0.0272431467,-0.0242020506,-0.0070642112,-0.0274261758,0.0307770111,0.0157123264,-0.0011984872,-0.0134174256,0.0231038779,0.0013700768,-0.0053571146,0.01878158,-0.0483759418,-0.007328195,0.0281864479,0.0088346638,0.0304954294,-0.0013357589,-0.0017378945,-0.0049628988,0.001104333,-0.0458980128,-0.0082081417,0.0519238859,-0.0449124724,0.0445745736,-0.0306643788,0.01878158,0.0205837097,-0.0154307429,0.0014466322,0.0239908639,-0.0021805076,-0.0129950512,0.0094330274,-0.0115448991,0.0210905597,-0.0232165102,0.0052656005,-0.0343531147,-0.003474029,-0.0238359924,0.0092570381,0.0185703933,-0.0501217581,-0.0118335215,0.0068107867,0.0191617161,0.0260041822,-0.0313683338,-0.0227518994,0.0296506807,0.0405479372,0.0162614137,0.0054204711,0.0062089032,0.0056210989,0.0140298679,-0.0126853101,-0.0309459604,-0.0176693276,0.0041287094,0.0009485824,0.0053043179,0.0107001504,0.0293972548,0.020175416,-0.0019710804,-0.0063039372,-0.0016666189,0.0067122327,0.0315091275,-0.0016534196,-0.0075675407,-0.0019605209,0.0164726004,0.0143607277,0.0055999802,0.0117560867,0.012882418,0.0165993124,0.0287214555,-0.0015918234,0.0378447436,0.0080180736,-0.0018830857,-0.0187534206,0.0132484753,-0.0203866027,-0.0117983241,0.0211046394,-0.0088276239,0.0280034207,0.0275388081,0.002076674,0.024934167,-0.0059132408,-0.0196685661,-0.0080039939,0.0050825714,-0.0242020506,0.0507975556,-0.0259478651,-0.0204147603,0.0432792939,-0.0134315044,0.0226392653,0.0259197056,0.004825627,0.0069234199,0.005617579,0.0002624441,0.0334520489,-0.0108339023,0.042828761,0.0069586174,-0.0271305125,0.0210624021,0.0007849123,0.0234980937,0.0431385003,-0.0124600437,0.0478690937,0.0109042982,0.0176974852,0.0030498949,-0.0098624416,-0.0265391879,0.0062476206,-0.0075675407,0.0277359169,0.0547115579,-0.0215410925,-0.0079687964,0.0092711169,-0.0099821137,0.0427161269,-0.0255958866,-0.0159516707,-0.033564683,-0.0026240007,0.0160924625,0.0196404085,0.0191898756,-0.0262294468,0.0491362177,-0.0374223664,-0.0260041822,-0.0103974491,-0.0029249424,0.0243850797,-0.0044208518,-0.0161065422,0.0368310437,0.0008275898,0.0290875137,0.0540639162,-0.0076590548,0.0141284224,0.0197952781,0.0211046394,-0.0221887324,0.0027507129,0.0089332173,0.0612724386,0.0438143015,-0.0062476206,-0.0055119852,0.0124107664,-0.0184859186,0.0053535951,0.0216537248,-0.0089613758,0.0191194788,0.0223295242,-0.0323538743,0.0146141527,0.0361270867,0.0254410151,-0.0122418171,0.0138186812,-0.0232728273,0.0076097781,-0.0089965742,-0.0102496175,-0.0141636198,0.002175228,-0.0140298679,0.0136497309,-0.0474467203,0.0049277009,0.0021470697,0.0368592031,0.0014387127,0.0034124327,-0.0122206984,0.023737438,0.0155996932,-0.0086023575,0.0020467557,-0.0405197814,-0.034831807,-0.0240894184,-0.0071627651,0.0252157487,-0.0133751882,0.0337617919,0.0054415897,-0.0217945166,0.0077294507,0.0189223718,-0.0150365271,0.0231038779,0.0160079878,0.0077857673,-0.005519025,0.0398721397,0.0162614137,0.0127627449,0.0050684921,-0.0031994858,-0.002587043,-0.0054451092,-0.0005306078,-0.0227659773,0.0129950512,-0.0215270128,0.052740477,0.02601826,0.0090247318,0.0055084657,0.0150365271,0.0181339383,0.0046777958,0.0269615632,-0.0033701954,0.006539763,-0.0056105396,0.0003561584,-0.024497712,-0.0222872868,-0.0161346998,0.0003838767,-0.0256099645,-0.0154448226,-0.0151069229,0.0028334281,-0.0276232827,-0.0154307429,0.0321004502,0.0032769211,-0.0471088216,0.0161206219,-0.0172751117,-0.0058639641,-0.0092711169,-0.0028791851,-0.0414490029,-0.0007827125,-0.0035461846,-0.0303546377,-0.0389710739,0.0008253899,-0.0061455467,-0.0068248655,0.0252720658,-0.0005028895,0.0018426081,-0.0001422214,-0.0027859109,-0.011298514,0.0092992755,0.0223436039,-0.0124178063,0.0164162833,-0.0250186417,-0.002521927,0.0118968775,0.0118546402,0.0313964933,-0.0187393427,0.0169935282,-0.019865673,0.0145015195,0.0124318851,0.0162191745,0.004727073,-0.0070571718,-0.0019394023,-0.0024708901,0.0262294468,-0.0061561065,-0.01713432,0.0364368297,0.0366339348,0.000461092,-0.0267081391,0.0375068411,-0.0034634697,-0.0014844699,0.0154448226,-0.0060188347,0.0181902554,0.0189927667,0.0312557034,-0.0074337889,-0.0068811821,0.0299604218,0.0213862211,-0.0308051705,0.0000679209,-0.0197811984,0.0112210792,-0.0007827125,0.0195840914,-0.0455319546,-0.0088276239,0.0099750748,0.0051987246,-0.0026292803,-0.005237442,0.0207667388,-0.0057830089,-0.0168808959,-0.0012944015,-0.007933598,-0.0031994858,0.0210483223,-0.0033596361,-0.0150224483,0.0136990082,0.0792374313,0.0034546703,-0.0219493881,0.0210342426,0.0028299082,-0.0128964968,-0.0249623246,0.0053500752,-0.0056246184,0.0423782282,-0.0112703554,0.0231742729,-0.0163318086,0.0150224483,-0.0075956988,0.0000013921,0.0112210792,0.000691638,0.0083066961,-0.020175416,0.0235966481,0.0158390384,0.0281442106,0.0005077292,0.0111436434,0.0113266725,-0.0174299814,-0.027412096,0.0116716111,0.0377884246,-0.0117912842,-0.0222591292,-0.0049488195,0.0136004547,-0.0005288479,0.0130654471,-0.0259901024,0.0299322624,0.0108972583,-0.0138749974,-0.009777966,-0.0198938325,0.0080532711,0.0019746001,-0.0363805108,0.0369155183,0.0049910569,0.0004366735,-0.0115871364,-0.0449969471,-0.0103270533,-0.0031396493,-0.0079195192,-0.0178382769,0.0063708131,-0.0131780803,0.0119391149,-0.001121052,-0.026722217,0.0072859577,-0.0020713944,0.0097568473,0.0135230189,-0.0001958981,-0.0111295646,-0.0254691746,0.0292846225,0.0038189681,0.0049980967,-0.0464611799,-0.029763313,-0.0149520524,0.0175426155,0.0139735518,0.0386331752,0.0350570716,0.003836567,0.0233150646,0.0009582618,-0.0136919692,-0.0251594335,0.0051670461,-0.0146563901,0.02652511,-0.0154589014,-0.0097286897,0.0229912437,0.0092922356,-0.0177960396,0.0307488535,0.0188942123,-0.0006938379,0.018851975,0.005614059,0.007426749,-0.0081588645,-0.0374505259,0.0077928067,0.0116364136,-0.0325509831,0.0215833299,0.0117701655,-0.036042612,0.0261731315,-0.0020625948,0.0189364497,-0.0211891141,-0.0279330239,-0.0275106505,-0.0020749141,-0.0060505127,0.0043962132,0.0133470297,-0.0096371751,0.0166697074,0.0173455067,0.0080110338,-0.0130654471,0.0141073037,-0.0207245015,0.0253283828,0.0124248452,0.0027507129,-0.0321004502,-0.0018214894,0.0126571516,-0.0082926163,-0.0028351878,-0.0188660547,-0.0035514643,-0.0185140762,0.0043574953,0.0500654392,-0.0161910169,-0.0057442915,0.0039175223,0.0117912842,-0.0014202337,0.0162191745,-0.0116293738,-0.040181879,0.0459261723,-0.024497712,-0.0229771659,0.0321004502,-0.0258070733,0.0277922321,0.030270163,0.0271868296,0.0137905227,-0.0097005311,-0.0095949378,0.012122144,-0.0030868526,-0.0139946705,-0.0457290635,0.0435045585,-0.0305517446,-0.0157968011,-0.0180494636,-0.0145155983,0.0133399898,0.0057231723,-0.0087009119,0.0170920826,0.0184859186,-0.0069128601,-0.0183732845,-0.0092711169,-0.0032874804,-0.0030674937,-0.0143114515,0.0009837802,0.0028228685,0.0162614137,-0.0028475071,-0.0282005277,0.0105171213,-0.0048784236,0.0283976365,0.0161910169,0.0080180736,0.0159516707,0.0176552478,-0.0082292603,0.0027366339,-0.0064130505,-0.0035303456,0.0017880514,-0.0193025079,0.0111858808,-0.0426879674,0.0048467456,0.0191617161,0.0022192253,0.0261027347,0.0344657488,0.0152758723,-0.0433637686,0.0058041275,-0.0142480955,-0.0075253029,0.0184296016,-0.0052198432,-0.0031994858,0.0377602689,-0.0172469523,-0.013706048,0.0199923869,0.006539763,0.0128612993,0.0091725634,-0.0121151041,0.0228082146,0.0225688703,-0.0188378971,0.0236811228,0.0355639197,-0.0055119852,-0.0238782298,-0.0144311236,0.0014730305,0.0072226017,-0.0020185974,0.0001356218,0.0246385038,0.0616666563,-0.0148112606,0.0362678766,-0.0100102723,0.0098835602,0.0086797932,-0.011805363,-0.0106367944,-0.0215410925,-0.0117772054,0.0197671205,-0.0230897982,0.050262548,-0.007426749,0.0036113008,0.0103974491,0.0066770348,0.0261590518,0.0502907075,0.0248637702,-0.0147971818,0.015233635,-0.0002023877,0.0082433391,-0.0474467203,-0.0233854596,-0.0052902387,-0.0120799066,-0.0222168919,0.000362098,0.0024444915,0.0152617935,-0.0229771659,-0.0057161329,0.0056914943,-0.0193165876,0.0328325666,-0.0174159035,0.0073563536,0.0251875911,0.0269474834,-0.0406324118,-0.0653835535,0.0097005311,-0.0053993524,0.0155152185,0.0169794485,-0.0112210792,0.0104819238,-0.0103763305,0.0118405614,0.0308614857,-0.0192461908,-0.0080110338,0.0079758354,-0.001729095,-0.0200768616,-0.0213158261,0.0026855969,0.0012319252,-0.0280174986,-0.0013665571,-0.0129387341,0.0298759472,-0.0049875374,0.00939079,0.0316499174,0.0362960361,0.0192321129,-0.0002265862,0.014022829,0.0614413917,0.0354231298,0.0039069629,-0.0179086719,0.001021618,0.027158672,-0.0395623967,0.0153603479,-0.0129176155,0.0092077609,0.0124670835,-0.0019781198,-0.0129598528,0.0285243485,-0.0055612624,0.012122144,-0.0092711169,0.0176552478,0.0097990856,-0.0130513674,0.0214284584,-0.0210483223,0.0178805143,0.0215129331,-0.0142340157,0.0032558024,-0.0097850058,0.0235262513,0.0039843982,0.0311993863,-0.0194432996,-0.010087708,-0.0038752847,0.0424345434,-0.0003975159,0.0224843957,-0.011551939,0.0088135451,0.0074337889,-0.0056246184,0.0192743503,0.0300730541,-0.013452623,-0.0099609951,0.035789188,-0.0262153689,0.0250608791,-0.0083630122,0.0156278517,0.0096442141,-0.0074689868,-0.0080391923,0.002618721,0.0161346998,0.0165711548,-0.0032681215,-0.0159516707,0.0001688397,0.0028633461,-0.0197671205,0.0315091275,-0.04099847,0.0115097016,0.0253706202,-0.0069762166,-0.0123544503,0.0039597596,-0.0118335215,-0.0001609202,0.0249060076,-0.0318751857,-0.0226955824,0.0058111674,0.0152617935,0.0174722187,-0.0025342461,-0.0204006806,0.0028668661,-0.0700578243,-0.0067333514,0.0139876306,-0.0122770146,0.0017273352,0.0222309697,0.0164866783,0.0076238574,-0.0031431692,0.0261168145,-0.0352823362,0.0332549401,0.0046883551,-0.0132977525],"120":[0.001829105,-0.0325689353,0.1056462079,-0.0373209864,0.0321342945,0.0210220311,-0.0012676965,-0.001670643,-0.0244556777,0.033756949,-0.0045492197,-0.0403055064,0.0002139238,-0.0414065905,0.0227460973,0.0233111288,-0.0053496794,-0.005581487,-0.0236733276,0.0110977776,-0.0557786487,0.0179505832,0.0289614331,-0.0124234259,-0.0101922797,-0.0177477524,-0.0038863954,0.0412327349,0.0206743199,-0.0433479771,0.0313519463,-0.0460137613,-0.0397259891,0.0025879119,0.0181679018,0.0035531723,0.0384510458,0.0232242011,-0.0089752916,-0.0132709714,-0.0152992858,0.0305116437,0.0045781955,-0.016820522,-0.0414355658,0.0087362397,-0.0078959381,-0.0034897875,0.0131623121,0.0726136565,-0.049722679,0.0284833293,-0.0553150326,0.0049077966,0.0366545394,-0.015052991,-0.0256581772,0.038045384,0.0185880531,-0.020514952,0.0261073038,-0.0517799705,0.0512294285,0.0432030968,0.0068672933,0.0095620537,-0.0132564837,0.0320473686,-0.0258175451,0.0057843183,0.0359591171,0.0250351951,0.0265274551,-0.0250062197,-0.0124668898,-0.0226012189,0.0219492596,0.0385669507,0.0001205444,-0.0244411901,0.0203700718,0.001490449,-0.0455501489,0.0301639345,0.0679195598,-0.0465643033,-0.0272808298,-0.024759924,-0.0195007939,-0.0103951115,-0.0157339256,0.0346262269,0.0048426008,0.0263680872,0.0472597256,0.0311491154,0.015052991,-0.0318445377,-0.0282080583,0.0113440733,-0.004835357,-0.0160671473,-0.033090502,-0.0056611705,0.0170813054,-0.049085211,-0.0183417574,0.0467671379,0.0303957406,0.0341336355,-0.050939668,-0.0063928124,-0.0621243753,-0.0042558382,-0.0208481755,-0.0120394947,-0.0143648125,-0.003656399,0.0169798899,0.0049367724,-0.0140098576,-0.0189937167,0.0091926111,0.0073200418,0.0380164087,-0.0244991407,0.0001674039,-0.0787565559,-0.0386828557,-0.0127928695,0.0568507574,-0.0445359908,0.0551701523,-0.0139881261,-0.0439274944,-0.0213552527,-0.0437536389,-0.0147559876,-0.0085841166,-0.0054329853,0.0081784539,-0.0190082043,0.0449706279,0.0273677576,-0.0532287657,0.0223838985,-0.0412906855,0.0677457005,-0.0390885174,0.0113078533,-0.0150819672,0.027903812,-0.0387987569,-0.0214711577,0.0402185768,0.0292367041,-0.0031656194,0.000472217,-0.0055706208,-0.0420150869,-0.0136331711,0.0409719534,0.0037523818,-0.008294357,0.0021224862,0.0287586022,-0.0364517085,-0.0560973808,-0.1014157236,-0.0304826684,-0.0366835147,-0.0300190542,-0.0123872058,-0.016154075,0.0049005528,-0.0081494777,0.0056140847,-0.0533156954,0.0358432122,-0.0350318886,-0.0737726912,0.0056611705,-0.0469989441,0.0240210388,-0.0303667653,0.0294685122,-0.0570825636,0.0209640786,0.017095793,0.0437536389,0.0070592589,0.0291787516,0.0336989947,0.0430292413,0.0040022992,-0.0613709986,0.0350318886,0.0204714872,-0.0202107038,0.0182838067,0.0210075434,0.0344813466,0.0469120145,-0.0283819139,0.0015773767,0.0061211633,0.0039841891,-0.0434928574,-0.0116121005,-0.0079031819,0.0249627549,-0.0265564322,0.0124379136,-0.0094244182,-0.0348870084,0.0054076314,-0.0770759508,-0.0296423677,0.012495866,-0.0075989352,-0.0087072644,0.0265419427,0.0288745053,-0.0350318886,-0.0115251727,0.0176028721,0.04291334,-0.01626998,0.0303377882,-0.009156391,-0.0181823894,-0.020239681,0.0016679264,-0.0279182997,0.0138070267,-0.0084754564,0.017255161,-0.0325979106,0.0051432261,-0.0248323642,-0.0127638932,0.0369153246,-0.0170233529,0.0295409504,0.0113802925,0.0164293479,-0.0511135235,-0.041145809,0.0486505702,0.0551122017,0.039146468,-0.0395231545,0.0217609163,-0.0478102677,-0.002593345,-0.0412327349,0.0027038157,0.0187329333,0.0235284474,0.0053098374,0.0021768161,-0.0167335942,-0.0454921946,0.0386249013,-0.0505919568,0.0042159962,0.0293091442,-0.0255422741,-0.0193848908,-0.0248033889,0.0126842093,0.0314388722,0.0204714872,-0.0608494319,-0.0187763963,-0.0176318474,-0.0014044266,0.0004323751,-0.0194428433,-0.0106921149,-0.0095837861,-0.0372920111,0.0185011253,-0.0255277865,0.0152992858,-0.0108007742,0.0036491549,0.0325109847,-0.0147704752,-0.006523204,0.0397259891,-0.0047882707,0.0348580331,-0.0139881261,0.0517799705,0.0032887671,-0.002888537,0.0161685646,-0.0435218327,-0.0018146171,-0.0026404308,-0.0225867294,0.0141040292,-0.0492011122,-0.0016208405,0.0187184457,-0.0072222482,0.0282370355,-0.009120171,0.0285267942,0.0027092486,-0.0055887308,-0.0013645848,-0.0143865449,-0.0113150971,0.0131985322,0.0620664209,-0.0147414999,0.002209414,-0.0687888339,-0.0544167794,-0.102458857,0.0074685435,0.0203990489,0.0278893244,-0.023934111,0.0092578065,0.0180954617,0.0125538176,0.0001650269,-0.0028939701,-0.006229823,0.0077003511,0.0510555729,-0.014422765,-0.0625300407,0.001090219,0.0060088816,-0.0179360956,0.0340467058,-0.0291497763,-0.0200948007,-0.0452024378,-0.0065413141,-0.0004384872,0.0251366105,-0.0287441127,0.0124741336,0.0298451986,0.0249627549,-0.0280486904,0.0056104627,-0.0231372733,-0.006994063,-0.0207177829,-0.0263391118,0.0218043812,0.0104747955,-0.0443331599,0.0082291616,-0.0386249013,0.0271649249,0.0384220704,-0.0028831041,-0.0043500103,0.011242657,-0.0386828557,0.0151978703,-0.0113078533,-0.0289904084,0.0316706821,0.0026621628,-0.0299321264,-0.0104603078,-0.0567058772,-0.0267737508,0.0664707646,0.0201817285,-0.0208336879,0.0500993654,0.0573433489,-0.0176897999,0.0078524742,0.0154731413,0.0410878547,0.0438115932,-0.0107500665,0.0111774616,-0.0486505702,-0.0083016017,0.022050675,0.0006777649,-0.0251655877,-0.03253996,-0.0436377376,0.0287441127,-0.0200513378,0.0483608134,0.0283384509,0.0242673345,-0.0062515549,-0.0106414072,-0.0405083373,0.0145096928,0.0044767796,0.0134520708,-0.0029537329,0.0237892307,0.0149081117,-0.0351188146,-0.0208191983,-0.0402765311,0.0375527926,0.0009679769,0.0572564192,0.0021134312,-0.0121626426,0.0554599129,0.0061428952,0.0521276817,-0.0175449196,0.0183272697,-0.0229199529,0.0189357642,-0.0446808711,0.0193559155,0.0414645411,-0.022760585,0.0066970596,-0.0555178635,0.0012993889,-0.016545251,0.0515191853,0.0125683052,-0.0409139991,0.0238616709,-0.0087941922,-0.0326268859,0.0323950797,0.0267592631,-0.0136838788,-0.0083740409,0.0083740409,0.0139446622,-0.03552448,-0.0181099512,-0.0479841232,-0.0388856865,-0.022441851,0.0152992858,0.0375817679,-0.0109818736,-0.0468250886,0.0339887552,-0.0277879089,-0.0671082363,0.0146763036,0.0020826443,0.0652537718,-0.0464484021,-0.0205004644,0.0272953175,-0.0772498026,-0.0144807165,-0.0205439273,-0.0352347195,0.0674559399,-0.0139301736,0.0387408063,-0.0396970101,0.0101995245,-0.0059617958,-0.0155455815,-0.0061682491,-0.0076351552,0.0391174927,0.0262232088,-0.0140243452,-0.0052808616,-0.0166901313,0.0013600573,-0.018356245,-0.0043572541,0.034944959,0.019573234,0.0213117898,0.044130329,0.0234704968,0.0035423064,-0.0035477392,-0.0380743593,0.0030732586,0.038045384,-0.0185590778,-0.0227895621,-0.0354085751,-0.0711648613,-0.0297872461,0.0105255032,-0.0063565928,0.0567348525,-0.0115758805,0.0134665594,0.0665866658,-0.0147704752,0.0204425119,-0.0114237564,-0.0096562253,0.0049331505,-0.0546485856,-0.0070918566,0.0133434115,0.0216160361,0.0241224542,-0.0289759208,0.0158353411,0.0068238294,0.0268896539,-0.0312650204,-0.0101488158,-0.009866301,-0.0431741215,-0.0419571325,0.0338728502,-0.0128435772,0.0042377282,-0.0483028591,-0.0526492484,-0.0240934789,-0.0035549833,0.0100184251,-0.0400737002,-0.0057734521,0.0031873514,-0.0464773774,-0.0040566288,-0.0153137743,-0.0412327349,-0.0503311753,0.0090984395,0.0438115932,0.025745105,0.0146690598,-0.010141572,0.01996441,-0.0196456742,0.010141572,0.0237457678,-0.0209930539,0.0182548296,0.0202976316,-0.0169654023,0.0058966,-0.0140750539,-0.002908458,0.0352636948,0.0066282419,-0.0183272697,0.0171682332,0.0013953717,0.0082291616,0.0119308354,0.0021659501,-0.0101922797,0.0049295286,0.0584734082,-0.0034137256,-0.0091346586,-0.0331484526,-0.0030551488,-0.0137200989,-0.0305695962,0.0224998016,0.0296568554,-0.0024901181,0.021224862,-0.0173710641,-0.0351767689,0.036277853,0.0169654023,-0.034394417,0.0019232767,-0.0072439802,0.0157918762,-0.0202686563,0.0031710523,0.0179071184,0.0206163675,0.0015112754,-0.0290773362,0.0254118834,-0.0184866376,-0.008055306,-0.0146473283,0.0053062155,0.0327717662,0.0019015447,0.0092722951,-0.0224853139,0.0346841775,-0.005146848,-0.0064906063,-0.0072222482,-0.0519538261,-0.0298741739,0.019573234,0.0199064575,0.0219782367,0.0366545394,-0.0108369943,0.0201962162,-0.0064942283,-0.0263101365,-0.0449996032,-0.0171102807,-0.009902521,-0.0210944712,-0.0231517609,0.0042159962,-0.0247744117,-0.0156469978,-0.0265274551,-0.0183707345,-0.0234704968,-0.0334092379,0.0172261856,-0.0111267539,-0.0299031511,-0.0206743199,0.0011427379,-0.0127928695,0.0345682725,0.0196456742,0.0146111082,-0.0100256689,0.0215146206,0.0257885698,0.0399577953,-0.0035151413,-0.0135245109,0.0304826684,0.0230213683,-0.0228764899,-0.0076713748,0.0232966412,-0.0471148454,0.0166032035,0.0411747843,-0.0050816522,-0.0100981081,-0.0227460973,-0.0216739886,0.0434349068,0.0255567618,0.0200368501,-0.029164264,-0.0430871956,-0.0104820393,0.0137056103,0.0236443505,-0.0378135778,0.0201527532,-0.0128073571,-0.0129522365,-0.0269765817,0.0106341625,0.0418991819,-0.0172261856,0.016154075,0.0140605653,-0.0227750745,0.0057951841,0.0022528779,0.0373499617,0.0166032035,-0.0213987175,-0.0032760901,-0.0314968266,-0.0052917274,0.065601483,-0.0327138156,0.0185590778,-0.0387408063,0.0170813054,-0.0071135885,-0.010648651,-0.0308883321,0.0148936231,0.0250931475,0.0286426973,0.0012405316,-0.0046687452,0.0117859561,0.0156614855,-0.0075409836,0.0117859561,0.0136476588,0.0405373126,-0.023383569,-0.0097938608,-0.0059038438,0.0246729963,-0.0427684598,-0.0412037596,-0.0385090001,-0.0123002781,-0.0008489039,-0.0061682491,0.0446808711,-0.039146468,-0.0418412313,0.0019377647,-0.0357273109,0.0007049298,-0.027628541,0.0040167868,-0.0263680872,0.0361909233,-0.0418991819,-0.0113875372,-0.0801474005,0.0123002781,-0.0317286327,-0.0233401041,0.058212623,-0.0092650503,0.0193704031,0.0223694108,0.0000093238,-0.03253996,0.0147559876,0.0059545515,0.0352926701,-0.010887702,0.0268461909,-0.0158353411,-0.0337859243,0.0015529282,-0.0159077812,0.0192545,0.0036708869,0.0085696289,-0.0109818736,-0.0443911105,0.0115758805,-0.0326558612,0.0162265152,0.0529969595,0.0040638731,-0.0221231151,-0.0291932393,0.0133796316,0.0036165572,-0.0230793208,-0.0074612997,-0.0012369097,0.000627057,0.0066246199,0.0005179446,0.0375238173,-0.0057480983,0.0390885174,-0.0303377882,0.0047266972,0.0058060503,0.0149081117,-0.031322971,0.0039189933,-0.0111919492,-0.0156614855,-0.0396970101,-0.023383569,-0.0180230234,-0.0045709517,0.0670502782,0.0028142864,0.0001232608,0.0260783285,0.0105472356,0.0243977252,0.0102647198,-0.0118221752,0.0051070061,0.009431662,0.0097214216,-0.0000741942,0.0013618682,0.0179360956,-0.0084827011,-0.0241514295,-0.0251076352,0.0078814505,-0.0181244388,0.0132564837,0.0101053519,0.0068854033,0.001070298,-0.0985181332,-0.0586472638,0.0353795998,-0.0105689671,-0.0043391441,0.0150240147,0.0365386344,0.0249482673,0.0218623318,-0.0066789496,-0.0048281127,-0.0472307503,-0.030424716,-0.0002777614,-0.0093519781,0.0045419754,0.0148936231,0.039262373,0.0224998016,0.0228620023,-0.0282370355,0.0034245916,-0.0383061655,0.027947275,0.0043174122,0.0010168737,-0.0218623318,0.0338148996,-0.0065702898,-0.0085623842,-0.0128001133,-0.0304536931,-0.0049512605,0.010808018,0.0013075385,0.0274981484,-0.0065521803,0.0087579722,-0.0034843546,-0.0034771105,-0.0151254302,-0.0250062197,0.0482738838,-0.0319314636,0.0538372621,-0.0460717157,0.0006678044,0.0233980566,-0.0268751662,-0.0118221752,0.0356403813,-0.0158932917,0.0054184971,0.0002322601,-0.0189067889,0.01037338,-0.0345392972,-0.0071570524,-0.008526165,-0.0153427497,-0.0253539309,0.0060559674,0.0089028515,-0.0467961133,-0.0079249144,-0.0163713954,0.0033249869,0.0356693603,-0.0218478441,-0.0199209452,0.0546196103,0.0276864916,0.0185445901,-0.0045926836,-0.0020645345,0.0151399188,0.0098155933,-0.0203555841,-0.0321053192,-0.0040059211,0.0158643164,0.0098445695,-0.0138432458,0.0024086235,0.0129449926,0.0281645954,-0.0002981351,-0.025194563,0.0218478441,-0.0098880334,0.0432900265,0.0114092687,-0.0245426055,0.0260928161,0.0063964347,0.0530549102,0.033206407,0.0216450132,0.0062587988,-0.0037560037,0.0408560485,-0.0107500665,0.0180664863,0.0231082961,-0.0100256689,-0.0252235383,0.0206598323,-0.0091491472,0.0033340419,0.0256002266,-0.0004239992,0.0074902754,0.0158353411,0.004675989,0.0046397694,-0.0020989433,-0.007722083,0.0132130198,-0.0109601421,-0.0321342945,0.049085211,-0.0150819672,-0.0052917274,0.0492880419,-0.0274257082,0.0228764899,0.016545251,0.011749736,0.002968221,-0.0134086078,-0.0038827735,0.0463614725,0.0030279837,0.0308593549,0.0199499223,-0.0230793208,0.0310911629,-0.0117207598,0.0244122129,0.0111557292,0.0047592949,0.0309173074,0.0036600209,0.0038936394,0.0079176705,-0.0041616666,-0.0213697422,-0.0046506352,-0.0253684185,0.0432610512,0.0508237667,-0.0170523301,-0.0248468518,0.0414935201,-0.0164872985,0.0431161709,-0.0325689353,-0.0136983665,-0.014937087,-0.0103661353,0.0172261856,0.0219492596,0.0304826684,-0.0059002219,0.029671343,-0.0248178765,-0.0401606262,-0.0015058424,0.0045745736,0.02365884,-0.0059002219,-0.0046651233,0.043550808,0.0192545,0.0224128738,0.0320763439,-0.0009906143,0.0268461909,-0.0006714264,0.0119525669,-0.0213117898,0.0009254185,0.0311201382,0.0574882254,0.0466222577,-0.0113295848,-0.0098880334,0.0166611541,0.0104892831,0.0348580331,0.0137635628,0.0081277462,0.0286282096,0.0478392467,-0.0065956442,0.0129594803,0.0204569995,0.0049621263,-0.0015502118,0.019573234,0.0074830316,0.0155455815,-0.0107500665,0.0013564352,-0.0099314973,0.0266578477,-0.003303255,-0.0024937403,-0.0380164087,0.0103516476,0.0044043399,0.0239196233,0.0149081117,0.0032036502,-0.0218188688,0.0275705885,0.0025987779,0.0020609123,-0.023818206,-0.0197760668,-0.055923529,-0.0257885698,-0.0069904411,0.0103878677,-0.0114310011,0.0352926701,0.0102719637,-0.0091853673,-0.0040457631,0.008294357,0.0014587565,0.0219492596,0.0230358578,0.0080263298,0.0213117898,0.0077365707,0.0024955512,0.0161830522,-0.0065159602,0.0023669705,-0.0050381883,-0.0015239523,-0.0004663312,-0.0129522365,-0.0089390716,-0.0166176911,0.0464773774,0.0369442999,0.011988787,0.0089752916,0.0211234465,0.0030913686,0.005816916,-0.0029899529,0.0237602554,0.0053858995,-0.0017774916,0.006523204,-0.0218333565,-0.0219347719,-0.0118873715,-0.0011608478,-0.0120902034,0.0152268466,0.0046144156,-0.0073127979,-0.0119742993,-0.0248033889,0.0118873715,-0.0035567943,-0.0380164087,0.0405373126,0.001676076,-0.0235574227,0.0094823698,0.0426815301,-0.0357273109,-0.0101922797,0.0047991369,-0.0116917845,-0.0170233529,0.0015674162,-0.011358561,-0.0093230028,0.0433769524,0.0159077812,0.0006601077,-0.0183417574,-0.0042594601,-0.0261073038,-0.000374876,0.0180954617,-0.0182982944,0.0136911226,-0.0021279191,0.0129884565,0.0237892307,0.0134665594,0.0232821517,-0.0325979106,0.0176463351,-0.0130246766,0.002946489,0.0317286327,0.0153862135,0.0283964016,-0.0023235066,-0.0015728492,-0.0185735654,0.0190082043,-0.0178491678,-0.017805703,0.0403344817,0.0391174927,-0.0011246279,0.0015311963,0.0276140533,0.0004482213,0.0016262735,0.0418412313,0.0061356514,0.0104530631,0.0178781431,0.02365884,-0.0180519987,-0.0174290165,0.0262087211,0.0091636349,-0.0201817285,0.0215291083,-0.0054873149,0.011909103,0.0088231675,0.0243542623,-0.0301639345,0.0138504906,0.0154731413,0.010612431,0.009511346,-0.010141572,0.0006026086,0.0082074292,-0.0114817088,-0.010257476,0.0099387411,-0.0004140387,0.0221086275,-0.005443851,-0.0096707139,0.0176897999,0.0638629273,0.022007212,-0.0206453428,0.005443851,-0.0000366161,-0.0060632112,-0.0011508873,0.0082001854,-0.008214674,0.0425076745,-0.0138939545,0.0270345341,-0.0165307634,0.0092650503,-0.0088448999,0.0022130359,0.018979229,0.0127856247,0.0176753122,-0.0191241074,0.0350318886,0.0180664863,0.0017847356,-0.0240789894,-0.0113513172,0.0004430147,-0.0237892307,-0.0325689353,0.0032453032,0.0067043039,-0.0182693172,-0.0328876711,0.014698036,0.0233256165,-0.0109963622,-0.0007687674,-0.0222100429,0.0277444441,0.0083233332,0.0167625695,-0.0347711034,-0.02884553,-0.0024339773,0.0140895415,-0.0212683249,0.0311780907,-0.0068926471,-0.0160526596,-0.0030297947,-0.0422179177,-0.0112281693,0.0019540638,-0.0138939545,-0.0262956489,-0.0081060138,-0.0199354328,0.0268606786,-0.011713516,0.0090984395,0.0197036266,-0.0038175776,0.013872222,-0.0192255229,0.011438245,-0.0394362286,-0.0385379754,0.0365676135,-0.0265274551,0.0009851813,-0.0339887552,-0.0232242011,0.0073924819,0.0051577138,-0.0118728839,0.0248033889,0.0392044224,0.0143865449,0.0224128738,0.0154876299,-0.0244701654,-0.0277009811,0.0234994721,-0.0211958867,0.0185011253,-0.0008760688,-0.0082581379,0.0186604932,0.0080842823,-0.0063058846,0.049085211,0.0215580855,-0.0195152834,-0.0050381883,0.0038719075,0.0069288672,-0.0151109425,-0.0509686433,-0.0039769453,-0.0104892831,-0.0194573309,0.0325979106,0.0303377882,-0.0367994197,0.0300190542,0.0015004094,0.01847215,-0.0292656794,-0.0326558612,-0.0183417574,-0.0140171014,-0.0185445901,0.0160526596,0.016588714,-0.0020754004,0.0223549232,0.0195877217,0.0150240147,0.0003508803,0.0005451095,-0.0101705482,0.0171682332,0.0105399908,0.0011382104,-0.0144300088,0.0203990489,0.0222969707,0.0091491472,-0.0056829024,-0.0024176785,-0.0056213285,-0.0049983463,-0.0029501109,0.04111683,-0.0059762835,0.0131985322,0.0105979433,-0.0053895214,-0.0018037511,0.0397259891,0.0075337393,-0.0450575575,0.0406821929,-0.027903812,-0.0308883321,0.0260928161,-0.0085189203,0.0186025407,0.0074757878,0.0181679018,-0.0033593958,-0.0143213486,-0.0274546854,0.0145604005,-0.0150095271,0.0154007021,-0.05149021,0.0373499617,-0.0306275487,-0.0061139194,-0.0144807165,-0.006682572,0.0291497763,0.0048317346,-0.0104603078,0.0291787516,-0.0215435978,0.0017331223,-0.0211089589,0.0055307788,-0.004302924,0.0246295333,-0.0242963098,0.0047448073,-0.002946489,0.0048896866,-0.0104313316,-0.0062189568,0.0121481549,-0.0041145808,-0.0021876821,0.0495488234,0.0030714476,0.0224708263,0.0343364663,-0.0040022992,0.0121916188,-0.0109166782,0.000084947,0.0011970677,-0.0195877217,0.0057662083,-0.0199354328,-0.0088231675,0.0264260396,0.0142126894,0.0207467601,0.0260348655,0.0233690795,-0.0340467058,-0.0129884565,-0.02664336,0.0002988142,0.0052772397,-0.0323661044,0.0044369381,0.0237457678,-0.0111702178,-0.0077293268,0.0093592228,0.0057010124,0.0200368501,0.0139953699,-0.0101198405,0.0194428433,0.0218478441,-0.0264839921,0.0214856453,0.0312939957,-0.0170668177,-0.0455211699,-0.0103299161,-0.0062950188,0.0406821929,-0.0157773886,0.0086348243,0.0148139391,0.0421889424,0.0097648855,0.0302508604,-0.017805703,0.006918001,-0.0264984798,0.007272956,-0.0114889527,-0.0176028721,-0.00664273,0.0267302878,-0.0206888076,0.0605017208,-0.0048426008,-0.0129377488,-0.0196166988,0.0026349977,-0.0070483927,0.0523305126,0.0172986239,0.0052663735,0.0341915861,0.002917513,-0.000737075,-0.0480131023,-0.0359591171,-0.0111557292,-0.010967386,-0.0253829062,-0.0052446416,0.0054510953,0.0166756418,0.0072657121,-0.0123002781,-0.0093592228,-0.032424055,0.0190082043,-0.0198774822,0.0068528051,0.0138215143,0.0275850762,-0.0348290578,-0.0600381084,0.0292511918,-0.00258429,0.0465063527,0.0323661044,-0.0022402008,-0.0021677611,-0.0045274878,0.0264260396,0.030656524,-0.0134086078,-0.0006714264,0.0179216061,-0.0106703825,-0.0042775702,-0.0376397222,-0.0055778646,0.0281501077,-0.0239630863,0.0021333522,-0.0154586537,0.0217609163,0.0073562618,0.0049150405,0.0050164564,0.0055452669,0.0148284277,-0.0022239019,0.0361039974,0.0308593549,0.0240065511,0.0063348608,-0.015878804,0.0161830522,0.0134230955,-0.0016715485,0.0212538373,-0.0143575687,-0.0045238654,0.0038248214,0.0024375992,-0.0103661353,0.0327427909,-0.007722083,-0.001796507,-0.0257306173,0.0276575163,-0.0002056611,-0.0208626632,0.0224853139,0.0015493062,0.0177042875,-0.0030044408,-0.0049367724,-0.0213407651,-0.0155310938,0.0381612889,0.0190371796,0.0328586958,-0.0094099306,-0.007664131,-0.0203266088,0.0449706279,0.0037994676,0.0319314636,-0.0124668898,0.0306854993,0.0014560401,-0.0032108943,0.0211379342,0.02735327,-0.0309752598,-0.0281356182,0.0330615267,-0.0390015878,0.010061889,-0.0131478244,0.0338438749,0.0003368451,-0.0107573103,-0.0133289238,0.0000578104,0.0099459849,0.0202251934,-0.0165017862,-0.0233690795,-0.006211713,-0.0076423991,-0.0008443765,0.0311780907,-0.0434059277,-0.0107862866,0.0455211699,0.0228909776,0.0096924454,0.0101560606,-0.0109891184,-0.0000518397,0.0283239633,-0.0132999476,-0.0113078533,-0.0160236843,0.0037197839,0.0034245916,0.0124234259,-0.0240210388,0.0155745577,-0.0543878041,0.0126986969,0.0239485987,-0.0187908839,0.0030968015,0.0158063639,0.0106631387,-0.0049222847,-0.0110760462,0.0311491154,-0.0304826684,0.0193704031,0.0265854076,0.0164583232],"121":[-0.0039991471,-0.0151747977,0.1006552428,-0.004101871,0.0319648385,0.0334950723,0.0289893895,-0.024072811,-0.0299812071,0.0495341681,-0.0187595077,-0.0374340005,0.0064290985,-0.0243136808,-0.0005074206,0.0469271056,0.0039176764,-0.0082887551,-0.047210481,0.0219191518,-0.0328149684,-0.0031897537,0.0175268203,-0.0049236622,0.0328433067,-0.0196804795,0.0189862084,0.0525946319,0.0227267742,-0.0632495806,0.0310863741,-0.0199213494,-0.031426426,-0.0191420652,0.0566752478,-0.0065672444,0.0151606286,0.0600757636,-0.0140058706,-0.0138783511,0.0047005033,0.0178810414,-0.0202047266,-0.0053203888,-0.0518295132,0.0034146837,-0.0255747065,-0.0575820506,0.0138854356,0.0671601668,-0.0624561235,0.0142467404,-0.0638730079,0.0083737681,0.0435832664,-0.0183202736,0.010548681,0.0406644903,0.0189011954,-0.0421663858,0.0120576592,-0.0521412268,0.0257163942,0.0314547643,0.0030338969,0.0312847383,0.0007327932,0.0499875695,-0.0163649786,0.0231801774,0.0426197872,0.0217207894,0.0180368982,-0.0512060858,0.0038999654,0.0031685005,0.0514894649,0.0102936421,-0.0279408973,-0.0245687198,0.020658128,-0.0021465751,-0.0064468095,0.0397860259,0.0638730079,-0.0480889492,-0.0426197872,-0.0211540367,-0.0114271473,0.0071587921,-0.0178101975,0.0532747321,0.0072969384,-0.0077432557,0.0460203029,0.0203039069,0.0372073017,-0.0188445207,0.0003756949,0.0010679743,0.0094718505,-0.0044738026,0.0152456416,-0.0252771601,0.0016967152,-0.0327299573,-0.0380574279,0.0086571444,-0.0066983057,0.0135383001,-0.0374056622,-0.0030994276,-0.0892635137,0.0096843829,-0.0098260716,0.0087634102,-0.0417696573,-0.0003630758,0.0251921471,0.0082320794,-0.011738861,0.0126031581,-0.0146363825,-0.0170875881,0.0037618196,-0.0166200157,0.0056214761,-0.0448584594,-0.0190003775,0.0019411272,0.0434132405,-0.0139633641,0.033126682,-0.0244270321,-0.0328999832,-0.0146222143,-0.0242995135,0.0545215905,-0.0146647207,0.0128723662,-0.0204172581,0.0165208355,0.0077645089,0.0000244495,-0.0732810944,0.0503842942,-0.000658407,0.0574687012,-0.0137295788,0.0140483771,-0.0089263516,0.0401544124,-0.0476638824,-0.0100244349,0.048145622,0.0313697495,0.0017976681,0.0217066202,-0.0112004457,-0.0421380475,-0.0165066663,0.0215365943,-0.0088484231,-0.0088767605,-0.0055577164,0.0181360804,-0.0728843659,-0.0278700534,-0.0951577425,-0.0598490611,-0.0388792194,-0.0097552268,0.0149197588,-0.0111296019,0.0019163318,-0.0177676901,-0.0201905575,-0.0563635342,0.0423930846,-0.0325032547,-0.0450568236,0.0068470784,-0.0242286678,0.0251921471,-0.0161524452,-0.0115971724,-0.0534447581,0.0378590673,0.0086996509,0.0196096357,0.0154723432,0.0435832664,0.0228968002,0.0444900692,0.0060323719,-0.038000755,0.0378023908,0.0118876332,0.0102298828,0.0191987399,0.0483723246,0.0301512312,0.0601324402,-0.0173851326,0.0022935765,0.0095568635,0.0277000275,-0.0106407776,-0.03876587,-0.002339625,0.0106053557,0.0072402628,0.0149197588,-0.0177393518,-0.0243703574,0.007679496,-0.0854095966,-0.0125039769,0.0112783741,-0.0173284579,-0.0183769502,0.0235769041,0.0382557921,-0.0145513704,-0.0203605834,0.0324465781,0.0227834508,0.0011441315,0.0402961001,-0.0091601368,0.0025220485,-0.0002599091,-0.0027328096,-0.0316814631,0.0308880098,0.0048209382,0.0213665683,-0.0448301211,0.0011521016,-0.0125535671,-0.0045906953,0.0236619171,-0.0221316852,0.0468987674,-0.0205589458,0.0130140539,-0.0506109968,-0.0538981594,0.045680251,0.0804221779,-0.0136941569,-0.076738283,-0.0146505516,-0.0348552763,-0.0323899053,-0.0433565639,-0.018532807,-0.0041727154,0.0343168639,0.0235343967,0.0321065299,0.0056710672,-0.0309163481,0.0266798735,-0.0296128169,-0.0163508095,0.0271049384,-0.0029825349,-0.0095781172,-0.0251779798,0.0372923128,0.0175409894,0.0198788438,-0.0508943722,-0.0135170463,-0.014678889,-0.0144096818,-0.0277850404,-0.0174701456,-0.0298395175,-0.0127165085,-0.017838534,0.0341468379,-0.010329064,0.0200063623,0.0088413386,-0.0165775102,0.0442917049,-0.001046721,-0.0200347006,0.0036449269,-0.017838534,0.038340807,-0.001265452,0.0217916332,0.0389075577,-0.0202188957,0.0080549698,-0.0324749164,-0.0083737681,0.0068789581,-0.0148630841,0.0204314273,-0.0232085139,-0.0010254678,0.0570719764,0.01413339,0.0288051944,-0.015798226,0.0116184261,-0.0363855101,0.0273174699,0.0133753587,-0.0022918053,-0.0665367395,-0.0118876332,0.0756047815,-0.049420815,0.0408345163,-0.0568452738,-0.0214657504,-0.097764805,0.0072827693,0.0350536406,-0.006021745,-0.0230101515,0.0455952361,0.0295278039,-0.0067620655,-0.0173142888,0.0002926745,-0.0073890355,0.0059756967,0.0334950723,-0.0354503691,-0.0438949801,0.0079982942,-0.032531593,0.0008173633,0.060019087,-0.0252204854,-0.0162657965,-0.0573270135,0.0002326785,0.023987798,0.0193404276,0.0008983912,0.0179093778,0.0337784477,0.0106053557,-0.0472954959,-0.0005552403,0.0020102002,0.0213807374,-0.0025078796,0.0078353528,0.0107116215,0.0099252528,-0.0180510674,-0.006422014,-0.0480606109,0.006422014,0.0369522609,-0.0257305633,0.005759622,0.0159257445,-0.0420813709,0.0135028781,0.0045800684,-0.0168608855,0.0071162861,-0.0224292297,-0.0420246981,-0.0275016651,-0.0411745682,-0.0447167717,0.0115121594,0.0570436381,0.0244837068,0.0646097809,0.04627534,0.0045481888,0.0123977102,-0.0058517195,0.0467004031,0.0443483815,-0.0595656857,0.0189153645,-0.0370372757,0.0063086636,0.0155573552,0.003627216,-0.0112146148,-0.0215507634,-0.0484006628,0.0302645825,0.0206864662,0.0474938564,0.0289327148,0.0260847826,-0.038340807,-0.0158549007,-0.0348269418,-0.019552961,0.0128369434,0.0039885207,-0.0059154793,0.0038857968,-0.0000533821,-0.0284934808,0.0078211846,-0.0246820711,0.0299245305,-0.022967644,0.0447167717,0.0092097279,-0.0154156676,0.0757748038,-0.016478328,0.0223017111,-0.0333533846,-0.0286493376,-0.0291877538,0.0249654464,-0.0807622299,0.006191771,0.0268498994,0.0028727266,0.0186603256,-0.0276716892,-0.0094860196,0.0173993018,0.0476072095,0.0099394219,-0.0231801774,0.0275441706,0.0269632488,-0.0298961941,-0.0076653273,-0.0114129782,-0.0027328096,-0.0229393076,0.0231660083,0.0451418348,-0.0401827507,-0.0165916793,-0.0300378818,-0.0394176356,0.020233063,0.0223300476,0.0324749164,-0.0128015215,-0.0258864202,0.0154865114,-0.0431865379,-0.0698805824,0.0281250924,-0.0258580819,0.0757748038,0.0064468095,-0.0179093778,0.0006296266,-0.0544932522,-0.0087634102,0.0183061045,-0.0070773214,0.0475221947,-0.034401875,0.0013159284,-0.0086217225,-0.0298111811,-0.0076299054,0.0052424604,0.0180227291,-0.0194112733,0.0358187556,0.0192554165,-0.0323048905,-0.0281817671,-0.0386808552,0.0280400794,0.0003996048,0.0143955126,0.0261556264,0.0116467634,0.04627534,0.0105557647,-0.0138925202,0.0063830498,-0.003402286,-0.0160107575,0.0112712905,0.0300662201,-0.0178101975,-0.0180794038,0.0285501555,-0.0818390623,-0.0144309355,0.0341751762,-0.0305762962,0.041741319,-0.0153023172,0.0388508812,0.0266231988,0.0065034847,0.0079982942,-0.0147072272,-0.0376890413,0.0145513704,-0.0284934808,-0.0147355646,0.0213665683,0.0120576592,0.0209981799,-0.0214657504,0.0348269418,-0.0055081258,0.00509723,-0.0127731841,-0.0097056367,-0.02014805,-0.03876587,-0.0293577779,0.0211823732,-0.0069710556,0.0020491644,-0.0417696573,-0.0320498534,-0.022202529,-0.0054691616,0.0086571444,-0.0207006354,0.004587153,0.0499875695,-0.0343452021,0.0143742599,-0.0225284118,0.0051999539,-0.0351953283,0.0160249267,0.0377457142,0.0226984378,0.009818987,-0.0030852589,0.0073961201,0.0024033848,0.050044246,0.0019269584,-0.0275016651,0.0284226369,0.019382935,-0.0084162746,0.0068222829,-0.0192412473,0.0016285279,0.0067089326,0.0100881942,0.0106266094,0.0321632028,-0.0261697955,0.0050511817,0.0194112733,-0.0087563256,-0.0289043766,-0.0359037705,0.0455952361,0.0108745629,-0.0011228784,-0.0281534288,-0.000423736,-0.018277768,-0.0115971724,0.0299245305,-0.0256455503,-0.0101944599,0.0155148497,-0.013488709,-0.0252488237,0.0189295337,-0.0104778362,-0.0498458818,0.0148347467,-0.01681838,0.0240869801,-0.0142609095,0.0253621731,0.0142963314,0.0129077882,-0.0258439127,-0.0061138426,0.0581488051,-0.0100527722,0.0186319873,-0.0166200157,0.0169458985,0.0330700092,0.0147072272,-0.0013345249,-0.0101023633,0.0223158784,0.0278558843,0.0089263516,-0.0167758744,-0.0280542485,-0.0302645825,0.0183911175,-0.0049449154,0.032191541,0.0182210915,-0.0228259563,0.0089759426,0.0113208806,-0.0300945565,-0.0405228026,-0.0217916332,-0.0070241885,-0.0355920568,-0.0130282231,0.0251213033,-0.0156565364,-0.0088838451,-0.0379157402,-0.0196521431,-0.0266090296,-0.0234635528,0.0376890413,-0.0281534288,-0.0504409708,-0.0135949748,0.0201338828,-0.0108745629,0.0390492454,0.0212815553,-0.0009732203,-0.001395628,0.0104282461,0.017498482,0.0041691731,-0.0011990357,-0.0113421343,0.0337501094,0.0316814631,-0.0136516504,-0.0059154793,0.0300378818,-0.024412863,0.0280967541,0.0032163204,-0.0161241088,-0.0022705521,-0.020658128,-0.0384258181,0.0392192714,0.0050440971,0.0201055445,-0.0184619613,-0.022967644,-0.016478328,0.0135595528,0.012333951,-0.0311147105,0.0213382319,-0.0102653047,-0.0041089556,-0.0141475592,0.0077149183,0.0374623388,0.0254330169,0.0484573357,0.0163083021,-0.0018401744,0.0162091218,0.0086500598,0.0393326208,0.0153873302,0.0046827924,-0.0100102657,-0.0117530292,-0.0116821853,0.0717508644,-0.0531047061,0.0355637185,-0.0610392429,0.0224150605,-0.0064149299,-0.0069462601,-0.0111933611,-0.0001824234,0.0104778362,0.0225000735,0.0099960966,0.0082533332,0.0173001196,0.0153731611,-0.0157557186,-0.00840919,-0.003104741,0.0529063456,-0.0078920284,0.0125181451,0.003418226,-0.0038964234,-0.0346002392,-0.0548049659,0.0043214876,0.0229109693,0.0223017111,-0.0174418073,0.0208423231,-0.0400127247,-0.0247529149,0.0238744486,-0.0142467404,-0.003418226,-0.0363571718,0.0261981338,-0.028521819,0.0322482176,-0.0328433067,-0.0357337445,-0.0804221779,0.0128511125,-0.0290460642,-0.0082320794,0.0331833586,-0.018447794,-0.0072827693,0.0330133326,0.0016090458,-0.0362438224,0.0289893895,-0.005182243,0.0299245305,-0.0170875881,0.0265381858,0.0051149414,-0.0344868898,0.018277768,-0.0340051502,0.0294144545,0.0034164549,-0.0267790556,-0.0175693277,-0.0418546721,0.0213523991,-0.0187170003,0.0149055906,0.0350819789,0.0144096818,-0.0274308193,-0.0191420652,0.0127165085,-0.0236902535,-0.0214374121,0.0051751588,-0.0250079539,0.0066345464,0.0176968463,-0.0013451516,0.0293011032,-0.0055683432,0.020488102,-0.0110870954,0.0217207894,-0.0025078796,0.0056108497,-0.0098827463,-0.016733367,-0.0302079078,-0.0082745859,-0.0399560519,0.0026194591,-0.0104920054,-0.0013929714,0.0474938564,0.0045269355,0.009138884,0.0342035107,-0.0027824005,0.0290744025,-0.0322765522,-0.0043391986,-0.0116396789,0.0043675364,-0.0212957244,-0.0265806913,0.0381991193,-0.0173709635,-0.0272182878,-0.0111083491,-0.0131911645,-0.0099465065,0.0036768068,-0.0098756617,0.0184336249,-0.0314547643,0.0110233361,-0.1003718674,-0.0313414112,0.0430165119,-0.0337784477,-0.0064326408,0.0014531888,0.0166766923,0.015798226,0.0251638107,-0.0063476278,-0.0014177668,-0.0417129844,-0.0321348645,-0.000541957,-0.0022475277,0.0224292297,-0.0144096818,0.0395026468,-0.0005968612,0.0040983288,-0.0264531728,0.004137293,-0.0309730228,0.0382841304,-0.0090609556,-0.006209482,-0.0259856023,0.0287485197,0.000650437,-0.0040062317,0.0099748438,-0.0267648865,-0.0031578741,0.0474088453,-0.0157273822,0.0223867223,-0.0172009375,0.0019464405,-0.0019995735,-0.0057631643,-0.0209981799,-0.0316814631,0.080535531,-0.022372555,0.0570436381,-0.0418546721,-0.0180794038,0.0178952105,-0.0120576592,0.0013132718,0.0072190096,0.0171300936,-0.0087775793,-0.0142609095,0.0045517311,0.0330983438,-0.0215224251,-0.0130990669,0.0148772523,-0.0163366403,-0.0228542946,0.0216782819,0.0134532871,-0.0812723041,0.000380344,0.0029665951,0.024072811,0.0106761996,0.0197371561,-0.0041797995,0.0009386838,0.0182919372,0.0040877024,-0.0093726693,0.0061492645,0.0307179838,0.0058871415,0.0164358225,-0.054889977,-0.0164074842,0.0247104075,-0.0093159936,-0.0097906487,-0.0211823732,0.0089830272,0.0183061045,0.0102157136,-0.0168042108,0.0200772062,0.0113067124,0.0399843864,0.0132832611,-0.0162374582,0.0123410355,0.0003044081,0.0337784477,0.0376890413,0.0030586922,0.0066593415,0.0054054018,0.0254471861,-0.0156140309,0.028861871,0.014218403,-0.0016710343,-0.0230951644,0.0100173503,-0.0090680402,0.0001300653,0.0088413386,-0.0005136195,0.0009829614,0.0063617965,0.0211965423,-0.0056675249,-0.0013053018,-0.0269915871,0.010463668,-0.0133399367,-0.0360454582,0.0046686237,0.0018578855,-0.0186603256,0.0343452021,0.0033137309,0.0183911175,0.0054904148,0.0034270815,0.0068754163,-0.0125039769,0.0109808296,0.0168750547,-0.0029843061,0.0720342398,-0.010888732,-0.0140696308,0.0142325722,-0.0283659622,0.0173993018,0.0178243648,0.0048032273,0.0376890413,-0.0051361942,-0.0423364118,0.020233063,-0.0294144545,-0.0241436567,0.0023785892,-0.0297261681,0.0450568236,0.047380507,0.0002388773,-0.0166766923,0.026042277,-0.0386525206,0.0402961001,-0.0328149684,-0.0300662201,-0.0268498994,0.0275016651,0.0338917971,0.0365555361,0.0400694013,0.0025840371,0.0433849022,-0.034996964,-0.0424214229,-0.0001442341,-0.0076653273,0.0344585516,-0.0148772523,0.0223017111,0.0528780073,0.0165208355,0.0460203029,0.0197088178,-0.0115830041,-0.0123126982,-0.0055400054,0.0173001196,-0.0298678558,-0.0020190557,0.0342885256,0.0270907693,0.0135241309,0.0008514571,-0.024412863,0.0239027869,0.0043002344,0.0278700534,0.0210123491,0.0191845708,0.0246962402,0.0460769758,-0.0222166982,0.0128511125,0.0141758965,0.0039105923,-0.0024334935,0.0173993018,0.0015993046,0.0020385378,-0.0101023633,0.0054904148,-0.013658735,0.026807392,-0.0061350958,0.0179660544,-0.0126527492,-0.0228117872,-0.0014142245,0.0221458524,0.0021129241,-0.009989013,-0.0227267742,0.0069002113,0.0070773214,-0.0098260716,-0.0045658997,-0.0278842226,-0.0522829182,-0.0091176303,-0.0130282231,0.0207148027,0.0078141,-0.002077502,0.0170309115,-0.009904,0.0173284579,0.0256030429,-0.0127306776,0.0279692356,0.0184761304,0.0024494333,-0.0156423692,0.0308313351,0.0084516965,0.0075873989,-0.0051574474,0.0098544089,-0.0028178226,-0.0021235507,-0.0148489149,-0.0173709635,-0.0012433133,-0.0226842687,0.0088767605,0.053954836,0.0260564461,0.012298529,0.0131628262,0.026637366,0.0138429292,0.0109879142,0.0070560686,0.0003159202,-0.0062378193,0.0172859505,-0.0095852017,-0.0049165776,-0.0202188957,-0.0057560797,-0.009053871,0.0184902996,-0.0165916793,-0.0291877538,-0.0027753161,-0.0124047948,0.0108958166,0.0070631527,-0.018447794,0.0432998911,-0.005759622,-0.0425347723,-0.0155148497,0.023307696,-0.0257447325,-0.0047217566,0.0152031351,-0.0035315764,-0.0255321991,0.0044560912,-0.0303495955,0.0057950444,0.0473238342,0.0244412012,0.0129361255,-0.0170592498,-0.0072898539,-0.0475221947,0.0001286262,0.04114623,-0.0105841029,0.0169175621,-0.0104282461,0.0005911051,0.0155006805,0.0232085139,0.0224859044,-0.0181785859,-0.0021660572,-0.0097056367,0.0252629928,-0.0009085751,0.0046579968,0.0266940426,0.0090467865,0.0154014984,-0.0140483771,0.0214090757,-0.0162232891,-0.0049094935,0.0403811149,0.0356770679,-0.0109879142,0.000173568,0.0192412473,0.0107682971,-0.0048776134,0.0247387458,-0.0068470784,0.0257730689,0.0040664491,0.0418830104,0.0167191979,-0.0113350498,0.0291310772,0.007431542,-0.0106903687,0.0094080912,-0.0102157136,0.0193262603,0.0016984864,0.0210406855,-0.0295278039,0.0055187522,0.0100315185,-0.0017454205,-0.0116184261,-0.0138925202,-0.0180085599,0.0170875881,-0.0022599255,-0.0055577164,-0.0371222869,0.0025114219,0.0247245766,0.0157273822,-0.0343452021,0.023987798,0.0719208866,-0.0047607208,-0.0395026468,0.0027824005,-0.0011281917,-0.0025804949,-0.0084871184,-0.0105982712,-0.0324182436,-0.0042010527,-0.0114200627,0.0391342603,-0.0184052866,0.0148064084,-0.0062767835,0.0381424427,0.0039424719,0.0406928286,0.0333250463,-0.0148064084,0.0143317534,0.0051326524,-0.0019783203,-0.023052657,-0.0132620083,0.0051326524,-0.0026088324,-0.0283517931,0.0167191979,0.0590556078,-0.0186461564,-0.0445184074,-0.0195246227,0.0130423913,0.0001070409,0.0012415422,-0.0487690531,0.0432148762,0.0111721084,0.0103078112,-0.0181219112,0.0059934077,-0.0238744486,-0.0013141573,-0.0128015215,0.0424497612,-0.0066699684,-0.0216074381,-0.0040310272,-0.0319081657,0.0025946638,0.0117034391,-0.0173567943,-0.0322765522,-0.0060146609,0.001762246,0.0059934077,0.0015939914,0.0067337281,0.025787238,-0.0059898654,0.0051503633,-0.0184194557,-0.0063547124,-0.027147444,-0.0568452738,0.0080195479,-0.0208139848,0.0123693729,-0.0142254876,-0.0060040341,0.0172576141,-0.006337001,0.0055435477,0.0217491258,0.0271332748,-0.0059013101,0.0258014072,0.0140767144,-0.0219049826,-0.0403244384,-0.005529379,-0.0092522344,0.0045517311,0.0200205315,-0.0150756156,0.0330416709,0.0263398215,-0.0086146379,0.0355920568,0.0052424604,-0.0354220308,0.0077574248,-0.0303495955,0.0115617504,0.0148914214,-0.034061823,-0.0006557503,-0.0209981799,-0.0193120912,-0.0049626264,0.0200772062,-0.0087775793,0.010414077,-0.0070312731,0.0054124864,-0.031596452,-0.0351386555,-0.0205872841,-0.0199496876,-0.0410895534,0.0043675364,0.0138075072,0.0111296019,0.0240586437,0.0204455964,0.0167191979,-0.0238177739,0.003104741,-0.0377740525,0.0330983438,0.0090326173,-0.0099181682,-0.0267648865,-0.0100102657,0.0080053788,0.0150897847,-0.0045658997,-0.0162091218,-0.02493711,0.0115617504,-0.0160816014,0.0401827507,0.0096135391,-0.0113704717,0.0223867223,-0.0065707867,-0.0032234048,0.011788452,0.0221316852,-0.0338634625,0.0378874019,-0.0195387919,-0.0355353802,0.0245545506,-0.0072969384,0.0294994675,0.0148489149,0.0523679294,-0.0021040686,-0.0063015791,-0.0316247903,0.0352236666,0.0015532561,-0.0069072959,-0.0234493837,0.0583755076,-0.0238036048,0.0190853905,-0.0148772523,-0.0042506438,0.002302432,0.0101944599,-0.0205306094,0.0340051502,0.0145655386,-0.0381424427,-0.0151039539,-0.0011892946,-0.0141050527,0.0013451516,-0.0180085599,0.0093301628,-0.007151708,0.0435832664,0.0015373161,-0.0165350046,0.0262689777,-0.0193971042,0.0325599313,-0.0070383572,-0.0151889669,0.0175409894,0.0428181514,-0.0188445207,0.0122206006,0.0076724119,-0.0024706866,-0.0150897847,-0.0303779338,-0.0053451844,-0.014388429,0.0169175621,0.0158123951,0.0186886638,-0.0084800338,0.0204455964,0.0201622192,-0.0064538941,-0.0101165315,0.0025415306,-0.0078070154,-0.0265948605,-0.016393315,0.0063901343,0.0316247903,-0.012759015,-0.0124047948,-0.0015187196,0.0073536136,0.0139491959,0.0294427909,-0.0016488956,0.0289043766,0.0200205315,-0.0363571718,0.0111862775,0.0228968002,-0.0028674135,-0.047975596,-0.0030569213,0.0144380191,0.0086429752,-0.0168042108,-0.0008921924,0.02493711,0.0193545967,-0.0054656193,0.0140058706,-0.0101165315,-0.0220608413,-0.0081824893,-0.0038928811,-0.0223442167,0.0052778823,-0.0113067124,0.0260281079,-0.0108816475,0.040041063,0.0048599024,-0.0226134248,0.0000182506,-0.0043533677,0.0012070057,0.0414012708,0.0241719931,-0.0043037767,0.0289185457,-0.0172576141,-0.0061421799,-0.0346852504,-0.0053806063,0.0055329213,-0.0081399828,-0.0313980877,0.0082604177,0.0026566524,0.0004640286,-0.0050193015,0.0079274504,-0.019722987,0.0091459686,0.0237044226,-0.017668508,0.0009590515,0.0177393518,0.0042860657,-0.0369805992,-0.0393892974,0.0345152281,-0.0036378426,0.0373773277,0.0180652346,0.0182352606,0.0027239542,0.0085296249,-0.0031153676,0.0151322912,-0.0142679941,-0.0180510674,0.0060890471,-0.0155998617,-0.002670821,-0.0398993753,0.0132832611,0.015713213,-0.0037122287,0.011823874,0.0094222603,0.017498482,0.0043037767,0.0196238048,0.0018631988,0.0114058936,0.0165066663,-0.0172434449,0.00840919,0.0438099653,0.0208139848,0.0303212572,-0.02493711,0.0109170694,0.003839748,-0.0118167894,-0.004271897,-0.0129573783,-0.0066026663,0.0202897396,0.0007828269,0.0038007838,0.0070135621,0.0029453419,0.0044383802,-0.0298678558,-0.0081328982,-0.0059083947,-0.023987798,0.0078424374,0.0088484231,0.0277141966,0.004399416,-0.0110233361,-0.0070560686,-0.0172151066,0.0341751762,0.019552961,0.0235060584,0.0169175621,-0.022882631,-0.0420813709,0.046615392,0.0051503633,0.0069887666,-0.0305479597,0.0131344888,0.019637974,0.004434838,-0.0196238048,0.0019995735,-0.0262689777,-0.0054833302,0.0206297897,-0.035337016,-0.0105415964,-0.0229251385,0.0171726011,0.0202897396,-0.0011051673,-0.01681838,-0.0008620837,-0.0015116351,0.0520278774,-0.0012902474,-0.0103007266,0.002824907,-0.0088838451,0.0089901108,0.0257730689,-0.0190570522,-0.0088625923,0.0131840799,0.013488709,-0.0084729493,0.0103574013,-0.0131203197,0.0121851787,0.0115404977,-0.0032570558,-0.0306896474,-0.010074025,0.020318076,-0.0121072503,-0.0141971493,-0.022542581,0.0123197818,-0.0657432899,0.0014354778,-0.0033898882,-0.0034270815,0.0165208355,0.0121780941,0.0127448468,-0.0071623344,-0.0010573476,0.0297545046,-0.0277425349,-0.0214799196,0.0288477018,0.0073606977],"122":[-0.0170862861,0.015725432,0.0446470305,0.0312309284,0.0360695235,0.0136429118,0.0387087576,-0.0172787309,-0.0321106724,0.0242204648,0.0097046811,-0.027505761,0.042117767,-0.019038219,0.0451968722,0.0595477037,-0.027505761,0.0085156513,-0.0245916061,0.0436573178,-0.0359320641,-0.0227084029,0.0147632118,0.0116016297,-0.0280281082,-0.0393135808,-0.0086599849,0.0464340113,0.0078008589,-0.0626268089,-0.010378235,-0.0365643799,-0.0461590923,-0.0505303219,0.0231620222,0.0165364463,0.0399733894,0.0095053641,0.0021443772,-0.007464082,0.0201241542,0.02251596,0.0186945703,0.0057286485,-0.0035670889,-0.0185708553,-0.0426401123,-0.0337876864,-0.0034966406,0.0505853072,-0.0315608308,0.0016323384,-0.0619120151,-0.0122476919,0.0191894267,-0.0272170939,0.0011718471,0.0189282522,0.0057355217,-0.0453343317,0.0035035135,-0.043189954,0.0121789621,0.0235056728,0.0067733452,0.0169625729,-0.0088455556,0.0440422073,-0.0275744908,0.0023694679,0.0278219189,0.0013539817,0.0189282522,-0.0281380769,0.0069142417,-0.0177735873,0.0314508639,0.0333478115,-0.0322481319,0.0032474941,0.0202478692,0.0001983506,-0.0187770464,0.0376915522,0.0349973328,-0.0365643799,-0.0366193615,-0.0331003852,-0.0099727279,0.0324130841,-0.0458016954,0.0495681018,0.0246465914,0.0164814629,0.0071204319,-0.0034588391,0.005869545,0.0179935228,0.0125982156,0.023753101,0.0050413483,-0.0195880607,0.0125707239,-0.0380489491,0.0321931504,0.0165227,-0.0310934689,-0.0110449167,-0.0088318093,0.0107906153,-0.0254163668,0.0122476919,-0.0736785978,0.0080963979,0.0172649845,0.0169488266,-0.0499804802,0.011216742,-0.0134985792,-0.0229695775,-0.0364269204,0.0096084587,-0.0473962314,-0.0287841391,-0.0289490912,-0.0269284286,0.0445920452,-0.0541317761,-0.0218011681,-0.026667254,0.0654309914,0.0172649845,0.0483584516,-0.0216911994,-0.0007985571,-0.0134092299,-0.0490182601,0.0375540927,-0.034887366,-0.0006400485,-0.0147632118,-0.0066221389,0.0116703603,-0.005828307,-0.0066187023,0.0266810004,-0.0100620771,0.0263098571,-0.0071891616,-0.0350523181,-0.0282342993,0.0196980275,-0.046461504,-0.0296638831,0.0619120151,-0.0252789073,0.0098490138,0.0414029732,-0.0035911445,-0.0432724319,-0.0055224583,0.023711862,-0.0068798764,0.0029622645,-0.0106119178,0.0234781802,-0.0591078289,-0.045389317,-0.0931979269,-0.031698294,-0.0128112789,-0.0244953837,-0.0047458089,-0.000191585,0.0513550825,-0.0115810111,-0.0151206078,-0.0593277663,0.0277394429,-0.0096496968,-0.0385163128,0.0038660646,-0.0212375801,0.0450594127,-0.0136360386,-0.0130793257,-0.0401658341,0.0452243648,-0.0173337143,0.0100620771,-0.028619187,0.0632866174,-0.0048763962,0.0460766144,-0.0183096807,-0.0112098688,0.0161653049,0.0325230509,0.0137185147,-0.0175399054,0.0585030057,0.0206465032,0.0517124794,-0.0011563828,0.0172374938,0.0350523181,0.0454992838,-0.0108249802,-0.0432724319,-0.0346949212,0.007903954,0.0132030398,0.021718692,-0.0118078198,-0.031698294,-0.0197255202,-0.057678245,-0.0268734433,-0.0094503798,-0.0258974768,0.0120964861,0.0495131165,0.0201653931,-0.0018488379,-0.0179522857,0.044262141,0.0255675726,-0.0165089536,0.0309010241,0.0225434508,0.0047011343,-0.0357946008,-0.0154917501,-0.0345024765,0.0439597294,0.019560568,0.0309285168,-0.0025241105,0.0040241438,-0.0045842933,-0.0203715824,0.0321106724,0.0071891616,0.0258562397,-0.0185708553,0.0090105077,-0.0420352891,-0.0528396517,0.0438772552,0.0703795552,-0.0010438374,-0.0527296849,-0.0075877961,-0.0484409295,-0.039203614,-0.050172925,-0.0209626611,0.0426401123,-0.0251139551,0.013649785,0.0165501926,-0.0152855599,-0.0266260151,-0.015409274,-0.0417328775,0.0179247931,0.0248665269,-0.0067355433,0.0418978296,-0.0210451372,0.0345299691,0.0481934994,0.0126600722,-0.0465714708,0.0121102324,-0.0289765839,0.0011142857,-0.0016924771,-0.0245228764,-0.0280968379,0.0228046253,-0.0407706574,0.0334852748,-0.0069520432,0.0254026204,0.0292515028,-0.0348598734,0.0202066302,0.043189954,-0.0369217768,-0.0035258508,-0.0016856041,0.0622969046,-0.021993611,-0.017045049,0.0285916943,0.0035292874,0.0113404561,-0.0128456438,-0.0211276133,0.0214025322,-0.015368036,0.020357836,0.0001383192,0.0171550177,0.0576232634,-0.010976187,-0.0104194731,-0.0222135466,0.0008492455,-0.0053437604,0.0124607552,0.0270521417,-0.0004828285,-0.0460766144,-0.0198904723,0.0876445398,-0.0472862646,0.0086118737,-0.0504478477,0.0130793257,-0.0776374489,-0.0122820577,0.0431074798,-0.0098077757,-0.0291690268,0.0466814414,-0.004391849,0.0292789955,-0.0629567131,0.0215262473,-0.0037011125,0.0303236917,0.0144607993,-0.0290040746,-0.0422002412,-0.0100070927,-0.0119384071,0.0146394977,0.0521523505,-0.0480010584,-0.0270109046,-0.060592398,-0.0071204319,0.0314233713,-0.0001893298,0.0154642584,0.0211413596,-0.0049863639,-0.0047973567,-0.016605176,-0.0155879725,0.023230752,0.0161927957,0.0168663505,0.0206190106,-0.0155192418,0.009141095,-0.0529221259,-0.0034811762,-0.0221585631,0.0292240102,0.0270796344,-0.0151618458,-0.0139109595,0.0311484523,-0.0280418545,0.0033849543,-0.0005382421,-0.0031065976,0.0262548737,-0.008419429,-0.0143508315,-0.0277256966,-0.046186585,-0.0436848104,0.0423102081,0.0508877188,0.0313408971,0.0372516774,0.0335127637,0.0229283404,-0.0163302571,-0.0345574617,0.0738985315,0.0482484847,-0.0268322062,0.0489082932,-0.0373341553,0.0017766714,0.0187358074,0.0126738185,-0.0484409295,-0.0192719027,-0.0210038982,0.0428875424,0.0367843136,0.0210038982,0.0406331979,0.0202341229,0.002725146,0.0262273811,-0.046186585,-0.0353547297,0.0290040746,0.0126394536,-0.0238768142,0.038681265,-0.0199179649,-0.0155742262,0.0116222491,-0.0160965752,0.0211825967,-0.0540218093,0.0395610072,-0.0074984469,-0.048853308,0.0901188254,-0.0163852405,0.0321931504,-0.0230383072,-0.0426401123,-0.013051834,0.0502828956,-0.037801519,-0.0074915737,0.0409631021,-0.0417603701,0.004429651,-0.0331828594,-0.0241242424,0.0170313027,0.0289490912,-0.0320556872,0.0107699968,0.0144470539,0.0187633,-0.0291140433,0.0282892827,-0.0091754599,-0.0195330754,-0.0133748651,-0.0066152657,0.0023213569,-0.0484959148,-0.0032406212,-0.0347224139,-0.0360970162,0.0117184706,0.0245228764,0.0171137787,0.0081720008,-0.0074778278,0.0202616137,-0.0605374165,-0.0489082932,0.0151755922,-0.0394235477,0.0429700166,0.0144607993,-0.0124401366,0.0085293977,-0.0705445111,0.0236843694,0.0244816393,-0.0194368549,0.053884346,-0.0094572529,0.0061066635,0.0244541466,-0.020673994,0.0310109928,-0.0041581672,0.0395610072,-0.0369767584,0.0250589717,0.0049623083,-0.0183509197,0.0086806035,-0.0356296487,-0.0074709547,-0.0068455115,0.0141446413,0.049100738,0.0244404003,0.0185571089,-0.0076702721,-0.0316433087,-0.0113473292,-0.0273408089,-0.0013746007,0.015409274,0.0338701606,-0.015725432,-0.0056771007,0.0321381651,-0.0876445398,-0.0203853287,0.0191206951,0.0018728934,0.0033127877,0.0122270733,0.0070998129,0.0509976856,-0.0050825863,0.0073266216,-0.042117767,-0.0170725416,-0.0080551598,0.0026976538,-0.0054056174,0.0206327569,0.0178285707,0.0322206393,-0.016247781,0.0410455763,-0.0105156954,0.004828285,0.0040310165,-0.0275882371,-0.00037329,-0.0193956159,-0.0105981715,0.0060826084,0.0088180639,-0.0082682231,-0.0242342111,-0.0108868377,-0.0303236917,-0.0095878402,0.0103438701,-0.0119452802,-0.0029141535,0.0210588835,-0.0294714384,-0.0024485076,-0.0387637392,-0.0331553705,-0.0514100678,0.006027624,0.0343100354,0.0204540584,0.008220112,0.0196567904,-0.008419429,-0.0016306201,0.0146257514,-0.0013591364,-0.0231895149,0.0072372728,0.0003174469,-0.0310659762,0.0195055846,-0.0016907589,0.0088593019,0.0002830818,0.0150793698,0.0187907908,0.0213063117,-0.0436298251,0.0349698402,-0.0040791277,-0.0105156954,-0.0135604357,-0.017045049,0.0300762635,0.0155879725,-0.0108799646,-0.0402208157,0.0324130841,0.0066255755,-0.0183784124,0.0417878628,0.0083575724,-0.0013892058,0.0061479015,-0.0032389029,-0.0139728161,0.003403855,0.0214987546,-0.044262141,0.0054777837,-0.0222410392,0.0429975092,-0.0060585528,0.0264885556,0.0374991074,0.0204815511,0.0201516468,-0.000548122,0.0215125009,0.0031100342,-0.0082888426,0.0143645778,0.0118834227,0.0312034357,0.0098765064,-0.0177873336,0.004910761,0.0243716706,0.0301587395,-0.0023986783,0.0005515585,-0.0067114881,-0.0265710317,0.0214712638,0.0155054964,0.0145982597,0.0042543891,-0.0435748436,0.0000979403,-0.0046255314,-0.0321656577,-0.0619120151,-0.0205915179,-0.0075190659,-0.0352447629,0.000890054,0.0309010241,-0.0013986562,-0.017402444,-0.024151735,0.0027955943,-0.0329904184,0.0151068615,0.0318082608,-0.0266947448,-0.0469013751,-0.0025223922,0.0059107831,0.0029691376,0.0003616918,0.0186258387,-0.0075328117,0.0236706249,0.0298013426,-0.0032543673,0.0104675842,0.0186945703,0.0203303453,0.0365918726,0.0354921892,-0.0086943498,-0.0057114661,0.0180347618,-0.0154367657,0.0013325035,-0.0214850083,-0.0222135466,-0.0310109928,-0.0055740057,-0.0536644123,0.0660358146,0.0038557551,0.0148594333,-0.0200554244,-0.0330728926,-0.0271071251,-0.0008943496,-0.0108937109,-0.0362894572,0.0333478115,-0.0068111466,-0.0093541574,-0.0258150008,0.021196343,0.0207427256,0.0018230642,0.006347219,0.0321931504,-0.0250314791,-0.0035224142,0.0072510187,0.0362619683,0.0487983264,0.0055636964,0.035684634,-0.0100070927,0.0167701282,0.0639464259,-0.0167151447,0.0063231634,-0.0443446189,0.0057767597,-0.0079245735,-0.0148869259,-0.0113885673,0.0211825967,0.021993611,-0.0036323823,0.0111548845,0.027065888,0.0237943381,0.0005635863,-0.0012379998,-0.0296363905,0.0159453675,0.0157941617,-0.0160553362,-0.0005064544,0.0112923449,0.0028162133,-0.0301312469,-0.0606473833,-0.0081857471,0.0195468217,0.0071754158,0.0052819033,0.0248665269,-0.0320007056,-0.0335952416,0.0145157836,-0.0214575175,0.0003582553,-0.0272033475,-0.0067492896,-0.0323031172,0.019876726,0.0045293095,-0.0251826849,-0.0472312793,0.0122683113,-0.0403582752,-0.0154917501,0.0244678929,-0.0210313909,0.0213887878,0.0421727486,0.0093266657,-0.0366193615,0.0173886996,-0.0160278436,0.0293614715,-0.0224609748,0.0080139218,-0.0151893375,-0.0065087345,0.0121514704,-0.0222685318,0.0053197048,-0.0092716822,-0.0043677939,-0.0144745456,-0.013251151,0.0334577821,-0.0021615596,0.026942173,0.0205640271,0.0048763962,-0.0033918272,-0.024151735,0.0126394536,0.0023677498,-0.0004982927,0.020797709,-0.0444545858,0.0026409517,-0.0030962881,-0.0071891616,0.0327154957,-0.0081857471,0.0203028526,-0.0195193309,0.0121102324,0.0070207729,0.0371692032,-0.0152993063,0.005288776,-0.0221585631,-0.0178285707,-0.0195468217,0.0281380769,-0.0178973004,-0.019478092,0.0313134044,0.005247538,0.0062853619,0.0150381317,-0.0004841172,0.0116085028,-0.0262823664,-0.006305981,-0.0189145058,-0.0131686749,-0.0006649631,-0.0049416893,0.0245228764,-0.0261586513,-0.0670805126,-0.0169488266,-0.026543539,-0.0379939638,0.0252789073,0.0061375923,0.019079458,-0.0086462386,0.0083575724,-0.1061741561,-0.0293064862,0.0343375243,-0.0285916943,-0.0080689061,-0.0483584516,0.0047354996,-0.0102270292,0.0229283404,-0.0108249802,-0.0171962548,-0.0444270931,-0.0209901519,-0.0138009908,-0.0160965752,0.0252101775,-0.0167563818,0.0342000648,0.0246465914,0.0085706357,-0.0450319201,-0.0058729816,-0.0173749533,0.014969402,-0.0111136464,-0.0167013984,-0.0214162786,0.0433823988,-0.0017835444,-0.0091067301,0.0259524621,0.0332103521,0.0210038982,0.0317257829,0.0012921246,-0.0157529246,-0.0369767584,-0.0013333627,0.0065362263,-0.0159866065,-0.0157666709,-0.05580879,0.0554513931,-0.0085981274,0.0432174467,-0.0105706798,-0.0170313027,0.0271346178,-0.0345574617,-0.009422888,0.0028024672,0.0341175906,-0.0008140213,-0.0239455439,0.0078489697,0.020357836,-0.0272033475,-0.0162752718,0.0144607993,-0.0203165989,-0.0022784006,0.029498931,0.015725432,-0.0707644448,0.009938363,0.0005945148,0.0188870132,0.0295264237,0.0257325247,-0.0141996257,-0.0167426374,0.0004231193,-0.0189419985,-0.0280281082,0.0167563818,-0.0001262914,0.0337327011,-0.0016349157,-0.0131961666,-0.0396709777,0.0289765839,-0.0056461724,-0.0199179649,-0.0031770458,0.0009785439,-0.026062429,0.008343826,-0.0041272384,0.0080001764,0.0121033592,0.0309285168,-0.0156017179,0.0003586849,-0.0073747328,-0.0169900656,0.0035086684,0.041870337,0.0051891175,0.0238768142,0.020000441,0.0240830053,0.0142271174,0.0040413262,0.0000413991,-0.026859697,-0.0282068066,0.0186120942,0.0101582995,0.0005330874,0.0203165989,-0.0019536512,0.0273133162,0.0119521534,0.0436298251,-0.0130380876,0.0137666259,-0.0118834227,0.0182546973,-0.0223372616,-0.0133886104,0.0230245627,0.0004519,-0.024151735,0.0175261591,-0.0092304442,0.0318632461,0.0326055288,-0.0202066302,0.0151343541,-0.0125363581,0.0330453999,0.0416504033,-0.0021735874,0.073238723,-0.0263648424,-0.0290865507,-0.0049691815,-0.0263098571,-0.0134642143,0.0446745232,-0.0039760326,0.0150793698,0.0212238356,-0.0355746672,0.0061582113,-0.0126188342,-0.0290865507,-0.0339801311,0.0018265006,0.0546541251,0.0489907674,-0.0167426374,0.0042475164,0.0363169499,-0.034090098,0.0693898425,-0.0537468866,-0.0501179434,-0.0073609869,0.0038385724,0.0546541251,0.0374441221,0.0455267765,-0.0243854169,0.047258772,-0.034365017,-0.040193323,-0.0173886996,-0.031698294,0.0181722213,-0.0082407314,0.0340626054,0.0377740264,0.0171687622,0.0606473833,0.0182134602,0.0003625509,-0.0068867495,-0.0108730914,0.0199454557,-0.0396159925,-0.0143508315,0.0265160482,0.0103713628,-0.0062200683,-0.0332103521,-0.0374716148,0.0182546973,-0.0259249695,0.0220760871,0.0216499604,0.0167976208,0.0303511843,0.0156704485,-0.0125638507,0.0136704044,-0.001835092,0.0081101442,-0.0250589717,0.0313958786,-0.0382963754,0.0062991078,-0.0138009908,-0.0162615255,-0.000578621,0.0531970486,0.0004192532,0.0276569668,-0.00246569,0.0002354004,-0.0025979953,-0.0071685426,-0.0010043177,-0.0051719351,-0.0250314791,-0.0017534751,-0.0007757902,0.0075190659,-0.0137666259,-0.0262136348,-0.015725432,-0.041595418,-0.0310384836,0.025471352,-0.0113542015,-0.0006933142,0.0022698094,-0.0070929397,-0.0022955833,0.0154367657,0.000182242,0.0354646966,-0.0028041855,0.0018436832,-0.0056014978,0.021718692,0.0003021974,-0.0006366119,-0.0139659429,-0.0286466796,-0.0089005399,0.0210176446,-0.0189694893,-0.0241379887,-0.02027536,0.0056392993,0.0273408089,0.0463790298,0.0503653698,-0.0026478246,0.0098902518,0.0025533207,0.0298288353,0.0109418221,0.0035395969,0.0074709547,-0.0020808019,0.0339526385,-0.0095603475,0.0107081393,0.0003921908,0.0337601937,0.0283442661,0.0216499604,-0.0317532755,-0.0305436272,-0.0104194731,-0.0202891063,0.0105569335,0.021636216,-0.0032406212,0.01501064,0.0012483093,-0.0345299691,-0.0335952416,0.0250864625,-0.0461590923,-0.0147907035,-0.0032079744,-0.0290040746,-0.0269284286,0.0187358074,-0.0323306099,-0.0031753276,0.0189557429,0.0036804934,-0.0042337701,-0.0264473185,0.0214850083,-0.0425576381,-0.0225571971,0.049623087,-0.0225571971,0.0232719891,-0.0378565043,0.0056908471,-0.0060413703,0.018680824,-0.0180210155,-0.0202478692,0.0017440247,-0.0220898334,0.0325230509,0.0034777399,-0.0023797774,0.0090105077,-0.0057527041,0.0151206078,0.0232719891,0.0191481877,-0.016247781,0.0090517458,0.0195055846,0.0208389461,-0.0036495649,-0.005986386,0.0330453999,0.019038219,0.0167151447,0.0303511843,-0.0247428119,0.0237393547,-0.0047767377,0.0341450833,0.0126669453,0.0034347835,0.009182333,0.0015438484,-0.0359870456,0.0154367657,-0.0155879725,0.0130380876,0.0104194731,0.043987222,-0.0323855914,0.0049691815,0.0073541137,0.0172100011,-0.0025447295,-0.0138216102,0.0256912876,-0.0259662066,0.0103301248,0.0106669012,-0.0230108164,-0.0058936006,0.0243166871,0.027505761,-0.015807908,0.0220898334,0.0774175152,-0.0085637625,-0.0155192418,0.0084537948,-0.0318632461,-0.0157666709,0.0072991299,-0.0120071368,-0.0077321292,-0.0070860665,-0.0169488266,0.008220112,0.0039966516,0.0164264776,0.0062887981,0.0182546973,-0.0258974768,0.0320007056,0.0291140433,0.0223097689,0.0189557429,0.0048007928,0.0008548298,0.0081101442,0.0066702501,-0.0267772209,0.0318632461,-0.0406881794,0.0139384512,0.0335402563,-0.0023746227,-0.0160965752,0.0225709435,0.0341175906,-0.0144470539,0.0076359068,-0.0494856238,0.0312859118,0.0148456879,0.0043093734,-0.0048007928,-0.009739046,-0.0075121927,0.0177598409,-0.0009957264,0.0510801636,0.0029536732,-0.0127081834,-0.0180347618,-0.0289490912,-0.0160690825,-0.011773455,-0.0046427138,-0.0188732669,0.0080139218,0.006185703,0.0202066302,0.0153405443,0.036481902,0.0338701606,0.0034433748,0.0027749753,-0.0272583328,0.014969402,-0.0374166295,-0.0449769348,0.0325780362,-0.0208664387,-0.0133748651,-0.0188182835,0.0068214559,0.012453882,0.006027624,0.013292389,0.0382688828,0.0094366334,0.0071273046,0.0103919813,0.0316708013,-0.0328254662,-0.0334577821,0.0039794692,-0.0168113671,0.0052715936,-0.0028127767,0.0037870249,0.0025086463,0.0346674286,-0.0278769024,0.0086737303,-0.0082132388,-0.021155104,0.0203853287,-0.0116428677,0.0060448064,-0.0052337921,-0.0483309627,-0.0208526924,-0.0113267098,0.0003717865,0.015807908,0.0104607111,-0.006608393,0.005869545,0.0142546091,-0.0100826966,-0.0134710865,-0.0354921892,-0.0142408637,0.0023368213,-0.0074778278,-0.0060379338,0.0090654921,0.0238218307,0.0237668455,0.0150931161,-0.0118628042,-0.024949003,-0.007464082,-0.0348323807,0.041870337,0.0165914297,-0.0057458309,-0.003800771,0.0006237251,0.0168938432,0.0251826849,-0.0079383189,-0.0251002088,-0.0447295085,0.0199317094,-0.0069589159,0.0506677814,-0.0043437383,0.0184471421,0.0055636964,-0.0173199698,-0.0087768259,0.0177598409,0.0024502259,-0.029416455,-0.0022629364,-0.0164952092,-0.0078833355,0.0367018394,-0.0100689502,0.0203028526,0.0191206951,0.0256637949,0.0000423925,-0.010900584,0.0206190106,0.0309560075,0.0150931161,-0.0063128537,0.0039657229,0.0289215986,-0.0192444101,0.0133817382,-0.0304886438,-0.0216637067,-0.0161515586,0.0088318093,-0.0189557429,0.0247428119,-0.0048248484,-0.0089761429,-0.004171913,-0.0013393766,0.0006834343,-0.0308460407,0.0106600281,0.009182333,-0.0008866175,0.0390111692,-0.0098490138,-0.0074915737,0.0300487708,-0.0314508639,0.0284267422,-0.0327979736,-0.0248665269,0.0044605793,0.0359045714,-0.0058420529,-0.0050825863,0.026144905,-0.0068111466,-0.0016271836,-0.0209489148,-0.0017732349,-0.0191344414,0.0121171055,0.0270796344,0.0290590581,0.021155104,0.017045049,0.0049382532,-0.0486058816,0.0390111692,-0.0159866065,-0.0097940303,-0.0546266325,0.0042715715,0.0130861988,0.0306810886,-0.0173337143,0.0252789073,-0.0125638507,-0.0014347394,0.0121514704,0.0178973004,-0.0214437712,0.0420077965,0.0257325247,0.003451966,-0.0039279214,0.0474512167,0.0214300249,-0.0345849544,-0.0061375923,0.0039622867,-0.0129006272,-0.0057698865,-0.0020911114,0.0237943381,0.0230245627,0.01077687,-0.0187907908,-0.0035739618,-0.0045396187,0.0040722545,0.0158766378,0.0176223814,0.0231757686,-0.0154780038,0.0213750415,-0.0189694893,0.0254576057,-0.0153817823,-0.035684634,0.0010635973,-0.0012431545,0.0059073465,0.034887366,0.00764278,0.0040722545,0.0101308068,-0.0068833129,0.0047904835,-0.0365368873,0.0393685661,0.0222822782,-0.0102476487,-0.0438772552,0.0160415899,0.0082476046,-0.0176773649,0.0056908471,0.02075647,-0.0292240102,0.0022079523,0.0121377241,-0.0146669894,-0.003711422,-0.0082819695,-0.0140071809,-0.0176086351,-0.0163440015,0.0278494097,-0.0089761429,-0.0115054082,0.0263923332,0.0086462386,0.0132855158,0.014969402,0.0134573411,-0.0312309284,-0.0140071809,-0.0135741821,-0.0161790513,-0.0047664279,-0.0064674965,-0.0361794904,0.0110242972,-0.0134710865,-0.0073472406,-0.0016529574,0.0005833462,0.0192993935,0.0251414478,0.0361519977,-0.0236431323,-0.0068970593,0.0037011125,-0.0294714384,0.0119040422,0.0296638831,-0.0006537944,0.0257600173,-0.0193406325,0.0098146489,-0.0111961225,-0.0218561515,0.024825288,-0.013732261,-0.0055155852,0.0308460407,-0.0127494214,0.0142546091,0.0092510628,-0.016206542,-0.0164264776,-0.0181034915,-0.0282892827,-0.0102613941,-0.0006718361,0.0159316231,0.0060654255,0.0082544768,0.0232582446,-0.0000510643,0.0201241542,-0.0215399936,0.0502828956,0.0059417114,0.0167288911,0.0196842831,-0.0188732669,-0.0388462171,0.0280556008,-0.0107150124,0.0171550177,-0.0398084372,0.0036083269,0.020399075,0.0331003852,0.0013445313,-0.0059382753,-0.0241379887,0.0006933142,0.0029811652,-0.0420077965,-0.0141034033,-0.0006464919,0.0244129077,0.0180347618,0.0144882919,-0.0051135146,0.0155054964,-0.0228183717,0.0508877188,0.0005842053,0.0007242428,0.0221998021,0.0193543788,0.0308460407,0.0251964312,0.0007598965,0.0148181953,0.01389034,0.0008453794,-0.0001436887,-0.0082407314,-0.0368667915,0.0543242209,0.0340351127,0.0075877961,-0.0348323807,-0.0126669453,0.0080826525,-0.011855931,-0.0396984667,-0.0101582995,0.0128250243,-0.0397534519,0.0006125565,0.0000373183,-0.0068455115,0.0077939862,-0.0015979733,-0.0064468775,0.0235056728,0.0068798764,0.0354646966,0.0156292096,-0.0117322169,0.0309010241,0.011457297],"123":[-0.0079835486,0.0031648292,0.0598150939,-0.015851289,0.036682345,0.0025351206,-0.0217575226,0.0225971341,-0.0096989628,0.0068073687,0.0076795514,-0.0085119251,0.0063658487,-0.0318473391,0.0520848744,0.0475104377,-0.0031431152,-0.007285079,-0.0190794505,0.0557038896,-0.0332080908,0.0173712764,0.0168790892,0.0439203754,-0.0148017742,-0.0343082696,-0.0361612067,0.0555591322,0.0394038446,-0.059757188,0.0183411725,-0.0389985144,-0.0701220483,0.0284744166,0.0314999148,0.0196729694,0.0273018554,-0.0272584278,0.0235670302,-0.0454548374,-0.0333238989,0.0048892903,0.015055106,0.0035828257,-0.0240592174,-0.0302549712,-0.0235525556,-0.0272439513,0.0114216143,0.0545747578,-0.0389116593,-0.0142299701,-0.0506083183,-0.0421832465,0.021482477,0.0063079447,-0.0022564563,0.0217864756,-0.010415527,-0.0118703721,0.0238420758,-0.0184714571,0.0213811453,0.0359585397,-0.0310366787,-0.0030508302,-0.0152432946,0.0328606628,-0.0362480618,0.028257275,0.0498555601,0.0015824146,0.0002911046,0.0007057081,0.0345398858,-0.063463062,-0.0304576363,0.0462365448,0.0086132577,-0.0506951734,0.0153011987,0.0071330802,-0.0244934987,0.0189202148,0.0145556815,-0.0140273049,-0.0409383066,-0.0028409273,0.0173133723,-0.0031503532,-0.0131225511,0.0740595385,0.0125869373,0.01673433,0.0145339677,0.0364217758,0.0042921528,0.0029277839,0.0019850302,0.0313841067,0.0186306927,-0.0137956878,-0.0337292291,-0.0259266291,0.0321368612,0.0024754067,0.0107267629,-0.0018927453,0.007809836,0.0107701914,-0.0915466249,0.0096700098,-0.0202375371,-0.0011897514,-0.0217430461,-0.0067820358,-0.0045852931,-0.0326869525,0.0247974955,-0.0306313504,-0.054806374,-0.0254633948,-0.0217864756,0.007556505,0.0273742359,-0.0469313972,-0.019861158,-0.0353215933,-0.0220036153,-0.0005727093,0.0708748028,-0.0001885281,0.0612047948,-0.029256124,-0.0092067765,-0.0223220903,-0.0542852357,-0.0306892544,-0.0233643651,-0.0220470447,0.0120730363,-0.0109366653,0.0119499899,-0.0033964464,-0.0164592844,-0.0040315837,-0.0281269904,0.0572383553,-0.0200493485,-0.0266214795,-0.0278519448,-0.0007174699,-0.0394327976,0.0044079614,0.0342503637,0.0138897831,0.0226260871,-0.0035068262,-0.0396933667,-0.0235959832,0.0213666689,0.0232196059,-0.0286770817,0.0164737608,-0.0389116593,-0.0083744023,-0.0314420089,-0.0632893518,-0.0990741774,-0.0163434763,-0.0293864086,-0.0735384002,-0.0226984676,0.0194703043,0.0305444933,0.0152143426,0.0078387884,-0.0424438156,0.0050159558,-0.0221049488,-0.0511584058,-0.0143095888,-0.049884513,0.0077085039,-0.0428491458,0.0201072525,-0.0477131046,0.0140634952,0.019093927,0.0206573419,-0.0500003211,0.0342793167,0.019948015,0.0177476536,0.0082947845,-0.0290824119,0.0414594449,-0.0033439705,-0.0225392301,0.0401276462,0.0189925954,-0.0112261875,0.0261727218,-0.01371607,-0.0055769035,-0.0193979256,-0.0076505993,0.0188333578,-0.0602783263,-0.0362191088,-0.006687941,0.0049218615,-0.0048711952,0.0041039637,-0.0493054725,-0.0094239172,-0.0060437564,-0.0589754805,-0.0034959693,-0.002526073,-0.022336565,0.0561381727,0.0349162631,-0.0157210045,0.0020592201,0.0194268767,0.0228142757,-0.0141937798,0.0236828402,0.0153011987,-0.0009798486,-0.0195282102,0.020802103,-0.0242039785,0.029936498,-0.0063730869,-0.0037420623,-0.0482921451,-0.010842571,-0.0363638699,0.0161552858,0.0014666062,-0.0116242785,0.0098147709,-0.0095180115,-0.0018257935,-0.0443257056,-0.0841927826,0.0362191088,0.0700062439,0.0251449216,0.0037673954,-0.004838624,-0.0123625584,0.0151709141,-0.0212508608,0.0010051817,0.0058628055,0.0455995984,-0.0348294079,0.0144181587,-0.0210047681,-0.0506662205,0.0000144266,-0.0346556939,0.025014637,0.0093732513,-0.0527797267,-0.0043392,0.0044694846,0.0230748449,0.0569198802,0.0437177122,-0.0557038896,-0.0219891407,-0.0178200342,0.0154893873,0.0035231118,0.0239578839,-0.0089679211,-0.0005993995,-0.0290824119,0.0162131917,-0.0135930236,0.0001857007,-0.0101911481,0.0420384891,0.0247540679,0.0180226993,-0.0395486057,-0.0031467343,0.0089751594,0.0230893213,-0.0388827063,0.0001955399,0.020860007,0.0065142284,-0.0148669165,-0.0331212319,-0.0189202148,-0.0082585942,-0.0151709141,0.0118920859,-0.0091199195,0.0088231601,0.031905245,-0.0054900469,-0.0039012991,0.0113926614,0.0057687112,0.0146642523,-0.0152577702,0.0109149516,-0.0315288641,-0.0070027956,-0.0189636424,0.0742911547,0.0079473583,-0.0015073201,-0.0409093536,-0.0527218208,-0.0722645074,0.0322526693,0.0243053101,0.0354084522,-0.0177476536,0.03989603,-0.0088014463,0.0183846001,-0.0165895689,-0.0170093738,-0.0475972965,-0.0080776429,-0.0001729211,-0.0000475844,-0.046699781,0.0056565218,-0.0377246216,-0.0223220903,0.0293285046,-0.0198466834,-0.0084684966,-0.0636946782,0.036508631,0.0058302344,0.0266070049,-0.0030472113,-0.0099161034,-0.013687118,0.0023306462,-0.0734804943,0.0117907533,-0.0028481653,0.0058302344,0.0011662279,0.0151564386,0.0057976632,0.0152867232,-0.0245658793,0.0223076139,-0.0495949909,0.0205270573,0.0478578657,-0.0047409106,-0.0067205122,0.0319341943,-0.0203967728,-0.0068652728,-0.0197308734,-0.0157499574,0.0172844194,-0.0097713424,-0.0014548444,-0.004310248,-0.0832663178,0.0020610294,0.0739437342,0.0242763571,-0.0051643355,0.049884513,0.0348873138,-0.0148379644,0.0189202148,-0.0048603383,0.053098198,0.008425069,-0.0164448079,0.0104661938,-0.0160394777,0.0017434609,0.0328027606,0.002526073,0.0107195247,-0.0211060997,0.0047011017,0.0109221898,0.0023939789,0.061610125,0.0607994646,-0.0458601676,0.0285612736,0.0001828734,-0.0447310358,-0.0148090124,0.0146063482,0.0235091262,-0.0108715231,0.0051751924,-0.014172066,-0.0277361367,-0.0350899771,-0.0294587892,0.0429649539,-0.0020537914,0.0288942214,-0.0154025313,-0.0214680023,0.0697746277,-0.014997201,0.0303707812,-0.0350031219,-0.0153011987,0.027490044,-0.0255647283,-0.029878594,0.0500292741,0.0068507968,-0.0105530499,-0.0053127152,-0.0576726347,-0.0271281432,-0.0147004426,0.0393459387,-0.0154893873,-0.0144109214,0.0129705528,0.030052308,-0.01673433,0.0716275573,0.012977791,0.0118993241,0.0039990125,-0.0045599598,0.0177476536,0.0042161536,-0.0494791828,-0.0393459387,-0.0188333578,-0.0094601074,-0.0076578376,0.0359585397,-0.0310366787,-0.0209613387,-0.0088810651,-0.0308050625,-0.0303128771,-0.0093949651,-0.0075999331,0.0433702841,-0.0337292291,-0.0460338816,0.0374640524,-0.0736542121,-0.0113275191,0.0142951123,-0.0596413799,0.0378404297,0.0185004082,0.0192097351,-0.0166040454,0.0127534121,0.0237841718,-0.0342793167,-0.0090982057,-0.044991605,-0.0085408771,0.0036081588,-0.0061559458,0.009901627,-0.0118993241,0.0100391498,-0.0165316649,0.0019850302,0.0786918774,0.0231472254,0.0431386679,0.0214390494,-0.0055443323,-0.0184425041,-0.0033331136,-0.0301391631,0.026578052,0.0314420089,-0.0178345107,-0.0246672109,-0.0159960501,-0.0679795891,-0.0393748917,0.0042306297,-0.0035665401,0.0169514697,-0.0008617782,-0.0067241313,0.0469024442,-0.0282283239,0.0401855521,-0.03989603,-0.0269110017,-0.0101766726,-0.0354953073,-0.0385063291,-0.0078315502,0.0223076139,0.0198177304,-0.0290679354,0.0289810784,-0.0154314833,0.0092863943,-0.0091850618,-0.0148669165,-0.0103141954,-0.0300812591,-0.0200782996,0.0210337192,-0.0031413056,0.0086784,-0.0268820487,-0.0185004082,-0.0131587414,-0.0088810651,0.0035918732,-0.02919822,0.0090475399,-0.0259121526,-0.0543720946,0.0101042921,-0.0297338329,-0.0215259064,-0.0292416476,0.0156920534,0.0163289998,0.0482342429,0.0155328158,0.0080848811,-0.0045708171,-0.0314999148,-0.0240881685,-0.0141648278,0.0040171077,0.0346556939,0.0444704667,-0.0561960787,0.0196440183,0.0200638231,0.0096772481,0.0241750255,0.0313551538,-0.0523454435,0.0036334919,-0.0047879578,0.0045454837,-0.0134410243,-0.0005849234,0.010784667,-0.0039230133,0.0182253644,-0.0047155777,-0.050231941,-0.0546037108,-0.0070824139,0.0019144594,0.0052873823,0.0023595984,0.0012467509,0.0416331589,-0.0074117444,-0.0392011777,-0.0402434543,0.0153011987,0.0402434543,-0.0097351521,0.0005867329,-0.0309498236,0.0328896157,-0.0245658793,0.0116315167,0.038332615,0.0130863609,0.0107629532,-0.0419226773,0.0012630365,0.0313551538,-0.0011146569,0.0105530499,0.0125869373,0.0143530164,0.021482477,0.0285612736,-0.0092574423,0.0314420089,0.009163348,0.0002099029,0.0014901297,-0.0348873138,-0.0095976302,0.0067386073,-0.0088883024,0.0131659796,0.0374350995,-0.0023957884,0.016705377,0.0033801608,-0.0028427369,-0.0600467101,0.0042559626,0.0064382292,0.0040424406,-0.0056963307,0.017501561,-0.0209613387,-0.0287205093,-0.0351768322,-0.0229011327,-0.0325421914,0.0140055912,0.0155328158,-0.0255647283,-0.039867077,-0.0129850283,0.0141358757,-0.0107122865,0.0146497758,0.0513900258,0.0125145568,0.0037637765,0.0353794992,0.0397512689,0.0450784601,0.0086711617,-0.0107195247,0.0178634617,0.0088159228,-0.0065323235,-0.0225537065,0.0475104377,-0.0321368612,-0.0023234081,0.046526067,0.002654548,0.0099667693,-0.0369429141,-0.0146208238,0.0376667157,0.034800455,0.0271136668,-0.0063441349,-0.0156486239,-0.0153591027,0.0152867232,-0.0163434763,-0.0335265622,-0.0060871844,-0.0319631472,-0.0144543489,-0.0324263833,0.0095180115,0.0319341943,0.0151853906,-0.0034670171,0.0348873138,-0.0390274674,0.0083020227,-0.0088955406,0.0316446759,0.026664909,-0.0085915439,0.005518999,-0.0136147374,0.0362770148,0.0441809446,-0.0221194252,-0.013600261,-0.0207297225,0.0105313361,0.007824312,-0.0104517173,-0.0162566192,0.029169267,0.0293719321,0.0188333578,-0.0010142291,0.0170962308,0.0003026402,-0.0172844194,-0.0025152159,0.0218154266,0.006886987,-0.008367165,-0.0161842387,-0.0458601676,-0.0175449885,0.010784667,-0.0494212806,-0.0365954861,0.0009264681,-0.0034217795,0.0440361835,0.0093732513,0.0500292741,-0.0348873138,-0.0500003211,-0.0042776768,-0.045165319,0.0249422565,-0.0298206899,-0.0036588251,-0.0040786308,0.0236973148,-0.0345398858,0.0141575895,-0.0955999196,0.0246093068,-0.0036859675,-0.0119934184,0.0214680023,0.0053923335,0.0535324812,0.0141793042,-0.0024464547,-0.012405986,-0.0035303498,0.0052041449,0.0285902247,0.0451074131,0.0202809647,-0.0316446759,-0.0506083183,-0.0018113174,-0.041430492,-0.0044151992,-0.0118631339,0.0236683637,-0.0074117444,0.0097785806,0.0023776933,-0.0379562378,0.0161118582,0.0317894332,-0.0122177973,-0.0246093068,0.0041763443,0.0140417814,0.0032227335,-0.0339029394,-0.0008590639,-0.0096121058,-0.02088896,0.0273597594,0.0001678319,0.0321368612,-0.0100101978,0.0394906998,-0.0140924472,0.0292706005,-0.0193255451,0.0395775586,-0.0123770339,0.0302260201,0.0101766726,-0.0447599888,-0.0201796312,-0.0371166244,-0.0017470799,0.0034851122,0.0672847405,-0.0067530833,-0.0230603684,0.0123118917,0.043457143,-0.0381299518,0.015764432,0.0077664079,-0.0513321199,-0.0424727686,0.0096121058,-0.0244211182,-0.0136436895,0.00167289,-0.0145773953,-0.0090692537,-0.0288507938,-0.0180806033,-0.0089606829,0.0083744023,0.0181095544,-0.0210192446,-0.011211711,-0.0931100398,-0.0592360497,0.0296180248,0.0012241321,-0.0096917246,-0.0034018748,0.043457143,0.0404750742,0.033265993,-0.0172554664,0.0172554664,-0.0223655179,-0.0294732638,-0.0211060997,-0.0030761634,0.0189925954,0.0089389691,-0.0058664246,0.0243632142,0.0131659796,0.0095180115,-0.0017009374,-0.034945216,0.0474814884,0.0155328158,-0.0396354608,-0.0260424372,0.0313841067,0.010755715,-0.0102056246,0.0232630335,0.0039157751,-0.0066227987,-0.0035249214,-0.0025097874,0.0546037108,-0.0227997992,0.0009481821,-0.0105458116,-0.0052729058,-0.031413056,-0.0446152277,0.0365954861,-0.0245514028,0.0471919663,-0.0093732513,-0.0049580517,0.0142878741,0.0029983546,-0.001927126,0.0477131046,0.034974169,0.0020917912,-0.002967593,-0.0235091262,0.025781868,-0.0371745303,-0.0115736127,0.0247106403,-0.0098581994,-0.0168501381,-0.0035864448,-0.0088665886,-0.0373192914,-0.0361322537,0.0066372748,-0.0048277671,0.0173133723,-0.031760484,-0.0046685305,0.0129271243,0.0405619293,0.0357558765,0.0015833194,0.0144253969,-0.0038940611,0.0126520796,-0.0307182055,0.0003429017,-0.0010124197,-0.014997201,-0.0105313361,-0.0262161512,0.0272149984,0.0030055926,0.0082296422,0.0037239674,-0.0057180449,0.0022003616,-0.0140634952,0.0624786876,0.0236104596,-0.0141213993,-0.0067168935,-0.0000087789,0.0199335385,0.0010404671,0.0036280632,0.0064346101,-0.0070208907,0.0253620632,-0.0250580646,0.0290100314,0.0102345766,0.0183411725,0.0005252096,0.0292706005,-0.006829083,-0.0041329162,0.002162362,-0.0107267629,-0.0108063808,0.0076288851,0.014628062,-0.0003820324,-0.0013462739,0.0020682674,0.0232919864,-0.0077808839,-0.0263030063,0.0494212806,-0.0130139813,-0.0026491196,0.0261582471,-0.0087869707,-0.007882216,0.0274466164,-0.0119717047,-0.0007120413,-0.0080052633,0.0186596457,0.0643895268,0.0327159017,0.0363928229,0.0171251819,-0.0194992572,0.0303997323,0.0146932043,0.0081717381,0.0223655179,0.009901627,0.021656191,-0.0072235554,-0.0050412891,0.015026154,0.00026645,-0.0197163988,0.0037673954,0.0074986005,0.0480605289,0.0350320712,-0.0272584278,-0.031905245,0.0484658591,0.0020447439,0.0592939556,-0.051795356,-0.0190070719,-0.014483301,0.0068073687,-0.0060148044,0.0321368612,0.0350320712,0.0222062804,0.0115663745,-0.008765256,-0.0263753869,-0.0160394777,0.015026154,0.0052186209,-0.0050268131,0.0140417814,0.0329185687,0.0278085172,0.0438914225,0.0295022167,0.0179213658,-0.0016186049,-0.0115374224,0.0173567999,-0.0205415338,0.0037203482,-0.0094673457,0.0679795891,0.0231327489,-0.0370587222,-0.0340766534,0.0029657835,-0.0171396583,0.0074334582,0.0320500024,0.0006686132,0.0171830878,0.013317978,0.0034000652,0.0001424987,0.036682345,0.0267951936,-0.00242655,0.013006743,-0.034800455,0.0252896827,0.029256124,-0.0029513075,0.007809836,0.0434860922,0.0082079275,0.0004048774,-0.017414704,0.0052765249,0.0138463546,0.0218733307,-0.0092284903,-0.0132455975,-0.0001133204,0.0003885918,0.0192821156,-0.0254199672,-0.0129416008,-0.0187465027,-0.0378404297,-0.0211495291,-0.0279388018,0.031557817,-0.0321079083,0.0479736738,-0.0217719991,-0.0154893873,-0.0010522289,0.0161118582,0.0098437229,0.0005781378,0.0043174857,-0.0096555343,0.0310656317,0.0186885968,0.017472608,-0.0112044727,-0.0098726749,0.0416331589,0.0032697809,0.0301391631,0.0053271912,-0.0211784802,-0.0121816071,-0.0118703721,0.0504056513,0.0293140281,0.0359585397,0.0004795196,0.0206283908,0.0311524887,0.0034670171,0.0075058388,0.0134410243,0.0020863626,0.0118341818,-0.0019289354,-0.0236973148,-0.0000812582,0.0023089321,0.0278664213,-0.0101332441,-0.0091923,-0.0108498093,0.0109439036,-0.022394469,-0.0141937798,0.0271715708,0.0127099836,-0.0159526225,0.0433413349,0.0144181587,-0.0070896521,-0.0061016604,0.0393459387,-0.0352636911,-0.016560616,-0.0091271577,-0.0072344127,-0.02088896,-0.0056492835,-0.0267662406,-0.0182977431,0.033439707,0.0061595649,0.0018447933,-0.0404461212,-0.0089751594,-0.012123703,-0.018355649,0.0089896349,-0.0067675593,0.0219167601,-0.0306023974,0.0027794042,0.0095397253,0.0134410243,0.0041003451,-0.008396117,0.0204546768,0.0096482961,0.0179358423,0.0076795514,0.0031051156,0.0208744835,0.0053452863,-0.0254778713,-0.0067820358,0.0095107732,-0.0032317811,0.0003338542,0.0106688589,0.0552696101,-0.008280308,-0.0288073663,-0.0049761469,0.0440651365,-0.0071837464,0.0446441807,0.0084033543,-0.0088738268,0.0237841718,0.0609731786,-0.0242474061,0.0132166455,0.0050485269,-0.007998025,-0.0469892994,0.0072814599,-0.0140779717,-0.012094751,-0.0070208907,0.0002840927,-0.0473077744,0.0180806033,0.0183990765,0.009590392,0.0057687112,-0.0060509946,0.0275479481,0.0044767223,-0.0095469635,0.024131598,0.0159526225,0.0094456309,0.0215838104,0.0241460726,0.007853264,0.0378404297,0.0700641423,-0.0090475399,-0.0127823642,0.0012675603,0.0237407442,-0.0097785806,0.0230024643,0.0176752731,0.0023577888,0.0330633298,-0.0141865415,-0.0066770841,-0.0068073687,0.0208165795,-0.0042740577,-0.0033892083,0.0059170909,-0.0004342819,0.0243487377,0.0110959029,0.0376667157,0.0291837435,-0.0208455306,-0.0321079083,-0.0070824139,-0.0278808977,0.0082079275,-0.0262451023,-0.0107774287,0.0158368126,0.007556505,-0.0303128771,0.0106978109,0.0367402472,-0.0064418484,-0.0101260059,-0.0176318455,0.021656191,-0.0168356616,0.0094383936,-0.0157789085,-0.0287639368,-0.0108932378,-0.0298206899,-0.0171830878,0.0325421914,-0.0289955549,-0.0389985144,-0.0048060529,-0.0264767203,-0.0327448547,0.0049652895,-0.0107340012,-0.0192386881,-0.0030218782,-0.0027142619,0.0449047498,-0.0115374224,0.0163724273,0.0208455306,-0.0117183728,-0.0090837292,-0.0346556939,-0.0103141954,-0.0197019223,-0.0458022654,0.021656191,0.0041003451,0.0030110211,-0.0309498236,-0.0024844543,0.020092776,0.0089244926,0.0321368612,0.0461207367,0.0080993576,0.0005853758,0.0333528481,0.0138970204,-0.056485597,-0.0021677904,0.0353505462,-0.017385751,0.0454258882,-0.03511893,-0.02492778,-0.0034597791,-0.0030309258,0.0348873138,0.0237552188,-0.0088014463,0.0056601409,0.0023396937,0.0023179797,-0.0141865415,-0.0077446937,-0.0360453986,-0.0102345766,0.0247106403,-0.0231182724,0.0515637361,0.0290679354,-0.0210481957,0.0554143712,-0.0143892067,-0.0168356616,-0.0046214834,-0.020802103,-0.0335844681,-0.0033656848,-0.0161408111,-0.0083237365,0.014939297,-0.0036515871,-0.0008373498,0.0303418282,0.005066622,-0.0132311219,-0.0042632008,-0.006402039,0.02504359,-0.0005048527,-0.0052729058,0.0032281622,0.0122684631,0.0114578037,0.0623628795,-0.005989471,0.0222062804,-0.0236394107,0.0036316824,-0.0199624915,0.0372034833,0.0210047681,0.02492778,0.0215838104,-0.0118414201,-0.0062102312,0.0350320712,-0.0006441848,-0.0521138273,0.0309208706,-0.0153156752,-0.0340187475,0.0268820487,-0.0097568668,0.0262740552,0.0196874458,0.014657014,-0.0233209375,-0.0098002944,0.0034814931,0.0443257056,0.0117328493,-0.0055081421,-0.0320789553,0.0204836298,-0.0164448079,-0.003941108,-0.0074624107,-0.0034471126,0.0061269938,-0.0145267295,-0.0159960501,0.021656191,-0.0163724273,0.0131876934,-0.0047083395,-0.000057254,0.0415463001,0.0150985336,-0.0272439513,0.0121309413,-0.0025351206,0.0230748449,-0.0200782996,-0.0178779382,0.0147221563,0.0040026316,0.0143023506,0.0240013134,-0.0085987812,-0.0017923176,0.0222641844,0.0013381311,0.0072597456,-0.0277795661,-0.0191952605,-0.0064816573,-0.0054321429,-0.0062536593,0.0156486239,-0.0038216808,0.0362191088,0.0098292474,0.0100681018,0.0206139144,0.0096700098,-0.046844542,-0.0190504994,-0.0333238989,-0.0112334248,-0.0200203955,-0.0214100983,-0.0032842569,-0.0069448915,-0.0086277332,0.0112913297,0.0021895044,0.0002994736,0.0051317643,0.0059279478,-0.0251883492,0.0226839911,0.0013010362,0.0059279478,0.0251304451,0.0477710068,0.0215982869,-0.0386510901,0.0126158893,0.0057976632,0.0008848493,-0.0476841517,-0.0077157416,0.021714095,0.0001645521,-0.0185293611,0.0002958546,-0.015851289,-0.0014684156,-0.0277216602,0.0156196719,0.0099522937,-0.0132962642,0.0030055926,-0.0016430331,-0.0174870845,0.0190360229,-0.0274755675,-0.01661852,-0.0223220903,-0.0046721492,0.0076578376,0.0376667157,0.0200638231,0.0286915582,0.0062970873,0.0090764919,-0.0132745495,-0.0316446759,0.0000958474,0.0002374979,-0.0086711617,-0.0246237833,0.0103141954,0.0146714896,-0.0051064314,-0.0007758265,0.0010820858,0.0057868063,-0.0238999799,0.0271281432,-0.0459180735,0.029878594,0.0025676917,0.0202230606,-0.0320500024,-0.0239868369,0.048407957,0.0118124671,-0.0003067116,0.0295311697,-0.0042957719,-0.0186306927,0.0097930571,0.0104372418,0.0270557627,0.0137812123,-0.011609803,-0.0207007695,0.000891635,-0.016647473,-0.0240881685,-0.0214390494,0.0152143426,-0.0238999799,-0.0187899303,-0.0136581659,0.0201796312,0.0028970221,0.0208310541,-0.0040858691,-0.0020085538,-0.0046649114,0.0003557945,-0.0092212521,0.0546905659,-0.0004641388,-0.0081789754,-0.0110162841,0.0214969534,0.022394469,-0.0033982559,0.0367981531,0.0028915936,-0.012065799,0.0313551538,-0.0101911481,-0.0013453691,0.0138174025,-0.000888016,-0.0044369134,-0.0053090961,-0.0064092772,0.0037094911,0.0261871982,0.0356400684,-0.0018782692,0.0164592844,0.0193689726,0.0145918718,0.005960519,-0.0003842943,0.0292271711,-0.0004677578,0.0026997859,-0.0090041114,0.015764432,-0.0248409249,0.0226984676,0.0189057384,0.0125000803,-0.0260858666,0.0170383267,-0.0091271577,0.0058917576,0.0021967427,0.017501561,-0.0052982392,-0.0129995048,0.0373771936,-0.0124421762,-0.0075203148,0.0195426848,0.0387089923,-0.0027649282,0.0236394107,-0.0126955071,0.0023451222,-0.0230748449,0.0477999598,0.0035104454,-0.0137812123,-0.0015208914,0.0148524409,0.0250725411,0.0280980393,-0.0359006375,0.0003261638,0.0337871313,0.0090403017,0.021482477,0.0114505664,-0.0227997992,0.0443257056,0.0144109214,-0.0183990765,0.0071982224,-0.0529244877,0.002547787,-0.0060799466,0.0000405443,-0.0343082696,0.0027450235,-0.0336713232,0.0061812792,0.0131587414,-0.0176318455,0.0156631004,0.015055106,0.0189925954,0.0221194252,-0.0114578037,0.0336423703,-0.0136364512,0.017414704,0.0126158893,-0.0124132242],"124":[0.0038181385,-0.0123489108,0.0384528674,-0.0086038634,0.0397058576,-0.0063728457,-0.022693038,0.0759033412,-0.0245725233,-0.0107548293,0.0157041401,-0.0204098132,-0.0108383624,-0.0226373505,0.0351115614,0.0488109142,0.0198111627,-0.0261039548,-0.0461657159,0.0287909228,-0.0079564853,0.0260761119,0.038118735,-0.016943207,-0.0080191353,0.0079912907,-0.0365037695,0.0515396483,0.0360304192,-0.0472237952,0.0052869213,-0.0341370143,-0.0624824278,0.020674333,0.0429914743,-0.0172216501,0.0485881604,-0.0144650722,0.0223171413,0.0141587853,0.0098359706,-0.0386756212,0.0152168656,0.0503145047,-0.0367822126,-0.0339977928,-0.0456088297,-0.0277328417,0.02976547,0.0514839627,0.0055270772,0.0429636315,-0.028679546,-0.0280112848,-0.0132051213,-0.0640417039,0.0152864764,0.0429079421,-0.0126830414,-0.0473630168,-0.0113534806,-0.0509827659,0.0440217108,0.0617027879,0.008395032,0.0259090457,-0.039872922,-0.0069436519,-0.0152307879,-0.0013226004,0.0471959524,0.0191150568,0.0234865993,0.010782674,0.0240434837,-0.0717267096,-0.0357519761,0.0429914743,-0.0409866907,-0.061090216,0.0134766018,-0.029459184,-0.0222753752,0.0006317157,-0.0009232099,-0.0229714811,-0.0409310013,-0.0416549519,-0.0029967341,-0.0008636059,-0.0266886838,0.0367265232,-0.0078172646,0.0410980657,0.0008344564,-0.0114509352,0.0201870594,0.0022101349,-0.0049249465,0.0016732635,-0.0223589074,-0.0208274759,0.0370049663,-0.045386076,0.0147017473,0.0040304507,0.0513168946,0.021259062,0.0090215271,-0.0029671495,-0.0792446509,-0.0330789313,-0.0155649185,-0.0028957988,0.0013104186,0.0037728916,-0.0438546464,0.0058646887,0.058639925,-0.0027948634,0.0027095906,0.0145625267,-0.0255749151,0.0054435446,0.0099125421,-0.0274683218,-0.0032716957,-0.0591411218,-0.0170545839,-0.0469731987,0.0188366137,-0.0131911989,0.0364480838,-0.0166786872,-0.0248788092,-0.0349444933,-0.0308513939,-0.0040896195,0.0055792853,-0.0338028818,-0.0136297448,-0.0288466103,-0.007246458,0.0074970559,-0.0135601349,-0.0031133317,-0.0167622194,0.0412929766,0.0134835634,-0.011931248,-0.0113117136,-0.0338028818,-0.0319930092,0.0105808033,0.0485881604,0.0089240726,0.035946887,0.0750123262,0.005499233,-0.0434091389,0.0187948477,0.0417384841,-0.0150358779,0.0127735352,-0.0174304806,0.0137341609,-0.0263823979,-0.0658237338,-0.0668818131,0.0252268631,-0.0316031873,-0.0691650435,-0.0034335402,0.017179884,0.0233195331,-0.0240017176,-0.0298768468,0.0075318613,-0.0237232745,-0.0172494929,-0.0692207292,-0.0128222629,-0.0161218029,-0.0169849731,-0.0079564853,-0.0152029432,-0.07445544,0.0115483897,-0.0095784115,0.0380630456,-0.0463049375,0.0495348647,-0.0131563935,0.0342483893,0.0124463663,0.0092999693,0.0297933146,0.016943207,-0.0010928856,0.0187530816,0.022539895,0.0239321068,0.0535165891,0.0148270465,-0.0020239267,0.0132399257,0.0243915357,-0.0030089158,-0.0403741188,-0.0242940802,0.0301274452,0.0419612378,0.0270924252,-0.0131076658,-0.0220387001,0.0067034955,-0.0388426855,-0.0122236125,0.0329118669,-0.0137202386,-0.0037311253,0.0532103032,0.0027095906,0.0112142591,-0.0118894819,0.0325777344,0.0293756519,-0.0497576185,0.0656566694,0.0076780436,0.0158433598,-0.0518180914,-0.0121748848,-0.0482818745,-0.0170267392,0.0036023459,-0.0156066846,-0.0165533889,0.0044237501,0.016358478,-0.0342762321,0.0267304499,0.00069306,0.0122375339,-0.0041279052,-0.0043541398,-0.0537393428,-0.0456923619,0.0319373198,0.0349166505,0.0429357849,0.0008588201,-0.0322157629,-0.029459184,-0.0091885924,-0.0215653479,-0.058639925,0.0022327583,-0.0015044579,-0.0198946949,0.0218577124,-0.0512890518,-0.0304615758,-0.0148131242,-0.0140543692,0.0113534806,0.0374504738,-0.0551593974,0.0333573744,-0.0226651952,0.0331067778,0.0088823056,0.0215235818,-0.0799129084,-0.0461935587,-0.0140891746,0.0116945719,0.0020500305,0.0130102113,-0.0274126343,0.016511621,-0.0031846825,0.0193238873,-0.0101213735,-0.0074622505,-0.0114996629,0.0131911989,0.0529875495,0.0067626648,-0.0314082801,-0.0252825506,0.0292364303,0.0249205753,-0.0098638143,-0.0099891135,-0.0221639983,-0.0012764834,0.0323828273,-0.0274544004,-0.0495905541,-0.0033656699,0.0153282424,0.0070097824,-0.0135183679,-0.0060665593,-0.0009588853,-0.0113743637,-0.0475857705,0.0196997859,-0.0220108554,-0.0085620973,-0.0166786872,0.0232916884,-0.0151750995,-0.0001759842,-0.0227348041,0.0681069568,-0.0338307247,-0.0112003367,-0.0692207292,-0.0039817235,-0.0493678004,0.0108105177,-0.0123071447,0.0108940508,-0.0232499223,0.0536279641,-0.0021109399,0.0079634469,-0.0228879489,0.0021091995,0.0031516175,0.0032577736,-0.0179595221,-0.0259090457,-0.0034318001,0.0197137073,-0.0209388528,-0.0070097824,0.0144233052,-0.0059586628,-0.0185999386,-0.0488387607,0.0086734742,0.0501474366,0.0079982523,-0.0147017473,-0.0176532343,0.0012756133,0.0330232419,-0.0442723073,-0.0004507283,0.0055827657,-0.0324385166,-0.0207439438,-0.0341091678,0.0017350429,0.0224981289,-0.0034004753,-0.0078590307,-0.0796901584,0.0385642424,-0.013038056,-0.0241966266,-0.0013260809,0.0114718182,-0.036531616,0.0334130637,-0.0324385166,-0.0098777367,0.0060630785,0.0287909228,-0.0017446143,-0.0249205753,-0.0713368878,-0.0154953077,0.0408196263,0.0051651024,0.023082858,0.0681069568,0.0430471636,0.0118755596,0.0331624635,-0.0368935913,0.024795277,0.0218020231,0.0179873649,0.0072046919,-0.0514839627,-0.0473908596,0.0198111627,-0.0387869962,-0.0051825051,0.0021614076,-0.006606041,0.0168179087,0.0206186436,-0.0003426144,0.0697219223,0.0004559491,0.0248788092,-0.0290136766,-0.0679955855,-0.0277746078,0.0335522853,0.0074622505,-0.0373669416,0.0286238566,-0.0414043553,-0.0248091985,-0.0373947844,-0.0100308796,0.0455252975,-0.0409588479,0.0420726165,-0.0064737811,-0.0223171413,0.0548809543,-0.0150358779,0.0410145335,-0.0216210354,-0.0095296837,0.0063693649,-0.0188644584,-0.021453971,0.0308792386,0.0373669416,-0.0482540317,0.0142980069,-0.0530989245,-0.0008836189,0.012258417,0.016943207,0.0040478534,-0.0268696714,0.0364759266,0.0316310339,-0.0093347747,0.0261596441,0.0035396963,0.0176253915,0.0057254676,-0.0055444799,-0.0202984363,0.0216488801,-0.0432699174,-0.0333295316,0.035362158,0.0154813854,-0.034777429,0.0608117729,-0.0043262956,0.0152586317,0.0508157015,-0.041933395,-0.0541291609,0.0328840241,0.0024746549,0.0124185216,-0.009891659,-0.0419055484,-0.0000962583,-0.0612015948,-0.0218020231,-0.0093695801,-0.0267443731,0.023862496,-0.0300439131,0.0635961965,-0.0183911063,0.0154396193,0.0159268938,-0.0389262177,-0.0009519242,-0.028874455,0.0116806496,-0.0115483897,0.0343319215,-0.0262849424,-0.0147713581,-0.0083114989,-0.0205629561,-0.0412094444,0.0314639658,0.021607114,0.0062231831,-0.0102536334,0.0710584447,-0.0275936201,0.004100061,-0.0059482213,-0.0018586016,0.0720608383,-0.0162471011,-0.0121400794,-0.0036893589,-0.0262570977,-0.0539342538,-0.0122723393,-0.0093208523,0.0601435117,0.0109010115,-0.0030907083,0.0914961025,-0.0071698865,0.0260482673,-0.0076014716,-0.0045734132,0.0036267096,0.0121609624,0.0278999079,0.0077198097,0.0061779362,0.0113952467,-0.0270228144,0.0351950936,0.0057741948,-0.0002969325,0.0009780282,-0.0131215882,-0.0054644281,-0.0336915068,0.007636277,0.0208135545,0.0259647351,0.0153560871,-0.0407360941,-0.0344989859,-0.0316031873,0.0086386688,0.0327726454,-0.0185999386,0.0067417817,0.0329118669,-0.0544354469,-0.0027600583,-0.0188087691,-0.0255749151,-0.0274544004,0.0219273232,-0.0053634928,0.0485046282,0.0005834234,0.0686081573,0.0051511806,0.0037833333,-0.0311576817,-0.033775039,-0.0230271686,0.0354178473,0.0066826125,-0.0277746078,0.0224563628,0.0001854468,0.0105181541,0.0269253589,0.0117224166,-0.0113952467,0.0189758353,0.0123628331,0.0189201459,-0.0003025883,-0.0054296227,0.0168179087,0.0066095213,0.0583057962,0.0084924866,-0.0196580179,-0.0263823979,0.0012025222,0.0157876723,-0.0098220482,-0.0034770467,0.0013983019,0.0451633222,-0.0068148724,-0.0650997832,-0.0120913517,0.0103441272,0.0303780437,-0.0185024831,-0.0137202386,-0.0059517017,0.0014217955,-0.0296819378,-0.0029636691,0.0127596138,0.0221361537,0.0204098132,0.0048344526,0.015077645,0.0087570073,0.0009545346,-0.0052521159,0.0040060868,0.0013173796,0.0250737183,-0.0079286415,-0.0145486044,0.0581387281,0.0196580179,-0.0107130632,0.0117920265,-0.0416827947,0.0114718182,0.0402627401,0.0545746684,0.0249901861,0.0211616065,-0.0344154537,-0.0262292549,-0.0227208827,-0.0124324439,-0.0119521311,0.0097733205,-0.0064737811,0.0153421648,0.0067034955,0.0254078507,0.0192125104,-0.0118059488,-0.0395666361,-0.0094113462,-0.0373112522,0.0181683525,0.0398172326,-0.0148131242,-0.0332459956,-0.0376175381,0.0242383927,-0.0120147802,-0.0288187675,0.0025112005,-0.0227904934,-0.0002321077,0.0368935913,0.0192403551,0.0213843603,-0.0052869213,-0.0398450792,0.0064981445,0.0163724013,0.011715455,-0.0000714052,0.000171851,-0.0119242864,0.0024850965,0.0195187982,0.0070271846,-0.0235562101,-0.0206325669,-0.0306843296,0.0340534784,0.0205629561,0.0085133696,0.0178203005,0.0007309107,-0.0106991408,0.0207300205,0.016748298,-0.0422953703,0.0262570977,0.0065120668,0.0024816161,-0.0217045695,0.0200199932,0.0183214955,0.0185164064,0.0374504738,0.0576932207,-0.0025581876,0.020674333,0.0349723399,0.0350837149,0.0397893898,-0.0090911379,0.0063484819,-0.0068810028,0.0233612992,0.0392325036,-0.0157041401,0.006908847,-0.0276771542,-0.010260595,-0.0162192583,0.0331624635,-0.0135392519,0.0384807102,0.044383686,0.0204794239,0.0087291626,-0.0335244387,0.0187948477,-0.0351672471,0.0014409383,-0.0466669127,0.0104903094,0.0228183381,-0.0312412139,-0.096563749,0.0014870553,-0.0118059488,-0.0601992011,-0.0194631089,-0.0386477746,-0.0008936254,-0.009153787,0.0019055888,0.0390932821,0.0041383472,-0.0348888077,-0.0199225396,-0.0021144203,0.0231663901,0.0074413675,0.0157459062,-0.0284985583,0.0528204851,-0.0083323829,0.0138873039,-0.0286517013,0.0181544311,0.0004265821,-0.0493678004,0.0542126931,0.0077406927,-0.0029062403,0.0370049663,0.0145207606,-0.0146599812,-0.0099612698,0.0045177247,0.018112665,-0.0399286114,0.0209945403,-0.0061152866,-0.0211616065,-0.0027617984,-0.0279695187,0.0076432382,-0.0457480513,-0.0134557188,0.0039503984,-0.0250597969,0.02494842,-0.0238485727,0.0146599812,0.0355013795,-0.019783318,-0.0189619139,-0.0034666052,0.0131981596,0.010782674,0.0011181195,-0.0047056731,-0.0212312173,0.0084855258,-0.0055409996,0.0119173257,-0.0047335173,-0.0152586317,0.0250041094,-0.031436123,0.0228183381,-0.006487703,0.023277767,-0.0209388528,-0.0007235146,-0.0077894204,-0.0408474691,-0.0105668809,-0.0247117449,0.0088475002,-0.0031899035,0.0265494622,0.0019908617,-0.0000209783,0.0286517013,0.0253521614,-0.0127387298,0.0229854025,0.0103650102,-0.0203402024,-0.0069018858,-0.0086108251,-0.0213286709,0.0034022154,-0.0245586019,-0.0215514246,-0.013970837,-0.0312133692,0.0163027905,-0.0229575578,-0.0078381477,0.0229018703,-0.0091955531,0.0172216501,-0.0673273206,0.0195884071,0.0063624042,-0.0322157629,0.0067452621,0.0107687516,0.0419612378,0.0584728606,-0.0020187059,-0.0128153022,0.0175836235,-0.0436597355,-0.0207021777,-0.0067417817,-0.0075945109,0.0147992028,0.035362158,0.0078242254,0.0194491874,0.0354735367,-0.0244750679,-0.0107548293,-0.0023058495,0.0505651012,0.0158294383,-0.008200122,0.0040513338,0.0198250841,0.0220943876,0.0268975161,-0.0120495856,0.0151611771,0.0059412601,0.0284846369,-0.0088892672,0.0311576817,0.0070654708,-0.0073021464,-0.0238903407,0.0141030969,-0.0317145661,-0.0052973628,0.0304894205,-0.04204477,0.0108174793,0.0184885617,-0.0071141981,0.0261874888,-0.0107130632,0.0275936201,0.0424067453,0.0086734742,-0.0061257281,-0.0034318001,0.0041731521,0.0033743712,-0.0312133692,0.0057324287,0.0081862006,0.0019821604,-0.0068322751,0.0216628015,0.0180848204,-0.0432699174,-0.0227487274,0.0194909535,-0.0071211592,0.0428244099,0.0031115916,-0.0103093218,0.0277746078,0.0298211593,0.0256166812,-0.0120078195,0.0297097825,-0.0211476851,0.0007004561,-0.0272594895,0.0083254213,-0.0297933146,0.0221500769,-0.0114996629,0.0040756976,0.0018951471,-0.0170406625,-0.0139569147,0.0007304757,0.0216488801,0.0328283347,0.0143954614,0.0460821837,0.0205629561,-0.0258255135,-0.0153421648,0.0101144128,0.0133025758,0.0152029432,-0.0100587243,0.0056140907,-0.0009675866,0.025533149,0.0040269704,0.0081722783,0.0144929159,-0.0277606864,-0.0290136766,0.0039538792,0.0004120074,-0.016205335,-0.0255470704,0.008005213,0.0497297756,0.0140334861,0.022539895,-0.0173469484,0.0165812317,0.0027774607,-0.0199921485,0.0111446483,-0.0197276287,0.0604219548,-0.0175697021,-0.0422396809,0.0228183381,-0.0029775912,0.0360304192,0.0404298045,-0.0042218799,0.0054087397,-0.0130798221,-0.0031394358,0.0607003979,0.012453327,0.0257976688,0.0005708065,-0.0112629868,-0.0199782271,-0.0092373192,-0.001227756,-0.0016123543,-0.001564497,0.0096410606,-0.012843146,0.0218298677,0.0179873649,-0.0045560105,0.0062197023,-0.0158851277,-0.0142840846,0.0399564542,0.0075109783,-0.0310184602,-0.0166229978,0.0763488486,-0.021955166,0.0594752505,-0.0328561775,-0.0359190442,-0.0186556261,0.0297097825,0.0149801895,0.0257976688,-0.0169849731,0.0137620056,0.0153560871,-0.0059899874,-0.00475092,-0.016943207,0.0244611464,0.0194491874,0.0158990491,-0.0158712044,0.0097245937,-0.0079007968,0.0434369817,-0.0033952545,0.0065712356,0.0223867521,0.004197516,0.0235422868,0.0005568844,0.0011790287,0.0174722467,0.0372834094,0.0064633396,-0.0283314921,-0.0289858319,0.0082418891,-0.0140613308,0.0062719104,0.0103510888,0.0242523141,0.0421839915,0.0380630456,0.0136088617,0.0109636616,0.0057846364,0.0382857993,-0.0199503824,-0.0072743022,-0.0049179853,0.006811392,0.0214678925,-0.0208970867,0.0071490034,0.0336358175,0.012690003,-0.0137620056,-0.0472237952,0.0369214341,0.0075457832,0.0147713581,-0.0265076961,-0.035946887,-0.0269114375,0.0402905867,0.0136158234,0.0122096902,-0.0043959059,-0.0081653176,-0.0274822433,-0.0312690586,-0.0095296837,0.016205335,-0.0048553357,0.0184746385,-0.0175557807,-0.0049145045,-0.0204655007,-0.0061779362,-0.008937994,0.0183632616,0.0180987418,0.0105599202,0.0142840846,0.0199782271,0.0069227689,-0.0101770619,-0.0147156697,-0.0054470254,0.0011859897,0.0044898805,0.0067522232,-0.0083532659,-0.0104555041,0.0112003367,0.0551872402,-0.0051059336,-0.0001282357,-0.0230271686,-0.0088892672,0.0125786262,0.0161496475,-0.0123071447,0.0298490021,-0.0043193344,0.0144929159,0.0241409373,0.0222057644,0.0088544618,-0.0154953077,0.0157737508,0.0105808033,-0.003313462,-0.014882735,-0.0397337005,-0.0104972702,-0.0003582768,0.0094670346,0.0162331797,-0.0033047607,0.0076432382,0.0018516405,-0.0066512879,0.007636277,0.0209666975,-0.067550078,0.0111098429,0.0104694264,-0.0218437891,-0.0464998446,0.0243776143,0.0072743022,0.0155231524,0.0148966573,-0.0035536184,0.0015001073,-0.0074135233,0.0065538329,-0.021955166,-0.006150092,-0.0033639297,0.0193656534,0.0047056731,0.0145207606,-0.0007339562,-0.0421839915,0.010782674,0.0201035254,-0.027941674,0.0330789313,-0.0138246547,-0.0092373192,0.0443558395,-0.0121679241,-0.001524471,-0.0360861085,-0.0246421341,-0.029264275,0.0300439131,0.0104763871,0.0226373505,0.007733732,0.0230271686,-0.037812449,-0.0019369135,0.0457202084,0.0226095058,0.027203802,0.0271202698,0.0382301137,0.0252964739,0.031129837,0.0404019617,-0.0145068383,-0.0034230987,0.0191150568,-0.0058751302,-0.0255053043,0.030934928,-0.0103650102,-0.0002856208,0.013427875,0.0388705283,0.0071629253,0.0174444038,0.0188366137,-0.0127735352,0.0041592303,-0.01418663,-0.0075457832,-0.000904067,0.0054748696,0.0038355412,-0.0056767403,0.0139847593,0.0092790863,0.0367543697,0.0288187675,0.0140961362,0.0633177534,0.0166926086,-0.0226373505,0.0211755279,-0.0153421648,0.0069506131,0.0008331512,0.0232360009,0.0203680471,0.0293478072,-0.015272554,-0.0104903094,-0.0187113155,-0.0042427629,0.0229157917,-0.0297933146,-0.0205768775,0.0132608097,-0.0052729989,0.0169710517,0.0148966573,0.0195744857,0.000897976,-0.0292921178,-0.023124624,-0.0059482213,-0.0062823519,-0.016595155,-0.0108662061,0.0139777977,0.0136506287,-0.0056280126,0.0210502297,0.0264798515,0.0197693948,0.0142283961,-0.0186556261,-0.0270645805,0.010218828,-0.0043158541,0.0048031276,-0.018112665,0.0030524225,-0.0040443726,-0.0174165592,0.0196301751,-0.0160800368,-0.0071977307,0.0007831187,-0.0179734435,-0.0037833333,-0.0049736737,-0.0147852805,-0.0333295316,-0.0106921801,0.0134974848,0.0493956432,0.0125647038,-0.0092025148,0.0429079421,-0.0029949937,-0.0146042928,0.0107757123,0.0110332714,-0.0464720018,-0.035250783,0.0267165285,-0.0295427162,0.013581018,-0.0253103953,0.0178899113,0.0306286402,0.0338028818,0.0103162834,0.0234726761,0.0039886842,0.0148548912,0.0409866907,0.0169571303,-0.037116345,-0.0278581418,0.0257141367,-0.0460543372,0.0012817042,-0.0093904631,-0.019546641,-0.0078868754,-0.0280669723,-0.0003458774,0.0260761119,0.0066686906,-0.0017063286,0.0214678925,-0.0174444038,-0.0199086163,-0.0168457534,-0.037701074,-0.0222475305,0.002006524,-0.0267165285,0.0350558721,0.0052416744,-0.0317424089,0.0271898806,-0.0128222629,-0.0138942655,-0.0292921178,-0.0436318927,0.0130728604,0.0236954298,-0.0417941734,0.0172912609,0.029960379,0.013017172,0.0223589074,0.005694143,-0.0086038634,0.0007705017,-0.01709635,-0.016010426,0.0256166812,-0.0146182152,-0.0046116989,0.0263684746,-0.0069784573,-0.008589942,0.032605581,-0.0226234272,-0.0007043717,-0.0085412143,0.0221222322,-0.0156345293,0.0578602888,-0.0143536953,-0.0268279053,0.0317424089,-0.0348052755,-0.0322436057,0.0052451547,0.0172355715,-0.0542126931,0.0165812317,-0.025881201,0.0200478379,0.0452190116,-0.0010606907,0.0052834405,-0.0104067773,0.0301831327,-0.0158990491,-0.0135392519,0.0353064686,0.0256306045,0.0053460901,-0.0173191037,-0.0385085531,0.0069471328,-0.0241827033,0.0133652249,-0.0119660534,0.0175557807,0.0108940508,0.00032978,-0.0054435446,0.0085064089,-0.0100099966,0.00706199,0.0062057804,0.0029775912,-0.0152307879,0.0038807881,-0.0222336091,0.0184328724,0.0032247086,0.0136506287,-0.0435483567,-0.0066512879,0.0058507663,0.0184885617,-0.0164002441,0.0190732908,0.0042392826,0.0294034947,-0.007246458,-0.0084924866,0.0262431763,-0.0280252062,-0.0035553586,0.0048796996,-0.0423232131,-0.0091885924,0.0062788716,0.0017350429,0.0340534784,0.0213565156,0.0151333334,0.003926035,0.0208970867,-0.0170267392,0.0426851884,-0.0083811097,0.0093486961,-0.0175000913,0.0006278001,0.0044411528,0.0186417047,0.0114439745,-0.0079704076,0.021259062,-0.0063206377,-0.0265494622,-0.0066095213,-0.0068531586,0.0019125498,-0.001174678,-0.0143258506,0.0073856791,0.0600878261,-0.0077894204,-0.0467782877,-0.0217463356,-0.0271759573,-0.0025755903,-0.0153421648,0.0244054571,0.0281226616,0.0387869962,-0.0351115614,0.0103998156,-0.0308792386,0.0158155169,-0.0055862465,-0.0185860153,0.0379795134,-0.0018203158,0.0006787028,0.0348888077,-0.0099543082,0.0457758978,-0.0246421341,-0.0064006899,-0.0008305408,0.0060178316,0.0167900641,0.0527926385,0.0211059172,0.0109149339,0.0179316774,0.008200122,-0.0114022074,-0.011172493,0.011562312,0.0131772766,-0.0022536414,-0.0273430236,0.0551593974,0.0324385166,0.0096480222,-0.0253939275,-0.0041453079,0.0075527444,-0.0202566702,0.0141727077,-0.0194909535,-0.026772216,-0.0001793559,0.0061326893,-0.0068148724,-0.0318537876,0.040457651,-0.0137411216,-0.0018203158,0.0240574051,-0.0007374368,-0.0089101503,0.0159268938,0.0007565796,0.0118616372,0.0044028671,-0.0086804349,-0.0405968726,-0.0059795459,-0.0405968726,-0.0287352335,0.0126064699,0.0019682383,-0.0071838084,0.0050502452,0.0122027285,-0.0007352614,0.0190872122,0.0389262177,0.0092373192,-0.0073230295,0.001062431,-0.0088753449,0.0017385234,0.024210548,-0.0397337005,0.0079843299,-0.0165533889,-0.0009641061,-0.0116876112,-0.0364202373,0.0325220488,0.0382022671,-0.0036858786,0.0102049066,-0.0090563325,-0.0071977307,0.0148548912,0.0112490645,-0.0235701315,-0.0118129095,0.0158851277,0.0023336937,0.0413765088,0.0094670346,0.0097872429,0.0248788092,0.0468061306,0.0157041401,0.0062684296,0.0014670423,0.0407360941,0.0112560252,0.0019038485,0.0082906159,0.0151194111,-0.0041627106,0.0520408452,-0.0067452621,-0.002559928,-0.0107896347,0.0166647658,0.0312969014,0.003682398,0.0386199318,0.0256166812,-0.0149941118,-0.0254635382,0.0289579872,-0.0090354495,0.018850537,-0.013817694,0.0071350811,-0.0123489108,0.0245586019,0.0035675406,-0.0038912296,0.007246458,0.037812449,-0.000313465,0.0194631089,-0.0228879489,-0.0044968412,0.0180012882,-0.0036197484,-0.0510106087,0.0434091389,0.0103998156,-0.0006295404,-0.0052799601,0.0134209134,-0.0356127545,0.0189340692,-0.0026573827,-0.0136436671,-0.0271341912,-0.0350837149,-0.0047335173,0.0041522691,-0.0098220482,-0.0225955844,0.0110123884,-0.0285403244,0.005944741,0.0159268938,0.0002782246,-0.0333852172,0.0266469177,0.0314918123,0.0284707136,-0.0037868137,0.0096410606,0.0203819685,-0.0187252369,0.0108314008,0.0105181541],"125":[-0.0166007932,-0.0091753034,0.0620361194,0.006202864,0.0432817079,-0.0003140691,-0.0273688752,0.0529729836,-0.0242281854,0.0075451354,0.0181412268,-0.0107531268,-0.0201004203,-0.033052031,0.0423843674,0.0098258751,-0.0181711391,-0.0160324778,-0.0418459661,0.0240935851,0.0052718734,0.0475889407,0.0308685023,-0.0322743356,-0.0075451354,0.0081209289,-0.0321247801,0.0525243133,0.0099380426,-0.0621557645,-0.0047334693,-0.0450464785,-0.0568913668,0.0308984146,0.0288943537,0.0048381593,0.0542890802,-0.0064496328,0.0157931875,0.0196966175,0.0037220924,-0.0217754561,0.0006029005,0.0360730775,-0.0388249196,0.0015479118,-0.0513876826,0.007152549,0.0289392211,0.0845892653,-0.0209977608,0.0155389411,-0.039393235,0.0046736468,0.0157782324,-0.0679585636,0.0162717681,0.0414571166,-0.0073806229,-0.0367311239,-0.0016806434,-0.0392137654,0.0390342996,0.0287747085,0.0166606158,0.0239141155,-0.0421151668,0.0049578045,-0.028610196,0.0142228417,0.0495032668,0.0228672195,0.0125478068,-0.008816367,0.0300309844,-0.0636513308,-0.0296271816,0.0641299114,-0.0040754201,-0.0473496504,0.0240487177,-0.0165409707,-0.0620959401,-0.0035220603,0.0070403814,-0.0280418806,-0.0057018492,-0.0299562067,-0.0109251169,-0.0227774847,-0.0031163876,0.0389744751,0.0022713924,0.0193376821,0.0009197737,-0.026292067,0.0010356802,-0.0175878685,-0.0099604763,0.0246768557,-0.0148435021,0.0018432863,-0.0127123194,-0.0269501172,0.0396026149,-0.0173784886,0.0327230059,-0.0012179523,0.0149481921,0.0283709057,-0.1008610353,-0.0165559258,-0.0205490906,-0.0209528934,-0.018799277,-0.0138713839,-0.0447772741,-0.002718193,0.0361628085,0.0169746857,-0.0331716761,-0.0023629959,-0.0125328517,-0.0080984952,0.0263070241,-0.023749603,0.0147986356,-0.0349962674,-0.028520463,0.0102222003,0.023226155,-0.0148883695,0.0583869368,-0.0054962086,-0.0238094255,-0.0281166602,-0.0642495602,-0.0230317321,-0.015262261,-0.0296271816,-0.005705588,-0.0354150273,-0.0041090702,0.0082330965,-0.0392137654,0.0031818189,-0.0320350453,0.0455549695,-0.0174383111,-0.0278325025,-0.009930565,0.0065879724,-0.0217754561,0.0112092746,0.0353851132,-0.0068310024,0.0102521116,0.0637111515,0.004172632,-0.0508492775,-0.0083153527,0.0391539447,-0.0184253845,0.0241534077,0.0089584459,-0.0167653058,-0.041187916,-0.0532720946,-0.0941608995,-0.0010403538,0.0134376697,-0.0769319683,-0.0392137654,0.0298515167,0.0307488572,-0.0167204384,-0.0225381944,-0.033680167,0.0010010952,-0.0417562313,-0.0466916002,0.0035052351,-0.0187244993,0.0094220722,-0.0447772741,-0.0229419973,-0.0630531013,0.0314966403,0.0169298183,0.0392137654,-0.0425937474,0.0795043409,-0.0056083761,0.0368208587,0.0147014232,-0.0304946117,0.0243478306,0.0303600095,-0.0261275545,0.0021012716,0.0345176868,0.0259630438,0.0638308004,0.0164512377,-0.0050026714,0.0201303326,0.0441790484,0.0084649092,-0.035474848,-0.0508492775,0.0256788861,0.0066739675,0.0188590996,-0.0256639291,-0.0105960919,-0.001754487,-0.0589253381,-0.0031425601,0.0124954619,-0.0002846251,0.0063823322,0.0483367257,-0.0050138882,-0.0249460582,0.0060944357,0.0305095669,0.0199359078,-0.0201153755,0.054079704,-0.0144696105,0.0085695991,-0.0289691333,-0.0035314076,-0.0560239404,0.0199359078,-0.0134077584,-0.0037426564,-0.0271594971,-0.0115831662,-0.0281914379,-0.0063972878,0.0057990612,-0.0035893607,0.0288943537,-0.0170943309,0.0026209811,-0.0442388728,-0.0504006073,0.0182160065,0.0432817079,0.0227774847,-0.0098408312,0.0021218357,-0.0170045961,-0.0139087727,-0.0372994393,-0.0331118517,0.0257237516,-0.0108952057,-0.0230466872,-0.0003283237,-0.0518363528,-0.0072684553,-0.0144396992,-0.0359534286,0.0288793985,0.0142751867,-0.0375387296,0.0223138593,-0.0153893847,0.0275333878,0.016047433,0.0322743356,-0.0783078894,-0.0182309616,-0.0224185493,0.0157184098,-0.0186796319,-0.0095118061,-0.0320350453,0.0174083989,-0.030105764,0.0235402249,-0.0112242298,0.0176028237,0.0147612458,0.0217156336,0.0504006073,0.0149930594,-0.0240636729,-0.0316461958,0.0155838076,0.026501447,-0.0367909484,0.0122786053,0.007290889,0.0168699957,-0.0210426282,-0.0419356972,-0.0403503962,-0.0021106189,0.0194124598,0.011515866,-0.0449567437,0.0135049699,0.0174682215,-0.00998291,-0.0355944932,0.0029443975,0.0029630922,-0.0105736582,-0.0272641871,-0.0187843218,-0.0154791186,0.0067038792,-0.0359833427,0.068855904,-0.0247665886,-0.0128768319,-0.0760944486,-0.0171691086,-0.1082192287,-0.0194124598,0.0178869814,0.0293280687,-0.0157184098,0.0226578396,-0.0045427848,0.0236748252,-0.0192479473,0.0062963371,-0.0422348119,0.0339194611,0.0138639063,-0.0200106855,-0.0168999061,0.0314069055,-0.0138564277,-0.0044156616,0.0347569771,-0.0046362579,-0.0062477309,-0.0494733565,0.0261125993,0.0314069055,0.0142901428,-0.0163315907,-0.030838592,-0.0156137189,0.0156884976,-0.0477085859,-0.00683848,0.0264266692,-0.028505506,-0.011254142,-0.046990715,-0.0032659443,0.0120542701,-0.0237795152,0.0076797367,-0.0408888012,0.039393235,-0.0080760615,-0.0146416007,-0.0098034414,0.0059374007,-0.0498921163,0.0143948318,-0.038107045,-0.0137517387,0.0204743128,0.0038323903,-0.0111419745,-0.0202499777,-0.0608695745,0.0018189833,0.0661040619,0.0329323858,0.0054401248,0.0595235676,0.0268454272,-0.022283949,0.0405597761,-0.0262322444,0.0256489739,0.0495630912,-0.004486701,0.0177075136,-0.0546779297,-0.0284456834,0.0190236121,-0.0160623901,-0.0060346127,-0.0181412268,-0.0313769951,0.0136620048,-0.0137517387,0.0248264112,0.0652067214,0.0175280459,0.0216258988,-0.0325435363,-0.0668817535,-0.0145443892,0.0256938413,0.0218352787,-0.0100352541,0.0271744523,-0.0175130889,-0.0214165188,-0.0355346724,0.001799354,0.0371797942,-0.0334707908,0.0460335501,-0.0065730168,-0.0487255715,0.0481871702,0.0149332359,0.044358518,-0.0088911457,0.001661014,-0.0307189468,-0.0180814043,-0.0343980417,0.033381056,0.04752912,-0.0399017259,-0.0077919038,-0.0475590304,0.002086316,-0.0129964771,0.0560837612,-0.000775358,-0.0286401082,0.0515372381,0.0159577001,-0.0180963613,0.0305245221,0.01986113,-0.0129889995,0.0330221206,0.0202649329,0.0090407021,-0.0128319645,-0.0249311011,-0.0312274378,-0.0214613862,0.010611048,0.0053915191,0.0631129295,-0.0180215817,-0.0007403056,0.036761038,-0.0301207192,-0.0190684795,0.0339493714,-0.0049241544,0.0333511457,-0.0398718156,-0.0180066265,0.0115308212,-0.0625745207,-0.0313171744,-0.0234056227,-0.0574596822,0.0365815684,-0.0039034297,0.0704112947,-0.0191283021,0.0267556943,0.0024919885,-0.0438500233,-0.0160175227,-0.0164063703,-0.0038080874,0.0118897576,0.0173336212,0.0230317321,-0.0241384506,0.0136694824,-0.0240038503,-0.016780261,0.0557547361,-0.0025256388,0.0178570691,0.0174831785,0.0527037792,-0.0137517387,0.0198013075,-0.0362824537,0.0076535642,0.0562333204,-0.0193675924,-0.0360431634,-0.0031182573,-0.0405597761,-0.0337399915,-0.0105362693,-0.019950863,0.043610733,-0.0001364705,0.0049428488,0.0608097538,-0.0209528934,0.0220147464,-0.0103941904,0.0043894891,-0.0003154712,-0.0323640704,-0.0028266215,-0.0091379145,0.0253049936,0.0153445173,-0.0136171374,0.0141555415,-0.0139985066,-0.0171541534,-0.0111195408,-0.0037445258,-0.014148064,-0.0504604317,-0.0223736819,0.0053466521,0.0053690854,0.00949685,-0.0507595427,-0.0403204858,-0.025349861,-0.0095865848,0.0288195759,-0.0297318716,0.0208631586,-0.0171990208,-0.044657629,0.0081732739,-0.021117406,-0.0400213711,-0.0421151668,0.0104241017,0.0054849917,0.0395427905,0.0166307054,0.0353851132,0.0158978775,0.0100950776,0.0042025433,-0.0163315907,-0.0071450714,0.0477384999,0.0133928023,0.000106267,0.0158230979,-0.00150211,0.0229120869,0.008921057,0.0060533076,-0.0094519835,0.0301805418,0.0089659244,0.0094893724,-0.0044642673,-0.001944237,-0.0036996589,0.011254142,0.0340391062,-0.0100128213,-0.0062813815,-0.0418758765,0.0041614152,0.0388847403,-0.0175729115,0.0114485649,0.0361927226,0.0325136259,0.0070403814,-0.0371199735,-0.0243179183,0.0117102899,0.0184253845,-0.0179168917,0.0088238455,-0.0085172541,0.0348167978,-0.0298365615,0.0018161791,-0.0144770881,0.0153295612,0.0084050866,0.0122786053,-0.0042885384,-0.0018115055,-0.0075900024,0.0015647369,0.0241085403,0.0064458936,0.0133255022,-0.0030808679,-0.025977999,0.0187244993,0.0204294454,-0.0068272632,-0.0177972466,-0.0431919731,0.0065730168,0.0278624129,0.0126076294,-0.0234355349,0.0330819413,-0.0296271816,0.0231663324,-0.0211622734,0.0071974159,-0.0331118517,-0.0154492073,-0.0173037108,-0.0080910176,-0.0237795152,0.0170943309,0.0046923412,-0.0316761099,-0.0269650724,-0.0165260155,-0.0353252925,0.0148808919,0.0387650952,-0.0288793985,-0.0296271816,-0.0346074216,0.0293579791,0.0101474216,-0.0184403416,0.0199209526,-0.0177075136,-0.0029855256,0.0430424176,0.0487255715,0.0404700413,-0.0067263125,-0.0117701124,0.015628675,0.0433116183,0.0023686043,0.0136993937,0.0181262717,-0.0205341354,-0.006072002,0.040230751,-0.0037800455,-0.0339792818,0.0146042118,-0.0191881247,0.0625745207,0.0084948204,0.0246619005,-0.0071151601,-0.0081209289,-0.0117701124,0.037269529,0.019218035,-0.0426535718,0.0180963613,-0.0065505835,0.0312274378,-0.0265463144,0.0085920319,0.0144845666,0.0348467119,0.0305245221,0.0237944704,-0.0053466521,0.0412178263,0.0334707908,0.0149706258,0.0322444253,-0.0131086446,-0.000994552,-0.0195021927,0.0381967798,0.0492639765,-0.0361628085,0.004669908,-0.0508791879,-0.013033866,0.004617563,-0.0092276484,-0.0341886617,0.0184403416,0.0461831093,0.0196218397,0.0156735424,-0.0367909484,0.0167204384,-0.0231962446,0.0107979933,-0.0267706495,0.0036865727,0.045405414,-0.0332015865,-0.0448670089,0.0108279046,-0.0057130661,-0.0638906211,-0.0181412268,-0.0287447982,-0.0067450069,0.0080012837,-0.0119271465,0.0521354638,-0.0264416244,-0.0394829698,-0.0050325831,-0.0119794914,0.0318555757,0.0152323497,0.0204593558,-0.0318854898,0.0295374487,-0.0319154002,0.0126375407,-0.0492340662,-0.0026415451,-0.0109101608,-0.0385258049,0.0401111059,-0.0150454035,0.0143723991,0.0210725386,0.0087341107,0.0017974846,0.0138639063,0.0022190476,0.0178122036,-0.0129590882,0.0269650724,-0.0023742125,-0.0261574667,-0.0000385576,-0.0259480868,0.0084873429,-0.0145069994,-0.0147537682,-0.0060420907,-0.0131983785,0.0268902946,-0.0387351848,0.0177673362,0.0382566042,-0.0021255745,0.0026097645,-0.0142452754,0.0149855809,0.0057354993,-0.0063636377,-0.008554643,-0.0126076294,-0.0083303079,-0.0010067035,0.0019629316,0.0181561839,-0.0212220959,0.04624293,-0.0536011197,0.0129441321,-0.00019197,0.021551121,-0.0352953821,-0.0009580976,-0.0219100565,-0.0471701846,-0.0129441321,-0.0051896176,0.0128843095,-0.0016497973,0.0459737293,0.0053391741,-0.0171541534,0.0264266692,0.0357440524,-0.0039520357,0.0253648162,0.0056345486,-0.0122711267,-0.0235252678,-0.0217006765,-0.0095417174,-0.0157483201,-0.000189049,-0.0300010741,-0.0164811481,-0.0287298411,0.0040604644,-0.0109475506,0.0230018198,0.0147089018,-0.0067150956,0.0207734257,-0.0995449424,-0.0447473638,0.0362525433,-0.0116205551,-0.0079115489,0.0155389411,0.0188590996,0.059882503,0.0167054832,-0.0139760738,0.0096837962,-0.0533020087,-0.0355944932,-0.0269800276,-0.0227774847,0.0351159126,0.0151351383,0.0201901551,0.0120019251,0.0252601262,-0.0006678641,0.0016236249,-0.0250806585,0.067479983,0.0215212088,-0.0080087613,0.000749653,0.0189936999,-0.0023013037,0.0095865848,0.0055859429,0.0212669633,0.003671617,0.0205341354,-0.0158829223,0.0226727948,-0.00998291,0.0045278291,-0.0165559258,-0.0047072973,-0.0240337607,-0.0310778823,0.0364020988,-0.0564726107,0.0315265507,-0.0035949692,-0.0172438882,0.0173485763,-0.0246469434,0.0259181764,0.0319752209,-0.0021012716,0.0103792353,0.0001626429,-0.0044007059,-0.0059785289,-0.046990715,-0.0164512377,0.0053167408,0.0032173386,-0.0171391983,0.0006888955,0.008606988,-0.0531524494,-0.0239589829,0.016585838,0.0075040073,0.021551121,0.0077320812,0.0035575801,0.0256489739,0.0156137189,0.0205640458,-0.0206089132,0.0147089018,-0.0024975969,0.0190983899,-0.0068721301,-0.0101773329,-0.0270996746,0.0103867128,-0.0004804509,-0.0167353954,-0.0021536164,-0.0153295612,-0.0094818948,-0.0030883458,-0.0101549001,0.0457643494,0.0101249889,0.0357739627,0.0200256426,-0.0095417174,-0.0124356393,0.0107082594,0.0313769951,0.0050737108,0.0023910378,-0.0185599867,-0.0054550804,0.0276081674,-0.0046063461,0.0088014118,-0.0031257351,-0.0158829223,-0.002538725,0.0066889236,0.0053466521,-0.0046325186,-0.0059486176,-0.0162418578,0.0137143489,0.0105287917,0.0251105689,-0.0086443769,0.0182309616,0.0147537682,-0.0061393026,-0.0100277765,-0.0237346478,0.0363422781,-0.010663393,-0.032842651,0.0454652347,-0.012667452,0.0291037336,0.0476786755,0.0033238977,0.0341288373,-0.0076348693,0.0255592391,0.0498921163,0.0007197416,0.0408289805,-0.00998291,-0.022598017,0.0063299872,0.0006187909,0.0109400721,0.0070067313,0.0009880089,0.0163615029,-0.017318666,0.0257536639,0.0157034528,-0.0149631482,-0.0143798767,-0.0020302322,-0.0219549239,0.0158081427,0.0068272632,-0.0438500233,-0.0178271588,0.0663433522,-0.0215660762,0.0677192733,-0.0329323858,-0.0226279292,-0.0152024385,-0.008292919,-0.0017086853,0.0243627857,0.0064496328,-0.0176177789,0.016690528,-0.0070628151,-0.0092126923,-0.0065655392,-0.0085920319,0.0200256426,0.008973402,-0.00078564,0.0074105342,0.0028752275,0.0384659842,0.0282213483,0.0133554135,0.0150678372,0.0177673362,0.0200405978,0.0122636491,-0.0070366426,0.0244824309,0.0260228664,0.0116130775,-0.0465719551,-0.0316761099,0.0148210684,-0.0181412268,0.0228073969,0.013362891,0.0256041065,0.0202200655,0.0422348119,-0.0062776422,0.0055859429,0.0184852071,0.0209379382,-0.0024471215,-0.0215062536,0.0087864557,0.0313171744,0.0303300992,-0.0258433968,0.0186646767,0.0373293534,0.0211921837,0.0065879724,-0.0135348812,0.0569212809,0.0221643019,0.0237346478,-0.0168999061,-0.0184104294,-0.0200106855,0.0439696684,0.0297019612,0.0062252977,-0.0206836909,-0.0116654225,-0.0345775075,-0.0300160293,-0.0168400835,0.0120542701,-0.0096538849,0.0361029878,0.0154342512,0.0127646644,-0.0137068713,-0.0100950776,0.0043670554,-0.0097884862,0.020593958,0.0130712558,0.023121465,0.0091080032,0.0015619327,0.0026303285,-0.0115831662,0.0041763708,0.0101773329,0.0038996909,0.0081732739,-0.0011712159,-0.0272193197,0.0062925983,0.0585065819,0.0004220303,0.0181113165,-0.0264565796,0.0165559258,0.0078292936,0.017423356,0.0030060897,0.0282213483,0.0084649092,0.0122786053,0.025454551,0.0217604991,-0.003150038,-0.0033668953,0.0164661929,0.004067942,-0.0056607211,-0.0067113568,-0.0103568016,-0.0190535225,-0.0168699957,0.0125552844,-0.000018198,-0.0184552968,0.0346672423,0.0089434907,-0.0075002685,-0.001947976,0.0343382172,-0.0659245923,-0.0059934845,0.0024639466,-0.0144247431,-0.0363123678,-0.0083303079,-0.0207883809,-0.0094295498,0.0279970132,-0.0217455439,0.0098183975,-0.034637332,0.0020694907,-0.0335605219,-0.0127048418,0.0088986233,0.0105362693,0.0097510964,-0.0056382874,0.0003400078,-0.0324538052,0.0147238569,0.0175430011,-0.0236897804,0.0281465705,-0.0305544343,-0.0051671839,0.0245422535,0.0212071408,0.0014647209,-0.0144023104,-0.0280269254,-0.0102147227,0.0168101732,-0.0183057394,0.0211323611,0.0172289312,0.0453156792,-0.0207435135,0.0082031852,0.0388249196,0.0245272983,0.0212071408,0.0433415323,0.0267706495,0.0145593444,0.0227924418,0.0451062992,0.0093472935,0.0031163876,0.0138190389,-0.0030453482,-0.0380472243,0.0215660762,-0.0106484368,-0.009182781,0.007526441,0.0282363053,0.0038361293,0.008502298,0.0073619285,-0.0033762425,0.012039314,-0.0184552968,0.020908026,0.0043408833,0.0045465236,-0.0012815139,0.0090481807,-0.0073394948,0.0390941203,0.0390941203,0.0072609778,0.0234056227,0.0754363984,0.0219250116,-0.0209828056,0.0221942142,-0.0210426282,-0.0072983671,-0.0014189192,-0.0027481043,-0.0081134513,0.0418758765,-0.0195021927,-0.0242431406,-0.0144247431,0.0085097766,-0.0000319561,-0.0325435363,-0.032842651,0.0210725386,0.0160773452,0.0021835277,0.0358936079,0.0136844376,-0.0073768841,-0.0231812876,-0.0298515167,-0.0003757612,-0.0106409593,-0.026396757,-0.0067038792,0.0211323611,0.0288793985,-0.0136171374,0.0169447735,0.0503108725,0.010192289,0.0071002045,-0.0221942142,-0.0009964216,0.0189189222,-0.0124132056,0.0089958357,-0.0181113165,0.0005636418,0.0038922131,-0.0308984146,0.0260976441,-0.0130488221,-0.0178869814,-0.0043259277,-0.0024676856,-0.0052980459,-0.0164362807,0.0015151963,-0.016780261,-0.0110522397,0.0063785934,0.067779094,0.006524411,0.0078816377,0.0290588662,-0.0051297946,0.0053429129,-0.0121066151,-0.006569278,-0.0417263173,-0.026396757,0.0369405039,-0.027877368,0.0284606405,-0.0038996909,-0.0196218397,0.018903967,0.0196667053,-0.0132357683,0.0362824537,0.0107755605,0.0099081313,0.0271445401,0.0332614109,-0.0229719095,-0.0085920319,0.0200555529,-0.0355645828,0.0267856047,-0.0318256654,-0.0026247201,0.0119794914,-0.0173336212,0.0036267499,0.0270697623,0.0175729115,0.0044081835,0.0115906438,0.0047409474,-0.004486701,-0.0197115727,-0.0437902026,-0.0039146468,0.0096987523,-0.032005135,0.0249011908,0.0076946924,-0.0391539447,0.0172289312,0.0020264932,0.0011132627,-0.0298963841,-0.0340391062,0.0052307458,0.0116429888,-0.0379275791,0.0153893847,0.0260826889,0.0164811481,0.0314966403,0.0262322444,-0.0078666825,-0.0044680065,-0.0288195759,-0.0110073732,0.0264864918,-0.0009384683,-0.0144920442,0.0102371564,-0.0156884976,-0.0253947265,0.0235701352,-0.0064421548,-0.0008351807,-0.0196218397,0.0234654453,0.0143948318,0.0388847403,-0.007343234,-0.0024770328,0.0257087965,-0.0205490906,-0.0230466872,0.0105886143,0.0076199137,-0.0450165682,0.0299262963,0.0095118061,0.0099081313,0.0148360245,0.0123907728,0.0185300745,-0.0057205437,0.0242281854,-0.0013301199,0.0069842977,0.014252753,0.0446277186,0.0098408312,-0.0017414008,-0.0253947265,0.0189488344,-0.0303151421,0.0072235884,-0.0140059851,0.0069581256,0.0211772285,0.001768508,-0.0349962674,0.0060794796,-0.0247366782,0.0133778471,-0.0112690972,-0.0127870981,0.0027144542,0.0148135908,-0.0205042232,0.0062851203,0.0008033999,-0.0029257028,-0.0034622375,-0.0349065326,0.0041352427,0.0033332449,0.0007206763,-0.0033425922,-0.0177673362,0.0219848342,0.0076460862,-0.0082256189,-0.0023499096,-0.0266210921,-0.0018479599,0.0031257351,-0.0125926742,-0.0136620048,0.0220446568,-0.0058439281,0.044657629,0.036761038,0.0243029632,0.0143200541,0.0271146297,-0.0417861417,0.0064197215,-0.0155090299,0.0135647925,-0.0224335045,0.0107306931,-0.0030659123,0.0298066493,-0.0058252336,-0.0093547711,-0.0086967219,-0.0325435363,-0.0195919275,-0.0149855809,-0.0151276598,0.0252152588,0.0185151193,-0.0127347531,0.0068310024,0.0652665421,-0.0239739381,-0.0567418113,-0.0298963841,-0.025349861,0.0217904113,-0.0059710513,0.010296979,0.0168251283,0.0198312178,-0.0157034528,0.0188142322,-0.0150603596,-0.0001931385,-0.0173037108,-0.0091753034,0.0424142815,-0.0028378384,-0.0101773329,0.0177972466,-0.0413673818,0.0361927226,-0.0159128327,0.0046362579,-0.0140059851,0.0149781033,-0.0146640344,0.0590748973,0.0238542929,0.0085247317,0.0166755728,0.0008057367,-0.0100726439,-0.0308685023,-0.0061692139,-0.0059860069,-0.0102670677,-0.017318666,0.0375686437,0.0301207192,0.0007781622,-0.0005781301,-0.0093024271,0.0045764348,-0.0342484824,0.0099380426,-0.0062701646,0.0135573149,0.0036136638,0.0112317083,-0.0086443769,-0.02735392,0.0398419052,-0.0173934437,0.0304946117,0.0211473163,-0.0027761462,-0.0222091693,0.0135947037,0.0228073969,0.0281465705,0.0014525694,-0.0186347645,-0.0250357911,-0.0191731695,-0.0276231226,-0.0314069055,-0.0076647806,0.0028845749,-0.0172438882,-0.0097660525,-0.0065655392,0.0127796195,0.0101324664,0.0305843446,0.0068796081,-0.0063486816,0.007474096,-0.0185749419,0.0090481807,0.0197713953,-0.0223886371,0.0071861995,-0.001367509,0.024078628,0.0047745975,-0.0316761099,0.0398419052,0.0341587514,-0.0201452877,0.0085471654,-0.0031986439,-0.0260677319,0.0077919038,0.0146341231,-0.0058775782,-0.0094295498,0.0060271351,-0.020908026,0.0263369344,0.0347270668,0.0122187827,0.0268304721,0.0291037336,0.0129590882,-0.0062664258,-0.002783624,0.0445978083,-0.0140209403,0.0129740434,-0.0030341316,0.0315863751,-0.0116953338,0.043610733,0.0017030769,0.0121589592,-0.0174981337,0.0361628085,0.0144172655,0.0133329798,0.0304497443,0.0310778823,-0.0291934684,-0.0227475744,0.0355645828,-0.0353552029,0.0083377864,0.0079265051,0.0274286978,-0.0265463144,0.0325136259,0.0021872667,-0.012196349,-0.0115457773,0.0246319883,-0.0033594174,0.0115906438,-0.009235126,0.0026434145,0.0159427449,0.015419296,-0.0456147939,0.0390342996,0.0358337834,-0.0096015399,-0.0175729115,0.0207435135,-0.0289691333,0.0153893847,0.003219208,-0.003854824,-0.02766799,-0.0266061369,-0.012772142,0.0145069994,0.0152248722,0.0016067998,0.0066627511,-0.0477983207,0.0130413445,0.0049764994,0.0097436188,-0.0091528697,0.0079564163,0.0305245221,0.0222091693,0.0030453482,0.0110971071,-0.00404177,0.0092725158,0.0135872262,0.0034603681],"126":[-0.0312738717,0.0176006444,0.0968762711,0.0123640886,0.0691807121,0.0003422853,0.0022073535,0.0513473339,-0.0037001353,0.0104440181,0.0276373755,-0.0219062567,0.013207756,-0.0154478382,0.021877164,0.0412524194,-0.0054365625,-0.0051929173,-0.0039892369,0.0081457524,-0.0177751966,0.0131713906,0.0175424609,0.0155932978,-0.0272300877,-0.0074693644,-0.0368304402,0.0294119846,0.0327575617,-0.0753482133,0.0425615571,-0.0403214768,-0.0438125134,0.0071057146,0.0388959683,0.0177024659,0.0389541537,0.0123640886,0.0121386256,0.0106112976,-0.0132877594,-0.0158842169,-0.001625514,0.0254700221,-0.0408742242,0.0101167336,-0.0510855056,-0.0137895951,0.005109278,0.0509691387,-0.031244779,0.0007441181,-0.022371728,-0.0138841448,0.0288301464,-0.0101021882,-0.0063965977,0.0191570651,0.0123931812,-0.0466053411,-0.01576785,-0.0558565892,0.0366849788,0.0385177732,-0.0199861862,0.0409324057,-0.0042074267,0.0357540362,-0.0352303796,0.0459362268,0.0443943515,0.0102040097,0.0090985149,-0.0199861862,0.0360158645,-0.0637114197,0.0004931999,0.050154563,-0.0104585644,-0.002701917,0.0000544054,-0.0313611478,-0.0282628518,0.027200995,0.0153460158,-0.0313611478,-0.0121386256,-0.0343867131,-0.0308665838,-0.0025710033,-0.0127422847,0.0561475083,0.0158551261,0.0074475454,0.029964732,0.0154914763,0.0060838591,0.0044219801,-0.0236663204,0.0175133683,0.0211207736,-0.0011945892,-0.0320593566,-0.0503291152,0.0466635264,-0.0116295163,0.0128295608,0.0055092927,0.0180079322,0.0268518925,-0.0876250267,-0.0602203868,-0.0621404573,-0.0235208608,-0.0300229173,0.0074184532,-0.0222553592,0.0131059345,0.0151132802,-0.0105531132,-0.01783338,0.0203352887,-0.0102258287,0.0264009666,-0.007254811,-0.0287574157,0.0094185267,-0.0428524762,-0.0395650826,0.0033546682,0.0298192725,-0.0022200812,0.0348521844,-0.0290337894,-0.0042401552,-0.0104658371,-0.0586203262,0.0078184679,0.0022273543,-0.0168006141,0.001574603,-0.035579484,0.0148950908,-0.0038910515,-0.0402051061,0.0313902386,-0.0285537727,0.0467508025,-0.0178915635,0.0110694962,0.0068584327,-0.0112440474,-0.0374413691,-0.0079712011,0.0371213593,0.0112585938,0.0100003658,0.0722644627,0.0012345907,-0.0408451296,-0.0185461324,0.0566420741,-0.02290993,0.0031637521,-0.0030328382,-0.027157357,-0.0447434559,-0.0314193331,-0.1044401824,-0.0349103697,-0.0249609128,-0.0673188269,-0.0093385233,0.0398269109,0.0384304971,-0.00082003,-0.0222989973,-0.0421542712,-0.0045638033,-0.0133823082,-0.0445107184,0.0159569476,-0.0453834794,0.0227353778,-0.0334848613,-0.0148805445,-0.0693552643,0.026997352,0.0064766007,0.0553911179,-0.0276373755,0.0702862069,0.0029746543,0.0514927916,0.0050838222,-0.0351140127,0.0375286452,0.0042365189,-0.0468962602,-0.007862106,0.0760464221,0.0148078147,0.0517546199,0.0193316173,0.0109094903,0.0114840567,0.017789742,-0.0014318706,-0.0405542105,-0.0352594703,-0.0166987926,0.0201607384,-0.0061565889,0.0203789268,-0.0226771943,0.0032019354,-0.0560020506,-0.0073966342,0.0028710142,-0.0169751663,-0.0012764103,0.0616168007,-0.0004204699,-0.0346485414,-0.0274046399,0.0212225951,0.0129750203,-0.0346485414,0.0441325232,0.0264882427,0.0020018914,-0.0432306714,0.0042547011,-0.0307502169,-0.0063202311,-0.0025928221,0.0141241532,-0.0427070186,-0.0017964294,-0.057834845,0.0008536676,0.0156369358,-0.0234626774,0.002320085,0.0228081066,0.020015277,-0.0304883886,-0.0516673438,0.0326702856,0.0204662029,0.002987382,-0.0307211243,-0.0224444568,-0.0111131342,-0.040990591,-0.0786065161,-0.013229575,0.0104658371,0.0116513353,0.0140368771,-0.0090185115,-0.0338630565,-0.0134404916,-0.0323502757,-0.0378195643,0.033223033,0.0441325232,-0.03301939,0.0069566183,-0.0291210655,0.0419506244,0.045441661,0.0203061979,-0.0854722187,-0.0171788111,-0.0357540362,0.0075348211,-0.0061747716,-0.0218917094,-0.0219062567,0.0171060804,-0.0262991432,0.0379068404,0.0012736829,0.0514927916,0.0209171288,0.0016091497,0.0464016981,0.0064511453,-0.0500672869,-0.0040910589,0.0333394036,0.0203352887,-0.0264009666,0.0133677619,0.0272300877,-0.0230844803,0.0083130319,-0.0315647908,-0.0440452471,0.0116440626,0.0033419405,-0.0017900656,-0.018531587,0.0243790746,0.0191716105,-0.0179642942,-0.0217753425,-0.0106840273,-0.0153751085,-0.0166260637,-0.0188370533,-0.0198261794,0.0033401223,-0.0285392255,-0.0336012281,0.0689479783,-0.0269246213,-0.0089748735,-0.0627804771,-0.0268227998,-0.0862286091,-0.0274337307,0.0116367899,0.0298192725,-0.0047856295,0.0587657876,-0.0068693422,0.0050547305,-0.0069057071,-0.0006245683,-0.0148587255,0.0064547816,0.0002381905,-0.0281028468,-0.0407869481,0.0324375518,0.0156078441,0.0031764798,0.0108803986,-0.0260373168,-0.001179134,-0.0801774785,-0.0012318633,0.0061711348,0.0223571826,0.0202916507,-0.0017927929,0.0003866051,0.0134841297,-0.0271137189,-0.0374704637,0.0042292457,-0.0101458253,0.0275355522,-0.007862106,-0.0050038192,-0.0263136905,-0.0444525369,0.0045710765,-0.0537910573,0.0126841003,0.041194234,-0.0357249454,-0.0034837639,0.0222408138,-0.0462271459,0.0336885042,-0.0095639862,0.0038219581,0.0221680831,0.0079130167,-0.0080657499,-0.0182988513,-0.0562056936,0.0048256312,0.0580093935,0.0232590325,-0.0002127351,0.0388668776,0.0225899182,0.023317216,0.0189825129,-0.0187643226,0.0138550522,0.0388668776,-0.0069093439,0.0268809833,-0.0296883583,-0.031244779,0.0132586667,-0.0014600534,-0.0157242119,-0.010916763,-0.007491183,0.0027910112,-0.020553479,0.0143496161,0.0536746904,0.0217753425,0.0135350404,-0.0278264731,-0.0771519169,-0.0174115468,0.0107785761,0.002027347,0.0219062567,0.0184879489,-0.0193316173,-0.0280592088,-0.0027219178,0.0017991568,0.0366849788,-0.0301683769,0.035783127,-0.0296592675,-0.0327284709,0.0526855625,-0.0126404623,0.0460525937,-0.0303138364,-0.0395069011,-0.0148369065,-0.0125677325,-0.0439870656,0.0303720199,0.047390826,-0.0273610018,-0.0091785174,-0.0382850356,-0.0013600498,0.0080512036,0.0464016981,0.0148950908,-0.013993239,0.0375286452,0.0375868306,0.0153751085,0.0321466327,0.0115349675,-0.0309829526,-0.0010991311,-0.0100803692,0.0268373452,-0.043957971,-0.0181970298,-0.0184006728,-0.0160296783,0.0006159316,-0.024640901,0.0750572905,0.0007309358,0.0067747934,0.0214844234,-0.0188370533,-0.0320302621,0.0464307889,-0.0296301749,0.0441034324,-0.0038110486,-0.0446561798,0.0248736367,-0.0668533519,-0.0367140695,0.0012327724,-0.0135568595,0.0222117212,-0.0180806611,0.0236808658,-0.0146696279,0.0017355181,0.0504745729,-0.0061893174,-0.0082912128,-0.0025655485,-0.0089676008,0.0047310824,0.0150114587,0.0147714494,-0.029964732,0.0275791902,-0.0413687862,-0.0131059345,0.0254845694,0.0293974392,0.0202916507,0.0271864496,0.0201025531,0.0227644686,0.0164224189,-0.0254554767,0.008153026,0.0718571767,-0.0177315585,-0.0151860099,0.0322920904,-0.0798283741,-0.0299938247,0.0041383333,0.0042692469,0.0326411948,-0.0006886616,0.0301392842,0.0696461871,0.0100367311,0.0222699065,-0.0118186139,-0.021338962,-0.0168006141,-0.0324375518,-0.0132223023,0.0244663507,0.0438125134,0.0379068404,-0.0306920316,0.0410487764,-0.0012545914,0.0084657641,-0.0125459135,-0.0000627296,-0.0205098409,-0.0263427813,-0.0224008188,0.0037892296,-0.0130622964,0.0127931954,-0.0563511513,0.0084221261,-0.0247572698,-0.0063129584,-0.0027401003,-0.018327944,0.0289901514,-0.0067857029,-0.0479435734,0.0240736082,-0.0166115165,-0.0457907654,-0.0225317329,0.0357540362,0.0063311406,0.0446852706,0.0071638986,0.0275210068,0.0039346893,-0.0122768125,0.0185024943,-0.0077239191,0.0056983903,0.0182115752,0.0205243882,-0.0387505107,0.0144077996,0.0258627646,0.017993385,0.0226335563,0.0170188043,0.0285392255,0.0220953543,0.0017964294,0.0087566841,0.0031692069,0.0006091132,-0.0068911612,-0.0326702856,0.0318266191,0.0109240357,-0.0383432209,-0.039914187,0.0246118102,0.0036437698,-0.0205389336,0.0176733732,0.0127495574,0.0290046968,0.0048474502,-0.0151860099,-0.0181824826,0.0295283534,0.014982366,-0.0227062851,-0.0037274091,-0.0224735495,0.0403214768,-0.0090039661,-0.000988218,0.0225608256,0.0317684337,0.0162624139,-0.0034492172,0.0098403599,-0.0021400782,-0.0050038192,0.0052038268,0.0227790158,0.0203061979,0.0152151026,-0.0021600791,-0.0016355144,0.0338339657,0.0146841733,0.0031546608,0.0126404623,-0.0519291721,-0.0479144789,0.0329612046,0.0288010538,0.0095639862,0.0499800108,-0.0192152485,0.022575371,-0.0040619667,-0.0190116055,-0.0379941165,-0.013207756,-0.0215280596,-0.019855272,-0.0140077854,0.0267937072,-0.0154914763,-0.0082039367,-0.0130113848,-0.0263573285,-0.0471289977,0.0037746837,0.0375868306,-0.0147496304,-0.0369468071,-0.0189679675,0.031244779,0.0045201653,-0.0011454965,0.0078984704,0.0195352603,-0.0110767689,0.0315647908,0.0227935612,0.0407287627,-0.0041710618,-0.0224590041,0.0048219948,0.0210189503,0.0153460158,-0.0024419075,0.0136586819,-0.015229648,-0.0303720199,0.032815747,-0.0188515987,-0.0334848613,0.0158987641,-0.0372959115,0.0437252373,0.0242772512,0.0163205974,-0.0195934437,-0.0234044921,-0.0278555639,0.0150841884,0.0159424022,-0.0363358743,0.0093385233,-0.0247572698,0.003974691,-0.0190552436,0.0205243882,0.0261827763,0.0369758978,0.0532383099,0.0176879205,-0.0240445156,0.0153751085,0.0362776928,0.0245681722,0.0397687294,0.0015109644,0.0247863624,-0.0273755472,0.0094330721,0.0659805983,-0.0244663507,0.0034619449,-0.0251645576,-0.000276601,-0.0033201214,0.0025200923,-0.0177315585,0.0338630565,0.0416597053,0.0032819384,0.0130477501,-0.024640901,-0.0099712741,-0.0461689606,-0.0035183106,-0.0205389336,0.0204225648,0.0338630565,-0.0361613221,0.0166842472,0.0016382418,0.0034837639,-0.0634205043,-0.0283501279,-0.0073493598,-0.0278846566,0.0291210655,0.0051929173,0.0247572698,-0.0204952955,-0.0324666426,0.0136514083,-0.0204952955,0.0014664173,0.0135495868,-0.0087857759,-0.0212080479,0.0201025531,-0.0173242707,-0.013993239,-0.0463726074,-0.0069820737,0.0038146849,-0.0365395173,0.0428233854,-0.0108294869,0.019273432,0.0443070754,0.0222408138,-0.0277682897,0.0085094022,0.0028819237,0.0138332332,-0.0221680831,0.0211935025,0.017091535,-0.0386050493,-0.0069275261,-0.0285683181,-0.0046656253,-0.0072839027,0.0022164448,-0.0103421966,-0.0145241674,0.0361322314,-0.0264736954,0.0242045224,0.0180515703,0.0122840861,0.0017027896,-0.0091712447,0.0145823518,-0.0131568452,-0.01576785,0.0040110559,-0.0294265319,-0.0292956177,0.0123495432,-0.0018009749,0.0214553308,0.0043601594,0.0348812751,-0.0327575617,0.024640901,0.003323758,0.0005241101,-0.0271428116,-0.013476857,-0.0035037645,-0.0428524762,0.0006013857,-0.0130841155,-0.0005368378,0.0062765931,0.0520746335,-0.0076730079,0.0098694516,0.017993385,0.0371795408,-0.0267209783,0.0118331602,0.0006250229,-0.033513952,-0.0151714645,-0.0262991432,-0.0123059051,0.0102112824,-0.0046292604,-0.0331357569,-0.0213535093,-0.0299356412,-0.0140950615,0.0061384062,0.0163351428,0.0108076679,-0.006727519,0.008873052,-0.1003673077,-0.0229826588,0.0464889742,-0.0119568007,-0.0149387289,-0.0066766078,0.0107567571,0.0482926778,0.0188952368,-0.0202189218,0.0248009078,-0.062082272,-0.0173679087,0.0138550522,-0.0081821177,0.0141241532,0.00698571,0.0245245341,0.0250918269,0.001625514,-0.0184443109,-0.009636716,-0.0136659546,0.0553911179,0.0094548911,-0.0127059193,-0.0208734907,0.0226335563,0.0044765272,-0.026415512,-0.0024219069,0.0245827176,-0.0204371121,0.0087930486,-0.0103858346,0.0201607384,-0.0052838298,0.0091276066,-0.0117604304,0.0049783639,-0.0295283534,-0.0348521844,0.0468089841,-0.0473326407,0.0412815101,-0.0066184239,0.0015627844,0.0276664663,-0.0209753122,0.0137168653,0.0237972345,0.0290337894,0.0018318852,0.0021764433,0.003909234,0.0101458253,-0.0343867131,-0.0130550228,0.002936471,0.0104076536,-0.0135495868,0.0102112824,0.0405542105,-0.0621986389,-0.0425033718,-0.0024691813,-0.0027837383,0.0371213593,0.0270409901,-0.0006927526,0.0341830701,0.0412233248,0.0189970583,-0.0222408138,0.0217898879,-0.0016918801,-0.0013064115,-0.0043456135,-0.0117604304,-0.0309829526,0.0411651433,-0.0107203927,-0.0178042874,0.0257463958,-0.026953714,-0.0096003516,-0.0081384797,0.0082330285,0.0311284121,-0.0047819931,0.0419215336,0.0187061392,-0.0055456576,0.0001193225,0.0213826001,0.0150260041,0.0204371121,0.0157242119,0.0028273761,-0.0080075655,0.0347067229,-0.0073748152,0.0317684337,0.0150841884,-0.0042692469,-0.0158987641,0.0034619449,-0.0051710983,0.0022473549,0.0031837528,-0.0042983391,-0.0014336888,0.0404087529,0.0140005127,0.0075275484,0.0034892187,0.0188225061,-0.0173533615,-0.0083275773,-0.0427652001,0.0335430466,-0.0110767689,-0.0339794233,0.0304883886,-0.0224735495,0.0171497185,0.0427652001,0.000659115,-0.0011836797,0.0184879489,0.0117386114,0.0630132183,0.0011291322,0.053994704,-0.0187788699,-0.0108222142,0.0005827486,-0.0111204069,0.0058765789,0.0376741067,0.0092948852,0.0141168805,-0.0146769006,-0.0063165948,0.0161896832,0.0066075143,-0.0115567865,-0.0094694374,-0.039215982,0.0378486589,0.0138259605,-0.0396814533,-0.0227790158,0.0657478571,-0.0138623258,0.0504454821,-0.0365686119,-0.0393032581,-0.0040183291,0.0063165948,-0.0071820808,0.0417469814,0.002189171,-0.0146187171,0.0088803247,-0.016509695,-0.0317102522,-0.0036110412,-0.0086548617,-0.0002285311,0.0026273688,0.0050910953,0.0082039367,0.0149678206,0.0625477433,0.026619155,0.0066766078,0.0155642061,0.0122913588,0.0224299114,-0.0038874149,-0.0272882711,0.0166697018,0.0150405504,0.0199425481,-0.0174697302,-0.0288446918,0.0158260334,0.0010418564,0.0253972933,0.0311575029,0.0112222284,0.0115058757,0.0336594135,-0.018037023,0.0107567571,0.0275646448,-0.0018637045,-0.0120222578,0.0021346235,-0.0308084004,0.015971493,0.0180952083,-0.0241317917,-0.0083639426,0.0382559448,-0.0062838662,-0.002380087,-0.0202189218,0.0548674613,-0.006872979,0.0265027881,0.0071202605,-0.0083930343,-0.0310702287,0.0061529526,0.0046983538,0.0052365554,0.0002285311,-0.0302265603,-0.0364522412,-0.0309247673,-0.010647662,0.0117240651,-0.0233317632,0.0222553592,0.013229575,0.0019018878,-0.0174406376,-0.0004681989,-0.0006891161,0.0085675865,0.0276082829,0.0092730662,0.0108440332,0.0134113999,0.0065202387,-0.0014509622,-0.0447143652,0.0163787808,0.016509695,0.007760284,0.012982293,-0.0265609715,-0.0183861274,-0.0000114209,0.0434343182,0.0303429291,0.0402051061,-0.0033401223,0.0017146082,0.0067384285,0.0117313387,0.0059093069,0.0258627646,0.02439362,0.0242917985,0.0340085179,-0.0050838222,-0.003089204,-0.0019964366,0.0179788396,0.0087712305,-0.0034073973,-0.0090621496,0.0010045823,-0.0064184167,-0.0088366866,0.0331648514,-0.0181679372,-0.0222844519,0.0336594135,0.003301939,-0.0210771356,-0.0248445459,0.0343285277,-0.0716826245,0.0058365772,0.0069529815,-0.0326702856,-0.0305756647,0.0112440474,-0.0081239333,0.0017009713,0.0381686687,-0.0445689037,0.0008763957,-0.0371504501,0.0145678055,-0.0288883299,-0.018327944,0.0168297067,-0.0074220896,0.0145823518,-0.0245681722,-0.0017073352,-0.0193898007,0.0321466327,-0.0125313681,-0.0318848044,-0.0163205974,-0.0135277677,0.0234044921,0.025717305,0.0093748886,-0.0103058312,-0.0336012281,-0.0308665838,0.0074475454,0.0384014063,-0.0216007903,0.0066875173,0.0213826001,0.038139578,-0.0124804564,0.00144278,0.0638859719,0.0029437442,0.00385105,0.0266773403,0.0113313235,0.031244779,0.023157211,0.0422997288,0.0007000256,-0.0061311335,0.0214989688,0.0093094315,-0.0307211243,0.0018673411,-0.0089312363,0.011454965,0.0075784591,0.0205243882,-0.0166987926,0.0024219069,0.0132368477,-0.0188079607,0.0108658522,-0.0055420208,0.0062875026,0.0069966195,-0.0191279724,-0.0363649651,0.0030655668,-0.0282192137,-0.0036183142,0.035579484,-0.0051747346,-0.0115422402,0.0666788071,0.0064329626,-0.0399432816,-0.004312885,-0.026997352,-0.0021855345,0.0064693275,-0.0124004539,-0.0112149557,0.005872942,-0.0294265319,-0.0029419258,-0.0281173922,0.0133968536,0.0207571238,-0.0078330142,-0.0140514234,0.0482054017,0.0180661157,0.0013964147,0.0361322314,0.0200443696,-0.008669408,-0.0221244451,-0.0277246516,-0.0056656618,0.0156660285,-0.003785593,-0.0117386114,0.034299437,0.0078548333,-0.0280883014,0.0083493963,0.0280737542,-0.0144296186,0.0178915635,-0.0181970298,0.0057893028,0.0265318807,-0.0061347699,-0.0118331602,-0.0200734623,-0.0064256894,-0.0049929102,-0.0291065201,0.0343285277,-0.0165824257,-0.0197679959,0.0120077124,-0.0178188346,-0.0105967512,0.0019364345,0.0173242707,-0.0215862449,-0.003858323,0.0173679087,0.046110779,0.0082621202,0.014982366,0.0438416041,-0.0201171003,0.0047529014,-0.012240448,-0.005952945,-0.0531510375,-0.0342121609,0.0238117799,0.0003068294,-0.0098403599,-0.0170333497,-0.0061129509,0.033513952,0.0167424306,0.0236663204,0.0314193331,0.013207756,0.002818285,0.0248445459,0.016015131,-0.02794284,-0.0342703462,0.0197389033,-0.0307211243,0.0320011713,-0.0129241096,0.0007241174,0.0240299702,0.0165387876,-0.0212225951,0.0362195075,0.0394487157,0.0133750346,0.002583731,-0.0010045823,-0.0115931518,-0.0274046399,-0.0501836538,-0.0122549934,0.0115276948,-0.0179497469,0.025179103,0.0124222729,-0.0151132802,0.0156951193,0.0094621647,-0.0208443999,-0.0149678206,0.0074839103,-0.0024509989,0.0074257264,-0.0182697587,0.0093312506,0.0206698477,0.0109894928,0.036074046,0.0221680831,-0.0121531719,-0.0008395762,-0.019273432,-0.0153169241,0.0303720199,-0.0027073717,0.0039928732,0.0036964989,-0.0057602106,0.0050074561,0.01783338,-0.0171933565,-0.0083421236,-0.0092221554,0.0072511742,-0.000152051,0.048670873,-0.0083130319,0.0103785619,0.0298192725,-0.0014682355,-0.0278846566,0.0189243294,0.0054038339,-0.0610931441,0.0353467464,-0.0142259747,0.0138332332,0.0261827763,-0.0139423283,0.0132804858,0.0209316742,0.0300811008,-0.0136805009,-0.0133604892,0.0017800651,0.0485254116,0.0179206561,-0.0010682209,-0.0114986021,0.0363940597,-0.0224735495,0.0051965537,-0.0187643226,-0.0057456647,0.0177024659,-0.0128368335,-0.0234481301,0.0299938247,-0.0324957334,0.0213244166,-0.0151569182,-0.0110258581,-0.0035255835,0.0177461039,-0.0154332919,-0.0074548181,-0.0065129655,0.0194916222,-0.0134041272,-0.0118549792,0.0119568007,-0.0058002123,0.0073639057,0.0005741119,-0.0287574157,0.0154623836,0.0305756647,-0.007491183,0.0112949591,-0.0145241674,-0.0017318815,0.0058111218,-0.0069238897,-0.0154623836,-0.0114185996,0.010916763,0.0219935328,0.0125677325,0.0178624727,-0.0009909454,0.0451216511,-0.0315938815,0.0107494844,-0.0182261206,-0.0067129731,-0.0302847438,0.0150550967,-0.0166260637,0.0372086354,-0.0190261509,-0.0084366724,-0.007905744,0.0240590628,0.0075857323,-0.0044692545,-0.0242190678,0.0107276654,0.0170333497,-0.0149532743,0.0078475596,0.0566420741,-0.0034619449,-0.033223033,0.0023546317,-0.0003727409,0.0047783568,0.0006218409,0.0065420577,0.0025473658,0.0329902992,-0.0240590628,0.0221971758,-0.0065711495,-0.0140659688,-0.0386923254,0.0197534505,0.0175715517,-0.0224880949,-0.0123713622,0.0200443696,-0.0285246801,0.0254409313,-0.0111349532,-0.0259354953,-0.0061165877,0.0085894056,0.0087130461,0.0336885042,-0.010647662,0.0352012888,0.0128441062,-0.0040692398,-0.0043965243,-0.0168442521,0.0275791902,0.014509622,-0.0086548617,-0.0001952344,0.0120440768,0.036655888,-0.0300520081,-0.0047019902,0.0201898292,-0.0252663791,-0.0128731979,0.0050947317,-0.023360854,-0.0007950291,0.0108440332,-0.0007573004,-0.0121604446,-0.0454125702,0.0232008491,0.0124368183,0.0203207433,0.0288592372,0.0026764616,0.0013636863,0.0038474135,0.0107858488,0.0067057,-0.0052401917,0.0076002781,-0.006603878,-0.0123349968,-0.0148441792,-0.0396814533,-0.006098405,-0.0093385233,-0.0030182924,0.0031946623,-0.0026091863,0.0098767253,0.0104003809,0.0291065201,-0.0079130167,-0.003345577,0.0043928879,-0.0125604598,-0.0067784297,0.0296010822,0.0086330436,-0.0059238533,-0.0265900642,0.0008404853,-0.0000836962,-0.0203061979,0.0226771943,0.0207425766,-0.0190843344,0.0202625599,-0.0201171003,-0.0019491622,0.0019782542,0.0121895373,0.0027637375,-0.0012609552,-0.0275064614,0.0036201326,0.0187352318,0.0298192725,0.0237972345,0.0124149993,0.0249609128,0.01725154,-0.0072693569,-0.007658462,0.0690061599,0.001560057,0.0044328896,0.011454965,0.0009627625,-0.0082112094,0.0342703462,0.0088366866,0.0361031406,-0.0130841155,0.0247427244,0.0138259605,0.0308665838,0.0174406376,0.0178188346,-0.0243354365,-0.0037455915,0.0040437845,-0.0316811576,0.0226044636,0.0153896539,0.0221389923,0.0057674837,0.031942986,-0.0177315585,-0.0057274825,-0.002358268,0.0462271459,-0.0127713764,0.0007827559,-0.0210044049,0.0041165142,0.0342412516,0.0082403012,-0.0200880077,0.0167424306,0.0392741635,-0.0228808373,-0.0317684337,0.0133604892,-0.0364522412,0.0348521844,0.0224735495,-0.0065602399,-0.0364813358,-0.0258336719,0.0009063968,0.0184734035,-0.0001704608,-0.0202043764,0.0126913739,-0.0453543887,0.0239136014,0.023695413,-0.0163787808,0.0002064848,0.0077530108,0.0375286452,0.0260518622,0.01783338,0.0167278852,0.0281464849,-0.0162478667,0.0131350262,-0.0095712589],"127":[-0.0493669398,0.0169266313,0.0765879676,-0.0158741251,0.0272642765,-0.0101357941,0.0240779184,0.0114622423,-0.0010128586,-0.013682601,0.0316905789,-0.0026781277,0.0476656258,-0.0470600761,0.0331035331,0.048992075,-0.0192046631,0.0105467048,-0.0290953517,0.0561433621,-0.0269038286,0.0003216997,-0.0066682855,0.0240202472,-0.0174889304,-0.0157011095,-0.0555378087,0.0663224086,0.0388418622,-0.0368810259,0.0099555701,-0.0514431223,-0.0220305733,-0.0224631112,0.0500878356,0.0517026447,0.0555089712,0.0249141566,0.0089895697,-0.0120389592,-0.0155857662,-0.0297874119,0.0016445434,-0.0028529449,0.0082398383,-0.0001567948,-0.0238328129,-0.0095951222,0.012161511,0.029282786,-0.0194353499,0.0020689708,-0.0238328129,0.0065457332,0.0142449001,-0.0496841334,-0.021266425,0.0471754186,0.0168545432,-0.0205311105,-0.0152253183,-0.0481269993,0.0537788235,0.0142304823,0.0010380899,0.0368810259,-0.0385246687,0.0252601877,-0.0158020351,0.0692059919,0.0241355896,0.030623652,0.0322384574,-0.018930722,0.0267740674,-0.0508375689,0.0137042282,0.0215115286,0.0050534792,-0.0392455645,0.020632036,-0.0098834811,-0.0453875959,0.0192334987,0.0026835345,-0.0466275364,-0.0481558368,-0.02240544,-0.0314022191,-0.014043049,-0.0098041818,0.0263992026,-0.0033467584,0.0030421801,-0.0002863308,-0.0229821559,0.0225063656,-0.0140502583,-0.0268894117,0.0017310509,0.0226649623,0.0053238152,-0.0249141566,-0.0440899841,0.0513566136,0.0061384272,-0.0192623343,0.0062213303,-0.0141439745,0.0314598903,-0.0692636669,-0.0631504655,-0.0293981284,-0.0205022749,0.0152829895,0.0062213303,-0.0332765467,-0.0096960478,0.0179791395,-0.0374577418,-0.0336225778,-0.0032133928,-0.0065277112,0.0038243521,0.0061780764,-0.0245969631,-0.0125724217,-0.0518179871,-0.0494534485,-0.0151099749,0.0212808419,0.0076631219,0.0307389945,-0.0062321438,0.0021374559,-0.0034080346,-0.0594594814,0.0185702741,0.0039108596,0.0024564522,-0.0239049029,-0.0210789908,0.014605348,0.0137330638,-0.0411775634,0.0280572623,-0.0241500083,0.0542401969,-0.0228523947,0.0098402267,0.0056229867,-0.0112459734,0.0041163149,-0.0076991664,0.0515584648,-0.0028132957,0.0100132423,0.0440034755,-0.0070647784,-0.0253899489,-0.0225063656,0.0370540433,-0.0074396441,0.0262550227,-0.0018563066,-0.0052949791,-0.0587385856,-0.0139853777,-0.0957349539,-0.0393609069,-0.0175610203,-0.090313822,-0.0164220054,0.0232705139,0.0245392919,0.0159317963,-0.0368810259,-0.0585944057,-0.0037774937,-0.0336514153,-0.0371982194,0.0403124914,-0.0179070495,0.031200368,-0.0163499154,-0.023472365,-0.0652266443,0.0293116216,0.0173303336,0.0389283709,-0.0659763813,0.0295567252,0.0117073469,0.0376019217,0.0118082725,-0.0624584071,0.0268317405,0.0243806951,-0.002914221,0.0169266313,0.0621123761,0.0223477688,0.0229533203,-0.0223189332,-0.0015706517,0.0071981442,-0.003990158,-0.026096426,-0.0032782734,-0.0346606672,-0.0026781277,0.000846602,-0.0098186005,0.0075477785,0.0036459302,0.0071080322,-0.0249718279,-0.000617267,-0.0227514692,-0.0179214682,-0.0224198587,0.0435709395,0.0364484899,-0.0290953517,-0.0036711616,0.0052156807,-0.0168689601,-0.0530867614,0.0113541083,0.026096426,0.0082975104,-0.0364484899,0.0168112889,-0.0473484322,0.0004147403,-0.0062790019,-0.000861921,-0.0368810259,0.0188730508,-0.0201562457,-0.0088886442,0.0138484072,-0.0281726066,0.0126300938,0.0040406208,0.0143097807,-0.030623652,-0.0658610389,0.0487037152,0.0238472316,0.0236021262,-0.0544420481,-0.0196948722,-0.0086723762,-0.0603245571,-0.0523081943,-0.0496264622,0.0377461016,-0.0073098829,0.0120029142,0.0262117703,-0.0365638323,-0.0364196524,-0.0037810982,-0.013048213,0.0071476814,0.0350932069,-0.0296143983,0.0376307592,-0.0170996469,0.0371693857,0.0508087315,0.0331612043,-0.0706477836,-0.0143458256,0.0044587404,-0.001220116,0.0210069027,-0.0176907815,-0.0251304265,-0.0022257657,-0.0373423994,0.0125724217,0.0195362754,0.041754283,0.0111378394,0.0037126131,0.0422733277,0.0363619812,-0.0273219496,0.0086219134,-0.0064015542,0.0462238342,-0.0247843955,0.0175033491,0.0383804888,-0.0190604832,-0.0058716959,-0.0242941864,-0.0275382176,0.0117361825,-0.0111090038,-0.0095590772,-0.0236597992,0.0071260543,-0.016378751,0.0019301984,-0.0366791748,0.001212006,0.0185558572,-0.0012696777,-0.0468870588,0.0001679462,-0.0380344614,0.017229408,-0.0382363088,0.0754345283,-0.0186711997,0.0071440767,-0.0688022897,-0.030133443,-0.1121137068,-0.0127021829,0.0264136195,-0.0123561528,-0.017229408,0.0532309413,0.0023230866,-0.0072558159,0.0130770486,-0.0275814719,-0.020069737,0.0064952709,0.0042568892,0.0056878673,-0.0354104005,0.0067079351,-0.0050570839,0.005727517,0.0031773481,-0.046021983,-0.0043902551,-0.039216727,-0.0058104196,-0.0048011658,0.0077424203,0.0107341381,0.0192767531,-0.0313445479,-0.023890486,-0.039706938,-0.0099483617,0.0098906895,0.0194065142,0.027221024,-0.006452017,-0.0003313868,-0.0209348127,-0.0290520992,0.0145044224,-0.0527695678,0.0272931121,0.0270912629,-0.052048672,0.0045488523,0.0261685159,-0.0005140888,0.001008353,-0.0419849679,0.0124210333,0.0026150492,-0.0048624417,-0.0229389034,-0.0197957978,-0.0563452132,-0.0013300526,0.0411775634,0.0192479156,0.0041163149,0.041754283,0.0016274222,-0.0159750506,0.0304218009,-0.0241788439,0.0456182845,0.0164364222,0.0111522572,0.0406296849,-0.0276823975,-0.0252890233,0.0437151194,0.0182386618,-0.0017634912,-0.0020365305,-0.0037738893,0.0065709646,-0.0336514153,0.0049093002,0.0354104005,0.0135456314,0.0259810835,0.0022618105,-0.0679948851,-0.0172005724,-0.0290376805,0.0058248378,0.032757502,0.040975716,0.0151820648,0.0028637585,-0.0162634086,0.0017679968,0.0185846929,-0.052048672,0.0536058061,-0.0110297054,-0.0399087891,0.0613049753,-0.0077424203,0.0061960989,-0.0445225202,-0.0482423417,-0.0168257076,-0.0171717368,-0.0676488578,0.0140502583,0.0500878356,-0.0331323668,-0.0143674519,-0.0318347551,-0.0381209664,0.0282014422,0.074223429,-0.0147206914,-0.0220594108,0.0278842468,0.0264568739,-0.0017634912,0.0205455292,-0.0065385243,-0.0343723111,0.0156290196,-0.0209924839,0.0329881907,-0.0579888523,-0.0038784191,0.0187000353,-0.018152155,0.0270768441,0.0243806951,0.0666684359,0.0071008233,0.0030349712,0.0070503606,0.0204013493,0.001084047,0.0198678877,-0.0195939466,0.0312580392,-0.0075982413,-0.047723297,0.0168689601,-0.0425040126,-0.0083263461,0.0410045497,-0.0072053531,0.0200553201,0.0020527507,0.0189018864,0.0038603968,-0.0157155264,0.0168977957,0.0032422286,0.0446667001,0.0109720333,0.0107701821,0.0026042359,-0.0248709042,-0.0065565468,-0.0616510026,0.0356122516,-0.0423021615,-0.0047651208,0.0421291478,0.0277400687,0.0663800836,0.0481558368,-0.0189163052,0.0121398848,-0.0194641855,-0.0268605761,0.0032656577,0.0042388672,-0.0183972586,-0.0215259474,0.0247267243,-0.0949275494,-0.0094797788,-0.0003023256,-0.0210934095,0.0350932069,0.0014661218,0.019781379,0.0615933314,0.0162922442,0.0144972131,-0.0270768441,-0.0293260384,-0.0036693593,0.0078865997,-0.0345453247,0.0404278338,0.0133509897,0.0002313625,-0.00960954,0.051616136,-0.0352085494,0.015816452,-0.0035233779,-0.0028060868,-0.0424463414,-0.0008416458,-0.0292539503,-0.0098690623,0.0043614195,0.017229408,-0.0189451408,-0.0558261685,-0.0160615575,-0.0104313614,0.0137402732,-0.0126733473,0.014677437,0.0106836753,-0.0279130843,-0.0178926326,-0.0183828417,-0.01708523,-0.0135384221,0.0013300526,0.0121326754,0.046079658,-0.0193632599,0.0365926698,0.0071440767,-0.0371117145,0.0105467048,-0.0032800757,0.0020221125,0.0323826373,0.0414659232,-0.0388130285,0.0280860979,0.0245104562,0.0322384574,0.0138556166,0.0166238565,0.0144107062,0.0155425128,-0.0042208447,0.0200409014,0.0238039773,0.0003899595,0.01382678,-0.0318347551,0.0463391803,0.004307352,-0.0172149912,-0.0608436018,-0.0028096912,-0.0090184063,-0.0238328129,0.0355257429,0.037573088,0.00618889,0.0141079295,-0.030565979,0.0025645867,0.0185702741,-0.0237895604,-0.0183828417,-0.0080668237,-0.0525100455,0.0098186005,-0.0506645516,-0.0132572725,0.0363908187,0.0285186358,-0.0012462485,-0.0356410854,-0.0021194336,0.0160759743,0.0003410738,-0.002348318,0.02233335,0.0189018864,-0.0056121736,0.0194641855,-0.029354874,0.0188730508,0.0244816188,-0.0105034513,-0.0045632701,-0.0081749577,-0.0388706997,0.0318059213,0.0369675346,0.015600184,0.0368810259,0.0049525537,0.0089463163,0.0048804642,-0.0001881087,-0.0537788235,-0.0265433807,-0.0096744206,-0.0252746046,0.0185558572,0.0165661834,-0.0527118966,0.0020239148,-0.0131635563,-0.0293692928,-0.035381563,0.0271200985,0.0585079007,-0.0176619459,-0.0449838936,-0.0373712368,0.0159462132,-0.0006884554,-0.032324966,0.0228523947,-0.0183828417,0.0045596655,0.0567777492,0.0225784555,0.0352662206,-0.0027646353,-0.031978935,0.0009173398,0.0203148425,0.0282735322,0.0022383812,0.0274084564,0.0162489899,0.0092490921,0.0417254455,-0.0395050868,-0.0198823046,-0.0083047189,-0.0250583366,0.0519044921,-0.0043686284,0.0119884964,-0.0179935582,-0.01708523,-0.0280572623,0.0223477688,-0.0111450478,-0.0402259827,0.0014336815,-0.0344588161,0.0141583923,0.013156347,0.0478674769,0.0291818604,0.0164220054,0.0497418083,0.0231263358,-0.0009876272,0.0079226447,0.0368233547,-0.00093356,0.0383228175,0.0103736902,0.0203004237,-0.0165661834,0.0090904953,0.0393897444,0.0036909862,-0.0009006691,-0.0285618901,-0.004516412,0.026096426,0.0413217433,0.0081389127,-0.0052228896,0.0325844884,0.0315752327,0.0127454372,-0.0118082725,0.0172149912,-0.028360039,0.0184981842,0.0288358293,0.0205166936,0.0267596506,-0.0525677167,-0.004930927,0.0047038449,-0.0091193309,-0.0473484322,-0.0109720333,-0.0038712102,0.0049669719,0.0240779184,0.0270191729,0.0148360347,-0.0059257629,-0.0219584852,0.0130986758,-0.0288502481,0.0038459788,0.0091121225,0.0007546878,-0.016450841,0.0135960942,-0.0140502583,-0.0247699786,-0.0261973515,-0.0229244847,0.0021446648,-0.022621708,0.0149946315,-0.0161913186,0.031978935,0.0316040702,0.0142376907,-0.0172870792,0.0020599596,-0.0087805102,0.0165950209,0.000677642,-0.0001644543,0.0162922442,-0.0041127102,0.0163931698,-0.0079370625,0.0132644819,0.0058500692,-0.0050859195,-0.0108134365,0.0098113911,0.0145620946,-0.0212231707,0.0446667001,0.0026673144,0.0218287241,-0.0020581575,-0.023184007,0.0132500641,-0.0038748146,-0.0277544856,0.014605348,-0.0261540972,0.0034693107,-0.0055761286,-0.0080524059,0.0258224849,0.0046209418,0.027221024,-0.0297297407,0.0410045497,-0.0016093998,-0.0119236158,-0.0133942431,-0.0026583031,-0.0088958535,-0.0479828194,-0.0045560612,-0.0080451965,0.002402385,-0.0258657392,0.0567777492,-0.0266298894,0.0251304265,0.0231407527,0.0297009051,-0.0065168976,0.0005550897,0.0179070495,-0.0223766044,-0.0302199498,-0.0091265403,0.0090328241,0.0020275193,-0.0150955571,-0.0187288709,-0.0267308149,-0.0258657392,-0.0403124914,0.0175754391,0.0311138611,0.0169554688,-0.0032926914,0.0105611226,-0.1094608083,-0.0242509339,0.0639002025,-0.0076631219,-0.0118298996,-0.0007826224,-0.0242076796,0.060901273,0.0299604274,-0.0268461574,0.0238328129,-0.0395627581,-0.0281005166,0.0085498234,-0.0016679725,0.0044731582,0.0296143983,0.0174889304,0.0167968702,0.011981287,-0.007619868,-0.0251304265,-0.0054607852,0.0401106402,-0.0081749577,0.0000235277,-0.0074252263,0.0275237989,0.0003656293,-0.0032782734,-0.0062790019,0.0073747635,-0.0038712102,0.0045308298,-0.0164220054,0.0273652021,-0.0186135285,0.0390725508,-0.0048011658,-0.0031142696,-0.0324114747,-0.057066109,0.0368810259,-0.012161511,0.0386111774,0.0316040702,0.0312868766,0.0224198587,-0.003094445,0.0346895047,0.0056410092,0.0244239476,0.0341992937,0.0014814407,0.014893706,0.0153262438,-0.0318924263,-0.0359582789,0.0127526456,0.0033413519,-0.0228235591,0.0026673144,0.0488478951,-0.0641308874,-0.0275958888,-0.010316018,-0.0179503039,0.0379479527,0.0264712926,0.0009732093,0.0127166007,0.0226505436,0.0080956593,0.0234146938,0.0242653508,0.0171284825,-0.0056806584,-0.026312694,-0.0019842656,-0.0019247916,0.040139474,-0.0237030517,-0.0242365152,0.0123273171,-0.0154992584,-0.024106754,0.0150523037,-0.0133581981,0.0223477688,0.0005064293,0.0519044921,0.0248564854,0.0165085122,0.0136249298,-0.0014931554,-0.0103232274,-0.0036152923,0.0233570226,0.021554783,-0.0078289276,0.0092635108,0.003900046,0.012867989,0.0186423641,-0.0226937979,-0.0185414385,0.0042568892,0.0001260441,0.0054103225,0.0058176285,0.0044767624,0.0061059869,0.0106115853,0.0130337952,-0.0014255714,0.0121398848,0.015456005,-0.0221747532,0.0010299798,-0.0362466387,0.0488478951,0.006805256,-0.0302199498,0.0179503039,-0.0294413827,0.0303929653,0.0314598903,0.0032169973,-0.0047074491,0.0303641297,0.0103376452,0.0429942235,0.0026853366,0.0353238918,-0.0059473901,-0.0367656834,-0.0001298739,0.0074684802,0.0080884499,0.0286339801,0.0087228389,0.0035395981,0.0065709646,-0.0317770839,0.0152974082,0.0198823046,-0.0231695902,-0.0150955571,-0.0350932069,0.0361024588,0.0023302955,-0.0328151733,-0.0420138054,0.0261396803,0.0001937407,0.0644192472,-0.0493381061,-0.0284032933,0.0090616597,-0.0159894675,-0.0008119089,0.0516738072,0.0129256612,-0.0122047653,0.0301911142,-0.0235444549,-0.0330746956,0.0168545432,-0.0040009716,-0.0002644786,-0.0024492433,0.0369098634,0.0231551714,0.01389887,0.0198390502,0.0293692928,-0.0059221587,0.0171861555,0.0120750042,0.0239193216,-0.0149946315,-0.0234579481,0.0480693281,0.0197669622,0.0253611133,-0.0273363665,-0.0199399758,0.0022690194,-0.0054319496,0.035035532,0.0228812303,0.0226937979,0.0160471387,0.039216727,-0.024885321,0.0093788533,0.0295278896,-0.0130265858,-0.0046173371,0.0231119171,-0.0261829328,0.0101862568,-0.0067367707,-0.028287949,0.0179791395,0.0638425276,0.0006204209,0.0205022749,-0.0328151733,0.0510682538,-0.0155425128,-0.0219440665,-0.0004183448,0.0149946315,-0.0452722535,0.0241644252,0.0145765124,-0.0053706733,-0.0010335842,-0.0441764928,-0.0180512294,-0.0494534485,-0.0170563925,0.0122552281,-0.007764047,0.0207762159,-0.0039396952,-0.0160903931,0.0060338974,-0.0050102253,0.0134014515,0.0018436909,0.0258801579,0.018930722,0.0232272614,0.0211510807,-0.0018563066,-0.0123561528,-0.0446378663,-0.0043578148,0.024741143,0.0101213763,0.0062790019,-0.0074540619,-0.0282302778,0.0002090598,0.0442629978,0.034112785,0.0240923353,0.0177917071,-0.0041992175,0.0320077725,0.0178061258,-0.0004377189,0.0204301849,0.036650341,0.0211654995,0.0088814357,-0.0071657039,-0.0056410092,0.0110441232,0.0261252616,0.0274805464,-0.0008200189,-0.0095590772,-0.0162634086,-0.000019895,0.005511248,0.0236021262,-0.0043397923,0.0086795846,0.0193200056,0.0079298532,-0.0328728445,-0.0471754186,0.0321519487,-0.0376595929,-0.0100709135,0.0272066053,-0.0320654437,-0.0260531716,-0.0065349201,-0.0036495347,-0.0096239578,0.0295567252,-0.0185702741,-0.00698548,-0.0225784555,0.0164220054,-0.0051219645,-0.0130554223,0.0167103633,0.0046533821,-0.0031503143,-0.031056188,-0.0117001384,0.0036080831,0.0114622423,0.0083263461,-0.021554783,-0.0113757346,-0.0181233194,-0.0034242547,0.0208915584,0.0165950209,0.0185702741,-0.0071837259,-0.003402628,0.00501383,0.0150090493,-0.0038063296,0.0417831168,0.0163066611,0.0241211709,-0.0116568841,0.0062465617,0.0587962568,0.0161192287,0.0230542459,0.0113757346,-0.0052877702,0.0087300474,0.0075621963,0.0268173218,0.0104457792,0.000729907,0.0108783171,0.0180368125,-0.0006262782,0.0000334541,-0.0165661834,0.0164075866,0.0089246891,0.0208194684,-0.0293260384,0.0101357941,-0.0038063296,0.0018427897,-0.0021933254,-0.0099267345,0.0070900097,0.002506915,-0.0074396441,-0.0071837259,-0.01113063,-0.0180368125,-0.0020869933,0.040975716,0.0039829491,-0.0067800246,0.064015545,0.0052913749,-0.0374865793,-0.018152155,-0.0145548852,-0.0094004804,0.0068304874,-0.0241788439,-0.0120822126,0.0053238152,-0.0192623343,-0.0117866453,-0.0303064566,0.0332188755,0.0263271127,-0.0271777697,-0.0184405129,0.0339974426,0.0276823975,-0.0249862466,0.0448397174,0.0165373478,-0.005284166,-0.0135528399,-0.0237318873,-0.0180368125,0.0044371132,0.0023465157,-0.0259378292,0.0179214682,0.0040153894,-0.0098978989,-0.015816452,0.0262261871,-0.0111378394,0.0111450478,-0.0191037375,0.006307838,0.0235877093,-0.0206608716,-0.026802903,-0.0298739206,-0.00058753,0.0049489494,-0.0150811393,0.0255629625,-0.0143025713,-0.0113541083,0.0028601538,-0.0206608716,-0.0013796142,0.025173679,0.023039829,-0.0198678877,0.0059077404,-0.0152397361,0.0184260961,0.0092563014,0.0089463163,0.0335937403,-0.0110441232,-0.0092851371,-0.0053057927,-0.0284609646,-0.025952246,-0.0313445479,0.0278265756,-0.0119524514,0.0012336328,-0.002258206,-0.0067944424,0.0152397361,0.0023357023,0.0146197658,0.0339109376,0.0080956593,0.0124210333,0.0180079751,0.0190172307,-0.0211510807,-0.0179503039,0.020920394,-0.0160038862,0.0361889675,-0.045156911,-0.0311426967,0.0257936493,0.0165085122,-0.0037017998,0.0190604832,0.013156347,-0.0110441232,-0.0044118818,-0.0051327776,0.0018887469,-0.0158741251,-0.02461138,0.0124931233,0.0019211872,-0.0143386163,0.0305371433,0.0232128426,0.0054067182,0.0220017377,-0.0063691139,-0.0012597654,-0.0134014515,-0.0064664348,-0.0130554223,-0.002312273,-0.0079875253,-0.0201274101,0.0079514803,0.0308255013,0.0322096236,0.056229867,0.0009957373,0.0017508755,-0.0087660924,-0.0403989963,0.0336225778,0.0293116216,-0.0118298996,-0.0046317554,-0.0234435294,0.017935887,0.0306813233,-0.0480404943,-0.0000165862,-0.0163066611,-0.0120245414,0.0032602511,0.0523370318,-0.0024312208,0.0161048118,0.0023537246,-0.0015165844,-0.0448973887,0.0074108085,0.0003931135,-0.0512989424,0.0176475272,-0.0225928724,0.0239769928,0.0121038398,0.0272066053,0.0022023364,0.0058861137,0.0011498287,-0.0377749391,-0.0152974082,-0.0145476758,0.0318924263,0.0201706626,-0.0345453247,-0.0179214682,0.0439746417,-0.0169987213,0.0159029607,-0.014713482,0.007908226,0.0143962884,-0.0156866908,-0.0237751417,0.0303352922,0.0025087171,0.0018355808,-0.010207884,-0.0093860626,-0.0032638556,0.0069710617,-0.049424611,0.0228956491,0.0054427627,0.0303064566,-0.0113901524,-0.0015859706,0.0177917071,0.0076919575,0.0272498596,0.0072377934,-0.0417254455,0.0128535712,0.0281870235,0.0209348127,0.0005942885,0.0102150925,-0.0095230332,-0.0108783171,-0.0228812303,-0.0045055985,0.0186423641,0.0165085122,0.010496242,-0.0070864051,0.0294125471,0.0240634996,0.0200264845,-0.03843816,0.0427923724,0.0074108085,0.0093644354,-0.0026889411,0.0225640368,0.0022798327,0.0131275114,-0.0237751417,-0.0192479156,-0.0232849326,0.013048213,0.0270912629,-0.0046894266,-0.0074324352,0.0098546445,0.0345453247,-0.0082398383,0.0154271694,0.0614203177,0.0267884862,-0.0479251482,-0.0018563066,0.0080019431,-0.0037054042,-0.0058572781,-0.0041884044,0.021482693,0.0282302778,-0.0106260031,0.0286772326,0.0206897072,-0.0203148425,-0.0354104005,0.0274228752,0.0170563925,0.0082110027,-0.0097897639,0.0176619459,-0.0257215612,0.0410910584,-0.0172149912,-0.0461661629,0.0003449036,0.0347183384,-0.0072558159,0.0415524319,0.0160615575,0.012867989,0.0303929653,0.0008533603,-0.009501406,-0.0167536177,0.0588250943,0.0250295009,-0.0118659437,-0.0209780671,0.0374289081,0.0183107518,-0.0158597063,-0.0261540972,0.0165806022,-0.0090111969,-0.0040514343,0.0181665737,-0.0394185781,0.0032007771,-0.012053377,-0.0020329261,-0.0157587808,0.0050066211,0.0129112424,0.0245392919,0.0200264845,0.0325268172,-0.0190316476,0.014043049,0.0161192287,0.0154848406,0.0035125646,-0.0086723762,-0.0182819162,-0.0045380387,-0.0183395874,-0.0118659437,-0.0226793811,0.0207185447,-0.0365926698,-0.014713482,0.0037054042,-0.0075982413,0.0444936864,0.0183540061,0.0301622786,-0.0009002186,-0.0064303903,0.0063438825,-0.0372558907,0.013156347,0.0128535712,-0.0035089601,0.0105034513,-0.0038063296,-0.0169843044,-0.0051796362,-0.0124642877,0.0259234104,0.0304218009,-0.0191181544,0.0110080782,-0.0190893188,0.0038640012,0.0073783682,0.0323537998,0.015528094,0.0007006206,-0.032469146,-0.0022708217,-0.0117289741,0.0308543388,0.0318347551,0.0053490466,0.0006771914,0.0219584852,0.0178782139,-0.009645585,0.028922338,0.0145548852,-0.0109215705,-0.0219873209,0.0174312592,-0.0092202565,0.0139277056,0.0015048699,0.0102583468,-0.0185414385,0.0217854697,0.0307389945,0.0157155264,0.0183251705,-0.0134447059,-0.025173679,-0.015816452,0.0160183031,-0.0373423994,0.02240544,0.0151243927,0.0242076796,-0.0031593256,0.0174168404,0.0039577177,0.0073423232,-0.0276103076,0.0300180987,0.0053166063,-0.0242653508,0.0072233756,-0.0270624273,0.0236453805,0.0311715323,-0.0279707555,0.0164940953,-0.0030962473,-0.012904034,-0.0339686088,0.0098041818,-0.0293404572,0.0416389368,0.0090039875,0.0086723762,-0.0317770839,-0.021482693,0.0076775397,0.0183107518,-0.0105394954,-0.0102655552,0.0089895697,-0.0146269752,0.0070972187,-0.0116424663,-0.0080668237,-0.0024762768,0.0044911806,0.0192479156,0.0162489899,-0.00186712,0.0236597992,-0.0017346554,-0.0119019886,-0.0072486065,-0.0265001282],"128":[-0.0070116245,0.0038551395,0.0642045513,0.0248792637,0.0528254397,0.0211817697,-0.0029056859,0.0408444144,-0.0066497573,-0.0066569229,0.0167963691,-0.039124649,0.0091864103,-0.0156211965,0.0728607029,0.0659243166,0.0013552104,-0.0206371769,-0.0114722643,0.0632300153,-0.0127262594,0.0056644753,0.0080040721,0.0070976126,0.0068217334,-0.0156211965,-0.0494145751,0.0370895937,0.0427934788,-0.0620835088,-0.0101322811,-0.0414176695,-0.0551184602,0.0480674244,0.0408730768,0.0475801602,0.0165240727,-0.0032603873,0.0286627468,-0.0191610456,-0.021769356,-0.0206085145,0.0124109695,0.0266993474,-0.0048547527,-0.0074451482,-0.02410537,-0.0400418565,0.0110853175,0.0434813872,-0.0281611476,0.0094300434,-0.028275799,-0.0265703667,0.0211531073,-0.0284191128,-0.0101824403,0.0204938632,0.0011689026,-0.0114364354,-0.0066891685,-0.0519082323,0.0213824082,0.0183154941,-0.0293506514,0.00109635,-0.0206228457,0.0304111745,-0.043538712,0.0245209802,0.0460323691,0.016309103,0.021368077,-0.0089069484,0.0171833169,-0.0802556872,-0.0318443105,0.078249298,0.0181578491,-0.0090001021,-0.0144460239,-0.007291086,-0.0340513438,0.0333634354,0.0076744505,-0.0291643441,-0.0250655711,0.0046075364,-0.0092867296,0.0075311367,-0.0021228346,0.0460037068,-0.002310934,0.0118448799,0.0161227956,-0.0009082507,0.0107127018,0.0014349287,-0.0027982006,0.0351118632,0.0270862952,0.006810985,-0.0004579322,-0.0228442084,0.0510196872,-0.0044534742,0.0436246991,-0.0190177318,0.021368077,0.0338793658,-0.0978546143,-0.0207231659,-0.0340800062,-0.0087708002,-0.0261977501,0.0054280078,-0.0211101118,-0.0051700431,0.0087994635,0.0148329716,-0.0421055742,0.0011133685,-0.0090574278,0.0279318467,0.0200639218,-0.0421055742,0.0100534586,-0.0399845317,-0.0492999218,-0.0011778597,0.0501884669,0.004317326,0.0204508696,-0.0198632833,-0.0149762854,-0.0171403214,-0.0540006123,-0.017426949,-0.0131991943,-0.0391819738,0.0114722643,-0.0446852222,0.0020511777,-0.0378921516,-0.0509337001,0.0077819354,-0.003496855,0.0216403734,-0.0425068513,-0.0242486838,-0.0178425591,-0.0246929564,-0.0250655711,-0.0105048968,0.0236037709,-0.0047114389,0.0310704168,0.049873177,-0.0319876261,-0.0325608812,-0.0114436019,0.0525388122,-0.0192756969,0.0368316285,0.0129698925,0.000027935,-0.0248506013,-0.0542299151,-0.0952749699,-0.0063093868,-0.0101824403,-0.0579847358,0.0201212484,0.0417616218,0.0424495265,0.0116227437,0.0021317918,-0.0650644377,0.0042349207,-0.0346245989,-0.0496725403,0.0028071578,-0.0320162885,0.007832095,-0.0280035026,-0.0078894207,-0.0610516481,0.0163950901,0.0316150077,0.04611836,-0.0435673743,0.0355704688,-0.0011375528,0.0172406416,0.0142812133,-0.0515929423,0.0212964211,0.0288347229,-0.017355293,0.032446228,0.0656376854,0.0092509016,0.0547745079,-0.0165240727,-0.0212247632,0.0109061748,0.020250231,0.0033033816,-0.0440833047,-0.0499018431,0.0041847611,-0.010483399,-0.0042134239,0.0116370749,-0.0149619533,-0.0021676202,-0.0409590639,-0.0066533401,-0.0197343007,-0.0177995656,-0.0000174944,0.0650644377,0.0167390443,-0.028204143,-0.011285956,-0.0017663417,0.0320736133,-0.0319016352,0.0129197333,0.022571912,0.0106983697,-0.0378348269,-0.0072839204,-0.0407870896,0.0188600868,-0.0185018033,-0.0059905141,-0.0479241125,-0.0100176297,-0.0605357215,0.0085773272,0.000300511,-0.0047759302,0.003602549,-0.0109993285,0.0120813474,-0.0425068513,-0.0877653286,0.0192756969,0.0467202775,0.0304971617,-0.0076027936,0.0413890071,-0.0100032985,-0.024177026,-0.0530260801,-0.0120598506,-0.0116442405,-0.014374367,0.0017305133,0.0281468164,-0.0343666337,-0.0215687174,-0.0196053181,-0.0195049997,0.0204365384,0.0445419066,-0.0284047816,0.0117517263,0.0017385747,0.0421915613,0.0264557153,0.0364303514,-0.0568095632,-0.0247502811,-0.0233314764,0.0120025249,-0.0051485458,-0.0054530874,-0.017355293,0.0157645103,-0.0429367945,0.003959042,0.0067608254,0.0387806967,-0.0099889673,0.0254525188,0.0398698784,-0.0017170777,-0.0400991812,-0.0128839044,0.0052130371,0.0362870358,-0.0347105861,-0.0163664278,0.0006189362,-0.0047401018,-0.0237614159,-0.0491279475,-0.0445132442,0.0287057403,-0.0114937611,0.0147469826,-0.0148759652,0.0116155781,-0.0029558458,-0.007248092,-0.0084985038,-0.008269202,0.004919244,0.0037082429,-0.0137724495,0.0030275027,-0.0127047626,0.004919244,-0.0286627468,0.0492712595,0.0050804717,-0.0189747382,-0.0569815412,-0.0562649705,-0.0854723081,-0.0063129701,0.0153632322,0.0191610456,-0.0259111226,0.0380927883,0.0016266109,0.0273729227,-0.0141092371,0.0000041672,-0.0122174956,-0.0050195633,0.0131776975,-0.0499591678,-0.0552044511,0.0048619183,-0.0116657382,-0.0238474049,0.024263015,-0.0277742017,-0.0120455194,-0.0875360295,0.0234317947,0.0233458076,0.0187454354,0.0024058793,-0.0182008445,-0.0291213505,0.0153202377,-0.049729865,-0.015019279,0.0129412301,-0.0135789765,0.0016579607,0.0023252652,0.0191323832,-0.0074523143,-0.0002382591,0.0036061318,-0.0235177837,0.027229609,0.022901535,0.0177135766,0.0068718935,-0.0083265277,-0.0379494764,0.0056537269,-0.0045681251,-0.0088137947,0.0520515479,-0.0135431476,0.0051342146,-0.0223569423,-0.0773894116,-0.0150766047,0.0562936328,0.0353125036,0.0052631968,0.0313570462,0.0313857086,0.0099674696,0.0008343546,-0.0269573126,0.051420968,0.032618206,-0.0240050498,0.0124396319,-0.0330481455,-0.0102111036,0.013815444,-0.0014411988,-0.0228298772,-0.011565418,-0.001920404,0.0313570462,-0.0038085624,0.0255241748,0.0632300153,0.0017520103,0.0326468684,-0.0023790079,-0.0654083863,-0.0348252356,0.0043495717,0.0192613658,-0.004919244,0.0293363202,-0.0242773462,-0.022657901,-0.020321887,-0.0249939151,0.0360863991,-0.0376341864,0.0390673243,-0.0165957306,-0.0341086686,0.0773320869,0.0019006984,0.0581280477,-0.0109563349,-0.0081187226,-0.0167390443,-0.0331914611,-0.055519741,0.0534846857,0.0453158021,-0.0076744505,0.0029988398,-0.0482107401,-0.0327041931,-0.0132350232,0.0542012528,-0.0210814495,0.0080040721,0.0314430334,0.0318156481,0.0056465608,0.065236412,0.0232884809,-0.028032165,0.0134069994,-0.0043065776,0.0194190107,-0.0040772757,-0.0046254508,-0.0152772442,-0.0167677067,-0.015821835,-0.027315598,0.0499878302,-0.0362583734,-0.014216722,0.0153775634,-0.0425641797,-0.017584594,0.0415609814,0.004116687,0.0251945537,-0.0293506514,-0.0341659933,0.0125686144,-0.0678733811,-0.0214110706,0.0131633664,-0.0648924559,0.0314430334,0.0226865634,0.006585266,-0.0355991311,0.0154778827,0.030124547,-0.0425928421,0.0117588919,-0.0484400429,-0.0044033146,0.0221849661,-0.0085486639,0.029723268,-0.0126689337,0.0123894718,-0.0361150615,-0.010082121,0.074637793,0.0142023908,0.020407876,0.0301532093,-0.0004232234,-0.018874418,-0.0149906166,-0.0086131552,0.0130272182,0.0090430966,-0.0177422408,-0.0323602408,-0.0137007926,-0.0687332675,-0.0182868317,0.0039626248,-0.0024829104,0.0155208772,-0.0124969576,0.0111569744,0.077045463,0.0208521485,0.0108273523,-0.0228298772,0.0015209169,-0.0071979323,-0.0119666969,-0.0294079781,0.0035201435,0.0329048336,0.0342233181,-0.0055964012,0.0221992973,-0.0250512399,0.0075812964,0.0046576965,-0.0011635283,-0.0301818717,-0.013657799,-0.0362010486,0.0163234342,0.0026817583,0.0074379826,-0.0361723863,-0.0035398491,-0.015907824,-0.0230018534,-0.002651304,-0.0334494263,0.0304684993,-0.0186451171,-0.0430227816,0.000247888,-0.0165957306,-0.0413316786,-0.0257391464,0.0102684293,-0.0068181506,0.0364876762,0.0148186395,0.0284191128,0.0113862762,-0.0347105861,-0.0058364519,-0.0210241247,-0.0053921794,0.0245209802,0.0404717959,-0.0450005122,0.030927103,0.0414176695,0.0186021216,0.0135861421,0.0142955445,0.0036688314,-0.0003177534,0.0024202107,0.0042205895,-0.0062950556,-0.0009799077,0.0043065776,-0.0008634652,0.0353125036,0.0010381289,-0.0352838412,-0.0478094593,0.0236754287,0.0285767578,-0.0071621039,-0.0159364864,0.0277742017,0.0224572625,0.0045430451,-0.0375195332,-0.022901535,0.0212964211,0.0202932246,-0.0205941834,-0.0175272692,-0.0234604571,0.0395832509,-0.0339080282,0.0210957807,0.0441979542,0.0229445286,0.0211817697,-0.0361437239,0.0067034997,0.0165670682,-0.0104475711,-0.0014411988,0.0331054702,-0.0033177128,0.0216976982,-0.0050948029,-0.0037619853,0.0110566542,0.0209524669,-0.0023593022,-0.0005539971,-0.0371469185,-0.020565521,0.0292503331,0.0055426587,-0.0052416995,0.0513063148,0.0031618592,0.0426215045,-0.006610346,-0.0025581501,-0.0610516481,-0.0038264766,0.0015782425,-0.0184158143,-0.009157747,0.0224859249,-0.0166817177,-0.0390673243,-0.0218410119,-0.0366023257,-0.0448571965,-0.0026656354,0.033334773,-0.0064634494,-0.0282901302,-0.0095661916,0.0078535927,0.0107127018,0.0008737659,0.0463189967,0.0108631812,-0.0135574788,0.0479814373,0.0195766557,0.0371469185,0.0092580672,-0.0268139988,0.0557490401,0.0232598186,0.0049980665,0.0047257701,0.0223426111,-0.0293506514,0.0089212796,0.0217263624,-0.015019279,-0.0101824403,0.0053312709,-0.0102469316,0.0724020973,0.0275592301,0.0204365384,-0.0023807993,-0.0213824082,-0.0175559316,0.0192183722,0.0236037709,-0.0384940691,0.0184158143,-0.0263553951,0.0016481079,-0.0234317947,0.0248649325,0.0114722643,0.027473243,0.0174556132,0.0133496737,-0.016466748,0.0112572936,0.0422488898,0.0064777806,0.042334877,-0.0053097736,0.0175416004,-0.0098671503,0.0244636536,0.0621408336,-0.0334780887,0.0178568903,-0.0088639539,0.000362315,0.0080255689,-0.0166817177,-0.016223114,0.0507330596,0.045946382,0.0220989771,0.0050231465,-0.0230448488,-0.0039232136,-0.0511056781,0.0168536957,-0.0147469826,0.0151195982,0.0238330737,-0.0214970596,-0.0439113267,0.0040701102,-0.0127405906,-0.0566949137,-0.0172406416,-0.0095017003,-0.0094157122,0.0318443105,0.0019831038,0.0575547963,-0.021525722,-0.0473508574,-0.015348901,-0.0246069673,-0.0035953831,0.0092222383,-0.0020243065,-0.0130200526,0.0267423429,-0.0226292387,0.020006597,-0.045631092,-0.0147756459,-0.0174986068,-0.030124547,0.0600197911,-0.0088066291,0.0433094092,0.0214827284,0.0076171248,0.0020690919,0.0197486319,0.0072373436,0.013414165,-0.0063882098,0.0040880241,-0.0060908338,-0.0243203398,-0.0007129858,-0.0323602408,-0.0034019097,-0.0244493224,0.0010300674,0.0019920608,-0.0093082264,0.0139659233,-0.0399845317,0.0161084626,0.025552839,0.0265130401,-0.0017484275,-0.0038551395,0.0135646444,-0.000436883,-0.0248219389,0.0036867457,-0.0281754788,-0.0234317947,-0.0060550054,0.0163664278,0.0249509215,0.0154635515,0.0390386619,-0.0453731269,0.0219843257,-0.0198776145,0.0292216707,-0.0239620563,0.021769356,-0.0269716438,-0.0513636395,0.0135574788,-0.0149762854,0.0110709853,0.0132995145,0.0811728984,-0.0057612122,-0.0264700465,0.0162374452,0.0284621064,-0.0208951421,0.0002016469,0.0053097736,-0.0368602909,-0.0261117611,0.0058579487,-0.0061624902,0.0151625928,-0.0155925341,-0.040328484,0.0013874561,-0.037920814,-0.00660318,-0.0165240727,0.0299525708,0.017355293,-0.0128337443,0.0085486639,-0.0753256977,-0.0303538479,0.0426788293,0.005399345,-0.0013408791,-0.0083336933,-0.0029809256,0.0559496805,0.0487839952,-0.0118663767,0.0374048837,-0.0540866032,-0.0242056884,0.0116944006,-0.0009163122,0.0194190107,0.0157501791,0.0187311042,0.0265417024,0.0192040391,-0.003951876,0.0126402713,-0.0289923679,0.0507330596,0.0189460758,-0.0214254037,-0.0111139799,0.0349972136,0.0098599847,-0.0240337122,0.0086991433,0.025868129,-0.0128409099,0.006445535,-0.0281754788,0.0192183722,-0.0128122475,0.0284191128,-0.0161227956,-0.0155208772,-0.0439686514,-0.048354052,0.0216976982,-0.0480387621,0.0449431874,0.0035810519,-0.0007470228,-0.0040844413,-0.0021729944,0.026025774,0.0294079781,0.0057755434,0.0075669652,-0.0000685779,-0.0114794299,0.0095375292,-0.0459177196,-0.0378348269,0.0139802545,0.0132421888,-0.0266563538,0.0141522307,0.0133568393,-0.0474941693,-0.0213394146,0.007631456,-0.0005831078,0.0205798522,-0.0098671503,0.0019723552,0.0213824082,0.0617395565,0.0232741497,-0.0106625417,0.0315290205,-0.0036903287,0.0079324152,-0.0237184223,0.0043567372,-0.0174412802,0.0265990291,-0.0113432817,-0.0462616719,0.0150049478,-0.0194190107,-0.026985975,0.0043029948,-0.0007850906,0.0275592301,-0.0052524484,0.0381214544,0.0073340801,0.002341388,0.0111068143,0.0018630786,0.0046863589,0.0149332909,0.0040593613,0.0258251335,-0.0158791617,0.0191467144,-0.0016194452,0.027473243,0.0038838021,0.0000305101,-0.002694298,0.0063201357,0.0004169534,0.0027444579,0.0143958647,-0.0194620043,-0.0008800359,0.0334780887,0.0127119282,0.0029898828,0.0038479737,0.0074021542,-0.0095375292,-0.0216976982,-0.0270433016,0.0365736634,-0.0067966538,-0.0368889533,0.0315863453,-0.0095661916,0.0223999359,0.0284764376,-0.0110208262,0.0079252496,-0.0014609044,-0.0012065225,0.0554050878,-0.0073734913,0.0350545384,0.0198632833,-0.0259397849,0.0099173104,0.0041095214,0.0070582014,0.0429367945,-0.0030973679,0.0017063291,0.0020547607,0.0058794459,0.0241197012,-0.0073734913,-0.0142740477,0.0005557886,0.0091792447,0.0222709533,0.0209094733,-0.0345959365,-0.0324748904,0.0818608031,0.0194333419,0.074637793,-0.0391819738,-0.0265560336,-0.0123178149,-0.0151052671,0.0197916254,0.0226435699,0.0135789765,0.0085701607,0.0224715937,-0.0007864341,-0.044427257,0.0026692182,-0.0109348381,0.0017206605,0.0088281259,0.006810985,0.0023037682,0.0206801724,0.0429081321,0.0336787254,0.0026011441,0.0244349912,0.0157071855,0.0178998858,-0.0139444256,0.01289107,0.0335640758,0.0256818198,0.0060191769,-0.0246499609,-0.0212820899,0.0138226096,-0.0166387241,0.0005943041,0.0201212484,0.0088209603,0.0022607741,0.0240910389,-0.0070725325,0.0024632048,0.0375195332,-0.0057003037,-0.0098743159,0.0270003062,-0.0421055742,0.0147613147,0.0258967914,-0.0149476221,0.024506649,0.0460610315,0.0156785231,0.0031905218,-0.0335640758,0.0328475088,0.0056859725,-0.0000763593,-0.0213394146,0.0071656867,0.0022966026,0.0113146193,0.0253665298,0.0062162331,-0.021368077,-0.0138297752,-0.020565521,-0.0293793157,-0.0373475589,0.0141092371,-0.0218696762,0.04643365,0.0011285957,0.0038121452,0.0088926172,-0.0068862247,0.0079252496,0.0053384365,0.0020852147,0.0256818198,0.033822041,-0.0000429101,0.0186307859,0.0029307657,-0.0255671702,0.0205081943,0.034853898,0.0153059065,0.0038587223,-0.0237327535,-0.0298952442,0.0023772165,0.0557777025,0.0041489326,0.0429081321,-0.0231881626,-0.0059869313,0.0232741497,0.0169540141,0.0085200015,0.0107986899,0.0296086166,0.0110208262,0.0030006312,0.0060872505,-0.0001723124,0.0118735423,0.0256818198,0.012367975,-0.0115582524,-0.0029056859,0.0101537779,-0.0247789435,-0.0095375292,0.0070546186,0.0123106493,-0.0276022255,0.0498158522,0.016380759,-0.0069757961,-0.0185161345,0.0306118131,-0.0376915112,-0.0082978653,-0.0034986464,-0.0039662076,0.0004818924,-0.0023449708,-0.0029379316,-0.0189174134,0.0401851721,-0.0335927382,-0.0087134745,-0.0238187425,0.0215830486,-0.043051444,-0.024578305,0.0017197648,0.0061517418,0.0305544883,-0.0346532613,0.0049443236,-0.0073591601,0.0097811623,-0.0029468886,-0.0183871519,0.0188887492,-0.0070832814,0.0102326004,0.0059761824,0.0100319609,0.0180861931,-0.0137724495,-0.0085271671,-0.0076672845,0.0219699945,-0.0276882127,0.0097310022,0.0080327345,0.0349112265,-0.0087708002,-0.0010139446,0.0439973138,0.0373188965,0.0049443236,0.0329334959,-0.0063022212,0.0249365885,0.0188887492,0.0288203917,-0.0173266307,0.0004350915,0.0133998338,0.0172119793,-0.013048715,0.0209381357,-0.0190177318,-0.0139157632,-0.0048619183,0.0101609435,-0.0315863453,0.0084340135,0.0181435179,-0.0133711714,0.0186164528,-0.0078464272,-0.0101967724,0.0225002561,-0.0156211965,0.0039160475,0.0151912551,-0.0169826765,0.0209524669,0.0285051018,-0.0119093712,0.0357137807,0.0748670921,0.0124682942,-0.0078392616,0.007588462,0.0010918715,-0.0129627269,-0.0093798833,0.0189890694,0.0107556954,0.0327615179,-0.0231021736,-0.0056286468,-0.0308697782,0.0280751605,0.0036903287,-0.0231594983,0.0051234658,0.0264700465,0.0012262281,-0.0011644241,0.020235898,0.0178998858,-0.016151458,-0.0299239065,-0.0277168751,-0.0167247131,0.0065924316,-0.0167247131,-0.0125471167,0.0291500129,0.0110279918,-0.0098241558,0.0096378485,0.060478393,0.0052166199,-0.0006762617,-0.0287917294,0.0074666454,0.002162246,-0.0113791106,0.0184588078,-0.0266850162,-0.0028447777,-0.0145535097,-0.0186737794,0.0316150077,-0.0101896059,-0.015019279,-0.0129483957,-0.0300672203,-0.0171976481,0.001684832,-0.0076959473,-0.0200925861,0.0047544329,0.0214110706,0.0572681688,-0.0038838021,0.013048715,0.0327041931,-0.013414165,0.0001404027,-0.0140447458,-0.0252375472,-0.0283044614,-0.0207518283,0.040815752,-0.0232454874,-0.0190607272,-0.0191467144,-0.0078822551,0.0356277935,0.0110566542,-0.007473811,0.0411023796,0.0228442084,0.021683367,0.0398698784,0.0451724865,-0.0376628488,-0.0231165048,0.0276738815,-0.0495865494,0.0273442604,-0.0358570963,0.000659691,0.0038085624,-0.0017887345,-0.0046003708,0.0255815014,0.0023790079,0.0116514061,0.0161227956,0.0211961009,-0.0007053723,-0.0056823893,-0.0303251855,0.0025993527,0.0087636346,-0.0163520966,0.0124396319,0.0199636035,-0.0216260422,0.0219843257,0.011042323,0.0019329439,-0.0277455393,-0.0284907706,-0.0039733732,0.0023790079,-0.0224429294,0.003951876,0.0083838534,0.0172549728,0.0235607773,0.0381501168,0.0047651818,-0.0022464427,-0.0174126178,-0.0031546934,0.0160511378,0.02201299,-0.0118448799,-0.0010829144,-0.0096593453,-0.0107771922,0.0308984406,-0.0337360539,0.005277528,-0.0041883439,0.0142023908,0.0130773783,0.040328484,0.0019651896,-0.0084555103,0.0317296609,-0.0128122475,-0.0260974299,0.0112787904,-0.0003914256,-0.0322169252,0.0246929564,-0.0087206401,0.0007412007,-0.0039877044,-0.0112429624,0.007588462,0.0089212796,0.0322169252,-0.0050589745,-0.0267566741,0.005442339,0.0363443606,0.0057074693,0.0074379826,-0.0378061607,0.0255241748,-0.0187311042,-0.0052667796,-0.0067715738,-0.0114221042,0.0024255849,-0.0146896578,-0.0240050498,0.0072839204,-0.0220416524,0.0158075038,-0.0038085624,0.0014286587,0.0304971617,0.0128337443,-0.0115510868,0.0055354927,0.014703989,0.0144890184,-0.0005168251,-0.0007291086,0.0153059065,0.0182295069,0.026985975,0.0319876261,-0.0113934418,0.010361583,0.0352265164,0.0091219191,0.0049550724,-0.0164237544,-0.0044068974,-0.0106482105,-0.0080184033,-0.0055677383,0.0298379194,0.0044964682,0.0346245989,0.0244063288,0.0308124516,0.0172979683,0.0131132063,-0.0383220911,-0.0132063599,-0.0093225585,0.0059188572,-0.013657799,-0.0014815057,-0.0127692539,0.0079897409,-0.0288777165,0.010239766,-0.0140447458,0.0066712541,0.0037261571,-0.0052990252,-0.0284047816,-0.0012405595,0.0135431476,-0.0024452906,0.0160798002,0.0644911826,0.0021192518,-0.0508477129,0.0128337443,-0.0129985558,0.0112357968,-0.0343379714,0.0100534586,0.0049335752,0.0279748403,-0.0239907186,0.025624495,-0.0173266307,-0.0249079261,-0.0220559835,0.0223569423,0.0216403734,-0.0317869857,-0.0071441894,-0.0099316416,-0.0203505494,0.043223422,-0.0218266807,-0.0246499609,-0.0174986068,0.0180145353,0.0037548197,0.0452298149,0.0108560156,0.0187597666,-0.0078034326,-0.0058758631,0.0048404215,-0.0169683453,0.0166243929,0.0261117611,0.0122748213,-0.0325322188,0.0339940153,0.0171259902,0.0010497731,-0.0064240382,0.0276022255,-0.0262694061,-0.0305544883,0.0108130211,-0.0003435051,-0.0006749181,0.0020260978,0.0184444766,-0.0329908207,-0.0403571464,0.0185161345,0.0207804907,0.0380354635,0.0400705189,0.0023521367,-0.0192756969,0.0193473529,0.0129125668,0.0142095564,-0.0037512369,-0.0092867296,-0.0220703147,-0.0240480434,-0.0271006264,-0.0243060086,-0.0026477212,0.0009037722,-0.0290926881,-0.0183298271,-0.0192327034,0.0174412802,0.0110279918,0.0260687675,-0.0050159805,-0.002276897,-0.001703642,-0.0061409934,0.0120025249,0.0249939151,-0.0135503132,-0.0154205579,-0.0116299093,0.0014492602,-0.0102469316,-0.0057683778,0.0391533114,0.0253092051,-0.0096306829,0.0090287654,-0.020565521,-0.0098313224,0.017269304,0.0269286502,0.0050303121,-0.0069614644,-0.0042313379,-0.0019687724,0.0048081758,0.0305258241,0.0144460239,0.0041131042,0.0294079781,0.0050912201,0.009838488,-0.0042349207,0.0464909747,-0.002481119,-0.0036491258,-0.0077031129,0.0135073196,-0.0247216187,0.0129054012,0.0025402359,0.0340513438,-0.0137796151,0.0172549728,0.0169826765,0.0263840575,0.0309844296,0.0010954543,-0.0239333939,-0.0402998216,0.0316723362,0.0004071006,0.0010273803,0.013657799,0.0438826643,-0.0123464782,0.0225575808,0.0098528191,0.0009745334,-0.0259541161,0.0236467663,-0.0034001183,-0.0108990092,-0.0090860901,-0.0107986899,0.0271866154,0.0051700431,-0.0224859249,0.0207374971,0.0276882127,-0.0092723984,-0.0022088229,0.0102827605,-0.0205798522,0.0146753257,0.0163234342,-0.0053133564,-0.0069793789,-0.0554624125,0.0015343527,0.0017941088,-0.0132636856,-0.0177135766,0.0041202698,-0.0571248531,0.0222422909,0.0284191128,-0.008391019,-0.0105837192,0.008269202,0.0153202377,0.0427934788,0.0149476221,0.0437106863,0.0085414983,0.0085200015,0.0119666969,-0.0025294872]}} \ No newline at end of file